Fix NEWS typo
[bpt/emacs.git] / lisp / ChangeLog
CommitLineData
03794570
GM
12012-05-07 Glenn Morris <rgm@gnu.org>
2
3 * international/mule.el (find-auto-coding): Make "unibyte: t" obsolete.
4
f0809a9d
SM
52012-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
6
28be5ce7
SM
7 * loadup.el: Preload newcomment.el.
8 * newcomment.el: Move autoload-only code to toplevel.
9
f0809a9d
SM
10 * buff-menu.el (list-buffers--refresh): Mark `size' as right-align.
11 * emacs-lisp/tabulated-list.el (tabulated-list-init-header):
12 Handle new :right-align column property.
13 (tabulated-list-print-col): Idem, plus use `display' text-property to
14 try and preserve alignment for variable pitch fonts.
15
1241b724
CY
162012-05-07 Chong Yidong <cyd@gnu.org>
17
18 * emacs-lisp/tabulated-list.el: Add no-header-line alternative.
19 (tabulated-list-use-header-line): New var.
20 (tabulated-list-init-header): Use it.
21 (tabulated-list-print-fake-header): New function.
22 (tabulated-list-print): Use it.
23 (tabulated-list-sort-button-map): Add non-header-line commands.
24 (tabulated-list-init-header): Add column name property to basic
25 labels as well.
26 (tabulated-list-col-sort): Handle non-header-line button case.
27 (tabulated-list--sort-by-column-name): Fix a corner case.
28
f0809a9d
SM
29 * buff-menu.el (list-buffers--refresh):
30 Handle Buffer-menu-use-header-line.
1241b724 31
e5f9458f
CY
322012-05-06 Chong Yidong <cyd@gnu.org>
33
34 * buff-menu.el: Convert to Tabulated List mode.
35 (Buffer-menu-buffer+size-width): Make obsolete.
36 (Buffer-menu-name-width, Buffer-menu-size-width): New variables.
37 (Buffer-menu-mode-map): Inherit from tabulated-list-mode-map.
38 (Buffer-menu-mode): Derive from tabulated-list-mode. Move command
39 documentation into docstring of buffer-menu.
40 (Buffer-menu-toggle-files-only): Add an informative message.
41 (Buffer-menu-sort): Convert to alias for tabulated-list-sort.
42 (Buffer-menu-buffer, Buffer-menu-beginning, Buffer-menu-mark)
43 (Buffer-menu-unmark, Buffer-menu-backup-unmark)
44 (Buffer-menu-delete, Buffer-menu-save, Buffer-menu-not-modified)
45 (Buffer-menu-execute, Buffer-menu-select)
46 (Buffer-menu-marked-buffers, Buffer-menu-toggle-read-only)
47 (Buffer-menu-bury): Use Tabulated List machinery.
48 (Buffer-menu-mouse-select, Buffer-menu-sort-by-column)
49 (Buffer-menu-sort-button-map, Buffer-menu-make-sort-button):
f0809a9d 50 Delete.
e5f9458f
CY
51 (list-buffers--refresh): New function.
52 (list-buffers-noselect): Use it.
53 (tabulated-list-entry-size->, Buffer-menu--pretty-name)
54 (Buffer-menu--pretty-file-name): New helper functions.
55
56 * loadup.el: Preload tabulated-list.
57
58 * emacs-lisp/tabulated-list.el (tabulated-list-sort): Rename from
59 tabulated-list-sort-column.
60 (tabulated-list-init-header): Add the initial aligning space even
61 if tabulated-list-padding is zero.
62
e129292c
CS
632012-05-06 Christopher Schmidt <christopher@ch.ristopher.com>
64
65 * emacs-lisp/cl-macs.el (cl-expr-contains): Handle cons cells
66 whose cdr is not a cons cell correctly (bug#11038).
67
6632d361
CY
682012-05-06 Chong Yidong <cyd@gnu.org>
69
e129292c
CS
70 * emacs-lisp/tabulated-list.el (tabulated-list-format):
71 Accept additional plist in column descriptors.
6632d361
CY
72 (tabulated-list-init-header): Obey it.
73 (tabulated-list-get-entry): New function.
74 (tabulated-list-put-tag): Use it. Use string-width instead of
75 length.
76 (tabulated-list--column-number): New function.
77 (tabulated-list-print): Use it.
e129292c
CS
78 (tabulated-list-print-col): New function.
79 Set `tabulated-list-column-name' property on each column's text.
6632d361 80 (tabulated-list-print-entry): Use it.
e129292c
CS
81 (tabulated-list-delete-entry, tabulated-list-set-col):
82 New functions.
6632d361
CY
83 (tabulated-list-sort-column): New command (Bug#11337).
84
3cc99f68
CY
85 * buff-menu.el (list-buffers): Move C-x C-b binding from
86 buff-menu.el to bindings.el.
87
88 * ebuff-menu.el (Electric-buffer-menu-undefined): Use the
89 :advertised-binding feature.
90
52b61776
TN
912012-05-06 Troels Nielsen <bn.troels@gmail.com> (tiny change)
92
93 * progmodes/compile.el (compilation-internal-error-properties):
94 Calculate start position correctly when end-col is set but
95 end-line is not (Bug#11382).
96
ebfe2597
WJ
972012-05-06 Wolfgang Jenkner <wjenkner@inode.at>
98
99 * man.el (Man-unindent): Use text-property-default-nonsticky to
100 prevent untabify from inheriting face properties (Bug#11408).
101
a43f98b3
GM
1022012-05-05 Glenn Morris <rgm@gnu.org>
103
48176e8b
GM
104 * calendar/cal-html.el: Optionally include holidays in the output.
105 Suggested by Ed Reingold <reingold@emr.cs.iit.edu>.
106 (cal-html-holidays): New option.
107 (cal-html-css-default): Add holiday entry.
108 (holiday-in-range): Autoload it.
109 (cal-html-htmlify-entry): Add optional class argument.
110 (cal-html-htmlify-list): Add optional holidays argument.
111 (cal-html-insert-agenda-days): Include holidays in the output.
112 (cal-html-one-month): Maybe include holidays.
113
a43f98b3
GM
114 * calendar/holidays.el (holiday-in-range):
115 Move here from cal-tex-list-holidays.
116 * calendar/cal-tex.el (cal-tex-list-holidays):
117 Make it an obsolete alias for holiday-in-range. Update all callers.
118
fef9d149 1192012-05-05 Chong Yidong <cyd@gnu.org>
eceeb5fc
CY
120
121 * select.el (xselect--encode-string): Always use utf-8 for TEXT on
122 Nextstep.
123
248da2f4
RW
1242012-05-05 Ransom Williams <auvergnerw@gmail.com> (tiny change)
125
126 * files.el (file-auto-mode-skip): New var.
127 (set-auto-mode-1): Use it.
128
f95e9344
SM
1292012-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
130
df96ab1e
SM
131 * repeat.el: Use lexical-binding.
132 (repeat-last-self-insert, repeat-num-input-keys-at-self-insert)
133 (repeat-undo-count): Remove.
134 (repeat):
135 * progmodes/octave-mod.el (octave-abbrev-start):
136 * progmodes/f90.el (f90-abbrev-start):
137 * face-remap.el (text-scale-adjust):
138 * kmacro.el (kmacro-call-macro): Use set-temporary-overlay-map.
139
5342bb06
SM
140 * emacs-lisp/pcase.el (pcase--let*): New function.
141 (pcase--expand, pcase-codegen, pcase--q1): Use it to reduce nesting
142 a bit more.
143 (pcase--split-pred): Be more clever about ruling out overlap between
144 a predicate and some constant pattern.
145 (pcase--q1): Use `null' instead of (eq foo nil).
146
f95e9344
SM
147 * subr.el (setq-local, defvar-local): New macros.
148 (kbd): Redefine as an alias.
149 (with-selected-window): Leave unrelated frames alone.
150 (set-temporary-overlay-map): New function.
151
71873e2b
SM
1522012-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
153
154 * subr.el (user-error): New function.
155 * window.el (switch-to-buffer):
156 * vc/smerge-mode.el (smerge-resolve-function, smerge-resolve)
157 (smerge-match-conflict):
158 * simple.el (previous-matching-history-element)
159 (next-matching-history-element, goto-history-element, undo-more)
160 (undo-start):
161 * progmodes/etags.el (visit-tags-table-buffer, find-tag-tag)
162 (find-tag-noselect, find-tag-in-order, etags-goto-tag-location)
163 (next-file, tags-loop-scan, list-tags, complete-tag):
164 * progmodes/compile.el (compilation-loop):
165 * mouse.el (mouse-minibuffer-check):
166 * man.el (Man-bgproc-sentinel, Man-goto-page):
167 * info.el (Info-find-node-2, Info-extract-pointer, Info-history-back)
168 (Info-history-forward, Info-follow-reference, Info-menu)
169 (Info-extract-menu-item, Info-extract-menu-counting)
170 (Info-forward-node, Info-backward-node, Info-next-menu-item)
171 (Info-last-menu-item, Info-next-preorder, Info-last-preorder)
172 (Info-next-reference, Info-prev-reference, Info-index)
173 (Info-index-next, Info-follow-nearest-node)
174 (Info-copy-current-node-name):
175 * imenu.el (imenu--make-index-alist)
176 (imenu-default-create-index-function, imenu-add-to-menubar):
177 * files.el (basic-save-buffer, recover-file):
178 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
179 * emacs-lisp/checkdoc.el (checkdoc-continue, checkdoc-comments)
180 (checkdoc-message-text, checkdoc-defun):
181 * dabbrev.el (dabbrev-completion, dabbrev--abbrev-at-point):
182 * cus-edit.el (customize-changed-options, customize-rogue)
183 (customize-saved, custom-variable-set, custom-variable-mark-to-save)
184 (custom-variable-mark-to-reset-standard)
185 (custom-variable-reset-backup, custom-face-mark-to-reset-standard)
186 (custom-file):
187 * completion.el (check-completion-length):
188 * comint.el (comint-search-arg)
189 (comint-previous-matching-input-string-position)
190 (comint-previous-matching-input)
191 (comint-replace-by-expanded-history-before-point, comint-send-input)
192 (comint-copy-old-input, comint-backward-matching-input)
193 (comint-goto-process-mark, comint-set-process-mark):
194 * calendar/calendar.el (calendar-cursor-to-date): Use it.
195 * bindings.el (debug-ignored-errors): Remove regexps, add `user-error'.
196
8a61ee22
SM
1972012-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
198
66408d1e
SM
199 * dabbrev.el (dabbrev--ignore-case-p): New function.
200 (dabbrev-completion, dabbrev-expand, dabbrev--substitute-expansion):
201 Use it.
202
8a61ee22
SM
203 * files.el (automount-dir-prefix): Mark as obsolete.
204
3c74813a
GM
2052012-05-04 Glenn Morris <rgm@gnu.org>
206
207 * patcomp.el, play/bruce.el: Move to obsolete/.
208
0bfcf5c5
PE
2092012-05-04 Paul Eggert <eggert@cs.ucla.edu>
210
211 Fix minor Y10k bugs.
212 * arc-mode.el (archive-unixdate):
213 * autoinsert.el (auto-insert-alist):
214 * calc/calc-forms.el (math-this-year):
215 * emacs-lisp/copyright.el (copyright-current-year)
216 (copyright-update-year, copyright):
217 * tar-mode.el (tar-clip-time-string):
218 * time.el (display-time-update):
219 Don't assume years have 4 digits.
220
78f3273a
CY
2212012-05-04 Chong Yidong <cyd@gnu.org>
222
223 * dos-w32.el (file-name-buffer-file-type-alist)
224 (direct-print-region-use-command-dot-com):
225 * ffap.el (ffap-menu-regexp):
226 * find-file.el (ff-special-constructs):
227 * follow.el (follow-debug):
228 * forms.el (forms--debug):
229 * iswitchb.el (iswitchb-all-frames):
230 * ido.el (ido-all-frames):
231 * emacs-lisp/timer.el (timer-max-repeats):
232 * mail/feedmail.el (feedmail-mail-send-hook)
233 (feedmail-mail-send-hook-queued):
234 * mail/footnote.el (footnote-signature-separator):
235 * mail/mailabbrev.el (mail-alias-separator-string)
236 (mail-abbrev-mode-regexp):
237 * mail/rmail.el (rmail-speedbar-match-folder-regexp):
238 * progmodes/idlwave.el (idlwave-libinfo-file)
239 (idlwave-default-completion-case-is-down)
240 (idlwave-library-routines): Convert defvars to defcustoms.
241
242 * mail/rmail.el (rmail-decode-mime-charset):
243 * progmodes/idlw-shell.el (idlwave-shell-print-expression-function)
244 (idlwave-shell-fix-inserted-breaks)
245 (idlwave-shell-activate-alt-keybindings)
246 (idlwave-shell-use-breakpoint-glyph):
247 * facemenu.el (facemenu-unlisted-faces): Delete obsolete vars.
248
f7ae6719
SM
2492012-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
250
251 * minibuffer.el (completion--twq-all): Beware completion-ignore-case.
252
47086495
WS
2532012-05-03 Wilson Snyder <wsnyder@wsnyder.org>
254
255 * progmodes/verilog-mode.el (font-lock-keywords):
256 Fix mis-highligting auto. Reported by Craig Barner.
257 (verilog-auto, verilog-auto-undef): Add AUTOUNDEF to remove
258 defines from global name space. Reported by Dan Dever.
259 (verilog-auto-reset, verilog-auto-reset-widths)
260 (verilog-auto-tieoff): Support using unbased numbers for
261 AUTORESET and AUTOTIEOFF.
262 (verilog-submit-bug-report): Update variable list.
263 (verilog-read-auto-params): Fix AUTOINPUT regexps containing
264 parenthesis from not matching. Reported by Michael Rytting.
265 (verilog-auto-template-lint): Fix hash error when linting modules
266 with no used templates.
267 (verilog-warn, verilog-warn-error)
268 (verilog-warn-fatal): When non-interactive report multiple
269 warnings before exiting. Suggested by Brad Dobbie.
270 (verilog-auto-template-lint, verilog-auto-template-warn-unused)
271 (verilog-read-auto-template): Add `verilog-auto-template-warn-unused'
272 to report unused template errors. Reported by Brad Dobbie.
273 (verilog-read-decls): Fix AUTOWIRE etc on supply0, supply1 type
274 nets, bug438. Reported by Vns Blore.
275 (verilog-auto-inout-module, verilog-auto-reg)
276 (verilog-read-decls, verilog-read-sub-decls-sig)
277 (verilog-signals-edit-wire-reg, verilog-signals-with):
278 Fix passing of Verilog data types in ANSI input/output ports
279 such as "output logic" into the AUTOs. Special case "wire" and
280 "reg" for backwards compatibility presuming Verilog 2001.
281 (verilog-auto-ascii-enum): Add "auto enum" as alias.
282 (verilog-preprocess): Fix replication of preprocess output.
283 Reported by Brad Dobbie.
284 (verilog-auto-inst-interfaced-ports):
285 Create verilog-auto-inst-interfaced-ports, bug429.
286 Reported by Julian Gorfajn.
287 (verilog-after-save-font-hook)
288 (verilog-before-save-font-hook): New variable.
289 (verilog-modi-cache-results, verilog-save-font-mod-hooked)
290 (verilog-save-font-mods): Wrap disabling fontification, reported
291 by David Rogoff.
292 (verilog-do-indent, verilog-pretty-declarations-auto)
293 (verilog-sk-def-reg): Fix obeying `verilog-auto-lineup', bug305.
294 Reported by Pierre-David Pfister.
295 (verilog-set-auto-endcomments): Fix endtask auto comments outside
296 of class declarations, bug292. Reported by Kevin Heilman.
297 (verilog-read-decls): Fix 'parameter type' not appearing in
298 AUTOINSTPARAM, bug340. Reported by Jonathan Greenlaw.
299 (verilog-auto-logic): Fix when AUTOLOGIC present to properly do
300 AUTOINPUTs, bug411. Reported by Jonathan Greenlaw.
301 (verilog-read-auto-lisp): Avoid syntax-ppss warning on AUTOLISP.
302 Reported by David Kravitz.
303
3042012-05-03 Michael McNamara <mac@mail.brushroad.com>
305
306 * progmodes/verilog-mode.el (verilog-pretty-expr): Don't line up
307 assignment with tests in ifs and for loops.
308 (verilog-extended-complete-re, verilog-complete-reg): Change so
309 that DPI inport functions don't look like fuction declarations.
310 (verilog-pretty-expr): Don't line up assignment
311 operations to the test and increment in if and for loops
312 (verilog-extended-complete-re, verilog-complete-reg): Change so
313 that DPI inport functions don't look like fuction declarations
314
2e51d4b5
KH
3152012-05-03 Kenichi Handa <handa@m17n.org>
316
317 * mail/rmailmm.el (rmail-show-mime): Catch an error caused by text
318 decoding, and show a warning message without signalling an error
319 (Bug#11282).
320
2bd785a2
SM
3212012-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
322
323 * emacs-lisp/bytecomp.el
324 (byte-compile-file-form-custom-declare-variable): Compile all elements,
325 since cconv.el might have introduced :fun-body, internal-make-closure,
326 and friends for bytecomp to handle (bug#11391).
327 * custom.el (defcustom): Avoid ((λ ..) ..).
328
99d27583
SM
3292012-05-02 Stefan Monnier <monnier@iro.umontreal.ca>
330
331 * subr.el (read-passwd): Better clean after ourselves (bug#11392).
332
55a71479
JB
3332012-05-02 Juanma Barranquero <lekktu@gmail.com>
334
335 * notifications.el (dbus-debug):
336 * term/linux.el (gpm-mouse-enable):
337 * term/screen.el (xterm-register-default-colors): Declare.
338
7b97c764
CY
3392012-05-02 Chong Yidong <cyd@gnu.org>
340
2bc356d7
CY
341 * cus-start.el (gc-cons-percentage, exec-suffixes)
342 (dos-display-scancodes, dos-hyper-key, dos-super-key)
343 (dos-keypad-mode, debug-on-signal, vertical-centering-font-regexp)
344 (make-cursor-line-fully-visible, void-text-area-pointer)
345 (font-list-limit): Add customization data.
346
7b97c764
CY
347 * allout.el (allout-exposure-change-functions)
348 (allout-structure-added-functions)
349 (allout-structure-deleted-functions)
350 (allout-structure-shifted-functions): Rename abnormal hooks from
351 *-hook, and convert to defcustoms.
5d3385a0
JB
352 (allout-after-copy-or-kill-hook, allout-post-undo-hook):
353 Convert to defcustoms.
7b97c764
CY
354 (allout-mode-hook, allout-mode-deactivate-hook): Doc fix.
355
356 * allout-widgets.el: Hook callers changed.
357
90207a15 3582012-05-02 Eli Zaretskii <eliz@gnu.org>
91af76bf
EZ
359
360 * mail/rmail.el (rmail-yank-current-message): Use the encoding of
361 the yanked message in preference to the default value of
362 buffer-file-coding-system.
363
90207a15 3642012-05-02 Martin Rudalics <rudalics@gmx.at>
d9558cad 365
5d3385a0
JB
366 * window.el (display-buffer--action-function-custom-type):
367 Fix entry.
d9558cad 368
90207a15 3692012-05-02 Alan Mackenzie <acm@muc.de>
09affde0
AM
370
371 * progmodes/cc-defs.el (c-version): Update to 5.32.3.
372
d80ac57b
GM
3732012-05-01 Glenn Morris <rgm@gnu.org>
374
976f7668
GM
375 * cus-start.el (suggest-key-bindings): Remove, now it is in Lisp.
376
beb83b5a
GM
377 * eshell/esh-cmd.el (eshell-debug-command): Doc fix. Add :set.
378
d80ac57b
GM
379 * cus-edit.el (custom-variable-documentation): Simplify with format.
380
b593d6a9
AH
3812012-05-01 Aaron S. Hawley <aaron.s.hawley@gmail.com>
382 Stefan Monnier <monnier@iro.umontreal.ca>
383
384 * simple.el (suggest-key-bindings, execute-extended-command):
385 Move from keyboard.c.
386
782fbf2a
CY
3872012-05-01 Chong Yidong <cyd@gnu.org>
388
389 * follow.el: Eliminate advice.
390 (set-process-filter, process-filter, sit-for): Advice deleted.
391 (follow-mode-off-hook): Obsolete hook removed.
b593d6a9
AH
392 (follow-avoid-tail-recenter-p, follow-process-filter-alist):
393 Vars deleted.
782fbf2a
CY
394 (follow-auto): Use a :set function.
395 (follow-mode): Rewritten. Don't advise process filters.
396 (follow-switch-to-current-buffer-all, follow-scroll-up)
397 (follow-scroll-down): Assume follow-mode is bound.
398 (follow-comint-scroll-to-bottom)
399 (follow-align-compilation-windows): New functions.
400 (follow--window-sorter): New function.
401 (follow-all-followers): Use it to explicitly sort windows by their
402 positions; don't make assumptions about next-window order.
403 (follow-windows-start-end, follow-delete-other-windows-and-split)
404 (follow-calc-win-start): Doc fix.
405 (follow-windows-aligned-p, follow-select-if-visible): Don't call
406 vertical-motion unnecessarily.
407 (follow-adjust-window): New function.
408 (follow-post-command-hook): Use it.
409 (follow-call-set-process-filter, follow-call-process-filter)
410 (follow-intercept-process-output, follow-tidy-process-filter-alist)
411 (follow-stop-intercept-process-output, follow-generic-filter):
412 Functions deleted.
413 (follow-scroll-bar-toolkit-scroll, follow-scroll-bar-drag)
b593d6a9
AH
414 (follow-scroll-bar-scroll-up, follow-scroll-bar-scroll-down):
415 New functions, replacing advice on scroll-bar-* commands.
87233a14 416 (follow-mwheel-scroll): New function (Bug#4112).
782fbf2a
CY
417
418 * comint.el (comint-adjust-point): New function.
b593d6a9
AH
419 (comint-postoutput-scroll-to-bottom): Use it.
420 Call follow-comint-scroll-to-bottom for Follow mode buffers.
782fbf2a 421
290af740
GM
4222012-05-01 Glenn Morris <rgm@gnu.org>
423
424 * term/AT386.el, term/apollo.el, term/bobcat.el, term/cygwin.el:
425 * term/iris-ansi.el, term/linux.el, term/lk201.el, term/news.el:
426 * term/screen.el, term/vt102.el, term/vt125.el, term/vt200.el:
427 * term/vt201.el, term/vt220.el, term/vt240.el, term/vt300.el:
428 * term/vt320.el, term/vt400.el, term/vt420.el, term/wyse50.el:
429 Remove no-byte-compile setting.
430
6eac8dc9
SM
4312012-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
432
433 * minibuffer.el (completion-table-with-quoting): Fix compatibility
434 all-completions code to not return a number in the last cdr.
435
9cc7819c
LL
4362012-04-30 Leo Liu <sdl.web@gmail.com>
437
438 * ibuf-ext.el (ibuffer-diff-buffer-with-file-1): Avoid buffer
439 read-only error.
440
c93b886f
CY
4412012-04-29 Chong Yidong <cyd@gnu.org>
442
443 * follow.el (follow-calc-win-end): Rewrite to handle partial
444 screen lines correctly (Bug#8390).
445 (follow-avoid-tail-recenter): Minor cleanup.
446
8b6c19f4
SM
4472012-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
448
449 Avoid the obsolete `assoc' package.
450 * speedbar.el (speedbar-refresh): Avoid adelete.
451 (speedbar-file-lists): Simplify and avoid aput.
452 * man.el (Man--sections, Man--refpages): New vars, replacing
453 Man-sections-alist and Man-refpages-alist.
454 (Man-build-section-alist, Man-build-references-alist):
455 Use them; avoid aput.
456 (Man--last-section, Man--last-refpage): New vars.
457 (Man-follow-manual-reference): Use them.
458 Use the `default' arg of completing-read.
459 (Man-goto-section): Idem. Move prompt to the `interactive' spec.
460
c5bb7569
CY
4612012-04-27 Chong Yidong <cyd@gnu.org>
462
d1d2e2e8
CY
463 * vc/diff.el (diff-sentinel): Go to bob (Bug#10259).
464
15cd8efd
CY
465 * startup.el (x-apply-session-resources): New function.
466
467 * term/ns-win.el (ns-initialize-window-system):
468 * term/w32-win.el (w32-initialize-window-system):
469 * term/x-win.el (x-initialize-window-system): Use it to properly
470 set menu-bar-mode and other vars from X resources, even if the
471 initial frame is not a window-system frame (Bug#2299).
472
c5bb7569
CY
473 * subr.el (read-key): Avoid running filter function when setting
474 up temporary tool bar entries (Bug#9922).
475
a8e7d6d7 4762012-04-27 Andreas Schwab <schwab@linux-m68k.org>
c4347ab9
AS
477
478 * vc/vc-git.el (vc-git-state): Fix regexp matching diff output.
479 (Bug#11344)
480
a8e7d6d7 4812012-04-27 Chong Yidong <cyd@gnu.org>
acb71f1d
CY
482
483 * select.el (xselect--encode-string): New function, split from
484 xselect-convert-to-string.
485 (xselect-convert-to-string): Use it.
486 (xselect-convert-to-filename, xselect-convert-to-os)
487 (xselect-convert-to-host, xselect-convert-to-user): Ensure that
488 returned strings are properly encoded (Bug#11315).
489
a8e7d6d7 4902012-04-27 Chong Yidong <cyd@gnu.org>
d55486c7
CY
491
492 * simple.el (delete-active-region): Move to killing custom group.
493
a8e7d6d7 4942012-04-27 Andreas Schwab <schwab@linux-m68k.org>
581b6788
AS
495
496 * progmodes/which-func.el (which-func-current): Quote %
497 characters for mode-line processing.
498
578c1d4b 4992012-04-27 Chong Yidong <cyd@gnu.org>
18edb22d
CY
500
501 * xml.el (xml-parse-region, xml-parse-tag): Avoid errors due to
502 reaching eob (Bug#11286).
503
a8e7d6d7 5042012-04-27 Eli Zaretskii <eliz@gnu.org>
9ee9f470
EZ
505
506 * progmodes/gdb-mi.el (gdb-control-level): New variable.
507 (gdb): Make it buffer-local and init to zero.
508 (gdb-control-commands-regexp): New variable.
509 (gdb-send): Don't wrap in "-interpreter-exec console" if
510 gdb-control-level is positive. Increment gdb-control-level
511 whenever the command matches gdb-control-commands-regexp, and
512 decrement it each time the command is "end". (Bug#11279)
513
a8e7d6d7 5142012-04-27 Martin Rudalics <rudalics@gmx.at>
41cfe0cb
MR
515
516 * window.el (adjust-window-trailing-edge, enlarge-window)
517 (shrink-window, window-resize):
518 * mouse.el (mouse-drag-line): Fix resizing of minibuffer
519 windows (Bug#11276).
520
b3608390
CY
5212012-04-27 Chong Yidong <cyd@gnu.org>
522
523 * progmodes/pascal.el (pascal--extra-indent): Rename from ind, to
a8e7d6d7 524 fix "missing prefix" warning. All callers changed.
b3608390 525
797e6e88
SM
5262012-04-27 Stefan Monnier <monnier@iro.umontreal.ca>
527
528 * emacs-lisp/assoc.el: Move to obsolete/.
529
e95a67dc
SM
5302012-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
531
657c21e4 532 * emacs-lisp/assoc.el (aget): Fix dynamic-scoping issue (bug#11352).
e95a67dc
SM
533
534 * term/ns-win.el (ns-define-service):
535 * progmodes/pascal.el (pascal-goto-defun):
536 * progmodes/js.el (js--read-tab):
537 * progmodes/etags.el (tags-lazy-completion-table):
538 * emacs-lisp/syntax.el (syntax-propertize-via-font-lock):
539 * emacs-lisp/ewoc.el (ewoc--wrap):
540 * emacs-lisp/assoc.el (aput, adelete, amake):
541 * doc-view.el (doc-view-convert-current-doc):
542 * vc/diff.el (diff-no-select): Replace lexical-let by lexical-binding.
543
cb3e7ae0
CY
5442012-04-26 Chong Yidong <cyd@gnu.org>
545
dce04f7f
CY
546 * image.el (image-type-from-buffer): Only return supported image
547 type (Bug#9045).
548
cb3e7ae0
CY
549 * vc/diff-mode.el (diff-beginning-of-hunk): Return a meaningful
550 value, for symmetry with diff-end-of-hunk.
551 (diff-split-hunk, diff-find-source-location)
552 (diff-ignore-whitespace-hunk, diff-refine-hunk): Use it.
553 (diff-bounds-of-hunk, diff-bounds-of-file): New functions.
554 (diff-restrict-view, diff-hunk-kill, diff-file-kill): Use them to
555 compute the relevant hunk or file properly (Bug#6005).
556 (diff-file-junk-re): Add bzr's "modified file" tag (Bug#6041).
557
0d42eb3e
SM
5582012-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
559
560 * vc/vc-mtn.el:
561 * vc/vc-hg.el:
562 * vc/vc-git.el:
563 * vc/vc-dir.el:
564 * vc/vc-cvs.el:
565 * vc/vc-bzr.el:
566 * vc/vc-arch.el:
567 * vc/vc.el: Replace lexical-let by lexical-binding.
568 * minibuffer.el (lazy-completion-table): Avoid ((λ ...) ...).
569 * emacs-lisp/cl-macs.el (lexical-let): Fix use in lexical-binding.
570 * emacs-lisp/cconv.el (cconv-analyse-form): Warn use of ((λ ...) ...).
571
f08ae1c9
CY
5722012-04-26 Chong Yidong <cyd@gnu.org>
573
8b71081d
CY
574 * vc/diff-mode.el (diff-undo): New command (Bug#5302).
575 (diff-mode-shared-map): Bind it to / and [remap undo].
576
f08ae1c9
CY
577 * vc/ediff-wind.el (ediff-setup-windows-default): New function.
578 (ediff-window-setup-function): Use it as the default, to set up
579 windows based on whether the current frame is graphical (Bug#2138).
580 (ediff-choose-window-setup-function-automatically): Make obsolete.
581
582 * vc/ediff-init.el: Always define ediff-pixel-width/height.
583
ef24141c
SM
5842012-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
585
cc356a5d
SM
586 * ffap.el: Remove old code for obsolete package.
587 (ffap-complete-as-file-p): Remove.
588
b4ff4f1f
SM
589 Use completion-table-with-quoting for comint and pcomplete.
590 * comint.el (comint--unquote&requote-argument)
591 (comint--unquote-argument, comint--requote-argument): New functions.
592 (comint--unquote&expand-filename, comint-unquote-filename): Obsolete.
593 (comint-quote-filename): Use regexp-opt-charset.
594 (comint--common-suffix, comint--common-quoted-suffix)
595 (comint--table-subvert): Remove.
596 (comint-unquote-function, comint-requote-function): New vars.
597 (comint--complete-file-name-data): Use them with
598 completion-table-with-quoting.
599 * pcmpl-unix.el (pcomplete/scp): Use completion-table-subvert.
600 * pcomplete.el (pcomplete-arg-quote-list)
601 (pcomplete-quote-arg-hook, pcomplete-quote-argument): Obsolete.
602 (pcomplete-unquote-argument-function): Default to non-nil.
603 (pcomplete-unquote-argument): Simplify.
604 (pcomplete--common-quoted-suffix): Remove.
605 (pcomplete-requote-argument-function): New var.
606 (pcomplete--common-suffix): New function.
607 (pcomplete-completions-at-point): Use completion-table-with-quoting
608 and completion-table-subvert.
609
79c4eeb4
SM
610 * minibuffer.el: Use completion-table-with-quoting for read-file-name.
611 (minibuffer--double-dollars): Preserve properties.
612 (completion--sifn-requote): New function.
613 (completion--file-name-table): Rewrite using it and c-t-with-quoting.
614
ef24141c
SM
615 * minibuffer.el: Add support for completion of quoted/escaped data.
616 (completion-table-with-quoting, completion-table-subvert): New funs.
617 (completion--twq-try, completion--twq-all): New functions.
618 (completion--nth-completion): New function.
619 (completion-try-completion, completion-all-completions): Use it.
620
784e7d6e
LL
6212012-04-25 Leo Liu <sdl.web@gmail.com>
622
dd2ac746
SM
623 * progmodes/python.el (python-pdbtrack-get-source-buffer):
624 Use compilation-message if available to find real filename.
784e7d6e 625
07875ee7
CY
6262012-04-25 Chong Yidong <cyd@gnu.org>
627
628 * vc/diff-mode.el (diff-setup-whitespace): New function.
629 (diff-mode): Use it.
630
631 * vc/diff.el (diff-sentinel):
632 * vc/vc.el (vc-diff-finish): Call diff-setup-whitespace to assign
633 Whitespace mode variables based on diff style (Bug#8612).
634
5055880d
LL
6352012-04-25 Leo Liu <sdl.web@gmail.com>
636
daf75653
LL
637 * progmodes/python.el (python-send-region): Add suffix .py to the
638 temp file.
639
5055880d
LL
640 * files.el (auto-mode-alist): Use javascript-mode instead.
641
db9b177b
AH
6422012-04-25 Alex Harsanyi <AlexHarsanyi@gmail.com>
643
ef24141c 644 Sync with soap-client repository. Support SOAP simpleType (Bug#10331).
db9b177b
AH
645
646 * soap-client.el (soap-resolve-references-for-sequence-type)
ef24141c 647 (soap-resolve-references-for-array-type): Hack to prevent self
db9b177b 648 references, see Bug#9.
ef24141c 649 (soap-parse-envelope): Report the contents of the 'detail' node
db9b177b 650 when receiving a fault reply.
ef24141c 651 (soap-parse-envelope): Report the contents of the entire 'detail' node.
db9b177b
AH
652
653 * soap-inspect.el (soap-sample-value-for-simple-type)
ef24141c 654 (soap-inspect-simple-type): New function.
db9b177b 655
ef24141c 656 * soap-client.el (soap-simple-type): New struct.
db9b177b 657 (soap-default-xsd-types, soap-default-soapenc-types)
ef24141c
SM
658 (soap-decode-basic-type, soap-encode-basic-type):
659 support unsignedInt and double basic types.
db9b177b 660 (soap-resolve-references-for-simple-type)
ef24141c
SM
661 (soap-parse-simple-type, soap-encode-simple-type): New function.
662 (soap-parse-schema): Parse xsd:simpleType declarations.
db9b177b
AH
663
664 * soap-client.el (soap-default-xsd-types)
ef24141c
SM
665 (soap-default-soapenc-types): Add integer, byte and anyURI types.
666 (soap-parse-complex-type-complex-content): Use `soap-wk2l' to find
667 the local name of "soapenc:Array".
668 (soap-decode-basic-type, soap-encode-basic-type): Support encoding
db9b177b
AH
669 decoding integer, byte and anyURI xsd types.
670
1fc6097b
CY
6712012-04-25 Chong Yidong <cyd@gnu.org>
672
673 * cus-edit.el (custom-buffer-create-internal): Update header text.
674
afc6df87
EZ
6752012-04-25 Eli Zaretskii <eliz@gnu.org>
676
677 * progmodes/gdb-mi.el (gdb-init-1): Condition Windows-specific
678 settings on 'system-type', not on 'window-system'. On MS-Windows,
679 set interactive-mode on in GDB.
680
dfbd787f
SM
6812012-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
682
683 * progmodes/ruby-mode.el: Simplify last change, and cleanup code.
684 (ruby-syntax-propertize-regexp): Remove.
685 (ruby-syntax-propertize-function): Split regexp into chunks.
686 Match following code directly.
687
85222d44
DG
6882012-04-24 Dmitry Gutov <dgutov@yandex.ru>
689
51a8ea2a
DG
690 * progmodes/ruby-mode.el: Handle Cucumber defs (bug#6286).
691 (ruby-syntax-propertize-regexp): New function.
692 (ruby-syntax-propertize-function): Use it to handle regexp not preceded
693 by a special keyword.
694
85222d44
DG
695 * progmodes/ruby-mode.el: Handle general delimited literals (bug#6286).
696 (ruby-syntax-general-delimiters-goto-beg)
697 (ruby-syntax-propertize-general-delimiters): New functions.
698 (ruby-syntax-propertize-function): Use them to handle GDL.
699 (ruby-font-lock-keywords): Move old handling of GDL...
700 (ruby-font-lock-syntactic-keywords): .. to here.
701 (ruby-calculate-indent): Adjust indentation for GDL.
702
b613912b
MA
7032012-04-24 Michael Albinus <michael.albinus@gmx.de>
704
b5380639
MA
705 * notifications.el (top): Remove unneeded declarations.
706 (notifications-specification-version): Change to "1.2".
e43042fe 707 (notifications-interface, notifications-notify-method)
b613912b
MA
708 (notifications-close-notification-method): Fix docstring.
709 (notifications-get-capabilities-method): New defconst.
e43042fe
MA
710 (notifications-notify): Add :action-items, :resident and
711 :transient hints. Change "image_data" to "image-data" and
712 "image_path" to "image-path".
b613912b
MA
713 (notifications-get-capabilities): New defun.
714
257440aa
LL
7152012-04-24 Leo Liu <sdl.web@gmail.com>
716
717 * progmodes/python.el: Move hideshow setup to the end.
718
b1bac16e
MR
7192012-04-24 Martin Rudalics <rudalics@gmx.at>
720
721 * window.el (handle-select-window): Clear echo area since this is
722 no more done by read_char (Bug#11304).
723
d81bd059
SM
7242012-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
725
726 * ibuffer.el (ibuffer-mode-map): Bind `/ m' to filter-used-mode
727 and `/ M' to filter-derived-mode.
728 * ibuf-ext.el (ibuffer-list-buffer-modes): Simplify; avoid add-to-list.
729 (ibuffer-filter-by-mode, ibuffer-filter-by-used-mode)
730 (ibuffer-mark-by-mode): Use default rather than initial-input.
731 (ibuffer-filter-by-derived-mode): Autoload and require-match.
732
c4cf6d91
IA
7332012-04-24 Ivan Andrus <darthandrus@gmail.com> (tiny change)
734
735 * ibuf-ext.el (ibuffer-list-buffer-modes): Add `include-parents' arg.
736 (ibuffer-filter-by-derived-mode): New filter.
737 * ibuffer.el (ibuffer-mode-map): Bind to `/ w'.
738
7511ded8
CY
7392012-04-23 Andreas Politz <politza@fh-trier.de>
740
741 * subr.el (accept-change-group): Fix arg usage (Bug#6095).
742
775c916b
CY
7432012-04-23 Chong Yidong <cyd@gnu.org>
744
745 * cus-edit.el (customize-apropos, customize-apropos-options):
746 Disable matching of non-option variables (Bug#11176).
747 (customize-option, customize-option-other-window)
748 (customize-changed-options): Doc fix.
749 (customize-apropos-options, customize-apropos-faces)
750 (customize-apropos-groups): Use apropos-read-pattern (Bug#11124).
751
752 * apropos.el (apropos-read-pattern): Make prompt less cryptic.
922d37d3 753 Fix word list splitting (Bug#11132).
46c71e23
CY
754 (apropos-symbol, apropos-keybinding, apropos-label)
755 (apropos-property, apropos-function-button)
756 (apropos-variable-button, apropos-misc-button): New faces.
757 (apropos-symbol-face, apropos-keybinding-face)
758 (apropos-label-face, apropos-property-face, apropos-match-face):
759 Variables removed (Bug#8396).
760 (apropos-library-button, apropos-format-plist, apropos-print)
761 (apropos-print-doc, apropos-describe-plist): Callers changed.
775c916b 762
2df41f9c
MA
7632012-04-23 Michael Albinus <michael.albinus@gmx.de>
764
765 * net/xesam.el (xesam-mode-map): Use let-bound map in
766 initialization. (Bug#11292)
767
da00640a
AM
7682012-04-23 Agustín Martín Domingo <agustin.martin@hispalinux.es>
769
770 Preserve ispell session localwords when switching back to
771 original buffer.
772
773 * ispell.el (ispell-buffer-session-localwords): New buffer-local
774 variable to hold buffer session localwords.
775 (ispell-kill-ispell): add option 'clear to delete session
776 localwords.
777 (ispell-command-loop, ispell-change-dictionary)
778 (ispell-buffer-local-words): Preserve session localwords when
779 needed.
780
781 * flyspell.el (flyspell-process-localwords, flyspell-do-correct):
782 Preserve session localwords when needed.
783
f621ccf5
AM
7842012-04-23 Agustín Martín Domingo <agustin.martin@hispalinux.es>
785
786 * ispell.el (ispell-insert-word) Remove unneeded function using
787 obsolete `translation-table-for-input'.
ef24141c
SM
788 (ispell-word, ispell-process-line, ispell-complete-word):
789 Use plain `insert' instead of removed `ispell-insert-word'.
f621ccf5 790
c2d1019e
CY
7912012-04-22 Chong Yidong <cyd@gnu.org>
792
793 * cus-edit.el (custom-variable-menu)
794 (custom-variable-reset-saved, custom-face-menu)
795 (custom-face-reset-saved): If there is no saved value, make the
796 "reset-saved" operation bring back the default (Bug#9509).
797 (custom-face-state): Properly detect themed faces.
798
eeddc531
CY
799 * faces.el (face-spec-set): Stop supporting deprecated form of
800 third arg.
801
dcbf5805
MA
8022012-04-22 Michael Albinus <michael.albinus@gmx.de>
803
804 Move functions from C to Lisp. Make non-blocking method calls
805 the default. Implement further D-Bus standard interfaces.
806
ef24141c
SM
807 * net/dbus.el (dbus-message-internal): Declare function.
808 Remove unneeded function declarations.
dcbf5805
MA
809 (defvar dbus-message-type-invalid, dbus-message-type-method-call)
810 (dbus-message-type-method-return, dbus-message-type-error)
811 (dbus-message-type-signal): Declare variables. Remove local
812 definitions.
813 (dbus-interface-dbus, dbus-interface-peer)
814 (dbus-interface-introspectable, dbus-interface-properties)
815 (dbus-path-emacs, dbus-interface-emacs, dbus-return-values-table):
816 Adapt docstring.
817 (dbus-interface-objectmanager): New defconst.
818 (dbus-call-method, dbus-call-method-asynchronously)
819 (dbus-send-signal, dbus-method-return-internal)
820 (dbus-method-error-internal, dbus-register-service)
821 (dbus-register-signal, dbus-register-method): New defuns, moved
822 from dbusbind.c
823 (dbus-call-method-handler, dbus-setenv)
ef24141c
SM
824 (dbus-get-all-managed-objects, dbus-managed-objects-handler):
825 New defuns.
dcbf5805
MA
826 (dbus-call-method-non-blocking): Make it an obsolete function.
827 (dbus-unregister-object, dbus-unregister-service)
828 (dbus-handle-event, dbus-register-property)
829 (dbus-property-handler): Obey the new structure of
830 `bus-registered-objects'.
831 (dbus-introspect): Use `dbus-call-method'. Use a timeout.
832 (dbus-get-property, dbus-set-property, dbus-get-all-properties):
833 Use `dbus-call-method'.
834
cf20dee0
CY
8352012-04-22 Chong Yidong <cyd@gnu.org>
836
837 * cus-edit.el (custom-commands, custom-reset-menu)
838 (Custom-reset-standard): Tweak labels.
839 (custom-reset-button-menu): Change default to t.
840 (custom-buffer-create-internal): For the custom-reset-button-menu
841 case, put the revert button first.
842 (custom-group-subtitle): New face.
843 (custom-group-value-create): Align docstring to a specific column.
844
845 * wid-edit.el (widget-documentation-link-add): Don't handle
846 indentation in this function.
847 (widget-documentation-string-indent-to): New function.
848 (widget-documentation-string-value-create): Use it.
849
850 * autorevert.el (auto-revert):
851 * epg-config.el (epg):
852 * ibuffer.el (ibuffer):
853 * mpc.el (mpc):
854 * ses.el (ses):
855 * eshell/eshell.el (eshell):
856 * net/ange-ftp.el (ange-ftp):
857 * progmodes/ebnf2ps.el (postscript):
858 * progmodes/flymake.el (flymake):
859 * progmodes/prolog.el (prolog):
860 * progmodes/verilog-mode.el (verilog-mode):
861 * progmodes/which-func.el (which-func):
862 * term/xterm.el (xterm):
863 * textmodes/picture.el (picture):
864 * textmodes/tildify.el (tildify):
865 * vc/ediff.el (ediff): Tweak defgroups to improve presentation in
866 customization buffers.
867
583e23bd
AM
8682012-04-22 Alan Mackenzie <acm@muc.de>
869
870 * progmodes/cc-engine.el (c-append-lower-brace-pair-to-state-cache):
871 Adding a ) can hide the resulting (..) from searches. Fix it.
872 Bound the backward search to the position of the existing (.
873
7dd51bf1
JB
8742012-04-21 Juanma Barranquero <lekktu@gmail.com>
875
876 * progmodes/verilog-mode.el (verilog-mode): Check whether
877 which-func-modes is t before adding verilog-mode.
878 Reported by Andy Moreton <andrewjmoreton@gmail.com>.
879
d64a438f
LL
8802012-04-21 Leo Liu <sdl.web@gmail.com>
881
7dd51bf1 882 * net/rcirc.el (rcirc): Avoid error when process-contact returns t.
d64a438f 883
081e8d65
MV
8842012-04-21 Michael Vehrs <Michael.Burschik@gmx.de>
885
886 * woman.el: Add support for "T{ T}" tbl syntax, and fix the
887 filling of the last column of a table (Bug#5635).
888 (woman-find-next-control-line): New arg, specifying an additional
889 regexp component for the control line.
890 (woman2-roff-buffer): Use it.
891 (woman-break-table): New function.
892 (woman2-TS): Use it.
893
8942012-04-21 Chong Yidong <cyd@gnu.org>
895
896 * woman.el (woman-set-buffer-display-table, woman-decode-region)
897 (woman-horizontal-escapes, woman-negative-vertical-space)
898 (woman-tab-to-tab-stop, woman2-fc, woman2-TS)
899 (WoMan-warn-ignored): Use ?\s instead of ?\ .
900
ed571ccb
SM
9012012-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
902
903 * minibuffer.el (completion-file-name-table): Complete user names.
904
39773899
LL
9052012-04-20 Leo Liu <sdl.web@gmail.com>
906
907 * font-lock.el (lisp-font-lock-keywords-2): Add pcase, pcase-let
908 and pcase-let*.
909
de6ff46d
CY
9102012-04-20 Chong Yidong <cyd@gnu.org>
911
912 * server.el (server-execute): Respect initial-buffer-choice if it
913 is a string and there are no files to open (Bug#2825).
914 (server-create-window-system-frame, server-create-tty-frame):
915 Don't switch buffers here.
2d0e8e61
CY
916 (server-process-filter): Only try to open a window system frame if
917 compiled with graphical support (Bug#8314).
de6ff46d 918
54071013
DN
9192012-04-20 Dan Nicolaescu <dann@gnu.org>
920
921 * battery.el (battery-echo-area-format): Display remaining time
922 for sysfs backend too (Bug#11269).
923 (battery-linux-sysfs): Fix conditional for the charge.
924
f30d612a
CY
9252012-04-20 Chong Yidong <cyd@gnu.org>
926
c07a4c0b 927 * progmodes/gdb-mi.el (gdb): Revert previous change.
f30d612a
CY
928 (gdb-inferior-io--init-proc): New function.
929 (gdb-init-1): Use it.
930 (gdb-inferior-io-sentinel): New sentinel for the gdb-inferior pty,
931 responsible for allocating a new pty and hooking it to gdb when
932 the old pty gets an EIO due to process exit.
933 (gdb-delchar-or-quit): New command. Bind it in gdb-mi buffers.
934 (gdb-tooltip-print): Don't use obsolete tooltip-use-echo-area.
935 (gdb-inferior-io--maybe-delete-pty): Move into gdb-reset.
936
2116e93c
EZ
9372012-04-20 Eli Zaretskii <eliz@gnu.org>
938
939 * window.el (window-min-size, window-sizable, window-min-delta)
940 (window-max-delta, window--resizable, window-resizable)
941 (window-total-size, window-full-height-p, window-full-width-p)
942 (window-in-direction, window--resize-mini-window, window-resize)
943 (window--resize-child-windows-normal)
944 (window--resize-child-windows, window--resize-siblings)
945 (window--resize-this-window, adjust-window-trailing-edge)
cd0f830c 946 (enlarge-window, shrink-window): Doc fixes.
2116e93c 947
c07a4c0b 9482012-04-20 Chong Yidong <cyd@gnu.org>
b668fa6e 949
ef24141c
SM
950 * progmodes/gdb-mi.el (gdb-inferior-io--maybe-delete-pty):
951 New function to call delete-process on the gdb-inferior buffer's pty.
b668fa6e
CY
952 (gdb-reset): Use it, instead of relying on kill-buffer to kill the
953 pty process (Bug#11273).
954 (gdb-update): New arg to suppress talking to the gdb process.
955 (gdb-done-or-error): Use it.
956 (gdb-stopped-functions): Rename from gdb-stopped-hooks.
957 (gdb): Call gdb-inferior-io--maybe-delete-pty as a workaround for
958 sentinel not being called.
959
960 * comint.el (make-comint-in-buffer, comint-exec): Doc fix.
961
d02766ab
CY
962 * progmodes/grep.el (grep, rgrep): Doc fix (Bug#11268).
963
c07a4c0b 9642012-04-20 Glenn Morris <rgm@gnu.org>
016a35df
GM
965
966 * net/network-stream.el (open-network-stream): Doc fix.
967
c07a4c0b 9682012-04-20 Chong Yidong <cyd@gnu.org>
2c070447
CY
969
970 * emacs-lisp/tabulated-list.el (tabulated-list-print): Fix typos.
971
c07a4c0b 9722012-04-20 Alan Mackenzie <acm@muc.de>
f0f6bc35
AM
973
974 Ensure searching for keywords is case sensitive.
975
976 * progmodes/cc-cmds.el (c-electric-brace, c-electric-lt-gt)
977 (c-electric-paren, c-beginning-of-defun, c-end-of-defun)
978 (c-defun-name, c-mark-function, c-cpp-define-name)
979 (c-comment-indent, c-scan-conditionals, c-indent-defun)
c07a4c0b 980 (c-context-line-break): Bind case-fold-search to nil.
f0f6bc35 981
ef24141c
SM
982 * progmodes/cc-mode.el (c-font-lock-fontify-region):
983 Bind case-fold-search to nil.
f0f6bc35 984
c07a4c0b 9852012-04-20 Chong Yidong <cyd@gnu.org>
4fc2c72a
CY
986
987 * mail/sendmail.el (mail-bury): Call return action with the right
988 Rmail buffer (Bug#11242).
989
9a864fa2
CY
990 * server.el (server-process-filter): Handle corner case where both
991 tty and nowait options are present (Bug#11102).
992
539aa513
EZ
9932012-04-20 Eli Zaretskii <eliz@gnu.org>
994
995 * version.el (emacs-bzr-version, emacs-bzr-get-version): Doc fixes.
6cf2a23e
EZ
996 (top level): Put into the executable the ident-style '$Id:' tag on
997 windows-nt as well.
539aa513 998
cfc7d5da
SM
9992012-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
1000
1001 * electric.el (electric-indent-post-self-insert-function): Check that
1002 electric-indent-mode is enabled in current buffer.
1003
5b01685c
JB
10042012-04-19 Juanma Barranquero <lekktu@gmail.com>
1005
1006 * imenu.el (imenu-progress-message): Restore; it is "used" in
1007 erc/erc-imenu.el and net/snmp-mode.el.
1008
4d6769e1
JB
10092012-04-19 Juanma Barranquero <lekktu@gmail.com>
1010
1011 * avoid.el (mouse-avoidance-mode): Mark unused arg.
1012 (mouse-avoidance-nudge-mouse): Remove unused binding.
1013
1014 * bs.el (bs-toggle-readonly): Call `toggle-read-only' interactively.
1015
1016 * descr-text.el (describe-char):
1017 * progmodes/python.el (python-describe-symbol):
1018 Don't call `toggle-read-only', set `buffer-read-only'.
1019
1020 * imenu.el (imenu-default-goto-function): Mark unused args.
1021 (imenu-progress-message): Remove obsolete macro; all callers changed.
1022
1023 * subr.el (keymap-canonicalize): Remove unused binding.
1024 (read-passwd): Mark unused arg.
1025
1026 * tutorial.el (tutorial--display-changes): Remove unused binding.
1027 (tutorial--save-tutorial-to): Remove unused variable.
1028
1029 * emacs-lisp/package.el (define-package, package-menu-mark-delete)
1030 (package-menu-mark-install, package-menu-mark-unmark): Mark unused args.
1031 (package-generate-autoloads, package-menu--generate)
1032 (package-menu--find-upgrades): Remove unused bindings.
1033
1034 * emulation/cua-rect.el (cua-restrict-regexp-rectangle)
1035 (cua-restrict-prefix-rectangle): Doc fixes. Remove unused bindings.
1036 (cua--mouse-ignore, cua--delete-rectangle, cua--extract-rectangle)
1037 (cua--indent-rectangle, cua-open-rectangle, cua-close-rectangle)
1038 (cua-blank-rectangle, cua-string-rectangle, cua-replace-in-rectangle)
1039 (cua-incr-rectangle, cua-sequence-rectangle, cua--convert-rectangle-as)
1040 (cua--rectangle-aux-replace, cua--left-fill-rectangle)
1041 (cua-scroll-rectangle-up, cua-scroll-rectangle-down)
1042 (cua-delete-char-rectangle): Mark unused args.
1043 (cua-align-rectangle): Remove unused binding.
1044
1045 * mail/rmail.el (compilation--message->loc)
1046 (epa--find-coding-system-for-mime-charset): Declare.
1047
1048 * net/dbus.el (dbus-register-service): Declare.
1049 (dbus-name-owner-changed-handler): Remove unused binding.
1050
1051 * nxml/nxml-mode.el (nxml-electric-slash, nxml-in-mixed-content-p)
1052 (nxml-compute-indent-from-matching-start-tag): Remove unused variables.
1053 (nxml-scan-backward-within): Mark unused arg.
1054 (nxml-dynamic-markup-word): Remove unused binding.
1055
1056 * mouse.el (mouse-menu-major-mode-map):
1057 * emacs-lisp/authors.el (authors-scan-change-log)
1058 (authors-add-to-author-list):
1059 * emacs-lisp/avl-tree.el (avl-tree--enter-balance):
1060 * emacs-lisp/smie.el (smie-auto-fill):
1061 * mail/sendmail.el (mail-bury):
1062 * mail/unrmail.el (unrmail):
1063 * net/tls.el (open-tls-stream):
1064 * textmodes/picture.el (picture-mouse-set-point):
1065 Remove unused bindings.
1066
8c8fc5df
MA
10672012-04-19 Michael Albinus <michael.albinus@gmx.de>
1068
1069 * net/tramp.el (tramp-action-password): Let-bind
1070 `enable-recursive-minibuffers' to t.
1071
a77b0ac9
SS
10722012-04-18 Sam Steingold <sds@gnu.org>
1073
1074 * progmodes/gud.el (gud-key-prefix): Use :type 'key-sequence
1075 instead of 'string to accommodate values like [f11].
1076 Always use `vconcat' instead of `concat' on it, like in `gud-def'.
1077 * progmodes/gdb-mi.el: Likewise.
1078
12a106a9
LL
10792012-04-18 Leo Liu <sdl.web@gmail.com>
1080
1081 * abbrev.el (edit-abbrevs): Move point to the abbrev table of
1082 current buffer.
1083 (prepare-abbrev-list-buffer): Enter edit-abbrevs-mode only if
1084 LOCAL is nil.
1085
bc6494ef
CY
10862012-04-18 Chong Yidong <cyd@gnu.org>
1087
1088 * simple.el (line-move): Use forward-line if in batch mode
1089 (Bug#11053).
1090
c09c46b2
CS
10912012-04-18 Christopher Schmidt <christopher@ch.ristopher.com>
1092
1093 * files.el (after-find-file): Do not try to add a final newline if
1094 the buffer is read-only (Bug#11156).
1095
5f6530ea
RS
10962012-04-17 Richard Stallman <rms@gnu.org>
1097
1098 * mail/rmail.el (rmail-start-mail):
1099 Pass (rmail-mail-return...) for the return-action.
1100 Pass (rmail-yank-current-message...) for the yank-action.
1101 (rmail-yank-current-message): New function.
1102 (rmail-mail): Pass the Rmail buffer, not view buffer, for replybuffer.
1103 (rmail-reply): Likewise.
1104 (rmail-forward): Pass the Rmail buffer, not nil, for replybuffer.
1105
1106 * mail/sendmail.el (mail-bury): Choose the first rmail-mode
c09c46b2 1107 buffer, not the last. Reject temp buffers. Use the rmail-mode
5f6530ea
RS
1108 buffer, not newbuf.
1109
197b6f3c
JB
11102012-04-17 Juanma Barranquero <lekktu@gmail.com>
1111
1112 * server.el (server-ensure-safe-dir): Simplify.
1113
2311d8e5 11142012-04-17 Stefan Monnier <monnier@iro.umontreal.ca>
98fb480e 1115
2311d8e5
GM
1116 * emacs-lisp/smie.el: Provide smarter auto-filling.
1117 (smie-auto-fill): New function.
1118 (smie-setup): Use it.
98fb480e 1119
2311d8e5
GM
1120 * newcomment.el (comment-choose-indent): Obey comment-inline-offset.
1121
11222012-04-17 Philipp Haselwarter <philipp.haselwarter@gmx.de> (tiny change)
8eb5d48f
PH
1123
1124 * newcomment.el (comment-inline-offset): New custom var (bug#11090).
1125 (comment-indent): Use it.
1126
2311d8e5 11272012-04-17 Vincent Belaïche <vincentb1@users.sourceforge.net>
4bdf2ad2
VB
1128
1129 * ses.el: The overall change is to add cell renaming, that is
1130 setting fancy names for cell symbols other than name matching
1131 "\\`[A-Z]+[0-9]+\\'" regexp .
2311d8e5 1132 (ses-localvars): Add ses--renamed-cell-symb-list.
4bdf2ad2 1133 (ses-create-cell-variable): New defun.
2311d8e5 1134 (ses-destroy-cell-variable-range): Respect ses--numrows, ses--numcols.
4bdf2ad2
VB
1135 (ses-relocate-formula): Relocate formulas only for cells the
1136 symbols of which are not renamed, i.e. symbols whose names do not
1137 match regexp "\\`[A-Z]+[0-9]+\\'".
1138 (ses-relocate-all): Relocate values only for cells the symbols of
1139 which are not renamed.
1140 (ses-load): Create cells variables as the (ses-cell ...) are read,
1141 in order to check row col consistency with cell symbol name only
1142 for cells that are not renamed.
1143 (ses-replace-name-in-formula): New defun.
1144 (ses-rename-cell): New defun.
4bdf2ad2 1145
fc72b15c
PO
11462012-04-17 Peter Oliver <bzr@mavit.org.uk> (tiny change)
1147
1148 * progmodes/perl-mode.el (perl-indent-parens-as-block):
1149 New option (bug#11118).
1150 (perl-calculate-indent): Respect it.
1151
12e10e61
GM
11522012-04-17 Glenn Morris <rgm@gnu.org>
1153
1154 * dired-aux.el (dired-mark-read-string): Doc fix.
1155
30009afd
DA
11562012-04-17 Dmitry Antipov <dmantipov@yandex.ru>
1157
1158 * dired-aux.el (dired-mark-read-string): Offer optional completion.
1159 (dired-do-chxxx): Complete chown, chgrp over users, groups. (Bug#7900)
1160
41f03f4d
GM
11612012-04-17 Glenn Morris <rgm@gnu.org>
1162
1163 * mouse.el (mouse-drag-track):
1164 * speedbar.el (speedbar-frame-mode):
1165 Use auto-hscroll-mode rather than the alias automatic-hscrolling.
1166
f45f90f3
LL
11672012-04-16 Leo Liu <sdl.web@gmail.com>
1168
1169 * progmodes/python.el: Trivial cleanup.
1170
94ee8db5
GM
11712012-04-16 Glenn Morris <rgm@gnu.org>
1172
121b8917
GM
1173 * vc/vc.el (vc-string-prefix-p):
1174 * vc/pcvs-util.el (cvs-string-prefix-p):
1175 * textmodes/tex-mode.el (latex-string-prefix-p, tex-string-prefix-p):
1176 * mpc.el (mpc-string-prefix-p):
1177 Make all of these into obsolete aliases for string-prefix-p.
1178 Update callers.
1179 * vc/pcvs.el, vc/vc-dispatcher.el, vc/vc-dir.el: Update callers.
1180
1197ecfa
GM
1181 * textmodes/two-column.el: Move custom options to the start.
1182 (frame-width): Remove compat definition.
1183 (2C-associate-buffer, 2C-dissociate):
1184 Use with-current-buffer rather than save-excursion.
1185 (2C-dissociate): Force a mode-line update.
1186 (2C-autoscroll): Use ignore-errors.
1187
099e7202
GM
1188 * emacs-lisp/eieio-opt.el (describe-class, describe-generic):
1189 Autoload trivia.
1190
bf350d6a
GM
1191 * emacs-lisp/cl-extra.el (*random-state*):
1192 Remove unnecessary declaration.
1193
0e829eab
GM
1194 * calendar/cal-tex.el (cal-tex-end-document): Trivial clarification.
1195
e3ad7552
GM
1196 * play/cookie1.el (cookie-snarf):
1197 Give an explicit error if input file cannot be read.
1198
68892d27
GM
1199 * play/yow.el (yow-file): Use expand-file-name rather than concat.
1200
20f0c46d
GM
1201 * progmodes/perl-mode.el (c-macro-expand):
1202 Remove unnecessary autoload (it is in loaddefs.el).
1203
5a0978ce
GM
1204 * textmodes/picture.el (picture-desired-column)
1205 (picture-update-desired-column): Convert comments to doc-strings.
1206 (picture-substitute): Remove function.
1207 (picture-mode-map): Initialize in the defvar.
1208
6b955486
GM
1209 * woman.el: Remove eval-after-load for tar-mode.
1210 * tar-mode.el (tar-mode-map): Add woman binding and menu entry.
1211 (woman-tar-extract-file): Autoload it.
1212
94ee8db5
GM
1213 * frame.el (automatic-hscrolling): Make this alias obsolete.
1214
177eca34
AM
12152012-04-12 Agustín Martín Domingo <agustin.martin@hispalinux.es>
1216
1217 * ispell.el (ispell-set-spellchecker-params): Post-process
4be3075e 1218 `ispell-dictionary-alist' to use [:alpha:] and utf-8 if possible.
3851314b
AM
1219 (ispell-dictionary-base-alist): Revert to original XEmacs
1220 friendly version for default. [:alpha:] will be added in
1221 `ispell-set-spellchecker-params' if needed
177eca34 1222
c505aaeb
CY
12232012-04-16 Chong Yidong <cyd@gnu.org>
1224
1225 * image.el (imagemagick--extension-regexp): New variable.
1226 (imagemagick-register-types): Use it.
1227 (imagemagick-types-inhibit): Add :set function. Allow new value
1228 of t to inhibit all types.
1229
1230 * emacs-lisp/regexp-opt.el (regexp-opt-charset): Avoid cl macros,
1231 so we can preload it.
1232
1233 * loadup.el (fboundp): Preload regexp-opt, needed by
1234 imagemagick-register-types.
1235
60efac0f
CY
12362012-04-15 Chong Yidong <cyd@gnu.org>
1237
1238 * frame.el (scrolling): Remove nearly unused customization group.
1239
1240 * scroll-all.el (scroll-all-mode): Move to windows group.
1241
5dd1713e
CY
12422012-04-15 Chong Yidong <cyd@gnu.org>
1243
1244 * bindings.el (goto-map): Bind goto-char to M-g c (Bug#11240).
1245
e6fd457e
CY
12462012-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
1247
1248 Avoid the use of ((lambda ...) ...) in lexical-binding code.
4d6769e1 1249 * emacs-lisp/easy-mmode.el (define-minor-mode): Use funcall (bug#11241).
e6fd457e 1250
e153c136
GM
12512012-04-15 Glenn Morris <rgm@gnu.org>
1252
1253 * simple.el (process-file-side-effects): Doc fix.
1254
e6fd457e 12552012-04-15 Glenn Morris <rgm@gnu.org>
ca7d96c8
GM
1256
1257 * international/mule-cmds.el (set-language-environment): Doc fix.
1258
3603c3b1
JB
12592012-04-14 Juanma Barranquero <lekktu@gmail.com>
1260
1261 * server.el (server-auth-key, server-generate-key): Doc fixes.
1262 (server-get-auth-key): Doc fix. Use `string-match-p'.
1263 (server-start): Reflow docstring.
1264
e6de100c
LI
12652012-04-14 Lars Ingebrigtsen <larsi@gnus.org>
1266
1267 * server.el (server-generate-key): `called-interactively-p'
1268 requires a parameter.
1269
29734c21
MN
12702012-04-14 Michal Nazarewicz <mina86@mina86.com>
1271
1272 * server.el (server-auth-key): New variable.
75f1671a 1273 (server-generate-key, server-get-auth-key): New function.
29734c21
MN
1274 (server-start): Use the new variable and functions to allow
1275 setting a permanent server key (bug#9423).
1276
d65c9521
LL
12772012-04-14 Leo Liu <sdl.web@gmail.com>
1278
1279 * vc/diff-mode.el (diff-file-prev/next): Fix typo.
1280
5ae255c7
PE
12812012-04-14 Paul Eggert <eggert@cs.ucla.edu>
1282
1283 Spelling fixes.
1284 * hexl.el (hexl-rulerize): Rename from hexl-rulerise, since
1285 Emacs uses American spelling.
1286
d5e6342e
JB
12872012-04-14 Juanma Barranquero <lekktu@gmail.com>
1288
1289 * emacs-lock.el (emacs-lock-locked-buffer-functions): New hook.
1290 (emacs-lock--exit-locked-buffer): Return the locked buffer. Doc fix.
1291 (emacs-lock--kill-emacs-hook, emacs-lock--kill-emacs-query-functions)
1292 (emacs-lock--kill-buffer-query-functions): Run new hook. (Bug#11017)
1293
ab036cd7
SM
12942012-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
1295
1296 * progmodes/which-func.el (which-func-modes): Change default.
1297
35dc09a1 12982012-04-14 Kim F. Storm <storm@cua.dk>
9557e2be
CY
1299
1300 * emulation/cua-base.el (cua-exchange-point-and-mark): Just call
1301 exchange-point-and-mark if cua-enable-cua-keys is nil (Bug#11191).
1302
35dc09a1 13032012-04-14 Chong Yidong <cyd@gnu.org>
81927dd2
CY
1304
1305 * custom.el (custom-theme-set-variables): Doc fix.
1306
35dc09a1 13072012-04-14 Glenn Morris <rgm@gnu.org>
8edb942b
GM
1308
1309 * international/mule.el (set-auto-coding-for-load): Doc fix.
1310
35dc09a1 13112012-04-14 Alan Mackenzie <acm@muc.de>
0de3da9f 1312
35dc09a1
GM
1313 * progmodes/cc-menus.el (cc-imenu-objc-generic-expression): Make
1314 imenu work again for Objective C Mode. Correct the *-index values,
1315 these having been disturbed by a previous change in 2011-08.
57f845ee 1316
0de3da9f
AM
1317 * progmodes/cc-engine.el (c-before-change-check-<>-operators):
1318 Correct two search limits.
1319
35dc09a1 13202012-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
ede141ac
SM
1321
1322 * startup.el (command-line-1): Inhibit splash from daemon (bug#10996).
1323
35dc09a1 13242012-04-14 Andreas Schwab <schwab@linux-m68k.org>
d0203d61
AS
1325
1326 * international/characters.el: Fix sorting.
1327
35dc09a1 13282012-04-14 Eli Zaretskii <eliz@gnu.org>
cb80bcd1
EZ
1329
1330 * international/characters.el: Add more missing Latin case pairs.
1331
35dc09a1 13322012-04-14 Glenn Morris <rgm@gnu.org>
4a427f58
GM
1333
1334 * files.el (dir-locals-set-class-variables): Doc fix.
1335
35dc09a1 13362012-04-14 Eli Zaretskii <eliz@gnu.org>
9f847f41 1337
3f1b5bf8
EZ
1338 * international/characters.el: Add set-case-syntax-pair call for
1339 LATIN CAPITAL LETTER Y WITH DIAERESIS RET and its lower-case
1340 counterpart. (Bug#11209)
1341
9f847f41
EZ
1342 * simple.el (shell-command-on-region): Doc fix. (Bug#11208)
1343
35dc09a1 13442012-04-14 Glenn Morris <rgm@gnu.org>
0c2014a3
GM
1345
1346 * calendar/holidays.el (calendar-check-holidays): Doc fix.
1347
35dc09a1 13482012-04-14 Eli Zaretskii <eliz@gnu.org>
e2627d21 1349
35dc09a1
GM
1350 * textmodes/ispell.el (ispell-dictionary-base-alist):
1351 Add data for Hebrew.
e2627d21 1352
35dc09a1 13532012-04-14 Chong Yidong <cyd@gnu.org>
5c14e333 1354
35dc09a1
GM
1355 * net/rcirc.el (rcirc-cmd-quit):
1356 Revert 2012-03-18 change (Bug#11192).
5c14e333 1357
35dc09a1 13582012-04-14 Glenn Morris <rgm@gnu.org>
bf6fa423
GM
1359
1360 * pcmpl-rpm.el (pcomplete/rpm): Handle -qf.
1361
35dc09a1 13622012-04-14 Eli Zaretskii <eliz@gnu.org>
82b24fb2 1363
4517fe3a
SM
1364 * minibuffer.el (completion-in-region-mode-map):
1365 Bind completion-help-at-point to M-? rather than ?. (Bug#11182)
82b24fb2 1366
b472a594
VD
13672012-04-13 Vivek Dasmohapatra <vivek@etla.org>
1368
1369 * hexl.el (hexl-insert-char): Make display sizes other than 16 work.
1370
09b95ce3
MY
13712012-04-13 Masatake YAMATO <yamato@redhat.com>
1372
1373 * minibuffer.el (minibuffer-local-filename-syntax): New variable
1374 to allow `C-M-f' and `C-M-b' to move to the nearest path
1375 separator (bug#9511).
1376
4b63a9ca
LI
13772012-04-13 Lars Ingebrigtsen <larsi@gnus.org>
1378
1379 * avoid.el: Require cl when compiling. And also move the
1380 `provide' to the end.
1381
7b55b8bf
TV
13822012-04-13 Thierry Volpiatto <thierry.volpiatto@gmail.com>
1383
1384 * avoid.el (mouse-avoidance-banish-position): New variable.
1385 (mouse-avoidance-banish-destination): Use it (bug#10165).
1386
adedaa1f
LL
13872012-04-13 Leo Liu <sdl.web@gmail.com>
1388
1389 * progmodes/which-func.el (which-func-modes): Add objc-mode.
1390
70e74021
KB
13912012-04-13 Ken Brown <kbrown@cornell.edu>
1392
1393 * net/browse-url.el (browse-url-file-url): Remove Cygwin hack;
ab036cd7 1394 this is no longer needed now that cygstart understands file:// URLs.
70e74021
KB
1395 (browse-url-filename-alist): For the same reason, don't modify
1396 file:// URLs on Cygwin.
1397
e75e89ba
SM
13982012-04-13 Stefan Monnier <monnier@iro.umontreal.ca>
1399
1400 * emulation/cua-base.el (cua--pre-command-handler-1): Don't activate
1401 the region on shift if the binding is already shifted (bug#11221).
1402
82f289a4
GM
14032012-04-12 Glenn Morris <rgm@gnu.org>
1404
1405 * mail/mailpost.el: Move to obsolete/.
1406
d333dc4c
DA
14072012-04-12 Drew Adams <drew.adams@oracle.com>
1408
1409 * imenu.el (imenu--generic-function): Ignore invisible definitions
1410 (bug#10123).
1411
0d15b5ba
VD
14122012-04-12 Vivek Dasmohapatra <vivek@etla.org>
1413
1414 * hexl.el (hexl-bits): New variable.
1415 (hexl-options): Mention the variable in the doc string.
75f1671a 1416 (hexl-rulerise, hexl-line-displen): New functions.
0d15b5ba 1417 (hexl-mode): Mention the new variable.
75f1671a
JB
1418 (hexl-mode, hexl-current-address, hexl-current-address):
1419 Use the displen.
0d15b5ba
VD
1420 (hexl-ascii-start-column): New function.
1421 (hexl-address-to-marker, hexl-beginning-of-line, hexl-options)
1422 (hexl-insert-char, hexl-mode-ruler): Use the displen (bug#4941).
1423
64a440db
AM
14242012-04-12 Agustín Martín Domingo <agustin.martin@hispalinux.es>
1425
1426 * textmodes/flyspell.el (flyspell-large-region): For hunspell, use
1427 '("-i" ENCODING), in 2 separate command-line arguments, to specify
1428 the encoding, as expected by hunspell.
1429
6decb6c2
SM
14302012-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
1431
1432 * battery.el (battery--linux-sysfs-regexp): New const.
1433 (battery-status-function): Use it. Remove yeeloong special case.
1434 (battery-yeeloong-sysfs): Remove.
1435 (battery-echo-area-format): Remove yeeloong special case.
1436
088be6fb
SM
14372012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
1438
6622e416
SM
1439 * imenu.el (imenu-add-to-menubar): `current-local-map' can be nil.
1440 Reported by Noah Friedman.
1441
088be6fb
SM
1442 * subr.el (read-passwd): Use read-string.
1443
b49f886e
LMI
14442012-04-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
1445
1446 * vcursor.el (vcursor-move): Increase the priority of the overlay
1447 (bug#9663).
1448
a63067fc
DD
14492012-04-11 Deniz Dogan <deniz.a.m.dogan@gmail.com>
1450
1451 * net/rcirc.el (rcirc-kill-channel-buffers): New variable.
1452 (rcirc-kill-buffer-hook): Use it to kill channel buffers (bug#5128).
1453
ac3cf14a
WS
14542012-04-11 William Stevenson <yhvh2000@gmail.com>
1455
1456 * textmodes/artist.el (artist-mode): Convert artist-mode to use
1457 define-minor-mode (bug#10760).
1458
c4fc691b 14592012-04-11 Wolfgang Jenkner <wjenkner@inode.at> (tiny change)
49a2697c 1460
4d6769e1 1461 * progmodes/grep.el (rgrep): Tweak the find command line so
49a2697c
WJ
1462 that directories matching `grep-find-ignored-files' won't be
1463 pruned (bug#10351).
1464
af23e2e5
CY
14652012-04-11 Chong Yidong <cyd@gnu.org>
1466
1467 * startup.el (command-line): Remove support for long-obsolete
1468 variable font-lock-face-attributes.
1469
ab7ce8c1
GM
14702012-04-11 Glenn Morris <rgm@gnu.org>
1471
1472 * vc/vc-bzr.el (vc-bzr-status): Avoid condition-case-unless-debug.
1473
de8c03dc
SM
14742012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
1475
1476 * window.el (window--state-get-1): Obey window-point-insertion-type.
1477
050cc68b
LB
14782012-04-11 Lennart Borgman <lennart.borgman@gmail.com>
1479
1480 * emacs-lisp/lisp.el (narrow-to-defun): `beginning-of-defun' goes
1481 to previous function when point is on the first character of a
75f1671a 1482 function. Take care of that in `narrow-to-defun' (bug#6157).
050cc68b 1483
a38c310c
GM
14842012-04-11 Glenn Morris <rgm@gnu.org>
1485
effed0c2
GM
1486 * vc/vc-bzr.el (vc-bzr-status): Handle all errors,
1487 not just file-errors.
1488
a38c310c
GM
1489 * vc/vc-bzr.el (vc-bzr-sha1-program, sha1-program): Remove.
1490 (vc-bzr-sha1): Use internal sha1.
1491
0221e323
SM
14922012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
1493
1494 * progmodes/flymake.el (flymake-mode): Beware read-only dirs (bug#8954).
1495
43956923
SG
14962012-04-10 Sébastien Gross <seb@chezwam.org> (tiny change)
1497
1498 * progmodes/hideshow.el (hs-hide-all): Don't infloop on comments
1499 that start in the middle of the line (bug#10496).
1500
6a8c9eaf
DN
15012012-04-10 Dan Nicolaescu <dann@gnu.org>
1502
1503 * battery.el (battery-linux-proc-acpi): Only one battery is
1504 discharged at a time, but that seems to confuse battery.el when
1505 computing `rate-type' for the battery not being discharged
1506 (bug#10332).
1507
1930bf5d
SM
15082012-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
1509
2a718f6f
SM
1510 * emacs-lisp/autoload.el (autoload-make-program): Remove, unused.
1511
599430d0
SM
1512 * international/quail.el: Use dolist and simplify.
1513 (quail-define-package, quail-update-keyboard-layout)
1514 (quail-define-rules): Use dolist.
1515 (quail-insert-kbd-layout, quail-get-translation): CSE.
1516
a2754b6c
SM
1517 * tmm.el: Use dolist, remove left over hook.
1518 (tmm-prompt, tmm-define-keys, tmm-shortcut, tmm-get-keybind):
1519 Use dolist.
1520 (calendar-load-hook): Don't mess with it.
1521
1930bf5d
SM
1522 * vc/vc-annotate.el (vc-annotate-show-diff-revision-at-line-internal):
1523 Use derived-mode-p. Run the diff asynchronously.
1524
9f67961c
LMI
15252012-04-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
1526
1527 * obsolete/mouse-sel.el: Add an Obsolete-since header.
1528
2a8ce227
JB
15292012-04-10 Juanma Barranquero <lekktu@gmail.com>
1530
1531 * misc.el: Display absolute path of loaded DLLs (bug#10424).
1532 (list-dynamic-libraries--loaded): New function.
1533 (list-dynamic-libraries--refresh): Use it.
1534
8f33b5f8
NW
15352012-04-10 Nathan Weizenbaum <nweiz@google.com>
1536
1930bf5d
SM
1537 * progmodes/python.el (python-fill-paragraph):
1538 Make python-fill-region in a multiline string work when font-lock is
8f33b5f8
NW
1539 disabled (bug#7018).
1540
b12f0439
L
15412012-04-10 Laimonas VÄ—bra <laimonas.vebra@gmail.com> (tiny change)
1542
1930bf5d 1543 * language/european.el (cp775): Add oem/legacy (en)coding on
75f1671a
JB
1544 DOS/MS Windows for the Baltic languages. There are still plenty
1545 of texts written in this encoding/codepage (bug#6519).
b12f0439 1546
57c3bd01
GM
15472012-04-10 Glenn Morris <rgm@gnu.org>
1548
1549 * cus-start.el (eol-mnemonic-unix, eol-mnemonic-dos, eol-mnemonic-mac):
1550 Add :standard values, reducing "rogue" customs in emacs -Q a bit more.
1551
6c3eab30
FA
15522012-04-10 Florian Adamsky <florian@adamsky.it> (tiny change)
1553
1930bf5d 1554 * recentf.el (recentf-dialog-mode-map): Add two keybindings for
6c3eab30
FA
1555 next-line "n" and previous-line "p" in order to make recentf more
1556 consistent with ibuffer, dired or org-mode (bug#9387).
1557
24d78a88
LMI
15582012-04-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
1559
bc72b5d9
LMI
1560 * image.el (put-image): Return the overlay created instead of the
1561 optional input string (bug#7834). Note that this may break code
1562 that is (for some reason or other) depending on `put-image'
1563 returning the string.
1564
bd2dba5a
LMI
1565 * mouse-sel.el (mouse-sel-mode): Mark as obsolete (bug#6174).
1566
74beb59f
LMI
1567 * simple.el (zap-to-char): Allow zapping using input methods
1568 (bug#1580).
1569
24d78a88
LMI
1570 * textmodes/fill.el (fill-region): Leave point and mark where they
1571 were before filling (bug#5399).
1572
263f20cd
GM
15732012-04-09 Glenn Morris <rgm@gnu.org>
1574
1575 * version.el (emacs-bzr-get-version):
1576 Handle lightweight checkouts of local branches.
1577
58d1f797
AS
15782012-04-09 Andreas Schwab <schwab@linux-m68k.org>
1579
263f20cd 1580 * international/characters.el: Recover lost case pairs. (Bug#11209)
58d1f797 1581
b4d3bc10
CY
15822012-04-09 Chong Yidong <cyd@gnu.org>
1583
1584 * custom.el (custom-variable-p): Return nil for non-symbol
1585 arguments instead of signaling an error.
1586 (user-variable-p): Obsolete alias for custom-variable-p.
1587
1588 * apropos.el (apropos-variable):
1589 * files-x.el (read-file-local-variable):
1590 * simple.el (set-variable):
1591 * woman.el (woman-mini-help):
1592 * emacs-lisp/byte-opt.el (side-effect-free-fns): Callers changed.
1593
fd06db5d
GM
15942012-04-09 Glenn Morris <rgm@gnu.org>
1595
e5fcdb5e
GM
1596 * startup.el (normal-top-level): Don't look for leim-list.el
1597 in places where it will not be found. (Bug#910)
1598
fd06db5d
GM
1599 * international/mule-cmds.el (set-default-coding-systems):
1600 * files.el (normal-mode):
1601 Remove guarded calls to ucs-set-table-for-input. (Bug#9821)
1602 This function was removed with ucs-tables.el in 2008.
1603
b39bb7e1
EZ
16042012-04-08 Eli Zaretskii <eliz@gnu.org>
1605
1606 * textmodes/ispell.el (ispell-check-version): For hunspell, set
1607 ispell-encoding8-command to "-i", without a trailing space.
1608 (ispell-start-process): For hunspell, use '("-i" ENCODING), in 2
1609 separate command-line arguments, to specify the encoding, since
1610 that's how hunspell expects it.
1611
5c5b8e23
GM
16122012-04-08 Glenn Morris <rgm@gnu.org>
1613
1614 * loadup.el: Load bindings before cus-start.
1615 This reduces somewhat the number of "rogue" settings in emacs -Q.
1616
a1ed8b05
GM
16172012-04-07 Glenn Morris <rgm@gnu.org>
1618
1619 * version.el (emacs-bzr-get-version): New function.
dfae128a 1620 (emacs-bzr-version): New variable.
a1ed8b05
GM
1621 * loadup.el (emacs-bzr-version): Set it. (Bug#8054)
1622 * mail/emacsbug.el (report-emacs-bug): Include bzr version.
1623
b142f158
EZ
16242012-04-07 Eli Zaretskii <eliz@gnu.org>
1625
dfae128a
GM
1626 * international/uni-bidi.el, international/uni-category.el:
1627 * international/uni-combining.el, international/uni-decimal.el:
1628 * international/uni-decomposition.el, international/uni-digit.el:
1629 * international/uni-lowercase.el, international/uni-mirrored.el:
1630 * international/uni-name.el, international/uni-numeric.el:
1631 * international/uni-titlecase.el, international/uni-uppercase.el:
1632 Update for Unicode 6.1.
b142f158 1633
9078ead6
EZ
16342012-04-07 Eli Zaretskii <eliz@gnu.org>
1635
1636 * term/w32-win.el (dynamic-library-alist): Add libxml2 DLLs.
1637
f23d2c7d
LMI
16382012-04-05 Lars Magne Ingebrigtsen <larsi@gnus.org>
1639
1640 * window.el (shrink-window): Mention the `window-min-height'
1641 variable in the doc string.
1642
0a0a3573
BG
16432012-04-05 Bastien Guerry <bzg@altern.org>
1644
1645 * color.el (color-lighten-name): Fix typo.
1646
e5248ac9
SM
16472012-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
1648
1649 * server.el (server--on-display-p): New function.
1650 (server--on-display-p): Use it.
1651
b4243e22
GV
16522012-04-04 Gabor Vida <vidagabor@gmail.com> (tiny change)
1653
1654 * ido.el (ido-wide-find-dirs-or-files): Use file-name-absolute-p
1655 (bug#11145).
1656
305d9f44
SM
16572012-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
1658
1659 * comint.el (comint--common-quoted-suffix): Check string boundary
1660 before comparing (bug#11158).
1661 * pcomplete.el (pcomplete--common-quoted-suffix): Idem.
1662
3d439cd1
CY
16632012-04-04 Chong Yidong <cyd@gnu.org>
1664
321cc491
CY
1665 * minibuffer.el (completion-extra-properties): Doc fix.
1666
3d439cd1
CY
1667 * subr.el (delayed-warnings-hook): Doc fix.
1668
2d562c0f
DU
16692012-04-04 Daiki Ueno <ueno@unixuser.org>
1670
1671 * epa.el (epa--select-keys): Bind C-c C-c to finish the key
1672 selection (Bug#11159).
1673 (epa-insert-keys): Inform that the default public key will be
1674 exported if no key is selected.
1675
4443f204
RS
16762012-04-04 Richard Stallman <rms@gnu.org>
1677
1678 * mail/emacsbug.el (report-emacs-bug): Bind inhibit-read-only.
1679
529c06b6
CY
16802012-04-03 Chong Yidong <cyd@gnu.org>
1681
1682 * mail/sendmail.el (mail-mode-map): Bind C-c C-i to
1683 mail-insert-file, not its obsolete alias mail-attach-file.
1684
66b907dc
MA
16852012-04-03 Michael Albinus <michael.albinus@gmx.de>
1686
1687 * notifications.el (notifications-notify): Fix docstring.
1688
c0ea195d
GM
16892012-04-02 Glenn Morris <rgm@gnu.org>
1690
1691 * emacs-lisp/authors.el (authors-aliases): Another addition.
1692
5ca64e00
MA
16932012-04-02 Michael Albinus <michael.albinus@gmx.de>
1694
1695 * net/tramp-gvfs.el (tramp-gvfs-send-command): Apply
1696 `tramp-compat-call-process' instead of `tramp-local-call-process'.
1697 Reported by Magnus Henoch <magnus.henoch@gmail.com>.
1698
42ee526b
CY
16992012-04-01 Chong Yidong <cyd@gnu.org>
1700
1701 * files.el (file-in-directory-p): Rename from file-subdir-of-p.
1702 Handle root directory properly.
1703 (copy-directory): Caller changed.
1704
1705 * dired-aux.el (dired-copy-file-recursive, dired-create-files):
1706 * net/tramp.el (tramp-file-name-for-operation): Callers changed.
1707
0b021094
GM
17082012-03-31 Glenn Morris <rgm@gnu.org>
1709
40f86458
GM
1710 * term/xterm.el (xterm-extra-capabilities): Doc fix.
1711
7019c177
GM
1712 * language/indian.el ("Devanagari"): Fix typo. (Bug#11103)
1713
a1daddd6
GM
1714 * calendar/calendar.el (calendar-window-list)
1715 (calendar-hide-window): Restore. (Bug#11140)
1716 (calendar-exit): Use calendar-window-list, calendar-hide-window again.
1717
0b021094
GM
1718 * emacs-lisp/edebug.el (edebug-unwrap-results): Doc fix.
1719
40311efc
TV
17202012-03-30 Thierry Volpiatto <thierry.volpiatto@gmail.com>
1721
1722 * dired-aux.el (dired-copy-file-recursive, dired-create-files):
1723 Check if file is a symlink (Bug#10489).
1724
1725 * files.el (copy-directory): Likewise.
1726
5319014e
CY
17272012-03-30 Chong Yidong <cyd@gnu.org>
1728
1729 * image.el (imagemagick-types-inhibit)
1730 (imagemagick-register-types): Doc fix.
1731
935d1290
AM
17322012-03-30 Agustín Martín Domingo <agustin.martin@hispalinux.es>
1733
ef24141c
SM
1734 * ispell.el (ispell-get-extended-character-mode):
1735 Disable extended-char-mode for hunspell. hunspell does not support it
75f1671a 1736 and treats ~word as ordinary words in pipe mode.
935d1290 1737
61c6e8fd
GM
17382012-03-30 Glenn Morris <rgm@gnu.org>
1739
1740 * tutorial.el (help-with-tutorial): Ensure local variables don't
1741 happen to make the buffer read-only. (Bug#11127)
1742
81fdff00
SM
17432012-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
1744
1745 * progmodes/perl-mode.el (perl-indent-line): Use `noindent' in strings.
1746 (perl-calculate-indent): Return `noindent' in strings.
1747
6e7a6ec0
SS
17482012-03-28 Sam Steingold <sds@gnu.org>
1749
1750 * calendar/calendar.el (calendar-exit): Use `quit-windows-on'
1751 instead of the broken adhockery which does not prevent calendar
1752 buffers from being displayed at random after exit.
1753 (calendar-window-list, calendar-hide-window): Remove the broken
1754 adhockery.
1755
fee88ca0
GM
17562012-03-28 Glenn Morris <rgm@gnu.org>
1757
1758 * replace.el (query-replace-map): Doc fix.
1759
38de3354
AS
17602012-03-28 Andreas Schwab <schwab@linux-m68k.org>
1761
1762 * vc/vc-git.el (vc-git-state): Don't try to match all of the diff
1763 contents. (Bug#11109)
1764
b973155e
SM
17652012-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
1766
1767 * emacs-lisp/avl-tree.el (avl-tree--enter-balance): Fix paren typo
1768 (bug#11077).
1769 (avl-tree--check, avl-tree--check-node): New funs.
1770
dcb6e7b3
MR
17712012-03-27 Martin Rudalics <rudalics@gmx.at>
1772
1773 * window.el (switch-to-visible-buffer): New option.
b973155e
SM
1774 (switch-to-prev-buffer, switch-to-next-buffer):
1775 Observe switch-to-visible-buffer. Make sure that checking for a window
dcb6e7b3
MR
1776 showing a buffer already is done on the same frame.
1777
b4fa35fa
GM
17782012-03-27 Glenn Morris <rgm@gnu.org>
1779
1780 * startup.el (mail-host-address): Doc fix.
1781
f9210e18
SM
17822012-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
1783
1784 * emacs-lisp/bytecomp.el (byte-compile-constants-vector): Allow more
1785 than 197 variables.
1786
c0bf7753
AF
17872012-03-26 Ami Fischman <ami@fischman.org>
1788
1789 * vc/vc-git.el (vc-git-state): Avoid unnecessarily locking.
1790
33da7b16
GM
17912012-03-26 Glenn Morris <rgm@gnu.org>
1792
02243d9d
GM
1793 * files.el (save-buffers-kill-emacs): Doc fix.
1794
33da7b16
GM
1795 * startup.el (normal-top-level, command-line, command-line-1):
1796 Give them doc strings.
1797
e5a69fd0
EZ
17982012-03-25 Eli Zaretskii <eliz@gnu.org>
1799
1800 * makefile.w32-in (install): Use $(DIRNAME)_same-dir.tst instead
b973155e 1801 of same-dir.tst, to avoid stepping on other (parallel) Make job's toes.
e5a69fd0 1802
9a69676a
CY
18032012-03-25 Chong Yidong <cyd@gnu.org>
1804
4125cb8b
CY
1805 * custom.el (load-theme): Even if NO-ENABLE arg is t, reenable the
1806 theme if it was previously enabled before (Bug#11031).
1807
dd470960
CY
1808 * cus-theme.el (custom-theme-write-faces): Retrieve current face
1809 spec with custom-face-get-current-spec if its :shown-value is not
1810 determined yet (Bug#9337).
4125cb8b 1811 (customize-create-theme, custom-theme-revert): Doc fixes.
dd470960 1812
9a69676a
CY
1813 * button.el (button-at): Minor addition to docstring.
1814
6e7e90fa
SL
18152012-03-24 Simon Leinen <simon.leinen@gmail.com>
1816
1817 * vc/vc.el (vc-merge): Fix a prompt.
1818
f06e2758
CY
18192012-03-24 Chong Yidong <cyd@gnu.org>
1820
1821 * mwheel.el (mwheel-scroll): Call deactivate-mark at the right
1822 point (Bug#9623).
1823
6e7e90fa
SL
1824 * button.el (button-at): Minor addition to docstring.
1825
b9d0879b
SM
18262012-03-23 Stefan Monnier <monnier@iro.umontreal.ca>
1827
1828 * newcomment.el (comment-choose-indent): No space after BOL.
1829
e71cebb3
SS
18302012-03-22 Sam Steingold <sds@gnu.org>
1831
1832 * window.el (switch-to-prev-buffer): Revert last patch because the
1833 bug turned out to be an advertised feature (Elisp manual 28.14).
1834
335aff35
GM
18352012-03-22 Glenn Morris <rgm@gnu.org>
1836
1837 * vc/vc-bzr.el (vc-bzr-status-switches): New option. (Bug#6724)
1838 (vc-bzr-command): If running "status", pass vc-bzr-status-switches.
1839
c676576a
LMI
18402012-03-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
1841
1842 * net/network-stream.el (network-stream-open-starttls): Make error
1843 message under Windows be less misleading.
1844
126f3d39
LW
18452012-03-22 Liang Wang <netcasper@gmail.com> (tiny change)
1846
1847 * progmodes/etags.el (etags-list-tags): Only use tags which goto-func
1848 understands (bug#9942).
1849
64fee311
CY
18502012-03-22 Chong Yidong <cyd@gnu.org>
1851
1852 * simple.el (end-of-visible-line): Handle return value of
1853 next-single-property-change properly (Bug#9371).
1854
a640d29a
KH
18552012-03-22 Kenichi Handa <handa@m17n.org>
1856
1857 * international/quail.el (quail-insert-kbd-layout): Fix previous
1858 change. To avoid unwanted bidi reordering, use
1859 bidi-string-mark-left-to-right instead of inserting LRO and PDF.
1860
39675016
DG
18612012-03-21 Dmitry Gutov <dgutov@yandex.ru>
1862
1863 * progmodes/ruby-mode.el: Don't confuse "end:" for "end" (bug#10786).
1864 (ruby-block-end-re, ruby-delimiter, ruby-parse-partial)
1865 (ruby-beginning-of-indent): Be more careful with the difference
1866 between word-boundary and symbol boundary.
1867 (ruby-mode-syntax-table): Make : a symbol constituent.
1868
0a6934fc 18692012-03-21 Andreas Politz <politza@fh-trier.de>
1acad97c 1870
3d008e4f
SM
1871 * outline.el (outline-flag-region): Evaporate overlays (bug#10789).
1872
0a6934fc
SM
18732012-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
1874
af67c9d7
SM
1875 * progmodes/etags.el (tags-completion-at-point-function):
1876 Improve last fix.
1877
1acad97c
SM
1878 * files.el (move-file-to-trash): Files aren't regexps (bug#11055).
1879
e298b5da
SS
18802012-03-21 Sam Steingold <sds@gnu.org>
1881
1882 * progmodes/etags.el (tags-completion-at-point-function):
1883 Avoid the error when point is inside the pattern.
1884
91d82a70
JY
18852012-03-21 John Yates <john@yates-sheets.org> (tiny change)
1886
1887 * progmodes/hideshow.el (hs-inside-comment-p): Fix hiding of first
1888 line (Bug#10855).
1889
69188b79
CY
18902012-03-21 Drew Adams <drew.adams@oracle.com>
1891
1892 * info.el (Info-menu): Handle string value of FORK arg (Bug#10858).
1893
99fc91fe
AK
18942012-03-21 Anmol Khirbat <anmol@khirbat.net> (tiny change)
1895
1896 * ido.el (ido-set-current-directory, ido-read-internal)
1897 (ido-choose-completion-string, ido-completion-help): Handle nil
1898 value of ido-completion-buffer (Bug#11008).
1899
087bbb4c
SS
19002012-03-21 Sam Steingold <sds@gnu.org>
1901
1902 * window.el (switch-to-prev-buffer): Do not switch to a visible
1903 window previous buffer, just like with the frame previous buffers.
1904
fb5b8aca
CY
19052012-03-21 Chong Yidong <cyd@gnu.org>
1906
1907 * faces.el (make-face, make-empty-face, copy-face):
1908 * face-remap.el (face-remap-add-relative, face-remap-set-base):
1909 Doc fixes.
1910
dc9924b8
SM
19112012-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
1912
1913 * wid-edit.el (widget-complete-field): Remove (bug#11051).
1914 (widget-complete): Remove broken use of it.
1915
f0bcceb9
CY
19162012-03-20 Chong Yidong <cyd@gnu.org>
1917
dc9924b8
SM
1918 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
1919 Use string-width and truncate-string-width to handle arbitrary
f0bcceb9
CY
1920 characters.
1921
ee52ebf3
TH
19222012-03-20 Tassilo Horn <tassilo@member.fsf.org>
1923
1924 * textmodes/artist.el (artist-menu-map): Bind Rectangle menu item
1925 to draw rectangles, not squares. (Regression introduced by revno
1926 2011-03-02T03:48:01Z!cyd@stupidchicken.com)
1927
4c5779ab
CY
19282012-03-18 Chong Yidong <cyd@gnu.org>
1929
1930 * faces.el (face-spec-reset-face): Don't call display-graphic-p if
1931 it is not yet defined (for temacs).
1932
15360934
LL
19332012-03-18 Leo Liu <sdl.web@gmail.com>
1934
dc9924b8 1935 * net/rcirc.el (rcirc-cmd-quit): Allow quiting all servers with prefix.
15360934 1936
d9a8eb66
EZ
19372012-03-17 Eli Zaretskii <eliz@gnu.org>
1938
1939 * textmodes/ispell.el (ispell-skip-tib, ispell-keep-choices-win)
1940 (ispell-choices-win-default-height, ispell-silently-savep)
1941 (ispell-dictionary-alist, ispell-encoding8-command)
1942 (ispell-check-version, ispell-aspell-find-dictionary)
1943 (ispell-valid-dictionary-list, ispell-words-keyword)
1944 (ispell-get-word, ispell-internal-change-dictionary)
1945 (ispell-region, ispell-skip-region-list)
1946 (ispell-begin-skip-region-regexp, ispell-ignore-fcc)
1947 (ispell-process-line, ispell-minor-mode, ispell-minor-check)
1948 (ispell-message-text-end, ispell-message)
1949 (ispell-buffer-local-parsing): Doc fix.
1950
f02ff80d
J
19512012-03-13 Jambunathan K <kjambunathan@gmail.com>
1952
1953 * htmlfontify.el: Add support for code block fontification for ODT
1954 export (Bug #9914).
1955 (hfy-optimisations): Define new option
1956 `body-text-only'
1957 (hfy-fontify-buffer): Honor above setting.
1958 (hfy-begin-span, hfy-end-span): New routines factored out form
1959 `hfy-fontify-buffer'.
1960 (hfy-begin-span-handler, hfy-end-span-handler): New variables
1961 that permit insertion of custom tags.
1962 (hfy-fontify-buffer): Use above handlers.
1963 (hfy-face-to-css-default): Same as the earlier `hfy-face-to-css'.
1964 (hfy-face-to-css): Re-defined to be a variable.
dc9924b8 1965 (hfy-compile-stylesheet): Modify. Allow stylesheet to be built
75f1671a 1966 over multiple runs. This is made possible by having the caller let
f02ff80d
J
1967 bind a special variable `hfy-user-sheet-assoc'.
1968 (htmlfontify-string): New defun.
1969 (hfy-compile-face-map): Make sure that the last char in the
1970 buffer is correctly fontified.
1971 (hfy-face-resolve-face): Whitespace only change.
1972
9ac7a13f
EZ
19732012-03-17 Eli Zaretskii <eliz@gnu.org>
1974
1975 * textmodes/ispell.el (ispell-get-decoded-string): Make the error
1976 message more clear.
1977
e2b5bdd7
LL
19782012-03-16 Leo Liu <sdl.web@gmail.com>
1979
1980 * emacs-lisp/copyright.el (copyright-year-ranges): Fix typo.
1981
2e492df3
AM
19822012-03-16 Alan Mackenzie <acm@muc.de>
1983
1984 Further optimise the handling of large macros.
1985
1986 * progmodes/cc-engine.el (c-crosses-statement-barrier-p): Use a
1987 limit to a call of `c-literal-limits'.
1988 (c-determine-+ve-limit): New function.
dc9924b8
SM
1989 (c-at-macro-vsemi-p): Move `c-in-literal' to the bottom of an `and'.
1990 (c-guess-basic-syntax): In macros, restrict a search limit to 2000.
2e492df3
AM
1991 In CASE 5B, restrict a search limit to 500.
1992 (c-just-after-func-arglist-p): Obviouly wrong `or' -> `and'.
1993
1994 * progmodes/cc-mode.el (c-neutralize-syntax-in-and-mark-CPP):
1995 Restrict macro bounds to +-500 from after-change's BEG END.
1996
50e94f0c
LL
19972012-03-16 Leo Liu <sdl.web@gmail.com>
1998
1999 * font-lock.el (lisp-font-lock-keywords-2): Add letrec.
2000
6f09f6ed
AH
20012012-03-16 Aaron S. Hawley <Aaron.S.Hawley@gmail.com>
2002
2003 * tar-mode.el (tar-mode): Fix saving by conditionally undoing
dc9924b8 2004 `special-mode' setting of `buffer-read-only'. (Bug#11010)
6f09f6ed 2005
c7e73d51
GM
20062012-03-16 Glenn Morris <rgm@gnu.org>
2007
da986230
GM
2008 * view.el (view-buffer, view-buffer-other-window)
2009 (view-buffer-other-frame): Doc fixes re special mode-class.
2010
0835f01e
GM
2011 * subr.el (eval-after-load): If named feature is provided not from
2012 a file, run after-load forms. (Bug#10946)
2013
c7e73d51
GM
2014 * calendar/calendar.el (calendar-insert-at-column):
2015 Handle non-unit-width characters a bit better. (Bug#10978)
2016
3f2eafd1
CY
20172012-03-15 Chong Yidong <cyd@gnu.org>
2018
2019 * emacs-lisp/ring.el (ring-extend): New function.
2020 (ring-insert+extend): Extend the ring correctly (Bug#11019).
2021
2022 * comint.el (comint-read-input-ring)
2023 (comint-add-to-input-history): Grow comint-input-ring lazily.
2024
103af3fe
SM
20252012-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
2026
663b1677
SM
2027 * progmodes/perl-mode.el (perl-syntax-propertize-special-constructs):
2028 Fix up parsing of multiline twoarg non-paired elements (bug#11014).
2029
103af3fe
SM
2030 * imenu.el: Fix multiple inheritance breakage (bug#9199).
2031 (imenu-add-to-menubar): Don't add a redundant index.
2032 (imenu-update-menubar): Handle a dynamically composed keymap.
2033
899cb7cb
KY
20342012-03-13 Katsumi Yamaoka <yamaoka@jpl.org>
2035
2036 * mail/sendmail.el (mail-encode-header):
2037 Bind rfc2047-encode-encoded-words to nil.
2038
3809f91d
GM
20392012-03-13 Glenn Morris <rgm@gnu.org>
2040
2041 * calendar/calendar.el (calendar-string-spread):
2042 Handle non-unit-width characters a bit better. (Bug#10978)
2043
9e345a01
LL
20442012-03-13 Leo Liu <sdl.web@gmail.com>
2045
2046 * vc/vc-hg.el (vc-hg-working-revision): Rework to work with both
2047 directory and file as argument (Bug#10822).
2048
4a07df36
KS
20492012-03-13 Kaushik Srenevasan <ksrenevasan@gmail.com> (tiny change)
2050
2051 * progmodes/gdb-mi.el (gdb-invalidate-disassembly):
2052 For dynamically generated code, follow $PC.
2053 (gdb-disassembly-handler-custom): Handle no function name case.
2054
4aaa9356
TL
20552012-03-13 Tim Landscheidt <tim@tim-landscheidt.de> (tiny change)
2056
2057 * calendar/icalendar.el (icalendar-export-file, icalendar-import-file):
2058 * emulation/ws-mode.el (ws-query-replace):
2059 * sort.el (sort-regexp-fields):
2060 Fix missing trailing whitespace in interactive prompts. (Bug#11002)
2061
225979da
SM
20622012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
2063
2064 * dabbrev.el: Fix cycle completion order (bug#10963).
2065 (dabbrev--last-obarray, dabbrev--last-completion-buffer): Remove.
2066 (dabbrev-completion): Don't use an obarray; provide
2067 a cycle-sort-function.
2068
e2f1fdab
LL
20692012-03-12 Leo Liu <sdl.web@gmail.com>
2070
dc9924b8 2071 * simple.el (kill-new): Use equal-including-properties for comparison.
e2f1fdab
LL
2072 (kill-do-not-save-duplicates): Doc fix.
2073
b19490ed
SM
20742012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
2075
2076 * dabbrev.el: Fix cycle completion (bug#10963).
2077 Use lexical binding and wrap to 80 columns.
2078 (dabbrev-completion): Delay computing the list of completions.
2079
4b05d722
KH
20802012-03-12 Kenichi Handa <handa@m17n.org>
2081
2082 * international/quail.el (quail-insert-kbd-layout): Surround each
2083 row by LRO and PDF instead of inserting many LRMs. Pad the left
2084 and right of each non-spacing marks. Insert invisible space
2085 between lower and upper characters to prevent composition.
2086
dbbc2e69
SM
20872012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
2088
2089 * minibuffer.el (minibuffer-complete): Don't get confused when the
2090 function is run twice via different commands (bug#10958).
2091 (complete-with-action): Fix docstring.
2092
292112ed
CY
20932012-03-12 Chong Yidong <cyd@gnu.org>
2094
5d1ac394
CY
2095 * nxml/nxml-mode.el (nxml-mode-map): Do not bind C-RET (Bug#6776).
2096 (nxml-completion-at-point-function): New function.
2097 (nxml-mode): Use it.
2098 (nxml-bind-meta-tab-to-complete-flag): Default to t.
2099
292112ed
CY
2100 * emacs-lisp/package.el (package-unpack, package-unpack-single):
2101 Load generated autoloads file before byte compiling (Bug#10970).
2102 (package--make-autoloads-and-compile): New helper fun.
2103
4098f8f7
CS
21042012-03-12 Christopher Schmidt <christopher@ch.ristopher.com>
2105
2106 * ibuffer.el (ibuffer-redisplay): Remove another gratuitous error.
2107
8f754691
MA
21082012-03-11 Michael Albinus <michael.albinus@gmx.de>
2109
2110 * autorevert.el (auto-revert-handler): Ensure, that
2111 file-readable-p is applied only for local files or in
2112 auto-revert-tail-mode.
2113
e29ab36b
AS
21142012-03-11 Andreas Schwab <schwab@linux-m68k.org>
2115
dbbc2e69
SM
2116 * server.el (server-eval-at): Handle non-tcp connections.
2117 Decode result string.
ad0bf5b6 2118
e29ab36b
AS
2119 * server.el (server-msg-size): New constant.
2120 (server-reply-print): New function.
2121 (server-eval-and-print): Use it.
2122 (server-eval-at): Use server-quote-arg and server-unquote-arg.
2123 Handle -print-nonl.
2124
de5939ba
CS
21252012-03-11 Christopher Schmidt <christopher@ch.ristopher.com>
2126
2127 * ibuffer.el (ibuffer-redisplay): Remove gratuitous error
2128 (Bug#10987).
2129
0c93eabf
CY
21302012-03-11 Chong Yidong <cyd@gnu.org>
2131
397a688f
CY
2132 * simple.el (goto-line): Doc fix (Bug#9938).
2133
2cc775f9
CY
2134 * subr.el (save-window-excursion): Doc fix (Bug#9979).
2135
0c93eabf
CY
2136 * dabbrev.el (dabbrev--find-expansion): Update progress reporter
2137 when finished (Bug#10963).
2138
c491fa41
MR
21392012-03-11 Martin Rudalics <rudalics@gmx.at>
2140
2141 * window.el (split-window-below): Fix bug in case where
2142 split-window-keep-point is nil (Bug#10971).
2143
300e8fa5
JL
21442012-03-11 Juri Linkov <juri@jurta.org>
2145
2146 * replace.el (replace-highlight): Set isearch-word to nil
2147 unconditionally. (Bug#10887)
2148
dbf6c5a1
EZ
21492012-03-10 Eli Zaretskii <eliz@gnu.org>
2150
2151 * net/mairix.el (mairix-replace-invalid-chars): Rename from
2152 mairix-replace-illegal-chars; all callers changed. Don't remove
dc9924b8 2153 ^, ~, and = characters: they are meaningful in mairix search specs.
dbf6c5a1
EZ
2154 (mairix-widget-create-query): Add usage information about mairix
2155 search forms: negating words, searching for substrings, etc.
2156
b9e501de
JP
21572012-03-10 Jae-hyeon Park <jae-hyeon.park@desy.de> (tiny change)
2158
2159 * international/fontset.el (font-encoding-alist): Add an entry for
2160 ksx1001 (Bug#5667).
2161
92795c91
RS
21622012-03-10 Richard Stallman <rms@gnu.org>
2163
1694e6c1
RS
2164 * mail/sendmail.el (mail-encode-header):
2165 Set rfc2047-encode-encoded-words.
2166
607e8555
RS
2167 * mail/mail-utils.el (mail-quote-printable): Quote multibyte chars.
2168
de3bc99a
RS
2169 * mail/rmail.el (rmail-buffers-swapped-p): Don't assume dead
2170 view buffer means not swapped.
2171 (rmail-view-buffer-kill-buffer-hook): Give buf name in error msg.
2172 (rmail-write-region-annotate): Error if real text has disappeared.
2173
92795c91
RS
2174 * epa-mail.el (epa-mail-encrypt): Bind inhibit-read-only.
2175
699bd04e
CY
21762012-03-10 Chong Yidong <cyd@gnu.org>
2177
2178 * emulation/cua-rect.el (cua--init-rectangles):
dbbc2e69
SM
2179 * emulation/cua-base.el (cua--init-keymaps):
2180 Add delete-forward-char to remappings (Bug#9666).
699bd04e 2181
570a1714
MR
21822012-03-10 Martin Rudalics <rudalics@gmx.at>
2183
dbbc2e69
SM
2184 * speedbar.el (speedbar-unhighlight-one-tag-line):
2185 Avoid unhighlighting due to frame switching (Bug#10275).
570a1714 2186
82dcf4e4
CY
21872012-03-10 Chong Yidong <cyd@gnu.org>
2188
7a2c7ca7
CY
2189 * minibuffer.el (completion-in-region, completion-help-at-point):
2190 Give the completion field overlay a high priority (Bug#6830).
2191
82dcf4e4
CY
2192 * dired.el (dired-goto-file): Recognize absolute file name
2193 listings (Bug#7126).
2194 (dired-goto-file-1): New helper function.
2195 (dired-toggle-read-only): Inhibit warnings.
2196
052e28ac
MA
21972012-03-09 Michael Albinus <michael.albinus@gmx.de>
2198
75f1671a 2199 * net/dbus.el (dbus-property-handler): Return empty array if
052e28ac
MA
2200 there are no properties.
2201
95d5e396
LL
22022012-03-09 Leo Liu <sdl.web@gmail.com>
2203
2204 * savehist.el (savehist-printable): Stricter check for string
2205 value (Bug#10937).
2206
3f018d6d
EZ
22072012-03-09 Eli Zaretskii <eliz@gnu.org>
2208
dbbc2e69
SM
2209 * mail/smtpmail.el (smtpmail-send-it):
2210 Bind coding-system-for-write to *-unix, so that FCC files are kept in
3f018d6d
EZ
2211 valid mbox format.
2212
f7fd3d79
GM
22132012-03-09 Glenn Morris <rgm@gnu.org>
2214
2215 * files.el (dir-locals-find-file):
2216 Don't check result is regular, readable.
2217 (dir-locals-read-from-file): Demote errors.
2218
6ff6e72f
EZ
22192012-03-08 Eli Zaretskii <eliz@gnu.org>
2220
dbbc2e69
SM
2221 * international/quail.el (quail-insert-kbd-layout):
2222 Insert invisible LRM characters before each character in a keyboard
6ff6e72f
EZ
2223 layout cell, to prevent their reordering by bidi display engine.
2224 For details, see the discussion in
2225 http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00085.html.
2226
9cec7834
AM
22272012-03-08 Alan Mackenzie <acm@muc.de>
2228
2229 * progmodes/cc-cmds.el (c-mark-function): Make it leave a mark at
2230 the starting position; make it extend the marked region when
2231 invoked repeatedly - all under appropriate circumstances.
2232 Fixes bugs #5525, #10906.
2233
9a40b8d4
GM
22342012-03-08 Glenn Morris <rgm@gnu.org>
2235
2236 * files.el (locate-dominating-file, dir-locals-find-file):
2237 Undo 2012-03-06 change.
2238
7a08ed35
EZ
22392012-03-07 Eli Zaretskii <eliz@gnu.org>
2240
dbbc2e69
SM
2241 * international/quail.el (quail-help):
2242 Force bidi-paragraph-direction be left-to-right. See discussion in
7a08ed35
EZ
2243 http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00062.html
2244 for the reason.
2245
5aca4f71 22462012-03-07 Michael Albinus <michael.albinus@gmx.de>
6612a284
MA
2247
2248 Avoid superfluous registering of signals. (Bug#10807)
2249
2250 * notifications.el (notifications-on-action-object)
2251 (notifications-on-close-object): New defvars.
2252 (notifications-on-action-signal, notifications-on-closed-signal):
2253 Unregister the signal if not needed any longer.
2254 (notifications-notify): Register `notifications-action-signal' or
2255 `notifications-closed-signal', if :on-action or :on-close has been
2256 passed as argument.
2257
78e8b10a
CY
22582012-03-07 Chong Yidong <cyd@gnu.org>
2259
2260 * cus-start.el: Avoid x-select-enable-clipboard-manager warning on
2261 non-X platforms.
2262
69481eb8
GM
22632012-03-06 Glenn Morris <rgm@gnu.org>
2264
2265 * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
2266 (x-disown-selection-internal, x-get-selection-internal):
2267 Doc fix (add arglist signatures). (Bug#10783)
2268
133b8e11
KS
22692012-03-06 Kaushik Srenevasan <ksrenevasan@gmail.com> (tiny change)
2270
2271 * progmodes/gdb-mi.el (gdb-breakpoints-list-handler-custom):
2272 Handle breakpoints with no "type".
2273
99a83064
GM
22742012-03-06 Glenn Morris <rgm@gnu.org>
2275
2276 * files.el (locate-dominating-file): Add optional predicate argument.
2277 (dir-locals-find-file): Make use of above change.
2278
17798e78
TTN
22792012-03-06 Thien-Thi Nguyen <ttn@gnuvola.org>
2280
2281 * info.el (Info-insert-dir): Also try "dir.gz".
2282
eb182446
GM
22832012-03-06 Glenn Morris <rgm@gnu.org>
2284
8f2114ee
GM
2285 * files.el (dir-locals-find-file):
2286 Ignore non-readable or non-regular files. (Bug#10928)
2287
eb182446
GM
2288 * files.el (locate-dominating-file): Doc fix.
2289
24679323
AS
22902012-03-06 Adam Spiers <emacs@adamspiers.org> (tiny change)
2291
2292 * calendar/calendar.el (calendar-set-mode-line):
2293 `getenv' returns a string. (Bug#10951)
2294
01d972a9
LL
22952012-03-05 Leo Liu <sdl.web@gmail.com>
2296
109aa8a9
LL
2297 * simple.el (backward-delete-char-untabify): Constrain point to
2298 field (Bug#10939).
2299
01d972a9
LL
2300 * eshell/em-cmpl.el (eshell-cmpl-initialize): Fix shift-tab key.
2301
10607bea
CY
23022012-03-05 Chong Yidong <cyd@gnu.org>
2303
2304 * simple.el (count-words): If called from Lisp, return the word
2305 count, for symmetry with `count-lines'. Arglist changed.
2306 (count-words--message): Args changed. Consolidate counting code
2307 from count-words and count-words-region.
2308 (count-words-region): Caller changed.
2309 (count-lines-region): Make it an obsolete alias.
2310
5dd11cfe
TH
23112012-03-04 Tassilo Horn <tassilo@member.fsf.org>
2312
2313 * saveplace.el (save-place-to-alist)
2314 (save-place-ignore-files-regexp): Allow value nil to disable this
2315 feature.
2316
c349f4e6
CY
23172012-03-04 Chong Yidong <cyd@gnu.org>
2318
2319 * faces.el (face-spec-reset-face): For the default face, reset the
2320 attributes to default values (Bug#10748).
2321
e627be4c
LMI
23222012-03-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
2323
2324 * mail/emacsbug.el (report-emacs-bug-hook): Fix up thinko in
2325 previous patch: Check `message-send-mail-function', and not the
2326 default function (bug#10897).
2327
ebeabff4
MA
23282012-03-04 Michael Albinus <michael.albinus@gmx.de>
2329
a41a6cf4
MA
2330 * notifications.el (notifications-on-action-signal)
2331 (notifications-on-closed-signal): Check for unique service name of
2332 incoming event. Fix error in removing entry.
ebeabff4 2333 (top): Register for signals with wildcard service name.
a41a6cf4 2334 (notifications-notify): Use daemon unique service name for map entries.
ebeabff4 2335
c1ca42b4
CY
23362012-03-04 Chong Yidong <cyd@gnu.org>
2337
dc9924b8 2338 * cus-start.el: Make x-select-enable-clipboard-manager customizable.
c1ca42b4 2339
ea16568d
GM
23402012-03-04 Glenn Morris <rgm@gnu.org>
2341
2342 * abbrev.el (copy-abbrev-table, abbrev-table-p)
2343 (abbrev-minor-mode-table-alist, define-abbrev, abbrev-insert)
2344 (expand-abbrev, define-abbrev-table): Doc fixes.
2345
fbae4637
LMI
23462012-03-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
2347
2348 * mail/emacsbug.el (report-emacs-bug-hook): Look at the value of
2349 `message-default-send-mail-function' and not `send-mail-function'
2350 when doing the prompting for `sendmail-query-once' before sending
2351 in Message buffers (bug#10897).
2352
a1e7225c
LMI
2353 * net/tls.el (open-tls-stream): Don't set the dont-query-on-exit flag.
2354 This is inconsistent with all the other stream functions, which leave
2355 the setting up to the higher levels (if so wanted) (bug#10931).
2356
56d093a9
AM
23572012-03-02 Alan Mackenzie <acm@muc.de>
2358
2359 Depessimize the handling of very large macros.
2360
2361 * progmodes/cc-engine.el (c-macro-cache, c-macro-cache-start-pos):
2362 (c-macro-cache-syntactic): New variables to implement a one
2363 element macro cache.
2364 (c-invalidate-macro-cache): New function.
2365 (c-beginning-of-macro, c-end-of-macro, c-syntactic-end-of-macro):
2366 Adapt to use the new cache.
2367 (c-state-safe-place): Use better the cache of safe positions.
2368 (c-state-semi-nonlit-pos-cache)
2369 (c-state-semi-nonlit-pos-cache-limit):
2370 New variables for...
2371 (c-state-semi-safe-place): New function. Here, in a macro is "safe".
2372 (c-invalidate-state-cache-1): New stuff for c-state-semi-safe-place.
dbbc2e69
SM
2373 (c-in-literal, c-literal-limits, c-determine-limit-get-base):
2374 Use c-state-semi-safe-place.
56d093a9 2375
dbbc2e69
SM
2376 * progmodes/cc-langs.el (c-get-state-before-change-functions):
2377 Add c-invalidate-macro-cache to the C, C++, Obj entries.
56d093a9 2378
817e5c3d
MA
23792012-03-02 Michael Albinus <michael.albinus@gmx.de>
2380
dbbc2e69
SM
2381 * jka-compr.el (jka-compr-call-process):
2382 Apply `file-accessible-directory-p' only when the default directory is
817e5c3d
MA
2383 not remote.
2384
a032a702
MA
23852012-03-01 Michael Albinus <michael.albinus@gmx.de>
2386
2387 * files.el (file-equal-p): Fix docstring. Avoid unnecessary
2388 access of FILE2, if FILE1 does not exist.
2389
99a54f21
MA
2390 * net/tramp-sh.el (tramp-remote-process-environment): Add "PAGER=\"\"".
2391 Reported by Robert Lupton the Good <rhl@astro.princeton.edu>.
2392
2393 * vc/vc-git.el (vc-git--call): Enable `inhibit-null-byte-detection'.
2394 Add "PAGER=" to `process-environment'.
2395
f6561e1f
MM
23962012-03-01 Michael R. Mauger <mmaug@yahoo.com>
2397
2398 * progmodes/sql.el: Bug fix
2399 (sql-get-login-ext): Save login values in globals.
2400 (sql-get-login): Use new version of `sql-get-login-ext'.
2401 (sql-interactive-mode): Set global `sql-connection' to nil.
2402 (sql-connect): Set global values for connection.
2403 (sql-product-interactive): Save global values as buffer local.
2404
2d44d9cc
LL
24052012-02-29 Leo Liu <sdl.web@gmail.com>
2406
2407 * abbrev.el (define-abbrevs): Reset sys to nil.
2408
96b49301 24092012-02-28 Thierry Volpiatto <thierry.volpiatto@gmail.com>
2410
bf7f9bc5
JB
2411 * files.el (file-equal-p): Rename from `files-equal-p'.
2412 Return nil when one or both files don't exist.
96b49301 2413 (file-subdir-of-p): Now only top directory must exists,
2414 return nil if it doesn't.
bf7f9bc5
JB
2415 (copy-directory): No need to test with `file-subdir-of-p' after
2416 creating dir.
2417 * net/tramp.el (tramp-file-name-for-operation): Rename `files-equal-p'
2418 to `file-equal-p'.
96b49301 2419
44e97401
GM
24202012-02-28 Glenn Morris <rgm@gnu.org>
2421
2422 * shell.el (shell-mode):
2423 * progmodes/vhdl-mode.el (wildcard-to-regexp, file-expand-wildcards):
2424 * play/landmark.el (landmark-font-lock-face-O):
2425 * play/handwrite.el (handwrite):
2426 * play/gomoku.el (gomoku-O):
2427 * net/browse-url.el (browse-url-browser-display):
2428 * international/mule.el (define-charset):
2429 * htmlfontify.el (hfy-etags-cmd, hfy-face-attr-for-class):
2430 * filesets.el (filesets-find-file-delay):
2431 * eshell/em-xtra.el (eshell-xtra):
2432 * eshell/em-unix.el (eshell-grep):
2433 * emulation/viper.el (viper-mode):
2434 * emacs-lisp/regexp-opt.el (regexp-opt-group):
2435 * emacs-lisp/easymenu.el (easy-menu-define):
2436 * calendar/timeclock.el (timeclock-use-display-time):
2437 * bs.el (bs-mode):
2438 * bookmark.el (bookmark-save-flag):
2439 Doc fix (standardize possessive apostrophe usage).
2440
c98c6276
CY
24412012-02-27 Chong Yidong <cyd@gnu.org>
2442
bf7f9bc5
JB
2443 * emulation/viper-cmd.el (viper-intercept-ESC-key):
2444 Fix key-binding lookup for ESC key (Bug#9146).
ecf5f74e 2445
c98c6276
CY
2446 * font-lock.el (font-lock-specified-p): Rename from
2447 font-lock-spec-present. Callers changed.
2448
9c62cd04 24492012-02-27 Daniel Hackney <dan@haxney.org>
8ac9e529 2450
bf7f9bc5
JB
2451 * emacs-lisp/package.el (package-compute-transaction):
2452 Handle holding a package version to t in package-load-list.
8ac9e529 2453
530739c9
MA
24542012-02-26 Michael Albinus <michael.albinus@gmx.de>
2455
2456 * net/tramp.el (tramp-inodes, tramp-devices): Initialize with 0.
2457 (tramp-get-inode, tramp-get-device): Use cached values.
2458
487915d7
AM
24592012-02-26 Alan Mackenzie <acm@muc.de>
2460
2461 Check there is a font-lock specification before doing initial
2462 fontification.
2463
2464 * font-core.el (font-lock-mode): Move the conditional from
2465 :after-hook to font-lock-initial-fontify.
2466 (font-lock-default-function): Move the check for a specification
2467 to font-lock-spec-present.
2468
dc9924b8 2469 * font-lock.el (font-lock-initial-fontify): Call ...
487915d7
AM
2470 (font-lock-spec-present): New function.
2471
4fd96557
JB
24722012-02-26 Jim Blandy <jimb@red-bean.com>
2473
2474 * progmodes/gdb-mi.el (gdb-mi-quote): New function.
2475 (gdb-send): Apply it to the operand of the '-interpreter-exec
2476 console' command, so that we can pass arguments with (say) quotes
2477 in them. Store exact string sent in gdb-debug-log (Bug#10765).
2478
9a4888c0
CY
24792012-02-26 Chong Yidong <cyd@gnu.org>
2480
07498861
CY
2481 * help-fns.el (describe-function-1): Clarify description of
2482 remapping (Bug#10844).
2483
9a4888c0
CY
2484 * files.el (files-equal-p): Doc fix.
2485 (file-subdir-of-p): Doc fix. Convert loop macro to plain Lisp,
2486 and quit the loop once a mismatch is found.
2487
ea8fb88d
JB
24882012-02-25 Juanma Barranquero <lekktu@gmail.com>
2489
2490 * bs.el (bs--show-with-configuration): Don't throw an error
2491 if the window cannot be split; otherwise, subsequent calls to
2492 bs-show fail, restoring a stale window config. (Bug#10882)
2493
525795c1
JD
24942012-02-25 Jan Djärv <jan.h.d@swipnet.se>
2495
2496 * term/ns-win.el (global-map): Bind ns-drag-file to
2497 ns-find-file (Bug#5855, Bug#10050).
2498
f008086f
AS
24992012-02-25 Andreas Schwab <schwab@linux-m68k.org>
2500
2501 * calendar/parse-time.el (parse-time-string): Allow extractor to
2502 return nil.
2503
a3fcfa99
MA
25042012-02-25 Michael Albinus <michael.albinus@gmx.de>
2505
91027d08
JB
2506 * net/tramp.el (tramp-file-name-for-operation):
2507 Add `files-equal-p' and `file-subdir-of-p'.
a3fcfa99
MA
2508
2509 * net/tramp-sh.el (tramp-sh-handle-copy-directory):
91027d08
JB
2510 * net/tramp-smb.el (tramp-smb-handle-copy-directory):
2511 Add COPY-CONTENTS argument.
a3fcfa99 2512
67b0de11
CY
25132012-02-25 Chong Yidong <cyd@gnu.org>
2514
2515 Add custom groups for VC backends, for consistency with vc-bzr.
2516
2517 * vc/vc-arch.el (vc-arch):
2518 * vc/vc-cvs.el (vc-cvs):
2519 * vc/vc-git.el (vc-git):
2520 * vc/vc-hg.el (vc-hg):
2521 * vc/vc-mtn.el (vc-mtn):
2522 * vc/vc-rcs.el (vc-rcs):
2523 * vc/vc-sccs.el (vc-sccs):
2524 * vc/vc-svn.el (vc-svn): New customization group (Bug#10871).
2525 All relevant defcustoms reassigned.
2526
3c9dfce6
CY
25272012-02-25 Chong Yidong <cyd@gnu.org>
2528
1339bf43
CY
2529 * newcomment.el (comment-styles): Add autoload (Bug#10868).
2530
3c9dfce6
CY
2531 * term/x-win.el (x-initialize-window-system): Reduce default for
2532 x-selection-timeout to 5 seconds (Bug#8869).
2533
25b2e303 25342012-02-24 Thierry Volpiatto <thierry.volpiatto@gmail.com>
2535
ec70a47d
GM
2536 * files.el (files-equal-p, file-subdir-of-p): New functions.
2537 (copy-directory): Error when trying to copy a directory on itself.
25b2e303 2538 Add missing copy-contents arg to tramp handler.
ec70a47d
GM
2539 * dired-aux.el (dired-copy-file-recursive): Same.
2540 (dired-create-files): Modify destination when source is equal to
2541 dest when copying files.
53a46cd0 2542 Return also when dest is a subdir of source. (Bug#10489)
25b2e303 2543
914260cd
MA
25442012-02-24 Michael Albinus <michael.albinus@gmx.de>
2545
2546 * net/ange-ftp.el (ange-ftp-parse-netrc): Suppress comment lines.
2547 (Bug#10874)
2548
2cb228f7
AM
25492012-02-23 Alan Mackenzie <acm@muc.de>
2550
2551 * emacs-lisp/easy-mmode.el (define-minor-mode): Add extra
2552 parameter "after-hook:" to allow the expansion to run code after
2553 the execution of the mode hooks.
2554
2555 * font-lock.el (font-lock-initial-fontify): New function extracted
91027d08 2556 from font-lock-mode-internal.
2cb228f7 2557
91027d08 2558 * font-core.el (font-lock-mode): Call font-lock-initial-fontify in
2cb228f7
AM
2559 :after-hook.
2560
8f0fde21
SM
25612012-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
2562
3e88618b
SM
2563 * minibuffer.el: Make sure cycling is reset upon edit with icomplete.el.
2564 (completion--cache-all-sorted-completions): New function.
2565 (completion-all-sorted-completions): Use it.
2566 (completion--do-completion, minibuffer-force-complete):
2567 Use it to re-instate the flush hook.
2568
8f0fde21
SM
2569 * icomplete.el (icomplete-completions): Replace last fix with a better
2570 one (bug#10850).
2571
8e911f6f
DG
25722012-02-23 Dmitry Gutov <dgutov@yandex.ru>
2573
2574 * emacs-lisp/lisp.el (beginning-of-defun-raw): Don't call end-of-defun
2575 when it might call us back infinitely (bug#10797).
2576
49fe4321
GM
25772012-02-23 Glenn Morris <rgm@gnu.org>
2578
2579 * minibuffer.el (completion-category-overrides): Doc fix.
2580
b291b572
SM
25812012-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
2582
2583 * minibuffer.el (completion-table-with-context): Fix inf-loop.
2584 Reported by Aaron S. Hawley <aaron.s.hawley@gmail.com>.
2585
31a9ef2e
GM
25862012-02-23 Glenn Morris <rgm@gnu.org>
2587
5e6e6794 2588 * emacs-lisp/authors.el (authors-aliases, authors-fixed-case)
31a9ef2e
GM
2589 (authors-obsolete-files-regexps, authors-ignored-files)
2590 (authors-ambiguous-files, authors-renamed-files-alist):
2591 Add more entries.
2592
0bd1e074
JL
25932012-02-23 Juri Linkov <juri@jurta.org>
2594
2595 * isearch.el (isearch-occur): Sync interactive spec with occur's
2596 new feature in `occur-read-primary-args'. Doc fix. (Bug#10705)
2597
b617673c
JL
2598 * replace.el (occur-menu-map): Add menu item for `occur-edit-mode'.
2599
19e9789e
JL
26002012-02-22 Juri Linkov <juri@jurta.org>
2601
2602 * international/mule-cmds.el (read-char-by-name): Use \` and \'.
2603 (ucs-insert): Doc fix. Check for hex digits in the string.
2604 Don't display `nil' in the error message. (Bug#10857)
2605
f41ce09d
AM
26062012-02-22 Alan Mackenzie <acm@muc.de>
2607
7a71b18d 2608 * progmodes/cc-mode.el: Revert change #2012-02-06T22:08:41Z!larsi@gnus.org from 2012-02-06.
f41ce09d 2609
ac2eceee
GM
26102012-02-22 Glenn Morris <rgm@gnu.org>
2611
2612 * ffap.el (ffap-c-path):
2613 * man.el (Man-header-file-path): Handle multiarch. (Bug#10702)
2614
abd1f678
CY
26152012-02-22 Chong Yidong <cyd@gnu.org>
2616
2617 * custom.el (load-theme): Doc fix.
2618
f25aef2e
GM
26192012-02-22 Glenn Morris <rgm@gnu.org>
2620
2621 * dired-x.el (dired-guess-shell-alist-default):
2622 Remove escape sequences from nroff output. (Bug#172)
2623
5f8dc2ca
GM
26242012-02-21 Glenn Morris <rgm@gnu.org>
2625
6ff86ec4
GM
2626 * vc/emerge.el (emerge-defvar-local):
2627 Set `permanent-local' property rather than unused `preserved'.
2628
be3223a3 2629 * textmodes/picture.el (picture-delete-char): New alias.
5f8dc2ca
GM
2630 (picture-mode-map): Use it. (Bug#10860)
2631 (picture-mode): Doc fix.
2632
3fe58f4f
JB
26332012-02-21 Juanma Barranquero <lekktu@gmail.com>
2634
2635 * newcomment.el (uncomment-region-default): Remove unused binding.
2636
f9a998c3
GM
26372012-02-21 Glenn Morris <rgm@gnu.org>
2638
2639 * textmodes/picture.el (picture-motion, picture-motion-reverse)
2640 (picture-self-insert, picture-tab-chars): Doc fix.
2641 (picture-mode-map): Fix C-a, C-e.
2642
c6029348
GM
26432012-02-20 Glenn Morris <rgm@gnu.org>
2644
2645 * emacs-lisp/authors.el (authors-aliases): Add another entry.
2646
ab1ce9d7
LL
26472012-02-20 Leo Liu <sdl.web@gmail.com>
2648
2649 * icomplete.el (icomplete-completions): Check FROM arg before
2650 passing to substring (Bug#10850).
2651
0fd40f89
CY
26522012-02-19 Chong Yidong <cyd@gnu.org>
2653
2654 * comint.el: Require ansi-color.
2655 (comint-output-filter-functions): Add ansi-color-process-output.
2656
2657 * ansi-color.el: Don't set comint-output-filter-functions; it is
2658 now in the initial value defined in comint.el.
2659 (ansi-color-apply-face-function): New variable.
2660 (ansi-color-apply-on-region): Use it.
2661 (ansi-color-apply-overlay-face): New function.
2662
2663 * shell.el (shell): No need to require ansi-color.
2664 (shell-mode): Use ansi-color-apply-face-function to highlight
2665 color escapes using font-lock-face property (Bug#10835).
2666
20af2394
CY
26672012-02-19 Chong Yidong <cyd@gnu.org>
2668
2669 * vc/ediff-init.el (ediff-strip-mode-line-format): Handle non-list
2670 mode-line formats (Bug#10839).
2671
e23a3fbe
GM
26722012-02-18 Glenn Morris <rgm@gnu.org>
2673
b474519e
GM
2674 * mail/rmail.el (rmail-dont-reply-to-names): Mark as obsolete.
2675
2676 * mail/undigest.el (unforward-rmail-message): Doc fix.
2677
e23a3fbe
GM
2678 * saveplace.el (save-place-ignore-files-regexp): Add :version.
2679
57939ff4
EZ
26802012-02-18 Eli Zaretskii <eliz@gnu.org>
2681
2682 * international/characters.el (script-list): Sync with the latest
2683 Unicode Character Database.
2684
0c23686e
AS
26852012-02-18 Andreas Schwab <schwab@linux-m68k.org>
2686
2687 * international/titdic-cnv.el: Remove duplicate coding tag.
2688 * language/cham.el: Likewise.
2689 * language/tai-viet.el: Likewise.
2690
6818b449
GM
26912012-02-18 Glenn Morris <rgm@gnu.org>
2692
2693 * calendar/cal-menu.el (cal-menu-diary-menu, cal-menu-goto-menu):
2694 * calendar/calendar.el (diary-file, diary-bahai-entry-symbol)
2695 (calendar-bahai-all-holidays-flag, calendar-other-dates):
2696 * calendar/diary-lib.el (diary-abbreviated-year-flag):
2697 * calendar/holidays.el (holiday-bahai-holidays)
2698 (calendar-holidays, list-holidays):
2699 Use utf-8 Bahá'í in doc-strings, menus, etc.
2700
0311a3fc
TH
27012012-02-17 Tassilo Horn <tassilo@member.fsf.org>
2702
2703 * saveplace.el (save-place-ignore-files-regexp): New variable
2704 allowing for excluding files from saving their location of point.
2705 The default value matches the temporary commit message editing
2706 files from Git, SVN, Bazaar, and Mercurial.
2707 (save-place-to-alist): Use it.
2708
eb864a71
LM
27092012-02-17 Lawrence Mitchell <wence@gmx.li>
2710 Stefan Monnier <monnier@iro.umontreal.ca>
2711
2712 * newcomment.el (uncomment-region-default): Don't leave extra space
2713 when an arg is provided (bug#8150).
2714
ee0ce425
TZ
27152012-02-17 Teodor Zlatanov <tzz@lifelogs.com>
2716
eb864a71 2717 * net/gnutls.el (gnutls-trustfiles): Fix Cygwin bundle location.
ee0ce425 2718
95ddf442
GM
27192012-02-17 Glenn Morris <rgm@gnu.org>
2720
2721 * net/socks.el: Require network-stream. (Bug#10599)
2722
48dd1e39 27232012-02-17 Kenichi Handa <handa@m17n.org>
c406be43
KH
2724
2725 * international/charprop.el:
2726 * international/uni-name.el:
2727 * international/uni-old-name.el:
2728 * international/uni-comment.el: Regenerate.
2729
d68cd087
GM
27302012-02-16 Glenn Morris <rgm@gnu.org>
2731
2732 * calendar/cal-hebrew.el (calendar-hebrew-list-yahrzeits):
2733 Interactively in calendar buffer, give an error if not on a date.
2734
13932042
GM
27352012-02-15 Glenn Morris <rgm@gnu.org>
2736
2737 * shell.el (shell-delimiter-argument-list):
2738 Revert 2011-02-17 change. (Bug#8027)
2739
c3a70e2b
CY
27402012-02-15 Chong Yidong <cyd@gnu.org>
2741
60236b0d
CY
2742 * minibuffer.el (completion-at-point-functions): Doc fix.
2743
c3a70e2b
CY
2744 * custom.el (defcustom): Doc fix; note use of defvar.
2745
9f26dc24
GM
27462012-02-15 Glenn Morris <rgm@gnu.org>
2747
2748 * mail/smtpmail.el (smtpmail-smtp-user, smtpmail-stream-type):
2749 Doc fixes.
2750
6546b134
GM
27512012-02-14 Glenn Morris <rgm@gnu.org>
2752
2753 * mail/smtpmail.el (smtpmail-query-smtp-server): Give it a doc.
2754
d29b2b4c
LI
27552012-02-14 Lars Ingebrigtsen <larsi@gnus.org>
2756
2757 * mail/smtpmail.el (smtpmail-query-smtp-server): Fix typo in the
2758 way the ports list is computed.
835bdcba
LI
2759 (smtpmail-query-smtp-server): Prompt the user for a port number if
2760 we can't connect to any of the standard ports (bug#10810).
d29b2b4c 2761
08dcdbc9
TZ
27622012-02-14 Teodor Zlatanov <tzz@lifelogs.com>
2763
2764 * net/gnutls.el (gnutls-trustfiles): Add Cygwin location.
2765
2605051a
GM
27662012-02-13 Glenn Morris <rgm@gnu.org>
2767
2768 * minibuffer.el (read-file-name): Doc fix. (Bug#10798)
2769
7ee99f32
TZ
27702012-02-13 Teodor Zlatanov <tzz@lifelogs.com>
2771
2772 * net/gnutls.el (gnutls-trustfiles): New variable.
2773 (gnutls-negotiate): Use it.
2774
5f0af64f
LI
27752012-02-13 Lars Ingebrigtsen <larsi@gnus.org>
2776
2777 * simple.el (mail-user-agent): Mention that `gnus-user-agent' only
2778 does its stuff if Gnus is running.
2779
c14fcc95
AM
27802012-02-13 Alan Mackenzie <acm@muc.de>
2781
2782 Fix a loop in c-set-fl-decl-start.
2783
7a71b18d 2784 * progmodes/cc-engine.el (c-set-fl-decl-start): Add a check that
c14fcc95
AM
2785 c-backward-syntactic-ws actually moves backwards.
2786
142b4d90
LL
27872012-02-13 Leo Liu <sdl.web@gmail.com>
2788
2789 * net/rcirc.el (rcirc-markup-attributes): Move point to the
2790 beginning so that all \C-o chars are removed.
2791
fa9958a6
TZ
27922012-02-12 Teodor Zlatanov <tzz@lifelogs.com>
2793
dc9924b8 2794 * net/gnutls.el (gnutls-algorithm-priority): Add missing :group tag.
fa9958a6 2795
0bc5886a
AM
27962012-02-12 Alan Mackenzie <acm@muc.de>
2797
2798 Fix infinite loop with long macros.
4d6769e1 2799 * progmodes/cc-engine.el (c-state-safe-place): Handle macros properly.
0bc5886a 2800
d4bd55e7
CY
28012012-02-12 Chong Yidong <cyd@gnu.org>
2802
2803 * window.el (display-buffer): Doc fix (Bug#10785).
2804
66f3fe22
GM
28052012-02-12 Glenn Morris <rgm@gnu.org>
2806
bd7da63e
GM
2807 * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
2808 (x-disown-selection-internal, x-get-selection-internal):
2809 Sync docs with the xselect.c versions.
2810
66f3fe22
GM
2811 * allout-widgets.el: Add missing license notice.
2812
3e0d2fa7
GM
28132012-02-11 Glenn Morris <rgm@gnu.org>
2814
cfecdf09
GM
2815 * select.el (x-get-selection-internal, x-own-selection-internal)
2816 (x-disown-selection-internal):
2817 * x-dnd.el (x-get-selection-internal): Update declarations.
2818
6d216d7f
GM
2819 * vc/log-view.el (vc-diff-internal): Remove unneeded declaration.
2820
2bed3f04
GM
2821 * window.el (window-sides-slots):
2822 * tool-bar.el (tool-bar-position):
2823 * term/xterm.el (xterm-extra-capabilities):
2824 * ses.el (ses-self-reference-early-detection):
2825 * progmodes/verilog-mode.el (verilog-auto-declare-nettype)
2826 (verilog-auto-wire-type)
2827 (verilog-auto-delete-trailing-whitespace)
2828 (verilog-auto-reset-blocking-in-non, verilog-auto-inst-sort)
2829 (verilog-auto-tieoff-declaration):
2830 * progmodes/sql.el (sql-login-hook, sql-ansi-statement-starters)
2831 (sql-oracle-statement-starters, sql-oracle-scan-on):
2832 * progmodes/prolog.el (prolog-align-comments-flag)
2833 (prolog-indent-mline-comments-flag, prolog-object-end-to-0-flag)
2834 (prolog-left-indent-regexp, prolog-paren-indent-p)
2835 (prolog-paren-indent, prolog-parse-mode, prolog-keywords)
2836 (prolog-types, prolog-mode-specificators)
2837 (prolog-determinism-specificators, prolog-directives)
2838 (prolog-electric-newline-flag, prolog-hungry-delete-key-flag)
2839 (prolog-electric-dot-flag)
2840 (prolog-electric-dot-full-predicate-template)
2841 (prolog-electric-underscore-flag, prolog-electric-tab-flag)
2842 (prolog-electric-if-then-else-flag, prolog-electric-colon-flag)
2843 (prolog-electric-dash-flag, prolog-old-sicstus-keys-flag)
2844 (prolog-program-switches, prolog-prompt-regexp)
2845 (prolog-debug-on-string, prolog-debug-off-string)
2846 (prolog-trace-on-string, prolog-trace-off-string)
2847 (prolog-zip-on-string, prolog-zip-off-string)
2848 (prolog-use-standard-consult-compile-method-flag)
2849 (prolog-use-prolog-tokenizer-flag, prolog-imenu-flag)
2850 (prolog-imenu-max-lines, prolog-info-predicate-index)
2851 (prolog-underscore-wordchar-flag, prolog-use-sicstus-sd)
2852 (prolog-char-quote-workaround):
2853 * progmodes/cc-vars.el (c-defun-tactic):
2854 * net/tramp.el (tramp-encoding-command-interactive)
2855 (tramp-local-end-of-line):
2856 * net/soap-client.el (soap-client):
2857 * net/netrc.el (netrc-file):
2858 * net/gnutls.el (gnutls):
2859 * minibuffer.el (completion-category-overrides)
2860 (completion-cycle-threshold)
2861 (completion-pcm-complete-word-inserts-delimiters):
2862 * man.el (Man-name-local-regexp):
2863 * mail/feedmail.el (feedmail-display-full-frame):
2864 * international/characters.el (glyphless-char-display-control):
2865 * eshell/em-ls.el (eshell-ls-date-format):
2866 * emacs-lisp/cl-indent.el (lisp-lambda-list-keyword-alignment)
2867 (lisp-lambda-list-keyword-parameter-indentation)
2868 (lisp-lambda-list-keyword-parameter-alignment):
2869 * doc-view.el (doc-view-image-width, doc-view-unoconv-program):
2870 * dired-x.el (dired-omit-verbose):
2871 * cus-theme.el (custom-theme-allow-multiple-selections):
2872 * calc/calc.el (calc-highlight-selections-with-faces)
2873 (calc-lu-field-reference, calc-lu-power-reference)
2874 (calc-note-threshold):
2875 * battery.el (battery-mode-line-limit):
2876 * arc-mode.el (archive-7z-extract, archive-7z-expunge)
2877 (archive-7z-update):
2878 * allout.el (allout-prefixed-keybindings)
2879 (allout-unprefixed-keybindings)
2880 (allout-inhibit-auto-fill-on-headline)
2881 (allout-flattened-numbering-abbreviation):
2882 * allout-widgets.el (allout-widgets-auto-activation)
2883 (allout-widgets-icons-dark-subdir)
2884 (allout-widgets-icons-light-subdir, allout-widgets-icon-types)
2885 (allout-widgets-theme-dark-background)
2886 (allout-widgets-theme-light-background)
2887 (allout-widgets-item-image-properties-emacs)
2888 (allout-widgets-item-image-properties-xemacs)
2889 (allout-widgets-run-unit-tests-on-load)
2890 (allout-widgets-time-decoration-activity)
2891 (allout-widgets-hook-error-post-time)
2892 (allout-widgets-track-decoration):
2893 Add missing :version tags to new defcustoms and defgroups.
2894
5fec1b8e
GM
2895 * progmodes/sql.el (sql-ansi-statement-starters)
2896 (sql-oracle-statement-starters): Add custom type.
2897
3e0d2fa7
GM
2898 * progmodes/prolog.el: Remove leading '*' from defcustom docs.
2899 (prolog-system-version): Give it a type.
2900
90b671e2
EZ
29012012-02-11 Eli Zaretskii <eliz@gnu.org>
2902
2903 * term/pc-win.el (x-select-text, x-selection-owner-p)
2904 (x-own-selection-internal, x-disown-selection-internal)
2905 (x-get-selection-internal): Sync doc strings and argument lists
2906 with xselect.c, common-win.el and x-win.el. (Bug#10783)
2907
5eac0c02
LL
29082012-02-11 Leo Liu <sdl.web@gmail.com>
2909
2910 * progmodes/python.el (python-end-of-statement): Fix infinite
2911 loop. (Bug#10788)
2912
f82cb659
GM
29132012-02-10 Glenn Morris <rgm@gnu.org>
2914
2915 * international/mule-cmds.el (unify-8859-on-encoding-mode)
2916 (unify-8859-on-decoding-mode): Properly mark as obsolete.
2917
cc26d239
LI
29182012-02-10 Lars Ingebrigtsen <larsi@gnus.org>
2919
2920 * mail/emacsbug.el (report-emacs-bug-hook): Query the user first
2921 about SMTP before checking the From header.
2922
91027d08 2923 * mail/sendmail.el (sendmail-query-user-about-smtp): Refactor out
cc26d239
LI
2924 into own function for reuse by emacsbug.el.
2925
1be3ca5a
LL
29262012-02-10 Leo Liu <sdl.web@gmail.com>
2927
2928 * subr.el (condition-case-unless-debug): Rename from
2929 condition-case-no-debug. All callers changed.
2930 (with-demoted-errors): Fix caller.
2931
2932 * vc/diff-mode.el (diff-auto-refine-mode, diff-hunk):
2933 * nxml/rng-valid.el (rng-do-some-validation):
2934 * emacs-lisp/package.el (package-refresh-contents)
2935 (package-menu-execute):
2936 * desktop.el (desktop-create-buffer):
91027d08 2937 * font-lock.el (lisp-font-lock-keywords-2): Caller changed.
1be3ca5a 2938
b011fbfe
GM
29392012-02-10 Glenn Morris <rgm@gnu.org>
2940
b2096d72
GM
2941 * textmodes/bibtex.el:
2942 Add missing :version tags for new/changed defcustoms.
2943
b011fbfe
GM
2944 * files.el (remote-file-name-inhibit-cache): Doc fixes.
2945
4c7e65bf
LI
29462012-02-09 Lars Ingebrigtsen <larsi@rusty>
2947
2948 * mail/smtpmail.el (smtpmail-user-mail-address): New function.
2949 (smtpmail-via-smtp): Use it, or fall back on the From address.
2950 (smtpmail-send-it): Ditto.
2951
f3934f6f
SM
29522012-02-09 Stefan Monnier <monnier@iro.umontreal.ca>
2953
2954 * emacs-lisp/bytecomp.el (byte-compile-file-form-defvar):
2955 Don't fallback on byte-compile-defvar. Optimize (defvar foo) away.
2956 (byte-compile-tmp-var): New const.
2957 (byte-compile-defvar): Use it to minimize .elc size.
2958 Just use `defvar' rather than simulate it (bug#10761).
2959
a075a2c5
GM
29602012-02-09 Glenn Morris <rgm@gnu.org>
2961
cf3aa21b
GM
2962 * files.el (rename-uniquely): Doc fix. (Bug#3806)
2963
354998cd
GM
2964 * progmodes/cc-guess.el (c-guess-offset-threshold, c-guess-region-max):
2965 Add :version tags.
2966
dc9924b8
SM
2967 * progmodes/compile.el (compilation-error-screen-columns)
2968 (compilation-first-column, compilation-filter-start): Doc fixes.
83274125 2969
dab3703d
GM
2970 * vc/log-view.el (log-view-toggle-entry-display):
2971 * vc/vc.el (vc-merge, vc-pull): Doc fixes.
2972
3f88cd72
GM
2973 * mail/emacsbug.el (report-emacs-bug-can-use-osx-open)
2974 (report-emacs-bug-can-use-xdg-email):
2975 (report-emacs-bug-insert-to-mailer): Doc fixes.
2976 (report-emacs-bug): Message fix.
2977
d95b247d
GM
2978 * net/browse-url.el (browse-url-can-use-xdg-open)
2979 (browse-url-xdg-open): Doc fixes.
2980
a075a2c5
GM
2981 * electric.el (electric-indent-mode, electric-pair-mode)
2982 (electric-layout-rules, electric-layout-mode): Doc fixes.
2983 (electric-pair-pairs, electric-pair-skip-self): Add :version tags.
2984
ffb6157e
MR
29852012-02-08 Martin Rudalics <rudalics@gmx.at>
2986
2987 * server.el (server-unselect-display): Don't inadvertently kill
2988 the current buffer. (Bug#10729)
2989
e1ac4066
GM
29902012-02-08 Glenn Morris <rgm@gnu.org>
2991
34e8a2da
GM
2992 * progmodes/sql.el (sql-port, sql-connection-alist, sql-list-all)
2993 (sql-list-table): Doc fixes.
2994
b4ac6e8c
GM
2995 * image-mode.el (image-transform-minor-mode-map, image-transform-mode):
2996 Comment out (does nothing).
2997
e1ac4066
GM
2998 * completion.el (dynamic-completion-mode):
2999 * dirtrack.el (dirtrack-debug-mode):
3000 * electric.el (electric-layout-mode):
3001 * epa-mail.el (epa-mail-mode, epa-global-mail-mode):
3002 * face-remap.el (text-scale-mode, buffer-face-mode):
3003 * iimage.el (iimage-mode):
3004 * image-mode.el (image-transform-mode):
3005 * minibuffer.el (completion-in-region-mode):
3006 * scroll-lock.el (scroll-lock-mode):
3007 * simple.el (next-error-follow-minor-mode):
3008 * tar-mode.el (tar-subfile-mode):
3009 * tooltip.el (tooltip-mode):
3010 * vcursor.el (vcursor-use-vcursor-map):
3011 * wid-browse.el (widget-minor-mode):
3012 * emulation/tpu-edt.el (tpu-edt-mode):
3013 * emulation/tpu-extras.el (tpu-cursor-free-mode):
3014 * international/iso-ascii.el (iso-ascii-mode):
3015 * language/thai-util.el (thai-word-mode):
3016 * mail/supercite.el (sc-minor-mode):
3017 * net/goto-addr.el (goto-address-mode):
3018 * net/rcirc.el (rcirc-multiline-minor-mode, rcirc-track-minor-mode):
3019 * progmodes/cwarn.el (cwarn-mode):
3020 * progmodes/flymake.el (flymake-mode):
3021 * progmodes/glasses.el (glasses-mode):
3022 * progmodes/hideshow.el (hs-minor-mode):
3023 * progmodes/pascal.el (pascal-outline-mode):
3024 * textmodes/enriched.el (enriched-mode):
3025 * vc/smerge-mode.el (smerge-mode):
3026 Doc fixes (minor mode argument).
3027
5e0d957f
EZ
30282012-02-07 Eli Zaretskii <eliz@gnu.org>
3029
3030 * ls-lisp.el (ls-lisp-sanitize): New function.
3031 (ls-lisp-insert-directory): Use it to fix or remove any elements
3032 in file-alist with missing attributes. (Bug#4673)
3033
98d7371e
AM
30342012-02-07 Alan Mackenzie <acm@muc.de>
3035
3036 Fix spurious recognition of c-in-knr-argdecl.
3037
3038 * progmodes/cc-engine.el (c-in-knr-argdecl): Check for '=' in a
3039 putative K&R region.
3040
667ced3a
AM
30412012-02-07 Alan Mackenzie <acm@muc.de>
3042
eb864a71
LM
3043 * progmodes/cc-engine.el (c-forward-objc-directive):
3044 Prevent looping in "#pragma mark @implementation".
667ced3a 3045
5b77774d
MA
30462012-02-07 Michael Albinus <michael.albinus@gmx.de>
3047
3048 * notifications.el (notifications-on-closed-signal): Make `reason'
3049 optional. (Bug#10744)
3050
af008560
GM
30512012-02-07 Glenn Morris <rgm@gnu.org>
3052
60d47423
GM
3053 * emacs-lisp/easy-mmode.el (define-minor-mode):
3054 Doc fixes for the macro and the mode it defines.
3055
dd605cc4
GM
3056 * image.el (imagemagick-types-inhibit): Doc fix.
3057
af008560
GM
3058 * cus-start.el (imagemagick-render-type): Add it.
3059
5cc59a37
LI
30602012-02-06 Lars Ingebrigtsen <larsi@gnus.org>
3061
4d6769e1
JB
3062 * progmodes/cc-mode.el (c-standard-font-lock-fontify-region-function):
3063 Set the default at load time, too, so that `font-lock-fontify-buffer'
3064 can be called without setting up the entire mode first. This fixes
3065 a bug in `mm-inline-text' with C MIME parts.
5cc59a37 3066
9a6dd747
CY
30672012-02-06 Chong Yidong <cyd@gnu.org>
3068
2d16b285
CY
3069 * simple.el (list-processes--refresh): Delete exited processes
3070 (Bug#8094).
3071
171e9b6e
CY
3072 * comint.el (comint-next-prompt): next-single-char-property-change
3073 and prev-single-char-property-change never return nil (Bug#8657).
3074
9a6dd747
CY
3075 * custom.el (defcustom): Doc fix (Bug#9711).
3076
aa4589a7
CY
30772012-02-05 Chong Yidong <cyd@gnu.org>
3078
5c2a252f
CY
3079 * cus-edit.el (custom-variable-reset-backup): Quote the value
3080 before storing it in the customized-value property (Bug#6712).
4aab9006 3081 (custom-display): Add a customization type tag.
983b9602 3082 (custom-buffer-create-internal): Improve tooltip message.
5c2a252f 3083
aa4589a7
CY
3084 * wid-edit.el (widget-field-value-get): New optional arg to
3085 suppress trailing whitespace truncation.
3086 (character): Use it (Bug#2689).
3087
1ff980ae
AS
30882012-02-05 Andreas Schwab <schwab@linux-m68k.org>
3089
3090 * progmodes/gud.el (gud-pv): Use pv instead of pv1.
3091 * progmodes/gdb-mi.el (gud-pp): Use pp instead of pp1.
3092
03988c98
CY
30932012-02-05 Chong Yidong <cyd@gnu.org>
3094
eeb6cc88
CY
3095 * cus-edit.el (custom-variable-value-create): For mismatched
3096 types, show the current value (Bug#7600).
3097
03988c98
CY
3098 * custom.el (defcustom): Doc fix.
3099
f8cdeef0
GM
31002012-02-05 Glenn Morris <rgm@gnu.org>
3101
3102 * font-lock.el (lisp-font-lock-keywords-2): Add with-wrapper-hook.
3103
0696d255
JB
31042012-02-05 Juanma Barranquero <lekktu@gmail.com>
3105
3106 * emacs-lisp/pp.el (pp-to-string): Use `with-temp-buffer'.
3107 (pp-buffer): Use `ignore-errors', `looking-at-p'.
3108 (pp-last-sexp): Use `looking-at-p'.
3109
34c99998
GM
31102012-02-04 Glenn Morris <rgm@gnu.org>
3111
8f05da42
GM
3112 * files.el (revert-buffer):
3113 Doc fix (mention revert-buffer-in-progress-p).
3114
f160676e
GM
3115 * emacs-lisp/ert-x.el (ert-simulate-command):
3116 Check deferred-action-list (which is obsolete) is bound.
3117
c7291ad9
GM
3118 * subr.el (with-wrapper-hook): Doc fixes.
3119
34c99998
GM
3120 * simple.el (filter-buffer-substring-functions)
3121 (buffer-substring-filters, filter-buffer-substring): Doc fixes.
3122
6283a7d3
LL
31232012-02-04 Lars Ljung <lars@matholka.se> (tiny change)
3124
3125 * eshell/esh-ext.el (eshell-windows-shell-file): Match "cmdproxy"
3126 anywhere in shell-file-name, not just at the beginning. (Bug#10523)
3127
e96e3013
LL
31282012-02-04 Leo Liu <sdl.web@gmail.com>
3129
3130 * emacs-lisp/smie.el: Fix dead link (Bug#10711).
3131
8ded50f2
GM
31322012-02-04 Glenn Morris <rgm@gnu.org>
3133
82ff1d13
GM
3134 * image.el (image-extension-data): Add obsolete alias.
3135
987a0a16
GM
3136 * isearch.el (isearch-update): Doc fix.
3137
ea32ef46
GM
3138 * facemenu.el (list-colors-display): Doc fix (minor rephrasing).
3139
8ded50f2
GM
3140 * ido.el (ido-find-file): Doc fix (ido-toggle-vc not on any key).
3141
eea14f31
GM
31422012-02-03 Glenn Morris <rgm@gnu.org>
3143
3144 * image.el (image-animated-p): Doc fix. Use image-animated-types.
3145 (image-animate-timeout): Doc fix.
3146
3147 * image-mode.el (image-animate-loop, image-toggle-animation): Doc fixes.
3148
12f381b7
GM
31492012-02-02 Glenn Morris <rgm@gnu.org>
3150
953cebf5
GM
3151 * server.el (server-auth-dir): Doc fix.
3152 (server-eval-at): Doc fix. Give an explicit error if !server-use-tcp.
3153
12f381b7
GM
3154 * subr.el (run-mode-hooks): Doc fix.
3155
953a8c3b
JL
31562012-02-02 Juri Linkov <juri@jurta.org>
3157
3158 * image-mode.el (image-toggle-display-image): Remove tautological
3159 `major-mode' from the `derived-mode-p' test.
3160
c5d3843c
KH
31612012-02-02 Kenichi Handa <handa@m17n.org>
3162
9f6e692e 3163 * composite.el (compose-region): Cancel previous change.
c5d3843c 3164
159462d4 31652012-02-02 Kenichi Handa <handa@m17n.org>
d2a51fd7
KH
3166
3167 * composite.el (compose-region, compose-string): Signal error for
3168 a null string component (Bug#6988).
3169
9f562668
CY
31702012-02-01 Chong Yidong <cyd@gnu.org>
3171
e2cef717
CY
3172 * view.el (view-buffer-other-window, view-buffer-other-frame):
3173 Handle special modes like view-buffer (Bug#10650).
3174 (view-buffer): Simplify.
3175
9f562668
CY
3176 * frame.el (set-frame-font): Tweak meaning of third argument.
3177
9f6e692e
JB
3178 * dynamic-setting.el (font-setting-change-default-font):
3179 Use set-frame-font (Bug#9982).
9f562668 3180
781acb9f
GM
31812012-02-01 Glenn Morris <rgm@gnu.org>
3182
6035be52
GM
3183 * progmodes/compile.el (compilation-internal-error-properties):
3184 Respect compilation-first-column in the "*compilation*" buffer.
3185
781acb9f
GM
3186 * emacs-lisp/easy-mmode.el (define-minor-mode):
3187 Relax :variable's test for a named function.
3188
abbceb00
AM
31892012-01-31 Alan Mackenzie <acm@muc.de>
3190
3191 * progmodes/cc-engine.el (c-guess-basic-syntax): CASE 5B.1: Fix an
3192 off by one error.
3193
fce3fdeb
CY
31942012-01-31 Chong Yidong <cyd@gnu.org>
3195
3196 * frame.el (set-frame-font): New arg ALL-FRAMES.
3197
3198 * menu-bar.el (menu-set-font): Use set-frame-font.
3199
3200 * faces.el (face-spec-reset-face): Don't apply unspecified
3201 attribute values to the default face.
3202
47893581
JB
32032012-01-31 Juanma Barranquero <lekktu@gmail.com>
3204
3205 * progmodes/cwarn.el (cwarn): Remove dead link.
3206 (cwarn-configuration, cwarn-verbose, cwarn-mode-text, cwarn-load-hook):
3207 Remove * from defcustom docstrings.
3208 (turn-on-cwarn-mode): Make obsolete.
3209 (c-at-toplevel-p): Remove compatibility code for Emacs 20.3 and older.
3210 (turn-on-cwarn-mode-if-enabled): Call `cwarn-mode'.
3211
e58e988a
GM
32122012-01-31 Glenn Morris <rgm@gnu.org>
3213
60dc2671 3214 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix.
6c9b47ae 3215 Fix :variable handling of mode a symbol not equal to modefun.
60dc2671 3216 Allow named functions to be used as the cdr of :variable.
e58e988a 3217
7a3f511d
GM
32182012-01-30 Glenn Morris <rgm@gnu.org>
3219
3220 * emacs-lisp/authors.el (authors-fixed-entries):
3221 Remove reference to deleted file rnewspost.el.
3222
cb882333
JB
32232012-01-29 Juanma Barranquero <lekktu@gmail.com>
3224
3225 * window.el (window-with-parameter): Remove unused variable `windows'.
3226 (window--side-check): Remove unused variable `code'.
3227 (window--resize-siblings): Remove unused variable `first'.
3228 (adjust-window-trailing-edge): Remove unused variable `failed'.
3229 (window-deletable-p, window--delete): Remove unused variable `buffer'.
3230 Use `let', not `let*'.
3231 (balance-windows-2): Remove unused variable `found'.
3232 (window--state-put-2): Remove unused variable `splits'.
3233 (window-state-put): Remove unused variable `selected'.
3234 (same-window-p): Use `string-match-p'.
3235 (display-buffer-assq-regexp): Remove unused variable `value'.
3236 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
3237 Mark argument ALIST as ignored.
3238 (pop-to-buffer): Remove unused variable `old-window'.
3239
907201af
EZ
32402012-01-29 Eli Zaretskii <eliz@gnu.org>
3241
3242 * jka-cmpr-hook.el (jka-compr-compression-info-list): Support .lz
3243 and .lzma compressed files.
3244
ea162670
CY
32452012-01-29 Chong Yidong <cyd@gnu.org>
3246
5b95ee8a
CY
3247 * frame.el (window-system-default-frame-alist): Doc fix.
3248
ea162670
CY
3249 * dynamic-setting.el (font-setting-change-default-font): Don't
3250 change the default face if SET-FONT argument is non-nil (Bug#9982).
3251
d6e6f4b1
SB
32522012-01-29 Samuel Bronson <naesten@gmail.com> (tiny change)
3253
3254 * custom.el (defcustom): Add doc link to Lisp manual (Bug#10635).
3255
0f29fa41 32562012-01-29 Syver Enstad <syver.enstad@cisco.com> (tiny change)
6b25e4e2
SE
3257
3258 * progmodes/gud.el (pdb): Give pdb full paths, to allow setting
3259 breakpoints in files outside current directory (Bug#6098).
3260
db174434
CY
32612012-01-29 Chong Yidong <cyd@gnu.org>
3262
6b25e4e2
SE
3263 * progmodes/python.el: Require ansi-color at top-level.
3264
6df6ae42
JB
3265 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-abbrev-table):
3266 Define and use in Emacs Lisp mode (Bug#9360).
db174434
CY
3267 (lisp-mode-abbrev-table): Add doc.
3268 (lisp-mode-variables): Don't set local-abbrev-table.
3269 (lisp-interaction-mode): Use emacs-lisp-mode-abbrev-table.
3270
e70ee681
RW
32712012-01-28 Roland Winkler <winkler@gnu.org>
3272
3273 * textmodes/bibtex.el (bibtex-vec-incr): Fix docstring.
3274
ace88aa2
RW
32752012-01-28 Roland Winkler <winkler@gnu.org>
3276
3277 * textmodes/bibtex.el (bibtex-entry-alist): New function.
3278 (bibtex-set-dialect): Use it. Either set global values of
3279 dialect-dependent variables or bind these variables buffer-locally
3280 (Bug#10254).
3281 (bibtex-mode): Call bibtex-set-dialect via
3282 hack-local-variables-hook.
eb864a71
LM
3283 (bibtex-dialect): Update docstring.
3284 Add safe-local-variable predicate.
ace88aa2
RW
3285 (bibtex-entry-alist, bibtex-field-alist): Initialize via
3286 bibtex-set-dialect.
3287 (bibtex-mode-map): Define menu for each dialect.
3288 (bibtex-entry): Fix docstring.
3289
93376c5b
CY
32902012-01-28 Chong Yidong <cyd@gnu.org>
3291
3292 * eshell/esh-arg.el (eshell-quote-argument): New function.
3293
3294 * eshell/esh-ext.el (eshell-invoke-batch-file):
3295 * eshell/em-unix.el (eshell/cat, eshell/du): Use it to quote the
3296 first arg to eshell-parse-command (Bug#10523).
3297
4372494f
DA
32982012-01-28 Drew Adams <drew.adams@oracle.com>
3299
3300 * net/ange-ftp.el (ange-ftp-canonize-filename): Check, that
3301 `default-directory' is non-nil.
3302
4d4ec1f8
EZ
33032012-01-28 Eli Zaretskii <eliz@gnu.org>
3304
3305 * mail/emacsbug.el (report-emacs-bug): Fill the potentially long
3306 line that displays system-configuration-options. (Bug#9924)
3307
7c188927
DA
33082012-01-28 Drew Adams <drew.adams@oracle.com>
3309
3310 * descr-text.el (describe-char): Show information about POS, in
3311 addition to information about the character at POS. Improve and
3312 update the doc string. Change "code point" to "code point in
3313 charset", to avoid confusion with the character's Unicode code
3314 point shown above that. (Bug#10129)
3315
e0da685a
EZ
33162012-01-28 Eli Zaretskii <eliz@gnu.org>
3317
3318 * descr-text.el (describe-char): Show the raw character, not only
3319 its display form at POS. Suggested by Kenichi Handa <handa@m17n.org>.
3320 See http://lists.gnu.org/archive/html/emacs-devel/2012-01/msg00760.html
3321 for the reasons.
3322
70550acf
PH
33232012-01-28 Phil Hagelberg <phil@hagelb.org>
3324
eb864a71
LM
3325 * emacs-lisp/package.el (package-install):
3326 Run package-refresh-contents if there is no archive yet (Bug#9798).
70550acf 3327
0ce8e868
CY
33282012-01-28 Chong Yidong <cyd@gnu.org>
3329
cb882333
JB
3330 * emacs-lisp/package.el (package-maybe-load-descriptor):
3331 New function, split from package-maybe-load-descriptor.
0ce8e868
CY
3332 (package-maybe-load-descriptor): Use it.
3333 (package-download-transaction): Fully load required packages
3334 inside the loop, so that `require' calls work (Bug#10593).
3335 (package-install): No need to call package-initialize now.
3336
2e7f3bea
CY
33372012-01-28 Chong Yidong <cyd@gnu.org>
3338
6e9bad14
CY
3339 * simple.el (deactivate-mark): Doc fix (Bug#8614).
3340
f823b8ca
CY
3341 * tooltip.el (tooltip-mode): Doc fix.
3342 (tooltip-use-echo-area): Mark as obsolete (Bug#6595).
3343
2680c309
CY
3344 * frame.el (set-cursor-color): Doc fix (Bug#352).
3345
d7a9e63b
CY
3346 * mail/rmail.el (rmail-start-mail): Add send-action again (Bug#10625).
3347 (rmail-mail-return): Switch to NEWBUF only if it is non-nil.
3348
2e7f3bea
CY
3349 * cus-edit.el (custom-buffer-create-internal): Fix search button
3350 action (Bug#10542).
2ae01800 3351 (customize-unsaved, customize-saved): Doc fix (Bug#10541).
2e7f3bea 3352
fc4f7a23
EW
33532012-01-27 Eduard Wiebe <usenet@pusto.de>
3354
3355 * dired.el (dired-mark-files-regexp):
3356 Include any subdirectory components. (Bug#10445)
3357
7dd37071
ML
33582012-01-27 Mike Lamb <mrlamb@gmail.com> (tiny change)
3359
3360 * pcmpl-unix.el (pcmpl-ssh-known-hosts):
3361 Handle [host]:port syntax. (Bug#10533)
3362
a268160b
AH
33632012-01-27 Alex Harsanyi <harsanyi@mac.com>
3364
3365 * xml.el (xml-parse-tag): Fix parsing of comments (Bug#10405).
3366
e43273ef
GM
33672012-01-26 Glenn Morris <rgm@gnu.org>
3368
3369 * dired-x.el (dired-bind-jump): Use ctl-x-map and ctl-x-4-map.
3370 * term.el (term-raw-escape-map): Use Control-X-prefix.
3371 * vc/vc-hooks.el (vc-prefix-map): Use ctl-x-map. (Bug#10566)
3372
1edf595d
MR
33732012-01-25 Martin Rudalics <rudalics@gmx.at>
3374
3375 * window.el (window-state-get, window--state-get-1): Don't deal
3376 with fixed-sizeness of windows. Simplify code.
3377
fa8eafef
JC
33782012-01-25 Jérémy Compostella <jeremy.compostella@gmail.com>
3379
6df6ae42
JB
3380 * window.el (window--state-get-1, window--state-put-2):
3381 Don't save and restore the mark.
fa8eafef 3382
0b21c100
CY
33832012-01-25 Chong Yidong <cyd@gnu.org>
3384
3385 * custom.el (custom-variable-p): Doc fix.
3386
5ae1a6c8
GM
33872012-01-25 Glenn Morris <rgm@gnu.org>
3388
40047858
GM
3389 * dired.el (dired-goto-file): Handle some of the more common
3390 characters that `ls -b' escapes. (Bug#10596)
3391
5ddce96c
GM
3392 * progmodes/compile.el (compilation-next-error-function):
3393 Respect compilation-first-column in the "*compilation*" buffer.
3394 * progmodes/grep.el (grep-first-column): New variable. (Bug#10594)
3395
5ae1a6c8
GM
3396 * vc/vc.el (vc-modify-change-comment): Scoping fix. (Bug#10513)
3397
b559f1a9
GM
33982012-01-24 Glenn Morris <rgm@gnu.org>
3399
3400 * pcmpl-gnu.el (pcomplete/tar): Handle " - ". (Bug#10457)
3401
6725d21a
JD
34022012-01-24 Julien Danjou <julien@danjou.info>
3403
3404 * color.el (color-rgb-to-hsl): Fix value computing.
3405 (color-hue-to-rgb): New function.
3406 (color-hsl-to-rgb): New function.
3407 (color-clamp, color-saturate-hsl, color-saturate-name)
3408 (color-desaturate-hsl, color-desaturate-name, color-lighten-hsl)
3409 (color-lighten-name, color-darken-hsl, color-darken-name): New function.
3410
70df4bbe
GM
34112012-01-24 Glenn Morris <rgm@gnu.org>
3412
3413 * vc/vc-rcs.el (vc-rcs-create-tag):
3414 * vc/vc-sccs.el (vc-sccs-create-tag):
3415 Fix argument spec to be what vc-create-tag expects. (Bug#10515)
3416
802a2ae2
ML
34172012-01-23 Mike Lamb <mrlamb@gmail.com> (tiny change)
3418
3419 * eshell/esh-util.el (eshell-read-hosts-file):
3420 Skip comment lines. (Bug#10549)
3421
d7128bb1
ML
3422 * eshell/em-unix.el (pcomplete/ssh): Remove. (Bug#10548)
3423
d1a5c3b4
JB
34242012-01-23 Juanma Barranquero <lekktu@gmail.com>
3425
2724d9c7
JB
3426 * subr.el (display-delayed-warnings): Doc fix.
3427 (collapse-delayed-warnings): New function to collapse identical
3428 adjacent warnings.
3429 (delayed-warnings-hook): Add it.
d1a5c3b4 3430
a5509865
MA
34312012-01-22 Michael Albinus <michael.albinus@gmx.de>
3432
3433 * net/tramp.el (tramp-action-login): Set connection property "login-as".
3434
3435 * net/tramp-cache.el (tramp-dump-connection-properties): Do not dump
3436 properties, when "login-as" is set.
3437
3438 * net/tramp-sh.el (tramp-methods): Add user spec to "pscp" and "psftp".
3439 (tramp-default-user-alist): Don't add "pscp".
3440 (tramp-do-copy-or-rename-file-out-of-band): Use connection
3441 property "login-as", if set. (Bug#10530)
3442
cc6d5805
MA
34432012-01-21 Michael Albinus <michael.albinus@gmx.de>
3444
3445 * net/tramp-sh.el (tramp-default-user-alist): Don't add "plink",
3446 "plink1" and "psftp". (Bug#10530)
3447
34482012-01-21 Kenichi Handa <handa@m17n.org>
71784361
KH
3449
3450 * international/mule-cmds.el (prefer-coding-system): Show a
3451 warning message if the default value of file-name-coding-system
3452 was not changed.
3453
f0960428
JC
34542012-01-21 Jérémy Compostella <jeremy.compostella@gmail.com>
3455
cb882333
JB
3456 * windmove.el (windmove-reference-loc):
3457 Fix windmove-reference-loc miscalculation.
f0960428 3458
dd6f2a63
JB
34592012-01-21 Jay Belanger <jay.p.belanger@gmail.com>
3460
3461 * calc/calc-units.el (math-put-default-units): Don't use "1" as a
3462 default unit.
3463
7b447e9b
GM
34642012-01-21 Glenn Morris <rgm@gnu.org>
3465
117a9ea1
GM
3466 * international/mule.el (auto-coding-alist): Add .tbz.
3467
7b447e9b
GM
3468 * files.el (local-enable-local-variables): Doc fix.
3469 (inhibit-local-variables-regexps): Rename from
3470 inhibit-first-line-modes-regexps. Keep old name as obsolete alias.
3471 Doc fix. Add some extensions from auto-coding-alist.
3472 (inhibit-local-variables-suffixes):
3473 Rename from inhibit-first-line-modes-suffixes. Doc fix.
3474 (inhibit-local-variables-p):
3475 New function, extracted from set-auto-mode-1.
3476 (set-auto-mode): Doc fix. Respect inhibit-local-variables-regexps.
3477 (set-auto-mode-1): Doc fix. Use inhibit-local-variables-p.
3478 (hack-local-variables): Doc fix. Make the mode-only case
3479 respect enable-local-variables and friends.
3480 Respect inhibit-local-variables-regexps for file-locals, but
3481 not for directory-locals.
3482 (set-visited-file-name):
3483 Take account of inhibit-local-variables-regexps.
3484 Whether it applies may change as the file name is changed.
3485 * jka-cmpr-hook.el (jka-compr-install):
3486 * jka-compr.el (jka-compr-uninstall):
3487 Update for inhibit-first-line-modes-suffixes name change.
3488
dd6e3cdd
MR
34892012-01-20 Martin Rudalics <rudalics@gmx.at>
3490
3491 * help-macro.el (make-help-screen): Temporarily restore original
3492 binding for minor-mode-map-alist (Bug#10454).
3493
0d0deb38
JD
34942012-01-19 Julien Danjou <julien@danjou.info>
3495
3496 * color.el (color-name-to-rgb): Use the white color to find the max
3497 color component value and return correctly computed values.
3498 (color-name-to-rgb): Add missing float conversion for max value.
3499
34a02f46
MR
35002012-01-19 Martin Rudalics <rudalics@gmx.at>
3501
3502 * window.el (window--state-get-1, window-state-get): Do not use
eb864a71
LM
3503 special state value for window-persistent-parameters.
3504 Rename argument IGNORE to WRITABLE. Rewrite doc-string.
34a02f46
MR
3505 (window--state-put-2): Reset all window parameters to nil before
3506 assigning values of persistent parameters.
3507
606c44c4
AM
35082012-01-18 Alan Mackenzie <acm@muc.de>
3509
3510 Eliminate sluggishness and hangs in fontification of "semicolon
3511 deserts".
3512
cb882333
JB
3513 * progmodes/cc-engine.el (c-state-nonlit-pos-interval):
3514 Change value 10000 -> 3000.
606c44c4
AM
3515 (c-state-safe-place): Reformulate so it doesn't stack up an
3516 infinite number of wrong entries in c-state-nonlit-pos-cache.
3517 (c-determine-limit-get-base, c-determine-limit): New functions to
3518 determine backward search limits disregarding literals.
3519 (c-find-decl-spots): Amend commenting.
3520 (c-cheap-inside-bracelist-p): New function which detects "={".
3521
3522 * progmodes/cc-fonts.el
3523 (c-make-font-lock-BO-decl-search-function): Give a limit to a
3524 backward search.
3525 (c-font-lock-declarations): Fix an occurrence of point being
3526 undefined. Check additionally for point being in a bracelist or
3527 near a macro invocation without a semicolon so as to avoid a
3528 fruitless time consuming search for a declarator. Give a more
3529 precise search limit for declarators using the new
3530 c-determine-limit.
3531
f3860cea
GM
35322012-01-18 Glenn Morris <rgm@gnu.org>
3533
3534 * files.el (auto-mode-alist, inhibit-first-line-modes-regexps)
3535 (set-auto-mode): Doc fixes.
3536
1db03b16
GM
35372012-01-17 Glenn Morris <rgm@gnu.org>
3538
0e6038be
GM
3539 * isearch.el (search-nonincremental-instead): Fix doc typo.
3540
1db03b16
GM
3541 * dired.el (dired-insert-directory): Handle newlines in directory name.
3542 (dired-build-subdir-alist): Unescape newlines in directory name.
3543
4cb0aa75
MA
35442012-01-17 Michael Albinus <michael.albinus@gmx.de>
3545
3546 * net/tramp.el (tramp-local-end-of-line): New defcustom.
3547 (tramp-action-login, tramp-action-yesno, tramp-action-yn)
3548 (tramp-action-terminal): Use it. (Bug#10530)
3549
1d00653d
SM
35502012-01-16 Stefan Monnier <monnier@iro.umontreal.ca>
3551
3552 * minibuffer.el (completion--replace): Strip properties (bug#10062).
3553
6a6ee00d
MR
35542012-01-16 Martin Rudalics <rudalics@gmx.at>
3555
3556 * window.el (window-state-ignored-parameters): Remove variable.
3557 (window--state-get-1): Rename argument MARKERS to IGNORE.
3558 Handle persistent window parameters. Make copy of clone-of
3559 parameter only if requested. (Bug#10348)
3560 (window--state-put-2): Install a window parameter only if it has
3561 a non-nil value or an existing parameter shall be overwritten.
3562
97912def
MA
35632012-01-15 Michael Albinus <michael.albinus@gmx.de>
3564
3565 * net/tramp-sh.el (tramp-remote-path): Set tramp-autoload cookie.
3566
688070a5
EZ
35672012-01-14 Eli Zaretskii <eliz@gnu.org>
3568
3569 * info.el (Info-toc-build): If the Info file has no "Up" pointer,
3570 don't pass the (nil) value of `upnode' to string-match.
3571
301afadc
CY
35722012-01-14 Chong Yidong <cyd@gnu.org>
3573
3574 * startup.el (command-line): Fix X resource class for cursorColor.
04877ddb 3575 Fix values recognized by the cursorBlink resource.
301afadc 3576
9e5788aa
PE
35772012-01-14 Paul Eggert <eggert@cs.ucla.edu>
3578
3579 * epg.el (epg--make-temp-file): Avoid permission race condition
3580 when running on old Emacs versions (bug#10403).
3581
3cdb7f5a
GM
35822012-01-14 Glenn Morris <rgm@gnu.org>
3583
3584 * dired.el (dired-get-filename): Fix 'verbatim case of previous change.
3585
8c82b1b4
AM
35862012-01-13 Alan Mackenzie <acm@muc.de>
3587
3588 Fix filling for when filladapt mode is enabled.
3589
3590 * progmodes/cc-cmds.el (c-fill-paragraph): In the invocation of
3591 c-mask-paragraph, pass in `fill-paragraph' rather than
3592 `fill-region-as-paragraph'. (This is a reversion of a previous
3593 change.)
eb864a71
LM
3594 * progmodes/cc-mode.el (c-basic-common-init):
3595 Make fill-paragraph-handle-comment buffer local and set it to nil.
8c82b1b4 3596
e517eda4
GM
35972012-01-13 Glenn Morris <rgm@gnu.org>
3598
1498536e
GM
3599 * dired.el (dired-switches-escape-p): New function.
3600 (dired-insert-directory): Use dired-switches-escape-p.
3601 (dired-get-filename): Undo "\ " quoting if needed. (Bug#10469)
3602
e517eda4
GM
3603 * find-dired.el (find-ls-option): Doc fix. (Bug#10262)
3604
328f984d
GM
36052012-01-12 Glenn Morris <rgm@gnu.org>
3606
3607 * mail/sendmail.el (mail-mode): Update paragraph-separate for
3608 changes in adaptive-fill-regexp. (Bug#10276)
3609
2cc769a8
AM
36102012-01-11 Alan Mackenzie <acm@muc.de>
3611
3612 Fix Emacs bug #10463 - put `widen's around the critical spots.
3613
1d00653d 3614 * progmodes/cc-engine.el (c-in-literal, c-literal-limits): Put a
2cc769a8
AM
3615 widen around each invocation of c-state-pp-to-literal. Remove an
3616 unused let variable.
3617
e52c37fa
GM
36182012-01-11 Glenn Morris <rgm@gnu.org>
3619
3620 * dired-aux.el (dired-do-shell-command): Fix */? logic. (Bug#6561)
09044622 3621 Doc fix.
e52c37fa 3622
96f8741e
CY
36232012-01-10 Chong Yidong <cyd@gnu.org>
3624
1d00653d
SM
3625 * net/network-stream.el (network-stream-open-starttls):
3626 Avoid emitting a confusing error message when the server gives a bad
96f8741e
CY
3627 response to the capability command.
3628
b09a806e
GM
36292012-01-10 Glenn Morris <rgm@gnu.org>
3630
3631 * mail/unrmail.el (unrmail): Tweak previous change.
3632
7655cb66
CY
36332012-01-09 Chong Yidong <cyd@gnu.org>
3634
3635 * custom.el (custom-safe-themes): Use SHA-256 for hashing.
3636
9d5a8f0b
AM
36372012-01-08 Alan Mackenzie <acm@muc.de>
3638
3639 Optimise font locking in long enum definitions.
3640
3641 * progmodes/cc-fonts.el (c-font-lock-declarations): Add an extra
3642 arm to a cond form to handle enums.
3643 * progmodes/cc-langs.el (c-enums-contain-decls): New lang variable.
3644 * progmodes/cc-mode.el (c-font-lock-fontify-region): Correct a typo.
3645
9a0115ab 36462012-01-07 Paul Eggert <eggert@cs.ucla.edu>
6bb72cbd
PE
3647
3648 * files.el (move-file-to-trash): Preserve default file modes on error.
a0562b3d 3649 (Bug#10401)
6bb72cbd 3650
f186bb95
LMI
36512012-01-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
3652
29232a68
LMI
3653 * faces.el (set-face-attribute): Clarify the meaning of the nil
3654 frame (bug#10294).
3655
4e5d086d
LMI
3656 * subr.el (with-selected-frame): Mention that the selected frame
3657 is restored (bug#9980).
3658
8e66aebe
LMI
3659 * ibuffer.el (ibuffer-mode): List the bindings in the corrent map
3660 (bug#9759).
3661
cd394be1 3662 * mail/smtpmail.el (password-cache-add): Remove unused declaration.
f186bb95
LMI
3663 (password-read): Don't autoload unused function.
3664
adf4e762
JB
36652012-01-07 Juanma Barranquero <lekktu@gmail.com>
3666
3667 * progmodes/which-func.el (which-func-mode): Turn into a
3668 non-interactive function and mark as obsolete (bug#10428).
3669
89bd9ccd
CY
36702012-01-06 Chong Yidong <cyd@gnu.org>
3671
3672 * files.el (hack-dir-local-variables-non-file-buffer): Add doc.
3673 (hack-one-local-variable-eval-safep): Allow 0 arg for minor mode
3674 functions, along with 1 and -1.
3675
4afee9d5
EZ
36762012-01-06 Eli Zaretskii <eliz@gnu.org>
3677
3678 * time.el (display-time-load-average)
3679 (display-time-default-load-average): Doc fixes. See the thread
3680 starting at
3681 http://lists.gnu.org/archive/html/help-gnu-emacs/2012-01/msg00059.html
3682 for the details.
3683
536aea70
GM
36842012-01-06 Glenn Morris <rgm@gnu.org>
3685
665ae865
GM
3686 * mail/unrmail.el (unrmail): Give an explicit error if the input file
3687 has no messages. (Bug#10377)
3688
c869783d
GM
3689 * info.el (Info-mode-map): Bind e to end-of-buffer, rather
3690 than Info-edit. (Bug#10385)
3691
2bb4227e
GM
3692 * time.el (display-time-load-average, display-time-next-load-average):
3693 Doc fixes.
3694
7d5944b9
GM
3695 * emacs-lisp/bytecomp.el (byte-compile-file): Do not propagate a file
3696 local setting of buffer-read-only to the input buffer. (Bug#10419)
3697
536aea70
GM
3698 * calendar/calendar.el (calendar-mode):
3699 Locally set scroll-margin to 0. (Bug#10379)
3700
7dccca16
UM
37012012-01-06 Ulrich Mueller <ulm@gentoo.org>
3702
3703 * play/doctor.el (doctor-death): Escape "," characters. (Bug#10370)
3704
afbb7930
GM
37052012-01-05 Glenn Morris <rgm@gnu.org>
3706
3707 * eshell/em-unix.el (diff-no-select): Autoload it.
3708 (eshell/diff): Use diff-no-select. (Bug#10420)
3709
04482335
CY
37102012-01-05 Chong Yidong <cyd@gnu.org>
3711
7baca3bc
CY
3712 * shell.el (shell-dynamic-complete-functions): Revert last change.
3713 (shell-command-completion-function): New function.
3714 (shell-completion-vars): Use it to implement
3715 shell-completion-execonly (Bug#10417).
3716
04482335
CY
3717 * custom.el (enable-theme): Don't set custom-safe-themes.
3718
1d00653d
SM
3719 * cus-theme.el (custom-theme-merge-theme):
3720 Ignore custom-enabled-themes and custom-safe-themes.
04482335 3721
bb5aa5d6
MM
37222012-01-05 Michael R. Mauger <mmaug@yahoo.com>
3723
3724 * progmodes/sql.el (sql-login-hook): Add hook to respond to the
3725 first prompt in `sql-interacive-mode'.
3726 (sql-mode-oracle-font-lock-keywords): Add CONNECT_BY_* builtin
04482335 3727 keywords.
6df6ae42 3728 (sql-mode-mysql-font-lock-keywords): Add ELSEIF keyword.
bb5aa5d6
MM
3729 (sql-product-interactive): Bug fix: Set `sql-buffer' in
3730 context of original buffer. Invoke `sql-login-hook'.
3731
a7183d7c
EZ
37322012-01-04 Eli Zaretskii <eliz@gnu.org>
3733
3734 * mail/rmail.el (rmail-font-lock-keywords): Accept non-ASCII
3735 letters in cite-prefix.
3736
a1eacd1e
LMI
37372012-01-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
3738
3739 * mail/smtpmail.el (smtpmail-stream-type): Mention the `ssl' value.
3740
787cdb34
CY
37412012-01-03 Chong Yidong <cyd@gnu.org>
3742
1d00653d
SM
3743 * shell.el (shell-dynamic-complete-functions):
3744 Put pcomplete-completions-at-point, so as to try
787cdb34
CY
3745 comint-filename-completion first (Bug#10417).
3746
30710442
RS
37472012-01-02 Richard Stallman <rms@gnu.org>
3748
3749 * battery.el (battery-status-function):
3750 Detect when to use battery-yeeloong-sysfs.
3751 (battery-echo-area-format): Add string for Yeeloong.
3752 (battery-linux-proc-apm, battery-linux-proc-acpi): Doc fixes.
3753 (battery-yeeloong-sysfs): New function.
3754
f75bfc33
CY
37552012-01-02 Chong Yidong <cyd@gnu.org>
3756
3757 * dirtrack.el (dirtrack-list): Eliminate unused third element.
3758 (dirtrack): Merge code for handling relative filenames in prompt
3759 from shell-dir-cookie-watcher.
3760 (dirtrack-debug-message): New arg to avoid excess format calls.
3761
3762 * shell.el (shell-dir-cookie-re): Variable deleted.
3763 (shell-dir-cookie-watcher): Function deleted.
3764 (shell-mode): Don't use shell-dir-cookie-re, since it is redundant
3765 with dirtrack-mode.
3766
651e947e
EZ
37672012-01-01 Eli Zaretskii <eliz@gnu.org>
3768
1d00653d
SM
3769 * term/w32-win.el (dynamic-library-alist) <gnutls>:
3770 Load libgnutls-28.dll, from GnuTLS version 3.x, in preference to
651e947e
EZ
3771 libgnutls-26.dll.
3772
94d4c7dc
AS
37732011-12-31 Andreas Schwab <schwab@linux-m68k.org>
3774
3775 * emacs-lisp/bytecomp.el (byte-compile-file): Fix indentation.
3776
8d43f3cd
EZ
37772011-12-31 Eli Zaretskii <eliz@gnu.org>
3778
3779 * mail/rmail.el (rmail-show-message-1): Decode any RFC2047 encoded
3780 headers of non-MIME messages, when rmail-enable-mime is non-nil.
3781
98c8795a
MA
37822011-12-29 Michael Albinus <michael.albinus@gmx.de>
3783
3784 * net/tramp-sh.el (tramp-find-shell): Set "remote-shell" property
3785 also for alternative shells.
3786 (tramp-open-connection-setup-interactive-shell): Check, whether
3787 the shell is a busybox.
3788 (tramp-send-command): Don't suppress multiple prompts for
3789 busyboxes, it hurts.
3790
51281b32
CY
37912011-12-28 Chong Yidong <cyd@gnu.org>
3792
3793 * progmodes/gdb-mi.el (gdb-get-source-file-list)
3794 (gdb-get-source-file): Move mode line update to
3795 gdb-get-source-file (Bug#10087).
3796
2170cb53
CY
37972011-12-25 Chong Yidong <cyd@gnu.org>
3798
3799 * progmodes/gud.el (gud-gdb-fetch-lines-filter): Just use
3800 gud-gdb-marker-filter without taking it as an argument.
3801 (gud-gdb-run-command-fetch-lines): Caller changed.
3802 (gud-gdb-completion-function): New variable.
3803 (gud-gdb-completion-at-point): Use it.
3804 (gud-gdb-completions-1): Split from gud-gdb-completions.
3805
3806 * progmodes/gdb-mi.el (gdb-input): Accept command and handler
3807 function as separate arguments.
3808 (gdb-init-1, gdb-non-stop-handler, gdb-check-target-async)
3809 (gdb-tooltip-print-1, gud-watch, gdb-speedbar-update)
3810 (gdb-var-list-children, gdb-var-set-format, gdb-var-delete-1)
3811 (gdb-var-delete-children, gdb-edit-value, gdb-var-update)
3812 (gdb-stopped, def-gdb-auto-update-trigger)
3813 (gdb-place-breakpoints, gdb-select-thread, gdb-select-frame)
b81d40f0
JB
3814 (gdb-get-changed-registers, gdb-get-main-selected-frame):
3815 Callers changed.
2170cb53
CY
3816 (gud-gdbmi-completions): New function.
3817 (gdb): Use it for generating the completion table.
3818
be8b11bb
AM
38192011-12-24 Alan Mackenzie <acm@muc.de>
3820
3821 Introduce a mechanism to widen the region used in context font
1d00653d 3822 locking. Use this to protect declarations from losing their contexts.
be8b11bb 3823
1d00653d
SM
3824 * progmodes/cc-langs.el (c-before-font-lock-functions):
3825 Replace c-set-fl-decl-start with c-change-set-fl-decl-start (Renaming).
b81d40f0 3826 (c-before-context-fontification-functions): New defvar, a list of
be8b11bb
AM
3827 functions to be run just before context (etc.) font locking.
3828
3829 * progmodes/cc-mode.el (c-extend-font-lock-region-for-macros):
b81d40f0 3830 New, functionality extracted from
be8b11bb 3831 c-neutralize-syntax-in-and-mark-CPP.
b81d40f0 3832 (c-in-after-change-fontification): New variable.
be8b11bb
AM
3833 (c-after-change): Set c-in-after-change-fontification.
3834 (c-set-fl-decl-start): Rejig its interface, so it can be called
3835 from both after-change and context fontifying.
b81d40f0
JB
3836 (c-change-set-fl-decl-start, c-context-set-fl-decl-start):
3837 New functions.
3838 (c-standard-font-lock-fontify-region-function): New variable.
3839 (c-font-lock-fontify-region): New function.
be8b11bb 3840
341cf6ac
JL
38412011-12-24 Juri Linkov <juri@jurta.org>
3842
3843 * window.el (window--state-get-1): Set `FORCE' arg of `mark' to t.
3844 (Bug#10348)
3845
bffcee0a
MA
38462011-12-23 Michael Albinus <michael.albinus@gmx.de>
3847
3848 * net/ange-ftp.el (ange-ftp-copy-file-internal): Check for
3849 existence of source file. (Bug#10325)
3850
cb5e207c
AM
38512011-12-23 Alan Mackenzie <acm@muc.de>
3852
3853 Fix unstable fontification inside templates.
3854
b81d40f0
JB
3855 * progmodes/cc-langs.el (c-before-font-lock-functions):
3856 Newly created from the singular version. The (c c++ objc) entry now
cb5e207c
AM
3857 additionally has c-set-fl-decl-start. The other languages (apart
3858 from AWK) have that as a single entry.
3859
b81d40f0
JB
3860 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
3861 The functionality for "local" declarations has been extracted to
cb5e207c
AM
3862 c-set-fl-decl-start.
3863
b81d40f0
JB
3864 * progmodes/cc-mode.el (c-common-init, c-after-change):
3865 Changes due to pluralisation of c-before-font-lock-functions.
cb5e207c
AM
3866 (c-set-fl-decl-start): New function, extracted from
3867 c-font-lock-enclosing-decls and enhanced.
3868
60ff536c
JB
38692011-12-23 Juanma Barranquero <lekktu@gmail.com>
3870
3871 * desktop.el (desktop-internal-v2s): Fix typos in docstring (bug#10353).
3872
1c4757d6
JL
38732011-12-22 Juri Linkov <juri@jurta.org>
3874
3875 * progmodes/grep.el (rgrep): Fix docstring. (Bug#10185)
3876
d031f2c7
CY
38772011-12-22 Chong Yidong <cyd@gnu.org>
3878
3879 * vc/vc-hooks.el (vc-keep-workfiles): Doc fix.
3880
bace743a
DA
38812011-12-21 Drew Adams <drew.adams@oracle.com>
3882
3883 * files.el (file-remote-p): Fix docstring. (Bug#10319)
3884
728a1f2b
JC
38852011-12-21 Jérémy Compostella <jeremy.compostella@gmail.com>
3886
3887 * battery.el (battery-linux-sysfs): Add missing parameters from acpi.
3888
0d373f73
TZ
38892011-12-21 Teodor Zlatanov <tzz@lifelogs.com>
3890
fec0aaa4
TZ
3891 * progmodes/cfengine.el: Add Version. Improve CFEngine 3.x syntax
3892 highlighting and support. Fix up comments for capitalization.
3893 (cfengine-mode-debug): New var.
3894 (cfengine3-mode): Change the modeline indicator to "CFE3".
3895 (cfengine3-font-lock-keywords): Improve defun highlighting.
3896 (cfengine2-actions): Rename from `cfengine-actions'.
3897 (cfengine2-font-lock-keywords): Rename from
3898 `cfengine-font-lock-keywords'.
3899 (cfengine2-imenu-expression): Rename from
3900 `cfengine-imenu-expression'.
3901 (cfengine2-outline-level): Rename from `cfengine-outline-level'.
3902 (cfengine2-beginning-of-defun): Rename from
3903 `cfengine-beginning-of-defun'.
3904 (cfengine2-end-of-defun): Rename from `cfengine-end-of-defun'.
3905 (cfengine2-indent-line): Rename from `cfengine-indent-line'.
3906 (cfengine2-mode): Rename from `cfengine-mode'. Change the
3907 modeline indicator to "CFE2".
3908 (cfengine-mode): Defalias to `cfengine-auto-mode'.
3909 (cfengine-mode-abbrevs): Mark obsolete.
0d373f73 3910
bc86f573
CY
39112011-12-21 Chong Yidong <cyd@gnu.org>
3912
3913 * vc/vc-bzr.el (vc-bzr-rename-file): Don't pass ~ to Bzr in
3914 filename argument.
3915
d45ba96b
MR
39162011-12-20 Martin Rudalics <rudalics@gmx.at>
3917
3918 * window.el (window-normalize-buffer-to-display): Remove.
3919 (display-buffer): Handle buffer-or-name argument as in Emacs 23.
3920
a6198c90
CY
39212011-12-19 Chong Yidong <cyd@gnu.org>
3922
3923 * vc/vc-dir.el (vc-dir-parent-marked-p, vc-dir-children-marked-p):
3924 Don't signal an error in a predicate function; return non-nil.
3925 (vc-dir-mark-file): Move the error here.
3926 (vc-dir-mark-unmark): If acting on the region, keep going if one
3927 of the entries cannot be marked/unmarked.
3928 (vc-dir-mark-all-files): If current entry is a directory, mark
3929 only child files, as documented.
3930
34c5fb55
VB
39312011-12-19 Vincent Belaïche <vincentb1@users.sourceforge.net>
3932
3933 * ses.el: Ooops... undo changes of 2011-12-11T14:49:48Z!vincentb1@users.sourceforge.net, as trunk
3934 branch is feature frozen, and 2011-12-11T14:49:48Z!vincentb1@users.sourceforge.net was a feature
3935 addition.
3936
c803b2b7
JD
39372011-12-18 Jan Djärv <jan.h.d@swipnet.se>
3938
3939 * term/ns-win.el (ns-get-selection-internal)
3940 (ns-store-selection-internal): Declare.
1154d12e
JB
3941 (ns-store-cut-buffer-internal, ns-get-cut-buffer-internal):
3942 Declare as obsolete.
3943 (ns-get-pasteboard, ns-paste-secondary):
3944 Use ns-get-selection-internal.
3945 (ns-set-pasteboard, ns-copy-including-secondary):
3946 Use ns-store-selection-internal.
c803b2b7 3947
9cff91f8 39482011-12-17 Chong Yidong <cyd@gnu.org>
99a289d9
CY
3949
3950 * vc/vc.el (vc-next-action): Doc fix; remove CVS-isms.
9cff91f8 3951 (vc-deduce-fileset): Doc fix.
99a289d9 3952
f16c898a
AS
39532011-12-16 Andreas Schwab <schwab@linux-m68k.org>
3954
3955 * calc/calc-misc.el (calc-help): Avoid wrapping help message.
3956
763237c4
SS
39572011-12-13 Sam Steingold <sds@gnu.org>
3958
3959 * man.el (Man-getpage-in-background): When running under a
3960 window-system, ignore $MANWIDTH and $COLUMNS.
3961
5fc1c122
KH
39622011-12-15 Kenichi Handa <handa@m17n.org>
3963
3964 * language/ethio-util.el: Change coding tag to utf-8-emacs.
3965 (setup-ethiopic-environment-internal): Comment out key-binding for
3966 ethio-toggle-punctuation.
3967
13d49cbb
AM
39682011-12-13 Alan Mackenzie <acm@muc.de>
3969
898169a2
AM
3970 Add the switch statement to AWK Mode.
3971
7a71b18d 3972 * progmodes/cc-awk.el (awk-font-lock-keywords): Add "switch", "case",
898169a2
AM
3973 "default" to the keywords regexp.
3974
7a71b18d 3975 * progmodes/cc-langs.el (c-label-kwds): Let AWK take the same
898169a2 3976 expression as the rest.
1d00653d
SM
3977 (c-nonlabel-token-key): Allow string literals for AWK.
3978 Refactor for the other modes.
898169a2 3979
13d49cbb 3980 Large brace-block initialisation makes CC Mode slow: Fix.
1d00653d 3981 Tidy up and accelerate c-in-literal, etc. by using the c-parse-state
13d49cbb
AM
3982 routines. Limit backward searching in c-font-lock-enclosing.decl.
3983
3984 * progmodes/cc-engine.el (c-state-pp-to-literal): Return the
3985 pp-state and literal type in addition to the limits.
1d00653d 3986 (c-state-safe-place): New defun, extracted from c-state-literal-at.
13d49cbb 3987 (c-state-literal-at): Use the above new defun.
1d00653d
SM
3988 (c-slow-in-literal, c-fast-in-literal): Remove.
3989 (c-in-literal, c-literal-limits): Amend to use c-state-pp-to-literal.
13d49cbb
AM
3990
3991 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls): Check for
3992 being in a literal. Add a limit for backward searching.
3993
3994 * progmodes/cc-mode.el (awk-mode): Don't alias c-in-literal to
3995 c-slow-in-literal.
3996
15e0efc7
SM
39972011-12-13 Stefan Monnier <monnier@iro.umontreal.ca>
3998
3999 * progmodes/pascal.el: Declare `ind' as dyn-bound (bug#10264).
4000
454592a6
MR
40012011-12-13 Martin Rudalics <rudalics@gmx.at>
4002
4003 * window.el (delete-other-windows): Use correct frame in call to
4004 window-with-parameter.
4005
87393f26
DP
40062011-12-12 Daniel Pfeiffer <occitan@t-online.de>
4007
4008 * progmodes/make-mode.el: Bring it up to date with makepp V2.0.
4009 (makefile-make-font-lock-keywords): Extend meaning of `keywords'.
4010 (makefile-gmake-statements, makefile-makepp-statements):
4011 Use it and add new makepp keywords.
4012 (makefile-makepp-font-lock-keywords): Add new patterns.
4013 (makefile-match-function-end): Match new [...] and [[...]].
4014
11636b22
JB
40152011-12-11 Juanma Barranquero <lekktu@gmail.com>
4016
4017 * ses.el (ses-call-printer-return, ses-cell-property-get)
4018 (ses-sym-rowcol, ses-printer-validate, ses-formula-record)
4019 (ses-create-cell-variable, ses-reset-header-string)
4020 (ses-cell-set-formula, ses-repair-cell-reference-all)
4021 (ses-self-reference-early-detection, ses-in-print-area, ses-set-curcell)
4022 (ses-check-curcell, ses-call-printer, ses-adjust-print-width)
4023 (ses-print-cell-new-width, ses-formula-references, ses-relocate-formula)
4024 (ses-aset-with-undo, ses-load, ses-truncate-cell)
4025 (ses-read-column-printer, ses-read-default-printer, ses-insert-row)
4026 (ses-delete-row, ses-delete-column, ses-append-row-jump-first-column)
4027 (ses-kill-override, ses-yank-pop, ses-yank-cells, ses-yank-tsf)
4028 (ses-yank-resize, ses-export-tab, ses-mark-row, ses-mark-column)
4029 (ses-renarrow-buffer, ses-insert-range, ses-insert-ses-range)
4030 (ses-safe-printer, ses-safe-formula, ses-warn-unsafe, ses--clean-!)
4031 (ses--clean-_, ses-range, ses-select, ses-center, ses-center-span)
4032 (ses-dashfill, ses-unsafe): Fix typos and reflow docstrings.
4033
cf018193
VB
40342011-12-11 Vincent Belaïche <vincentb1@users.sourceforge.net>
4035
4036 * ses.el: The overall change is to add cell renaming, that is
4037 setting fancy names for cell symbols other than name matching
4038 "\\`[A-Z]+[0-9]+\\'" regexp .
4039 (ses-create-cell-variable): New defun.
4040 (ses-relocate-formula): Relocate formulas only for cells the
4041 symbols of which are not renamed, i.e. symbols whose names do not
4042 match regexp "\\`[A-Z]+[0-9]+\\'".
4043 (ses-relocate-all): Relocate values only for cells the symbols of
4044 which are not renamed.
4045 (ses-load): Create cells variables as the (ses-cell ...) are read,
4046 in order to check row col consistency with cell symbol name only
4047 for cells that are not renamed.
4048 (ses-replace-name-in-formula): New defun.
4049 (ses-rename-cell): New defun.
4050
ee957461
CY
40512011-12-11 Chong Yidong <cyd@gnu.org>
4052
4053 * progmodes/gdb-mi.el (gdb): Set comint-prompt-regexp, required
4054 for completion via gud-gdb-fetch-lines-filter (Bug#10274).
4055
9a9e9ef0
MR
40562011-12-11 Eric Hanchrow <eric.hanchrow@gmail.com>
4057
4058 * window.el (other-window): Fix docstring.
4059
92a8eba5
EZ
40602011-12-10 Eli Zaretskii <eliz@gnu.org>
4061
4062 * mail/rmailsum.el (rmail-header-summary): RFC2047 decode the
1d00653d
SM
4063 `from' or `to' address before taking its substring.
4064 Fixes incorrect display in Rmail summary buffer whereby an RFC2047
92a8eba5
EZ
4065 encoded name is chopped in the middle of the encoded string, and
4066 thus displayed encoded.
4067
e152e577
JB
40682011-12-10 Juanma Barranquero <lekktu@gmail.com>
4069
4070 * makefile.w32-in (update-subdirs-CMD): Use a Local Variables section.
4071
e5d84bfe
EZ
40722011-12-10 Eli Zaretskii <eliz@gnu.org>
4073
4074 * textmodes/texnfo-upd.el: Update commentary. Add a warning not
4075 to use texinfo-update-node and commands that call it if the
4076 Texinfo file uses @node lines without next/prev/up pointers.
b8830d28 4077 Correct outdated description about texinfo-master-menu.
e5d84bfe
EZ
4078 (texinfo-all-menus-update, texinfo-master-menu)
4079 (texinfo-update-node, texinfo-every-node-update)
4080 (texinfo-multiple-files-update): Doc fix. Warn against updating
4081 all the @node lines.
4082 (texinfo-master-menu): Only call texinfo-update-node if the prefix
b8830d28
EZ
4083 argument is numeric. Explain better in the doc string what the
4084 function really does.
4085 (texinfo-insert-master-menu-list): Improve the error message
4086 displayed if there's no menu in the Top node.
4087 (Bug#2975) See also this thread:
e5d84bfe
EZ
4088 http://lists.gnu.org/archive/html/emacs-devel/2011-12/msg00156.html.
4089
1d84e9bb
MG
40902011-12-09 Manuel Gómez <mgrojo@gmail.com> (tiny change)
4091
4092 * speedbar.el (speedbar-supported-extension-expressions):
4093 Add .adb and .ads, commonly used for Ada source code (bug#10256).
4094
382c953b
JB
40952011-12-09 Juanma Barranquero <lekktu@gmail.com>
4096
4097 * printing.el (pr-mode-alist):
4098 * simple.el (filter-buffer-substring-functions)
4099 (completion-list-insert-choice-function):
4100 * window.el (window-with-parameter, window-atom-root)
4101 (window-sides-slots, window-size-fixed, window-min-delta)
4102 (window-max-delta, window--resize-mini-window)
4103 (window--resize-child-windows-normal, window-tree)
4104 (delete-other-windows, quit-window, split-window)
4105 (display-buffer-record-window, special-display-buffer-names)
4106 (special-display-regexps, special-display-popup-frame)
4107 (same-window-p, split-window-sensibly)
4108 (display-buffer-overriding-action, display-buffer-alist)
4109 (display-buffer-base-action, display-buffer, switch-to-buffer)
4110 (switch-to-buffer-other-window, switch-to-buffer-other-frame)
4111 (fit-window-to-buffer, recenter-positions)
4112 (mouse-autoselect-window-state, mouse-autoselect-window-select):
4113 * emacs-lisp/syntax.el (syntax-propertize-function): Fix typos
4114 and remove unneeded backslashes in docstrings.
4115
39c9faef
SM
41162011-12-08 Stefan Monnier <monnier@iro.umontreal.ca>
4117
98449af8
SM
4118 * emacs-lisp/lisp-mode.el (defmethod): Add doc-string-elt (bug#10244).
4119
39c9faef
SM
4120 * pcmpl-gnu.el: Don't fail when there is no Makefile nor -f arg.
4121 (pcmpl-gnu-makefile-regexps): Accept "makefile" as well as files that
4122 end in ".mk".
4123 (pcmpl-gnu-make-rule-names): Check "makefile" and ignore errors
4124 when reading the makefile (bug#10116).
4125
86ed9fdc
SM
41262011-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
4127
4128 * pcmpl-gnu.el (pcomplete/make): Also allow filename arguments
4129 (bug#10116).
4130
5580f89d
GM
41312011-12-06 Glenn Morris <rgm@gnu.org>
4132
4133 * emacs-lisp/package.el (package-archives): Doc fix re riskiness.
4134
28d3917c
CY
41352011-12-06 Chong Yidong <cyd@gnu.org>
4136
4137 * progmodes/cc-fonts.el (c-annotation-face): Use defface.
4138
a98edce9
JB
41392011-12-06 Juanma Barranquero <lekktu@gmail.com>
4140
4141 * textmodes/table.el (table-shorten-cell): Fix typo.
4142
e65adfac
CG
41432011-12-05 Christopher Genovese <genovese.cr@gmail.com> (tiny change)
4144
4145 * emacs-lisp/assoc.el (aput): Fix return value (bug#10146)
4146
71cc0b74
EZ
41472011-12-05 Eli Zaretskii <eliz@gnu.org>
4148
4149 * descr-text.el (describe-char): Fix display of strong
4150 right-to-left characters and directional embeddings and overrides.
4151
4152 * simple.el (what-cursor-position): Fix display of codepoints of
4153 strong right-to-left characters.
4154
315bc30d
CY
41552011-12-05 Chong Yidong <cyd@gnu.org>
4156
4157 * faces.el (read-color): Doc fix.
4158
58a70b94
GM
41592011-12-05 Glenn Morris <rgm@gnu.org>
4160
4161 * align.el (align--set-marker): Add doc-string.
4162 Don't try to move something that is not a marker. (Bug#10216)
4163
5158face
GM
41642011-12-04 Glenn Morris <rgm@gnu.org>
4165
4166 * calendar/appt.el (appt-add): Rewrite the interactive-spec to avoid
4167 overly zealous deletion of trailing whitespace.
4168
520fca41
JB
41692011-12-04 Juanma Barranquero <lekktu@gmail.com>
4170
4171 * server.el (server-delete-client): On Windows, do not try to delete
4172 the only terminal.
4173 (server-process-filter): On Windows, treat requests for a tty frame as
4174 if they were for a GUI frame if the running server is in GUI mode.
4175
5e605a2e
GM
41762011-12-03 Glenn Morris <rgm@gnu.org>
4177
4178 * textmodes/texinfmt.el (batch-texinfo-format): Doc fix. (Bug#10207)
4179
5c3fe83f
SM
41802011-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
4181
6f5e57e7
SM
4182 * electric.el: Streamline electric-indent's hook.
4183 (electric-indent-chars): Revert to simple list.
4184 (electric-indent-functions): New var.
4185 (electric-indent-post-self-insert-function): Use it.
4186
5c3fe83f
SM
4187 * progmodes/prolog.el (prolog-find-value-by-system): Avoid error when
4188 there's no inferior buffer (bug#10196).
4189 (prolog-consult-compile): Don't use toggle-read-only.
4190
6bdac736
MA
41912011-12-02 Michael Albinus <michael.albinus@gmx.de>
4192
4193 * net/tramp-sh.el (tramp-maybe-open-connection): Handle user
4194 interrupt. (Bug#10187)
4195
6131ba7f
SM
41962011-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
4197
99c79fee
SM
4198 * pcmpl-gnu.el (pcomplete/tar): large-file-warn-threshold can be nil
4199 (bug#9160).
4200
6131ba7f
SM
4201 * dired-aux.el (dired-query): Don't assume help-char is modifier-free
4202 (bug#10191).
4203
cb0a02ea
JL
42042011-12-02 Juri Linkov <juri@jurta.org>
4205
4206 * info.el (Info-search): Display "end of manual" when Isearch
4207 reaches the end of single-file Info manual. (Bug#9918)
4208
66e0570c
EZ
42092011-12-02 Eli Zaretskii <eliz@gnu.org>
4210
4211 * isearch.el (isearch-message-prefix): Run the input method part
4212 of the prompt through bidi-string-mark-left-to-right. (Bug#10183)
4213
02b16839
JL
42142011-12-02 Juri Linkov <juri@jurta.org>
4215
4216 * isearch.el (isearch-occur): Use `word-search-regexp' for
4217 `isearch-word'.
4218 (isearch-search-and-update): Add condition for `isearch-word' and
4219 call `word-search-regexp'. (Bug#10145)
4220
0b950688
GM
42212011-12-01 Glenn Morris <rgm@gnu.org>
4222
4223 * eshell/em-hist.el (eshell-hist-initialize):
4224 Handle eshell-history-size nil and HISTSIZE set or unset.
e8087a76 4225 (eshell-history-file-name, eshell-history-size): Fix custom type.
0b950688 4226
9505c3c7
SM
42272011-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
4228
4229 * man.el (Man-completion-table): Fix the lambda case (bug#10168).
4230
1bbe96b2 42312011-12-01 Michael McNamara <mac@mail.brushroad.com>
6288f0ca 4232
a1beca85
SM
4233 * progmodes/verilog-mode.el (verilog-pretty-expr):
4234 Rework verilog-pretty-expr to handle new assignment operators in system
6288f0ca
WS
4235 verilog, such as += *= and the like.
4236 (verilog-assignment-operator-re): Regular expression to find the
4237 assigment operator in a verilog assignment.
4238 (verilog-assignment-operation-re): Regular expression to find an
4239 assignment statement for pretty-expr.
4240 (verilog-in-attribute-p): Query returns true if point is in an
4241 attribute context; used to skip these for expression line up from
4242 pretty-expr.
4243 (verilog-in-parameter-p): Query returns true if point is in an
4244 parameter definition context; used to skip these for expression
4245 line up from pretty-expr.
4246 (verilog-in-parenthesis-p): Query returns true if point is in a
4247 parenthetical expression, specifically ( ) but not [ ] or { };
4248 used by pretty-expr.
4249 (verilog-just-one-space): If there is no space, don't add one.
4250 (verilog-get-lineup-indent-2): Specifically skip just attribute
4251 contexts for expression lineup, rather than skipping all
4252 parenthetical expressions.
4253 (verilog-calculate-indent): Fix comment, and fix indent.
4254 (verilog-do-indent): Indent declarations in lists (suggested by
4255 Joachim Lechner).
4256 (verilog-mode-abbrev-table): Populate abbrev mode with the various
4257 skeleton items.
4258 (verilog-sk-ovm-class): Add skeleton for OVM classes (reported
4259 by Alain Mellan).
4260
1bbe96b2 42612011-12-01 Wilson Snyder <wsnyder@wsnyder.org>
6288f0ca
WS
4262
4263 * progmodes/verilog-mode.el (verilog-read-defines): Fix reading
4264 parameters with embedded comments. Reported by Ray Stevens.
4265 (verilog-calc-1, verilog-fork-wait-re) (verilog-forward-sexp,
4266 verilog-wait-fork-re): Fix indentation of "wait fork", bug407.
4267 Reported by Tim Holt.
4268 (verilog-auto): Fix AUTOing a upper module then AUTOing module
4269 instantiated by upper module causing wrong expansion until AUTOed a
4270 second time. Reported by K C Buckenmaier.
4271 (verilog-diff-auto): Fix showing .* as a difference when
4272 `verilog-auto-star-save' off. Reported by Dan Dever.
4273 (verilog-auto-reset, verilog-read-always-signals)
4274 (verilog-auto-reset-blocking-in-non): Fix AUTORESET including
4275 temporary signals in reset list if
4276 verilog-auto-reset-blocking-in-non is nil, and match assignment
a1beca85
SM
4277 style to each signal's assignment type, bug381.
4278 Reported by Thomas Esposito.
6288f0ca
WS
4279 (verilog-sk-uvm-class, verilog-uvm-begin-re, verilog-uvm-end-re)
4280 (verilog-uvm-statement-re): Support UVM indentation and
4281 highlighting, with old OVM keywords only.
a1beca85 4282 (verilog-auto-tieoff, verilog-auto-tieoff-declaration):
1d00653d
SM
4283 Support AUTOTIEOFF creating non-wire data types.
4284 Suggested by Jonathan Greenlaw.
6288f0ca
WS
4285 (verilog-auto-insert-lisp, verilog-delete-to-paren)
4286 (verilog-forward-sexp-cmt, verilog-forward-sexp-ign-cmt)
4287 (verilog-inject-sense, verilog-read-inst-pins)
a1beca85
SM
4288 (verilog-read-sub-decls, verilog-read-sub-decls-line):
4289 Fix mismatching parenthesis inside commented out code when deleting
382c953b 4290 AUTOINST, bug383. Reported by Jonathan Greenlaw.
6288f0ca
WS
4291 (verilog-auto-ascii-enum): Fix AUTOASCIIENUM one-hot with
4292 non-numeric vector width. Reported by Alex Reed.
4293 (verilog-auto-ascii-enum): Add "onehot" option to work around not
382c953b 4294 detecting signals with parameter widths. Reported by Alex Reed.
a1beca85
SM
4295 (verilog-auto-delete-trailing-whitespace):
4296 With `verilog-auto-delete-trailing-whitespace' remove trailing
6288f0ca
WS
4297 whitespace in auto expansion, bug371. Reported by Brad Dobbie.
4298 (verilog-run-hooks, verilog-scan-cache-flush, verilog-syntax-ppss):
4299 Fix verilog-scan-cache corruption when running user AUTO expansion
4300 hooks that call indentation routines.
4301 (verilog-simplify-range-expression): Fix typo ignoring lower case
4302 identifiers.
4303 (verilog-delete-auto): Fix delete-autos to also remove user created
4304 automatics, as long as they start with AUTO.
4305 (verilog-batch-diff-auto, verilog-diff-auto)
4306 (verilog-diff-function): Add `verilog-diff-auto' and bind to
4307 "C-c?" to report differences in AUTO expansion, ignoring spaces.
4308 (verilog-backward-syntactic-ws-quick, verilog-beg-of-defun-quick)
4309 (verilog-in-paren-quick, verilog-re-search-backward-quick)
a1beca85
SM
4310 (verilog-re-search-forward-quick, verilog-syntax-ppss):
4311 Fix calling `syntax-ppss' when inside auto expansions as the ppss hook
6288f0ca
WS
4312 is disabled and its cache will get corrupt, causing AUTOS not to
4313 expand. Instead use only -quick functions.
4314 (verilog-scan-region): Fix scanning over escaped quotes.
4315 (verilog-inside-comment-or-string-p, verilog-inside-comment-p)
4316 (verilog-re-search-backward-quick)
4317 (verilog-re-search-forward-quick, verilog-scan): verilog-scan and
4318 related functions now ignore strings, to fix misparsing of strings
4319 with magic comments embedded in them.
a1beca85
SM
4320 (verilog-read-auto-template):
4321 Fix 'verilog-auto-inst-template-numbers' with extra newline before (.
4322 Reported by Brad Dobbie.
4323 (verilog-read-auto-template):
4324 Fix 'verilog-auto-inst-template-numbers' with comments.
6288f0ca 4325 Reported by Brad Dobbie.
6288f0ca
WS
4326 (verilog-auto-inst, verilog-auto-inst-param)
4327 (verilog-auto-inst-sort): Add 'verilog-auto-inst-sort' to reduce
4328 merge conflicts with AUTOINST, bug358. Reported by Brad Dobbie.
4329 (verilog-auto-inst-template-numbers): Add 'lhs' policy for
a1beca85
SM
4330 debugging templates without merge conflicts, bug357.
4331 Reported by Brad Dobbie.
4332 (verilog-read-auto-template):
4333 Fix verilog-auto-inst-template-numbers with multiple templates.
6288f0ca
WS
4334 Reported by Brad Dobbie.
4335 (verilog-define-abbrev): Fix verilog-mode abbrevs to be system
4336 abbrevs so user won't be asked to save.
4337 (verilog-read-auto-lisp-present): Fix to start at beginning of
4338 buffer in case called outside of verilog-auto.
4339 (verilog-simplify-range-expression): Fix AUTOWIRE expanding "X-1+1"
4340 to "X-2". Reported by Matthew Myers.
4341 (verilog-auto, verilog-auto-inout-in): Add AUTOINOUTIN for creating
4342 all inputs from module templates. Reported by Leith Johnson.
4343 (verilog-module-inside-filename-p): Fix locating programs as with
4344 modules.
4345 (verilog-auto-inst-port): Fix vl-width expressions when using
4346 verilog-auto-inst-param-value, bug331. Reported by Julian Gorfajn.
4347 (verilog-decls-get-regs, verilog-decls-get-signals,
4348 verilog-decls-get-vars, verilog-decls-get-wires, verilog-decls-new,
4349 verilog-modi-cache-add-vars, verilog-modi-cache-add-wires,
4350 verilog-read-decls): Combine reg and wire structures into one var
4351 structure to represent SystemVerilog concepts.
4352 (verilog-auto-ascii-enum, verilog-auto-logic, verilog-auto-reg)
4353 (verilog-auto-reg-input, verilog-auto-tieoff, verilog-auto-wire)
a1beca85
SM
4354 (verilog-auto-wire-type, verilog-insert-definition):
4355 Add verilog-auto-wire-type and AUTOLOGIC to support using
6288f0ca
WS
4356 SystemVerilog "logic" keyword instead of "wire"/"reg".
4357 (verilog-auto-reg-input, verilog-decls-get-signals): Fix AUTOWIRE
4358 to declares outputs that also have assignments (presumably in an
a1beca85
SM
4359 ifdef or generate if so there's not a driver conflict).
4360 Reported by Matthew Myers.
4361 (verilog-auto-declare-nettype, verilog-insert-definition):
4362 Add verilog-auto-declare-nettype to fix declarations using
6288f0ca
WS
4363 `default_nettype none. Reported by Julian Gorfajn.
4364 (verilog-read-always-signals-recurse, verilog-read-decls)
4365 (verilog-read-sub-decls-gate): Fix infinite loop with (*) and
4366 malformed end statement, bug325. Reported by Joshua Wise and
4367 Andrew Drake.
4368 (verilog-auto-star-safe, verilog-delete-auto-star-implicit)
4369 (verilog-inst-comment-re): Fix not deleting Interfaced comment
1d00653d
SM
4370 when expanding .* in interfaces, bug320.
4371 Reported by Pierre-David Pfister.
6288f0ca 4372 (verilog-read-module-name): Fix import statements between module
1d00653d
SM
4373 name and open parenthesis, bug317.
4374 Reported by Pierre-David Pfister.
6288f0ca
WS
4375 (verilog-simplify-range-expression): Fix simplification of
4376 multiplications inside AUTOWIRE connections, bug303.
4377 (verilog-auto-inst-port): Support parameter expansion in
4378 multidimensional arrays.
4379 (verilog-read-decls): Fix AUTOREG etc looking for "endproperty"
4380 after "assert property". Reported by Julian Gorfajn.
4381 (verilog-simplify-range-expression): Fix "couldn't merge" errors
4382 with multiplication, bug303.
4383 (verilog-read-decls): Fix parsing of unsigned data types, bug302.
4384 Reported by Jan Frode Lonnum.
4385
1bbe96b2
GM
43862011-11-30 Juanma Barranquero <lekktu@gmail.com>
4387
4388 * htmlfontify.el (hfy-page-header, hfy-post-html-hooks)
4389 (hfy-shell-file-name, hfy-shell):
4390 * international/fontset.el (x-decompose-font-name): Fix typos.
4391
43922011-11-29 Ken Brown <kbrown@cornell.edu>
4393
4394 * progmodes/gdb-mi.el: Fix bug#9853, bug#9858, and bug#9878.
4395 (gdb-version): Remove defvar.
4396 (gdb-supports-non-stop): New defvar, replacing `gdb-version'.
4397 (gdb-gud-context-command, gdb-non-stop-handler)
4398 (gdb-current-context-command, gdb-stopped): Use it.
4399 (gdb-init-1): Enable pretty printing here.
6131ba7f
SM
4400 (gdb-non-stop-handler): Don't enable pretty-printing here.
4401 Check to see if the target supports non-stop mode; if not, turn off
1bbe96b2
GM
4402 non-stop mode. Use the following.
4403 (gdb-check-target-async): New defun.
4404 (gud-watch, gdb-stopped): Fix whitespace.
4405 (gdb-get-source-file): Don't try to display the source file if
4406 `gdb-main-file' is nil.
4407
44082011-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
4409
4410 * align.el: Try to generate fewer markers (bug#10047).
4411 (align--set-marker): New macro.
4412 (align-region): Use it.
4413
c935221f
SM
44142011-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
4415
4416 * isearch.el (isearch-yank-x-selection): Deactivate mark (bug#10022).
4417
e70b5064
CY
44182011-11-29 Chong Yidong <cyd@gnu.org>
4419
4420 * indent.el (indent-for-tab-command, indent-according-to-mode):
4421 Doc fix.
4422 (indent-region): Doc fix. Switch nested ifs to equivalent cond.
4423
f3af92b7
MA
44242011-11-29 Michael Albinus <michael.albinus@gmx.de>
4425
4426 * vc/diff-mode.el (diff-find-file-name): Make `read-file-name'
4427 aware of remote file names. (Bug#10124)
4428
ed472be9
CY
44292011-11-29 Chong Yidong <cyd@gnu.org>
4430
4431 * frame.el (auto-raise-mode, auto-lower-mode): Doc fix.
4432
24510c22
SM
44332011-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
4434
4435 * files.el (find-file): Don't use force-same-window (bug#10144).
4436 * window.el (switch-to-buffer): Better match Emacs-23 behavior and only
4437 use pop-to-buffer if the selected window can't be used.
4438 (pop-to-buffer-same-window): Use display-buffer--same-window-action.
4439
c60c3703
EZ
44402011-11-28 Eli Zaretskii <eliz@gnu.org>
4441
4442 * vc/diff-mode.el (diff-mode-map): Don't inherit 'z' => 'M-z' from
4443 special-mode-map.
4444
e95def75
CY
44452011-11-28 Chong Yidong <cyd@gnu.org>
4446
4447 * emacs-lisp/easy-mmode.el (define-minor-mode): Fix default doc.
4448
c3f1c606
NR
44492011-11-27 Nick Roberts <nickrob@snap.net.nz>
4450
4451 * progmodes/gdb-mi.el (gdb-init-1): Condition execution of
4452 gdb-get-source-file-list on gdb-create-source-file-list.
4453
00db469c
EZ
44542011-11-26 Eli Zaretskii <eliz@gnu.org>
4455
4456 * whitespace.el (whitespace-newline): Use a different foreground
4457 color for 16-color light-background displays.
4458
4ad3bc2a
CY
44592011-11-24 Chong Yidong <cyd@gnu.org>
4460
4461 * window.el (display-buffer--special-action): Doc fix.
4462
e9fce1ac
JB
44632011-11-25 Juanma Barranquero <lekktu@gmail.com>
4464
4465 * emacs-lisp/avl-tree.el (avl-tree--do-copy, avl-tree-create)
4466 (avl-tree-compare-function, avl-tree-empty, avl-tree-enter)
4467 (avl-tree-delete, avl-tree-member, avl-tree-member-p, avl-tree-map)
4468 (avl-tree-mapc, avl-tree-mapf, avl-tree-mapcar, avl-tree-copy)
4469 (avl-tree-clear, avl-tree-stack, avl-tree-stack-pop)
4470 (avl-tree-stack-first):
4471 * emacs-lisp/cconv.el (cconv--analyse-use):
4472 * net/gnutls.el (gnutls-negotiate): Fix typos.
4473
cb825e5d
GM
44742011-11-24 Glenn Morris <rgm@gnu.org>
4475
3adbe224
GM
4476 * lpr.el (lpr-windows-system, lpr-lp-system):
4477 * mail/binhex.el (binhex-begin-line):
4478 * progmodes/grep.el (grep-history, grep-find-history):
4479 * textmodes/flyspell.el:
4480 * vc/pcvs-defs.el (cvs-global-menu):
4481 * vc/vc-bzr.el (vc-bzr-admin-checkout-format-file):
4482 * vc/vc-mtn.el (vc-mtn-admin-dir, vc-mtn-admin-format):
4483 * vc/vc-cvs.el (vc-cvs-registered): Give them basic doc-strings.
4484
321decc8
GM
4485 * net/tls.el: Fix case of "GnuTLS".
4486
420b63ad
GM
4487 * paths.el (rmail-file-name): Format doc-string for make-docfile.
4488
cb825e5d
GM
4489 * version.el (emacs-build-system): Give it a doc-string.
4490
a0649f08
JL
44912011-11-24 Juri Linkov <juri@jurta.org>
4492
4493 * view.el (view-buffer): Revert 2011-07-19T15:01:49Z!larsi@gnus.org from 2011-07-19 (bug#8615).
4494
c0bc0fd4
GM
44952011-11-24 Glenn Morris <rgm@gnu.org>
4496
4497 * mail/rmailmm.el (rmail-mime): When rmail-enable-mime is non-nil,
4498 if called on a non-mime message just toggle the headers. (Bug#8006)
4499
20db1522
JB
45002011-11-24 Juanma Barranquero <lekktu@gmail.com>
4501
4502 * allout.el (allout-setup, allout-auto-save-temporarily-disabled)
4503 (allout-lead-with-comment-string, allout-structure-deleted-hook)
4504 (allout-mode, allout-chart-subtree, allout-hotspot-key-handler)
4505 (allout-rebullet-heading, allout-open-sibtopic)
4506 (allout-toggle-current-subtree-encryption)
4507 (allout-toggle-subtree-encryption, allout-encrypt-string)
4508 (allout-next-topic-pending-encryption, allout-adjust-file-variable)
4509 (allout-distinctive-bullets-string, allout-auto-activation):
4510 * window.el (window-normalize-buffer-to-display):
4511 * progmodes/verilog-mode.el (verilog-batch-indent):
4512 * textmodes/bibtex.el (bibtex-field-braces-opt)
4513 (bibtex-field-strings-opt):
4514 * vc/cvs-status.el (cvs-tree-merge):
4515 Fix typos.
4516
7262a87c
MA
45172011-11-23 Michael Albinus <michael.albinus@gmx.de>
4518
4519 * rfn-eshadow.el (rfn-eshadow-update-overlay): Let-bind
4520 `non-essential' to t, in order to avoid remote connections.
4521
283430a1
EZ
45222011-11-23 Eli Zaretskii <eliz@gnu.org>
4523
a1beca85
SM
4524 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
4525 On MS-DOS and MS-Windows, compare with loaddefs.el
283430a1
EZ
4526 case-insensitively.
4527
d2992a38
ML
45282011-11-23 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
4529
4530 * mail/unrmail.el (unrmail): Always add blank line. (Bug#7743)
4531
50419064
GM
45322011-11-23 Glenn Morris <rgm@gnu.org>
4533
da94eca1
GM
4534 * paths.el (rmail-file-name): Reformat the doc-string so that it
4535 is picked up.
4536
9aac4de2
GM
4537 * mail/rmail.el (rmail-message-filter, rmail-auto-file): Doc fixes.
4538 (rmail-auto-file): Ignore case in the "special" field names,
4539 as mail-fetch-field does for all others.
4540
8038d2d2
GM
4541 * mail/rmail.el (rmail-forward):
4542 * mail/rmailkwd.el (rmail-set-label):
4543 * mail/rmailout.el (rmail-output, rmail-output-as-seen)
4544 (rmail-output-body-to-file): Give error if no message. (Bug#10082)
4545
f3fe222a
GM
4546 * mail/rmail.el (rmail-current-message): Doc fix.
4547
50419064
GM
4548 * mail/rmail.el (rmail-message-filter): Mark as obsolete. (Bug#2624)
4549
28109f49
SM
45502011-11-22 Stefan Monnier <monnier@iro.umontreal.ca>
4551
4552 * server.el (server-eval-and-print): Allow C-g (bug#6585).
4553
394c65f1
GM
45542011-11-22 Glenn Morris <rgm@gnu.org>
4555
4556 * mail/rmailmm.el (test-rmail-mime-handler)
4557 (test-rmail-mime-bulk-handler)
4558 (test-rmail-mime-multipart-handler): Move tests to test/ directory.
4559
f2a0aa3a
JL
45602011-11-21 Juri Linkov <juri@jurta.org>
4561
1154d12e
JB
4562 * calc/calc.el (calc-read-key-sequence):
4563 Let-bind `input-method-function' to nil. (Bug#10018)
f2a0aa3a 4564
9c34a344
LMI
45652011-11-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
4566
4567 * emacs-lisp/cl-indent.el (common-lisp-loop-part-indentation):
4568 Tell the caller that the next line needs recomputation, even
4569 though it doesn't start a sexp (bug#10094).
4570
f04a3be9
SM
45712011-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
4572
4573 * emacs-lisp/autoload.el (autoload-generate-file-autoloads): Simplify.
4574
7978747f
SM
45752011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
4576
f04a3be9
SM
4577 * vc/pcvs-util.el (cvs-pop-to-buffer-same-frame):
4578 Use force-same-window.
7978747f 4579
fe7a3057
JB
45802011-11-20 Juanma Barranquero <lekktu@gmail.com>
4581
4582 * descr-text.el (describe-char-unicode-data):
4583 * json.el (json-string-escape):
4584 * mail/footnote.el (footnote-unicode-string, footnote-unicode-regexp)
4585 (Footnote-unicode, Footnote-style-p):
4586 * net/ntlm.el (ntlm-get-password-hashes): Fix typos.
4587
24901d61
CY
45882011-11-20 Chong Yidong <cyd@gnu.org>
4589
4590 * window.el (replace-buffer-in-windows): Restore interactive spec.
4591
bac7ff22
SM
45922011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
4593
24f3d7b9
SM
4594 * electric.el (electric-indent-mode): Fix last change (too optimistic).
4595
bac7ff22
SM
4596 * emacs-lisp/bytecomp.el: Silence obsolete warnings more reliably.
4597 (byte-compile-global-not-obsolete-vars): New var.
4598 (byte-compile-check-variable, byte-compile-make-obsolete-variable):
4599 Use it.
4600 (byte-compile-warn-obsolete): Align text with the one in *Help*.
4601
cd1181db
JB
46022011-11-20 Juanma Barranquero <lekktu@gmail.com>
4603
4604 * progmodes/cwarn.el (cwarn-is-enabled, cwarn-font-lock-keywords):
4605 * progmodes/pascal.el (electric-pascal-equal):
4606 * textmodes/reftex-dcr.el (reftex-view-crossref-from-bibtex):
4607 * xml.el (xml-substitute-special): Fix typos.
4608
7fb18e9e
GM
46092011-11-20 Glenn Morris <rgm@gnu.org>
4610
4611 * mail/rmail.el (rmail-enable-mime-composing): Make it a defcustom.
4612 (rmail-insert-mime-forwarded-message-function, rmail-mime-feature):
4613 Doc fixes.
4614 (rmail-decode-mime-charset): Mark as obsolete.
4615
4616 * mail/rmailsum.el (rmail-message-regexp-p-1):
4617 * mail/rmail.el (rmail-search-message, rmail-forward, rmail-resend):
4618 Before using mime functions, check they are set. (Bug#10077)
4619
d5a6b3ba
JL
46202011-11-19 Juri Linkov <juri@jurta.org>
4621
4622 * info.el (Info-finder-find-node): Use `package--builtins' instead
4623 of `package-alist'. Use node names formed by the pattern "Keyword "
4624 and the keyword name.
4625
e981b61f
AS
46262011-11-19 Andreas Schwab <schwab@linux-m68k.org>
4627
1d00653d 4628 * progmodes/sh-script.el (sh-assignment-regexp): Add entry for bash.
e981b61f 4629
3ffbc301
JL
46302011-11-19 Juri Linkov <juri@jurta.org>
4631
4632 * info.el (Info-hide-note-references): Add `:set' tag to `defcustom'
4633 that calls `revert-buffer' on all Info buffers. (Bug#9915)
4634 (Info-revert-find-node): Remove let-bindings `old-buffer-name',
4635 `old-history', `old-history-forward'. Add let-binding
4636 `window-selected'. Remove calls to `kill-buffer',
4637 `switch-to-buffer' and `Info-mode'. Set `Info-current-file' to nil
4638 before calling `Info-find-node', so `Info-find-node-2' will reread
4639 the Info file. Restore window positions only when `window-selected'
4640 is non-nil.
4641
30c62133
JL
46422011-11-19 Juri Linkov <juri@jurta.org>
4643
4644 * isearch.el (isearch-lazy-highlight-new-loop):
4645 Remove condition `(not isearch-error)'. (Bug#9918)
4646
4647 * misearch.el (multi-isearch-search-fun): Add condition
4648 `(not bound)' to ignore lazy-highlighting search.
4649 Add the search-failed message "end of multi" when the end of
4650 multi-sequence is reached. Uncapitalize the search-failed
4651 message "Repeat for next buffer".
4652
4653 * info.el (Info-search): Add the search-failed message
4654 "end of the manual" when the end of the manual is reached
4655 in Isearch mode.
4656
645ca9cf
JL
46572011-11-19 Juri Linkov <juri@jurta.org>
4658
4659 * info.el (Info-find-node-2, Info-select-node, Info-history-find-node):
4660 Use non-destructive `remove' instead of `delete' because
4661 `Info-history-list' stored to `Info-isearch-initial-history-list' in
4662 `Info-isearch-start' might need to be restored in `Info-isearch-end'.
4663
df754f66
JL
46642011-11-19 Juri Linkov <juri@jurta.org>
4665
4666 * isearch.el (isearch-edit-string): Let-bind `history-add-new-input'
4667 to nil instead of binding `search-ring' and `regexp-search-ring'.
4668 (Bug#9185)
4669
0e23d96a
EZ
46702011-11-19 Eli Zaretskii <eliz@gnu.org>
4671
4672 * simple.el (line-move): Force movement by logical lines for any
4673 hscrolled window, not only when auto-hscroll-mode is on.
4674 (line-move-visual): Update doc string to that effect. (Bug#10076)
4675
8a6ccb66
AS
46762011-11-19 Andreas Schwab <schwab@linux-m68k.org>
4677
4678 * language/european.el (macintosh): Define as alias for mac-roman.
4679
49ae5b39
EZ
46802011-11-19 Eli Zaretskii <eliz@gnu.org>
4681
4682 * mail/rmailmm.el (rmail-mime-display-header)
4683 (rmail-mime-display-tagline, rmail-mime-display-body): New defsubsts.
4684 (rmail-mime-entity-segment, rmail-mime-toggle-raw)
4685 (rmail-mime-toggle-hidden, rmail-mime-insert-text)
4686 (rmail-mime-insert-bulk, rmail-mime-insert-multipart)
4687 (rmail-mime-insert, rmail-mime-insert-tagline): Use them instead
4688 of a raw aref.
4689 (rmail-mime-entity-segment): To get past the tagline, move forward
4690 2 more lines, to account for the 2 empty lines that precede and
4691 follow the line with the buttons.
4692 (rmail-mime-update-tagline): Move one more line, to get past the
4693 empty line that follows the buttons in the tagline. (Bug#9520)
4694
c56cad4a
MR
46952011-11-19 Martin Rudalics <rudalics@gmx.at>
4696
4697 * window.el (window-max-delta-1, window-min-delta-1)
4698 (window-min-size-1, window-state-get-1, window-state-put-1)
4699 (window-state-put-2): Use "window--" prefix.
4700
cbe71af3
SM
47012011-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
4702
2ad52c60
SM
4703 * emacs-lisp/smie.el: Improve warnings and conflict detection.
4704 (smie-warning-count): New var.
4705 (smie-set-prec2tab): Use it.
4706 (smie-bnf->prec2): Improve warnings. Add docstring.
4707 (smie-bnf--closer-alist): Rename from smie-bnf-closer-alist.
4708 (smie-bnf--set-class): New function.
4709 (smie-bnf--classify): Rename from smie-bnf-classify. Rewrite to fix
4710 corner case.
4711
6944dbc1
SM
4712 * progmodes/compile.el: Obey compilation-first-column in dest buffer.
4713 (compilation-error-properties, compilation-move-to-column):
4714 Handle compilation-first-column while in the target buffer.
4715
c400c4d7
SM
4716 * progmodes/cc-engine.el (c-remove-stale-state-cache-backwards):
4717 Don't hardcode point-min==1.
4718
6dbe3e96
SM
4719 * eshell/esh-cmd.el (eshell-do-eval): Handle `setq' (bug#9907).
4720 (eshell-rewrite-for-command): Remove workaround.
4721 (eshell-do-pipelines, eshell-do-pipelines-synchronously)
4722 (eshell-do-eval, eshell-exec-lisp): Avoid gratuitous setq.
4723 * eshell/esh-util.el (eshell-condition-case, eshell-for): Use declare.
4724
cbe71af3
SM
4725 * files-x.el (modify-file-local-variable): Obey commenting conventions.
4726
a8e1496d
GM
47272011-11-17 Glenn Morris <rgm@gnu.org>
4728
4729 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
4730 Ignore buffer-local generated-autoload-file if it is the same
4731 as the global value. (Bug#10049)
4732
df85d315
JB
47332011-11-17 Juanma Barranquero <lekktu@gmail.com>
4734
4735 * textmodes/reftex-toc.el (reftex-toc-return-marker, reftex-toc-help)
4736 (reftex-toc, reftex-toc, reftex-toc-dframe-p, reftex-toc-next-heading)
4737 (reftex-toc-previous-heading, reftex-toc-max-level)
4738 (reftex-toc-goto-line-and-hide, reftex-toc-show-calling-point)
4739 (reftex-toc-quit, reftex-toc-revert, reftex-toc-jump)
4740 (reftex-toc-do-promote, reftex-toc-promote-prepare)
4741 (reftex-toc-promote-action, reftex-toc-extract-section-number)
4742 (reftex-toc-load-all-files-for-promotion, reftex-toc-rename-label)
4743 (reftex-toc-rename-label, reftex-toc-visit-location)
4744 (reftex-toc-visit-location, reftex-toggle-auto-toc-recenter)
4745 (reftex-toggle-auto-toc-recenter, reftex-toggle-auto-toc-recenter)
4746 (reftex-make-separate-toc-frame): Fix typos, and use TOC consistently,
4747 leaving "*toc*" only for references to the buffer.
4748
a0c2d0ae
MR
47492011-11-17 Martin Rudalics <rudalics@gmx.at>
4750
4751 * window.el (window-resize, delete-window, split-window):
4752 Replace window-splits by window-combination-resize.
1d00653d 4753 * cus-start.el (window-splits): Replace by window-combination-resize.
a0c2d0ae 4754
35c0bac8
GM
47552011-11-17 Glenn Morris <rgm@gnu.org>
4756
4757 * progmodes/sh-script.el (sh-font-lock-keywords-var):
4758 Make bash entry derive from sh entry, not shell entry.
4759
d0c8fc8a
MA
47602011-11-16 Michael Albinus <michael.albinus@gmx.de>
4761
d0c8fc8a
MA
4762 * net/tramp-cache.el (tramp-flush-file-property): Flush also
4763 properties of linked files. (Bug#9879)
4764
7262a87c
MA
4765 * net/tramp-sh.el (tramp-sh-handle-file-truename): Cache only the
4766 local file name.
4767
7877f373
JB
47682011-11-16 Juanma Barranquero <lekktu@gmail.com>
4769
4770 * menu-bar.el (menu-bar-file-menu):
4771 * printing.el (pr-ps-utility):
4772 * calendar/icalendar.el (icalendar, icalendar--convert-tz-offset)
4773 (icalendar--convert-to-ical, icalendar--convert-ordinary-to-ical)
4774 (icalendar--convert-weekly-to-ical, icalendar--convert-yearly-to-ical)
4775 (icalendar--convert-sexp-to-ical, icalendar--convert-block-to-ical)
4776 (icalendar--convert-float-to-ical, icalendar--convert-date-to-ical)
4777 (icalendar--convert-cyclic-to-ical)
4778 (icalendar--convert-anniversary-to-ical, icalendar-import-buffer)
4779 (icalendar--convert-ical-to-diary)
4780 (icalendar--convert-recurring-to-diary)
4781 (icalendar--convert-non-recurring-all-day-to-diary)
4782 (icalendar-import-format-sample):
4783 * progmodes/idlw-shell.el (idlwave-shell-mode):
4784 * progmodes/vhdl-mode.el (vhdl-mode, vhdl-print-two-column)
4785 (vhdl-print-customize-faces, vhdl-mode, vhdl-ps-print-settings)
4786 (vhdl-ps-print-init): Fix typos.
4787
10649b82
KM
47882011-11-16 Ken Manheimer <ken.manheimer@gmail.com>
4789
9d0cfcd6
GM
4790 * allout.el, allout-widgets.el (file metadata): Attribute copyright to
4791 FSF and collapse date sequence, obscure author/maintainer email address
4792 better, remove extra version line, track relocation of author's webpage.
10649b82 4793
9d0cfcd6
GM
4794 * progmodes/python.el (python-pdbtrack-input-prompt)
4795 (python-pdbtrack-track-stack-file): Adjust to recognize ipdb as well as
4796 regular python pdb prompts. Adjustments shamelessly taken exactly as
4797 suggested in EmacsWiki page (tiny change):
4798 http://www.emacswiki.org/PythonProgrammingInEmacs#toc14
8642c216 4799
58179cce
JB
48002011-11-16 Juanma Barranquero <lekktu@gmail.com>
4801
4802 * expand.el (expand-pos, expand-index, expand-point):
4803 Remove redundant info from docstring.
4804 (expand-add-abbrevs): Doc fix.
4805 (expand-c-sample-expand-list, expand-sample-lisp-mode-expand-list)
4806 (expand-sample-perl-mode-expand-list): Fix typos.
4807
4808 * net/dbus.el (dbus-event-member-name):
4809 * play/5x5.el (5x5-solve-rotate-left, 5x5-solver-output):
4810 * term/pc-win.el (msdos-create-frame-with-faces):
4811 * textmodes/texinfmt.el (texinfo-format-image): Fix typos.
4812
b6f67890
MR
48132011-11-16 Martin Rudalics <rudalics@gmx.at>
4814
4815 * window.el (split-window, window-state-get-1)
4816 (window-state-put-1, window-state-put-2): Rename occurrences of
4817 window-nest to window-combination-limit.
1d00653d 4818 * cus-start.el (window-nest): Rename to window-combination-limit.
b6f67890 4819
ce7ddba0
CY
48202011-11-16 Chong Yidong <cyd@gnu.org>
4821
4822 * progmodes/autoconf.el (autoconf-mode): Fix comment-start-skip
4823 regexp (Bug#10033).
4824
3ae704f4
SM
48252011-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
4826
4827 * tmm.el (tmm-prompt): Use minibuffer-with-setup-hook (bug#10053).
4828 `completing-read' will remove *Completions* and will preserve
4829 current-buffer for us.
4830 (tmm-add-prompt): Users of *Completions* will always (re)set its
4831 major mode.
4832 (tmm-old-comp-map): Remove.
4833
6ad1cdde
GM
48342011-11-16 Glenn Morris <rgm@gnu.org>
4835
4836 * mail/rmailedit.el: Require rmailmm when compiling.
4837 (rmail-old-mime-state): New declaration.
4838 (rmail-edit-current-message): If editing a mime message,
4839 edit the "raw" message from the mbox buffer.
4840 (rmail-cease-edit): Handle mime messages. (Bug#9840)
4841
d20faa20
GM
48422011-11-15 Glenn Morris <rgm@gnu.org>
4843
4844 * mail/rmailmm.el (rmail-mime-toggle-raw): Remove entity arg,
4845 which wasn't being used. Add optional arg to force given state.
4846 (rmail-mime): Add optional arg to force given state.
4847
c7015153
JB
48482011-11-15 Juanma Barranquero <lekktu@gmail.com>
4849
4850 * allout.el (allout-encryption-plaintext-sanitization-regexps):
4851 * frame.el (display-mm-dimensions-alist):
4852 * outline.el (outline-mode-menu-bar-map, outline-move-subtree-up)
4853 (outline-move-subtree-down):
4854 * net/newst-treeview.el (newsticker--treeview-do-get-node-of-feed)
4855 (newsticker--treeview-do-get-node):
4856 * net/quickurl.el (quickurl-list-buffer-name):
4857 * progmodes/dcl-mode.el (dcl-mode):
4858 * progmodes/gdb-mi.el (gdb-mapcar*):
4859 * progmodes/sql.el (sql-mode-oracle-font-lock-keywords): Fix typos.
4860
45261b50
GM
48612011-11-15 Glenn Morris <rgm@gnu.org>
4862
4863 * mail/rmail.el (rmail-file-coding-system): It's only ever used
4864 in a boolean sense, so just make it a boolean, and fix the doc.
4865 (rmail-show-mime-function, rmail-mime-feature)
4866 (rmail-require-mime-maybe): Doc fixes.
4867 (rmail-show-message-1): Check rmail-show-mime-function is non-nil.
4868
4869 * mail/rmailmm.el (rmail-show-mime): Doc fix.
4870
0d26e0b6
JB
48712011-11-15 Juanma Barranquero <lekktu@gmail.com>
4872
4873 * epg.el (epg-start-decrypt, epg-start-verify, epg-start-sign)
4874 (epg-start-encrypt, epg-start-export-keys, epg-start-import-keys)
4875 (epg-start-receive-keys, epg-start-delete-keys, epg-start-sign-keys)
4876 (epg-start-generate-key, epg-context-set-progress-callback): Fix typos.
4877
447f30f6
GM
48782011-11-15 Glenn Morris <rgm@gnu.org>
4879
672b871d
GM
4880 * mail/rmailmm.el (rmail-mime-entity, rmail-mime-entity-segment)
4881 (rmail-mime-shown-mode, rmail-mime-hidden-mode, rmail-mime-raw-mode)
4882 (rmail-mime-toggle-hidden, rmail-mime-insert-tagline)
4883 (rmail-mime-insert-header, rmail-mime-handle, rmail-mime-parse)
4884 (rmail-mime, rmail-show-mime): Doc fixes.
4885
f6aa5bb1
GM
4886 * term/ns-win.el (mode-line-frame-identification):
4887 Leave it alone. (Bug#10051)
4888
947cd66b
GM
4889 * simple.el (mark-whole-buffer): Doc fix. (Bug#10023)
4890
447f30f6
GM
4891 * mail/rmailout.el (rmail-output-to-rmail-buffer):
4892 Handle empty buffers. (Bug#9978)
4893
0b381c7e
JB
48942011-11-14 Juanma Barranquero <lekktu@gmail.com>
4895
4896 * international/mule.el (define-charset):
4897 * mail/rmailmm.el (rmail-mime-find-header-encoding):
4898 * progmodes/prolog.el (prolog-mode-hook, prolog-inferior-mode-hook):
4899 * progmodes/verilog-mode.el (verilog-backward-token):
4900 * textmodes/ispell.el (lookup-words):
4901 * textmodes/sgml-mode.el (sgml-guess-indent): Fix typos.
4902
71e027ac
GM
49032011-11-14 Glenn Morris <rgm@gnu.org>
4904
56632ce4
GM
4905 * progmodes/executable.el
4906 (executable-make-buffer-file-executable-if-script-p):
4907 Handle file-modes returning nil.
4908
40500957
GM
4909 * mail/rmailsum.el (rmail-summary): Remove movement to beginning of
4910 message - not necessary, and causes problems. (Bug#9831)
4911
071c2340
GM
4912 * mail/rmailsum.el (rmail-new-summary): Preserve message number.
4913
d3cfca60
GM
4914 * mail/rmail.el (rmail-no-mail-p): Remove mode-line N/M indicator.
4915
71e027ac
GM
4916 * mail/rmailsum.el (rmail-summary, rmail-new-summary)
4917 (rmail-new-summary-1): Allow empty summaries. (Bug#9964)
4918 (rmail-new-summary): Remember that rmail-summary-buffer is buffer-local.
4919
89d61221
MR
49202011-11-12 Martin Rudalics <rudalics@gmx.at>
4921
4922 * window.el (window-resize, delete-window): Use window-splits
4923 variable instead of function.
4924 (window-state-get-1, window-state-put-2, window-state-put):
4925 Don't deal with windows' splits status.
4926
98282f6f
GM
49272011-11-12 Glenn Morris <rgm@gnu.org>
4928
4929 * apropos.el (apropos-do-all, apropos-library, apropos-value)
4930 (apropos-documentation): Doc fixes.
4931
40a8bdf6
JB
49322011-11-11 Juanma Barranquero <lekktu@gmail.com>
4933
4934 * progmodes/idlw-shell.el (idlwave-shell-make-new-bp-overlay):
4935 * textmodes/sgml-mode.el (html-tag-help): Fix typos.
4936
65bd19ff
SM
49372011-11-11 Stefan Monnier <monnier@iro.umontreal.ca>
4938
4939 * electric.el (electric-indent-post-self-insert-function): Make it
4940 possible for a char to only indent in some circumstances.
4941 (electric-indent-mode): Simplify.
4942
54f9154c
MR
49432011-11-11 Martin Rudalics <rudalics@gmx.at>
4944
4945 * window.el (windows-with-parameter): Remove unused function.
4946 (windows-at-side): Rename to window-at-side-list.
4947 (window-check, window-atom-check, window-atom-check-1)
5e92ca23
MR
4948 (window-side-check, window-size-ignore, window-size-fixed-1)
4949 (window-in-direction-2): Prefix with "window--".
4950 (window-tree-1): Rename to window--subtree, fix doc-string.
54f9154c 4951
68cbc58b
GM
49522011-11-11 Glenn Morris <rgm@gnu.org>
4953
4954 * subr.el (eval-after-load): If FILE is already loaded,
4955 evaluate FORM before it gets wrapped in more stuff. (Bug#10009)
4956
b2621720
GM
49572011-11-10 Glenn Morris <rgm@gnu.org>
4958
9a4de110
GM
4959 * vc/vc-svn.el (vc-svn-create-repo, vc-svn-modify-change-comment):
4960 Call svn via vc-svn-command rather than vc-do-command.
4961 (vc-svn-command): Add --non-interactive. (Bug#9993)
4962 (vc-svn-update, vc-svn-merge-news): No need for --non-interactive.
4963
b2621720
GM
4964 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
4965 Add toggle-read-only. (Bug#7292)
4966 * files.el (toggle-read-only): Mention that it should only
4967 be used interactively. (Bug#10006)
4968
1dce7193
SM
49692011-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
4970
d9ac1a1e
SM
4971 * progmodes/compile.el (compilation-error-regexp-alist-alist):
4972 Adjust regexp for OCaml warnings.
4973
0c325082
SM
4974 * electric.el (electric-pair-post-self-insert-function): Let user
4975 turn it off buffer-locally (bug#9932).
4976
90132c14
SM
4977 * progmodes/python.el (python-beginning-of-statement):
4978 Rewrite (bug#2703).
4979
1dce7193
SM
4980 * progmodes/compile.el: Better handle TABs (bug#9749).
4981 (compilation-internal-error-properties)
4982 (compilation-next-error-function): Obey the target buffer's
4983 compilation-error-screen-columns.
4984
c4e7c63a
JB
49852011-11-09 Juanma Barranquero <lekktu@gmail.com>
4986
4987 * progmodes/meta-mode.el: Remove obsolete comments.
4988 (meta-right-comment-regexp, meta-ignore-comment-regexp):
4989 Fix typos in docstrings.
4990
2cffd681
MR
49912011-11-09 Martin Rudalics <rudalics@gmx.at>
4992
4993 * window.el (window-size-fixed-p): Rewrite doc-string.
1dce7193 4994 (window-resizable-p): Rename to window--resizable-p. Update callers.
2cffd681
MR
4995 (window--resizable): New function. Make all callers of
4996 window-resizable call window--resizable instead.
4997 (window-resizable): Rewrite in terms of window--resizable.
4998
0edcba87
GM
49992011-11-08 Glenn Morris <rgm@gnu.org>
5000
5001 * progmodes/delphi.el (delphi-mode-syntax-table):
5002 Let define-derived-mode define a proper syntax table. (Bug#9994)
5003
4b0d61e3
SM
50042011-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
5005
5006 * window.el: Stay away from defsubst.
5007 (window-list-no-nils): Remove.
5008 (window-state-get-1, window-state-get): Use backquote instead.
5009
cd394be1 50102011-11-08 Thierry Volpiatto <thierry.volpiatto@gmail.com>
fcbcac2e 5011
4b0d61e3 5012 * emacs-lisp/find-func.el (find-function-read):
fcbcac2e 5013 Fix incorrect use of default argument in `completing-read'.
5014
e1c2c6f2
MR
50152011-11-08 Martin Rudalics <rudalics@gmx.at>
5016
5017 * window.el (display-buffer-function, special-display-function):
5018 Mention display-buffer-record-window but do not mention
5019 help-setup parameter in doc-strings.
b3f4a882 5020 (window-min-delta): Fix doc-string typo.
e1c2c6f2 5021
105216ed
CY
50222011-11-08 Chong Yidong <cyd@gnu.org>
5023
5024 * window.el (window-total-height, window-total-width): Doc fix.
5025 (window-body-size): Move from C.
5026 (window-body-height, window-body-width): Move to C.
5027
0a9f9ab5
SM
50282011-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
5029
5030 * window.el: Make special-display like display-buffer-alist (bug#9532).
5031 (display-buffer--special-action): New function, morphed
5032 from display-buffer--special.
5033 (display-buffer): Use it to handle special-display-buffers at higher
5034 priority (just after display-buffer-alist).
5035 (display-buffer-fallback-action, display-buffer--other-frame-action)
5036 (pop-to-buffer-same-window): Remove display-buffer--special.
5037
a769dd15
GM
50382011-11-07 Glenn Morris <rgm@gnu.org>
5039
5040 * calendar/cal-menu.el (cal-menu-set-date-title):
5041 Do nothing if not in a calendar. (Bug#9976)
5042
05a61ee3
SM
50432011-11-07 Stefan Monnier <monnier@iro.umontreal.ca>
5044
5045 * files.el (find-file): Always use selected-window.
5046
be7f5545
MR
50472011-11-07 Martin Rudalics <rudalics@gmx.at>
5048
5049 * window.el (window-combinations): Make WINDOW argument
5050 mandatory. Rewrite doc-string.
5051 (walk-window-subtree, window-atom-check, window-min-delta)
5052 (window-max-delta, window--resize-this-window)
5053 (window--resize-root-window-vertically, window-tree)
5054 (balance-windows, window-state-put): Rewrite doc-strings as to
5055 not mention the term "subwindow".
5056 (window--resize-subwindows-skip-p): Rename to
5057 window--resize-child-windows-skip-p.
5058 (window--resize-subwindows-normal): Rename to
5059 window--resize-child-windows-normal.
5060 (window--resize-subwindows): Rename to
5061 window--resize-child-windows.
5062 (window-or-subwindow-p): Rename to window--in-subtree-p.
5063
3c6702ef
ML
50642011-11-07 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
5065
5066 * mail/rmail.el (rmail-get-new-mail, rmail-insert-inbox-text):
5067 Ensure that mbox format messages end in two newlines (Bug#9974).
5068
49745b39
CY
50692011-11-06 Chong Yidong <cyd@gnu.org>
5070
5071 * window.el (window-combination-p): Function deleted; its
5072 side-effect is not used in any existing code.
5073 (window-combinations, window-combined-p): Call window-*-child
5074 directly.
5075
24300f5f
CY
50762011-11-05 Chong Yidong <cyd@gnu.org>
5077
5078 * window.el (window-valid-p): Rename from window-any-p.
447f16b8
CY
5079 (window-size-ignore, window-state-get): Callers changed.
5080 (window-normalize-window): Rename from window-normalize-any-window.
5081 New arg LIVE-ONLY, replacing window-normalize-live-window.
1dce7193 5082 (window-normalize-live-window): Delete.
447f16b8
CY
5083 (window-combination-p, window-combined-p, window-combinations)
5084 (walk-window-subtree, window-atom-root, window-min-size)
5085 (window-sizable, window-sizable-p, window-size-fixed-p)
5086 (window-min-delta, window-max-delta, window-resizable)
5087 (window-resizable-p, window-full-height-p, window-full-width-p)
5088 (window-current-scroll-bars, window-point-1, set-window-point-1)
5089 (window-at-side-p, window-in-direction, window-resize)
5090 (adjust-window-trailing-edge, maximize-window, minimize-window)
5091 (window-deletable-p, delete-window, delete-other-windows)
5092 (record-window-buffer, unrecord-window-buffer)
5093 (switch-to-prev-buffer, switch-to-next-buffer, window--delete)
5094 (quit-window, split-window, window-state-put)
5095 (set-window-text-height, fit-window-to-buffer)
5096 (shrink-window-if-larger-than-buffer): Callers changed.
24300f5f 5097
89bd5ee1
EZ
50982011-11-04 Eli Zaretskii <eliz@gnu.org>
5099
53479029
EZ
5100 * mail/rmail.el (rmail-simplified-subject): Decode subject with
5101 rfc2047-decode-string.
5102 (rmail-mime-toggle-hidden): Declare to avoid byte-compilation
5103 warnings.
5104
89bd5ee1
EZ
5105 * window.el (window-body-height, window-body-width): Mention in
5106 the doc string that the return values are in frame's canonical
5107 units. (Bug#9949)
5108
bd17fdee
AM
51092011-11-03 Alan Mackenzie <acm@muc.de>
5110
5111 * progmodes/cc-langs.el (c-nonlabel-token-2-key): New variable for
5112 change in cc-engine.el.
5113
acc825c5
SM
51142011-11-02 Stefan Monnier <monnier@iro.umontreal.ca>
5115
5116 * window.el (switch-to-buffer): Use `force-same-window' interactively.
5117
1885e5b8
MR
51182011-11-02 Martin Rudalics <rudalics@gmx.at>
5119
5120 * window.el (quit-window): Call unrecord-window-buffer after
5121 showing another buffer in the window. (Bug#9937)
acc825c5 5122 (bury-buffer): Call switch-to-prev-buffer with second argument `bury'.
1885e5b8 5123
ebe06da9
JB
51242011-11-02 Juanma Barranquero <lekktu@gmail.com>
5125
5126 * vc/vc-bzr.el (vc-bzr-state, vc-bzr-after-dir-status):
5127 Accept status with more than 9 shelves. (Bug#9935)
5128 Reported by Colin D Bennett <colin@gibibit.com>.
5129
4ee88440
MR
51302011-11-01 Martin Rudalics <rudalics@gmx.at>
5131
5132 * help.el (with-help-window): Don't reference
5133 temp-buffer-show-specifiers in doc-string.
5134
08e1d82c
AS
51352011-10-31 Andreas Schwab <schwab@linux-m68k.org>
5136
5137 * subr.el (keymap--menu-item-with-binding): Ignore item if not a
5138 menu-item.
5139
84bd6e9e
VJL
51402011-10-30 Vinicius Jose Latorre <viniciusjl@ig.com.br>
5141
5142 * whitespace.el: New version 13.2.2.
5143 (whitespace-newline-mode): Disable properly. Reported by Sarah
5144 <EmacsWiki>.
5145
dba0634a
UJ
51462011-10-30 Ulf Jasper <ulf.jasper@web.de>
5147
5148 * net/newst-treeview.el: Remove "Time-stamp".
5149 (newsticker--group-manage-orphan-feeds): Do not call
5150 newsticker--treeview-tree-update.
db22a3c2
JB
5151 (newsticker-treeview-update, newsticker-treeview):
5152 Call newsticker--treeview-tree-update if necessary.
dba0634a 5153
3d8daefe
MR
51542011-10-30 Martin Rudalics <rudalics@gmx.at>
5155
5156 * window.el (window-iso-combination-p, window-iso-combined-p)
acc825c5
SM
5157 (window-iso-combinations): Remove "iso-" infix.
5158 Suggested by Chong Yidong.
3d8daefe
MR
5159 (window-min-size-1, window-size-fixed-1, window-min-delta-1)
5160 (window-max-delta-1, window-resize, window--resize-siblings)
5161 (window--resize-this-window, adjust-window-trailing-edge)
5162 (split-window, balance-windows-1)
5163 (shrink-window-if-larger-than-buffer):
5164 * calendar/calendar.el (calendar-generate-window):
db22a3c2 5165 * help.el (resize-temp-buffer-window): Adjust callers accordingly.
3d8daefe 5166
1bc4c3ae
SM
51672011-10-30 Stefan Monnier <monnier@iro.umontreal.ca>
5168
5169 * eshell/esh-cmd.el (eshell-rewrite-for-command): Don't modify the list
5170 in place (bug#9907).
5171 (eshell-subcommand-arg-values, eshell-rewrite-named-command)
5172 (eshell-rewrite-if-command, eshell-rewrite-for-command)
5173 (eshell-structure-basic-command, eshell-rewrite-while-command)
5174 (eshell-invokify-arg, eshell-parse-pipeline, eshell-parse-command)
5175 (eshell-parse-subcommand-argument, eshell-parse-lisp-argument)
5176 (eshell-trap-errors, eshell-do-pipelines, eshell-do-eval)
5177 (eshell-do-pipelines-synchronously, eshell-eval-command):
5178 Use backquotes and prefer setq to set.
5179 (eshell-lookup-function, function-p-func, eshell-functionp): Remove.
5180 (eshell-macrop): Use functionp.
c1e2f5fa 5181 (eshell-do-eval): Handle multiple expressions in `while' body.
1bc4c3ae 5182
30b65d9c
CY
51832011-10-30 Chong Yidong <cyd@gnu.org>
5184
5185 * emulation/viper-cmd.el (viper-exec-change): Use push-mark
5186 instead of set-mark (Bug#9810).
5187
2d197ffb
CY
51882011-10-30 Chong Yidong <cyd@gnu.org>
5189
5190 * window.el (split-window-below, split-window-right): Rename from
5191 split-window-above-each-other and split-window-side-by-side
5192 respectively. All callers changed.
5193 (split-window-sensibly, split-window-sensibly): Use them.
5194 (split-window-keep-point): Doc fix.
5195
5196 * isearch.el: Add isearch-scroll property to split-window-below
5197 and split-window-right.
5198
5199 * follow.el (follow-mode):
5200 * vc/pcvs-util.el (cvs-pop-to-buffer-same-frame):
5201 * progmodes/ada-xref.el (ada-gdb-application):
5202 * emulation/vip.el (vip-buffer-in-two-windows):
5203 * image-dired.el (image-dired-dired-with-window-configuration):
5204 * dired-x.el (dired-do-find-marked-files):
5205 * dired.el (dired-pop-to-buffer):
5206 * bs.el (bs--show-with-configuration):
5207 * vc/emerge.el (emerge-setup-windows):
5208 * textmodes/two-column.el (2C-two-columns):
5209 * textmodes/reftex-toc.el (reftex-toc):
5210 * progmodes/gdb-mi.el (gdb-setup-windows):
5211 * progmodes/fortran.el (fortran-window-create):
5212 * net/newst-treeview.el (newsticker--treeview-window-init):
5213 * emulation/ws-mode.el (wordstar-C-o-map, wordstar-mode):
5214 * emulation/tpu-edt.el (tpu-gold-map):
5215 * emulation/crisp.el (crisp-mode-map):
5216 * calendar/calendar.el (calendar-basic-setup): Callers changed.
5217
38bb2ca8
CY
52182011-10-29 Chong Yidong <cyd@gnu.org>
5219
aa4de341
CY
5220 * subr.el (y-or-n-p): Add code for batch mode (Bug#9818).
5221
e1eb5385
CY
5222 * mouse.el (mouse-yank-primary): Push the mark (Bug#9894).
5223
5d2ece3c
CY
5224 * textmodes/flyspell.el (flyspell-word): Fix char offset for
5225 forged Ispell output (Bug#7904).
5226
38bb2ca8
CY
5227 * emacs-lisp/package.el (package-refresh-contents): Add autoload.
5228
d0af9f77
SM
52292011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
5230
5231 * doc-view.el: Avoid ugly errors about not finding nil.
5232 (doc-view-ghostscript-program, doc-view-dvipdfm-program)
5233 (doc-view-dvipdf-program, doc-view-unoconv-program)
5234 (doc-view-ps2pdf-program, doc-view-pdftotext-program):
5235 Avoid nil or absolute file name as default value.
5236 (doc-view-pdf->txt, doc-view-ps->pdf): Use executable-find here.
5237
52bedd34
AM
52382011-10-28 Alan Mackenzie <acm@muc.de>
5239
db22a3c2 5240 * progmodes/cc-defs.el (c-version): -> 5.32.2.
52bedd34 5241
7e43cfa5
AM
52422011-10-28 Alan Mackenzie <acm@muc.de>
5243
5244 Amend the handling of c-beginning/end-of-defun in nested declaration
5245 scopes.
5246
52bedd34
AM
5247 * progmodes/cc-vars.el (c-defun-tactic): Move here from
5248 cc-langs.el. Change it to a defcustom.
7e43cfa5 5249
52bedd34
AM
5250 * progmodes/cc-langs.el (c-defun-tactic): Move this variable to
5251 cc-vars.el.
7e43cfa5 5252
d0af9f77
SM
5253 * progmodes/cc-engine.el (c-beginning-of-statement-1):
5254 Prevent "class foo : bar" being spuriously recognized as a label.
7e43cfa5 5255
52bedd34 5256 * progmodes/cc-cmds.el (c-narrow-to-most-enclosing-decl-block):
acc825c5 5257 Add parameter `inclusive' (to include enclosing braces in the region).
7e43cfa5
AM
5258 (c-widen-to-enclosing-decl-scope): New function.
5259 (c-while-widening-to-decl-block): New macro.
5260 (c-beginning-of-defun, c-end-of-defun): Change algorithm to keep going
5261 outward for defun boundaries, and correspondingly change symbol
5262 `respect-enclosure' to `go-outward'.
5263 (c-declaration-limits): Change algorithm to report only the "innermost"
5264 defun's boundaries.
5265
1a2ce9ee
DD
52662011-10-28 Deniz Dogan <deniz@dogan.se>
5267
5268 * net/rcirc.el (rcirc-mode): Use hard newlines.
5269
bc97a826
AM
52702011-10-28 Alan Mackenzie <acm@muc.de>
5271
5272 Amend to indent and fontify macros "which include their own semicolon"
5273 correctly, using the "virtual semicolon" mechanism.
5274
52bedd34 5275 * progmodes/cc-defs.el: Update "virtual semicolon" comments.
bc97a826 5276
d0af9f77 5277 * progmodes/cc-engine.el (c-crosses-statement-barrier-p):
7877f373 5278 Recode to scan one line at a time rather than having \n and \r
58179cce 5279 explicitly in c-stmt-delim-chars (for some modes, e.g. AWK).
bc97a826 5280 (c-forward-label): Amend for virtual semicolons.
58179cce 5281 (c-at-macro-vsemi-p, c-macro-vsemi-status-unknown-p): New functions.
bc97a826 5282
52bedd34
AM
5283 * progmodes/cc-fonts.el (c-font-lock-declarations): Take account
5284 of the new C macros.
bc97a826 5285
52bedd34 5286 * progmodes/cc-langs.el (c-at-vsemi-p-fn):
acc825c5
SM
5287 (c-vsemi-status-unknown-p-fn): Move to earlier in the file.
5288 (c-opt-cpp-symbol, c-line-comment-start-regexp): New language vars.
bc97a826
AM
5289 (c-opt-cpp-macro-define): Make into a full language variable.
5290 (c-stmt-delim-chars, c-stmt-delim-chars-with-comma): Special value for
5291 AWK Mode (including \n, \r) removed, no longer needed.
5292
d0af9f77
SM
5293 * progmodes/cc-mode.el (c-mode, c++-mode, objc-mode):
5294 Invoke c-make-macro-with-semi-re.
bc97a826 5295
52bedd34
AM
5296 * progmodes/cc-vars.el (c-macro-with-semi-re):
5297 (c-macro-names-with-semicolon): New variables.
58179cce 5298 (c-make-macro-with-semi-re): New function.
bc97a826 5299
7a6c0941
SM
53002011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
5301
5302 * vc/log-edit.el: Fill empty field rather than adding new one.
5303 (log-edit-add-field): New function.
5304 (log-edit-insert-changelog): Use it.
5305
b0c4cdcf
ML
53062011-10-28 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
5307
5308 * mail/rmail.el (rmail-mode-map): Add M-C-f as in rmailsum (bug#9802).
5309
ee1f1da9
SM
53102011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
5311
5312 * progmodes/gdb-mi.el: Warn the user when -i=mi is missing.
5313 (gdb--check-interpreter): New function.
5314 (gdb): Use it.
5315
51bc5f8b
GM
53162011-10-27 Glenn Morris <rgm@gnu.org>
5317
416a2c45
GM
5318 * emacs-lisp/cl-extra.el (most-positive-float, most-negative-float)
5319 (least-positive-float, least-negative-float)
5320 (least-positive-normalized-float, least-negative-normalized-float)
5321 (float-epsilon, float-negative-epsilon):
5322 Remove unnecessary declarations.
5323
5324 * emacs-lisp/cl-extra.el (cl-float-limits): Add doc string.
5325 * emacs-lisp/cl.el (most-positive-float, most-negative-float)
5326 (least-positive-float, least-negative-float)
5327 (least-positive-normalized-float, least-negative-normalized-float)
5328 (float-epsilon, float-negative-epsilon): Add doc-strings,
5329 based on those in cl.texi.
5330
51bc5f8b
GM
5331 * files.el (set-visited-file-name): If the major-mode changed,
5332 reload the local variables. (Bug#9796)
5333
15de15c6
CY
53342011-10-27 Chong Yidong <cyd@gnu.org>
5335
5336 * subr.el (change-major-mode-after-body-hook): New hook.
5337 (run-mode-hooks): Run it.
5338
ee1f1da9
SM
5339 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
5340 Use change-major-mode-before-body-hook.
15de15c6
CY
5341
5342 * simple.el (fundamental-mode):
5343 * emacs-lisp/derived.el (define-derived-mode): Revert 2010-04-28
5344 change introducing fundamental-mode-hook.
5345
5430d399
JB
53462011-10-26 Juanma Barranquero <lekktu@gmail.com>
5347
acc825c5 5348 * term/w32-win.el (w32-default-color-map): Declare obsolete (Bug#9785).
5430d399 5349
ad74a69e
MA
53502011-10-26 Michael Albinus <michael.albinus@gmx.de>
5351
5352 * ido.el (ido-file-name-all-completions-1): Do not require
c7015153 5353 tramp.el explicitly. (Bug#7583)
ad74a69e 5354
71d4c2a5
SM
53552011-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
5356
5357 * progmodes/octave-mod.el:
5358 * progmodes/octave-inf.el: Update maintainer.
5359
b1f6fa26
CY
53602011-10-26 Chong Yidong <cyd@gnu.org>
5361
5362 * subr.el (with-wrapper-hook): Rewrite doc.
5363
3f04efd6
MA
53642011-10-25 Michael Albinus <michael.albinus@gmx.de>
5365
5366 * net/tramp-sh.el (tramp-sh-handle-file-directory-p): Return t for
ad74a69e 5367 filenames "/method:foo:". (Bug#9793)
3f04efd6 5368
410488d3
SM
53692011-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
5370
5371 * comint.el (comint-get-old-input-default): Fix use-prompt-regexp case
5372 (bug#9865).
5373
c1ebb47e
GM
53742011-10-24 Glenn Morris <rgm@gnu.org>
5375
5376 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix. (Bug#9819)
5377
7f5c46c7
MA
53782011-10-24 Michael Albinus <michael.albinus@gmx.de>
5379
5380 * notifications.el: Add the requirement of a running D-Bus session
5381 bus to the Commentary.
5382
db2440b6
JL
53832011-10-24 Juri Linkov <juri@jurta.org>
5384
5385 * isearch.el (isearch-occur): Let-bind `search-spaces-regexp' to
5386 `search-whitespace-regexp' only when `isearch-regexp' is non-nil.
5387 (Bug#9364)
5388
feecf435
JL
53892011-10-24 Juri Linkov <juri@jurta.org>
5390
5391 * info.el (Info-following-node-name-re): Add newline to the list
5392 of allowed characters for leading space. (Bug#9824)
5393
a3839de2
SM
53942011-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
5395
acc825c5
SM
5396 * progmodes/octave-inf.el (inferior-octave-mode-map):
5397 Fix C-c C-h binding.
a3839de2
SM
5398 * progmodes/octave-mod.el (octave-help): Remove.
5399
09388e76
MA
54002011-10-23 Michael Albinus <michael.albinus@gmx.de>
5401
5402 Sync with Tramp 2.2.3.
5403
5404 * net/tramp-cache.el (top): Pacify byte-compiler using
5405 `init-file-user' and `site-run-file'.
5406
5407 * net/trampver.el: Update release number.
5408
86c60681
CY
54092011-10-23 Chong Yidong <cyd@gnu.org>
5410
5411 * files.el (toggle-read-only): Remove obsolete comment about
5412 version control.
5413
5414 * vc/vc-hooks.el (vc-toggle-read-only): Make it an obsolete alias
5415 for toggle-read-only. Note that this hasn't called vc-next-action
5416 since 2008-05-02, though it wasn't documented at the time.
5417
a3839de2
SM
5418 * vc/ediff-init.el (ediff-toggle-read-only-function):
5419 Use toggle-read-only.
86c60681 5420
cd5495ff
AM
54212011-10-22 Alan Mackenzie <bug-cc-mode@gnu.org>
5422
5423 Fix bug #9560, sporadic wrong indentation; improve instrumentation
5424 of c-parse-state.
5425
00b77525 5426 * progmodes/cc-engine.el (c-append-lower-brace-pair-to-state-cache):
a3839de2 5427 correct faulty logical expression.
cd5495ff
AM
5428 (c-parse-state-state, c-record-parse-state-state):
5429 (c-replay-parse-state-state): New defvar/defuns.
5430 (c-debug-parse-state): Use new functions.
5431
42ee24ed
MR
54322011-10-22 Martin Rudalics <rudalics@gmx.at>
5433
5434 * mouse.el (mouse-drag-line): Fix minibuffer resizing broken by
53ebff1f 5435 last fix. Use window-in-direction correctly.
42ee24ed 5436
a7dee7e7
CY
54372011-10-21 Chong Yidong <cyd@gnu.org>
5438
5439 * progmodes/idlwave.el (idlwave-mode):
5440 * progmodes/vera-mode.el (vera-mode): No need to set
a3839de2
SM
5441 require-final-newline; that's done in prog-mode.
5442 Suggested by Stefan Monnier.
a7dee7e7 5443
e07b9a6d
MR
54442011-10-21 Martin Rudalics <rudalics@gmx.at>
5445
5446 * mouse.el (mouse-drag-window-above)
5447 (mouse-drag-move-window-bottom, mouse-drag-move-window-top)
5448 (mouse-drag-mode-line-1, mouse-drag-header-line)
5449 (mouse-drag-vertical-line-rightward-window): Remove.
5450 (mouse-drag-line): New function.
5451 (mouse-drag-mode-line, mouse-drag-header-line)
5452 (mouse-drag-vertical-line): Call mouse-drag-line.
5453 * window.el (window-at-side-p, windows-at-side): New functions.
5454
7e1361d9
UM
54552011-10-21 Ulrich Mueller <ulm@gentoo.org>
5456
5457 * tar-mode.el (tar-grind-file-mode):
5458 Fix handling of setuid/setgid, handle sticky bit. (Bug#9817)
5459
30fcaf3a
CY
54602011-10-21 Chong Yidong <cyd@gnu.org>
5461
5462 * progmodes/idlwave.el (idlwave-mode):
a3839de2
SM
5463 * progmodes/vera-mode.el (vera-mode):
5464 Use mode-require-final-newline.
30fcaf3a 5465
516eddb0
GM
54662011-10-20 Glenn Morris <rgm@gnu.org>
5467
db22a3c2 5468 * vc/vc.el (vc-next-action): Handle removed directories. (Bug#9781)
516eddb0 5469
10d5f513
CS
54702011-10-20 Christoph Scholtes <cschol2112@googlemail.com>
5471
5472 * emulation/cua-base.el (cua-set-mark): Fix case of string.
5473
ac6c8639
CY
54742011-10-20 Chong Yidong <cyd@gnu.org>
5475
5476 * emulation/cua-base.el (cua-mode):
5477 * mail/footnote.el (footnote-mode):
5478 * mail/mailabbrev.el (mail-abbrevs-mode):
5479 * net/xesam.el (xesam-minor-mode):
5480 * progmodes/bug-reference.el (bug-reference-mode):
5481 * progmodes/cap-words.el (capitalized-words-mode):
5482 * progmodes/compile.el (compilation-minor-mode)
5483 (compilation-shell-minor-mode):
5484 * progmodes/gud.el (gud-tooltip-mode):
5485 * progmodes/hideif.el (hide-ifdef-mode):
5486 * progmodes/idlw-shell.el (idlwave-shell-electric-debug-mode):
5487 * progmodes/subword.el (subword-mode):
5488 * progmodes/vhdl-mode.el (vhdl-electric-mode, vhdl-stutter-mode):
5489 * progmodes/which-func.el (which-function-mode):
5490 * term/tvi970.el (tvi970-set-keypad-mode):
5491 * term/vt100.el (vt100-wide-mode):
5492 * textmodes/flyspell.el (flyspell-mode):
5493 * textmodes/ispell.el (ispell-minor-mode):
5494 * textmodes/nroff-mode.el (nroff-electric-mode):
5495 * textmodes/paragraphs.el (use-hard-newlines):
5496 * textmodes/refill.el (refill-mode):
5497 * textmodes/reftex.el (reftex-mode):
5498 * textmodes/rst.el (rst-minor-mode):
5499 * textmodes/sgml-mode.el (html-autoview-mode)
5500 (sgml-electric-tag-pair-mode):
5501 * textmodes/tex-mode.el (latex-electric-env-pair-mode):
5502 * vc/diff-mode.el (diff-auto-refine-mode, diff-minor-mode):
5503 * emulation/crisp.el (crisp-mode):
5504 * emacs-lisp/eldoc.el (eldoc-mode):
5505 * emacs-lisp/checkdoc.el (checkdoc-minor-mode): Doc fixes for new
5506 minor mode behavior.
5507
aa42ab43
JL
55082011-10-19 Juri Linkov <juri@jurta.org>
5509
5510 * descr-text.el (describe-char): Add #x2010 and #x2011 to
5511 the list of hard-coded chars with escape-glyph face.
5512
89400f1d
SM
55132011-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
5514
5515 * vc/log-edit.el (log-edit-empty-buffer-p): Ignore empty headers.
5516
305c07f6
MA
55172011-10-19 Michael Albinus <michael.albinus@gmx.de>
5518
5519 * net/tramp.el (tramp-connectable-p): Make a stronger check on a
5520 running process.
5521
13754b54
GM
55222011-10-19 Glenn Morris <rgm@gnu.org>
5523
5524 * vc/vc-bzr.el (vc-bzr-after-dir-status):
5525 Ignore ignored files. (Bug#9726)
5526
06e21633
CY
55272011-10-19 Chong Yidong <cyd@gnu.org>
5528
5529 Doc fix for minor modes, stating that an omitted argument enables
5530 the mode unconditionally when called from Lisp.
5531
5532 * abbrev.el (abbrev-mode):
5533 * allout.el (allout-mode):
5534 * autoinsert.el (auto-insert-mode):
5535 * autoarg.el (autoarg-mode, autoarg-kp-mode):
5536 * autorevert.el (auto-revert-mode, auto-revert-tail-mode)
5537 (global-auto-revert-mode):
5538 * battery.el (display-battery-mode):
5539 * composite.el (global-auto-composition-mode)
5540 (auto-composition-mode):
5541 * delsel.el (delete-selection-mode):
5542 * desktop.el (desktop-save-mode):
5543 * dired-x.el (dired-omit-mode):
5544 * dirtrack.el (dirtrack-mode):
5545 * doc-view.el (doc-view-minor-mode):
5546 * double.el (double-mode):
5547 * electric.el (electric-indent-mode, electric-pair-mode):
5548 * emacs-lock.el (emacs-lock-mode):
5549 * epa-hook.el (auto-encryption-mode):
5550 * follow.el (follow-mode):
5551 * font-core.el (font-lock-mode):
5552 * frame.el (auto-raise-mode, auto-lower-mode, blink-cursor-mode):
5553 * help.el (temp-buffer-resize-mode):
5554 * hilit-chg.el (highlight-changes-mode)
5555 (highlight-changes-visible-mode):
5556 * hi-lock.el (hi-lock-mode):
5557 * hl-line.el (hl-line-mode, global-hl-line-mode):
5558 * icomplete.el (icomplete-mode):
5559 * ido.el (ido-everywhere):
5560 * image-file.el (auto-image-file-mode):
5561 * image-mode.el (image-minor-mode):
5562 * iswitchb.el (iswitchb-mode):
5563 * jka-cmpr-hook.el (auto-compression-mode):
5564 * linum.el (linum-mode):
5565 * longlines.el (longlines-mode):
5566 * master.el (master-mode):
5567 * mb-depth.el (minibuffer-depth-indicate-mode):
5568 * menu-bar.el (menu-bar-mode):
5569 * minibuf-eldef.el (minibuffer-electric-default-mode):
5570 * mouse-sel.el (mouse-sel-mode):
5571 * msb.el (msb-mode):
5572 * mwheel.el (mouse-wheel-mode):
5573 * outline.el (outline-minor-mode):
5574 * paren.el (show-paren-mode):
5575 * recentf.el (recentf-mode):
5576 * reveal.el (reveal-mode, global-reveal-mode):
5577 * rfn-eshadow.el (file-name-shadow-mode):
5578 * ruler-mode.el (ruler-mode):
5579 * savehist.el (savehist-mode):
5580 * scroll-all.el (scroll-all-mode):
5581 * scroll-bar.el (scroll-bar-mode):
5582 * server.el (server-mode):
5583 * shell.el (shell-dirtrack-mode):
5584 * simple.el (auto-fill-mode, transient-mark-mode)
5585 (visual-line-mode, overwrite-mode, binary-overwrite-mode)
5586 (line-number-mode, column-number-mode, size-indication-mode)
5587 (auto-save-mode, normal-erase-is-backspace-mode, visible-mode):
5588 * strokes.el (strokes-mode):
5589 * time.el (display-time-mode):
5590 * t-mouse.el (gpm-mouse-mode):
5591 * tool-bar.el (tool-bar-mode):
5592 * tooltip.el (tooltip-mode):
5593 * type-break.el (type-break-mode-line-message-mode)
5594 (type-break-query-mode):
5595 * view.el (view-mode):
5596 * whitespace.el (whitespace-mode, whitespace-newline-mode)
5597 (global-whitespace-mode, global-whitespace-newline-mode):
5598 * xt-mouse.el (xterm-mouse-mode): Doc fix.
5599
a3839de2
SM
5600 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
5601 Fix autogenerated docstring.
06e21633 5602
5214e501
JL
56032011-10-19 Juri Linkov <juri@jurta.org>
5604
5605 * net/browse-url.el (browse-url-can-use-xdg-open): Support LXDE
5606 by checking environment variables "DESKTOP_SESSION" and
5607 "XDG_CURRENT_DESKTOP". (Bug#9779)
5608
195f8db9
JL
56092011-10-19 Juri Linkov <juri@jurta.org>
5610
5611 * net/browse-url.el (browse-url-browser-function): Add "Chromium".
5612 (browse-url-chromium-program, browse-url-chromium-arguments):
5613 New defcustoms.
5614 (browse-url-default-browser): Check for `browse-url-chromium' and
5615 call `browse-url-chromium-program'.
5616 (browse-url-chromium): New command. (Bug#9779)
5617
343a34ff
JB
56182011-10-18 Juanma Barranquero <lekktu@gmail.com>
5619
5620 * facemenu.el (list-colors-duplicates): On Windows, detect more
5621 duplicates by assuming that only colors matching "^System" are
5622 special "system colors". (Bug#9722)
5623
6978a151
SM
56242011-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
5625
5626 * vc/log-edit.el (log-edit): Add "Author:" header to encourage people
5627 to distinguish the author from the committer.
5628
6a80b297
MA
56292011-10-18 Michael Albinus <michael.albinus@gmx.de>
5630
5631 * net/tramp.el (tramp-file-name-handler): Load Tramp packages silently.
5632
b31a5677
JK
56332011-10-18 Jirka Kosek <jirka@kosek.cz> (tiny change)
5634
5635 * international/mule.el (sgml-html-meta-auto-coding-function):
5636 Add support for detecting encoding in HTML5 specified only as
5637 <meta charset="UTF-8">. Implementation just makes http-equiv and
5638 content-type parts from HTML4 encoding string optional. (Bug#9716)
5639
80c6d77f
GM
56402011-10-18 Glenn Morris <rgm@gnu.org>
5641
5642 * vc/vc.el (vc-initial-comment): Mark as obsolete. (Bug#9745)
5643
08b0fee8
CY
56442011-10-18 Chong Yidong <cyd@gnu.org>
5645
5646 * faces.el (cursor): Doc fix.
5647
67e729a5
CY
56482011-10-17 Chong Yidong <cyd@gnu.org>
5649
5650 * font-lock.el (font-lock-maximum-size): Mark as obsolete.
5651
343a34ff 56522011-10-17 Ryan Barrett <emacs@ryanb.org> (tiny change)
87e478b3
RB
5653
5654 * dirtrack.el (dirtrack): Support shell buffers with path
5655 prefixes, e.g. tramp-based remote shells. (Bug#9647)
5656
0bc06380
TZ
56572011-10-17 Teodor Zlatanov <tzz@lifelogs.com>
5658
5659 * json.el: Bump version to 1.3 and note change in History.
5660 (json-alist-p, json-plist-p): Rewrite to avoid recursion.
5661
8b79f3e0
SM
56622011-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
5663
5a7c536b
SM
5664 * comint.el (comint-insert-input, comint-send-input)
5665 (comint-get-old-input-default, comint-backward-matching-input)
5666 (comint-next-prompt): Use nil instead of `input' for field property of
5667 past user input (bug#114).
5668
96a8a0df
SM
5669 * minibuffer.el (completion--replace): Inherit surrounding properties
5670 (bug#114).
5671 (minibuffer-complete-and-exit): Use it.
5672
8b79f3e0
SM
5673 * comint.el (comint--table-subvert): Quote the all-completions output
5674 (bug#9160).
5675
b8f7ff0d
MR
56762011-10-17 Martin Rudalics <rudalics@gmx.at>
5677
8b79f3e0 5678 * ido.el (ido-default-buffer-method): Remove redundant :type entry.
4e5c3d2b 5679
b8f7ff0d 5680 * menu-bar.el (menu-bar-file-menu): Add entry for making new
d912bdcf 5681 window on right of selected. (Bug#9350) Reword other window
b8f7ff0d
MR
5682 entries and separate them from frame entries.
5683
c235b555
GM
56842011-10-15 Glenn Morris <rgm@gnu.org>
5685
5686 * emacs-lisp/ert.el (ert--explain-equal-rec, ert-select-tests):
5687 Doc fixes.
5688
6bbfa6e1
CY
56892011-10-15 Chong Yidong <cyd@stupidchicken.com>
5690
8b79f3e0
SM
5691 * net/network-stream.el (network-stream-open-starttls):
5692 Improve detection of failure due to lack of TLS support.
ec5c990d 5693
6bbfa6e1
CY
5694 * mail/sendmail.el (sendmail-query-once): Tweak prompt message,
5695 putting the input text in front and in bold.
5696
98488977
SM
56972011-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
5698
3d1337be
SM
5699 * pcmpl-unix.el (pcomplete/ssh): SSH does allow ganging.
5700
ee0b45e4
SM
5701 * mpc.el (mpc-songs-jump-to): Don't burp if the user clicks in an
5702 empty buffer.
5703
98488977
SM
5704 * mouse.el (mouse-drag-mode-line-1): Modify the end-event we pushed on
5705 unread-command-events rather than pushing yet-another event.
5706
186f4720
EZ
57072011-10-14 Eli Zaretskii <eliz@gnu.org>
5708
5709 * mail/sendmail.el (sendmail-query-once): Improve the wording of
5710 the explanation of the possible choices. Make the options passed
5711 to completing-read shorter.
5712
8b7a997c
AM
57132011-10-13 Agustín Martín Domingo <agustin.martin@hispalinux.es>
5714
5715 * textmodes/flyspell.el (flyspell-large-region): Make sure
5716 extended character mode is used if defined (Bug#1339).
5717
12587bbb
EZ
57182011-10-13 Eli Zaretskii <eliz@gnu.org>
5719
5720 * simple.el (what-cursor-position): Fix the display of the
e7e2364b
EZ
5721 character info for LRE, LRO, RLE, and RLO characters by appending
5722 an invisible PDF.
12587bbb 5723
bad41229
SM
57242011-10-13 Stefan Monnier <monnier@iro.umontreal.ca>
5725
5726 * emacs-lisp/timer.el (with-timeout): Make sure we cancel the timer
5727 even in case of error; add debug spec; simplify data flow.
5728 (with-timeout-handler): Remove.
5729
28dbc92f
MA
57302011-10-12 Michael Albinus <michael.albinus@gmx.de>
5731
5732 Fix Bug#6019, Bug#9315.
5733
5734 * files.el (set-auto-mode): Call `file-name-sans-versions' for the
5735 complete `buffer-file-name', the local file name part could look
5736 remotely (for example on VMS).
5737
5738 * net/ange-ftp.el (ange-ftp-run-real-handler): Make it an alias of
5739 `tramp-run-real-handler'.
5740 (ange-ftp-fix-name-for-vms): Handle the case, where `name' is
5741 already quoted by '"'.
5742
5743 * net/tramp.el (tramp-rfn-eshadow-update-overlay): Ignore errors.
5744 Let `file-name-handler-alist' be nil, the local file name part
5745 could look remotely (for example on VMS).
5746
e1b0b23a
SM
57472011-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
5748
5749 * textmodes/flyspell.el (flyspell-word): Move with-local-quit
5750 from here...
5751 (flyspell-post-command-hook): ...to here.
5752
a120bde9
SM
57532011-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
5754
5755 * mail/sendmail.el (send-mail-function): Don't use sendmail-query-once
5756 if not needed.
5757 (sendmail-query-once): Remove OS dependencies. Make it a 3-way choice
5758 using completion. Protect against "slow" callers.
5759 Remove the "message hack".
5760
7ce7717b
JL
57612011-10-11 Juri Linkov <juri@jurta.org>
5762
5763 * isearch.el (isearch-lazy-highlight-word): New variable.
5764 (isearch-lazy-highlight-new-loop, isearch-lazy-highlight-search):
5765 Use it. (Bug#9727)
5766
c02ee9d6
GM
57672011-10-11 Glenn Morris <rgm@gnu.org>
5768
5769 * progmodes/f90.el (f90-next-statement): Ignore preprocessor lines,
5770 like f90-previous-statement does.
5771
93e616fd 57722011-10-11 Thierry Volpiatto <thierry.volpiatto@gmail.com>
5773
1f190e73 5774 * eshell/eshell.el (eshell-command): History should be saved
c02ee9d6
GM
5775 only in interactive use, to avoid error.
5776
af7b6078
SM
57772011-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
5778
5779 * minibuffer.el (completion-file-name-table): Fix last change,
5780 i.e. ignore normal errors but not the other ones.
5781
0563dae9
MR
57822011-10-10 Martin Rudalics <rudalics@gmx.at>
5783
5784 * window.el (special-display-buffer-names)
5785 (special-display-regexps): Remove some remnants of earlier
5786 changes from doc-strings.
366ca7f3
MR
5787 (quit-windows-on): New function.
5788
5789 * vc/vc.el (vc-revert, vc-rollback):
5790 * vc/vc-dispatcher.el (vc-finish-logentry): Call quit-windows-on
5791 instead of deleting windows. (Bug#4557) (Bug#5310) (Bug#5556)
9ac13c31 5792 (Bug#6183) (Bug#7074) (Bug#7447)
0563dae9 5793
49677495
MR
57942011-10-09 Martin Rudalics <rudalics@gmx.at>
5795
5796 * window.el (frame-auto-hide-function): Add version tag.
5797 (Bug#9699)
5798
56f2d1e1
MA
57992011-10-09 Michael Albinus <michael.albinus@gmx.de>
5800
5801 * net/tramp.el (tramp-file-name-handler): Add 'debug to the error
5802 condition.
5803
112a6592
LL
58042011-10-09 Leo Liu <sdl.web@gmail.com>
5805
5806 * mail/smtpmail.el (smtpmail-send-data): Add a missing space.
5807 (Bug#9701)
5808
0812589b
GM
58092011-10-08 Glenn Morris <rgm@gnu.org>
5810
5811 * progmodes/f90.el (f90-calculate-indent): Give preprocessor lines
5812 before the first code statement zero indent. (Bug#9690)
5813
b2b0776e
CY
58142011-10-08 Chong Yidong <cyd@stupidchicken.com>
5815
5816 * simple.el (count-words-region): Always count in the region.
5817 Report the number of lines and characters too.
5818 (count-words): New command, which counts in the buffer if the
5819 region is inactive, as count-words-region used to.
5820 (count-words--message): New function. Handle plurals.
5821 (count-lines-region): Make it an alias for count-words-region.
5822
5823 * bindings.el (esc-map): Replace count-lines-region with
5824 count-words-region.
5825
c557cd6b
MR
58262011-10-08 Martin Rudalics <rudalics@gmx.at>
5827
5828 * window.el (window--delete): Delete dedicated frame
5829 unconditionally when argument KILL is non-nil. (Bug#9699)
235ce86f 5830 (switch-to-buffer): Fix doc-string typo.
c557cd6b 5831
61a57ef4 58322011-10-08 Thierry Volpiatto <thierry.volpiatto@gmail.com>
5833
3a7d293b 5834 * eshell/eshell.el (eshell-command): Avoid using hooks.
61a57ef4 5835
c3833279
CY
58362011-10-07 Chong Yidong <cyd@stupidchicken.com>
5837
5838 * bindings.el ([M-left],[M-right]): Bind to left-word and
5839 right-word respectively.
5840
21ce8245
GM
58412011-10-07 Glenn Morris <rgm@gnu.org>
5842
5843 * cus-start.el (debug-on-quit): Fix custom type.
5844
6d823bb2
LMI
58452011-10-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
5846
0181e193
LMI
5847 * subr.el (define-key-after): Clarify that the function is not
5848 useful for non-menu keymaps.
5849
6d823bb2
LMI
5850 * progmodes/gdb-mi.el (gdb): Fix typo in doc string.
5851
8e3459ce 58522011-10-06 Thierry Volpiatto <thierry.volpiatto@gmail.com>
5853
21ce8245 5854 * eshell/eshell.el (eshell-command): Enable `eshell-mode' only
8e3459ce 5855 in current minibuffer (Fix bug with recursive minibuffers).
5856
a1c2d21e
CY
58572011-10-06 Chong Yidong <cyd@stupidchicken.com>
5858
5859 * progmodes/gdb-mi.el (gdb): Doc fix.
5860
5a4cf282
MR
58612011-10-05 Martin Rudalics <rudalics@gmx.at>
5862
5863 * window.el (frame-auto-hide-function): New option replacing
5864 frame-auto-delete. Suggested by Stefan Monnier.
5865 (window--delete): Call frame-auto-hide-function instead of
5866 investigating frame-auto-delete.
c96111ea
MR
5867 (window-point-1, set-window-point-1): New functions.
5868 (window-in-direction, record-window-buffer, window-state-get-1)
5869 (display-buffer-record-window): Use window-point-1 instead of
5870 window-point.
5871 (set-window-buffer-start-and-point): Use set-window-point-1.
5a4cf282 5872
9854542e
SM
58732011-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
5874
5875 * emacs-lisp/edebug.el: Heed checkdoc recommendations.
5876
8943cfb0
GM
58772011-10-05 Glenn Morris <rgm@gnu.org>
5878
5879 * progmodes/perl-mode.el (perl-electric-terminator): Doc fix.
5880 (perl-calculate-indent): Suppress scan errors. (Bug#2205)
5881
647ab967
LL
58822011-10-05 Leo Liu <sdl.web@gmail.com>
5883
5884 * subr.el (read-char-choice): Fix argument to buffer-live-p which
5885 works with buffer object.
5886
3ddfbced
SM
58872011-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
5888
5889 * mpc.el (mpc-tool-bar-map): Add labels.
5890
bdfa5dd2
GM
58912011-10-04 Glenn Morris <rgm@gnu.org>
5892
5893 * calendar/holidays.el (calendar-check-holidays): Doc fix.
5894
0e2070b5
MR
58952011-10-04 Martin Rudalics <rudalics@gmx.at>
5896
5897 * window.el (window--delete): New function.
5898 (frame-auto-delete): Resuscitate option.
5899 (bury-buffer, replace-buffer-in-windows)
5900 (quit-window): Rewrite using window--delete.
5901 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
5902 Pass display-buffer-mark-dedicated to window--display-buffer-2
5903 (Bug#9639).
5904
3dc61a09
SM
59052011-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
5906
915a9b64
SM
5907 * pcmpl-unix.el (pcomplete/scp): Don't assume pcomplete-all-entries
5908 returns a list (bug#9554). Add remote file name completion.
5909 * comint.el (comint--table-subvert): Curry and get quote&unquote
5910 functions as arguments.
5911 (comint--complete-file-name-data): Adjust call accordingly.
5912 * pcomplete.el (pcomplete--table-subvert): Remove.
5913 (pcomplete-completions-at-point): Use comint--table-subvert instead.
5914
3dc61a09
SM
5915 * minibuffer.el (completion-table-case-fold): Use currying.
5916 (completion--styles-type, completion--cycling-threshold-type):
5917 New constants.
5918 (completion-styles, completion-category-overrides)
5919 (completion-cycle-threshold): Use them.
5920 * pcomplete.el (pcomplete-completions-at-point): Adjust call to
5921 completion-table-case-fold.
5922
8ea0a993
SB
59232011-10-03 Stephen Berman <stephen.berman@gmx.net>
5924
5925 * minibuffer.el (completion-category-overrides): Fix type of styles
5926 and add more user friendly tags (bug#9660).
5927
8c24b7f6
SM
59282011-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
5929
5930 * international/mule-cmds.el: Fix abuses of apply-partially (bug#9661).
5931 (mule-input-method-string): New widget.
5932 (default-input-method, language-info-custom-alist): Use it.
5933
428fe61a
SM
59342011-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
5935
32c1fffd
SM
5936 * pcomplete.el: Require comint.
5937 (pcomplete--common-suffix): Remove.
5938 (pcomplete--common-quoted-suffix): Use comint--common-suffix instead.
5939 (pcomplete--table-subvert): Sync with comint--table-subvert.
5940 (pcomplete--entries): Use comint-completion-file-name-table.
5941 * comint.el (comint-unquote-filename): Simplify.
5942 (comint-completion-file-name-table): New function (bug#9616).
5943 (comint--complete-file-name-data): Use it.
5944
428fe61a
SM
5945 * pcmpl-gnu.el (pcmpl-gnu-with-file-buffer): New macro (bug#9643).
5946 (pcmpl-gnu-tar-buffer): Remove.
5947 (pcmpl-gnu-with-file-buffer): Use it to avoid leaving the tar's buffer
9aaf2b9c
GM
5948 around. Make sure pcomplete-suffix-list is only changed temporarily.
5949 Don't look inside the tar's file if it's too large.
428fe61a 5950
04c52e2f
CY
59512011-10-01 Chong Yidong <cyd@stupidchicken.com>
5952
ce3cefcc
CY
5953 * cus-edit.el (custom-mode-map):
5954 * epa.el (epa-key-list-mode-map):
5955 * man.el (Man-mode-map):
5956 * startup.el (splash-screen-keymap):
5957 * simple.el (special-mode-map): Use scroll-up-command and
5958 scroll-down-command.
5959
5960 * progmodes/idlw-help.el (idlwave-help-mode-map):
5961 * progmodes/ebrowse.el (ebrowse-electric-position-mode-map):
5962 * net/newst-plainview.el (newsticker-mode-map):
5963 * emulation/ws-mode.el (wordstar-mode-map):
5964 * emulation/vi.el (vi-com-map):
5965 * calc/calc-graph.el (calc-graph-show-dumb):
5966 * term/sun.el (terminal-init-sun):
5967 * term/ns-win.el (global-map):
5968 * progmodes/grep.el (grep-mode-map):
5969 * progmodes/ebrowse.el (ebrowse-electric-list-mode-map):
5970 * mail/rmail.el (rmail-mode-map):
5971 * progmodes/cpp.el (cpp-edit-mode-map): Likewise.
5972
04c52e2f
CY
5973 * custom.el (custom-safe-themes, load-theme): Treat value of t for
5974 custom-safe-themes as special.
5975
79adf8c8
JD
59762011-10-01 Julien Danjou <julien@danjou.info>
5977
5978 * notifications.el (notifications-notify): Fix docstring.
5979
63bd50d3
PS
59802011-10-01 Per Starbäck <per@starback.se>
5981
5982 * pcmpl-gnu.el (pcomplete/tar): Fix tar-header-name call. (Bug#9643)
5983
199e4c7e
MR
59842011-09-30 Martin Rudalics <rudalics@gmx.at>
5985
5986 * startup.el (command-line-1): Fix last fix by inserting
5987 initial-scratch-message into *scratch* before displaying it.
cbc5ee22 5988 (Bug#9605) and (Bug#9636)
199e4c7e 5989
fe5f08dd
EZ
59902011-09-29 Eli Zaretskii <eliz@gnu.org>
5991
5992 * simple.el (line-move): If auto-hscroll-mode is disabled and the
5993 window is hscrolled, move by logical lines. (Bug#9607)
5994 (line-move-visual): Update the doc string to the above effect.
5995
b5516bbd
MR
59962011-09-29 Martin Rudalics <rudalics@gmx.at>
5997
ccee00c0
MR
5998 * window.el (display-buffer-record-window): When WINDOW is the
5999 selected window use `point' instead of `window-point'. (Bug#9626)
6000
b5516bbd
MR
6001 * startup.el (command-line-1): Use insert-before-markers when
6002 inserting initial-scratch-message. (Bug#9605)
ccee00c0 6003
b5516bbd
MR
6004 * help.el (help-window): Remove variable.
6005
52aa0014
GM
60062011-09-29 Glenn Morris <rgm@gnu.org>
6007
6008 * pcmpl-cvs.el (pcomplete/cvs): Add "status" handler.
6009
df9a7357
JB
60102011-09-29 Juanma Barranquero <lekktu@gmail.com>
6011
6012 * descr-text.el (describe-char-categories): Accept category
6013 descriptions more than one line long.
6014
a8406c20
SM
60152011-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
6016
88d9610c
SM
6017 * simple.el (delete-trailing-whitespace): Fix last change.
6018
a5daf810
SM
6019 * progmodes/perl-mode.el (perl-syntax-propertize-function):
6020 Don't confuse "y => 3" as the beginning of a `y' operation.
6021
a8406c20
SM
6022 * emacs-lisp/debug.el (debug-convert-byte-code): Don't assume the
6023 object has more than 4 slots (bug#9613).
6024
a239d4e9
JB
60252011-09-28 Juanma Barranquero <lekktu@gmail.com>
6026
6027 * subr.el (with-output-to-temp-buffer):
6028 * net/quickurl.el (quickurl, quickurl-browse-url):
6029 Fix typos in docstrings.
6030
693fbdb6
EZ
60312011-09-27 Eli Zaretskii <eliz@gnu.org>
6032
6033 * minibuffer.el (completion-styles)
6034 (completion-category-overrides): Cross reference each other in doc
6035 strings.
6036
8b457e28
GM
60372011-09-27 Glenn Morris <rgm@gnu.org>
6038
6039 * pcmpl-cvs.el (pcmpl-cvs-entries): Update for Emacs 22.1 changes
6040 to split-string. (Bug#9606)
6041
85a16208
LMI
60422011-09-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
6043
6044 * mail/smtpmail.el (smtpmail-via-smtp): Fix STARTTLS detection
6045 (bug#9615).
6046
502f9ebd
CY
60472011-09-27 Chong Yidong <cyd@stupidchicken.com>
6048
6049 * emacs-lisp/package.el (list-packages): Fix echo area message.
6050
7690bdea
LL
60512011-09-27 Leo Liu <sdl.web@gmail.com>
6052
6053 * ido.el (ido-read-internal): Accept cons cell HIST arg.
6054
e2ee6f30
MA
60552011-09-25 Michael Albinus <michael.albinus@gmx.de>
6056
6057 * net/dbus.el (dbus-unregister-object): Don't release services for
6058 registered signals. (Bug#9581)
6059
f3f98342
TZ
60602011-09-25 Teodor Zlatanov <tzz@lifelogs.com>
6061
6062 * progmodes/cfengine.el (cfengine-auto-mode): Add convenience
6063 function that picks between cfengine 2 and 3 support
6064 automatically. Update docs accordingly.
6065
dd7aa8dd
KH
60662011-09-22 Kenichi Handa <handa@m17n.org>
6067
6068 * language/ind-util.el (indian-tml-base-table): Add TAMIL DIGIT
6069 ZERO.
6070 (indian-itrans-v5-table-for-tamil): New variable.
6071 (indian-tml-itrans-v5-hash): Use the above variable (Bug#9336).
6072
3f2b07f8
KM
60732011-09-22 Ken Manheimer <ken.manheimer@gmail.com>
6074
6075 * allout.el (allout-this-command-hid-stuff): Buffer-local variable
6076 that's true if the current command involved collapsing of text.
6077 It's reset to false at the beginning of the next command.
6078 (allout-post-command-business): Move the cursor to the beginning
6079 of entry if the cursor is hidden and collapsing activity just
6080 happened.
6081
371d6a61
CY
60822011-09-24 Chong Yidong <cyd@stupidchicken.com>
6083
6084 * mouse.el (mouse-drag-track): Set scroll-margin to 0 while
6085 tracking (Bug#9541).
6086
2ac2721a
UJ
60872011-09-24 Ulf Jasper <ulf.jasper@web.de>
6088
6089 * net/newst-reader.el (newsticker-html-renderer)
1154d12e
JB
6090 (newsticker-show-news): Automatically load html rendering package
6091 if newsticker-html-renderer is set. Fixes "Warning: defvar ignored
6092 because w3m-fill-column is let-bound" and the error "Symbol's value
6093 as variable is void: w3m-fill-column".
2ac2721a 6094
fac7ae53
MA
60952011-09-24 Michael Albinus <michael.albinus@gmx.de>
6096
6097 * net/dbus.el (dbus-unregister-object): Remove match rule of signals.
6098 Release services only if they are defined. (Bug#9581)
6099
e08b633b
RS
61002011-09-23 Richard Stallman <rms@gnu.org>
6101
e488d29c
RS
6102 * textmodes/paragraphs.el (forward-sentence): For backwards case,
6103 distinguish start of paragraph from start of its text.
6104
19c38752
RS
6105 * mail/emacsbug.el (report-emacs-bug-query-existing-bugs): Autoload.
6106
e08b633b
RS
6107 * mail/rmail.el (rmail-view-buffer-kill-buffer-hook): New function.
6108 (rmail-generate-viewer-buffer): Put that hook on view buffer.
6109 (rmail-mode-kill-buffer-hook): Override that hook, to kill view buffer.
6110
0a39f27e
AS
61112011-09-23 Andreas Schwab <schwab@linux-m68k.org>
6112
6113 * international/mule-diag.el (mule-diag): Insert a newline after
6114 each fontset description.
6115
db4e950d
SM
61162011-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
6117
6118 * simple.el (delete-trailing-whitespace):
6119 Document last change; simplify.
6120
eca3f3ea
PW
61212011-09-23 Peter J. Weisberg <pj@irregularexpressions.net>
6122
d68e189a
PW
6123 * simple.el (delete-trailing-whitespace): Also delete
6124 extra newlines at the end of the buffer.
6125
eca3f3ea
PW
6126 * textmodes/picture.el: Make motion commands obey shift-select-mode.
6127 (picture-newline): Use forward-line so as to ignore fields.
6128
01c157cc
SM
61292011-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
6130
6131 * subr.el (with-wrapper-hook): Fix edebug spec.
6132
022de23e
LMI
61332011-09-23 Lars Magne Ingebrigtsen <larsi@gnus.org>
6134
6135 * simple.el (kill-line): Note effect of `show-trailing-whitespace'
6136 (bug#4538).
6137
91683089
MA
61382011-09-23 Michael Albinus <michael.albinus@gmx.de>
6139
eca3f3ea
PW
6140 * net/tramp-sh.el (tramp-sh-handle-file-name-all-completions):
6141 Fix nasty bug using wrong cached values.
91683089 6142
5bdd6fa4
AM
61432011-09-23 Alan Mackenzie <acm@muc.de>
6144
6145 * progmodes/cc-defs.el (c-version): Increase to 5.31.9.
6146
97adfb97
CY
61472011-09-23 Chong Yidong <cyd@stupidchicken.com>
6148
6149 * window.el (pop-to-buffer): Ensure right window is selected if we
6150 chose another frame.
6151
d4ef2b50
EZ
61522011-09-22 Eli Zaretskii <eliz@gnu.org>
6153
6154 * simple.el (what-cursor-position): Use get-char-property-change
6155 and next-single-char-property-change, to be able to show display
6156 properties that come from overlays as well as text properties.
6157
72258fe5
CY
61582011-09-22 Chong Yidong <cyd@stupidchicken.com>
6159
6160 * window.el (pop-to-buffer-same-window): New (reinstated) fun.
6161
6162 * cmuscheme.el (run-scheme, switch-to-scheme):
6163 * cus-edit.el (customize-group, custom-buffer-create)
6164 (customize-browse):
6165 * info.el (info):
6166 * shell.el (shell):
6167 * mail/sendmail.el (mail):
6168 * progmodes/inf-lisp.el (inferior-lisp): Use it (Bug#9532).
6169
8f098516
RS
61702011-09-22 Richard Stallman <rms@gnu.org>
6171
6172 * textmodes/paragraphs.el (forward-sentence): When setting PAR-BEG,
6173 move back only to line beg, don't move back over blank lines.
6174
e74f1bb6
MA
61752011-09-22 Michael Albinus <michael.albinus@gmx.de>
6176
6177 * files.el (copy-directory): Set directory attributes only in case
6178 they could be retrieved from the source directory. (Bug#9565)
6179
bfeef8b6
DK
61802011-09-22 Dima Kogan <dkogan@secretsauce.net> (tiny change)
6181
6182 * progmodes/hideshow.el (hs-looking-at-block-start-p)
6183 (hs-find-block-beginning, hs-hide-level-recursive):
6184 Ignore strings as well as comments. (Bug#9502)
6185
7e423bb8
AS
61862011-09-22 Andrew Schein <andrew@andrewschein.com> (tiny change)
6187
6188 * progmodes/sql.el (sql-comint-postgres):
6189 Convert port number to a string. (Bug#9566)
6190
b4d72fcf
MR
61912011-09-22 Martin Rudalics <rudalics@gmx.at>
6192
6193 * window.el (quit-window): Undedicate window when switching to
6194 previous buffer. Reported by Thierry Volpiatto
6195 <thierry.volpiatto@gmail.com>.
7f80c86d
MR
6196 (special-display-popup-frame): When popping up a new frame reset
6197 its previous buffers to nil. Simplify code.
b4d72fcf 6198
a7b88dc6
MA
61992011-09-21 Michael Albinus <michael.albinus@gmx.de>
6200
6201 * net/tramp.el (tramp-handle-shell-command): Set process sentinel
6202 and process filter, as done also in `shell-command'.
6203
cf4eacfd
MR
62042011-09-21 Martin Rudalics <rudalics@gmx.at>
6205
eca3f3ea 6206 * window.el (set-window-buffer-start-and-point):
1154d12e
JB
6207 Call set-window-start with NOFORCE argument t.
6208 Suggested by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
cf4eacfd
MR
6209 (quit-window): Reword doc-string. Handle new format of
6210 quit-restore parameter. Don't delete window if it has a
6211 previous buffer we can show instead of the present one.
6212 (display-buffer-record-window): Rewrite using a new format for
6213 the quit-restore window parameter
6214 (special-display-popup-frame, display-buffer-same-window)
6215 (display-buffer-reuse-window, display-buffer-pop-up-frame)
6216 (display-buffer-pop-up-window, display-buffer-use-some-window):
6217 Adapt symbol passed to display-buffer-record-window.
6218 * help.el (help-window-setup): Handle new format of quit-restore
6219 parameter.
6220
8d28cb95
SM
62212011-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
6222
94ab793f
SM
6223 * faces.el (face-list): Fix docstring (bug#9564).
6224
8d28cb95
SM
6225 * window.el (display-buffer--action-function-custom-type):
6226 Don't include internal functions in the Custom interface.
6227
3820edeb
JL
62282011-09-20 Juri Linkov <juri@jurta.org>
6229
6230 * info.el (Info-history-skip-intermediate-nodes): New defcustom.
6231 (Info-forward-node, Info-backward-node, Info-next-preorder)
6232 (Info-last-preorder): Use it. (Bug#9528)
6233
5147931d
JL
62342011-09-20 Juri Linkov <juri@jurta.org>
6235
6236 * info.el (Info-last-preorder): Visit last menu item only when
6237 `Info-scroll-prefer-subnodes' is non-nil (third test-case of bug#9528).
6238
cf499a1a
JD
62392011-09-20 Julien Danjou <julien@danjou.info>
6240
6241 * password-cache.el (password-cache-remove): Remove entries even if the
6242 value is nil, so that password with a nil value (negative caching) is
6243 possible to invalidate.
6244
f84e2fe2
LM
62452011-09-20 Lawrence Mitchell <wence@gmx.li>
6246
6247 * progmodes/f90.el (f90-break-line): If breaking inside comment delete
6248 all whitespace around breakpoint. (Bug#9553)
6249 (f90-find-breakpoint): Only break at whitespace inside a comment.
6250
78054a46
SM
62512011-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
6252
6253 * minibuffer.el (completion-file-name-table): Keep track of errors.
6254 (completion-table-with-predicate): Handle the case where pred1 is nil.
6255 * pcomplete.el (pcomplete-completions-at-point): Simplify.
6256
345083b2
SM
62572011-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
6258
e24e27be
SM
6259 * emacs-lisp/debug.el (debugger-args): Give it a docstring.
6260 (debugger-return-value): Signal an error if the debugging context does
6261 not await any return value.
6262
345083b2
SM
6263 * ps-mule.el (ps-mule-plot-string): Don't inf-loop (bug#5108).
6264 * image-mode.el (image-toggle-display-text)
6265 (image-toggle-display-image): Stay away from evil `intangible'.
6266
08d355e3
LL
62672011-09-19 Leo Liu <sdl.web@gmail.com>
6268
6269 * replace.el (occur-revert-arguments): Make it permanent-local.
6270 (occur-mode): Don't call font-lock-defontify.
6271
f01da43f
CY
62722011-09-19 Chong Yidong <cyd@stupidchicken.com>
6273
6274 * net/ldap.el (ldap-search-internal): Don't push empty search
6275 result (Bug#9508).
6276
b6072fa6
SM
62772011-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
6278
6279 * whitespace.el (whitespace-newline-mode): Disable it right (bug#9550).
6280
443d6696
MA
62812011-09-19 Michael Albinus <michael.albinus@gmx.de>
6282
6283 * net/tramp-sh.el (tramp-inline-compress-commands): Add "xz".
6284 Suggested by Liam Stitt <stittl@cuug.ab.ca>.
6285
7cc6e154
JL
62862011-09-18 Juri Linkov <juri@jurta.org>
6287
6288 * buff-menu.el (Buffer-menu-mode-map):
6289 * dired.el (dired-mode-map):
6290 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map)
6291 (lisp-interaction-mode-map):
6292 * emacs-lisp/package.el (package-menu-mode-map):
6293 * epa.el (epa-key-list-mode-map):
6294 * menu-bar.el (menu-bar-showhide-tool-bar-menu)
6295 (menu-bar-options-menu):
6296 * outline.el (outline-mode-menu-bar-map):
6297 * vc/vc-bzr.el (vc-bzr-shelve-menu-map, vc-bzr-extra-menu-map):
6298 * vc/vc-dir.el (vc-dir-menu-map):
6299 * vc/vc-git.el (vc-git-stash-menu-map, vc-git-extra-menu-map):
6300 Capitalize non-function content words in menu item strings.
6301
6302 * dired.el (dired-mode-map): Add menu item for
6303 `image-dired-dired-toggle-marked-thumbs'.
6304
80302a81
JL
63052011-09-18 Juri Linkov <juri@jurta.org>
6306
6307 * isearch.el (isearch-edit-string): Bind `isearch-new-case-fold'
6308 to `isearch-case-fold-search' and restore its original value
6309 after the `isearch-mode' call.
6310
46c5cf66
JL
63112011-09-18 Juri Linkov <juri@jurta.org>
6312
6313 * progmodes/grep.el (grep-process-setup): Don't check code for 1
6314 because `zgrep' returns 1 for successful matches (bug#9226).
6315
d18b513b
JL
63162011-09-18 Juri Linkov <juri@jurta.org>
6317
6318 * info.el (Info-extract-menu-node-name): Check the second match
6319 for empty string (second test-case of bug#9528).
6320 (Info-last-preorder): Let-bind `Info-history' to nil to not add
6321 intermediate nodes to the history (first test-case of bug#9528).
6322
72753f87
JL
63232011-09-18 Juri Linkov <juri@jurta.org>
6324
6325 * info.el (Info-mode-syntax-table): New variable.
1154d12e 6326 (Info-mode): Set `:syntax-table' to `Info-mode-syntax-table' (bug#3312).
72753f87 6327
c9384295
JL
63282011-09-18 Juri Linkov <juri@jurta.org>
6329
1154d12e
JB
6330 * info.el (Info-file-supports-index-cookies):
6331 Increment line-beginning-position's arg from 3 to 4 because makeinfo
6332 outputs one more line for long file names (bug#4142).
c9384295 6333
d473dce8
CY
63342011-09-18 Chong Yidong <cyd@stupidchicken.com>
6335
6336 * newcomment.el (comment-normalize-vars): If prompting for
6337 comment-start, set comment-start-skip too (Bug#8424).
6338
2176854d
JB
63392011-09-18 Johan Bockgård <bojohan@gnu.org>
6340
6341 * icomplete.el: Fix previous fix of Bug#5849.
6342 (icomplete-mode): Don't set completion-show-inline-help.
6343 (icomplete-minibuffer-setup): Set completion-show-inline-help
6344 locally during icompletion.
6345
3aace4e4
CY
63462011-09-18 Chong Yidong <cyd@stupidchicken.com>
6347
c940224f
CY
6348 * woman.el (woman2-process-escapes): Don't delete unrecognized
6349 escapes (Bug#7843).
6350
3aace4e4
CY
6351 * files.el (inhibit-first-line-modes-regexps): Add image files.
6352 (hack-local-variables-prop-line): Return nil for malformed
6353 prop-lines (Bug#9044).
6354
710dec63
MA
63552011-09-18 Michael Albinus <michael.albinus@gmx.de>
6356
6357 * net/tramp.el (top): Don't require 'shell.
6358 (tramp-methods): Fix docstring.
6359 (tramp-get-remote-tmpdir): New defun, moved from tramp-sh.el.
8d28cb95
SM
6360 Return complete remote file name. Handle "smb" case.
6361 Use `tramp-tmpdir', if defined for the respective method.
710dec63
MA
6362 (tramp-make-tramp-temp-file): Adapt call of `tramp-get-remote-tmpdir'.
6363
6364 * net/tramp-compat.el (top): Require 'shell.
6365
6366 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band)
6367 (tramp-maybe-open-connection): Use `tramp-file-name-real-host' for
6368 `tramp-current-host'.
6369 (tramp-get-remote-tmpdir): Remove.
6370
6371 * net/tramp-smb.el (tramp-methods): Add `tramp-remote-shell' and
6372 `tramp-tmpdir' entries.
6373 (tramp-smb-errors): Add "NT_STATUS_IMAGE_ALREADY_LOADED".
6374 (tramp-smb-handle-file-attributes): Ignore errors.
6375 (tramp-smb-wait-for-output): Check also for process end.
6376
5d5ac8ec
LMI
63772011-09-18 Lars Magne Ingebrigtsen <larsi@gnus.org>
6378
6379 * mail/smtpmail.el (smtpmail-via-smtp): Ignore errors that arise
6380 when sending QUIT (bug#9312).
6381
8c0f49f0
CY
63822011-09-17 Chong Yidong <cyd@stupidchicken.com>
6383
6384 * replace.el (occur-mode-map): Rebind occur-edit-mode to "e" (Bug#8463).
6385 (occur-edit-mode-map): Bind C-c C-c to occur-cease-edit and C-o to
6386 occur-mode-display-occurrence.
6387 (occur-edit-mode): Add usage message.
6388 (occur-cease-edit): New command.
6389 (occur-after-change-function): Use text properties to find the
6390 position of the prefix text.
6391 (occur-engine): Set stickiness of prefix text properties.
6392
8f1383f7
GM
63932011-09-17 Glenn Morris <rgm@gnu.org>
6394
6395 * progmodes/etags.el (complete-tag):
6396 Fix call to completion-in-region. (Bug#9526)
6397
744ba0e3
JL
63982011-09-17 Juri Linkov <juri@jurta.org>
6399
6400 * textmodes/ispell.el (ispell-word): Add to the error message
6401 the word, ispell program name and current dictionary (bug#9121).
6402 (ispell-tex-arg-end): Capitalize "error" in the error message.
6403
d9bbf400
AS
64042011-09-17 Andreas Schwab <schwab@linux-m68k.org>
6405
6406 * emacs-lisp/bytecomp.el (byte-compile-lapcode): Fix overflow
6407 check. (Bug#4251)
6408
8da11505
JL
64092011-09-17 Juri Linkov <juri@jurta.org>
6410
6411 * window.el (window-safe-min-height, window-safe-min-width):
6412 Fix typos (followup to bug#9522).
6413
a91adc7e
SJ
64142011-09-17 Sven Joachim <svenjoac@gmx.de>
6415
6416 * window.el (window-min-width, window-state-put): Fix typos (bug#9522).
6417
064f328a
EZ
64182011-09-16 Eli Zaretskii <eliz@gnu.org>
6419
6420 * simple.el (line-move): If goal-column is set, move by logical
6421 lines, not by display lines. (Bug#971)
6422 (next-line, previous-line, goal-column, line-move-visual): Doc fix
6423 to reflect the above change.
6424
e69df516
SM
64252011-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
6426
6427 * image.el (imagemagick-register-types): Use regexp-opt.
6428
cbb0f9ab
CY
64292011-09-15 Chong Yidong <cyd@stupidchicken.com>
6430
6431 * window.el (display-buffer-base-action): Rename from
6432 display-buffer-default-action. Make default value empty.
6433 (display-buffer-overriding-action): Convert to defvar.
6434 (display-buffer-fallback-action): New var.
6435
25322144
CY
64362011-09-15 Chong Yidong <cyd@stupidchicken.com>
6437
6438 * emacs-lisp/package.el (package-alist): Fix risky-local-variable
6439 declaration.
6440 (package--add-to-archive-contents): If there is a duplicate entry
6441 with an older version, remove it.
6442 (package-menu-mark-delete, package-menu-mark-install)
6443 (package-menu-mark-unmark): Make unused args optional.
e69df516
SM
6444 (package-menu-mark-obsolete-for-deletion):
6445 Use package-menu-get-status instead of a regexp search.
25322144
CY
6446 (package-menu-get-status): Use tabulated-list-entry.
6447 (package-menu-mark-upgrades): New command.
d770725a 6448 (package-menu-mode-map): Bind it to U. Add it to menu bar.
25322144
CY
6449 (package-menu-execute): Do installation before deletion.
6450 (package-menu-refresh, package-menu-execute): Use derived-mode-p
6451 instead of checking major-mode.
6452 (package-menu--find-upgrades): New function.
6453
7520339c
LMI
64542011-09-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
6455
6456 * mail/smtpmail.el (smtpmail-send-command): Don't include AUTH
6457 passwords in the log buffer.
65a046c4
LMI
6458 (smtpmail-process-filter): Update the process marker so that the
6459 "broken by peer" status message is inserted in the right place.
7520339c 6460
d3c30954
SM
64612011-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
6462
3fe48822
SM
6463 * textmodes/bibtex.el (bibtex-complete-string-cleanup)
6464 (bibtex-complete-crossref-cleanup): Adjust to accommodate needs of
6465 bibtex-completion-at-point-function.
6466 (bibtex-completion-at-point-function): Use them.
6467
1b8b3954
SM
6468 * newcomment.el (comment-add, comment-valid-prefix-p): Docfix.
6469
d3c30954
SM
6470 * mpc.el (mpc-constraints-tag-lookup): New function.
6471 (mpc-constraints-restore): Use it to make jumping to "album=Foo" apply
6472 also to browser "album|playlist".
6473
72779976
JL
64742011-09-14 Juri Linkov <juri@jurta.org>
6475
6476 * isearch.el (isearch-fail-pos): Add new arg `msg'. Doc fix.
6477 (isearch-edit-string): Use length of `isearch-string' when
6478 `isearch-fail-pos' returns nil.
6479 (isearch-message): Remove duplicate code and call
6480 `isearch-fail-pos' with arg `t'.
6481
a0bf2bcd
CY
64822011-09-14 Chong Yidong <cyd@stupidchicken.com>
6483
17bb0a2d
CY
6484 * replace.el (occur-mode-goto-occurrence): Don't force using other
6485 window (Bug#9499).
6486
a0bf2bcd
CY
6487 * dired-aux.el (dired-do-chmod): Don't provide initial input.
6488
f678e0b6
MR
64892011-09-14 Martin Rudalics <rudalics@gmx.at>
6490
6491 * window.el (display-buffer-window): Remove.
6492 (display-buffer-record-window): Use help-setup window parameter
6493 instead of variable display-buffer-window.
6494 (display-buffer-function, special-display-buffer-names)
6495 (special-display-function): Mention help-setup parameter instead
6496 of display-buffer-window in doc-string.
d3c30954
SM
6497 * help.el (help-window-setup): New argument help-window.
6498 Use help-window-setup parameter instead of display-buffer-window.
f678e0b6
MR
6499 Reword some messages.
6500 (with-help-window): Pass window used for displaying the buffer
6501 to help-window-setup. Don't set display-buffer-window.
6502
8e39b2e8
GM
65032011-09-13 Glenn Morris <rgm@gnu.org>
6504
6505 * emacs-lisp/debug.el (debugger-make-xrefs):
6506 Preserve point. (Bug#9462)
6507
85e9c04b
CY
65082011-09-13 Chong Yidong <cyd@stupidchicken.com>
6509
6510 * window.el (window-deletable-p): Use next-frame.
6511
1b36ed6a
MR
65122011-09-13 Martin Rudalics <rudalics@gmx.at>
6513
6514 * window.el (window-auto-delete): Remove.
6515 (window-deletable-p): Remove argument FORCE. Don't deal with
e4769531 6516 dedication and previous buffers.
1b36ed6a
MR
6517 (switch-to-prev-buffer): Don't delete window.
6518 (delete-windows-on): Delete a window's frame if and only if the
6519 window is dedicated.
6520 (replace-buffer-in-windows): Delete buffer's window or frame if
6521 and only if window is dedicated.
6522 (quit-window): Handle quit-restore as before last change.
4d61f28d 6523 (bury-buffer): Delete window only if window-deletable-p returns t.
1b36ed6a 6524
ef8ef9fb
CY
65252011-09-13 Chong Yidong <cyd@stupidchicken.com>
6526
6527 * window.el (window-deletable-p): Never delete the last frame on a
6528 given terminal.
6529
b2cba41e
GM
65302011-09-13 Glenn Morris <rgm@gnu.org>
6531
6532 * help.el (describe-key-briefly): Copy previous standard-output change.
6533
51553db6 65342011-09-13 PJ Weisberg <pj@irregularexpressions.net>
e3ce671f
PW
6535
6536 * help.el (where-is): Respect non-standard standard-output. (Bug#9030)
6537
b7556719
GM
65382011-09-13 Glenn Morris <rgm@gnu.org>
6539
6540 * emacs-lisp/lisp-mode.el (lisp-indent-function):
6541 * progmodes/scheme.el (scheme-indent-function): Doc fixes.
6542
64b51947
CY
65432011-09-12 Chong Yidong <cyd@stupidchicken.com>
6544
6545 * dired-aux.el (dired-mark-read-string): Don't return default
6546 value on empty input (Bug#9361).
6547 (dired-do-chxxx): Treat empty input for "touch" as no -t option.
6548 Omit initial minibuffer contents.
6549 (dired-do-chmod): Signal an error on empty input.
6550 (dired-mark-read-string): Don't return default on empty input.
6551
6552 * files.el (file-modes-symbolic-to-number): Doc fix.
6553
393a301e
SM
65542011-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
6555
6556 * international/mule-cmds.el (ucs-completions): Remove.
6557 (read-char-by-name): Use complete-with-action instead; add metadata.
6558
fa5660f9
CY
65592011-09-11 Chong Yidong <cyd@stupidchicken.com>
6560
6561 * window.el (display-buffer--action-function-custom-type)
6562 (display-buffer--action-custom-type): New vars.
6563 (display-buffer-alist, display-buffer-default-action)
6564 (display-buffer-overriding-action): Add defcustom types.
6565
4a592f66
CY
6566 * frame.el (delete-other-frames): Doc fix (Bug#276).
6567
73d56dbd
LMI
65682011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
6569
6570 * play/doctor.el (make-doctor-variables): Define `doctor-sent'.
6571
37ac18a3
CY
65722011-09-11 Chong Yidong <cyd@stupidchicken.com>
6573
6574 Change modes that used same-window-* vars to use switch-to-buffer.
6575
6576 * progmodes/gdb-mi.el (gdb-restore-windows, gdb-setup-windows):
6577 Use switch-to-buffer.
6578
6579 * cus-edit.el (customize-group, custom-buffer-create)
393a301e
SM
6580 (customize-browse, custom-buffer-create-other-window):
6581 Use switch-to-buffer or switch-to-buffer-other-window.
37ac18a3
CY
6582
6583 * info.el (info, Info-find-node, Info-revert-find-node, Info-next)
6584 (Info-prev, Info-up, Info-speedbar-goto-node)
6585 (info-display-manual): Use switch-to-buffer.
6586 (Info-speedbar-goto-node): Use switch-to-buffer-other-frame.
6587
6588 * mail/sendmail.el (mail): Use switch-to-buffer.
6589 (mail-recover): Use switch-to-buffer-other-window.
6590
6591 * cmuscheme.el (run-scheme, switch-to-scheme):
6592 * ielm.el (ielm):
6593 * shell.el (shell):
6594 * net/rlogin.el (rlogin):
6595 * net/telnet.el (telnet, rsh):
6596 * progmodes/inf-lisp.el (inferior-lisp): Use switch-to-buffer.
6597
10195bd6
AS
65982011-09-11 Andreas Schwab <schwab@linux-m68k.org>
6599
6600 * dired.el (dired-sort-toggle-or-edit): Revert last changes.
6601
b322f63a
LMI
66022011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
6603
39d7fed6
LMI
6604 * dired.el (dired-sort-toggle-or-edit): -o doesn't exist on *BSD,
6605 so don't mention it (bug#9301).
ba5a81f1 6606 (dired-sort-toggle-or-edit): Clarify string further.
39d7fed6 6607
ee0e9f11
LMI
6608 * faces.el (face-spec-set-match-display): Make `(type graphic)'
6609 match `x', `w32' and `ns', like the manual says (bug#9029).
6610
0b1c89c1 6611 * subr.el (eval-after-load): Doc string clarification (bug#9125).
da9fcb93
LMI
6612 (process-kill-buffer-query-function): Mention the buffer name in
6613 the query.
0b1c89c1 6614
77549ea8
LMI
6615 * image-mode.el (image-next-line): The line parameter is mandatory
6616 (bug#9258).
6617
803ef892
LMI
6618 * dired.el (dired-sort-toggle-or-edit): Mention -o and -g, too,
6619 which can be useful (bug#9301).
6620
12980837
LMI
6621 * textmodes/flyspell.el: Remove obsolete comment (bug#9368).
6622
91054f8f
LMI
6623 * subr.el (match-string): Mention that the current buffer should
6624 be the same as the search was done in (bug#9282).
6625
b322f63a
LMI
6626 * facemenu.el: Disable the remove-* commands if the mark isn't
6627 active (bug#9162).
6628
3199b96f
CY
66292011-09-10 Chong Yidong <cyd@stupidchicken.com>
6630
6631 * buff-menu.el (Buffer-menu-switch-other-window): Use second arg
6632 of display-buffer.
6633 (Buffer-menu-2-window): Use switch-to-buffer-other-window.
6634
6635 * replace.el (occur-mode-goto-occurrence)
6636 (occur-mode-display-occurrence) Use second arg of pop-to-buffer
6637 and display-buffer.
6638
6639 * mail/reporter.el (reporter-submit-bug-report): Use second arg of
6640 display-buffer.
6641
6642 * mail/sendmail.el (sendmail-user-agent-compose): Don't bind the
6643 special-display and same-window variables.
6644 (mail-other-window): Use switch-to-buffer-other-window.
6645 (mail-other-frame): USe switch-to-buffer-other-frame.
6646
393a301e
SM
6647 * progmodes/gdb-mi.el (gdb-frame-gdb-buffer):
6648 Use display-buffer-other-frame.
3199b96f
CY
6649 (gdb-display-gdb-buffer): Use pop-to-buffer.
6650
6651 * progmodes/gud.el (gud-goto-info): Use info-other-window.
6652
6653 * progmodes/python.el: Don't set same-window-buffer-names.
6654
6655 * textmodes/bibtex.el (bibtex-search-entry): Use switch-to-buffer.
6656
6657 * window.el (display-buffer-alist): Add *Python*.
6658
8319e0bf
CY
66592011-09-10 Chong Yidong <cyd@stupidchicken.com>
6660
6661 * window.el (display-buffer-alist): Add entry for buffers
6662 previously handled same-window-*.
6663 (display-buffer-alist, display-buffer-default-action)
6664 (display-buffer-overriding-action): Mark as risky.
6665 (display-buffer-alist): Document action function changes.
6666 (display-buffer--same-window-action)
6667 (display-buffer--other-frame-action): New variables.
6668 (switch-to-buffer, display-buffer-other-frame): Use them.
6669 (display-buffer): Rename reuse-frame entry to reusable-frames.
6670 (display-buffer-reuse-selected-window): Function deleted.
6671 (display-buffer-reuse-window): Handle reusable-frames alist entry.
6672 If it's omitted, check pop-up-frames/display-buffer-reuse-frames.
6673 (display-buffer-special): New function.
6674 (display-buffer--maybe-pop-up-frame-or-window): Rename from
6675 display-buffer-reuse-or-pop-window. Split off special-display
6676 part into display-buffer-special.
6677 (display-buffer-use-some-window): Don't perform any special
6678 pop-up-frames handling.
6679 (pop-to-buffer): Use window-normalize-buffer-to-switch-to.
393a301e 6680 (display-buffer--maybe-same-window): Rename from
0d3ff375 6681 display-buffer-maybe-same-window.
8319e0bf 6682
919a69aa
CY
6683 * info.el: Don't set same-window-regexps.
6684 (info-setup): New function.
6685 (info-other-window, info): Call it.
6686
6687 * cus-edit.el: Don't set same-window-regexps.
6688 (customize-group): New argument.
6689 (customize-group-other-window): Use it.
6690 (customize-face, customize-face-other-window): Likewise.
6691 (custom-buffer-create-other-window): Use pop-to-buffer directly.
6692
8319e0bf
CY
6693 * net/rlogin.el:
6694 * net/telnet.el:
6695 * progmodes/gud.el: Don't set same-window-regexps.
6696
6697 * cmuscheme.el:
6698 * ielm.el:
6699 * shell.el:
6700 * mail/sendmail.el:
6701 * progmodes/inf-lisp.el: Don't set same-window-buffer-names.
6702
25173000
JL
67032011-09-10 Juri Linkov <juri@jurta.org>
6704
6705 * isearch.el (isearch-edit-string): Remove obsolete mention of
6706 `C-w' (`isearch-yank-word-or-char') from docstring.
6707 (isearch-query-replace): Fix typo in docstring (bug#9466).
6708
056e44ef
JL
67092011-09-10 Juri Linkov <juri@jurta.org>
6710
6711 * paren.el (show-paren-function): Don't show escaped parens.
6712 Let-bind `unescaped' to `t' when paren is not escaped. (Bug#9461)
6713
c3760c17
EZ
67142011-09-10 Eli Zaretskii <eliz@gnu.org>
6715
6716 * mail/sendmail.el (mml-to-mime, mml-attach-file)
6717 (mm-default-file-encoding): Remove autoload forms, they are
6718 replaced with autoload cookies in mml.el and mm-encode.el.
6719 (mail-add-attachment): New command.
6720 (mail-mode-map): Add a menu-bar item for mail-add-attachment.
6721 (mail-mode): Mention mail-insert-file and mail-add-attachment in
6722 the doc string.
6723 (mml-to-mime, mml-attach-file, mm-default-file-encoding): Declare.
6724
fece895e
RT
67252011-09-10 Reuben Thomas <rrt@sc3d.org>
6726
e69df516
SM
6727 * simple.el (count-words-region): Use buffer if there's no region
6728 (bug#9429).
fece895e 6729
5e68ce4a
JL
67302011-09-09 Juri Linkov <juri@jurta.org>
6731
6732 * wdired.el (wdired-change-to-wdired-mode): Set buffer-local
6733 `isearch-filter-predicate' to `wdired-isearch-filter-read-only'.
6734 (wdired-isearch-filter-read-only): New function. (Bug#6362)
6735
0a6b9622
AM
67362011-09-09 Alan Mackenzie <acm@muc.de>
6737
6738 * progmodes/cc-mode.el (awk-mode): Prevent `define-derived-mode'
6739 spuriously generating `awk-mode-syntax-table'. (Bug #9448).
6740
14a29deb
EZ
67412011-09-09 Eli Zaretskii <eliz@gnu.org>
6742
6743 Fix for Savannah bug#9392.
6744 * simple.el (mail-encode-mml): New defvar.
6745
6746 * mail/rmail.el (mail-encode-mml): Add a defvar.
6747 (rmail-enable-mime-composing): Default to t.
6748 (rmail-forward): Use MIME method of forwarding only if both
6749 rmail-enable-mime-composing and rmail-enable-mime are non-nil.
6750 Set mail-encode-mml non-nil if the MIME method was used.
6751
6752 * mail/sendmail.el (mml-to-mime): Add autoload form.
6753 (mail-encode-mml): Add a defvar.
6754 (mail-mode): Make mail-encode-mml buffer-local and initialize it
6755 to nil.
6756 (mail-send): If mail-encode-mml is non-nil, run the outgoing
6757 message through mml-to-mime, and reset mail-encode-mml to nil.
6758
28c45130
GM
67592011-09-09 Glenn Morris <rgm@gnu.org>
6760
6761 * woman.el (woman-if-body): When processing an .el block,
6762 do not delete the next .el block as well. (Bug#9447)
69f4b618 6763 (woman-special-characters): Add oq, cq, and hy characters.
28c45130 6764
9b1c252e
MR
67652011-09-08 Martin Rudalics <rudalics@gmx.at>
6766
6767 * window.el (window-deletable-p): Make sure window is live before
6768 invoking window-prev-buffers.
6769
567457e3
LL
67702011-09-08 Leo Liu <sdl.web@gmail.com>
6771
6772 * net/rcirc.el (rcirc-cmd-invite): New rcirc command. (Bug#9453)
6773
97f05794
JL
67742011-09-08 Juri Linkov <juri@jurta.org>
6775
6776 * progmodes/compile.el (compilation-environment): Make it
6777 a defcustom (bug#8340).
6778
8b0874b5
MR
67792011-09-08 Martin Rudalics <rudalics@gmx.at>
6780
6781 * window.el (frame-auto-delete): Rename to window-auto-delete.
6782 Make it control auto-deletion of windows and/or frames.
6783 (window-deletable-p): New argument FORCE. Rewrite conditions
5e617bc2 6784 for deleting window/frame. (Bug#9419)
8b0874b5
MR
6785 (switch-to-prev-buffer, replace-buffer-in-windows, quit-window):
6786 Rewrite handling of case when window/frame can be deleted.
6787 (delete-windows-on): Call window-deletable-p with new FORCE
5e617bc2 6788 argument t. (Bug#9456)
8b0874b5 6789
4feb6e73
CY
67902011-09-07 Chong Yidong <cyd@stupidchicken.com>
6791
6792 * help-mode.el (help-mode): Restore autoload.
6793
91ab9c13
JL
67942011-09-07 Juri Linkov <juri@jurta.org>
6795
6796 * progmodes/compile.el (compilation-start): Let-bind `thisenv' to
6797 `compilation-environment'. Set buffer-local
6798 `compilation-environment' to `thisenv' later after (funcall mode).
6799 (Bug#8340)
6800
6801 * vc/vc-git.el (vc-git-grep): Remove --no-color. (Bug#9408)
6802 (vc-git-grep): Prepend "PAGER=" to `compilation-environment'
6803 instead of replacing its value. (Bug#8340)
6804
0527e251
JL
68052011-09-07 Juri Linkov <juri@jurta.org>
6806
6807 * progmodes/grep.el (grep-regexp-alist): Calculate column positions
6808 based on text properties put by `grep-filter' instead of matching
6809 escape sequences.
6810 (grep-mode): Set buffer-local `compilation-error-screen-columns'
6811 to the value of `grep-error-screen-columns' (bug#9438).
6812
249f792c
JL
68132011-09-07 Juri Linkov <juri@jurta.org>
6814
6815 * simple.el (next-error-highlight, next-error-highlight-no-select):
6816 Doc fix (bug#9432).
6817
ff7271b9
OT
68182011-09-07 OKAZAKI Tetsurou <okazaki.tetsurou@gmail.com> (tiny change)
6819
6820 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
6821 Check for null c-opt-block-decls-with-vars-key. (Bug#9443)
6822
183fc730
LL
68232011-09-07 Leo Liu <sdl.web@gmail.com>
6824
6825 * net/rcirc.el (rcirc-mode): Conditionally initialize
6826 rcirc-input-ring.
6827
77694924
SM
68282011-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
6829
6830 * emacs-lisp/find-func.el (find-function-C-source): Only set
6831 find-function-C-source-directory after checking that we found a source
6832 file there (bug#9440).
6833
d809b8eb
AM
68342011-09-06 Alan Mackenzie <acm@muc.de>
6835
6836 * isearch.el (isearch-other-meta-char): Wherever a key list is
6837 unread, "unread" the prefix arg, too. This fixes bug #8901.
6838
453de99f
OG
68392011-09-05 Oleksandr Gavenko <gavenkoa@gmail.com> (tiny change)
6840
6841 * progmodes/grep.el (rgrep): Add "-type d" (bug#9414).
6842
90439906
JL
68432011-09-05 Juri Linkov <juri@jurta.org>
6844
6845 * progmodes/grep.el (grep-process-setup): Fix comments (bug#8084).
6846
f62bd846
JL
68472011-09-05 Juri Linkov <juri@jurta.org>
6848
6849 * progmodes/grep.el (grep-filter): Avoid incomplete processing by
6850 keeping point where processing of grep matches begins, and
6851 continue to delete remaining escape sequences from the same point.
6852 (grep-filter): Make leading zero optional in "0?1;31m" because
6853 git-grep emits "\033[1;31m" escape sequences unlike expected
6854 "\033[01;31m" as GNU Grep does (bug#9408).
6855 (grep-process-setup): Replace obsolete "ml=" with newer "sl=".
6856
045820ec
JL
68572011-09-05 Juri Linkov <juri@jurta.org>
6858
6859 * subr.el (y-or-n-p): Capitalize "yes".
6860
f5e29b9b
MA
68612011-09-04 Michael Albinus <michael.albinus@gmx.de>
6862
6863 * net/tramp.el (top): Require 'shell. Use `tramp-unload-hook' but
6864 `tramp-cache-unload-hook' where appropriate.
6865 (tramp-methods): Rename `tramp-remote-sh' to
6866 `tramp-remote-shell'. Add `tramp-remote-shell-args'.
6867 (tramp-handle-shell-command): New defun, moved from tramp-sh.el.
6868
6869 * net/tramp-sh.el (top): Don't require 'shell.
6870 (tramp-methods): Add `tramp-remote-shell' and
6871 `tramp-remote-shell-args' entries.
6872 (tramp-sh-file-name-handler-alist): Use `tramp-handle-shell-command'.
6873 (tramp-sh-handle-shell-command): Remove.
6874 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
6875 Use `tramp-remote-shell'.
6876
2784c434
CY
68772011-09-03 Chong Yidong <cyd@stupidchicken.com>
6878
393a301e 6879 * mail/sendmail.el (sendmail-query-once-function): Delete.
2784c434
CY
6880 (sendmail-query-once): Save directly to send-mail-function.
6881 Update message-send-mail-function too.
6882
6883 * mail/smtpmail.el (smtpmail-try-auth-methods): Clarify prompt.
6884
464cdf56
CS
68852011-09-03 Christoph Scholtes <cschol2112@googlemail.com>
6886
6887 * progmodes/python.el (python-mode-map): Use correct function to
6888 start python interpreter from menu-bar (as reported by Geert
6889 Kloosterman).
6890 (inferior-python-mode-map): Fix typo.
393a301e 6891 (python-shell-map): Remove.
464cdf56 6892
d37e5c87
DD
68932011-09-03 Deniz Dogan <deniz@dogan.se>
6894
6895 * net/rcirc.el (rcirc-print): Simplify code for
6896 rcirc-scroll-show-maximum-output. There is no need to walk
6897 through all windows to find the right one.
6898
f3ada0ee
CS
68992011-09-03 Christoph Scholtes <cschol2112@googlemail.com>
6900
6901 * help.el (help-return-method): Doc fix.
6902
1f3c99ca
MR
69032011-09-03 Martin Rudalics <rudalics@gmx.at>
6904
6905 * window.el (window-deletable-p): Don't return a non-nil value
6906 when there's a buffer that was shown in the window before.
6907 (Bug#9419)
393a301e
SM
6908 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
6909 Set window's previous buffers to nil.
1f3c99ca 6910
a3cf097f
EZ
69112011-09-03 Eli Zaretskii <eliz@gnu.org>
6912
6913 * mail/rmailmm.el (rmail-mime-insert-tagline): Insert an extra
6914 newline before and after the tag line, so it doesn't interfere
6915 with determining the paragraph direction of bidirectional text.
6916
3d03de90
LL
69172011-09-03 Leo Liu <sdl.web@gmail.com>
6918
6919 * files.el (find-file-not-true-dirname-list): Remove. (Bug#9422)
6920
c3313451
CY
69212011-09-02 Chong Yidong <cyd@stupidchicken.com>
6922
393a301e 6923 * window.el (pop-to-buffer-1, pop-to-buffer-same-window): Delete.
c3313451
CY
6924 (pop-to-buffer): Change interactive spec. Pass second argument
6925 directly to display-buffer.
6926 (display-buffer): Fix interactive spec. Use functionp to
6927 distinguish between a function and a list of functions.
6928
6929 * abbrev.el (edit-abbrevs):
6930 * arc-mode.el (archive-extract):
6931 * autoinsert.el (auto-insert):
6932 * bookmark.el (bookmark-bmenu-list):
6933 * files.el (find-file):
6934 * view.el (view-buffer):
6935 * progmodes/compile.el (compilation-goto-locus):
6936 * textmodes/bibtex.el (bibtex-initialize): Use switch-to-buffer.
6937
89894cd8
CY
69382011-09-02 Chong Yidong <cyd@stupidchicken.com>
6939
6940 * window.el (display-buffer-alist): Doc fix.
6941 (display-buffer): Add docstring. Don't treat
6942 display-buffer-default specially.
6943 (display-buffer-reuse-selected-window)
6944 (display-buffer-same-window, display-buffer-maybe-same-window)
6945 (display-buffer-reuse-window, display-buffer-pop-up-frame)
6946 (display-buffer-pop-up-window)
6947 (display-buffer-reuse-or-pop-window)
6948 (display-buffer-use-some-window): New functions.
6949 (display-buffer-default-action): Use them.
393a301e 6950 (display-buffer-default): Delete.
89894cd8
CY
6951 (pop-to-buffer-1): Fix choice of actions.
6952
ae0bc9fb
SM
69532011-09-02 Stefan Monnier <monnier@iro.umontreal.ca>
6954
6955 * minibuffer.el (completion--insert-strings): Don't get confused by
6956 completion entries that end with an LF char.
6957
e9d90883
EZ
69582011-09-01 Eli Zaretskii <eliz@gnu.org>
6959
6960 * window.el (frame-auto-delete, window-deletable-p): Doc fix.
6961
437014c8
CY
69622011-09-01 Chong Yidong <cyd@stupidchicken.com>
6963
6964 * window.el (display-buffer): Restore interactive spec.
ae0bc9fb
SM
6965 (display-buffer-same-window, display-buffer-other-window):
6966 New functions.
437014c8
CY
6967 (pop-to-buffer-1): New function. Use the above.
6968 (pop-to-buffer, pop-to-buffer-same-window): Use it.
ae0bc9fb 6969 (pop-to-buffer-other-window, pop-to-buffer-other-frame): Delete.
437014c8
CY
6970
6971 * view.el (view-buffer-other-window, view-buffer-other-frame):
6972 Just use pop-to-buffer.
6973
a5e063d5
TV
69742011-09-01 Thierry Volpiatto <thierry.volpiatto@gmail.com>
6975
6976 * vc/vc-rcs.el (vc-rcs-responsible-p): Handle directories. (Bug#9391)
6977
793d32bb
WH
69782011-09-01 Wilfred Hughes <wilfred@potatolondon.com> (tiny change)
6979
6980 * vc/vc-git.el (vc-git-grep): Use --no-color. (Bug#9408)
6981
d65e4c15
RS
69822011-08-31 Richard Stallman <rms@gnu.org>
6983
6984 * mail/rmail.el (rmail-epa-decrypt): Rewrite to take account
6985 of the separation of rmail-view-buffer from rmail-buffer.
6986 If you say no to "replace original", the decrypt is in the
6987 view buffer. If you say yes, the decrypt goes into the
6988 rmail buffer also.
6989
f818cd2a
MR
69902011-08-31 Martin Rudalics <rudalics@gmx.at>
6991
6992 * window.el (display-buffer-window): Rewrite doc-string.
6993 (display-buffer-record-window): New function.
6994 (display-buffer-macro-specifiers)
6995 (display-buffer-even-window-sizes, display-buffer-set-height)
6996 (display-buffer-set-width, display-buffer-in-window)
6997 (display-buffer-reuse-window, display-buffer-split-specifiers)
6998 (display-buffer-side-specifiers, display-buffer-split-window-1)
6999 (display-buffer-split-window, display-buffer-split-atom-window)
7000 (display-buffer-pop-up-window, display-buffer-pop-up-frame)
7001 (display-buffer-pop-up-side-window, display-buffer-in-side-window)
7002 (display-buffer-other-window-means-other-frame)
7003 (display-buffer-normalize-special)
7004 (display-buffer-normalize-default)
7005 (display-buffer-normalize-argument)
7006 (display-buffer-normalize-alist-1, display-buffer-normalize-alist)
7007 (display-buffer-normalize-specifiers, display-buffer-frame)
7008 (display-buffer-same-window, display-buffer-same-frame)
7009 (display-buffer-other-window)
7010 (display-buffer-same-frame-other-window)
7011 (display-buffer-other-frame, pop-to-buffer-same-window)
7012 (pop-to-buffer-same-frame, pop-to-buffer-other-window)
7013 (pop-to-buffer-same-frame-other-window, pop-to-buffer-other-frame)
7014 (switch-to-buffer-same-frame)
7015 (switch-to-buffer-other-window-same-frame)
7016 (display-buffer-alist-of-strings-p, display-buffer-alist-add)
7017 (display-buffer-alist-set-1, display-buffer-alist-set-2)
7018 (display-buffer-alist-set): Remove.
7019 (display-buffer-function, special-display-buffer-names)
ae0bc9fb
SM
7020 (special-display-regexps, special-display-function):
7021 In doc-string refer to display-buffer-window and quit-restore
f818cd2a
MR
7022 parameter.
7023 (pop-up-frame-alist, pop-up-frame-function, special-display-p)
7024 (special-display-frame-alist, special-display-popup-frame)
7025 (same-window-buffer-names, same-window-regexps, same-window-p)
7026 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
7027 (split-window-preferred-function, split-height-threshold)
7028 (split-width-threshold, window-splittable-p)
7029 (split-window-sensibly, window--try-to-split-window)
7030 (window--frame-usable-p, even-window-heights)
7031 (window--even-window-heights, window--display-buffer-1)
ae0bc9fb
SM
7032 (window--display-buffer-2, display-buffer-other-frame):
7033 Restore old Emacs 23 code, order and doc-strings where applicable.
f818cd2a
MR
7034 (display-buffer-default, display-buffer-assq-regexp): New functions.
7035 (display-buffer-alist): Rewrite doc-string.
7036 (display-buffer-default-action)
7037 (display-buffer-overriding-action): New variables.
7038 (display-buffer, switch-to-buffer): Rewrite.
7039 (pop-to-buffer): Restore Emacs 23 behavior but use
7040 window-normalize-buffer-to-display.
7041 (switch-to-buffer-other-window, switch-to-buffer-other-frame):
7042 Restore Emacs 23 behavior but use
7043 window-normalize-buffer-to-switch-to.
7044 (pop-to-buffer-same-window): Rewrite.
ae0bc9fb
SM
7045 (pop-to-buffer-other-window, pop-to-buffer-other-frame):
7046 Rewrite using Emacs 23 options.
f818cd2a 7047
5bc3b51d
MA
70482011-08-31 Michael Albinus <michael.albinus@gmx.de>
7049
7050 * net/tramp.el (tramp-root-regexp): Remove.
7051 (tramp-completion-file-name-regexp-unified)
7052 (tramp-completion-file-name-regexp-separate)
7053 (tramp-completion-file-name-regexp-url): Don't use leading volume
7054 letter on win32 systems. (Bug#5303, Bug#9311)
ae0bc9fb
SM
7055 (tramp-drop-volume-letter): Simplify definition.
7056 Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
5bc3b51d 7057
b1a4f8e1
SM
70582011-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
7059
7060 * subr.el (event-modifiers): Fix "missing modifier" part of docstring
7061 (bug#9356).
7062
5664fa7b
RT
70632011-08-30 Reuben Thomas <rrt@sc3d.org> (tiny change)
7064
b1a4f8e1 7065 * vc/pcvs-defs.el (cvs-find-file-and-jump): Docstring typo (bug#9369).
5664fa7b 7066
9a45d6c3
JL
70672011-08-29 Juri Linkov <juri@jurta.org>
7068
7069 * isearch.el (isearch-done): Don't display message "Mark saved"
7070 when arg `edit' is non-nil to prevent its flicker in the echo area.
7071
fb87e0fb
CY
70722011-08-28 Chong Yidong <cyd@stupidchicken.com>
7073
7074 * emacs-lisp/package.el (package-menu-mark-delete): Allow marking
7075 obsolete packages for deletion.
7076
09ac1c2a
CS
70772011-08-28 Christoph Scholtes <cschol2112@googlemail.com>
7078
7079 * help-mode.el (help-mode-map): Add special-mode-map to parent.
5e617bc2 7080 (help-mode): Derive help-mode from special-mode. Don't invoke
09ac1c2a
CS
7081 view-mode from help-mode.
7082 (help-xref-override-view-map): Remove.
7083 (help-make-xrefs): Remove minor-mode-overriding-map-alist since
7084 view-mode is not used anymore.
7085
7a1ff57f
CY
70862011-08-28 Chong Yidong <cyd@stupidchicken.com>
7087
7088 * server.el (server-port): Doc fix.
7089
b9696605
CY
7090 * cus-theme.el (custom-theme-choose-mode): Inherit from
7091 special-mode (Bug#9124).
7092 (custom-theme-choose-mode-map): Add special-mode to parent.
7093
ef8cdf8c
AM
70942011-08-28 Alan Mackenzie <acm@muc.de>
7095
7096 * progmodes/cc-fonts.el
7097 (c-make-font-lock-BO-decl-search-function): New function.
7098 (c-basic-matchers-after - "Fontify the clauses after various
7099 keywords"): Extract the three keyword lists for the 3 erroneous
7100 constructs from the list of four, and use the new function above
7101 in place of an old one.
7102
27de4e20
DD
71032011-08-28 Deniz Dogan <deniz@dogan.se>
7104
7105 * net/rcirc.el (rcirc-insert-prev-input)
7106 (rcirc-insert-next-input): Remove unused argument.
7107
356a3681
SM
71082011-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
7109
7110 * shell.el (shell-parse-pcomplete-arguments): Unquote args (bug#9160).
7111
3fc9b218
AM
71122011-08-27 Alan Mackenzie <acm@muc.de>
7113
7114 * progmodes/cc-menus.el (cc-imenu-c++-generic-expression): Make it
7115 handle function pointer parameters properly.
7116
538a061c
MR
71172011-08-27 Martin Rudalics <rudalics@gmx.at>
7118
7119 * window.el (display-buffer-reuse-window): Fix case where
7120 selected window was reused with non-nil OTHER-WINDOW argument.
7121 (Bug#9381)
7122
35b1c40c
DD
71232011-08-27 Deniz Dogan <deniz@dogan.se>
7124
7125 * net/rcirc.el (rcirc-check-auth-status): Adding support for
7126 oftc's NickServ messages.
7127
2f6a3e79
GM
71282011-08-27 Glenn Morris <rgm@gnu.org>
7129
7130 * saveplace.el (save-place-limit): Make it finite. (Bug#9352)
7131
7254299e
CY
71322011-08-26 Chong Yidong <cyd@stupidchicken.com>
7133
7134 * emacs-lisp/package.el (package-install): Call package-initialize
7135 if called interactively.
7136
f8ccf167
LL
71372011-08-26 Leo Liu <sdl.web@gmail.com>
7138
7139 * emacs-lisp/cl-macs.el (defstruct): Fix format. (Bug#9357)
7140
3e8cd5ce
JL
71412011-08-25 Juri Linkov <juri@jurta.org>
7142
7143 * isearch.el (isearch-occur): Let-bind `search-spaces-regexp' to
7144 `search-whitespace-regexp' (bug#9364).
7145
93eb7113
JL
71462011-08-25 Juri Linkov <juri@jurta.org>
7147
7148 * isearch.el (isearch-edit-string): Let-bind `search-ring' and
7149 `regexp-search-ring' to their global values to protect from
7150 updating by `read-from-minibuffer' (bug#9185).
7151
f65d1611
JL
71522011-08-25 Juri Linkov <juri@jurta.org>
7153
7154 * textmodes/ispell.el (ispell-command-loop): Add newline
7155 at the end of the "Use option `i'..." line.
7156
f1cf7a31
JL
71572011-08-25 Juri Linkov <juri@jurta.org>
7158
7159 * battery.el (display-battery-mode): If `battery-status-function'
7160 or `battery-mode-line-format' is nil, display the message and set
7161 `display-battery-mode' to nil (bug#9363).
7162
0c95fcf7
EZ
71632011-08-25 Eli Zaretskii <eliz@gnu.org>
7164
7165 * buff-menu.el (Buffer-menu-buffer+size): Remove calls to
7166 bidi-string-mark-left-to-right; they are unnecessary now.
7167
a2ebe600
DD
71682011-08-25 Deniz Dogan <deniz@dogan.se>
7169
7170 * net/quickurl.el: Documentation typo fixes.
7171
e4ed06f1
CY
71722011-08-25 Chong Yidong <cyd@stupidchicken.com>
7173
7174 * window.el (bury-buffer, quit-window): Use bury-buffer-internal.
7175
e5f1c99e
GM
71762011-08-25 Glenn Morris <rgm@gnu.org>
7177
b2948976
GM
7178 * emacs-lisp/derived.el (define-derived-mode): Doc fix.
7179
e5f1c99e
GM
7180 * mail/smtpmail.el (smtpmail-smtp-user): Add version: tag.
7181 (smtpmail-via-smtp): Handle nil response from smtp.
7182
f22f4808
JL
71832011-08-24 Juri Linkov <juri@jurta.org>
7184
7185 * proced.el (proced-marked): Inherit from `error' instead of
7186 `font-lock-warning-face'.
7187
7188 * ibuffer.el (ibuffer-marked-face): Change default face from
7189 `font-lock-warning-face' to `warning'.
7190 (ibuffer-deletion-face): Change default face from
7191 `font-lock-type-face' to `error'.
7192
7193 * battery.el (battery-update): Use the face `error' instead of
7194 `font-lock-warning-face' (bug#6117).
7195
6a93965e
JL
71962011-08-24 Juri Linkov <juri@jurta.org>
7197
7198 * faces.el (success): Change face color from "Green3" to
7199 "ForestGreen" on light background (bug#9353).
7200
1ed43b09
CY
72012011-08-24 Chong Yidong <cyd@stupidchicken.com>
7202
5664fa7b
RT
7203 * window.el (quit-window): Rename from quit-restore-window.
7204 Use same arglist as old quit-window.
1ed43b09
CY
7205 (frame-auto-delete): Doc fix.
7206
7207 * view.el (view-mode-exit): Use quit-window.
7208
11dcdbb2
JL
72092011-08-24 Juri Linkov <juri@jurta.org>
7210
7211 * isearch.el (isearch-ring-adjust1): Start visiting previous
7212 search strings from the index 0 (-1 + 1) instead of 1 (0 + 1).
7213 (isearch-repeat, isearch-edit-string): Call `isearch-ring-adjust1'
7214 for empty search string (when the last search string is reused
7215 automatically) to adjust the isearch ring to the last element and
7216 prepare the correct index for further M-p commands (bug#9185).
7217
de62b4df
KH
72182011-08-24 Kenichi Handa <handa@m17n.org>
7219
7220 * international/ucs-normalize.el: If decomposition property of
7221 CHAR is the default one (i.e. a list of CHAR itself), treat it as
7222 nil.
7223 (nfd, nfkd): Likewise.
7224
963b492b
SM
72252011-08-24 Stefan Monnier <monnier@iro.umontreal.ca>
7226
7227 * mpc.el (mpc--proc-filter): Don't signal mpc-proc-error since signals
7228 from process filters aren't reliably transmitted to the surrounding
7229 accept-process-output.
7230 (mpc-proc-check): New function.
7231 (mpc-proc-sync): Use it (bug#8293)
7232
93b6b5e1
SM
72332011-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
7234
7235 * emacs-lisp/eieio.el (eieio-defmethod, eieio-defgeneric):
7236 Add compatibility functions (bug#9313).
7237
bca633fb
EZ
72382011-08-23 Eli Zaretskii <eliz@gnu.org>
7239
b177498a
EZ
7240 * cus-start.el (all): Add entry for bidi-paragraph-direction.
7241
6df6ae42 7242 * international/uni-bidi.el: Regenerate.
bca633fb 7243
0902a04e
KH
72442011-08-23 Kenichi Handa <handa@m17n.org>
7245
7246 * international/charprop.el:
7247 * international/uni-bidi.el:
7248 * international/uni-category.el:
7249 * international/uni-combining.el:
7250 * international/uni-comment.el:
7251 * international/uni-decimal.el:
7252 * international/uni-decomposition.el:
7253 * international/uni-digit.el:
7254 * international/uni-lowercase.el:
7255 * international/uni-mirrored.el:
7256 * international/uni-name.el:
7257 * international/uni-numeric.el:
7258 * international/uni-old-name.el:
7259 * international/uni-titlecase.el:
7260 * international/uni-uppercase.el: Regenerate.
7261
3bbf23bc
MR
72622011-08-23 Martin Rudalics <rudalics@gmx.at>
7263
7264 * help.el (help-window-setup): Fix message displayed when other
7265 window is reused. (Bug#9341)
7266
b3fd59bd
SM
72672011-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
7268
1802e444
SM
7269 * shell.el (shell-completion-vars): Set pcomplete-arg-quote-list.
7270 * pcomplete.el (pcomplete-quote-argument): Fix thinko (bug#9161).
7271
b3fd59bd
SM
7272 * pcomplete.el (pcomplete-parse-comint-arguments): Fix inf-loop.
7273 Mark obsolete.
7274 * shell.el (shell-parse-pcomplete-arguments): New function.
7275 (shell-completion-vars): Use it instead (bug#9160).
7276
4eb61348
SM
72772011-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
7278
867cab74
SM
7279 * progmodes/sh-script.el (sh-maybe-here-document): Disable magic in
7280 strings and comments (bug#9333).
7281
4eb61348
SM
7282 * emacs-lisp/debug.el (debug-arglist): New function.
7283 (debug-convert-byte-code): Use it. Handle lexical byte-codes.
7284 (debug-on-entry-1): Handle interpreted closures (bug#9120).
7285
262a1439
JL
72862011-08-22 Juri Linkov <juri@jurta.org>
7287
56ee679c
JL
7288 * progmodes/compile.el (compilation-mode-font-lock-keywords):
7289 Revert regexp that highlights output switches to its old
7290 pre-2010-10-28 value and remove one `?' from it (bug#9319).
7291
262a1439
JL
7292 * progmodes/grep.el (grep-process-setup): Use `buffer-modified-p'
7293 to check for empty output (bug#9226).
7294
f13f86fb
CY
72952011-08-22 Chong Yidong <cyd@stupidchicken.com>
7296
7297 * progmodes/scheme.el (scheme-mode-syntax-table): Don't use
7298 symbol-constituent as the default, as that stops font-lock from
7299 working properly (Bug#8843).
7300
c65c9622
LMI
73012011-08-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
7302
7303 * mail/smtpmail.el (smtpmail-via-smtp): Only bind
7304 `coding-system-for-*' around the process open call to avoid
7305 auth-source side effects.
e7f2c178 7306 (smtpmail-try-auth-methods): Expand the secret password.
7185da52
LMI
7307 (smtpmail-query-smtp-server): Allow `quit'-ing out in case the
7308 probe hangs.
c65c9622 7309
23a8a5ab
CY
73102011-08-21 Chong Yidong <cyd@stupidchicken.com>
7311
ff98b2dd
CY
7312 * term.el (term-mouse-paste): Yank primary selection (Bug#6845).
7313
23a8a5ab
CY
7314 * emacs-lisp/find-func.el (find-function-noselect): New arg
7315 lisp-only.
7316
7317 * emacs-lisp/edebug.el (edebug-instrument-function): Use it to
7318 signal an error for built-in functions (Bug#6664).
7319
f5e3c598
LMI
73202011-08-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
7321
7322 * mail/smtpmail.el (smtpmail-smtp-user): New variable.
7323 (smtpmail-try-auth-methods): Use it.
7324
a3f2468a
CY
73252011-08-21 Chong Yidong <cyd@stupidchicken.com>
7326
2c34e8da
CY
7327 * font-lock.el (font-lock-fontify-region)
7328 (font-lock-unfontify-region, font-lock-default-fontify-buffer)
7329 (font-lock-default-unfontify-buffer)
7330 (font-lock-default-fontify-region)
7331 (font-lock-default-unfontify-region): Add docstrings (Bug#8624).
7332
b3fd59bd
SM
7333 * progmodes/compile.el (compilation-error-properties):
7334 Fix confusion between file struct and message struct (Bug#9319).
02e5c89e
CY
7335 (compilation-error-regexp-alist-alist): Fix 2011-05-09 change to
7336 `ant' regexp.
ee31aabc 7337
a3f2468a
CY
7338 * net/browse-url.el (browse-url-firefox): Don't call
7339 browse-url-firefox-sentinel unless using -remote (Bug#9328).
7340
8e999f70
GM
73412011-08-20 Glenn Morris <rgm@gnu.org>
7342
c21a496a
GM
7343 * tutorial.el (help-with-tutorial): Avoid an error on short screens.
7344
59ee0542
GM
7345 * tutorial.el (tutorial--default-keys): Update some default bindings.
7346
8e999f70
GM
7347 * files.el (hack-local-variables): Fully ignore case for "mode:".
7348
e3715033
AM
73492011-08-20 Alan Mackenzie <acm@muc.de>
7350
7351 Resolve invalid use of a regexp in regexp-opt.
7352
4d61f28d
JB
7353 * progmodes/cc-fonts.el (c-complex-decl-matchers): Add in special
7354 detection for a java annotation.
e3715033 7355
4d61f28d 7356 * progmodes/cc-engine.el (c-forward-decl-or-cast-1): Add in special
e3715033
AM
7357 detection for a java annotation.
7358
4d61f28d
JB
7359 * progmodes/cc-langs.el (c-prefix-spec-kwds-re): Remove the special
7360 handling for java.
e3715033
AM
7361 (c-modifier-kwds): Remove the regexp "@[A-za-z0-9]+".
7362
04ed2e9c
CY
73632011-08-20 Chong Yidong <cyd@stupidchicken.com>
7364
7365 * startup.el (normal-top-level-add-subdirs-to-load-path): Doc fix
7366 (Bug#9274).
7367
826cee64
AM
73682011-08-20 Alan Mackenzie <acm@muc.de>
7369
58179cce 7370 Fontify CPP expressions correctly when starting in the middle of
826cee64
AM
7371 such a construct. Mainly for when jit-lock etc. starts a chunk
7372 here.
7373
58179cce 7374 * progmodes/cc-fonts.el (c-font-lock-context): New buffer local
826cee64 7375 variable.
58179cce 7376 (c-make-font-lock-search-form): New function, extracted from
826cee64
AM
7377 c-make-font-lock-search-function.
7378 (c-make-font-lock-search-function): Use the above function.
7379 (c-make-font-lock-context-search-function): New function.
7380 (c-cpp-matchers): Enhance the preprocessor expression case with
7381 the above function
7382 (c-font-lock-complex-decl-prepare): Test for being in a CPP form
7383 which takes an expression.
7384
7385 * progmodes/cc-langs.el (c-cpp-expr-intro-re): New lang-variable.
7386
13009bd8
MR
73872011-08-20 Martin Rudalics <rudalics@gmx.at>
7388
7389 * window.el (display-buffer-reuse-window)
7390 (display-buffer-pop-up-window): Don't reuse or split a side
7391 window.
7392
9234ff7f
GM
73932011-08-19 Glenn Morris <rgm@gnu.org>
7394
7395 * files.el (hack-local-variables-prop-line, hack-local-variables):
5e617bc2 7396 Downcase "Mode:". (Bug#9331)
9234ff7f 7397
f635daa1
CY
73982011-08-18 Chong Yidong <cyd@stupidchicken.com>
7399
7400 * international/characters.el: Add L and R categories.
7401
7402 * subr.el (bidi-string-mark-left-to-right): Rename from
7403 string-mark-left-to-right. Use category search.
7404
7405 * buff-menu.el (Buffer-menu-buffer+size): Callers changed.
7406
bc987f8b
JL
74072011-08-18 Juri Linkov <juri@jurta.org>
7408
7409 * faces.el (error, warning, success): New faces with definitions
7410 copied from old default values of `font-lock-warning-face',
7411 `compilation-warning', `compilation-info' (bug#6117).
7412
7413 * font-lock.el (font-lock-warning-face): Inherit from `error'.
7414
7415 * progmodes/compile.el (compilation-error): Inherit from `error'.
7416 (compilation-warning): Inherit from `warning'.
7417 (compilation-info): Inherit from `success'.
7418
7419 * dired.el (dired-marked): Inherit from `warning'.
7420 (dired-flagged): Inherit from `error'.
7421
57173b96
LMI
74222011-08-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
7423
3e79eb87
LMI
7424 * mail/smtpmail.el (auth-source): Require to avoid problems with
7425 binding variables (bug#9298). Also clean up some unused
7426 autoloads.
7427
b3fd59bd
SM
7428 * net/network-stream.el (network-stream-open-starttls):
7429 Support using starttls.el without using gnutls-cli.
57173b96 7430
02b404de
JL
74312011-08-17 Juri Linkov <juri@jurta.org>
7432
7433 * progmodes/grep.el (rgrep): Handle the case when
7434 `grep-find-command' is a cons cell (bug#9278).
7435
8c9177f2
MR
74362011-08-17 Martin Rudalics <rudalics@gmx.at>
7437
7438 * window.el (display-buffer-pop-up-frame): Run frame creation
7439 function with BUFFER current (as special-display-popup-frame
7440 does). Reported by Drew Adams.
7441
3644a0ab
DU
74422011-08-17 Daiki Ueno <ueno@unixuser.org>
7443
7444 * epa-mail.el: Simplify GnuPG group expansion using
7445 epg-expand-group.
7446 (epa-mail-group-alist, epa-mail-group-modtime)
7447 (epa-mail-gnupg-conf-file, epa-mail-parse-groups)
7448 (epa-mail-sync-groups, epa-mail-expand-recipient-1)
7449 (epa-mail-expand-recipients-2, epa-mail-expand-recipients):
7450 Remove.
7451
5e617bc2 74522011-08-16 Feng Li <fengli@gmail.com> (tiny change)
7c643369
FL
7453
7454 * calc/calc-ext.el (math-defintegral-2): Remove nested backquote.
7455
9c4aeabf
AM
74562011-08-16 Alan Mackenzie <acm@muc.de>
7457
7458 * progmodes/cc-engine.el (c-state-cache-non-literal-place):
7459 Correct, to avoid the inside of macros.
7460
3a99bf64
RS
74612011-08-16 Richard Stallman <rms@gnu.org>
7462
04963aa8
RS
7463 * epa-mail.el: Handle GnuPG group definitions.
7464 (epa-mail-group-alist, epa-mail-group-modtime)
7465 (epa-mail-gnupg-conf-file): New variables.
7466 (epa-mail-parse-groups, epa-mail-sync-groups)
7467 (epa-mail-expand-recipient-1, epa-mail-expand-recipients-2)
7468 (epa-mail-expand-recipients): New functions.
7469 (epa-mail-encrypt): Call epa-mail-expand-recipients.
7470
177549d0
RS
7471 * mail/rmail.el (rmail-epa-decrypt): New command.
7472
fe38beef
RS
7473 * epa.el (epa-decrypt-region): New arg MAKE-BUFFER-FUNCTION.
7474 Don't bind buffer-read-only, just inhibit-read-only.
3a99bf64
RS
7475 (epa--find-coding-system-for-mime-charset): Fix the non-xemacs case.
7476 (epa-decrypt-armor-in-region): Make error message clearer.
7477
934eacb9
SM
74782011-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
7479
7480 * minibuffer.el (completion-pcm--merge-completions): Don't merge "a1b"
7481 and "a2b" to "ab" for `prefix'.
7482
d024fb4e
CY
74832011-08-14 Chong Yidong <cyd@stupidchicken.com>
7484
7485 * ibuf-ext.el (ibuffer-filter-disable): New arg for deleting
7486 filter groups.
de148fee
CY
7487 (ibuffer-included-in-filter-p-1): Use it. Suggested by Rafaël
7488 Fourquet (Bug#8804).
d024fb4e 7489
62f1ca49
JB
74902011-08-12 Juanma Barranquero <lekktu@gmail.com>
7491
7492 * startup.el (argi): Declare as global variable (bug#9275).
7493
9ccaaa4b
CY
74942011-08-12 Chong Yidong <cyd@stupidchicken.com>
7495
7496 * subr.el (string-mark-left-to-right): Search the entire string
7497 for RTL script, not just the terminating character. Doc fix.
7498
a3dae87a
SM
74992011-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
7500
6cd18349
SM
7501 * progmodes/js.el (js-syntax-propertize, js-syntax-propertize-regexp):
7502 New function.
7503 (js--regexp-literal, js-syntax-propertize-function): Remove.
7504 (js-mode): Use js-syntax-propertize to handle multilines (bug#9183).
7505 (js-mode-map): Don't rebind electric keys.
7506 (js-insert-and-indent): Remove.
7507 (js-mode): Setup electric-layout and electric-indent instead.
7508
a3dae87a
SM
7509 * epa-file.el (epa-file-select-keys): Revert to nil default (bug#9280).
7510
9d5cb631
DU
75112011-08-12 Daiki Ueno <ueno@unixuser.org>
7512
7513 * epa.el (epa-progress-callback-function): Fix the logic of
7514 displaying progress.
7515 * epa-file.el (epa-file-insert-file-contents): Make progress
7516 display more user-friendly.
7517 (epa-file-write-region): Ditto.
7518
3e26a4a2
CY
75192011-08-10 Chong Yidong <cyd@stupidchicken.com>
7520
7521 * subr.el (string-mark-left-to-right): New function.
7522
7523 * buff-menu.el (Buffer-menu-buffer+size): Remove LRM argument.
7524 Use string-mark-left-to-right.
7525 (list-buffers-noselect): Caller changed.
7526
a3dae87a
SM
7527 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
7528 Use string-mark-left-to-right.
3e26a4a2
CY
7529 (tabulated-list-print): Recenter after moving point.
7530
ac8cf6e6
JL
75312011-08-10 Juri Linkov <juri@jurta.org>
7532
7533 * progmodes/grep.el (rgrep): Don't bind `process-connection-type'.
7534 This finishes incomplete reversion of 2011-06-30T01:09:13Z!larsi@gnus.org
7535 intended by 2011-07-06T15:49:19Z!larsi@gnus.org.
7536
8d96c9a4
CY
75372011-08-09 Chong Yidong <cyd@stupidchicken.com>
7538
7539 * hi-lock.el (hi-lock-unface-buffer): Fix interactive spec
7540 (Bug#7554).
7541
7be1c708 75422011-08-09 Andreas Schwab <schwab@linux-m68k.org>
29bbcfa7
AS
7543
7544 * xt-mouse.el (xterm-mouse-event-read): Try to recover the raw
7545 character. (Bug#6594)
7546
37e11a63
CY
75472011-08-08 Chong Yidong <cyd@stupidchicken.com>
7548
839dde57
CY
7549 * image-dired.el: Don't use find-file for temporary work (Bug#7895).
7550 (image-dired--with-db-file): New macro.
7551 (image-dired-write-tags, image-dired-remove-tag)
7552 (image-dired-create-gallery-lists, image-dired-write-comments)
7553 (image-dired-get-comment, image-dired-mark-tagged-files)
7554 (image-dired-list-tags, image-dired-gallery-generate): Use it.
7555 (image-dired-gallery-generate): Use insert-file-contents.
7556
37e11a63
CY
7557 * time.el (display-time-world-list, display-time-world-display):
7558 * time-stamp.el (time-stamp-string):
7559 * vc/add-log.el (add-change-log-entry): Use setenv instead of
7560 set-time-zone-rule (Bug#7337).
7561
0b4946c4
DU
75622011-08-08 Daiki Ueno <ueno@unixuser.org>
7563
7564 * epg.el (epg--status-KEYEXPIRED, epg--status-KEYREVOKED): Fix typo.
7565 (epg-error-to-string, epg-errors-to-string): New function.
7566 (epg-wait-for-completion): Reverse errors list.
7567 (epg--check-error-for-decrypt, epg-sign-file, epg-sign-string)
7568 (epg-encrypt-file, epg-encrypt-string, epg-export-keys-to-file)
7569 (epg--import-keys-1, epg-receive-keys, epg-delete-keys)
7570 (epg-sign-keys, epg-generate-key-from-file)
7571 (epg-generate-key-from-string): Format errors by using
7572 epg-errors-to-string (bug#9255).
7573 (epg--status-INV_SGNR, epg--status-NO_SGNR): New status handler.
7574
75bfc667
JL
75752011-08-07 Juri Linkov <juri@jurta.org>
7576
7577 * faces.el (list-faces-display): Remove extra angle bracket
7578 from `help-mode-map'.
7579
7580 * info.el (Info-history-toc-nodes): Doc fix.
7581
7582 * longlines.el (longlines-mode): Doc fix.
7583
673e08bb
SM
75842011-08-05 Stefan Monnier <monnier@iro.umontreal.ca>
7585
4640dd88
SM
7586 * progmodes/js.el (js--regexp-literal): Accept regexps at the beginning
7587 of statements and in a few more cases (bug#9183).
7588
673e08bb
SM
7589 * emacs-lisp/cl-macs.el (cl--make-usage-var, cl--make-usage-args):
7590 New functions.
7591 (cl-transform-lambda): Use them (bug#9239).
7592
89b3f019
MR
75932011-08-05 Martin Rudalics <rudalics@gmx.at>
7594
7595 * window.el (display-buffer-same-window)
7596 (display-buffer-same-frame, display-buffer-other-window)
7597 (pop-to-buffer-same-window, pop-to-buffer-same-frame)
7598 (pop-to-buffer-other-window)
7599 (pop-to-buffer-same-frame-other-window)
7600 (pop-to-buffer-other-frame): Make them defuns.
7601 (switch-to-buffer): Don't set LABEL argument of pop-to-buffer.
7602
640c8776
SM
76032011-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
7604
7605 * subr.el (make-composed-keymap): Move from C. Change calling
7606 convention, and improve docstring to bring attention to a subtle point.
7607 * minibuffer.el (completing-read-default): Adjust accordingly.
7608
63648a95
MA
76092011-08-03 Michael Albinus <michael.albinus@gmx.de>
7610
7611 * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell)
7612 (tramp-open-shell): Use `tramp-shell-quote-argument'.
7613
7614 * net/trampver.el: Update release number.
7615
b796c9b7
SM
76162011-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
7617
7618 * progmodes/sh-script.el (sh-font-lock-paren): Don't mistake "main" for
7619 "in" (bug#9190).
7620
2239d7d5
LMI
76212011-08-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
7622
e07dd7c3
LMI
7623 * mail/sendmail.el (sendmail-query-once): Restore the current
7624 buffer after querying (bug#9074).
7625
0e6a2bd7
LMI
7626 * dired.el (dired-flagged): Use different faces for marked and
7627 flagged files (bug#6117).
7628
ce887515
LMI
7629 * emacs-lisp/cl-macs.el (dolist): Mention that there's a nil block
7630 (bug#4433).
7631
92f2affc
LMI
7632 * ido.el (ido-mode): Switch off the message if called
7633 non-interactively.
7634
57d5aff0
LMI
7635 * mail/smtpmail.el (smtpmail-query-smtp-server): Try port 25
7636 before 587, since it appears that that's more likely to work for
7637 more people.
7638
98cd6c18 7639 * cus-edit.el (custom-file): When running under emacs -q, always
e1dbe924 7640 refuse to save the customizations, even if the .emacs file doesn't
98cd6c18
LMI
7641 exist.
7642
b96dec83
LMI
7643 * info.el: Remove the `Info-beginning-of-buffer' function
7644 (bug#8325).
7645
b796c9b7
SM
7646 * net/network-stream.el (network-stream-open-starttls):
7647 Use `starttls-available-p' to see whether starttls.el can be used.
2239d7d5 7648
d90e2ea0
MR
76492011-08-01 Martin Rudalics <rudalics@gmx.at>
7650
7651 * window.el (display-buffer-in-window): Don't set dedicated status
7652 of window here (Bug#9215).
7653 (display-buffer-pop-up-window, display-buffer-pop-up-frame)
7654 (display-buffer-pop-up-side-window)
b796c9b7 7655 (display-buffer-in-side-window): Set dedicated status of window here.
d90e2ea0 7656
cca09170
SM
76572011-08-01 Stefan Monnier <monnier@iro.umontreal.ca>
7658
7659 * emacs-lisp/package.el (package-generate-autoloads): Load autoloads
7660 before binding generated-autoload-file.
7661
027b979c
DD
76622011-08-01 Deniz Dogan <deniz@dogan.se>
7663
7664 * net/rcirc.el (rcirc-handler-333): Clarify docstring.
7665
3c7ee4f3
MA
76662011-07-30 Michael Albinus <michael.albinus@gmx.de>
7667
7668 Sync with Tramp 2.2.2.
7669
7670 * net/trampver.el: Update release number.
7671
2cc8e51a
JL
76722011-07-30 Juri Linkov <juri@jurta.org>
7673
7674 * dired-aux.el (dired-touch-initial): Remove function.
7675 (dired-do-chxxx): For op-symbol `touch', set `initial' to the
7676 current time, and `default' to the last modification time of the
7677 current marked file (bug#6887).
7678
a514d856
JM
76792011-07-28 Jose E. Marchesi <jemarch@gnu.org>
7680
7681 * simple.el (goto-line): Use string-to-number to provide a
2cc8e51a 7682 numeric argument to read-number (bug#9163).
a514d856 7683
8a7eddd7
MA
76842011-07-27 Michael Albinus <michael.albinus@gmx.de>
7685
7686 * net/tramp-sh.el (tramp-maybe-send-script): Don't let-bind the
7687 connection process, it could be nil.
7688
1ddd96f5
LL
76892011-07-27 Leo Liu <sdl.web@gmail.com>
7690
7691 Simplify url handling in rcirc-mode.
7692
7693 * net/rcirc.el (rcirc-browse-url-map, rcirc-browse-url-at-point)
7694 (rcirc-browse-url-at-mouse): Remove.
7695 * net/rcirc.el (rcirc-markup-urls): Use `make-button'.
7696
b248a85d
AM
76972011-07-26 Alan Mackenzie <acm@muc.de>
7698
7699 Fontify bitfield declarations properly.
7700
7701 * progmodes/cc-langs.el (c-has-bitfields): New lang variable.
7702 (c-symbol-chars): Now exported as a lang variable.
7703 (c-not-primitive-type-keywords): New lang variable.
7704
7705 * progmodes/cc-fonts.el (c-font-lock-declarations): Jump over the
7706 QT keyword "more" to prevent "more slots: ...." being spuriously
58179cce 7707 parsed as a bitfield declaration.
b248a85d 7708
b796c9b7
SM
7709 * progmodes/cc-engine.el (c-beginning-of-statement-1):
7710 Refactor and enhance to handle bitfield declarations.
b248a85d
AM
7711 (c-punctuation-in): New function.
7712 (c-forward-decl-or-cast-1): Enhance CASE 3 to handle bitfield
7713 declarations properly.
7714
68575ab0
UJ
77152011-07-26 Ulf Jasper <ulf.jasper@web.de>
7716
7717 * calendar/icalendar.el (icalendar--all-events): Take care of
7718 multiple vcalendars in a single file.
b796c9b7 7719 (icalendar--convert-float-to-ical): Checkdoc fixes.
68575ab0 7720
0f0a88b9
DD
77212011-07-25 Deniz Dogan <deniz@dogan.se>
7722
7723 * image.el (insert-image): Clarifying docstring.
7724
0b3f36df
MA
77252011-07-24 Michael Albinus <michael.albinus@gmx.de>
7726
7727 * net/tramp-sh.el (tramp-barf-unless-okay): Return the value of
7728 `tramp-send-command-and-check' if there is no error.
7729 (tramp-send-command-and-read): Suppress *all* errors if NOERROR.
7730
a9901f61
AM
77312011-07-22 Alan Mackenzie <acm@muc.de>
7732
7733 Prevent cc-langs.elc being loaded at run time.
7734
7735 * progmodes/cc-mode.el: Remove two autoload forms which loaded
7736 cc-langs.
7737
4d61f28d 7738 * progmodes/cc-langs.el (c-make-init-lang-vars-fun): Don't emit
a9901f61
AM
7739 "(require 'cc-langs)". Quote a form so it will evaluate at
7740 (cc-mode's) compilation time.
7741
11d074b2
MA
77422011-07-22 Michael Albinus <michael.albinus@gmx.de>
7743
7744 * net/tramp.el (tramp-file-name-handler): Avoid recursive
7745 loading. (Bug#9114)
7746
938b94c8
MR
77472011-07-21 Martin Rudalics <rudalics@gmx.at>
7748
7749 * window.el (display-buffer-pop-up-window)
7750 (display-buffer-pop-up-side-window)
7751 (display-buffer-in-side-window): Call display-buffer-set-height
7752 and display-buffer-set-width after setting the new window's
b796c9b7 7753 buffer so `fit-window-to-buffer' and friends work on the right buffer.
938b94c8 7754
bfa4f190
SS
77552011-07-20 Sam Steingold <sds@gnu.org>
7756
7757 * progmodes/etags.el (etags-file-of-tag, etags-tags-table-files)
7758 (etags-tags-included-tables): Call `convert-standard-filename' on
7759 the file names contained in TAGS so that windows Emacs can handle
7760 TAGS files created by cygwin ctags.
7761
8ca42262
LMI
77622011-07-20 Lars Magne Ingebrigtsen <larsi@gnus.org>
7763
7764 * proced.el (proced-update): Revert yesterday's bug#1779 patch,
7765 which apparently didn't work.
7766
5db2afd2 77672011-07-19 Roland Winkler <winkler@gnu.org>
2ecab2b5 7768
5db2afd2
RW
7769 * proced.el (proced-send-signal): For *Marked Processes* buffer
7770 put point at beginning of buffer.
7771
92e15d10
SB
77722011-07-19 Stephen Berman <stephen.berman@gmx.net>
7773
7774 * proced.el (proced-format): Make header lines align with the text
7775 (bug#1779).
7776
1bfd59e5
LMI
77772011-07-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
7778
7779 * view.el (view-buffer): Allow running in `special' modes if we're
7780 visiting a file (bug#8615).
7781
f5aae37c
MR
77822011-07-19 Martin Rudalics <rudalics@gmx.at>
7783
7784 * window.el (display-buffer-alist-of-strings-p)
b796c9b7
SM
7785 (display-buffer-alist-set-1, display-buffer-alist-set-2):
7786 New functions.
f5aae37c
MR
7787 (display-buffer-alist-set): Rewrite to handle Emacs 23 options
7788 more accurately.
7789
bf2c1571
AM
77902011-07-18 Alan Mackenzie <acm@muc.de>
7791
7792 Fontify declarators properly when, e.g., a jit-lock chunk begins
7793 inside a declaration.
7794
7795 * progmodes/cc-langs.el (c-symbol-chars): Correct a typo.
7796
b796c9b7
SM
7797 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
7798 New function.
bf2c1571
AM
7799 (c-complex-decl-matchers): Insert reference to
7800 c-font-lock-enclosing-decls.
7801
7802 * progmodes/cc-engine.el (c-backward-single-comment):
7803 (c-backward-comments): Bind open-paren-in-column-0-is-defun-start
7804 to nil around calls to (forward-comment -1).
7805
4e190b80
LMI
78062011-07-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
7807
12dc863d
LMI
7808 * image.el (put-image): Doc typo fix.
7809
a762e966
LMI
7810 * progmodes/etags.el (tags-search): Doc typo fix.
7811
4e190b80
LMI
7812 * mail/smtpmail.el (smtpmail-via-smtp): Query the user for
7813 password if we get errors 550 to 554.
7814
f019fb21
LMI
78152011-07-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
7816
b796c9b7 7817 * net/gnutls.el (gnutls-log-level): Remove.
750c33f7 7818
81746738
LMI
7819 * textmodes/fill.el (adaptive-fill-regexp): Include EN DASH as an
7820 indentation character (bug#6380).
7821
3ee3a1b5
LMI
7822 * files.el (buffer-offer-save): Made permanently local (bug#6241).
7823
c82f64de
LMI
7824 * doc-view.el (doc-view-make-safe-dir): Rewrite the error message
7825 to clarify what the problem is (bug#4291).
7826
f019fb21
LMI
7827 * simple.el (current-kill): Clarify what
7828 `interprogram-paste-function' does (bug#7500).
ca425c7c
LMI
7829 (auto-fill-mode): Document `auto-fill-function' in relation to
7830 `auto-fill-mode' (bug#2470).
f019fb21 7831
0794775d
LM
78322011-07-16 Lawrence Mitchell <wence@gmx.li>
7833
7834 * emacs-lisp/cl-macs.el (defstruct): Ignore argument to setf
7835 method if slot is read-only (bug#9035).
7836
be39b8cc
MR
78372011-07-16 Martin Rudalics <rudalics@gmx.at>
7838
b796c9b7 7839 * frame.el (select-frame-set-input-focus): New argument NORECORD.
be39b8cc 7840 * window.el (pop-to-buffer): Select window used even if it was
b796c9b7
SM
7841 selected before, see discussion of (Bug#8615), (Bug#6954).
7842 Pass argument NORECORD on to select-frame-set-input-focus.
be39b8cc 7843
6ccf7859
GM
78442011-07-15 Glenn Morris <rgm@gnu.org>
7845
7846 * subr.el (read-char-choice): Allow quitting. (Bug#9001)
03ea5b87 7847 Respect help-form.
6ccf7859 7848
87e86684
LM
78492011-07-09 Lawrence Mitchell <wence@gmx.li>
7850
7851 * net/gnutls.el (gnutls-min-prime-bits): New variable.
7852 (gnutls-negotiate): Use it.
7853
d6066239
LMI
78542011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
7855
b796c9b7
SM
7856 * net/gnutls.el (gnutls-negotiate):
7857 Upcase `gnutls-algorithm-priority'.
d6066239 7858
bd23ebc0
GM
78592011-07-15 Glenn Morris <rgm@gnu.org>
7860
c65bca65
GM
7861 * jka-compr.el (jka-compr-verbose): Move from here...
7862 * jka-cmpr-hook.el (jka-compr-verbose): ... to here. (Bug#9090)
7863 Add missing :version tag.
7864 * info.el: No need to require jka-compr when compiling.
bd23ebc0 7865
478615cc
LMI
78662011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
7867
7b41decb
LMI
7868 * net/gnutls.el (gnutls-algorithm-priority): New variable.
7869 (gnutls-negotiate): Use it.
7870
dbc44fcd
LMI
7871 * emacs-lisp/cl-macs.el (declare): Link to the "Declarations" node.
7872
06789f97
LMI
7873 * info.el (Info-beginning-of-buffer): New command.
7874 (Info-mode-map): Use it instead of `beginning-of-buffer' to allow
7875 announcing `b' as the key (bug#8325).
ab896c37 7876 (Info-mode-menu): Use `Info-beginning-of-buffer' for consistency.
06789f97 7877
c39da690
LMI
7878 * emacs-lisp/cl-macs.el (declare): Doc string fix-up.
7879
3aa5f34b
LMI
7880 * international/mule-cmds.el
7881 (describe-specified-language-support): Make the error message
7882 clearer (bug#8905).
7883
4bf0979f
LMI
7884 * emacs-lisp/cl-macs.el (declare): Add a doc string (bug#8690).
7885
478615cc
LMI
7886 * isearch.el (isearch-barrier): Add a doc string, since it's
7887 mentioned in a function doc string (bug#8678).
7888
75c68aa1
MR
78892011-07-15 Martin Rudalics <rudalics@gmx.at>
7890
7891 * window.el (switch-to-buffer): Call pop-to-buffer with normalized
7892 buffer argument (Bug#9083) and self-identifying label argument.
7893
a7c33da2
GM
78942011-07-15 Glenn Morris <rgm@gnu.org>
7895
7896 * emacs-lisp/debug.el (debug): Doc fix. (Bug#8273)
7897
2f5c6024
LMI
78982011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
7899
7900 * man.el (Man-fontify-manpage): Fix message when formatting the
7901 man page (bug#7929).
7902
0bb23927 79032011-07-14 Eli Zaretskii <eliz@gnu.org>
cce4b0a7
EZ
7904
7905 * buff-menu.el (Buffer-menu-buffer+size): Accept an additional
7906 argument LRM; if non-nil, append an invisible LRM character to the
7907 buffer name.
7908 (list-buffers-noselect): Call Buffer-menu-buffer+size with the
7909 last argument non-nil, when formatting buffer names.
0bb23927
EZ
7910 (Buffer-menu-mode, list-buffers-noselect): Force left-to-right
7911 paragraph direction.
cce4b0a7 7912
621ef9ab
LMI
79132011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
7914
d1583c48
LMI
7915 * man.el (Man-bgproc-sentinel): Skip any arguments and only output
7916 the man page name (bug#7929).
7917
6a57fb5f
LMI
7918 * image.el (put-image): Mention the `put-image' overlay property
7919 (bug#7834).
7920
d7956b14
LMI
7921 * scroll-bar.el (set-scroll-bar-mode): Mention that
7922 `scroll-bar-mode' lists the values (bug#7772).
7923
5b2d4a66
LMI
7924 * image-mode.el (image-mode-fit-frame): Mention that it's a toggle
7925 command (bug#7729).
7926
7509a874
LMI
7927 * rect.el (apply-on-rectangle): Return the point after the last
7928 operation.
7929 (string-rectangle): Go to the point after the last operation
7930 (bug#7522).
7931
4fe74b19
LMI
7932 * printing.el (pr-toggle-region): Clarify the documentation
7933 slightly (bug#7493).
7934
b796c9b7
SM
7935 * time.el (display-time-update):
7936 Allow `display-time-mail-function' to return nil (bug#7158).
7937 Fix suggested by Detlev Zundel.
ab283561 7938
fc233c9d
LMI
7939 * vc/diff.el (diff): Clarify the order the file names are read
7940 (bug#7111).
7941
43f5740b
LMI
7942 * mouse.el (mouse-set-region): Link to `mouse-drag-copy-region' in
7943 the doc string (bug#7015).
7944
f2182a76
LMI
7945 * font-lock.el (font-lock-maximum-decoration): Mention what
7946 numeric levels mean (bug#6935).
7947
621ef9ab
LMI
7948 * startup.el (initial-buffer-choice): Don't mention the `none'
7949 selection, which is against policy.
7950
adc47434
MR
79512011-07-14 Martin Rudalics <rudalics@gmx.at>
7952
b796c9b7
SM
7953 * window.el (display-buffer-normalize-special):
7954 Replace `dedicated' by `dedicate' to dedicate window (Bug#9072).
adc47434 7955
7e5bfb8f
EZ
79562011-07-14 Eli Zaretskii <eliz@gnu.org>
7957
7958 * subr.el (version<, version<=, version=): Mention "-CVS" and
7959 "-12345" alpha version numbers.
7960
27fa387a
CY
79612011-07-14 Chong Yidong <cyd@stupidchicken.com>
7962
7963 * bindings.el: Add advertised binding for set-mark-command
7964 (Bug#5772).
7965
8bdfa064
CY
79662011-07-14 Chong Yidong <cyd@stupidchicken.com>
7967
7968 * bindings.el (mode-line-other-buffer):
7969 * bookmark.el (bookmark-bmenu-2-window):
7970 * bs.el (bs-cycle-next, bs-cycle-previous):
7971 * net/tramp-cmds.el (tramp-append-tramp-buffers): Revert to using
7972 switch-to-buffer.
7973
7974 * net/tramp-compat.el (tramp-compat-pop-to-buffer-same-window):
b796c9b7 7975 Delete.
8bdfa064 7976
5eba16a3
JB
79772011-07-14 Juanma Barranquero <lekktu@gmail.com>
7978
7979 * follow.el (follow-debug-message, follow-redisplay):
7980 * jka-cmpr-hook.el (with-auto-compression-mode):
7981 Fix typos in docstrings.
7982
15853710
LMI
79832011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
7984
a28e4607
LMI
7985 * subr.el (with-silent-modifications): Clarify somewhat what the
7986 macro inhibits (bug#6525).
7987
15853710
LMI
7988 * simple.el (eval-expression): Note what it does if called
7989 interactively (bug#6495).
7990
bee0fcef
CY
79912011-07-13 Chong Yidong <cyd@stupidchicken.com>
7992
b796c9b7
SM
7993 * window.el (switch-to-buffer): New arg FORCE-SAME-WINDOW.
7994 Use pop-to-buffer buffer-or-name if it is nil.
bee0fcef
CY
7995
7996 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
7997 Remove switch-to-buffer.
7998
58274504
LMI
79992011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
8000
bd2fcc8d
LMI
8001 * files.el (make-directory): Clarify that an error will be raised
8002 if there's an error (bug#6397).
8003
0f04b32c
LMI
8004 * startup.el (initial-buffer-choice): Add `none' as a choice
8005 (bug#6234).
8006
465c5fc8
LMI
8007 * subr.el (add-hook): Clarify section about buffer-local hooks
8008 (bug#6218).
8009
58274504
LMI
8010 * dired.el (dired-flagged): Clarify doc string (bug#6117).
8011
bead9a43
JB
80122011-07-13 Juanma Barranquero <lekktu@gmail.com>
8013
8014 * tabify.el (untabify): Preserve the current column so that point
8015 doesn't move (bug#6032).
8016
3af98a7b
LMI
80172011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
8018
b796c9b7
SM
8019 * progmodes/cperl-mode.el (cperl-syntaxify-by-font-lock):
8020 Rewrite to avoid awkward possessive "s" (bug#5986).
3af98a7b 8021
6240145a
GM
80222011-07-13 Glenn Morris <rgm@gnu.org>
8023
8024 * dired.el (dired-use-ls-dired): Doc fix. (Bug#9039).
8025 (dired-insert-directory): Give a message the first time
8026 if ls is found not to support --dired.
8027
1d8c2ccc
LMI
80282011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
8029
8030 * simple.el (toggle-truncate-lines): Clarify what is toggled
8031 (bug#5580). Text by Drew Adams.
8032
5fc4038e
CY
80332011-07-13 Chong Yidong <cyd@stupidchicken.com>
8034
8035 * simple.el (blink-matching-open): Make the error message from the
8036 last change less verbose.
8037
bf6012e5
DN
80382011-07-13 Dan Nicolaescu <dann@ics.uci.edu>
8039
8040 * font-lock.el (font-lock-comment-face): Use the high contrast
8041 "yellow" color for font-lock-comment-face on low color terminals
8042 using a dark background color (bug#4221).
8043
343c3b5a
LMI
80442011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
8045
7e9505c5
LMI
8046 * dired.el (dired-insert-set-properties): Make the doc string
8047 reflect what it does now (bug#5325).
8048
c26fdcf5
LMI
8049 * simple.el (blink-matching-open): Say that we were unable to find
8050 the match within the limit, if we're limited (bug#5122).
8051
bb388cc5
LMI
8052 * international/mule-cmds.el (prefer-coding-system): Add an
8053 example (bug#4869).
8054
343c3b5a
LMI
8055 * progmodes/etags.el (tags-search): Document `file-list-form'
8056 (bug#4731).
8057
2a517d45
LM
80582011-07-13 Lawrence Mitchell <wence@gmx.li>
8059
8060 * net/browse-url.el (browse-url-default-browser)
8061 (browse-url-browser-function): Make the default browser choice a
8062 bit more logical (bug#4300). Also clean up the doc string.
8063
b6c78ef2
JB
80642011-07-13 Juanma Barranquero <lekktu@gmail.com>
8065
8066 * bindings.el (completion-ignored-extensions): Add OpenMCL/Clozure
8067 binary endings (bug#4440).
8068
1c4dd947
LMI
80692011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
8070
a2014063
LMI
8071 * info.el (info-insert-file-contents): Inhibit jka-compr messages,
8072 which can be pretty annoying (bug#8971).
8073
9c9c2d88
LMI
8074 * jka-compr.el (jka-compr-verbose): New variable, and use
8075 throughout (bug#8971).
8076
1c4dd947
LMI
8077 * info.el (Info-find-file): Fall back on the installation
8078 directory if we can't find the info node anywhere else.
8079
a1c9f41b
SO
80802011-07-13 Sergei Organov <osv@javad.com> (tiny change)
8081
8082 * vc/vc.el (vc-revert-file):
8083 Don't set file time-stamp in the past. (Bug#5181)
8084
536f3d36
LMI
80852011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
8086
7152b011
LMI
8087 * files.el (after-find-file): Give a better error message when
8088 trying to find a symlink that points to a file that doesn't exist
8089 (bug#4398).
8090
536f3d36
LMI
8091 * progmodes/cc-vars.el: Remove (probably) misleading comment
8092 (bug#4396).
8093
460c0fba
JB
80942011-07-12 Johan Bockgård <bojohan@gnu.org>
8095
8096 * mouse-sel.el (mouse-sel-primary-overlay): Use the `region' face.
8097
7a6bda45
CY
80982011-07-12 Chong Yidong <cyd@stupidchicken.com>
8099
8100 * mouse-sel.el: Hack restoring functionality, while keeping
8101 compatibility with 2010-07-03 changes to mouse selection.
8102 (mouse-sel-primary-overlay): New var.
8103 (mouse-sel-selection-alist): Use it.
8104 (mouse-sel-mode): Doc fix; remove points that are default features
8105 of mouse.el.
8106
c79598ef
JB
81072011-07-12 Johan Bockgård <bojohan@gnu.org>
8108
8109 * progmodes/compile.el (compilation-error-regexp-alist-alist):
8110 Fix previous fix (bug#2490).
8111
ff8be6ef
RW
81122011-07-12 Roland Winkler <winkler@gnu.org>
8113
b796c9b7
SM
8114 * textmodes/bibtex.el (bibtex-initialize):
8115 Use pop-to-buffer-same-window.
ff8be6ef
RW
8116 (bibtex-search-entries): Fix interactive call.
8117
296ba3ee
LMI
81182011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
8119
f5242a02 8120 * progmodes/compile.el (compilation-error-regexp-alist-alist):
b796c9b7
SM
8121 Fontise bytecomp Error lines more correctly (bug#2490).
8122 Fix suggested by Johan Bockgård.
f5242a02 8123
296ba3ee
LMI
8124 * subr.el (remove-duplicates): Remove; `delete-dups' is sufficient.
8125
8126 * dired-x.el (dired-guess-default): Use `delete-dups'.
8127
f69fd0d2
CY
81282011-07-12 Chong Yidong <cyd@stupidchicken.com>
8129
8130 * dired.el (dired-mark-prompt):
8131 * dired-aux.el (dired-read-shell-command): Doc fix.
8132
eab5dc07
LMI
81332011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
8134
b796c9b7
SM
8135 * mail/sendmail.el (sendmail-query-once):
8136 Use `customize-save-variable' unconditionally, now that it works under
9988520a
LMI
8137 emacs -Q.
8138
8139 * mail/smtpmail.el (smtpmail-query-smtp-server): Ditto.
8140
eab5dc07
LMI
8141 * cus-edit.el (custom-file): Take an optional no-error variable.
8142 (customize-save-variable): Set the variable, and give a warning if
8143 running under "emacs -q".
8144
a1e65d42
JB
81452011-07-11 Juanma Barranquero <lekktu@gmail.com>
8146
8147 * loadhist.el (unload-feature-special-hooks):
8148 Add `auto-coding-functions', `fill-nobreak-predicate' and
8149 `find-directory-functions' (bug#5327).
8150
1d52da10
LMI
81512011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
8152
be958f1d
LMI
8153 * vc/ediff.el (ediff-patch-file): Clarify doc string (bug#3138).
8154
5bedb26c
LMI
8155 * cus-edit.el (custom-guess-name-alist): -alist variables should
8156 use the `alist' type (bug#3120). Suggested by Drew Adams.
8157
1d52da10
LMI
8158 * printing.el: Add documentation to all the `pr-toggle-' commands.
8159
cd394be1 81602011-07-11 Leo Liu <sdl.web@gmail.com>
481a51b6
LL
8161
8162 * files.el (toggle-read-only): Only do the `C-x C-q' warning on VC
8163 backends where it makes sense (bug#2623).
8164
dcc88d8a
LMI
81652011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
8166
c3de9feb
LMI
8167 * dired-x.el (dired-guess-default): Remove duplicate shell command
8168 entries (bug#2028).
8a93078b 8169 (dired-guess-default): Fix grammar in doc string (bug#2028).
eea84fe5 8170 (dired-guess-shell-alist-user): Clarify the example a bit (bug#2030).
c3de9feb 8171
dcc88d8a
LMI
8172 * subr.el (remove-duplicates): New conveniency function.
8173
505e3645
LMI
81742011-07-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
8175
8176 * tool-bar.el (tool-bar-mode): Clarify positive/negative arguments
8177 (bug#1526).
8178
81792011-07-10 Martin Rudalics <rudalics@gmx.at>
8180
8181 * window.el (display-buffer-normalize-default): Don't invert
8182 meaning of even-window-heights. Reported by Eli Zaretskii
8183 <eliz@gnu.org>.
8184
455e4fa1
BR
81852011-07-10 Bob Rogers <rogers@rgrjr.dyndns.org>
8186
8187 * vc/vc.el (vc-diff-internal): Fix race condition (Bug#1256).
8188
8e0bc3e9
CY
81892011-07-10 Chong Yidong <cyd@stupidchicken.com>
8190
8191 * window.el (display-buffer): Fix arguments to
8192 display-buffer-reuse-window in last change.
8193
fa7c3228
CY
8194 * faces.el (link): Use a less saturated blue on light backgrounds.
8195
8196 * startup.el (fancy-startup-text, fancy-about-text)
8197 (fancy-startup-tail): Use font-lock faces, for background safety.
8198
c0a7f300
BN
81992011-07-09 Bob Nnamtrop <bobnnamtrop@gmail.com> (tiny change)
8200
b796c9b7
SM
8201 * emulation/viper-cmd.el (viper-change-state-to-vi):
8202 Limit triggering of abbrev expansion (Bug#9038).
c0a7f300 8203
4dc2a129
MR
82042011-07-09 Martin Rudalics <rudalics@gmx.at>
8205
8206 * window.el (display-buffer-default-specifiers): Remove.
8207 (display-buffer-macro-specifiers): Remove default specifiers.
8208 (display-buffer-alist): Default to nil.
b796c9b7 8209 (display-buffer-reuse-window): New optional argument other-window.
4dc2a129
MR
8210 (display-buffer-pop-up-window): Allow splitting internal
8211 windows. Check whether a live window was created.
8212 (display-buffer-other-window-means-other-frame)
8213 (display-buffer-normalize-arguments): Rename to
8214 display-buffer-normalize-argument and rewrite. Set the
8215 other-window specifier.
8216 (display-buffer-normalize-special): New function.
8217 (display-buffer-normalize-options): Rename to
8218 display-buffer-normalize-default and rewrite.
8219 (display-buffer-normalize-options-inhibit): Remove.
8220 (display-buffer-normalize-specifiers): Rewrite.
8221 (display-buffer): Process other-window specifier and call
8222 display-buffer-reuse-window with it. Emulate Emacs 23 behavior
8223 more faithfully.
b796c9b7 8224 (pop-up-windows, even-window-heights): Restore Emacs 23 default values.
4dc2a129 8225 (display-buffer-alist-set): Don't handle 'unset default values.
b796c9b7
SM
8226 (display-buffer-in-window, display-buffer-alist-set):
8227 Replace symbol "dedicated" by "dedicate". Reported by Tassilo Horn
4dc2a129
MR
8228 <tassilo@member.fsf.org>.
8229
2d43b8c9
LL
82302011-07-09 Leo Liu <sdl.web@gmail.com>
8231
8232 * register.el (insert-register): Restore accidental change on
8233 2011-06-26. (Bug#9028)
8234
7f9b7c53
GM
82352011-07-09 Glenn Morris <rgm@gnu.org>
8236
8237 * subr.el (remq): Handle the empty list. (Bug#9024)
8238
f042cfd8
AS
82392011-07-08 Andreas Schwab <schwab@linux-m68k.org>
8240
8241 * mail/sendmail.el (send-mail-function): No longer delay custom
8242 initialization.
8243 * custom.el (custom-initialize-delay): Doc fix.
8244
856b2f11
SM
82452011-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
8246
8247 * abbrev.el (expand-abbrev): Try to preserve point (bug#5805).
8248
afae1d68
MA
82492011-07-08 Michael Albinus <michael.albinus@gmx.de>
8250
8251 * net/tramp-sh.el (tramp-sh-handle-start-file-process): Use a
8252 human-friendly prompt.
8253
0757af94
SM
82542011-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
8255
8256 * vc/vc-bzr.el (vc-bzr-revision-keywords): Remove svn, it's only
8257 provided by a particular plugin.
8258
d760b731
LMI
82592011-07-08 Lars Magne Ingebrigtsen <larsi@gnus.org>
8260
8261 * mail/sendmail.el (sendmail-query-once): If we aren't allowed to
8262 save customizations (with "emacs -Q"), just set the variable
8263 instead of erroring out.
8264
8265 * mail/smtpmail.el (smtpmail-query-smtp-server): Ditto.
8266
cd79ce90
JL
82672011-07-08 Juri Linkov <juri@jurta.org>
8268
8269 * arc-mode.el (archive-zip-expunge, archive-zip-update)
8270 (archive-zip-update-case): Use 7z if found by `executable-find'.
8271 The order of searching the available programs is the same as in
8272 `archive-zip-extract' (bug#8968).
8273
14cc04aa
CY
82742011-07-07 Chong Yidong <cyd@stupidchicken.com>
8275
8276 * menu-bar.el (menu-bar-line-wrapping-menu): Revert last change.
8277 (menu-bar-options-menu): Tweak descriptions.
8278
0a1848ec
LMI
82792011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
8280
8281 * menu-bar.el (menu-bar-line-wrapping-menu): Make all the Options
8282 menu items into verb phrases (bug#1421). Also refill to fit under
8283 80 columns.
8284
f5bd0689
CY
82852011-07-07 Chong Yidong <cyd@stupidchicken.com>
8286
538e85c6
CY
8287 * info.el (info, Info-read-node-name-2, Info-read-node-name-1)
8288 (Info-read-node-name): Doc fix (Bug#1084).
8289
f5bd0689
CY
8290 * thingatpt.el (forward-thing, bounds-of-thing-at-point)
8291 (thing-at-point, beginning-of-thing, end-of-thing, in-string-p)
8292 (end-of-sexp, beginning-of-sexp)
8293 (thing-at-point-bounds-of-list-at-point, forward-whitespace)
8294 (forward-symbol, forward-same-syntax, word-at-point)
8295 (sentence-at-point): Doc fix (Bug#1144).
8296
56ec5115
LMI
82972011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
8298
f3f8e37f
LMI
8299 * info.el (Info-mode-map): Remove S-TAB binding, since [backtab]
8300 should cover it (bug#1281).
8301
0757af94 8302 * cus-edit.el (custom-show): Mark as obsolete.
af0905c8 8303
e9fce1ac 8304 * net/network-stream.el (network-stream-open-starttls): If GnuTLS
12b9eb35
LMI
8305 negotiation fails, then possibly try again with a non-encrypted
8306 connection (bug#9017).
8307
56ec5115
LMI
8308 * mail/smtpmail.el (smtpmail-stream-type): Note that `plain' can
8309 be used.
8310
c2f9aec8
RS
83112011-07-07 Richard Stallman <rms@gnu.org>
8312
8313 * mail/rmail.el (rmail-next-error-move): Use `compilation-message'
8314 property, and handle its changed format.
8315 Look for the correct line number.
8316 Use file's line contents (but not past first =) to find
8317 correct line in message.
8318
ef7b981d 83192011-07-07 Kenichi Handa <handa@m17n.org>
c805dec0
KH
8320
8321 * international/characters.el (build-unicode-category-table):
8322 Delete it.
0757af94 8323 (unicode-category-table): Set it by unicode-property-table-internal.
c805dec0 8324
0757af94 8325 * international/mule-cmds.el (char-code-property-alist): Move to
c805dec0
KH
8326 to src/chartab.c.
8327 (get-char-code-property): Call unicode-property-table-internal to
8328 load a file. Call get-unicode-property-internal where necessary.
8329 (put-char-code-property): Call unicode-property-table-internal to
8330 load a file. Call put-unicode-property-internal where necessary.
8331 put-unicode-property-internal where necessary.
0757af94
SM
8332 (char-code-property-description):
8333 Call unicode-property-table-internal to load a file.
c805dec0
KH
8334
8335 * international/charprop.el:
8336 * international/uni-bidi.el:
8337 * international/uni-category.el:
8338 * international/uni-combining.el:
8339 * international/uni-comment.el:
8340 * international/uni-decimal.el:
8341 * international/uni-decomposition.el:
8342 * international/uni-digit.el:
8343 * international/uni-lowercase.el:
8344 * international/uni-mirrored.el:
8345 * international/uni-name.el:
8346 * international/uni-numeric.el:
8347 * international/uni-old-name.el:
8348 * international/uni-titlecase.el:
8349 * international/uni-uppercase.el: Regenerate.
8350
8351 * loadup.el: Load international/charprop.el before
8352 international/characters.
8353
e14b388a
CY
83542011-07-07 Chong Yidong <cyd@stupidchicken.com>
8355
8356 * window.el (next-buffer, previous-buffer): Signal an error if
8357 called from a minibuffer window.
8358
8359 * bindings.el: Revert 2011-07-04 change.
8360
354cf0ba
RS
83612011-07-06 Richard Stallman <rms@gnu.org>
8362
8363 * mail/rmailmm.el (rmail-mime-process): Use markers for buf positions.
8364 (rmail-mime-insert-bulk, rmail-mime-insert-text):
8365 Treat markers like ints.
8366 (rmail-mime-entity): Doc fix.
8367
a48868a7
LMI
83682011-07-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
8369
4906cd3d
LMI
8370 * mail/smtpmail.el (smtpmail-default-smtp-server): Made into a
8371 defcustom again for backwards compatibility.
8372
e0457abe
LMI
8373 * simple.el (shell-command-on-region): Fill.
8374
d67f7e1f
LMI
8375 * dired-aux.el (dired-kill-line): Add a doc string.
8376
fe204702
LMI
8377 * dabbrev.el (dabbrev-abbrev-char-regexp): Note that nil defaults
8378 to "\\sw\\|\\s_" (bug#358).
8379
a48868a7
LMI
8380 * dired.el (dired-mode): Clarify "unmark or unflag" (bug#8770).
8381 (dired-unmark-backward): Ditto.
8382 (dired-flag-backup-files): Ditto.
8383
8384 * dired-x.el (dired-mark-sexp): Ditto.
8385
aa8a705c
RS
83862011-07-06 Richard Stallman <rms@gnu.org>
8387
8388 * mail/rmailmm.el: Give entity a new slot, TRUNCATED.
8389 (rmail-mime-entity): New arg TRUNCATED.
8390 (rmail-mime-entity-truncated, rmail-mime-entity-set-truncated):
8391 New functions.
8392 (rmail-mime-save): Warn if entity is truncated.
8393 (rmail-mime-toggle-hidden): Likewise, for showing.
8394 (rmail-mime-process-multipart): Record when an entity is truncated.
8395
a9a936b9
RS
8396 * mail/rmailmm.el (rmail-search-mime-message): Don't get confused
8397 if ENTITY is a string.
8398
1f2b92cb
LMI
83992011-07-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
8400
f4f73198 8401 * emacs-lisp/lisp-mode.el (eval-defun-1): Update the documentation
0757af94
SM
8402 of faces when `M-C-x'-ing their definitions (bug#8378).
8403 Also clean up the code slightly.
f4f73198 8404
12b16734 8405 * progmodes/grep.el (rgrep): Don't bind `process-connection-type',
da6062e6 8406 because that makes the colors go away.
12b16734 8407
f0691d22
LMI
8408 * mail/sendmail.el (send-mail-function): Change the default to
8409 `sendmail-query-once'.
9e87df06 8410 (sendmail-query-once): Add an autoload cookie.
f0691d22 8411
1f2b92cb
LMI
8412 * net/network-stream.el (network-stream-open-starttls): Try using
8413 a plain connection even if the server offered STARTTLS, and we
8414 kinda wanted to use it, if Emacs doesn't have any STARTTLS
8415 capability. This should make smtpmail.el work in slightly more
8416 configurations.
8417
1cdd2a1b
MA
84182011-07-06 Michael Albinus <michael.albinus@gmx.de>
8419
8420 * net/tramp-compat.el (tramp-compat-pop-to-buffer-same-window):
8421 New defun.
8422 * net/tramp-cmds.el (tramp-append-tramp-buffers): Use it.
8423
fbcc67e2
MM
84242011-07-06 Michael R. Mauger <mmaug@yahoo.com>
8425
8426 * progmodes/sql.el: Version 3.0
0757af94 8427 (sql-product-alist): Add product :completion-object,
fbcc67e2 8428 :completion-column, and :statement attributes.
0757af94 8429 (sql-mode-menu, sql-interactive-mode-map): Fix List entries.
fbcc67e2 8430 (sql-mode-syntax-table): Mark all punctuation.
0757af94 8431 (sql-font-lock-keywords-builder): Temporarily remove fallback on
fbcc67e2
MM
8432 ansi keywords.
8433 (sql-regexp-abbrev, sql-regexp-abbrev-list): New functions.
0757af94 8434 (sql-mode-oracle-font-lock-keywords): Improve.
fbcc67e2
MM
8435 (sql-oracle-show-reserved-words): New function for development.
8436 (sql-product-font-lock): Simplify for source code buffers.
8437 (sql-product-syntax-table, sql-product-font-lock-syntax-alist):
8438 New functions.
8439 (sql-highlight-product): Set product specific syntax table.
0757af94
SM
8440 (sql-mode-map): Add statement movement functions.
8441 (sql-ansi-statement-starters, sql-oracle-statement-starters):
8442 New variable.
fbcc67e2
MM
8443 (sql-statement-regexp, sql-beginning-of-statement)
8444 (sql-end-of-statement, sql-signum): New functions.
0757af94 8445 (sql-buffer-live-p, sql=find-sqli-buffer): Add CONNECTION parameter.
fbcc67e2
MM
8446 (sql-show-sqli-buffer): Bug fix.
8447 (sql-interactive-mode): Store connection data as buffer local.
0757af94 8448 (sql-connect): Add NEW-NAME parameter. Redesign interaction
fbcc67e2
MM
8449 with sql-interactive-mode.
8450 (sql-save-connection): Save buffer local settings.
0757af94 8451 (sql-connection-menu-filter): Change menu entry name.
fbcc67e2
MM
8452 (sql-product-interactive): Bug fix.
8453 (sql-preoutput-hold): New variable.
8454 (sql-interactive-remove-continuation-prompt): Bug fixes.
8455 (sql-debug-redirect): New variable.
8456 (sql-str-literal): New function.
8457 (sql-redirect, sql-redirect-one, sql-redirect-value, sql-execute):
0757af94 8458 Redesign.
fbcc67e2
MM
8459 (sql-oracle-save-settings, sql-oracle-restore-settings)
8460 (sql-oracle-list-all, sql-oracle-list-table): New functions.
8461 (sql-completion-object, sql-completion-column)
8462 (sql-completion-sqlbuf): New variables.
8463 (sql-build-completions-1, sql-build-completions)
8464 (sql-try-completion): New functions.
8465 (sql-read-table-name): Use them.
8466 (sql-contains-names): New buffer local variable.
8467 (sql-list-all, sql-list-table): Use it.
8468 (sql-oracle-completion-types): New variable.
8469 (sql-oracle-completion-object, sql-sqlite-completion-object)
8470 (sql-postgres-completion-object): New functions.
8471
d4eaeab1
GM
84722011-07-06 Glenn Morris <rgm@gnu.org>
8473
8474 * window.el (pop-to-buffer): Doc fix.
8475
322b7dab 84762011-07-06 Markus Heiser <markus.heiser@darmarit.de> (tiny change)
a1d3a912
CY
8477
8478 * progmodes/gud.el (gud-pdb-marker-regexp): Accept \r char (Bug#5653).
8479
322b7dab 84802011-07-06 Chong Yidong <cyd@stupidchicken.com>
0484d600 8481
322b7dab 8482 * window.el (special-display-popup-frame): Doc fix (Bug#8853).
4f8f657f 8483
322b7dab 8484 * info.el (Info-directory-toc-nodes): Minor doc fix (Bug#8833).
8f43cbf3 8485
605dd5bf
CY
84862011-07-05 Chong Yidong <cyd@stupidchicken.com>
8487
8488 * button.el (button): Inherit from link face. Suggested by Dan
8489 Nicolaescu.
8490
7dbfa719
SM
84912011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
8492
3db614b0
SM
8493 * progmodes/gdb-mi.el: Fit in 80 columns.
8494 (gdb-setup-windows, gdb-restore-windows): Avoid other-window and
8495 switch-to-buffer.
8496
7dbfa719
SM
8497 * progmodes/which-func.el (which-func-ff-hook): Don't output a message
8498 if imenu is simply not configured (bug#8941).
8499
919d884a
KM
85002011-07-05 Ken Manheimer <ken.manheimer@gmail.com>
8501
8502 * allout.el (allout-post-undo-hook): New allout outline-change
8503 event hook to signal undo activity.
8504 (allout-post-command-business): Run allout-post-undo-hook if an
8505 undo just occurred.
7dbfa719
SM
8506 (allout-after-copy-or-kill-hook, allout-mode): Minor docstring changes.
8507 * allout-widgets.el (allout-widgets-after-undo-function):
8508 Ensure the integrity of the current item's decoration after it has been
919d884a
KM
8509 in the vicinity of an undo.
8510 (allout-widgets-mode): Include allout-widgets-after-undo-function
8511 on the new allout-post-undo-hook.
8512
450a0f09
SM
85132011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
8514
8515 * emacs-lisp/lisp-mode.el (lisp-interaction-mode-abbrev-table):
8516 Let define-derived-mode define it.
8517 * emacs-lisp/derived.el (define-derived-mode): Try to avoid creating
8518 cycles of abbrev-table inheritance (bug#8998).
8519
2de69e00
RW
85202011-07-05 Roland Winkler <winkler@gnu.org>
8521
8522 * textmodes/bibtex.el: Add support for biblatex.
8523 (bibtex-BibTeX-entry-alist, bibtex-biblatex-entry-alist)
8524 (bibtex-BibTeX-field-alist, bibtex-biblatex-field-alist)
8525 (bibtex-dialect-list, bibtex-dialect, bibtex-no-opt-remove-re)
8526 (bibtex-entry-alist, bibtex-field-alist): New variables.
8527 (bibtex-entry-field-alist): Obsolete alias for
8528 bibtex-BibTeX-entry-alist.
8529 (bibtex-entry-alist, bibtex-field-alist): New widgets.
8530 (bibtex-set-dialect): New command.
8531 (bibtex-entry-type, bibtex-entry-head)
450a0f09
SM
8532 (bibtex-entry-maybe-empty-head, bibtex-any-valid-entry-type):
8533 Bind via bibtex-set-dialect.
2de69e00
RW
8534 (bibtex-Article, bibtex-Book, bibtex-Booklet, bibtex-InBook)
8535 (bibtex-InCollection, bibtex-InProceedings, bibtex-Manual)
8536 (bibtex-MastersThesis, bibtex-Misc, bibtex-PhdThesis)
8537 (bibtex-Proceedings, bibtex-TechReport, bibtex-Unpublished):
8538 Define via bibtex-set-dialect.
450a0f09
SM
8539 (bibtex-name-in-field, bibtex-remove-OPT-or-ALT):
8540 Obey bibtex-no-opt-remove-re.
2de69e00
RW
8541 (bibtex-vec-push, bibtex-vec-incr): New functions.
8542 (bibtex-format-entry, bibtex-field-list)
8543 (bibtex-print-help-message, bibtex-validate)
8544 (bibtex-search-entries): Use new format of bibtex-entry-alist.
8545
2dcdbdd9
SM
85462011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
8547
8548 * progmodes/compile.el (compilation-goto-locus):
8549 * net/tramp-cmds.el (tramp-append-tramp-buffers):
8550 * bs.el (bs-cycle-next, bs-cycle-previous):
8551 * bookmark.el (bookmark-bmenu-list, bookmark-bmenu-2-window):
8552 * bindings.el (mode-line-other-buffer):
8553 * autoinsert.el (auto-insert):
8554 * arc-mode.el (archive-extract):
8555 * abbrev.el (edit-abbrevs): Fix some uses of switch-to-buffer.
8556
b27640fe
JB
85572011-07-05 Juanma Barranquero <lekktu@gmail.com>
8558
8559 * emacs-lock.el (emacs-lock-mode): Fix typo in variable name.
8560 Fix check of `emacs-lock-unlockable-modes'.
8561 Coerce true values of `emacs-lock--try-unlocking' to t.
8562
53bbe3ad
JB
85632011-07-05 Juanma Barranquero <lekktu@gmail.com>
8564
8565 * obsolete/old-emacs-lock.el: Rename from emacs-lock.el.
8566 * emacs-lock.el: New file.
8567
1d3cdbc7
JD
85682011-07-05 Julien Danjou <julien@danjou.info>
8569
8570 * textmodes/rst.el (rst-define-level-faces): Use `facep' rather
8571 than `boundp' to check if face is set.
8572
9173deec
JB
85732011-07-05 Juanma Barranquero <lekktu@gmail.com>
8574
8575 * register.el (registerv-make):
8576 * window.el (window-min-height): Fix typos in docstrings.
8577
869795d6
JD
85782011-07-05 Jan Djärv <jan.h.d@swipnet.se>
8579
9173deec 8580 * dynamic-setting.el (dynamic-setting-handle-config-changed-event):
869795d6
JD
8581 Update doc string.
8582
b768cdcd
JB
85832011-07-04 Juanma Barranquero <lekktu@gmail.com>
8584
8585 * server.el (server-execute): Catch quit and call
8586 `server-return-error' to pass the error back to emacsclient and
8587 close the connection (bug#8942).
8588
13aa217b
KM
85892011-07-04 Ken Manheimer <ken.manheimer@gmail.com>
8590
8591 * allout.el (allout-encrypt-unencrypted-on-saves): Do not provide
8592 insecure exception for current topic. Also note that auto-saves
8593 are handled differently.
8594
5d3385a0 8595 (allout-auto-save-temporarily-disabled, allout-just-did-undo):
13aa217b
KM
8596 State variables for tracking auto-save inhibition situation.
8597
8598 (allout-write-contents-hook-handler): Rename from
8599 'allout-write-file-hook-handler', and describe how it depends on
8600 write-contents-functions sensitivity to non-nil value to prevent
8601 file write.
8602
8603 (allout-auto-save-hook-handler): Remove. auto-save does not check
8604 this in individual buffers, only in the starting buffer, so this
8605 is not the right way for us to inhibit auto-save in a buffer
8606 according to its condition.
8607
8608 (allout-mode): Use new allout-write-contents-hook-handler, and
8609 only with write-contents-functions. Remove auto-save provisions -
8610 they're implemented elsewhere.
8611
8612 (allout-before-change-handler): If undo is in progress, note that
8613 for attention of allout-post-command-business.
8614
8615 (allout-post-command-business): If the command we're following was
8616 an undo, check for change in the status of encrypted items and
8617 adjust auto-save inhibitions accordingly.
8618
8619 (allout-toggle-subtree-encryption): Adjust auto-save inhibition
8620 according to whether there are or aren't any plain-text topics
8621 pending encryption.
8622
2dcdbdd9 8623 (allout-inhibit-auto-save-info-for-decryption):
1154d12e
JB
8624 Adjust buffer-saved-size and some allout state to inhibit auto-saves
8625 if there are plain-text topics pending encryption.
13aa217b
KM
8626
8627 (allout-maybe-resume-auto-save-info-after-encryption): Adjust
8628 buffer-saved-size and some allout state to not inhibit auto-saves
8629 if there are no longer any plain-text topics pending encryption.
8630
0757af94
SM
8631 (allout-next-topic-pending-encryption, allout-encrypt-decrypted):
8632 No longer provide for exemption of the current topic.
13aa217b 8633
ac89b32c
JL
86342011-07-04 Juri Linkov <juri@jurta.org>
8635
8636 Add 7z operations to delete and save changed members (bug#8968).
8637 * arc-mode.el (archive-7z-expunge, archive-7z-update):
8638 New defcustoms.
8639 (archive-7z-write-file-member): New function.
8640 (archive-7z-summarize): Fix the number of dashes in the
8641 listing output.
8642
8fa39615
SM
86432011-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
8644
8645 * pcmpl-linux.el (pcomplete-pare-list): Re-add, from pcomplete.el
8646 (bug#8958).
8647
2f11b3f1
CY
86482011-07-04 Chong Yidong <cyd@stupidchicken.com>
8649
d66fef2b
CY
8650 * bindings.el: Ignore next-buffer and previous-buffer in
8651 minibuffer-local-map.
8652
2f11b3f1
CY
8653 * font-lock.el (font-lock-builtin-face): Change light background
8654 color to dark slate blue (Bug#6693).
8655
f932a347
WD
86562011-07-04 Wang Diancheng <dcwang@kingbase.com.cn> (tiny change)
8657
8658 * progmodes/gdb-mi.el (gdb): Use completion-at-point.
8659
c8af70e1
SM
86602011-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
8661
8662 * files.el (find-file): Use pop-to-buffer-same-window (bug#8911).
8663 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
8664 Add switch-to-buffer.
8665
f158badc
LMI
86662011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
8667
8668 * isearch.el (isearch-search-fun-function): Clarify further the
8669 meaning of the function returned.
8670
6d95bd46
MA
86712011-07-04 Michael Albinus <michael.albinus@gmx.de>
8672
8673 * net/tramp-cmds.el (tramp-cleanup-this-connection): New command.
8674
8675 * net/tramp-sh.el (tramp-color-escape-sequence-regexp): New defconst.
8676 (tramp-sh-handle-insert-directory, tramp-convert-file-attributes):
8677 Use it.
8678 (tramp-remote-path): Add "/bin" and "/usr/bin". On busyboxes,
8679 `tramp-default-remote-path' does not exist.
8680 (tramp-send-command-and-read): New optional argument NOERROR.
8681 (tramp-open-connection-setup-interactive-shell)
8682 (tramp-get-remote-path, tramp-get-remote-stat): Use it.
8683 (tramp-get-remote-readlink): Do not mask with `ignore-errors'.
8684 (tramp-process-sentinel): Flush also process' connection property.
8685 (tramp-sh-handle-start-file-process): Do not set process
8686 sentinel. It is done now ...
8687 (tramp-maybe-open-connection): ... here. (Bug#8929)
8688
909e6b67
MK
86892011-07-04 MON KEY <monkey@sandpframing.com>
8690
8691 * play/animate.el (animate-string): Doc fixes and allow changing
8692 the buffer name (bug#5417).
8693
86942011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
8695
c8af70e1 8696 * play/animate.el (animation-buffer-name): Rename from *animate*.
909e6b67 8697
f34755dc
PE
86982011-07-04 Paul Eggert <eggert@cs.ucla.edu>
8699
396cec72
PE
8700 * emacs-lisp/timer.el: Use time-date fns rather than rolling our own.
8701 This is simpler and helps future-proof the code.
8702 (timer-until): Use time-subtract and float-time.
08235028 8703 (timer--time-less-p): Use time-less-p.
f34755dc 8704
56e6cc31
JB
87052011-07-04 Juanma Barranquero <lekktu@gmail.com>
8706
3abb79e5
JB
8707 * type-break.el (timep): Use the value of `float-time' to avoid a
8708 byte-compiler warning.
8709
56e6cc31
JB
8710 * server.el (server-eval-and-print): Return any result, even nil.
8711
7b9430b4
PE
87122011-07-03 Paul Eggert <eggert@cs.ucla.edu>
8713
8714 * type-break.el: Accept time formats that the builtins accept.
8715 (timep, type-break-time-difference): Accept any format that
8716 float-time accepts, rather than insisting on (HIGH LOW USECS) format.
8717 This is simpler and helps future-proof the code.
8718 (type-break-time-difference): Round rather than ignoring
8719 subseconds components.
8720
3034e9e7
LMI
87212011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
8722
8723 * info.el (Info-apropos-matches): Make non-interactive, since it
8724 doesn't seem to do anything useful as a command (bug#8829).
8725
1485f4c0
CY
87262011-07-03 Chong Yidong <cyd@stupidchicken.com>
8727
8728 * frame.el (frame-background-mode, frame-set-background-mode):
c8af70e1 8729 Move from faces.el.
1485f4c0
CY
8730 (frame-default-terminal-background): New function.
8731
8732 * custom.el (custom-push-theme): Don't record faces in `changed'
8733 theme; this doesn't work correctly for per-frame face settings.
8734 (disable-theme): Use face-set-after-frame-default to reset faces.
8735 (custom--frame-color-default): New function.
8736
9fa3dd45
LMI
87372011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
8738
c8af70e1 8739 * dired.el (dired-flagging-regexp): Remove unused variable
9fa3dd45
LMI
8740 (bug#8769).
8741
6cbbc20c
KR
87422011-03-29 Kevin Ryde <user42@zip.com.au>
8743
8744 * progmodes/compile.el (compilation-error-regexp-alist-alist):
8745 `perl-Test2' extend to match possible "fail #N" rep count
8746 (bug#8377).
8747
c7f98048
LMI
87482011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
8749
65676592
LMI
8750 * mail/feedmail.el (feedmail-buffer-to-smtpmail):
8751 `smtpmail-via-smtp' now returns the error instead of nil.
8752
c7f98048
LMI
8753 * isearch.el (isearch-search-fun-function): Clarify the doc string
8754 (bug#8101).
8755
56e6cc31 87562011-07-03 Richard Kim <emacs18@gmail.com> (tiny change)
9a51c6c7
RK
8757
8758 * textmodes/texnfo-upd.el (texinfo-insert-menu): Don't insert
8759 unnecessary spaces (bug#8987).
8760
2b216704
LMI
87612011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
8762
8763 * net/network-stream.el (open-network-stream): Use the
8764 :end-of-capability command thoughout.
8765
87662011-07-03 Wolfgang Jenkner <wjenkner@inode.at> (tiny change)
8767
8768 * net/network-stream.el (open-network-stream): Add the
8769 :end-of-capability command parameter, used by pop3.el.
8770
36adf6ce
LMI
87712011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
8772
1ca0da0e
LMI
8773 * dired.el (dired-map-over-marks): Refill the doc string (bug#6814).
8774
fc00f69c
LMI
8775 * fringe.el (fringe-query-style): Remove redundant text " (type ?
8776 for list)" (bug#6475).
8777
28fd8759 8778 * files.el (file-expand-wildcards): Ignore non-readable
8350f087 8779 sub-directories while trying to find matches instead of signaling
28fd8759
LMI
8780 an error (bug#6297).
8781
0dd8b6da
LMI
8782 * man.el (Man-reference-regexp): Allow matching possible
8783 word-wrapped references (bug#6289).
8784
ce1438d6
LMI
8785 * vc/vc.el (vc-modify-change-comment): Change *VC-log* to *vc-log*
8786 for consistency with the other vc buffers (bug#6197).
8787 (vc-checkin): Ditto.
8788
8789 * vc/vc-arch.el: Fix comments to match the *VC-log* name change.
8790
36adf6ce
LMI
8791 * longlines.el (longlines-mode): Document what ARG does (bug#6150).
8792
e83cc1f7
LMI
87932011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
8794
8a20ca4c
LMI
8795 * custom.el (defcustom): Clarify that :set is only used in the
8796 Customize user interface (bug#6089).
8797
83319045
LMI
8798 * progmodes/flymake.el (flymake-mode): If the buffer isn't
8799 associated with a file, refuse to run instead of erroring out
8800 (bug#6084).
8801
a8392169
LMI
8802 * textmodes/fill.el (fill-region): Remove the "Ordinarily" from
8803 the doc string, since it appears that using `fill-column' always
8804 controls the width (bug#7845).
8805
e83cc1f7
LMI
8806 * simple.el (shell-command-on-region): Say where the error output
8807 went if `shell-command-default-error-buffer' is set (bug#6857).
8808
e47ca23b
KM
88092011-07-02 Ken Manheimer <ken.manheimer@gmail.com>
8810
8811 * allout.el (allout-yank-processing): Adjust cursor position for
8812 backwards-deleted space.
8813
8814 (allout-rebullet-heading): Register changes with
8815 allout-exposure-changed-hook, so the modified topic is properly
8816 decorated.
8817
5cf56143
LMI
88182011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
8819
08549772
LMI
8820 * minibuffer.el (completion-in-region): Document PREDICATE
8821 (bug#7136).
8822
48e96771
LMI
8823 * info-look.el (info-lookup-add-help): Clarify that ARGS is a list
8824 of keyword/argument pairs (bug#6904).
8825
c8af70e1
SM
8826 * replace.el (multi-occur):
8827 Mention `multi-occur-in-matching-buffers' in the doc string (bug#7566).
5cf56143 8828
e17d05e2
LMI
88292011-07-02 Drew Adams <drew.adams@oracle.com>
8830
8831 * dired.el (dired-mark-if): Make the message about whether it's
8832 marking or unmarking clearer (bug#8523).
8833
063b0e45
LMI
88342011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
8835
8836 * disp-table.el (display-table-print-array): New function.
8837 (describe-display-table): Use it to print the vectors more pretty
8838 (Bug#8859).
8839
28545e04
MR
88402011-07-02 Martin Rudalics <rudalics@gmx.at>
8841
8842 * window.el (window-state-get-1): Don't assign clone numbers.
8843 Add clone-of item to list of window parameters.
8844 (window-state-put-2): Don't process clone numbers.
8845 (display-buffer-alist): Fix doc-string.
8846
3349e122
SM
88472011-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
8848
8849 * subr.el (remq): Don't allocate if it's not needed.
8850 (keymap--menu-item-binding, keymap--menu-item-with-binding)
8851 (keymap--merge-bindings): New functions.
8852 (keymap-canonicalize): Use them to refine the canonicalization.
8853 * minibuffer.el (minibuffer-local-completion-map)
8854 (minibuffer-local-must-match-map): Move initialization from C.
8855 (minibuffer-local-filename-completion-map): Move initialization from C;
8856 don't inherit from anything here.
8857 (minibuffer-local-filename-must-match-map): Make obsolete.
8858 (completing-read-default): Use make-composed-keymap to combine
8859 minibuffer-local-filename-completion-map with either
8860 minibuffer-local-must-match-map or
8861 minibuffer-local-filename-completion-map.
8862
d224ac83
GM
88632011-07-01 Glenn Morris <rgm@gnu.org>
8864
3de63bf8
GM
8865 * type-break.el (type-break-time-sum): Use dolist.
8866
d224ac83
GM
8867 * textmodes/flyspell.el (flyspell-word-search-backward):
8868 Replace CL function.
8869
1a1e3f32
SM
88702011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
8871
fe3f64d5
SM
8872 * mouse.el (mouse--strip-first-event): New function.
8873 (function-key-map): Use it to map fringe clicks to normal clicks
8874 by default.
8875
eb604e34
SM
8876 * vc/vc-bzr.el (vc-bzr-revision-keywords): Update.
8877 (vc-bzr-revision-completion-table): Add support for annotate and date.
8878
1a1e3f32
SM
8879 * emacs-lisp/derived.el (define-derived-mode): Make abbrev-table
8880 inherit from parent.
8881
5bd35902
LMI
88822011-07-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
8883
ace6c69c 8884 * dired-aux.el (dired-diff): Doc fixup (bug#8816).
26bde865 8885 (dired-show-file-type): Doc fixup (bug#8818).
ace6c69c 8886
191e2bed
LMI
8887 * dired.el (dired-mode): Fix up the doc string as suggested by
8888 Drew Adams (bug#8817).
8889
5bd35902
LMI
8890 * progmodes/flymake.el (flymake-find-file-hook): Add an `autoload'
8891 cookie, since the manual says that it should be possible to add
8892 this function to `find-file-hook' (bug#8709).
8893
eee8207a
TZ
88942011-07-01 Teodor Zlatanov <tzz@lifelogs.com>
8895
8896 * progmodes/cfengine.el: Moved all cfengine3.el functionality
8897 here. Noted Ted Zlatanov as the maintainer.
8898 (cfengine-common-settings, cfengine-common-syntax): New functions
8899 to set up common things between `cfengine-mode' and
8900 `cfengine3-mode'.
8901 (cfengine3-mode): New mode.
8902 (cfengine3-defuns cfengine3-defuns-regex
8903 (cfengine3-class-selector-regex cfengine3-category-regex)
8904 (cfengine3-vartypes cfengine3-font-lock-keywords)
8905 (cfengine3-beginning-of-defun, cfengine3-end-of-defun)
eb604e34 8906 (cfengine3-indent-line): Add from cfengine3.el.
eee8207a 8907
36b148cf
MA
89082011-07-01 Michael Albinus <michael.albinus@gmx.de>
8909
8910 * net/tramp.el (tramp-encoding-command-interactive): New defcustom.
8911
8912 * net/tramp-sh.el (tramp-maybe-open-connection): Use it.
8913
0bf4ba9a
MR
89142011-07-01 Martin Rudalics <rudalics@gmx.at>
8915
8916 * window.el (same-window-buffer-names, same-window-regexps)
8917 (same-window-p, special-display-frame-alist)
8918 (special-display-popup-frame, special-display-function)
8919 (special-display-buffer-names, special-display-regexps)
8920 (special-display-p, pop-up-frame-alist, pop-up-frame-function)
8921 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
8922 (split-window-preferred-function, split-height-threshold)
8923 (split-width-threshold, even-window-heights)
8924 (display-buffer-mark-dedicated, window-splittable-p)
8925 (split-window-sensibly, window-safely-shrinkable-p):
8926 Un-obsolete.
8927 (display-buffer): Don't spread args with function specifier
8928 because special-display-popup-frame won't like it.
8929
35837f51
PE
89302011-07-01 Paul Eggert <eggert@cs.ucla.edu>
8931
d0672f86
PE
8932 Time-stamp simplifications and fixes.
8933 These improve accuracy slightly, and future-proof the code
8934 against some potential changes to current-time format.
8935
b9444d97
PE
8936 * woman.el (woman-decode-buffer, WoMan-log-end): Log fractional secs
8937 by using time-since and float-time.
8938
0ef923dc
PE
8939 * vc/ediff-util.el (ediff-calc-command-time): Use time-since
8940 and float-time. Say "NNN.NNN seconds" rather than "NNN seconds
8941 + NNN microseconds".
8942
2f81380d
PE
8943 * type-break.el (type-break-time-sum): Rewrite using time-add.
8944
845b5c3e
PE
8945 * play/hanoi.el (hanoi-current-time-float): Remove.
8946 All uses replaced by float-time.
8947
ee6f1be0
PE
8948 * nxml/rng-maint.el (rng-time-function): Rewrite using time-subtract.
8949 This yields a more-accurate answer.
8950 (rng-time-to-float): Remove; no longer needed.
8951
fe955043
PE
8952 * emacs-lisp/timer.el (timer-relative-time): Use time-add.
8953
5777162a
PE
8954 * calendar/timeclock.el (timeclock-seconds-to-time):
8955 Defalias to seconds-to-time, since they're the same thing.
8956
3103f8b6 8957 * emacs-lisp/elp.el (elp-elapsed-time):
e2bac5f6 8958 * emacs-lisp/benchmark.el (benchmark-elapse):
35837f51
PE
8959 * allout-widgets.el (allout-elapsed-time-seconds): Use float-time.
8960
0e61a35f
SM
89612011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
8962
8963 * window.el (bury-buffer): Don't iconify the only frame.
8964 (switch-to-buffer): Revert to Emacs<23 behavior, i.e. do not fallback
8965 to pop-to-buffer. Use pop-to-buffer-same-frame if you don't like that.
8966
ddd63a1e
CY
89672011-07-01 Chong Yidong <cyd@stupidchicken.com>
8968
0e61a35f
SM
8969 * eshell/em-smart.el (eshell-smart-display-navigate-list):
8970 Add mouse-yank-primary.
ddd63a1e 8971
055f4923
TZ
89722011-07-01 Teodor Zlatanov <tzz@lifelogs.com>
8973
8974 * progmodes/cfengine3.el: New file to support CFEngine 3.x.
8975
6a2fb145
SM
89762011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
8977
8978 * emacs-lisp/find-func.el (find-library--load-name): New fun.
8979 (find-library-name): Use it to find relative load names when provided
8980 absolute file name (bug#8803).
8981
fd4983f2
LMI
89822011-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
8983
887d14ad
LMI
8984 * textmodes/flyspell.el (flyspell-word): Consider words that
8985 differ only in case as potential doublons (bug#5687).
8986
c53dc7fc
LMI
8987 * net/soap-client.el (soap-invoke, soap-wsdl-resolve-references):
8988 Remove two rather uninteresting debugging-like messages to make
8989 debbugs.el more silent.
8990
fd4983f2
LMI
8991 * comint.el (comint-password-prompt-regexp): Accept "Response" as
8992 a password-like phrase.
8993
7a71b18d 89942011-06-30 Masatake YAMATO <yamato@redhat.com>
b14c0c55
AM
8995
8996 * progmodes/cc-guess.el: New file.
8997
6a2fb145 8998 * progmodes/cc-langs.el (c-mode-menu): Add "Style..." submenu.
b14c0c55
AM
8999
9000 * progmodes/cc-styles.el (cc-choose-style-for-mode): New function
9001 derived from `c-basic-common-init'.
9002
9003 * progmodes/cc-mode.el (top-level): Require cc-guess.
9004 (c-basic-common-init): Use `cc-choose-style-for-mode'.
9005
1fa280a3
LM
90062011-06-30 Lawrence Mitchell <wence@gmx.li>
9007
9008 * progmodes/js.el (js-mode): Don't stomp on global settings (bug#8933).
9009
e6597158
AM
90102011-06-30 Alan Mackenzie <acm@muc.de>
9011
1fa280a3
LM
9012 * progmodes/cc-engine.el (c-guess-continued-construct):
9013 Correct the handling of template-args-cont, particularly for when font
e6597158
AM
9014 lock is disabled. Name this case as "CASE G".
9015
68ba37fb
KM
90162011-06-30 Ken Manheimer <ken.manheimer@gmail.com>
9017
9018 * allout.el (allout-yank-processing): Fix injection of extra space
9019 between bullet and non-whitespace character in first topic when
9020 pasting, ensuring that the actual spacing in the pasted topic
9021 following the bullet char is preserved. This extra space was
9022 causing pasted encrypted topics to get a decrypted status even
9023 when the content was actually still encrypted. Now the decryption
9024 status from before the paste is preserved.
9025
9026 (allout-flag-region): Set all allout overlays so they evaporate
9027 when reduced to zero length (evanescent), to prevent overlay
9028 leakage.
9029
887a0b34
GM
90302011-06-30 Glenn Morris <rgm@gnu.org>
9031
94b9acce
GM
9032 * w32-fns.el (w32-charset-info-alist): Declare.
9033
1d9b46d4
GM
9034 * find-dired.el (find-grep-options): Simplify.
9035
cc232200
GM
9036 * term/ns-win.el (ns-set-resource): Declare.
9037
28e77c46
GM
9038 * ses.el (row, col): Declare dynamic variables honestly.
9039
887a0b34
GM
9040 * textmodes/reftex-parse.el (index-tags): Declare.
9041
658d8eb8
CY
90422011-06-30 Chong Yidong <cyd@stupidchicken.com>
9043
9044 * cus-edit.el (customize-push-and-save): New function.
9045
9046 * files.el (hack-local-variables-confirm): Use it.
9047
1fa280a3
LM
9048 * custom.el (load-theme): New arg NO-CONFIRM.
9049 Use customize-push-and-save (Bug#8720).
658d8eb8
CY
9050 (custom-enabled-themes): Doc fix.
9051
9052 * cus-theme.el (customize-create-theme)
9053 (custom-theme-merge-theme): Callers to load-theme changed.
9054
bb617717
LMI
90552011-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
9056
d61bdd5d
LMI
9057 * thingatpt.el (thing-at-point-short-url-regexp): Require that
9058 short URLs have at least one dot in them (bug #7614).
9059
bb617717
LMI
9060 * progmodes/grep.el (rgrep): Bind `process-connection-type' to
9061 nil, because using a pty is apparently too slow (bug #895).
9062
2f31f37a
LMI
90632011-06-29 Lars Magne Ingebrigtsen <larsi@gnus.org>
9064
9065 * mail/sendmail.el (sendmail-query-once): New function.
9066 (sendmail-query-once-function): New variable.
9067
3076b24e
GM
90682011-06-29 Glenn Morris <rgm@gnu.org>
9069
faf2a174
GM
9070 * files.el (auto-mode-alist): Add .f03, .f08 for f90-mode.
9071
3076b24e
GM
9072 * ses.el (top-level): Require cl when compiling.
9073 (ses-set-localvars): Fix error statement.
9074 Call it at compile time to silence a storm of warnings.
9075
5386012d
MR
90762011-06-29 Martin Rudalics <rudalics@gmx.at>
9077
9078 * window.el (normalize-live-buffer): Rename to
9079 window-normalize-buffer.
9080 (normalize-live-frame): Rename to window-normalize-frame.
9081 (normalize-any-window): Rename to window-normalize-any-window.
9082 (normalize-live-window): Rename to window-normalize-live-window.
9083 (make-window-atom): Rename to window-make-atom.
9084 (window-resize-reset): Rename to window--resize-reset.
9085 (window-resize-reset-1): Rename to window--resize-reset-1.
9086 (resize-mini-window): Rename to window--resize-mini-window.
9087 (resize-subwindows-skip-p): Rename to
9088 window--resize-subwindows-skip-p.
9089 (resize-subwindows-normal): Rename to
9090 window--resize-subwindows-normal.
9091 (resize-subwindows): Rename to window--resize-subwindows.
9092 (resize-other-windows): Rename to window--resize-siblings.
9093 (resize-this-window): Rename to window--resize-this-window.
9094 (resize-root-window): Rename to window--resize-root-window.
9095 (resize-root-window-vertically): Rename to
9096 window--resize-root-window-vertically.
9097 (normalize-buffer-to-display): Rename to
9098 window-normalize-buffer-to-display.
9099 (normalize-buffer-to-switch-to): Rename to
9100 window-normalize-buffer-to-switch-to.
9101 Correspondingly update all callers of the functions listed
9102 above.
9103 (display-buffer-alist, display-buffer-normalize-arguments)
9104 (display-buffer-normalize-options, display-buffer)
9105 (display-buffer-alist-set): Use "function" instead of
9106 "fun-with-args".
9107
1176868d
CY
91082011-06-28 Chong Yidong <cyd@stupidchicken.com>
9109
9110 * mail/emacsbug.el (report-emacs-bug): Handle non-gnu bug
9111 addresses more clearly. Add hyperlinks for bug-gnu-emacs and
9112 debbugs.gnu.org. Mention acknowledgment email.
9113
20a7a65f
LMI
91142011-06-28 Lars Magne Ingebrigtsen <larsi@gnus.org>
9115
9116 * mail/smtpmail.el (smtpmail-send-it): Leave off changing the
9117 buffer multibyteness, since it shouldn't matter.
9118
5f45cca5
MR
91192011-06-28 Martin Rudalics <rudalics@gmx.at>
9120
9121 * window.el (display-buffer-in-side-window): Handle dedicated
9122 windows as in display-buffer-reuse-window.
9123 (display-buffer-normalize-alist): Use value of override
9124 specifier.
9125 (display-buffer-normalize-specifiers): Use value of
9126 other-window-means-other-frame specifier.
9127 (display-buffer-alist): Rewrite some texts in widgets.
9128 (display-buffer): Spread arguments when calling function
9129 specified by fun-with-args.
9130
ad85fe1f
DD
91312011-06-28 Deniz Dogan <deniz@dogan.se>
9132
1fa280a3
LM
9133 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
9134 Unnest `let'.
da68c4c8 9135
ad85fe1f
DD
9136 * textmodes/css-mode.el (css-font-lock-keywords): Fix grouped
9137 selectors (Bug#5732).
ec49bd31 9138 (css-proprietary-nmstart-re): Use `regexp-opt'.
ad85fe1f 9139
a08cc025
JA
91402011-06-27 Jari Aalto <jari.aalto@cante.net>
9141
9142 * eshell/em-ls.el: Display `ls -l' dates in ISO format (Bug#8440).
9143 (eshell-ls-date-format): New defcustom.
9144 (eshell-ls-file): Use it.
9145
e2b551c5
SM
91462011-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
9147
9148 * help-fns.el (describe-variable): Fix message for terminal-local vars.
9149
8982b231
KY
91502011-06-27 Katsumi Yamaoka <yamaoka@jpl.org>
9151
9152 * net/ange-ftp.el: Allow loading .gz files (Bug#6923).
9153 (ange-ftp-make-tmp-name): New arg.
9154 (ange-ftp-file-local-copy): Use it.
9155
36c9fa27
J
91562011-06-27 Jambunathan K <kjambunathan@gmail.com>
9157
9158 * tar-mode.el (tar-untar-buffer): Set coding-system-for-write to
9159 no-conversion (Bug#8870).
9160
d68443dc
MR
91612011-06-27 Martin Rudalics <rudalics@gmx.at>
9162
9163 * window.el (window-right, window-left, window-child)
9164 (window-child-count, window-last-child)
9165 (window-iso-combination-p, walk-window-tree-1)
9166 (window-atom-check-1, window-tree-1, delete-window)
9167 (window-state-get-1, display-buffer-even-window-sizes): Adapt to
9168 new naming conventions - window-vchild, window-hchild,
9169 window-next and window-prev are now called window-top-child,
9170 window-left-child, window-next-sibling and window-prev-sibling
9171 respectively.
d615d6d2
MR
9172 (resize-window-reset): Rename to window-resize-reset.
9173 (resize-window-reset-1): Rename to window-resize-reset-1.
9174 (resize-window): Rename to window-resize.
9175 (window-min-height, window-min-width)
9176 (resize-mini-window, resize-this-window, resize-root-window)
9177 (resize-root-window-vertically, adjust-window-trailing-edge)
9178 (enlarge-window, shrink-window, maximize-window)
9179 (minimize-window, delete-window, quit-restore-window)
9180 (split-window, balance-windows, balance-windows-area-adjust)
9181 (balance-windows-area, window-state-put-2)
9182 (display-buffer-even-window-sizes, display-buffer-set-height)
9183 (display-buffer-set-width, set-window-text-height)
9184 (fit-window-to-buffer): Rename all "resize-window" prefixed
9185 calls to use the "window-resize" prefix convention.
9186 (display-buffer-alist): Fix symbol for label specifier.
9187 (display-buffer-reuse-window): Set reuse-dedicated to cdr of
9188 corresponding specifier.
9189 Reported by Juanma Barranquero <lekktu@gmail.com>.
d68443dc 9190
b6458526
VB
91912011-06-27 Vincent Belaïche <vincentb1@users.sourceforge.net>
9192
9193 * ses.el (ses-destroy-cell-variable-range): Fix heading comment
9194 convention.
9195 (ses-call-printer): Does not pass an empty string to formatter when the
9196 cell is empty to keep from barking printer Calc math-format-value.
9197
d31fd9ac
RS
91982011-06-27 Richard Stallman <rms@gnu.org>
9199
43d5bf84
RS
9200 * battery.el (battery-mode-line-limit): New variable.
9201 (battery-update): Handle it.
9202
d31fd9ac
RS
9203 * mail/rmailmm.el (rmail-mime-process-multipart):
9204 Handle truncated messages.
9205
819a6054
GM
92062011-06-27 Glenn Morris <rgm@gnu.org>
9207
9208 * progmodes/flymake.el (flymake-err-line-patterns):
9209 Allow for column numbers in the ant/javac pattern. (Bug#8866)
9210
cedc73f2
VB
92112011-06-27 Vincent Belaïche <vincentb1@users.sourceforge.net>
9212
819a6054 9213 * ses.el (ses-relocate-range): Keep rest of arguments for ses-range.
cedc73f2
VB
9214 (ses--clean-!, ses--clean-_): New functions.
9215 (ses-range): Add configurability of readout order, and conversion
9216 to Calc vector.
9217
5e5d49b6
VB
9218 * ses.el (ses-repair-cell-reference-all): New function.
9219 (ses-cell-symbol): Set macro as safe, so that it can be used in
9220 formulas.
9221
56e6cc31 9222 * ses.el: Update cycle detection algorithm.
90ca8b49 9223 (ses-localvars): Add ses--Dijkstra-attempt-nb and
819a6054 9224 ses--Dijkstra-weight-bound, and initial values thereof when applicable.
90ca8b49
VB
9225 (ses-set-localvars): New function.
9226 (ses-make-cell): Add property-list as a cell element.
9227 (ses-cell-property-get-fun, ses-cell-property-get)
9228 (ses-cell-property-delq-fun, ses-cell-property-set-fun)
819a6054
GM
9229 (ses-cell-property-pop-fun, ses-cell-property-get-handle-fun):
9230 New functions.
90ca8b49
VB
9231 (ses-cell-property-set, ses-cell-property-pop)
9232 (ses-cell-property-get-handle): New macro.
9233 (ses-cell-property-handle-car, ses-cell-property-handle-setcar):
9234 New aliases, used for code readability.
9235 (ses-calculate-cell, ses-update-cells): Use Dijkstra algorithm for
9236 cycle detection.
9237 (ses-self-reference-early-detection): New defcustom.
fac916bf 9238 (ses-formula-references): Robustify against self-referring cells.
90ca8b49
VB
9239 (ses-mode): Use ses-set-localvars.
9240 (ses-command-hook): Add call to ses-initialize-Dijkstra-attempt
9241 before lauching the update processing.
9242 (ses-initialize-Dijkstra-attempt): New function.
9243 (ses-recalculate-cell): Update for cycle detection based on
9244 Dijkstra algorithm.
9245
2bb63e81
VB
9246 * ses.el: Fix commenting and indenting convention.
9247
c9d29fb8
SM
92482011-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
9249
9250 * bs.el (bs-cycle-next): Complete last change.
9251
d8e4b68b
JB
92522011-06-27 Drew Adams <drew.adams@oracle.com>
9253
9254 * faces.el (list-faces-display): Add help-mode-map to output (bug#8939).
9255
40098786
LMI
92562011-06-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
9257
c9d29fb8
SM
9258 * net/network-stream.el (network-stream-open-starttls):
9259 Don't re-get capabilities unless we've reestablished connection.
f6ab314e
LMI
9260 (network-stream-open-starttls): Fix stupid typo with gnutls-clii.
9261
40098786
LMI
9262 * mail/smtpmail.el (smtpmail-via-smtp): Bind coding-system-for-*
9263 to binary to possibly avoid line encoding issues on Windows (among
9264 other things).
9265
468d09d4
LMI
92662011-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
9267
9268 * net/network-stream.el (open-network-stream): Return an :error
9269 saying what the problem was, if possible.
9270
9271 * mail/smtpmail.el (smtpmail-via-smtp): Report the error from the
9272 server.
9273
9274 * net/network-stream.el (network-stream-open-starttls): If we
9275 wanted to use STARTTLS, and the server offered it, but we weren't
9276 able to because we had no STARTTLS support, then close the connection.
9277 (open-network-stream): Return an :error element, if present.
9278
16f07dd7
CY
92792011-06-26 Chong Yidong <cyd@stupidchicken.com>
9280
88821ca0
CY
9281 * hl-line.el (hl-line-sticky-flag): Doc fix.
9282 (global-hl-line-sticky-flag): New option (Bug#8323).
9283 (global-hl-line-highlight): Obey it.
9284
16f07dd7
CY
9285 * vc/vc.el (vc-revert-show-diff): Default to t.
9286
6b5ccddf
KM
92872011-06-26 Ken Manheimer <ken.manheimer@gmail.com>
9288
c9d29fb8
SM
9289 * allout-widgets.el (allout-widgets-post-command-business):
9290 Stop decorating intermediate isearch matches. They're not being
6b5ccddf
KM
9291 undecorated when an isearch is continued past, and isearch
9292 automatically collapses them. This leads to "widget leaks", where
9293 decorated items accumulate in collapsed areas. Lines with lots of
c9d29fb8
SM
9294 hidden widgets can slow down cursor travel, substantially.
9295 Too much complicated machinery would be needed to ensure undecoration,
6b5ccddf
KM
9296 so we're doing without this nicety.
9297
9298 (allout-widgets-tally-string): Don't try to do a hash-table-count
9299 of allout-widgets-tally when it's nil. This eliminates spurious "Error
9300 during redisplay: (wrong-type-argument hash-table-p nil)" warnings in
9301 *Messages* when allout-widgets-maintain-tally is t.
9302
355f2e07
MR
93032011-06-26 Martin Rudalics <rudalics@gmx.at>
9304
9305 * window.el (display-buffer-normalize-argument): Rename to
9306 display-buffer-normalize-arguments. Handle special meaning of
6b5ccddf
KM
9307 LABEL argument. Respect special-display-function when popping up
9308 a new frame. Fix code searching for a window showing the buffer
9309 on another frame.
c9d29fb8
SM
9310 (display-buffer-normalize-specifiers):
9311 Call display-buffer-normalize-arguments.
355f2e07
MR
9312 (display-buffer-in-window): Don't undedicate the window if its
9313 buffer remains the same.
9314 Reported by Drew Adams <drew.adams@oracle.com>.
9315 (display-buffer-alist): Add choice for same-window macro
9316 specfier.
9317 (display-buffer): Mention special meaning of LABEL argument in
9318 doc-string. Fix quoting. Don't pop up a new frame even as
9319 fallback.
9320
7ca8fc42
JB
93212011-06-26 Juanma Barranquero <lekktu@gmail.com>
9322
9323 * bs.el (bs-cycle-next): Pass current buffer to `bury-buffer' to
9324 avoid deleting the current window in some cases (bug#8911).
9325
bc312254
AS
93262011-06-26 Andreas Schwab <schwab@linux-m68k.org>
9327
9328 * emacs-lisp/smie.el (smie-bnf->prec2): Fix last change.
9329 (Bug#8934)
9330
2db18f3f
LMI
93312011-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
9332
c9d29fb8
SM
9333 * net/network-stream.el (network-stream-open-starttls):
9334 Use built-in TLS support if `gnutls-available-p' is true.
2db18f3f
LMI
9335 (network-stream-open-tls): Ditto.
9336
6302e0d3
LL
93372011-06-26 Leo Liu <sdl.web@gmail.com>
9338
9339 * register.el (registerv): New struct.
9340 (registerv-make): New function.
c9d29fb8
SM
9341 (jump-to-register, describe-register-1, insert-register):
9342 Support the jump-func, print-func and insert-func slot of a registerv
6302e0d3
LL
9343 struct. (Bug#8415)
9344
5fdd4046
CY
93452011-06-26 Chong Yidong <cyd@stupidchicken.com>
9346
2afef60a
CY
9347 * vc/vc.el (vc-revert-show-diff): New defcustom.
9348 (vc-diff-internal): New arg specifying diff buffer.
9349 (vc-revert): Obey vc-revert-show-diff. If we show a diff, don't
9350 reuse an existing *vc-diff* buffer (Bug#8927).
9351
5fdd4046
CY
9352 * progmodes/cperl-mode.el (cperl-mode): Derive from prog-mode.
9353
e93db24a
GM
93542011-06-26 Glenn Morris <rgm@gnu.org>
9355
9356 * progmodes/f90.el (f90-critical-indent): New option.
9357 (f90-font-lock-keywords-2, f90-blocks-re, f90-end-block-re)
9358 (f90-start-block-re, f90-mode-abbrev-table): Add block, critical.
9359 (f90-mode): Doc fix.
9360 (f90-looking-at-critical, f90-looking-at-end-critical): New funcs.
9361 (f90-no-block-limit, f90-calculate-indent, f90-end-of-block)
9362 (f90-beginning-of-block, f90-next-block, f90-indent-region)
9363 (f90-match-end): Handle block, critical.
9364
eefff499
GM
93652011-06-25 Glenn Morris <rgm@gnu.org>
9366
f6ba4cc9
GM
9367 * calendar/diary-lib.el (diary-included-files): Doc fix.
9368 (diary-include-files): New function, extracted from
9369 diary-include-other-diary-files and diary-mark-included-diary-files.
9370 (diary-include-other-diary-files, diary-mark-included-diary-files):
9371 Just call diary-include-files.
9372 (diary-mark-entries): Reset diary-included-files on first call.
9373
16712304
GM
9374 * calendar/diary-lib.el (diary-mark-entries)
9375 (diary-mark-included-diary-files):
9376 Visit included diary-files in temp buffers.
9377
5d8e0d43
GM
9378 * progmodes/f90.el (f90-keywords-re, f90-font-lock-keywords-1)
9379 (f90-blocks-re, f90-program-block-re, f90-end-block-re)
9380 (f90-start-block-re, f90-imenu-generic-expression)
9381 (f90-looking-at-program-block-start, f90-no-block-limit):
9382 Add support for submodules.
9383
ccf7a5d5
GM
9384 * progmodes/f90.el (f90-keywords-re, f90-keywords-level-3-re)
9385 (f90-procedures-re, f90-constants-re): Add some F2008 stuff.
eefff499 9386
11fdef7d 93872011-06-25 Eli Zaretskii <eliz@gnu.org>
638e9005
EZ
9388
9389 * net/ange-ftp.el (ange-ftp-insert-file-contents): Let-bind
9390 buffer-file-type before setting its value, to avoid disastrous
eefff499 9391 global effects on decoding files for DOS/Windows systems. (Bug#8780)
638e9005 9392
74f53697
JB
93932011-06-25 Juanma Barranquero <lekktu@gmail.com>
9394
9395 * allout.el (allout-unload-function): Pass -1 to `allout-mode'.
9396
9397 * ses.el (ses-unload-function):
9398 * emacs-lisp/re-builder.el (re-builder-unload-function): Simplify.
9399
9400 * proced.el (proced-unload-function):
9401 * progmodes/cperl-mode.el (cperl-mode-unload-function): Remove.
9402
18a4ce5e
AR
94032011-06-25 Andreas Rottmann <a.rottmann@gmx.at>
9404
9405 * server.el (server-create-window-system-frame): Add parameters arg.
9406 (server-process-filter): Doc fix. Handle frame-parameters.
9407
519d22cc
JB
94082011-06-25 Juanma Barranquero <lekktu@gmail.com>
9409
9410 Fix bug#8730, bug#8781.
9411
9412 * loadhist.el (unload--set-major-mode): New function.
9413 (unload-feature): Use it.
9414
9415 * progmodes/python.el (python-after-info-look): Add autoload cookie.
9416 (python-unload-function): New function.
9417
c206f5b0
SM
94182011-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
9419
9420 * mail/rmail.el (rmail-show-message-1): Use restore-buffer-modified-p.
9421
f9ad64f3
GS
94222011-06-25 Giuseppe Scrivano <gscrivano@gnu.org>
9423
9424 * net/browse-url.el (browse-url-firefox-program): Add icecat to
9425 the candidates list.
9426
7d0da90e
JB
94272011-06-24 Juanma Barranquero <lekktu@gmail.com>
9428
9429 * progmodes/verilog-mode.el (verilog-mode): Fix test for bound variable.
9430
14b4e83d
RS
94312011-06-23 Richard Stallman <rms@gnu.org>
9432
9433 * mail/rmail.el: Going to grep hit in Rmail buffer finds the message.
9434 (rmail-variables): Set next-error-move-function.
9435 (rmail-what-message): Take argument POS.
9436 (rmail-next-error-move): New function.
9437
273d2baf
SM
94382011-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
9439
9440 * emacs-lisp/smie.el (smie-bnf->prec2): Give more understandable error
9441 messages for adjacent non-terminals.
9442
56c2cc9a
RS
94432011-06-23 Richard Stallman <rms@gnu.org>
9444
9445 * mail/rmail.el (rmail-retry-ignored-headers): Add message-id.
f444564c 9446 (rmail-show-message-1): Preserve buffer modified flag.
8050daa1
RS
9447 (rmail-start-mail): Don't specify use of rmail-mail-return;
9448 that's done by mail-bury now.
9449 (rmail-mail-return): Handle arg NEWBUF.
56c2cc9a 9450
d59eb518
MA
94512011-06-23 Michael Albinus <michael.albinus@gmx.de>
9452
9453 * net/tramp-sh.el (tramp-method-out-of-band-p): Check, whether
9454 SIZE is a number.
9455
02cfc6d6
MR
94562011-06-23 Martin Rudalics <rudalics@gmx.at>
9457
9458 * window.el (get-lru-window, get-mru-window)
9459 (get-largest-window): Never return a minibuffer window.
9460 (display-buffer-pop-up-window): Fix a bug that could lead to
9461 reusing the minibuffer window.
9462 (display-buffer): Pass original specifier argument to
9463 display-buffer-function instead of the normalized one.
9464 Reported by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
9465
4e323265
LL
94662011-06-22 Leo Liu <sdl.web@gmail.com>
9467
9468 * minibuffer.el (completing-read-function)
9469 (completing-read-default): Move from minibuf.c
9470
7a70468f
RS
94712011-06-22 Richard Stallman <rms@gnu.org>
9472
50718fc2
RS
9473 * mail/sendmail.el (mail-bury): If Rmail is in use, return nicely
9474 to Rmail even if not started by a special Rmail command.
9475
7a70468f
RS
9476 * mail/rmailmm.el (rmail-insert-mime-forwarded-message):
9477 Copy the buffer currently showing just one message.
9478
297dde5a
RW
94792011-06-22 Roland Winkler <winkler@gnu.org>
9480
9481 * textmodes/bibtex.el (bibtex-entry-update): Use mapc.
9482 (bibtex-clean-entry): First delete the old key so that a
9483 customized algorithm for generating the new key does not get
9484 confused by the old key.
9485 (bibtex-url): Obey regexp of first step.
9486 (bibtex-search-entries): Do not use add-to-list with local
9487 list-var.
9488
97bb1093
LMI
94892011-06-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
9490
9491 * mail/smtpmail.el (smtpmail-try-auth-methods): If the user has
9492 stored a user name, then query for the password first, instead of
9493 waiting for SMTP to give an error message and the trying again.
9494
1c0f1a19
JD
94952011-06-22 Lawrence Mitchell <wence@gmx.li>
9496
9497 * net/browse-url.el (browse-url-xdg-open): Use 0, rather than nil
9498 BUFFER in call-process.
9499
396f7c9d
LMI
95002011-06-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
9501
9502 * mail/smtpmail.el (smtpmail-via-smtp): Make sure we don't send
9503 QUIT twice.
ddb7ffee
LMI
9504 (smtpmail-try-auth-methods): Require user name and password from
9505 auth-source.
396f7c9d 9506
8998d1b3
MR
95072011-06-22 Martin Rudalics <rudalics@gmx.at>
9508
9509 * window.el (display-buffer-default-specifiers)
9510 (display-buffer-alist): Remove entries for pop-up-frame-alist.
9511 Suggested by Katsumi Yamaoka <yamaoka@jpl.org>.
130e3e11 9512 (split-window): Normalize SIDE argument (Bug#8916).
8998d1b3
MR
9513
9514 * frame.el (pop-up-frame-alist, pop-up-frame-function)
9515 (special-display-frame-alist, special-display-popup-frame):
9516 Remove duplicate declarations. These are now in window.el.
9517
4ea31e07
LMI
95182011-06-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
9519
c9d29fb8
SM
9520 * mail/smtpmail.el (smtpmail-via-smtp):
9521 Set :use-starttls-if-possible so that we always use STARTTLS if the
6af7a784
LMI
9522 server supports it. SMTP servers that support STARTTLS commonly
9523 require it.
9524
9525 * net/network-stream.el (network-stream-open-starttls): Support
9526 upgrading to STARTTLS always, even if we don't have built-in support.
fa463103 9527 (open-network-stream): Add the :always-query-capabilities keyword.
6af7a784 9528
95f41d9a
LMI
9529 * mail/smtpmail.el: Rewritten to do opportunistic STARTTLS
9530 upgrades with `open-network-stream', and rely solely on
9531 auth-source for all credentials. Big changes throughout the file,
9532 but in particular:
c9d29fb8
SM
9533 (smtpmail-auth-credentials): Remove.
9534 (smtpmail-starttls-credentials): Remove.
7d36ad46
LMI
9535 (smtpmail-via-smtp): Check for servers saying they want AUTH after
9536 MAIL FROM, too.
95f41d9a 9537
c9d29fb8
SM
9538 * net/network-stream.el (network-stream-open-starttls):
9539 Provide support for client certificates both for external and built-in
4ea31e07
LMI
9540 STARTTLS.
9541 (auth-source): Require.
9542 (open-network-stream): Document the :client-certificate keyword.
eb8c9362
LMI
9543 (network-stream-certificate): Change cert-cert to cert and
9544 cert-key to key.
4ea31e07 9545
065ec2c7
MA
95462011-06-21 Michael Albinus <michael.albinus@gmx.de>
9547
9548 * net/tramp-cache.el (top): Don't load the persistency file when
9549 "emacs -Q" has been called.
9550
cd93b359
DR
95512011-06-21 Tim Harper <timcharper@gmail.com>
9552
d8e4b68b
JB
9553 * term/ns-win.el (ns-initialize-window-system):
9554 Set application-specific `ApplePressAndHoldEnabled' system
cd93b359
DR
9555 resource to NO as it is not yet supported by the NS port.
9556
ae9c0411
JB
95572011-06-21 Juanma Barranquero <lekktu@gmail.com>
9558
9559 * misc.el (list-dynamic-libraries--refresh): Compute header here...
9560 (list-dynamic-libraries): ...not here.
9561
7f3f739f
LL
95622011-06-21 Leo Liu <sdl.web@gmail.com>
9563
9564 * subr.el (sha1): Implement sha1 using secure-hash.
9565
327c8fb1
MR
95662011-06-21 Martin Rudalics <rudalics@gmx.at>
9567
9568 * window.el (display-buffer-alist): In default value do not
9569 enforce searching a window on any but the selected frame.
9570 Reported by Katsumi Yamaoka <yamaoka@jpl.org>.
9571 (display-buffer-select-window): Remove function.
9572 (display-buffer-in-window): When a window on another frame gets
9573 reused, do not select it any more but just raise its frame if
9574 necessary (Bug#8851) and (Bug#8856).
9575 (display-buffer-normalize-options): Handle pop-up-frames related
9576 options more faithfully.
9577 (pop-to-buffer): Don't rely on `display-buffer' selecting the
9578 window if it is on another frame.
c9d29fb8
SM
9579 (display-buffer-alist, display-buffer-default-specifiers):
9580 Don't make new frame unsplittable by default.
9e9de014
MR
9581 (display-buffer-normalize-argument): Fix doc-string typo and use
9582 'same-frame-other-window instead of 'other-window when associating
9583 with display-buffer-macro-specifiers.
327c8fb1 9584
7cf3f556
VB
95852011-06-21 Vincent Belaïche <vincent.b.1@hotmail.fr>
9586
9587 * play/5x5.el (5x5-solve-rotate-left, 5x5-solve-rotate-right):
9588 New functions.
9589 (5x5-mode-map, 5x5-mode-menu): Bind them.
9590 (5x5-draw-grid): Tweak the solver's rendering.
9591
60a406cf
SM
95922011-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
9593
9594 * progmodes/compile.el (compilation-error-regexp-alist-alist): Rename
9595 `caml' to `python-tracebacks-and-caml'; allow leading tabs (bug#8585).
9596
d8e4b68b 95972011-06-21 Drew Adams <drew.adams@oracle.com>
5d907d6c
DA
9598
9599 * menu-bar.el: Use function variable instead of switch-to-buffer.
9600 (menu-bar-select-buffer-function): New variable.
60a406cf 9601 (menu-bar-update-buffers): Use it (bug#8876).
5d907d6c 9602
478d6f95
SM
96032011-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
9604
9605 * emacs-lisp/bytecomp.el (add-to-list): Add handler to check the
9606 variable's status.
9607
ca530739
JD
96082011-06-20 Jan Djärv <jan.h.d@swipnet.se>
9609
9610 * x-dnd.el (x-dnd-version-from-flags)
9611 (x-dnd-more-than-3-from-flags): New functions that handle long-as-cons
9612 and long as number (Bug#8899).
9613 (x-dnd-handle-xdnd): Call functions above (Bug#8899).
9614
bcd70d97
SM
96152011-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
9616
60a406cf 9617 * minibuffer.el (completion-metadata): Add `metadata' to the alist.
4cb3bfa0
SM
9618 (completion-try-completion, completion-all-completions): Compute the
9619 metadata argument if it's missing; make it optional (bug#8795).
9620
60a406cf 9621 * wid-edit.el: Use lex-bind and move towards completion-at-point.
bcd70d97
SM
9622 (widget-complete): Use new :completion-function property.
9623 (widget-completions-at-point): New function.
9624 (default): Use :completion-function instead of :complete.
60a406cf
SM
9625 (widget-default-completions): Rename from widget-default-complete;
9626 Rewrite.
bcd70d97
SM
9627 (widget-string-complete, widget-file-complete, widget-color-complete):
9628 Remove functions.
9629 (file, symbol, function, variable, coding-system, color):
9630 * international/mule-cmds.el (default-input-method, charset)
9631 (language-info-custom-alist):
9632 * cus-edit.el (face): Use new property :completions.
9633
9634 * progmodes/pascal.el (pascal-completions-at-point): New function.
9635 (pascal-mode): Use it.
9636 (pascal-mode-map): Use completion-at-point.
9637 (pascal-toggle-completions): Make obsolete.
9638 (pascal-complete-word, pascal-show-completions):
9639 * progmodes/octave-mod.el (octave-complete-symbol):
9640 Redefine as obsolete alias.
9641 * progmodes/octave-inf.el (inferior-octave-completion-at-point):
9642 Signal absence of completion info for old Octave,
9643 (inferior-octave-complete): Redefine as obsolete alias.
9644 * progmodes/meta-mode.el: Use lexical-binding and completion-at-point.
9645 (meta-completions-at-point): Rename from meta-complete-symbol and
9646 adapt it for use on completion-at-point-functions.
9647 (meta-common-mode): Use it.
9648 (meta-looking-at-backward, meta-match-buffer): Remove.
9649 (meta-complete-symbol): Redefine as obsolete alias.
9650 (meta-common-mode-map): Use completion-at-point.
9651 * progmodes/make-mode.el: Use lexical-binding and completion-at-point.
9652 (makefile-mode-map): Use completion-at-point.
9653 (makefile-completions-at-point): Rename from makefile-complete and
9654 adapt it for use on completion-at-point-functions.
9655 (makefile-mode): Use it.
9656 (makefile-complete): Redefine as obsolete alias.
9657
aebf69c8
DD
96582011-06-20 Deniz Dogan <deniz@dogan.se>
9659
9660 * net/rcirc.el: Delete trailing whitespaces once and for all.
9661
bfbbb27d
DC
96622011-06-20 Daniel Colascione <dan.colascione@gmail.com>
9663
9664 * emacs-lisp/syntax.el (syntax-ppss): Further improve docstring.
9665
d264a46b
CY
96662011-06-19 Chong Yidong <cyd@stupidchicken.com>
9667
4ca009e5
CY
9668 * files.el (auto-mode-alist): Entry for m2-mode (Bug#8852).
9669
d264a46b
CY
9670 * info.el (Info-apropos-toc-nodes): Minor doc fix (Bug#8833).
9671
fbf5b3ce
MR
96722011-06-19 Martin Rudalics <rudalics@gmx.at>
9673
9674 * window.el (display-buffer-other-window-means-other-frame):
9675 Call display-buffer-normalize-alist.
9676 (display-buffer-normalize-specifiers-1): Rename to
9677 display-buffer-normalize-argument. New argument other-frame.
9678 Rewrite.
9679 (display-buffer-normalize-specifiers-2): Rename to
9680 display-buffer-normalize-options.
9681 (display-buffer-normalize-alist-1): New function.
9682 (display-buffer-normalize-specifiers-3): Rename to
bcd70d97
SM
9683 display-buffer-normalize-alist.
9684 Call display-buffer-normalize-alist-1.
fbf5b3ce
MR
9685 (display-buffer-normalize-options-inhibit): New variable.
9686 (display-buffer-normalize-specifiers): Rewrite calling
9687 display-buffer-normalize-alist,
9688 display-buffer-normalize-argument, and
9689 display-buffer-normalize-options. Don't call the latter if
9690 display-buffer-normalize-options-inhibit is non-nil.
9691 (frame-auto-delete): New option.
9692 (window-deletable-p): Use frame-auto-delete.
9d89fec7
MR
9693 (window-list-no-nils, window-state-ignored-parameters)
9694 (window-state-get-1, window-state-get, window-state-put-list)
bcd70d97
SM
9695 (window-state-put-1, window-state-put-2, window-state-put):
9696 New functions.
9a028c23
MR
9697 (display-buffer-normalize-options): Move special-display-p group
9698 after pop-up-frame group (Bug#8851) and (Bug#8856).
fbf5b3ce 9699
6d10d800
CY
97002011-06-18 Chong Yidong <cyd@stupidchicken.com>
9701
6420d28b
CY
9702 * emacs-lisp/rx.el (rx-constituents): Add support for numbered
9703 groups (Bug#8776).
9704 (rx-submatch-n): New function.
9705 (rx): Document it.
9706
ddb8b596
CY
9707 * dired-x.el (dired-mark-unmarked-files): Fix interactive spec
9708 (Bug#8768).
9709
9710 * replace.el (occur-mode-map): Set occur-edit-mode binding to "e".
9711
77080289
CY
9712 * textmodes/fill.el (default-justification): Add :safe (Bug#8879).
9713
61dfb316
CY
9714 * cus-face.el (custom-declare-face): Call custom-theme-recalc face
9715 anytime existing face settings are present (Bug#8889).
9716
6d10d800
CY
9717 * progmodes/delphi.el (delphi-mode-syntax-table): Use defvar.
9718 (delphi-mode): Use define-derived-mode to inherit from prog-mode.
9719 Remove unused argument.
9720
be3fb2b8
MR
97212011-06-18 Martin Rudalics <rudalics@gmx.at>
9722
bcd70d97
SM
9723 * window.el (display-buffer-default-specifiers):
9724 Remove pop-up-frame. Add pop-up-window-min-height,
be3fb2b8
MR
9725 pop-up-window-min-width, and another reuse-window specifier
9726 (Bug#8882). Reported by Dan Nicolaescu <dann@gnu.org>.
bcd70d97
SM
9727 (display-buffer-normalize-specifiers-2):
9728 Handle split-height-threshold and split-width-threshold also when
be3fb2b8
MR
9729 pop-up-windows is unset. Add a reuse-window specifier for the
9730 case popping up a new window fails.
9731 (special-display-popup-frame): Remove double quoting.
28dec25a 9732 (display-buffer-normalize-specifiers-1): Fix thinko.
be3fb2b8 9733
1c6d8c76
SM
97342011-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
9735
9736 * shell.el (shell-completion-vars): Set pcomplete-termination-string
9737 according to comint-completion-addsuffix.
9738
9739 * pcomplete.el: Convert to lexical binding and fix bug#8819.
9740 (pcomplete-suffix-list): Mark as obsolete.
9741 (pcomplete-completions-at-point): Capture pcomplete-norm-func and
9742 pcomplete-seen in the closure.
9743 (pcomplete-comint-setup): Setup completion-at-point as well.
9744 (pcomplete--entries): New function.
9745 (pcomplete--env-regexp): New var.
9746 (pcomplete-entries): Rewrite to work with partial-completion and
9747 without relying on pcomplete-suffix-list.
9748 (pcomplete-pare-list): Remove, unused.
9749
25aef8b8
MR
97502011-06-17 Martin Rudalics <rudalics@gmx.at>
9751
9752 * window.el (display-buffer-alist): Set pop-up-window-min-height
9753 and pop-up-window-min-width in default value. Reported by
9754 Thierry Volpiatto <thierry.volpiatto@gmail.com>. New specifier
9755 other-window-means-other-frame.
9756 (display-buffer-macro-specifiers): Comment out entry for
9757 other-window specifier.
9758 (display-buffer-other-window-means-other-frame): New function.
9759 (display-buffer-normalize-specifiers-1): New arguments
9760 buffer-name and label. Treat other-window case specially.
9761 (display-buffer-normalize-specifiers-2): Treat other-window case
9762 specially.
9763 (display-buffer-normalize-specifiers-3): New function.
bcd70d97
SM
9764 (display-buffer-normalize-specifiers):
9765 Call display-buffer-normalize-specifiers-3.
25aef8b8 9766
dbad4f69
MR
97672011-06-17 Martin Rudalics <rudalics@gmx.at>
9768
9769 * window.el (same-window-p): Fix two typos introduced when
9770 adding with-no-warnings.
d1067961
MR
9771 (display-buffer-normalize-specifiers-1): Don't check
9772 pop-up-frames for 'unset initialization.
9773 (display-buffer-normalize-specifiers-2): Major rewrite using
9774 special-display-p and same-window-p (Bug#8851) and (Bug#8856).
9775 (pop-up-frames, display-buffer-reuse-frames)
9776 (display-buffer-mark-dedicated): Don't initialize to 'unset.
9777 Suggested by David Engster <deng@randomsample.de>.
9778 (even-window-heights): Initialize to 'unset.
9779 (display-buffer-alist-set): Handle new 'unset initializations.
25aef8b8
MR
9780 (display-buffer-macro-specifiers): Don't pop up a new frame in the
9781 other window case.
dbad4f69 9782
9b9c9e3a
MR
97832011-06-16 Martin Rudalics <rudalics@gmx.at>
9784
bcd70d97
SM
9785 * window.el (display-buffer-normalize-specifiers-1):
9786 Respect current value of pop-up-frames for most reasonable values of
9b9c9e3a 9787 second argument of display-buffer (Bug#8865).
981d5c09
MR
9788 (switch-to-buffer-same-frame, switch-to-buffer-other-window)
9789 (switch-to-buffer-other-window-same-frame)
9790 (switch-to-buffer-other-frame): Fix doc-strings. Reported by Drew
9791 Adams (Bug#8875).
9c2755e9
MR
9792 (display-buffer): Don't check noninteractive when calling
9793 display-buffer-pop-up-frame.
9794 (display-buffer-pop-up-frame): Never pop up a frame in
9795 noninteractive mode (Bug#8857).
67222e1d
MR
9796 (enlarge-window, shrink-window): Don't report an error when the
9797 window can't be resized as requested (Bug#8862).
9b9c9e3a 9798
2b75be67
SM
97992011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
9800
9ffdd3ba
SM
9801 * pcmpl-rpm.el (pcomplete/rpm): Minor simplification.
9802
cb581a67
SM
9803 * emacs-lisp/debug.el (debug): Don't leave the buffer in Debugger.
9804
2b75be67
SM
9805 * abbrev.el (define-abbrev-table): Don't add a table multiple times.
9806
8c0e3589
AM
98072011-06-15 Alan Mackenzie <acm@muc.de>
9808
cb581a67
SM
9809 * progmodes/cc-fonts.el (c-font-lock-declarations): 1: Whilst checking
9810 for declarators, disable knr checking to speed up for normal files.
9811 2: Refactor, replacing a sequence of nested if forms by a cond form.
8c0e3589 9812
b96e6cde
LMI
98132011-06-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
9814
4bba86e6
LMI
9815 * net/network-stream.el (open-network-stream): Add the keyword
9816 :always-query-capabilities for the case where you want to force a
9817 `plain' network connection, but the protocol still requires the
9818 capabilitiy command (i.e., SMTP and EHLO).
9819
2b75be67 9820 * subr.el (process-live-p): Rename from `process-alive-p' for
b96e6cde
LMI
9821 consistency with other `-live-p' functions.
9822
efdcdbf8
SM
98232011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
9824
9825 * window.el (same-window-buffer-names, same-window-regexps)
9826 (special-display-frame-alist, special-display-popup-frame)
9827 (special-display-function, special-display-buffer-names)
9828 (special-display-regexps, pop-up-frame-alist)
9829 (pop-up-frame-function, pop-up-frames, display-buffer-reuse-frames)
9830 (pop-up-windows, split-window-preferred-function)
9831 (split-height-threshold, split-width-threshold, even-window-heights)
9832 (display-buffer-mark-dedicated): Don't encourage the use of
9833 display-buffer-alist from Elisp code.
9834
c5cde042
DN
98352011-06-15 Dan Nicolaescu <dann@ics.uci.edu>
9836
9837 * progmodes/python.el (python-mode): Derive from prog-mode.
9838 * progmodes/ps-mode.el (ps-mode):
9839 * progmodes/mixal-mode.el (mixal-mode):
50328a1b 9840 * progmodes/cfengine.el (cfengine-mode):
c5cde042
DN
9841 * progmodes/ld-script.el (ld-script-mode): Likewise.
9842
baa1c9ab
MR
98432011-06-15 Martin Rudalics <rudalics@gmx.at>
9844
9845 * window.el (display-buffer-alist): Trim default value to avoid
9846 popping up a new frame (Bug#8857) or reusing an arbitrary window
9847 on another frame.
9848 (display-buffer): Do not fall back on popping up a new frame in
9849 batch mode (Bug#8857).
9850
c5dd5a51
CY
98512011-06-14 Chong Yidong <cyd@stupidchicken.com>
9852
9853 * cus-theme.el (describe-theme-1): Use custom-theme-p.
9854 (custom-theme-summary): New function.
9855 (customize-themes): Use it.
9856
d647b7c4
GM
98572011-06-13 Glenn Morris <rgm@gnu.org>
9858
9859 * cus-dep.el (custom-make-dependencies): Use up command-line-args-left.
9860
9481c002
MR
98612011-06-13 Martin Rudalics <rudalics@gmx.at>
9862
357f93d2
MR
9863 * help.el (help-window): Remove variable.
9864 (help-window-point-marker, temp-buffer-max-height)
9865 (temp-buffer-resize-mode, help-window-select): Rewrite doc-strings.
9866 (help-print-return-message): Don't set help-window.
9867 (resize-temp-buffer-window): Rewrite cod eand doc-string.
9868 (help-window-setup-finish): Remove.
9869 (help-window-display-message, help-window-setup)
9870 (with-help-window): Major rewrite based on new
9871 display-buffer-window variable.
9872
9873 * help-mode.el (help-mode-finish): Remove help-window related
9874 code.
9875
9876 * view.el (view-exits-all-viewing-windows): Remove reference to
9877 view-return-to-alist in doc-string.
9878 (view-return-to-alist): Make obsolete.
9879 (view-buffer): Call pop-to-buffer-same-window and remove
9880 undo-window code.
9881 (view-buffer-other-window): Call pop-to-buffer-other-window and
9882 simplify code. Ignore second argument.
9883 (view-buffer-other-frame): Call pop-to-buffer-other-frame and
9884 simplify code. Ignore second argument.
9885 (view-return-to-alist-update): Make obsolete.
9886 (view-mode-enter): Rename second argument to QUIT-RESTORE.
9887 Rewrite using quit-restore window parameters.
2b75be67
SM
9888 (view-mode-exit): Rename second argument to EXIT-ONLY.
9889 Rewrite using quit-restore-window.
357f93d2
MR
9890 (View-exit, View-exit-and-edit, View-leave, View-quit)
9891 (View-quit-all, View-kill-and-leave): Call view-mode-exit with
9892 appropriate arguments.
9893 (view-end-message): Use quit-restore window parameter.
9894
9481c002
MR
9895 * window.el (display-buffer-function): Rewrite doc-string.
9896 (display-buffer-window, display-buffer-alist): New variables.
9897 (display-buffer-split-specifiers)
9898 (display-buffer-side-specifiers)
9899 (display-buffer-macro-specifiers): New constants.
9900 (display-buffer-even-window-sizes, display-buffer-set-height)
9901 (display-buffer-set-width, display-buffer-select-window)
9902 (display-buffer-in-window, display-buffer-reuse-window)
9903 (display-buffer-split-window-1, display-buffer-split-window)
9904 (display-buffer-split-atom-window, display-buffer-pop-up-window)
9905 (display-buffer-pop-up-frame, display-buffer-pop-up-side-window)
9906 (display-buffer-in-side-window, normalize-buffer-to-display)
9907 (display-buffer-normalize-specifiers-1)
9908 (display-buffer-normalize-specifiers-2)
2b75be67
SM
9909 (display-buffer-normalize-specifiers, display-buffer-frame):
9910 New functions.
9481c002
MR
9911 (display-buffer): Major rewrite.
9912 (display-buffer-other-window, display-buffer-other-frame)
9913 (pop-to-buffer, switch-to-buffer-other-window)
9914 (switch-to-buffer-other-frame): Rewrite.
9915 (display-buffer-same-window, display-buffer-same-frame)
9916 (display-buffer-same-frame-other-window)
9917 (pop-to-buffer-same-window, pop-to-buffer-same-frame)
9918 (pop-to-buffer-other-window)
9919 (pop-to-buffer-same-frame-other-window)
9920 (pop-to-buffer-other-frame, switch-to-buffer-same-frame)
9921 (switch-to-buffer-other-window-same-frame): New functions.
9922 (same-window-p, special-display-p): Rewrite disabling warnings.
9923 Make obsolete.
9924 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
9925 (display-buffer-mark-dedicated): Initialize to symbol 'unset.
9926 Make obsolete
9927 (same-window-buffer-names, same-window-regexps)
9928 (special-display-frame-alist, special-display-popup-frame)
9929 (special-display-function, special-display-buffer-names)
9930 (special-display-regexps, pop-up-frame-alist)
9931 (pop-up-frame-function, split-window-preferred-function)
9932 (split-height-threshold, split-width-threshold)
9933 (even-window-heights): Make obsolete.
9934
9db51aca
GM
99352011-06-12 Glenn Morris <rgm@gnu.org>
9936
9937 * term/xterm.el (terminal-init-xterm): `version' may be nil. (Bug#8838)
7cb363eb 9938 Misc simplifications.
9db51aca 9939
39cffb44
MR
99402011-06-12 Martin Rudalics <rudalics@gmx.at>
9941
9942 * window.el (window-safely-shrinkable-p): Restore function which
9943 was inadvertently removed in change from 2011-06-11. Declare as
9944 obsolete.
9945
2b75be67
SM
9946 * calendar/calendar.el (calendar-generate-window):
9947 Use window-iso-combined-p instead of combination of one-window-p and
39cffb44
MR
9948 window-safely-shrinkable-p.
9949
a8955be7
GM
99502011-06-12 Glenn Morris <rgm@gnu.org>
9951
9952 * progmodes/fortran.el (fortran-mode-syntax-table):
9953 * progmodes/f90.el (f90-mode-syntax-table):
9954 Set % to punctuation. (Bug#8820)
9955 (f90-find-tag-default): Remove, no longer needed.
9956
f0d4059d
DC
99572011-06-12 Daniel Colascione <dan.colascione@gmail.com>
9958
9959 * emacs-lisp/syntax.el (syntax-ppss): Clarify which items are invalid.
9960
1100a63c
CY
99612011-06-11 Chong Yidong <cyd@stupidchicken.com>
9962
9963 * image.el (image-animated-p): Return animation delay in seconds.
9964 Avoid bit manipulation in Lisp; use `delay' entry in the metadata.
9965 (image-animate-timeout): Remove DELAY argument. Don't assume
9966 every subimage has the same delay; get it from image-animated-p.
9967 (image-animate): Caller changed.
9968
def722bf
MA
99692011-06-11 Michael Albinus <michael.albinus@gmx.de>
9970
9971 * net/tramp.el (tramp-debug-message): Add `tramp-with-progress-reporter'
9972 to ignored backtrace functions.
9973
0a2bb1a9
GM
99742011-06-11 Glenn Morris <rgm@gnu.org>
9975
9976 * calendar/appt.el (appt-disp-window-function): Doc fix.
9977 (appt-check): Handle overlapping appointments. (Bug#8337)
9978
6198ccd0
MR
99792011-06-11 Martin Rudalics <rudalics@gmx.at>
9980
9981 * window.el (window-tree-1, window-tree): New functions, moving
9982 the latter to window.el.
9983 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
9984 (bw-find-tree-sub-1, bw-l, bw-t, bw-r, bw-b, bw-dir, bw-eqdir)
9985 (bw-refresh-edges): Remove.
9986 (balance-windows-1, balance-windows-2): New functions.
9987 (balance-windows): Rewrite in terms of window tree functions,
9988 balance-windows-1 and balance-windows-2.
9989 (bw-adjust-window): Remove.
9990 (balance-windows-area-adjust): New function with functionality of
9991 bw-adjust-window but using resize-window.
2b75be67
SM
9992 (set-window-text-height): Rewrite doc-string.
9993 Use normalize-live-window and resize-window.
9994 (enlarge-window-horizontally, shrink-window-horizontally):
9995 Rename argument to DELTA.
6198ccd0
MR
9996 (window-buffer-height): New function.
9997 (fit-window-to-buffer, shrink-window-if-larger-than-buffer):
9998 Rewrite using new window resize routines.
2b75be67
SM
9999 (kill-buffer-and-window, mouse-autoselect-window-select):
10000 Use ignore-errors instead of condition-case.
6198ccd0
MR
10001 (quit-window): Call delete-frame instead of delete-windows-on
10002 for the only buffer on frame.
10003
9397e56f
MR
100042011-06-10 Martin Rudalics <rudalics@gmx.at>
10005
10006 * loadup.el (top-level): Load window before files for the sake
10007 of replace-buffer-in-windows.
10008
10009 * files.el (read-buffer-to-switch)
10010 (switch-to-buffer-other-window)
2b75be67
SM
10011 (switch-to-buffer-other-frame, display-buffer-other-frame):
10012 Move to window.el.
9397e56f
MR
10013
10014 * simple.el (get-next-valid-buffer, last-buffer, next-buffer)
10015 (previous-buffer): Move to window.el.
10016
10017 * bindings.el (unbury-buffer): Move to window.el.
10018
10019 * window.el (delete-other-windows-vertically): Move after
10020 definition of delete-other-windows.
10021 (other-window, delete-windows-on, replace-buffer-in-windows):
10022 Move here from window.c.
10023 (record-window-buffer, unrecord-window-buffer)
10024 (set-window-buffer-start-and-point, switch-to-prev-buffer)
10025 (switch-to-next-buffer): New functions.
10026 (get-next-valid-buffer, last-buffer, next-buffer): Move here
10027 from simple.el. Call switch-to-next-buffer.
2b75be67
SM
10028 (previous-buffer): Move here from simple.el.
10029 Call switch-to-prev-buffer.
9397e56f
MR
10030 (bury-buffer): Move here from buffer.c. Switch to previous
10031 buffer when window cannot be deleted.
10032 (unbury-buffer): Move here from bindings.el.
10033 (ctl-x-map): Move binding for other-window from window.c to
10034 here.
10035 (read-buffer-to-switch, switch-to-buffer-other-window)
10036 (switch-to-buffer-other-frame): Move here from files.el.
10037 (normalize-buffer-to-switch-to): New functions.
2b75be67
SM
10038 (switch-to-buffer): Move here from buffer.c.
10039 Use read-buffer-to-switch and normalize-buffer-to-switch-to.
9397e56f 10040
562dd5e9
MR
100412011-06-10 Martin Rudalics <rudalics@gmx.at>
10042
10043 * window.el (window-min-height, window-min-width): Move here
10044 from window.c. Add defcustoms and rewrite doc-strings.
10045 (resize-mini-window, resize-window): New functions.
10046 (adjust-window-trailing-edge, enlarge-window, shrink-window):
10047 Move here from window.c.
10048 (maximize-window, minimize-window): New functions.
10049 (delete-window, delete-other-windows, split-window): Move here
10050 from window.c.
10051 (window-split-min-size): New function.
10052 (split-window-keep-point): Mention split-window-above-each-other
10053 instead of split-window-vertically.
2b75be67 10054 (split-window-above-each-other, split-window-vertically):
1154d12e
JB
10055 Rename split-window-vertically to split-window-above-each-other
10056 and provide defalias for old definition.
10057 (split-window-side-by-side, split-window-horizontally):
10058 Rename split-window-horizontally to split-window-side-by-side
10059 and provide defalias for the old definition.
562dd5e9
MR
10060 (ctl-x-map): Move bindings for delete-window,
10061 delete-other-windows and enlarge-window here from window.c.
10062 Replace bindings for split-window-vertically and
10063 split-window-horizontally by bindings for
10064 split-window-above-each-other and split-window-side-by-side.
10065
10066 * cus-start.el (all): Remove entries for window-min-height and
10067 window-min-width. Add entries for window-splits and
10068 window-nest.
10069
f0da764a
GM
100702011-06-09 Glenn Morris <rgm@gnu.org>
10071
80675c21
GM
10072 * calendar/appt.el (appt-mode-line): New function.
10073 (appt-check, appt-disp-window): Use it.
10074
f0da764a
GM
10075 * files.el (hack-one-local-variable-eval-safep):
10076 Allow minor-modes with explicit +/-1 arguments.
10077
59f623b7
TZ
100782011-06-09 Teodor Zlatanov <tzz@lifelogs.com>
10079
10080 * term/xterm.el (xterm): Add defgroup.
10081 (xterm-extra-capabilities): Add defcustom to supply known xterm
10082 capabilities, skip querying them, or query them (default).
10083 (terminal-init-xterm): Use it.
10084 (terminal-init-xterm-modify-other-keys): New function to set up
10085 modifyOtherKeys support to simplify `terminal-init-xterm'.
10086
9aab8e0d
MR
100872011-06-09 Martin Rudalics <rudalics@gmx.at>
10088
10089 * window.el (resize-window-reset, resize-window-reset-1)
10090 (resize-subwindows-skip-p, resize-subwindows-normal)
10091 (resize-subwindows, resize-other-windows, resize-this-window)
10092 (resize-root-window, resize-root-window-vertically)
10093 (window-deletable-p, window-or-subwindow-p)
10094 (frame-root-window-p): New functions.
10095
e8b08aee
GM
100962011-06-09 Glenn Morris <rgm@gnu.org>
10097
10098 * net/ange-ftp.el (ange-ftp-switches-ok): New function.
10099 (ange-ftp-get-files): Use it.
10100
254c37a5
AK
101012011-06-09 Alexander Klimov <alserkli@inbox.ru> (tiny change)
10102
10103 * mail/sendmail.el (mail-recover-1, mail-recover):
10104 * files.el (recover-file, recover-session):
10105 Handle dired-listing-switches not being just a single short option.
10106
35d7dbd3
GM
101072011-06-09 Glenn Morris <rgm@gnu.org>
10108
10109 * calendar/appt.el (appt-display-message, appt-disp-window):
10110 Handle lists of appointments.
10111
387522b2
MR
101122011-06-08 Martin Rudalics <rudalics@gmx.at>
10113
2b75be67
SM
10114 * window.el (one-window-p): Move down in code.
10115 Rewrite doc-string.
10116 (window-current-scroll-bars): Rewrite doc-string.
10117 Normalize live window argument.
387522b2
MR
10118 (walk-windows, get-window-with-predicate, count-windows):
10119 Rewrite doc-string. Use window-list-1.
10120 (window-in-direction-2, window-in-direction, get-mru-window):
10121 New functions.
10122
d8e4b68b 101232011-06-08 Reuben Thomas <rrt@sc3d.org>
2c587104
GM
10124
10125 * progmodes/flymake.el (flymake-compilation-prevents-syntax-check):
10126 Doc fix (Bug#8713).
10127
101282011-06-08 Chong Yidong <cyd@stupidchicken.com>
10129
10130 * repeat.el (repeat-on-final-keystroke): Fix type (Bug#8696).
10131
101322011-06-08 Juanma Barranquero <lekktu@gmail.com>
10133
10134 * loadhist.el (unload-feature-special-hooks):
10135 Add `comint-output-filter-functions'.
10136
0de12c52
IK
101372011-06-08 Ivan Kanis <gnu@kanis.fr>
10138
10139 * calendar/appt.el (appt-check): Move some initializations into the let.
10140
f3d1777e
MR
101412011-06-08 Martin Rudalics <rudalics@gmx.at>
10142
10143 * window.el (window-height): Defalias to window-total-height.
10144 (window-width): Defalias to window-body-width.
10145
18af70d0
CY
101462011-06-07 Chong Yidong <cyd@stupidchicken.com>
10147
10148 * image-mode.el (image-toggle-animation): New command.
10149 (image-mode-map): Bind it to RET.
10150 (image-mode): Update message.
10151 (image-toggle-display-image): Avoid a spurious cache flush.
10152 (image-transform-rotation): Doc fix.
10153 (image-transform-properties): Return quickly in the normal case.
10154 (image-animate-loop): Rename from image-animate-max-time.
10155
2b75be67 10156 * image.el (image-animate-max-time): Move to image-mode.el.
18af70d0
CY
10157 (create-animated-image): Remove unnecessary function.
10158 (image-animate): Rename from image-animate-start. New arg.
2b75be67 10159 (image-animate-stop): Remove; just use image-animate-timer.
18af70d0
CY
10160 (image-animate-timer): Use car-safe.
10161 (image-animate-timeout): Rename argument.
10162
190b47e6
MR
101632011-06-07 Martin Rudalics <rudalics@gmx.at>
10164
10165 * window.el (get-lru-window, get-largest-window): Move here from
2b75be67
SM
10166 window.c. Rename first argument to ALL-FRAMES.
10167 Rephrase doc-strings.
10168 (get-buffer-window-list): Rewrite using window-list-1.
10169 Rephrase doc-string.
a1511caf
MR
10170 (window-safe-min-height, window-safe-min-width): New constants.
10171 (window-size-ignore, window-min-size, window-min-size-1)
10172 (window-sizable, window-sizable-p, window-size-fixed-1)
10173 (window-size-fixed-p, window-min-delta-1, window-min-delta)
10174 (window-max-delta-1, window-max-delta, window-resizable)
10175 (window-resizable-p, window-total-height, window-total-width)
10176 (window-body-width): New functions.
10177 (window-full-height-p, window-full-width-p): Rewrite using
10178 window-total-size.
10179 (window-body-height): Rewrite using window-body-size.
190b47e6 10180
85cc1f11
MR
101812011-06-06 Martin Rudalics <rudalics@gmx.at>
10182
10183 * window.el (window-right, window-left, window-child)
10184 (window-child-count, window-last-child, window-any-p)
10185 (normalize-live-buffer, normalize-live-frame)
10186 (normalize-any-window, normalize-live-window)
10187 (window-iso-combination-p, window-iso-combined-p)
10188 (window-iso-combinations)
10189 (walk-window-tree-1, walk-window-tree, walk-window-subtree)
10190 (windows-with-parameter, window-with-parameter)
10191 (window-atom-root, make-window-atom, window-atom-check-1)
2b75be67
SM
10192 (window-atom-check, window-side-check, window-check):
10193 New functions.
85cc1f11
MR
10194 (ignore-window-parameters, window-sides, window-sides-vertical)
10195 (window-sides-slots): New variables.
10196 (window-size-fixed): Move down in code. Minor doc-string fix.
10197
e7156492
AS
101982011-06-05 Andreas Schwab <schwab@linux-m68k.org>
10199
10200 * comint.el (comint-dynamic-complete-as-filename)
10201 (comint-dynamic-complete-filename): Correctly call
10202 completion-in-region.
10203
7e821d0d
DD
102042011-06-05 Deniz Dogan <deniz@dogan.se>
10205
10206 * net/rcirc.el (rcirc-prompt-for-encryption): Fix bug introduced
10207 in last change.
10208
ac09b8a1
DD
102092011-06-05 Deniz Dogan <deniz@dogan.se>
10210
10211 * net/rcirc.el (rcirc-prompt-for-encryption): New function.
10212 (rcirc): Use it to prompt for encryption.
10213
34699b85
RW
102142011-06-05 Roland Winkler <winkler@gnu.org>
10215
10216 * textmodes/bibtex.el (bibtex-search-buffer): New variable.
10217 (bibtex-search-entries): New command bound to C-c C-a.
10218 (bibtex-display-entries): New function.
10219
004dedd3
RW
102202011-06-05 Roland Winkler <winkler@gnu.org>
10221
10222 * textmodes/bibtex.el (bibtex-generate-url-list): Fix docstring.
10223 (bibtex-insert-kill): After yanking insert newline if necessary.
10224 (bibtex-initialize): Call bibtex-string-files-init only once.
10225 (bibtex-mode): Do not call easy-menu-add.
10226 (bibtex-validate-globally): Use save-excursion in bibtex buffers.
10227 (bibtex-yank): Set arg properly if nil.
10228
022fe7ce
RW
102292011-06-05 Roland Winkler <winkler@gnu.org>
10230
2b75be67
SM
10231 * textmodes/bibtex.el (bibtex-search-entry-globally):
10232 New variable.
022fe7ce
RW
10233 (bibtex-search-entry): Use it.
10234
b7c3692a
RW
102352011-06-05 Roland Winkler <winkler@gnu.org>
10236
10237 * textmodes/bibtex.el (bibtex-entry-format): New option
10238 sort-fields.
10239 (bibtex-format-entry, bibtex-reformat): Honor this option.
10240 (bibtex-parse-entry): Return fields in proper order.
10241
8eda563d
JB
102422011-06-05 Juanma Barranquero <lekktu@gmail.com>
10243
10244 * doc-view.el (doc-view-remove-if): Move computation of result out
10245 of `dolist' to silence misleading lexical-binding warning.
10246
7dbe3dbc
CY
102472011-06-04 Chong Yidong <cyd@stupidchicken.com>
10248
10249 * emacs-lisp/timer.el (timer-activate): Remove unused arg.
10250 (timer-activate, timer-activate-when-idle): Doc fix (Bug#8793).
10251
0c33dd17
MA
102522011-06-04 Michael Albinus <michael.albinus@gmx.de>
10253
10254 * net/tramp-sh.el (tramp-find-shell): Apply workaround also for
10255 "SunOS 5.10".
10256
f8f91c2b
MA
102572011-06-04 Michael Albinus <michael.albinus@gmx.de>
10258
10259 * net/tramp.el (tramp-set-completion-function, tramp-parse-rhosts)
10260 (tramp-parse-shosts, tramp-parse-sconfig, tramp-parse-shostkeys)
10261 (tramp-parse-hosts, tramp-parse-passwd, tramp-parse-netrc)
10262 (tramp-parse-putty):
10263 * net/tramp-sh.el (tramp-completion-function-alist-rsh)
10264 (tramp-completion-function-alist-ssh)
10265 (tramp-completion-function-alist-telnet)
10266 (tramp-completion-function-alist-su)
10267 (tramp-completion-function-alist-putty): Set `tramp-autoload'
10268 cookie.
10269
10270 * net/tramp-ftp.el:
10271 * net/tramp-sh.el:
10272 * net/tramp-smb.el: Set `tramp-autoload' cookie, and eval after
10273 load "tramp.el" `tramp-set-completion-function'.
10274
e17d9003
SM
102752011-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
10276
10277 * shell.el: Require and use pcomplete.
10278 (shell-dynamic-complete-functions): Add pcomplete-completions-at-point.
10279 (shell-completion-vars): Set pcomplete-default-completion-function.
10280
6c4cab03
DD
102812011-06-04 Deniz Dogan <deniz@dogan.se>
10282
10283 * iswitchb.el (iswitchb-window-buffer-p): Use `member' instead of
10284 `memq' (Bug#8799).
10285
ea9fafe0
SM
102862011-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
10287
10288 * subr.el (make-progress-reporter): Add "..." by default (bug#8785).
10289
b3e945d3
JB
102902011-06-02 Juanma Barranquero <lekktu@gmail.com>
10291
10292 * bs.el (bs--mark-unmark, bs--nth-wrapper):
10293 * mpc.el (mpc-select-extend, mpc-songpointer-context):
10294 * vc/log-view.el (log-view-beginning-of-defun):
10295 * vc/smerge-mode.el (smerge-apply-resolution-patch)
10296 (smerge-refine-forward, smerge-refine-chopup-region):
10297 Silence warning for unused `dotimes' counter variables.
10298
7d520089
SM
102992011-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
10300
10301 * net/tramp.el (tramp-with-progress-reporter): Rename from
10302 with-progress-reporter. Use `declare'.
10303 * net/tramp-smb.el:
10304 * net/tramp-sh.el:
10305 * net/tramp-gvfs.el: Update all uses.
10306
a1c2400f
JB
103072011-06-02 Jay Belanger <jay.p.belanger@gmail.com>
10308
10309 * calc/calc.el (calc-kill-stack-buffer): Make sure that the trail
10310 buffer isn't killed before making it current.
10311
2403c841
SM
103122011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
10313
10314 Silence various byte-compiler warnings.
10315 * emacs-lisp/byte-run.el (make-obsolete-variable): New argument
10316 `access-type' and new obsolescence format.
10317 * emacs-lisp/bytecomp.el (byte-compile-warn-obsolete): Adjust to
10318 new format.
10319 (byte-compile-check-variable): New `access-type' argument.
10320 Only warn if the access-type is obsolete.
10321 (byte-compile-dynamic-variable-bind, byte-compile-variable-ref)
10322 (byte-compile-variable-set): Adjust callers.
10323 * help-fns.el (describe-variable): Adjust to new obsolescence format.
10324 * mail/sendmail.el (mail-mailer-swallows-blank-line): Only mark
10325 setting it as obsolete.
10326 * simple.el (minibuffer-completing-symbol):
10327 * font-lock.el (font-lock-beginning-of-syntax-function): Only mark read
10328 access as obsolete.
10329 * minibuffer.el (minibuffer-completing-file-name): Don't make it
10330 obsolete yet.
10331 * international/quail.el (quail-mouse-choose-completion): Remove unused
10332 code referring to obsolete var.
10333 (quail-choose-completion-string): Remove.
10334 * server.el (server-clients-with, server-kill-buffer-query-function)
10335 (server-kill-emacs-query-function): Silence "unused `proc'" warnings.
10336 * proced.el (proced-send-signal):
10337 * emacs-lisp/lisp.el (lisp-complete-symbol):
10338 Replace completion-annotate-function with completion-extra-properties.
10339
2462470b
SM
103402011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
10341
fb5b2591
SM
10342 * simple.el (goto-line): Use read-number.
10343 (overriding-map-is-bound): Remove.
10344 (saved-overriding-map): Change default.
10345 (save&set-overriding-map): Rename from ensure-overriding-map-is-bound;
10346 Take the map as argument.
10347 (universal-argument, negative-argument, digit-argument): Use it.
10348 (restore-overriding-map): Adjust.
10349 (do-auto-fill): Use fill-forward-paragraph.
10350 (keyboard-quit): Don't signal an error when debug-on-quit is non-nil.
10351
fd6fa53f
SM
10352 * minibuffer.el (minibuffer-inactive-mode-map): New var.
10353 (minibuffer-inactive-mode): New major mode.
10354 * mouse.el (mouse-drag-region): Remove the "mouse-1 pops up
10355 the *Messages* buffer" hack.
10356 (mouse-popup-menubar): Don't burp if the event is a normal key.
10357
2462470b
SM
10358 Miscellaneous tweaks.
10359 * emacs-lisp/cl-macs.el (dolist, dotimes): Use the same strategy for
10360 lexical scoping as in subr.el's dolist and dotimes.
10361 * emacs-lisp/bytecomp.el (byte-compile-unfold-bcf):
10362 Silence compiler warning.
10363 * thingatpt.el (forward-whitespace): Trivial coding style fix.
10364 * subr.el (with-output-to-temp-buffer): Provide an edebug spec.
10365 * international/ccl.el (ccl-compile): Trivial simplification.
10366 * help-fns.el (help-do-arg-highlight): Silence compiler warning.
10367 * emacs-lisp/testcover.el (testcover-end): Remove spurious
10368 `printflag' argument.
10369 * emacs-lisp/byte-run.el (make-obsolete, make-obsolete-variable):
10370 Purecopy the whole obsolescence data.
10371
108bf785
LL
103722011-06-01 Leo Liu <sdl.web@gmail.com>
10373
10374 * net/rcirc.el (rcirc-decode-coding-system): Revert last change;
10375 improve doc-string as suggested by Marco Pessotto
10376 <melmothx@gmail.com>.
10377 (rcirc-print): Fix last change.
10378
30a23501
SM
103792011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
10380
10381 * minibuffer.el (complete-with-action): Return nil for the metadata and
10382 boundaries of non-functional tables.
10383 (completion-table-dynamic): Return nil for the metadata.
10384 (completion-table-with-terminator): Add default case, using
10385 complete-with-action.
10386 (completion--metadata): New function.
10387 (completion-all-sorted-completions, minibuffer-completion-help): Use it
10388 to try and avoid pathological performance problems.
10389 (completion--embedded-envvar-table): Return `category' metadata.
10390
bcd54f83
LMI
103912011-05-31 Lars Magne Ingebrigtsen <larsi@gnus.org>
10392
10393 * subr.el (process-alive-p): New tiny convenience function.
10394
e227544d
SM
103952011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
10396
10397 * emacs-lisp/debug.el (debug): Save&restore not just the buffer's
10398 content but also its previous major mode.
10399
e8296fdc
HE
104002011-05-31 Helmut Eller <eller.helmut@gmail.com>
10401
4d61f28d 10402 * emacs-lisp/debug.el (debug): Restore the previous content of the
e8296fdc
HE
10403 *Backtrace* buffer when we exit with C-M-c.
10404
620c53a6
SM
104052011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
10406
10407 * minibuffer.el: Add metadata method to completion tables.
10408 (completion-category-overrides): New defcustom.
10409 (completion-metadata, completion--field-metadata)
10410 (completion-metadata-get, completion--styles)
10411 (completion--cycle-threshold): New functions.
10412 (completion-try-completion, completion-all-completions):
10413 Add `metadata' argument to choose completion-styles.
10414 (completion--do-completion): Use metadata to choose cycling.
10415 (completion-all-sorted-completions): Use metadata for sorting.
10416 Remove :completion-cycle-penalty which is not needed any more.
10417 (completion--try-word-completion): Add `metadata' argument.
10418 (minibuffer-completion-help): Check metadata for annotation function
10419 and sorting.
10420 (completion-file-name-table): Return `category' metadata.
10421 (minibuffer-completing-file-name): Make obsolete.
10422 * simple.el (minibuffer-completing-symbol): Make obsolete.
10423 * icomplete.el (icomplete-completions): Pass new `metadata' param to
10424 completion-try-completion.
10425
1257e755
SM
104262011-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
10427
10428 * mail/smtpmail.el (smtpmail-send-data): Add progress reporter.
10429
3767e706
LL
104302011-05-30 Leo Liu <sdl.web@gmail.com>
10431
10432 * net/rcirc.el (rcirc-debug-buffer): Use visible buffer name.
5ab33f2b
LL
10433 (rcirc-print): Decode all incoming messages (bug#8744).
10434 (rcirc-decode-coding-system): Allow value nil for automatic coding
10435 system detection.
3767e706 10436
d1a5d56a
GM
104372011-06-01 Glenn Morris <rgm@gnu.org>
10438
10439 * mail/emacsbug.el (report-emacs-bug-hook): Mailclient ignores From.
10440
e8cbec34
CY
104412011-05-29 Chong Yidong <cyd@stupidchicken.com>
10442
10443 * image.el (image-animate-max-time): Allow nil and t values.
10444 Default to nil.
10445 (create-animated-image): Doc fix.
10446 (image-animate-start): Remove second arg; just use
10447 image-animate-max-time.
10448 (image-animate-timeout): Doc fix. Args changed.
10449
10450 * image-mode.el (image-toggle-display-image): Ensure that the
10451 image spec passed to the animate timer is the same object as in
58179cce 10452 the buffer's display property (Bug#6981).
e8cbec34
CY
10453 (image-transform-properties): Doc fix.
10454
10455 * image.el (image-animate-max-time): Default to nil.
10456
159daf87
MR
104572011-05-29 Martin Rudalics <rudalics@gmx.at>
10458
10459 * menu-bar.el (kill-this-buffer-enabled-p): Avoid looping over
10460 entire buffer list (Bug#8184).
10461
d66c4c7c
CY
104622011-05-29 Chong Yidong <cyd@stupidchicken.com>
10463
10464 * image.el (imagemagick-types-inhibit)
10465 (imagemagick-register-types): Doc fix.
10466
80aec780
DD
104672011-05-29 Deniz Dogan <deniz@dogan.se>
10468
10469 * net/rcirc.el (rcirc): Use the user's stored encryption method by
10470 default.
10471
1dd3c2d9
CY
104722011-05-29 Chong Yidong <cyd@stupidchicken.com>
10473
10474 * select.el: Don't perform clipboard-manager saving in hooks;
10475 leave the hooks empty.
10476
60e56523
LL
104772011-05-28 Leo Liu <sdl.web@gmail.com>
10478
10479 * replace.el (occur-menu-map, occur-edit-mode-map): New vars.
10480 (occur-mode-map): Bind occur-edit-mode. Use occur-menu-map.
10481 (occur-edit-mode): New major mode (Bug#8463).
10482 (occur-after-change-function): New function.
10483 (occur-engine): Give Occur tags a read-only property.
10484
2b1e1a22
KR
104852011-05-28 Kevin Ryde <user42@zip.com.au>
10486
10487 * subr.el (def-edebug-spec): Doc fix (Bug#8430).
10488
5d344e88
CY
104892011-05-28 Chong Yidong <cyd@stupidchicken.com>
10490
8e6ca83d
CY
10491 * bindings.el (help-echo): Make the initial non-indicator dash
10492 empty on graphical terminals (Bug#7295).
10493
5d344e88
CY
10494 * files.el (auto-mode-alist): Move config rule after the
10495 in-stripping one (Bug#8547).
10496
bfbbace7
CY
10497 * newcomment.el (comment-end-skip): Doc fix (Bug#8659).
10498
fbeba6e2
CY
10499 * startup.el (normal-splash-screen): Remove gratuitous mode-line
10500 setting (Bug#8740).
10501
60ed8c72
AA
105022011-05-28 Alp Aker <aker@pitt.edu> (tiny change)
10503
4ac619f0
AA
10504 * buff-menu.el (Buffer-menu-revert-function, Buffer-menu-sort)
10505 (Buffer-menu-buffer+size): Use Buffer-menu-buffer-column
10506 (Bug#8539).
60ed8c72 10507
23db196e
CY
105082011-05-28 Chong Yidong <cyd@stupidchicken.com>
10509
10510 * emacs-lisp/re-builder.el (re-builder): Improve doc (Bug#8286).
10511
5012f24c
DK
105122011-05-28 Dima Kogan <dkogan@cds.caltech.edu> (tiny change)
10513
10514 * progmodes/hideshow.el (hs-looking-at-block-start-p): New fun.
10515 (hs-hide-block-at-point, hs-find-block-beginning)
10516 (hs-already-hidden-p, hs-hide-block, hs-show-block): Use it
10517 (Bug#8279).
10518
6a639b16
GM
105192011-05-28 Glenn Morris <rgm@gnu.org>
10520
10521 * startup.el (fancy-about-screen): Use standard mode line. (Bug#8740)
10522
d43eaf2c
CY
105232011-05-28 Chong Yidong <cyd@stupidchicken.com>
10524
5199bde1
CY
10525 * help-fns.el (describe-function-1): If the function is a derived
10526 major mode, print the parent mode.
10527
d43eaf2c
CY
10528 * progmodes/cc-mode.el (c-mode, c++-mode, objc-mode, java-mode)
10529 (idl-mode, pike-mode, awk-mode): Inherit from prog-mode.
10530
423428a8
SM
105312011-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
10532
0ff8e1ba 10533 * minibuffer.el (completion--capf-wrapper): Check applicability before
0b381c7e 10534 returning non-nil for non-exclusive completion data.
0ff8e1ba
SM
10535 * progmodes/etags.el (tags-completion-at-point-function):
10536 * info-look.el (info-lookup-completions-at-point): Mark as
10537 non-exclusive.
10538 (info-complete): Adjust accordingly.
10539
423428a8
SM
10540 * info-look.el: Convert to lexical-binding and completion-at-point.
10541 (info-lookup-completions-at-point): New function.
10542 (info-complete): Use it and completion-in-region.
10543
b74aa22b
DA
105442011-05-28 Drew Adams <drew.adams@oracle.com>
10545
10546 * isearch.el: Let M-e start with point at the first mismatched char.
10547 (isearch-fail-pos): New function.
10548 (isearch-edit-string): Use it.
10549
66e2e71d
DK
105502011-05-28 Dmitry Kurochkin <dmitry.kurochkin@gmail.com> (tiny change)
10551
10552 * isearch.el (isearch-range-invisible): Use invisible-p (bug#8721).
10553
b1890b0f 105542011-05-27 Toby Cubitt <toby-predictive@dr-qubit.org>
eb95d01d
TC
10555
10556 * emacs-lisp/avl-tree.el: New avl-tree-stack datatype. Add new
10557 traversal functions for avl-trees.
10558 (avl-tree--stack): New struct.
10559 (avl-tree-stack-p, avl-tree--stack-repopulate): New funs.
10560 (avl-tree-enter): Add optional `updatefun' arg.
93a1c12a
TC
10561 (avl-tree--do-enter): Add optional `updatefun' arg.
10562 Change return value.
eb95d01d 10563 (avl-tree-delete): Add optional `test' and `nilflag' args.
93a1c12a
TC
10564 (avl-tree--do-delete): Add `test' and `nilflag' args.
10565 Change return value.
eb95d01d
TC
10566 (avl-tree-member): Add optional `nilflag'
10567 (avl-tree-member-p): New function.
10568 (avl-tree-mapc, avl-tree-mapf, avl-tree-mapcar): New functions.
10569 (avl-tree-stack, avl-tree-stack-pop, avl-tree-stack-first)
10570 (avl-tree-stack-empty-p): New functions.
10571
3769ddcf
TC
10572 * emacs-lisp/avl-tree.el (avl-tree--del-balance): Rename from
10573 avl-tree--del-balance1 and make it work both ways.
10574 (avl-tree--del-balance2): Remove.
10575 (avl-tree--enter-balance): Rename from avl-tree--enter-balance1 and
10576 make it work both ways.
10577 (avl-tree--enter-balance2): Remove.
10578 (avl-tree--switch-dir, avl-tree--dir-to-sign, avl-tree--sign-to-dir):
10579 New macros.
10580 (avl-tree--mapc, avl-tree-map): Add direction argument.
10581
eb95d01d 105822011-05-27 David Michael <fedora.dm0@gmail.com> (tiny change)
7a6b1aef
DM
10583
10584 * files.el (interpreter-mode-alist): Add rbash (bug#8745).
10585
a9f737ee
CY
105862011-05-27 Chong Yidong <cyd@stupidchicken.com>
10587
10588 * select.el: Support clipboard managers with built-in function
10589 x-clipboard-manager-save, via delete-frame-functions and
10590 kill-emacs-hook.
10591 (xselect-convert-to-targets): Add MULTIPLE target to list.
10592 (xselect-convert-to-save-targets): New function.
10593
c92a1e54
KH
105942011-05-27 Kenichi Handa <handa@m17n.org>
10595
10596 * mail/sendmail.el (mail-encode-header): Avoid double encoding by
10597 let-binding rfc2047-encode-encoded-words to nil.
10598
e145f188
GM
105992011-05-27 Glenn Morris <rgm@gnu.org>
10600
5ec8a862
GM
10601 * mail/emacsbug.el: Don't require url-util.
10602
4b29d9fb
GM
10603 * shell.el (shell-directory-tracker): Case matters. (Bug#8735)
10604
e145f188
GM
10605 * files.el (set-auto-mode):
10606 Also respect mode: entries at the end of the file. (Bug#8586)
10607
7d15102b
GM
106082011-05-26 Glenn Morris <rgm@gnu.org>
10609
98f593b8
GM
10610 * files.el (hack-local-variables-prop-line, hack-local-variables):
10611 Downcase mode names, as seems to be traditional.
27b48e63 10612 (hack-local-variables, hack-local-variables-apply): Doc fixes.
98f593b8 10613
7d15102b
GM
10614 * mail/emacsbug.el (report-emacs-bug): Mention checking From address.
10615 (report-emacs-bug-hook): Try to validate the From address. (Bug#8038)
10616
51d5b4ec
JD
106172011-05-25 Julien Danjou <julien@danjou.info>
10618
10619 * textmodes/rst.el (rst-define-level-faces): Do not define face
10620 symbol if it is already defined.
10621
91513f63
VB
106222011-05-24 Vincent Belaïche <vincentb1@users.sourceforge.net>
10623
10624 * play/5x5.el (5x5-new-game, 5x5-randomize):
10625 Reset 5x5-solver-output to nil when a new grid is cast.
10626 (5x5-log-init, 5x5-log): Use defsubst instead of defmacro to shunt
10627 these debugging traces, as defmacro breaks the compiled code.
10628
4d90d6d0
DK
106292011-05-24 Dmitry Kurochkin <dmitry.kurochkin@gmail.com> (tiny change)
10630
10631 * isearch.el (isearch-range-invisible): Use invisible-p (bug#8721).
10632
e1b90ef6
LL
106332011-05-24 Leo Liu <sdl.web@gmail.com>
10634
10635 * vc/vc-bzr.el (vc-bzr-sha1-program): Rename from sha1-program.
10636 (vc-bzr-sha1): Adapt.
10637
d8e4b68b 10638 * sha1.el: Remove. Function `sha1' is now builtin.
e1b90ef6
LL
10639
10640 * bindings.el: Provide sha1 feature.
10641
db0406bb 106422011-05-24 Kenichi Handa <handa@m17n.org>
b8d747b9
KH
10643
10644 * mail/sendmail.el: Require `rfc2047'.
10645 (mail-insert-from-field): Do not perform RFC2047 encoding.
10646 (mail-encode-header): New function.
10647 (sendmail-send-it): Set buffer-file-coding-system of the work
4d90d6d0
DK
10648 buffer to the return value of select-message-coding-system.
10649 Call mail-encode-header.
b8d747b9
KH
10650
10651 * mail/smtpmail.el (smtpmail-send-it): Call mail-encode-header.
10652
db0406bb 106532011-05-24 Sean Neakums <sneakums@zork.net> (tiny change)
7261f6ce 10654
4d90d6d0
DK
10655 * mail/supercite.el (sc-default-cite-frame):
10656 Handle sc-nested-citation-p when sc-cite-blank-lines-p is non-nil.
7261f6ce 10657
eb8a5e9b
GM
106582011-05-24 Glenn Morris <rgm@gnu.org>
10659
f8630703
GM
10660 * progmodes/python.el (brm-menu): Declare.
10661
8831bbed
GM
10662 * emulation/viper.el (viper-set-hooks): Declare.
10663
eb8a5e9b
GM
10664 * play/5x5.el (5x5-log-init, 5x5-log): Evaluate when compiling.
10665 (5x5-log-init, 5x5-log, 5x5-solver): Doc fixes.
10666 (math-map-vec, math-sub, math-mul, math-make-intv, math-reduce-vec)
10667 (math-format-number, math-pow, calcFunc-arrange, calcFunc-cvec)
10668 (calcFunc-diag, calcFunc-trn, calcFunc-inv, calcFunc-mrow)
10669 (calcFunc-mcol, calcFunc-vconcat, calcFunc-index): Declare.
10670
a2a25d24
SM
106712011-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
10672
10673 Add an :exit-function for completion-at-point.
10674
10675 * minibuffer.el (completion--done): New fun.
10676 (completion--do-completion): Use it. New arg `expect-exact'.
10677 (minibuffer-complete, minibuffer-complete-word): Don't output message,
10678 since completion--do-completion does it for us now.
10679 (minibuffer-force-complete): Use completion--done and
10680 completion--replace. Handle sole-completion case with more care.
10681 (minibuffer-complete-and-exit): Use new `expect-exact' arg.
10682 (completion-extra-properties): New var.
10683 (completion-annotate-function): Make obsolete.
10684 (minibuffer-completion-help): Adjust accordingly.
10685 Use completion-list-insert-choice-function.
10686 (completion-at-point, completion-help-at-point):
10687 Bind completion-extra-properties.
10688 (completion-pcm-word-delimiters): Add | (for uniquify, for example).
10689 * simple.el (completion-list-insert-choice-function): New var.
10690 (completion-setup-function): Preserve it.
10691 (choose-completion): Pay attention to it, shuffle the code a bit.
10692 (choose-completion-string): New arg `insert-function'.
10693
10694 * textmodes/bibtex.el: Convert to lexical binding.
10695 (bibtex-mode-map): Use completion-at-point.
10696 (bibtex-mode): Use define-derived-mode&completion-at-point-functions.
10697 (bibtex-completion-at-point-function): New fun, from bibtex-complete.
10698 (bibtex-complete): Define as obsolete alias.
10699 (bibtex-complete-internal): Remove.
10700 (bibtex-format-entry): Remove unused sub-group in regexp.
10701 * shell.el (shell--command-completion-data)
10702 (shell-environment-variable-completion):
10703 * pcomplete.el (pcomplete-completions-at-point):
10704 * comint.el (comint--complete-file-name-data): Use :exit-function
10705 instead of completion-table-with-terminator so it also works for
10706 choose-completion.
10707
e44e373d
SM
107082011-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
10709
4f91a816
SM
10710 * <lots-of-files>.el: Don't quote lambda expressions with `quote'.
10711
782fc819
SM
10712 * vc/smerge-mode.el (smerge-refine-subst): Don't deactivate the mark
10713 (bug#8710).
10714
e44e373d
SM
10715 * emacs-lisp/lisp.el (up-list): Fix forward movement (bug#8708).
10716
381987c3
KM
107172011-05-23 Ken Manheimer <ken.manheimer@gmail.com>
10718
10719 * allout.el (allout-inhibit-auto-fill-on-headline): Create new
10720 customization variable and implement: If non-nil, auto-fill will
10721 be inhibited while on topic's header line.
10722
b776bc70
VB
107232011-05-23 Vincent Belaïche <vincentb1@users.sourceforge.net>
10724
10725 * play/5x5.el: I/ Add an arithmetic solver to suggest positions to
d8e4b68b 10726 click on. II/ Make 5x5 multisession. III/ Ensure that random grids
b776bc70
VB
10727 always have a solution in grid size = 5 cases.
10728 (5x5-mode-map): Add keybinding to function `5x5-solve-suggest'.
10729 (5x5-solver-output, 5x5-log-buffer): New vars.
10730 (5x5-grid, 5x5-x-pos, 5x5-y-pos, 5x5-moves, 5x5-cracking):
10731 Make these variables buffer local to achieve 5x5 multi-session-ness.
10732 (5x5): Set 5x5-grid-size only if SIZE is non-negative.
10733 (5x5-grid-to-vec, 5x5-vec-to-grid, 5x5-log-init, 5x5-log, 5x5-solver)
10734 (5x5-solve-suggest): New funs.
10735 (5x5-randomize): Use 5x5-make-move instead of 5x5-flip-cell to
10736 randomize a grid so that we ensure that there is always a solution.
10737 (5x5-make-random-grid): Allow other movement than flipping.
10738
7de88b6e
KR
107392011-05-23 Kevin Ryde <user42@zip.com.au>
10740
10741 * emacs-lisp/advice.el (ad-read-advised-function):
5a5fa834 10742 Use `function-called-at-point' as the default, if it has
7de88b6e
KR
10743 advice and passes PREDICATE.
10744
b1ef1257
SM
107452011-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
10746
bbca48fe
SM
10747 * emacs-lisp/bytecomp.el (byte-compile-function-form): Only call
10748 byte-compile-lambda if it's actually a lambda.
10749
b1ef1257
SM
10750 * emacs-lisp/eieio.el (eieio-defgeneric-form-primary-only-one):
10751 Fix function quoting. Use backquote better.
10752
92a9cc65
YS
107532011-05-22 Yuanle Song <sylecn@gmail.com>
10754
10755 * nxml/rng-xsd.el (rng-xsd-check-pattern): Use case-sensitive
10756 matching (Bug#8516).
10757
f0fb8059
JA
107582011-01-22 Jari Aalto <jari.aalto@cante.net>
10759
10760 * vc/vc-dir.el (vc-default-dir-printer): Give edited tag a
10761 different face (Bug#8178).
10762
d5b44c93
CY
107632011-05-22 Chong Yidong <cyd@stupidchicken.com>
10764
10765 * vc/diff-mode.el (diff-changed): Don't use terminal specs for
10766 defface (Bug#8144).
10767
79106a44
SM
107682011-05-22 Stefan Monnier <monnier@iro.umontreal.ca>
10769
9c848d8a
SM
10770 * emacs-lisp/macroexp.el (macroexpand-all-1): Convert ' to #' for
10771 funcall as well (bug#8712). Warn when performing those conversions.
10772 * emacs-lisp/bytecomp.el (byte-compile-form): Fix error report.
10773
79106a44
SM
10774 * progmodes/grep.el (grep-mode): Fix it for good (bug#8684)!
10775
88dfa756
GM
107762011-05-22 Glenn Morris <rgm@gnu.org>
10777
10778 * files.el (hack-local-variables-prop-line): Small simplifications.
10779 (hack-local-variables, hack-local-variables-prop-line):
10780 If MODE-ONLY, return the mode, rather than just `t'.
10781
b7cf2c79
SM
107822011-05-21 Stefan Monnier <monnier@iro.umontreal.ca>
10783
10784 * progmodes/grep.el (grep-mode): Fix last change (bug#8684).
10785
3f1a8558
GM
107862011-05-21 Glenn Morris <rgm@gnu.org>
10787
7e4ccca3
GM
10788 * files.el (hack-local-variables-prop-line, hack-local-variables):
10789 If only interested in the mode, don't bother doing the other stuff.
10790
637d46ca
GM
10791 * image-mode.el (image-after-revert-hook):
10792 Redraw all frames on which the image is visible. (Bug#8567)
10793
973d955b
GM
10794 * dired-aux.el (dired-touch-initial): Just use current-time. (Bug#6887)
10795
3f1a8558
GM
10796 * wid-edit.el (widget-checklist-match-inline):
10797 Fix 2011-04-19 change. (Bug#8649)
10798
96479927
SM
107992011-05-20 Stefan Monnier <monnier@iro.umontreal.ca>
10800
1dcf791f
SM
10801 * emacs-lisp/checkdoc.el (checkdoc-sentencespace-region-engine):
10802 Also allow singlespace after single-letter capitals followed by a dot.
10803
96479927
SM
10804 * nxml/nxml-mode.el (nxml-electric-slash): Reindent when completion is
10805 enabled. Suggested by James Ahlborn <jahlborn@gmail.com> (bug#8704).
10806
35fd0881
N
108072011-05-20 Nix <nix@esperi.org.uk>
10808
10809 * files.el (basic-save-buffer-2):
10810 Fix handling of break-hardlink-on-save with non-existent files.
10811
82745640
DD
108122011-05-19 Deniz Dogan <deniz@dogan.se>
10813
10814 * net/rcirc.el (rcirc-mode): Initialize rcirc-urls to nil.
9ff90d99 10815 (rcirc-markup-urls): Check if rcirc-url-regexp is nil.
82745640 10816
4a720484
GM
108172011-05-19 Glenn Morris <rgm@gnu.org>
10818
d1f21341
GM
10819 * progmodes/f90.el (f90-type-def-re):
10820 Handle "type, bind(c)". (Bug#8691)
10821
4a720484
GM
10822 * emacs-lisp/autoload.el (batch-update-autoloads):
10823 Set autoload-excludes by parsing loadup.el rather than Makefiles.
10824
2fb0a219
MA
108252011-05-18 Michael Albinus <michael.albinus@gmx.de>
10826
10827 * net/tramp.el (tramp-process-actions): Set "first-password-request"
10828 property for the correct connection in case of multihops.
10829
e565dd37
GM
108302011-05-18 Glenn Morris <rgm@gnu.org>
10831
c2571358 10832 * emacs-lisp/authors.el (authors-fixed-entries): Remove fakemail.c.
c136e5cd
GM
10833 * mail/sendmail.el (sendmail-program): Fall back to just "sendmail".
10834
e565dd37
GM
10835 Rationalize calendar handling of day and month abbrev-arrays.
10836 * calendar/calendar.el (calendar-customized-p): New function.
10837 (calendar-abbrev-construct, calendar-make-alist): Change what it does.
10838 (calendar-day-name-array, calendar-month-name-array): Doc fix.
10839 Add :set function.
10840 (calendar-abbrev-length, calendar-day-abbrev-array)
10841 (calendar-month-abbrev-array): Make defcustoms, with appropriate :set.
10842 (calendar-day-abbrev-array, calendar-month-abbrev-array):
10843 Elements may no longer be nil.
10844 (calendar-day-name, calendar-month-name):
10845 Update for changed nature of abbrev arrays.
10846 * calendar/diary-lib.el (diary-name-pattern):
10847 Update for changed nature of abbrev arrays.
10848 (diary-mark-entries-1): Update calendar-make-alist calls.
10849 (diary-font-lock-date-forms): Doc fix for changed abbrev arrays.
10850 * calendar/cal-html.el (cal-html-day-abbrev-array):
10851 Simply inherit from calendar-day-abbrev-array.
10852
1d99a745
SM
108532011-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
10854
10855 * progmodes/grep.el (grep-mode): Disable default
10856 compilation-directory-matcher setting (bug#8684).
10857
7c1d9aa0
MA
108582011-05-17 Michael Albinus <michael.albinus@gmx.de>
10859
10860 * net/tramp.el (tramp-handle-insert-file-contents): Use "dd"
10861 instead of "head" and "tail". There were problems with SunOS 5.9,
10862 and it performs better.
10863
3952e9d8
GM
108642011-05-17 Glenn Morris <rgm@gnu.org>
10865
2dd12e7f
GM
10866 * mail/mail-utils.el (mail-dont-reply-to): Silence compiler.
10867
e4157b9c
GM
10868 * progmodes/idlw-shell.el (idlwave-shell-complete-filename):
10869 Replace obsolete function.
10870
8e249bbd
GM
10871 * shell.el (pcomplete-parse-arguments-function): Declare.
10872
3952e9d8
GM
10873 * calendar/appt.el (appt-message-warning-time, appt-display-mode-line)
10874 (appt-display-diary, appt-display-interval, appt-prev-comp-time)
10875 (appt-check): Doc fixes.
10876 (appt-disp-window-function, appt-delete-window-function):
10877 Remove needless special case in custom :type.
10878 (appt-display-count): Default to 0, not nil.
10879 (appt-check): Reset appt-display-count to 0, not nil.
10880
c71a0d48 108812011-05-17 Juanma Barranquero <lekktu@gmail.com>
165fd2df 10882
c71a0d48
GM
10883 * progmodes/python.el (python-font-lock-keywords):
10884 Add the Python 3.X keyword "nonlocal" (bug#8639).
165fd2df 10885
31d55be9
SM
108862011-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
10887
10888 * emacs-lisp/eieio.el (defmethod): Fix quoting of code (bug#8677).
10889
3bfacb2f
KR
108902011-05-16 Kevin Ryde <user42@zip.com.au>
10891
10892 * info-look.el (makefile-automake-mode): New setups, looking in
10893 automake manual, then makefile-mode.
10894 (makefile-mode): Remove automake manual, have it just in
10895 makefile-automake-mode since there's various things different or
10896 not relevant to plain make.
10897 (makefile-mode): Remove "other-modes" non-existent automake-mode,
10898 believe a hypothetical automake-mode would go to makefile-mode,
10899 not the other way around.
10900
c8e83751
CY
109012011-05-15 Chong Yidong <cyd@stupidchicken.com>
10902
5e9e35cd
CY
10903 * vc/diff-mode.el (diff-fixup-modifs): Locate correct position for
10904 hunk-end tags (Bug#8672).
10905
c8e83751
CY
10906 * vc/vc-annotate.el (vc-annotate-mode-map): Bind = to
10907 vc-annotate-show-diff-revision-at-line (Bug#8671).
10908
50b23e5a
GM
109092011-05-14 Glenn Morris <rgm@gnu.org>
10910
7210a739
GM
10911 * vc/add-log.el (add-change-log-entry): Don't start adding a new entry
10912 in the middle of an existing one with multiple authors. (Bug#8645)
375cb676
GM
10913 (change-log-font-lock-keywords): Also handle multiple author lines
10914 with leading tabs. (Bug#8644)
7210a739 10915
4691905a
GM
10916 * calendar/appt.el (appt-check): Rename some local variables.
10917 Some simplification/reordering.
10918
50b23e5a
GM
10919 * mail/feedmail.el (feedmail-confirm-outgoing-timeout)
10920 (feedmail-sendmail-f-doesnt-sell-me-out)
10921 (feedmail-queue-slug-suspect-regexp, feedmail-debug)
10922 (feedmail-debug-sit-for, feedmail-queue-express-hook)
10923 (feedmail-queue-runner-message-sender): Set :version.
1aa64307
GM
10924 (bbdb-search, bbdb-records, smtp-via-smtp, smtp-server)
10925 (bbdb-dwim-net-address, vm-mail): Declare.
50b23e5a
GM
10926 (feedmail-binmail-gnulinuxish-template):
10927 Rename from feedmail-binmail-linuxish-template.
10928 (feedmail-buffer-to-smtp, feedmail-vm-mail-mode):
10929 Use insert-buffer-substring.
10930
215cda7c
BC
109312011-05-14 Bill Carpenter <bill@carpenter.org>
10932
10933 * mail/feedmail.el (feedmail-patch-level): Increase.
10934 (feedmail-debug): New custom group.
10935 (feedmail-confirm-outgoing-timeout)
10936 (feedmail-sendmail-f-doesnt-sell-me-out)
10937 (feedmail-queue-slug-suspect-regexp, feedmail-debug)
10938 (feedmail-debug-sit-for, feedmail-queue-express-hook): New options.
10939 (feedmail-sender-line, feedmail-from-line)
10940 (feedmail-fiddle-headers-upwardly, feedmail-enable-spray)
c2571358 10941 (feedmail-spray-this-address)
215cda7c
BC
10942 (feedmail-spray-address-fiddle-plex-list)
10943 (feedmail-queue-use-send-time-for-date)
10944 (feedmail-queue-use-send-time-for-message-id)
10945 (feedmail-last-chance-hook, feedmail-queue-runner-mode-setter)
10946 (feedmail-buffer-eating-function):
10947 Doc fixes.
10948 (feedmail-spray-via-bbdb, feedmail-buffer-to-smtp)
10949 (feedmail-vm-mail-mode, feedmail-message-action-scroll-up)
10950 (feedmail-message-action-scroll-down): New functions.
10951 (feedmail-queue-directory, feedmail-queue-draft-directory):
10952 Use expand-file-name.
10953 (feedmail-prompt-before-queue-standard-alist): Add scroll entries.
10954 Remove C-v help entry.
10955 (feedmail-queue-buffer-file-name): New variable.
10956 (feedmail-mail-send-hook-splitter, feedmail-buffer-to-binmail)
10957 (feedmail-buffer-to-smtpmail, feedmail-queue-express-to-draft)
10958 (feedmail-message-action-send-strong, feedmail-message-action-edit)
10959 (feedmail-message-action-draft, feedmail-message-action-draft-strong)
10960 (feedmail-message-action-queue, feedmail-message-action-queue-strong)
10961 (feedmail-message-action-toggle-spray)
10962 (feedmail-run-the-queue-no-prompts)
10963 (feedmail-run-the-queue-global-prompt, feedmail-queue-reminder)
10964 (feedmail-look-at-queue-directory, feedmail-queue-subject-slug-maker)
10965 (feedmail-create-queue-filename, feedmail-rfc822-time-zone):
10966 (feedmail-fiddle-header, feedmail-give-it-to-buffer-eater)
10967 (feedmail-envelope-deducer, feedmail-fiddle-from)
10968 (feedmail-fiddle-sender, feedmail-default-date-generator)
10969 (feedmail-fiddle-date, feedmail-fiddle-message-id)
10970 (feedmail-fiddle-spray-address)
10971 (feedmail-fiddle-list-of-spray-fiddle-plexes)
10972 (feedmail-fiddle-list-of-fiddle-plexes)
10973 (feedmail-fill-to-cc-function, feedmail-fill-this-one)
10974 (feedmail-one-last-look, feedmail-fqm-p): Add debug calls.
10975 (feedmail-queue-runner-message-sender, feedmail-binmail-template):
10976 Change default. Doc fix.
10977 (feedmail-queue-runner-cleaner-upper): Use feedmail-say-chatter.
10978 (feedmail-binmail-linuxish-template): New constant.
10979 (feedmail-buffer-to-sendmail): Doc fix. Add debug call.
10980 Respect feedmail-sendmail-f-doesnt-sell-me-out.
10981 (feedmail-send-it): Add debug call.
10982 Use feedmail-queue-buffer-file-name, and
10983 feedmail-send-it-immediately-wrapper.
10984 (feedmail-message-action-send): Add debug call.
10985 Use feedmail-send-it-immediately-wrapper.
10986 (feedmail-queue-express-to-queue): Add debug call.
10987 Run feedmail-queue-express-hook.
10988 (feedmail-message-action-help): Add debug call. Use feedmail-p-h-b-n.
10989 (feedmail-message-action-help-blat):
10990 Rename from feedmail-queue-send-edit-prompt-help-first.
10991 (feedmail-run-the-queue): Add debug call. Set buffer-file-type.
10992 Check line-endings. Handle errors better.
10993 (feedmail-queue-reminder-brief, feedmail-queue-reminder-medium):
10994 Doc fix. Add debug call.
10995 (feedmail-queue-send-edit-prompt): Doc fix. Add debug call.
10996 Use feedmail-queue-send-edit-prompt-inner.
10997 (feedmail-queue-runner-prompt, feedmail-scroll-buffer): New functions.
10998 (feedmail-queue-send-edit-prompt-inner): New function, extracted
10999 from feedmail-queue-send-edit-prompt.
11000 (feedmail-queue-send-edit-prompt-help)
11001 (feedmail-queue-send-edit-prompt-help-later): Remove functions.
11002 (feedmail-tidy-up-slug): Add debug call.
11003 Respect feedmail-queue-slug-suspect-regexp.
11004 (feedmail-queue-subject-slug-maker): Use buffer-substring-no-properties.
11005 (feedmail-dump-message-to-queue): Add debug call.
11006 Expand queue-directory.
11007 (feedmail-dump-message-to-queue): Change message slightly.
11008 Use feedmail-say-chatter.
11009 (feedmail-rfc822-date): Add debug call. Bind system-time-locale.
11010 (feedmail-send-it-immediately-wrapper): New function.
11011 (feedmail-send-it-immediately): Add debug calls. Use let not let*.
11012 Insert empty string rather than newline. Handle full-frame case.
11013 Use catch/throw. Use feedmail-say-chatter.
11014 (feedmail-fiddle-from): Try mail-host-address.
11015 (feedmail-default-message-id-generator): Doc fix.
11016 Bind system-time-locale. Handle missing end.
11017 (feedmail-fiddle-x-mailer): Add debug call.
11018 Handle feedmail-x-mailer-line being nil.
11019 (feedmail-accume-n-nuke-header, feedmail-deduce-address-list):
11020 Add debug call. Use buffer-substring-no-properties.
11021 (feedmail-say-debug, feedmail-say-chatter): New functions.
11022 (feedmail-find-eoh): Give an explicit error.
11023
42c7e61e
UJ
110242011-05-13 Ulf Jasper <ulf.jasper@web.de>
11025
c2571358 11026 * net/newst-treeview.el (newsticker-treeview-face): Change default
42c7e61e 11027 family from helvetica to sans.
c2571358 11028 (newsticker-treeview-tool-bar-map): Move tool-bar icons to
42c7e61e
UJ
11029 etc/images/newsticker.
11030
c2571358 11031 * net/newst-reader.el (newsticker-feed-face): Change default
42c7e61e
UJ
11032 family from helvetica to sans.
11033
11034 * net/newst-plainview.el (newsticker-new-item-face)
11035 (newsticker-old-item-face, newsticker-immortal-item-face)
11036 (newsticker-obsolete-item-face, newsticker-date-face)
c2571358 11037 (newsticker-statistics-face): Change default family from
42c7e61e 11038 helvetica to sans.
c2571358 11039 (newsticker--plainview-tool-bar-map): Move tool-bar icons to
42c7e61e
UJ
11040 etc/images/newsticker.
11041
5d3385a0
JB
11042 * net/newst-backend.el (newsticker--do-run-auto-mark-filter)
11043 (newsticker--process-auto-mark-filter-match): Tell user about
42c7e61e
UJ
11044 auto-marking.
11045
8497a297
DV
110462011-05-13 Didier Verna <didier@xemacs.org>
11047
11048 Common Lisp indentation improvements on defmethod and lambda-lists.
4d61f28d
JB
11049 * emacs-lisp/cl-indent.el: Advertise the changes and remove obsolete
11050 TODO entries.
8497a297
DV
11051 (lisp-lambda-list-keyword-parameter-indentation)
11052 (lisp-lambda-list-keyword-parameter-alignment)
11053 (lisp-lambda-list-keyword-alignment): New customizable user options.
11054 (lisp-indent-defun-method): Improve docstring.
11055 (extended-loop-p): Fix comment.
11056 (lisp-indent-lambda-list-keywords-regexp): New variable.
11057 (lisp-indent-lambda-list): New function.
11058 (lisp-indent-259): Use it.
11059 (lisp-indent-defmethod): Support for more than one
11060 method qualifier and properly indent methods lambda-lists.
11061 (defgeneric): Provide a missing common-lisp-indent-function property.
11062
f278f87f
SM
110632011-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
11064
11065 * thingatpt.el (bounds-of-thing-at-point): Return nil rather than
11066 bounds for the empty string (bug#8667).
11067
5233edd7
GM
110682011-05-13 Glenn Morris <rgm@gnu.org>
11069
5237a44f
GM
11070 * mail/feedmail.el (feedmail-buffer-to-sendmail): Require sendmail.
11071
8340026c 11072 * mail/sendmail.el (sendmail-program): Try executable-find first.
f278f87f 11073 (sendmail-send-it): `sendmail-program' cannot be unbound.
8340026c 11074
5233edd7 11075 * calendar/appt.el (appt-make-list): Simplify.
4accbca6 11076 (appt-time-msg-list): Doc fix.
a5464014 11077 (appt-check): Change mode-line message at the time of the appointment.
5233edd7 11078
92d10796
AS
110792011-05-12 Andreas Schwab <schwab@linux-m68k.org>
11080
11081 * progmodes/ld-script.el (ld-script-keywords)
11082 (ld-script-builtins): Update keywords list.
11083
914a0ae1
SM
110842011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
11085
c89be45f
SM
11086 * progmodes/grep.el (grep-filter): Don't trip on partial lines.
11087
914a0ae1
SM
11088 * shell.el (shell-completion-vars): New function.
11089 (shell-mode):
11090 * simple.el (read-shell-command): Use it.
11091 (blink-matching-open): No need for " [...]" in minibuffer-message.
11092
98dc3df3
GM
110932011-05-12 Glenn Morris <rgm@gnu.org>
11094
11095 * calendar/appt.el (appt-now-displayed): Remove pointless variable.
11096 (appt-check): Simplify.
11097
d2fc7e3d 110982011-05-12 Eli Zaretskii <eliz@gnu.org>
0e39ec21 11099
4d61f28d 11100 * vc/smerge-mode.el (smerge-resolve): Use null-device rather than a
0e39ec21
EZ
11101 literal "/dev/null".
11102
d2fc7e3d 111032011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
3f254caa
SM
11104
11105 * emacs-lisp/lisp.el (lisp-complete-symbol, lisp-completion-at-point):
11106 Fix typo.
11107
d2fc7e3d 111082011-05-12 Ralph Schleicher <rs@ralph-schleicher.de>
6eea50c7 11109
3f254caa
SM
11110 * progmodes/which-func.el (which-function):
11111 Use add-log-current-defun instead of add-log-current-defun-function,
6eea50c7
RS
11112 which might not be defined (Bug#8260).
11113
d45885f7
GM
111142011-05-12 Glenn Morris <rgm@gnu.org>
11115
11116 * emacs-lisp/bytecomp.el (byte-compile-file-form-defmumble):
11117 Let byte-compile-initial-macro-environment always take precedence.
11118
488086f4
SM
111192011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
11120
11121 * net/rcirc.el: Add support for SSL/TLS connections.
11122 (rcirc-server-alist): New field `encryption'.
11123 (rcirc): Check `encryption' settings.
11124 (rcirc-connect): New arg `encryption'. Use open-network-stream.
11125 Merge make-local-variable into `set'.
11126 (rcirc--connection-open-p): New function.
11127 (rcirc-send-string, rcirc-clean-up-buffer): Use it to handle case where
11128 the process is not a network process (e.g. running gnutls-cli).
11129 (set-rcirc-decode-coding-system, set-rcirc-encode-coding-system):
11130 Make rcirc-(en|de)code-coding-system local here.
11131 (rcirc-mode): Merge make-local-variable into `set'.
11132 (rcirc-parent-buffer): Make permanent buffer-local.
11133 (rcirc-multiline-minor-mode): Don't do it here.
11134 (rcirc-switch-to-server-buffer): Don't switch to a random buffer if
11135 there's no server buffer.
11136
7d3b9d44
GM
111372011-05-11 Glenn Morris <rgm@gnu.org>
11138
f64049c6
GM
11139 * newcomment.el (comment-kill): Prefix "unused" local.
11140
93c9df73
GM
11141 * term/w32console.el (get-screen-color): Declare.
11142
7d3b9d44
GM
11143 * emacs-lisp/bytecomp.el (byte-compile-arglist-warn):
11144 Handle symbol elements of byte-compile-initial-macro-environment.
11145
9e2dd53f
LL
111462011-05-10 Leo Liu <sdl.web@gmail.com>
11147
488086f4
SM
11148 * bookmark.el (bookmark-bmenu-mode-map):
11149 Bind bookmark-bmenu-search to `/'.
8b340240 11150
9e2dd53f 11151 * mail/footnote.el: Convert to utf-8 encoding.
b4044869
LL
11152 (footnote-unicode-string, footnote-unicode-regexp): New variable.
11153 (Footnote-unicode): New function.
11154 (footnote-style-alist): Add unicode style to the list.
11155 (footnote-style): Doc fix.
9e2dd53f 11156
79b70037
GM
111572011-05-10 Jim Meyering <meyering@redhat.com>
11158
11159 Fix doubled-word typos.
11160 * international/quail.el (quail-insert-kbd-layout): and and -> and
11161 * kermit.el: and and -> and
11162 * net/ldap.el (ldap-search-internal): to to -> to
11163 * progmodes/vhdl-mode.el (vhdl-offsets-alist): Likewise.
11164 * progmodes/js.el (js-mode): and and -> and
11165 * textmodes/artist.el (artist-move-to-xy): at at -> at
11166 (artist-draw-region-trim-line-endings): if if -> if
11167 And Safetyc -> Safety.
11168 * textmodes/reftex-dcr.el (reftex-view-crossref): at at -> at a
11169
b8f82dc1 111702011-05-10 Glenn Morris <rgm@gnu.org>
c2571358 11171 Stefan Monnier <monnier@iro.umontreal.ca>
b8f82dc1
GM
11172
11173 * files.el (hack-one-local-variable-eval-safep):
11174 Consider "eval: (foo-mode)" to be safe. (Bug#8613)
11175
4f99f44b
GM
111762011-05-10 Glenn Morris <rgm@gnu.org>
11177
11178 * calendar/diary-lib.el (diary-list-entries-hook)
11179 (diary-mark-entries-hook, diary-nongregorian-listing-hook)
11180 (diary-nongregorian-marking-hook, diary-list-entries)
11181 (diary-include-other-diary-files, diary-mark-entries)
11182 (diary-mark-included-diary-files): Doc fixes.
11183
84f29e6b
JB
111842011-05-09 Juanma Barranquero <lekktu@gmail.com>
11185
11186 * misc.el: Require tabulated-list.el during compilation.
11187
9bedd73a
CY
111882011-05-09 Chong Yidong <cyd@stupidchicken.com>
11189
488086f4
SM
11190 * progmodes/compile.el (compilation-start):
11191 Run compilation-filter-hook for the async case too.
9bedd73a
CY
11192 (compilation-filter-hook): Doc fix.
11193
797c735c
DD
111942011-05-09 Deniz Dogan <deniz@dogan.se>
11195
11196 * wdired.el: Remove outdated installation comment. Fix usage
11197 comment.
11198
5f4b1dfe
JB
111992011-05-09 Juanma Barranquero <lekktu@gmail.com>
11200
11201 * misc.el: Implement new command `list-dynamic-libraries'.
11202 (list-dynamic-libraries--loaded-only-p): New variable.
11203 (list-dynamic-libraries--refresh): New function.
11204 (list-dynamic-libraries): New command.
11205
4c44026c
CY
112062011-05-09 Chong Yidong <cyd@stupidchicken.com>
11207
488086f4
SM
11208 * progmodes/compile.el (compilation-error-regexp-alist-alist):
11209 Fix the ant regexp to handle end-line and end-column info from jikes.
4c44026c
CY
11210 Re-introduce maven regexp. Give the ruby-Test::Unit regexp a
11211 higher priority to avoid clobbering by gnu.
11212
027f966d
CY
112132011-05-08 Chong Yidong <cyd@stupidchicken.com>
11214
11215 * cus-face.el (custom-declare-face): Call custom-theme-recalc-face
11216 if the face has existing theme settings (Bug#8454).
11217
085f5d7d
CY
112182011-05-08 Ralph Schleicher <rs@ralph-schleicher.de>
11219
488086f4
SM
11220 * progmodes/perl-mode.el (perl-imenu-generic-expression):
11221 Only match variables declared via `my' or `our' (Bug#8261).
085f5d7d 11222
2a86a00c
RS
11223 * net/browse-url.el (browse-url-of-dired-file): Allow browsing of
11224 special file names `.' and `..' (Bug#8259).
11225
d9c54a06
CY
112262011-05-08 Chong Yidong <cyd@stupidchicken.com>
11227
488086f4
SM
11228 * progmodes/grep.el (grep-mode-font-lock-keywords):
11229 Remove buffer-changing entries.
d9c54a06
CY
11230 (grep-filter): New function.
11231 (grep-mode): Add it to compilation-filter-hook.
11232
11233 * progmodes/compile.el (compilation-filter-hook)
11234 (compilation-filter-start): New defvars.
11235 (compilation-filter): Call compilation-filter-hook prior to
11236 updating the process mark.
11237
c4662635
SM
112382011-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
11239
11240 * emacs-lisp/eieio.el (defmethod): Fix typo in last change.
11241
b0512a1d
EZ
112422011-05-07 Eli Zaretskii <eliz@gnu.org>
11243
605c9376
EZ
11244 * mail/sendmail.el (send-mail-function): On MS-Windows, default to
11245 mailclient-send-it even if window-system is nil. (Bug#8595)
11246
c4662635
SM
11247 * term/w32console.el (terminal-init-w32console):
11248 Call get-screen-color and use its output to set the frame
b0512a1d
EZ
11249 background-mode. (Bug#8597)
11250
d1dc2cc2
SM
112512011-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
11252
11253 Make bytecomp.el understand that defmethod defines funs (bug#8631).
11254 * emacs-lisp/eieio.el (eieio--defalias, eieio--defgeneric-init-form):
11255 New functions.
11256 (defgeneric, eieio--defmethod): Use them.
11257 (eieio-defgeneric): Remove.
11258 (defmethod): Call defgeneric in a way visible to the byte-compiler.
11259
915d1300
GM
112602011-05-07 Glenn Morris <rgm@gnu.org>
11261
a3961c3e
GM
11262 * calendar/timeclock.el (timeclock-log-data): Remove unused local.
11263 Use let rather than let*.
11264 (timeclock-find-discrep): Remove unused local.
11265
314347b9
GM
11266 * calendar/diary-lib.el (diary-comment-start): Doc fix.
11267
915d1300
GM
11268 * calendar/appt.el (appt-time-msg-list): Doc fix.
11269
275b59b0
NF
112702011-05-06 Noah Friedman <friedman@splode.com>
11271
11272 * apropos.el (apropos-print-doc): Only use
11273 emacs-lisp-docstring-fill-column when it is bound to an integer,
11274 per that variable's documentation.
11275
6c19f744
SM
112762011-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
11277
11278 * lpr.el (print-region-1): Echo lpr-program's output, so error messages
d1dc2cc2 11279 and warnings are not silently discarded (e.g. use -d instead of -P).
6c19f744 11280
60f884b2
GM
112812011-05-06 Glenn Morris <rgm@gnu.org>
11282
5006e634
GM
11283 * calendar/appt.el (appt-message-warning-time): Doc fix.
11284 (appt-warning-time-regexp): New option.
11285 (appt-make-list): Respect appt-message-warning-time.
11286
548d0a63
GM
11287 * calendar/diary-lib.el (diary-comment-start, diary-comment-end):
11288 New options.
11289 (diary-add-to-list): Strip comments from the displayed string.
11290 (diary-mode): Set comment-start and comment-end.
11291
60f884b2
GM
11292 * vc/diff-mode.el (smerge-refine-subst): Declare.
11293 (diff-refine-hunk): Don't require smerge-mode when compiling.
11294
989681bb
JB
112952011-05-06 Juanma Barranquero <lekktu@gmail.com>
11296
11297 * simple.el (list-processes): Return nil as the docstring says.
11298
a6bc05e1
MA
112992011-05-05 Michael Albinus <michael.albinus@gmx.de>
11300
11301 * net/ange-ftp.el (ange-ftp-binary-file-name-regexp): Set default
11302 to "".
11303 (ange-ftp-write-region, ange-ftp-insert-file-contents)
11304 (ange-ftp-copy-file-internal): Use only `ange-ftp-binary-file' for
11305 determining of binary transfer. (Bug#7383)
11306
23c22e9a
MA
113072011-05-05 Michael Albinus <michael.albinus@gmx.de>
11308
c4662635
SM
11309 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
11310 Fix port computation bug. (Bug#8618)
23c22e9a 11311
0bff894f
GM
113122011-05-05 Glenn Morris <rgm@gnu.org>
11313
b8296902
GM
11314 * allout-widgets.el (allout-widgets-mode-inhibit): Declare before use.
11315
1f522ce8
GM
11316 * simple.el (shell-dynamic-complete-functions)
11317 (comint-dynamic-complete-functions): Declare.
11318
cf5bee67
GM
11319 * net/network-stream.el (gnutls-negotiate):
11320 * simple.el (tabulated-list-print): Fix declarations.
11321
11322 * progmodes/gud.el (syntax-symbol, syntax-point):
11323 Remove unnecessary and incorrect declarations.
11324
0bff894f
GM
11325 * emacs-lisp/check-declare.el (check-declare-scan):
11326 Handle byte-compile-initial-macro-environment in bytecomp.el
11327
9869b3ae
SM
113282011-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
11329
11330 Fix earlier half-done eieio-defmethod change (bug#8338).
11331 * emacs-lisp/eieio.el (eieio--defmethod): Rename from eieio-defmethod.
11332 Streamline and change calling convention.
11333 (defmethod): Adjust accordingly and simplify.
11334 (eieio-defclass): Fix broken calls to eieio-defmethod and redirect to
11335 new eieio--defmethod.
11336 (slot-boundp): Minor CSE simplification.
11337
9c1d5ac5
MZ
113382011-05-05 Milan Zamazal <pdm@zamazal.org>
11339
11340 * progmodes/glasses.el (glasses-separate-capital-groups): New option.
11341 (glasses-make-readable): Use glasses-separate-capital-groups.
11342
455c834e
JB
113432011-05-05 Juanma Barranquero <lekktu@gmail.com>
11344
11345 * emacs-lisp/warnings.el (warning-level-aliases): Reflow docstring.
11346 (warning-series): Doc fix.
11347 (display-warning): Don't try to create the buffer if we just found it.
11348
9ed7c8cb
CY
113492011-05-04 Chong Yidong <cyd@stupidchicken.com>
11350
11351 * emacs-lisp/autoload.el (generated-autoload-file): Set to nil.
11352 (autoload-find-generated-file): New function.
11353 (generate-file-autoloads): Bind generated-autoload-file to
11354 buffer-file-name.
9869b3ae
SM
11355 (update-file-autoloads, update-directory-autoloads):
11356 Use autoload-find-generated-file. If called interactively, prompt for
9ed7c8cb
CY
11357 output file (Bug#7989).
11358 (batch-update-autoloads): Doc fix.
11359
0898ca10
JB
113602011-05-04 Juanma Barranquero <lekktu@gmail.com>
11361
11362 * term/w32-win.el (dynamic-library-alist): Add `gnutls'.
11363
31dfb76c
GM
113642011-05-04 Glenn Morris <rgm@gnu.org>
11365
f330b642
GM
11366 * calendar/diary-lib.el (diary-fancy-date-pattern): Turn it into a
11367 function, so it follows changes in calendar-date-style.
11368 (diary-fancy-date-matcher): New function.
11369 (diary-fancy-font-lock-keywords): Use diary-fancy-date-matcher.
11370 (diary-fancy-font-lock-fontify-region-function):
11371 Use diary-fancy-date-pattern as a function.
11372
31dfb76c
GM
11373 * calendar/diary-lib.el (diary-fancy-date-pattern): Do not use
11374 non-numbers for `year' etc pseudo-variables. (Bug#8583)
11375
48e79d6a
TZ
113762011-05-04 Teodor Zlatanov <tzz@lifelogs.com>
11377
11378 * net/gnutls.el (gnutls-negotiate): Use CL-style keyword arguments
11379 instead of positional arguments. Allow :keylist and :crlfiles
11380 arguments.
11381 (open-gnutls-stream): Call it.
11382
11383 * net/network-stream.el (network-stream-open-starttls): Adjust to
11384 call `gnutls-negotiate' with :process and :hostname arguments.
11385
dd5a5ee0
SM
113862011-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
11387
ef80fc09
SM
11388 * minibuffer.el (completion--message): New function.
11389 (completion--do-completion, minibuffer-complete)
11390 (minibuffer-force-complete, minibuffer-complete-word): Use it.
11391 (completion--do-completion): Don't ignore completion-auto-help when in
11392 icomplete-mode.
11393
dd5a5ee0
SM
11394 * whitespace.el (whitespace-trailing-regexp): Don't rely on the
11395 internal encoding (e.g. tibetan zero is not whitespace).
11396 (global-whitespace-mode): Prefer save-current-buffer.
11397 (whitespace-trailing-regexp): Remove useless save-match-data.
11398 (whitespace-empty-at-bob-regexp): Minor simplification.
11399
b7d22a83
CY
114002011-05-03 Chong Yidong <cyd@stupidchicken.com>
11401
11402 * emacs-lisp/autoload.el (generated-autoload-file): Doc fix (Bug#7989).
11403
5192af46
AM
114042011-05-03 Agustín Martín Domingo <agustin.martin@hispalinux.es>
11405
11406 * textmodes/ispell.el (ispell-add-per-file-word-list):
cdc4a047 11407 Use `concat' to create string for insertion.
5192af46 11408
5767d190
SM
114092011-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
11410
11411 * textmodes/bibtex.el (bibtex-fill-field-bounds, bibtex-fill-entry):
11412 Avoid open-line which runs post-self-insert-hook.
11413 (bibtex-fill-entry): Remove unused `end' var.
11414
bf242939
AM
114152011-05-03 Dirk Ullrich <dirk.ullrich@googlemail.com> (tiny change)
11416
5767d190
SM
11417 * textmodes/ispell.el (ispell-add-per-file-word-list):
11418 Protect against `nil' value of `comment-start' (Bug#8579).
bf242939 11419
25666126
LL
114202011-05-03 Leo Liu <sdl.web@gmail.com>
11421
11422 * isearch.el (isearch-yank-pop): New command.
5767d190 11423 (isearch-mode-map): Bind it to `M-y'.
25666126
LL
11424 (isearch-forward): Mention it.
11425
52d3c2d0
SM
114262011-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
11427
1bcace58
SM
11428 * simple.el (minibuffer-complete-shell-command): Remove.
11429 (minibuffer-local-shell-command-map): Use completion-at-point.
11430 (read-shell-command): Setup completion vars here instead.
11431 (read-expression-map): Bind TAB to symbol completion.
11432
52d3c2d0
SM
11433 * textmodes/ispell.el (lookup-words): Use with-temp-buffer; signal
11434 error directly rather via storing it into `results'.
11435
35813471
LL
114362011-05-02 Leo Liu <sdl.web@gmail.com>
11437
11438 * vc/diff.el: Fix description.
11439
e793a940
LMI
114402011-05-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
11441
11442 * server.el (server-eval-at): New function.
11443
8de66e05
LMI
114442011-05-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
11445
11446 * net/network-stream.el (open-network-stream): Take a :nowait
11447 parameter and pass it on to `make-network-process'.
11448 (network-stream-open-plain): Ditto.
11449
dcb79f20
AS
114502011-04-30 Andreas Schwab <schwab@linux-m68k.org>
11451
11452 * faces.el (face-spec-set-match-display): Don't match toolkit
11453 options on terminal frames.
11454
14a7fbd8
SM
114552011-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
11456
7eabc1be
SM
11457 * progmodes/pascal.el: Use lexical binding.
11458 (pascal-mode-map): Remove author preferences.
11459
14a7fbd8
SM
11460 * pcomplete.el (pcomplete-std-complete): Don't abuse
11461 completion-at-point.
11462
50f84510
JB
114632011-04-28 Juanma Barranquero <lekktu@gmail.com>
11464
6e087a44
JB
11465 * calc/calccomp.el (math-comp-to-string-flat-term): Simplify by
11466 removing code that has been dead since 1991 or so.
11467
50f84510
JB
11468 * startup.el (command-line): When warning about "_emacs", use a
11469 delayed warning to allow the user to filter it out.
11470
0ba690bd
DD
114712011-04-28 Deniz Dogan <deniz@dogan.se>
11472
11473 * net/rcirc.el (rcirc-handler-353): Fix bug for channels which the
11474 user has not joined.
11475
08abfaad
SM
114762011-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
11477
11478 * pcomplete.el (pcomplete-completions-at-point): Return nil if there
11479 aren't any completions at point.
11480
638f053a
JB
114812011-04-28 Juanma Barranquero <lekktu@gmail.com>
11482
11483 * subr.el (display-delayed-warnings): New function.
11484 (delayed-warnings-hook): New variable.
11485
8fff8daa
SM
114862011-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
11487
08abfaad
SM
11488 * minibuffer.el (completion-at-point, completion-help-at-point):
11489 Don't presume that a given completion-at-point-function will always
11490 use the same calling convention.
11491
8fff8daa
SM
11492 * pcomplete.el (pcomplete-completions-at-point):
11493 Obey pcomplete-ignore-case. Don't call pcomplete-norm-func unless
11494 pcomplete-seen is non-nil.
11495 (pcomplete-comint-setup): Also recognize the new comint/shell
11496 completion functions.
11497 (pcomplete-do-complete): Don't call pcomplete-norm-func unless
11498 pcomplete-seen is non-nil.
11499
841a1577 115002011-04-27 Niels Giesen <niels.giesen@gmail.com>
211ec907 11501
841a1577 11502 * calendar/icalendar.el (diary-lib): Add require statement.
211ec907 11503 (icalendar--create-uid): Read out a uid from a text-property on
841a1577 11504 the first character in the entry. This allows for code to add its
211ec907
UJ
11505 own uid to the entry.
11506 (icalendar--convert-float-to-ical): Add export of
11507 `diary-float'-entries save for those with the optional DAY
11508 argument.
11509
2a782793
DC
115102011-04-27 Daniel Colascione <dan.colascione@gmail.com>
11511
11512 * subr.el (shell-quote-argument): Use alternate escaping strategy
11513 when we spot a variable reference in a string.
11514
0438ce91
DC
115152011-04-26 Daniel Colascione <dan.colascione@gmail.com>
11516
11517 * cus-start.el (all): Define customization for debug-on-event.
11518
841a1577 115192011-04-26 Daniel Colascione <dan.colascione@gmail.com>
8f91bf93
DC
11520
11521 * subr.el (shell-quote-argument): Escape correctly under Windows.
11522
d090ed6c
SM
115232011-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
11524
11525 * emulation/cua-base.el (cua-selection-mode): Make it toggle again.
11526
bfd31217
MA
115272011-04-25 Michael Albinus <michael.albinus@gmx.de>
11528
d090ed6c
SM
11529 * net/tramp.el (tramp-process-actions): Add POS argument.
11530 Delete region between POS and (pos).
bfd31217 11531
d090ed6c
SM
11532 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
11533 Use `nil' position in `tramp-process-actions' call.
bfd31217
MA
11534 (tramp-maybe-open-connection): Call `tramp-process-actions' with pos.
11535
11536 * net/tramp-smb.el (tramp-smb-maybe-open-connection): Use `nil'
11537 position in `tramp-process-actions' call.
11538
11539 * net/trampver.el: Update release number.
11540
e92f3bd3
SM
115412011-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
11542
850256b5
SM
11543 * custom.el (defcustom): Obey lexical-binding.
11544
e92f3bd3
SM
11545 Fix octave-inf completion problems reported by Alexander Klimov.
11546 * progmodes/octave-inf.el (inferior-octave-mode-syntax-table):
11547 Inherit from octave-mode-syntax-table.
11548 (inferior-octave-mode): Set info-lookup-mode.
11549 (inferior-octave-completion-at-point): New function.
11550 (inferior-octave-complete): Use it and completion-in-region.
11551 (inferior-octave-dynamic-complete-functions): Use it as well, and use
11552 comint-filename-completion.
11553 * progmodes/octave-mod.el (octave-mode-syntax-table): Use _ syntax for
11554 symbol elements which shouldn't be word elements.
11555 (octave-font-lock-keywords, octave-beginning-of-defun)
11556 (octave-function-header-regexp): Adjust regexps accordingly.
11557 (octave-mode-map): Also use info-lookup-symbol for C-c C-h.
11558
cd22b309
JB
115592011-04-25 Juanma Barranquero <lekktu@gmail.com>
11560
11561 * net/gnutls.el (gnutls-errorp): Declare before first use.
11562
8b492194
TZ
115632011-04-24 Teodor Zlatanov <tzz@lifelogs.com>
11564
11565 * net/gnutls.el (gnutls-negotiate): Add hostname, verify-flags,
11566 verify-error, and verify-hostname-error parameters. Check whether
cd22b309 11567 default trustfile exists before going to use it. Add missing
5a5fa834 11568 argument to gnutls-message-maybe call. Return value.
8b492194
TZ
11569 Reported by Claudio Bley <claudio.bley@gmail.com>.
11570 (open-gnutls-stream): Add usage example.
11571
11572 * net/network-stream.el (network-stream-open-starttls): Give host
11573 parameter to `gnutls-negotiate'.
11574 (gnutls-negotiate): Adjust `gnutls-negotiate' declaration.
8f91bf93 11575 * subr.el (shell-quote-argument): Escape correctly under Windows.
8b492194 11576
841a1577 115772011-04-24 Daniel Colascione <dan.colascione@gmail.com>
05842630 11578
cd22b309
JB
11579 * progmodes/cc-engine.el (c-forward-decl-or-cast-1):
11580 Use correct match group (bug#8438).
05842630 11581
3ba7869c
CY
115822011-04-24 Chong Yidong <cyd@stupidchicken.com>
11583
512e3ae1
CY
11584 * emacs-lisp/package.el (package-built-in-p): Fix typo.
11585 (package-menu--generate): New arg specifying packages to show.
11586 (package-menu-refresh, package-menu-execute, list-packages):
11587 Callers changed.
11588 (package-show-package-list): New function, replacing deleted
11589 package--list-packages (renamed because it is non-internal).
11590
11591 * finder.el (finder-list-matches): Use package-show-package-list
11592 instead of deleted package--list-packages.
11593
e92f3bd3
SM
11594 * vc/vc-annotate.el (vc-annotate-goto-line): New command.
11595 Based on a previous implementation by Juanma Barranquero (Bug#8366).
3ba7869c
CY
11596 (vc-annotate-mode-map): Bind it to RET.
11597
7031be6d
UR
115982011-04-24 Uday S Reddy <u.s.reddy@cs.bham.ac.uk> (tiny change)
11599
11600 * progmodes/etags.el (next-file): Don't use set-buffer to change
11601 buffers (Bug#8478).
11602
4ef177aa
CY
116032011-04-24 Chong Yidong <cyd@stupidchicken.com>
11604
c8d173eb
CY
11605 * files.el (auto-mode-alist): Use js-mode for .json (Bug#8529).
11606
4ef177aa
CY
11607 * apropos.el (apropos-label-face): Avoid variable-pitch face.
11608 (apropos-accumulator): Doc fix.
11609 (apropos-function, apropos-macro, apropos-command)
11610 (apropos-variable, apropos-face, apropos-group, apropos-widget)
11611 (apropos-plist): Add face property.
11612 (apropos-symbols-internal): Fix indentation.
11613 (apropos-print): Simplify help, and recognize apropos-multi-type.
11614 (apropos-print-doc): Use button-type-get to extract the button's
11615 face property. Fill docstring (Bug#8352).
11616
4ffd0d6b 116172011-04-23 Juanma Barranquero <lekktu@gmail.com>
be71f810
JB
11618
11619 * buff-menu.el (Buffer-menu--buffers): Fix typo in docstring (bug#8535).
11620
c6c32125 11621 * play/mpuz.el (mpuz-silent): Doc fix.
4ffd0d6b 11622 (mpuz-mode-map): Use mapc.
c6c32125
JB
11623 (mpuz-put-number-on-board): Rename parameter L to COLUMNS.
11624 (mpuz-letter-to-digit, mpuz-check-all-solved, mpuz-create-buffer):
11625 Fix typos in docstrings.
11626
58d468b4
JB
11627 * play/doctor.el (doc$, doctor-$, doctor-read-print, doctor-read-token)
11628 (doctor-nounp, doctor-pronounp): Fix typos in docstrings.
11629
6470c3c6
JB
11630 * mouse-drag.el (mouse-drag-throw): Fix typo in docstring.
11631
4ffd0d6b 116322011-04-23 Chong Yidong <cyd@stupidchicken.com>
6f21a319
CY
11633
11634 * minibuffer.el (completion--do-completion): Avoid the "Next char
11635 not unique" prompt if icomplete-mode is enabled (Bug#5849).
11636
3ad8bad0
CY
11637 * mouse.el (mouse-drag-mode-line-1): Make sure that if we push
11638 mouse-2 into unread-command-events, it is interpreted correctly.
11639
71d73c9c 11640 * image-mode.el (image-type, image-mode-map, image-minor-mode-map)
6395aab9 11641 (image-toggle-display): Doc fix.
71d73c9c 11642
841a1577 116432011-04-23 Stephen Berman <stephen.berman@gmx.net>
e935c6a2 11644
4ffd0d6b
GM
11645 * textmodes/page.el (what-page): Use line-number-at-pos to
11646 calculate line number (Bug#6825).
6e1dbaa9 11647
c2fb1b60
JB
116482011-04-22 Juanma Barranquero <lekktu@gmail.com>
11649
11650 * eshell/esh-mode.el (find-tag-interactive): Declare function.
11651 (eshell-find-tag): Remove `with-no-warnings', unneeded now.
11652 Pass argument NO-DEFAULT to `find-tag-interactive'.
11653
e02f48d7
JB
116542011-04-22 Juanma Barranquero <lekktu@gmail.com>
11655
11656 Lexical-binding cleanup.
11657
11658 * progmodes/ada-mode.el (ada-after-change-function, ada-loose-case-word)
11659 (ada-no-auto-case, ada-capitalize-word, ada-untab, ada-narrow-to-defun):
11660 * progmodes/ada-prj.el (ada-prj-initialize-values)
11661 (ada-prj-display-page, ada-prj-field-modified, ada-prj-display-help)
11662 (ada-prj-show-value):
11663 * progmodes/ada-xref.el (ada-find-any-references, ada-gdb-application):
11664 * progmodes/antlr-mode.el (antlr-with-displaying-help-buffer)
11665 (antlr-invalidate-context-cache, antlr-options-menu-filter)
11666 (antlr-language-option-extra, antlr-c++-mode-extra, antlr-run-tool):
11667 * progmodes/bug-reference.el (bug-reference-push-button):
11668 * progmodes/fortran.el (fortran-line-length):
11669 * progmodes/glasses.el (glasses-change):
11670 * progmodes/octave-mod.el (octave-fill-paragraph):
11671 * progmodes/python.el (python-mode, python-pdbtrack-track-stack-file)
11672 (python-pdbtrack-grub-for-buffer, python-sentinel):
11673 * progmodes/sql.el (sql-save-connection):
11674 * progmodes/tcl.el (tcl-indent-command, tcl-popup-menu):
11675 * progmodes/xscheme.el (xscheme-enter-debugger-mode):
11676 Mark unused parameters.
11677
11678 * progmodes/compile.el (compilation--flush-directory-cache)
11679 (compilation--flush-parse, compile-internal): Mark unused parameters.
11680 (compilation-buffer-name): Rename parameter MODE-NAME to NAME-OF-MODE.
11681 (compilation-next-error-function): Remove unused variable `timestamp'.
11682
11683 * progmodes/cpp.el (cpp-parse-close): Remove unused variable `begin'.
11684 (cpp-signal-read-only, cpp-grow-overlay): Mark unused parameters.
11685
11686 * progmodes/dcl-mode.el (dcl-end-of-command):
11687 Remove unused variable `start'.
11688 (dcl-calc-command-indent-multiple, dcl-calc-cont-indent-relative)
11689 (dcl-option-value-basic, dcl-option-value-offset)
11690 (dcl-option-value-margin-offset, dcl-option-value-comment-line):
11691 Mark unused parameters.
11692 (dcl-save-local-variable): Remove unused variable `val'.
11693 (mode): Declare.
11694
11695 * progmodes/delphi.el (delphi-save-state, delphi-after-change):
11696 Mark unused parameters.
11697 (delphi-ignore-changes): Move before first use.
11698 (delphi-charset-token-at): Remove unused variable `start'.
11699 (delphi-else-start): Remove unused variable `if-count'.
11700 (delphi-comment-block-start, delphi-comment-block-end):
11701 Remove unused variable `kind'.
11702 (delphi-indent-line): Remove unused variable `new-point'.
11703
11704 * progmodes/ebrowse.el (ebrowse-files-list)
11705 (ebrowse-list-of-matching-members, ebrowse-tags-list-members-in-file):
11706 Mark unused parameters. Don't quote `lambda'.
11707 (ebrowse-sort-tree-list, ebrowse-same-tree-member-buffer-list):
11708 Don't quote `lambda'.
11709 (ebrowse-revert-tree-buffer-from-file, ebrowse-tags-choose-class)
11710 (ebrowse-goto-visible-member/all-member-lists): Mark unused parameters.
11711 (ebrowse-create-tree-buffer): Rename parameter OBARRAY to CLASSES.
11712 (ebrowse-toggle-mark-at-point): Remove unused variable `pnt'.
11713 Use `ignore-errors'.
11714 (ebrowse-frozen-tree-buffer-name, ebrowse-find-source-file)
11715 (ebrowse-view/find-file-and-search-pattern)
11716 (ebrowse-view/find-member-declaration/definition):
11717 Rename parameter TAGS-FILE-NAME to TAGS-FILE.
11718 (ebrowse-find-class-declaration, ebrowse-view-class-declaration):
11719 Rename parameter PREFIX-ARG to PREFIX.
11720 (ebrowse-tags-read-name): Remove unused variables `start' and
11721 `member-info'.
11722 (ebrowse-display-member-buffer): Rename variable `tags-file-name'
11723 to `tags-file'.
11724
11725 * progmodes/etags.el (local-find-tag-hook): Declare.
11726 (tag-partial-file-name-match-p, tag-any-match-p, list-tags):
11727 Mark unused parameters.
11728
11729 * progmodes/executable.el (compilation-error-regexp-alist): Declare.
11730 (executable-interpret): Mark unused parameter.
11731
11732 * progmodes/flymake.el (flymake-process-sentinel)
11733 (flymake-after-change-function)
11734 (flymake-create-temp-with-folder-structure)
11735 (flymake-get-include-dirs-dot): Mark unused parameters.
11736 (flymake-safe-delete-directory): Remove unused variable `err'.
11737
11738 * progmodes/gdb-mi.el (speedbar-change-initial-expansion-list)
11739 (speedbar-timer-fn, speedbar-line-text)
11740 (speedbar-change-expand-button-char, speedbar-delete-subblock)
11741 (speedbar-center-buffer-smartly): Declare functions.
11742 (gdb-find-watch-expression): Remove unused variable `array'.
11743 (gdb-edit-value, gdb-gdb, gdb-ignored-notification, gdb-thread-created)
11744 (gdb-starting): Mark unused parameters.
11745 (gud-gdbmi-marker-filter): Remove unused variable `output-record'.
11746 (gdb-table-string): Remove unused variable `res'.
11747 (gdb-place-breakpoints): Remove unused variables `flag' and `bptno'.
11748 (gdb-disassembly-handler-custom): Remove unused variable `pos'.
11749 (gdb-display-buffer): Remove unused variable `cur-size'.
11750
11751 * progmodes/gud.el (gud-def): Use `defalias' instead of `defun' to
11752 allow lexical-binding compilation.
11753 (gud-expansion-speedbar-buttons, gud-gdb-goto-stackframe)
11754 (gud-dbx-massage-args, gud-xdb-massage-args, gud-perldb-massage-args)
11755 (gud-jdb-massage-args, gud-jdb-find-source, gud-find-class):
11756 Mark unused parameters.
11757 (gud-gdb-marker-filter): Remove unused variable `match'.
11758 (gud-find-class): Bind `syntax-symbol' and `syntax-point' to suitable
11759 lambda expressions and funcall them, instead of using `fset'.
11760
11761 * progmodes/hideif.el (hif-parse-if-exp): Rename parameter
11762 HIF-TOKEN-LIST to TOKEN-LIST and let-bind `hif-token-list'.
11763
11764 * progmodes/hideshow.el (hs-hide-block-at-point): Remove unused
11765 variable `header-beg'; use `let'.
11766
11767 * progmodes/icon.el (indent-icon-exp): Remove unused variables
11768 `restart', `last-sexp' and `at-do'.
11769
11770 * progmodes/js.el (js--debug): Mark unused parameter.
11771 (js--parse-state-at-point): Remove unused variable `bound'; use `let'.
11772 (js--splice-into-items): Remove unused variable `item'.
11773 (js--read-symbol, js--read-tab): Pass 1/-1 to `ido-mode', not t/nil.
11774
11775 * progmodes/make-mode.el (makefile-make-font-lock-keywords):
11776 Rename parameter FONT-LOCK-KEYWORDS to FL-KEYWORDS.
11777 (makefile-complete): Remove unused variable `try'.
11778 (makefile-fill-paragraph, makefile-match-function-end):
11779 Mark unused parameters.
11780
11781 * progmodes/octave-inf.el (inferior-octave-complete):
11782 Remove unused variable `proc'.
11783 (inferior-octave-output-digest): Mark unused parameter.
11784
11785 * progmodes/perl-mode.el (perl-calculate-indent):
11786 Remove unused variable `err'.
11787
11788 * progmodes/prolog.el (prolog-mode-keybindings-inferior)
11789 (prolog-indent-line): Mark unused parameters.
11790 (prolog-indent-line): Remove unused variable `beg'.
11791
11792 * progmodes/ps-mode.el (reporter-prompt-for-summary-p)
11793 (reporter-dont-compact-list): Declare.
11794
11795 * progmodes/sh-script.el (sh-font-lock-quoted-subshell):
11796 Remove unused variable `char'.
11797 (sh-debug): Mark unused parameter.
11798 (sh-get-indent-info): Remove unused variable `start'.
11799 (sh-calculate-indent): Remove unused variable `var'.
11800
11801 * progmodes/simula.el (simula-popup-menu): Mark unused parameter.
11802 (simula-electric-keyword): Remove unused variable `null'.
11803 (simula-search-backward, simula-search-forward): Remove unused
11804 variables `begin' and `end'.
11805
11806 * progmodes/vera-mode.el (vera-guess-basic-syntax):
11807 Remove unused variable `pos'.
11808 (vera-electric-tab, vera-comment-uncomment-region):
11809 Mark unused parameters.
11810 (vera-electric-tab): Rename parameter PREFIX-ARG to PREFIX.
11811
7ede3b65
CY
118122011-04-22 Chong Yidong <cyd@stupidchicken.com>
11813
11814 * emacs-lisp/package.el (package--builtins, package-alist)
11815 (package-load-descriptor, package-built-in-p, package-activate)
11816 (define-package, package-installed-p)
11817 (package-compute-transaction, package-buffer-info)
11818 (package--push): Doc fix. Distinguish more clearly between
11819 version strings and version lists.
11820
121656e9
JB
118212011-04-21 Juanma Barranquero <lekktu@gmail.com>
11822
11823 Lexical-binding cleanup.
11824
11825 * play/5x5.el (5x5-make-random-solution, 5x5-make-mutate-current)
11826 (5x5-make-mutate-best):
11827 * play/fortune.el (fortune-in-buffer):
11828 * play/gomoku.el (gomoku-init-display):
11829 * play/solitaire.el (solitaire, solitaire-do-check):
11830 * play/tetris.el (tetris-default-update-speed-function):
11831 Mark unused parameters.
11832
11833 * play/bubbles.el (bubbles-mode): Set `show-trailing-whitespace'.
11834 (bubbles--shift): Remove unused variable `char-org'.
11835 (bubbles--set-faces): Remove unused variable `fg-col'. Simplify.
11836 (bubbles--show-images): Remove unused variable `char'.
11837
11838 * play/decipher.el (decipher-keypress, decipher-alphabet-keypress)
11839 (decipher-get-undo, decipher-set-map, decipher-complete-alphabet)
11840 (decipher-resync, decipher-loop-with-breaks, decipher--analyze)
11841 (decipher-analyze-buffer): Use ?\s.
11842 (decipher-make-checkpoint): Remove unused variable `mapping'.
11843
11844 * play/doctor.el (doctor-doc): Rename parameter DOCTOR-SENT to SENT.
11845
11846 * play/gamegrid.el (gamegrid-add-score-with-update-game-score):
11847 Remove unused variable `result'; use `let'.
11848
11849 * play/gametree.el (gametree-current-layout, gametree-apply-layout):
11850 Rename parameter TOP-LEVEL to FROM-TOP-LEVEL; use `ignore-errors'.
11851 (gametree-children-shown-p, gametree-compute-reduced-score):
11852 Use `ignore-errors'.
11853
11854 * play/handwrite.el (ps-lpr-switches): Declare.
11855 (handwrite): Remove unused variables `pmin' and `lastp'.
11856
11857 * play/hanoi.el (hanoi-move-ring): Remove unused variable `total-steps'.
11858
11859 * play/landmark.el (landmark-init-display)
11860 (landmark-update-naught-weights): Mark unused parameters.
11861 (landmark-y): Remove unused variable `noise'. Simplify.
11862 (landmark-human-plays): Remove unused variable `score'.
11863
11864 * play/mpuz.el (mpuz-try-letter): Remove unused variable `message'.
11865 (mpuz-try-proposal): Remove unused variable `game'.
11866
11867 * play/zone.el (life-patterns): Declare.
11868
80f499c7
JB
118692011-04-20 Juanma Barranquero <lekktu@gmail.com>
11870
11871 * vc/vc.el (ediff-vc-internal): Declare function.
11872
024ff170
SM
118732011-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
11874
c0a193ea
SM
11875 * shell.el: Use lexical-binding and std completion UI.
11876 (shell-filter-ctrl-a-ctrl-b): Work as a preoutput filter.
11877 (shell-mode): Put shell-filter-ctrl-a-ctrl-b on
11878 comint-preoutput-filter-functions rather than on
11879 comint-output-filter-functions.
11880 (shell-command-completion, shell--command-completion-data)
11881 (shell-filename-completion, shell-environment-variable-completion)
11882 (shell-c-a-p-replace-by-expanded-directory): New functions.
11883 (shell-dynamic-complete-functions, shell-dynamic-complete-command)
11884 (shell-dynamic-complete-filename, shell-replace-by-expanded-directory)
11885 (shell-dynamic-complete-environment-variable): Use them.
11886 (shell-dynamic-complete-as-environment-variable)
11887 (shell-dynamic-complete-as-command): Remove.
11888 (shell-match-partial-variable): Match past point.
11889 * comint.el: Clean up use of completion-at-point-functions.
11890 (comint-completion-at-point): New function.
11891 (comint-mode): Use it completion-at-point-functions.
11892 (comint-dynamic-complete): Make it obsolete.
11893 (comint-replace-by-expanded-history-before-point): Add dry-run arg.
11894 (comint-c-a-p-replace-by-expanded-history): New function.
11895 (comint-dynamic-complete-functions)
11896 (comint-replace-by-expanded-history): Use it.
11897 * minibuffer.el (completion-table-with-terminator): Allow dynamic
11898 termination strings. Try harder to avoid second try-completion.
11899 (completion-in-region-mode-map): Disable bindings that don't work yet.
11900
2dbaa080
SM
11901 * comint.el: Use lexical-binding. Require CL.
11902 (comint-dynamic-complete-functions): Use comint-filename-completion.
11903 (comint-completion-addsuffix): Tweak custom type.
11904 (comint-filename-completion, comint--common-suffix)
11905 (comint--common-quoted-suffix, comint--table-subvert)
11906 (comint--complete-file-name-data): New functions.
11907 (comint-dynamic-complete-as-filename, comint-dynamic-complete-filename)
11908 (comint-dynamic-list-filename-completions): Use them.
11909 (comint-dynamic-simple-complete): Make obsolete.
c0a193ea 11910
2dbaa080
SM
11911 * minibuffer.el (completion-in-region-mode):
11912 Keep completion-in-region-mode--predicate global.
11913 (completion-in-region--postch):
11914 Assume completion-in-region-mode--predicate is not null.
11915
c79a6f38
SM
11916 * progmodes/flymake.el (flymake-start-syntax-check-process):
11917 Obey `dir'. Simplify.
11918
024ff170
SM
11919 * vc/vc.el (vc-version-ediff): Call ediff-vc-internal directly, since
11920 we're in VC after all.
11921
1c6c854e
CS
119222011-04-20 Christoph Scholtes <cschol2112@googlemail.com>
11923
11924 * vc/vc.el (vc-diff-build-argument-list-internal)
024ff170 11925 (vc-version-ediff, vc-ediff): New commands.
1c6c854e
CS
11926 (vc-version-diff): Use vc-diff-build-argument-list-internal.
11927
bed7f140
SM
119282011-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
11929
332e62ab
SM
11930 * emacs-lisp/byte-opt.el (byte-decompile-bytecode-1): Remove dead code,
11931 add sanity check.
11932
bed7f140
SM
11933 * obsolete/erc-hecomplete.el: Make obsolete.
11934 * obsolete/: Standardize obsolescence info in the header.
11935
f195c582
GM
119362011-04-20 Glenn Morris <rgm@gnu.org>
11937
11938 * calendar/solar.el (solar-horizontal-coordinates):
11939 Use the longitude argument rather than `calendar-longitude'.
11940 (solar-date-next-longitude): Remove unused locals.
11941
cb79b8c0
VJL
119422011-04-20 Vinicius Jose Latorre <viniciusjl@ig.com.br>
11943
11944 * whitespace.el: New version 13.2.1.
11945
119462011-04-20 felix <EmacsWiki> (tiny change)
11947
d8e4b68b 11948 * whitespace.el (global-whitespace-mode): Keep highlight when
cb79b8c0
VJL
11949 switching between major modes on a file.
11950
602ea69d
SM
119512011-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
11952
11953 * progmodes/octave-mod.el (octave-in-comment-p, octave-in-string-p)
11954 (octave-not-in-string-or-comment-p): Use syntax-ppss so it works with
11955 multi-line comments as well.
11956
06b60517
JB
119572011-04-19 Juanma Barranquero <lekktu@gmail.com>
11958
11959 Lexical-binding cleanup.
11960
11961 * arc-mode.el (archive-mode-revert):
11962 * cmuscheme.el (scheme-interactively-start-process):
11963 * custom.el (custom-initialize-delay):
11964 * dnd.el (dnd-open-local-file, dnd-open-remote-url):
11965 * dos-w32.el (direct-print-region-helper, direct-print-region-function):
11966 * emacs-lock.el (emacs-lock-clear-sentinel):
11967 * ezimage.el (defezimage):
11968 * follow.el (follow-avoid-tail-recenter):
11969 * fringe.el (set-fringe-mode-1):
11970 * generic-x.el (bat-generic-mode-compile):
11971 * help-mode.el (help-info-variable, help-do-xref)
11972 (help-mode-revert-buffer):
11973 * help.el (view-emacs-todo):
11974 * iswitchb.el (iswitchb-completion-help):
11975 * jka-compr.el (jka-compr-make-temp-name, jka-compr-load):
11976 * kmacro.el (kmacro-cycle-ring-next, kmacro-cycle-ring-previous)
11977 (kmacro-delete-ring-head, kmacro-bind-to-key, kmacro-view-macro):
11978 * locate.el (locate-update):
11979 * longlines.el (longlines-encode-region)
11980 (longlines-after-change-function):
11981 * outline.el (outline-isearch-open-invisible):
11982 * ps-def.el (declare-function, charset-dimension, char-width)
11983 (encode-char):
11984 * ps-mule.el (ps-mule-plot-string):
11985 * recentf.el (recentf-make-menu-items, recentf-cancel-dialog)
11986 (recentf-edit-list-select, recentf-edit-list-validate)
11987 (recentf-open-files-action):
11988 * rect.el (delete-whitespace-rectangle-line)
11989 (rectangle-number-line-callback):
11990 * register.el (window-configuration-to-register)
11991 (frame-configuration-to-register):
11992 * scroll-bar.el (scroll-bar-mode, toggle-horizontal-scroll-bar):
11993 * select.el (xselect-convert-to-string, xselect-convert-to-length)
11994 (xselect-convert-to-targets, xselect-convert-to-delete)
11995 (xselect-convert-to-filename, xselect-convert-to-charpos)
11996 (xselect-convert-to-lineno, xselect-convert-to-colno)
11997 (xselect-convert-to-os, xselect-convert-to-host)
11998 (xselect-convert-to-user, xselect-convert-to-class)
11999 (xselect-convert-to-name, xselect-convert-to-integer)
12000 (xselect-convert-to-atom, xselect-convert-to-identity):
12001 * subr.el (declare, ignore, process-kill-without-query)
12002 (text-clone-maintain):
12003 * terminal.el (te-get-char, te-tic-sentinel):
12004 * tool-bar.el (tool-bar-make-keymap):
12005 * tooltip.el (tooltip-timeout, tooltip-hide, tooltip-help-tips):
12006 * type-break.el (type-break-mode, type-break-noninteractive-query):
12007 * view.el (View-back-to-mark):
12008 * wid-browse.el (widget-browse-action, widget-browse-widget)
12009 (widget-browse-widgets, widget-browse-sexp):
12010 * widget.el (define-widget-keywords):
12011 * xt-mouse.el (xterm-mouse-translate, turn-off-xterm-mouse-tracking):
12012 Mark unused parameters.
12013
12014 * align.el (align-adjust-col-for-rule): Mark unused parameter.
12015 (align-areas): Remove unused variable `look'.
12016 (align-region): Remove unused variables `real-end' and `pos-list'.
12017
12018 * apropos.el (apropos-score-doc): Remove unused variable `i'.
12019
12020 * bindings.el (mode-line-modified, mode-line-remote):
12021 Mark unused parameters.
12022 (mode-line-mule-info): Mark unused parameter; don't quote `lambda'.
12023
12024 * buff-menu.el (Buffer-menu-revert-function): Mark unused parameters.
12025 (Buffer-menu-mode): Mark unused parameter; don't quote `lambda'.
12026
12027 * comint.el (comint-history-isearch-pop-state)
12028 (comint-postoutput-scroll-to-bottom, comint-truncate-buffer)
12029 (comint-strip-ctrl-m, comint-read-noecho): Mark unused parameters.
12030 (comint-substitute-in-file-name): Doc fix.
12031
12032 * completion.el (cmpl-statistics-block): Mark unused parameter.
12033 (add-completions-from-tags-table, add-completions-from-lisp-buffer)
12034 (save-completions-to-file, load-completions-from-file):
12035 Remove unused local variable `e'.
12036
12037 * composite.el (compose-chars): Remove unused variable `len'.
12038 (lgstring-insert-glyph): Remove unused variable `g'.
12039 (compose-glyph-string): Remove unused variables `ascent',
12040 `descent', `lbearing' and `rbearing'.
12041 (compose-glyph-string-relative): Remove unused variables
12042 `lbearing', `rbearing' and `wadjust'.
12043 (compose-gstring-for-graphic): Remove unused variables `header',
12044 `wadjust', `xoff' and `yoff'. Use `let', not `let*'.
12045 (compose-gstring-for-terminal): Remove unused variables `header'
12046 and `nchars'. Use `let', not `let*'.
12047
12048 * cus-edit.el (Custom-set, Custom-save, custom-reset)
12049 (Custom-reset-current, Custom-reset-saved, Custom-reset-standard)
12050 (Custom-buffer-done, custom-buffer-create-internal)
12051 (custom-browse-visibility-action, custom-browse-group-tag-action)
12052 (custom-browse-variable-tag-action, custom-browse-face-tag-action)
12053 (widget-magic-mouse-down-action, custom-toggle-parent)
12054 (custom-add-parent-links, custom-toggle-hide-variable)
12055 (custom-face-edit-value-visibility-action, custom-face-edit-fix-value)
12056 (custom-toggle-hide-face, face, hook, custom-group-link-action)
12057 (custom-face-menu-create, custom-variable-menu-create, get)
12058 (custom-group-menu-create, Custom-no-edit): Mark unused parameters.
12059 (custom-reset-standard-save-and-update): Remove unused variable `value'.
12060 (customize-apropos): Remove unused variable `tests'.
12061 (custom-group-value-create): Remove unused variable `hidden-p'.
12062 (sort-fold-case): Declare.
12063
12064 * cus-theme.el (custom-reset-standard-faces-list)
12065 (custom-reset-standard-variables-list): Declare.
12066 (customize-create-theme, custom-theme-revert, custom-theme-write)
12067 (custom-theme-choose-mode, customize-themes, custom-theme-save):
12068 Mark unused parameters.
12069
12070 * dabbrev.el (dabbrev-completion): Remove unused variable `init'.
12071
12072 * delim-col.el (delimit-columns-max): Move defvar before first use.
12073
12074 * descr-text.el (describe-char-categories): Don't quote `lambda'.
bd0d2ee2 12075 (describe-char): Don't quote `lambda'. Mark unused parameter.
06b60517
JB
12076
12077 * desktop.el (desktop-save-buffer-p): Mark unused parameter.
12078 (auto-insert): Declare.
12079 (desktop-restore-file-buffer): Rename desktop-* parameters;
12080 mark unused ones.
12081 (desktop-create-buffer): Rename desktop-* parameters and bind them.
12082 (desktop-buffer): Rename desktop-* parameters.
12083
12084 * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape): Declare.
12085 (dframe-reposition-frame-xemacs, dframe-help-echo)
12086 (dframe-hack-buffer-menu, dframe-set-timer, dframe-set-timer-internal):
12087 Mark unused parameters.
12088
12089 * dired-aux.el (backup-extract-version-start, overwrite-query)
12090 (overwrite-backup-query, rename-regexp-query)
12091 (rename-non-directory-query): Declare.
12092 (dired-shell-stuff-it, dired-do-create-files): Mark unused parameters.
12093 (dired-add-entry): Remove unused variable `orig-file-name'.
12094 (dired-copy-file-recursive): Remove unused variable `dirfailed'.
12095 Use parameter PRESERVE-TIME instead of accessing dynamic variable
12096 `dired-copy-preserve-time' directly.
12097 (dired-do-create-files-regexp): Remove unused variable `fn-count'.
12098 (dired-insert-subdir-newpos): Rename unused variable `pos'.
12099
12100 * dired-x.el (dired-omit-size-limit): Move defcustom before first use.
12101 (dired-virtual-revert, dired-make-relative-symlink):
12102 Mark unused parameters.
12103 (manual-program): Declare.
12104 (dired-x-hands-off-my-keys): Rename parameters of lambda expression.
12105 (inode, s, mode, nlink, uid, gid, size, time, name, sym): Declare them,
12106 wrapped in `with-no-warnings' to avoid replacing one warning by another.
12107
12108 * dirtrack.el (dirtrack): Remove unused variable `multi-line'.
12109
12110 * dos-fns.el (dos-8+3-filename): Remove unused variable `i'.
12111
12112 * echistory.el (electric-history-in-progress, Helper-return-blurb):
12113 Declare.
12114
12115 * edmacro.el (edmacro-finish-edit): Remove unused variable `kmacro'.
12116
12117 * electric.el (Electric-command-loop): Rename parameter
12118 INHIBIT-QUIT to INHIBIT-QUITTING and bind `inhibit-quit'.
12119
12120 * expand.el (expand-in-literal): Remove unused variable `here'.
12121
12122 * facemenu.el (facemenu-add-new-color):
12123 Remove unused variable `docstring'.
12124
12125 * faces.el (face-id, make-face-bold, make-face-unbold, make-face-italic)
12126 (make-face-unitalic, make-face-bold-italic): Mark unused parameters.
12127 (face-attr-construct): Mark unused parameter. Doc fix.
12128 (read-color): Remove unused variable `hex-string'.
12129
12130 * files.el (parse-colon-path): Rename argument CD-PATH to SEARCH-PATH.
12131 (locate-dominating-file): Remove unused vars `prev-file' and `user'.
12132 (remote-file-name-inhibit-cache, revert-buffer): Clean up docstrings.
12133 (display-buffer-other-frame): Remove unused variable `old-window'.
12134 (kill-buffer-hook): Declare.
12135 (insert-file-contents-literally, set-auto-mode, risky-local-variable-p):
12136 Mark unused parameters.
12137 (after-find-file): Pass 1 to `auto-save-mode', not t.
12138
12139 * files-x.el (auto-insert): Declare.
12140 (modify-file-local-variable-prop-line): Remove unused variable `val'.
12141
12142 * find-lisp.el (find-lisp-find-dired-internal): Remove unused
bd0d2ee2 12143 variable `buf'. Mark unused parameter.
06b60517
JB
12144 (find-lisp-insert-directory): Mark unused parameter.
12145
12146 * format.el (format-decode-run-method): Mark unused parameter; doc fix.
12147 (format-encode-region): Remove unused variables `cur-buf' and `result'.
12148 (format-common-tail): Remove, unused.
12149 (format-deannotate-region): Remove unused variable `loc'.
12150 (format-annotate-region): Remove unused variable `p'.
12151 (format-annotate-single-property-change): Remove unused variables
12152 `default' and `tail'.
12153
12154 * forms.el (read-file-filter): Declare.
12155 (forms--iif-hook, forms--revert-buffer): Mark unused parameters.
12156
12157 * frame.el (frame-creation-function-alist): Mark unused parameter.
12158 (frame-geom-spec-cons): Pass FRAME to `frame-geom-value-cons'.
12159
12160 * hilit-chg.el (hilit-chg-cust-fix-changes-face-list, hilit-chg-clear):
12161 Remove unused parameters.
12162 (hilit-chg-set-face-on-change): Remove unused variable `beg-decr'.
12163 (highlight-compare-with-file): Remove unused variable `buf-b-read-only'.
12164
12165 * htmlfontify.el (hfy-default-footer, hfy-decor, hfy-invisible)
12166 (hfy-parse-tags-buffer, hfy-prepare-index-i, hfy-prepare-index)
12167 (hfy-prepare-tag-map): Mark unused parameters.
12168 (htmlfontify-buffer): Use `called-interactively-p'.
12169
12170 * ibuf-ext.el (ibuffer-do-kill-lines, ibuffer-jump-to-buffer)
12171 (ibuffer-copy-filename-as-kill, ibuffer-mark-on-buffer)
12172 (ibuffer-do-occur): Mark unused parameters.
12173 (ibuffer-forward-next-marked): Remove unused variable `curmark'.
12174 (ibuffer-diff-buffer-with-file-1): Remove unused variable `proc'.
12175
12176 * ibuffer.el: Don't quote `lambda'.
12177 (ibuffer-count-marked-lines, ibuffer-count-deletion-lines)
12178 (ibuffer-unmark-all, ibuffer-toggle-marks, ibuffer-redisplay-engine):
12179 Mark unused parameters.
12180
12181 * ido.el (ido-mode, ido-wide-find-dir-or-delete-dir)
12182 (ido-completing-read): Mark unused parameters.
12183 (ido-copy-current-word): Mark unused parameters;
12184 remove unused variable `name'.
12185 (ido-sort-merged-list): Remove unused parameter `dirs'.
12186
12187 * ielm.el (ielm-input-sender): Mark unused parameter.
12188 (ielm-string, ielm-form, ielm-pos, ielm-result, ielm-error-type)
12189 (ielm-output, ielm-wbuf, ielm-pmark): Declare.
12190 (ielm-eval-input): Rename argument IELM-STRING to INPUT-STRING to keep
12191 `ielm-string' as a dynamic variable accessible from the IELM prompt.
12192 Bind `ielm-string' to INPUT-STRING. Remove unused variable `err'.
12193
12194 * image-dired.el (image-dired-display-thumbs): Remove unused
12195 variables `curr-file' and `count'.
12196 (image-dired-remove-tag): Remove unused variable `start'.
12197 (image-dired-tag-files, image-dired-create-thumbs): Remove unused
12198 variable `curr-file'
12199 (image-dired-rotate-original): Remove unused variable `temp-file'.
12200 (image-dired-mouse-select-thumbnail, image-dired-mouse-toggle-mark):
12201 Remove unused variable `file'.
12202 (image-dired-gallery-generate): Remove unused variable `curr'.
12203 (image-dired-dired-edit-comment-and-tags): Mark unused parameters.
12204
12205 * indent.el (tab-to-tab-stop): Remove unused variable `opoint'.
12206
12207 * info-xref.el (info-xref-goto-node-p): Remove unused variable `err'.
12208
12209 * informat.el (texinfo-command-start, texinfo-command-end): Declare.
12210
12211 * isearch.el (minibuffer-history-symbol): Declare.
12212 (isearch-edit-string): Remove unused variable `err'.
12213 (isearch-message-prefix, isearch-message-suffix):
12214 Mark unused parameters.
12215
12216 * ls-lisp.el (ls-lisp-insert-directory): Remove unused variable `fil'.
12217
12218 * macros.el (insert-kbd-macro): Remove unused variable `mods'.
12219
12220 * makesum.el (double-column): Remove unused variable `cnt'.
12221
12222 * misearch.el (multi-isearch-pop-state): Mark unused parameter.
12223 (ido-ignore-item-temp-list): Declare.
12224
12225 * mouse-drag.el (mouse-drag-throw): Remove unused variables
12226 `mouse-delta', `window-last-row', `mouse-col-delta', `window-last-col',
12227 `adjusted-mouse-col-delta' and `adjusted-mouse-delta'.
12228 (mouse-drag-drag): Remove unused variables `mouse-delta' and
12229 `mouse-col-delta'.
12230
12231 * mouse-sel.el (mouse-extend-internal):
12232 Remove unused variable `orig-window-frame'.
12233
12234 * pcomplete.el (pcomplete-args, pcomplete-begins, pcomplete-last)
12235 (pcomplete-index, pcomplete-stub, pcomplete-seen, pcomplete-norm-func):
12236 Move declarations before first use.
12237 (pcomplete-opt): Mark unused parameters; doc fix.
12238
12239 * proced.el (proced-revert): Mark unused parameter.
12240 (proced-send-signal): Remove unused variable `err'.
12241
12242 * ps-print.el (ps-print-preprint-region, ps-print-preprint):
12243 Rename parameter PREFIX-ARG to ARG.
12244 (ps-basic-plot-string, ps-basic-plot-whitespace):
12245 Mark unused parameters.
12246
12247 * replace.el (replace-count): Define.
12248 (occur-revert-function): Mark unused parameters.
12249 (ido-ignore-item-temp-list, isearch-error, isearch-forward)
12250 (isearch-case-fold-search, isearch-string): Declare.
12251 (occur-engine): Rename parameter CASE-FOLD-SEARCH to CASE-FOLD and
12252 bind `case-fold-search'. Remove unused variables `beg' and `end',
12253 and simplify.
12254 (replace-eval-replacement): Rename parameter REPLACE-COUNT to
12255 COUNT and bind `replace-count'.
12256 (replace-loop-through-replacements): Rename parameter REPLACE-COUNT
12257 to COUNT.
12258
12259 * savehist.el (print-readably, print-string-length): Declare.
12260
12261 * shadowfile.el (shadow-expand-cluster-in-file-name):
12262 Remove unused variable `cluster'.
12263 (shadow-copy-file): Remove unused variable `i'.
12264 (shadow-noquery, shadow-clusters, shadow-site-cluster)
12265 (shadow-parse-fullname, shadow-parse-name, shadow-define-cluster)
12266 (shadow-define-literal-group, shadow-define-regexp-group)
12267 (shadow-make-group, shadow-shadows-of): Clean up docstrings.
12268
12269 * shell.el (shell-filter-ctrl-a-ctrl-b): Mark unused parameter.
12270 (shell): Use `called-interactively-p'.
12271 (shell-directory-tracker): Remove unused variable `chdir-failure'.
12272
12273 * simple.el (compilation-context-lines, comint-file-name-quote-list)
12274 (comint-file-name-chars, comint-delimiter-argument-list): Declare.
12275 (delete-backward-char): Remove unused variable `ocol'.
12276 (minibuffer-avoid-prompt, minibuffer-history-isearch-pop-state)
12277 (line-move-1, event-apply-alt-modifier, event-apply-super-modifier)
12278 (event-apply-hyper-modifier, event-apply-shift-modifier)
12279 (event-apply-control-modifier, event-apply-meta-modifier):
12280 Mark unused parameters.
12281 (undo-make-selective-list): Remove duplicate variable `undo-elt'.
12282 (normal-erase-is-backspace-mode): Remove unused variable `old-state'.
12283
12284 * speedbar.el (speedbar-ignored-directory-expressions)
12285 (speedbar-supported-extension-expressions, speedbar-directory-buttons)
12286 (speedbar-find-file, speedbar-dir-follow)
12287 (speedbar-directory-buttons-follow, speedbar-tag-find)
12288 (speedbar-buffer-buttons, speedbar-buffer-buttons-temp)
12289 (speedbar-buffers-line-directory, speedbar-buffer-click):
12290 Mark unused parameters.
12291 (speedbar-tag-file): Remove unused variable `mode'.
12292 (speedbar-buffers-tail-notes): Remove unused variable `mod'; simplify.
12293
12294 * strokes.el (strokes-decode-buffer): Remove unused variable `ext'.
12295
12296 * talk.el (talk): Remove unused variable `display'.
12297
12298 * tar-mode.el (tar-subfile-save-buffer): Remove unused variable `name'.
12299 (tar-write-region-annotate): Mark unused parameter.
12300
12301 * time.el (now, time, load, mail, 24-hours, hour, 12-hours, am-pm)
12302 (minutes, seconds, time-zone, day, year, monthname, month, dayname):
12303 Declare them, wrapped in `with-no-warnings' to avoid replacing one
12304 warning by another.
12305
12306 * time-stamp.el (time-stamp-string-preprocess):
12307 Remove unused variable `require-padding'.
12308
12309 * tree-widget.el (widget-glyph-enable): Declare.
12310 (tree-widget-action): Mark unused parameter.
12311
12312 * w32-fns.el (x-get-selection): Mark unused parameter.
12313 (autoload-make-program, generated-autoload-file): Declare.
12314
12315 * wdired.el (wdired-revert): Mark unused parameters.
12316 (wdired-xcase-word): Remove unused variable `err'.
12317
12318 * whitespace.el (whitespace-buffer-changed): Mark unused parameters.
12319 (whitespace-help-scroll): Remove unused variable `data-help'.
12320
12321 * wid-edit.el (widget-mouse-help, widget-overlay-inactive)
12322 (widget-image-insert, widget-after-change, default)
12323 (widget-default-format-handler, widget-default-notify)
12324 (widget-default-prompt-value, widget-info-link-action)
12325 (widget-url-link-action, widget-function-link-action)
12326 (widget-variable-link-action, widget-file-link-action)
12327 (widget-emacs-library-link-action, widget-emacs-commentary-link-action)
12328 (widget-field-prompt-internal, widget-field-action, widget-field-match)
12329 (widget-choice-mouse-down-action, toggle, widget-radio-button-notify)
12330 (widget-insert-button-action, widget-delete-button-action, visibility)
12331 (widget-documentation-link-action, widget-documentation-string-action)
12332 (widget-const-prompt-value, widget-regexp-match, symbol)
12333 (widget-coding-system-prompt-value)
12334 (widget-key-sequence-value-to-external, sexp)
12335 (widget-sexp-value-to-internal, character, vector, cons)
12336 (widget-choice-prompt-value, widget-boolean-prompt-value)
12337 (widget-color--choose-action): Mark unused parameters.
12338 (widget-item-match-inline, widget-choice-match-inline)
12339 (widget-checklist-match, widget-checklist-match-inline)
12340 (widget-group-match): Rename parameter VALUES to VALS.
12341 (widget-field-value-set): Remove unused variable `size'.
12342 (widget-color-action): Remove unused variables `value' and `start'.
12343
12344 * windmove.el (windmove-wrap-loc-for-movement): Remove unused
bd0d2ee2 12345 variable `dir'. Doc fix.
06b60517
JB
12346 (windmove-find-other-window): Don't pass it.
12347
12348 * window.el (count-windows): Mark unused parameter.
12349 (bw-adjust-window): Remove unused variable `err'.
12350
12351 * woman.el (woman-file-name): Remove unused variable `default'.
12352 (woman-expand-directory-path): Rename parameters WOMAN-MANPATH and
12353 WOMAN-PATH to PATH-DIRS and PATH-REGEXPS, respectively.
12354 (global-font-lock-mode): Declare.
12355 (woman-decode-region): Mark unused parameter.
12356 (woman-get-tab-stop): Rename parameter TAB-STOP-LIST to TAB-STOPS.
12357
12358 * x-dnd.el (x-dnd-default-test-function, x-dnd-handle-old-kde)
12359 (x-dnd-handle-xdnd, x-dnd-handle-motif): Mark unused parameters.
12360 (x-dnd-handle-moz-url): Remove unused variable `title'.
12361 (x-dnd-handle-xdnd): Remove unused variables `x', `y' and `ret-action'.
12362
12363 * xml.el (xml-parse-tag, xml-parse-attlist):
12364 Remove unused variable `pos'.
12365
bc4f7f3d
GM
123662011-04-19 Glenn Morris <rgm@gnu.org>
12367
12368 * calendar/cal-tex.el (cal-tex-list-holidays, cal-tex-cursor-month)
12369 (cal-tex-cursor-week, cal-tex-cursor-week2, cal-tex-cursor-week-iso)
12370 (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
12371 (cal-tex-cursor-filofax-daily, cal-tex-mini-calendar)
12372 * calendar/cal-html.el (cal-html-insert-minical):
12373 * calendar/diary-lib.el (diary-list-entries-1, diary-list-entries)
12374 (calendar-mark-date-pattern):
12375 Prefix "unused" locals.
12376
12377 * calendar/cal-dst.el (dst-adjust-time): Remove never-implemented
12378 optional argument `style'.
12379
12380 * calendar/appt.el (appt-make-list):
12381 * calendar/cal-china.el (calendar-chinese-date-string):
12382 * calendar/cal-hebrew.el (calendar-hebrew-list-yahrzeits)
12383 (diary-hebrew-yahrzeit):
12384 * calendar/cal-tex.el (cal-tex-last-blank-p, cal-tex-cursor-week2):
12385 * calendar/calendar.el (calendar-generate-window):
12386 * calendar/time-date.el (time-to-days):
12387 Remove unused local variables.
12388
16a43933
CY
123892011-04-18 Chong Yidong <cyd@stupidchicken.com>
12390
12391 * emacs-lisp/tabulated-list.el (tabulated-list-mode): Use a custom
12392 glyphless-char-display table.
12393 (tabulated-list-glyphless-char-display): New var.
12394
7eed1860
SS
123952011-04-18 Sam Steingold <sds@gnu.org>
12396
12397 * vc/add-log.el (change-log-font-lock-keywords): Add "Thanks to"
12398 to acknowledgments.
12399
4d2d1ccd
GM
124002011-04-17 Glenn Morris <rgm@gnu.org>
12401
12402 * calendar/diary-lib.el (diary-sexp-entry):
12403 * calendar/holidays.el (holiday-sexp):
12404 Set debug-on-error rather than the removed stack-trace-on-error.
12405
239da61d
GM
124062011-04-16 Glenn Morris <rgm@gnu.org>
12407
12408 * progmodes/f90.el: Use lexical-binding.
12409 (f90-get-correct-indent): Remove unnecessary local variable `cont'.
12410
8b05752a
SM
124112011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
12412
daca8ba5
SM
12413 * mail/sendmail.el (mail-mode-map): Use completion-at-point.
12414 (mail-mode): Setup mailalias completion here instead.
12415 * mail/mailalias.el: Use lexical-binding.
12416 (pattern, mailalias-done): Declare dynamic.
12417 (mail-completion-at-point-function): New function, from mail-complete.
12418 (mail-complete): Use it.
12419 (mail-completion-expand): New function.
12420 (mail-get-names): Use it.
12421 (mail-directory, mail-directory-process, mail-directory-stream):
12422 Don't use `pattern' for lexically bound arg.
12423
6f542485
SM
12424 * emacs-lisp/lisp-mode.el (eval-defun-2): Use eval-sexp-add-defvars.
12425
037e7c3f
SM
12426 * htmlfontify.el (hfy-etags-cmd): Remove inoperant eval-and-compile.
12427 (hfy-e2x-etags-cmd, hfy-etags-cmd-alist-default)
12428 (hfy-etags-cmd-alist): Don't eval-and-compile any more.
12429
8b05752a
SM
12430 * emacs-lisp/bytecomp.el (byte-temp-output-buffer-show)
12431 (byte-save-window-excursion, byte-temp-output-buffer-setup)
12432 (byte-interactive-p): Define them again, for use when inlining
12433 old code.
12434
49093f60
JB
124352011-04-15 Juanma Barranquero <lekktu@gmail.com>
12436
12437 * loadup.el: Use `string-to-number', not `string-to-int'.
12438
b5b8e7de
SM
124392011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
12440
12441 * progmodes/gud.el (gud-gdb): Use completion-at-point instead of
12442 gud-gdb-complete-command.
12443 (gud-gdb-completions): New function, from gud-gdb-complete-command.
12444 (gud-gdb-completion-at-point): New function.
12445 (gud-gdb-completions): Remove.
12446
f42efeb5
MA
124472011-04-14 Michael Albinus <michael.albinus@gmx.de>
12448
49093f60
JB
12449 * net/tramp-sh.el (tramp-sh-handle-file-attributes): Handle the case
12450 when the scripts fail. Use `tramp-do-file-attributes-with-ls' then.
12451 (tramp-do-copy-or-rename-file-out-of-band): Do not check any longer
12452 whether `executable-find' is bound.
f42efeb5
MA
12453
12454 * net/tramp-smb.el (tramp-smb-handle-copy-file): Fix docstring.
12455
e240cc21
SM
124562011-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
12457
12458 * minibuffer.el (completion-in-region-mode-predicate)
12459 (completion-in-region-mode--predicate): New vars.
12460 (completion-in-region, completion-in-region--postch)
12461 (completion-in-region-mode): Use them.
12462 (completion--capf-wrapper): Also return the hook function.
12463 (completion-at-point, completion-help-at-point):
12464 Adjust and provide a predicate.
c2bd2ab0
SM
12465
12466 Preserve arg names for advice of subr and lexical functions (bug#8457).
12467 * help-fns.el (help-function-arglist): Consolidate the subr and
12468 new-byte-code cases. Add argument `preserve-names' to extract names
12469 from the docstring when needed.
12470 * emacs-lisp/advice.el (ad-define-subr-args, ad-undefine-subr-args)
12471 (ad-subr-args-defined-p, ad-get-subr-args, ad-subr-arglist): Remove.
12472 (ad-arglist): Use help-function-arglist's new arg.
12473 (ad-definition-type): Use cond.
12474
c183f693
JB
124752011-04-13 Juanma Barranquero <lekktu@gmail.com>
12476
06641a47
JB
12477 * autorevert.el (auto-revert-handler):
12478 Bind `remote-file-name-inhibit-cache', not `tramp-cache-inhibit-cache',
12479 which was removed in 2010-10-02T13:21:43Z!michael.albinus@gmx.de.
12480 Don't quote lambda.
12481
c183f693
JB
12482 * image-mode.el (image-transform-set-scale):
12483 Fix change in 2011-04-09T20:28:01Z!cyd@stupidchicken.com.
12484
1e3b6001
G
124852011-04-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
12486
12487 * net/network-stream.el (network-stream-open-starttls): Only do
e9fce1ac 12488 opportunistic STARTTLS upgrades if we have built-in GnuTLS support.
1e3b6001
G
12489 Upgrades via gnutls-cli are too slow to be done opportunistically.
12490
2d6af8dd
JB
124912011-04-12 Juanma Barranquero <lekktu@gmail.com>
12492
12493 * dframe.el (dframe-current-frame): Remove spurious quote.
12494
c0749a51
GM
124952011-04-12 Glenn Morris <rgm@gnu.org>
12496
088d0d61
GM
12497 * calendar/cal-tex.el (cal-tex-end-document):
12498 Try to automatically use latin1 input if needed.
12499
c0749a51
GM
12500 * calendar/cal-hebrew.el (diary-hebrew-rosh-hodesh):
12501 Don't try to cons a mark onto an empty element.
12502
5c90fde0
LL
125032011-04-11 Leo Liu <sdl.web@gmail.com>
12504
12505 * ido.el (ido-buffer-internal): Allow method 'kill for virtual
12506 buffers.
12507 (ido-kill-buffer-at-head): Support killing virtual buffers.
12508
369e974d
CY
125092011-04-10 Chong Yidong <cyd@stupidchicken.com>
12510
12511 * minibuffer.el (completion-show-inline-help): New var.
12512 (completion--do-completion, minibuffer-complete)
daca8ba5
SM
12513 (minibuffer-force-complete, minibuffer-complete-word):
12514 Inhibit minibuffer messages if completion-show-inline-help is nil.
369e974d
CY
12515
12516 * icomplete.el (icomplete-mode): Bind completion-show-inline-help
12517 to avoid interference from inline help (Bug#5849).
12518
37f1c930
LL
125192011-04-10 Leo Liu <sdl.web@gmail.com>
12520
099c39a4
JB
12521 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
12522 Fix typo.
37f1c930 12523
a32d4040
CY
125242011-04-09 Chong Yidong <cyd@stupidchicken.com>
12525
12526 * image-mode.el (image-toggle-display-image): Signal an error if
12527 not in Image mode.
12528 (image-transform-mode, image-transform-resize)
12529 (image-transform-set-rotation): Doc fix.
daca8ba5 12530 (image-transform-set-resize): Delete.
a32d4040
CY
12531 (image-transform-set-scale, image-transform-fit-to-height)
12532 (image-transform-fit-to-width): Handle image-toggle-display-image
12533 and image-transform-resize directly.
12534
099c39a4 125352011-04-08 Sho Nakatani <lay.sakura@gmail.com>
d7b89879
TH
12536
12537 * doc-view.el (doc-view-fit-width-to-window)
099c39a4
JB
12538 (doc-view-fit-height-to-window, doc-view-fit-page-to-window):
12539 New functions for fitting the shown image to the Emacs window size.
d7b89879
TH
12540 (doc-view-mode-map): Add bindings for the new functions.
12541
099c39a4 125422011-04-08 Juanma Barranquero <lekktu@gmail.com>
ddc20cdb 12543
4d61f28d 12544 * vc/vc-annotate.el (vc-annotate-show-log-revision-at-line):
ddc20cdb
JB
12545 Fix typo in docstring.
12546
3726838a
EZ
125472011-04-08 Eli Zaretskii <eliz@gnu.org>
12548
04f33f1e
EZ
12549 * files.el (file-size-human-readable): Produce one digit after
12550 decimal, like "ls -lh" does.
12551
12552 * ls-lisp.el (ls-lisp-format-file-size): Allow for 7 characters in
12553 the file size representation.
12554
3726838a
EZ
12555 * simple.el (list-processes): If async subprocesses are not
12556 available, error out with a clear error message.
12557
cbb59342
CY
125582011-04-08 Chong Yidong <cyd@stupidchicken.com>
12559
12560 * help.el (help-form-show): New function, to be called from C.
12561 Put help-form output in a buffer named differently than *Help*.
12562
e3971c44
EZ
125632011-04-08 Eli Zaretskii <eliz@gnu.org>
12564
12565 * files.el (file-size-human-readable): New function.
12566
12567 * ls-lisp.el (ls-lisp-format-file-size): Use it, instead of
12568 computing the representation inline. Don't require `cl'.
12569
12544bbe
GM
125702011-04-08 Glenn Morris <rgm@gnu.org>
12571
a1de6c6a
GM
12572 * man.el (Man-page-header-regexp): Solaris < 2.6 no longer supported.
12573
3c4671f4
GM
12574 * net/browse-url.el (browse-url-firefox):
12575 Test system-type, not system-configuration.
12576
b605679c
GM
12577 * vc/log-edit.el (log-edit-empty-buffer-p): New function.
12578 (log-edit-insert-cvs-template, log-edit-insert-cvs-rcstemplate):
12579 Use log-edit-empty-buffer-p. (Bug#7598)
12580
56442f0c
GM
12581 * net/rlogin.el (rlogin-process-connection-type): Simplify.
12582 (rlogin-mode-map): Initialize in the defvar.
12583 (rlogin): Use ignore-errors.
12584
12544bbe
GM
12585 * replace.el (occur-mode-map): Some fixes for menu items.
12586
eb237b0f
AH
125872011-04-07 Aaron S. Hawley <aaron.s.hawley@gmail.com>
12588
12589 * play/morse.el (denato-region): Handle varying case. (Bug#8386)
12590
7d668f2c
CY
125912011-04-06 Chong Yidong <cyd@stupidchicken.com>
12592
e67a13ab
CY
12593 * emacs-lisp/cconv.el (cconv--analyse-use): Ignore "ignored" when
12594 issuing unused warnings.
12595
12596 * emacs-lisp/tabulated-list.el (tabulated-list-print): Use lambda
12597 macro directly.
12598
7d668f2c
CY
12599 * simple.el: Lisp reimplement of list-processes. Based on an
12600 earlier reimplementation by Leo Liu, but using tabulated-list.el.
12601 (process-menu-mode): New major mode.
12602 (list-processes--refresh, list-processes):
12603 (process-menu-visit-buffer): New functions.
12604
12605 * files.el (save-buffers-kill-emacs): Don't assume any return
12606 value of list-processes, which is undocumented anyway.
12607
a83ec3c9
CY
126082011-04-06 Chong Yidong <cyd@stupidchicken.com>
12609
12610 * emacs-lisp/tabulated-list.el: New file.
12611
e91a96fe
CY
12612 * emacs-lisp/package.el: Use Tabulated List mode.
12613 (package-menu-mode-map): Inherit from tabulated-list-mode-map.
12614 (package-menu-mode): Derive from tabulated-list-mode. Set up the
12615 table format using Tabulated List mode variables.
12616 (package--push): New macro, replacing package-list-maybe-add.
12617 (package-menu--generate): Use package--push. Renamed from
12618 package--generate-package-list.
12619 (package-menu-refresh, list-packages): Use it.
daca8ba5 12620 (package-menu--print-info): Rename from package-print-package.
e91a96fe 12621 Return insertion data instead of inserting it directly.
099c39a4
JB
12622 (package-menu-describe-package, package-menu-execute):
12623 Use tabulated-list-get-id.
e91a96fe
CY
12624 (package-menu-mark-delete, package-menu-mark-install)
12625 (package-menu-mark-unmark, package-menu-backup-unmark)
099c39a4
JB
12626 (package-menu-mark-obsolete-for-deletion):
12627 Use tabulated-list-put-tag.
e91a96fe
CY
12628 (package--list-packages, package-menu-revert)
12629 (package-menu-get-package, package-menu-get-version)
12630 (package-menu-sort-by-column): Functions deleted.
12631 (package-menu-package-list, package-menu-sort-key): Vars deleted.
12632 (package-menu--status-predicate, package-menu--version-predicate)
12633 (package-menu--name-predicate)
12634 (package-menu--description-predicate): Handle arguments in the
12635 Tabulated List format.
12636 (package-list-packages-no-fetch): Call list-packages.
12637
3e214b50
JB
126382011-04-06 Juanma Barranquero <lekktu@gmail.com>
12639
12640 * files.el (after-find-file-from-revert-buffer): Remove variable.
c9d0ec6d 12641 (after-find-file): Don't bind it.
3e214b50
JB
12642 (revert-buffer-in-progress-p): New variable.
12643 (revert-buffer): Bind it.
12644 Pass nil for `after-find-file-from-revert-buffer'.
12645
12646 * saveplace.el (save-place-find-file-hook): Use new variable
12647 `rever-buffer-in-progress-p', not `after-find-file-from-revert-buffer'.
12648
3f0f1700
GM
126492011-04-06 Glenn Morris <rgm@gnu.org>
12650
c0274801
GM
12651 * Makefile.in (AUTOGEN_VCS): New variable.
12652 (autoloads): Use $AUTOGEN_VCS.
12653
3f0f1700
GM
12654 * calendar/cal-move.el (calendar-scroll-toolkit-scroll): New function.
12655 * calendar/calendar.el (calendar-mode-map):
12656 Check for toolkit scroll bars. (Bug#8305)
12657
41ea9e48
CY
126582011-04-05 Chong Yidong <cyd@stupidchicken.com>
12659
12660 * minibuffer.el (completion-in-region--postch)
12661 (completion-in-region-mode): Remove unnecessary messages.
12662
6194c800
JB
126632011-04-05 Juanma Barranquero <lekktu@gmail.com>
12664
33256f14
JB
12665 * font-lock.el (font-lock-refresh-defaults):
12666 Don't bind `hi-lock--inhibit-font-lock-hook', removed in
12667 2010-10-09T04:09:19Z!cyd@stupidchicken.com and 2010-10-11T23:57:49Z!lekktu@gmail.com (2010-10-12).
12668
6194c800
JB
12669 * info.el (Info-directory-list, Info-read-node-name-2)
12670 (Info-split-parameter-string): Doc fixes.
12671 (Info-virtual-nodes): Reflow docstring.
12672 (Info-find-file, Info-directory-toc-nodes, Info-history-toc-nodes)
12673 (Info-apropos-toc-nodes, info-finder, Info-get-token)
12674 (Info-find-emacs-command-nodes, Info-speedbar-key-map):
12675 Fix typos in docstrings.
12676 (Info-revert-buffer-function, Info-search, Info-isearch-pop-state)
12677 (Info-speedbar-hierarchy-buttons, Info-speedbar-goto-node)
12678 (Info-speedbar-buttons, Info-desktop-buffer-misc-data)
12679 (Info-restore-desktop-buffer): Mark unused parameters.
12680 (Info-directory-find-file, Info-directory-find-node)
12681 (Info-history-find-file, Info-history-find-node, Info-toc-find-node)
12682 (Info-virtual-index-find-node, Info-apropos-find-file)
12683 (Info-apropos-find-node, Info-finder-find-file, Info-finder-find-node):
33256f14 12684 Mark unused parameters; fix typos in docstrings.
6194c800
JB
12685 (Info-virtual-index): Remove unused local variable `nodename'.
12686
b87a8200 126872011-04-05 Deniz Dogan <deniz@dogan.se>
0f6ee7d2 12688
b87a8200
DD
12689 * net/rcirc.el: Update my e-mail address.
12690 (rcirc-mode-map): Remove M-o binding.
0f6ee7d2 12691
3b2ff876
CY
126922011-04-05 Chong Yidong <cyd@stupidchicken.com>
12693
12694 * startup.el (command-line): Save the cursor's theme-face
12695 directly, instead of using face-override-spec.
12696
12697 * custom.el (load-theme): Minor optimization in assigning faces.
12698
8d17e7ca
JB
126992011-04-04 Juanma Barranquero <lekktu@gmail.com>
12700
12701 * help-fns.el (describe-variable): Complete all variables having
12702 documentation, including keywords.
12703 http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00112.html
12704
2fbc1934
JB
127052011-04-04 Juanma Barranquero <lekktu@gmail.com>
12706
12707 Convert to lexical-binding.
12708
12709 * bs.el (bs-refresh, bs-sort-buffer-interns-are-last)
12710 (bs--get-marked-string, bs--get-modified-string)
12711 (bs--get-readonly-string, bs--get-size-string, bs--get-name)
12712 (bs--get-mode-name, bs--get-file-name): Mark unused arguments.
12713 (bs--configuration-name-for-prefix-arg): Rename argument PREFIX-ARG.
12714
12715 * ehelp.el (electric-help-execute-extended)
12716 (electric-help-ctrl-x-prefix):
12717 * hexl.el (hexl-revert-buffer-function):
12718 * linum.el (linum-after-change, linum-after-scroll):
12719 * emacs-lisp/re-builder.el (reb-auto-update): Mark unused arguments.
12720
12721 * help-fns.el (help-describe-category-set): Remove unused ERR variable.
12722
74f50695
DU
127232011-04-04 Daiki Ueno <ueno@unixuser.org>
12724
12725 * epa-dired.el:
12726 * epa-mail.el:
12727 * epa-hook.el:
12728 * epa-file.el:
12729 * epa.el:
12730 * epg.el: Use lexical binding.
12731
c11325f7
CY
127322011-04-03 Chong Yidong <cyd@stupidchicken.com>
12733
0d9e9a12
CY
12734 * dired-aux.el (dired-create-files): Add docstring (Bug#7970).
12735
c11325f7 12736 * textmodes/flyspell.el (flyspell-word): Recognize default
daca8ba5
SM
12737 dictionary case for flyspell-mark-duplications-exceptions.
12738 Use regexp matching for languages.
c11325f7
CY
12739 (flyspell-mark-duplications-exceptions): Add "that" and "had" for
12740 default dictionary (Bug#7926).
12741
da91b5f2
CY
127422011-04-02 Chong Yidong <cyd@stupidchicken.com>
12743
099c39a4
JB
12744 * emacs-lisp/package.el (package--with-work-buffer):
12745 Recognize https URLs.
da91b5f2 12746
099c39a4
JB
12747 * net/network-stream.el: Move from gnus/proto-stream.el.
12748 Change prefix to network-stream throughout.
da91b5f2
CY
12749 (open-protocol-stream): Merge into open-network-stream, leaving
12750 open-protocol-stream as an alias. Handle nil BUFFER args.
12751
12752 * subr.el (open-network-stream): Move to net/network-stream.el.
12753
afa8e9f6
GM
127542011-04-02 Glenn Morris <rgm@gnu.org>
12755
1d2e369d
GM
12756 * find-dired.el (find-exec-terminator): New option.
12757 (find-ls-option): Test for -ls support.
12758 (find-ls-subdir-switches): Test for -b in find-ls-option.
12759 (find-dired, find-grep-dired): Doc fixes.
12760 (find-dired): Use find-exec-terminator.
12761
8abb7da8 12762 * find-dired.el (find-ls-option, find-ls-subdir-switches)
e7a395b5
GM
12763 (find-grep-options): Do not autoload these defcustoms, remove purecopy.
12764 (find-name-arg): Remove purecopy.
8abb7da8 12765
f3ca7378
GM
12766 * progmodes/grep.el (grep-find-use-xargs): Doc fix.
12767 (grep-compute-defaults): Check for `-exec COMMAND +' support.
12768 Set grep-find-use-xargs, grep-find-command, and grep-find-template
12769 accordingly. Don't add the null-device if not needed.
12770
afa8e9f6
GM
12771 * files.el (save-some-buffers): Doc fix.
12772
35eae264
EZ
127732011-04-02 Eli Zaretskii <eliz@gnu.org>
12774
12775 * makefile.w32-in (EMACS): Default to ../src/$(BLD)/emacs.exe.
12776
26b51db5
JB
127772011-04-01 Juanma Barranquero <lekktu@gmail.com>
12778
12779 * progmodes/idlwave.el (idlwave-one-key-select, idlwave-list-abbrevs):
12780 Use `dolist' rather than `mapcar'.
12781
7200d79c
SM
127822011-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
12783
03408648 12784 Add lexical binding.
7200d79c 12785
03408648
SM
12786 * subr.el (apply-partially): Use new closures rather than CL.
12787 (--dolist-tail--, --dotimes-limit--): Don't declare dynamic.
12788 (dolist, dotimes): Use slightly different expansion for lexical code.
12789 (functionp): Move to C.
12790 (letrec): New macro.
12791 (with-wrapper-hook): Use it and apply-partially instead of CL.
12792 (eval-after-load): Preserve lexical-binding.
12793 (save-window-excursion, with-output-to-temp-buffer): Turn them
12794 into macros.
7200d79c 12795
03408648
SM
12796 * simple.el (with-wrapper-hook, apply-partially): Move to subr.el.
12797
12798 * help-fns.el (help-split-fundoc): Return nil if there's nothing else
12799 than the arglist.
12800 (help-add-fundoc-usage): Don't add `Not documented'.
12801 (help-function-arglist): Handle closures, subroutines, and new
12802 byte-code-functions.
12803 (help-make-usage): Remove leading underscores.
12804 (describe-function-1): Handle closures.
12805 (describe-variable): Use special-variable-p for completion.
12806
12807 * files.el (lexical-binding): Declare safe.
f488fb65 12808
03408648
SM
12809 * emacs-lisp/pcase.el: Don't use destructuring-bind.
12810 (pcase--memoize): Rename from pcase-memoize. Change weakness.
12811 (pcase): Add `let' pattern.
12812 Change memoization so it actually works.
12813 (pcase-mutually-exclusive-predicates): Add byte-code-function-p.
12814 (pcase--u1) <guard, pred>: Fix possible shadowing problem.
12815 <let>: New case.
f488fb65 12816
03408648
SM
12817 * emacs-lisp/macroexp.el: Use lexical binding.
12818 (macroexpand-all-1): Check obsolete macros. Expand compiler-macros.
12819 Don't convert ' to #' without checking that it's indeed quoting
12820 a lambda.
12821
12822 * emacs-lisp/lisp-mode.el (eval-last-sexp-1):
f488fb65 12823 Use eval-sexp-add-defvars.
03408648
SM
12824 (eval-sexp-add-defvars): New fun.
12825
12826 * emacs-lisp/float-sup.el (pi): Don't declare as dynamically bound.
12827
12828 * emacs-lisp/eieio.el (byte-compile-file-form-defmethod):
12829 Don't autoload.
12830 (eieio-defgeneric-form-primary-only-one): Use `byte-compile' rather
12831 than the internal `byte-compile-lambda'.
12832 (defmethod): Don't hide code under quotes.
12833 (eieio-defmethod): New `code' argument.
12834
12835 * emacs-lisp/eieio-comp.el: Remove.
12836
12837 * emacs-lisp/edebug.el (edebug-eval-defun)
12838 (edebug-eval-top-level-form): Use eval-sexp-add-defvars.
12839 (edebug-toggle): Avoid `eval'.
12840
12841 * emacs-lisp/disass.el (disassemble-internal): Handle new
12842 `closure' objects.
12843 (disassemble-1): Handle new byte codes.
12844
12845 * emacs-lisp/cl.el (pushnew): Silence warning.
12846
12847 * emacs-lisp/cl-macs.el (cl-byte-compile-block)
12848 (cl-byte-compile-throw): Remove.
12849 (cl-block-wrapper, cl-block-throw): Use compiler-macros instead.
12850
12851 * emacs-lisp/cl-extra.el (cl-macroexpand-all): Properly quote CL
12852 closures.
12853
12854 * emacs-lisp/cconv.el: New file.
12855
12856 * emacs-lisp/bytecomp.el: Use lexical binding instead of
12857 a "bytecomp-" prefix. Macroexpand everything as a separate phase.
12858 (byte-compile-initial-macro-environment):
12859 Handle declare-function here.
12860 (byte-compile--lexical-environment): New var.
12861 (byte-stack-ref, byte-stack-set, byte-discardN)
12862 (byte-discardN-preserve-tos): New lap codes.
12863 (byte-interactive-p): Don't use any more.
12864 (byte-compile-push-bytecodes, byte-compile-push-bytecode-const2):
12865 New macros.
12866 (byte-compile-lapcode): Use them and handle new lap codes.
12867 (byte-compile-obsolete): Remove.
12868 (byte-compile-arglist-signature): Handle new byte-code arg"lists".
12869 (byte-compile-arglist-warn): Check late def of inlinable funs.
12870 (byte-compile-cl-warn): Don't silence warnings for compiler-macros
12871 since they should have been expanded by now.
12872 (byte-compile--outbuffer): Rename from bytecomp-outbuffer.
12873 (byte-compile-from-buffer): Remove unused second arg.
12874 (byte-compile-preprocess): New function.
12875 (byte-compile-toplevel-file-form): New function to distinguish
12876 file-form calls from outside from file-form calls from hunk-handlers.
12877 (byte-compile-file-form): Simplify.
12878 (byte-compile-file-form-defsubst): Remove.
12879 (byte-compile-file-form-defmumble): Simplify now that
12880 byte-compile-lambda always returns a byte-code-function.
12881 (byte-compile): Preprocess.
12882 (byte-compile-byte-code-maker, byte-compile-byte-code-unmake):
12883 Remove, not used any more.
12884 (byte-compile-arglist-vars, byte-compile-make-lambda-lexenv)
12885 (byte-compile-make-args-desc): New funs.
12886 (byte-compile-lambda): Handle lexical functions. Always return
12887 a byte-code-function.
12888 (byte-compile-reserved-constants): New var, to make up room for
12889 closed-over variables.
12890 (byte-compile-constants-vector): Obey it.
12891 (byte-compile-top-level): New args `lexenv' and `reserved-csts'.
12892 (byte-compile-macroexpand-declare-function): New function.
12893 (byte-compile-form): Call byte-compile-unfold-bcf to inline immediate
12894 byte-code-functions.
12895 (byte-compile-form): Check obsolescence here.
12896 (byte-compile-inline-lapcode, byte-compile-unfold-bcf): New functions.
12897 (byte-compile-variable-ref): Remove.
12898 (byte-compile-dynamic-variable-op): New fun.
12899 (byte-compile-dynamic-variable-bind, byte-compile-variable-ref)
12900 (byte-compile-variable-set): New funs.
12901 (byte-compile-discard): Add 2 args.
12902 (byte-compile-stack-ref, byte-compile-stack-set)
12903 (byte-compile-make-closure, byte-compile-get-closed-var): New funs.
12904 (byte-compile-funarg, byte-compile-funarg-2): Remove, handled in
12905 macroexpand-all instead.
12906 (byte-compile-quote-form): Remove.
12907 (byte-compile-push-binding-init, byte-compile-not-lexical-var-p)
12908 (byte-compile-bind, byte-compile-unbind): New funs.
12909 (byte-compile-let): Handle let* and lexical binding.
12910 (byte-compile-let*): Remove.
12911 (byte-compile-catch, byte-compile-unwind-protect)
12912 (byte-compile-track-mouse, byte-compile-condition-case):
12913 Handle a new :fun-body form, used for lexical scoping.
12914 (byte-compile-save-window-excursion)
12915 (byte-compile-with-output-to-temp-buffer): Remove.
12916 (byte-compile-defun): Simplify.
12917 (byte-compile-stack-adjustment): New fun.
12918 (byte-compile-out): Use it.
12919 (byte-compile-refresh-preloaded): Don't reload byte-compiler files.
12920
12921 * emacs-lisp/byte-run.el (make-obsolete): Don't set the `byte-compile'
12922 handler any more.
12923
12924 * emacs-lisp/byte-opt.el: Use lexical binding.
12925 (byte-inline-lapcode): Remove (to bytecomp).
12926 (byte-compile-inline-expand): Pay attention to inlining to/from
12927 lexically bound code.
12928 (byte-compile-unfold-lambda): Don't handle byte-code-functions
12929 any more.
12930 (byte-optimize-form-code-walker): Don't handle save-window-excursion
12931 any more and don't call compiler-macros.
12932 (byte-compile-splice-in-already-compiled-code): Remove.
12933 (byte-code): Don't inline any more.
12934 (disassemble-offset): Receive `bytes' as argument rather than via
12935 dynamic scoping.
12936 (byte-compile-tag-number): Declare before first use.
12937 (byte-decompile-bytecode-1): Handle new byte-codes, don't change
12938 `return' even if make-spliceable.
12939 (byte-compile-side-effect-and-error-free-ops): Add stack-ref, remove
12940 obsolete interactive-p.
12941 (byte-optimize-lapcode): Optimize new lap-codes.
12942 Don't trip up on new form of `byte-constant' lap code.
12943
12944 * emacs-lisp/autoload.el (make-autoload): Don't burp on trivial macros.
12945
12946 * emacs-lisp/advice.el (ad-arglist): Use help-function-arglist.
12947
12948 * custom.el (custom-initialize-default, custom-declare-variable):
12949 Use `defvar'.
12950
12951 * Makefile.in (BIG_STACK_DEPTH, BIG_STACK_OPTS, BYTE_COMPILE_FLAGS):
12952 New variables.
12953 (compile-onefile, .el.elc, compile-calc, recompile): Use them.
12954 (COMPILE_FIRST): Add macroexp and cconv.
12955 * makefile.w32-in: Mirror changes in Makefile.in.
12956
12957 * vc/cvs-status.el:
12958 * vc/diff-mode.el:
12959 * vc/log-edit.el:
12960 * vc/log-view.el:
12961 * vc/smerge-mode.el:
12962 * textmodes/bibtex-style.el:
12963 * textmodes/css.el:
12964 * startup.el:
12965 * uniquify.el:
da91b5f2
CY
12966 * minibuffer.el:
12967 * newcomment.el:
12968 * reveal.el:
12969 * server.el:
12970 * mpc.el:
12971 * emacs-lisp/smie.el:
12972 * doc-view.el:
12973 * dired.el:
03408648
SM
12974 * abbrev.el: Use lexical binding.
12975
0f0c1f27
EZ
129762011-04-01 Eli Zaretskii <eliz@gnu.org>
12977
12978 * info.el (info-display-manual): New function.
12979
c82b2579
SM
129802011-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
12981
12982 * loadup.el: Load minibuffer after loaddefs, to use define-minor-mode.
12983
221ddf68
TH
129842011-03-31 Tassilo Horn <tassilo@member.fsf.org>
12985
12986 * net/rcirc.el (rcirc-handler-001): Only authenticate, if there's
2fbc1934 12987 an entry for that server in rcirc-authinfo. (Bug#8385)
221ddf68 12988
cba6e77e
GM
129892011-03-31 Glenn Morris <rgm@gnu.org>
12990
e040639f
GM
12991 * progmodes/f90.el (f90-find-tag-default): Handle multiple `%'.
12992
cba6e77e
GM
12993 * generic-x.el (etc-fstab-generic-mode): Add ext4, sysfs keywords.
12994
6d0f1c9e
CS
129952011-03-30 Christoph Scholtes <cschol2112@googlemail.com>
12996
12997 * progmodes/python.el (python-default-interpreter)
12998 (python-python-command-args, python-jython-command-args)
12999 (python-which-shell, python-which-args, python-which-bufname)
13000 (python-file-queue, python-comint-output-filter-function)
13001 (python-toggle-shells, python-shell): Remove obsolete defcustoms,
13002 variables and functions.
13003
3e2d70fd
SM
130042011-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
13005
13006 * minibuffer.el (completion-table-dynamic): Optimize `boundaries'.
13007 (completion-in-region-mode): New minor mode.
13008 (completion-in-region): Use it.
13009 (completion-in-region--data, completion-in-region-mode-map): New vars.
13010 (completion-in-region--postch): New function.
13011 (completion--capf-misbehave-funs, completion--capf-safe-funs):
13012 New vars.
13013 (completion--capf-wrapper): New function.
13014 (completion-at-point): Use it to track well-behavedness of
13015 hook functions.
13016 (completion-help-at-point): New command.
13017
f3e4086c
JM
130182011-03-30 Jason Merrill <jason@redhat.com> (tiny change)
13019
13020 * vc/add-log.el (add-change-log-entry): Don't use whitespace
13021 syntax class to search for whitespace on a single line
13022 (Message-ID: <4D938140.4030905@redhat.com>).
13023
eb7ffc14
LL
130242011-03-30 Leo Liu <sdl.web@gmail.com>
13025
13026 * abbrev.el (abbrev-edit-save-to-file, abbrev-edit-save-buffer):
13027 New commands.
13028 (edit-abbrevs-map): Bind them here.
13029 (write-abbrev-file): New optinal arg VERBOSE. (Bug#5937)
13030
d806ab68
KM
130312011-03-29 Ken Manheimer <ken.manheimer@gmail.com>
13032
13033 * allout.el (allout-hide-by-annotation, allout-flag-region):
13034 Reduce possibility of overlay leakage by making them volatile.
13035
13036 * allout-widgets.el (allout-widgets-tally): Define as nil so the
13037 hash is not shared between buffers. Mode initialization is
13038 responsible for giving it a useful starting value.
13039 (allout-item-span): Reduce possibility of overlay leakage by
13040 making them volatile.
13041 (allout-widgets-count-buttons-in-region): Add diagnostic function
13042 for tracking down button overlay leaks.
13043
ea622834
LL
130442011-03-29 Leo Liu <sdl.web@gmail.com>
13045
13046 * ido.el (ido-read-internal): Use the default history var
13047 minibuffer-history if no HISTORY is specified.
13048
b62f8267
G
130492011-03-28 Brian T. Sniffen <bsniffen@akamai.com> (tiny change)
13050
03408648
SM
13051 * net/imap.el (imap-shell-open, imap-process-connection-type):
13052 Use imap-process-connection-type for 'shell' streams as well as
b62f8267
G
13053 Kerberos, SSL, other subprocesses.
13054
947b6566
LL
130552011-03-28 Leo Liu <sdl.web@gmail.com>
13056
13057 * abbrev.el (abbrev-table-empty-p): New function.
13058 (prepare-abbrev-list-buffer): Place empty abbrev tables after
13059 nonempty ones. (Bug#5937)
13060
5ffb62aa
JD
130612011-03-27 Jan Djärv <jan.h.d@swipnet.se>
13062
13063 * cus-start.el (all): Add boolean ns-auto-hide-menu-bar.
13064
7a097943
LL
130652011-03-27 Leo Liu <sdl.web@gmail.com>
13066
13067 * ansi-color.el (ansi-color-names-vector): Allow cons cell value
13068 for foreground and background colors.
13069 (ansi-color-make-color-map): Adapt.
13070
c5b40130
LL
130712011-03-25 Leo Liu <sdl.web@gmail.com>
13072
1f48f7d2
LL
13073 * midnight.el (midnight-time-float): Remove. Note it calculates
13074 the microsecond component incorrectly and seconds-to-time does the
13075 same job.
625897ec 13076 Remove redundant (require 'timer).
1f48f7d2 13077
c5b40130
LL
13078 * ido.el (ido-read-internal): Simplify with read-from-minibuffer.
13079 (ido-completions): Remove unused arguments. (Bug#8329)
13080
d86d2721
SM
130812011-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
13082
13083 * minibuffer.el (completion--flush-all-sorted-completions):
13084 Remove itself from hook.
13085 (completion-at-point): Let the functions perform the completion
13086 immediately and return nil or t.
13087 * comint.el (comint-dynamic-complete-functions): Now identical to
13088 completion-at-point-functions.
13089 (comint-dynamic-list-input-ring): Remove unused var `index'.
13090 (comint--match-partial-filename, comint--unquote&expand-filename):
13091 New funs, split from comint-match-partial-filename.
13092 (comint-dynamic-complete): Use completion-at-point.
13093 (comint-dynamic-complete-filename): Use comint--match-partial-filename.
13094
e8974c48
DA
130952011-03-24 Drew Adams <drew.adams@oracle.com>
13096
13097 * thingatpt.el: Support `defun'.
13098
def71b5e
LL
130992011-03-23 Leo Liu <sdl.web@gmail.com>
13100
cb5af48e
LL
13101 * abbrevlist.el: Move to obsolete/abbrevlist.el.
13102
def71b5e
LL
13103 * help-mode.el (help-mode-finish): Tweak regexp.
13104
927c53e7
GM
131052011-03-23 Glenn Morris <rgm@gnu.org>
13106
18d05bed
GM
13107 * eshell/esh-opt.el (eshell-eval-using-options):
13108 Do not bind unused local variable `eshell-option-stub'.
13109
927c53e7
GM
13110 * progmodes/gdb-mi.el (gdb): Fix typo in previous change.
13111
9d0da923
JB
131122011-03-22 Juanma Barranquero <lekktu@gmail.com>
13113
13114 * emacs-lisp/derived.el (define-derived-mode): Wrap declaration of
13115 keymap variable in `with-no-warnings' to avoid a warning when the
13116 keymap has been already `defconst'ed.
13117
4b978a67
LL
131182011-03-22 Leo Liu <sdl.web@gmail.com>
13119
13120 * abbrev.el (write-abbrev-file): Use utf-8 for writing if it can
13121 encode all chars in abbrevs; otherwise use emacs-mule or
13122 utf-8-emacs. (Bug#8308)
13123
5fd62452
JB
131242011-03-22 Juanma Barranquero <lekktu@gmail.com>
13125
0b1596c6
JB
13126 * simple.el (backward-delete-char-untabify):
13127 Avoid warning about using `delete-backward-char'.
13128
5fd62452
JB
13129 * image.el (image-type-file-name-regexps): Make it variable.
13130 `imagemagick-register-types' modifies it, and the user may want
13131 to add new extensions for known image types.
13132 (imagemagick-register-types): Throw error if not using ImageMagick.
13133
0b4e93f1
LL
131342011-03-22 Leo Liu <sdl.web@gmail.com>
13135
13136 * net/rcirc.el (rcirc-completion-at-point): Return nil if point is
13137 located before rcirc-prompt-end-marker.
13138 (rcirc-complete): Error if point is not after rcirc prompt.
13139 Handle the case when table is nil.
9882e214 13140 (rcirc-user-authenticated): Define to fix compiler warning.
0b4e93f1 13141
fccee4ab
CY
131422011-03-22 Chong Yidong <cyd@stupidchicken.com>
13143
13144 * custom.el (custom--inhibit-theme-enable): Make it affect only
13145 custom-theme-set-variables and custom-theme-set-faces.
13146 (provide-theme): Ignore custom--inhibit-theme-enable.
13147 (load-theme): Enable the theme explicitly if NO-ENABLE is non-nil.
13148 (custom-enabling-themes): Delete variable.
d86d2721
SM
13149 (enable-theme): Accept only loaded themes as arguments.
13150 Ignore the special custom-enabled-themes variable.
fccee4ab
CY
13151 (custom-enabled-themes): Forbid themes from setting this.
13152 Eliminate use of custom-enabling-themes.
13153 (custom-push-theme): Quote "changed" custom var entry.
0357c7ae 13154
af896da6
LL
131552011-03-21 Leo Liu <sdl.web@gmail.com>
13156
13157 * ido.el (ido-read-internal): Add ido-selected to history instead
13158 of user input.
13159
78f64af0
SM
131602011-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
13161
13162 * subr.el (deferred-action-list, deferred-action-function):
13163 Mark obsolete.
13164
b16ac1ec
LL
131652011-03-21 Leo Liu <sdl.web@gmail.com>
13166
810f7698
LL
13167 * vc/log-view.el: Remove (require 'wid-edit), not needed after the
13168 change on 2011-02-13 (bug#8309).
13169
b16ac1ec
LL
13170 * minibuffer.el (read-file-name-function): Change default value.
13171 (read-file-name--defaults): Rename from read-file-name-defaults.
13172 (read-file-name-default): Rename from read-file-name.
13173 (read-file-name): Call read-file-name-function.
13174
4e05e67e
GM
131752011-03-21 Glenn Morris <rgm@gnu.org>
13176
13177 * eshell/esh-opt.el (eshell-eval-using-options, eshell-process-args):
13178 Doc fixes.
13179
4359915b
CY
131802011-03-21 Chong Yidong <cyd@stupidchicken.com>
13181
13182 * cus-theme.el: Add missing provide statement.
13183 (customize-create-theme): Extract theme value correctly.
13184 (custom-theme-visit-theme): Autoload.
13185 (customize-create-theme): Prompt before inserting default faces.
13186
1fe275ee
JB
131872011-03-20 Jay Belanger <jay.p.belanger@gmail.com>
13188
13189 * calc/calc-menu.el (calc-units-menu): Add entries for logarithmic
13190 units and musical notes.
13191
cd394be1 131922011-03-20 Leo Liu <sdl.web@gmail.com>
3ec03f7e
LL
13193
13194 * ido.el (ido-read-internal): Use completing-read-default.
13195 (ido-completing-read): Fix compatibility with completing-read.
13196
7d476bde
CO
131972011-03-20 Christian Ohler <ohler@gnu.org>
13198
13199 * emacs-lisp/ert.el (ert-run-tests-batch): Remove unused variable.
13200 (ert-delete-all-tests): Use `called-interactively-p' rather than
13201 `interactive-p'.
13202 (ert--make-xrefs-region): Respect END.
13203
fe0fb33e
CY
132042011-03-19 Chong Yidong <cyd@stupidchicken.com>
13205
ff854b0b
CY
13206 * dired-aux.el (dired-create-directory): Signal an error if the
13207 directory already exists (Bug#8246).
13208
fe0fb33e
CY
13209 * facemenu.el (list-colors-display): Call list-faces-display
13210 inside with-help-window.
13211 (list-colors-print): Use display property to align the final
13212 column, instead of checking window-width.
13213
576bce32
EZ
132142011-03-19 Eli Zaretskii <eliz@gnu.org>
13215
4d61f28d 13216 * vc/emerge.el (emerge-metachars): Separate value for ms-dos and
576bce32
EZ
13217 windows-nt systems.
13218 (emerge-protect-metachars): Quote correctly for ms-dos and
13219 windows-nt systems.
13220
89c41d68 132212011-03-19 Ralph Schleicher <rs@ralph-schleicher.de>
e6ce307c
RS
13222
13223 * info.el (info-initialize): Replace all uses of `:' with
13224 path-separator for compatibility with non-Unix systems.
13225 Cache quoting of path-separator. (Bug#8258)
13226
b14e3e21 132272011-03-19 Juanma Barranquero <lekktu@gmail.com>
ad22b7f7
JB
13228
13229 * avoid.el (mouse-avoidance-mode, mouse-avoidance-nudge-dist)
13230 (mouse-avoidance-threshold, mouse-avoidance-banish-destination)
13231 (mouse-avoidance-mode): Fix typos in docstrings.
13232
4525ce3e
CY
132332011-03-19 Chong Yidong <cyd@stupidchicken.com>
13234
13235 * startup.el (package-subdirectory-regexp): Move from package.el.
13236 Omit \\` and \\', and let callers add them.
13237
13238 * emacs-lisp/package.el (package-strip-version)
13239 (package-load-all-descriptors): Add \\` and \\' to
13240 package-subdirectory-regexp before using it.
13241 (package-untar-buffer): New arg DIR; ensure that file untars only
13242 into this expected directory. Remove superfluous delete-region.
13243 (package-unpack): Caller changed.
13244 (package-tar-file-info): Use package-subdirectory-regexp.
13245
a904a09a 132462011-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
1518e4f0 13247
a904a09a
SM
13248 * vc/diff-mode.el (diff-mode-map): Shadow problematic bindings from
13249 diff-mode-shared-map (bug#8284).
13250 (diff-mode-shared-map): Re-introduce some bindings that were problematic.
1518e4f0
G
13251
132522011-03-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
13253
13254 * calendar/time-date.el (format-seconds): Use assoc instead of
13255 assoc-string, since assoc-string doesn't exist in XEmacs.
13256
171fc304
JB
132572011-03-17 Juanma Barranquero <lekktu@gmail.com>
13258
13259 * custom.el (custom-known-themes): Reflow docstring.
13260 (custom-theme-load-path): Fix typo in docstring.
13261 (load-theme): Fix typo in error message.
13262 (custom-available-themes, custom-variable-theme-value):
13263 Use `let', not `let*'.
13264
d71990a1
JB
132652011-03-17 Jay Belanger <jay.p.belanger@gmail.com>
13266
13267 * calc/README: Mention inclusion of musical notes.
13268
13269 * calc/calc-units.el (calc-lu-quant): Rename from
13270 `calc-logunits-quantity'.
13271 (calcFunc-lupquant): Rename from `calcFunc-powerquant'.
13272 (calcFunc-lufquant): Rename from `calcFunc-fieldquant'.
13273 (calc-db): Rename from `calc-dblevel'.
13274 (calcFunc-dbpower): Rename from `calcFunc-dbpowerlevel'.
13275 (calcFunc-dbfield): Rename from `calcFunc-dbfieldlevel'.
13276 (calc-np): Rename from `calc-nplevel'.
13277 (calcFunc-nppower): Rename from `calcFunc-nppowerlevel'.
13278 (calcFunc-npfield): Rename from `calcFunc-npfieldlevel'.
13279 (calc-lu-plus): Rename from `calc-logunits-add'.
13280 (calcFunc-lupadd): Rename from `calcFunc-lupoweradd'.
13281 (calcFunc-lufadd): Rename from `calcFunc-lufieldadd'.
13282 (calc-lu-minus): Rename from `calc-logunits-sub'.
13283 (calcFunc-lupsub): Rename from `calcFunc-lupowersub'.
13284 (calcFunc-lufsub): Rename from `calcFunc-lufieldsub'.
13285 (calc-lu-times): Rename from `calc-logunits-mul'.
13286 (calcFunc-lupmul): Rename from `calcFunc-lupowermul'.
13287 (calcFunc-lufmul): Rename from `calcFunc-lufieldmul'.
13288 (calc-lu-divide): Rename from `calc-logunits-div'.
13289 (calcFunc-lupdiv): Rename from `calcFunc-lupowerdiv'.
13290 (calcFunc-lufdiv): Rename from `calcFunc-lufielddiv'.
13291
13292 * calc/calc-ext.el (calc-init-extensions): Update the names of the
13293 functions being autoloaded.
13294
13295 * calc/calc.el (calc-lu-power-reference): Rename from
13296 `calc-logunits-power-reference'.
13297 (calc-lu-field-reference): Rename from
13298 `calc-logunits-field-reference'.
13299
7a71b18d
GM
13300 * calc/calc-help.el (calc-l-prefix-help):
13301 Mention musical note functions.
d71990a1 13302
40c2934b
SM
133032011-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
13304
13305 * minibuffer.el (completion-all-sorted-completions):
13306 Use :completion-cycle-penalty text property if present.
13307
b0911414
KM
133082011-03-16 Ken Manheimer <ken.manheimer@gmail.com>
13309
13310 * allout.el (allout-yank-processing): Adjust for new rebulleting
13311 regime so bullet being yanked is used without prompting the user
13312 for a choice.
13313
8a05b668
JB
133142011-03-16 Juanma Barranquero <lekktu@gmail.com>
13315
13316 * startup.el (command-line): Warn the user that _emacs is deprecated.
13317
5ba5fb81
JB
133182011-03-16 Juanma Barranquero <lekktu@gmail.com>
13319
13320 * progmodes/delphi.el (delphi-search-path, delphi-indent-level)
13321 (delphi-verbose, delphi-comment-face, delphi-string-face)
13322 (delphi-keyword-face, delphi-ignore-changes, delphi-indent-line)
13323 (delphi-mode-abbrev-table, delphi-debug-buffer, delphi-tab)
13324 (delphi-find-unit, delphi-find-current-xdef, delphi-fill-comment)
13325 (delphi-new-comment-line, delphi-font-lock-defaults)
13326 (delphi-debug-mode-map, delphi-mode-syntax-table, delphi-mode):
13327 Fix typos in docstrings.
13328
2dab465b
KM
133292011-03-15 Ken Manheimer <ken.manheimer@gmail.com>
13330
5ba5fb81 13331 * allout.el (allout-make-topic-prefix, allout-rebullet-heading):
2dab465b
KM
13332 Invert the roles of character and string values for INSTEAD, so a
13333 string is used for the more common case of a defaulting prompt.
13334
0adf5618
SM
133352011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
13336
13337 * progmodes/ruby-mode.el (ruby-backward-sexp):
13338 * progmodes/ebrowse.el (ebrowse-draw-file-member-info):
13339 * play/gamegrid.el (gamegrid-make-face):
13340 * play/bubbles.el (bubbles--grid-width, bubbles--grid-height)
13341 (bubbles--colors, bubbles--shift-mode, bubbles--initialize-images):
13342 * notifications.el (notifications-notify):
13343 * net/xesam.el (xesam-search-engines):
13344 * net/quickurl.el (quickurl-list-insert):
13345 * vc/vc-hg.el (vc-hg-dir-printer): Fix use of case.
13346
d72700e5
CY
133472011-03-15 Chong Yidong <cyd@stupidchicken.com>
13348
13349 * startup.el (command-line): Update package subdirectory regexp.
13350
49c5410a
SM
133512011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
13352
c6eee9aa
SM
13353 * allout.el (allout-abbreviate-flattened-numbering)
13354 (allout-mode-deactivate-hook): Fix up obsolescence "date".
13355
49c5410a
SM
13356 * subr.el (read-char-choice): Only show the cursor after the prompt,
13357 not after the answer.
13358
047b2bb9
KR
133592011-03-15 Kevin Ryde <user42@zip.com.au>
13360
13361 * help-fns.el (variable-at-point): Skip leading quotes, if any
13362 (bug#8253).
13363
0a57d256
SM
133642011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
13365
13366 * emacs-lisp/bytecomp.el (byte-compile-save-excursion): Change the
13367 warning message.
13368
77c992bc
MA
133692011-03-14 Michael Albinus <michael.albinus@gmx.de>
13370
13371 * shell.el (shell): When called interactively, offer to change the
13372 shell file name on remote hosts.
13373
eebc475d
TZ
133742011-03-13 Teodor Zlatanov <tzz@lifelogs.com>
13375
13376 * net/ldap.el (ldap-search-internal): Add `auth-source-search'
13377 integration for LDAP parameters. The host, base, user or binddn,
13378 and secret tokens can be specified in a netrc file, for instance.
13379 This is optional because an `auth-source' parameter must be
13380 specified in the search attributes.
13381
9d05d1ba
JB
133822011-03-13 Juanma Barranquero <lekktu@gmail.com>
13383
13384 * help.el (describe-mode): Link to the mode's definition (bug#8185).
13385
09d9db2c
GM
133862011-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
13387
13388 * ebuff-menu.el (electric-buffer-menu-mode-map): Move initialization
13389 into declaration. Remove redundant and harmful binding.
13390
133912011-03-12 Eli Zaretskii <eliz@gnu.org>
13392
13393 * files.el (file-ownership-preserved-p): Pass `integer' as an
13394 explicit 2nd argument to `file-attributes'. If the file's owner
13395 is the Administrators group on Windows, and the current user is
13396 Administrator, consider that a match.
13397
13398 * server.el (server-ensure-safe-dir): Consider server directory
13399 safe on MS-Windows if its owner is the Administrators group while
13400 the current Emacs user is Administrator. Use `=' to compare
13401 numerical UIDs, since they could be integers or floats.
13402
219bd536
JB
134032011-03-12 Juanma Barranquero <lekktu@gmail.com>
13404
13405 * vc/vc-bzr.el (vc-bzr-state): Handle bzr 2.3.0 (follow-up to bug#8170).
13406
f3afd36b
MA
134072011-03-12 Michael Albinus <michael.albinus@gmx.de>
13408
13409 Sync with Tramp 2.2.1.
13410
13411 * net/tramp-sh.el (tramp-methods): Exchange "%k" marker with options.
13412
13413 * net/trampver.el: Update release number.
13414
3aaaa6f1
SM
134152011-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
13416
94642599
SM
13417 * progmodes/compile.el (compilation--previous-directory): Fix up
13418 various nil/dead-marker mismatches (bug#8014).
13419 (compilation-directory-properties, compilation-error-properties):
13420 Don't call it at a position past the one we're about to change.
13421
3aaaa6f1
SM
13422 * emacs-lisp/bytecomp.el (byte-compile-make-obsolete-variable):
13423 Disable obsolescence warnings in the file that declares it.
13424
14239447
KM
134252011-03-11 Ken Manheimer <ken.manheimer@gmail.com>
13426
099c39a4
JB
13427 * allout-widgets.el (allout-widgets-tally):
13428 Initialize allout-widgets-tally as a hash table rather than nil to
13429 prevent mode-line redisplay warnings. Also, clarify the module
13430 description and fix a comment typo.
14239447 13431
135e287c
JB
134322011-03-11 Juanma Barranquero <lekktu@gmail.com>
13433
13434 * help-fns.el (describe-variable): Don't complete keywords.
13435 Suggested by Teodor Zlatanov <tzz@lifelogs.com>.
13436
ffbf300e
CY
134372011-03-10 Chong Yidong <cyd@stupidchicken.com>
13438
ba08b241
CY
13439 * emacs-lisp/package.el (package-version-join): Impose a standard
13440 string representation for pre/alpha/beta version lists.
13441 (package-unpack-single): Standardize the directory name by passing
13442 it through package-version-join.
13443 (package-strip-rcs-id): Accept any version string that does not
13444 signal an error in version-to-list.
ffbf300e 13445
f346fd6b
MA
134462011-03-10 Michael Albinus <michael.albinus@gmx.de>
13447
13448 * simple.el (delete-trailing-whitespace): Return nil for the
13449 benefit of `write-file-functions'.
13450
ccb55d27
GM
134512011-03-10 Glenn Morris <rgm@gnu.org>
13452
5ceaac0c
GM
13453 * vc/vc-hg.el (vc-hg-pull, vc-hg-merge-branch): Use vc-hg-program.
13454
02da65ff
GM
13455 * vc/vc-git.el (vc-git-program): New option.
13456 (vc-git-branches, vc-git-pull, vc-git-merge-branch, vc-git-command)
13457 (vc-git--call): Use it.
13458
b2f603cc
GM
13459 * eshell/esh-util.el (eshell-condition-case): Doc fix.
13460
5772caab
GM
13461 * cus-edit.el (Custom-newline): If no button at point, look
13462 for a subgroup button at start-of-line. (Bug#2298)
13463
ccb55d27
GM
13464 * mail/rmail.el (rmail-msgend, rmail-msgbeg): Doc fixes.
13465
ec6ecaed
JD
134662011-03-10 Julien Danjou <julien@danjou.info>
13467
13468 * avoid.el (mouse-avoidance-ignore-p): Do not move the cursor if
13469 `cursor-type' is nil.
13470
9d5aa01d
JB
134712011-03-09 Jay Belanger <jay.p.belanger@gmail.com>
13472
13473 * calc/calc.el (calc-mode-map): Don't bind "C-_" to `calc-missing-key'.
13474
b6a5875b
KM
134752011-03-09 Ken Manheimer <ken.manheimer@gmail.com>
13476
7a71b18d 13477 * allout.el: Change so yank of distinctive-bullet items
b6a5875b
KM
13478 preserves the existing header prefix, rebulleting it if necessary,
13479 rather than replacing it. This is necessary for proper operation
13480 of cooperative addons like allout-widgets.
1154d12e
JB
13481 (allout-make-topic-prefix, allout-rebullet-heading):
13482 Change SOLICIT arg to INSTEAD, and interpret additionally a string
13483 value as alternate bullet to be used, instead of prompting the user
13484 for a bullet character.
b6a5875b 13485
ee545c35
MA
134862011-03-09 Michael Albinus <michael.albinus@gmx.de>
13487
d86d2721
SM
13488 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
13489 Do not use `tramp-file-name-port', because this returns also
ee545c35
MA
13490 `tramp-default-port'.
13491
c47971d7
DD
134922011-03-09 Deniz Dogan <deniz.a.m.dogan@gmail.com>
13493
13494 * net/rcirc.el (rcirc-handler-001): Remove useless
13495 with-rcirc-process-buffer.
13496 (rcirc-check-auth-status): Swap arguments to string-match.
13497
13522cb4
GM
134982011-03-09 Glenn Morris <rgm@gnu.org>
13499
0be6f4f1
GM
13500 * shell.el (shell-mode):
13501 Set comint-input-ring-size from HISTSIZE. (Bug#7889)
13502
13522cb4
GM
13503 * progmodes/gdb-mi.el (gdb): Improve 2010-12-08 change.
13504 Check for GDBHISTFILE, HISTSIZE, etc. (Bug#7889)
13505
515de2e3
CY
135062011-03-08 Chong Yidong <cyd@stupidchicken.com>
13507
13508 * emacs-lisp/package.el (package-refresh-contents)
13509 (package-menu-execute): Use condition-case-no-debug.
13510
b511b994
MA
135112011-03-08 Michael Albinus <michael.albinus@gmx.de>
13512
13513 * simple.el (shell-command-to-string): Use `process-file'.
13514
13515 * emacs-lisp/package.el (package-tar-file-info): Handle also
13516 remote files.
13517
d86d2721
SM
13518 * emacs-lisp/package-x.el (package-upload-buffer-internal):
13519 Use `equal' for upload base check.
b511b994 13520
25bbfb31
AM
135212011-03-08 Arni Magnusson <arnima@hafro.is> (tiny change)
13522
13523 * textmodes/texinfo.el (texinfo-environments):
13524 Add deftypecv, deftypeivar, deftypemethod, deftypeop, html. (Bug#2783)
13525
be996521
GM
135262011-03-08 Glenn Morris <rgm@gnu.org>
13527
e9c8529f
GM
13528 * cus-start.el (cursor-in-non-selected-windows):
13529 Fix :set quoting oddness. (Bug#8192)
13530
be996521
GM
13531 * font-lock.el (lisp-font-lock-keywords-1): Don't highlight `)'
13532 in some setf expressions. (Bug#2159)
13533
2bb5649e
CY
135342011-03-08 Chong Yidong <cyd@stupidchicken.com>
13535
13536 * custom.el (custom-available-themes): Return themes in
13537 alphabetical order.
13538
33383987 13539See ChangeLog.15 for earlier changes.
e3d51b27
MR
13540
13541;; Local Variables:
13542;; coding: utf-8
e3d51b27
MR
13543;; End:
13544
acaf905b 13545 Copyright (C) 2011-2012 Free Software Foundation, Inc.
e3d51b27
MR
13546
13547 This file is part of GNU Emacs.
13548
13549 GNU Emacs is free software: you can redistribute it and/or modify
13550 it under the terms of the GNU General Public License as published by
13551 the Free Software Foundation, either version 3 of the License, or
13552 (at your option) any later version.
13553
13554 GNU Emacs is distributed in the hope that it will be useful,
13555 but WITHOUT ANY WARRANTY; without even the implied warranty of
13556 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13557 GNU General Public License for more details.
13558
13559 You should have received a copy of the GNU General Public License
13560 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.