Auto-commit of loaddefs files.
[bpt/emacs.git] / lisp / ChangeLog
1 2012-06-02 Stefan Merten <smerten@oekonux.de>
2
3 * textmodes/rst.el: Always require `cl'.
4
5 2012-06-02 Chong Yidong <cyd@gnu.org>
6
7 * image.el (imagemagick-enabled-types): Rename from
8 imagemagick-types-enable. Add many more types.
9 (imagemagick-types-inhibit): Change default to nil.
10 (imagemagick-filter-types): Caller changed.
11
12 2012-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
13
14 * emacs-lisp/cl-macs.el: Use backquotes.
15 (cl-transform-function-property): Use eval-and-compile rather than
16 abusing `require'.
17 (defstruct): Use declare-function instead of with-no-warnings.
18
19 * emacs-lisp/bytecomp.el: Fix last change (bug#11594).
20 (byte-compile-output-docform): Re-add the print-circle bindings.
21 (byte-compile-fix-header): Use #$ just because it's shorter.
22 (byte-compile-output-file-form): Remove defun/defmacro.
23
24 2012-06-01 Martin Rudalics <rudalics@gmx.at>
25
26 * simple.el (choose-completion): Remove now obsolete binding for
27 owindow.
28
29 2012-06-01 Michael Albinus <michael.albinus@gmx.de>
30
31 * net/tramp.el (tramp-check-for-regexp): Search from buffer end,
32 in order to avoid "Stack overflow in regexp matcher".
33
34 2012-05-31 Glenn Morris <rgm@gnu.org>
35
36 * image.el: For clarity, call imagemagick-register-types at
37 top-level, rather than relying on a custom :initialize.
38 (imagemagick-types-enable): New option. (Bug#11557)
39 (imagemagick-filter-types): New function. (Bug#7406)
40 (imagemagick-register-types): Use imagemagick-filter-types.
41 If disabling support, remove elements altogether rather
42 than using an impossible regexp.
43 (imagemagick-types-inhibit): Give it the default init function.
44
45 2012-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
46
47 * emacs-lisp/bytecomp.el (byte-compile-fix-header):
48 Handle arbitrary file name lengths (Bug#11585).
49
50 2012-05-31 Martin Rudalics <rudalics@gmx.at>
51
52 * desktop.el (desktop-read): Clear previous and next buffers for
53 all windows and bury *Messages* buffer (bug#11556).
54
55 2012-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
56
57 Add `declare' for `defun'. Align `defmacro's with it.
58 * emacs-lisp/easy-mmode.el (define-minor-mode)
59 (define-globalized-minor-mode): Don't autoload the var definitions.
60 * emacs-lisp/byte-run.el: Use lexical-binding.
61 (defun-declarations-alist, macro-declarations-alist): New vars.
62 (defmacro, defun): Use them.
63 (make-obsolete, define-obsolete-function-alias)
64 (make-obsolete-variable, define-obsolete-variable-alias):
65 Use `declare'.
66 (macro-declaration-function): Mark obsolete.
67 * emacs-lisp/autoload.el: Use lexical-binding.
68 (make-autoload): Add `expansion' arg. Rely more on macro expansion.
69
70 2012-05-30 Agustín Martín Domingo <agustin.martin@hispalinux.es>
71
72 * textmodes/ispell.el (ispell-with-no-warnings):
73 Define as a macro.
74 (ispell-kill-ispell, ispell-change-dictionary):
75 Use `called-interactively-p' for Emacs instead of obsolete
76 `interactive-p'.
77
78 2012-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
79
80 * emacs-lisp/byte-run.el (defmacro, defun): Move from C.
81 (macro-declaration-function): Move var from C code.
82 (macro-declaration-function): Define function with defalias.
83 * emacs-lisp/macroexp.el (macroexpand-all-1):
84 * emacs-lisp/cconv.el (cconv-convert, cconv-analyse-form):
85 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker): Don't handle
86 defun/defmacro any more.
87 * emacs-lisp/bytecomp.el (byte-compile-arglist-signature):
88 Provide fallback for unknown arglist.
89 (byte-compile-arglist-warn): Change calling convention.
90 (byte-compile-output-file-form): Move print-vars binding.
91 (byte-compile-output-docform): Simplify accordingly.
92 (byte-compile-file-form-defun, byte-compile-file-form-defmacro)
93 (byte-compile-defmacro-declaration): Remove.
94 (byte-compile-file-form-defmumble): Generalize to defalias.
95 (byte-compile-output-as-comment): Return byte-positions.
96 Simplify callers accordingly.
97 (byte-compile-lambda): Use `assert'.
98 (byte-compile-defun, byte-compile-defmacro): Remove.
99 (byte-compile-file-form-defalias):
100 Use byte-compile-file-form-defmumble.
101 (byte-compile-defalias-warn): Remove.
102
103 2012-05-29 Stefan Merten <smerten@oekonux.de>
104
105 * textmodes/rst.el: Silence `checkdoc-ispell' errors where
106 possible. Fix authors. Improve comments. Improve loading of `cl'.
107
108 (rst-mode-abbrev-table): Merge definition.
109 (rst-mode): Make sure `font-lock-defaults' is buffer local.
110 (rst-define-key, rst-deprecated-keys, rst-call-deprecated): Refactor.
111
112 2012-05-29 Ulf Jasper <ulf.jasper@web.de>
113
114 * calendar/icalendar.el
115 (icalendar-export-region): Export UID properly.
116
117 2012-05-29 Leo <sdl.web@gmail.com>
118 * calendar/icalendar.el (icalendar-import-format):
119 Add `icalendar-import-format-uid' (Bug#11525).
120 (icalendar-import-format-uid): New.
121 (icalendar--parse-summary-and-rest, icalendar--format-ical-event):
122 Export UID.
123
124 2012-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
125
126 * emacs-lisp/pcase.el (pcase--expand): Accept different sets of vars in
127 different alternative patterns.
128 (pcase-codegen): Be more careful to preserve identity.
129 (pcase--u1): Don't forget to mark vars as used.
130
131 * emacs-lisp/bytecomp.el (byte-compile-constp): Treat #'v as a constant.
132 (byte-compile-close-variables): Bind byte-compile--outbuffer here...
133 (byte-compile-from-buffer): ...rather than here.
134
135 * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Don't re-preprocess
136 functions from byte-compile-function-environment.
137
138 2012-05-29 Troels Nielsen <bn.troels@gmail.com>
139
140 * window.el (window-deletable-p): Avoid deleting the root window
141 of a frame with an active minibuffer.
142
143 2012-05-29 Martin Rudalics <rudalics@gmx.at>
144
145 * simple.el (choose-completion): Use quit-window (Bug#11567).
146
147 2012-05-29 Chong Yidong <cyd@gnu.org>
148
149 * whitespace.el (whitespace-cleanup): Fix usage of
150 whitespace-empty-at-bob-regexp (Bug#11492).
151
152 2012-05-29 Aaron S. Hawley <aaron.s.hawley@gmail.com>
153
154 * vc/vc.el (vc-revert, vc-rollback): Dont kill vc-diff buffer on
155 revert (Bug#11488).
156
157 2012-05-29 Juri Linkov <juri@jurta.org>
158
159 * isearch.el (isearch-mode-map): Bind `M-s _' to
160 `isearch-toggle-symbol'. Bind `M-s c' to
161 `isearch-toggle-case-fold'.
162 (search-map): Bind `M-s _' to `isearch-forward-symbol'.
163 (isearch-forward): Add `M-s _' to the docstring.
164 (isearch-forward-symbol, isearch-toggle-case-fold)
165 (isearch-symbol-regexp): New functions. (Bug#11381)
166
167 2012-05-29 Juri Linkov <juri@jurta.org>
168
169 * isearch.el (isearch-word): Add docstring. (Bug#11381)
170 (isearch-occur, isearch-search-and-update): If `isearch-word' is
171 a function, call it to get the regexp.
172 (isearch-message-prefix): If `isearch-word' holds a symbol, use its
173 property `isearch-message-prefix' instead of the string "word ".
174 (isearch-search-fun-default): For the case of `isearch-word',
175 return a lambda that calls re-search-forward/re-search-backward
176 with a regexp returned by `word-search-regexp' or by the function
177 in `isearch-word'.
178
179 2012-05-29 Juri Linkov <juri@jurta.org>
180
181 * isearch.el (isearch-search-fun-default): New function.
182 (isearch-search-fun): Move default part to the new function
183 `isearch-search-fun-default'.
184 (isearch-search-fun-function): Set the default value to
185 `isearch-search-fun-default'. (Bug#11381)
186
187 * comint.el (comint-history-isearch-end):
188 Use `isearch-search-fun-default'.
189 (comint-history-isearch-search): Use `isearch-search-fun-default'
190 and remove spacial case for `isearch-word'.
191 (comint-history-isearch-wrap): Remove spacial case for
192 `isearch-word'.
193
194 * hexl.el (hexl-isearch-search-function):
195 Use `isearch-search-fun-default'.
196
197 * info.el (Info-isearch-search): Use `isearch-search-fun-default'.
198 Use `word-search-regexp' for `isearch-word'.
199
200 * misearch.el (multi-isearch-search-fun):
201 Use `isearch-search-fun-default'.
202
203 * simple.el (minibuffer-history-isearch-search):
204 Use `isearch-search-fun-default' and remove spacial case for
205 `isearch-word'.
206 (minibuffer-history-isearch-wrap): Remove spacial case for
207 `isearch-word'.
208
209 * textmodes/reftex-global.el (reftex-isearch-wrap-function):
210 Remove spacial case for `isearch-word'.
211 (reftex-isearch-isearch-search): Use `isearch-search-fun-default'.
212
213 2012-05-28 Agustín Martín Domingo <agustin.martin@hispalinux.es>
214
215 Decrease XEmacs incompatibilities.
216 * textmodes/flyspell.el (flyspell-check-pre-word-p):
217 Use `string-match'.
218 (flyspell-delete-region-overlays): Use alternative definition for
219 XEmacs.
220 (flyspell-delete-all-overlays): Use `flyspell-delete-region-overlays'.
221 (flyspell-word): Use `process-kill-without-query' if XEmacs.
222 (flyspell-mode-on): Use `interactive-p' if XEmacs.
223 (flyspell-incorrect-face, flyspell-duplicate-face): Do not use
224 `define-obsolete-face-alias' under XEmacs, but old method.
225
226 * textmodes/ispell.el (ispell-with-no-warnings): XEmacs alternative
227 `with-no-warnings' definition or Emacs alias.
228 (ispell-command-loop, ispell-message): Use `ispell-with-no-warnings'.
229 (ispell-word): Do not use `region-p' if XEmacs.
230
231 2012-05-28 Agustín Martín Domingo <agustin.martin@hispalinux.es>
232
233 * textmodes/ispell.el (ispell-find-aspell-dictionaries):
234 Check for `ispell-dictionary-base-alist' instead of full
235 `ispell-dictionary-alist'.
236 (ispell-init-process): Show spellchecker when starting new Ispell
237 process.
238
239 2012-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
240
241 * progmodes/vhdl-mode.el: Sync with upstream 3.33.28.
242 http://www.iis.ee.ethz.ch/~zimmi/emacs/vhdl-mode.html#release-notes-3.33
243
244 2012-05-27 Juanma Barranquero <lekktu@gmail.com>
245
246 * version.el (motif-version-string, gtk-version-string)
247 (ns-version-string): Declare.
248
249 2012-05-27 Juri Linkov <juri@jurta.org>
250
251 * emacs-lisp/lisp-mode.el (eval-defun-2): Use `eval-sexp-add-defvars'
252 after the `eval-defun-1' specialcaseing
253 like in `edebug-eval-defun' (bug#10181).
254
255 * emacs-lisp/edebug.el (edebug-eval-defun): Set `face-documentation'
256 like in `eval-defun-1'.
257
258 2012-05-27 Eli Zaretskii <eliz@gnu.org>
259
260 * mail/sendmail.el (mail-yank-region):
261 Recognize rmail-yank-current-message in addition to insert-buffer.
262 Fixes mail-mode's "C-c C-r" that otherwise does nothing when invoked in
263 a *mail* buffer created through rmail-start-mail with sendmail as
264 mail-user-agent.
265
266 2012-05-27 Chong Yidong <cyd@gnu.org>
267
268 * net/gnutls.el (gnutls-min-prime-bits): Improve docstring.
269 Default to 256 (Bug#11267).
270
271 * help.el (describe-mode): Doc fix.
272
273 2012-05-26 Glenn Morris <rgm@gnu.org>
274
275 * w32-fns.el (w32-init-info): Remove.
276 * paths.el (Info-default-directory-list): Add w32-init-info equivalent.
277
278 * info.el (info-initialize): For self-contained NS builds, put the
279 included info/ directory at the front. (Bug#2791)
280
281 * paths.el (Info-default-directory-list): Make it a defcustom,
282 mainly so that we can use custom-initialize-delay.
283
284 2012-05-26 Stefan Monnier <monnier@iro.umontreal.ca>
285
286 * subr.el (buffer-has-markers-at): Mark obsolete.
287
288 * subr.el (lambda): Use declare.
289
290 * emacs-lisp/lisp-mode.el (lambda):
291 * emacs-lisp/edebug.el (lambda): Move properties to its definition.
292
293 2012-05-26 Aaron S. Hawley <aaron.s.hawley@gmail.com>
294
295 * thingatpt.el (forward-same-syntax): Handle no ARG case. (Bug#11560)
296
297 2012-05-26 Glenn Morris <rgm@gnu.org>
298
299 * progmodes/cc-mode.el (auto-mode-alist): Fix typo.
300
301 2012-05-25 Glenn Morris <rgm@gnu.org>
302
303 * paths.el: Remove no-byte-compile.
304 * loadup.el: No need to load paths.el uncompiled.
305
306 * image.el (imagemagick-types-inhibit): Doc fix.
307
308 * version.el: Remove no-byte-compile and associated formatting.
309 * loadup.el: No need to load version.el uncompiled. AFAICS, this
310 is ancient code from when there was an "inc-vers.el".
311
312 2012-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
313
314 * progmodes/gdb-mi.el: Minor style changes.
315 (gdb-enable-debug, gdb-speedbar-auto-raise, gdb-many-windows):
316 Turn into minor modes.
317 (gdb--if-arrow): Rename from gdb-if-arrow, make it hygienic.
318 (gdb-mouse-until, gdb-mouse-jump): Adjust uses accordingly.
319 (gdb-shell): Remove unneeded let-binding.
320 (gdb-get-many-fields): Eliminate O(n²) behavior.
321
322 2012-05-25 Eli Zaretskii <eliz@gnu.org>
323
324 * cus-start.el <vertical-centering-font-regexp>: Avoid warning on
325 platforms that don't link in fontset.c.
326
327 2012-05-25 Juri Linkov <juri@jurta.org>
328
329 Use the same diff color scheme as in modern VCSes (bug#10181).
330
331 * vc/diff-mode.el (diff-header, diff-file-header): Remove "green"
332 to avoid confusion with `diff-added' that now uses green colors.
333 (diff-removed): Use shades of red.
334 (diff-added): Use shades of green.
335 (diff-changed): Leave just the yellow color.
336 (diff-use-changed-face): New variable.
337 (diff-font-lock-keywords): Use `diff-use-changed-face' to decide
338 how to highlight context diff changes.
339 (diff-refine-change): Use shades of yellow.
340 (diff-refine-removed): New face that uses shades of red.
341 (diff-refine-added): New face that uses shades of green.
342 (diff-refine-hunk): Use `diff-refine-change', `diff-refine-added',
343 `diff-refine-removed' in the call to `smerge-refine-subst'
344 depending on the value of `diff-use-changed-face'.
345
346 * vc/smerge-mode.el (smerge-mine): Use shades of red.
347 (smerge-other): Use shades of green.
348 (smerge-base): Use shades of yellow.
349 (smerge-refined-change): Empty face.
350 (smerge-refined-removed): New face that uses shades of red.
351 (smerge-refined-added): New face that uses shades of green.
352 (smerge-refine-subst): Rename arg `props' to `props-c'. Add new
353 args `props-r' and `props-a', and use them. Doc fix.
354 (smerge-refine): Evaluate `smerge-use-changed-face' and depending
355 on its value use different faces `smerge-refined-change',
356 `smerge-refined-removed', `smerge-refined-added' in the call to
357 `smerge-refine-subst'.
358
359 * vc/ediff-init.el (ediff-current-diff-A, ediff-fine-diff-A):
360 Add face condition `min-colors 88' with shades of red.
361 (ediff-current-diff-B, ediff-fine-diff-B): Add face condition
362 `min-colors 88' with shades of green.
363 (ediff-current-diff-C, ediff-fine-diff-C): Add face condition
364 `min-colors 88' with shades of yellow.
365
366 2012-05-24 Glenn Morris <rgm@gnu.org>
367
368 * paths.el (prune-directory-list, remote-shell-program): Move to...
369 * files.el (prune-directory-list, remote-shell-program): ...here.
370 For the latter, delay initialization, prefer ssh, just search PATH.
371
372 * paths.el (term-file-prefix): Move to faces.el (the only user).
373 * faces.el (term-file-prefix): Move here, make it a defcustom.
374
375 * paths.el (news-directory, news-path, news-inews-program):
376 Move to gnus/nnspool.el.
377
378 * paths.el (gnus-default-nntp-server): Remove (gnus.el defines it).
379
380 * paths.el (rmail-file-name, rmail-spool-directory): Move from here...
381 * mail/rmail.el (rmail-file-name, rmail-spool-directory): ... to here.
382 Make the latter a defcustom, with a delayed initialization.
383
384 * paths.el (gnus-nntp-service, gnus-local-organization): Remove.
385 These were deleted from Gnus itself late 2010.
386
387 2012-05-22 Juanma Barranquero <lekktu@gmail.com>
388
389 * progmodes/which-func.el (which-func-ff-hook):
390 Check against user-error, not error.
391
392 * emacs-lisp/edebug.el (top): Do not load or set up loading of
393 cl-specs.el, which no longer exists.
394
395 2012-05-22 Glenn Morris <rgm@gnu.org>
396
397 * info.el (info-emacs-bug): New command.
398 * menu-bar.el (menu-bar-help-menu): Add "How to Report a Bug" to Help.
399 * mail/emacsbug.el (report-emacs-bug): Replace with info-emacs-bug.
400
401 2012-05-21 Glenn Morris <rgm@gnu.org>
402
403 * makefile.w32-in (update-subdirs-SH):
404 * Makefile.in (update-subdirs): Update for moved update-subdirs.
405
406 2012-05-21 Stefan Monnier <monnier@iro.umontreal.ca>
407
408 * hi-lock.el (hi-lock-face-defaults): Move obsolete before definition.
409
410 * progmodes/compile.el (compilation-error-regexp-alist-alist):
411 Simplify Maven regexp, and make sure the file can't start with a space
412 (bug#11517).
413
414 2012-05-21 Glenn Morris <rgm@gnu.org>
415
416 * Makefile.in (setwins, setwins_almost, setwins_for_subdirs):
417 Scrap superfluous subshells.
418
419 2012-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
420
421 * emacs-lisp/bytecomp.el (byte-compile-root-dir): New var.
422 (byte-compile-warning-prefix, batch-byte-compile-file): Use it.
423
424 2012-05-19 Jay Belanger <jay.p.belanger@gmail.com>
425
426 * calc/calc.el (calc-ensure-consistent-units): New variable.
427
428 * calc/calc-units.el (math-consistent-units-p)
429 (math-check-unit-consistency): New functions.
430 (calc-quick-units, calc-convert-units):
431 Use `math-check-unit-consistency' when `calc-ensure-consistent-units'
432 is non-nil.
433 (calc-extract-units): Fix typo.
434
435 2012-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
436
437 * vc/vc-bzr.el (vc-bzr-state-heuristic): Save match-data around sha1.
438
439 * textmodes/flyspell.el: Commenting style, plus code simplifications.
440 (flyspell-default-deplacement-commands): Don't spell check after
441 repeated window/frame switches (e.g. triggered by mouse-movement).
442 (flyspell-delay-commands, flyspell-deplacement-commands): Use mapc.
443 (flyspell-debug-signal-word-checked): Simplify and fit in 80 cols.
444 (flyspell-casechars-cache, flyspell-ispell-casechars-cache)
445 (flyspell-not-casechars-cache, flyspell-ispell-not-casechars-cache):
446 Remove unused vars.
447 (flyspell-get-casechars, flyspell-get-not-casechars):
448 Simplify; Don't bother removing a ] just to add it back.
449 * textmodes/ispell.el (ispell-program-name): Use executable-find.
450
451 2012-05-18 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
452
453 * calc/calc-lang.el (math-C-parse-bess, math-C-parse-fma):
454 New functions.
455 (math-function-table): Add support for more C functions.
456
457 2012-05-18 Agustín Martín Domingo <agustin.martin@hispalinux.es>
458
459 * flyspell.el (flyspell-check-pre-word-p, flyspell-check-word-p)
460 (flyspell-debug-signal-word-checked): Protect delay handling for
461 otherchars against empty otherchars.
462
463 2012-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
464
465 * emacs-lisp/lisp-mode.el (doc-string-elt): Move those properties to
466 their respective macro declarations.
467 * skeleton.el (define-skeleton):
468 * progmodes/compile.el (define-compilation-mode):
469 * ibuf-macs.el (define-ibuffer-sorter, define-ibuffer-op)
470 (define-ibuffer-filter):
471 * emacs-lisp/generic.el (define-generic-mode):
472 * emacs-lisp/easy-mmode.el (define-minor-mode)
473 (define-globalized-minor-mode):
474 * emacs-lisp/cl-macs.el (defun*, defmacro*, defstruct, deftype):
475 * emacs-lisp/byte-run.el (defsubst):
476 * custom.el (deftheme): Add doc-string metadata.
477
478 2012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
479
480 * emacs-lisp/cl-macs.el, emacs-lisp/cl.el: Move indent info.
481
482 2012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
483
484 * emacs-lisp/pcase.el (pcase--u1): Avoid ((lambda ...) ...).
485
486 * emacs-lisp/cl.el: Add edebug specs from cl-specs.el.
487 * emacs-lisp/cl-macs.el: Idem.
488 * emacs-lisp/cl-specs.el: Remove.
489
490 2012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
491
492 Minor renaming of internal CL functions and variables.
493 * emacs-lisp/cl-seq.el (cl--adjoin): Rename from cl-adjoin.
494 (cl--position): Rename from cl-position.
495 (cl--delete-duplicates): Rename from cl-delete-duplicates.
496 * emacs-lisp/cl.el (cl--gensym-counter): Rename from *gensym-counter*.
497 (cl--random-state): Rename from *random-state*.
498
499 2012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
500
501 * emacs-lisp/cl-macs.el (cl-transform-lambda): Don't add spurious
502 parens around the arg list (bug#11499).
503
504 2012-05-17 Juri Linkov <juri@jurta.org>
505
506 * isearch.el (word-search-regexp, word-search-backward)
507 (word-search-forward, word-search-backward-lax)
508 (word-search-forward-lax): Move functions from search.c
509 (bug#10145, bug#11381).
510
511 2012-05-16 Agustín Martín Domingo <agustin.martin@hispalinux.es>
512
513 * flyspell.el (flyspell-check-pre-word-p, flyspell-check-word-p)
514 (flyspell-debug-signal-word-checked): Delay for otherchars as for
515 normal word components.
516
517 2012-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
518
519 * minibuffer.el (completion--sifn-requote): Fix last change.
520 (minibuffer-local-must-match-filename-map):
521 Move define-obsolete-variable-alias before its var.
522
523 2012-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
524
525 * emacs-lisp/pcase.el (pcase-let*, pcase-let): Fix edebug spec.
526
527 * minibuffer.el (completion--sifn-requote): Handle sifn's truncation
528 behavior.
529 (completion--string-equal-p): New function.
530 (completion--twq-all): Use it to get better assertion failure data.
531
532 Only handle ".." and '..' quoting in shell-mode (bug#11466).
533 * shell.el (shell--unquote&requote-argument, shell--unquote-argument)
534 (shell--requote-argument): New functions.
535 (shell-completion-vars): Use them.
536 (shell--parse-pcomplete-arguments): Rename from
537 shell-parse-pcomplete-arguments.
538 * comint.el (comint-word): Obey comint-file-name-quote-list. Simplify.
539 (comint--unquote&requote-argument): Don't handle ".." and '..' quoting.
540 Obey comint-file-name-quote-list.
541
542 * emacs-lisp/smie.el (smie-indent--bolp-1): New function.
543 (smie-indent-keyword): Use it.
544
545 2012-05-14 Stefan Merten <smerten@oekonux.de>
546
547 * textmodes/rst.el (rst-re-alist): Fix loading (bug#11462).
548
549 2012-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
550
551 * net/rlogin.el (rlogin-mode-map): Fix last change.
552
553 2012-05-14 Jason L. Wright <jason.wright@inl.gov> (tiny change)
554
555 * mail/smtpmail.el (smtpmail-send-command): Send the command and
556 the following \r\n using a single `process-send-string', since the
557 Lotus SMTP server refuses to accept any commands if they are sent
558 with two `process-send-string's (Bug#11444).
559
560 2012-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
561
562 * shell.el (shell-parse-pcomplete-arguments):
563 Obey pcomplete-arg-quote-list inside double-quoted args (Bug#11348).
564
565 2012-05-14 Wolfgang Jenkner <wjenkner@inode.at>
566
567 * image-mode.el: Fit to width/height for rotated images (Bug#11431).
568 (image-transform-scale, image-transform-right-angle-fudge): New vars.
569 (image-transform-width, image-transform-fit-width): New functions.
570 (image-transform-properties): Use them.
571 (image-transform-check-size): New function.
572 (image-toggle-display-image): Use it (for testing).
573 (image-transform-set-rotation): Reduce angle mod 360.
574 Delete obsolete comment.
575
576 2012-05-14 Wolfgang Jenkner <wjenkner@inode.at>
577
578 * image-mode.el: Fix scaling (bug#11399).
579 (image-transform-resize): Doc fix.
580 (image-transform-properties): Default scale is 1 and height should
581 be an integer.
582
583 2012-05-13 Johan Bockgård <bojohan@gnu.org>
584
585 * emacs-lisp/smie.el (smie-next-sexp): Use accessor `op-forw' rather
586 than hard-coding `car', to fix misbehavior when moving forward.
587
588 2012-05-13 Chong Yidong <cyd@gnu.org>
589
590 * emacs-lisp/tabulated-list.el (tabulated-list-format)
591 (tabulated-list-entries, tabulated-list-padding)
592 (tabulated-list-sort-key): Make permanent-local.
593
594 * ebuff-menu.el: Adapt to Buffer Menu changes (Bug#11455).
595 (electric-buffer-list): Put electric buffer menu
596 command descriptions in this docstring, instead of the docstring
597 of electric-buffer-menu-mode. Code cleanups.
598 (electric-buffer-menu-mode): Use define-derived-mode. Rename from
599 Electric-buffer-menu-mode.
600 (electric-buffer-update-highlight): Minor code cleanup.
601
602 2012-05-13 Michael Albinus <michael.albinus@gmx.de>
603
604 * net/dbus.el (dbus-call-method): Restore events not from D-Bus.
605 (Bug#11447)
606
607 2012-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
608
609 Move define-obsolete-variable-alias before the var's definition.
610 * vc/log-edit.el (vc-comment-ring, vc-comment-ring-index):
611 * tooltip.el (tooltip-hook):
612 * textmodes/reftex-toc.el (reftex-toc-map):
613 * textmodes/reftex-sel.el (reftex-select-label-map)
614 (reftex-select-bib-map):
615 * textmodes/reftex-index.el (reftex-index-map)
616 (reftex-index-phrases-map):
617 * speedbar.el (speedbar-syntax-table, speedbar-key-map):
618 * progmodes/meta-mode.el (meta-mode-map):
619 * novice.el (disabled-command-hook):
620 * loadhist.el (unload-hook-features-list):
621 * frame.el (blink-cursor):
622 * files.el (find-file-not-found-hooks, write-file-hooks)
623 (write-contents-hooks):
624 * emulation/tpu-edt.el (GOLD-map):
625 * emacs-lock.el (emacs-lock-from-exiting):
626 * emacs-lisp/generic.el (generic-font-lock-defaults):
627 * emacs-lisp/chart.el (chart-map):
628 * dos-fns.el (register-name-alist):
629 * dired-x.el (dired-omit-files-p):
630 * desktop.el (desktop-enable):
631 * cus-edit.el (custom-mode-hook):
632 * buff-menu.el (buffer-menu-mode-hook):
633 * bookmark.el (bookmark-read-annotation-text-func)
634 (bookmark-exit-hooks):
635 * allout.el (allout-mode-deactivate-hook)
636 (allout-exposure-change-hook, allout-structure-added-hook)
637 (allout-structure-deleted-hook, allout-structure-shifted-hook):
638 * dirtrack.el (dirtrack-toggle, dirtrackp, dirtrack-debug-toggle)
639 (dirtrack-debug): Move call to define-obsolete-variable-alias so it
640 comes before the corresponding variable's definition.
641
642 2012-05-12 Chong Yidong <cyd@gnu.org>
643
644 * buff-menu.el (Buffer-menu-buffer+size-width): Doc fix (Bug#11454).
645 (Buffer-menu-mouse-select): Restore function (Bug#11459).
646 (Buffer-menu-mode-map): Bind it.
647 (Buffer-menu--pretty-name): Add a mouse-face property.
648
649 2012-05-11 Stefan Monnier <monnier@iro.umontreal.ca>
650
651 * progmodes/prolog.el: Use SMIE. Cleanup regexp setup.
652 (prolog-upper-case-string, prolog-lower-case-string)
653 (prolog-atom-char-regexp, prolog-atom-regexp): Initialize in defconst.
654 (prolog-use-smie, prolog-smie-grammar): New vars.
655 (prolog-smie-forward-token, prolog-smie-backward-token)
656 (prolog-smie-rules): New funs.
657 (prolog-comment-indent): Remove.
658 (prolog-mode-variables): Use default comment indentation instead.
659 Setup SMIE.
660 (prolog-build-case-strings, prolog-set-atom-regexps): Remove.
661 (prolog-mode): Don't call them any more.
662 (prolog-electric-colon, prolog-electric-dash)
663 (prolog-edit-menu-insert-move): Use indent-according-to-mode.
664
665 * dabbrev.el (dabbrev-expand): Make "no expansion found" a user-error.
666
667 * minibuffer.el (completion--twq-all): Again, allow case differences.
668
669 * term.el: Move keymap initialization code to be more idiomatic.
670 (term-signals-menu, term-mode-map, term-raw-map, term-raw-escape-map)
671 (term-terminal-menu): Move initialization into declaration.
672 (term-escape-char): Let the user set it in her .emacs.
673
674 * progmodes/sh-script.el: Use post-self-insert-hook&electric-pair-mode.
675 Provide SMIE-based indentation (not enabled by default yet).
676 (sh-mode-map): Don't bind electric keys.
677 Use electric-pair-mode instead of skeleton-pair.
678 (sh-assignment-regexp): Fit within 80 columns.
679 (sh-indent-supported): Specify actual shell name instead of boolean.
680 (sh--maybe-here-document): New fun, from sh-maybe-here-document.
681 (sh-maybe-here-document): Use it. Make obsolete.
682 (sh-electric-here-document-mode) New minor mode.
683 (sh-mode): Use it. Don't set sh-indent-supported-here here.
684 (sh-smie-sh-grammar, sh-smie--sh-operators, sh-smie--sh-operators-re)
685 (sh-smie--sh-operators-back-re, sh-indent-after-continuation)
686 (sh-smie-rc-grammar, sh-use-smie): New vars.
687 (sh-smie--keyword-p, sh-smie--newline-semi-p, sh-smie--sh-keyword-p)
688 (sh-smie-sh-forward-token, sh-smie--looking-back-at-continuation-p)
689 (sh-smie-sh-backward-token, sh-smie--continuation-start-indent)
690 (sh-smie-sh-rules, sh-smie-rc-rules, sh-smie--sh-keyword-in-p)
691 (sh-smie--rc-after-special-arg-p, sh-smie-rc-backward-token)
692 (sh-smie-sh-rules, sh-smie--rc-newline-semi-p): New functions.
693 (sh-set-shell): Use smie-setup if requested.
694
695 * term.el (term-set-escape-char): Properly set term-escape-char.
696 See http://stackoverflow.com/questions/10524656.
697
698 2012-05-10 Chong Yidong <cyd@gnu.org>
699
700 * ffap.el (ffap-url-unwrap-local): Make it work right (Bug#9131).
701 Use url-generic-parse-url, and handle host names and Windows
702 filenames properly.
703 (ffap-url-unwrap-remote): Use url-generic-parse-url.
704 (ffap-url-unwrap-remote): Accept list values, specifying a list of
705 URL schemes to work on.
706 (ffap--toggle-read-only): New function.
707 (ffap-read-only, ffap-read-only-other-window)
708 (ffap-read-only-other-frame): Use it.
709 (ffap-fixup-url): Don't check ffap-ftp-regexp, since it is not
710 necessary for ffap-url-unwrap-remote.
711
712 2012-05-10 Dave Abrahams <dave@boostpro.com>
713
714 * cus-start.el (create-lockfiles): Add it.
715
716 2012-05-09 Chong Yidong <cyd@gnu.org>
717
718 * net/browse-url.el (browse-url-url-encode-chars): Use upper-case.
719 (browse-url-encode-url): Encode spaces and quotes (Bug#6300).
720
721 2012-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
722
723 * shell.el (shell-completion-vars): Fix last change (bug#11348).
724
725 2012-05-09 Chong Yidong <cyd@gnu.org>
726
727 * ansi-color.el (ansi-color-process-output): Check for validity of
728 comint-last-output-start before using it. This avoids a bad
729 interaction with gdb-mi's input/output buffer.
730
731 2012-05-09 Glenn Morris <rgm@gnu.org>
732
733 * files.el (dir-locals-read-from-file):
734 Mention dir-locals in any error message.
735
736 2012-05-09 Chong Yidong <cyd@gnu.org>
737
738 * emacs-lisp/package.el (package-built-in-p): Handle the `emacs'
739 package (Bug#11410).
740
741 * emacs-lisp/package.el (package-buffer-info): Avoid putting local
742 variables into description.
743
744 2012-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
745
746 * shell.el (shell-completion-vars): Set pcomplete-arg-quote-list like
747 shell-delimiter-argument-list (bug#11348).
748 (shell-parse-pcomplete-arguments): Obey pcomplete-arg-quote-list.
749
750 2012-05-09 Juanma Barranquero <lekktu@gmail.com>
751
752 * textmodes/rst.el: Silence byte-compiler warnings.
753 (rst-re-alist, rst-reset-section-caches): Move around.
754 (rst-re): Use `characterp', not `char-valid-p'.
755 (font-lock-beg, font-lock-end): Declare.
756
757 * progmodes/idlw-shell.el (specs): Remove reference to deleted
758 variable `idlwave-shell-activate-alt-keybindings' and simplify.
759
760 * eshell/esh-cmd.el (eshell-debug-command): Fix typo in previous change.
761
762 2012-05-08 Glenn Morris <rgm@gnu.org>
763
764 * files.el (auto-mode-alist): Treat ".make" like ".mk".
765
766 2012-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
767
768 * vc/log-edit.el: Add GNU coding standards highlighting.
769 (log-edit-font-lock-gnu-style)
770 (log-edit-font-lock-gnu-keywords): New vars.
771 (log-edit-font-lock-keywords): New fun.
772 (log-edit-mode): Don't fold case in font-lock.
773 (log-edit-font-lock-keywords): Do not assume case-folding.
774
775 * imenu.el: Misc cleanup. Make docstrings out of comments.
776 Use lexical-binding.
777 (imenu--index-alist, imenu--last-menubar-index-alist)
778 (imenu-menubar-modified-tick): Use defvar-local.
779 (imenu--split-menu): Remove unused var.
780 (imenu--cleanup-seen): Declare as global.
781 (imenu--cleanup): Use dolist.
782
783 * subr.el (defvar-local): Add debug spec and doc-string position.
784
785 2012-05-08 Glenn Morris <rgm@gnu.org>
786
787 * lisp/language/burmese.el, language/cham.el, language/czech.el:
788 * language/english.el, language/georgian.el, language/greek.el:
789 * language/japanese.el, language/khmer.el, language/korean.el:
790 * language/lao.el, language/misc-lang.el, language/romanian.el:
791 * language/sinhala.el, language/slovak.el, language/tai-viet.el:
792 * language/thai.el, language/utf-8-lang.el:
793 Remove no-byte-compile setting.
794
795 * play/zone.el (zone-pgm-stress): Don't pollute kill-ring. (Bug#11388)
796
797 2012-05-08 Aaron S. Hawley <aaron.s.hawley@gmail.com>
798
799 * progmodes/make-mode.el (makefile-browse):
800 Remove unnecessary interactive. (Bug#11324)
801
802 2012-05-07 Glenn Morris <rgm@gnu.org>
803
804 * forms-d2.el, forms-pass.el: Move to ../etc/forms directory.
805
806 * international/mule.el (find-auto-coding): Make "unibyte: t" obsolete.
807
808 2012-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
809
810 * loadup.el: Preload newcomment.el.
811 * newcomment.el: Move autoload-only code to toplevel.
812
813 * buff-menu.el (list-buffers--refresh): Mark `size' as right-align.
814 * emacs-lisp/tabulated-list.el (tabulated-list-init-header):
815 Handle new :right-align column property.
816 (tabulated-list-print-col): Idem, plus use `display' text-property to
817 try and preserve alignment for variable pitch fonts.
818
819 2012-05-07 Chong Yidong <cyd@gnu.org>
820
821 * emacs-lisp/tabulated-list.el: Add no-header-line alternative.
822 (tabulated-list-use-header-line): New var.
823 (tabulated-list-init-header): Use it.
824 (tabulated-list-print-fake-header): New function.
825 (tabulated-list-print): Use it.
826 (tabulated-list-sort-button-map): Add non-header-line commands.
827 (tabulated-list-init-header): Add column name property to basic
828 labels as well.
829 (tabulated-list-col-sort): Handle non-header-line button case.
830 (tabulated-list--sort-by-column-name): Fix a corner case.
831
832 * buff-menu.el (list-buffers--refresh):
833 Handle Buffer-menu-use-header-line.
834
835 2012-05-06 Chong Yidong <cyd@gnu.org>
836
837 * buff-menu.el: Convert to Tabulated List mode.
838 (Buffer-menu-buffer+size-width): Make obsolete.
839 (Buffer-menu-name-width, Buffer-menu-size-width): New variables.
840 (Buffer-menu-mode-map): Inherit from tabulated-list-mode-map.
841 (Buffer-menu-mode): Derive from tabulated-list-mode. Move command
842 documentation into docstring of buffer-menu.
843 (Buffer-menu-toggle-files-only): Add an informative message.
844 (Buffer-menu-sort): Convert to alias for tabulated-list-sort.
845 (Buffer-menu-buffer, Buffer-menu-beginning, Buffer-menu-mark)
846 (Buffer-menu-unmark, Buffer-menu-backup-unmark)
847 (Buffer-menu-delete, Buffer-menu-save, Buffer-menu-not-modified)
848 (Buffer-menu-execute, Buffer-menu-select)
849 (Buffer-menu-marked-buffers, Buffer-menu-toggle-read-only)
850 (Buffer-menu-bury): Use Tabulated List machinery.
851 (Buffer-menu-mouse-select, Buffer-menu-sort-by-column)
852 (Buffer-menu-sort-button-map, Buffer-menu-make-sort-button):
853 Delete.
854 (list-buffers--refresh): New function.
855 (list-buffers-noselect): Use it.
856 (tabulated-list-entry-size->, Buffer-menu--pretty-name)
857 (Buffer-menu--pretty-file-name): New helper functions.
858
859 * loadup.el: Preload tabulated-list.
860
861 * emacs-lisp/tabulated-list.el (tabulated-list-sort): Rename from
862 tabulated-list-sort-column.
863 (tabulated-list-init-header): Add the initial aligning space even
864 if tabulated-list-padding is zero.
865
866 2012-05-06 Christopher Schmidt <christopher@ch.ristopher.com>
867
868 * emacs-lisp/cl-macs.el (cl-expr-contains): Handle cons cells
869 whose cdr is not a cons cell correctly (bug#11038).
870
871 2012-05-06 Chong Yidong <cyd@gnu.org>
872
873 * emacs-lisp/tabulated-list.el (tabulated-list-format):
874 Accept additional plist in column descriptors.
875 (tabulated-list-init-header): Obey it.
876 (tabulated-list-get-entry): New function.
877 (tabulated-list-put-tag): Use it. Use string-width instead of
878 length.
879 (tabulated-list--column-number): New function.
880 (tabulated-list-print): Use it.
881 (tabulated-list-print-col): New function.
882 Set `tabulated-list-column-name' property on each column's text.
883 (tabulated-list-print-entry): Use it.
884 (tabulated-list-delete-entry, tabulated-list-set-col):
885 New functions.
886 (tabulated-list-sort-column): New command (Bug#11337).
887
888 * buff-menu.el (list-buffers): Move C-x C-b binding from
889 buff-menu.el to bindings.el.
890
891 * ebuff-menu.el (Electric-buffer-menu-undefined): Use the
892 :advertised-binding feature.
893
894 2012-05-06 Troels Nielsen <bn.troels@gmail.com> (tiny change)
895
896 * progmodes/compile.el (compilation-internal-error-properties):
897 Calculate start position correctly when end-col is set but
898 end-line is not (Bug#11382).
899
900 2012-05-06 Wolfgang Jenkner <wjenkner@inode.at>
901
902 * man.el (Man-unindent): Use text-property-default-nonsticky to
903 prevent untabify from inheriting face properties (Bug#11408).
904
905 2012-05-05 Stefan Merten <smerten@oekonux.de>
906
907 * textmodes/rst.el: Major merge with upstream development up to
908 Docutils SVN r7399 / rst.el V1.2.1.
909
910 Clarify maintainership and authors.
911
912 (rst-extract-version, rst-cvs-header, rst-cvs-rev)
913 (rst-cvs-timestamp, rst-svn-rev, rst-svn-timestamp)
914 (rst-official-version, rst-official-cvs-rev, rst-version)
915 (rst-package-emacs-version-alist): New functions and variables
916 for version information.
917
918 (rst-bullets, rst-uri-schemes, rst-adornment-chars)
919 (rst-max-inline-length, rst-re-alist-def, rst-re-alist)
920 (rst-mode-syntax-table, rst-mode): New and corrected functions
921 and variables representing reStructuredText features.
922
923 (rst-re): New function for reStructuredText regexes. Use in
924 many places.
925
926 (rst-deprecated-keys, rst-call-deprecated, rst-define-key)
927 (rst-mode-map): Rebind keys.
928
929 (rst-mode-lazy, rst-font-lock-keywords)
930 (rst-font-lock-extend-region)
931 (rst-font-lock-extend-region-internal)
932 (rst-font-lock-extend-region-extend)
933 (rst-font-lock-find-unindented-line-limit)
934 (rst-font-lock-find-unindented-line-match)
935 (rst-adornment-level, rst-font-lock-adornment-level)
936 (rst-font-lock-adornment-match)
937 (rst-font-lock-handle-adornment-pre-match-form)
938 (rst-font-lock-handle-adornment-matcher): Major revision of
939 font-locking. Integrate with other code. Use `jit-lock-mode'.
940
941 (rst-preferred-adornments, rst-adjust-hook)
942 (rst-new-adornment-down, rst-preferred-bullets)
943 (rst-preferred-bullets, rst-indent, rst-indent-width)
944 (rst-indent-field, rst-indent-literal-normal)
945 (rst-indent-literal-minimized, rst-indent-comment): Change,
946 extend and improve customization.
947
948 (rst-line-homogeneous-p, rst-line-homogeneous-nodent-p)
949 (rst-normalize-cursor-position, rst-get-decoration)
950 (rst-straighten-deco-spacing, rst-re-bullets, rst-re-items)
951 (rst-rstrip, rst-toc-insert-find-delete-contents)
952 (rst-shift-fill-region, rst-compute-bullet-tabs)
953 (rst-debug-print-tabs, rst-debug-mark-found)
954 (rst-shift-region-guts, rst-shift-region-right)
955 (rst-shift-region-left, rst-use-char-classes)
956 (rst-font-lock-keywords-function)
957 (rst-font-lock-indentation-point)
958 (rst-font-lock-find-unindented-line-begin)
959 (rst-font-lock-find-unindented-line-end)
960 (rst-font-lock-find-unindented-line)
961 (rst-font-lock-adornment-point, rst-font-lock-level)
962 (rst-adornment-level-alist): Remove functions and variables.
963
964 (rst-compare-adornments, rst-get-adornment-match)
965 (rst-suggest-new-adornment, rst-get-adornments-around)
966 (rst-adornment-complete-p, rst-get-next-adornment)
967 (rst-adjust-adornment, rst-display-adornments-hierarchy)
968 (rst-straighten-adornments): Standardize function names to
969 use "adornment" instead of "decoration". Correct callers.
970 Similar standardizing in many places.
971
972 (rst-update-section, rst-adjust, rst-promote-region)
973 (rst-enumerate-region, rst-bullet-list-region)
974 (rst-repeat-last-character): Correct use of `interactive'.
975
976 (rst-classify-adornment, rst-find-all-adornments)
977 (rst-get-hierarchy, rst-adjust-adornment, rst-toc-update)
978 (rst-find-leftmost-column, rst-repeat-last-character):
979 Refactor functions.
980
981 (rst-find-title-line, rst-reset-section-caches)
982 (rst-get-adornments-around, rst-adjust-adornment-work)
983 (rst-arabic-to-roman, rst-roman-to-arabic)
984 (rst-insert-list-pos, rst-insert-list-new-item)
985 (rst-insert-list-continue, rst-insert-list, rst-forward-line):
986 New functions.
987
988 (rst-all-sections, rst-section-hierarchy)
989 (rst-arabic-to-roman, rst-initial-enums, rst-initial-items):
990 New variables.
991
992 (rst-toc-return-wincfg, rst-toc-quit-window): Use window
993 configuration instead of only buffer. Change where necessary.
994
995 (rst-line-tabs, rst-compute-tabs, rst-indent-line)
996 (rst-shift-region, rst-adaptive-fill): New functions for
997 indentation and filling.
998
999 (rst-comment-line-break, rst-comment-indent)
1000 (rst-comment-insert-comment, rst-comment-region)
1001 (rst-uncomment-region): New functions for handling comments.
1002
1003 (rst-compile): Quote shell arguments.
1004
1005 (rst-compile-pdf-preview, rst-compile-slides-preview):
1006 Delete temporary files after use.
1007
1008 2012-05-05 Glenn Morris <rgm@gnu.org>
1009
1010 * calendar/cal-html.el: Optionally include holidays in the output.
1011 Suggested by Ed Reingold <reingold@emr.cs.iit.edu>.
1012 (cal-html-holidays): New option.
1013 (cal-html-css-default): Add holiday entry.
1014 (holiday-in-range): Autoload it.
1015 (cal-html-htmlify-entry): Add optional class argument.
1016 (cal-html-htmlify-list): Add optional holidays argument.
1017 (cal-html-insert-agenda-days): Include holidays in the output.
1018 (cal-html-one-month): Maybe include holidays.
1019
1020 * calendar/holidays.el (holiday-in-range):
1021 Move here from cal-tex-list-holidays.
1022 * calendar/cal-tex.el (cal-tex-list-holidays):
1023 Make it an obsolete alias for holiday-in-range. Update all callers.
1024
1025 2012-05-05 Chong Yidong <cyd@gnu.org>
1026
1027 * select.el (xselect--encode-string): Always use utf-8 for TEXT on
1028 Nextstep.
1029
1030 2012-05-05 Ransom Williams <auvergnerw@gmail.com> (tiny change)
1031
1032 * files.el (file-auto-mode-skip): New var.
1033 (set-auto-mode-1): Use it.
1034
1035 2012-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
1036
1037 * repeat.el: Use lexical-binding.
1038 (repeat-last-self-insert, repeat-num-input-keys-at-self-insert)
1039 (repeat-undo-count): Remove.
1040 (repeat):
1041 * progmodes/octave-mod.el (octave-abbrev-start):
1042 * progmodes/f90.el (f90-abbrev-start):
1043 * face-remap.el (text-scale-adjust):
1044 * kmacro.el (kmacro-call-macro): Use set-temporary-overlay-map.
1045
1046 * emacs-lisp/pcase.el (pcase--let*): New function.
1047 (pcase--expand, pcase-codegen, pcase--q1): Use it to reduce nesting
1048 a bit more.
1049 (pcase--split-pred): Be more clever about ruling out overlap between
1050 a predicate and some constant pattern.
1051 (pcase--q1): Use `null' instead of (eq foo nil).
1052
1053 * subr.el (setq-local, defvar-local): New macros.
1054 (kbd): Redefine as an alias.
1055 (with-selected-window): Leave unrelated frames alone.
1056 (set-temporary-overlay-map): New function.
1057
1058 2012-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
1059
1060 * subr.el (user-error): New function.
1061 * window.el (switch-to-buffer):
1062 * vc/smerge-mode.el (smerge-resolve-function, smerge-resolve)
1063 (smerge-match-conflict):
1064 * simple.el (previous-matching-history-element)
1065 (next-matching-history-element, goto-history-element, undo-more)
1066 (undo-start):
1067 * progmodes/etags.el (visit-tags-table-buffer, find-tag-tag)
1068 (find-tag-noselect, find-tag-in-order, etags-goto-tag-location)
1069 (next-file, tags-loop-scan, list-tags, complete-tag):
1070 * progmodes/compile.el (compilation-loop):
1071 * mouse.el (mouse-minibuffer-check):
1072 * man.el (Man-bgproc-sentinel, Man-goto-page):
1073 * info.el (Info-find-node-2, Info-extract-pointer, Info-history-back)
1074 (Info-history-forward, Info-follow-reference, Info-menu)
1075 (Info-extract-menu-item, Info-extract-menu-counting)
1076 (Info-forward-node, Info-backward-node, Info-next-menu-item)
1077 (Info-last-menu-item, Info-next-preorder, Info-last-preorder)
1078 (Info-next-reference, Info-prev-reference, Info-index)
1079 (Info-index-next, Info-follow-nearest-node)
1080 (Info-copy-current-node-name):
1081 * imenu.el (imenu--make-index-alist)
1082 (imenu-default-create-index-function, imenu-add-to-menubar):
1083 * files.el (basic-save-buffer, recover-file):
1084 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
1085 * emacs-lisp/checkdoc.el (checkdoc-continue, checkdoc-comments)
1086 (checkdoc-message-text, checkdoc-defun):
1087 * dabbrev.el (dabbrev-completion, dabbrev--abbrev-at-point):
1088 * cus-edit.el (customize-changed-options, customize-rogue)
1089 (customize-saved, custom-variable-set, custom-variable-mark-to-save)
1090 (custom-variable-mark-to-reset-standard)
1091 (custom-variable-reset-backup, custom-face-mark-to-reset-standard)
1092 (custom-file):
1093 * completion.el (check-completion-length):
1094 * comint.el (comint-search-arg)
1095 (comint-previous-matching-input-string-position)
1096 (comint-previous-matching-input)
1097 (comint-replace-by-expanded-history-before-point, comint-send-input)
1098 (comint-copy-old-input, comint-backward-matching-input)
1099 (comint-goto-process-mark, comint-set-process-mark):
1100 * calendar/calendar.el (calendar-cursor-to-date): Use it.
1101 * bindings.el (debug-ignored-errors): Remove regexps, add `user-error'.
1102
1103 2012-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
1104
1105 * dabbrev.el (dabbrev--ignore-case-p): New function.
1106 (dabbrev-completion, dabbrev-expand, dabbrev--substitute-expansion):
1107 Use it.
1108
1109 * files.el (automount-dir-prefix): Mark as obsolete.
1110
1111 2012-05-04 Glenn Morris <rgm@gnu.org>
1112
1113 * patcomp.el, play/bruce.el: Move to obsolete/.
1114
1115 2012-05-04 Paul Eggert <eggert@cs.ucla.edu>
1116
1117 Fix minor Y10k bugs.
1118 * arc-mode.el (archive-unixdate):
1119 * autoinsert.el (auto-insert-alist):
1120 * calc/calc-forms.el (math-this-year):
1121 * emacs-lisp/copyright.el (copyright-current-year)
1122 (copyright-update-year, copyright):
1123 * tar-mode.el (tar-clip-time-string):
1124 * time.el (display-time-update):
1125 Don't assume years have 4 digits.
1126
1127 2012-05-04 Chong Yidong <cyd@gnu.org>
1128
1129 * dos-w32.el (file-name-buffer-file-type-alist)
1130 (direct-print-region-use-command-dot-com):
1131 * ffap.el (ffap-menu-regexp):
1132 * find-file.el (ff-special-constructs):
1133 * follow.el (follow-debug):
1134 * forms.el (forms--debug):
1135 * iswitchb.el (iswitchb-all-frames):
1136 * ido.el (ido-all-frames):
1137 * emacs-lisp/timer.el (timer-max-repeats):
1138 * mail/feedmail.el (feedmail-mail-send-hook)
1139 (feedmail-mail-send-hook-queued):
1140 * mail/footnote.el (footnote-signature-separator):
1141 * mail/mailabbrev.el (mail-alias-separator-string)
1142 (mail-abbrev-mode-regexp):
1143 * mail/rmail.el (rmail-speedbar-match-folder-regexp):
1144 * progmodes/idlwave.el (idlwave-libinfo-file)
1145 (idlwave-default-completion-case-is-down)
1146 (idlwave-library-routines): Convert defvars to defcustoms.
1147
1148 * mail/rmail.el (rmail-decode-mime-charset):
1149 * progmodes/idlw-shell.el (idlwave-shell-print-expression-function)
1150 (idlwave-shell-fix-inserted-breaks)
1151 (idlwave-shell-activate-alt-keybindings)
1152 (idlwave-shell-use-breakpoint-glyph):
1153 * facemenu.el (facemenu-unlisted-faces): Delete obsolete vars.
1154
1155 2012-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
1156
1157 * minibuffer.el (completion--twq-all): Beware completion-ignore-case.
1158
1159 2012-05-03 Wilson Snyder <wsnyder@wsnyder.org>
1160
1161 * progmodes/verilog-mode.el (font-lock-keywords):
1162 Fix mis-highligting auto. Reported by Craig Barner.
1163 (verilog-auto, verilog-auto-undef): Add AUTOUNDEF to remove
1164 defines from global name space. Reported by Dan Dever.
1165 (verilog-auto-reset, verilog-auto-reset-widths)
1166 (verilog-auto-tieoff): Support using unbased numbers for
1167 AUTORESET and AUTOTIEOFF.
1168 (verilog-submit-bug-report): Update variable list.
1169 (verilog-read-auto-params): Fix AUTOINPUT regexps containing
1170 parenthesis from not matching. Reported by Michael Rytting.
1171 (verilog-auto-template-lint): Fix hash error when linting modules
1172 with no used templates.
1173 (verilog-warn, verilog-warn-error)
1174 (verilog-warn-fatal): When non-interactive report multiple
1175 warnings before exiting. Suggested by Brad Dobbie.
1176 (verilog-auto-template-lint, verilog-auto-template-warn-unused)
1177 (verilog-read-auto-template): Add `verilog-auto-template-warn-unused'
1178 to report unused template errors. Reported by Brad Dobbie.
1179 (verilog-read-decls): Fix AUTOWIRE etc on supply0, supply1 type
1180 nets, bug438. Reported by Vns Blore.
1181 (verilog-auto-inout-module, verilog-auto-reg)
1182 (verilog-read-decls, verilog-read-sub-decls-sig)
1183 (verilog-signals-edit-wire-reg, verilog-signals-with):
1184 Fix passing of Verilog data types in ANSI input/output ports
1185 such as "output logic" into the AUTOs. Special case "wire" and
1186 "reg" for backwards compatibility presuming Verilog 2001.
1187 (verilog-auto-ascii-enum): Add "auto enum" as alias.
1188 (verilog-preprocess): Fix replication of preprocess output.
1189 Reported by Brad Dobbie.
1190 (verilog-auto-inst-interfaced-ports):
1191 Create verilog-auto-inst-interfaced-ports, bug429.
1192 Reported by Julian Gorfajn.
1193 (verilog-after-save-font-hook)
1194 (verilog-before-save-font-hook): New variable.
1195 (verilog-modi-cache-results, verilog-save-font-mod-hooked)
1196 (verilog-save-font-mods): Wrap disabling fontification, reported
1197 by David Rogoff.
1198 (verilog-do-indent, verilog-pretty-declarations-auto)
1199 (verilog-sk-def-reg): Fix obeying `verilog-auto-lineup', bug305.
1200 Reported by Pierre-David Pfister.
1201 (verilog-set-auto-endcomments): Fix endtask auto comments outside
1202 of class declarations, bug292. Reported by Kevin Heilman.
1203 (verilog-read-decls): Fix 'parameter type' not appearing in
1204 AUTOINSTPARAM, bug340. Reported by Jonathan Greenlaw.
1205 (verilog-auto-logic): Fix when AUTOLOGIC present to properly do
1206 AUTOINPUTs, bug411. Reported by Jonathan Greenlaw.
1207 (verilog-read-auto-lisp): Avoid syntax-ppss warning on AUTOLISP.
1208 Reported by David Kravitz.
1209
1210 2012-05-03 Michael McNamara <mac@mail.brushroad.com>
1211
1212 * progmodes/verilog-mode.el (verilog-pretty-expr): Don't line up
1213 assignment with tests in ifs and for loops.
1214 (verilog-extended-complete-re, verilog-complete-reg): Change so
1215 that DPI inport functions don't look like fuction declarations.
1216 (verilog-pretty-expr): Don't line up assignment
1217 operations to the test and increment in if and for loops
1218 (verilog-extended-complete-re, verilog-complete-reg): Change so
1219 that DPI inport functions don't look like fuction declarations
1220
1221 2012-05-03 Kenichi Handa <handa@m17n.org>
1222
1223 * mail/rmailmm.el (rmail-show-mime): Catch an error caused by text
1224 decoding, and show a warning message without signaling an error
1225 (Bug#11282).
1226
1227 2012-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
1228
1229 * emacs-lisp/bytecomp.el
1230 (byte-compile-file-form-custom-declare-variable): Compile all elements,
1231 since cconv.el might have introduced :fun-body, internal-make-closure,
1232 and friends for bytecomp to handle (bug#11391).
1233 * custom.el (defcustom): Avoid ((λ ..) ..).
1234
1235 2012-05-02 Stefan Monnier <monnier@iro.umontreal.ca>
1236
1237 * subr.el (read-passwd): Better clean after ourselves (bug#11392).
1238
1239 2012-05-02 Juanma Barranquero <lekktu@gmail.com>
1240
1241 * notifications.el (dbus-debug):
1242 * term/linux.el (gpm-mouse-enable):
1243 * term/screen.el (xterm-register-default-colors): Declare.
1244
1245 2012-05-02 Chong Yidong <cyd@gnu.org>
1246
1247 * cus-start.el (gc-cons-percentage, exec-suffixes)
1248 (dos-display-scancodes, dos-hyper-key, dos-super-key)
1249 (dos-keypad-mode, debug-on-signal, vertical-centering-font-regexp)
1250 (make-cursor-line-fully-visible, void-text-area-pointer)
1251 (font-list-limit): Add customization data.
1252
1253 * allout.el (allout-exposure-change-functions)
1254 (allout-structure-added-functions)
1255 (allout-structure-deleted-functions)
1256 (allout-structure-shifted-functions): Rename abnormal hooks from
1257 *-hook, and convert to defcustoms.
1258 (allout-after-copy-or-kill-hook, allout-post-undo-hook):
1259 Convert to defcustoms.
1260 (allout-mode-hook, allout-mode-deactivate-hook): Doc fix.
1261
1262 * allout-widgets.el: Hook callers changed.
1263
1264 2012-05-02 Eli Zaretskii <eliz@gnu.org>
1265
1266 * mail/rmail.el (rmail-yank-current-message): Use the encoding of
1267 the yanked message in preference to the default value of
1268 buffer-file-coding-system.
1269
1270 2012-05-02 Martin Rudalics <rudalics@gmx.at>
1271
1272 * window.el (display-buffer--action-function-custom-type):
1273 Fix entry.
1274
1275 2012-05-02 Alan Mackenzie <acm@muc.de>
1276
1277 * progmodes/cc-defs.el (c-version): Update to 5.32.3.
1278
1279 2012-05-01 Glenn Morris <rgm@gnu.org>
1280
1281 * cus-start.el (suggest-key-bindings): Remove, now it is in Lisp.
1282
1283 * eshell/esh-cmd.el (eshell-debug-command): Doc fix. Add :set.
1284
1285 * cus-edit.el (custom-variable-documentation): Simplify with format.
1286
1287 2012-05-01 Aaron S. Hawley <aaron.s.hawley@gmail.com>
1288 Stefan Monnier <monnier@iro.umontreal.ca>
1289
1290 * simple.el (suggest-key-bindings, execute-extended-command):
1291 Move from keyboard.c.
1292
1293 2012-05-01 Chong Yidong <cyd@gnu.org>
1294
1295 * follow.el: Eliminate advice.
1296 (set-process-filter, process-filter, sit-for): Advice deleted.
1297 (follow-mode-off-hook): Obsolete hook removed.
1298 (follow-avoid-tail-recenter-p, follow-process-filter-alist):
1299 Vars deleted.
1300 (follow-auto): Use a :set function.
1301 (follow-mode): Rewritten. Don't advise process filters.
1302 (follow-switch-to-current-buffer-all, follow-scroll-up)
1303 (follow-scroll-down): Assume follow-mode is bound.
1304 (follow-comint-scroll-to-bottom)
1305 (follow-align-compilation-windows): New functions.
1306 (follow--window-sorter): New function.
1307 (follow-all-followers): Use it to explicitly sort windows by their
1308 positions; don't make assumptions about next-window order.
1309 (follow-windows-start-end, follow-delete-other-windows-and-split)
1310 (follow-calc-win-start): Doc fix.
1311 (follow-windows-aligned-p, follow-select-if-visible): Don't call
1312 vertical-motion unnecessarily.
1313 (follow-adjust-window): New function.
1314 (follow-post-command-hook): Use it.
1315 (follow-call-set-process-filter, follow-call-process-filter)
1316 (follow-intercept-process-output, follow-tidy-process-filter-alist)
1317 (follow-stop-intercept-process-output, follow-generic-filter):
1318 Functions deleted.
1319 (follow-scroll-bar-toolkit-scroll, follow-scroll-bar-drag)
1320 (follow-scroll-bar-scroll-up, follow-scroll-bar-scroll-down):
1321 New functions, replacing advice on scroll-bar-* commands.
1322 (follow-mwheel-scroll): New function (Bug#4112).
1323
1324 * comint.el (comint-adjust-point): New function.
1325 (comint-postoutput-scroll-to-bottom): Use it.
1326 Call follow-comint-scroll-to-bottom for Follow mode buffers.
1327
1328 2012-05-01 Glenn Morris <rgm@gnu.org>
1329
1330 * term/AT386.el, term/apollo.el, term/bobcat.el, term/cygwin.el:
1331 * term/iris-ansi.el, term/linux.el, term/lk201.el, term/news.el:
1332 * term/screen.el, term/vt102.el, term/vt125.el, term/vt200.el:
1333 * term/vt201.el, term/vt220.el, term/vt240.el, term/vt300.el:
1334 * term/vt320.el, term/vt400.el, term/vt420.el, term/wyse50.el:
1335 Remove no-byte-compile setting.
1336
1337 2012-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
1338
1339 * minibuffer.el (completion-table-with-quoting): Fix compatibility
1340 all-completions code to not return a number in the last cdr.
1341
1342 2012-04-30 Leo Liu <sdl.web@gmail.com>
1343
1344 * ibuf-ext.el (ibuffer-diff-buffer-with-file-1): Avoid buffer
1345 read-only error.
1346
1347 2012-04-29 Chong Yidong <cyd@gnu.org>
1348
1349 * follow.el (follow-calc-win-end): Rewrite to handle partial
1350 screen lines correctly (Bug#8390).
1351 (follow-avoid-tail-recenter): Minor cleanup.
1352
1353 2012-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
1354
1355 Avoid the obsolete `assoc' package.
1356 * speedbar.el (speedbar-refresh): Avoid adelete.
1357 (speedbar-file-lists): Simplify and avoid aput.
1358 * man.el (Man--sections, Man--refpages): New vars, replacing
1359 Man-sections-alist and Man-refpages-alist.
1360 (Man-build-section-alist, Man-build-references-alist):
1361 Use them; avoid aput.
1362 (Man--last-section, Man--last-refpage): New vars.
1363 (Man-follow-manual-reference): Use them.
1364 Use the `default' arg of completing-read.
1365 (Man-goto-section): Idem. Move prompt to the `interactive' spec.
1366
1367 2012-04-27 Chong Yidong <cyd@gnu.org>
1368
1369 * vc/diff.el (diff-sentinel): Go to bob (Bug#10259).
1370
1371 * startup.el (x-apply-session-resources): New function.
1372
1373 * term/ns-win.el (ns-initialize-window-system):
1374 * term/w32-win.el (w32-initialize-window-system):
1375 * term/x-win.el (x-initialize-window-system): Use it to properly
1376 set menu-bar-mode and other vars from X resources, even if the
1377 initial frame is not a window-system frame (Bug#2299).
1378
1379 * subr.el (read-key): Avoid running filter function when setting
1380 up temporary tool bar entries (Bug#9922).
1381
1382 2012-04-27 Andreas Schwab <schwab@linux-m68k.org>
1383
1384 * vc/vc-git.el (vc-git-state): Fix regexp matching diff output.
1385 (Bug#11344)
1386
1387 2012-04-27 Chong Yidong <cyd@gnu.org>
1388
1389 * select.el (xselect--encode-string): New function, split from
1390 xselect-convert-to-string.
1391 (xselect-convert-to-string): Use it.
1392 (xselect-convert-to-filename, xselect-convert-to-os)
1393 (xselect-convert-to-host, xselect-convert-to-user): Ensure that
1394 returned strings are properly encoded (Bug#11315).
1395
1396 2012-04-27 Chong Yidong <cyd@gnu.org>
1397
1398 * simple.el (delete-active-region): Move to killing custom group.
1399
1400 2012-04-27 Andreas Schwab <schwab@linux-m68k.org>
1401
1402 * progmodes/which-func.el (which-func-current): Quote %
1403 characters for mode-line processing.
1404
1405 2012-04-27 Chong Yidong <cyd@gnu.org>
1406
1407 * xml.el (xml-parse-region, xml-parse-tag): Avoid errors due to
1408 reaching eob (Bug#11286).
1409
1410 2012-04-27 Eli Zaretskii <eliz@gnu.org>
1411
1412 * progmodes/gdb-mi.el (gdb-control-level): New variable.
1413 (gdb): Make it buffer-local and init to zero.
1414 (gdb-control-commands-regexp): New variable.
1415 (gdb-send): Don't wrap in "-interpreter-exec console" if
1416 gdb-control-level is positive. Increment gdb-control-level
1417 whenever the command matches gdb-control-commands-regexp, and
1418 decrement it each time the command is "end". (Bug#11279)
1419
1420 2012-04-27 Martin Rudalics <rudalics@gmx.at>
1421
1422 * window.el (adjust-window-trailing-edge, enlarge-window)
1423 (shrink-window, window-resize):
1424 * mouse.el (mouse-drag-line): Fix resizing of minibuffer
1425 windows (Bug#11276).
1426
1427 2012-04-27 Chong Yidong <cyd@gnu.org>
1428
1429 * progmodes/pascal.el (pascal--extra-indent): Rename from ind, to
1430 fix "missing prefix" warning. All callers changed.
1431
1432 2012-04-27 Stefan Monnier <monnier@iro.umontreal.ca>
1433
1434 * emacs-lisp/assoc.el: Move to obsolete/.
1435
1436 2012-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
1437
1438 * emacs-lisp/assoc.el (aget): Fix dynamic-scoping issue (bug#11352).
1439
1440 * term/ns-win.el (ns-define-service):
1441 * progmodes/pascal.el (pascal-goto-defun):
1442 * progmodes/js.el (js--read-tab):
1443 * progmodes/etags.el (tags-lazy-completion-table):
1444 * emacs-lisp/syntax.el (syntax-propertize-via-font-lock):
1445 * emacs-lisp/ewoc.el (ewoc--wrap):
1446 * emacs-lisp/assoc.el (aput, adelete, amake):
1447 * doc-view.el (doc-view-convert-current-doc):
1448 * vc/diff.el (diff-no-select): Replace lexical-let by lexical-binding.
1449
1450 2012-04-26 Chong Yidong <cyd@gnu.org>
1451
1452 * image.el (image-type-from-buffer): Only return supported image
1453 type (Bug#9045).
1454
1455 * vc/diff-mode.el (diff-beginning-of-hunk): Return a meaningful
1456 value, for symmetry with diff-end-of-hunk.
1457 (diff-split-hunk, diff-find-source-location)
1458 (diff-ignore-whitespace-hunk, diff-refine-hunk): Use it.
1459 (diff-bounds-of-hunk, diff-bounds-of-file): New functions.
1460 (diff-restrict-view, diff-hunk-kill, diff-file-kill): Use them to
1461 compute the relevant hunk or file properly (Bug#6005).
1462 (diff-file-junk-re): Add bzr's "modified file" tag (Bug#6041).
1463
1464 2012-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
1465
1466 * vc/vc-mtn.el:
1467 * vc/vc-hg.el:
1468 * vc/vc-git.el:
1469 * vc/vc-dir.el:
1470 * vc/vc-cvs.el:
1471 * vc/vc-bzr.el:
1472 * vc/vc-arch.el:
1473 * vc/vc.el: Replace lexical-let by lexical-binding.
1474 * minibuffer.el (lazy-completion-table): Avoid ((λ ...) ...).
1475 * emacs-lisp/cl-macs.el (lexical-let): Fix use in lexical-binding.
1476 * emacs-lisp/cconv.el (cconv-analyse-form): Warn use of ((λ ...) ...).
1477
1478 2012-04-26 Chong Yidong <cyd@gnu.org>
1479
1480 * vc/diff-mode.el (diff-undo): New command (Bug#5302).
1481 (diff-mode-shared-map): Bind it to / and [remap undo].
1482
1483 * vc/ediff-wind.el (ediff-setup-windows-default): New function.
1484 (ediff-window-setup-function): Use it as the default, to set up
1485 windows based on whether the current frame is graphical (Bug#2138).
1486 (ediff-choose-window-setup-function-automatically): Make obsolete.
1487
1488 * vc/ediff-init.el: Always define ediff-pixel-width/height.
1489
1490 2012-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
1491
1492 * ffap.el: Remove old code for obsolete package.
1493 (ffap-complete-as-file-p): Remove.
1494
1495 Use completion-table-with-quoting for comint and pcomplete.
1496 * comint.el (comint--unquote&requote-argument)
1497 (comint--unquote-argument, comint--requote-argument): New functions.
1498 (comint--unquote&expand-filename, comint-unquote-filename): Obsolete.
1499 (comint-quote-filename): Use regexp-opt-charset.
1500 (comint--common-suffix, comint--common-quoted-suffix)
1501 (comint--table-subvert): Remove.
1502 (comint-unquote-function, comint-requote-function): New vars.
1503 (comint--complete-file-name-data): Use them with
1504 completion-table-with-quoting.
1505 * pcmpl-unix.el (pcomplete/scp): Use completion-table-subvert.
1506 * pcomplete.el (pcomplete-arg-quote-list)
1507 (pcomplete-quote-arg-hook, pcomplete-quote-argument): Obsolete.
1508 (pcomplete-unquote-argument-function): Default to non-nil.
1509 (pcomplete-unquote-argument): Simplify.
1510 (pcomplete--common-quoted-suffix): Remove.
1511 (pcomplete-requote-argument-function): New var.
1512 (pcomplete--common-suffix): New function.
1513 (pcomplete-completions-at-point): Use completion-table-with-quoting
1514 and completion-table-subvert.
1515
1516 * minibuffer.el: Use completion-table-with-quoting for read-file-name.
1517 (minibuffer--double-dollars): Preserve properties.
1518 (completion--sifn-requote): New function.
1519 (completion--file-name-table): Rewrite using it and c-t-with-quoting.
1520
1521 * minibuffer.el: Add support for completion of quoted/escaped data.
1522 (completion-table-with-quoting, completion-table-subvert): New funs.
1523 (completion--twq-try, completion--twq-all): New functions.
1524 (completion--nth-completion): New function.
1525 (completion-try-completion, completion-all-completions): Use it.
1526
1527 2012-04-25 Leo Liu <sdl.web@gmail.com>
1528
1529 * progmodes/python.el (python-pdbtrack-get-source-buffer):
1530 Use compilation-message if available to find real filename.
1531
1532 2012-04-25 Chong Yidong <cyd@gnu.org>
1533
1534 * vc/diff-mode.el (diff-setup-whitespace): New function.
1535 (diff-mode): Use it.
1536
1537 * vc/diff.el (diff-sentinel):
1538 * vc/vc.el (vc-diff-finish): Call diff-setup-whitespace to assign
1539 Whitespace mode variables based on diff style (Bug#8612).
1540
1541 2012-04-25 Leo Liu <sdl.web@gmail.com>
1542
1543 * progmodes/python.el (python-send-region): Add suffix .py to the
1544 temp file.
1545
1546 * files.el (auto-mode-alist): Use javascript-mode instead.
1547
1548 2012-04-25 Alex Harsanyi <AlexHarsanyi@gmail.com>
1549
1550 Sync with soap-client repository. Support SOAP simpleType (Bug#10331).
1551
1552 * soap-client.el (soap-resolve-references-for-sequence-type)
1553 (soap-resolve-references-for-array-type): Hack to prevent self
1554 references, see Bug#9.
1555 (soap-parse-envelope): Report the contents of the 'detail' node
1556 when receiving a fault reply.
1557 (soap-parse-envelope): Report the contents of the entire 'detail' node.
1558
1559 * soap-inspect.el (soap-sample-value-for-simple-type)
1560 (soap-inspect-simple-type): New function.
1561
1562 * soap-client.el (soap-simple-type): New struct.
1563 (soap-default-xsd-types, soap-default-soapenc-types)
1564 (soap-decode-basic-type, soap-encode-basic-type):
1565 support unsignedInt and double basic types.
1566 (soap-resolve-references-for-simple-type)
1567 (soap-parse-simple-type, soap-encode-simple-type): New function.
1568 (soap-parse-schema): Parse xsd:simpleType declarations.
1569
1570 * soap-client.el (soap-default-xsd-types)
1571 (soap-default-soapenc-types): Add integer, byte and anyURI types.
1572 (soap-parse-complex-type-complex-content): Use `soap-wk2l' to find
1573 the local name of "soapenc:Array".
1574 (soap-decode-basic-type, soap-encode-basic-type): Support encoding
1575 decoding integer, byte and anyURI xsd types.
1576
1577 2012-04-25 Chong Yidong <cyd@gnu.org>
1578
1579 * cus-edit.el (custom-buffer-create-internal): Update header text.
1580
1581 2012-04-25 Eli Zaretskii <eliz@gnu.org>
1582
1583 * progmodes/gdb-mi.el (gdb-init-1): Condition Windows-specific
1584 settings on 'system-type', not on 'window-system'. On MS-Windows,
1585 set interactive-mode on in GDB.
1586
1587 2012-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
1588
1589 * progmodes/ruby-mode.el: Simplify last change, and cleanup code.
1590 (ruby-syntax-propertize-regexp): Remove.
1591 (ruby-syntax-propertize-function): Split regexp into chunks.
1592 Match following code directly.
1593
1594 2012-04-24 Dmitry Gutov <dgutov@yandex.ru>
1595
1596 * progmodes/ruby-mode.el: Handle Cucumber defs (bug#6286).
1597 (ruby-syntax-propertize-regexp): New function.
1598 (ruby-syntax-propertize-function): Use it to handle regexp not preceded
1599 by a special keyword.
1600
1601 * progmodes/ruby-mode.el: Handle general delimited literals (bug#6286).
1602 (ruby-syntax-general-delimiters-goto-beg)
1603 (ruby-syntax-propertize-general-delimiters): New functions.
1604 (ruby-syntax-propertize-function): Use them to handle GDL.
1605 (ruby-font-lock-keywords): Move old handling of GDL...
1606 (ruby-font-lock-syntactic-keywords): .. to here.
1607 (ruby-calculate-indent): Adjust indentation for GDL.
1608
1609 2012-04-24 Michael Albinus <michael.albinus@gmx.de>
1610
1611 * notifications.el (top): Remove unneeded declarations.
1612 (notifications-specification-version): Change to "1.2".
1613 (notifications-interface, notifications-notify-method)
1614 (notifications-close-notification-method): Fix docstring.
1615 (notifications-get-capabilities-method): New defconst.
1616 (notifications-notify): Add :action-items, :resident and
1617 :transient hints. Change "image_data" to "image-data" and
1618 "image_path" to "image-path".
1619 (notifications-get-capabilities): New defun.
1620
1621 2012-04-24 Leo Liu <sdl.web@gmail.com>
1622
1623 * progmodes/python.el: Move hideshow setup to the end.
1624
1625 2012-04-24 Martin Rudalics <rudalics@gmx.at>
1626
1627 * window.el (handle-select-window): Clear echo area since this is
1628 no more done by read_char (Bug#11304).
1629
1630 2012-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
1631
1632 * ibuffer.el (ibuffer-mode-map): Bind `/ m' to filter-used-mode
1633 and `/ M' to filter-derived-mode.
1634 * ibuf-ext.el (ibuffer-list-buffer-modes): Simplify; avoid add-to-list.
1635 (ibuffer-filter-by-mode, ibuffer-filter-by-used-mode)
1636 (ibuffer-mark-by-mode): Use default rather than initial-input.
1637 (ibuffer-filter-by-derived-mode): Autoload and require-match.
1638
1639 2012-04-24 Ivan Andrus <darthandrus@gmail.com> (tiny change)
1640
1641 * ibuf-ext.el (ibuffer-list-buffer-modes): Add `include-parents' arg.
1642 (ibuffer-filter-by-derived-mode): New filter.
1643 * ibuffer.el (ibuffer-mode-map): Bind to `/ w'.
1644
1645 2012-04-23 Andreas Politz <politza@fh-trier.de>
1646
1647 * subr.el (accept-change-group): Fix arg usage (Bug#6095).
1648
1649 2012-04-23 Chong Yidong <cyd@gnu.org>
1650
1651 * cus-edit.el (customize-apropos, customize-apropos-options):
1652 Disable matching of non-option variables (Bug#11176).
1653 (customize-option, customize-option-other-window)
1654 (customize-changed-options): Doc fix.
1655 (customize-apropos-options, customize-apropos-faces)
1656 (customize-apropos-groups): Use apropos-read-pattern (Bug#11124).
1657
1658 * apropos.el (apropos-read-pattern): Make prompt less cryptic.
1659 Fix word list splitting (Bug#11132).
1660 (apropos-symbol, apropos-keybinding, apropos-label)
1661 (apropos-property, apropos-function-button)
1662 (apropos-variable-button, apropos-misc-button): New faces.
1663 (apropos-symbol-face, apropos-keybinding-face)
1664 (apropos-label-face, apropos-property-face, apropos-match-face):
1665 Variables removed (Bug#8396).
1666 (apropos-library-button, apropos-format-plist, apropos-print)
1667 (apropos-print-doc, apropos-describe-plist): Callers changed.
1668
1669 2012-04-23 Michael Albinus <michael.albinus@gmx.de>
1670
1671 * net/xesam.el (xesam-mode-map): Use let-bound map in
1672 initialization. (Bug#11292)
1673
1674 2012-04-23 Agustín Martín Domingo <agustin.martin@hispalinux.es>
1675
1676 Preserve ispell session localwords when switching back to
1677 original buffer.
1678
1679 * ispell.el (ispell-buffer-session-localwords): New buffer-local
1680 variable to hold buffer session localwords.
1681 (ispell-kill-ispell): add option 'clear to delete session
1682 localwords.
1683 (ispell-command-loop, ispell-change-dictionary)
1684 (ispell-buffer-local-words): Preserve session localwords when
1685 needed.
1686
1687 * flyspell.el (flyspell-process-localwords, flyspell-do-correct):
1688 Preserve session localwords when needed.
1689
1690 2012-04-23 Agustín Martín Domingo <agustin.martin@hispalinux.es>
1691
1692 * ispell.el (ispell-insert-word) Remove unneeded function using
1693 obsolete `translation-table-for-input'.
1694 (ispell-word, ispell-process-line, ispell-complete-word):
1695 Use plain `insert' instead of removed `ispell-insert-word'.
1696
1697 2012-04-22 Chong Yidong <cyd@gnu.org>
1698
1699 * cus-edit.el (custom-variable-menu)
1700 (custom-variable-reset-saved, custom-face-menu)
1701 (custom-face-reset-saved): If there is no saved value, make the
1702 "reset-saved" operation bring back the default (Bug#9509).
1703 (custom-face-state): Properly detect themed faces.
1704
1705 * faces.el (face-spec-set): Stop supporting deprecated form of
1706 third arg.
1707
1708 2012-04-22 Michael Albinus <michael.albinus@gmx.de>
1709
1710 Move functions from C to Lisp. Make non-blocking method calls
1711 the default. Implement further D-Bus standard interfaces.
1712
1713 * net/dbus.el (dbus-message-internal): Declare function.
1714 Remove unneeded function declarations.
1715 (defvar dbus-message-type-invalid, dbus-message-type-method-call)
1716 (dbus-message-type-method-return, dbus-message-type-error)
1717 (dbus-message-type-signal): Declare variables. Remove local
1718 definitions.
1719 (dbus-interface-dbus, dbus-interface-peer)
1720 (dbus-interface-introspectable, dbus-interface-properties)
1721 (dbus-path-emacs, dbus-interface-emacs, dbus-return-values-table):
1722 Adapt docstring.
1723 (dbus-interface-objectmanager): New defconst.
1724 (dbus-call-method, dbus-call-method-asynchronously)
1725 (dbus-send-signal, dbus-method-return-internal)
1726 (dbus-method-error-internal, dbus-register-service)
1727 (dbus-register-signal, dbus-register-method): New defuns, moved
1728 from dbusbind.c
1729 (dbus-call-method-handler, dbus-setenv)
1730 (dbus-get-all-managed-objects, dbus-managed-objects-handler):
1731 New defuns.
1732 (dbus-call-method-non-blocking): Make it an obsolete function.
1733 (dbus-unregister-object, dbus-unregister-service)
1734 (dbus-handle-event, dbus-register-property)
1735 (dbus-property-handler): Obey the new structure of
1736 `bus-registered-objects'.
1737 (dbus-introspect): Use `dbus-call-method'. Use a timeout.
1738 (dbus-get-property, dbus-set-property, dbus-get-all-properties):
1739 Use `dbus-call-method'.
1740
1741 2012-04-22 Chong Yidong <cyd@gnu.org>
1742
1743 * cus-edit.el (custom-commands, custom-reset-menu)
1744 (Custom-reset-standard): Tweak labels.
1745 (custom-reset-button-menu): Change default to t.
1746 (custom-buffer-create-internal): For the custom-reset-button-menu
1747 case, put the revert button first.
1748 (custom-group-subtitle): New face.
1749 (custom-group-value-create): Align docstring to a specific column.
1750
1751 * wid-edit.el (widget-documentation-link-add): Don't handle
1752 indentation in this function.
1753 (widget-documentation-string-indent-to): New function.
1754 (widget-documentation-string-value-create): Use it.
1755
1756 * autorevert.el (auto-revert):
1757 * epg-config.el (epg):
1758 * ibuffer.el (ibuffer):
1759 * mpc.el (mpc):
1760 * ses.el (ses):
1761 * eshell/eshell.el (eshell):
1762 * net/ange-ftp.el (ange-ftp):
1763 * progmodes/ebnf2ps.el (postscript):
1764 * progmodes/flymake.el (flymake):
1765 * progmodes/prolog.el (prolog):
1766 * progmodes/verilog-mode.el (verilog-mode):
1767 * progmodes/which-func.el (which-func):
1768 * term/xterm.el (xterm):
1769 * textmodes/picture.el (picture):
1770 * textmodes/tildify.el (tildify):
1771 * vc/ediff.el (ediff): Tweak defgroups to improve presentation in
1772 customization buffers.
1773
1774 2012-04-22 Alan Mackenzie <acm@muc.de>
1775
1776 * progmodes/cc-engine.el (c-append-lower-brace-pair-to-state-cache):
1777 Adding a ) can hide the resulting (..) from searches. Fix it.
1778 Bound the backward search to the position of the existing (.
1779
1780 2012-04-21 Juanma Barranquero <lekktu@gmail.com>
1781
1782 * progmodes/verilog-mode.el (verilog-mode): Check whether
1783 which-func-modes is t before adding verilog-mode.
1784 Reported by Andy Moreton <andrewjmoreton@gmail.com>.
1785
1786 2012-04-21 Leo Liu <sdl.web@gmail.com>
1787
1788 * net/rcirc.el (rcirc): Avoid error when process-contact returns t.
1789
1790 2012-04-21 Michael Vehrs <Michael.Burschik@gmx.de>
1791
1792 * woman.el: Add support for "T{ T}" tbl syntax, and fix the
1793 filling of the last column of a table (Bug#5635).
1794 (woman-find-next-control-line): New arg, specifying an additional
1795 regexp component for the control line.
1796 (woman2-roff-buffer): Use it.
1797 (woman-break-table): New function.
1798 (woman2-TS): Use it.
1799
1800 2012-04-21 Chong Yidong <cyd@gnu.org>
1801
1802 * woman.el (woman-set-buffer-display-table, woman-decode-region)
1803 (woman-horizontal-escapes, woman-negative-vertical-space)
1804 (woman-tab-to-tab-stop, woman2-fc, woman2-TS)
1805 (WoMan-warn-ignored): Use ?\s instead of ?\ .
1806
1807 2012-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
1808
1809 * minibuffer.el (completion-file-name-table): Complete user names.
1810
1811 2012-04-20 Leo Liu <sdl.web@gmail.com>
1812
1813 * font-lock.el (lisp-font-lock-keywords-2): Add pcase, pcase-let
1814 and pcase-let*.
1815
1816 2012-04-20 Chong Yidong <cyd@gnu.org>
1817
1818 * server.el (server-execute): Respect initial-buffer-choice if it
1819 is a string and there are no files to open (Bug#2825).
1820 (server-create-window-system-frame, server-create-tty-frame):
1821 Don't switch buffers here.
1822 (server-process-filter): Only try to open a window system frame if
1823 compiled with graphical support (Bug#8314).
1824
1825 2012-04-20 Dan Nicolaescu <dann@gnu.org>
1826
1827 * battery.el (battery-echo-area-format): Display remaining time
1828 for sysfs backend too (Bug#11269).
1829 (battery-linux-sysfs): Fix conditional for the charge.
1830
1831 2012-04-20 Chong Yidong <cyd@gnu.org>
1832
1833 * progmodes/gdb-mi.el (gdb): Revert previous change.
1834 (gdb-inferior-io--init-proc): New function.
1835 (gdb-init-1): Use it.
1836 (gdb-inferior-io-sentinel): New sentinel for the gdb-inferior pty,
1837 responsible for allocating a new pty and hooking it to gdb when
1838 the old pty gets an EIO due to process exit.
1839 (gdb-delchar-or-quit): New command. Bind it in gdb-mi buffers.
1840 (gdb-tooltip-print): Don't use obsolete tooltip-use-echo-area.
1841 (gdb-inferior-io--maybe-delete-pty): Move into gdb-reset.
1842
1843 2012-04-20 Eli Zaretskii <eliz@gnu.org>
1844
1845 * window.el (window-min-size, window-sizable, window-min-delta)
1846 (window-max-delta, window--resizable, window-resizable)
1847 (window-total-size, window-full-height-p, window-full-width-p)
1848 (window-in-direction, window--resize-mini-window, window-resize)
1849 (window--resize-child-windows-normal)
1850 (window--resize-child-windows, window--resize-siblings)
1851 (window--resize-this-window, adjust-window-trailing-edge)
1852 (enlarge-window, shrink-window): Doc fixes.
1853
1854 2012-04-20 Chong Yidong <cyd@gnu.org>
1855
1856 * progmodes/gdb-mi.el (gdb-inferior-io--maybe-delete-pty):
1857 New function to call delete-process on the gdb-inferior buffer's pty.
1858 (gdb-reset): Use it, instead of relying on kill-buffer to kill the
1859 pty process (Bug#11273).
1860 (gdb-update): New arg to suppress talking to the gdb process.
1861 (gdb-done-or-error): Use it.
1862 (gdb-stopped-functions): Rename from gdb-stopped-hooks.
1863 (gdb): Call gdb-inferior-io--maybe-delete-pty as a workaround for
1864 sentinel not being called.
1865
1866 * comint.el (make-comint-in-buffer, comint-exec): Doc fix.
1867
1868 * progmodes/grep.el (grep, rgrep): Doc fix (Bug#11268).
1869
1870 2012-04-20 Glenn Morris <rgm@gnu.org>
1871
1872 * net/network-stream.el (open-network-stream): Doc fix.
1873
1874 2012-04-20 Chong Yidong <cyd@gnu.org>
1875
1876 * emacs-lisp/tabulated-list.el (tabulated-list-print): Fix typos.
1877
1878 2012-04-20 Alan Mackenzie <acm@muc.de>
1879
1880 Ensure searching for keywords is case sensitive.
1881
1882 * progmodes/cc-cmds.el (c-electric-brace, c-electric-lt-gt)
1883 (c-electric-paren, c-beginning-of-defun, c-end-of-defun)
1884 (c-defun-name, c-mark-function, c-cpp-define-name)
1885 (c-comment-indent, c-scan-conditionals, c-indent-defun)
1886 (c-context-line-break): Bind case-fold-search to nil.
1887
1888 * progmodes/cc-mode.el (c-font-lock-fontify-region):
1889 Bind case-fold-search to nil.
1890
1891 2012-04-20 Chong Yidong <cyd@gnu.org>
1892
1893 * mail/sendmail.el (mail-bury): Call return action with the right
1894 Rmail buffer (Bug#11242).
1895
1896 * server.el (server-process-filter): Handle corner case where both
1897 tty and nowait options are present (Bug#11102).
1898
1899 2012-04-20 Eli Zaretskii <eliz@gnu.org>
1900
1901 * version.el (emacs-bzr-version, emacs-bzr-get-version): Doc fixes.
1902 (top level): Put into the executable the ident-style '$Id:' tag on
1903 windows-nt as well.
1904
1905 2012-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
1906
1907 * electric.el (electric-indent-post-self-insert-function): Check that
1908 electric-indent-mode is enabled in current buffer.
1909
1910 2012-04-19 Juanma Barranquero <lekktu@gmail.com>
1911
1912 * imenu.el (imenu-progress-message): Restore; it is "used" in
1913 erc/erc-imenu.el and net/snmp-mode.el.
1914
1915 2012-04-19 Juanma Barranquero <lekktu@gmail.com>
1916
1917 * avoid.el (mouse-avoidance-mode): Mark unused arg.
1918 (mouse-avoidance-nudge-mouse): Remove unused binding.
1919
1920 * bs.el (bs-toggle-readonly): Call `toggle-read-only' interactively.
1921
1922 * descr-text.el (describe-char):
1923 * progmodes/python.el (python-describe-symbol):
1924 Don't call `toggle-read-only', set `buffer-read-only'.
1925
1926 * imenu.el (imenu-default-goto-function): Mark unused args.
1927 (imenu-progress-message): Remove obsolete macro; all callers changed.
1928
1929 * subr.el (keymap-canonicalize): Remove unused binding.
1930 (read-passwd): Mark unused arg.
1931
1932 * tutorial.el (tutorial--display-changes): Remove unused binding.
1933 (tutorial--save-tutorial-to): Remove unused variable.
1934
1935 * emacs-lisp/package.el (define-package, package-menu-mark-delete)
1936 (package-menu-mark-install, package-menu-mark-unmark): Mark unused args.
1937 (package-generate-autoloads, package-menu--generate)
1938 (package-menu--find-upgrades): Remove unused bindings.
1939
1940 * emulation/cua-rect.el (cua-restrict-regexp-rectangle)
1941 (cua-restrict-prefix-rectangle): Doc fixes. Remove unused bindings.
1942 (cua--mouse-ignore, cua--delete-rectangle, cua--extract-rectangle)
1943 (cua--indent-rectangle, cua-open-rectangle, cua-close-rectangle)
1944 (cua-blank-rectangle, cua-string-rectangle, cua-replace-in-rectangle)
1945 (cua-incr-rectangle, cua-sequence-rectangle, cua--convert-rectangle-as)
1946 (cua--rectangle-aux-replace, cua--left-fill-rectangle)
1947 (cua-scroll-rectangle-up, cua-scroll-rectangle-down)
1948 (cua-delete-char-rectangle): Mark unused args.
1949 (cua-align-rectangle): Remove unused binding.
1950
1951 * mail/rmail.el (compilation--message->loc)
1952 (epa--find-coding-system-for-mime-charset): Declare.
1953
1954 * net/dbus.el (dbus-register-service): Declare.
1955 (dbus-name-owner-changed-handler): Remove unused binding.
1956
1957 * nxml/nxml-mode.el (nxml-electric-slash, nxml-in-mixed-content-p)
1958 (nxml-compute-indent-from-matching-start-tag): Remove unused variables.
1959 (nxml-scan-backward-within): Mark unused arg.
1960 (nxml-dynamic-markup-word): Remove unused binding.
1961
1962 * mouse.el (mouse-menu-major-mode-map):
1963 * emacs-lisp/authors.el (authors-scan-change-log)
1964 (authors-add-to-author-list):
1965 * emacs-lisp/avl-tree.el (avl-tree--enter-balance):
1966 * emacs-lisp/smie.el (smie-auto-fill):
1967 * mail/sendmail.el (mail-bury):
1968 * mail/unrmail.el (unrmail):
1969 * net/tls.el (open-tls-stream):
1970 * textmodes/picture.el (picture-mouse-set-point):
1971 Remove unused bindings.
1972
1973 2012-04-19 Michael Albinus <michael.albinus@gmx.de>
1974
1975 * net/tramp.el (tramp-action-password): Let-bind
1976 `enable-recursive-minibuffers' to t.
1977
1978 2012-04-18 Sam Steingold <sds@gnu.org>
1979
1980 * progmodes/gud.el (gud-key-prefix): Use :type 'key-sequence
1981 instead of 'string to accommodate values like [f11].
1982 Always use `vconcat' instead of `concat' on it, like in `gud-def'.
1983 * progmodes/gdb-mi.el: Likewise.
1984
1985 2012-04-18 Leo Liu <sdl.web@gmail.com>
1986
1987 * abbrev.el (edit-abbrevs): Move point to the abbrev table of
1988 current buffer.
1989 (prepare-abbrev-list-buffer): Enter edit-abbrevs-mode only if
1990 LOCAL is nil.
1991
1992 2012-04-18 Chong Yidong <cyd@gnu.org>
1993
1994 * simple.el (line-move): Use forward-line if in batch mode
1995 (Bug#11053).
1996
1997 2012-04-18 Christopher Schmidt <christopher@ch.ristopher.com>
1998
1999 * files.el (after-find-file): Do not try to add a final newline if
2000 the buffer is read-only (Bug#11156).
2001
2002 2012-04-17 Richard Stallman <rms@gnu.org>
2003
2004 * mail/rmail.el (rmail-start-mail):
2005 Pass (rmail-mail-return...) for the return-action.
2006 Pass (rmail-yank-current-message...) for the yank-action.
2007 (rmail-yank-current-message): New function.
2008 (rmail-mail): Pass the Rmail buffer, not view buffer, for replybuffer.
2009 (rmail-reply): Likewise.
2010 (rmail-forward): Pass the Rmail buffer, not nil, for replybuffer.
2011
2012 * mail/sendmail.el (mail-bury): Choose the first rmail-mode
2013 buffer, not the last. Reject temp buffers. Use the rmail-mode
2014 buffer, not newbuf.
2015
2016 2012-04-17 Juanma Barranquero <lekktu@gmail.com>
2017
2018 * server.el (server-ensure-safe-dir): Simplify.
2019
2020 2012-04-17 Stefan Monnier <monnier@iro.umontreal.ca>
2021
2022 * emacs-lisp/smie.el: Provide smarter auto-filling.
2023 (smie-auto-fill): New function.
2024 (smie-setup): Use it.
2025
2026 * newcomment.el (comment-choose-indent): Obey comment-inline-offset.
2027
2028 2012-04-17 Philipp Haselwarter <philipp.haselwarter@gmx.de> (tiny change)
2029
2030 * newcomment.el (comment-inline-offset): New custom var (bug#11090).
2031 (comment-indent): Use it.
2032
2033 2012-04-17 Vincent Belaïche <vincentb1@users.sourceforge.net>
2034
2035 * ses.el: The overall change is to add cell renaming, that is
2036 setting fancy names for cell symbols other than name matching
2037 "\\`[A-Z]+[0-9]+\\'" regexp .
2038 (ses-localvars): Add ses--renamed-cell-symb-list.
2039 (ses-create-cell-variable): New defun.
2040 (ses-destroy-cell-variable-range): Respect ses--numrows, ses--numcols.
2041 (ses-relocate-formula): Relocate formulas only for cells the
2042 symbols of which are not renamed, i.e. symbols whose names do not
2043 match regexp "\\`[A-Z]+[0-9]+\\'".
2044 (ses-relocate-all): Relocate values only for cells the symbols of
2045 which are not renamed.
2046 (ses-load): Create cells variables as the (ses-cell ...) are read,
2047 in order to check row col consistency with cell symbol name only
2048 for cells that are not renamed.
2049 (ses-replace-name-in-formula): New defun.
2050 (ses-rename-cell): New defun.
2051
2052 2012-04-17 Peter Oliver <bzr@mavit.org.uk> (tiny change)
2053
2054 * progmodes/perl-mode.el (perl-indent-parens-as-block):
2055 New option (bug#11118).
2056 (perl-calculate-indent): Respect it.
2057
2058 2012-04-17 Glenn Morris <rgm@gnu.org>
2059
2060 * dired-aux.el (dired-mark-read-string): Doc fix.
2061
2062 2012-04-17 Dmitry Antipov <dmantipov@yandex.ru>
2063
2064 * dired-aux.el (dired-mark-read-string): Offer optional completion.
2065 (dired-do-chxxx): Complete chown, chgrp over users, groups. (Bug#7900)
2066
2067 2012-04-17 Glenn Morris <rgm@gnu.org>
2068
2069 * mouse.el (mouse-drag-track):
2070 * speedbar.el (speedbar-frame-mode):
2071 Use auto-hscroll-mode rather than the alias automatic-hscrolling.
2072
2073 2012-04-16 Leo Liu <sdl.web@gmail.com>
2074
2075 * progmodes/python.el: Trivial cleanup.
2076
2077 2012-04-16 Glenn Morris <rgm@gnu.org>
2078
2079 * vc/vc.el (vc-string-prefix-p):
2080 * vc/pcvs-util.el (cvs-string-prefix-p):
2081 * textmodes/tex-mode.el (latex-string-prefix-p, tex-string-prefix-p):
2082 * mpc.el (mpc-string-prefix-p):
2083 Make all of these into obsolete aliases for string-prefix-p.
2084 Update callers.
2085 * vc/pcvs.el, vc/vc-dispatcher.el, vc/vc-dir.el: Update callers.
2086
2087 * textmodes/two-column.el: Move custom options to the start.
2088 (frame-width): Remove compat definition.
2089 (2C-associate-buffer, 2C-dissociate):
2090 Use with-current-buffer rather than save-excursion.
2091 (2C-dissociate): Force a mode-line update.
2092 (2C-autoscroll): Use ignore-errors.
2093
2094 * emacs-lisp/eieio-opt.el (describe-class, describe-generic):
2095 Autoload trivia.
2096
2097 * emacs-lisp/cl-extra.el (*random-state*):
2098 Remove unnecessary declaration.
2099
2100 * calendar/cal-tex.el (cal-tex-end-document): Trivial clarification.
2101
2102 * play/cookie1.el (cookie-snarf):
2103 Give an explicit error if input file cannot be read.
2104
2105 * play/yow.el (yow-file): Use expand-file-name rather than concat.
2106
2107 * progmodes/perl-mode.el (c-macro-expand):
2108 Remove unnecessary autoload (it is in loaddefs.el).
2109
2110 * textmodes/picture.el (picture-desired-column)
2111 (picture-update-desired-column): Convert comments to doc-strings.
2112 (picture-substitute): Remove function.
2113 (picture-mode-map): Initialize in the defvar.
2114
2115 * woman.el: Remove eval-after-load for tar-mode.
2116 * tar-mode.el (tar-mode-map): Add woman binding and menu entry.
2117 (woman-tar-extract-file): Autoload it.
2118
2119 * frame.el (automatic-hscrolling): Make this alias obsolete.
2120
2121 2012-04-12 Agustín Martín Domingo <agustin.martin@hispalinux.es>
2122
2123 * ispell.el (ispell-set-spellchecker-params): Post-process
2124 `ispell-dictionary-alist' to use [:alpha:] and utf-8 if possible.
2125 (ispell-dictionary-base-alist): Revert to original XEmacs
2126 friendly version for default. [:alpha:] will be added in
2127 `ispell-set-spellchecker-params' if needed
2128
2129 2012-04-16 Chong Yidong <cyd@gnu.org>
2130
2131 * image.el (imagemagick--extension-regexp): New variable.
2132 (imagemagick-register-types): Use it.
2133 (imagemagick-types-inhibit): Add :set function. Allow new value
2134 of t to inhibit all types.
2135
2136 * emacs-lisp/regexp-opt.el (regexp-opt-charset): Avoid cl macros,
2137 so we can preload it.
2138
2139 * loadup.el (fboundp): Preload regexp-opt, needed by
2140 imagemagick-register-types.
2141
2142 2012-04-15 Chong Yidong <cyd@gnu.org>
2143
2144 * frame.el (scrolling): Remove nearly unused customization group.
2145
2146 * scroll-all.el (scroll-all-mode): Move to windows group.
2147
2148 2012-04-15 Chong Yidong <cyd@gnu.org>
2149
2150 * bindings.el (goto-map): Bind goto-char to M-g c (Bug#11240).
2151
2152 2012-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
2153
2154 Avoid the use of ((lambda ...) ...) in lexical-binding code.
2155 * emacs-lisp/easy-mmode.el (define-minor-mode): Use funcall (bug#11241).
2156
2157 2012-04-15 Glenn Morris <rgm@gnu.org>
2158
2159 * simple.el (process-file-side-effects): Doc fix.
2160
2161 2012-04-15 Glenn Morris <rgm@gnu.org>
2162
2163 * international/mule-cmds.el (set-language-environment): Doc fix.
2164
2165 2012-04-14 Juanma Barranquero <lekktu@gmail.com>
2166
2167 * server.el (server-auth-key, server-generate-key): Doc fixes.
2168 (server-get-auth-key): Doc fix. Use `string-match-p'.
2169 (server-start): Reflow docstring.
2170
2171 2012-04-14 Lars Ingebrigtsen <larsi@gnus.org>
2172
2173 * server.el (server-generate-key): `called-interactively-p'
2174 requires a parameter.
2175
2176 2012-04-14 Michal Nazarewicz <mina86@mina86.com>
2177
2178 * server.el (server-auth-key): New variable.
2179 (server-generate-key, server-get-auth-key): New function.
2180 (server-start): Use the new variable and functions to allow
2181 setting a permanent server key (bug#9423).
2182
2183 2012-04-14 Leo Liu <sdl.web@gmail.com>
2184
2185 * vc/diff-mode.el (diff-file-prev/next): Fix typo.
2186
2187 2012-04-14 Paul Eggert <eggert@cs.ucla.edu>
2188
2189 Spelling fixes.
2190 * hexl.el (hexl-rulerize): Rename from hexl-rulerise, since
2191 Emacs uses American spelling.
2192
2193 2012-04-14 Juanma Barranquero <lekktu@gmail.com>
2194
2195 * emacs-lock.el (emacs-lock-locked-buffer-functions): New hook.
2196 (emacs-lock--exit-locked-buffer): Return the locked buffer. Doc fix.
2197 (emacs-lock--kill-emacs-hook, emacs-lock--kill-emacs-query-functions)
2198 (emacs-lock--kill-buffer-query-functions): Run new hook. (Bug#11017)
2199
2200 2012-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
2201
2202 * progmodes/which-func.el (which-func-modes): Change default.
2203
2204 2012-04-14 Kim F. Storm <storm@cua.dk>
2205
2206 * emulation/cua-base.el (cua-exchange-point-and-mark): Just call
2207 exchange-point-and-mark if cua-enable-cua-keys is nil (Bug#11191).
2208
2209 2012-04-14 Chong Yidong <cyd@gnu.org>
2210
2211 * custom.el (custom-theme-set-variables): Doc fix.
2212
2213 2012-04-14 Glenn Morris <rgm@gnu.org>
2214
2215 * international/mule.el (set-auto-coding-for-load): Doc fix.
2216
2217 2012-04-14 Alan Mackenzie <acm@muc.de>
2218
2219 * progmodes/cc-menus.el (cc-imenu-objc-generic-expression): Make
2220 imenu work again for Objective C Mode. Correct the *-index values,
2221 these having been disturbed by a previous change in 2011-08.
2222
2223 * progmodes/cc-engine.el (c-before-change-check-<>-operators):
2224 Correct two search limits.
2225
2226 2012-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
2227
2228 * startup.el (command-line-1): Inhibit splash from daemon (bug#10996).
2229
2230 2012-04-14 Andreas Schwab <schwab@linux-m68k.org>
2231
2232 * international/characters.el: Fix sorting.
2233
2234 2012-04-14 Eli Zaretskii <eliz@gnu.org>
2235
2236 * international/characters.el: Add more missing Latin case pairs.
2237
2238 2012-04-14 Glenn Morris <rgm@gnu.org>
2239
2240 * files.el (dir-locals-set-class-variables): Doc fix.
2241
2242 2012-04-14 Eli Zaretskii <eliz@gnu.org>
2243
2244 * international/characters.el: Add set-case-syntax-pair call for
2245 LATIN CAPITAL LETTER Y WITH DIAERESIS RET and its lower-case
2246 counterpart. (Bug#11209)
2247
2248 * simple.el (shell-command-on-region): Doc fix. (Bug#11208)
2249
2250 2012-04-14 Glenn Morris <rgm@gnu.org>
2251
2252 * calendar/holidays.el (calendar-check-holidays): Doc fix.
2253
2254 2012-04-14 Eli Zaretskii <eliz@gnu.org>
2255
2256 * textmodes/ispell.el (ispell-dictionary-base-alist):
2257 Add data for Hebrew.
2258
2259 2012-04-14 Chong Yidong <cyd@gnu.org>
2260
2261 * net/rcirc.el (rcirc-cmd-quit):
2262 Revert 2012-03-18 change (Bug#11192).
2263
2264 2012-04-14 Glenn Morris <rgm@gnu.org>
2265
2266 * pcmpl-rpm.el (pcomplete/rpm): Handle -qf.
2267
2268 2012-04-14 Eli Zaretskii <eliz@gnu.org>
2269
2270 * minibuffer.el (completion-in-region-mode-map):
2271 Bind completion-help-at-point to M-? rather than ?. (Bug#11182)
2272
2273 2012-04-13 Vivek Dasmohapatra <vivek@etla.org>
2274
2275 * hexl.el (hexl-insert-char): Make display sizes other than 16 work.
2276
2277 2012-04-13 Masatake YAMATO <yamato@redhat.com>
2278
2279 * minibuffer.el (minibuffer-local-filename-syntax): New variable
2280 to allow `C-M-f' and `C-M-b' to move to the nearest path
2281 separator (bug#9511).
2282
2283 2012-04-13 Lars Ingebrigtsen <larsi@gnus.org>
2284
2285 * avoid.el: Require cl when compiling. And also move the
2286 `provide' to the end.
2287
2288 2012-04-13 Thierry Volpiatto <thierry.volpiatto@gmail.com>
2289
2290 * avoid.el (mouse-avoidance-banish-position): New variable.
2291 (mouse-avoidance-banish-destination): Use it (bug#10165).
2292
2293 2012-04-13 Leo Liu <sdl.web@gmail.com>
2294
2295 * progmodes/which-func.el (which-func-modes): Add objc-mode.
2296
2297 2012-04-13 Ken Brown <kbrown@cornell.edu>
2298
2299 * net/browse-url.el (browse-url-file-url): Remove Cygwin hack;
2300 this is no longer needed now that cygstart understands file:// URLs.
2301 (browse-url-filename-alist): For the same reason, don't modify
2302 file:// URLs on Cygwin.
2303
2304 2012-04-13 Stefan Monnier <monnier@iro.umontreal.ca>
2305
2306 * emulation/cua-base.el (cua--pre-command-handler-1): Don't activate
2307 the region on shift if the binding is already shifted (bug#11221).
2308
2309 2012-04-12 Glenn Morris <rgm@gnu.org>
2310
2311 * mail/mailpost.el: Move to obsolete/.
2312
2313 2012-04-12 Drew Adams <drew.adams@oracle.com>
2314
2315 * imenu.el (imenu--generic-function): Ignore invisible definitions
2316 (bug#10123).
2317
2318 2012-04-12 Vivek Dasmohapatra <vivek@etla.org>
2319
2320 * hexl.el (hexl-bits): New variable.
2321 (hexl-options): Mention the variable in the doc string.
2322 (hexl-rulerise, hexl-line-displen): New functions.
2323 (hexl-mode): Mention the new variable.
2324 (hexl-mode, hexl-current-address, hexl-current-address):
2325 Use the displen.
2326 (hexl-ascii-start-column): New function.
2327 (hexl-address-to-marker, hexl-beginning-of-line, hexl-options)
2328 (hexl-insert-char, hexl-mode-ruler): Use the displen (bug#4941).
2329
2330 2012-04-12 Agustín Martín Domingo <agustin.martin@hispalinux.es>
2331
2332 * textmodes/flyspell.el (flyspell-large-region): For hunspell, use
2333 '("-i" ENCODING), in 2 separate command-line arguments, to specify
2334 the encoding, as expected by hunspell.
2335
2336 2012-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
2337
2338 * battery.el (battery--linux-sysfs-regexp): New const.
2339 (battery-status-function): Use it. Remove yeeloong special case.
2340 (battery-yeeloong-sysfs): Remove.
2341 (battery-echo-area-format): Remove yeeloong special case.
2342
2343 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
2344
2345 * imenu.el (imenu-add-to-menubar): `current-local-map' can be nil.
2346 Reported by Noah Friedman.
2347
2348 * subr.el (read-passwd): Use read-string.
2349
2350 2012-04-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
2351
2352 * vcursor.el (vcursor-move): Increase the priority of the overlay
2353 (bug#9663).
2354
2355 2012-04-11 Deniz Dogan <deniz.a.m.dogan@gmail.com>
2356
2357 * net/rcirc.el (rcirc-kill-channel-buffers): New variable.
2358 (rcirc-kill-buffer-hook): Use it to kill channel buffers (bug#5128).
2359
2360 2012-04-11 William Stevenson <yhvh2000@gmail.com>
2361
2362 * textmodes/artist.el (artist-mode): Convert artist-mode to use
2363 define-minor-mode (bug#10760).
2364
2365 2012-04-11 Wolfgang Jenkner <wjenkner@inode.at> (tiny change)
2366
2367 * progmodes/grep.el (rgrep): Tweak the find command line so
2368 that directories matching `grep-find-ignored-files' won't be
2369 pruned (bug#10351).
2370
2371 2012-04-11 Chong Yidong <cyd@gnu.org>
2372
2373 * startup.el (command-line): Remove support for long-obsolete
2374 variable font-lock-face-attributes.
2375
2376 2012-04-11 Glenn Morris <rgm@gnu.org>
2377
2378 * vc/vc-bzr.el (vc-bzr-status): Avoid condition-case-unless-debug.
2379
2380 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
2381
2382 * window.el (window--state-get-1): Obey window-point-insertion-type.
2383
2384 2012-04-11 Lennart Borgman <lennart.borgman@gmail.com>
2385
2386 * emacs-lisp/lisp.el (narrow-to-defun): `beginning-of-defun' goes
2387 to previous function when point is on the first character of a
2388 function. Take care of that in `narrow-to-defun' (bug#6157).
2389
2390 2012-04-11 Glenn Morris <rgm@gnu.org>
2391
2392 * vc/vc-bzr.el (vc-bzr-status): Handle all errors,
2393 not just file-errors.
2394
2395 * vc/vc-bzr.el (vc-bzr-sha1-program, sha1-program): Remove.
2396 (vc-bzr-sha1): Use internal sha1.
2397
2398 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
2399
2400 * progmodes/flymake.el (flymake-mode): Beware read-only dirs (bug#8954).
2401
2402 2012-04-10 Sébastien Gross <seb@chezwam.org> (tiny change)
2403
2404 * progmodes/hideshow.el (hs-hide-all): Don't infloop on comments
2405 that start in the middle of the line (bug#10496).
2406
2407 2012-04-10 Dan Nicolaescu <dann@gnu.org>
2408
2409 * battery.el (battery-linux-proc-acpi): Only one battery is
2410 discharged at a time, but that seems to confuse battery.el when
2411 computing `rate-type' for the battery not being discharged
2412 (bug#10332).
2413
2414 2012-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
2415
2416 * emacs-lisp/autoload.el (autoload-make-program): Remove, unused.
2417
2418 * international/quail.el: Use dolist and simplify.
2419 (quail-define-package, quail-update-keyboard-layout)
2420 (quail-define-rules): Use dolist.
2421 (quail-insert-kbd-layout, quail-get-translation): CSE.
2422
2423 * tmm.el: Use dolist, remove left over hook.
2424 (tmm-prompt, tmm-define-keys, tmm-shortcut, tmm-get-keybind):
2425 Use dolist.
2426 (calendar-load-hook): Don't mess with it.
2427
2428 * vc/vc-annotate.el (vc-annotate-show-diff-revision-at-line-internal):
2429 Use derived-mode-p. Run the diff asynchronously.
2430
2431 2012-04-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
2432
2433 * obsolete/mouse-sel.el: Add an Obsolete-since header.
2434
2435 2012-04-10 Juanma Barranquero <lekktu@gmail.com>
2436
2437 * misc.el: Display absolute path of loaded DLLs (bug#10424).
2438 (list-dynamic-libraries--loaded): New function.
2439 (list-dynamic-libraries--refresh): Use it.
2440
2441 2012-04-10 Nathan Weizenbaum <nweiz@google.com>
2442
2443 * progmodes/python.el (python-fill-paragraph):
2444 Make python-fill-region in a multiline string work when font-lock is
2445 disabled (bug#7018).
2446
2447 2012-04-10 Laimonas Vėbra <laimonas.vebra@gmail.com> (tiny change)
2448
2449 * language/european.el (cp775): Add oem/legacy (en)coding on
2450 DOS/MS Windows for the Baltic languages. There are still plenty
2451 of texts written in this encoding/codepage (bug#6519).
2452
2453 2012-04-10 Glenn Morris <rgm@gnu.org>
2454
2455 * cus-start.el (eol-mnemonic-unix, eol-mnemonic-dos, eol-mnemonic-mac):
2456 Add :standard values, reducing "rogue" customs in emacs -Q a bit more.
2457
2458 2012-04-10 Florian Adamsky <florian@adamsky.it> (tiny change)
2459
2460 * recentf.el (recentf-dialog-mode-map): Add two keybindings for
2461 next-line "n" and previous-line "p" in order to make recentf more
2462 consistent with ibuffer, dired or org-mode (bug#9387).
2463
2464 2012-04-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
2465
2466 * image.el (put-image): Return the overlay created instead of the
2467 optional input string (bug#7834). Note that this may break code
2468 that is (for some reason or other) depending on `put-image'
2469 returning the string.
2470
2471 * mouse-sel.el (mouse-sel-mode): Mark as obsolete (bug#6174).
2472
2473 * simple.el (zap-to-char): Allow zapping using input methods
2474 (bug#1580).
2475
2476 * textmodes/fill.el (fill-region): Leave point and mark where they
2477 were before filling (bug#5399).
2478
2479 2012-04-09 Glenn Morris <rgm@gnu.org>
2480
2481 * version.el (emacs-bzr-get-version):
2482 Handle lightweight checkouts of local branches.
2483
2484 2012-04-09 Andreas Schwab <schwab@linux-m68k.org>
2485
2486 * international/characters.el: Recover lost case pairs. (Bug#11209)
2487
2488 2012-04-09 Chong Yidong <cyd@gnu.org>
2489
2490 * custom.el (custom-variable-p): Return nil for non-symbol
2491 arguments instead of signaling an error.
2492 (user-variable-p): Obsolete alias for custom-variable-p.
2493
2494 * apropos.el (apropos-variable):
2495 * files-x.el (read-file-local-variable):
2496 * simple.el (set-variable):
2497 * woman.el (woman-mini-help):
2498 * emacs-lisp/byte-opt.el (side-effect-free-fns): Callers changed.
2499
2500 2012-04-09 Glenn Morris <rgm@gnu.org>
2501
2502 * startup.el (normal-top-level): Don't look for leim-list.el
2503 in places where it will not be found. (Bug#910)
2504
2505 * international/mule-cmds.el (set-default-coding-systems):
2506 * files.el (normal-mode):
2507 Remove guarded calls to ucs-set-table-for-input. (Bug#9821)
2508 This function was removed with ucs-tables.el in 2008.
2509
2510 2012-04-08 Eli Zaretskii <eliz@gnu.org>
2511
2512 * textmodes/ispell.el (ispell-check-version): For hunspell, set
2513 ispell-encoding8-command to "-i", without a trailing space.
2514 (ispell-start-process): For hunspell, use '("-i" ENCODING), in 2
2515 separate command-line arguments, to specify the encoding, since
2516 that's how hunspell expects it.
2517
2518 2012-04-08 Glenn Morris <rgm@gnu.org>
2519
2520 * loadup.el: Load bindings before cus-start.
2521 This reduces somewhat the number of "rogue" settings in emacs -Q.
2522
2523 2012-04-07 Glenn Morris <rgm@gnu.org>
2524
2525 * version.el (emacs-bzr-get-version): New function.
2526 (emacs-bzr-version): New variable.
2527 * loadup.el (emacs-bzr-version): Set it. (Bug#8054)
2528 * mail/emacsbug.el (report-emacs-bug): Include bzr version.
2529
2530 2012-04-07 Eli Zaretskii <eliz@gnu.org>
2531
2532 * international/uni-bidi.el, international/uni-category.el:
2533 * international/uni-combining.el, international/uni-decimal.el:
2534 * international/uni-decomposition.el, international/uni-digit.el:
2535 * international/uni-lowercase.el, international/uni-mirrored.el:
2536 * international/uni-name.el, international/uni-numeric.el:
2537 * international/uni-titlecase.el, international/uni-uppercase.el:
2538 Update for Unicode 6.1.
2539
2540 2012-04-07 Eli Zaretskii <eliz@gnu.org>
2541
2542 * term/w32-win.el (dynamic-library-alist): Add libxml2 DLLs.
2543
2544 2012-04-05 Lars Magne Ingebrigtsen <larsi@gnus.org>
2545
2546 * window.el (shrink-window): Mention the `window-min-height'
2547 variable in the doc string.
2548
2549 2012-04-05 Bastien Guerry <bzg@altern.org>
2550
2551 * color.el (color-lighten-name): Fix typo.
2552
2553 2012-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
2554
2555 * server.el (server--on-display-p): New function.
2556 (server--on-display-p): Use it.
2557
2558 2012-04-04 Gabor Vida <vidagabor@gmail.com> (tiny change)
2559
2560 * ido.el (ido-wide-find-dirs-or-files): Use file-name-absolute-p
2561 (bug#11145).
2562
2563 2012-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
2564
2565 * comint.el (comint--common-quoted-suffix): Check string boundary
2566 before comparing (bug#11158).
2567 * pcomplete.el (pcomplete--common-quoted-suffix): Idem.
2568
2569 2012-04-04 Chong Yidong <cyd@gnu.org>
2570
2571 * minibuffer.el (completion-extra-properties): Doc fix.
2572
2573 * subr.el (delayed-warnings-hook): Doc fix.
2574
2575 2012-04-04 Daiki Ueno <ueno@unixuser.org>
2576
2577 * epa.el (epa--select-keys): Bind C-c C-c to finish the key
2578 selection (Bug#11159).
2579 (epa-insert-keys): Inform that the default public key will be
2580 exported if no key is selected.
2581
2582 2012-04-04 Richard Stallman <rms@gnu.org>
2583
2584 * mail/emacsbug.el (report-emacs-bug): Bind inhibit-read-only.
2585
2586 2012-04-03 Chong Yidong <cyd@gnu.org>
2587
2588 * mail/sendmail.el (mail-mode-map): Bind C-c C-i to
2589 mail-insert-file, not its obsolete alias mail-attach-file.
2590
2591 2012-04-03 Michael Albinus <michael.albinus@gmx.de>
2592
2593 * notifications.el (notifications-notify): Fix docstring.
2594
2595 2012-04-02 Glenn Morris <rgm@gnu.org>
2596
2597 * emacs-lisp/authors.el (authors-aliases): Another addition.
2598
2599 2012-04-02 Michael Albinus <michael.albinus@gmx.de>
2600
2601 * net/tramp-gvfs.el (tramp-gvfs-send-command): Apply
2602 `tramp-compat-call-process' instead of `tramp-local-call-process'.
2603 Reported by Magnus Henoch <magnus.henoch@gmail.com>.
2604
2605 2012-04-01 Chong Yidong <cyd@gnu.org>
2606
2607 * files.el (file-in-directory-p): Rename from file-subdir-of-p.
2608 Handle root directory properly.
2609 (copy-directory): Caller changed.
2610
2611 * dired-aux.el (dired-copy-file-recursive, dired-create-files):
2612 * net/tramp.el (tramp-file-name-for-operation): Callers changed.
2613
2614 2012-03-31 Glenn Morris <rgm@gnu.org>
2615
2616 * term/xterm.el (xterm-extra-capabilities): Doc fix.
2617
2618 * language/indian.el ("Devanagari"): Fix typo. (Bug#11103)
2619
2620 * calendar/calendar.el (calendar-window-list)
2621 (calendar-hide-window): Restore. (Bug#11140)
2622 (calendar-exit): Use calendar-window-list, calendar-hide-window again.
2623
2624 * emacs-lisp/edebug.el (edebug-unwrap-results): Doc fix.
2625
2626 2012-03-30 Thierry Volpiatto <thierry.volpiatto@gmail.com>
2627
2628 * dired-aux.el (dired-copy-file-recursive, dired-create-files):
2629 Check if file is a symlink (Bug#10489).
2630
2631 * files.el (copy-directory): Likewise.
2632
2633 2012-03-30 Chong Yidong <cyd@gnu.org>
2634
2635 * image.el (imagemagick-types-inhibit)
2636 (imagemagick-register-types): Doc fix.
2637
2638 2012-03-30 Agustín Martín Domingo <agustin.martin@hispalinux.es>
2639
2640 * ispell.el (ispell-get-extended-character-mode):
2641 Disable extended-char-mode for hunspell. hunspell does not support it
2642 and treats ~word as ordinary words in pipe mode.
2643
2644 2012-03-30 Glenn Morris <rgm@gnu.org>
2645
2646 * tutorial.el (help-with-tutorial): Ensure local variables don't
2647 happen to make the buffer read-only. (Bug#11127)
2648
2649 2012-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
2650
2651 * progmodes/perl-mode.el (perl-indent-line): Use `noindent' in strings.
2652 (perl-calculate-indent): Return `noindent' in strings.
2653
2654 2012-03-28 Sam Steingold <sds@gnu.org>
2655
2656 * calendar/calendar.el (calendar-exit): Use `quit-windows-on'
2657 instead of the broken adhockery which does not prevent calendar
2658 buffers from being displayed at random after exit.
2659 (calendar-window-list, calendar-hide-window): Remove the broken
2660 adhockery.
2661
2662 2012-03-28 Glenn Morris <rgm@gnu.org>
2663
2664 * replace.el (query-replace-map): Doc fix.
2665
2666 2012-03-28 Andreas Schwab <schwab@linux-m68k.org>
2667
2668 * vc/vc-git.el (vc-git-state): Don't try to match all of the diff
2669 contents. (Bug#11109)
2670
2671 2012-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
2672
2673 * emacs-lisp/avl-tree.el (avl-tree--enter-balance): Fix paren typo
2674 (bug#11077).
2675 (avl-tree--check, avl-tree--check-node): New funs.
2676
2677 2012-03-27 Martin Rudalics <rudalics@gmx.at>
2678
2679 * window.el (switch-to-visible-buffer): New option.
2680 (switch-to-prev-buffer, switch-to-next-buffer):
2681 Observe switch-to-visible-buffer. Make sure that checking for a window
2682 showing a buffer already is done on the same frame.
2683
2684 2012-03-27 Glenn Morris <rgm@gnu.org>
2685
2686 * startup.el (mail-host-address): Doc fix.
2687
2688 2012-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
2689
2690 * emacs-lisp/bytecomp.el (byte-compile-constants-vector): Allow more
2691 than 197 variables.
2692
2693 2012-03-26 Ami Fischman <ami@fischman.org>
2694
2695 * vc/vc-git.el (vc-git-state): Avoid unnecessarily locking.
2696
2697 2012-03-26 Glenn Morris <rgm@gnu.org>
2698
2699 * files.el (save-buffers-kill-emacs): Doc fix.
2700
2701 * startup.el (normal-top-level, command-line, command-line-1):
2702 Give them doc strings.
2703
2704 2012-03-25 Eli Zaretskii <eliz@gnu.org>
2705
2706 * makefile.w32-in (install): Use $(DIRNAME)_same-dir.tst instead
2707 of same-dir.tst, to avoid stepping on other (parallel) Make job's toes.
2708
2709 2012-03-25 Chong Yidong <cyd@gnu.org>
2710
2711 * custom.el (load-theme): Even if NO-ENABLE arg is t, reenable the
2712 theme if it was previously enabled before (Bug#11031).
2713
2714 * cus-theme.el (custom-theme-write-faces): Retrieve current face
2715 spec with custom-face-get-current-spec if its :shown-value is not
2716 determined yet (Bug#9337).
2717 (customize-create-theme, custom-theme-revert): Doc fixes.
2718
2719 * button.el (button-at): Minor addition to docstring.
2720
2721 2012-03-24 Simon Leinen <simon.leinen@gmail.com>
2722
2723 * vc/vc.el (vc-merge): Fix a prompt.
2724
2725 2012-03-24 Chong Yidong <cyd@gnu.org>
2726
2727 * mwheel.el (mwheel-scroll): Call deactivate-mark at the right
2728 point (Bug#9623).
2729
2730 * button.el (button-at): Minor addition to docstring.
2731
2732 2012-03-23 Stefan Monnier <monnier@iro.umontreal.ca>
2733
2734 * newcomment.el (comment-choose-indent): No space after BOL.
2735
2736 2012-03-22 Sam Steingold <sds@gnu.org>
2737
2738 * window.el (switch-to-prev-buffer): Revert last patch because the
2739 bug turned out to be an advertised feature (Elisp manual 28.14).
2740
2741 2012-03-22 Glenn Morris <rgm@gnu.org>
2742
2743 * vc/vc-bzr.el (vc-bzr-status-switches): New option. (Bug#6724)
2744 (vc-bzr-command): If running "status", pass vc-bzr-status-switches.
2745
2746 2012-03-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
2747
2748 * net/network-stream.el (network-stream-open-starttls): Make error
2749 message under Windows be less misleading.
2750
2751 2012-03-22 Liang Wang <netcasper@gmail.com> (tiny change)
2752
2753 * progmodes/etags.el (etags-list-tags): Only use tags which goto-func
2754 understands (bug#9942).
2755
2756 2012-03-22 Chong Yidong <cyd@gnu.org>
2757
2758 * simple.el (end-of-visible-line): Handle return value of
2759 next-single-property-change properly (Bug#9371).
2760
2761 2012-03-22 Kenichi Handa <handa@m17n.org>
2762
2763 * international/quail.el (quail-insert-kbd-layout): Fix previous
2764 change. To avoid unwanted bidi reordering, use
2765 bidi-string-mark-left-to-right instead of inserting LRO and PDF.
2766
2767 2012-03-21 Dmitry Gutov <dgutov@yandex.ru>
2768
2769 * progmodes/ruby-mode.el: Don't confuse "end:" for "end" (bug#10786).
2770 (ruby-block-end-re, ruby-delimiter, ruby-parse-partial)
2771 (ruby-beginning-of-indent): Be more careful with the difference
2772 between word-boundary and symbol boundary.
2773 (ruby-mode-syntax-table): Make : a symbol constituent.
2774
2775 2012-03-21 Andreas Politz <politza@fh-trier.de>
2776
2777 * outline.el (outline-flag-region): Evaporate overlays (bug#10789).
2778
2779 2012-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
2780
2781 * progmodes/etags.el (tags-completion-at-point-function):
2782 Improve last fix.
2783
2784 * files.el (move-file-to-trash): Files aren't regexps (bug#11055).
2785
2786 2012-03-21 Sam Steingold <sds@gnu.org>
2787
2788 * progmodes/etags.el (tags-completion-at-point-function):
2789 Avoid the error when point is inside the pattern.
2790
2791 2012-03-21 John Yates <john@yates-sheets.org> (tiny change)
2792
2793 * progmodes/hideshow.el (hs-inside-comment-p): Fix hiding of first
2794 line (Bug#10855).
2795
2796 2012-03-21 Drew Adams <drew.adams@oracle.com>
2797
2798 * info.el (Info-menu): Handle string value of FORK arg (Bug#10858).
2799
2800 2012-03-21 Anmol Khirbat <anmol@khirbat.net> (tiny change)
2801
2802 * ido.el (ido-set-current-directory, ido-read-internal)
2803 (ido-choose-completion-string, ido-completion-help): Handle nil
2804 value of ido-completion-buffer (Bug#11008).
2805
2806 2012-03-21 Sam Steingold <sds@gnu.org>
2807
2808 * window.el (switch-to-prev-buffer): Do not switch to a visible
2809 window previous buffer, just like with the frame previous buffers.
2810
2811 2012-03-21 Chong Yidong <cyd@gnu.org>
2812
2813 * faces.el (make-face, make-empty-face, copy-face):
2814 * face-remap.el (face-remap-add-relative, face-remap-set-base):
2815 Doc fixes.
2816
2817 2012-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
2818
2819 * wid-edit.el (widget-complete-field): Remove (bug#11051).
2820 (widget-complete): Remove broken use of it.
2821
2822 2012-03-20 Chong Yidong <cyd@gnu.org>
2823
2824 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
2825 Use string-width and truncate-string-width to handle arbitrary
2826 characters.
2827
2828 2012-03-20 Tassilo Horn <tassilo@member.fsf.org>
2829
2830 * textmodes/artist.el (artist-menu-map): Bind Rectangle menu item
2831 to draw rectangles, not squares. (Regression introduced by revno
2832 2011-03-02T03:48:01Z!cyd@stupidchicken.com)
2833
2834 2012-03-18 Chong Yidong <cyd@gnu.org>
2835
2836 * faces.el (face-spec-reset-face): Don't call display-graphic-p if
2837 it is not yet defined (for temacs).
2838
2839 2012-03-18 Leo Liu <sdl.web@gmail.com>
2840
2841 * net/rcirc.el (rcirc-cmd-quit): Allow quiting all servers with prefix.
2842
2843 2012-03-17 Eli Zaretskii <eliz@gnu.org>
2844
2845 * textmodes/ispell.el (ispell-skip-tib, ispell-keep-choices-win)
2846 (ispell-choices-win-default-height, ispell-silently-savep)
2847 (ispell-dictionary-alist, ispell-encoding8-command)
2848 (ispell-check-version, ispell-aspell-find-dictionary)
2849 (ispell-valid-dictionary-list, ispell-words-keyword)
2850 (ispell-get-word, ispell-internal-change-dictionary)
2851 (ispell-region, ispell-skip-region-list)
2852 (ispell-begin-skip-region-regexp, ispell-ignore-fcc)
2853 (ispell-process-line, ispell-minor-mode, ispell-minor-check)
2854 (ispell-message-text-end, ispell-message)
2855 (ispell-buffer-local-parsing): Doc fix.
2856
2857 2012-03-13 Jambunathan K <kjambunathan@gmail.com>
2858
2859 * htmlfontify.el: Add support for code block fontification for ODT
2860 export (Bug #9914).
2861 (hfy-optimisations): Define new option
2862 `body-text-only'
2863 (hfy-fontify-buffer): Honor above setting.
2864 (hfy-begin-span, hfy-end-span): New routines factored out form
2865 `hfy-fontify-buffer'.
2866 (hfy-begin-span-handler, hfy-end-span-handler): New variables
2867 that permit insertion of custom tags.
2868 (hfy-fontify-buffer): Use above handlers.
2869 (hfy-face-to-css-default): Same as the earlier `hfy-face-to-css'.
2870 (hfy-face-to-css): Re-defined to be a variable.
2871 (hfy-compile-stylesheet): Modify. Allow stylesheet to be built
2872 over multiple runs. This is made possible by having the caller let
2873 bind a special variable `hfy-user-sheet-assoc'.
2874 (htmlfontify-string): New defun.
2875 (hfy-compile-face-map): Make sure that the last char in the
2876 buffer is correctly fontified.
2877 (hfy-face-resolve-face): Whitespace only change.
2878
2879 2012-03-17 Eli Zaretskii <eliz@gnu.org>
2880
2881 * textmodes/ispell.el (ispell-get-decoded-string): Make the error
2882 message more clear.
2883
2884 2012-03-16 Leo Liu <sdl.web@gmail.com>
2885
2886 * emacs-lisp/copyright.el (copyright-year-ranges): Fix typo.
2887
2888 2012-03-16 Alan Mackenzie <acm@muc.de>
2889
2890 Further optimise the handling of large macros.
2891
2892 * progmodes/cc-engine.el (c-crosses-statement-barrier-p): Use a
2893 limit to a call of `c-literal-limits'.
2894 (c-determine-+ve-limit): New function.
2895 (c-at-macro-vsemi-p): Move `c-in-literal' to the bottom of an `and'.
2896 (c-guess-basic-syntax): In macros, restrict a search limit to 2000.
2897 In CASE 5B, restrict a search limit to 500.
2898 (c-just-after-func-arglist-p): Obviouly wrong `or' -> `and'.
2899
2900 * progmodes/cc-mode.el (c-neutralize-syntax-in-and-mark-CPP):
2901 Restrict macro bounds to +-500 from after-change's BEG END.
2902
2903 2012-03-16 Leo Liu <sdl.web@gmail.com>
2904
2905 * font-lock.el (lisp-font-lock-keywords-2): Add letrec.
2906
2907 2012-03-16 Aaron S. Hawley <Aaron.S.Hawley@gmail.com>
2908
2909 * tar-mode.el (tar-mode): Fix saving by conditionally undoing
2910 `special-mode' setting of `buffer-read-only'. (Bug#11010)
2911
2912 2012-03-16 Glenn Morris <rgm@gnu.org>
2913
2914 * view.el (view-buffer, view-buffer-other-window)
2915 (view-buffer-other-frame): Doc fixes re special mode-class.
2916
2917 * subr.el (eval-after-load): If named feature is provided not from
2918 a file, run after-load forms. (Bug#10946)
2919
2920 * calendar/calendar.el (calendar-insert-at-column):
2921 Handle non-unit-width characters a bit better. (Bug#10978)
2922
2923 2012-03-15 Chong Yidong <cyd@gnu.org>
2924
2925 * emacs-lisp/ring.el (ring-extend): New function.
2926 (ring-insert+extend): Extend the ring correctly (Bug#11019).
2927
2928 * comint.el (comint-read-input-ring)
2929 (comint-add-to-input-history): Grow comint-input-ring lazily.
2930
2931 2012-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
2932
2933 * progmodes/perl-mode.el (perl-syntax-propertize-special-constructs):
2934 Fix up parsing of multiline twoarg non-paired elements (bug#11014).
2935
2936 * imenu.el: Fix multiple inheritance breakage (bug#9199).
2937 (imenu-add-to-menubar): Don't add a redundant index.
2938 (imenu-update-menubar): Handle a dynamically composed keymap.
2939
2940 2012-03-13 Katsumi Yamaoka <yamaoka@jpl.org>
2941
2942 * mail/sendmail.el (mail-encode-header):
2943 Bind rfc2047-encode-encoded-words to nil.
2944
2945 2012-03-13 Glenn Morris <rgm@gnu.org>
2946
2947 * calendar/calendar.el (calendar-string-spread):
2948 Handle non-unit-width characters a bit better. (Bug#10978)
2949
2950 2012-03-13 Leo Liu <sdl.web@gmail.com>
2951
2952 * vc/vc-hg.el (vc-hg-working-revision): Rework to work with both
2953 directory and file as argument (Bug#10822).
2954
2955 2012-03-13 Kaushik Srenevasan <ksrenevasan@gmail.com> (tiny change)
2956
2957 * progmodes/gdb-mi.el (gdb-invalidate-disassembly):
2958 For dynamically generated code, follow $PC.
2959 (gdb-disassembly-handler-custom): Handle no function name case.
2960
2961 2012-03-13 Tim Landscheidt <tim@tim-landscheidt.de> (tiny change)
2962
2963 * calendar/icalendar.el (icalendar-export-file, icalendar-import-file):
2964 * emulation/ws-mode.el (ws-query-replace):
2965 * sort.el (sort-regexp-fields):
2966 Fix missing trailing whitespace in interactive prompts. (Bug#11002)
2967
2968 2012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
2969
2970 * dabbrev.el: Fix cycle completion order (bug#10963).
2971 (dabbrev--last-obarray, dabbrev--last-completion-buffer): Remove.
2972 (dabbrev-completion): Don't use an obarray; provide
2973 a cycle-sort-function.
2974
2975 2012-03-12 Leo Liu <sdl.web@gmail.com>
2976
2977 * simple.el (kill-new): Use equal-including-properties for comparison.
2978 (kill-do-not-save-duplicates): Doc fix.
2979
2980 2012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
2981
2982 * dabbrev.el: Fix cycle completion (bug#10963).
2983 Use lexical binding and wrap to 80 columns.
2984 (dabbrev-completion): Delay computing the list of completions.
2985
2986 2012-03-12 Kenichi Handa <handa@m17n.org>
2987
2988 * international/quail.el (quail-insert-kbd-layout): Surround each
2989 row by LRO and PDF instead of inserting many LRMs. Pad the left
2990 and right of each non-spacing marks. Insert invisible space
2991 between lower and upper characters to prevent composition.
2992
2993 2012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
2994
2995 * minibuffer.el (minibuffer-complete): Don't get confused when the
2996 function is run twice via different commands (bug#10958).
2997 (complete-with-action): Fix docstring.
2998
2999 2012-03-12 Chong Yidong <cyd@gnu.org>
3000
3001 * nxml/nxml-mode.el (nxml-mode-map): Do not bind C-RET (Bug#6776).
3002 (nxml-completion-at-point-function): New function.
3003 (nxml-mode): Use it.
3004 (nxml-bind-meta-tab-to-complete-flag): Default to t.
3005
3006 * emacs-lisp/package.el (package-unpack, package-unpack-single):
3007 Load generated autoloads file before byte compiling (Bug#10970).
3008 (package--make-autoloads-and-compile): New helper fun.
3009
3010 2012-03-12 Christopher Schmidt <christopher@ch.ristopher.com>
3011
3012 * ibuffer.el (ibuffer-redisplay): Remove another gratuitous error.
3013
3014 2012-03-11 Michael Albinus <michael.albinus@gmx.de>
3015
3016 * autorevert.el (auto-revert-handler): Ensure, that
3017 file-readable-p is applied only for local files or in
3018 auto-revert-tail-mode.
3019
3020 2012-03-11 Andreas Schwab <schwab@linux-m68k.org>
3021
3022 * server.el (server-eval-at): Handle non-tcp connections.
3023 Decode result string.
3024
3025 * server.el (server-msg-size): New constant.
3026 (server-reply-print): New function.
3027 (server-eval-and-print): Use it.
3028 (server-eval-at): Use server-quote-arg and server-unquote-arg.
3029 Handle -print-nonl.
3030
3031 2012-03-11 Christopher Schmidt <christopher@ch.ristopher.com>
3032
3033 * ibuffer.el (ibuffer-redisplay): Remove gratuitous error
3034 (Bug#10987).
3035
3036 2012-03-11 Chong Yidong <cyd@gnu.org>
3037
3038 * simple.el (goto-line): Doc fix (Bug#9938).
3039
3040 * subr.el (save-window-excursion): Doc fix (Bug#9979).
3041
3042 * dabbrev.el (dabbrev--find-expansion): Update progress reporter
3043 when finished (Bug#10963).
3044
3045 2012-03-11 Martin Rudalics <rudalics@gmx.at>
3046
3047 * window.el (split-window-below): Fix bug in case where
3048 split-window-keep-point is nil (Bug#10971).
3049
3050 2012-03-11 Juri Linkov <juri@jurta.org>
3051
3052 * replace.el (replace-highlight): Set isearch-word to nil
3053 unconditionally. (Bug#10887)
3054
3055 2012-03-10 Eli Zaretskii <eliz@gnu.org>
3056
3057 * net/mairix.el (mairix-replace-invalid-chars): Rename from
3058 mairix-replace-illegal-chars; all callers changed. Don't remove
3059 ^, ~, and = characters: they are meaningful in mairix search specs.
3060 (mairix-widget-create-query): Add usage information about mairix
3061 search forms: negating words, searching for substrings, etc.
3062
3063 2012-03-10 Jae-hyeon Park <jae-hyeon.park@desy.de> (tiny change)
3064
3065 * international/fontset.el (font-encoding-alist): Add an entry for
3066 ksx1001 (Bug#5667).
3067
3068 2012-03-10 Richard Stallman <rms@gnu.org>
3069
3070 * mail/sendmail.el (mail-encode-header):
3071 Set rfc2047-encode-encoded-words.
3072
3073 * mail/mail-utils.el (mail-quote-printable): Quote multibyte chars.
3074
3075 * mail/rmail.el (rmail-buffers-swapped-p): Don't assume dead
3076 view buffer means not swapped.
3077 (rmail-view-buffer-kill-buffer-hook): Give buf name in error msg.
3078 (rmail-write-region-annotate): Error if real text has disappeared.
3079
3080 * epa-mail.el (epa-mail-encrypt): Bind inhibit-read-only.
3081
3082 2012-03-10 Chong Yidong <cyd@gnu.org>
3083
3084 * emulation/cua-rect.el (cua--init-rectangles):
3085 * emulation/cua-base.el (cua--init-keymaps):
3086 Add delete-forward-char to remappings (Bug#9666).
3087
3088 2012-03-10 Martin Rudalics <rudalics@gmx.at>
3089
3090 * speedbar.el (speedbar-unhighlight-one-tag-line):
3091 Avoid unhighlighting due to frame switching (Bug#10275).
3092
3093 2012-03-10 Chong Yidong <cyd@gnu.org>
3094
3095 * minibuffer.el (completion-in-region, completion-help-at-point):
3096 Give the completion field overlay a high priority (Bug#6830).
3097
3098 * dired.el (dired-goto-file): Recognize absolute file name
3099 listings (Bug#7126).
3100 (dired-goto-file-1): New helper function.
3101 (dired-toggle-read-only): Inhibit warnings.
3102
3103 2012-03-09 Michael Albinus <michael.albinus@gmx.de>
3104
3105 * net/dbus.el (dbus-property-handler): Return empty array if
3106 there are no properties.
3107
3108 2012-03-09 Leo Liu <sdl.web@gmail.com>
3109
3110 * savehist.el (savehist-printable): Stricter check for string
3111 value (Bug#10937).
3112
3113 2012-03-09 Eli Zaretskii <eliz@gnu.org>
3114
3115 * mail/smtpmail.el (smtpmail-send-it):
3116 Bind coding-system-for-write to *-unix, so that FCC files are kept in
3117 valid mbox format.
3118
3119 2012-03-09 Glenn Morris <rgm@gnu.org>
3120
3121 * files.el (dir-locals-find-file):
3122 Don't check result is regular, readable.
3123 (dir-locals-read-from-file): Demote errors.
3124
3125 2012-03-08 Eli Zaretskii <eliz@gnu.org>
3126
3127 * international/quail.el (quail-insert-kbd-layout):
3128 Insert invisible LRM characters before each character in a keyboard
3129 layout cell, to prevent their reordering by bidi display engine.
3130 For details, see the discussion in
3131 http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00085.html.
3132
3133 2012-03-08 Alan Mackenzie <acm@muc.de>
3134
3135 * progmodes/cc-cmds.el (c-mark-function): Make it leave a mark at
3136 the starting position; make it extend the marked region when
3137 invoked repeatedly - all under appropriate circumstances.
3138 Fixes bugs #5525, #10906.
3139
3140 2012-03-08 Glenn Morris <rgm@gnu.org>
3141
3142 * files.el (locate-dominating-file, dir-locals-find-file):
3143 Undo 2012-03-06 change.
3144
3145 2012-03-07 Eli Zaretskii <eliz@gnu.org>
3146
3147 * international/quail.el (quail-help):
3148 Force bidi-paragraph-direction be left-to-right. See discussion in
3149 http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00062.html
3150 for the reason.
3151
3152 2012-03-07 Michael Albinus <michael.albinus@gmx.de>
3153
3154 Avoid superfluous registering of signals. (Bug#10807)
3155
3156 * notifications.el (notifications-on-action-object)
3157 (notifications-on-close-object): New defvars.
3158 (notifications-on-action-signal, notifications-on-closed-signal):
3159 Unregister the signal if not needed any longer.
3160 (notifications-notify): Register `notifications-action-signal' or
3161 `notifications-closed-signal', if :on-action or :on-close has been
3162 passed as argument.
3163
3164 2012-03-07 Chong Yidong <cyd@gnu.org>
3165
3166 * cus-start.el: Avoid x-select-enable-clipboard-manager warning on
3167 non-X platforms.
3168
3169 2012-03-06 Glenn Morris <rgm@gnu.org>
3170
3171 * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
3172 (x-disown-selection-internal, x-get-selection-internal):
3173 Doc fix (add arglist signatures). (Bug#10783)
3174
3175 2012-03-06 Kaushik Srenevasan <ksrenevasan@gmail.com> (tiny change)
3176
3177 * progmodes/gdb-mi.el (gdb-breakpoints-list-handler-custom):
3178 Handle breakpoints with no "type".
3179
3180 2012-03-06 Glenn Morris <rgm@gnu.org>
3181
3182 * files.el (locate-dominating-file): Add optional predicate argument.
3183 (dir-locals-find-file): Make use of above change.
3184
3185 2012-03-06 Thien-Thi Nguyen <ttn@gnuvola.org>
3186
3187 * info.el (Info-insert-dir): Also try "dir.gz".
3188
3189 2012-03-06 Glenn Morris <rgm@gnu.org>
3190
3191 * files.el (dir-locals-find-file):
3192 Ignore non-readable or non-regular files. (Bug#10928)
3193
3194 * files.el (locate-dominating-file): Doc fix.
3195
3196 2012-03-06 Adam Spiers <emacs@adamspiers.org> (tiny change)
3197
3198 * calendar/calendar.el (calendar-set-mode-line):
3199 `getenv' returns a string. (Bug#10951)
3200
3201 2012-03-05 Leo Liu <sdl.web@gmail.com>
3202
3203 * simple.el (backward-delete-char-untabify): Constrain point to
3204 field (Bug#10939).
3205
3206 * eshell/em-cmpl.el (eshell-cmpl-initialize): Fix shift-tab key.
3207
3208 2012-03-05 Chong Yidong <cyd@gnu.org>
3209
3210 * simple.el (count-words): If called from Lisp, return the word
3211 count, for symmetry with `count-lines'. Arglist changed.
3212 (count-words--message): Args changed. Consolidate counting code
3213 from count-words and count-words-region.
3214 (count-words-region): Caller changed.
3215 (count-lines-region): Make it an obsolete alias.
3216
3217 2012-03-04 Tassilo Horn <tassilo@member.fsf.org>
3218
3219 * saveplace.el (save-place-to-alist)
3220 (save-place-ignore-files-regexp): Allow value nil to disable this
3221 feature.
3222
3223 2012-03-04 Chong Yidong <cyd@gnu.org>
3224
3225 * faces.el (face-spec-reset-face): For the default face, reset the
3226 attributes to default values (Bug#10748).
3227
3228 2012-03-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
3229
3230 * mail/emacsbug.el (report-emacs-bug-hook): Fix up thinko in
3231 previous patch: Check `message-send-mail-function', and not the
3232 default function (bug#10897).
3233
3234 2012-03-04 Michael Albinus <michael.albinus@gmx.de>
3235
3236 * notifications.el (notifications-on-action-signal)
3237 (notifications-on-closed-signal): Check for unique service name of
3238 incoming event. Fix error in removing entry.
3239 (top): Register for signals with wildcard service name.
3240 (notifications-notify): Use daemon unique service name for map entries.
3241
3242 2012-03-04 Chong Yidong <cyd@gnu.org>
3243
3244 * cus-start.el: Make x-select-enable-clipboard-manager customizable.
3245
3246 2012-03-04 Glenn Morris <rgm@gnu.org>
3247
3248 * abbrev.el (copy-abbrev-table, abbrev-table-p)
3249 (abbrev-minor-mode-table-alist, define-abbrev, abbrev-insert)
3250 (expand-abbrev, define-abbrev-table): Doc fixes.
3251
3252 2012-03-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
3253
3254 * mail/emacsbug.el (report-emacs-bug-hook): Look at the value of
3255 `message-default-send-mail-function' and not `send-mail-function'
3256 when doing the prompting for `sendmail-query-once' before sending
3257 in Message buffers (bug#10897).
3258
3259 * net/tls.el (open-tls-stream): Don't set the dont-query-on-exit flag.
3260 This is inconsistent with all the other stream functions, which leave
3261 the setting up to the higher levels (if so wanted) (bug#10931).
3262
3263 2012-03-02 Alan Mackenzie <acm@muc.de>
3264
3265 Depessimize the handling of very large macros.
3266
3267 * progmodes/cc-engine.el (c-macro-cache, c-macro-cache-start-pos):
3268 (c-macro-cache-syntactic): New variables to implement a one
3269 element macro cache.
3270 (c-invalidate-macro-cache): New function.
3271 (c-beginning-of-macro, c-end-of-macro, c-syntactic-end-of-macro):
3272 Adapt to use the new cache.
3273 (c-state-safe-place): Use better the cache of safe positions.
3274 (c-state-semi-nonlit-pos-cache)
3275 (c-state-semi-nonlit-pos-cache-limit):
3276 New variables for...
3277 (c-state-semi-safe-place): New function. Here, in a macro is "safe".
3278 (c-invalidate-state-cache-1): New stuff for c-state-semi-safe-place.
3279 (c-in-literal, c-literal-limits, c-determine-limit-get-base):
3280 Use c-state-semi-safe-place.
3281
3282 * progmodes/cc-langs.el (c-get-state-before-change-functions):
3283 Add c-invalidate-macro-cache to the C, C++, Obj entries.
3284
3285 2012-03-02 Michael Albinus <michael.albinus@gmx.de>
3286
3287 * jka-compr.el (jka-compr-call-process):
3288 Apply `file-accessible-directory-p' only when the default directory is
3289 not remote.
3290
3291 2012-03-01 Michael Albinus <michael.albinus@gmx.de>
3292
3293 * files.el (file-equal-p): Fix docstring. Avoid unnecessary
3294 access of FILE2, if FILE1 does not exist.
3295
3296 * net/tramp-sh.el (tramp-remote-process-environment): Add "PAGER=\"\"".
3297 Reported by Robert Lupton the Good <rhl@astro.princeton.edu>.
3298
3299 * vc/vc-git.el (vc-git--call): Enable `inhibit-null-byte-detection'.
3300 Add "PAGER=" to `process-environment'.
3301
3302 2012-03-01 Michael R. Mauger <mmaug@yahoo.com>
3303
3304 * progmodes/sql.el: Bug fix
3305 (sql-get-login-ext): Save login values in globals.
3306 (sql-get-login): Use new version of `sql-get-login-ext'.
3307 (sql-interactive-mode): Set global `sql-connection' to nil.
3308 (sql-connect): Set global values for connection.
3309 (sql-product-interactive): Save global values as buffer local.
3310
3311 2012-02-29 Leo Liu <sdl.web@gmail.com>
3312
3313 * abbrev.el (define-abbrevs): Reset sys to nil.
3314
3315 2012-02-28 Thierry Volpiatto <thierry.volpiatto@gmail.com>
3316
3317 * files.el (file-equal-p): Rename from `files-equal-p'.
3318 Return nil when one or both files don't exist.
3319 (file-subdir-of-p): Now only top directory must exists,
3320 return nil if it doesn't.
3321 (copy-directory): No need to test with `file-subdir-of-p' after
3322 creating dir.
3323 * net/tramp.el (tramp-file-name-for-operation): Rename `files-equal-p'
3324 to `file-equal-p'.
3325
3326 2012-02-28 Glenn Morris <rgm@gnu.org>
3327
3328 * shell.el (shell-mode):
3329 * progmodes/vhdl-mode.el (wildcard-to-regexp, file-expand-wildcards):
3330 * play/landmark.el (landmark-font-lock-face-O):
3331 * play/handwrite.el (handwrite):
3332 * play/gomoku.el (gomoku-O):
3333 * net/browse-url.el (browse-url-browser-display):
3334 * international/mule.el (define-charset):
3335 * htmlfontify.el (hfy-etags-cmd, hfy-face-attr-for-class):
3336 * filesets.el (filesets-find-file-delay):
3337 * eshell/em-xtra.el (eshell-xtra):
3338 * eshell/em-unix.el (eshell-grep):
3339 * emulation/viper.el (viper-mode):
3340 * emacs-lisp/regexp-opt.el (regexp-opt-group):
3341 * emacs-lisp/easymenu.el (easy-menu-define):
3342 * calendar/timeclock.el (timeclock-use-display-time):
3343 * bs.el (bs-mode):
3344 * bookmark.el (bookmark-save-flag):
3345 Doc fix (standardize possessive apostrophe usage).
3346
3347 2012-02-27 Chong Yidong <cyd@gnu.org>
3348
3349 * emulation/viper-cmd.el (viper-intercept-ESC-key):
3350 Fix key-binding lookup for ESC key (Bug#9146).
3351
3352 * font-lock.el (font-lock-specified-p): Rename from
3353 font-lock-spec-present. Callers changed.
3354
3355 2012-02-27 Daniel Hackney <dan@haxney.org>
3356
3357 * emacs-lisp/package.el (package-compute-transaction):
3358 Handle holding a package version to t in package-load-list.
3359
3360 2012-02-26 Michael Albinus <michael.albinus@gmx.de>
3361
3362 * net/tramp.el (tramp-inodes, tramp-devices): Initialize with 0.
3363 (tramp-get-inode, tramp-get-device): Use cached values.
3364
3365 2012-02-26 Alan Mackenzie <acm@muc.de>
3366
3367 Check there is a font-lock specification before doing initial
3368 fontification.
3369
3370 * font-core.el (font-lock-mode): Move the conditional from
3371 :after-hook to font-lock-initial-fontify.
3372 (font-lock-default-function): Move the check for a specification
3373 to font-lock-spec-present.
3374
3375 * font-lock.el (font-lock-initial-fontify): Call ...
3376 (font-lock-spec-present): New function.
3377
3378 2012-02-26 Jim Blandy <jimb@red-bean.com>
3379
3380 * progmodes/gdb-mi.el (gdb-mi-quote): New function.
3381 (gdb-send): Apply it to the operand of the '-interpreter-exec
3382 console' command, so that we can pass arguments with (say) quotes
3383 in them. Store exact string sent in gdb-debug-log (Bug#10765).
3384
3385 2012-02-26 Chong Yidong <cyd@gnu.org>
3386
3387 * help-fns.el (describe-function-1): Clarify description of
3388 remapping (Bug#10844).
3389
3390 * files.el (files-equal-p): Doc fix.
3391 (file-subdir-of-p): Doc fix. Convert loop macro to plain Lisp,
3392 and quit the loop once a mismatch is found.
3393
3394 2012-02-25 Juanma Barranquero <lekktu@gmail.com>
3395
3396 * bs.el (bs--show-with-configuration): Don't throw an error
3397 if the window cannot be split; otherwise, subsequent calls to
3398 bs-show fail, restoring a stale window config. (Bug#10882)
3399
3400 2012-02-25 Jan Djärv <jan.h.d@swipnet.se>
3401
3402 * term/ns-win.el (global-map): Bind ns-drag-file to
3403 ns-find-file (Bug#5855, Bug#10050).
3404
3405 2012-02-25 Andreas Schwab <schwab@linux-m68k.org>
3406
3407 * calendar/parse-time.el (parse-time-string): Allow extractor to
3408 return nil.
3409
3410 2012-02-25 Michael Albinus <michael.albinus@gmx.de>
3411
3412 * net/tramp.el (tramp-file-name-for-operation):
3413 Add `files-equal-p' and `file-subdir-of-p'.
3414
3415 * net/tramp-sh.el (tramp-sh-handle-copy-directory):
3416 * net/tramp-smb.el (tramp-smb-handle-copy-directory):
3417 Add COPY-CONTENTS argument.
3418
3419 2012-02-25 Chong Yidong <cyd@gnu.org>
3420
3421 Add custom groups for VC backends, for consistency with vc-bzr.
3422
3423 * vc/vc-arch.el (vc-arch):
3424 * vc/vc-cvs.el (vc-cvs):
3425 * vc/vc-git.el (vc-git):
3426 * vc/vc-hg.el (vc-hg):
3427 * vc/vc-mtn.el (vc-mtn):
3428 * vc/vc-rcs.el (vc-rcs):
3429 * vc/vc-sccs.el (vc-sccs):
3430 * vc/vc-svn.el (vc-svn): New customization group (Bug#10871).
3431 All relevant defcustoms reassigned.
3432
3433 2012-02-25 Chong Yidong <cyd@gnu.org>
3434
3435 * newcomment.el (comment-styles): Add autoload (Bug#10868).
3436
3437 * term/x-win.el (x-initialize-window-system): Reduce default for
3438 x-selection-timeout to 5 seconds (Bug#8869).
3439
3440 2012-02-24 Thierry Volpiatto <thierry.volpiatto@gmail.com>
3441
3442 * files.el (files-equal-p, file-subdir-of-p): New functions.
3443 (copy-directory): Error when trying to copy a directory on itself.
3444 Add missing copy-contents arg to tramp handler.
3445 * dired-aux.el (dired-copy-file-recursive): Same.
3446 (dired-create-files): Modify destination when source is equal to
3447 dest when copying files.
3448 Return also when dest is a subdir of source. (Bug#10489)
3449
3450 2012-02-24 Michael Albinus <michael.albinus@gmx.de>
3451
3452 * net/ange-ftp.el (ange-ftp-parse-netrc): Suppress comment lines.
3453 (Bug#10874)
3454
3455 2012-02-23 Alan Mackenzie <acm@muc.de>
3456
3457 * emacs-lisp/easy-mmode.el (define-minor-mode): Add extra
3458 parameter "after-hook:" to allow the expansion to run code after
3459 the execution of the mode hooks.
3460
3461 * font-lock.el (font-lock-initial-fontify): New function extracted
3462 from font-lock-mode-internal.
3463
3464 * font-core.el (font-lock-mode): Call font-lock-initial-fontify in
3465 :after-hook.
3466
3467 2012-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
3468
3469 * minibuffer.el: Make sure cycling is reset upon edit with icomplete.el.
3470 (completion--cache-all-sorted-completions): New function.
3471 (completion-all-sorted-completions): Use it.
3472 (completion--do-completion, minibuffer-force-complete):
3473 Use it to re-instate the flush hook.
3474
3475 * icomplete.el (icomplete-completions): Replace last fix with a better
3476 one (bug#10850).
3477
3478 2012-02-23 Dmitry Gutov <dgutov@yandex.ru>
3479
3480 * emacs-lisp/lisp.el (beginning-of-defun-raw): Don't call end-of-defun
3481 when it might call us back infinitely (bug#10797).
3482
3483 2012-02-23 Glenn Morris <rgm@gnu.org>
3484
3485 * minibuffer.el (completion-category-overrides): Doc fix.
3486
3487 2012-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
3488
3489 * minibuffer.el (completion-table-with-context): Fix inf-loop.
3490 Reported by Aaron S. Hawley <aaron.s.hawley@gmail.com>.
3491
3492 2012-02-23 Glenn Morris <rgm@gnu.org>
3493
3494 * emacs-lisp/authors.el (authors-aliases, authors-fixed-case)
3495 (authors-obsolete-files-regexps, authors-ignored-files)
3496 (authors-ambiguous-files, authors-renamed-files-alist):
3497 Add more entries.
3498
3499 2012-02-23 Juri Linkov <juri@jurta.org>
3500
3501 * isearch.el (isearch-occur): Sync interactive spec with occur's
3502 new feature in `occur-read-primary-args'. Doc fix. (Bug#10705)
3503
3504 * replace.el (occur-menu-map): Add menu item for `occur-edit-mode'.
3505
3506 2012-02-22 Juri Linkov <juri@jurta.org>
3507
3508 * international/mule-cmds.el (read-char-by-name): Use \` and \'.
3509 (ucs-insert): Doc fix. Check for hex digits in the string.
3510 Don't display `nil' in the error message. (Bug#10857)
3511
3512 2012-02-22 Alan Mackenzie <acm@muc.de>
3513
3514 * progmodes/cc-mode.el: Revert change #2012-02-06T22:08:41Z!larsi@gnus.org from 2012-02-06.
3515
3516 2012-02-22 Glenn Morris <rgm@gnu.org>
3517
3518 * ffap.el (ffap-c-path):
3519 * man.el (Man-header-file-path): Handle multiarch. (Bug#10702)
3520
3521 2012-02-22 Chong Yidong <cyd@gnu.org>
3522
3523 * custom.el (load-theme): Doc fix.
3524
3525 2012-02-22 Glenn Morris <rgm@gnu.org>
3526
3527 * dired-x.el (dired-guess-shell-alist-default):
3528 Remove escape sequences from nroff output. (Bug#172)
3529
3530 2012-02-21 Glenn Morris <rgm@gnu.org>
3531
3532 * vc/emerge.el (emerge-defvar-local):
3533 Set `permanent-local' property rather than unused `preserved'.
3534
3535 * textmodes/picture.el (picture-delete-char): New alias.
3536 (picture-mode-map): Use it. (Bug#10860)
3537 (picture-mode): Doc fix.
3538
3539 2012-02-21 Juanma Barranquero <lekktu@gmail.com>
3540
3541 * newcomment.el (uncomment-region-default): Remove unused binding.
3542
3543 2012-02-21 Glenn Morris <rgm@gnu.org>
3544
3545 * textmodes/picture.el (picture-motion, picture-motion-reverse)
3546 (picture-self-insert, picture-tab-chars): Doc fix.
3547 (picture-mode-map): Fix C-a, C-e.
3548
3549 2012-02-20 Glenn Morris <rgm@gnu.org>
3550
3551 * emacs-lisp/authors.el (authors-aliases): Add another entry.
3552
3553 2012-02-20 Leo Liu <sdl.web@gmail.com>
3554
3555 * icomplete.el (icomplete-completions): Check FROM arg before
3556 passing to substring (Bug#10850).
3557
3558 2012-02-19 Chong Yidong <cyd@gnu.org>
3559
3560 * comint.el: Require ansi-color.
3561 (comint-output-filter-functions): Add ansi-color-process-output.
3562
3563 * ansi-color.el: Don't set comint-output-filter-functions; it is
3564 now in the initial value defined in comint.el.
3565 (ansi-color-apply-face-function): New variable.
3566 (ansi-color-apply-on-region): Use it.
3567 (ansi-color-apply-overlay-face): New function.
3568
3569 * shell.el (shell): No need to require ansi-color.
3570 (shell-mode): Use ansi-color-apply-face-function to highlight
3571 color escapes using font-lock-face property (Bug#10835).
3572
3573 2012-02-19 Chong Yidong <cyd@gnu.org>
3574
3575 * vc/ediff-init.el (ediff-strip-mode-line-format): Handle non-list
3576 mode-line formats (Bug#10839).
3577
3578 2012-02-18 Glenn Morris <rgm@gnu.org>
3579
3580 * mail/rmail.el (rmail-dont-reply-to-names): Mark as obsolete.
3581
3582 * mail/undigest.el (unforward-rmail-message): Doc fix.
3583
3584 * saveplace.el (save-place-ignore-files-regexp): Add :version.
3585
3586 2012-02-18 Eli Zaretskii <eliz@gnu.org>
3587
3588 * international/characters.el (script-list): Sync with the latest
3589 Unicode Character Database.
3590
3591 2012-02-18 Andreas Schwab <schwab@linux-m68k.org>
3592
3593 * international/titdic-cnv.el: Remove duplicate coding tag.
3594 * language/cham.el: Likewise.
3595 * language/tai-viet.el: Likewise.
3596
3597 2012-02-18 Glenn Morris <rgm@gnu.org>
3598
3599 * calendar/cal-menu.el (cal-menu-diary-menu, cal-menu-goto-menu):
3600 * calendar/calendar.el (diary-file, diary-bahai-entry-symbol)
3601 (calendar-bahai-all-holidays-flag, calendar-other-dates):
3602 * calendar/diary-lib.el (diary-abbreviated-year-flag):
3603 * calendar/holidays.el (holiday-bahai-holidays)
3604 (calendar-holidays, list-holidays):
3605 Use utf-8 Bahá'í in doc-strings, menus, etc.
3606
3607 2012-02-17 Tassilo Horn <tassilo@member.fsf.org>
3608
3609 * saveplace.el (save-place-ignore-files-regexp): New variable
3610 allowing for excluding files from saving their location of point.
3611 The default value matches the temporary commit message editing
3612 files from Git, SVN, Bazaar, and Mercurial.
3613 (save-place-to-alist): Use it.
3614
3615 2012-02-17 Lawrence Mitchell <wence@gmx.li>
3616 Stefan Monnier <monnier@iro.umontreal.ca>
3617
3618 * newcomment.el (uncomment-region-default): Don't leave extra space
3619 when an arg is provided (bug#8150).
3620
3621 2012-02-17 Teodor Zlatanov <tzz@lifelogs.com>
3622
3623 * net/gnutls.el (gnutls-trustfiles): Fix Cygwin bundle location.
3624
3625 2012-02-17 Glenn Morris <rgm@gnu.org>
3626
3627 * net/socks.el: Require network-stream. (Bug#10599)
3628
3629 2012-02-17 Kenichi Handa <handa@m17n.org>
3630
3631 * international/charprop.el:
3632 * international/uni-name.el:
3633 * international/uni-old-name.el:
3634 * international/uni-comment.el: Regenerate.
3635
3636 2012-02-16 Glenn Morris <rgm@gnu.org>
3637
3638 * calendar/cal-hebrew.el (calendar-hebrew-list-yahrzeits):
3639 Interactively in calendar buffer, give an error if not on a date.
3640
3641 2012-02-15 Glenn Morris <rgm@gnu.org>
3642
3643 * shell.el (shell-delimiter-argument-list):
3644 Revert 2011-02-17 change. (Bug#8027)
3645
3646 2012-02-15 Chong Yidong <cyd@gnu.org>
3647
3648 * minibuffer.el (completion-at-point-functions): Doc fix.
3649
3650 * custom.el (defcustom): Doc fix; note use of defvar.
3651
3652 2012-02-15 Glenn Morris <rgm@gnu.org>
3653
3654 * mail/smtpmail.el (smtpmail-smtp-user, smtpmail-stream-type):
3655 Doc fixes.
3656
3657 2012-02-14 Glenn Morris <rgm@gnu.org>
3658
3659 * mail/smtpmail.el (smtpmail-query-smtp-server): Give it a doc.
3660
3661 2012-02-14 Lars Ingebrigtsen <larsi@gnus.org>
3662
3663 * mail/smtpmail.el (smtpmail-query-smtp-server): Fix typo in the
3664 way the ports list is computed.
3665 (smtpmail-query-smtp-server): Prompt the user for a port number if
3666 we can't connect to any of the standard ports (bug#10810).
3667
3668 2012-02-14 Teodor Zlatanov <tzz@lifelogs.com>
3669
3670 * net/gnutls.el (gnutls-trustfiles): Add Cygwin location.
3671
3672 2012-02-13 Glenn Morris <rgm@gnu.org>
3673
3674 * minibuffer.el (read-file-name): Doc fix. (Bug#10798)
3675
3676 2012-02-13 Teodor Zlatanov <tzz@lifelogs.com>
3677
3678 * net/gnutls.el (gnutls-trustfiles): New variable.
3679 (gnutls-negotiate): Use it.
3680
3681 2012-02-13 Lars Ingebrigtsen <larsi@gnus.org>
3682
3683 * simple.el (mail-user-agent): Mention that `gnus-user-agent' only
3684 does its stuff if Gnus is running.
3685
3686 2012-02-13 Alan Mackenzie <acm@muc.de>
3687
3688 Fix a loop in c-set-fl-decl-start.
3689
3690 * progmodes/cc-engine.el (c-set-fl-decl-start): Add a check that
3691 c-backward-syntactic-ws actually moves backwards.
3692
3693 2012-02-13 Leo Liu <sdl.web@gmail.com>
3694
3695 * net/rcirc.el (rcirc-markup-attributes): Move point to the
3696 beginning so that all \C-o chars are removed.
3697
3698 2012-02-12 Teodor Zlatanov <tzz@lifelogs.com>
3699
3700 * net/gnutls.el (gnutls-algorithm-priority): Add missing :group tag.
3701
3702 2012-02-12 Alan Mackenzie <acm@muc.de>
3703
3704 Fix infinite loop with long macros.
3705 * progmodes/cc-engine.el (c-state-safe-place): Handle macros properly.
3706
3707 2012-02-12 Chong Yidong <cyd@gnu.org>
3708
3709 * window.el (display-buffer): Doc fix (Bug#10785).
3710
3711 2012-02-12 Glenn Morris <rgm@gnu.org>
3712
3713 * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
3714 (x-disown-selection-internal, x-get-selection-internal):
3715 Sync docs with the xselect.c versions.
3716
3717 * allout-widgets.el: Add missing license notice.
3718
3719 2012-02-11 Glenn Morris <rgm@gnu.org>
3720
3721 * select.el (x-get-selection-internal, x-own-selection-internal)
3722 (x-disown-selection-internal):
3723 * x-dnd.el (x-get-selection-internal): Update declarations.
3724
3725 * vc/log-view.el (vc-diff-internal): Remove unneeded declaration.
3726
3727 * window.el (window-sides-slots):
3728 * tool-bar.el (tool-bar-position):
3729 * term/xterm.el (xterm-extra-capabilities):
3730 * ses.el (ses-self-reference-early-detection):
3731 * progmodes/verilog-mode.el (verilog-auto-declare-nettype)
3732 (verilog-auto-wire-type)
3733 (verilog-auto-delete-trailing-whitespace)
3734 (verilog-auto-reset-blocking-in-non, verilog-auto-inst-sort)
3735 (verilog-auto-tieoff-declaration):
3736 * progmodes/sql.el (sql-login-hook, sql-ansi-statement-starters)
3737 (sql-oracle-statement-starters, sql-oracle-scan-on):
3738 * progmodes/prolog.el (prolog-align-comments-flag)
3739 (prolog-indent-mline-comments-flag, prolog-object-end-to-0-flag)
3740 (prolog-left-indent-regexp, prolog-paren-indent-p)
3741 (prolog-paren-indent, prolog-parse-mode, prolog-keywords)
3742 (prolog-types, prolog-mode-specificators)
3743 (prolog-determinism-specificators, prolog-directives)
3744 (prolog-electric-newline-flag, prolog-hungry-delete-key-flag)
3745 (prolog-electric-dot-flag)
3746 (prolog-electric-dot-full-predicate-template)
3747 (prolog-electric-underscore-flag, prolog-electric-tab-flag)
3748 (prolog-electric-if-then-else-flag, prolog-electric-colon-flag)
3749 (prolog-electric-dash-flag, prolog-old-sicstus-keys-flag)
3750 (prolog-program-switches, prolog-prompt-regexp)
3751 (prolog-debug-on-string, prolog-debug-off-string)
3752 (prolog-trace-on-string, prolog-trace-off-string)
3753 (prolog-zip-on-string, prolog-zip-off-string)
3754 (prolog-use-standard-consult-compile-method-flag)
3755 (prolog-use-prolog-tokenizer-flag, prolog-imenu-flag)
3756 (prolog-imenu-max-lines, prolog-info-predicate-index)
3757 (prolog-underscore-wordchar-flag, prolog-use-sicstus-sd)
3758 (prolog-char-quote-workaround):
3759 * progmodes/cc-vars.el (c-defun-tactic):
3760 * net/tramp.el (tramp-encoding-command-interactive)
3761 (tramp-local-end-of-line):
3762 * net/soap-client.el (soap-client):
3763 * net/netrc.el (netrc-file):
3764 * net/gnutls.el (gnutls):
3765 * minibuffer.el (completion-category-overrides)
3766 (completion-cycle-threshold)
3767 (completion-pcm-complete-word-inserts-delimiters):
3768 * man.el (Man-name-local-regexp):
3769 * mail/feedmail.el (feedmail-display-full-frame):
3770 * international/characters.el (glyphless-char-display-control):
3771 * eshell/em-ls.el (eshell-ls-date-format):
3772 * emacs-lisp/cl-indent.el (lisp-lambda-list-keyword-alignment)
3773 (lisp-lambda-list-keyword-parameter-indentation)
3774 (lisp-lambda-list-keyword-parameter-alignment):
3775 * doc-view.el (doc-view-image-width, doc-view-unoconv-program):
3776 * dired-x.el (dired-omit-verbose):
3777 * cus-theme.el (custom-theme-allow-multiple-selections):
3778 * calc/calc.el (calc-highlight-selections-with-faces)
3779 (calc-lu-field-reference, calc-lu-power-reference)
3780 (calc-note-threshold):
3781 * battery.el (battery-mode-line-limit):
3782 * arc-mode.el (archive-7z-extract, archive-7z-expunge)
3783 (archive-7z-update):
3784 * allout.el (allout-prefixed-keybindings)
3785 (allout-unprefixed-keybindings)
3786 (allout-inhibit-auto-fill-on-headline)
3787 (allout-flattened-numbering-abbreviation):
3788 * allout-widgets.el (allout-widgets-auto-activation)
3789 (allout-widgets-icons-dark-subdir)
3790 (allout-widgets-icons-light-subdir, allout-widgets-icon-types)
3791 (allout-widgets-theme-dark-background)
3792 (allout-widgets-theme-light-background)
3793 (allout-widgets-item-image-properties-emacs)
3794 (allout-widgets-item-image-properties-xemacs)
3795 (allout-widgets-run-unit-tests-on-load)
3796 (allout-widgets-time-decoration-activity)
3797 (allout-widgets-hook-error-post-time)
3798 (allout-widgets-track-decoration):
3799 Add missing :version tags to new defcustoms and defgroups.
3800
3801 * progmodes/sql.el (sql-ansi-statement-starters)
3802 (sql-oracle-statement-starters): Add custom type.
3803
3804 * progmodes/prolog.el: Remove leading '*' from defcustom docs.
3805 (prolog-system-version): Give it a type.
3806
3807 2012-02-11 Eli Zaretskii <eliz@gnu.org>
3808
3809 * term/pc-win.el (x-select-text, x-selection-owner-p)
3810 (x-own-selection-internal, x-disown-selection-internal)
3811 (x-get-selection-internal): Sync doc strings and argument lists
3812 with xselect.c, common-win.el and x-win.el. (Bug#10783)
3813
3814 2012-02-11 Leo Liu <sdl.web@gmail.com>
3815
3816 * progmodes/python.el (python-end-of-statement): Fix infinite
3817 loop. (Bug#10788)
3818
3819 2012-02-10 Glenn Morris <rgm@gnu.org>
3820
3821 * international/mule-cmds.el (unify-8859-on-encoding-mode)
3822 (unify-8859-on-decoding-mode): Properly mark as obsolete.
3823
3824 2012-02-10 Lars Ingebrigtsen <larsi@gnus.org>
3825
3826 * mail/emacsbug.el (report-emacs-bug-hook): Query the user first
3827 about SMTP before checking the From header.
3828
3829 * mail/sendmail.el (sendmail-query-user-about-smtp): Refactor out
3830 into own function for reuse by emacsbug.el.
3831
3832 2012-02-10 Leo Liu <sdl.web@gmail.com>
3833
3834 * subr.el (condition-case-unless-debug): Rename from
3835 condition-case-no-debug. All callers changed.
3836 (with-demoted-errors): Fix caller.
3837
3838 * vc/diff-mode.el (diff-auto-refine-mode, diff-hunk):
3839 * nxml/rng-valid.el (rng-do-some-validation):
3840 * emacs-lisp/package.el (package-refresh-contents)
3841 (package-menu-execute):
3842 * desktop.el (desktop-create-buffer):
3843 * font-lock.el (lisp-font-lock-keywords-2): Caller changed.
3844
3845 2012-02-10 Glenn Morris <rgm@gnu.org>
3846
3847 * textmodes/bibtex.el:
3848 Add missing :version tags for new/changed defcustoms.
3849
3850 * files.el (remote-file-name-inhibit-cache): Doc fixes.
3851
3852 2012-02-09 Lars Ingebrigtsen <larsi@rusty>
3853
3854 * mail/smtpmail.el (smtpmail-user-mail-address): New function.
3855 (smtpmail-via-smtp): Use it, or fall back on the From address.
3856 (smtpmail-send-it): Ditto.
3857
3858 2012-02-09 Stefan Monnier <monnier@iro.umontreal.ca>
3859
3860 * emacs-lisp/bytecomp.el (byte-compile-file-form-defvar):
3861 Don't fallback on byte-compile-defvar. Optimize (defvar foo) away.
3862 (byte-compile-tmp-var): New const.
3863 (byte-compile-defvar): Use it to minimize .elc size.
3864 Just use `defvar' rather than simulate it (bug#10761).
3865
3866 2012-02-09 Glenn Morris <rgm@gnu.org>
3867
3868 * files.el (rename-uniquely): Doc fix. (Bug#3806)
3869
3870 * progmodes/cc-guess.el (c-guess-offset-threshold, c-guess-region-max):
3871 Add :version tags.
3872
3873 * progmodes/compile.el (compilation-error-screen-columns)
3874 (compilation-first-column, compilation-filter-start): Doc fixes.
3875
3876 * vc/log-view.el (log-view-toggle-entry-display):
3877 * vc/vc.el (vc-merge, vc-pull): Doc fixes.
3878
3879 * mail/emacsbug.el (report-emacs-bug-can-use-osx-open)
3880 (report-emacs-bug-can-use-xdg-email):
3881 (report-emacs-bug-insert-to-mailer): Doc fixes.
3882 (report-emacs-bug): Message fix.
3883
3884 * net/browse-url.el (browse-url-can-use-xdg-open)
3885 (browse-url-xdg-open): Doc fixes.
3886
3887 * electric.el (electric-indent-mode, electric-pair-mode)
3888 (electric-layout-rules, electric-layout-mode): Doc fixes.
3889 (electric-pair-pairs, electric-pair-skip-self): Add :version tags.
3890
3891 2012-02-08 Martin Rudalics <rudalics@gmx.at>
3892
3893 * server.el (server-unselect-display): Don't inadvertently kill
3894 the current buffer. (Bug#10729)
3895
3896 2012-02-08 Glenn Morris <rgm@gnu.org>
3897
3898 * progmodes/sql.el (sql-port, sql-connection-alist, sql-list-all)
3899 (sql-list-table): Doc fixes.
3900
3901 * image-mode.el (image-transform-minor-mode-map, image-transform-mode):
3902 Comment out (does nothing).
3903
3904 * completion.el (dynamic-completion-mode):
3905 * dirtrack.el (dirtrack-debug-mode):
3906 * electric.el (electric-layout-mode):
3907 * epa-mail.el (epa-mail-mode, epa-global-mail-mode):
3908 * face-remap.el (text-scale-mode, buffer-face-mode):
3909 * iimage.el (iimage-mode):
3910 * image-mode.el (image-transform-mode):
3911 * minibuffer.el (completion-in-region-mode):
3912 * scroll-lock.el (scroll-lock-mode):
3913 * simple.el (next-error-follow-minor-mode):
3914 * tar-mode.el (tar-subfile-mode):
3915 * tooltip.el (tooltip-mode):
3916 * vcursor.el (vcursor-use-vcursor-map):
3917 * wid-browse.el (widget-minor-mode):
3918 * emulation/tpu-edt.el (tpu-edt-mode):
3919 * emulation/tpu-extras.el (tpu-cursor-free-mode):
3920 * international/iso-ascii.el (iso-ascii-mode):
3921 * language/thai-util.el (thai-word-mode):
3922 * mail/supercite.el (sc-minor-mode):
3923 * net/goto-addr.el (goto-address-mode):
3924 * net/rcirc.el (rcirc-multiline-minor-mode, rcirc-track-minor-mode):
3925 * progmodes/cwarn.el (cwarn-mode):
3926 * progmodes/flymake.el (flymake-mode):
3927 * progmodes/glasses.el (glasses-mode):
3928 * progmodes/hideshow.el (hs-minor-mode):
3929 * progmodes/pascal.el (pascal-outline-mode):
3930 * textmodes/enriched.el (enriched-mode):
3931 * vc/smerge-mode.el (smerge-mode):
3932 Doc fixes (minor mode argument).
3933
3934 2012-02-07 Eli Zaretskii <eliz@gnu.org>
3935
3936 * ls-lisp.el (ls-lisp-sanitize): New function.
3937 (ls-lisp-insert-directory): Use it to fix or remove any elements
3938 in file-alist with missing attributes. (Bug#4673)
3939
3940 2012-02-07 Alan Mackenzie <acm@muc.de>
3941
3942 Fix spurious recognition of c-in-knr-argdecl.
3943
3944 * progmodes/cc-engine.el (c-in-knr-argdecl): Check for '=' in a
3945 putative K&R region.
3946
3947 2012-02-07 Alan Mackenzie <acm@muc.de>
3948
3949 * progmodes/cc-engine.el (c-forward-objc-directive):
3950 Prevent looping in "#pragma mark @implementation".
3951
3952 2012-02-07 Michael Albinus <michael.albinus@gmx.de>
3953
3954 * notifications.el (notifications-on-closed-signal): Make `reason'
3955 optional. (Bug#10744)
3956
3957 2012-02-07 Glenn Morris <rgm@gnu.org>
3958
3959 * emacs-lisp/easy-mmode.el (define-minor-mode):
3960 Doc fixes for the macro and the mode it defines.
3961
3962 * image.el (imagemagick-types-inhibit): Doc fix.
3963
3964 * cus-start.el (imagemagick-render-type): Add it.
3965
3966 2012-02-06 Lars Ingebrigtsen <larsi@gnus.org>
3967
3968 * progmodes/cc-mode.el (c-standard-font-lock-fontify-region-function):
3969 Set the default at load time, too, so that `font-lock-fontify-buffer'
3970 can be called without setting up the entire mode first. This fixes
3971 a bug in `mm-inline-text' with C MIME parts.
3972
3973 2012-02-06 Chong Yidong <cyd@gnu.org>
3974
3975 * simple.el (list-processes--refresh): Delete exited processes
3976 (Bug#8094).
3977
3978 * comint.el (comint-next-prompt): next-single-char-property-change
3979 and prev-single-char-property-change never return nil (Bug#8657).
3980
3981 * custom.el (defcustom): Doc fix (Bug#9711).
3982
3983 2012-02-05 Chong Yidong <cyd@gnu.org>
3984
3985 * cus-edit.el (custom-variable-reset-backup): Quote the value
3986 before storing it in the customized-value property (Bug#6712).
3987 (custom-display): Add a customization type tag.
3988 (custom-buffer-create-internal): Improve tooltip message.
3989
3990 * wid-edit.el (widget-field-value-get): New optional arg to
3991 suppress trailing whitespace truncation.
3992 (character): Use it (Bug#2689).
3993
3994 2012-02-05 Andreas Schwab <schwab@linux-m68k.org>
3995
3996 * progmodes/gud.el (gud-pv): Use pv instead of pv1.
3997 * progmodes/gdb-mi.el (gud-pp): Use pp instead of pp1.
3998
3999 2012-02-05 Chong Yidong <cyd@gnu.org>
4000
4001 * cus-edit.el (custom-variable-value-create): For mismatched
4002 types, show the current value (Bug#7600).
4003
4004 * custom.el (defcustom): Doc fix.
4005
4006 2012-02-05 Glenn Morris <rgm@gnu.org>
4007
4008 * font-lock.el (lisp-font-lock-keywords-2): Add with-wrapper-hook.
4009
4010 2012-02-05 Juanma Barranquero <lekktu@gmail.com>
4011
4012 * emacs-lisp/pp.el (pp-to-string): Use `with-temp-buffer'.
4013 (pp-buffer): Use `ignore-errors', `looking-at-p'.
4014 (pp-last-sexp): Use `looking-at-p'.
4015
4016 2012-02-04 Glenn Morris <rgm@gnu.org>
4017
4018 * files.el (revert-buffer):
4019 Doc fix (mention revert-buffer-in-progress-p).
4020
4021 * emacs-lisp/ert-x.el (ert-simulate-command):
4022 Check deferred-action-list (which is obsolete) is bound.
4023
4024 * subr.el (with-wrapper-hook): Doc fixes.
4025
4026 * simple.el (filter-buffer-substring-functions)
4027 (buffer-substring-filters, filter-buffer-substring): Doc fixes.
4028
4029 2012-02-04 Lars Ljung <lars@matholka.se> (tiny change)
4030
4031 * eshell/esh-ext.el (eshell-windows-shell-file): Match "cmdproxy"
4032 anywhere in shell-file-name, not just at the beginning. (Bug#10523)
4033
4034 2012-02-04 Leo Liu <sdl.web@gmail.com>
4035
4036 * emacs-lisp/smie.el: Fix dead link (Bug#10711).
4037
4038 2012-02-04 Glenn Morris <rgm@gnu.org>
4039
4040 * image.el (image-extension-data): Add obsolete alias.
4041
4042 * isearch.el (isearch-update): Doc fix.
4043
4044 * facemenu.el (list-colors-display): Doc fix (minor rephrasing).
4045
4046 * ido.el (ido-find-file): Doc fix (ido-toggle-vc not on any key).
4047
4048 2012-02-03 Glenn Morris <rgm@gnu.org>
4049
4050 * image.el (image-animated-p): Doc fix. Use image-animated-types.
4051 (image-animate-timeout): Doc fix.
4052
4053 * image-mode.el (image-animate-loop, image-toggle-animation): Doc fixes.
4054
4055 2012-02-02 Glenn Morris <rgm@gnu.org>
4056
4057 * server.el (server-auth-dir): Doc fix.
4058 (server-eval-at): Doc fix. Give an explicit error if !server-use-tcp.
4059
4060 * subr.el (run-mode-hooks): Doc fix.
4061
4062 2012-02-02 Juri Linkov <juri@jurta.org>
4063
4064 * image-mode.el (image-toggle-display-image): Remove tautological
4065 `major-mode' from the `derived-mode-p' test.
4066
4067 2012-02-02 Kenichi Handa <handa@m17n.org>
4068
4069 * composite.el (compose-region): Cancel previous change.
4070
4071 2012-02-02 Kenichi Handa <handa@m17n.org>
4072
4073 * composite.el (compose-region, compose-string): Signal error for
4074 a null string component (Bug#6988).
4075
4076 2012-02-01 Chong Yidong <cyd@gnu.org>
4077
4078 * view.el (view-buffer-other-window, view-buffer-other-frame):
4079 Handle special modes like view-buffer (Bug#10650).
4080 (view-buffer): Simplify.
4081
4082 * frame.el (set-frame-font): Tweak meaning of third argument.
4083
4084 * dynamic-setting.el (font-setting-change-default-font):
4085 Use set-frame-font (Bug#9982).
4086
4087 2012-02-01 Glenn Morris <rgm@gnu.org>
4088
4089 * progmodes/compile.el (compilation-internal-error-properties):
4090 Respect compilation-first-column in the "*compilation*" buffer.
4091
4092 * emacs-lisp/easy-mmode.el (define-minor-mode):
4093 Relax :variable's test for a named function.
4094
4095 2012-01-31 Alan Mackenzie <acm@muc.de>
4096
4097 * progmodes/cc-engine.el (c-guess-basic-syntax): CASE 5B.1: Fix an
4098 off by one error.
4099
4100 2012-01-31 Chong Yidong <cyd@gnu.org>
4101
4102 * frame.el (set-frame-font): New arg ALL-FRAMES.
4103
4104 * menu-bar.el (menu-set-font): Use set-frame-font.
4105
4106 * faces.el (face-spec-reset-face): Don't apply unspecified
4107 attribute values to the default face.
4108
4109 2012-01-31 Juanma Barranquero <lekktu@gmail.com>
4110
4111 * progmodes/cwarn.el (cwarn): Remove dead link.
4112 (cwarn-configuration, cwarn-verbose, cwarn-mode-text, cwarn-load-hook):
4113 Remove * from defcustom docstrings.
4114 (turn-on-cwarn-mode): Make obsolete.
4115 (c-at-toplevel-p): Remove compatibility code for Emacs 20.3 and older.
4116 (turn-on-cwarn-mode-if-enabled): Call `cwarn-mode'.
4117
4118 2012-01-31 Glenn Morris <rgm@gnu.org>
4119
4120 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix.
4121 Fix :variable handling of mode a symbol not equal to modefun.
4122 Allow named functions to be used as the cdr of :variable.
4123
4124 2012-01-30 Glenn Morris <rgm@gnu.org>
4125
4126 * emacs-lisp/authors.el (authors-fixed-entries):
4127 Remove reference to deleted file rnewspost.el.
4128
4129 2012-01-29 Juanma Barranquero <lekktu@gmail.com>
4130
4131 * window.el (window-with-parameter): Remove unused variable `windows'.
4132 (window--side-check): Remove unused variable `code'.
4133 (window--resize-siblings): Remove unused variable `first'.
4134 (adjust-window-trailing-edge): Remove unused variable `failed'.
4135 (window-deletable-p, window--delete): Remove unused variable `buffer'.
4136 Use `let', not `let*'.
4137 (balance-windows-2): Remove unused variable `found'.
4138 (window--state-put-2): Remove unused variable `splits'.
4139 (window-state-put): Remove unused variable `selected'.
4140 (same-window-p): Use `string-match-p'.
4141 (display-buffer-assq-regexp): Remove unused variable `value'.
4142 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
4143 Mark argument ALIST as ignored.
4144 (pop-to-buffer): Remove unused variable `old-window'.
4145
4146 2012-01-29 Eli Zaretskii <eliz@gnu.org>
4147
4148 * jka-cmpr-hook.el (jka-compr-compression-info-list): Support .lz
4149 and .lzma compressed files.
4150
4151 2012-01-29 Chong Yidong <cyd@gnu.org>
4152
4153 * frame.el (window-system-default-frame-alist): Doc fix.
4154
4155 * dynamic-setting.el (font-setting-change-default-font): Don't
4156 change the default face if SET-FONT argument is non-nil (Bug#9982).
4157
4158 2012-01-29 Samuel Bronson <naesten@gmail.com> (tiny change)
4159
4160 * custom.el (defcustom): Add doc link to Lisp manual (Bug#10635).
4161
4162 2012-01-29 Syver Enstad <syver.enstad@cisco.com> (tiny change)
4163
4164 * progmodes/gud.el (pdb): Give pdb full paths, to allow setting
4165 breakpoints in files outside current directory (Bug#6098).
4166
4167 2012-01-29 Chong Yidong <cyd@gnu.org>
4168
4169 * progmodes/python.el: Require ansi-color at top-level.
4170
4171 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-abbrev-table):
4172 Define and use in Emacs Lisp mode (Bug#9360).
4173 (lisp-mode-abbrev-table): Add doc.
4174 (lisp-mode-variables): Don't set local-abbrev-table.
4175 (lisp-interaction-mode): Use emacs-lisp-mode-abbrev-table.
4176
4177 2012-01-28 Roland Winkler <winkler@gnu.org>
4178
4179 * textmodes/bibtex.el (bibtex-vec-incr): Fix docstring.
4180
4181 2012-01-28 Roland Winkler <winkler@gnu.org>
4182
4183 * textmodes/bibtex.el (bibtex-entry-alist): New function.
4184 (bibtex-set-dialect): Use it. Either set global values of
4185 dialect-dependent variables or bind these variables buffer-locally
4186 (Bug#10254).
4187 (bibtex-mode): Call bibtex-set-dialect via
4188 hack-local-variables-hook.
4189 (bibtex-dialect): Update docstring.
4190 Add safe-local-variable predicate.
4191 (bibtex-entry-alist, bibtex-field-alist): Initialize via
4192 bibtex-set-dialect.
4193 (bibtex-mode-map): Define menu for each dialect.
4194 (bibtex-entry): Fix docstring.
4195
4196 2012-01-28 Chong Yidong <cyd@gnu.org>
4197
4198 * eshell/esh-arg.el (eshell-quote-argument): New function.
4199
4200 * eshell/esh-ext.el (eshell-invoke-batch-file):
4201 * eshell/em-unix.el (eshell/cat, eshell/du): Use it to quote the
4202 first arg to eshell-parse-command (Bug#10523).
4203
4204 2012-01-28 Drew Adams <drew.adams@oracle.com>
4205
4206 * net/ange-ftp.el (ange-ftp-canonize-filename): Check, that
4207 `default-directory' is non-nil.
4208
4209 2012-01-28 Eli Zaretskii <eliz@gnu.org>
4210
4211 * mail/emacsbug.el (report-emacs-bug): Fill the potentially long
4212 line that displays system-configuration-options. (Bug#9924)
4213
4214 2012-01-28 Drew Adams <drew.adams@oracle.com>
4215
4216 * descr-text.el (describe-char): Show information about POS, in
4217 addition to information about the character at POS. Improve and
4218 update the doc string. Change "code point" to "code point in
4219 charset", to avoid confusion with the character's Unicode code
4220 point shown above that. (Bug#10129)
4221
4222 2012-01-28 Eli Zaretskii <eliz@gnu.org>
4223
4224 * descr-text.el (describe-char): Show the raw character, not only
4225 its display form at POS. Suggested by Kenichi Handa <handa@m17n.org>.
4226 See http://lists.gnu.org/archive/html/emacs-devel/2012-01/msg00760.html
4227 for the reasons.
4228
4229 2012-01-28 Phil Hagelberg <phil@hagelb.org>
4230
4231 * emacs-lisp/package.el (package-install):
4232 Run package-refresh-contents if there is no archive yet (Bug#9798).
4233
4234 2012-01-28 Chong Yidong <cyd@gnu.org>
4235
4236 * emacs-lisp/package.el (package-maybe-load-descriptor):
4237 New function, split from package-maybe-load-descriptor.
4238 (package-maybe-load-descriptor): Use it.
4239 (package-download-transaction): Fully load required packages
4240 inside the loop, so that `require' calls work (Bug#10593).
4241 (package-install): No need to call package-initialize now.
4242
4243 2012-01-28 Chong Yidong <cyd@gnu.org>
4244
4245 * simple.el (deactivate-mark): Doc fix (Bug#8614).
4246
4247 * tooltip.el (tooltip-mode): Doc fix.
4248 (tooltip-use-echo-area): Mark as obsolete (Bug#6595).
4249
4250 * frame.el (set-cursor-color): Doc fix (Bug#352).
4251
4252 * mail/rmail.el (rmail-start-mail): Add send-action again (Bug#10625).
4253 (rmail-mail-return): Switch to NEWBUF only if it is non-nil.
4254
4255 * cus-edit.el (custom-buffer-create-internal): Fix search button
4256 action (Bug#10542).
4257 (customize-unsaved, customize-saved): Doc fix (Bug#10541).
4258
4259 2012-01-27 Eduard Wiebe <usenet@pusto.de>
4260
4261 * dired.el (dired-mark-files-regexp):
4262 Include any subdirectory components. (Bug#10445)
4263
4264 2012-01-27 Mike Lamb <mrlamb@gmail.com> (tiny change)
4265
4266 * pcmpl-unix.el (pcmpl-ssh-known-hosts):
4267 Handle [host]:port syntax. (Bug#10533)
4268
4269 2012-01-27 Alex Harsanyi <harsanyi@mac.com>
4270
4271 * xml.el (xml-parse-tag): Fix parsing of comments (Bug#10405).
4272
4273 2012-01-26 Glenn Morris <rgm@gnu.org>
4274
4275 * dired-x.el (dired-bind-jump): Use ctl-x-map and ctl-x-4-map.
4276 * term.el (term-raw-escape-map): Use Control-X-prefix.
4277 * vc/vc-hooks.el (vc-prefix-map): Use ctl-x-map. (Bug#10566)
4278
4279 2012-01-25 Martin Rudalics <rudalics@gmx.at>
4280
4281 * window.el (window-state-get, window--state-get-1): Don't deal
4282 with fixed-sizeness of windows. Simplify code.
4283
4284 2012-01-25 Jérémy Compostella <jeremy.compostella@gmail.com>
4285
4286 * window.el (window--state-get-1, window--state-put-2):
4287 Don't save and restore the mark.
4288
4289 2012-01-25 Chong Yidong <cyd@gnu.org>
4290
4291 * custom.el (custom-variable-p): Doc fix.
4292
4293 2012-01-25 Glenn Morris <rgm@gnu.org>
4294
4295 * dired.el (dired-goto-file): Handle some of the more common
4296 characters that `ls -b' escapes. (Bug#10596)
4297
4298 * progmodes/compile.el (compilation-next-error-function):
4299 Respect compilation-first-column in the "*compilation*" buffer.
4300 * progmodes/grep.el (grep-first-column): New variable. (Bug#10594)
4301
4302 * vc/vc.el (vc-modify-change-comment): Scoping fix. (Bug#10513)
4303
4304 2012-01-24 Glenn Morris <rgm@gnu.org>
4305
4306 * pcmpl-gnu.el (pcomplete/tar): Handle " - ". (Bug#10457)
4307
4308 2012-01-24 Julien Danjou <julien@danjou.info>
4309
4310 * color.el (color-rgb-to-hsl): Fix value computing.
4311 (color-hue-to-rgb): New function.
4312 (color-hsl-to-rgb): New function.
4313 (color-clamp, color-saturate-hsl, color-saturate-name)
4314 (color-desaturate-hsl, color-desaturate-name, color-lighten-hsl)
4315 (color-lighten-name, color-darken-hsl, color-darken-name): New function.
4316
4317 2012-01-24 Glenn Morris <rgm@gnu.org>
4318
4319 * vc/vc-rcs.el (vc-rcs-create-tag):
4320 * vc/vc-sccs.el (vc-sccs-create-tag):
4321 Fix argument spec to be what vc-create-tag expects. (Bug#10515)
4322
4323 2012-01-23 Mike Lamb <mrlamb@gmail.com> (tiny change)
4324
4325 * eshell/esh-util.el (eshell-read-hosts-file):
4326 Skip comment lines. (Bug#10549)
4327
4328 * eshell/em-unix.el (pcomplete/ssh): Remove. (Bug#10548)
4329
4330 2012-01-23 Juanma Barranquero <lekktu@gmail.com>
4331
4332 * subr.el (display-delayed-warnings): Doc fix.
4333 (collapse-delayed-warnings): New function to collapse identical
4334 adjacent warnings.
4335 (delayed-warnings-hook): Add it.
4336
4337 2012-01-22 Michael Albinus <michael.albinus@gmx.de>
4338
4339 * net/tramp.el (tramp-action-login): Set connection property "login-as".
4340
4341 * net/tramp-cache.el (tramp-dump-connection-properties): Do not dump
4342 properties, when "login-as" is set.
4343
4344 * net/tramp-sh.el (tramp-methods): Add user spec to "pscp" and "psftp".
4345 (tramp-default-user-alist): Don't add "pscp".
4346 (tramp-do-copy-or-rename-file-out-of-band): Use connection
4347 property "login-as", if set. (Bug#10530)
4348
4349 2012-01-21 Michael Albinus <michael.albinus@gmx.de>
4350
4351 * net/tramp-sh.el (tramp-default-user-alist): Don't add "plink",
4352 "plink1" and "psftp". (Bug#10530)
4353
4354 2012-01-21 Kenichi Handa <handa@m17n.org>
4355
4356 * international/mule-cmds.el (prefer-coding-system): Show a
4357 warning message if the default value of file-name-coding-system
4358 was not changed.
4359
4360 2012-01-21 Jérémy Compostella <jeremy.compostella@gmail.com>
4361
4362 * windmove.el (windmove-reference-loc):
4363 Fix windmove-reference-loc miscalculation.
4364
4365 2012-01-21 Jay Belanger <jay.p.belanger@gmail.com>
4366
4367 * calc/calc-units.el (math-put-default-units): Don't use "1" as a
4368 default unit.
4369
4370 2012-01-21 Glenn Morris <rgm@gnu.org>
4371
4372 * international/mule.el (auto-coding-alist): Add .tbz.
4373
4374 * files.el (local-enable-local-variables): Doc fix.
4375 (inhibit-local-variables-regexps): Rename from
4376 inhibit-first-line-modes-regexps. Keep old name as obsolete alias.
4377 Doc fix. Add some extensions from auto-coding-alist.
4378 (inhibit-local-variables-suffixes):
4379 Rename from inhibit-first-line-modes-suffixes. Doc fix.
4380 (inhibit-local-variables-p):
4381 New function, extracted from set-auto-mode-1.
4382 (set-auto-mode): Doc fix. Respect inhibit-local-variables-regexps.
4383 (set-auto-mode-1): Doc fix. Use inhibit-local-variables-p.
4384 (hack-local-variables): Doc fix. Make the mode-only case
4385 respect enable-local-variables and friends.
4386 Respect inhibit-local-variables-regexps for file-locals, but
4387 not for directory-locals.
4388 (set-visited-file-name):
4389 Take account of inhibit-local-variables-regexps.
4390 Whether it applies may change as the file name is changed.
4391 * jka-cmpr-hook.el (jka-compr-install):
4392 * jka-compr.el (jka-compr-uninstall):
4393 Update for inhibit-first-line-modes-suffixes name change.
4394
4395 2012-01-20 Martin Rudalics <rudalics@gmx.at>
4396
4397 * help-macro.el (make-help-screen): Temporarily restore original
4398 binding for minor-mode-map-alist (Bug#10454).
4399
4400 2012-01-19 Julien Danjou <julien@danjou.info>
4401
4402 * color.el (color-name-to-rgb): Use the white color to find the max
4403 color component value and return correctly computed values.
4404 (color-name-to-rgb): Add missing float conversion for max value.
4405
4406 2012-01-19 Martin Rudalics <rudalics@gmx.at>
4407
4408 * window.el (window--state-get-1, window-state-get): Do not use
4409 special state value for window-persistent-parameters.
4410 Rename argument IGNORE to WRITABLE. Rewrite doc-string.
4411 (window--state-put-2): Reset all window parameters to nil before
4412 assigning values of persistent parameters.
4413
4414 2012-01-18 Alan Mackenzie <acm@muc.de>
4415
4416 Eliminate sluggishness and hangs in fontification of "semicolon
4417 deserts".
4418
4419 * progmodes/cc-engine.el (c-state-nonlit-pos-interval):
4420 Change value 10000 -> 3000.
4421 (c-state-safe-place): Reformulate so it doesn't stack up an
4422 infinite number of wrong entries in c-state-nonlit-pos-cache.
4423 (c-determine-limit-get-base, c-determine-limit): New functions to
4424 determine backward search limits disregarding literals.
4425 (c-find-decl-spots): Amend commenting.
4426 (c-cheap-inside-bracelist-p): New function which detects "={".
4427
4428 * progmodes/cc-fonts.el
4429 (c-make-font-lock-BO-decl-search-function): Give a limit to a
4430 backward search.
4431 (c-font-lock-declarations): Fix an occurrence of point being
4432 undefined. Check additionally for point being in a bracelist or
4433 near a macro invocation without a semicolon so as to avoid a
4434 fruitless time consuming search for a declarator. Give a more
4435 precise search limit for declarators using the new
4436 c-determine-limit.
4437
4438 2012-01-18 Glenn Morris <rgm@gnu.org>
4439
4440 * files.el (auto-mode-alist, inhibit-first-line-modes-regexps)
4441 (set-auto-mode): Doc fixes.
4442
4443 2012-01-17 Glenn Morris <rgm@gnu.org>
4444
4445 * isearch.el (search-nonincremental-instead): Fix doc typo.
4446
4447 * dired.el (dired-insert-directory): Handle newlines in directory name.
4448 (dired-build-subdir-alist): Unescape newlines in directory name.
4449
4450 2012-01-17 Michael Albinus <michael.albinus@gmx.de>
4451
4452 * net/tramp.el (tramp-local-end-of-line): New defcustom.
4453 (tramp-action-login, tramp-action-yesno, tramp-action-yn)
4454 (tramp-action-terminal): Use it. (Bug#10530)
4455
4456 2012-01-16 Stefan Monnier <monnier@iro.umontreal.ca>
4457
4458 * minibuffer.el (completion--replace): Strip properties (bug#10062).
4459
4460 2012-01-16 Martin Rudalics <rudalics@gmx.at>
4461
4462 * window.el (window-state-ignored-parameters): Remove variable.
4463 (window--state-get-1): Rename argument MARKERS to IGNORE.
4464 Handle persistent window parameters. Make copy of clone-of
4465 parameter only if requested. (Bug#10348)
4466 (window--state-put-2): Install a window parameter only if it has
4467 a non-nil value or an existing parameter shall be overwritten.
4468
4469 2012-01-15 Michael Albinus <michael.albinus@gmx.de>
4470
4471 * net/tramp-sh.el (tramp-remote-path): Set tramp-autoload cookie.
4472
4473 2012-01-14 Eli Zaretskii <eliz@gnu.org>
4474
4475 * info.el (Info-toc-build): If the Info file has no "Up" pointer,
4476 don't pass the (nil) value of `upnode' to string-match.
4477
4478 2012-01-14 Chong Yidong <cyd@gnu.org>
4479
4480 * startup.el (command-line): Fix X resource class for cursorColor.
4481 Fix values recognized by the cursorBlink resource.
4482
4483 2012-01-14 Paul Eggert <eggert@cs.ucla.edu>
4484
4485 * epg.el (epg--make-temp-file): Avoid permission race condition
4486 when running on old Emacs versions (bug#10403).
4487
4488 2012-01-14 Glenn Morris <rgm@gnu.org>
4489
4490 * dired.el (dired-get-filename): Fix 'verbatim case of previous change.
4491
4492 2012-01-13 Alan Mackenzie <acm@muc.de>
4493
4494 Fix filling for when filladapt mode is enabled.
4495
4496 * progmodes/cc-cmds.el (c-fill-paragraph): In the invocation of
4497 c-mask-paragraph, pass in `fill-paragraph' rather than
4498 `fill-region-as-paragraph'. (This is a reversion of a previous
4499 change.)
4500 * progmodes/cc-mode.el (c-basic-common-init):
4501 Make fill-paragraph-handle-comment buffer local and set it to nil.
4502
4503 2012-01-13 Glenn Morris <rgm@gnu.org>
4504
4505 * dired.el (dired-switches-escape-p): New function.
4506 (dired-insert-directory): Use dired-switches-escape-p.
4507 (dired-get-filename): Undo "\ " quoting if needed. (Bug#10469)
4508
4509 * find-dired.el (find-ls-option): Doc fix. (Bug#10262)
4510
4511 2012-01-12 Glenn Morris <rgm@gnu.org>
4512
4513 * mail/sendmail.el (mail-mode): Update paragraph-separate for
4514 changes in adaptive-fill-regexp. (Bug#10276)
4515
4516 2012-01-11 Alan Mackenzie <acm@muc.de>
4517
4518 Fix Emacs bug #10463 - put `widen's around the critical spots.
4519
4520 * progmodes/cc-engine.el (c-in-literal, c-literal-limits): Put a
4521 widen around each invocation of c-state-pp-to-literal. Remove an
4522 unused let variable.
4523
4524 2012-01-11 Glenn Morris <rgm@gnu.org>
4525
4526 * dired-aux.el (dired-do-shell-command): Fix */? logic. (Bug#6561)
4527 Doc fix.
4528
4529 2012-01-10 Chong Yidong <cyd@gnu.org>
4530
4531 * net/network-stream.el (network-stream-open-starttls):
4532 Avoid emitting a confusing error message when the server gives a bad
4533 response to the capability command.
4534
4535 2012-01-10 Glenn Morris <rgm@gnu.org>
4536
4537 * mail/unrmail.el (unrmail): Tweak previous change.
4538
4539 2012-01-09 Chong Yidong <cyd@gnu.org>
4540
4541 * custom.el (custom-safe-themes): Use SHA-256 for hashing.
4542
4543 2012-01-08 Alan Mackenzie <acm@muc.de>
4544
4545 Optimise font locking in long enum definitions.
4546
4547 * progmodes/cc-fonts.el (c-font-lock-declarations): Add an extra
4548 arm to a cond form to handle enums.
4549 * progmodes/cc-langs.el (c-enums-contain-decls): New lang variable.
4550 * progmodes/cc-mode.el (c-font-lock-fontify-region): Correct a typo.
4551
4552 2012-01-07 Paul Eggert <eggert@cs.ucla.edu>
4553
4554 * files.el (move-file-to-trash): Preserve default file modes on error.
4555 (Bug#10401)
4556
4557 2012-01-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
4558
4559 * faces.el (set-face-attribute): Clarify the meaning of the nil
4560 frame (bug#10294).
4561
4562 * subr.el (with-selected-frame): Mention that the selected frame
4563 is restored (bug#9980).
4564
4565 * ibuffer.el (ibuffer-mode): List the bindings in the corrent map
4566 (bug#9759).
4567
4568 * mail/smtpmail.el (password-cache-add): Remove unused declaration.
4569 (password-read): Don't autoload unused function.
4570
4571 2012-01-07 Juanma Barranquero <lekktu@gmail.com>
4572
4573 * progmodes/which-func.el (which-func-mode): Turn into a
4574 non-interactive function and mark as obsolete (bug#10428).
4575
4576 2012-01-06 Chong Yidong <cyd@gnu.org>
4577
4578 * files.el (hack-dir-local-variables-non-file-buffer): Add doc.
4579 (hack-one-local-variable-eval-safep): Allow 0 arg for minor mode
4580 functions, along with 1 and -1.
4581
4582 2012-01-06 Eli Zaretskii <eliz@gnu.org>
4583
4584 * time.el (display-time-load-average)
4585 (display-time-default-load-average): Doc fixes. See the thread
4586 starting at
4587 http://lists.gnu.org/archive/html/help-gnu-emacs/2012-01/msg00059.html
4588 for the details.
4589
4590 2012-01-06 Glenn Morris <rgm@gnu.org>
4591
4592 * mail/unrmail.el (unrmail): Give an explicit error if the input file
4593 has no messages. (Bug#10377)
4594
4595 * info.el (Info-mode-map): Bind e to end-of-buffer, rather
4596 than Info-edit. (Bug#10385)
4597
4598 * time.el (display-time-load-average, display-time-next-load-average):
4599 Doc fixes.
4600
4601 * emacs-lisp/bytecomp.el (byte-compile-file): Do not propagate a file
4602 local setting of buffer-read-only to the input buffer. (Bug#10419)
4603
4604 * calendar/calendar.el (calendar-mode):
4605 Locally set scroll-margin to 0. (Bug#10379)
4606
4607 2012-01-06 Ulrich Mueller <ulm@gentoo.org>
4608
4609 * play/doctor.el (doctor-death): Escape "," characters. (Bug#10370)
4610
4611 2012-01-05 Glenn Morris <rgm@gnu.org>
4612
4613 * eshell/em-unix.el (diff-no-select): Autoload it.
4614 (eshell/diff): Use diff-no-select. (Bug#10420)
4615
4616 2012-01-05 Chong Yidong <cyd@gnu.org>
4617
4618 * shell.el (shell-dynamic-complete-functions): Revert last change.
4619 (shell-command-completion-function): New function.
4620 (shell-completion-vars): Use it to implement
4621 shell-completion-execonly (Bug#10417).
4622
4623 * custom.el (enable-theme): Don't set custom-safe-themes.
4624
4625 * cus-theme.el (custom-theme-merge-theme):
4626 Ignore custom-enabled-themes and custom-safe-themes.
4627
4628 2012-01-05 Michael R. Mauger <mmaug@yahoo.com>
4629
4630 * progmodes/sql.el (sql-login-hook): Add hook to respond to the
4631 first prompt in `sql-interacive-mode'.
4632 (sql-mode-oracle-font-lock-keywords): Add CONNECT_BY_* builtin
4633 keywords.
4634 (sql-mode-mysql-font-lock-keywords): Add ELSEIF keyword.
4635 (sql-product-interactive): Bug fix: Set `sql-buffer' in
4636 context of original buffer. Invoke `sql-login-hook'.
4637
4638 2012-01-04 Eli Zaretskii <eliz@gnu.org>
4639
4640 * mail/rmail.el (rmail-font-lock-keywords): Accept non-ASCII
4641 letters in cite-prefix.
4642
4643 2012-01-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
4644
4645 * mail/smtpmail.el (smtpmail-stream-type): Mention the `ssl' value.
4646
4647 2012-01-03 Chong Yidong <cyd@gnu.org>
4648
4649 * shell.el (shell-dynamic-complete-functions):
4650 Put pcomplete-completions-at-point, so as to try
4651 comint-filename-completion first (Bug#10417).
4652
4653 2012-01-02 Richard Stallman <rms@gnu.org>
4654
4655 * battery.el (battery-status-function):
4656 Detect when to use battery-yeeloong-sysfs.
4657 (battery-echo-area-format): Add string for Yeeloong.
4658 (battery-linux-proc-apm, battery-linux-proc-acpi): Doc fixes.
4659 (battery-yeeloong-sysfs): New function.
4660
4661 2012-01-02 Chong Yidong <cyd@gnu.org>
4662
4663 * dirtrack.el (dirtrack-list): Eliminate unused third element.
4664 (dirtrack): Merge code for handling relative filenames in prompt
4665 from shell-dir-cookie-watcher.
4666 (dirtrack-debug-message): New arg to avoid excess format calls.
4667
4668 * shell.el (shell-dir-cookie-re): Variable deleted.
4669 (shell-dir-cookie-watcher): Function deleted.
4670 (shell-mode): Don't use shell-dir-cookie-re, since it is redundant
4671 with dirtrack-mode.
4672
4673 2012-01-01 Eli Zaretskii <eliz@gnu.org>
4674
4675 * term/w32-win.el (dynamic-library-alist) <gnutls>:
4676 Load libgnutls-28.dll, from GnuTLS version 3.x, in preference to
4677 libgnutls-26.dll.
4678
4679 2011-12-31 Andreas Schwab <schwab@linux-m68k.org>
4680
4681 * emacs-lisp/bytecomp.el (byte-compile-file): Fix indentation.
4682
4683 2011-12-31 Eli Zaretskii <eliz@gnu.org>
4684
4685 * mail/rmail.el (rmail-show-message-1): Decode any RFC2047 encoded
4686 headers of non-MIME messages, when rmail-enable-mime is non-nil.
4687
4688 2011-12-29 Michael Albinus <michael.albinus@gmx.de>
4689
4690 * net/tramp-sh.el (tramp-find-shell): Set "remote-shell" property
4691 also for alternative shells.
4692 (tramp-open-connection-setup-interactive-shell): Check, whether
4693 the shell is a busybox.
4694 (tramp-send-command): Don't suppress multiple prompts for
4695 busyboxes, it hurts.
4696
4697 2011-12-28 Chong Yidong <cyd@gnu.org>
4698
4699 * progmodes/gdb-mi.el (gdb-get-source-file-list)
4700 (gdb-get-source-file): Move mode line update to
4701 gdb-get-source-file (Bug#10087).
4702
4703 2011-12-25 Chong Yidong <cyd@gnu.org>
4704
4705 * progmodes/gud.el (gud-gdb-fetch-lines-filter): Just use
4706 gud-gdb-marker-filter without taking it as an argument.
4707 (gud-gdb-run-command-fetch-lines): Caller changed.
4708 (gud-gdb-completion-function): New variable.
4709 (gud-gdb-completion-at-point): Use it.
4710 (gud-gdb-completions-1): Split from gud-gdb-completions.
4711
4712 * progmodes/gdb-mi.el (gdb-input): Accept command and handler
4713 function as separate arguments.
4714 (gdb-init-1, gdb-non-stop-handler, gdb-check-target-async)
4715 (gdb-tooltip-print-1, gud-watch, gdb-speedbar-update)
4716 (gdb-var-list-children, gdb-var-set-format, gdb-var-delete-1)
4717 (gdb-var-delete-children, gdb-edit-value, gdb-var-update)
4718 (gdb-stopped, def-gdb-auto-update-trigger)
4719 (gdb-place-breakpoints, gdb-select-thread, gdb-select-frame)
4720 (gdb-get-changed-registers, gdb-get-main-selected-frame):
4721 Callers changed.
4722 (gud-gdbmi-completions): New function.
4723 (gdb): Use it for generating the completion table.
4724
4725 2011-12-24 Alan Mackenzie <acm@muc.de>
4726
4727 Introduce a mechanism to widen the region used in context font
4728 locking. Use this to protect declarations from losing their contexts.
4729
4730 * progmodes/cc-langs.el (c-before-font-lock-functions):
4731 Replace c-set-fl-decl-start with c-change-set-fl-decl-start (Renaming).
4732 (c-before-context-fontification-functions): New defvar, a list of
4733 functions to be run just before context (etc.) font locking.
4734
4735 * progmodes/cc-mode.el (c-extend-font-lock-region-for-macros):
4736 New, functionality extracted from
4737 c-neutralize-syntax-in-and-mark-CPP.
4738 (c-in-after-change-fontification): New variable.
4739 (c-after-change): Set c-in-after-change-fontification.
4740 (c-set-fl-decl-start): Rejig its interface, so it can be called
4741 from both after-change and context fontifying.
4742 (c-change-set-fl-decl-start, c-context-set-fl-decl-start):
4743 New functions.
4744 (c-standard-font-lock-fontify-region-function): New variable.
4745 (c-font-lock-fontify-region): New function.
4746
4747 2011-12-24 Juri Linkov <juri@jurta.org>
4748
4749 * window.el (window--state-get-1): Set `FORCE' arg of `mark' to t.
4750 (Bug#10348)
4751
4752 2011-12-23 Michael Albinus <michael.albinus@gmx.de>
4753
4754 * net/ange-ftp.el (ange-ftp-copy-file-internal): Check for
4755 existence of source file. (Bug#10325)
4756
4757 2011-12-23 Alan Mackenzie <acm@muc.de>
4758
4759 Fix unstable fontification inside templates.
4760
4761 * progmodes/cc-langs.el (c-before-font-lock-functions):
4762 Newly created from the singular version. The (c c++ objc) entry now
4763 additionally has c-set-fl-decl-start. The other languages (apart
4764 from AWK) have that as a single entry.
4765
4766 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
4767 The functionality for "local" declarations has been extracted to
4768 c-set-fl-decl-start.
4769
4770 * progmodes/cc-mode.el (c-common-init, c-after-change):
4771 Changes due to pluralisation of c-before-font-lock-functions.
4772 (c-set-fl-decl-start): New function, extracted from
4773 c-font-lock-enclosing-decls and enhanced.
4774
4775 2011-12-23 Juanma Barranquero <lekktu@gmail.com>
4776
4777 * desktop.el (desktop-internal-v2s): Fix typos in docstring (bug#10353).
4778
4779 2011-12-22 Juri Linkov <juri@jurta.org>
4780
4781 * progmodes/grep.el (rgrep): Fix docstring. (Bug#10185)
4782
4783 2011-12-22 Chong Yidong <cyd@gnu.org>
4784
4785 * vc/vc-hooks.el (vc-keep-workfiles): Doc fix.
4786
4787 2011-12-21 Drew Adams <drew.adams@oracle.com>
4788
4789 * files.el (file-remote-p): Fix docstring. (Bug#10319)
4790
4791 2011-12-21 Jérémy Compostella <jeremy.compostella@gmail.com>
4792
4793 * battery.el (battery-linux-sysfs): Add missing parameters from acpi.
4794
4795 2011-12-21 Teodor Zlatanov <tzz@lifelogs.com>
4796
4797 * progmodes/cfengine.el: Add Version. Improve CFEngine 3.x syntax
4798 highlighting and support. Fix up comments for capitalization.
4799 (cfengine-mode-debug): New var.
4800 (cfengine3-mode): Change the modeline indicator to "CFE3".
4801 (cfengine3-font-lock-keywords): Improve defun highlighting.
4802 (cfengine2-actions): Rename from `cfengine-actions'.
4803 (cfengine2-font-lock-keywords): Rename from
4804 `cfengine-font-lock-keywords'.
4805 (cfengine2-imenu-expression): Rename from
4806 `cfengine-imenu-expression'.
4807 (cfengine2-outline-level): Rename from `cfengine-outline-level'.
4808 (cfengine2-beginning-of-defun): Rename from
4809 `cfengine-beginning-of-defun'.
4810 (cfengine2-end-of-defun): Rename from `cfengine-end-of-defun'.
4811 (cfengine2-indent-line): Rename from `cfengine-indent-line'.
4812 (cfengine2-mode): Rename from `cfengine-mode'. Change the
4813 modeline indicator to "CFE2".
4814 (cfengine-mode): Defalias to `cfengine-auto-mode'.
4815 (cfengine-mode-abbrevs): Mark obsolete.
4816
4817 2011-12-21 Chong Yidong <cyd@gnu.org>
4818
4819 * vc/vc-bzr.el (vc-bzr-rename-file): Don't pass ~ to Bzr in
4820 filename argument.
4821
4822 2011-12-20 Martin Rudalics <rudalics@gmx.at>
4823
4824 * window.el (window-normalize-buffer-to-display): Remove.
4825 (display-buffer): Handle buffer-or-name argument as in Emacs 23.
4826
4827 2011-12-19 Chong Yidong <cyd@gnu.org>
4828
4829 * vc/vc-dir.el (vc-dir-parent-marked-p, vc-dir-children-marked-p):
4830 Don't signal an error in a predicate function; return non-nil.
4831 (vc-dir-mark-file): Move the error here.
4832 (vc-dir-mark-unmark): If acting on the region, keep going if one
4833 of the entries cannot be marked/unmarked.
4834 (vc-dir-mark-all-files): If current entry is a directory, mark
4835 only child files, as documented.
4836
4837 2011-12-19 Vincent Belaïche <vincentb1@users.sourceforge.net>
4838
4839 * ses.el: Ooops... undo changes of 2011-12-11T14:49:48Z!vincentb1@users.sourceforge.net, as trunk
4840 branch is feature frozen, and 2011-12-11T14:49:48Z!vincentb1@users.sourceforge.net was a feature
4841 addition.
4842
4843 2011-12-18 Jan Djärv <jan.h.d@swipnet.se>
4844
4845 * term/ns-win.el (ns-get-selection-internal)
4846 (ns-store-selection-internal): Declare.
4847 (ns-store-cut-buffer-internal, ns-get-cut-buffer-internal):
4848 Declare as obsolete.
4849 (ns-get-pasteboard, ns-paste-secondary):
4850 Use ns-get-selection-internal.
4851 (ns-set-pasteboard, ns-copy-including-secondary):
4852 Use ns-store-selection-internal.
4853
4854 2011-12-17 Chong Yidong <cyd@gnu.org>
4855
4856 * vc/vc.el (vc-next-action): Doc fix; remove CVS-isms.
4857 (vc-deduce-fileset): Doc fix.
4858
4859 2011-12-16 Andreas Schwab <schwab@linux-m68k.org>
4860
4861 * calc/calc-misc.el (calc-help): Avoid wrapping help message.
4862
4863 2011-12-13 Sam Steingold <sds@gnu.org>
4864
4865 * man.el (Man-getpage-in-background): When running under a
4866 window-system, ignore $MANWIDTH and $COLUMNS.
4867
4868 2011-12-15 Kenichi Handa <handa@m17n.org>
4869
4870 * language/ethio-util.el: Change coding tag to utf-8-emacs.
4871 (setup-ethiopic-environment-internal): Comment out key-binding for
4872 ethio-toggle-punctuation.
4873
4874 2011-12-13 Alan Mackenzie <acm@muc.de>
4875
4876 Add the switch statement to AWK Mode.
4877
4878 * progmodes/cc-awk.el (awk-font-lock-keywords): Add "switch", "case",
4879 "default" to the keywords regexp.
4880
4881 * progmodes/cc-langs.el (c-label-kwds): Let AWK take the same
4882 expression as the rest.
4883 (c-nonlabel-token-key): Allow string literals for AWK.
4884 Refactor for the other modes.
4885
4886 Large brace-block initialisation makes CC Mode slow: Fix.
4887 Tidy up and accelerate c-in-literal, etc. by using the c-parse-state
4888 routines. Limit backward searching in c-font-lock-enclosing.decl.
4889
4890 * progmodes/cc-engine.el (c-state-pp-to-literal): Return the
4891 pp-state and literal type in addition to the limits.
4892 (c-state-safe-place): New defun, extracted from c-state-literal-at.
4893 (c-state-literal-at): Use the above new defun.
4894 (c-slow-in-literal, c-fast-in-literal): Remove.
4895 (c-in-literal, c-literal-limits): Amend to use c-state-pp-to-literal.
4896
4897 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls): Check for
4898 being in a literal. Add a limit for backward searching.
4899
4900 * progmodes/cc-mode.el (awk-mode): Don't alias c-in-literal to
4901 c-slow-in-literal.
4902
4903 2011-12-13 Stefan Monnier <monnier@iro.umontreal.ca>
4904
4905 * progmodes/pascal.el: Declare `ind' as dyn-bound (bug#10264).
4906
4907 2011-12-13 Martin Rudalics <rudalics@gmx.at>
4908
4909 * window.el (delete-other-windows): Use correct frame in call to
4910 window-with-parameter.
4911
4912 2011-12-12 Daniel Pfeiffer <occitan@t-online.de>
4913
4914 * progmodes/make-mode.el: Bring it up to date with makepp V2.0.
4915 (makefile-make-font-lock-keywords): Extend meaning of `keywords'.
4916 (makefile-gmake-statements, makefile-makepp-statements):
4917 Use it and add new makepp keywords.
4918 (makefile-makepp-font-lock-keywords): Add new patterns.
4919 (makefile-match-function-end): Match new [...] and [[...]].
4920
4921 2011-12-11 Juanma Barranquero <lekktu@gmail.com>
4922
4923 * ses.el (ses-call-printer-return, ses-cell-property-get)
4924 (ses-sym-rowcol, ses-printer-validate, ses-formula-record)
4925 (ses-create-cell-variable, ses-reset-header-string)
4926 (ses-cell-set-formula, ses-repair-cell-reference-all)
4927 (ses-self-reference-early-detection, ses-in-print-area, ses-set-curcell)
4928 (ses-check-curcell, ses-call-printer, ses-adjust-print-width)
4929 (ses-print-cell-new-width, ses-formula-references, ses-relocate-formula)
4930 (ses-aset-with-undo, ses-load, ses-truncate-cell)
4931 (ses-read-column-printer, ses-read-default-printer, ses-insert-row)
4932 (ses-delete-row, ses-delete-column, ses-append-row-jump-first-column)
4933 (ses-kill-override, ses-yank-pop, ses-yank-cells, ses-yank-tsf)
4934 (ses-yank-resize, ses-export-tab, ses-mark-row, ses-mark-column)
4935 (ses-renarrow-buffer, ses-insert-range, ses-insert-ses-range)
4936 (ses-safe-printer, ses-safe-formula, ses-warn-unsafe, ses--clean-!)
4937 (ses--clean-_, ses-range, ses-select, ses-center, ses-center-span)
4938 (ses-dashfill, ses-unsafe): Fix typos and reflow docstrings.
4939
4940 2011-12-11 Vincent Belaïche <vincentb1@users.sourceforge.net>
4941
4942 * ses.el: The overall change is to add cell renaming, that is
4943 setting fancy names for cell symbols other than name matching
4944 "\\`[A-Z]+[0-9]+\\'" regexp .
4945 (ses-create-cell-variable): New defun.
4946 (ses-relocate-formula): Relocate formulas only for cells the
4947 symbols of which are not renamed, i.e. symbols whose names do not
4948 match regexp "\\`[A-Z]+[0-9]+\\'".
4949 (ses-relocate-all): Relocate values only for cells the symbols of
4950 which are not renamed.
4951 (ses-load): Create cells variables as the (ses-cell ...) are read,
4952 in order to check row col consistency with cell symbol name only
4953 for cells that are not renamed.
4954 (ses-replace-name-in-formula): New defun.
4955 (ses-rename-cell): New defun.
4956
4957 2011-12-11 Chong Yidong <cyd@gnu.org>
4958
4959 * progmodes/gdb-mi.el (gdb): Set comint-prompt-regexp, required
4960 for completion via gud-gdb-fetch-lines-filter (Bug#10274).
4961
4962 2011-12-11 Eric Hanchrow <eric.hanchrow@gmail.com>
4963
4964 * window.el (other-window): Fix docstring.
4965
4966 2011-12-10 Eli Zaretskii <eliz@gnu.org>
4967
4968 * mail/rmailsum.el (rmail-header-summary): RFC2047 decode the
4969 `from' or `to' address before taking its substring.
4970 Fixes incorrect display in Rmail summary buffer whereby an RFC2047
4971 encoded name is chopped in the middle of the encoded string, and
4972 thus displayed encoded.
4973
4974 2011-12-10 Juanma Barranquero <lekktu@gmail.com>
4975
4976 * makefile.w32-in (update-subdirs-CMD): Use a Local Variables section.
4977
4978 2011-12-10 Eli Zaretskii <eliz@gnu.org>
4979
4980 * textmodes/texnfo-upd.el: Update commentary. Add a warning not
4981 to use texinfo-update-node and commands that call it if the
4982 Texinfo file uses @node lines without next/prev/up pointers.
4983 Correct outdated description about texinfo-master-menu.
4984 (texinfo-all-menus-update, texinfo-master-menu)
4985 (texinfo-update-node, texinfo-every-node-update)
4986 (texinfo-multiple-files-update): Doc fix. Warn against updating
4987 all the @node lines.
4988 (texinfo-master-menu): Only call texinfo-update-node if the prefix
4989 argument is numeric. Explain better in the doc string what the
4990 function really does.
4991 (texinfo-insert-master-menu-list): Improve the error message
4992 displayed if there's no menu in the Top node.
4993 (Bug#2975) See also this thread:
4994 http://lists.gnu.org/archive/html/emacs-devel/2011-12/msg00156.html.
4995
4996 2011-12-09 Manuel Gómez <mgrojo@gmail.com> (tiny change)
4997
4998 * speedbar.el (speedbar-supported-extension-expressions):
4999 Add .adb and .ads, commonly used for Ada source code (bug#10256).
5000
5001 2011-12-09 Juanma Barranquero <lekktu@gmail.com>
5002
5003 * printing.el (pr-mode-alist):
5004 * simple.el (filter-buffer-substring-functions)
5005 (completion-list-insert-choice-function):
5006 * window.el (window-with-parameter, window-atom-root)
5007 (window-sides-slots, window-size-fixed, window-min-delta)
5008 (window-max-delta, window--resize-mini-window)
5009 (window--resize-child-windows-normal, window-tree)
5010 (delete-other-windows, quit-window, split-window)
5011 (display-buffer-record-window, special-display-buffer-names)
5012 (special-display-regexps, special-display-popup-frame)
5013 (same-window-p, split-window-sensibly)
5014 (display-buffer-overriding-action, display-buffer-alist)
5015 (display-buffer-base-action, display-buffer, switch-to-buffer)
5016 (switch-to-buffer-other-window, switch-to-buffer-other-frame)
5017 (fit-window-to-buffer, recenter-positions)
5018 (mouse-autoselect-window-state, mouse-autoselect-window-select):
5019 * emacs-lisp/syntax.el (syntax-propertize-function): Fix typos
5020 and remove unneeded backslashes in docstrings.
5021
5022 2011-12-08 Stefan Monnier <monnier@iro.umontreal.ca>
5023
5024 * emacs-lisp/lisp-mode.el (defmethod): Add doc-string-elt (bug#10244).
5025
5026 * pcmpl-gnu.el: Don't fail when there is no Makefile nor -f arg.
5027 (pcmpl-gnu-makefile-regexps): Accept "makefile" as well as files that
5028 end in ".mk".
5029 (pcmpl-gnu-make-rule-names): Check "makefile" and ignore errors
5030 when reading the makefile (bug#10116).
5031
5032 2011-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
5033
5034 * pcmpl-gnu.el (pcomplete/make): Also allow filename arguments
5035 (bug#10116).
5036
5037 2011-12-06 Glenn Morris <rgm@gnu.org>
5038
5039 * emacs-lisp/package.el (package-archives): Doc fix re riskiness.
5040
5041 2011-12-06 Chong Yidong <cyd@gnu.org>
5042
5043 * progmodes/cc-fonts.el (c-annotation-face): Use defface.
5044
5045 2011-12-06 Juanma Barranquero <lekktu@gmail.com>
5046
5047 * textmodes/table.el (table-shorten-cell): Fix typo.
5048
5049 2011-12-05 Christopher Genovese <genovese.cr@gmail.com> (tiny change)
5050
5051 * emacs-lisp/assoc.el (aput): Fix return value (bug#10146)
5052
5053 2011-12-05 Eli Zaretskii <eliz@gnu.org>
5054
5055 * descr-text.el (describe-char): Fix display of strong
5056 right-to-left characters and directional embeddings and overrides.
5057
5058 * simple.el (what-cursor-position): Fix display of codepoints of
5059 strong right-to-left characters.
5060
5061 2011-12-05 Chong Yidong <cyd@gnu.org>
5062
5063 * faces.el (read-color): Doc fix.
5064
5065 2011-12-05 Glenn Morris <rgm@gnu.org>
5066
5067 * align.el (align--set-marker): Add doc-string.
5068 Don't try to move something that is not a marker. (Bug#10216)
5069
5070 2011-12-04 Glenn Morris <rgm@gnu.org>
5071
5072 * calendar/appt.el (appt-add): Rewrite the interactive-spec to avoid
5073 overly zealous deletion of trailing whitespace.
5074
5075 2011-12-04 Juanma Barranquero <lekktu@gmail.com>
5076
5077 * server.el (server-delete-client): On Windows, do not try to delete
5078 the only terminal.
5079 (server-process-filter): On Windows, treat requests for a tty frame as
5080 if they were for a GUI frame if the running server is in GUI mode.
5081
5082 2011-12-03 Glenn Morris <rgm@gnu.org>
5083
5084 * textmodes/texinfmt.el (batch-texinfo-format): Doc fix. (Bug#10207)
5085
5086 2011-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
5087
5088 * electric.el: Streamline electric-indent's hook.
5089 (electric-indent-chars): Revert to simple list.
5090 (electric-indent-functions): New var.
5091 (electric-indent-post-self-insert-function): Use it.
5092
5093 * progmodes/prolog.el (prolog-find-value-by-system): Avoid error when
5094 there's no inferior buffer (bug#10196).
5095 (prolog-consult-compile): Don't use toggle-read-only.
5096
5097 2011-12-02 Michael Albinus <michael.albinus@gmx.de>
5098
5099 * net/tramp-sh.el (tramp-maybe-open-connection): Handle user
5100 interrupt. (Bug#10187)
5101
5102 2011-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
5103
5104 * pcmpl-gnu.el (pcomplete/tar): large-file-warn-threshold can be nil
5105 (bug#9160).
5106
5107 * dired-aux.el (dired-query): Don't assume help-char is modifier-free
5108 (bug#10191).
5109
5110 2011-12-02 Juri Linkov <juri@jurta.org>
5111
5112 * info.el (Info-search): Display "end of manual" when Isearch
5113 reaches the end of single-file Info manual. (Bug#9918)
5114
5115 2011-12-02 Eli Zaretskii <eliz@gnu.org>
5116
5117 * isearch.el (isearch-message-prefix): Run the input method part
5118 of the prompt through bidi-string-mark-left-to-right. (Bug#10183)
5119
5120 2011-12-02 Juri Linkov <juri@jurta.org>
5121
5122 * isearch.el (isearch-occur): Use `word-search-regexp' for
5123 `isearch-word'.
5124 (isearch-search-and-update): Add condition for `isearch-word' and
5125 call `word-search-regexp'. (Bug#10145)
5126
5127 2011-12-01 Glenn Morris <rgm@gnu.org>
5128
5129 * eshell/em-hist.el (eshell-hist-initialize):
5130 Handle eshell-history-size nil and HISTSIZE set or unset.
5131 (eshell-history-file-name, eshell-history-size): Fix custom type.
5132
5133 2011-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
5134
5135 * man.el (Man-completion-table): Fix the lambda case (bug#10168).
5136
5137 2011-12-01 Michael McNamara <mac@mail.brushroad.com>
5138
5139 * progmodes/verilog-mode.el (verilog-pretty-expr):
5140 Rework verilog-pretty-expr to handle new assignment operators in system
5141 verilog, such as += *= and the like.
5142 (verilog-assignment-operator-re): Regular expression to find the
5143 assigment operator in a verilog assignment.
5144 (verilog-assignment-operation-re): Regular expression to find an
5145 assignment statement for pretty-expr.
5146 (verilog-in-attribute-p): Query returns true if point is in an
5147 attribute context; used to skip these for expression line up from
5148 pretty-expr.
5149 (verilog-in-parameter-p): Query returns true if point is in an
5150 parameter definition context; used to skip these for expression
5151 line up from pretty-expr.
5152 (verilog-in-parenthesis-p): Query returns true if point is in a
5153 parenthetical expression, specifically ( ) but not [ ] or { };
5154 used by pretty-expr.
5155 (verilog-just-one-space): If there is no space, don't add one.
5156 (verilog-get-lineup-indent-2): Specifically skip just attribute
5157 contexts for expression lineup, rather than skipping all
5158 parenthetical expressions.
5159 (verilog-calculate-indent): Fix comment, and fix indent.
5160 (verilog-do-indent): Indent declarations in lists (suggested by
5161 Joachim Lechner).
5162 (verilog-mode-abbrev-table): Populate abbrev mode with the various
5163 skeleton items.
5164 (verilog-sk-ovm-class): Add skeleton for OVM classes (reported
5165 by Alain Mellan).
5166
5167 2011-12-01 Wilson Snyder <wsnyder@wsnyder.org>
5168
5169 * progmodes/verilog-mode.el (verilog-read-defines): Fix reading
5170 parameters with embedded comments. Reported by Ray Stevens.
5171 (verilog-calc-1, verilog-fork-wait-re) (verilog-forward-sexp,
5172 verilog-wait-fork-re): Fix indentation of "wait fork", bug407.
5173 Reported by Tim Holt.
5174 (verilog-auto): Fix AUTOing a upper module then AUTOing module
5175 instantiated by upper module causing wrong expansion until AUTOed a
5176 second time. Reported by K C Buckenmaier.
5177 (verilog-diff-auto): Fix showing .* as a difference when
5178 `verilog-auto-star-save' off. Reported by Dan Dever.
5179 (verilog-auto-reset, verilog-read-always-signals)
5180 (verilog-auto-reset-blocking-in-non): Fix AUTORESET including
5181 temporary signals in reset list if
5182 verilog-auto-reset-blocking-in-non is nil, and match assignment
5183 style to each signal's assignment type, bug381.
5184 Reported by Thomas Esposito.
5185 (verilog-sk-uvm-class, verilog-uvm-begin-re, verilog-uvm-end-re)
5186 (verilog-uvm-statement-re): Support UVM indentation and
5187 highlighting, with old OVM keywords only.
5188 (verilog-auto-tieoff, verilog-auto-tieoff-declaration):
5189 Support AUTOTIEOFF creating non-wire data types.
5190 Suggested by Jonathan Greenlaw.
5191 (verilog-auto-insert-lisp, verilog-delete-to-paren)
5192 (verilog-forward-sexp-cmt, verilog-forward-sexp-ign-cmt)
5193 (verilog-inject-sense, verilog-read-inst-pins)
5194 (verilog-read-sub-decls, verilog-read-sub-decls-line):
5195 Fix mismatching parenthesis inside commented out code when deleting
5196 AUTOINST, bug383. Reported by Jonathan Greenlaw.
5197 (verilog-auto-ascii-enum): Fix AUTOASCIIENUM one-hot with
5198 non-numeric vector width. Reported by Alex Reed.
5199 (verilog-auto-ascii-enum): Add "onehot" option to work around not
5200 detecting signals with parameter widths. Reported by Alex Reed.
5201 (verilog-auto-delete-trailing-whitespace):
5202 With `verilog-auto-delete-trailing-whitespace' remove trailing
5203 whitespace in auto expansion, bug371. Reported by Brad Dobbie.
5204 (verilog-run-hooks, verilog-scan-cache-flush, verilog-syntax-ppss):
5205 Fix verilog-scan-cache corruption when running user AUTO expansion
5206 hooks that call indentation routines.
5207 (verilog-simplify-range-expression): Fix typo ignoring lower case
5208 identifiers.
5209 (verilog-delete-auto): Fix delete-autos to also remove user created
5210 automatics, as long as they start with AUTO.
5211 (verilog-batch-diff-auto, verilog-diff-auto)
5212 (verilog-diff-function): Add `verilog-diff-auto' and bind to
5213 "C-c?" to report differences in AUTO expansion, ignoring spaces.
5214 (verilog-backward-syntactic-ws-quick, verilog-beg-of-defun-quick)
5215 (verilog-in-paren-quick, verilog-re-search-backward-quick)
5216 (verilog-re-search-forward-quick, verilog-syntax-ppss):
5217 Fix calling `syntax-ppss' when inside auto expansions as the ppss hook
5218 is disabled and its cache will get corrupt, causing AUTOS not to
5219 expand. Instead use only -quick functions.
5220 (verilog-scan-region): Fix scanning over escaped quotes.
5221 (verilog-inside-comment-or-string-p, verilog-inside-comment-p)
5222 (verilog-re-search-backward-quick)
5223 (verilog-re-search-forward-quick, verilog-scan): verilog-scan and
5224 related functions now ignore strings, to fix misparsing of strings
5225 with magic comments embedded in them.
5226 (verilog-read-auto-template):
5227 Fix 'verilog-auto-inst-template-numbers' with extra newline before (.
5228 Reported by Brad Dobbie.
5229 (verilog-read-auto-template):
5230 Fix 'verilog-auto-inst-template-numbers' with comments.
5231 Reported by Brad Dobbie.
5232 (verilog-auto-inst, verilog-auto-inst-param)
5233 (verilog-auto-inst-sort): Add 'verilog-auto-inst-sort' to reduce
5234 merge conflicts with AUTOINST, bug358. Reported by Brad Dobbie.
5235 (verilog-auto-inst-template-numbers): Add 'lhs' policy for
5236 debugging templates without merge conflicts, bug357.
5237 Reported by Brad Dobbie.
5238 (verilog-read-auto-template):
5239 Fix verilog-auto-inst-template-numbers with multiple templates.
5240 Reported by Brad Dobbie.
5241 (verilog-define-abbrev): Fix verilog-mode abbrevs to be system
5242 abbrevs so user won't be asked to save.
5243 (verilog-read-auto-lisp-present): Fix to start at beginning of
5244 buffer in case called outside of verilog-auto.
5245 (verilog-simplify-range-expression): Fix AUTOWIRE expanding "X-1+1"
5246 to "X-2". Reported by Matthew Myers.
5247 (verilog-auto, verilog-auto-inout-in): Add AUTOINOUTIN for creating
5248 all inputs from module templates. Reported by Leith Johnson.
5249 (verilog-module-inside-filename-p): Fix locating programs as with
5250 modules.
5251 (verilog-auto-inst-port): Fix vl-width expressions when using
5252 verilog-auto-inst-param-value, bug331. Reported by Julian Gorfajn.
5253 (verilog-decls-get-regs, verilog-decls-get-signals,
5254 verilog-decls-get-vars, verilog-decls-get-wires, verilog-decls-new,
5255 verilog-modi-cache-add-vars, verilog-modi-cache-add-wires,
5256 verilog-read-decls): Combine reg and wire structures into one var
5257 structure to represent SystemVerilog concepts.
5258 (verilog-auto-ascii-enum, verilog-auto-logic, verilog-auto-reg)
5259 (verilog-auto-reg-input, verilog-auto-tieoff, verilog-auto-wire)
5260 (verilog-auto-wire-type, verilog-insert-definition):
5261 Add verilog-auto-wire-type and AUTOLOGIC to support using
5262 SystemVerilog "logic" keyword instead of "wire"/"reg".
5263 (verilog-auto-reg-input, verilog-decls-get-signals): Fix AUTOWIRE
5264 to declares outputs that also have assignments (presumably in an
5265 ifdef or generate if so there's not a driver conflict).
5266 Reported by Matthew Myers.
5267 (verilog-auto-declare-nettype, verilog-insert-definition):
5268 Add verilog-auto-declare-nettype to fix declarations using
5269 `default_nettype none. Reported by Julian Gorfajn.
5270 (verilog-read-always-signals-recurse, verilog-read-decls)
5271 (verilog-read-sub-decls-gate): Fix infinite loop with (*) and
5272 malformed end statement, bug325. Reported by Joshua Wise and
5273 Andrew Drake.
5274 (verilog-auto-star-safe, verilog-delete-auto-star-implicit)
5275 (verilog-inst-comment-re): Fix not deleting Interfaced comment
5276 when expanding .* in interfaces, bug320.
5277 Reported by Pierre-David Pfister.
5278 (verilog-read-module-name): Fix import statements between module
5279 name and open parenthesis, bug317.
5280 Reported by Pierre-David Pfister.
5281 (verilog-simplify-range-expression): Fix simplification of
5282 multiplications inside AUTOWIRE connections, bug303.
5283 (verilog-auto-inst-port): Support parameter expansion in
5284 multidimensional arrays.
5285 (verilog-read-decls): Fix AUTOREG etc looking for "endproperty"
5286 after "assert property". Reported by Julian Gorfajn.
5287 (verilog-simplify-range-expression): Fix "couldn't merge" errors
5288 with multiplication, bug303.
5289 (verilog-read-decls): Fix parsing of unsigned data types, bug302.
5290 Reported by Jan Frode Lonnum.
5291
5292 2011-11-30 Juanma Barranquero <lekktu@gmail.com>
5293
5294 * htmlfontify.el (hfy-page-header, hfy-post-html-hooks)
5295 (hfy-shell-file-name, hfy-shell):
5296 * international/fontset.el (x-decompose-font-name): Fix typos.
5297
5298 2011-11-29 Ken Brown <kbrown@cornell.edu>
5299
5300 * progmodes/gdb-mi.el: Fix bug#9853, bug#9858, and bug#9878.
5301 (gdb-version): Remove defvar.
5302 (gdb-supports-non-stop): New defvar, replacing `gdb-version'.
5303 (gdb-gud-context-command, gdb-non-stop-handler)
5304 (gdb-current-context-command, gdb-stopped): Use it.
5305 (gdb-init-1): Enable pretty printing here.
5306 (gdb-non-stop-handler): Don't enable pretty-printing here.
5307 Check to see if the target supports non-stop mode; if not, turn off
5308 non-stop mode. Use the following.
5309 (gdb-check-target-async): New defun.
5310 (gud-watch, gdb-stopped): Fix whitespace.
5311 (gdb-get-source-file): Don't try to display the source file if
5312 `gdb-main-file' is nil.
5313
5314 2011-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
5315
5316 * align.el: Try to generate fewer markers (bug#10047).
5317 (align--set-marker): New macro.
5318 (align-region): Use it.
5319
5320 2011-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
5321
5322 * isearch.el (isearch-yank-x-selection): Deactivate mark (bug#10022).
5323
5324 2011-11-29 Chong Yidong <cyd@gnu.org>
5325
5326 * indent.el (indent-for-tab-command, indent-according-to-mode):
5327 Doc fix.
5328 (indent-region): Doc fix. Switch nested ifs to equivalent cond.
5329
5330 2011-11-29 Michael Albinus <michael.albinus@gmx.de>
5331
5332 * vc/diff-mode.el (diff-find-file-name): Make `read-file-name'
5333 aware of remote file names. (Bug#10124)
5334
5335 2011-11-29 Chong Yidong <cyd@gnu.org>
5336
5337 * frame.el (auto-raise-mode, auto-lower-mode): Doc fix.
5338
5339 2011-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
5340
5341 * files.el (find-file): Don't use force-same-window (bug#10144).
5342 * window.el (switch-to-buffer): Better match Emacs-23 behavior and only
5343 use pop-to-buffer if the selected window can't be used.
5344 (pop-to-buffer-same-window): Use display-buffer--same-window-action.
5345
5346 2011-11-28 Eli Zaretskii <eliz@gnu.org>
5347
5348 * vc/diff-mode.el (diff-mode-map): Don't inherit 'z' => 'M-z' from
5349 special-mode-map.
5350
5351 2011-11-28 Chong Yidong <cyd@gnu.org>
5352
5353 * emacs-lisp/easy-mmode.el (define-minor-mode): Fix default doc.
5354
5355 2011-11-27 Nick Roberts <nickrob@snap.net.nz>
5356
5357 * progmodes/gdb-mi.el (gdb-init-1): Condition execution of
5358 gdb-get-source-file-list on gdb-create-source-file-list.
5359
5360 2011-11-26 Eli Zaretskii <eliz@gnu.org>
5361
5362 * whitespace.el (whitespace-newline): Use a different foreground
5363 color for 16-color light-background displays.
5364
5365 2011-11-24 Chong Yidong <cyd@gnu.org>
5366
5367 * window.el (display-buffer--special-action): Doc fix.
5368
5369 2011-11-25 Juanma Barranquero <lekktu@gmail.com>
5370
5371 * emacs-lisp/avl-tree.el (avl-tree--do-copy, avl-tree-create)
5372 (avl-tree-compare-function, avl-tree-empty, avl-tree-enter)
5373 (avl-tree-delete, avl-tree-member, avl-tree-member-p, avl-tree-map)
5374 (avl-tree-mapc, avl-tree-mapf, avl-tree-mapcar, avl-tree-copy)
5375 (avl-tree-clear, avl-tree-stack, avl-tree-stack-pop)
5376 (avl-tree-stack-first):
5377 * emacs-lisp/cconv.el (cconv--analyse-use):
5378 * net/gnutls.el (gnutls-negotiate): Fix typos.
5379
5380 2011-11-24 Glenn Morris <rgm@gnu.org>
5381
5382 * lpr.el (lpr-windows-system, lpr-lp-system):
5383 * mail/binhex.el (binhex-begin-line):
5384 * progmodes/grep.el (grep-history, grep-find-history):
5385 * textmodes/flyspell.el:
5386 * vc/pcvs-defs.el (cvs-global-menu):
5387 * vc/vc-bzr.el (vc-bzr-admin-checkout-format-file):
5388 * vc/vc-mtn.el (vc-mtn-admin-dir, vc-mtn-admin-format):
5389 * vc/vc-cvs.el (vc-cvs-registered): Give them basic doc-strings.
5390
5391 * net/tls.el: Fix case of "GnuTLS".
5392
5393 * paths.el (rmail-file-name): Format doc-string for make-docfile.
5394
5395 * version.el (emacs-build-system): Give it a doc-string.
5396
5397 2011-11-24 Juri Linkov <juri@jurta.org>
5398
5399 * view.el (view-buffer): Revert 2011-07-19T15:01:49Z!larsi@gnus.org from 2011-07-19 (bug#8615).
5400
5401 2011-11-24 Glenn Morris <rgm@gnu.org>
5402
5403 * mail/rmailmm.el (rmail-mime): When rmail-enable-mime is non-nil,
5404 if called on a non-mime message just toggle the headers. (Bug#8006)
5405
5406 2011-11-24 Juanma Barranquero <lekktu@gmail.com>
5407
5408 * allout.el (allout-setup, allout-auto-save-temporarily-disabled)
5409 (allout-lead-with-comment-string, allout-structure-deleted-hook)
5410 (allout-mode, allout-chart-subtree, allout-hotspot-key-handler)
5411 (allout-rebullet-heading, allout-open-sibtopic)
5412 (allout-toggle-current-subtree-encryption)
5413 (allout-toggle-subtree-encryption, allout-encrypt-string)
5414 (allout-next-topic-pending-encryption, allout-adjust-file-variable)
5415 (allout-distinctive-bullets-string, allout-auto-activation):
5416 * window.el (window-normalize-buffer-to-display):
5417 * progmodes/verilog-mode.el (verilog-batch-indent):
5418 * textmodes/bibtex.el (bibtex-field-braces-opt)
5419 (bibtex-field-strings-opt):
5420 * vc/cvs-status.el (cvs-tree-merge):
5421 Fix typos.
5422
5423 2011-11-23 Michael Albinus <michael.albinus@gmx.de>
5424
5425 * rfn-eshadow.el (rfn-eshadow-update-overlay): Let-bind
5426 `non-essential' to t, in order to avoid remote connections.
5427
5428 2011-11-23 Eli Zaretskii <eliz@gnu.org>
5429
5430 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
5431 On MS-DOS and MS-Windows, compare with loaddefs.el
5432 case-insensitively.
5433
5434 2011-11-23 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
5435
5436 * mail/unrmail.el (unrmail): Always add blank line. (Bug#7743)
5437
5438 2011-11-23 Glenn Morris <rgm@gnu.org>
5439
5440 * paths.el (rmail-file-name): Reformat the doc-string so that it
5441 is picked up.
5442
5443 * mail/rmail.el (rmail-message-filter, rmail-auto-file): Doc fixes.
5444 (rmail-auto-file): Ignore case in the "special" field names,
5445 as mail-fetch-field does for all others.
5446
5447 * mail/rmail.el (rmail-forward):
5448 * mail/rmailkwd.el (rmail-set-label):
5449 * mail/rmailout.el (rmail-output, rmail-output-as-seen)
5450 (rmail-output-body-to-file): Give error if no message. (Bug#10082)
5451
5452 * mail/rmail.el (rmail-current-message): Doc fix.
5453
5454 * mail/rmail.el (rmail-message-filter): Mark as obsolete. (Bug#2624)
5455
5456 2011-11-22 Stefan Monnier <monnier@iro.umontreal.ca>
5457
5458 * server.el (server-eval-and-print): Allow C-g (bug#6585).
5459
5460 2011-11-22 Glenn Morris <rgm@gnu.org>
5461
5462 * mail/rmailmm.el (test-rmail-mime-handler)
5463 (test-rmail-mime-bulk-handler)
5464 (test-rmail-mime-multipart-handler): Move tests to test/ directory.
5465
5466 2011-11-21 Juri Linkov <juri@jurta.org>
5467
5468 * calc/calc.el (calc-read-key-sequence):
5469 Let-bind `input-method-function' to nil. (Bug#10018)
5470
5471 2011-11-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
5472
5473 * emacs-lisp/cl-indent.el (common-lisp-loop-part-indentation):
5474 Tell the caller that the next line needs recomputation, even
5475 though it doesn't start a sexp (bug#10094).
5476
5477 2011-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
5478
5479 * emacs-lisp/autoload.el (autoload-generate-file-autoloads): Simplify.
5480
5481 2011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
5482
5483 * vc/pcvs-util.el (cvs-pop-to-buffer-same-frame):
5484 Use force-same-window.
5485
5486 2011-11-20 Juanma Barranquero <lekktu@gmail.com>
5487
5488 * descr-text.el (describe-char-unicode-data):
5489 * json.el (json-string-escape):
5490 * mail/footnote.el (footnote-unicode-string, footnote-unicode-regexp)
5491 (Footnote-unicode, Footnote-style-p):
5492 * net/ntlm.el (ntlm-get-password-hashes): Fix typos.
5493
5494 2011-11-20 Chong Yidong <cyd@gnu.org>
5495
5496 * window.el (replace-buffer-in-windows): Restore interactive spec.
5497
5498 2011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
5499
5500 * electric.el (electric-indent-mode): Fix last change (too optimistic).
5501
5502 * emacs-lisp/bytecomp.el: Silence obsolete warnings more reliably.
5503 (byte-compile-global-not-obsolete-vars): New var.
5504 (byte-compile-check-variable, byte-compile-make-obsolete-variable):
5505 Use it.
5506 (byte-compile-warn-obsolete): Align text with the one in *Help*.
5507
5508 2011-11-20 Juanma Barranquero <lekktu@gmail.com>
5509
5510 * progmodes/cwarn.el (cwarn-is-enabled, cwarn-font-lock-keywords):
5511 * progmodes/pascal.el (electric-pascal-equal):
5512 * textmodes/reftex-dcr.el (reftex-view-crossref-from-bibtex):
5513 * xml.el (xml-substitute-special): Fix typos.
5514
5515 2011-11-20 Glenn Morris <rgm@gnu.org>
5516
5517 * mail/rmail.el (rmail-enable-mime-composing): Make it a defcustom.
5518 (rmail-insert-mime-forwarded-message-function, rmail-mime-feature):
5519 Doc fixes.
5520 (rmail-decode-mime-charset): Mark as obsolete.
5521
5522 * mail/rmailsum.el (rmail-message-regexp-p-1):
5523 * mail/rmail.el (rmail-search-message, rmail-forward, rmail-resend):
5524 Before using mime functions, check they are set. (Bug#10077)
5525
5526 2011-11-19 Juri Linkov <juri@jurta.org>
5527
5528 * info.el (Info-finder-find-node): Use `package--builtins' instead
5529 of `package-alist'. Use node names formed by the pattern "Keyword "
5530 and the keyword name.
5531
5532 2011-11-19 Andreas Schwab <schwab@linux-m68k.org>
5533
5534 * progmodes/sh-script.el (sh-assignment-regexp): Add entry for bash.
5535
5536 2011-11-19 Juri Linkov <juri@jurta.org>
5537
5538 * info.el (Info-hide-note-references): Add `:set' tag to `defcustom'
5539 that calls `revert-buffer' on all Info buffers. (Bug#9915)
5540 (Info-revert-find-node): Remove let-bindings `old-buffer-name',
5541 `old-history', `old-history-forward'. Add let-binding
5542 `window-selected'. Remove calls to `kill-buffer',
5543 `switch-to-buffer' and `Info-mode'. Set `Info-current-file' to nil
5544 before calling `Info-find-node', so `Info-find-node-2' will reread
5545 the Info file. Restore window positions only when `window-selected'
5546 is non-nil.
5547
5548 2011-11-19 Juri Linkov <juri@jurta.org>
5549
5550 * isearch.el (isearch-lazy-highlight-new-loop):
5551 Remove condition `(not isearch-error)'. (Bug#9918)
5552
5553 * misearch.el (multi-isearch-search-fun): Add condition
5554 `(not bound)' to ignore lazy-highlighting search.
5555 Add the search-failed message "end of multi" when the end of
5556 multi-sequence is reached. Uncapitalize the search-failed
5557 message "Repeat for next buffer".
5558
5559 * info.el (Info-search): Add the search-failed message
5560 "end of the manual" when the end of the manual is reached
5561 in Isearch mode.
5562
5563 2011-11-19 Juri Linkov <juri@jurta.org>
5564
5565 * info.el (Info-find-node-2, Info-select-node, Info-history-find-node):
5566 Use non-destructive `remove' instead of `delete' because
5567 `Info-history-list' stored to `Info-isearch-initial-history-list' in
5568 `Info-isearch-start' might need to be restored in `Info-isearch-end'.
5569
5570 2011-11-19 Juri Linkov <juri@jurta.org>
5571
5572 * isearch.el (isearch-edit-string): Let-bind `history-add-new-input'
5573 to nil instead of binding `search-ring' and `regexp-search-ring'.
5574 (Bug#9185)
5575
5576 2011-11-19 Eli Zaretskii <eliz@gnu.org>
5577
5578 * simple.el (line-move): Force movement by logical lines for any
5579 hscrolled window, not only when auto-hscroll-mode is on.
5580 (line-move-visual): Update doc string to that effect. (Bug#10076)
5581
5582 2011-11-19 Andreas Schwab <schwab@linux-m68k.org>
5583
5584 * language/european.el (macintosh): Define as alias for mac-roman.
5585
5586 2011-11-19 Eli Zaretskii <eliz@gnu.org>
5587
5588 * mail/rmailmm.el (rmail-mime-display-header)
5589 (rmail-mime-display-tagline, rmail-mime-display-body): New defsubsts.
5590 (rmail-mime-entity-segment, rmail-mime-toggle-raw)
5591 (rmail-mime-toggle-hidden, rmail-mime-insert-text)
5592 (rmail-mime-insert-bulk, rmail-mime-insert-multipart)
5593 (rmail-mime-insert, rmail-mime-insert-tagline): Use them instead
5594 of a raw aref.
5595 (rmail-mime-entity-segment): To get past the tagline, move forward
5596 2 more lines, to account for the 2 empty lines that precede and
5597 follow the line with the buttons.
5598 (rmail-mime-update-tagline): Move one more line, to get past the
5599 empty line that follows the buttons in the tagline. (Bug#9520)
5600
5601 2011-11-19 Martin Rudalics <rudalics@gmx.at>
5602
5603 * window.el (window-max-delta-1, window-min-delta-1)
5604 (window-min-size-1, window-state-get-1, window-state-put-1)
5605 (window-state-put-2): Use "window--" prefix.
5606
5607 2011-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
5608
5609 * emacs-lisp/smie.el: Improve warnings and conflict detection.
5610 (smie-warning-count): New var.
5611 (smie-set-prec2tab): Use it.
5612 (smie-bnf->prec2): Improve warnings. Add docstring.
5613 (smie-bnf--closer-alist): Rename from smie-bnf-closer-alist.
5614 (smie-bnf--set-class): New function.
5615 (smie-bnf--classify): Rename from smie-bnf-classify. Rewrite to fix
5616 corner case.
5617
5618 * progmodes/compile.el: Obey compilation-first-column in dest buffer.
5619 (compilation-error-properties, compilation-move-to-column):
5620 Handle compilation-first-column while in the target buffer.
5621
5622 * progmodes/cc-engine.el (c-remove-stale-state-cache-backwards):
5623 Don't hardcode point-min==1.
5624
5625 * eshell/esh-cmd.el (eshell-do-eval): Handle `setq' (bug#9907).
5626 (eshell-rewrite-for-command): Remove workaround.
5627 (eshell-do-pipelines, eshell-do-pipelines-synchronously)
5628 (eshell-do-eval, eshell-exec-lisp): Avoid gratuitous setq.
5629 * eshell/esh-util.el (eshell-condition-case, eshell-for): Use declare.
5630
5631 * files-x.el (modify-file-local-variable): Obey commenting conventions.
5632
5633 2011-11-17 Glenn Morris <rgm@gnu.org>
5634
5635 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
5636 Ignore buffer-local generated-autoload-file if it is the same
5637 as the global value. (Bug#10049)
5638
5639 2011-11-17 Juanma Barranquero <lekktu@gmail.com>
5640
5641 * textmodes/reftex-toc.el (reftex-toc-return-marker, reftex-toc-help)
5642 (reftex-toc, reftex-toc, reftex-toc-dframe-p, reftex-toc-next-heading)
5643 (reftex-toc-previous-heading, reftex-toc-max-level)
5644 (reftex-toc-goto-line-and-hide, reftex-toc-show-calling-point)
5645 (reftex-toc-quit, reftex-toc-revert, reftex-toc-jump)
5646 (reftex-toc-do-promote, reftex-toc-promote-prepare)
5647 (reftex-toc-promote-action, reftex-toc-extract-section-number)
5648 (reftex-toc-load-all-files-for-promotion, reftex-toc-rename-label)
5649 (reftex-toc-rename-label, reftex-toc-visit-location)
5650 (reftex-toc-visit-location, reftex-toggle-auto-toc-recenter)
5651 (reftex-toggle-auto-toc-recenter, reftex-toggle-auto-toc-recenter)
5652 (reftex-make-separate-toc-frame): Fix typos, and use TOC consistently,
5653 leaving "*toc*" only for references to the buffer.
5654
5655 2011-11-17 Martin Rudalics <rudalics@gmx.at>
5656
5657 * window.el (window-resize, delete-window, split-window):
5658 Replace window-splits by window-combination-resize.
5659 * cus-start.el (window-splits): Replace by window-combination-resize.
5660
5661 2011-11-17 Glenn Morris <rgm@gnu.org>
5662
5663 * progmodes/sh-script.el (sh-font-lock-keywords-var):
5664 Make bash entry derive from sh entry, not shell entry.
5665
5666 2011-11-16 Michael Albinus <michael.albinus@gmx.de>
5667
5668 * net/tramp-cache.el (tramp-flush-file-property): Flush also
5669 properties of linked files. (Bug#9879)
5670
5671 * net/tramp-sh.el (tramp-sh-handle-file-truename): Cache only the
5672 local file name.
5673
5674 2011-11-16 Juanma Barranquero <lekktu@gmail.com>
5675
5676 * menu-bar.el (menu-bar-file-menu):
5677 * printing.el (pr-ps-utility):
5678 * calendar/icalendar.el (icalendar, icalendar--convert-tz-offset)
5679 (icalendar--convert-to-ical, icalendar--convert-ordinary-to-ical)
5680 (icalendar--convert-weekly-to-ical, icalendar--convert-yearly-to-ical)
5681 (icalendar--convert-sexp-to-ical, icalendar--convert-block-to-ical)
5682 (icalendar--convert-float-to-ical, icalendar--convert-date-to-ical)
5683 (icalendar--convert-cyclic-to-ical)
5684 (icalendar--convert-anniversary-to-ical, icalendar-import-buffer)
5685 (icalendar--convert-ical-to-diary)
5686 (icalendar--convert-recurring-to-diary)
5687 (icalendar--convert-non-recurring-all-day-to-diary)
5688 (icalendar-import-format-sample):
5689 * progmodes/idlw-shell.el (idlwave-shell-mode):
5690 * progmodes/vhdl-mode.el (vhdl-mode, vhdl-print-two-column)
5691 (vhdl-print-customize-faces, vhdl-mode, vhdl-ps-print-settings)
5692 (vhdl-ps-print-init): Fix typos.
5693
5694 2011-11-16 Ken Manheimer <ken.manheimer@gmail.com>
5695
5696 * allout.el, allout-widgets.el (file metadata): Attribute copyright to
5697 FSF and collapse date sequence, obscure author/maintainer email address
5698 better, remove extra version line, track relocation of author's webpage.
5699
5700 * progmodes/python.el (python-pdbtrack-input-prompt)
5701 (python-pdbtrack-track-stack-file): Adjust to recognize ipdb as well as
5702 regular python pdb prompts. Adjustments shamelessly taken exactly as
5703 suggested in EmacsWiki page (tiny change):
5704 http://www.emacswiki.org/PythonProgrammingInEmacs#toc14
5705
5706 2011-11-16 Juanma Barranquero <lekktu@gmail.com>
5707
5708 * expand.el (expand-pos, expand-index, expand-point):
5709 Remove redundant info from docstring.
5710 (expand-add-abbrevs): Doc fix.
5711 (expand-c-sample-expand-list, expand-sample-lisp-mode-expand-list)
5712 (expand-sample-perl-mode-expand-list): Fix typos.
5713
5714 * net/dbus.el (dbus-event-member-name):
5715 * play/5x5.el (5x5-solve-rotate-left, 5x5-solver-output):
5716 * term/pc-win.el (msdos-create-frame-with-faces):
5717 * textmodes/texinfmt.el (texinfo-format-image): Fix typos.
5718
5719 2011-11-16 Martin Rudalics <rudalics@gmx.at>
5720
5721 * window.el (split-window, window-state-get-1)
5722 (window-state-put-1, window-state-put-2): Rename occurrences of
5723 window-nest to window-combination-limit.
5724 * cus-start.el (window-nest): Rename to window-combination-limit.
5725
5726 2011-11-16 Chong Yidong <cyd@gnu.org>
5727
5728 * progmodes/autoconf.el (autoconf-mode): Fix comment-start-skip
5729 regexp (Bug#10033).
5730
5731 2011-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
5732
5733 * tmm.el (tmm-prompt): Use minibuffer-with-setup-hook (bug#10053).
5734 `completing-read' will remove *Completions* and will preserve
5735 current-buffer for us.
5736 (tmm-add-prompt): Users of *Completions* will always (re)set its
5737 major mode.
5738 (tmm-old-comp-map): Remove.
5739
5740 2011-11-16 Glenn Morris <rgm@gnu.org>
5741
5742 * mail/rmailedit.el: Require rmailmm when compiling.
5743 (rmail-old-mime-state): New declaration.
5744 (rmail-edit-current-message): If editing a mime message,
5745 edit the "raw" message from the mbox buffer.
5746 (rmail-cease-edit): Handle mime messages. (Bug#9840)
5747
5748 2011-11-15 Glenn Morris <rgm@gnu.org>
5749
5750 * mail/rmailmm.el (rmail-mime-toggle-raw): Remove entity arg,
5751 which wasn't being used. Add optional arg to force given state.
5752 (rmail-mime): Add optional arg to force given state.
5753
5754 2011-11-15 Juanma Barranquero <lekktu@gmail.com>
5755
5756 * allout.el (allout-encryption-plaintext-sanitization-regexps):
5757 * frame.el (display-mm-dimensions-alist):
5758 * outline.el (outline-mode-menu-bar-map, outline-move-subtree-up)
5759 (outline-move-subtree-down):
5760 * net/newst-treeview.el (newsticker--treeview-do-get-node-of-feed)
5761 (newsticker--treeview-do-get-node):
5762 * net/quickurl.el (quickurl-list-buffer-name):
5763 * progmodes/dcl-mode.el (dcl-mode):
5764 * progmodes/gdb-mi.el (gdb-mapcar*):
5765 * progmodes/sql.el (sql-mode-oracle-font-lock-keywords): Fix typos.
5766
5767 2011-11-15 Glenn Morris <rgm@gnu.org>
5768
5769 * mail/rmail.el (rmail-file-coding-system): It's only ever used
5770 in a boolean sense, so just make it a boolean, and fix the doc.
5771 (rmail-show-mime-function, rmail-mime-feature)
5772 (rmail-require-mime-maybe): Doc fixes.
5773 (rmail-show-message-1): Check rmail-show-mime-function is non-nil.
5774
5775 * mail/rmailmm.el (rmail-show-mime): Doc fix.
5776
5777 2011-11-15 Juanma Barranquero <lekktu@gmail.com>
5778
5779 * epg.el (epg-start-decrypt, epg-start-verify, epg-start-sign)
5780 (epg-start-encrypt, epg-start-export-keys, epg-start-import-keys)
5781 (epg-start-receive-keys, epg-start-delete-keys, epg-start-sign-keys)
5782 (epg-start-generate-key, epg-context-set-progress-callback): Fix typos.
5783
5784 2011-11-15 Glenn Morris <rgm@gnu.org>
5785
5786 * mail/rmailmm.el (rmail-mime-entity, rmail-mime-entity-segment)
5787 (rmail-mime-shown-mode, rmail-mime-hidden-mode, rmail-mime-raw-mode)
5788 (rmail-mime-toggle-hidden, rmail-mime-insert-tagline)
5789 (rmail-mime-insert-header, rmail-mime-handle, rmail-mime-parse)
5790 (rmail-mime, rmail-show-mime): Doc fixes.
5791
5792 * term/ns-win.el (mode-line-frame-identification):
5793 Leave it alone. (Bug#10051)
5794
5795 * simple.el (mark-whole-buffer): Doc fix. (Bug#10023)
5796
5797 * mail/rmailout.el (rmail-output-to-rmail-buffer):
5798 Handle empty buffers. (Bug#9978)
5799
5800 2011-11-14 Juanma Barranquero <lekktu@gmail.com>
5801
5802 * international/mule.el (define-charset):
5803 * mail/rmailmm.el (rmail-mime-find-header-encoding):
5804 * progmodes/prolog.el (prolog-mode-hook, prolog-inferior-mode-hook):
5805 * progmodes/verilog-mode.el (verilog-backward-token):
5806 * textmodes/ispell.el (lookup-words):
5807 * textmodes/sgml-mode.el (sgml-guess-indent): Fix typos.
5808
5809 2011-11-14 Glenn Morris <rgm@gnu.org>
5810
5811 * progmodes/executable.el
5812 (executable-make-buffer-file-executable-if-script-p):
5813 Handle file-modes returning nil.
5814
5815 * mail/rmailsum.el (rmail-summary): Remove movement to beginning of
5816 message - not necessary, and causes problems. (Bug#9831)
5817
5818 * mail/rmailsum.el (rmail-new-summary): Preserve message number.
5819
5820 * mail/rmail.el (rmail-no-mail-p): Remove mode-line N/M indicator.
5821
5822 * mail/rmailsum.el (rmail-summary, rmail-new-summary)
5823 (rmail-new-summary-1): Allow empty summaries. (Bug#9964)
5824 (rmail-new-summary): Remember that rmail-summary-buffer is buffer-local.
5825
5826 2011-11-12 Martin Rudalics <rudalics@gmx.at>
5827
5828 * window.el (window-resize, delete-window): Use window-splits
5829 variable instead of function.
5830 (window-state-get-1, window-state-put-2, window-state-put):
5831 Don't deal with windows' splits status.
5832
5833 2011-11-12 Glenn Morris <rgm@gnu.org>
5834
5835 * apropos.el (apropos-do-all, apropos-library, apropos-value)
5836 (apropos-documentation): Doc fixes.
5837
5838 2011-11-11 Juanma Barranquero <lekktu@gmail.com>
5839
5840 * progmodes/idlw-shell.el (idlwave-shell-make-new-bp-overlay):
5841 * textmodes/sgml-mode.el (html-tag-help): Fix typos.
5842
5843 2011-11-11 Stefan Monnier <monnier@iro.umontreal.ca>
5844
5845 * electric.el (electric-indent-post-self-insert-function): Make it
5846 possible for a char to only indent in some circumstances.
5847 (electric-indent-mode): Simplify.
5848
5849 2011-11-11 Martin Rudalics <rudalics@gmx.at>
5850
5851 * window.el (windows-with-parameter): Remove unused function.
5852 (windows-at-side): Rename to window-at-side-list.
5853 (window-check, window-atom-check, window-atom-check-1)
5854 (window-side-check, window-size-ignore, window-size-fixed-1)
5855 (window-in-direction-2): Prefix with "window--".
5856 (window-tree-1): Rename to window--subtree, fix doc-string.
5857
5858 2011-11-11 Glenn Morris <rgm@gnu.org>
5859
5860 * subr.el (eval-after-load): If FILE is already loaded,
5861 evaluate FORM before it gets wrapped in more stuff. (Bug#10009)
5862
5863 2011-11-10 Glenn Morris <rgm@gnu.org>
5864
5865 * vc/vc-svn.el (vc-svn-create-repo, vc-svn-modify-change-comment):
5866 Call svn via vc-svn-command rather than vc-do-command.
5867 (vc-svn-command): Add --non-interactive. (Bug#9993)
5868 (vc-svn-update, vc-svn-merge-news): No need for --non-interactive.
5869
5870 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
5871 Add toggle-read-only. (Bug#7292)
5872 * files.el (toggle-read-only): Mention that it should only
5873 be used interactively. (Bug#10006)
5874
5875 2011-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
5876
5877 * progmodes/compile.el (compilation-error-regexp-alist-alist):
5878 Adjust regexp for OCaml warnings.
5879
5880 * electric.el (electric-pair-post-self-insert-function): Let user
5881 turn it off buffer-locally (bug#9932).
5882
5883 * progmodes/python.el (python-beginning-of-statement):
5884 Rewrite (bug#2703).
5885
5886 * progmodes/compile.el: Better handle TABs (bug#9749).
5887 (compilation-internal-error-properties)
5888 (compilation-next-error-function): Obey the target buffer's
5889 compilation-error-screen-columns.
5890
5891 2011-11-09 Juanma Barranquero <lekktu@gmail.com>
5892
5893 * progmodes/meta-mode.el: Remove obsolete comments.
5894 (meta-right-comment-regexp, meta-ignore-comment-regexp):
5895 Fix typos in docstrings.
5896
5897 2011-11-09 Martin Rudalics <rudalics@gmx.at>
5898
5899 * window.el (window-size-fixed-p): Rewrite doc-string.
5900 (window-resizable-p): Rename to window--resizable-p. Update callers.
5901 (window--resizable): New function. Make all callers of
5902 window-resizable call window--resizable instead.
5903 (window-resizable): Rewrite in terms of window--resizable.
5904
5905 2011-11-08 Glenn Morris <rgm@gnu.org>
5906
5907 * progmodes/delphi.el (delphi-mode-syntax-table):
5908 Let define-derived-mode define a proper syntax table. (Bug#9994)
5909
5910 2011-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
5911
5912 * window.el: Stay away from defsubst.
5913 (window-list-no-nils): Remove.
5914 (window-state-get-1, window-state-get): Use backquote instead.
5915
5916 2011-11-08 Thierry Volpiatto <thierry.volpiatto@gmail.com>
5917
5918 * emacs-lisp/find-func.el (find-function-read):
5919 Fix incorrect use of default argument in `completing-read'.
5920
5921 2011-11-08 Martin Rudalics <rudalics@gmx.at>
5922
5923 * window.el (display-buffer-function, special-display-function):
5924 Mention display-buffer-record-window but do not mention
5925 help-setup parameter in doc-strings.
5926 (window-min-delta): Fix doc-string typo.
5927
5928 2011-11-08 Chong Yidong <cyd@gnu.org>
5929
5930 * window.el (window-total-height, window-total-width): Doc fix.
5931 (window-body-size): Move from C.
5932 (window-body-height, window-body-width): Move to C.
5933
5934 2011-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
5935
5936 * window.el: Make special-display like display-buffer-alist (bug#9532).
5937 (display-buffer--special-action): New function, morphed
5938 from display-buffer--special.
5939 (display-buffer): Use it to handle special-display-buffers at higher
5940 priority (just after display-buffer-alist).
5941 (display-buffer-fallback-action, display-buffer--other-frame-action)
5942 (pop-to-buffer-same-window): Remove display-buffer--special.
5943
5944 2011-11-07 Glenn Morris <rgm@gnu.org>
5945
5946 * calendar/cal-menu.el (cal-menu-set-date-title):
5947 Do nothing if not in a calendar. (Bug#9976)
5948
5949 2011-11-07 Stefan Monnier <monnier@iro.umontreal.ca>
5950
5951 * files.el (find-file): Always use selected-window.
5952
5953 2011-11-07 Martin Rudalics <rudalics@gmx.at>
5954
5955 * window.el (window-combinations): Make WINDOW argument
5956 mandatory. Rewrite doc-string.
5957 (walk-window-subtree, window-atom-check, window-min-delta)
5958 (window-max-delta, window--resize-this-window)
5959 (window--resize-root-window-vertically, window-tree)
5960 (balance-windows, window-state-put): Rewrite doc-strings as to
5961 not mention the term "subwindow".
5962 (window--resize-subwindows-skip-p): Rename to
5963 window--resize-child-windows-skip-p.
5964 (window--resize-subwindows-normal): Rename to
5965 window--resize-child-windows-normal.
5966 (window--resize-subwindows): Rename to
5967 window--resize-child-windows.
5968 (window-or-subwindow-p): Rename to window--in-subtree-p.
5969
5970 2011-11-07 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
5971
5972 * mail/rmail.el (rmail-get-new-mail, rmail-insert-inbox-text):
5973 Ensure that mbox format messages end in two newlines (Bug#9974).
5974
5975 2011-11-06 Chong Yidong <cyd@gnu.org>
5976
5977 * window.el (window-combination-p): Function deleted; its
5978 side-effect is not used in any existing code.
5979 (window-combinations, window-combined-p): Call window-*-child
5980 directly.
5981
5982 2011-11-05 Chong Yidong <cyd@gnu.org>
5983
5984 * window.el (window-valid-p): Rename from window-any-p.
5985 (window-size-ignore, window-state-get): Callers changed.
5986 (window-normalize-window): Rename from window-normalize-any-window.
5987 New arg LIVE-ONLY, replacing window-normalize-live-window.
5988 (window-normalize-live-window): Delete.
5989 (window-combination-p, window-combined-p, window-combinations)
5990 (walk-window-subtree, window-atom-root, window-min-size)
5991 (window-sizable, window-sizable-p, window-size-fixed-p)
5992 (window-min-delta, window-max-delta, window-resizable)
5993 (window-resizable-p, window-full-height-p, window-full-width-p)
5994 (window-current-scroll-bars, window-point-1, set-window-point-1)
5995 (window-at-side-p, window-in-direction, window-resize)
5996 (adjust-window-trailing-edge, maximize-window, minimize-window)
5997 (window-deletable-p, delete-window, delete-other-windows)
5998 (record-window-buffer, unrecord-window-buffer)
5999 (switch-to-prev-buffer, switch-to-next-buffer, window--delete)
6000 (quit-window, split-window, window-state-put)
6001 (set-window-text-height, fit-window-to-buffer)
6002 (shrink-window-if-larger-than-buffer): Callers changed.
6003
6004 2011-11-04 Eli Zaretskii <eliz@gnu.org>
6005
6006 * mail/rmail.el (rmail-simplified-subject): Decode subject with
6007 rfc2047-decode-string.
6008 (rmail-mime-toggle-hidden): Declare to avoid byte-compilation
6009 warnings.
6010
6011 * window.el (window-body-height, window-body-width): Mention in
6012 the doc string that the return values are in frame's canonical
6013 units. (Bug#9949)
6014
6015 2011-11-03 Alan Mackenzie <acm@muc.de>
6016
6017 * progmodes/cc-langs.el (c-nonlabel-token-2-key): New variable for
6018 change in cc-engine.el.
6019
6020 2011-11-02 Stefan Monnier <monnier@iro.umontreal.ca>
6021
6022 * window.el (switch-to-buffer): Use `force-same-window' interactively.
6023
6024 2011-11-02 Martin Rudalics <rudalics@gmx.at>
6025
6026 * window.el (quit-window): Call unrecord-window-buffer after
6027 showing another buffer in the window. (Bug#9937)
6028 (bury-buffer): Call switch-to-prev-buffer with second argument `bury'.
6029
6030 2011-11-02 Juanma Barranquero <lekktu@gmail.com>
6031
6032 * vc/vc-bzr.el (vc-bzr-state, vc-bzr-after-dir-status):
6033 Accept status with more than 9 shelves. (Bug#9935)
6034 Reported by Colin D Bennett <colin@gibibit.com>.
6035
6036 2011-11-01 Martin Rudalics <rudalics@gmx.at>
6037
6038 * help.el (with-help-window): Don't reference
6039 temp-buffer-show-specifiers in doc-string.
6040
6041 2011-10-31 Andreas Schwab <schwab@linux-m68k.org>
6042
6043 * subr.el (keymap--menu-item-with-binding): Ignore item if not a
6044 menu-item.
6045
6046 2011-10-30 Vinicius Jose Latorre <viniciusjl@ig.com.br>
6047
6048 * whitespace.el: New version 13.2.2.
6049 (whitespace-newline-mode): Disable properly. Reported by Sarah
6050 <EmacsWiki>.
6051
6052 2011-10-30 Ulf Jasper <ulf.jasper@web.de>
6053
6054 * net/newst-treeview.el: Remove "Time-stamp".
6055 (newsticker--group-manage-orphan-feeds): Do not call
6056 newsticker--treeview-tree-update.
6057 (newsticker-treeview-update, newsticker-treeview):
6058 Call newsticker--treeview-tree-update if necessary.
6059
6060 2011-10-30 Martin Rudalics <rudalics@gmx.at>
6061
6062 * window.el (window-iso-combination-p, window-iso-combined-p)
6063 (window-iso-combinations): Remove "iso-" infix.
6064 Suggested by Chong Yidong.
6065 (window-min-size-1, window-size-fixed-1, window-min-delta-1)
6066 (window-max-delta-1, window-resize, window--resize-siblings)
6067 (window--resize-this-window, adjust-window-trailing-edge)
6068 (split-window, balance-windows-1)
6069 (shrink-window-if-larger-than-buffer):
6070 * calendar/calendar.el (calendar-generate-window):
6071 * help.el (resize-temp-buffer-window): Adjust callers accordingly.
6072
6073 2011-10-30 Stefan Monnier <monnier@iro.umontreal.ca>
6074
6075 * eshell/esh-cmd.el (eshell-rewrite-for-command): Don't modify the list
6076 in place (bug#9907).
6077 (eshell-subcommand-arg-values, eshell-rewrite-named-command)
6078 (eshell-rewrite-if-command, eshell-rewrite-for-command)
6079 (eshell-structure-basic-command, eshell-rewrite-while-command)
6080 (eshell-invokify-arg, eshell-parse-pipeline, eshell-parse-command)
6081 (eshell-parse-subcommand-argument, eshell-parse-lisp-argument)
6082 (eshell-trap-errors, eshell-do-pipelines, eshell-do-eval)
6083 (eshell-do-pipelines-synchronously, eshell-eval-command):
6084 Use backquotes and prefer setq to set.
6085 (eshell-lookup-function, function-p-func, eshell-functionp): Remove.
6086 (eshell-macrop): Use functionp.
6087 (eshell-do-eval): Handle multiple expressions in `while' body.
6088
6089 2011-10-30 Chong Yidong <cyd@gnu.org>
6090
6091 * emulation/viper-cmd.el (viper-exec-change): Use push-mark
6092 instead of set-mark (Bug#9810).
6093
6094 2011-10-30 Chong Yidong <cyd@gnu.org>
6095
6096 * window.el (split-window-below, split-window-right): Rename from
6097 split-window-above-each-other and split-window-side-by-side
6098 respectively. All callers changed.
6099 (split-window-sensibly, split-window-sensibly): Use them.
6100 (split-window-keep-point): Doc fix.
6101
6102 * isearch.el: Add isearch-scroll property to split-window-below
6103 and split-window-right.
6104
6105 * follow.el (follow-mode):
6106 * vc/pcvs-util.el (cvs-pop-to-buffer-same-frame):
6107 * progmodes/ada-xref.el (ada-gdb-application):
6108 * emulation/vip.el (vip-buffer-in-two-windows):
6109 * image-dired.el (image-dired-dired-with-window-configuration):
6110 * dired-x.el (dired-do-find-marked-files):
6111 * dired.el (dired-pop-to-buffer):
6112 * bs.el (bs--show-with-configuration):
6113 * vc/emerge.el (emerge-setup-windows):
6114 * textmodes/two-column.el (2C-two-columns):
6115 * textmodes/reftex-toc.el (reftex-toc):
6116 * progmodes/gdb-mi.el (gdb-setup-windows):
6117 * progmodes/fortran.el (fortran-window-create):
6118 * net/newst-treeview.el (newsticker--treeview-window-init):
6119 * emulation/ws-mode.el (wordstar-C-o-map, wordstar-mode):
6120 * emulation/tpu-edt.el (tpu-gold-map):
6121 * emulation/crisp.el (crisp-mode-map):
6122 * calendar/calendar.el (calendar-basic-setup): Callers changed.
6123
6124 2011-10-29 Chong Yidong <cyd@gnu.org>
6125
6126 * subr.el (y-or-n-p): Add code for batch mode (Bug#9818).
6127
6128 * mouse.el (mouse-yank-primary): Push the mark (Bug#9894).
6129
6130 * textmodes/flyspell.el (flyspell-word): Fix char offset for
6131 forged Ispell output (Bug#7904).
6132
6133 * emacs-lisp/package.el (package-refresh-contents): Add autoload.
6134
6135 2011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
6136
6137 * doc-view.el: Avoid ugly errors about not finding nil.
6138 (doc-view-ghostscript-program, doc-view-dvipdfm-program)
6139 (doc-view-dvipdf-program, doc-view-unoconv-program)
6140 (doc-view-ps2pdf-program, doc-view-pdftotext-program):
6141 Avoid nil or absolute file name as default value.
6142 (doc-view-pdf->txt, doc-view-ps->pdf): Use executable-find here.
6143
6144 2011-10-28 Alan Mackenzie <acm@muc.de>
6145
6146 * progmodes/cc-defs.el (c-version): -> 5.32.2.
6147
6148 2011-10-28 Alan Mackenzie <acm@muc.de>
6149
6150 Amend the handling of c-beginning/end-of-defun in nested declaration
6151 scopes.
6152
6153 * progmodes/cc-vars.el (c-defun-tactic): Move here from
6154 cc-langs.el. Change it to a defcustom.
6155
6156 * progmodes/cc-langs.el (c-defun-tactic): Move this variable to
6157 cc-vars.el.
6158
6159 * progmodes/cc-engine.el (c-beginning-of-statement-1):
6160 Prevent "class foo : bar" being spuriously recognized as a label.
6161
6162 * progmodes/cc-cmds.el (c-narrow-to-most-enclosing-decl-block):
6163 Add parameter `inclusive' (to include enclosing braces in the region).
6164 (c-widen-to-enclosing-decl-scope): New function.
6165 (c-while-widening-to-decl-block): New macro.
6166 (c-beginning-of-defun, c-end-of-defun): Change algorithm to keep going
6167 outward for defun boundaries, and correspondingly change symbol
6168 `respect-enclosure' to `go-outward'.
6169 (c-declaration-limits): Change algorithm to report only the "innermost"
6170 defun's boundaries.
6171
6172 2011-10-28 Deniz Dogan <deniz@dogan.se>
6173
6174 * net/rcirc.el (rcirc-mode): Use hard newlines.
6175
6176 2011-10-28 Alan Mackenzie <acm@muc.de>
6177
6178 Amend to indent and fontify macros "which include their own semicolon"
6179 correctly, using the "virtual semicolon" mechanism.
6180
6181 * progmodes/cc-defs.el: Update "virtual semicolon" comments.
6182
6183 * progmodes/cc-engine.el (c-crosses-statement-barrier-p):
6184 Recode to scan one line at a time rather than having \n and \r
6185 explicitly in c-stmt-delim-chars (for some modes, e.g. AWK).
6186 (c-forward-label): Amend for virtual semicolons.
6187 (c-at-macro-vsemi-p, c-macro-vsemi-status-unknown-p): New functions.
6188
6189 * progmodes/cc-fonts.el (c-font-lock-declarations): Take account
6190 of the new C macros.
6191
6192 * progmodes/cc-langs.el (c-at-vsemi-p-fn):
6193 (c-vsemi-status-unknown-p-fn): Move to earlier in the file.
6194 (c-opt-cpp-symbol, c-line-comment-start-regexp): New language vars.
6195 (c-opt-cpp-macro-define): Make into a full language variable.
6196 (c-stmt-delim-chars, c-stmt-delim-chars-with-comma): Special value for
6197 AWK Mode (including \n, \r) removed, no longer needed.
6198
6199 * progmodes/cc-mode.el (c-mode, c++-mode, objc-mode):
6200 Invoke c-make-macro-with-semi-re.
6201
6202 * progmodes/cc-vars.el (c-macro-with-semi-re):
6203 (c-macro-names-with-semicolon): New variables.
6204 (c-make-macro-with-semi-re): New function.
6205
6206 2011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
6207
6208 * vc/log-edit.el: Fill empty field rather than adding new one.
6209 (log-edit-add-field): New function.
6210 (log-edit-insert-changelog): Use it.
6211
6212 2011-10-28 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
6213
6214 * mail/rmail.el (rmail-mode-map): Add M-C-f as in rmailsum (bug#9802).
6215
6216 2011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
6217
6218 * progmodes/gdb-mi.el: Warn the user when -i=mi is missing.
6219 (gdb--check-interpreter): New function.
6220 (gdb): Use it.
6221
6222 2011-10-27 Glenn Morris <rgm@gnu.org>
6223
6224 * emacs-lisp/cl-extra.el (most-positive-float, most-negative-float)
6225 (least-positive-float, least-negative-float)
6226 (least-positive-normalized-float, least-negative-normalized-float)
6227 (float-epsilon, float-negative-epsilon):
6228 Remove unnecessary declarations.
6229
6230 * emacs-lisp/cl-extra.el (cl-float-limits): Add doc string.
6231 * emacs-lisp/cl.el (most-positive-float, most-negative-float)
6232 (least-positive-float, least-negative-float)
6233 (least-positive-normalized-float, least-negative-normalized-float)
6234 (float-epsilon, float-negative-epsilon): Add doc-strings,
6235 based on those in cl.texi.
6236
6237 * files.el (set-visited-file-name): If the major-mode changed,
6238 reload the local variables. (Bug#9796)
6239
6240 2011-10-27 Chong Yidong <cyd@gnu.org>
6241
6242 * subr.el (change-major-mode-after-body-hook): New hook.
6243 (run-mode-hooks): Run it.
6244
6245 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
6246 Use change-major-mode-before-body-hook.
6247
6248 * simple.el (fundamental-mode):
6249 * emacs-lisp/derived.el (define-derived-mode): Revert 2010-04-28
6250 change introducing fundamental-mode-hook.
6251
6252 2011-10-26 Juanma Barranquero <lekktu@gmail.com>
6253
6254 * term/w32-win.el (w32-default-color-map): Declare obsolete (Bug#9785).
6255
6256 2011-10-26 Michael Albinus <michael.albinus@gmx.de>
6257
6258 * ido.el (ido-file-name-all-completions-1): Do not require
6259 tramp.el explicitly. (Bug#7583)
6260
6261 2011-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
6262
6263 * progmodes/octave-mod.el:
6264 * progmodes/octave-inf.el: Update maintainer.
6265
6266 2011-10-26 Chong Yidong <cyd@gnu.org>
6267
6268 * subr.el (with-wrapper-hook): Rewrite doc.
6269
6270 2011-10-25 Michael Albinus <michael.albinus@gmx.de>
6271
6272 * net/tramp-sh.el (tramp-sh-handle-file-directory-p): Return t for
6273 filenames "/method:foo:". (Bug#9793)
6274
6275 2011-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
6276
6277 * comint.el (comint-get-old-input-default): Fix use-prompt-regexp case
6278 (bug#9865).
6279
6280 2011-10-24 Glenn Morris <rgm@gnu.org>
6281
6282 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix. (Bug#9819)
6283
6284 2011-10-24 Michael Albinus <michael.albinus@gmx.de>
6285
6286 * notifications.el: Add the requirement of a running D-Bus session
6287 bus to the Commentary.
6288
6289 2011-10-24 Juri Linkov <juri@jurta.org>
6290
6291 * isearch.el (isearch-occur): Let-bind `search-spaces-regexp' to
6292 `search-whitespace-regexp' only when `isearch-regexp' is non-nil.
6293 (Bug#9364)
6294
6295 2011-10-24 Juri Linkov <juri@jurta.org>
6296
6297 * info.el (Info-following-node-name-re): Add newline to the list
6298 of allowed characters for leading space. (Bug#9824)
6299
6300 2011-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
6301
6302 * progmodes/octave-inf.el (inferior-octave-mode-map):
6303 Fix C-c C-h binding.
6304 * progmodes/octave-mod.el (octave-help): Remove.
6305
6306 2011-10-23 Michael Albinus <michael.albinus@gmx.de>
6307
6308 Sync with Tramp 2.2.3.
6309
6310 * net/tramp-cache.el (top): Pacify byte-compiler using
6311 `init-file-user' and `site-run-file'.
6312
6313 * net/trampver.el: Update release number.
6314
6315 2011-10-23 Chong Yidong <cyd@gnu.org>
6316
6317 * files.el (toggle-read-only): Remove obsolete comment about
6318 version control.
6319
6320 * vc/vc-hooks.el (vc-toggle-read-only): Make it an obsolete alias
6321 for toggle-read-only. Note that this hasn't called vc-next-action
6322 since 2008-05-02, though it wasn't documented at the time.
6323
6324 * vc/ediff-init.el (ediff-toggle-read-only-function):
6325 Use toggle-read-only.
6326
6327 2011-10-22 Alan Mackenzie <bug-cc-mode@gnu.org>
6328
6329 Fix bug #9560, sporadic wrong indentation; improve instrumentation
6330 of c-parse-state.
6331
6332 * progmodes/cc-engine.el (c-append-lower-brace-pair-to-state-cache):
6333 correct faulty logical expression.
6334 (c-parse-state-state, c-record-parse-state-state):
6335 (c-replay-parse-state-state): New defvar/defuns.
6336 (c-debug-parse-state): Use new functions.
6337
6338 2011-10-22 Martin Rudalics <rudalics@gmx.at>
6339
6340 * mouse.el (mouse-drag-line): Fix minibuffer resizing broken by
6341 last fix. Use window-in-direction correctly.
6342
6343 2011-10-21 Chong Yidong <cyd@gnu.org>
6344
6345 * progmodes/idlwave.el (idlwave-mode):
6346 * progmodes/vera-mode.el (vera-mode): No need to set
6347 require-final-newline; that's done in prog-mode.
6348 Suggested by Stefan Monnier.
6349
6350 2011-10-21 Martin Rudalics <rudalics@gmx.at>
6351
6352 * mouse.el (mouse-drag-window-above)
6353 (mouse-drag-move-window-bottom, mouse-drag-move-window-top)
6354 (mouse-drag-mode-line-1, mouse-drag-header-line)
6355 (mouse-drag-vertical-line-rightward-window): Remove.
6356 (mouse-drag-line): New function.
6357 (mouse-drag-mode-line, mouse-drag-header-line)
6358 (mouse-drag-vertical-line): Call mouse-drag-line.
6359 * window.el (window-at-side-p, windows-at-side): New functions.
6360
6361 2011-10-21 Ulrich Mueller <ulm@gentoo.org>
6362
6363 * tar-mode.el (tar-grind-file-mode):
6364 Fix handling of setuid/setgid, handle sticky bit. (Bug#9817)
6365
6366 2011-10-21 Chong Yidong <cyd@gnu.org>
6367
6368 * progmodes/idlwave.el (idlwave-mode):
6369 * progmodes/vera-mode.el (vera-mode):
6370 Use mode-require-final-newline.
6371
6372 2011-10-20 Glenn Morris <rgm@gnu.org>
6373
6374 * vc/vc.el (vc-next-action): Handle removed directories. (Bug#9781)
6375
6376 2011-10-20 Christoph Scholtes <cschol2112@googlemail.com>
6377
6378 * emulation/cua-base.el (cua-set-mark): Fix case of string.
6379
6380 2011-10-20 Chong Yidong <cyd@gnu.org>
6381
6382 * emulation/cua-base.el (cua-mode):
6383 * mail/footnote.el (footnote-mode):
6384 * mail/mailabbrev.el (mail-abbrevs-mode):
6385 * net/xesam.el (xesam-minor-mode):
6386 * progmodes/bug-reference.el (bug-reference-mode):
6387 * progmodes/cap-words.el (capitalized-words-mode):
6388 * progmodes/compile.el (compilation-minor-mode)
6389 (compilation-shell-minor-mode):
6390 * progmodes/gud.el (gud-tooltip-mode):
6391 * progmodes/hideif.el (hide-ifdef-mode):
6392 * progmodes/idlw-shell.el (idlwave-shell-electric-debug-mode):
6393 * progmodes/subword.el (subword-mode):
6394 * progmodes/vhdl-mode.el (vhdl-electric-mode, vhdl-stutter-mode):
6395 * progmodes/which-func.el (which-function-mode):
6396 * term/tvi970.el (tvi970-set-keypad-mode):
6397 * term/vt100.el (vt100-wide-mode):
6398 * textmodes/flyspell.el (flyspell-mode):
6399 * textmodes/ispell.el (ispell-minor-mode):
6400 * textmodes/nroff-mode.el (nroff-electric-mode):
6401 * textmodes/paragraphs.el (use-hard-newlines):
6402 * textmodes/refill.el (refill-mode):
6403 * textmodes/reftex.el (reftex-mode):
6404 * textmodes/rst.el (rst-minor-mode):
6405 * textmodes/sgml-mode.el (html-autoview-mode)
6406 (sgml-electric-tag-pair-mode):
6407 * textmodes/tex-mode.el (latex-electric-env-pair-mode):
6408 * vc/diff-mode.el (diff-auto-refine-mode, diff-minor-mode):
6409 * emulation/crisp.el (crisp-mode):
6410 * emacs-lisp/eldoc.el (eldoc-mode):
6411 * emacs-lisp/checkdoc.el (checkdoc-minor-mode): Doc fixes for new
6412 minor mode behavior.
6413
6414 2011-10-19 Juri Linkov <juri@jurta.org>
6415
6416 * descr-text.el (describe-char): Add #x2010 and #x2011 to
6417 the list of hard-coded chars with escape-glyph face.
6418
6419 2011-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
6420
6421 * vc/log-edit.el (log-edit-empty-buffer-p): Ignore empty headers.
6422
6423 2011-10-19 Michael Albinus <michael.albinus@gmx.de>
6424
6425 * net/tramp.el (tramp-connectable-p): Make a stronger check on a
6426 running process.
6427
6428 2011-10-19 Glenn Morris <rgm@gnu.org>
6429
6430 * vc/vc-bzr.el (vc-bzr-after-dir-status):
6431 Ignore ignored files. (Bug#9726)
6432
6433 2011-10-19 Chong Yidong <cyd@gnu.org>
6434
6435 Doc fix for minor modes, stating that an omitted argument enables
6436 the mode unconditionally when called from Lisp.
6437
6438 * abbrev.el (abbrev-mode):
6439 * allout.el (allout-mode):
6440 * autoinsert.el (auto-insert-mode):
6441 * autoarg.el (autoarg-mode, autoarg-kp-mode):
6442 * autorevert.el (auto-revert-mode, auto-revert-tail-mode)
6443 (global-auto-revert-mode):
6444 * battery.el (display-battery-mode):
6445 * composite.el (global-auto-composition-mode)
6446 (auto-composition-mode):
6447 * delsel.el (delete-selection-mode):
6448 * desktop.el (desktop-save-mode):
6449 * dired-x.el (dired-omit-mode):
6450 * dirtrack.el (dirtrack-mode):
6451 * doc-view.el (doc-view-minor-mode):
6452 * double.el (double-mode):
6453 * electric.el (electric-indent-mode, electric-pair-mode):
6454 * emacs-lock.el (emacs-lock-mode):
6455 * epa-hook.el (auto-encryption-mode):
6456 * follow.el (follow-mode):
6457 * font-core.el (font-lock-mode):
6458 * frame.el (auto-raise-mode, auto-lower-mode, blink-cursor-mode):
6459 * help.el (temp-buffer-resize-mode):
6460 * hilit-chg.el (highlight-changes-mode)
6461 (highlight-changes-visible-mode):
6462 * hi-lock.el (hi-lock-mode):
6463 * hl-line.el (hl-line-mode, global-hl-line-mode):
6464 * icomplete.el (icomplete-mode):
6465 * ido.el (ido-everywhere):
6466 * image-file.el (auto-image-file-mode):
6467 * image-mode.el (image-minor-mode):
6468 * iswitchb.el (iswitchb-mode):
6469 * jka-cmpr-hook.el (auto-compression-mode):
6470 * linum.el (linum-mode):
6471 * longlines.el (longlines-mode):
6472 * master.el (master-mode):
6473 * mb-depth.el (minibuffer-depth-indicate-mode):
6474 * menu-bar.el (menu-bar-mode):
6475 * minibuf-eldef.el (minibuffer-electric-default-mode):
6476 * mouse-sel.el (mouse-sel-mode):
6477 * msb.el (msb-mode):
6478 * mwheel.el (mouse-wheel-mode):
6479 * outline.el (outline-minor-mode):
6480 * paren.el (show-paren-mode):
6481 * recentf.el (recentf-mode):
6482 * reveal.el (reveal-mode, global-reveal-mode):
6483 * rfn-eshadow.el (file-name-shadow-mode):
6484 * ruler-mode.el (ruler-mode):
6485 * savehist.el (savehist-mode):
6486 * scroll-all.el (scroll-all-mode):
6487 * scroll-bar.el (scroll-bar-mode):
6488 * server.el (server-mode):
6489 * shell.el (shell-dirtrack-mode):
6490 * simple.el (auto-fill-mode, transient-mark-mode)
6491 (visual-line-mode, overwrite-mode, binary-overwrite-mode)
6492 (line-number-mode, column-number-mode, size-indication-mode)
6493 (auto-save-mode, normal-erase-is-backspace-mode, visible-mode):
6494 * strokes.el (strokes-mode):
6495 * time.el (display-time-mode):
6496 * t-mouse.el (gpm-mouse-mode):
6497 * tool-bar.el (tool-bar-mode):
6498 * tooltip.el (tooltip-mode):
6499 * type-break.el (type-break-mode-line-message-mode)
6500 (type-break-query-mode):
6501 * view.el (view-mode):
6502 * whitespace.el (whitespace-mode, whitespace-newline-mode)
6503 (global-whitespace-mode, global-whitespace-newline-mode):
6504 * xt-mouse.el (xterm-mouse-mode): Doc fix.
6505
6506 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
6507 Fix autogenerated docstring.
6508
6509 2011-10-19 Juri Linkov <juri@jurta.org>
6510
6511 * net/browse-url.el (browse-url-can-use-xdg-open): Support LXDE
6512 by checking environment variables "DESKTOP_SESSION" and
6513 "XDG_CURRENT_DESKTOP". (Bug#9779)
6514
6515 2011-10-19 Juri Linkov <juri@jurta.org>
6516
6517 * net/browse-url.el (browse-url-browser-function): Add "Chromium".
6518 (browse-url-chromium-program, browse-url-chromium-arguments):
6519 New defcustoms.
6520 (browse-url-default-browser): Check for `browse-url-chromium' and
6521 call `browse-url-chromium-program'.
6522 (browse-url-chromium): New command. (Bug#9779)
6523
6524 2011-10-18 Juanma Barranquero <lekktu@gmail.com>
6525
6526 * facemenu.el (list-colors-duplicates): On Windows, detect more
6527 duplicates by assuming that only colors matching "^System" are
6528 special "system colors". (Bug#9722)
6529
6530 2011-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
6531
6532 * vc/log-edit.el (log-edit): Add "Author:" header to encourage people
6533 to distinguish the author from the committer.
6534
6535 2011-10-18 Michael Albinus <michael.albinus@gmx.de>
6536
6537 * net/tramp.el (tramp-file-name-handler): Load Tramp packages silently.
6538
6539 2011-10-18 Jirka Kosek <jirka@kosek.cz> (tiny change)
6540
6541 * international/mule.el (sgml-html-meta-auto-coding-function):
6542 Add support for detecting encoding in HTML5 specified only as
6543 <meta charset="UTF-8">. Implementation just makes http-equiv and
6544 content-type parts from HTML4 encoding string optional. (Bug#9716)
6545
6546 2011-10-18 Glenn Morris <rgm@gnu.org>
6547
6548 * vc/vc.el (vc-initial-comment): Mark as obsolete. (Bug#9745)
6549
6550 2011-10-18 Chong Yidong <cyd@gnu.org>
6551
6552 * faces.el (cursor): Doc fix.
6553
6554 2011-10-17 Chong Yidong <cyd@gnu.org>
6555
6556 * font-lock.el (font-lock-maximum-size): Mark as obsolete.
6557
6558 2011-10-17 Ryan Barrett <emacs@ryanb.org> (tiny change)
6559
6560 * dirtrack.el (dirtrack): Support shell buffers with path
6561 prefixes, e.g. tramp-based remote shells. (Bug#9647)
6562
6563 2011-10-17 Teodor Zlatanov <tzz@lifelogs.com>
6564
6565 * json.el: Bump version to 1.3 and note change in History.
6566 (json-alist-p, json-plist-p): Rewrite to avoid recursion.
6567
6568 2011-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
6569
6570 * comint.el (comint-insert-input, comint-send-input)
6571 (comint-get-old-input-default, comint-backward-matching-input)
6572 (comint-next-prompt): Use nil instead of `input' for field property of
6573 past user input (bug#114).
6574
6575 * minibuffer.el (completion--replace): Inherit surrounding properties
6576 (bug#114).
6577 (minibuffer-complete-and-exit): Use it.
6578
6579 * comint.el (comint--table-subvert): Quote the all-completions output
6580 (bug#9160).
6581
6582 2011-10-17 Martin Rudalics <rudalics@gmx.at>
6583
6584 * ido.el (ido-default-buffer-method): Remove redundant :type entry.
6585
6586 * menu-bar.el (menu-bar-file-menu): Add entry for making new
6587 window on right of selected. (Bug#9350) Reword other window
6588 entries and separate them from frame entries.
6589
6590 2011-10-15 Glenn Morris <rgm@gnu.org>
6591
6592 * emacs-lisp/ert.el (ert--explain-equal-rec, ert-select-tests):
6593 Doc fixes.
6594
6595 2011-10-15 Chong Yidong <cyd@stupidchicken.com>
6596
6597 * net/network-stream.el (network-stream-open-starttls):
6598 Improve detection of failure due to lack of TLS support.
6599
6600 * mail/sendmail.el (sendmail-query-once): Tweak prompt message,
6601 putting the input text in front and in bold.
6602
6603 2011-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
6604
6605 * pcmpl-unix.el (pcomplete/ssh): SSH does allow ganging.
6606
6607 * mpc.el (mpc-songs-jump-to): Don't burp if the user clicks in an
6608 empty buffer.
6609
6610 * mouse.el (mouse-drag-mode-line-1): Modify the end-event we pushed on
6611 unread-command-events rather than pushing yet-another event.
6612
6613 2011-10-14 Eli Zaretskii <eliz@gnu.org>
6614
6615 * mail/sendmail.el (sendmail-query-once): Improve the wording of
6616 the explanation of the possible choices. Make the options passed
6617 to completing-read shorter.
6618
6619 2011-10-13 Agustín Martín Domingo <agustin.martin@hispalinux.es>
6620
6621 * textmodes/flyspell.el (flyspell-large-region): Make sure
6622 extended character mode is used if defined (Bug#1339).
6623
6624 2011-10-13 Eli Zaretskii <eliz@gnu.org>
6625
6626 * simple.el (what-cursor-position): Fix the display of the
6627 character info for LRE, LRO, RLE, and RLO characters by appending
6628 an invisible PDF.
6629
6630 2011-10-13 Stefan Monnier <monnier@iro.umontreal.ca>
6631
6632 * emacs-lisp/timer.el (with-timeout): Make sure we cancel the timer
6633 even in case of error; add debug spec; simplify data flow.
6634 (with-timeout-handler): Remove.
6635
6636 2011-10-12 Michael Albinus <michael.albinus@gmx.de>
6637
6638 Fix Bug#6019, Bug#9315.
6639
6640 * files.el (set-auto-mode): Call `file-name-sans-versions' for the
6641 complete `buffer-file-name', the local file name part could look
6642 remotely (for example on VMS).
6643
6644 * net/ange-ftp.el (ange-ftp-run-real-handler): Make it an alias of
6645 `tramp-run-real-handler'.
6646 (ange-ftp-fix-name-for-vms): Handle the case, where `name' is
6647 already quoted by '"'.
6648
6649 * net/tramp.el (tramp-rfn-eshadow-update-overlay): Ignore errors.
6650 Let `file-name-handler-alist' be nil, the local file name part
6651 could look remotely (for example on VMS).
6652
6653 2011-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
6654
6655 * textmodes/flyspell.el (flyspell-word): Move with-local-quit
6656 from here...
6657 (flyspell-post-command-hook): ...to here.
6658
6659 2011-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
6660
6661 * mail/sendmail.el (send-mail-function): Don't use sendmail-query-once
6662 if not needed.
6663 (sendmail-query-once): Remove OS dependencies. Make it a 3-way choice
6664 using completion. Protect against "slow" callers.
6665 Remove the "message hack".
6666
6667 2011-10-11 Juri Linkov <juri@jurta.org>
6668
6669 * isearch.el (isearch-lazy-highlight-word): New variable.
6670 (isearch-lazy-highlight-new-loop, isearch-lazy-highlight-search):
6671 Use it. (Bug#9727)
6672
6673 2011-10-11 Glenn Morris <rgm@gnu.org>
6674
6675 * progmodes/f90.el (f90-next-statement): Ignore preprocessor lines,
6676 like f90-previous-statement does.
6677
6678 2011-10-11 Thierry Volpiatto <thierry.volpiatto@gmail.com>
6679
6680 * eshell/eshell.el (eshell-command): History should be saved
6681 only in interactive use, to avoid error.
6682
6683 2011-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
6684
6685 * minibuffer.el (completion-file-name-table): Fix last change,
6686 i.e. ignore normal errors but not the other ones.
6687
6688 2011-10-10 Martin Rudalics <rudalics@gmx.at>
6689
6690 * window.el (special-display-buffer-names)
6691 (special-display-regexps): Remove some remnants of earlier
6692 changes from doc-strings.
6693 (quit-windows-on): New function.
6694
6695 * vc/vc.el (vc-revert, vc-rollback):
6696 * vc/vc-dispatcher.el (vc-finish-logentry): Call quit-windows-on
6697 instead of deleting windows. (Bug#4557) (Bug#5310) (Bug#5556)
6698 (Bug#6183) (Bug#7074) (Bug#7447)
6699
6700 2011-10-09 Martin Rudalics <rudalics@gmx.at>
6701
6702 * window.el (frame-auto-hide-function): Add version tag.
6703 (Bug#9699)
6704
6705 2011-10-09 Michael Albinus <michael.albinus@gmx.de>
6706
6707 * net/tramp.el (tramp-file-name-handler): Add 'debug to the error
6708 condition.
6709
6710 2011-10-09 Leo Liu <sdl.web@gmail.com>
6711
6712 * mail/smtpmail.el (smtpmail-send-data): Add a missing space.
6713 (Bug#9701)
6714
6715 2011-10-08 Glenn Morris <rgm@gnu.org>
6716
6717 * progmodes/f90.el (f90-calculate-indent): Give preprocessor lines
6718 before the first code statement zero indent. (Bug#9690)
6719
6720 2011-10-08 Chong Yidong <cyd@stupidchicken.com>
6721
6722 * simple.el (count-words-region): Always count in the region.
6723 Report the number of lines and characters too.
6724 (count-words): New command, which counts in the buffer if the
6725 region is inactive, as count-words-region used to.
6726 (count-words--message): New function. Handle plurals.
6727 (count-lines-region): Make it an alias for count-words-region.
6728
6729 * bindings.el (esc-map): Replace count-lines-region with
6730 count-words-region.
6731
6732 2011-10-08 Martin Rudalics <rudalics@gmx.at>
6733
6734 * window.el (window--delete): Delete dedicated frame
6735 unconditionally when argument KILL is non-nil. (Bug#9699)
6736 (switch-to-buffer): Fix doc-string typo.
6737
6738 2011-10-08 Thierry Volpiatto <thierry.volpiatto@gmail.com>
6739
6740 * eshell/eshell.el (eshell-command): Avoid using hooks.
6741
6742 2011-10-07 Chong Yidong <cyd@stupidchicken.com>
6743
6744 * bindings.el ([M-left],[M-right]): Bind to left-word and
6745 right-word respectively.
6746
6747 2011-10-07 Glenn Morris <rgm@gnu.org>
6748
6749 * cus-start.el (debug-on-quit): Fix custom type.
6750
6751 2011-10-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
6752
6753 * subr.el (define-key-after): Clarify that the function is not
6754 useful for non-menu keymaps.
6755
6756 * progmodes/gdb-mi.el (gdb): Fix typo in doc string.
6757
6758 2011-10-06 Thierry Volpiatto <thierry.volpiatto@gmail.com>
6759
6760 * eshell/eshell.el (eshell-command): Enable `eshell-mode' only
6761 in current minibuffer (Fix bug with recursive minibuffers).
6762
6763 2011-10-06 Chong Yidong <cyd@stupidchicken.com>
6764
6765 * progmodes/gdb-mi.el (gdb): Doc fix.
6766
6767 2011-10-05 Martin Rudalics <rudalics@gmx.at>
6768
6769 * window.el (frame-auto-hide-function): New option replacing
6770 frame-auto-delete. Suggested by Stefan Monnier.
6771 (window--delete): Call frame-auto-hide-function instead of
6772 investigating frame-auto-delete.
6773 (window-point-1, set-window-point-1): New functions.
6774 (window-in-direction, record-window-buffer, window-state-get-1)
6775 (display-buffer-record-window): Use window-point-1 instead of
6776 window-point.
6777 (set-window-buffer-start-and-point): Use set-window-point-1.
6778
6779 2011-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
6780
6781 * emacs-lisp/edebug.el: Heed checkdoc recommendations.
6782
6783 2011-10-05 Glenn Morris <rgm@gnu.org>
6784
6785 * progmodes/perl-mode.el (perl-electric-terminator): Doc fix.
6786 (perl-calculate-indent): Suppress scan errors. (Bug#2205)
6787
6788 2011-10-05 Leo Liu <sdl.web@gmail.com>
6789
6790 * subr.el (read-char-choice): Fix argument to buffer-live-p which
6791 works with buffer object.
6792
6793 2011-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
6794
6795 * mpc.el (mpc-tool-bar-map): Add labels.
6796
6797 2011-10-04 Glenn Morris <rgm@gnu.org>
6798
6799 * calendar/holidays.el (calendar-check-holidays): Doc fix.
6800
6801 2011-10-04 Martin Rudalics <rudalics@gmx.at>
6802
6803 * window.el (window--delete): New function.
6804 (frame-auto-delete): Resuscitate option.
6805 (bury-buffer, replace-buffer-in-windows)
6806 (quit-window): Rewrite using window--delete.
6807 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
6808 Pass display-buffer-mark-dedicated to window--display-buffer-2
6809 (Bug#9639).
6810
6811 2011-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
6812
6813 * pcmpl-unix.el (pcomplete/scp): Don't assume pcomplete-all-entries
6814 returns a list (bug#9554). Add remote file name completion.
6815 * comint.el (comint--table-subvert): Curry and get quote&unquote
6816 functions as arguments.
6817 (comint--complete-file-name-data): Adjust call accordingly.
6818 * pcomplete.el (pcomplete--table-subvert): Remove.
6819 (pcomplete-completions-at-point): Use comint--table-subvert instead.
6820
6821 * minibuffer.el (completion-table-case-fold): Use currying.
6822 (completion--styles-type, completion--cycling-threshold-type):
6823 New constants.
6824 (completion-styles, completion-category-overrides)
6825 (completion-cycle-threshold): Use them.
6826 * pcomplete.el (pcomplete-completions-at-point): Adjust call to
6827 completion-table-case-fold.
6828
6829 2011-10-03 Stephen Berman <stephen.berman@gmx.net>
6830
6831 * minibuffer.el (completion-category-overrides): Fix type of styles
6832 and add more user friendly tags (bug#9660).
6833
6834 2011-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
6835
6836 * international/mule-cmds.el: Fix abuses of apply-partially (bug#9661).
6837 (mule-input-method-string): New widget.
6838 (default-input-method, language-info-custom-alist): Use it.
6839
6840 2011-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
6841
6842 * pcomplete.el: Require comint.
6843 (pcomplete--common-suffix): Remove.
6844 (pcomplete--common-quoted-suffix): Use comint--common-suffix instead.
6845 (pcomplete--table-subvert): Sync with comint--table-subvert.
6846 (pcomplete--entries): Use comint-completion-file-name-table.
6847 * comint.el (comint-unquote-filename): Simplify.
6848 (comint-completion-file-name-table): New function (bug#9616).
6849 (comint--complete-file-name-data): Use it.
6850
6851 * pcmpl-gnu.el (pcmpl-gnu-with-file-buffer): New macro (bug#9643).
6852 (pcmpl-gnu-tar-buffer): Remove.
6853 (pcmpl-gnu-with-file-buffer): Use it to avoid leaving the tar's buffer
6854 around. Make sure pcomplete-suffix-list is only changed temporarily.
6855 Don't look inside the tar's file if it's too large.
6856
6857 2011-10-01 Chong Yidong <cyd@stupidchicken.com>
6858
6859 * cus-edit.el (custom-mode-map):
6860 * epa.el (epa-key-list-mode-map):
6861 * man.el (Man-mode-map):
6862 * startup.el (splash-screen-keymap):
6863 * simple.el (special-mode-map): Use scroll-up-command and
6864 scroll-down-command.
6865
6866 * progmodes/idlw-help.el (idlwave-help-mode-map):
6867 * progmodes/ebrowse.el (ebrowse-electric-position-mode-map):
6868 * net/newst-plainview.el (newsticker-mode-map):
6869 * emulation/ws-mode.el (wordstar-mode-map):
6870 * emulation/vi.el (vi-com-map):
6871 * calc/calc-graph.el (calc-graph-show-dumb):
6872 * term/sun.el (terminal-init-sun):
6873 * term/ns-win.el (global-map):
6874 * progmodes/grep.el (grep-mode-map):
6875 * progmodes/ebrowse.el (ebrowse-electric-list-mode-map):
6876 * mail/rmail.el (rmail-mode-map):
6877 * progmodes/cpp.el (cpp-edit-mode-map): Likewise.
6878
6879 * custom.el (custom-safe-themes, load-theme): Treat value of t for
6880 custom-safe-themes as special.
6881
6882 2011-10-01 Julien Danjou <julien@danjou.info>
6883
6884 * notifications.el (notifications-notify): Fix docstring.
6885
6886 2011-10-01 Per Starbäck <per@starback.se>
6887
6888 * pcmpl-gnu.el (pcomplete/tar): Fix tar-header-name call. (Bug#9643)
6889
6890 2011-09-30 Martin Rudalics <rudalics@gmx.at>
6891
6892 * startup.el (command-line-1): Fix last fix by inserting
6893 initial-scratch-message into *scratch* before displaying it.
6894 (Bug#9605) and (Bug#9636)
6895
6896 2011-09-29 Eli Zaretskii <eliz@gnu.org>
6897
6898 * simple.el (line-move): If auto-hscroll-mode is disabled and the
6899 window is hscrolled, move by logical lines. (Bug#9607)
6900 (line-move-visual): Update the doc string to the above effect.
6901
6902 2011-09-29 Martin Rudalics <rudalics@gmx.at>
6903
6904 * window.el (display-buffer-record-window): When WINDOW is the
6905 selected window use `point' instead of `window-point'. (Bug#9626)
6906
6907 * startup.el (command-line-1): Use insert-before-markers when
6908 inserting initial-scratch-message. (Bug#9605)
6909
6910 * help.el (help-window): Remove variable.
6911
6912 2011-09-29 Glenn Morris <rgm@gnu.org>
6913
6914 * pcmpl-cvs.el (pcomplete/cvs): Add "status" handler.
6915
6916 2011-09-29 Juanma Barranquero <lekktu@gmail.com>
6917
6918 * descr-text.el (describe-char-categories): Accept category
6919 descriptions more than one line long.
6920
6921 2011-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
6922
6923 * simple.el (delete-trailing-whitespace): Fix last change.
6924
6925 * progmodes/perl-mode.el (perl-syntax-propertize-function):
6926 Don't confuse "y => 3" as the beginning of a `y' operation.
6927
6928 * emacs-lisp/debug.el (debug-convert-byte-code): Don't assume the
6929 object has more than 4 slots (bug#9613).
6930
6931 2011-09-28 Juanma Barranquero <lekktu@gmail.com>
6932
6933 * subr.el (with-output-to-temp-buffer):
6934 * net/quickurl.el (quickurl, quickurl-browse-url):
6935 Fix typos in docstrings.
6936
6937 2011-09-27 Eli Zaretskii <eliz@gnu.org>
6938
6939 * minibuffer.el (completion-styles)
6940 (completion-category-overrides): Cross reference each other in doc
6941 strings.
6942
6943 2011-09-27 Glenn Morris <rgm@gnu.org>
6944
6945 * pcmpl-cvs.el (pcmpl-cvs-entries): Update for Emacs 22.1 changes
6946 to split-string. (Bug#9606)
6947
6948 2011-09-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
6949
6950 * mail/smtpmail.el (smtpmail-via-smtp): Fix STARTTLS detection
6951 (bug#9615).
6952
6953 2011-09-27 Chong Yidong <cyd@stupidchicken.com>
6954
6955 * emacs-lisp/package.el (list-packages): Fix echo area message.
6956
6957 2011-09-27 Leo Liu <sdl.web@gmail.com>
6958
6959 * ido.el (ido-read-internal): Accept cons cell HIST arg.
6960
6961 2011-09-25 Michael Albinus <michael.albinus@gmx.de>
6962
6963 * net/dbus.el (dbus-unregister-object): Don't release services for
6964 registered signals. (Bug#9581)
6965
6966 2011-09-25 Teodor Zlatanov <tzz@lifelogs.com>
6967
6968 * progmodes/cfengine.el (cfengine-auto-mode): Add convenience
6969 function that picks between cfengine 2 and 3 support
6970 automatically. Update docs accordingly.
6971
6972 2011-09-22 Kenichi Handa <handa@m17n.org>
6973
6974 * language/ind-util.el (indian-tml-base-table): Add TAMIL DIGIT
6975 ZERO.
6976 (indian-itrans-v5-table-for-tamil): New variable.
6977 (indian-tml-itrans-v5-hash): Use the above variable (Bug#9336).
6978
6979 2011-09-22 Ken Manheimer <ken.manheimer@gmail.com>
6980
6981 * allout.el (allout-this-command-hid-stuff): Buffer-local variable
6982 that's true if the current command involved collapsing of text.
6983 It's reset to false at the beginning of the next command.
6984 (allout-post-command-business): Move the cursor to the beginning
6985 of entry if the cursor is hidden and collapsing activity just
6986 happened.
6987
6988 2011-09-24 Chong Yidong <cyd@stupidchicken.com>
6989
6990 * mouse.el (mouse-drag-track): Set scroll-margin to 0 while
6991 tracking (Bug#9541).
6992
6993 2011-09-24 Ulf Jasper <ulf.jasper@web.de>
6994
6995 * net/newst-reader.el (newsticker-html-renderer)
6996 (newsticker-show-news): Automatically load html rendering package
6997 if newsticker-html-renderer is set. Fixes "Warning: defvar ignored
6998 because w3m-fill-column is let-bound" and the error "Symbol's value
6999 as variable is void: w3m-fill-column".
7000
7001 2011-09-24 Michael Albinus <michael.albinus@gmx.de>
7002
7003 * net/dbus.el (dbus-unregister-object): Remove match rule of signals.
7004 Release services only if they are defined. (Bug#9581)
7005
7006 2011-09-23 Richard Stallman <rms@gnu.org>
7007
7008 * textmodes/paragraphs.el (forward-sentence): For backwards case,
7009 distinguish start of paragraph from start of its text.
7010
7011 * mail/emacsbug.el (report-emacs-bug-query-existing-bugs): Autoload.
7012
7013 * mail/rmail.el (rmail-view-buffer-kill-buffer-hook): New function.
7014 (rmail-generate-viewer-buffer): Put that hook on view buffer.
7015 (rmail-mode-kill-buffer-hook): Override that hook, to kill view buffer.
7016
7017 2011-09-23 Andreas Schwab <schwab@linux-m68k.org>
7018
7019 * international/mule-diag.el (mule-diag): Insert a newline after
7020 each fontset description.
7021
7022 2011-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
7023
7024 * simple.el (delete-trailing-whitespace):
7025 Document last change; simplify.
7026
7027 2011-09-23 Peter J. Weisberg <pj@irregularexpressions.net>
7028
7029 * simple.el (delete-trailing-whitespace): Also delete
7030 extra newlines at the end of the buffer.
7031
7032 * textmodes/picture.el: Make motion commands obey shift-select-mode.
7033 (picture-newline): Use forward-line so as to ignore fields.
7034
7035 2011-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
7036
7037 * subr.el (with-wrapper-hook): Fix edebug spec.
7038
7039 2011-09-23 Lars Magne Ingebrigtsen <larsi@gnus.org>
7040
7041 * simple.el (kill-line): Note effect of `show-trailing-whitespace'
7042 (bug#4538).
7043
7044 2011-09-23 Michael Albinus <michael.albinus@gmx.de>
7045
7046 * net/tramp-sh.el (tramp-sh-handle-file-name-all-completions):
7047 Fix nasty bug using wrong cached values.
7048
7049 2011-09-23 Alan Mackenzie <acm@muc.de>
7050
7051 * progmodes/cc-defs.el (c-version): Increase to 5.31.9.
7052
7053 2011-09-23 Chong Yidong <cyd@stupidchicken.com>
7054
7055 * window.el (pop-to-buffer): Ensure right window is selected if we
7056 chose another frame.
7057
7058 2011-09-22 Eli Zaretskii <eliz@gnu.org>
7059
7060 * simple.el (what-cursor-position): Use get-char-property-change
7061 and next-single-char-property-change, to be able to show display
7062 properties that come from overlays as well as text properties.
7063
7064 2011-09-22 Chong Yidong <cyd@stupidchicken.com>
7065
7066 * window.el (pop-to-buffer-same-window): New (reinstated) fun.
7067
7068 * cmuscheme.el (run-scheme, switch-to-scheme):
7069 * cus-edit.el (customize-group, custom-buffer-create)
7070 (customize-browse):
7071 * info.el (info):
7072 * shell.el (shell):
7073 * mail/sendmail.el (mail):
7074 * progmodes/inf-lisp.el (inferior-lisp): Use it (Bug#9532).
7075
7076 2011-09-22 Richard Stallman <rms@gnu.org>
7077
7078 * textmodes/paragraphs.el (forward-sentence): When setting PAR-BEG,
7079 move back only to line beg, don't move back over blank lines.
7080
7081 2011-09-22 Michael Albinus <michael.albinus@gmx.de>
7082
7083 * files.el (copy-directory): Set directory attributes only in case
7084 they could be retrieved from the source directory. (Bug#9565)
7085
7086 2011-09-22 Dima Kogan <dkogan@secretsauce.net> (tiny change)
7087
7088 * progmodes/hideshow.el (hs-looking-at-block-start-p)
7089 (hs-find-block-beginning, hs-hide-level-recursive):
7090 Ignore strings as well as comments. (Bug#9502)
7091
7092 2011-09-22 Andrew Schein <andrew@andrewschein.com> (tiny change)
7093
7094 * progmodes/sql.el (sql-comint-postgres):
7095 Convert port number to a string. (Bug#9566)
7096
7097 2011-09-22 Martin Rudalics <rudalics@gmx.at>
7098
7099 * window.el (quit-window): Undedicate window when switching to
7100 previous buffer. Reported by Thierry Volpiatto
7101 <thierry.volpiatto@gmail.com>.
7102 (special-display-popup-frame): When popping up a new frame reset
7103 its previous buffers to nil. Simplify code.
7104
7105 2011-09-21 Michael Albinus <michael.albinus@gmx.de>
7106
7107 * net/tramp.el (tramp-handle-shell-command): Set process sentinel
7108 and process filter, as done also in `shell-command'.
7109
7110 2011-09-21 Martin Rudalics <rudalics@gmx.at>
7111
7112 * window.el (set-window-buffer-start-and-point):
7113 Call set-window-start with NOFORCE argument t.
7114 Suggested by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
7115 (quit-window): Reword doc-string. Handle new format of
7116 quit-restore parameter. Don't delete window if it has a
7117 previous buffer we can show instead of the present one.
7118 (display-buffer-record-window): Rewrite using a new format for
7119 the quit-restore window parameter
7120 (special-display-popup-frame, display-buffer-same-window)
7121 (display-buffer-reuse-window, display-buffer-pop-up-frame)
7122 (display-buffer-pop-up-window, display-buffer-use-some-window):
7123 Adapt symbol passed to display-buffer-record-window.
7124 * help.el (help-window-setup): Handle new format of quit-restore
7125 parameter.
7126
7127 2011-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
7128
7129 * faces.el (face-list): Fix docstring (bug#9564).
7130
7131 * window.el (display-buffer--action-function-custom-type):
7132 Don't include internal functions in the Custom interface.
7133
7134 2011-09-20 Juri Linkov <juri@jurta.org>
7135
7136 * info.el (Info-history-skip-intermediate-nodes): New defcustom.
7137 (Info-forward-node, Info-backward-node, Info-next-preorder)
7138 (Info-last-preorder): Use it. (Bug#9528)
7139
7140 2011-09-20 Juri Linkov <juri@jurta.org>
7141
7142 * info.el (Info-last-preorder): Visit last menu item only when
7143 `Info-scroll-prefer-subnodes' is non-nil (third test-case of bug#9528).
7144
7145 2011-09-20 Julien Danjou <julien@danjou.info>
7146
7147 * password-cache.el (password-cache-remove): Remove entries even if the
7148 value is nil, so that password with a nil value (negative caching) is
7149 possible to invalidate.
7150
7151 2011-09-20 Lawrence Mitchell <wence@gmx.li>
7152
7153 * progmodes/f90.el (f90-break-line): If breaking inside comment delete
7154 all whitespace around breakpoint. (Bug#9553)
7155 (f90-find-breakpoint): Only break at whitespace inside a comment.
7156
7157 2011-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
7158
7159 * minibuffer.el (completion-file-name-table): Keep track of errors.
7160 (completion-table-with-predicate): Handle the case where pred1 is nil.
7161 * pcomplete.el (pcomplete-completions-at-point): Simplify.
7162
7163 2011-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
7164
7165 * emacs-lisp/debug.el (debugger-args): Give it a docstring.
7166 (debugger-return-value): Signal an error if the debugging context does
7167 not await any return value.
7168
7169 * ps-mule.el (ps-mule-plot-string): Don't inf-loop (bug#5108).
7170 * image-mode.el (image-toggle-display-text)
7171 (image-toggle-display-image): Stay away from evil `intangible'.
7172
7173 2011-09-19 Leo Liu <sdl.web@gmail.com>
7174
7175 * replace.el (occur-revert-arguments): Make it permanent-local.
7176 (occur-mode): Don't call font-lock-defontify.
7177
7178 2011-09-19 Chong Yidong <cyd@stupidchicken.com>
7179
7180 * net/ldap.el (ldap-search-internal): Don't push empty search
7181 result (Bug#9508).
7182
7183 2011-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
7184
7185 * whitespace.el (whitespace-newline-mode): Disable it right (bug#9550).
7186
7187 2011-09-19 Michael Albinus <michael.albinus@gmx.de>
7188
7189 * net/tramp-sh.el (tramp-inline-compress-commands): Add "xz".
7190 Suggested by Liam Stitt <stittl@cuug.ab.ca>.
7191
7192 2011-09-18 Juri Linkov <juri@jurta.org>
7193
7194 * buff-menu.el (Buffer-menu-mode-map):
7195 * dired.el (dired-mode-map):
7196 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map)
7197 (lisp-interaction-mode-map):
7198 * emacs-lisp/package.el (package-menu-mode-map):
7199 * epa.el (epa-key-list-mode-map):
7200 * menu-bar.el (menu-bar-showhide-tool-bar-menu)
7201 (menu-bar-options-menu):
7202 * outline.el (outline-mode-menu-bar-map):
7203 * vc/vc-bzr.el (vc-bzr-shelve-menu-map, vc-bzr-extra-menu-map):
7204 * vc/vc-dir.el (vc-dir-menu-map):
7205 * vc/vc-git.el (vc-git-stash-menu-map, vc-git-extra-menu-map):
7206 Capitalize non-function content words in menu item strings.
7207
7208 * dired.el (dired-mode-map): Add menu item for
7209 `image-dired-dired-toggle-marked-thumbs'.
7210
7211 2011-09-18 Juri Linkov <juri@jurta.org>
7212
7213 * isearch.el (isearch-edit-string): Bind `isearch-new-case-fold'
7214 to `isearch-case-fold-search' and restore its original value
7215 after the `isearch-mode' call.
7216
7217 2011-09-18 Juri Linkov <juri@jurta.org>
7218
7219 * progmodes/grep.el (grep-process-setup): Don't check code for 1
7220 because `zgrep' returns 1 for successful matches (bug#9226).
7221
7222 2011-09-18 Juri Linkov <juri@jurta.org>
7223
7224 * info.el (Info-extract-menu-node-name): Check the second match
7225 for empty string (second test-case of bug#9528).
7226 (Info-last-preorder): Let-bind `Info-history' to nil to not add
7227 intermediate nodes to the history (first test-case of bug#9528).
7228
7229 2011-09-18 Juri Linkov <juri@jurta.org>
7230
7231 * info.el (Info-mode-syntax-table): New variable.
7232 (Info-mode): Set `:syntax-table' to `Info-mode-syntax-table' (bug#3312).
7233
7234 2011-09-18 Juri Linkov <juri@jurta.org>
7235
7236 * info.el (Info-file-supports-index-cookies):
7237 Increment line-beginning-position's arg from 3 to 4 because makeinfo
7238 outputs one more line for long file names (bug#4142).
7239
7240 2011-09-18 Chong Yidong <cyd@stupidchicken.com>
7241
7242 * newcomment.el (comment-normalize-vars): If prompting for
7243 comment-start, set comment-start-skip too (Bug#8424).
7244
7245 2011-09-18 Johan Bockgård <bojohan@gnu.org>
7246
7247 * icomplete.el: Fix previous fix of Bug#5849.
7248 (icomplete-mode): Don't set completion-show-inline-help.
7249 (icomplete-minibuffer-setup): Set completion-show-inline-help
7250 locally during icompletion.
7251
7252 2011-09-18 Chong Yidong <cyd@stupidchicken.com>
7253
7254 * woman.el (woman2-process-escapes): Don't delete unrecognized
7255 escapes (Bug#7843).
7256
7257 * files.el (inhibit-first-line-modes-regexps): Add image files.
7258 (hack-local-variables-prop-line): Return nil for malformed
7259 prop-lines (Bug#9044).
7260
7261 2011-09-18 Michael Albinus <michael.albinus@gmx.de>
7262
7263 * net/tramp.el (top): Don't require 'shell.
7264 (tramp-methods): Fix docstring.
7265 (tramp-get-remote-tmpdir): New defun, moved from tramp-sh.el.
7266 Return complete remote file name. Handle "smb" case.
7267 Use `tramp-tmpdir', if defined for the respective method.
7268 (tramp-make-tramp-temp-file): Adapt call of `tramp-get-remote-tmpdir'.
7269
7270 * net/tramp-compat.el (top): Require 'shell.
7271
7272 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band)
7273 (tramp-maybe-open-connection): Use `tramp-file-name-real-host' for
7274 `tramp-current-host'.
7275 (tramp-get-remote-tmpdir): Remove.
7276
7277 * net/tramp-smb.el (tramp-methods): Add `tramp-remote-shell' and
7278 `tramp-tmpdir' entries.
7279 (tramp-smb-errors): Add "NT_STATUS_IMAGE_ALREADY_LOADED".
7280 (tramp-smb-handle-file-attributes): Ignore errors.
7281 (tramp-smb-wait-for-output): Check also for process end.
7282
7283 2011-09-18 Lars Magne Ingebrigtsen <larsi@gnus.org>
7284
7285 * mail/smtpmail.el (smtpmail-via-smtp): Ignore errors that arise
7286 when sending QUIT (bug#9312).
7287
7288 2011-09-17 Chong Yidong <cyd@stupidchicken.com>
7289
7290 * replace.el (occur-mode-map): Rebind occur-edit-mode to "e" (Bug#8463).
7291 (occur-edit-mode-map): Bind C-c C-c to occur-cease-edit and C-o to
7292 occur-mode-display-occurrence.
7293 (occur-edit-mode): Add usage message.
7294 (occur-cease-edit): New command.
7295 (occur-after-change-function): Use text properties to find the
7296 position of the prefix text.
7297 (occur-engine): Set stickiness of prefix text properties.
7298
7299 2011-09-17 Glenn Morris <rgm@gnu.org>
7300
7301 * progmodes/etags.el (complete-tag):
7302 Fix call to completion-in-region. (Bug#9526)
7303
7304 2011-09-17 Juri Linkov <juri@jurta.org>
7305
7306 * textmodes/ispell.el (ispell-word): Add to the error message
7307 the word, ispell program name and current dictionary (bug#9121).
7308 (ispell-tex-arg-end): Capitalize "error" in the error message.
7309
7310 2011-09-17 Andreas Schwab <schwab@linux-m68k.org>
7311
7312 * emacs-lisp/bytecomp.el (byte-compile-lapcode): Fix overflow
7313 check. (Bug#4251)
7314
7315 2011-09-17 Juri Linkov <juri@jurta.org>
7316
7317 * window.el (window-safe-min-height, window-safe-min-width):
7318 Fix typos (followup to bug#9522).
7319
7320 2011-09-17 Sven Joachim <svenjoac@gmx.de>
7321
7322 * window.el (window-min-width, window-state-put): Fix typos (bug#9522).
7323
7324 2011-09-16 Eli Zaretskii <eliz@gnu.org>
7325
7326 * simple.el (line-move): If goal-column is set, move by logical
7327 lines, not by display lines. (Bug#971)
7328 (next-line, previous-line, goal-column, line-move-visual): Doc fix
7329 to reflect the above change.
7330
7331 2011-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
7332
7333 * image.el (imagemagick-register-types): Use regexp-opt.
7334
7335 2011-09-15 Chong Yidong <cyd@stupidchicken.com>
7336
7337 * window.el (display-buffer-base-action): Rename from
7338 display-buffer-default-action. Make default value empty.
7339 (display-buffer-overriding-action): Convert to defvar.
7340 (display-buffer-fallback-action): New var.
7341
7342 2011-09-15 Chong Yidong <cyd@stupidchicken.com>
7343
7344 * emacs-lisp/package.el (package-alist): Fix risky-local-variable
7345 declaration.
7346 (package--add-to-archive-contents): If there is a duplicate entry
7347 with an older version, remove it.
7348 (package-menu-mark-delete, package-menu-mark-install)
7349 (package-menu-mark-unmark): Make unused args optional.
7350 (package-menu-mark-obsolete-for-deletion):
7351 Use package-menu-get-status instead of a regexp search.
7352 (package-menu-get-status): Use tabulated-list-entry.
7353 (package-menu-mark-upgrades): New command.
7354 (package-menu-mode-map): Bind it to U. Add it to menu bar.
7355 (package-menu-execute): Do installation before deletion.
7356 (package-menu-refresh, package-menu-execute): Use derived-mode-p
7357 instead of checking major-mode.
7358 (package-menu--find-upgrades): New function.
7359
7360 2011-09-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
7361
7362 * mail/smtpmail.el (smtpmail-send-command): Don't include AUTH
7363 passwords in the log buffer.
7364 (smtpmail-process-filter): Update the process marker so that the
7365 "broken by peer" status message is inserted in the right place.
7366
7367 2011-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
7368
7369 * textmodes/bibtex.el (bibtex-complete-string-cleanup)
7370 (bibtex-complete-crossref-cleanup): Adjust to accommodate needs of
7371 bibtex-completion-at-point-function.
7372 (bibtex-completion-at-point-function): Use them.
7373
7374 * newcomment.el (comment-add, comment-valid-prefix-p): Docfix.
7375
7376 * mpc.el (mpc-constraints-tag-lookup): New function.
7377 (mpc-constraints-restore): Use it to make jumping to "album=Foo" apply
7378 also to browser "album|playlist".
7379
7380 2011-09-14 Juri Linkov <juri@jurta.org>
7381
7382 * isearch.el (isearch-fail-pos): Add new arg `msg'. Doc fix.
7383 (isearch-edit-string): Use length of `isearch-string' when
7384 `isearch-fail-pos' returns nil.
7385 (isearch-message): Remove duplicate code and call
7386 `isearch-fail-pos' with arg `t'.
7387
7388 2011-09-14 Chong Yidong <cyd@stupidchicken.com>
7389
7390 * replace.el (occur-mode-goto-occurrence): Don't force using other
7391 window (Bug#9499).
7392
7393 * dired-aux.el (dired-do-chmod): Don't provide initial input.
7394
7395 2011-09-14 Martin Rudalics <rudalics@gmx.at>
7396
7397 * window.el (display-buffer-window): Remove.
7398 (display-buffer-record-window): Use help-setup window parameter
7399 instead of variable display-buffer-window.
7400 (display-buffer-function, special-display-buffer-names)
7401 (special-display-function): Mention help-setup parameter instead
7402 of display-buffer-window in doc-string.
7403 * help.el (help-window-setup): New argument help-window.
7404 Use help-window-setup parameter instead of display-buffer-window.
7405 Reword some messages.
7406 (with-help-window): Pass window used for displaying the buffer
7407 to help-window-setup. Don't set display-buffer-window.
7408
7409 2011-09-13 Glenn Morris <rgm@gnu.org>
7410
7411 * emacs-lisp/debug.el (debugger-make-xrefs):
7412 Preserve point. (Bug#9462)
7413
7414 2011-09-13 Chong Yidong <cyd@stupidchicken.com>
7415
7416 * window.el (window-deletable-p): Use next-frame.
7417
7418 2011-09-13 Martin Rudalics <rudalics@gmx.at>
7419
7420 * window.el (window-auto-delete): Remove.
7421 (window-deletable-p): Remove argument FORCE. Don't deal with
7422 dedication and previous buffers.
7423 (switch-to-prev-buffer): Don't delete window.
7424 (delete-windows-on): Delete a window's frame if and only if the
7425 window is dedicated.
7426 (replace-buffer-in-windows): Delete buffer's window or frame if
7427 and only if window is dedicated.
7428 (quit-window): Handle quit-restore as before last change.
7429 (bury-buffer): Delete window only if window-deletable-p returns t.
7430
7431 2011-09-13 Chong Yidong <cyd@stupidchicken.com>
7432
7433 * window.el (window-deletable-p): Never delete the last frame on a
7434 given terminal.
7435
7436 2011-09-13 Glenn Morris <rgm@gnu.org>
7437
7438 * help.el (describe-key-briefly): Copy previous standard-output change.
7439
7440 2011-09-13 PJ Weisberg <pj@irregularexpressions.net>
7441
7442 * help.el (where-is): Respect non-standard standard-output. (Bug#9030)
7443
7444 2011-09-13 Glenn Morris <rgm@gnu.org>
7445
7446 * emacs-lisp/lisp-mode.el (lisp-indent-function):
7447 * progmodes/scheme.el (scheme-indent-function): Doc fixes.
7448
7449 2011-09-12 Chong Yidong <cyd@stupidchicken.com>
7450
7451 * dired-aux.el (dired-mark-read-string): Don't return default
7452 value on empty input (Bug#9361).
7453 (dired-do-chxxx): Treat empty input for "touch" as no -t option.
7454 Omit initial minibuffer contents.
7455 (dired-do-chmod): Signal an error on empty input.
7456 (dired-mark-read-string): Don't return default on empty input.
7457
7458 * files.el (file-modes-symbolic-to-number): Doc fix.
7459
7460 2011-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
7461
7462 * international/mule-cmds.el (ucs-completions): Remove.
7463 (read-char-by-name): Use complete-with-action instead; add metadata.
7464
7465 2011-09-11 Chong Yidong <cyd@stupidchicken.com>
7466
7467 * window.el (display-buffer--action-function-custom-type)
7468 (display-buffer--action-custom-type): New vars.
7469 (display-buffer-alist, display-buffer-default-action)
7470 (display-buffer-overriding-action): Add defcustom types.
7471
7472 * frame.el (delete-other-frames): Doc fix (Bug#276).
7473
7474 2011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
7475
7476 * play/doctor.el (make-doctor-variables): Define `doctor-sent'.
7477
7478 2011-09-11 Chong Yidong <cyd@stupidchicken.com>
7479
7480 Change modes that used same-window-* vars to use switch-to-buffer.
7481
7482 * progmodes/gdb-mi.el (gdb-restore-windows, gdb-setup-windows):
7483 Use switch-to-buffer.
7484
7485 * cus-edit.el (customize-group, custom-buffer-create)
7486 (customize-browse, custom-buffer-create-other-window):
7487 Use switch-to-buffer or switch-to-buffer-other-window.
7488
7489 * info.el (info, Info-find-node, Info-revert-find-node, Info-next)
7490 (Info-prev, Info-up, Info-speedbar-goto-node)
7491 (info-display-manual): Use switch-to-buffer.
7492 (Info-speedbar-goto-node): Use switch-to-buffer-other-frame.
7493
7494 * mail/sendmail.el (mail): Use switch-to-buffer.
7495 (mail-recover): Use switch-to-buffer-other-window.
7496
7497 * cmuscheme.el (run-scheme, switch-to-scheme):
7498 * ielm.el (ielm):
7499 * shell.el (shell):
7500 * net/rlogin.el (rlogin):
7501 * net/telnet.el (telnet, rsh):
7502 * progmodes/inf-lisp.el (inferior-lisp): Use switch-to-buffer.
7503
7504 2011-09-11 Andreas Schwab <schwab@linux-m68k.org>
7505
7506 * dired.el (dired-sort-toggle-or-edit): Revert last changes.
7507
7508 2011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
7509
7510 * dired.el (dired-sort-toggle-or-edit): -o doesn't exist on *BSD,
7511 so don't mention it (bug#9301).
7512 (dired-sort-toggle-or-edit): Clarify string further.
7513
7514 * faces.el (face-spec-set-match-display): Make `(type graphic)'
7515 match `x', `w32' and `ns', like the manual says (bug#9029).
7516
7517 * subr.el (eval-after-load): Doc string clarification (bug#9125).
7518 (process-kill-buffer-query-function): Mention the buffer name in
7519 the query.
7520
7521 * image-mode.el (image-next-line): The line parameter is mandatory
7522 (bug#9258).
7523
7524 * dired.el (dired-sort-toggle-or-edit): Mention -o and -g, too,
7525 which can be useful (bug#9301).
7526
7527 * textmodes/flyspell.el: Remove obsolete comment (bug#9368).
7528
7529 * subr.el (match-string): Mention that the current buffer should
7530 be the same as the search was done in (bug#9282).
7531
7532 * facemenu.el: Disable the remove-* commands if the mark isn't
7533 active (bug#9162).
7534
7535 2011-09-10 Chong Yidong <cyd@stupidchicken.com>
7536
7537 * buff-menu.el (Buffer-menu-switch-other-window): Use second arg
7538 of display-buffer.
7539 (Buffer-menu-2-window): Use switch-to-buffer-other-window.
7540
7541 * replace.el (occur-mode-goto-occurrence)
7542 (occur-mode-display-occurrence) Use second arg of pop-to-buffer
7543 and display-buffer.
7544
7545 * mail/reporter.el (reporter-submit-bug-report): Use second arg of
7546 display-buffer.
7547
7548 * mail/sendmail.el (sendmail-user-agent-compose): Don't bind the
7549 special-display and same-window variables.
7550 (mail-other-window): Use switch-to-buffer-other-window.
7551 (mail-other-frame): USe switch-to-buffer-other-frame.
7552
7553 * progmodes/gdb-mi.el (gdb-frame-gdb-buffer):
7554 Use display-buffer-other-frame.
7555 (gdb-display-gdb-buffer): Use pop-to-buffer.
7556
7557 * progmodes/gud.el (gud-goto-info): Use info-other-window.
7558
7559 * progmodes/python.el: Don't set same-window-buffer-names.
7560
7561 * textmodes/bibtex.el (bibtex-search-entry): Use switch-to-buffer.
7562
7563 * window.el (display-buffer-alist): Add *Python*.
7564
7565 2011-09-10 Chong Yidong <cyd@stupidchicken.com>
7566
7567 * window.el (display-buffer-alist): Add entry for buffers
7568 previously handled same-window-*.
7569 (display-buffer-alist, display-buffer-default-action)
7570 (display-buffer-overriding-action): Mark as risky.
7571 (display-buffer-alist): Document action function changes.
7572 (display-buffer--same-window-action)
7573 (display-buffer--other-frame-action): New variables.
7574 (switch-to-buffer, display-buffer-other-frame): Use them.
7575 (display-buffer): Rename reuse-frame entry to reusable-frames.
7576 (display-buffer-reuse-selected-window): Function deleted.
7577 (display-buffer-reuse-window): Handle reusable-frames alist entry.
7578 If it's omitted, check pop-up-frames/display-buffer-reuse-frames.
7579 (display-buffer-special): New function.
7580 (display-buffer--maybe-pop-up-frame-or-window): Rename from
7581 display-buffer-reuse-or-pop-window. Split off special-display
7582 part into display-buffer-special.
7583 (display-buffer-use-some-window): Don't perform any special
7584 pop-up-frames handling.
7585 (pop-to-buffer): Use window-normalize-buffer-to-switch-to.
7586 (display-buffer--maybe-same-window): Rename from
7587 display-buffer-maybe-same-window.
7588
7589 * info.el: Don't set same-window-regexps.
7590 (info-setup): New function.
7591 (info-other-window, info): Call it.
7592
7593 * cus-edit.el: Don't set same-window-regexps.
7594 (customize-group): New argument.
7595 (customize-group-other-window): Use it.
7596 (customize-face, customize-face-other-window): Likewise.
7597 (custom-buffer-create-other-window): Use pop-to-buffer directly.
7598
7599 * net/rlogin.el:
7600 * net/telnet.el:
7601 * progmodes/gud.el: Don't set same-window-regexps.
7602
7603 * cmuscheme.el:
7604 * ielm.el:
7605 * shell.el:
7606 * mail/sendmail.el:
7607 * progmodes/inf-lisp.el: Don't set same-window-buffer-names.
7608
7609 2011-09-10 Juri Linkov <juri@jurta.org>
7610
7611 * isearch.el (isearch-edit-string): Remove obsolete mention of
7612 `C-w' (`isearch-yank-word-or-char') from docstring.
7613 (isearch-query-replace): Fix typo in docstring (bug#9466).
7614
7615 2011-09-10 Juri Linkov <juri@jurta.org>
7616
7617 * paren.el (show-paren-function): Don't show escaped parens.
7618 Let-bind `unescaped' to `t' when paren is not escaped. (Bug#9461)
7619
7620 2011-09-10 Eli Zaretskii <eliz@gnu.org>
7621
7622 * mail/sendmail.el (mml-to-mime, mml-attach-file)
7623 (mm-default-file-encoding): Remove autoload forms, they are
7624 replaced with autoload cookies in mml.el and mm-encode.el.
7625 (mail-add-attachment): New command.
7626 (mail-mode-map): Add a menu-bar item for mail-add-attachment.
7627 (mail-mode): Mention mail-insert-file and mail-add-attachment in
7628 the doc string.
7629 (mml-to-mime, mml-attach-file, mm-default-file-encoding): Declare.
7630
7631 2011-09-10 Reuben Thomas <rrt@sc3d.org>
7632
7633 * simple.el (count-words-region): Use buffer if there's no region
7634 (bug#9429).
7635
7636 2011-09-09 Juri Linkov <juri@jurta.org>
7637
7638 * wdired.el (wdired-change-to-wdired-mode): Set buffer-local
7639 `isearch-filter-predicate' to `wdired-isearch-filter-read-only'.
7640 (wdired-isearch-filter-read-only): New function. (Bug#6362)
7641
7642 2011-09-09 Alan Mackenzie <acm@muc.de>
7643
7644 * progmodes/cc-mode.el (awk-mode): Prevent `define-derived-mode'
7645 spuriously generating `awk-mode-syntax-table'. (Bug #9448).
7646
7647 2011-09-09 Eli Zaretskii <eliz@gnu.org>
7648
7649 Fix for Savannah bug#9392.
7650 * simple.el (mail-encode-mml): New defvar.
7651
7652 * mail/rmail.el (mail-encode-mml): Add a defvar.
7653 (rmail-enable-mime-composing): Default to t.
7654 (rmail-forward): Use MIME method of forwarding only if both
7655 rmail-enable-mime-composing and rmail-enable-mime are non-nil.
7656 Set mail-encode-mml non-nil if the MIME method was used.
7657
7658 * mail/sendmail.el (mml-to-mime): Add autoload form.
7659 (mail-encode-mml): Add a defvar.
7660 (mail-mode): Make mail-encode-mml buffer-local and initialize it
7661 to nil.
7662 (mail-send): If mail-encode-mml is non-nil, run the outgoing
7663 message through mml-to-mime, and reset mail-encode-mml to nil.
7664
7665 2011-09-09 Glenn Morris <rgm@gnu.org>
7666
7667 * woman.el (woman-if-body): When processing an .el block,
7668 do not delete the next .el block as well. (Bug#9447)
7669 (woman-special-characters): Add oq, cq, and hy characters.
7670
7671 2011-09-08 Martin Rudalics <rudalics@gmx.at>
7672
7673 * window.el (window-deletable-p): Make sure window is live before
7674 invoking window-prev-buffers.
7675
7676 2011-09-08 Leo Liu <sdl.web@gmail.com>
7677
7678 * net/rcirc.el (rcirc-cmd-invite): New rcirc command. (Bug#9453)
7679
7680 2011-09-08 Juri Linkov <juri@jurta.org>
7681
7682 * progmodes/compile.el (compilation-environment): Make it
7683 a defcustom (bug#8340).
7684
7685 2011-09-08 Martin Rudalics <rudalics@gmx.at>
7686
7687 * window.el (frame-auto-delete): Rename to window-auto-delete.
7688 Make it control auto-deletion of windows and/or frames.
7689 (window-deletable-p): New argument FORCE. Rewrite conditions
7690 for deleting window/frame. (Bug#9419)
7691 (switch-to-prev-buffer, replace-buffer-in-windows, quit-window):
7692 Rewrite handling of case when window/frame can be deleted.
7693 (delete-windows-on): Call window-deletable-p with new FORCE
7694 argument t. (Bug#9456)
7695
7696 2011-09-07 Chong Yidong <cyd@stupidchicken.com>
7697
7698 * help-mode.el (help-mode): Restore autoload.
7699
7700 2011-09-07 Juri Linkov <juri@jurta.org>
7701
7702 * progmodes/compile.el (compilation-start): Let-bind `thisenv' to
7703 `compilation-environment'. Set buffer-local
7704 `compilation-environment' to `thisenv' later after (funcall mode).
7705 (Bug#8340)
7706
7707 * vc/vc-git.el (vc-git-grep): Remove --no-color. (Bug#9408)
7708 (vc-git-grep): Prepend "PAGER=" to `compilation-environment'
7709 instead of replacing its value. (Bug#8340)
7710
7711 2011-09-07 Juri Linkov <juri@jurta.org>
7712
7713 * progmodes/grep.el (grep-regexp-alist): Calculate column positions
7714 based on text properties put by `grep-filter' instead of matching
7715 escape sequences.
7716 (grep-mode): Set buffer-local `compilation-error-screen-columns'
7717 to the value of `grep-error-screen-columns' (bug#9438).
7718
7719 2011-09-07 Juri Linkov <juri@jurta.org>
7720
7721 * simple.el (next-error-highlight, next-error-highlight-no-select):
7722 Doc fix (bug#9432).
7723
7724 2011-09-07 OKAZAKI Tetsurou <okazaki.tetsurou@gmail.com> (tiny change)
7725
7726 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
7727 Check for null c-opt-block-decls-with-vars-key. (Bug#9443)
7728
7729 2011-09-07 Leo Liu <sdl.web@gmail.com>
7730
7731 * net/rcirc.el (rcirc-mode): Conditionally initialize
7732 rcirc-input-ring.
7733
7734 2011-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
7735
7736 * emacs-lisp/find-func.el (find-function-C-source): Only set
7737 find-function-C-source-directory after checking that we found a source
7738 file there (bug#9440).
7739
7740 2011-09-06 Alan Mackenzie <acm@muc.de>
7741
7742 * isearch.el (isearch-other-meta-char): Wherever a key list is
7743 unread, "unread" the prefix arg, too. This fixes bug #8901.
7744
7745 2011-09-05 Oleksandr Gavenko <gavenkoa@gmail.com> (tiny change)
7746
7747 * progmodes/grep.el (rgrep): Add "-type d" (bug#9414).
7748
7749 2011-09-05 Juri Linkov <juri@jurta.org>
7750
7751 * progmodes/grep.el (grep-process-setup): Fix comments (bug#8084).
7752
7753 2011-09-05 Juri Linkov <juri@jurta.org>
7754
7755 * progmodes/grep.el (grep-filter): Avoid incomplete processing by
7756 keeping point where processing of grep matches begins, and
7757 continue to delete remaining escape sequences from the same point.
7758 (grep-filter): Make leading zero optional in "0?1;31m" because
7759 git-grep emits "\033[1;31m" escape sequences unlike expected
7760 "\033[01;31m" as GNU Grep does (bug#9408).
7761 (grep-process-setup): Replace obsolete "ml=" with newer "sl=".
7762
7763 2011-09-05 Juri Linkov <juri@jurta.org>
7764
7765 * subr.el (y-or-n-p): Capitalize "yes".
7766
7767 2011-09-04 Michael Albinus <michael.albinus@gmx.de>
7768
7769 * net/tramp.el (top): Require 'shell. Use `tramp-unload-hook' but
7770 `tramp-cache-unload-hook' where appropriate.
7771 (tramp-methods): Rename `tramp-remote-sh' to
7772 `tramp-remote-shell'. Add `tramp-remote-shell-args'.
7773 (tramp-handle-shell-command): New defun, moved from tramp-sh.el.
7774
7775 * net/tramp-sh.el (top): Don't require 'shell.
7776 (tramp-methods): Add `tramp-remote-shell' and
7777 `tramp-remote-shell-args' entries.
7778 (tramp-sh-file-name-handler-alist): Use `tramp-handle-shell-command'.
7779 (tramp-sh-handle-shell-command): Remove.
7780 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
7781 Use `tramp-remote-shell'.
7782
7783 2011-09-03 Chong Yidong <cyd@stupidchicken.com>
7784
7785 * mail/sendmail.el (sendmail-query-once-function): Delete.
7786 (sendmail-query-once): Save directly to send-mail-function.
7787 Update message-send-mail-function too.
7788
7789 * mail/smtpmail.el (smtpmail-try-auth-methods): Clarify prompt.
7790
7791 2011-09-03 Christoph Scholtes <cschol2112@googlemail.com>
7792
7793 * progmodes/python.el (python-mode-map): Use correct function to
7794 start python interpreter from menu-bar (as reported by Geert
7795 Kloosterman).
7796 (inferior-python-mode-map): Fix typo.
7797 (python-shell-map): Remove.
7798
7799 2011-09-03 Deniz Dogan <deniz@dogan.se>
7800
7801 * net/rcirc.el (rcirc-print): Simplify code for
7802 rcirc-scroll-show-maximum-output. There is no need to walk
7803 through all windows to find the right one.
7804
7805 2011-09-03 Christoph Scholtes <cschol2112@googlemail.com>
7806
7807 * help.el (help-return-method): Doc fix.
7808
7809 2011-09-03 Martin Rudalics <rudalics@gmx.at>
7810
7811 * window.el (window-deletable-p): Don't return a non-nil value
7812 when there's a buffer that was shown in the window before.
7813 (Bug#9419)
7814 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
7815 Set window's previous buffers to nil.
7816
7817 2011-09-03 Eli Zaretskii <eliz@gnu.org>
7818
7819 * mail/rmailmm.el (rmail-mime-insert-tagline): Insert an extra
7820 newline before and after the tag line, so it doesn't interfere
7821 with determining the paragraph direction of bidirectional text.
7822
7823 2011-09-03 Leo Liu <sdl.web@gmail.com>
7824
7825 * files.el (find-file-not-true-dirname-list): Remove. (Bug#9422)
7826
7827 2011-09-02 Chong Yidong <cyd@stupidchicken.com>
7828
7829 * window.el (pop-to-buffer-1, pop-to-buffer-same-window): Delete.
7830 (pop-to-buffer): Change interactive spec. Pass second argument
7831 directly to display-buffer.
7832 (display-buffer): Fix interactive spec. Use functionp to
7833 distinguish between a function and a list of functions.
7834
7835 * abbrev.el (edit-abbrevs):
7836 * arc-mode.el (archive-extract):
7837 * autoinsert.el (auto-insert):
7838 * bookmark.el (bookmark-bmenu-list):
7839 * files.el (find-file):
7840 * view.el (view-buffer):
7841 * progmodes/compile.el (compilation-goto-locus):
7842 * textmodes/bibtex.el (bibtex-initialize): Use switch-to-buffer.
7843
7844 2011-09-02 Chong Yidong <cyd@stupidchicken.com>
7845
7846 * window.el (display-buffer-alist): Doc fix.
7847 (display-buffer): Add docstring. Don't treat
7848 display-buffer-default specially.
7849 (display-buffer-reuse-selected-window)
7850 (display-buffer-same-window, display-buffer-maybe-same-window)
7851 (display-buffer-reuse-window, display-buffer-pop-up-frame)
7852 (display-buffer-pop-up-window)
7853 (display-buffer-reuse-or-pop-window)
7854 (display-buffer-use-some-window): New functions.
7855 (display-buffer-default-action): Use them.
7856 (display-buffer-default): Delete.
7857 (pop-to-buffer-1): Fix choice of actions.
7858
7859 2011-09-02 Stefan Monnier <monnier@iro.umontreal.ca>
7860
7861 * minibuffer.el (completion--insert-strings): Don't get confused by
7862 completion entries that end with an LF char.
7863
7864 2011-09-01 Eli Zaretskii <eliz@gnu.org>
7865
7866 * window.el (frame-auto-delete, window-deletable-p): Doc fix.
7867
7868 2011-09-01 Chong Yidong <cyd@stupidchicken.com>
7869
7870 * window.el (display-buffer): Restore interactive spec.
7871 (display-buffer-same-window, display-buffer-other-window):
7872 New functions.
7873 (pop-to-buffer-1): New function. Use the above.
7874 (pop-to-buffer, pop-to-buffer-same-window): Use it.
7875 (pop-to-buffer-other-window, pop-to-buffer-other-frame): Delete.
7876
7877 * view.el (view-buffer-other-window, view-buffer-other-frame):
7878 Just use pop-to-buffer.
7879
7880 2011-09-01 Thierry Volpiatto <thierry.volpiatto@gmail.com>
7881
7882 * vc/vc-rcs.el (vc-rcs-responsible-p): Handle directories. (Bug#9391)
7883
7884 2011-09-01 Wilfred Hughes <wilfred@potatolondon.com> (tiny change)
7885
7886 * vc/vc-git.el (vc-git-grep): Use --no-color. (Bug#9408)
7887
7888 2011-08-31 Richard Stallman <rms@gnu.org>
7889
7890 * mail/rmail.el (rmail-epa-decrypt): Rewrite to take account
7891 of the separation of rmail-view-buffer from rmail-buffer.
7892 If you say no to "replace original", the decrypt is in the
7893 view buffer. If you say yes, the decrypt goes into the
7894 rmail buffer also.
7895
7896 2011-08-31 Martin Rudalics <rudalics@gmx.at>
7897
7898 * window.el (display-buffer-window): Rewrite doc-string.
7899 (display-buffer-record-window): New function.
7900 (display-buffer-macro-specifiers)
7901 (display-buffer-even-window-sizes, display-buffer-set-height)
7902 (display-buffer-set-width, display-buffer-in-window)
7903 (display-buffer-reuse-window, display-buffer-split-specifiers)
7904 (display-buffer-side-specifiers, display-buffer-split-window-1)
7905 (display-buffer-split-window, display-buffer-split-atom-window)
7906 (display-buffer-pop-up-window, display-buffer-pop-up-frame)
7907 (display-buffer-pop-up-side-window, display-buffer-in-side-window)
7908 (display-buffer-other-window-means-other-frame)
7909 (display-buffer-normalize-special)
7910 (display-buffer-normalize-default)
7911 (display-buffer-normalize-argument)
7912 (display-buffer-normalize-alist-1, display-buffer-normalize-alist)
7913 (display-buffer-normalize-specifiers, display-buffer-frame)
7914 (display-buffer-same-window, display-buffer-same-frame)
7915 (display-buffer-other-window)
7916 (display-buffer-same-frame-other-window)
7917 (display-buffer-other-frame, pop-to-buffer-same-window)
7918 (pop-to-buffer-same-frame, pop-to-buffer-other-window)
7919 (pop-to-buffer-same-frame-other-window, pop-to-buffer-other-frame)
7920 (switch-to-buffer-same-frame)
7921 (switch-to-buffer-other-window-same-frame)
7922 (display-buffer-alist-of-strings-p, display-buffer-alist-add)
7923 (display-buffer-alist-set-1, display-buffer-alist-set-2)
7924 (display-buffer-alist-set): Remove.
7925 (display-buffer-function, special-display-buffer-names)
7926 (special-display-regexps, special-display-function):
7927 In doc-string refer to display-buffer-window and quit-restore
7928 parameter.
7929 (pop-up-frame-alist, pop-up-frame-function, special-display-p)
7930 (special-display-frame-alist, special-display-popup-frame)
7931 (same-window-buffer-names, same-window-regexps, same-window-p)
7932 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
7933 (split-window-preferred-function, split-height-threshold)
7934 (split-width-threshold, window-splittable-p)
7935 (split-window-sensibly, window--try-to-split-window)
7936 (window--frame-usable-p, even-window-heights)
7937 (window--even-window-heights, window--display-buffer-1)
7938 (window--display-buffer-2, display-buffer-other-frame):
7939 Restore old Emacs 23 code, order and doc-strings where applicable.
7940 (display-buffer-default, display-buffer-assq-regexp): New functions.
7941 (display-buffer-alist): Rewrite doc-string.
7942 (display-buffer-default-action)
7943 (display-buffer-overriding-action): New variables.
7944 (display-buffer, switch-to-buffer): Rewrite.
7945 (pop-to-buffer): Restore Emacs 23 behavior but use
7946 window-normalize-buffer-to-display.
7947 (switch-to-buffer-other-window, switch-to-buffer-other-frame):
7948 Restore Emacs 23 behavior but use
7949 window-normalize-buffer-to-switch-to.
7950 (pop-to-buffer-same-window): Rewrite.
7951 (pop-to-buffer-other-window, pop-to-buffer-other-frame):
7952 Rewrite using Emacs 23 options.
7953
7954 2011-08-31 Michael Albinus <michael.albinus@gmx.de>
7955
7956 * net/tramp.el (tramp-root-regexp): Remove.
7957 (tramp-completion-file-name-regexp-unified)
7958 (tramp-completion-file-name-regexp-separate)
7959 (tramp-completion-file-name-regexp-url): Don't use leading volume
7960 letter on win32 systems. (Bug#5303, Bug#9311)
7961 (tramp-drop-volume-letter): Simplify definition.
7962 Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
7963
7964 2011-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
7965
7966 * subr.el (event-modifiers): Fix "missing modifier" part of docstring
7967 (bug#9356).
7968
7969 2011-08-30 Reuben Thomas <rrt@sc3d.org> (tiny change)
7970
7971 * vc/pcvs-defs.el (cvs-find-file-and-jump): Docstring typo (bug#9369).
7972
7973 2011-08-29 Juri Linkov <juri@jurta.org>
7974
7975 * isearch.el (isearch-done): Don't display message "Mark saved"
7976 when arg `edit' is non-nil to prevent its flicker in the echo area.
7977
7978 2011-08-28 Chong Yidong <cyd@stupidchicken.com>
7979
7980 * emacs-lisp/package.el (package-menu-mark-delete): Allow marking
7981 obsolete packages for deletion.
7982
7983 2011-08-28 Christoph Scholtes <cschol2112@googlemail.com>
7984
7985 * help-mode.el (help-mode-map): Add special-mode-map to parent.
7986 (help-mode): Derive help-mode from special-mode. Don't invoke
7987 view-mode from help-mode.
7988 (help-xref-override-view-map): Remove.
7989 (help-make-xrefs): Remove minor-mode-overriding-map-alist since
7990 view-mode is not used anymore.
7991
7992 2011-08-28 Chong Yidong <cyd@stupidchicken.com>
7993
7994 * server.el (server-port): Doc fix.
7995
7996 * cus-theme.el (custom-theme-choose-mode): Inherit from
7997 special-mode (Bug#9124).
7998 (custom-theme-choose-mode-map): Add special-mode to parent.
7999
8000 2011-08-28 Alan Mackenzie <acm@muc.de>
8001
8002 * progmodes/cc-fonts.el
8003 (c-make-font-lock-BO-decl-search-function): New function.
8004 (c-basic-matchers-after - "Fontify the clauses after various
8005 keywords"): Extract the three keyword lists for the 3 erroneous
8006 constructs from the list of four, and use the new function above
8007 in place of an old one.
8008
8009 2011-08-28 Deniz Dogan <deniz@dogan.se>
8010
8011 * net/rcirc.el (rcirc-insert-prev-input)
8012 (rcirc-insert-next-input): Remove unused argument.
8013
8014 2011-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
8015
8016 * shell.el (shell-parse-pcomplete-arguments): Unquote args (bug#9160).
8017
8018 2011-08-27 Alan Mackenzie <acm@muc.de>
8019
8020 * progmodes/cc-menus.el (cc-imenu-c++-generic-expression): Make it
8021 handle function pointer parameters properly.
8022
8023 2011-08-27 Martin Rudalics <rudalics@gmx.at>
8024
8025 * window.el (display-buffer-reuse-window): Fix case where
8026 selected window was reused with non-nil OTHER-WINDOW argument.
8027 (Bug#9381)
8028
8029 2011-08-27 Deniz Dogan <deniz@dogan.se>
8030
8031 * net/rcirc.el (rcirc-check-auth-status): Adding support for
8032 oftc's NickServ messages.
8033
8034 2011-08-27 Glenn Morris <rgm@gnu.org>
8035
8036 * saveplace.el (save-place-limit): Make it finite. (Bug#9352)
8037
8038 2011-08-26 Chong Yidong <cyd@stupidchicken.com>
8039
8040 * emacs-lisp/package.el (package-install): Call package-initialize
8041 if called interactively.
8042
8043 2011-08-26 Leo Liu <sdl.web@gmail.com>
8044
8045 * emacs-lisp/cl-macs.el (defstruct): Fix format. (Bug#9357)
8046
8047 2011-08-25 Juri Linkov <juri@jurta.org>
8048
8049 * isearch.el (isearch-occur): Let-bind `search-spaces-regexp' to
8050 `search-whitespace-regexp' (bug#9364).
8051
8052 2011-08-25 Juri Linkov <juri@jurta.org>
8053
8054 * isearch.el (isearch-edit-string): Let-bind `search-ring' and
8055 `regexp-search-ring' to their global values to protect from
8056 updating by `read-from-minibuffer' (bug#9185).
8057
8058 2011-08-25 Juri Linkov <juri@jurta.org>
8059
8060 * textmodes/ispell.el (ispell-command-loop): Add newline
8061 at the end of the "Use option `i'..." line.
8062
8063 2011-08-25 Juri Linkov <juri@jurta.org>
8064
8065 * battery.el (display-battery-mode): If `battery-status-function'
8066 or `battery-mode-line-format' is nil, display the message and set
8067 `display-battery-mode' to nil (bug#9363).
8068
8069 2011-08-25 Eli Zaretskii <eliz@gnu.org>
8070
8071 * buff-menu.el (Buffer-menu-buffer+size): Remove calls to
8072 bidi-string-mark-left-to-right; they are unnecessary now.
8073
8074 2011-08-25 Deniz Dogan <deniz@dogan.se>
8075
8076 * net/quickurl.el: Documentation typo fixes.
8077
8078 2011-08-25 Chong Yidong <cyd@stupidchicken.com>
8079
8080 * window.el (bury-buffer, quit-window): Use bury-buffer-internal.
8081
8082 2011-08-25 Glenn Morris <rgm@gnu.org>
8083
8084 * emacs-lisp/derived.el (define-derived-mode): Doc fix.
8085
8086 * mail/smtpmail.el (smtpmail-smtp-user): Add version: tag.
8087 (smtpmail-via-smtp): Handle nil response from smtp.
8088
8089 2011-08-24 Juri Linkov <juri@jurta.org>
8090
8091 * proced.el (proced-marked): Inherit from `error' instead of
8092 `font-lock-warning-face'.
8093
8094 * ibuffer.el (ibuffer-marked-face): Change default face from
8095 `font-lock-warning-face' to `warning'.
8096 (ibuffer-deletion-face): Change default face from
8097 `font-lock-type-face' to `error'.
8098
8099 * battery.el (battery-update): Use the face `error' instead of
8100 `font-lock-warning-face' (bug#6117).
8101
8102 2011-08-24 Juri Linkov <juri@jurta.org>
8103
8104 * faces.el (success): Change face color from "Green3" to
8105 "ForestGreen" on light background (bug#9353).
8106
8107 2011-08-24 Chong Yidong <cyd@stupidchicken.com>
8108
8109 * window.el (quit-window): Rename from quit-restore-window.
8110 Use same arglist as old quit-window.
8111 (frame-auto-delete): Doc fix.
8112
8113 * view.el (view-mode-exit): Use quit-window.
8114
8115 2011-08-24 Juri Linkov <juri@jurta.org>
8116
8117 * isearch.el (isearch-ring-adjust1): Start visiting previous
8118 search strings from the index 0 (-1 + 1) instead of 1 (0 + 1).
8119 (isearch-repeat, isearch-edit-string): Call `isearch-ring-adjust1'
8120 for empty search string (when the last search string is reused
8121 automatically) to adjust the isearch ring to the last element and
8122 prepare the correct index for further M-p commands (bug#9185).
8123
8124 2011-08-24 Kenichi Handa <handa@m17n.org>
8125
8126 * international/ucs-normalize.el: If decomposition property of
8127 CHAR is the default one (i.e. a list of CHAR itself), treat it as
8128 nil.
8129 (nfd, nfkd): Likewise.
8130
8131 2011-08-24 Stefan Monnier <monnier@iro.umontreal.ca>
8132
8133 * mpc.el (mpc--proc-filter): Don't signal mpc-proc-error since signals
8134 from process filters aren't reliably transmitted to the surrounding
8135 accept-process-output.
8136 (mpc-proc-check): New function.
8137 (mpc-proc-sync): Use it (bug#8293)
8138
8139 2011-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
8140
8141 * emacs-lisp/eieio.el (eieio-defmethod, eieio-defgeneric):
8142 Add compatibility functions (bug#9313).
8143
8144 2011-08-23 Eli Zaretskii <eliz@gnu.org>
8145
8146 * cus-start.el (all): Add entry for bidi-paragraph-direction.
8147
8148 * international/uni-bidi.el: Regenerate.
8149
8150 2011-08-23 Kenichi Handa <handa@m17n.org>
8151
8152 * international/charprop.el:
8153 * international/uni-bidi.el:
8154 * international/uni-category.el:
8155 * international/uni-combining.el:
8156 * international/uni-comment.el:
8157 * international/uni-decimal.el:
8158 * international/uni-decomposition.el:
8159 * international/uni-digit.el:
8160 * international/uni-lowercase.el:
8161 * international/uni-mirrored.el:
8162 * international/uni-name.el:
8163 * international/uni-numeric.el:
8164 * international/uni-old-name.el:
8165 * international/uni-titlecase.el:
8166 * international/uni-uppercase.el: Regenerate.
8167
8168 2011-08-23 Martin Rudalics <rudalics@gmx.at>
8169
8170 * help.el (help-window-setup): Fix message displayed when other
8171 window is reused. (Bug#9341)
8172
8173 2011-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
8174
8175 * shell.el (shell-completion-vars): Set pcomplete-arg-quote-list.
8176 * pcomplete.el (pcomplete-quote-argument): Fix thinko (bug#9161).
8177
8178 * pcomplete.el (pcomplete-parse-comint-arguments): Fix inf-loop.
8179 Mark obsolete.
8180 * shell.el (shell-parse-pcomplete-arguments): New function.
8181 (shell-completion-vars): Use it instead (bug#9160).
8182
8183 2011-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
8184
8185 * progmodes/sh-script.el (sh-maybe-here-document): Disable magic in
8186 strings and comments (bug#9333).
8187
8188 * emacs-lisp/debug.el (debug-arglist): New function.
8189 (debug-convert-byte-code): Use it. Handle lexical byte-codes.
8190 (debug-on-entry-1): Handle interpreted closures (bug#9120).
8191
8192 2011-08-22 Juri Linkov <juri@jurta.org>
8193
8194 * progmodes/compile.el (compilation-mode-font-lock-keywords):
8195 Revert regexp that highlights output switches to its old
8196 pre-2010-10-28 value and remove one `?' from it (bug#9319).
8197
8198 * progmodes/grep.el (grep-process-setup): Use `buffer-modified-p'
8199 to check for empty output (bug#9226).
8200
8201 2011-08-22 Chong Yidong <cyd@stupidchicken.com>
8202
8203 * progmodes/scheme.el (scheme-mode-syntax-table): Don't use
8204 symbol-constituent as the default, as that stops font-lock from
8205 working properly (Bug#8843).
8206
8207 2011-08-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
8208
8209 * mail/smtpmail.el (smtpmail-via-smtp): Only bind
8210 `coding-system-for-*' around the process open call to avoid
8211 auth-source side effects.
8212 (smtpmail-try-auth-methods): Expand the secret password.
8213 (smtpmail-query-smtp-server): Allow `quit'-ing out in case the
8214 probe hangs.
8215
8216 2011-08-21 Chong Yidong <cyd@stupidchicken.com>
8217
8218 * term.el (term-mouse-paste): Yank primary selection (Bug#6845).
8219
8220 * emacs-lisp/find-func.el (find-function-noselect): New arg
8221 lisp-only.
8222
8223 * emacs-lisp/edebug.el (edebug-instrument-function): Use it to
8224 signal an error for built-in functions (Bug#6664).
8225
8226 2011-08-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
8227
8228 * mail/smtpmail.el (smtpmail-smtp-user): New variable.
8229 (smtpmail-try-auth-methods): Use it.
8230
8231 2011-08-21 Chong Yidong <cyd@stupidchicken.com>
8232
8233 * font-lock.el (font-lock-fontify-region)
8234 (font-lock-unfontify-region, font-lock-default-fontify-buffer)
8235 (font-lock-default-unfontify-buffer)
8236 (font-lock-default-fontify-region)
8237 (font-lock-default-unfontify-region): Add docstrings (Bug#8624).
8238
8239 * progmodes/compile.el (compilation-error-properties):
8240 Fix confusion between file struct and message struct (Bug#9319).
8241 (compilation-error-regexp-alist-alist): Fix 2011-05-09 change to
8242 `ant' regexp.
8243
8244 * net/browse-url.el (browse-url-firefox): Don't call
8245 browse-url-firefox-sentinel unless using -remote (Bug#9328).
8246
8247 2011-08-20 Glenn Morris <rgm@gnu.org>
8248
8249 * tutorial.el (help-with-tutorial): Avoid an error on short screens.
8250
8251 * tutorial.el (tutorial--default-keys): Update some default bindings.
8252
8253 * files.el (hack-local-variables): Fully ignore case for "mode:".
8254
8255 2011-08-20 Alan Mackenzie <acm@muc.de>
8256
8257 Resolve invalid use of a regexp in regexp-opt.
8258
8259 * progmodes/cc-fonts.el (c-complex-decl-matchers): Add in special
8260 detection for a java annotation.
8261
8262 * progmodes/cc-engine.el (c-forward-decl-or-cast-1): Add in special
8263 detection for a java annotation.
8264
8265 * progmodes/cc-langs.el (c-prefix-spec-kwds-re): Remove the special
8266 handling for java.
8267 (c-modifier-kwds): Remove the regexp "@[A-za-z0-9]+".
8268
8269 2011-08-20 Chong Yidong <cyd@stupidchicken.com>
8270
8271 * startup.el (normal-top-level-add-subdirs-to-load-path): Doc fix
8272 (Bug#9274).
8273
8274 2011-08-20 Alan Mackenzie <acm@muc.de>
8275
8276 Fontify CPP expressions correctly when starting in the middle of
8277 such a construct. Mainly for when jit-lock etc. starts a chunk
8278 here.
8279
8280 * progmodes/cc-fonts.el (c-font-lock-context): New buffer local
8281 variable.
8282 (c-make-font-lock-search-form): New function, extracted from
8283 c-make-font-lock-search-function.
8284 (c-make-font-lock-search-function): Use the above function.
8285 (c-make-font-lock-context-search-function): New function.
8286 (c-cpp-matchers): Enhance the preprocessor expression case with
8287 the above function
8288 (c-font-lock-complex-decl-prepare): Test for being in a CPP form
8289 which takes an expression.
8290
8291 * progmodes/cc-langs.el (c-cpp-expr-intro-re): New lang-variable.
8292
8293 2011-08-20 Martin Rudalics <rudalics@gmx.at>
8294
8295 * window.el (display-buffer-reuse-window)
8296 (display-buffer-pop-up-window): Don't reuse or split a side
8297 window.
8298
8299 2011-08-19 Glenn Morris <rgm@gnu.org>
8300
8301 * files.el (hack-local-variables-prop-line, hack-local-variables):
8302 Downcase "Mode:". (Bug#9331)
8303
8304 2011-08-18 Chong Yidong <cyd@stupidchicken.com>
8305
8306 * international/characters.el: Add L and R categories.
8307
8308 * subr.el (bidi-string-mark-left-to-right): Rename from
8309 string-mark-left-to-right. Use category search.
8310
8311 * buff-menu.el (Buffer-menu-buffer+size): Callers changed.
8312
8313 2011-08-18 Juri Linkov <juri@jurta.org>
8314
8315 * faces.el (error, warning, success): New faces with definitions
8316 copied from old default values of `font-lock-warning-face',
8317 `compilation-warning', `compilation-info' (bug#6117).
8318
8319 * font-lock.el (font-lock-warning-face): Inherit from `error'.
8320
8321 * progmodes/compile.el (compilation-error): Inherit from `error'.
8322 (compilation-warning): Inherit from `warning'.
8323 (compilation-info): Inherit from `success'.
8324
8325 * dired.el (dired-marked): Inherit from `warning'.
8326 (dired-flagged): Inherit from `error'.
8327
8328 2011-08-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
8329
8330 * mail/smtpmail.el (auth-source): Require to avoid problems with
8331 binding variables (bug#9298). Also clean up some unused
8332 autoloads.
8333
8334 * net/network-stream.el (network-stream-open-starttls):
8335 Support using starttls.el without using gnutls-cli.
8336
8337 2011-08-17 Juri Linkov <juri@jurta.org>
8338
8339 * progmodes/grep.el (rgrep): Handle the case when
8340 `grep-find-command' is a cons cell (bug#9278).
8341
8342 2011-08-17 Martin Rudalics <rudalics@gmx.at>
8343
8344 * window.el (display-buffer-pop-up-frame): Run frame creation
8345 function with BUFFER current (as special-display-popup-frame
8346 does). Reported by Drew Adams.
8347
8348 2011-08-17 Daiki Ueno <ueno@unixuser.org>
8349
8350 * epa-mail.el: Simplify GnuPG group expansion using
8351 epg-expand-group.
8352 (epa-mail-group-alist, epa-mail-group-modtime)
8353 (epa-mail-gnupg-conf-file, epa-mail-parse-groups)
8354 (epa-mail-sync-groups, epa-mail-expand-recipient-1)
8355 (epa-mail-expand-recipients-2, epa-mail-expand-recipients):
8356 Remove.
8357
8358 2011-08-16 Feng Li <fengli@gmail.com> (tiny change)
8359
8360 * calc/calc-ext.el (math-defintegral-2): Remove nested backquote.
8361
8362 2011-08-16 Alan Mackenzie <acm@muc.de>
8363
8364 * progmodes/cc-engine.el (c-state-cache-non-literal-place):
8365 Correct, to avoid the inside of macros.
8366
8367 2011-08-16 Richard Stallman <rms@gnu.org>
8368
8369 * epa-mail.el: Handle GnuPG group definitions.
8370 (epa-mail-group-alist, epa-mail-group-modtime)
8371 (epa-mail-gnupg-conf-file): New variables.
8372 (epa-mail-parse-groups, epa-mail-sync-groups)
8373 (epa-mail-expand-recipient-1, epa-mail-expand-recipients-2)
8374 (epa-mail-expand-recipients): New functions.
8375 (epa-mail-encrypt): Call epa-mail-expand-recipients.
8376
8377 * mail/rmail.el (rmail-epa-decrypt): New command.
8378
8379 * epa.el (epa-decrypt-region): New arg MAKE-BUFFER-FUNCTION.
8380 Don't bind buffer-read-only, just inhibit-read-only.
8381 (epa--find-coding-system-for-mime-charset): Fix the non-xemacs case.
8382 (epa-decrypt-armor-in-region): Make error message clearer.
8383
8384 2011-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
8385
8386 * minibuffer.el (completion-pcm--merge-completions): Don't merge "a1b"
8387 and "a2b" to "ab" for `prefix'.
8388
8389 2011-08-14 Chong Yidong <cyd@stupidchicken.com>
8390
8391 * ibuf-ext.el (ibuffer-filter-disable): New arg for deleting
8392 filter groups.
8393 (ibuffer-included-in-filter-p-1): Use it. Suggested by Rafaël
8394 Fourquet (Bug#8804).
8395
8396 2011-08-12 Juanma Barranquero <lekktu@gmail.com>
8397
8398 * startup.el (argi): Declare as global variable (bug#9275).
8399
8400 2011-08-12 Chong Yidong <cyd@stupidchicken.com>
8401
8402 * subr.el (string-mark-left-to-right): Search the entire string
8403 for RTL script, not just the terminating character. Doc fix.
8404
8405 2011-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
8406
8407 * progmodes/js.el (js-syntax-propertize, js-syntax-propertize-regexp):
8408 New function.
8409 (js--regexp-literal, js-syntax-propertize-function): Remove.
8410 (js-mode): Use js-syntax-propertize to handle multilines (bug#9183).
8411 (js-mode-map): Don't rebind electric keys.
8412 (js-insert-and-indent): Remove.
8413 (js-mode): Setup electric-layout and electric-indent instead.
8414
8415 * epa-file.el (epa-file-select-keys): Revert to nil default (bug#9280).
8416
8417 2011-08-12 Daiki Ueno <ueno@unixuser.org>
8418
8419 * epa.el (epa-progress-callback-function): Fix the logic of
8420 displaying progress.
8421 * epa-file.el (epa-file-insert-file-contents): Make progress
8422 display more user-friendly.
8423 (epa-file-write-region): Ditto.
8424
8425 2011-08-10 Chong Yidong <cyd@stupidchicken.com>
8426
8427 * subr.el (string-mark-left-to-right): New function.
8428
8429 * buff-menu.el (Buffer-menu-buffer+size): Remove LRM argument.
8430 Use string-mark-left-to-right.
8431 (list-buffers-noselect): Caller changed.
8432
8433 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
8434 Use string-mark-left-to-right.
8435 (tabulated-list-print): Recenter after moving point.
8436
8437 2011-08-10 Juri Linkov <juri@jurta.org>
8438
8439 * progmodes/grep.el (rgrep): Don't bind `process-connection-type'.
8440 This finishes incomplete reversion of 2011-06-30T01:09:13Z!larsi@gnus.org
8441 intended by 2011-07-06T15:49:19Z!larsi@gnus.org.
8442
8443 2011-08-09 Chong Yidong <cyd@stupidchicken.com>
8444
8445 * hi-lock.el (hi-lock-unface-buffer): Fix interactive spec
8446 (Bug#7554).
8447
8448 2011-08-09 Andreas Schwab <schwab@linux-m68k.org>
8449
8450 * xt-mouse.el (xterm-mouse-event-read): Try to recover the raw
8451 character. (Bug#6594)
8452
8453 2011-08-08 Chong Yidong <cyd@stupidchicken.com>
8454
8455 * image-dired.el: Don't use find-file for temporary work (Bug#7895).
8456 (image-dired--with-db-file): New macro.
8457 (image-dired-write-tags, image-dired-remove-tag)
8458 (image-dired-create-gallery-lists, image-dired-write-comments)
8459 (image-dired-get-comment, image-dired-mark-tagged-files)
8460 (image-dired-list-tags, image-dired-gallery-generate): Use it.
8461 (image-dired-gallery-generate): Use insert-file-contents.
8462
8463 * time.el (display-time-world-list, display-time-world-display):
8464 * time-stamp.el (time-stamp-string):
8465 * vc/add-log.el (add-change-log-entry): Use setenv instead of
8466 set-time-zone-rule (Bug#7337).
8467
8468 2011-08-08 Daiki Ueno <ueno@unixuser.org>
8469
8470 * epg.el (epg--status-KEYEXPIRED, epg--status-KEYREVOKED): Fix typo.
8471 (epg-error-to-string, epg-errors-to-string): New function.
8472 (epg-wait-for-completion): Reverse errors list.
8473 (epg--check-error-for-decrypt, epg-sign-file, epg-sign-string)
8474 (epg-encrypt-file, epg-encrypt-string, epg-export-keys-to-file)
8475 (epg--import-keys-1, epg-receive-keys, epg-delete-keys)
8476 (epg-sign-keys, epg-generate-key-from-file)
8477 (epg-generate-key-from-string): Format errors by using
8478 epg-errors-to-string (bug#9255).
8479 (epg--status-INV_SGNR, epg--status-NO_SGNR): New status handler.
8480
8481 2011-08-07 Juri Linkov <juri@jurta.org>
8482
8483 * faces.el (list-faces-display): Remove extra angle bracket
8484 from `help-mode-map'.
8485
8486 * info.el (Info-history-toc-nodes): Doc fix.
8487
8488 * longlines.el (longlines-mode): Doc fix.
8489
8490 2011-08-05 Stefan Monnier <monnier@iro.umontreal.ca>
8491
8492 * progmodes/js.el (js--regexp-literal): Accept regexps at the beginning
8493 of statements and in a few more cases (bug#9183).
8494
8495 * emacs-lisp/cl-macs.el (cl--make-usage-var, cl--make-usage-args):
8496 New functions.
8497 (cl-transform-lambda): Use them (bug#9239).
8498
8499 2011-08-05 Martin Rudalics <rudalics@gmx.at>
8500
8501 * window.el (display-buffer-same-window)
8502 (display-buffer-same-frame, display-buffer-other-window)
8503 (pop-to-buffer-same-window, pop-to-buffer-same-frame)
8504 (pop-to-buffer-other-window)
8505 (pop-to-buffer-same-frame-other-window)
8506 (pop-to-buffer-other-frame): Make them defuns.
8507 (switch-to-buffer): Don't set LABEL argument of pop-to-buffer.
8508
8509 2011-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
8510
8511 * subr.el (make-composed-keymap): Move from C. Change calling
8512 convention, and improve docstring to bring attention to a subtle point.
8513 * minibuffer.el (completing-read-default): Adjust accordingly.
8514
8515 2011-08-03 Michael Albinus <michael.albinus@gmx.de>
8516
8517 * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell)
8518 (tramp-open-shell): Use `tramp-shell-quote-argument'.
8519
8520 * net/trampver.el: Update release number.
8521
8522 2011-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
8523
8524 * progmodes/sh-script.el (sh-font-lock-paren): Don't mistake "main" for
8525 "in" (bug#9190).
8526
8527 2011-08-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
8528
8529 * mail/sendmail.el (sendmail-query-once): Restore the current
8530 buffer after querying (bug#9074).
8531
8532 * dired.el (dired-flagged): Use different faces for marked and
8533 flagged files (bug#6117).
8534
8535 * emacs-lisp/cl-macs.el (dolist): Mention that there's a nil block
8536 (bug#4433).
8537
8538 * ido.el (ido-mode): Switch off the message if called
8539 non-interactively.
8540
8541 * mail/smtpmail.el (smtpmail-query-smtp-server): Try port 25
8542 before 587, since it appears that that's more likely to work for
8543 more people.
8544
8545 * cus-edit.el (custom-file): When running under emacs -q, always
8546 refuse to save the customizations, even if the .emacs file doesn't
8547 exist.
8548
8549 * info.el: Remove the `Info-beginning-of-buffer' function
8550 (bug#8325).
8551
8552 * net/network-stream.el (network-stream-open-starttls):
8553 Use `starttls-available-p' to see whether starttls.el can be used.
8554
8555 2011-08-01 Martin Rudalics <rudalics@gmx.at>
8556
8557 * window.el (display-buffer-in-window): Don't set dedicated status
8558 of window here (Bug#9215).
8559 (display-buffer-pop-up-window, display-buffer-pop-up-frame)
8560 (display-buffer-pop-up-side-window)
8561 (display-buffer-in-side-window): Set dedicated status of window here.
8562
8563 2011-08-01 Stefan Monnier <monnier@iro.umontreal.ca>
8564
8565 * emacs-lisp/package.el (package-generate-autoloads): Load autoloads
8566 before binding generated-autoload-file.
8567
8568 2011-08-01 Deniz Dogan <deniz@dogan.se>
8569
8570 * net/rcirc.el (rcirc-handler-333): Clarify docstring.
8571
8572 2011-07-30 Michael Albinus <michael.albinus@gmx.de>
8573
8574 Sync with Tramp 2.2.2.
8575
8576 * net/trampver.el: Update release number.
8577
8578 2011-07-30 Juri Linkov <juri@jurta.org>
8579
8580 * dired-aux.el (dired-touch-initial): Remove function.
8581 (dired-do-chxxx): For op-symbol `touch', set `initial' to the
8582 current time, and `default' to the last modification time of the
8583 current marked file (bug#6887).
8584
8585 2011-07-28 Jose E. Marchesi <jemarch@gnu.org>
8586
8587 * simple.el (goto-line): Use string-to-number to provide a
8588 numeric argument to read-number (bug#9163).
8589
8590 2011-07-27 Michael Albinus <michael.albinus@gmx.de>
8591
8592 * net/tramp-sh.el (tramp-maybe-send-script): Don't let-bind the
8593 connection process, it could be nil.
8594
8595 2011-07-27 Leo Liu <sdl.web@gmail.com>
8596
8597 Simplify url handling in rcirc-mode.
8598
8599 * net/rcirc.el (rcirc-browse-url-map, rcirc-browse-url-at-point)
8600 (rcirc-browse-url-at-mouse): Remove.
8601 * net/rcirc.el (rcirc-markup-urls): Use `make-button'.
8602
8603 2011-07-26 Alan Mackenzie <acm@muc.de>
8604
8605 Fontify bitfield declarations properly.
8606
8607 * progmodes/cc-langs.el (c-has-bitfields): New lang variable.
8608 (c-symbol-chars): Now exported as a lang variable.
8609 (c-not-primitive-type-keywords): New lang variable.
8610
8611 * progmodes/cc-fonts.el (c-font-lock-declarations): Jump over the
8612 QT keyword "more" to prevent "more slots: ...." being spuriously
8613 parsed as a bitfield declaration.
8614
8615 * progmodes/cc-engine.el (c-beginning-of-statement-1):
8616 Refactor and enhance to handle bitfield declarations.
8617 (c-punctuation-in): New function.
8618 (c-forward-decl-or-cast-1): Enhance CASE 3 to handle bitfield
8619 declarations properly.
8620
8621 2011-07-26 Ulf Jasper <ulf.jasper@web.de>
8622
8623 * calendar/icalendar.el (icalendar--all-events): Take care of
8624 multiple vcalendars in a single file.
8625 (icalendar--convert-float-to-ical): Checkdoc fixes.
8626
8627 2011-07-25 Deniz Dogan <deniz@dogan.se>
8628
8629 * image.el (insert-image): Clarifying docstring.
8630
8631 2011-07-24 Michael Albinus <michael.albinus@gmx.de>
8632
8633 * net/tramp-sh.el (tramp-barf-unless-okay): Return the value of
8634 `tramp-send-command-and-check' if there is no error.
8635 (tramp-send-command-and-read): Suppress *all* errors if NOERROR.
8636
8637 2011-07-22 Alan Mackenzie <acm@muc.de>
8638
8639 Prevent cc-langs.elc being loaded at run time.
8640
8641 * progmodes/cc-mode.el: Remove two autoload forms which loaded
8642 cc-langs.
8643
8644 * progmodes/cc-langs.el (c-make-init-lang-vars-fun): Don't emit
8645 "(require 'cc-langs)". Quote a form so it will evaluate at
8646 (cc-mode's) compilation time.
8647
8648 2011-07-22 Michael Albinus <michael.albinus@gmx.de>
8649
8650 * net/tramp.el (tramp-file-name-handler): Avoid recursive
8651 loading. (Bug#9114)
8652
8653 2011-07-21 Martin Rudalics <rudalics@gmx.at>
8654
8655 * window.el (display-buffer-pop-up-window)
8656 (display-buffer-pop-up-side-window)
8657 (display-buffer-in-side-window): Call display-buffer-set-height
8658 and display-buffer-set-width after setting the new window's
8659 buffer so `fit-window-to-buffer' and friends work on the right buffer.
8660
8661 2011-07-20 Sam Steingold <sds@gnu.org>
8662
8663 * progmodes/etags.el (etags-file-of-tag, etags-tags-table-files)
8664 (etags-tags-included-tables): Call `convert-standard-filename' on
8665 the file names contained in TAGS so that windows Emacs can handle
8666 TAGS files created by cygwin ctags.
8667
8668 2011-07-20 Lars Magne Ingebrigtsen <larsi@gnus.org>
8669
8670 * proced.el (proced-update): Revert yesterday's bug#1779 patch,
8671 which apparently didn't work.
8672
8673 2011-07-19 Roland Winkler <winkler@gnu.org>
8674
8675 * proced.el (proced-send-signal): For *Marked Processes* buffer
8676 put point at beginning of buffer.
8677
8678 2011-07-19 Stephen Berman <stephen.berman@gmx.net>
8679
8680 * proced.el (proced-format): Make header lines align with the text
8681 (bug#1779).
8682
8683 2011-07-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
8684
8685 * view.el (view-buffer): Allow running in `special' modes if we're
8686 visiting a file (bug#8615).
8687
8688 2011-07-19 Martin Rudalics <rudalics@gmx.at>
8689
8690 * window.el (display-buffer-alist-of-strings-p)
8691 (display-buffer-alist-set-1, display-buffer-alist-set-2):
8692 New functions.
8693 (display-buffer-alist-set): Rewrite to handle Emacs 23 options
8694 more accurately.
8695
8696 2011-07-18 Alan Mackenzie <acm@muc.de>
8697
8698 Fontify declarators properly when, e.g., a jit-lock chunk begins
8699 inside a declaration.
8700
8701 * progmodes/cc-langs.el (c-symbol-chars): Correct a typo.
8702
8703 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
8704 New function.
8705 (c-complex-decl-matchers): Insert reference to
8706 c-font-lock-enclosing-decls.
8707
8708 * progmodes/cc-engine.el (c-backward-single-comment):
8709 (c-backward-comments): Bind open-paren-in-column-0-is-defun-start
8710 to nil around calls to (forward-comment -1).
8711
8712 2011-07-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
8713
8714 * image.el (put-image): Doc typo fix.
8715
8716 * progmodes/etags.el (tags-search): Doc typo fix.
8717
8718 * mail/smtpmail.el (smtpmail-via-smtp): Query the user for
8719 password if we get errors 550 to 554.
8720
8721 2011-07-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
8722
8723 * net/gnutls.el (gnutls-log-level): Remove.
8724
8725 * textmodes/fill.el (adaptive-fill-regexp): Include EN DASH as an
8726 indentation character (bug#6380).
8727
8728 * files.el (buffer-offer-save): Made permanently local (bug#6241).
8729
8730 * doc-view.el (doc-view-make-safe-dir): Rewrite the error message
8731 to clarify what the problem is (bug#4291).
8732
8733 * simple.el (current-kill): Clarify what
8734 `interprogram-paste-function' does (bug#7500).
8735 (auto-fill-mode): Document `auto-fill-function' in relation to
8736 `auto-fill-mode' (bug#2470).
8737
8738 2011-07-16 Lawrence Mitchell <wence@gmx.li>
8739
8740 * emacs-lisp/cl-macs.el (defstruct): Ignore argument to setf
8741 method if slot is read-only (bug#9035).
8742
8743 2011-07-16 Martin Rudalics <rudalics@gmx.at>
8744
8745 * frame.el (select-frame-set-input-focus): New argument NORECORD.
8746 * window.el (pop-to-buffer): Select window used even if it was
8747 selected before, see discussion of (Bug#8615), (Bug#6954).
8748 Pass argument NORECORD on to select-frame-set-input-focus.
8749
8750 2011-07-15 Glenn Morris <rgm@gnu.org>
8751
8752 * subr.el (read-char-choice): Allow quitting. (Bug#9001)
8753 Respect help-form.
8754
8755 2011-07-09 Lawrence Mitchell <wence@gmx.li>
8756
8757 * net/gnutls.el (gnutls-min-prime-bits): New variable.
8758 (gnutls-negotiate): Use it.
8759
8760 2011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
8761
8762 * net/gnutls.el (gnutls-negotiate):
8763 Upcase `gnutls-algorithm-priority'.
8764
8765 2011-07-15 Glenn Morris <rgm@gnu.org>
8766
8767 * jka-compr.el (jka-compr-verbose): Move from here...
8768 * jka-cmpr-hook.el (jka-compr-verbose): ... to here. (Bug#9090)
8769 Add missing :version tag.
8770 * info.el: No need to require jka-compr when compiling.
8771
8772 2011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
8773
8774 * net/gnutls.el (gnutls-algorithm-priority): New variable.
8775 (gnutls-negotiate): Use it.
8776
8777 * emacs-lisp/cl-macs.el (declare): Link to the "Declarations" node.
8778
8779 * info.el (Info-beginning-of-buffer): New command.
8780 (Info-mode-map): Use it instead of `beginning-of-buffer' to allow
8781 announcing `b' as the key (bug#8325).
8782 (Info-mode-menu): Use `Info-beginning-of-buffer' for consistency.
8783
8784 * emacs-lisp/cl-macs.el (declare): Doc string fix-up.
8785
8786 * international/mule-cmds.el
8787 (describe-specified-language-support): Make the error message
8788 clearer (bug#8905).
8789
8790 * emacs-lisp/cl-macs.el (declare): Add a doc string (bug#8690).
8791
8792 * isearch.el (isearch-barrier): Add a doc string, since it's
8793 mentioned in a function doc string (bug#8678).
8794
8795 2011-07-15 Martin Rudalics <rudalics@gmx.at>
8796
8797 * window.el (switch-to-buffer): Call pop-to-buffer with normalized
8798 buffer argument (Bug#9083) and self-identifying label argument.
8799
8800 2011-07-15 Glenn Morris <rgm@gnu.org>
8801
8802 * emacs-lisp/debug.el (debug): Doc fix. (Bug#8273)
8803
8804 2011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
8805
8806 * man.el (Man-fontify-manpage): Fix message when formatting the
8807 man page (bug#7929).
8808
8809 2011-07-14 Eli Zaretskii <eliz@gnu.org>
8810
8811 * buff-menu.el (Buffer-menu-buffer+size): Accept an additional
8812 argument LRM; if non-nil, append an invisible LRM character to the
8813 buffer name.
8814 (list-buffers-noselect): Call Buffer-menu-buffer+size with the
8815 last argument non-nil, when formatting buffer names.
8816 (Buffer-menu-mode, list-buffers-noselect): Force left-to-right
8817 paragraph direction.
8818
8819 2011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
8820
8821 * man.el (Man-bgproc-sentinel): Skip any arguments and only output
8822 the man page name (bug#7929).
8823
8824 * image.el (put-image): Mention the `put-image' overlay property
8825 (bug#7834).
8826
8827 * scroll-bar.el (set-scroll-bar-mode): Mention that
8828 `scroll-bar-mode' lists the values (bug#7772).
8829
8830 * image-mode.el (image-mode-fit-frame): Mention that it's a toggle
8831 command (bug#7729).
8832
8833 * rect.el (apply-on-rectangle): Return the point after the last
8834 operation.
8835 (string-rectangle): Go to the point after the last operation
8836 (bug#7522).
8837
8838 * printing.el (pr-toggle-region): Clarify the documentation
8839 slightly (bug#7493).
8840
8841 * time.el (display-time-update):
8842 Allow `display-time-mail-function' to return nil (bug#7158).
8843 Fix suggested by Detlev Zundel.
8844
8845 * vc/diff.el (diff): Clarify the order the file names are read
8846 (bug#7111).
8847
8848 * mouse.el (mouse-set-region): Link to `mouse-drag-copy-region' in
8849 the doc string (bug#7015).
8850
8851 * font-lock.el (font-lock-maximum-decoration): Mention what
8852 numeric levels mean (bug#6935).
8853
8854 * startup.el (initial-buffer-choice): Don't mention the `none'
8855 selection, which is against policy.
8856
8857 2011-07-14 Martin Rudalics <rudalics@gmx.at>
8858
8859 * window.el (display-buffer-normalize-special):
8860 Replace `dedicated' by `dedicate' to dedicate window (Bug#9072).
8861
8862 2011-07-14 Eli Zaretskii <eliz@gnu.org>
8863
8864 * subr.el (version<, version<=, version=): Mention "-CVS" and
8865 "-12345" alpha version numbers.
8866
8867 2011-07-14 Chong Yidong <cyd@stupidchicken.com>
8868
8869 * bindings.el: Add advertised binding for set-mark-command
8870 (Bug#5772).
8871
8872 2011-07-14 Chong Yidong <cyd@stupidchicken.com>
8873
8874 * bindings.el (mode-line-other-buffer):
8875 * bookmark.el (bookmark-bmenu-2-window):
8876 * bs.el (bs-cycle-next, bs-cycle-previous):
8877 * net/tramp-cmds.el (tramp-append-tramp-buffers): Revert to using
8878 switch-to-buffer.
8879
8880 * net/tramp-compat.el (tramp-compat-pop-to-buffer-same-window):
8881 Delete.
8882
8883 2011-07-14 Juanma Barranquero <lekktu@gmail.com>
8884
8885 * follow.el (follow-debug-message, follow-redisplay):
8886 * jka-cmpr-hook.el (with-auto-compression-mode):
8887 Fix typos in docstrings.
8888
8889 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
8890
8891 * subr.el (with-silent-modifications): Clarify somewhat what the
8892 macro inhibits (bug#6525).
8893
8894 * simple.el (eval-expression): Note what it does if called
8895 interactively (bug#6495).
8896
8897 2011-07-13 Chong Yidong <cyd@stupidchicken.com>
8898
8899 * window.el (switch-to-buffer): New arg FORCE-SAME-WINDOW.
8900 Use pop-to-buffer buffer-or-name if it is nil.
8901
8902 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
8903 Remove switch-to-buffer.
8904
8905 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
8906
8907 * files.el (make-directory): Clarify that an error will be raised
8908 if there's an error (bug#6397).
8909
8910 * startup.el (initial-buffer-choice): Add `none' as a choice
8911 (bug#6234).
8912
8913 * subr.el (add-hook): Clarify section about buffer-local hooks
8914 (bug#6218).
8915
8916 * dired.el (dired-flagged): Clarify doc string (bug#6117).
8917
8918 2011-07-13 Juanma Barranquero <lekktu@gmail.com>
8919
8920 * tabify.el (untabify): Preserve the current column so that point
8921 doesn't move (bug#6032).
8922
8923 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
8924
8925 * progmodes/cperl-mode.el (cperl-syntaxify-by-font-lock):
8926 Rewrite to avoid awkward possessive "s" (bug#5986).
8927
8928 2011-07-13 Glenn Morris <rgm@gnu.org>
8929
8930 * dired.el (dired-use-ls-dired): Doc fix. (Bug#9039).
8931 (dired-insert-directory): Give a message the first time
8932 if ls is found not to support --dired.
8933
8934 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
8935
8936 * simple.el (toggle-truncate-lines): Clarify what is toggled
8937 (bug#5580). Text by Drew Adams.
8938
8939 2011-07-13 Chong Yidong <cyd@stupidchicken.com>
8940
8941 * simple.el (blink-matching-open): Make the error message from the
8942 last change less verbose.
8943
8944 2011-07-13 Dan Nicolaescu <dann@ics.uci.edu>
8945
8946 * font-lock.el (font-lock-comment-face): Use the high contrast
8947 "yellow" color for font-lock-comment-face on low color terminals
8948 using a dark background color (bug#4221).
8949
8950 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
8951
8952 * dired.el (dired-insert-set-properties): Make the doc string
8953 reflect what it does now (bug#5325).
8954
8955 * simple.el (blink-matching-open): Say that we were unable to find
8956 the match within the limit, if we're limited (bug#5122).
8957
8958 * international/mule-cmds.el (prefer-coding-system): Add an
8959 example (bug#4869).
8960
8961 * progmodes/etags.el (tags-search): Document `file-list-form'
8962 (bug#4731).
8963
8964 2011-07-13 Lawrence Mitchell <wence@gmx.li>
8965
8966 * net/browse-url.el (browse-url-default-browser)
8967 (browse-url-browser-function): Make the default browser choice a
8968 bit more logical (bug#4300). Also clean up the doc string.
8969
8970 2011-07-13 Juanma Barranquero <lekktu@gmail.com>
8971
8972 * bindings.el (completion-ignored-extensions): Add OpenMCL/Clozure
8973 binary endings (bug#4440).
8974
8975 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
8976
8977 * info.el (info-insert-file-contents): Inhibit jka-compr messages,
8978 which can be pretty annoying (bug#8971).
8979
8980 * jka-compr.el (jka-compr-verbose): New variable, and use
8981 throughout (bug#8971).
8982
8983 * info.el (Info-find-file): Fall back on the installation
8984 directory if we can't find the info node anywhere else.
8985
8986 2011-07-13 Sergei Organov <osv@javad.com> (tiny change)
8987
8988 * vc/vc.el (vc-revert-file):
8989 Don't set file time-stamp in the past. (Bug#5181)
8990
8991 2011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
8992
8993 * files.el (after-find-file): Give a better error message when
8994 trying to find a symlink that points to a file that doesn't exist
8995 (bug#4398).
8996
8997 * progmodes/cc-vars.el: Remove (probably) misleading comment
8998 (bug#4396).
8999
9000 2011-07-12 Johan Bockgård <bojohan@gnu.org>
9001
9002 * mouse-sel.el (mouse-sel-primary-overlay): Use the `region' face.
9003
9004 2011-07-12 Chong Yidong <cyd@stupidchicken.com>
9005
9006 * mouse-sel.el: Hack restoring functionality, while keeping
9007 compatibility with 2010-07-03 changes to mouse selection.
9008 (mouse-sel-primary-overlay): New var.
9009 (mouse-sel-selection-alist): Use it.
9010 (mouse-sel-mode): Doc fix; remove points that are default features
9011 of mouse.el.
9012
9013 2011-07-12 Johan Bockgård <bojohan@gnu.org>
9014
9015 * progmodes/compile.el (compilation-error-regexp-alist-alist):
9016 Fix previous fix (bug#2490).
9017
9018 2011-07-12 Roland Winkler <winkler@gnu.org>
9019
9020 * textmodes/bibtex.el (bibtex-initialize):
9021 Use pop-to-buffer-same-window.
9022 (bibtex-search-entries): Fix interactive call.
9023
9024 2011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
9025
9026 * progmodes/compile.el (compilation-error-regexp-alist-alist):
9027 Fontise bytecomp Error lines more correctly (bug#2490).
9028 Fix suggested by Johan Bockgård.
9029
9030 * subr.el (remove-duplicates): Remove; `delete-dups' is sufficient.
9031
9032 * dired-x.el (dired-guess-default): Use `delete-dups'.
9033
9034 2011-07-12 Chong Yidong <cyd@stupidchicken.com>
9035
9036 * dired.el (dired-mark-prompt):
9037 * dired-aux.el (dired-read-shell-command): Doc fix.
9038
9039 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
9040
9041 * mail/sendmail.el (sendmail-query-once):
9042 Use `customize-save-variable' unconditionally, now that it works under
9043 emacs -Q.
9044
9045 * mail/smtpmail.el (smtpmail-query-smtp-server): Ditto.
9046
9047 * cus-edit.el (custom-file): Take an optional no-error variable.
9048 (customize-save-variable): Set the variable, and give a warning if
9049 running under "emacs -q".
9050
9051 2011-07-11 Juanma Barranquero <lekktu@gmail.com>
9052
9053 * loadhist.el (unload-feature-special-hooks):
9054 Add `auto-coding-functions', `fill-nobreak-predicate' and
9055 `find-directory-functions' (bug#5327).
9056
9057 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
9058
9059 * vc/ediff.el (ediff-patch-file): Clarify doc string (bug#3138).
9060
9061 * cus-edit.el (custom-guess-name-alist): -alist variables should
9062 use the `alist' type (bug#3120). Suggested by Drew Adams.
9063
9064 * printing.el: Add documentation to all the `pr-toggle-' commands.
9065
9066 2011-07-11 Leo Liu <sdl.web@gmail.com>
9067
9068 * files.el (toggle-read-only): Only do the `C-x C-q' warning on VC
9069 backends where it makes sense (bug#2623).
9070
9071 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
9072
9073 * dired-x.el (dired-guess-default): Remove duplicate shell command
9074 entries (bug#2028).
9075 (dired-guess-default): Fix grammar in doc string (bug#2028).
9076 (dired-guess-shell-alist-user): Clarify the example a bit (bug#2030).
9077
9078 * subr.el (remove-duplicates): New conveniency function.
9079
9080 2011-07-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
9081
9082 * tool-bar.el (tool-bar-mode): Clarify positive/negative arguments
9083 (bug#1526).
9084
9085 2011-07-10 Martin Rudalics <rudalics@gmx.at>
9086
9087 * window.el (display-buffer-normalize-default): Don't invert
9088 meaning of even-window-heights. Reported by Eli Zaretskii
9089 <eliz@gnu.org>.
9090
9091 2011-07-10 Bob Rogers <rogers@rgrjr.dyndns.org>
9092
9093 * vc/vc.el (vc-diff-internal): Fix race condition (Bug#1256).
9094
9095 2011-07-10 Chong Yidong <cyd@stupidchicken.com>
9096
9097 * window.el (display-buffer): Fix arguments to
9098 display-buffer-reuse-window in last change.
9099
9100 * faces.el (link): Use a less saturated blue on light backgrounds.
9101
9102 * startup.el (fancy-startup-text, fancy-about-text)
9103 (fancy-startup-tail): Use font-lock faces, for background safety.
9104
9105 2011-07-09 Bob Nnamtrop <bobnnamtrop@gmail.com> (tiny change)
9106
9107 * emulation/viper-cmd.el (viper-change-state-to-vi):
9108 Limit triggering of abbrev expansion (Bug#9038).
9109
9110 2011-07-09 Martin Rudalics <rudalics@gmx.at>
9111
9112 * window.el (display-buffer-default-specifiers): Remove.
9113 (display-buffer-macro-specifiers): Remove default specifiers.
9114 (display-buffer-alist): Default to nil.
9115 (display-buffer-reuse-window): New optional argument other-window.
9116 (display-buffer-pop-up-window): Allow splitting internal
9117 windows. Check whether a live window was created.
9118 (display-buffer-other-window-means-other-frame)
9119 (display-buffer-normalize-arguments): Rename to
9120 display-buffer-normalize-argument and rewrite. Set the
9121 other-window specifier.
9122 (display-buffer-normalize-special): New function.
9123 (display-buffer-normalize-options): Rename to
9124 display-buffer-normalize-default and rewrite.
9125 (display-buffer-normalize-options-inhibit): Remove.
9126 (display-buffer-normalize-specifiers): Rewrite.
9127 (display-buffer): Process other-window specifier and call
9128 display-buffer-reuse-window with it. Emulate Emacs 23 behavior
9129 more faithfully.
9130 (pop-up-windows, even-window-heights): Restore Emacs 23 default values.
9131 (display-buffer-alist-set): Don't handle 'unset default values.
9132 (display-buffer-in-window, display-buffer-alist-set):
9133 Replace symbol "dedicated" by "dedicate". Reported by Tassilo Horn
9134 <tassilo@member.fsf.org>.
9135
9136 2011-07-09 Leo Liu <sdl.web@gmail.com>
9137
9138 * register.el (insert-register): Restore accidental change on
9139 2011-06-26. (Bug#9028)
9140
9141 2011-07-09 Glenn Morris <rgm@gnu.org>
9142
9143 * subr.el (remq): Handle the empty list. (Bug#9024)
9144
9145 2011-07-08 Andreas Schwab <schwab@linux-m68k.org>
9146
9147 * mail/sendmail.el (send-mail-function): No longer delay custom
9148 initialization.
9149 * custom.el (custom-initialize-delay): Doc fix.
9150
9151 2011-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
9152
9153 * abbrev.el (expand-abbrev): Try to preserve point (bug#5805).
9154
9155 2011-07-08 Michael Albinus <michael.albinus@gmx.de>
9156
9157 * net/tramp-sh.el (tramp-sh-handle-start-file-process): Use a
9158 human-friendly prompt.
9159
9160 2011-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
9161
9162 * vc/vc-bzr.el (vc-bzr-revision-keywords): Remove svn, it's only
9163 provided by a particular plugin.
9164
9165 2011-07-08 Lars Magne Ingebrigtsen <larsi@gnus.org>
9166
9167 * mail/sendmail.el (sendmail-query-once): If we aren't allowed to
9168 save customizations (with "emacs -Q"), just set the variable
9169 instead of erroring out.
9170
9171 * mail/smtpmail.el (smtpmail-query-smtp-server): Ditto.
9172
9173 2011-07-08 Juri Linkov <juri@jurta.org>
9174
9175 * arc-mode.el (archive-zip-expunge, archive-zip-update)
9176 (archive-zip-update-case): Use 7z if found by `executable-find'.
9177 The order of searching the available programs is the same as in
9178 `archive-zip-extract' (bug#8968).
9179
9180 2011-07-07 Chong Yidong <cyd@stupidchicken.com>
9181
9182 * menu-bar.el (menu-bar-line-wrapping-menu): Revert last change.
9183 (menu-bar-options-menu): Tweak descriptions.
9184
9185 2011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
9186
9187 * menu-bar.el (menu-bar-line-wrapping-menu): Make all the Options
9188 menu items into verb phrases (bug#1421). Also refill to fit under
9189 80 columns.
9190
9191 2011-07-07 Chong Yidong <cyd@stupidchicken.com>
9192
9193 * info.el (info, Info-read-node-name-2, Info-read-node-name-1)
9194 (Info-read-node-name): Doc fix (Bug#1084).
9195
9196 * thingatpt.el (forward-thing, bounds-of-thing-at-point)
9197 (thing-at-point, beginning-of-thing, end-of-thing, in-string-p)
9198 (end-of-sexp, beginning-of-sexp)
9199 (thing-at-point-bounds-of-list-at-point, forward-whitespace)
9200 (forward-symbol, forward-same-syntax, word-at-point)
9201 (sentence-at-point): Doc fix (Bug#1144).
9202
9203 2011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
9204
9205 * info.el (Info-mode-map): Remove S-TAB binding, since [backtab]
9206 should cover it (bug#1281).
9207
9208 * cus-edit.el (custom-show): Mark as obsolete.
9209
9210 * net/network-stream.el (network-stream-open-starttls): If GnuTLS
9211 negotiation fails, then possibly try again with a non-encrypted
9212 connection (bug#9017).
9213
9214 * mail/smtpmail.el (smtpmail-stream-type): Note that `plain' can
9215 be used.
9216
9217 2011-07-07 Richard Stallman <rms@gnu.org>
9218
9219 * mail/rmail.el (rmail-next-error-move): Use `compilation-message'
9220 property, and handle its changed format.
9221 Look for the correct line number.
9222 Use file's line contents (but not past first =) to find
9223 correct line in message.
9224
9225 2011-07-07 Kenichi Handa <handa@m17n.org>
9226
9227 * international/characters.el (build-unicode-category-table):
9228 Delete it.
9229 (unicode-category-table): Set it by unicode-property-table-internal.
9230
9231 * international/mule-cmds.el (char-code-property-alist): Move to
9232 to src/chartab.c.
9233 (get-char-code-property): Call unicode-property-table-internal to
9234 load a file. Call get-unicode-property-internal where necessary.
9235 (put-char-code-property): Call unicode-property-table-internal to
9236 load a file. Call put-unicode-property-internal where necessary.
9237 put-unicode-property-internal where necessary.
9238 (char-code-property-description):
9239 Call unicode-property-table-internal to load a file.
9240
9241 * international/charprop.el:
9242 * international/uni-bidi.el:
9243 * international/uni-category.el:
9244 * international/uni-combining.el:
9245 * international/uni-comment.el:
9246 * international/uni-decimal.el:
9247 * international/uni-decomposition.el:
9248 * international/uni-digit.el:
9249 * international/uni-lowercase.el:
9250 * international/uni-mirrored.el:
9251 * international/uni-name.el:
9252 * international/uni-numeric.el:
9253 * international/uni-old-name.el:
9254 * international/uni-titlecase.el:
9255 * international/uni-uppercase.el: Regenerate.
9256
9257 * loadup.el: Load international/charprop.el before
9258 international/characters.
9259
9260 2011-07-07 Chong Yidong <cyd@stupidchicken.com>
9261
9262 * window.el (next-buffer, previous-buffer): Signal an error if
9263 called from a minibuffer window.
9264
9265 * bindings.el: Revert 2011-07-04 change.
9266
9267 2011-07-06 Richard Stallman <rms@gnu.org>
9268
9269 * mail/rmailmm.el (rmail-mime-process): Use markers for buf positions.
9270 (rmail-mime-insert-bulk, rmail-mime-insert-text):
9271 Treat markers like ints.
9272 (rmail-mime-entity): Doc fix.
9273
9274 2011-07-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
9275
9276 * mail/smtpmail.el (smtpmail-default-smtp-server): Made into a
9277 defcustom again for backwards compatibility.
9278
9279 * simple.el (shell-command-on-region): Fill.
9280
9281 * dired-aux.el (dired-kill-line): Add a doc string.
9282
9283 * dabbrev.el (dabbrev-abbrev-char-regexp): Note that nil defaults
9284 to "\\sw\\|\\s_" (bug#358).
9285
9286 * dired.el (dired-mode): Clarify "unmark or unflag" (bug#8770).
9287 (dired-unmark-backward): Ditto.
9288 (dired-flag-backup-files): Ditto.
9289
9290 * dired-x.el (dired-mark-sexp): Ditto.
9291
9292 2011-07-06 Richard Stallman <rms@gnu.org>
9293
9294 * mail/rmailmm.el: Give entity a new slot, TRUNCATED.
9295 (rmail-mime-entity): New arg TRUNCATED.
9296 (rmail-mime-entity-truncated, rmail-mime-entity-set-truncated):
9297 New functions.
9298 (rmail-mime-save): Warn if entity is truncated.
9299 (rmail-mime-toggle-hidden): Likewise, for showing.
9300 (rmail-mime-process-multipart): Record when an entity is truncated.
9301
9302 * mail/rmailmm.el (rmail-search-mime-message): Don't get confused
9303 if ENTITY is a string.
9304
9305 2011-07-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
9306
9307 * emacs-lisp/lisp-mode.el (eval-defun-1): Update the documentation
9308 of faces when `M-C-x'-ing their definitions (bug#8378).
9309 Also clean up the code slightly.
9310
9311 * progmodes/grep.el (rgrep): Don't bind `process-connection-type',
9312 because that makes the colors go away.
9313
9314 * mail/sendmail.el (send-mail-function): Change the default to
9315 `sendmail-query-once'.
9316 (sendmail-query-once): Add an autoload cookie.
9317
9318 * net/network-stream.el (network-stream-open-starttls): Try using
9319 a plain connection even if the server offered STARTTLS, and we
9320 kinda wanted to use it, if Emacs doesn't have any STARTTLS
9321 capability. This should make smtpmail.el work in slightly more
9322 configurations.
9323
9324 2011-07-06 Michael Albinus <michael.albinus@gmx.de>
9325
9326 * net/tramp-compat.el (tramp-compat-pop-to-buffer-same-window):
9327 New defun.
9328 * net/tramp-cmds.el (tramp-append-tramp-buffers): Use it.
9329
9330 2011-07-06 Michael R. Mauger <mmaug@yahoo.com>
9331
9332 * progmodes/sql.el: Version 3.0
9333 (sql-product-alist): Add product :completion-object,
9334 :completion-column, and :statement attributes.
9335 (sql-mode-menu, sql-interactive-mode-map): Fix List entries.
9336 (sql-mode-syntax-table): Mark all punctuation.
9337 (sql-font-lock-keywords-builder): Temporarily remove fallback on
9338 ansi keywords.
9339 (sql-regexp-abbrev, sql-regexp-abbrev-list): New functions.
9340 (sql-mode-oracle-font-lock-keywords): Improve.
9341 (sql-oracle-show-reserved-words): New function for development.
9342 (sql-product-font-lock): Simplify for source code buffers.
9343 (sql-product-syntax-table, sql-product-font-lock-syntax-alist):
9344 New functions.
9345 (sql-highlight-product): Set product specific syntax table.
9346 (sql-mode-map): Add statement movement functions.
9347 (sql-ansi-statement-starters, sql-oracle-statement-starters):
9348 New variable.
9349 (sql-statement-regexp, sql-beginning-of-statement)
9350 (sql-end-of-statement, sql-signum): New functions.
9351 (sql-buffer-live-p, sql=find-sqli-buffer): Add CONNECTION parameter.
9352 (sql-show-sqli-buffer): Bug fix.
9353 (sql-interactive-mode): Store connection data as buffer local.
9354 (sql-connect): Add NEW-NAME parameter. Redesign interaction
9355 with sql-interactive-mode.
9356 (sql-save-connection): Save buffer local settings.
9357 (sql-connection-menu-filter): Change menu entry name.
9358 (sql-product-interactive): Bug fix.
9359 (sql-preoutput-hold): New variable.
9360 (sql-interactive-remove-continuation-prompt): Bug fixes.
9361 (sql-debug-redirect): New variable.
9362 (sql-str-literal): New function.
9363 (sql-redirect, sql-redirect-one, sql-redirect-value, sql-execute):
9364 Redesign.
9365 (sql-oracle-save-settings, sql-oracle-restore-settings)
9366 (sql-oracle-list-all, sql-oracle-list-table): New functions.
9367 (sql-completion-object, sql-completion-column)
9368 (sql-completion-sqlbuf): New variables.
9369 (sql-build-completions-1, sql-build-completions)
9370 (sql-try-completion): New functions.
9371 (sql-read-table-name): Use them.
9372 (sql-contains-names): New buffer local variable.
9373 (sql-list-all, sql-list-table): Use it.
9374 (sql-oracle-completion-types): New variable.
9375 (sql-oracle-completion-object, sql-sqlite-completion-object)
9376 (sql-postgres-completion-object): New functions.
9377
9378 2011-07-06 Glenn Morris <rgm@gnu.org>
9379
9380 * window.el (pop-to-buffer): Doc fix.
9381
9382 2011-07-06 Markus Heiser <markus.heiser@darmarit.de> (tiny change)
9383
9384 * progmodes/gud.el (gud-pdb-marker-regexp): Accept \r char (Bug#5653).
9385
9386 2011-07-06 Chong Yidong <cyd@stupidchicken.com>
9387
9388 * window.el (special-display-popup-frame): Doc fix (Bug#8853).
9389
9390 * info.el (Info-directory-toc-nodes): Minor doc fix (Bug#8833).
9391
9392 2011-07-05 Chong Yidong <cyd@stupidchicken.com>
9393
9394 * button.el (button): Inherit from link face. Suggested by Dan
9395 Nicolaescu.
9396
9397 2011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
9398
9399 * progmodes/gdb-mi.el: Fit in 80 columns.
9400 (gdb-setup-windows, gdb-restore-windows): Avoid other-window and
9401 switch-to-buffer.
9402
9403 * progmodes/which-func.el (which-func-ff-hook): Don't output a message
9404 if imenu is simply not configured (bug#8941).
9405
9406 2011-07-05 Ken Manheimer <ken.manheimer@gmail.com>
9407
9408 * allout.el (allout-post-undo-hook): New allout outline-change
9409 event hook to signal undo activity.
9410 (allout-post-command-business): Run allout-post-undo-hook if an
9411 undo just occurred.
9412 (allout-after-copy-or-kill-hook, allout-mode): Minor docstring changes.
9413 * allout-widgets.el (allout-widgets-after-undo-function):
9414 Ensure the integrity of the current item's decoration after it has been
9415 in the vicinity of an undo.
9416 (allout-widgets-mode): Include allout-widgets-after-undo-function
9417 on the new allout-post-undo-hook.
9418
9419 2011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
9420
9421 * emacs-lisp/lisp-mode.el (lisp-interaction-mode-abbrev-table):
9422 Let define-derived-mode define it.
9423 * emacs-lisp/derived.el (define-derived-mode): Try to avoid creating
9424 cycles of abbrev-table inheritance (bug#8998).
9425
9426 2011-07-05 Roland Winkler <winkler@gnu.org>
9427
9428 * textmodes/bibtex.el: Add support for biblatex.
9429 (bibtex-BibTeX-entry-alist, bibtex-biblatex-entry-alist)
9430 (bibtex-BibTeX-field-alist, bibtex-biblatex-field-alist)
9431 (bibtex-dialect-list, bibtex-dialect, bibtex-no-opt-remove-re)
9432 (bibtex-entry-alist, bibtex-field-alist): New variables.
9433 (bibtex-entry-field-alist): Obsolete alias for
9434 bibtex-BibTeX-entry-alist.
9435 (bibtex-entry-alist, bibtex-field-alist): New widgets.
9436 (bibtex-set-dialect): New command.
9437 (bibtex-entry-type, bibtex-entry-head)
9438 (bibtex-entry-maybe-empty-head, bibtex-any-valid-entry-type):
9439 Bind via bibtex-set-dialect.
9440 (bibtex-Article, bibtex-Book, bibtex-Booklet, bibtex-InBook)
9441 (bibtex-InCollection, bibtex-InProceedings, bibtex-Manual)
9442 (bibtex-MastersThesis, bibtex-Misc, bibtex-PhdThesis)
9443 (bibtex-Proceedings, bibtex-TechReport, bibtex-Unpublished):
9444 Define via bibtex-set-dialect.
9445 (bibtex-name-in-field, bibtex-remove-OPT-or-ALT):
9446 Obey bibtex-no-opt-remove-re.
9447 (bibtex-vec-push, bibtex-vec-incr): New functions.
9448 (bibtex-format-entry, bibtex-field-list)
9449 (bibtex-print-help-message, bibtex-validate)
9450 (bibtex-search-entries): Use new format of bibtex-entry-alist.
9451
9452 2011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
9453
9454 * progmodes/compile.el (compilation-goto-locus):
9455 * net/tramp-cmds.el (tramp-append-tramp-buffers):
9456 * bs.el (bs-cycle-next, bs-cycle-previous):
9457 * bookmark.el (bookmark-bmenu-list, bookmark-bmenu-2-window):
9458 * bindings.el (mode-line-other-buffer):
9459 * autoinsert.el (auto-insert):
9460 * arc-mode.el (archive-extract):
9461 * abbrev.el (edit-abbrevs): Fix some uses of switch-to-buffer.
9462
9463 2011-07-05 Juanma Barranquero <lekktu@gmail.com>
9464
9465 * emacs-lock.el (emacs-lock-mode): Fix typo in variable name.
9466 Fix check of `emacs-lock-unlockable-modes'.
9467 Coerce true values of `emacs-lock--try-unlocking' to t.
9468
9469 2011-07-05 Juanma Barranquero <lekktu@gmail.com>
9470
9471 * obsolete/old-emacs-lock.el: Rename from emacs-lock.el.
9472 * emacs-lock.el: New file.
9473
9474 2011-07-05 Julien Danjou <julien@danjou.info>
9475
9476 * textmodes/rst.el (rst-define-level-faces): Use `facep' rather
9477 than `boundp' to check if face is set.
9478
9479 2011-07-05 Juanma Barranquero <lekktu@gmail.com>
9480
9481 * register.el (registerv-make):
9482 * window.el (window-min-height): Fix typos in docstrings.
9483
9484 2011-07-05 Jan Djärv <jan.h.d@swipnet.se>
9485
9486 * dynamic-setting.el (dynamic-setting-handle-config-changed-event):
9487 Update doc string.
9488
9489 2011-07-04 Juanma Barranquero <lekktu@gmail.com>
9490
9491 * server.el (server-execute): Catch quit and call
9492 `server-return-error' to pass the error back to emacsclient and
9493 close the connection (bug#8942).
9494
9495 2011-07-04 Ken Manheimer <ken.manheimer@gmail.com>
9496
9497 * allout.el (allout-encrypt-unencrypted-on-saves): Do not provide
9498 insecure exception for current topic. Also note that auto-saves
9499 are handled differently.
9500
9501 (allout-auto-save-temporarily-disabled, allout-just-did-undo):
9502 State variables for tracking auto-save inhibition situation.
9503
9504 (allout-write-contents-hook-handler): Rename from
9505 'allout-write-file-hook-handler', and describe how it depends on
9506 write-contents-functions sensitivity to non-nil value to prevent
9507 file write.
9508
9509 (allout-auto-save-hook-handler): Remove. auto-save does not check
9510 this in individual buffers, only in the starting buffer, so this
9511 is not the right way for us to inhibit auto-save in a buffer
9512 according to its condition.
9513
9514 (allout-mode): Use new allout-write-contents-hook-handler, and
9515 only with write-contents-functions. Remove auto-save provisions -
9516 they're implemented elsewhere.
9517
9518 (allout-before-change-handler): If undo is in progress, note that
9519 for attention of allout-post-command-business.
9520
9521 (allout-post-command-business): If the command we're following was
9522 an undo, check for change in the status of encrypted items and
9523 adjust auto-save inhibitions accordingly.
9524
9525 (allout-toggle-subtree-encryption): Adjust auto-save inhibition
9526 according to whether there are or aren't any plain-text topics
9527 pending encryption.
9528
9529 (allout-inhibit-auto-save-info-for-decryption):
9530 Adjust buffer-saved-size and some allout state to inhibit auto-saves
9531 if there are plain-text topics pending encryption.
9532
9533 (allout-maybe-resume-auto-save-info-after-encryption): Adjust
9534 buffer-saved-size and some allout state to not inhibit auto-saves
9535 if there are no longer any plain-text topics pending encryption.
9536
9537 (allout-next-topic-pending-encryption, allout-encrypt-decrypted):
9538 No longer provide for exemption of the current topic.
9539
9540 2011-07-04 Juri Linkov <juri@jurta.org>
9541
9542 Add 7z operations to delete and save changed members (bug#8968).
9543 * arc-mode.el (archive-7z-expunge, archive-7z-update):
9544 New defcustoms.
9545 (archive-7z-write-file-member): New function.
9546 (archive-7z-summarize): Fix the number of dashes in the
9547 listing output.
9548
9549 2011-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
9550
9551 * pcmpl-linux.el (pcomplete-pare-list): Re-add, from pcomplete.el
9552 (bug#8958).
9553
9554 2011-07-04 Chong Yidong <cyd@stupidchicken.com>
9555
9556 * bindings.el: Ignore next-buffer and previous-buffer in
9557 minibuffer-local-map.
9558
9559 * font-lock.el (font-lock-builtin-face): Change light background
9560 color to dark slate blue (Bug#6693).
9561
9562 2011-07-04 Wang Diancheng <dcwang@kingbase.com.cn> (tiny change)
9563
9564 * progmodes/gdb-mi.el (gdb): Use completion-at-point.
9565
9566 2011-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
9567
9568 * files.el (find-file): Use pop-to-buffer-same-window (bug#8911).
9569 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
9570 Add switch-to-buffer.
9571
9572 2011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
9573
9574 * isearch.el (isearch-search-fun-function): Clarify further the
9575 meaning of the function returned.
9576
9577 2011-07-04 Michael Albinus <michael.albinus@gmx.de>
9578
9579 * net/tramp-cmds.el (tramp-cleanup-this-connection): New command.
9580
9581 * net/tramp-sh.el (tramp-color-escape-sequence-regexp): New defconst.
9582 (tramp-sh-handle-insert-directory, tramp-convert-file-attributes):
9583 Use it.
9584 (tramp-remote-path): Add "/bin" and "/usr/bin". On busyboxes,
9585 `tramp-default-remote-path' does not exist.
9586 (tramp-send-command-and-read): New optional argument NOERROR.
9587 (tramp-open-connection-setup-interactive-shell)
9588 (tramp-get-remote-path, tramp-get-remote-stat): Use it.
9589 (tramp-get-remote-readlink): Do not mask with `ignore-errors'.
9590 (tramp-process-sentinel): Flush also process' connection property.
9591 (tramp-sh-handle-start-file-process): Do not set process
9592 sentinel. It is done now ...
9593 (tramp-maybe-open-connection): ... here. (Bug#8929)
9594
9595 2011-07-04 MON KEY <monkey@sandpframing.com>
9596
9597 * play/animate.el (animate-string): Doc fixes and allow changing
9598 the buffer name (bug#5417).
9599
9600 2011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
9601
9602 * play/animate.el (animation-buffer-name): Rename from *animate*.
9603
9604 2011-07-04 Paul Eggert <eggert@cs.ucla.edu>
9605
9606 * emacs-lisp/timer.el: Use time-date fns rather than rolling our own.
9607 This is simpler and helps future-proof the code.
9608 (timer-until): Use time-subtract and float-time.
9609 (timer--time-less-p): Use time-less-p.
9610
9611 2011-07-04 Juanma Barranquero <lekktu@gmail.com>
9612
9613 * type-break.el (timep): Use the value of `float-time' to avoid a
9614 byte-compiler warning.
9615
9616 * server.el (server-eval-and-print): Return any result, even nil.
9617
9618 2011-07-03 Paul Eggert <eggert@cs.ucla.edu>
9619
9620 * type-break.el: Accept time formats that the builtins accept.
9621 (timep, type-break-time-difference): Accept any format that
9622 float-time accepts, rather than insisting on (HIGH LOW USECS) format.
9623 This is simpler and helps future-proof the code.
9624 (type-break-time-difference): Round rather than ignoring
9625 subseconds components.
9626
9627 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
9628
9629 * info.el (Info-apropos-matches): Make non-interactive, since it
9630 doesn't seem to do anything useful as a command (bug#8829).
9631
9632 2011-07-03 Chong Yidong <cyd@stupidchicken.com>
9633
9634 * frame.el (frame-background-mode, frame-set-background-mode):
9635 Move from faces.el.
9636 (frame-default-terminal-background): New function.
9637
9638 * custom.el (custom-push-theme): Don't record faces in `changed'
9639 theme; this doesn't work correctly for per-frame face settings.
9640 (disable-theme): Use face-set-after-frame-default to reset faces.
9641 (custom--frame-color-default): New function.
9642
9643 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
9644
9645 * dired.el (dired-flagging-regexp): Remove unused variable
9646 (bug#8769).
9647
9648 2011-03-29 Kevin Ryde <user42@zip.com.au>
9649
9650 * progmodes/compile.el (compilation-error-regexp-alist-alist):
9651 `perl-Test2' extend to match possible "fail #N" rep count
9652 (bug#8377).
9653
9654 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
9655
9656 * mail/feedmail.el (feedmail-buffer-to-smtpmail):
9657 `smtpmail-via-smtp' now returns the error instead of nil.
9658
9659 * isearch.el (isearch-search-fun-function): Clarify the doc string
9660 (bug#8101).
9661
9662 2011-07-03 Richard Kim <emacs18@gmail.com> (tiny change)
9663
9664 * textmodes/texnfo-upd.el (texinfo-insert-menu): Don't insert
9665 unnecessary spaces (bug#8987).
9666
9667 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
9668
9669 * net/network-stream.el (open-network-stream): Use the
9670 :end-of-capability command thoughout.
9671
9672 2011-07-03 Wolfgang Jenkner <wjenkner@inode.at> (tiny change)
9673
9674 * net/network-stream.el (open-network-stream): Add the
9675 :end-of-capability command parameter, used by pop3.el.
9676
9677 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
9678
9679 * dired.el (dired-map-over-marks): Refill the doc string (bug#6814).
9680
9681 * fringe.el (fringe-query-style): Remove redundant text " (type ?
9682 for list)" (bug#6475).
9683
9684 * files.el (file-expand-wildcards): Ignore non-readable
9685 sub-directories while trying to find matches instead of signaling
9686 an error (bug#6297).
9687
9688 * man.el (Man-reference-regexp): Allow matching possible
9689 word-wrapped references (bug#6289).
9690
9691 * vc/vc.el (vc-modify-change-comment): Change *VC-log* to *vc-log*
9692 for consistency with the other vc buffers (bug#6197).
9693 (vc-checkin): Ditto.
9694
9695 * vc/vc-arch.el: Fix comments to match the *VC-log* name change.
9696
9697 * longlines.el (longlines-mode): Document what ARG does (bug#6150).
9698
9699 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
9700
9701 * custom.el (defcustom): Clarify that :set is only used in the
9702 Customize user interface (bug#6089).
9703
9704 * progmodes/flymake.el (flymake-mode): If the buffer isn't
9705 associated with a file, refuse to run instead of erroring out
9706 (bug#6084).
9707
9708 * textmodes/fill.el (fill-region): Remove the "Ordinarily" from
9709 the doc string, since it appears that using `fill-column' always
9710 controls the width (bug#7845).
9711
9712 * simple.el (shell-command-on-region): Say where the error output
9713 went if `shell-command-default-error-buffer' is set (bug#6857).
9714
9715 2011-07-02 Ken Manheimer <ken.manheimer@gmail.com>
9716
9717 * allout.el (allout-yank-processing): Adjust cursor position for
9718 backwards-deleted space.
9719
9720 (allout-rebullet-heading): Register changes with
9721 allout-exposure-changed-hook, so the modified topic is properly
9722 decorated.
9723
9724 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
9725
9726 * minibuffer.el (completion-in-region): Document PREDICATE
9727 (bug#7136).
9728
9729 * info-look.el (info-lookup-add-help): Clarify that ARGS is a list
9730 of keyword/argument pairs (bug#6904).
9731
9732 * replace.el (multi-occur):
9733 Mention `multi-occur-in-matching-buffers' in the doc string (bug#7566).
9734
9735 2011-07-02 Drew Adams <drew.adams@oracle.com>
9736
9737 * dired.el (dired-mark-if): Make the message about whether it's
9738 marking or unmarking clearer (bug#8523).
9739
9740 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
9741
9742 * disp-table.el (display-table-print-array): New function.
9743 (describe-display-table): Use it to print the vectors more pretty
9744 (Bug#8859).
9745
9746 2011-07-02 Martin Rudalics <rudalics@gmx.at>
9747
9748 * window.el (window-state-get-1): Don't assign clone numbers.
9749 Add clone-of item to list of window parameters.
9750 (window-state-put-2): Don't process clone numbers.
9751 (display-buffer-alist): Fix doc-string.
9752
9753 2011-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
9754
9755 * subr.el (remq): Don't allocate if it's not needed.
9756 (keymap--menu-item-binding, keymap--menu-item-with-binding)
9757 (keymap--merge-bindings): New functions.
9758 (keymap-canonicalize): Use them to refine the canonicalization.
9759 * minibuffer.el (minibuffer-local-completion-map)
9760 (minibuffer-local-must-match-map): Move initialization from C.
9761 (minibuffer-local-filename-completion-map): Move initialization from C;
9762 don't inherit from anything here.
9763 (minibuffer-local-filename-must-match-map): Make obsolete.
9764 (completing-read-default): Use make-composed-keymap to combine
9765 minibuffer-local-filename-completion-map with either
9766 minibuffer-local-must-match-map or
9767 minibuffer-local-filename-completion-map.
9768
9769 2011-07-01 Glenn Morris <rgm@gnu.org>
9770
9771 * type-break.el (type-break-time-sum): Use dolist.
9772
9773 * textmodes/flyspell.el (flyspell-word-search-backward):
9774 Replace CL function.
9775
9776 2011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
9777
9778 * mouse.el (mouse--strip-first-event): New function.
9779 (function-key-map): Use it to map fringe clicks to normal clicks
9780 by default.
9781
9782 * vc/vc-bzr.el (vc-bzr-revision-keywords): Update.
9783 (vc-bzr-revision-completion-table): Add support for annotate and date.
9784
9785 * emacs-lisp/derived.el (define-derived-mode): Make abbrev-table
9786 inherit from parent.
9787
9788 2011-07-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
9789
9790 * dired-aux.el (dired-diff): Doc fixup (bug#8816).
9791 (dired-show-file-type): Doc fixup (bug#8818).
9792
9793 * dired.el (dired-mode): Fix up the doc string as suggested by
9794 Drew Adams (bug#8817).
9795
9796 * progmodes/flymake.el (flymake-find-file-hook): Add an `autoload'
9797 cookie, since the manual says that it should be possible to add
9798 this function to `find-file-hook' (bug#8709).
9799
9800 2011-07-01 Teodor Zlatanov <tzz@lifelogs.com>
9801
9802 * progmodes/cfengine.el: Moved all cfengine3.el functionality
9803 here. Noted Ted Zlatanov as the maintainer.
9804 (cfengine-common-settings, cfengine-common-syntax): New functions
9805 to set up common things between `cfengine-mode' and
9806 `cfengine3-mode'.
9807 (cfengine3-mode): New mode.
9808 (cfengine3-defuns cfengine3-defuns-regex
9809 (cfengine3-class-selector-regex cfengine3-category-regex)
9810 (cfengine3-vartypes cfengine3-font-lock-keywords)
9811 (cfengine3-beginning-of-defun, cfengine3-end-of-defun)
9812 (cfengine3-indent-line): Add from cfengine3.el.
9813
9814 2011-07-01 Michael Albinus <michael.albinus@gmx.de>
9815
9816 * net/tramp.el (tramp-encoding-command-interactive): New defcustom.
9817
9818 * net/tramp-sh.el (tramp-maybe-open-connection): Use it.
9819
9820 2011-07-01 Martin Rudalics <rudalics@gmx.at>
9821
9822 * window.el (same-window-buffer-names, same-window-regexps)
9823 (same-window-p, special-display-frame-alist)
9824 (special-display-popup-frame, special-display-function)
9825 (special-display-buffer-names, special-display-regexps)
9826 (special-display-p, pop-up-frame-alist, pop-up-frame-function)
9827 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
9828 (split-window-preferred-function, split-height-threshold)
9829 (split-width-threshold, even-window-heights)
9830 (display-buffer-mark-dedicated, window-splittable-p)
9831 (split-window-sensibly, window-safely-shrinkable-p):
9832 Un-obsolete.
9833 (display-buffer): Don't spread args with function specifier
9834 because special-display-popup-frame won't like it.
9835
9836 2011-07-01 Paul Eggert <eggert@cs.ucla.edu>
9837
9838 Time-stamp simplifications and fixes.
9839 These improve accuracy slightly, and future-proof the code
9840 against some potential changes to current-time format.
9841
9842 * woman.el (woman-decode-buffer, WoMan-log-end): Log fractional secs
9843 by using time-since and float-time.
9844
9845 * vc/ediff-util.el (ediff-calc-command-time): Use time-since
9846 and float-time. Say "NNN.NNN seconds" rather than "NNN seconds
9847 + NNN microseconds".
9848
9849 * type-break.el (type-break-time-sum): Rewrite using time-add.
9850
9851 * play/hanoi.el (hanoi-current-time-float): Remove.
9852 All uses replaced by float-time.
9853
9854 * nxml/rng-maint.el (rng-time-function): Rewrite using time-subtract.
9855 This yields a more-accurate answer.
9856 (rng-time-to-float): Remove; no longer needed.
9857
9858 * emacs-lisp/timer.el (timer-relative-time): Use time-add.
9859
9860 * calendar/timeclock.el (timeclock-seconds-to-time):
9861 Defalias to seconds-to-time, since they're the same thing.
9862
9863 * emacs-lisp/elp.el (elp-elapsed-time):
9864 * emacs-lisp/benchmark.el (benchmark-elapse):
9865 * allout-widgets.el (allout-elapsed-time-seconds): Use float-time.
9866
9867 2011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
9868
9869 * window.el (bury-buffer): Don't iconify the only frame.
9870 (switch-to-buffer): Revert to Emacs<23 behavior, i.e. do not fallback
9871 to pop-to-buffer. Use pop-to-buffer-same-frame if you don't like that.
9872
9873 2011-07-01 Chong Yidong <cyd@stupidchicken.com>
9874
9875 * eshell/em-smart.el (eshell-smart-display-navigate-list):
9876 Add mouse-yank-primary.
9877
9878 2011-07-01 Teodor Zlatanov <tzz@lifelogs.com>
9879
9880 * progmodes/cfengine3.el: New file to support CFEngine 3.x.
9881
9882 2011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
9883
9884 * emacs-lisp/find-func.el (find-library--load-name): New fun.
9885 (find-library-name): Use it to find relative load names when provided
9886 absolute file name (bug#8803).
9887
9888 2011-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
9889
9890 * textmodes/flyspell.el (flyspell-word): Consider words that
9891 differ only in case as potential doublons (bug#5687).
9892
9893 * net/soap-client.el (soap-invoke, soap-wsdl-resolve-references):
9894 Remove two rather uninteresting debugging-like messages to make
9895 debbugs.el more silent.
9896
9897 * comint.el (comint-password-prompt-regexp): Accept "Response" as
9898 a password-like phrase.
9899
9900 2011-06-30 Masatake YAMATO <yamato@redhat.com>
9901
9902 * progmodes/cc-guess.el: New file.
9903
9904 * progmodes/cc-langs.el (c-mode-menu): Add "Style..." submenu.
9905
9906 * progmodes/cc-styles.el (cc-choose-style-for-mode): New function
9907 derived from `c-basic-common-init'.
9908
9909 * progmodes/cc-mode.el (top-level): Require cc-guess.
9910 (c-basic-common-init): Use `cc-choose-style-for-mode'.
9911
9912 2011-06-30 Lawrence Mitchell <wence@gmx.li>
9913
9914 * progmodes/js.el (js-mode): Don't stomp on global settings (bug#8933).
9915
9916 2011-06-30 Alan Mackenzie <acm@muc.de>
9917
9918 * progmodes/cc-engine.el (c-guess-continued-construct):
9919 Correct the handling of template-args-cont, particularly for when font
9920 lock is disabled. Name this case as "CASE G".
9921
9922 2011-06-30 Ken Manheimer <ken.manheimer@gmail.com>
9923
9924 * allout.el (allout-yank-processing): Fix injection of extra space
9925 between bullet and non-whitespace character in first topic when
9926 pasting, ensuring that the actual spacing in the pasted topic
9927 following the bullet char is preserved. This extra space was
9928 causing pasted encrypted topics to get a decrypted status even
9929 when the content was actually still encrypted. Now the decryption
9930 status from before the paste is preserved.
9931
9932 (allout-flag-region): Set all allout overlays so they evaporate
9933 when reduced to zero length (evanescent), to prevent overlay
9934 leakage.
9935
9936 2011-06-30 Glenn Morris <rgm@gnu.org>
9937
9938 * w32-fns.el (w32-charset-info-alist): Declare.
9939
9940 * find-dired.el (find-grep-options): Simplify.
9941
9942 * term/ns-win.el (ns-set-resource): Declare.
9943
9944 * ses.el (row, col): Declare dynamic variables honestly.
9945
9946 * textmodes/reftex-parse.el (index-tags): Declare.
9947
9948 2011-06-30 Chong Yidong <cyd@stupidchicken.com>
9949
9950 * cus-edit.el (customize-push-and-save): New function.
9951
9952 * files.el (hack-local-variables-confirm): Use it.
9953
9954 * custom.el (load-theme): New arg NO-CONFIRM.
9955 Use customize-push-and-save (Bug#8720).
9956 (custom-enabled-themes): Doc fix.
9957
9958 * cus-theme.el (customize-create-theme)
9959 (custom-theme-merge-theme): Callers to load-theme changed.
9960
9961 2011-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
9962
9963 * thingatpt.el (thing-at-point-short-url-regexp): Require that
9964 short URLs have at least one dot in them (bug #7614).
9965
9966 * progmodes/grep.el (rgrep): Bind `process-connection-type' to
9967 nil, because using a pty is apparently too slow (bug #895).
9968
9969 2011-06-29 Lars Magne Ingebrigtsen <larsi@gnus.org>
9970
9971 * mail/sendmail.el (sendmail-query-once): New function.
9972 (sendmail-query-once-function): New variable.
9973
9974 2011-06-29 Glenn Morris <rgm@gnu.org>
9975
9976 * files.el (auto-mode-alist): Add .f03, .f08 for f90-mode.
9977
9978 * ses.el (top-level): Require cl when compiling.
9979 (ses-set-localvars): Fix error statement.
9980 Call it at compile time to silence a storm of warnings.
9981
9982 2011-06-29 Martin Rudalics <rudalics@gmx.at>
9983
9984 * window.el (normalize-live-buffer): Rename to
9985 window-normalize-buffer.
9986 (normalize-live-frame): Rename to window-normalize-frame.
9987 (normalize-any-window): Rename to window-normalize-any-window.
9988 (normalize-live-window): Rename to window-normalize-live-window.
9989 (make-window-atom): Rename to window-make-atom.
9990 (window-resize-reset): Rename to window--resize-reset.
9991 (window-resize-reset-1): Rename to window--resize-reset-1.
9992 (resize-mini-window): Rename to window--resize-mini-window.
9993 (resize-subwindows-skip-p): Rename to
9994 window--resize-subwindows-skip-p.
9995 (resize-subwindows-normal): Rename to
9996 window--resize-subwindows-normal.
9997 (resize-subwindows): Rename to window--resize-subwindows.
9998 (resize-other-windows): Rename to window--resize-siblings.
9999 (resize-this-window): Rename to window--resize-this-window.
10000 (resize-root-window): Rename to window--resize-root-window.
10001 (resize-root-window-vertically): Rename to
10002 window--resize-root-window-vertically.
10003 (normalize-buffer-to-display): Rename to
10004 window-normalize-buffer-to-display.
10005 (normalize-buffer-to-switch-to): Rename to
10006 window-normalize-buffer-to-switch-to.
10007 Correspondingly update all callers of the functions listed
10008 above.
10009 (display-buffer-alist, display-buffer-normalize-arguments)
10010 (display-buffer-normalize-options, display-buffer)
10011 (display-buffer-alist-set): Use "function" instead of
10012 "fun-with-args".
10013
10014 2011-06-28 Chong Yidong <cyd@stupidchicken.com>
10015
10016 * mail/emacsbug.el (report-emacs-bug): Handle non-gnu bug
10017 addresses more clearly. Add hyperlinks for bug-gnu-emacs and
10018 debbugs.gnu.org. Mention acknowledgment email.
10019
10020 2011-06-28 Lars Magne Ingebrigtsen <larsi@gnus.org>
10021
10022 * mail/smtpmail.el (smtpmail-send-it): Leave off changing the
10023 buffer multibyteness, since it shouldn't matter.
10024
10025 2011-06-28 Martin Rudalics <rudalics@gmx.at>
10026
10027 * window.el (display-buffer-in-side-window): Handle dedicated
10028 windows as in display-buffer-reuse-window.
10029 (display-buffer-normalize-alist): Use value of override
10030 specifier.
10031 (display-buffer-normalize-specifiers): Use value of
10032 other-window-means-other-frame specifier.
10033 (display-buffer-alist): Rewrite some texts in widgets.
10034 (display-buffer): Spread arguments when calling function
10035 specified by fun-with-args.
10036
10037 2011-06-28 Deniz Dogan <deniz@dogan.se>
10038
10039 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
10040 Unnest `let'.
10041
10042 * textmodes/css-mode.el (css-font-lock-keywords): Fix grouped
10043 selectors (Bug#5732).
10044 (css-proprietary-nmstart-re): Use `regexp-opt'.
10045
10046 2011-06-27 Jari Aalto <jari.aalto@cante.net>
10047
10048 * eshell/em-ls.el: Display `ls -l' dates in ISO format (Bug#8440).
10049 (eshell-ls-date-format): New defcustom.
10050 (eshell-ls-file): Use it.
10051
10052 2011-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
10053
10054 * help-fns.el (describe-variable): Fix message for terminal-local vars.
10055
10056 2011-06-27 Katsumi Yamaoka <yamaoka@jpl.org>
10057
10058 * net/ange-ftp.el: Allow loading .gz files (Bug#6923).
10059 (ange-ftp-make-tmp-name): New arg.
10060 (ange-ftp-file-local-copy): Use it.
10061
10062 2011-06-27 Jambunathan K <kjambunathan@gmail.com>
10063
10064 * tar-mode.el (tar-untar-buffer): Set coding-system-for-write to
10065 no-conversion (Bug#8870).
10066
10067 2011-06-27 Martin Rudalics <rudalics@gmx.at>
10068
10069 * window.el (window-right, window-left, window-child)
10070 (window-child-count, window-last-child)
10071 (window-iso-combination-p, walk-window-tree-1)
10072 (window-atom-check-1, window-tree-1, delete-window)
10073 (window-state-get-1, display-buffer-even-window-sizes): Adapt to
10074 new naming conventions - window-vchild, window-hchild,
10075 window-next and window-prev are now called window-top-child,
10076 window-left-child, window-next-sibling and window-prev-sibling
10077 respectively.
10078 (resize-window-reset): Rename to window-resize-reset.
10079 (resize-window-reset-1): Rename to window-resize-reset-1.
10080 (resize-window): Rename to window-resize.
10081 (window-min-height, window-min-width)
10082 (resize-mini-window, resize-this-window, resize-root-window)
10083 (resize-root-window-vertically, adjust-window-trailing-edge)
10084 (enlarge-window, shrink-window, maximize-window)
10085 (minimize-window, delete-window, quit-restore-window)
10086 (split-window, balance-windows, balance-windows-area-adjust)
10087 (balance-windows-area, window-state-put-2)
10088 (display-buffer-even-window-sizes, display-buffer-set-height)
10089 (display-buffer-set-width, set-window-text-height)
10090 (fit-window-to-buffer): Rename all "resize-window" prefixed
10091 calls to use the "window-resize" prefix convention.
10092 (display-buffer-alist): Fix symbol for label specifier.
10093 (display-buffer-reuse-window): Set reuse-dedicated to cdr of
10094 corresponding specifier.
10095 Reported by Juanma Barranquero <lekktu@gmail.com>.
10096
10097 2011-06-27 Vincent Belaïche <vincentb1@users.sourceforge.net>
10098
10099 * ses.el (ses-destroy-cell-variable-range): Fix heading comment
10100 convention.
10101 (ses-call-printer): Does not pass an empty string to formatter when the
10102 cell is empty to keep from barking printer Calc math-format-value.
10103
10104 2011-06-27 Richard Stallman <rms@gnu.org>
10105
10106 * battery.el (battery-mode-line-limit): New variable.
10107 (battery-update): Handle it.
10108
10109 * mail/rmailmm.el (rmail-mime-process-multipart):
10110 Handle truncated messages.
10111
10112 2011-06-27 Glenn Morris <rgm@gnu.org>
10113
10114 * progmodes/flymake.el (flymake-err-line-patterns):
10115 Allow for column numbers in the ant/javac pattern. (Bug#8866)
10116
10117 2011-06-27 Vincent Belaïche <vincentb1@users.sourceforge.net>
10118
10119 * ses.el (ses-relocate-range): Keep rest of arguments for ses-range.
10120 (ses--clean-!, ses--clean-_): New functions.
10121 (ses-range): Add configurability of readout order, and conversion
10122 to Calc vector.
10123
10124 * ses.el (ses-repair-cell-reference-all): New function.
10125 (ses-cell-symbol): Set macro as safe, so that it can be used in
10126 formulas.
10127
10128 * ses.el: Update cycle detection algorithm.
10129 (ses-localvars): Add ses--Dijkstra-attempt-nb and
10130 ses--Dijkstra-weight-bound, and initial values thereof when applicable.
10131 (ses-set-localvars): New function.
10132 (ses-make-cell): Add property-list as a cell element.
10133 (ses-cell-property-get-fun, ses-cell-property-get)
10134 (ses-cell-property-delq-fun, ses-cell-property-set-fun)
10135 (ses-cell-property-pop-fun, ses-cell-property-get-handle-fun):
10136 New functions.
10137 (ses-cell-property-set, ses-cell-property-pop)
10138 (ses-cell-property-get-handle): New macro.
10139 (ses-cell-property-handle-car, ses-cell-property-handle-setcar):
10140 New aliases, used for code readability.
10141 (ses-calculate-cell, ses-update-cells): Use Dijkstra algorithm for
10142 cycle detection.
10143 (ses-self-reference-early-detection): New defcustom.
10144 (ses-formula-references): Robustify against self-referring cells.
10145 (ses-mode): Use ses-set-localvars.
10146 (ses-command-hook): Add call to ses-initialize-Dijkstra-attempt
10147 before lauching the update processing.
10148 (ses-initialize-Dijkstra-attempt): New function.
10149 (ses-recalculate-cell): Update for cycle detection based on
10150 Dijkstra algorithm.
10151
10152 * ses.el: Fix commenting and indenting convention.
10153
10154 2011-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
10155
10156 * bs.el (bs-cycle-next): Complete last change.
10157
10158 2011-06-27 Drew Adams <drew.adams@oracle.com>
10159
10160 * faces.el (list-faces-display): Add help-mode-map to output (bug#8939).
10161
10162 2011-06-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
10163
10164 * net/network-stream.el (network-stream-open-starttls):
10165 Don't re-get capabilities unless we've reestablished connection.
10166 (network-stream-open-starttls): Fix stupid typo with gnutls-clii.
10167
10168 * mail/smtpmail.el (smtpmail-via-smtp): Bind coding-system-for-*
10169 to binary to possibly avoid line encoding issues on Windows (among
10170 other things).
10171
10172 2011-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
10173
10174 * net/network-stream.el (open-network-stream): Return an :error
10175 saying what the problem was, if possible.
10176
10177 * mail/smtpmail.el (smtpmail-via-smtp): Report the error from the
10178 server.
10179
10180 * net/network-stream.el (network-stream-open-starttls): If we
10181 wanted to use STARTTLS, and the server offered it, but we weren't
10182 able to because we had no STARTTLS support, then close the connection.
10183 (open-network-stream): Return an :error element, if present.
10184
10185 2011-06-26 Chong Yidong <cyd@stupidchicken.com>
10186
10187 * hl-line.el (hl-line-sticky-flag): Doc fix.
10188 (global-hl-line-sticky-flag): New option (Bug#8323).
10189 (global-hl-line-highlight): Obey it.
10190
10191 * vc/vc.el (vc-revert-show-diff): Default to t.
10192
10193 2011-06-26 Ken Manheimer <ken.manheimer@gmail.com>
10194
10195 * allout-widgets.el (allout-widgets-post-command-business):
10196 Stop decorating intermediate isearch matches. They're not being
10197 undecorated when an isearch is continued past, and isearch
10198 automatically collapses them. This leads to "widget leaks", where
10199 decorated items accumulate in collapsed areas. Lines with lots of
10200 hidden widgets can slow down cursor travel, substantially.
10201 Too much complicated machinery would be needed to ensure undecoration,
10202 so we're doing without this nicety.
10203
10204 (allout-widgets-tally-string): Don't try to do a hash-table-count
10205 of allout-widgets-tally when it's nil. This eliminates spurious "Error
10206 during redisplay: (wrong-type-argument hash-table-p nil)" warnings in
10207 *Messages* when allout-widgets-maintain-tally is t.
10208
10209 2011-06-26 Martin Rudalics <rudalics@gmx.at>
10210
10211 * window.el (display-buffer-normalize-argument): Rename to
10212 display-buffer-normalize-arguments. Handle special meaning of
10213 LABEL argument. Respect special-display-function when popping up
10214 a new frame. Fix code searching for a window showing the buffer
10215 on another frame.
10216 (display-buffer-normalize-specifiers):
10217 Call display-buffer-normalize-arguments.
10218 (display-buffer-in-window): Don't undedicate the window if its
10219 buffer remains the same.
10220 Reported by Drew Adams <drew.adams@oracle.com>.
10221 (display-buffer-alist): Add choice for same-window macro
10222 specfier.
10223 (display-buffer): Mention special meaning of LABEL argument in
10224 doc-string. Fix quoting. Don't pop up a new frame even as
10225 fallback.
10226
10227 2011-06-26 Juanma Barranquero <lekktu@gmail.com>
10228
10229 * bs.el (bs-cycle-next): Pass current buffer to `bury-buffer' to
10230 avoid deleting the current window in some cases (bug#8911).
10231
10232 2011-06-26 Andreas Schwab <schwab@linux-m68k.org>
10233
10234 * emacs-lisp/smie.el (smie-bnf->prec2): Fix last change.
10235 (Bug#8934)
10236
10237 2011-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
10238
10239 * net/network-stream.el (network-stream-open-starttls):
10240 Use built-in TLS support if `gnutls-available-p' is true.
10241 (network-stream-open-tls): Ditto.
10242
10243 2011-06-26 Leo Liu <sdl.web@gmail.com>
10244
10245 * register.el (registerv): New struct.
10246 (registerv-make): New function.
10247 (jump-to-register, describe-register-1, insert-register):
10248 Support the jump-func, print-func and insert-func slot of a registerv
10249 struct. (Bug#8415)
10250
10251 2011-06-26 Chong Yidong <cyd@stupidchicken.com>
10252
10253 * vc/vc.el (vc-revert-show-diff): New defcustom.
10254 (vc-diff-internal): New arg specifying diff buffer.
10255 (vc-revert): Obey vc-revert-show-diff. If we show a diff, don't
10256 reuse an existing *vc-diff* buffer (Bug#8927).
10257
10258 * progmodes/cperl-mode.el (cperl-mode): Derive from prog-mode.
10259
10260 2011-06-26 Glenn Morris <rgm@gnu.org>
10261
10262 * progmodes/f90.el (f90-critical-indent): New option.
10263 (f90-font-lock-keywords-2, f90-blocks-re, f90-end-block-re)
10264 (f90-start-block-re, f90-mode-abbrev-table): Add block, critical.
10265 (f90-mode): Doc fix.
10266 (f90-looking-at-critical, f90-looking-at-end-critical): New funcs.
10267 (f90-no-block-limit, f90-calculate-indent, f90-end-of-block)
10268 (f90-beginning-of-block, f90-next-block, f90-indent-region)
10269 (f90-match-end): Handle block, critical.
10270
10271 2011-06-25 Glenn Morris <rgm@gnu.org>
10272
10273 * calendar/diary-lib.el (diary-included-files): Doc fix.
10274 (diary-include-files): New function, extracted from
10275 diary-include-other-diary-files and diary-mark-included-diary-files.
10276 (diary-include-other-diary-files, diary-mark-included-diary-files):
10277 Just call diary-include-files.
10278 (diary-mark-entries): Reset diary-included-files on first call.
10279
10280 * calendar/diary-lib.el (diary-mark-entries)
10281 (diary-mark-included-diary-files):
10282 Visit included diary-files in temp buffers.
10283
10284 * progmodes/f90.el (f90-keywords-re, f90-font-lock-keywords-1)
10285 (f90-blocks-re, f90-program-block-re, f90-end-block-re)
10286 (f90-start-block-re, f90-imenu-generic-expression)
10287 (f90-looking-at-program-block-start, f90-no-block-limit):
10288 Add support for submodules.
10289
10290 * progmodes/f90.el (f90-keywords-re, f90-keywords-level-3-re)
10291 (f90-procedures-re, f90-constants-re): Add some F2008 stuff.
10292
10293 2011-06-25 Eli Zaretskii <eliz@gnu.org>
10294
10295 * net/ange-ftp.el (ange-ftp-insert-file-contents): Let-bind
10296 buffer-file-type before setting its value, to avoid disastrous
10297 global effects on decoding files for DOS/Windows systems. (Bug#8780)
10298
10299 2011-06-25 Juanma Barranquero <lekktu@gmail.com>
10300
10301 * allout.el (allout-unload-function): Pass -1 to `allout-mode'.
10302
10303 * ses.el (ses-unload-function):
10304 * emacs-lisp/re-builder.el (re-builder-unload-function): Simplify.
10305
10306 * proced.el (proced-unload-function):
10307 * progmodes/cperl-mode.el (cperl-mode-unload-function): Remove.
10308
10309 2011-06-25 Andreas Rottmann <a.rottmann@gmx.at>
10310
10311 * server.el (server-create-window-system-frame): Add parameters arg.
10312 (server-process-filter): Doc fix. Handle frame-parameters.
10313
10314 2011-06-25 Juanma Barranquero <lekktu@gmail.com>
10315
10316 Fix bug#8730, bug#8781.
10317
10318 * loadhist.el (unload--set-major-mode): New function.
10319 (unload-feature): Use it.
10320
10321 * progmodes/python.el (python-after-info-look): Add autoload cookie.
10322 (python-unload-function): New function.
10323
10324 2011-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
10325
10326 * mail/rmail.el (rmail-show-message-1): Use restore-buffer-modified-p.
10327
10328 2011-06-25 Giuseppe Scrivano <gscrivano@gnu.org>
10329
10330 * net/browse-url.el (browse-url-firefox-program): Add icecat to
10331 the candidates list.
10332
10333 2011-06-24 Juanma Barranquero <lekktu@gmail.com>
10334
10335 * progmodes/verilog-mode.el (verilog-mode): Fix test for bound variable.
10336
10337 2011-06-23 Richard Stallman <rms@gnu.org>
10338
10339 * mail/rmail.el: Going to grep hit in Rmail buffer finds the message.
10340 (rmail-variables): Set next-error-move-function.
10341 (rmail-what-message): Take argument POS.
10342 (rmail-next-error-move): New function.
10343
10344 2011-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
10345
10346 * emacs-lisp/smie.el (smie-bnf->prec2): Give more understandable error
10347 messages for adjacent non-terminals.
10348
10349 2011-06-23 Richard Stallman <rms@gnu.org>
10350
10351 * mail/rmail.el (rmail-retry-ignored-headers): Add message-id.
10352 (rmail-show-message-1): Preserve buffer modified flag.
10353 (rmail-start-mail): Don't specify use of rmail-mail-return;
10354 that's done by mail-bury now.
10355 (rmail-mail-return): Handle arg NEWBUF.
10356
10357 2011-06-23 Michael Albinus <michael.albinus@gmx.de>
10358
10359 * net/tramp-sh.el (tramp-method-out-of-band-p): Check, whether
10360 SIZE is a number.
10361
10362 2011-06-23 Martin Rudalics <rudalics@gmx.at>
10363
10364 * window.el (get-lru-window, get-mru-window)
10365 (get-largest-window): Never return a minibuffer window.
10366 (display-buffer-pop-up-window): Fix a bug that could lead to
10367 reusing the minibuffer window.
10368 (display-buffer): Pass original specifier argument to
10369 display-buffer-function instead of the normalized one.
10370 Reported by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
10371
10372 2011-06-22 Leo Liu <sdl.web@gmail.com>
10373
10374 * minibuffer.el (completing-read-function)
10375 (completing-read-default): Move from minibuf.c
10376
10377 2011-06-22 Richard Stallman <rms@gnu.org>
10378
10379 * mail/sendmail.el (mail-bury): If Rmail is in use, return nicely
10380 to Rmail even if not started by a special Rmail command.
10381
10382 * mail/rmailmm.el (rmail-insert-mime-forwarded-message):
10383 Copy the buffer currently showing just one message.
10384
10385 2011-06-22 Roland Winkler <winkler@gnu.org>
10386
10387 * textmodes/bibtex.el (bibtex-entry-update): Use mapc.
10388 (bibtex-clean-entry): First delete the old key so that a
10389 customized algorithm for generating the new key does not get
10390 confused by the old key.
10391 (bibtex-url): Obey regexp of first step.
10392 (bibtex-search-entries): Do not use add-to-list with local
10393 list-var.
10394
10395 2011-06-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
10396
10397 * mail/smtpmail.el (smtpmail-try-auth-methods): If the user has
10398 stored a user name, then query for the password first, instead of
10399 waiting for SMTP to give an error message and the trying again.
10400
10401 2011-06-22 Lawrence Mitchell <wence@gmx.li>
10402
10403 * net/browse-url.el (browse-url-xdg-open): Use 0, rather than nil
10404 BUFFER in call-process.
10405
10406 2011-06-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
10407
10408 * mail/smtpmail.el (smtpmail-via-smtp): Make sure we don't send
10409 QUIT twice.
10410 (smtpmail-try-auth-methods): Require user name and password from
10411 auth-source.
10412
10413 2011-06-22 Martin Rudalics <rudalics@gmx.at>
10414
10415 * window.el (display-buffer-default-specifiers)
10416 (display-buffer-alist): Remove entries for pop-up-frame-alist.
10417 Suggested by Katsumi Yamaoka <yamaoka@jpl.org>.
10418 (split-window): Normalize SIDE argument (Bug#8916).
10419
10420 * frame.el (pop-up-frame-alist, pop-up-frame-function)
10421 (special-display-frame-alist, special-display-popup-frame):
10422 Remove duplicate declarations. These are now in window.el.
10423
10424 2011-06-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
10425
10426 * mail/smtpmail.el (smtpmail-via-smtp):
10427 Set :use-starttls-if-possible so that we always use STARTTLS if the
10428 server supports it. SMTP servers that support STARTTLS commonly
10429 require it.
10430
10431 * net/network-stream.el (network-stream-open-starttls): Support
10432 upgrading to STARTTLS always, even if we don't have built-in support.
10433 (open-network-stream): Add the :always-query-capabilities keyword.
10434
10435 * mail/smtpmail.el: Rewritten to do opportunistic STARTTLS
10436 upgrades with `open-network-stream', and rely solely on
10437 auth-source for all credentials. Big changes throughout the file,
10438 but in particular:
10439 (smtpmail-auth-credentials): Remove.
10440 (smtpmail-starttls-credentials): Remove.
10441 (smtpmail-via-smtp): Check for servers saying they want AUTH after
10442 MAIL FROM, too.
10443
10444 * net/network-stream.el (network-stream-open-starttls):
10445 Provide support for client certificates both for external and built-in
10446 STARTTLS.
10447 (auth-source): Require.
10448 (open-network-stream): Document the :client-certificate keyword.
10449 (network-stream-certificate): Change cert-cert to cert and
10450 cert-key to key.
10451
10452 2011-06-21 Michael Albinus <michael.albinus@gmx.de>
10453
10454 * net/tramp-cache.el (top): Don't load the persistency file when
10455 "emacs -Q" has been called.
10456
10457 2011-06-21 Tim Harper <timcharper@gmail.com>
10458
10459 * term/ns-win.el (ns-initialize-window-system):
10460 Set application-specific `ApplePressAndHoldEnabled' system
10461 resource to NO as it is not yet supported by the NS port.
10462
10463 2011-06-21 Juanma Barranquero <lekktu@gmail.com>
10464
10465 * misc.el (list-dynamic-libraries--refresh): Compute header here...
10466 (list-dynamic-libraries): ...not here.
10467
10468 2011-06-21 Leo Liu <sdl.web@gmail.com>
10469
10470 * subr.el (sha1): Implement sha1 using secure-hash.
10471
10472 2011-06-21 Martin Rudalics <rudalics@gmx.at>
10473
10474 * window.el (display-buffer-alist): In default value do not
10475 enforce searching a window on any but the selected frame.
10476 Reported by Katsumi Yamaoka <yamaoka@jpl.org>.
10477 (display-buffer-select-window): Remove function.
10478 (display-buffer-in-window): When a window on another frame gets
10479 reused, do not select it any more but just raise its frame if
10480 necessary (Bug#8851) and (Bug#8856).
10481 (display-buffer-normalize-options): Handle pop-up-frames related
10482 options more faithfully.
10483 (pop-to-buffer): Don't rely on `display-buffer' selecting the
10484 window if it is on another frame.
10485 (display-buffer-alist, display-buffer-default-specifiers):
10486 Don't make new frame unsplittable by default.
10487 (display-buffer-normalize-argument): Fix doc-string typo and use
10488 'same-frame-other-window instead of 'other-window when associating
10489 with display-buffer-macro-specifiers.
10490
10491 2011-06-21 Vincent Belaïche <vincent.b.1@hotmail.fr>
10492
10493 * play/5x5.el (5x5-solve-rotate-left, 5x5-solve-rotate-right):
10494 New functions.
10495 (5x5-mode-map, 5x5-mode-menu): Bind them.
10496 (5x5-draw-grid): Tweak the solver's rendering.
10497
10498 2011-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
10499
10500 * progmodes/compile.el (compilation-error-regexp-alist-alist): Rename
10501 `caml' to `python-tracebacks-and-caml'; allow leading tabs (bug#8585).
10502
10503 2011-06-21 Drew Adams <drew.adams@oracle.com>
10504
10505 * menu-bar.el: Use function variable instead of switch-to-buffer.
10506 (menu-bar-select-buffer-function): New variable.
10507 (menu-bar-update-buffers): Use it (bug#8876).
10508
10509 2011-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
10510
10511 * emacs-lisp/bytecomp.el (add-to-list): Add handler to check the
10512 variable's status.
10513
10514 2011-06-20 Jan Djärv <jan.h.d@swipnet.se>
10515
10516 * x-dnd.el (x-dnd-version-from-flags)
10517 (x-dnd-more-than-3-from-flags): New functions that handle long-as-cons
10518 and long as number (Bug#8899).
10519 (x-dnd-handle-xdnd): Call functions above (Bug#8899).
10520
10521 2011-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
10522
10523 * minibuffer.el (completion-metadata): Add `metadata' to the alist.
10524 (completion-try-completion, completion-all-completions): Compute the
10525 metadata argument if it's missing; make it optional (bug#8795).
10526
10527 * wid-edit.el: Use lex-bind and move towards completion-at-point.
10528 (widget-complete): Use new :completion-function property.
10529 (widget-completions-at-point): New function.
10530 (default): Use :completion-function instead of :complete.
10531 (widget-default-completions): Rename from widget-default-complete;
10532 Rewrite.
10533 (widget-string-complete, widget-file-complete, widget-color-complete):
10534 Remove functions.
10535 (file, symbol, function, variable, coding-system, color):
10536 * international/mule-cmds.el (default-input-method, charset)
10537 (language-info-custom-alist):
10538 * cus-edit.el (face): Use new property :completions.
10539
10540 * progmodes/pascal.el (pascal-completions-at-point): New function.
10541 (pascal-mode): Use it.
10542 (pascal-mode-map): Use completion-at-point.
10543 (pascal-toggle-completions): Make obsolete.
10544 (pascal-complete-word, pascal-show-completions):
10545 * progmodes/octave-mod.el (octave-complete-symbol):
10546 Redefine as obsolete alias.
10547 * progmodes/octave-inf.el (inferior-octave-completion-at-point):
10548 Signal absence of completion info for old Octave,
10549 (inferior-octave-complete): Redefine as obsolete alias.
10550 * progmodes/meta-mode.el: Use lexical-binding and completion-at-point.
10551 (meta-completions-at-point): Rename from meta-complete-symbol and
10552 adapt it for use on completion-at-point-functions.
10553 (meta-common-mode): Use it.
10554 (meta-looking-at-backward, meta-match-buffer): Remove.
10555 (meta-complete-symbol): Redefine as obsolete alias.
10556 (meta-common-mode-map): Use completion-at-point.
10557 * progmodes/make-mode.el: Use lexical-binding and completion-at-point.
10558 (makefile-mode-map): Use completion-at-point.
10559 (makefile-completions-at-point): Rename from makefile-complete and
10560 adapt it for use on completion-at-point-functions.
10561 (makefile-mode): Use it.
10562 (makefile-complete): Redefine as obsolete alias.
10563
10564 2011-06-20 Deniz Dogan <deniz@dogan.se>
10565
10566 * net/rcirc.el: Delete trailing whitespaces once and for all.
10567
10568 2011-06-20 Daniel Colascione <dan.colascione@gmail.com>
10569
10570 * emacs-lisp/syntax.el (syntax-ppss): Further improve docstring.
10571
10572 2011-06-19 Chong Yidong <cyd@stupidchicken.com>
10573
10574 * files.el (auto-mode-alist): Entry for m2-mode (Bug#8852).
10575
10576 * info.el (Info-apropos-toc-nodes): Minor doc fix (Bug#8833).
10577
10578 2011-06-19 Martin Rudalics <rudalics@gmx.at>
10579
10580 * window.el (display-buffer-other-window-means-other-frame):
10581 Call display-buffer-normalize-alist.
10582 (display-buffer-normalize-specifiers-1): Rename to
10583 display-buffer-normalize-argument. New argument other-frame.
10584 Rewrite.
10585 (display-buffer-normalize-specifiers-2): Rename to
10586 display-buffer-normalize-options.
10587 (display-buffer-normalize-alist-1): New function.
10588 (display-buffer-normalize-specifiers-3): Rename to
10589 display-buffer-normalize-alist.
10590 Call display-buffer-normalize-alist-1.
10591 (display-buffer-normalize-options-inhibit): New variable.
10592 (display-buffer-normalize-specifiers): Rewrite calling
10593 display-buffer-normalize-alist,
10594 display-buffer-normalize-argument, and
10595 display-buffer-normalize-options. Don't call the latter if
10596 display-buffer-normalize-options-inhibit is non-nil.
10597 (frame-auto-delete): New option.
10598 (window-deletable-p): Use frame-auto-delete.
10599 (window-list-no-nils, window-state-ignored-parameters)
10600 (window-state-get-1, window-state-get, window-state-put-list)
10601 (window-state-put-1, window-state-put-2, window-state-put):
10602 New functions.
10603 (display-buffer-normalize-options): Move special-display-p group
10604 after pop-up-frame group (Bug#8851) and (Bug#8856).
10605
10606 2011-06-18 Chong Yidong <cyd@stupidchicken.com>
10607
10608 * emacs-lisp/rx.el (rx-constituents): Add support for numbered
10609 groups (Bug#8776).
10610 (rx-submatch-n): New function.
10611 (rx): Document it.
10612
10613 * dired-x.el (dired-mark-unmarked-files): Fix interactive spec
10614 (Bug#8768).
10615
10616 * replace.el (occur-mode-map): Set occur-edit-mode binding to "e".
10617
10618 * textmodes/fill.el (default-justification): Add :safe (Bug#8879).
10619
10620 * cus-face.el (custom-declare-face): Call custom-theme-recalc face
10621 anytime existing face settings are present (Bug#8889).
10622
10623 * progmodes/delphi.el (delphi-mode-syntax-table): Use defvar.
10624 (delphi-mode): Use define-derived-mode to inherit from prog-mode.
10625 Remove unused argument.
10626
10627 2011-06-18 Martin Rudalics <rudalics@gmx.at>
10628
10629 * window.el (display-buffer-default-specifiers):
10630 Remove pop-up-frame. Add pop-up-window-min-height,
10631 pop-up-window-min-width, and another reuse-window specifier
10632 (Bug#8882). Reported by Dan Nicolaescu <dann@gnu.org>.
10633 (display-buffer-normalize-specifiers-2):
10634 Handle split-height-threshold and split-width-threshold also when
10635 pop-up-windows is unset. Add a reuse-window specifier for the
10636 case popping up a new window fails.
10637 (special-display-popup-frame): Remove double quoting.
10638 (display-buffer-normalize-specifiers-1): Fix thinko.
10639
10640 2011-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
10641
10642 * shell.el (shell-completion-vars): Set pcomplete-termination-string
10643 according to comint-completion-addsuffix.
10644
10645 * pcomplete.el: Convert to lexical binding and fix bug#8819.
10646 (pcomplete-suffix-list): Mark as obsolete.
10647 (pcomplete-completions-at-point): Capture pcomplete-norm-func and
10648 pcomplete-seen in the closure.
10649 (pcomplete-comint-setup): Setup completion-at-point as well.
10650 (pcomplete--entries): New function.
10651 (pcomplete--env-regexp): New var.
10652 (pcomplete-entries): Rewrite to work with partial-completion and
10653 without relying on pcomplete-suffix-list.
10654 (pcomplete-pare-list): Remove, unused.
10655
10656 2011-06-17 Martin Rudalics <rudalics@gmx.at>
10657
10658 * window.el (display-buffer-alist): Set pop-up-window-min-height
10659 and pop-up-window-min-width in default value. Reported by
10660 Thierry Volpiatto <thierry.volpiatto@gmail.com>. New specifier
10661 other-window-means-other-frame.
10662 (display-buffer-macro-specifiers): Comment out entry for
10663 other-window specifier.
10664 (display-buffer-other-window-means-other-frame): New function.
10665 (display-buffer-normalize-specifiers-1): New arguments
10666 buffer-name and label. Treat other-window case specially.
10667 (display-buffer-normalize-specifiers-2): Treat other-window case
10668 specially.
10669 (display-buffer-normalize-specifiers-3): New function.
10670 (display-buffer-normalize-specifiers):
10671 Call display-buffer-normalize-specifiers-3.
10672
10673 2011-06-17 Martin Rudalics <rudalics@gmx.at>
10674
10675 * window.el (same-window-p): Fix two typos introduced when
10676 adding with-no-warnings.
10677 (display-buffer-normalize-specifiers-1): Don't check
10678 pop-up-frames for 'unset initialization.
10679 (display-buffer-normalize-specifiers-2): Major rewrite using
10680 special-display-p and same-window-p (Bug#8851) and (Bug#8856).
10681 (pop-up-frames, display-buffer-reuse-frames)
10682 (display-buffer-mark-dedicated): Don't initialize to 'unset.
10683 Suggested by David Engster <deng@randomsample.de>.
10684 (even-window-heights): Initialize to 'unset.
10685 (display-buffer-alist-set): Handle new 'unset initializations.
10686 (display-buffer-macro-specifiers): Don't pop up a new frame in the
10687 other window case.
10688
10689 2011-06-16 Martin Rudalics <rudalics@gmx.at>
10690
10691 * window.el (display-buffer-normalize-specifiers-1):
10692 Respect current value of pop-up-frames for most reasonable values of
10693 second argument of display-buffer (Bug#8865).
10694 (switch-to-buffer-same-frame, switch-to-buffer-other-window)
10695 (switch-to-buffer-other-window-same-frame)
10696 (switch-to-buffer-other-frame): Fix doc-strings. Reported by Drew
10697 Adams (Bug#8875).
10698 (display-buffer): Don't check noninteractive when calling
10699 display-buffer-pop-up-frame.
10700 (display-buffer-pop-up-frame): Never pop up a frame in
10701 noninteractive mode (Bug#8857).
10702 (enlarge-window, shrink-window): Don't report an error when the
10703 window can't be resized as requested (Bug#8862).
10704
10705 2011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
10706
10707 * pcmpl-rpm.el (pcomplete/rpm): Minor simplification.
10708
10709 * emacs-lisp/debug.el (debug): Don't leave the buffer in Debugger.
10710
10711 * abbrev.el (define-abbrev-table): Don't add a table multiple times.
10712
10713 2011-06-15 Alan Mackenzie <acm@muc.de>
10714
10715 * progmodes/cc-fonts.el (c-font-lock-declarations): 1: Whilst checking
10716 for declarators, disable knr checking to speed up for normal files.
10717 2: Refactor, replacing a sequence of nested if forms by a cond form.
10718
10719 2011-06-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
10720
10721 * net/network-stream.el (open-network-stream): Add the keyword
10722 :always-query-capabilities for the case where you want to force a
10723 `plain' network connection, but the protocol still requires the
10724 capabilitiy command (i.e., SMTP and EHLO).
10725
10726 * subr.el (process-live-p): Rename from `process-alive-p' for
10727 consistency with other `-live-p' functions.
10728
10729 2011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
10730
10731 * window.el (same-window-buffer-names, same-window-regexps)
10732 (special-display-frame-alist, special-display-popup-frame)
10733 (special-display-function, special-display-buffer-names)
10734 (special-display-regexps, pop-up-frame-alist)
10735 (pop-up-frame-function, pop-up-frames, display-buffer-reuse-frames)
10736 (pop-up-windows, split-window-preferred-function)
10737 (split-height-threshold, split-width-threshold, even-window-heights)
10738 (display-buffer-mark-dedicated): Don't encourage the use of
10739 display-buffer-alist from Elisp code.
10740
10741 2011-06-15 Dan Nicolaescu <dann@ics.uci.edu>
10742
10743 * progmodes/python.el (python-mode): Derive from prog-mode.
10744 * progmodes/ps-mode.el (ps-mode):
10745 * progmodes/mixal-mode.el (mixal-mode):
10746 * progmodes/cfengine.el (cfengine-mode):
10747 * progmodes/ld-script.el (ld-script-mode): Likewise.
10748
10749 2011-06-15 Martin Rudalics <rudalics@gmx.at>
10750
10751 * window.el (display-buffer-alist): Trim default value to avoid
10752 popping up a new frame (Bug#8857) or reusing an arbitrary window
10753 on another frame.
10754 (display-buffer): Do not fall back on popping up a new frame in
10755 batch mode (Bug#8857).
10756
10757 2011-06-14 Chong Yidong <cyd@stupidchicken.com>
10758
10759 * cus-theme.el (describe-theme-1): Use custom-theme-p.
10760 (custom-theme-summary): New function.
10761 (customize-themes): Use it.
10762
10763 2011-06-13 Glenn Morris <rgm@gnu.org>
10764
10765 * cus-dep.el (custom-make-dependencies): Use up command-line-args-left.
10766
10767 2011-06-13 Martin Rudalics <rudalics@gmx.at>
10768
10769 * help.el (help-window): Remove variable.
10770 (help-window-point-marker, temp-buffer-max-height)
10771 (temp-buffer-resize-mode, help-window-select): Rewrite doc-strings.
10772 (help-print-return-message): Don't set help-window.
10773 (resize-temp-buffer-window): Rewrite cod eand doc-string.
10774 (help-window-setup-finish): Remove.
10775 (help-window-display-message, help-window-setup)
10776 (with-help-window): Major rewrite based on new
10777 display-buffer-window variable.
10778
10779 * help-mode.el (help-mode-finish): Remove help-window related
10780 code.
10781
10782 * view.el (view-exits-all-viewing-windows): Remove reference to
10783 view-return-to-alist in doc-string.
10784 (view-return-to-alist): Make obsolete.
10785 (view-buffer): Call pop-to-buffer-same-window and remove
10786 undo-window code.
10787 (view-buffer-other-window): Call pop-to-buffer-other-window and
10788 simplify code. Ignore second argument.
10789 (view-buffer-other-frame): Call pop-to-buffer-other-frame and
10790 simplify code. Ignore second argument.
10791 (view-return-to-alist-update): Make obsolete.
10792 (view-mode-enter): Rename second argument to QUIT-RESTORE.
10793 Rewrite using quit-restore window parameters.
10794 (view-mode-exit): Rename second argument to EXIT-ONLY.
10795 Rewrite using quit-restore-window.
10796 (View-exit, View-exit-and-edit, View-leave, View-quit)
10797 (View-quit-all, View-kill-and-leave): Call view-mode-exit with
10798 appropriate arguments.
10799 (view-end-message): Use quit-restore window parameter.
10800
10801 * window.el (display-buffer-function): Rewrite doc-string.
10802 (display-buffer-window, display-buffer-alist): New variables.
10803 (display-buffer-split-specifiers)
10804 (display-buffer-side-specifiers)
10805 (display-buffer-macro-specifiers): New constants.
10806 (display-buffer-even-window-sizes, display-buffer-set-height)
10807 (display-buffer-set-width, display-buffer-select-window)
10808 (display-buffer-in-window, display-buffer-reuse-window)
10809 (display-buffer-split-window-1, display-buffer-split-window)
10810 (display-buffer-split-atom-window, display-buffer-pop-up-window)
10811 (display-buffer-pop-up-frame, display-buffer-pop-up-side-window)
10812 (display-buffer-in-side-window, normalize-buffer-to-display)
10813 (display-buffer-normalize-specifiers-1)
10814 (display-buffer-normalize-specifiers-2)
10815 (display-buffer-normalize-specifiers, display-buffer-frame):
10816 New functions.
10817 (display-buffer): Major rewrite.
10818 (display-buffer-other-window, display-buffer-other-frame)
10819 (pop-to-buffer, switch-to-buffer-other-window)
10820 (switch-to-buffer-other-frame): Rewrite.
10821 (display-buffer-same-window, display-buffer-same-frame)
10822 (display-buffer-same-frame-other-window)
10823 (pop-to-buffer-same-window, pop-to-buffer-same-frame)
10824 (pop-to-buffer-other-window)
10825 (pop-to-buffer-same-frame-other-window)
10826 (pop-to-buffer-other-frame, switch-to-buffer-same-frame)
10827 (switch-to-buffer-other-window-same-frame): New functions.
10828 (same-window-p, special-display-p): Rewrite disabling warnings.
10829 Make obsolete.
10830 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
10831 (display-buffer-mark-dedicated): Initialize to symbol 'unset.
10832 Make obsolete
10833 (same-window-buffer-names, same-window-regexps)
10834 (special-display-frame-alist, special-display-popup-frame)
10835 (special-display-function, special-display-buffer-names)
10836 (special-display-regexps, pop-up-frame-alist)
10837 (pop-up-frame-function, split-window-preferred-function)
10838 (split-height-threshold, split-width-threshold)
10839 (even-window-heights): Make obsolete.
10840
10841 2011-06-12 Glenn Morris <rgm@gnu.org>
10842
10843 * term/xterm.el (terminal-init-xterm): `version' may be nil. (Bug#8838)
10844 Misc simplifications.
10845
10846 2011-06-12 Martin Rudalics <rudalics@gmx.at>
10847
10848 * window.el (window-safely-shrinkable-p): Restore function which
10849 was inadvertently removed in change from 2011-06-11. Declare as
10850 obsolete.
10851
10852 * calendar/calendar.el (calendar-generate-window):
10853 Use window-iso-combined-p instead of combination of one-window-p and
10854 window-safely-shrinkable-p.
10855
10856 2011-06-12 Glenn Morris <rgm@gnu.org>
10857
10858 * progmodes/fortran.el (fortran-mode-syntax-table):
10859 * progmodes/f90.el (f90-mode-syntax-table):
10860 Set % to punctuation. (Bug#8820)
10861 (f90-find-tag-default): Remove, no longer needed.
10862
10863 2011-06-12 Daniel Colascione <dan.colascione@gmail.com>
10864
10865 * emacs-lisp/syntax.el (syntax-ppss): Clarify which items are invalid.
10866
10867 2011-06-11 Chong Yidong <cyd@stupidchicken.com>
10868
10869 * image.el (image-animated-p): Return animation delay in seconds.
10870 Avoid bit manipulation in Lisp; use `delay' entry in the metadata.
10871 (image-animate-timeout): Remove DELAY argument. Don't assume
10872 every subimage has the same delay; get it from image-animated-p.
10873 (image-animate): Caller changed.
10874
10875 2011-06-11 Michael Albinus <michael.albinus@gmx.de>
10876
10877 * net/tramp.el (tramp-debug-message): Add `tramp-with-progress-reporter'
10878 to ignored backtrace functions.
10879
10880 2011-06-11 Glenn Morris <rgm@gnu.org>
10881
10882 * calendar/appt.el (appt-disp-window-function): Doc fix.
10883 (appt-check): Handle overlapping appointments. (Bug#8337)
10884
10885 2011-06-11 Martin Rudalics <rudalics@gmx.at>
10886
10887 * window.el (window-tree-1, window-tree): New functions, moving
10888 the latter to window.el.
10889 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
10890 (bw-find-tree-sub-1, bw-l, bw-t, bw-r, bw-b, bw-dir, bw-eqdir)
10891 (bw-refresh-edges): Remove.
10892 (balance-windows-1, balance-windows-2): New functions.
10893 (balance-windows): Rewrite in terms of window tree functions,
10894 balance-windows-1 and balance-windows-2.
10895 (bw-adjust-window): Remove.
10896 (balance-windows-area-adjust): New function with functionality of
10897 bw-adjust-window but using resize-window.
10898 (set-window-text-height): Rewrite doc-string.
10899 Use normalize-live-window and resize-window.
10900 (enlarge-window-horizontally, shrink-window-horizontally):
10901 Rename argument to DELTA.
10902 (window-buffer-height): New function.
10903 (fit-window-to-buffer, shrink-window-if-larger-than-buffer):
10904 Rewrite using new window resize routines.
10905 (kill-buffer-and-window, mouse-autoselect-window-select):
10906 Use ignore-errors instead of condition-case.
10907 (quit-window): Call delete-frame instead of delete-windows-on
10908 for the only buffer on frame.
10909
10910 2011-06-10 Martin Rudalics <rudalics@gmx.at>
10911
10912 * loadup.el (top-level): Load window before files for the sake
10913 of replace-buffer-in-windows.
10914
10915 * files.el (read-buffer-to-switch)
10916 (switch-to-buffer-other-window)
10917 (switch-to-buffer-other-frame, display-buffer-other-frame):
10918 Move to window.el.
10919
10920 * simple.el (get-next-valid-buffer, last-buffer, next-buffer)
10921 (previous-buffer): Move to window.el.
10922
10923 * bindings.el (unbury-buffer): Move to window.el.
10924
10925 * window.el (delete-other-windows-vertically): Move after
10926 definition of delete-other-windows.
10927 (other-window, delete-windows-on, replace-buffer-in-windows):
10928 Move here from window.c.
10929 (record-window-buffer, unrecord-window-buffer)
10930 (set-window-buffer-start-and-point, switch-to-prev-buffer)
10931 (switch-to-next-buffer): New functions.
10932 (get-next-valid-buffer, last-buffer, next-buffer): Move here
10933 from simple.el. Call switch-to-next-buffer.
10934 (previous-buffer): Move here from simple.el.
10935 Call switch-to-prev-buffer.
10936 (bury-buffer): Move here from buffer.c. Switch to previous
10937 buffer when window cannot be deleted.
10938 (unbury-buffer): Move here from bindings.el.
10939 (ctl-x-map): Move binding for other-window from window.c to
10940 here.
10941 (read-buffer-to-switch, switch-to-buffer-other-window)
10942 (switch-to-buffer-other-frame): Move here from files.el.
10943 (normalize-buffer-to-switch-to): New functions.
10944 (switch-to-buffer): Move here from buffer.c.
10945 Use read-buffer-to-switch and normalize-buffer-to-switch-to.
10946
10947 2011-06-10 Martin Rudalics <rudalics@gmx.at>
10948
10949 * window.el (window-min-height, window-min-width): Move here
10950 from window.c. Add defcustoms and rewrite doc-strings.
10951 (resize-mini-window, resize-window): New functions.
10952 (adjust-window-trailing-edge, enlarge-window, shrink-window):
10953 Move here from window.c.
10954 (maximize-window, minimize-window): New functions.
10955 (delete-window, delete-other-windows, split-window): Move here
10956 from window.c.
10957 (window-split-min-size): New function.
10958 (split-window-keep-point): Mention split-window-above-each-other
10959 instead of split-window-vertically.
10960 (split-window-above-each-other, split-window-vertically):
10961 Rename split-window-vertically to split-window-above-each-other
10962 and provide defalias for old definition.
10963 (split-window-side-by-side, split-window-horizontally):
10964 Rename split-window-horizontally to split-window-side-by-side
10965 and provide defalias for the old definition.
10966 (ctl-x-map): Move bindings for delete-window,
10967 delete-other-windows and enlarge-window here from window.c.
10968 Replace bindings for split-window-vertically and
10969 split-window-horizontally by bindings for
10970 split-window-above-each-other and split-window-side-by-side.
10971
10972 * cus-start.el (all): Remove entries for window-min-height and
10973 window-min-width. Add entries for window-splits and
10974 window-nest.
10975
10976 2011-06-09 Glenn Morris <rgm@gnu.org>
10977
10978 * calendar/appt.el (appt-mode-line): New function.
10979 (appt-check, appt-disp-window): Use it.
10980
10981 * files.el (hack-one-local-variable-eval-safep):
10982 Allow minor-modes with explicit +/-1 arguments.
10983
10984 2011-06-09 Teodor Zlatanov <tzz@lifelogs.com>
10985
10986 * term/xterm.el (xterm): Add defgroup.
10987 (xterm-extra-capabilities): Add defcustom to supply known xterm
10988 capabilities, skip querying them, or query them (default).
10989 (terminal-init-xterm): Use it.
10990 (terminal-init-xterm-modify-other-keys): New function to set up
10991 modifyOtherKeys support to simplify `terminal-init-xterm'.
10992
10993 2011-06-09 Martin Rudalics <rudalics@gmx.at>
10994
10995 * window.el (resize-window-reset, resize-window-reset-1)
10996 (resize-subwindows-skip-p, resize-subwindows-normal)
10997 (resize-subwindows, resize-other-windows, resize-this-window)
10998 (resize-root-window, resize-root-window-vertically)
10999 (window-deletable-p, window-or-subwindow-p)
11000 (frame-root-window-p): New functions.
11001
11002 2011-06-09 Glenn Morris <rgm@gnu.org>
11003
11004 * net/ange-ftp.el (ange-ftp-switches-ok): New function.
11005 (ange-ftp-get-files): Use it.
11006
11007 2011-06-09 Alexander Klimov <alserkli@inbox.ru> (tiny change)
11008
11009 * mail/sendmail.el (mail-recover-1, mail-recover):
11010 * files.el (recover-file, recover-session):
11011 Handle dired-listing-switches not being just a single short option.
11012
11013 2011-06-09 Glenn Morris <rgm@gnu.org>
11014
11015 * calendar/appt.el (appt-display-message, appt-disp-window):
11016 Handle lists of appointments.
11017
11018 2011-06-08 Martin Rudalics <rudalics@gmx.at>
11019
11020 * window.el (one-window-p): Move down in code.
11021 Rewrite doc-string.
11022 (window-current-scroll-bars): Rewrite doc-string.
11023 Normalize live window argument.
11024 (walk-windows, get-window-with-predicate, count-windows):
11025 Rewrite doc-string. Use window-list-1.
11026 (window-in-direction-2, window-in-direction, get-mru-window):
11027 New functions.
11028
11029 2011-06-08 Reuben Thomas <rrt@sc3d.org>
11030
11031 * progmodes/flymake.el (flymake-compilation-prevents-syntax-check):
11032 Doc fix (Bug#8713).
11033
11034 2011-06-08 Chong Yidong <cyd@stupidchicken.com>
11035
11036 * repeat.el (repeat-on-final-keystroke): Fix type (Bug#8696).
11037
11038 2011-06-08 Juanma Barranquero <lekktu@gmail.com>
11039
11040 * loadhist.el (unload-feature-special-hooks):
11041 Add `comint-output-filter-functions'.
11042
11043 2011-06-08 Ivan Kanis <gnu@kanis.fr>
11044
11045 * calendar/appt.el (appt-check): Move some initializations into the let.
11046
11047 2011-06-08 Martin Rudalics <rudalics@gmx.at>
11048
11049 * window.el (window-height): Defalias to window-total-height.
11050 (window-width): Defalias to window-body-width.
11051
11052 2011-06-07 Chong Yidong <cyd@stupidchicken.com>
11053
11054 * image-mode.el (image-toggle-animation): New command.
11055 (image-mode-map): Bind it to RET.
11056 (image-mode): Update message.
11057 (image-toggle-display-image): Avoid a spurious cache flush.
11058 (image-transform-rotation): Doc fix.
11059 (image-transform-properties): Return quickly in the normal case.
11060 (image-animate-loop): Rename from image-animate-max-time.
11061
11062 * image.el (image-animate-max-time): Move to image-mode.el.
11063 (create-animated-image): Remove unnecessary function.
11064 (image-animate): Rename from image-animate-start. New arg.
11065 (image-animate-stop): Remove; just use image-animate-timer.
11066 (image-animate-timer): Use car-safe.
11067 (image-animate-timeout): Rename argument.
11068
11069 2011-06-07 Martin Rudalics <rudalics@gmx.at>
11070
11071 * window.el (get-lru-window, get-largest-window): Move here from
11072 window.c. Rename first argument to ALL-FRAMES.
11073 Rephrase doc-strings.
11074 (get-buffer-window-list): Rewrite using window-list-1.
11075 Rephrase doc-string.
11076 (window-safe-min-height, window-safe-min-width): New constants.
11077 (window-size-ignore, window-min-size, window-min-size-1)
11078 (window-sizable, window-sizable-p, window-size-fixed-1)
11079 (window-size-fixed-p, window-min-delta-1, window-min-delta)
11080 (window-max-delta-1, window-max-delta, window-resizable)
11081 (window-resizable-p, window-total-height, window-total-width)
11082 (window-body-width): New functions.
11083 (window-full-height-p, window-full-width-p): Rewrite using
11084 window-total-size.
11085 (window-body-height): Rewrite using window-body-size.
11086
11087 2011-06-06 Martin Rudalics <rudalics@gmx.at>
11088
11089 * window.el (window-right, window-left, window-child)
11090 (window-child-count, window-last-child, window-any-p)
11091 (normalize-live-buffer, normalize-live-frame)
11092 (normalize-any-window, normalize-live-window)
11093 (window-iso-combination-p, window-iso-combined-p)
11094 (window-iso-combinations)
11095 (walk-window-tree-1, walk-window-tree, walk-window-subtree)
11096 (windows-with-parameter, window-with-parameter)
11097 (window-atom-root, make-window-atom, window-atom-check-1)
11098 (window-atom-check, window-side-check, window-check):
11099 New functions.
11100 (ignore-window-parameters, window-sides, window-sides-vertical)
11101 (window-sides-slots): New variables.
11102 (window-size-fixed): Move down in code. Minor doc-string fix.
11103
11104 2011-06-05 Andreas Schwab <schwab@linux-m68k.org>
11105
11106 * comint.el (comint-dynamic-complete-as-filename)
11107 (comint-dynamic-complete-filename): Correctly call
11108 completion-in-region.
11109
11110 2011-06-05 Deniz Dogan <deniz@dogan.se>
11111
11112 * net/rcirc.el (rcirc-prompt-for-encryption): Fix bug introduced
11113 in last change.
11114
11115 2011-06-05 Deniz Dogan <deniz@dogan.se>
11116
11117 * net/rcirc.el (rcirc-prompt-for-encryption): New function.
11118 (rcirc): Use it to prompt for encryption.
11119
11120 2011-06-05 Roland Winkler <winkler@gnu.org>
11121
11122 * textmodes/bibtex.el (bibtex-search-buffer): New variable.
11123 (bibtex-search-entries): New command bound to C-c C-a.
11124 (bibtex-display-entries): New function.
11125
11126 2011-06-05 Roland Winkler <winkler@gnu.org>
11127
11128 * textmodes/bibtex.el (bibtex-generate-url-list): Fix docstring.
11129 (bibtex-insert-kill): After yanking insert newline if necessary.
11130 (bibtex-initialize): Call bibtex-string-files-init only once.
11131 (bibtex-mode): Do not call easy-menu-add.
11132 (bibtex-validate-globally): Use save-excursion in bibtex buffers.
11133 (bibtex-yank): Set arg properly if nil.
11134
11135 2011-06-05 Roland Winkler <winkler@gnu.org>
11136
11137 * textmodes/bibtex.el (bibtex-search-entry-globally):
11138 New variable.
11139 (bibtex-search-entry): Use it.
11140
11141 2011-06-05 Roland Winkler <winkler@gnu.org>
11142
11143 * textmodes/bibtex.el (bibtex-entry-format): New option
11144 sort-fields.
11145 (bibtex-format-entry, bibtex-reformat): Honor this option.
11146 (bibtex-parse-entry): Return fields in proper order.
11147
11148 2011-06-05 Juanma Barranquero <lekktu@gmail.com>
11149
11150 * doc-view.el (doc-view-remove-if): Move computation of result out
11151 of `dolist' to silence misleading lexical-binding warning.
11152
11153 2011-06-04 Chong Yidong <cyd@stupidchicken.com>
11154
11155 * emacs-lisp/timer.el (timer-activate): Remove unused arg.
11156 (timer-activate, timer-activate-when-idle): Doc fix (Bug#8793).
11157
11158 2011-06-04 Michael Albinus <michael.albinus@gmx.de>
11159
11160 * net/tramp-sh.el (tramp-find-shell): Apply workaround also for
11161 "SunOS 5.10".
11162
11163 2011-06-04 Michael Albinus <michael.albinus@gmx.de>
11164
11165 * net/tramp.el (tramp-set-completion-function, tramp-parse-rhosts)
11166 (tramp-parse-shosts, tramp-parse-sconfig, tramp-parse-shostkeys)
11167 (tramp-parse-hosts, tramp-parse-passwd, tramp-parse-netrc)
11168 (tramp-parse-putty):
11169 * net/tramp-sh.el (tramp-completion-function-alist-rsh)
11170 (tramp-completion-function-alist-ssh)
11171 (tramp-completion-function-alist-telnet)
11172 (tramp-completion-function-alist-su)
11173 (tramp-completion-function-alist-putty): Set `tramp-autoload'
11174 cookie.
11175
11176 * net/tramp-ftp.el:
11177 * net/tramp-sh.el:
11178 * net/tramp-smb.el: Set `tramp-autoload' cookie, and eval after
11179 load "tramp.el" `tramp-set-completion-function'.
11180
11181 2011-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
11182
11183 * shell.el: Require and use pcomplete.
11184 (shell-dynamic-complete-functions): Add pcomplete-completions-at-point.
11185 (shell-completion-vars): Set pcomplete-default-completion-function.
11186
11187 2011-06-04 Deniz Dogan <deniz@dogan.se>
11188
11189 * iswitchb.el (iswitchb-window-buffer-p): Use `member' instead of
11190 `memq' (Bug#8799).
11191
11192 2011-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
11193
11194 * subr.el (make-progress-reporter): Add "..." by default (bug#8785).
11195
11196 2011-06-02 Juanma Barranquero <lekktu@gmail.com>
11197
11198 * bs.el (bs--mark-unmark, bs--nth-wrapper):
11199 * mpc.el (mpc-select-extend, mpc-songpointer-context):
11200 * vc/log-view.el (log-view-beginning-of-defun):
11201 * vc/smerge-mode.el (smerge-apply-resolution-patch)
11202 (smerge-refine-forward, smerge-refine-chopup-region):
11203 Silence warning for unused `dotimes' counter variables.
11204
11205 2011-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
11206
11207 * net/tramp.el (tramp-with-progress-reporter): Rename from
11208 with-progress-reporter. Use `declare'.
11209 * net/tramp-smb.el:
11210 * net/tramp-sh.el:
11211 * net/tramp-gvfs.el: Update all uses.
11212
11213 2011-06-02 Jay Belanger <jay.p.belanger@gmail.com>
11214
11215 * calc/calc.el (calc-kill-stack-buffer): Make sure that the trail
11216 buffer isn't killed before making it current.
11217
11218 2011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
11219
11220 Silence various byte-compiler warnings.
11221 * emacs-lisp/byte-run.el (make-obsolete-variable): New argument
11222 `access-type' and new obsolescence format.
11223 * emacs-lisp/bytecomp.el (byte-compile-warn-obsolete): Adjust to
11224 new format.
11225 (byte-compile-check-variable): New `access-type' argument.
11226 Only warn if the access-type is obsolete.
11227 (byte-compile-dynamic-variable-bind, byte-compile-variable-ref)
11228 (byte-compile-variable-set): Adjust callers.
11229 * help-fns.el (describe-variable): Adjust to new obsolescence format.
11230 * mail/sendmail.el (mail-mailer-swallows-blank-line): Only mark
11231 setting it as obsolete.
11232 * simple.el (minibuffer-completing-symbol):
11233 * font-lock.el (font-lock-beginning-of-syntax-function): Only mark read
11234 access as obsolete.
11235 * minibuffer.el (minibuffer-completing-file-name): Don't make it
11236 obsolete yet.
11237 * international/quail.el (quail-mouse-choose-completion): Remove unused
11238 code referring to obsolete var.
11239 (quail-choose-completion-string): Remove.
11240 * server.el (server-clients-with, server-kill-buffer-query-function)
11241 (server-kill-emacs-query-function): Silence "unused `proc'" warnings.
11242 * proced.el (proced-send-signal):
11243 * emacs-lisp/lisp.el (lisp-complete-symbol):
11244 Replace completion-annotate-function with completion-extra-properties.
11245
11246 2011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
11247
11248 * simple.el (goto-line): Use read-number.
11249 (overriding-map-is-bound): Remove.
11250 (saved-overriding-map): Change default.
11251 (save&set-overriding-map): Rename from ensure-overriding-map-is-bound;
11252 Take the map as argument.
11253 (universal-argument, negative-argument, digit-argument): Use it.
11254 (restore-overriding-map): Adjust.
11255 (do-auto-fill): Use fill-forward-paragraph.
11256 (keyboard-quit): Don't signal an error when debug-on-quit is non-nil.
11257
11258 * minibuffer.el (minibuffer-inactive-mode-map): New var.
11259 (minibuffer-inactive-mode): New major mode.
11260 * mouse.el (mouse-drag-region): Remove the "mouse-1 pops up
11261 the *Messages* buffer" hack.
11262 (mouse-popup-menubar): Don't burp if the event is a normal key.
11263
11264 Miscellaneous tweaks.
11265 * emacs-lisp/cl-macs.el (dolist, dotimes): Use the same strategy for
11266 lexical scoping as in subr.el's dolist and dotimes.
11267 * emacs-lisp/bytecomp.el (byte-compile-unfold-bcf):
11268 Silence compiler warning.
11269 * thingatpt.el (forward-whitespace): Trivial coding style fix.
11270 * subr.el (with-output-to-temp-buffer): Provide an edebug spec.
11271 * international/ccl.el (ccl-compile): Trivial simplification.
11272 * help-fns.el (help-do-arg-highlight): Silence compiler warning.
11273 * emacs-lisp/testcover.el (testcover-end): Remove spurious
11274 `printflag' argument.
11275 * emacs-lisp/byte-run.el (make-obsolete, make-obsolete-variable):
11276 Purecopy the whole obsolescence data.
11277
11278 2011-06-01 Leo Liu <sdl.web@gmail.com>
11279
11280 * net/rcirc.el (rcirc-decode-coding-system): Revert last change;
11281 improve doc-string as suggested by Marco Pessotto
11282 <melmothx@gmail.com>.
11283 (rcirc-print): Fix last change.
11284
11285 2011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
11286
11287 * minibuffer.el (complete-with-action): Return nil for the metadata and
11288 boundaries of non-functional tables.
11289 (completion-table-dynamic): Return nil for the metadata.
11290 (completion-table-with-terminator): Add default case, using
11291 complete-with-action.
11292 (completion--metadata): New function.
11293 (completion-all-sorted-completions, minibuffer-completion-help): Use it
11294 to try and avoid pathological performance problems.
11295 (completion--embedded-envvar-table): Return `category' metadata.
11296
11297 2011-05-31 Lars Magne Ingebrigtsen <larsi@gnus.org>
11298
11299 * subr.el (process-alive-p): New tiny convenience function.
11300
11301 2011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
11302
11303 * emacs-lisp/debug.el (debug): Save&restore not just the buffer's
11304 content but also its previous major mode.
11305
11306 2011-05-31 Helmut Eller <eller.helmut@gmail.com>
11307
11308 * emacs-lisp/debug.el (debug): Restore the previous content of the
11309 *Backtrace* buffer when we exit with C-M-c.
11310
11311 2011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
11312
11313 * minibuffer.el: Add metadata method to completion tables.
11314 (completion-category-overrides): New defcustom.
11315 (completion-metadata, completion--field-metadata)
11316 (completion-metadata-get, completion--styles)
11317 (completion--cycle-threshold): New functions.
11318 (completion-try-completion, completion-all-completions):
11319 Add `metadata' argument to choose completion-styles.
11320 (completion--do-completion): Use metadata to choose cycling.
11321 (completion-all-sorted-completions): Use metadata for sorting.
11322 Remove :completion-cycle-penalty which is not needed any more.
11323 (completion--try-word-completion): Add `metadata' argument.
11324 (minibuffer-completion-help): Check metadata for annotation function
11325 and sorting.
11326 (completion-file-name-table): Return `category' metadata.
11327 (minibuffer-completing-file-name): Make obsolete.
11328 * simple.el (minibuffer-completing-symbol): Make obsolete.
11329 * icomplete.el (icomplete-completions): Pass new `metadata' param to
11330 completion-try-completion.
11331
11332 2011-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
11333
11334 * mail/smtpmail.el (smtpmail-send-data): Add progress reporter.
11335
11336 2011-05-30 Leo Liu <sdl.web@gmail.com>
11337
11338 * net/rcirc.el (rcirc-debug-buffer): Use visible buffer name.
11339 (rcirc-print): Decode all incoming messages (bug#8744).
11340 (rcirc-decode-coding-system): Allow value nil for automatic coding
11341 system detection.
11342
11343 2011-06-01 Glenn Morris <rgm@gnu.org>
11344
11345 * mail/emacsbug.el (report-emacs-bug-hook): Mailclient ignores From.
11346
11347 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
11348
11349 * image.el (image-animate-max-time): Allow nil and t values.
11350 Default to nil.
11351 (create-animated-image): Doc fix.
11352 (image-animate-start): Remove second arg; just use
11353 image-animate-max-time.
11354 (image-animate-timeout): Doc fix. Args changed.
11355
11356 * image-mode.el (image-toggle-display-image): Ensure that the
11357 image spec passed to the animate timer is the same object as in
11358 the buffer's display property (Bug#6981).
11359 (image-transform-properties): Doc fix.
11360
11361 * image.el (image-animate-max-time): Default to nil.
11362
11363 2011-05-29 Martin Rudalics <rudalics@gmx.at>
11364
11365 * menu-bar.el (kill-this-buffer-enabled-p): Avoid looping over
11366 entire buffer list (Bug#8184).
11367
11368 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
11369
11370 * image.el (imagemagick-types-inhibit)
11371 (imagemagick-register-types): Doc fix.
11372
11373 2011-05-29 Deniz Dogan <deniz@dogan.se>
11374
11375 * net/rcirc.el (rcirc): Use the user's stored encryption method by
11376 default.
11377
11378 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
11379
11380 * select.el: Don't perform clipboard-manager saving in hooks;
11381 leave the hooks empty.
11382
11383 2011-05-28 Leo Liu <sdl.web@gmail.com>
11384
11385 * replace.el (occur-menu-map, occur-edit-mode-map): New vars.
11386 (occur-mode-map): Bind occur-edit-mode. Use occur-menu-map.
11387 (occur-edit-mode): New major mode (Bug#8463).
11388 (occur-after-change-function): New function.
11389 (occur-engine): Give Occur tags a read-only property.
11390
11391 2011-05-28 Kevin Ryde <user42@zip.com.au>
11392
11393 * subr.el (def-edebug-spec): Doc fix (Bug#8430).
11394
11395 2011-05-28 Chong Yidong <cyd@stupidchicken.com>
11396
11397 * bindings.el (help-echo): Make the initial non-indicator dash
11398 empty on graphical terminals (Bug#7295).
11399
11400 * files.el (auto-mode-alist): Move config rule after the
11401 in-stripping one (Bug#8547).
11402
11403 * newcomment.el (comment-end-skip): Doc fix (Bug#8659).
11404
11405 * startup.el (normal-splash-screen): Remove gratuitous mode-line
11406 setting (Bug#8740).
11407
11408 2011-05-28 Alp Aker <aker@pitt.edu> (tiny change)
11409
11410 * buff-menu.el (Buffer-menu-revert-function, Buffer-menu-sort)
11411 (Buffer-menu-buffer+size): Use Buffer-menu-buffer-column
11412 (Bug#8539).
11413
11414 2011-05-28 Chong Yidong <cyd@stupidchicken.com>
11415
11416 * emacs-lisp/re-builder.el (re-builder): Improve doc (Bug#8286).
11417
11418 2011-05-28 Dima Kogan <dkogan@cds.caltech.edu> (tiny change)
11419
11420 * progmodes/hideshow.el (hs-looking-at-block-start-p): New fun.
11421 (hs-hide-block-at-point, hs-find-block-beginning)
11422 (hs-already-hidden-p, hs-hide-block, hs-show-block): Use it
11423 (Bug#8279).
11424
11425 2011-05-28 Glenn Morris <rgm@gnu.org>
11426
11427 * startup.el (fancy-about-screen): Use standard mode line. (Bug#8740)
11428
11429 2011-05-28 Chong Yidong <cyd@stupidchicken.com>
11430
11431 * help-fns.el (describe-function-1): If the function is a derived
11432 major mode, print the parent mode.
11433
11434 * progmodes/cc-mode.el (c-mode, c++-mode, objc-mode, java-mode)
11435 (idl-mode, pike-mode, awk-mode): Inherit from prog-mode.
11436
11437 2011-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
11438
11439 * minibuffer.el (completion--capf-wrapper): Check applicability before
11440 returning non-nil for non-exclusive completion data.
11441 * progmodes/etags.el (tags-completion-at-point-function):
11442 * info-look.el (info-lookup-completions-at-point): Mark as
11443 non-exclusive.
11444 (info-complete): Adjust accordingly.
11445
11446 * info-look.el: Convert to lexical-binding and completion-at-point.
11447 (info-lookup-completions-at-point): New function.
11448 (info-complete): Use it and completion-in-region.
11449
11450 2011-05-28 Drew Adams <drew.adams@oracle.com>
11451
11452 * isearch.el: Let M-e start with point at the first mismatched char.
11453 (isearch-fail-pos): New function.
11454 (isearch-edit-string): Use it.
11455
11456 2011-05-28 Dmitry Kurochkin <dmitry.kurochkin@gmail.com> (tiny change)
11457
11458 * isearch.el (isearch-range-invisible): Use invisible-p (bug#8721).
11459
11460 2011-05-27 Toby Cubitt <toby-predictive@dr-qubit.org>
11461
11462 * emacs-lisp/avl-tree.el: New avl-tree-stack datatype. Add new
11463 traversal functions for avl-trees.
11464 (avl-tree--stack): New struct.
11465 (avl-tree-stack-p, avl-tree--stack-repopulate): New funs.
11466 (avl-tree-enter): Add optional `updatefun' arg.
11467 (avl-tree--do-enter): Add optional `updatefun' arg.
11468 Change return value.
11469 (avl-tree-delete): Add optional `test' and `nilflag' args.
11470 (avl-tree--do-delete): Add `test' and `nilflag' args.
11471 Change return value.
11472 (avl-tree-member): Add optional `nilflag'
11473 (avl-tree-member-p): New function.
11474 (avl-tree-mapc, avl-tree-mapf, avl-tree-mapcar): New functions.
11475 (avl-tree-stack, avl-tree-stack-pop, avl-tree-stack-first)
11476 (avl-tree-stack-empty-p): New functions.
11477
11478 * emacs-lisp/avl-tree.el (avl-tree--del-balance): Rename from
11479 avl-tree--del-balance1 and make it work both ways.
11480 (avl-tree--del-balance2): Remove.
11481 (avl-tree--enter-balance): Rename from avl-tree--enter-balance1 and
11482 make it work both ways.
11483 (avl-tree--enter-balance2): Remove.
11484 (avl-tree--switch-dir, avl-tree--dir-to-sign, avl-tree--sign-to-dir):
11485 New macros.
11486 (avl-tree--mapc, avl-tree-map): Add direction argument.
11487
11488 2011-05-27 David Michael <fedora.dm0@gmail.com> (tiny change)
11489
11490 * files.el (interpreter-mode-alist): Add rbash (bug#8745).
11491
11492 2011-05-27 Chong Yidong <cyd@stupidchicken.com>
11493
11494 * select.el: Support clipboard managers with built-in function
11495 x-clipboard-manager-save, via delete-frame-functions and
11496 kill-emacs-hook.
11497 (xselect-convert-to-targets): Add MULTIPLE target to list.
11498 (xselect-convert-to-save-targets): New function.
11499
11500 2011-05-27 Kenichi Handa <handa@m17n.org>
11501
11502 * mail/sendmail.el (mail-encode-header): Avoid double encoding by
11503 let-binding rfc2047-encode-encoded-words to nil.
11504
11505 2011-05-27 Glenn Morris <rgm@gnu.org>
11506
11507 * mail/emacsbug.el: Don't require url-util.
11508
11509 * shell.el (shell-directory-tracker): Case matters. (Bug#8735)
11510
11511 * files.el (set-auto-mode):
11512 Also respect mode: entries at the end of the file. (Bug#8586)
11513
11514 2011-05-26 Glenn Morris <rgm@gnu.org>
11515
11516 * files.el (hack-local-variables-prop-line, hack-local-variables):
11517 Downcase mode names, as seems to be traditional.
11518 (hack-local-variables, hack-local-variables-apply): Doc fixes.
11519
11520 * mail/emacsbug.el (report-emacs-bug): Mention checking From address.
11521 (report-emacs-bug-hook): Try to validate the From address. (Bug#8038)
11522
11523 2011-05-25 Julien Danjou <julien@danjou.info>
11524
11525 * textmodes/rst.el (rst-define-level-faces): Do not define face
11526 symbol if it is already defined.
11527
11528 2011-05-24 Vincent Belaïche <vincentb1@users.sourceforge.net>
11529
11530 * play/5x5.el (5x5-new-game, 5x5-randomize):
11531 Reset 5x5-solver-output to nil when a new grid is cast.
11532 (5x5-log-init, 5x5-log): Use defsubst instead of defmacro to shunt
11533 these debugging traces, as defmacro breaks the compiled code.
11534
11535 2011-05-24 Dmitry Kurochkin <dmitry.kurochkin@gmail.com> (tiny change)
11536
11537 * isearch.el (isearch-range-invisible): Use invisible-p (bug#8721).
11538
11539 2011-05-24 Leo Liu <sdl.web@gmail.com>
11540
11541 * vc/vc-bzr.el (vc-bzr-sha1-program): Rename from sha1-program.
11542 (vc-bzr-sha1): Adapt.
11543
11544 * sha1.el: Remove. Function `sha1' is now builtin.
11545
11546 * bindings.el: Provide sha1 feature.
11547
11548 2011-05-24 Kenichi Handa <handa@m17n.org>
11549
11550 * mail/sendmail.el: Require `rfc2047'.
11551 (mail-insert-from-field): Do not perform RFC2047 encoding.
11552 (mail-encode-header): New function.
11553 (sendmail-send-it): Set buffer-file-coding-system of the work
11554 buffer to the return value of select-message-coding-system.
11555 Call mail-encode-header.
11556
11557 * mail/smtpmail.el (smtpmail-send-it): Call mail-encode-header.
11558
11559 2011-05-24 Sean Neakums <sneakums@zork.net> (tiny change)
11560
11561 * mail/supercite.el (sc-default-cite-frame):
11562 Handle sc-nested-citation-p when sc-cite-blank-lines-p is non-nil.
11563
11564 2011-05-24 Glenn Morris <rgm@gnu.org>
11565
11566 * progmodes/python.el (brm-menu): Declare.
11567
11568 * emulation/viper.el (viper-set-hooks): Declare.
11569
11570 * play/5x5.el (5x5-log-init, 5x5-log): Evaluate when compiling.
11571 (5x5-log-init, 5x5-log, 5x5-solver): Doc fixes.
11572 (math-map-vec, math-sub, math-mul, math-make-intv, math-reduce-vec)
11573 (math-format-number, math-pow, calcFunc-arrange, calcFunc-cvec)
11574 (calcFunc-diag, calcFunc-trn, calcFunc-inv, calcFunc-mrow)
11575 (calcFunc-mcol, calcFunc-vconcat, calcFunc-index): Declare.
11576
11577 2011-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
11578
11579 Add an :exit-function for completion-at-point.
11580
11581 * minibuffer.el (completion--done): New fun.
11582 (completion--do-completion): Use it. New arg `expect-exact'.
11583 (minibuffer-complete, minibuffer-complete-word): Don't output message,
11584 since completion--do-completion does it for us now.
11585 (minibuffer-force-complete): Use completion--done and
11586 completion--replace. Handle sole-completion case with more care.
11587 (minibuffer-complete-and-exit): Use new `expect-exact' arg.
11588 (completion-extra-properties): New var.
11589 (completion-annotate-function): Make obsolete.
11590 (minibuffer-completion-help): Adjust accordingly.
11591 Use completion-list-insert-choice-function.
11592 (completion-at-point, completion-help-at-point):
11593 Bind completion-extra-properties.
11594 (completion-pcm-word-delimiters): Add | (for uniquify, for example).
11595 * simple.el (completion-list-insert-choice-function): New var.
11596 (completion-setup-function): Preserve it.
11597 (choose-completion): Pay attention to it, shuffle the code a bit.
11598 (choose-completion-string): New arg `insert-function'.
11599
11600 * textmodes/bibtex.el: Convert to lexical binding.
11601 (bibtex-mode-map): Use completion-at-point.
11602 (bibtex-mode): Use define-derived-mode&completion-at-point-functions.
11603 (bibtex-completion-at-point-function): New fun, from bibtex-complete.
11604 (bibtex-complete): Define as obsolete alias.
11605 (bibtex-complete-internal): Remove.
11606 (bibtex-format-entry): Remove unused sub-group in regexp.
11607 * shell.el (shell--command-completion-data)
11608 (shell-environment-variable-completion):
11609 * pcomplete.el (pcomplete-completions-at-point):
11610 * comint.el (comint--complete-file-name-data): Use :exit-function
11611 instead of completion-table-with-terminator so it also works for
11612 choose-completion.
11613
11614 2011-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
11615
11616 * <lots-of-files>.el: Don't quote lambda expressions with `quote'.
11617
11618 * vc/smerge-mode.el (smerge-refine-subst): Don't deactivate the mark
11619 (bug#8710).
11620
11621 * emacs-lisp/lisp.el (up-list): Fix forward movement (bug#8708).
11622
11623 2011-05-23 Ken Manheimer <ken.manheimer@gmail.com>
11624
11625 * allout.el (allout-inhibit-auto-fill-on-headline): Create new
11626 customization variable and implement: If non-nil, auto-fill will
11627 be inhibited while on topic's header line.
11628
11629 2011-05-23 Vincent Belaïche <vincentb1@users.sourceforge.net>
11630
11631 * play/5x5.el: I/ Add an arithmetic solver to suggest positions to
11632 click on. II/ Make 5x5 multisession. III/ Ensure that random grids
11633 always have a solution in grid size = 5 cases.
11634 (5x5-mode-map): Add keybinding to function `5x5-solve-suggest'.
11635 (5x5-solver-output, 5x5-log-buffer): New vars.
11636 (5x5-grid, 5x5-x-pos, 5x5-y-pos, 5x5-moves, 5x5-cracking):
11637 Make these variables buffer local to achieve 5x5 multi-session-ness.
11638 (5x5): Set 5x5-grid-size only if SIZE is non-negative.
11639 (5x5-grid-to-vec, 5x5-vec-to-grid, 5x5-log-init, 5x5-log, 5x5-solver)
11640 (5x5-solve-suggest): New funs.
11641 (5x5-randomize): Use 5x5-make-move instead of 5x5-flip-cell to
11642 randomize a grid so that we ensure that there is always a solution.
11643 (5x5-make-random-grid): Allow other movement than flipping.
11644
11645 2011-05-23 Kevin Ryde <user42@zip.com.au>
11646
11647 * emacs-lisp/advice.el (ad-read-advised-function):
11648 Use `function-called-at-point' as the default, if it has
11649 advice and passes PREDICATE.
11650
11651 2011-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
11652
11653 * emacs-lisp/bytecomp.el (byte-compile-function-form): Only call
11654 byte-compile-lambda if it's actually a lambda.
11655
11656 * emacs-lisp/eieio.el (eieio-defgeneric-form-primary-only-one):
11657 Fix function quoting. Use backquote better.
11658
11659 2011-05-22 Yuanle Song <sylecn@gmail.com>
11660
11661 * nxml/rng-xsd.el (rng-xsd-check-pattern): Use case-sensitive
11662 matching (Bug#8516).
11663
11664 2011-01-22 Jari Aalto <jari.aalto@cante.net>
11665
11666 * vc/vc-dir.el (vc-default-dir-printer): Give edited tag a
11667 different face (Bug#8178).
11668
11669 2011-05-22 Chong Yidong <cyd@stupidchicken.com>
11670
11671 * vc/diff-mode.el (diff-changed): Don't use terminal specs for
11672 defface (Bug#8144).
11673
11674 2011-05-22 Stefan Monnier <monnier@iro.umontreal.ca>
11675
11676 * emacs-lisp/macroexp.el (macroexpand-all-1): Convert ' to #' for
11677 funcall as well (bug#8712). Warn when performing those conversions.
11678 * emacs-lisp/bytecomp.el (byte-compile-form): Fix error report.
11679
11680 * progmodes/grep.el (grep-mode): Fix it for good (bug#8684)!
11681
11682 2011-05-22 Glenn Morris <rgm@gnu.org>
11683
11684 * files.el (hack-local-variables-prop-line): Small simplifications.
11685 (hack-local-variables, hack-local-variables-prop-line):
11686 If MODE-ONLY, return the mode, rather than just `t'.
11687
11688 2011-05-21 Stefan Monnier <monnier@iro.umontreal.ca>
11689
11690 * progmodes/grep.el (grep-mode): Fix last change (bug#8684).
11691
11692 2011-05-21 Glenn Morris <rgm@gnu.org>
11693
11694 * files.el (hack-local-variables-prop-line, hack-local-variables):
11695 If only interested in the mode, don't bother doing the other stuff.
11696
11697 * image-mode.el (image-after-revert-hook):
11698 Redraw all frames on which the image is visible. (Bug#8567)
11699
11700 * dired-aux.el (dired-touch-initial): Just use current-time. (Bug#6887)
11701
11702 * wid-edit.el (widget-checklist-match-inline):
11703 Fix 2011-04-19 change. (Bug#8649)
11704
11705 2011-05-20 Stefan Monnier <monnier@iro.umontreal.ca>
11706
11707 * emacs-lisp/checkdoc.el (checkdoc-sentencespace-region-engine):
11708 Also allow singlespace after single-letter capitals followed by a dot.
11709
11710 * nxml/nxml-mode.el (nxml-electric-slash): Reindent when completion is
11711 enabled. Suggested by James Ahlborn <jahlborn@gmail.com> (bug#8704).
11712
11713 2011-05-20 Nix <nix@esperi.org.uk>
11714
11715 * files.el (basic-save-buffer-2):
11716 Fix handling of break-hardlink-on-save with non-existent files.
11717
11718 2011-05-19 Deniz Dogan <deniz@dogan.se>
11719
11720 * net/rcirc.el (rcirc-mode): Initialize rcirc-urls to nil.
11721 (rcirc-markup-urls): Check if rcirc-url-regexp is nil.
11722
11723 2011-05-19 Glenn Morris <rgm@gnu.org>
11724
11725 * progmodes/f90.el (f90-type-def-re):
11726 Handle "type, bind(c)". (Bug#8691)
11727
11728 * emacs-lisp/autoload.el (batch-update-autoloads):
11729 Set autoload-excludes by parsing loadup.el rather than Makefiles.
11730
11731 2011-05-18 Michael Albinus <michael.albinus@gmx.de>
11732
11733 * net/tramp.el (tramp-process-actions): Set "first-password-request"
11734 property for the correct connection in case of multihops.
11735
11736 2011-05-18 Glenn Morris <rgm@gnu.org>
11737
11738 * emacs-lisp/authors.el (authors-fixed-entries): Remove fakemail.c.
11739 * mail/sendmail.el (sendmail-program): Fall back to just "sendmail".
11740
11741 Rationalize calendar handling of day and month abbrev-arrays.
11742 * calendar/calendar.el (calendar-customized-p): New function.
11743 (calendar-abbrev-construct, calendar-make-alist): Change what it does.
11744 (calendar-day-name-array, calendar-month-name-array): Doc fix.
11745 Add :set function.
11746 (calendar-abbrev-length, calendar-day-abbrev-array)
11747 (calendar-month-abbrev-array): Make defcustoms, with appropriate :set.
11748 (calendar-day-abbrev-array, calendar-month-abbrev-array):
11749 Elements may no longer be nil.
11750 (calendar-day-name, calendar-month-name):
11751 Update for changed nature of abbrev arrays.
11752 * calendar/diary-lib.el (diary-name-pattern):
11753 Update for changed nature of abbrev arrays.
11754 (diary-mark-entries-1): Update calendar-make-alist calls.
11755 (diary-font-lock-date-forms): Doc fix for changed abbrev arrays.
11756 * calendar/cal-html.el (cal-html-day-abbrev-array):
11757 Simply inherit from calendar-day-abbrev-array.
11758
11759 2011-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
11760
11761 * progmodes/grep.el (grep-mode): Disable default
11762 compilation-directory-matcher setting (bug#8684).
11763
11764 2011-05-17 Michael Albinus <michael.albinus@gmx.de>
11765
11766 * net/tramp.el (tramp-handle-insert-file-contents): Use "dd"
11767 instead of "head" and "tail". There were problems with SunOS 5.9,
11768 and it performs better.
11769
11770 2011-05-17 Glenn Morris <rgm@gnu.org>
11771
11772 * mail/mail-utils.el (mail-dont-reply-to): Silence compiler.
11773
11774 * progmodes/idlw-shell.el (idlwave-shell-complete-filename):
11775 Replace obsolete function.
11776
11777 * shell.el (pcomplete-parse-arguments-function): Declare.
11778
11779 * calendar/appt.el (appt-message-warning-time, appt-display-mode-line)
11780 (appt-display-diary, appt-display-interval, appt-prev-comp-time)
11781 (appt-check): Doc fixes.
11782 (appt-disp-window-function, appt-delete-window-function):
11783 Remove needless special case in custom :type.
11784 (appt-display-count): Default to 0, not nil.
11785 (appt-check): Reset appt-display-count to 0, not nil.
11786
11787 2011-05-17 Juanma Barranquero <lekktu@gmail.com>
11788
11789 * progmodes/python.el (python-font-lock-keywords):
11790 Add the Python 3.X keyword "nonlocal" (bug#8639).
11791
11792 2011-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
11793
11794 * emacs-lisp/eieio.el (defmethod): Fix quoting of code (bug#8677).
11795
11796 2011-05-16 Kevin Ryde <user42@zip.com.au>
11797
11798 * info-look.el (makefile-automake-mode): New setups, looking in
11799 automake manual, then makefile-mode.
11800 (makefile-mode): Remove automake manual, have it just in
11801 makefile-automake-mode since there's various things different or
11802 not relevant to plain make.
11803 (makefile-mode): Remove "other-modes" non-existent automake-mode,
11804 believe a hypothetical automake-mode would go to makefile-mode,
11805 not the other way around.
11806
11807 2011-05-15 Chong Yidong <cyd@stupidchicken.com>
11808
11809 * vc/diff-mode.el (diff-fixup-modifs): Locate correct position for
11810 hunk-end tags (Bug#8672).
11811
11812 * vc/vc-annotate.el (vc-annotate-mode-map): Bind = to
11813 vc-annotate-show-diff-revision-at-line (Bug#8671).
11814
11815 2011-05-14 Glenn Morris <rgm@gnu.org>
11816
11817 * vc/add-log.el (add-change-log-entry): Don't start adding a new entry
11818 in the middle of an existing one with multiple authors. (Bug#8645)
11819 (change-log-font-lock-keywords): Also handle multiple author lines
11820 with leading tabs. (Bug#8644)
11821
11822 * calendar/appt.el (appt-check): Rename some local variables.
11823 Some simplification/reordering.
11824
11825 * mail/feedmail.el (feedmail-confirm-outgoing-timeout)
11826 (feedmail-sendmail-f-doesnt-sell-me-out)
11827 (feedmail-queue-slug-suspect-regexp, feedmail-debug)
11828 (feedmail-debug-sit-for, feedmail-queue-express-hook)
11829 (feedmail-queue-runner-message-sender): Set :version.
11830 (bbdb-search, bbdb-records, smtp-via-smtp, smtp-server)
11831 (bbdb-dwim-net-address, vm-mail): Declare.
11832 (feedmail-binmail-gnulinuxish-template):
11833 Rename from feedmail-binmail-linuxish-template.
11834 (feedmail-buffer-to-smtp, feedmail-vm-mail-mode):
11835 Use insert-buffer-substring.
11836
11837 2011-05-14 Bill Carpenter <bill@carpenter.org>
11838
11839 * mail/feedmail.el (feedmail-patch-level): Increase.
11840 (feedmail-debug): New custom group.
11841 (feedmail-confirm-outgoing-timeout)
11842 (feedmail-sendmail-f-doesnt-sell-me-out)
11843 (feedmail-queue-slug-suspect-regexp, feedmail-debug)
11844 (feedmail-debug-sit-for, feedmail-queue-express-hook): New options.
11845 (feedmail-sender-line, feedmail-from-line)
11846 (feedmail-fiddle-headers-upwardly, feedmail-enable-spray)
11847 (feedmail-spray-this-address)
11848 (feedmail-spray-address-fiddle-plex-list)
11849 (feedmail-queue-use-send-time-for-date)
11850 (feedmail-queue-use-send-time-for-message-id)
11851 (feedmail-last-chance-hook, feedmail-queue-runner-mode-setter)
11852 (feedmail-buffer-eating-function):
11853 Doc fixes.
11854 (feedmail-spray-via-bbdb, feedmail-buffer-to-smtp)
11855 (feedmail-vm-mail-mode, feedmail-message-action-scroll-up)
11856 (feedmail-message-action-scroll-down): New functions.
11857 (feedmail-queue-directory, feedmail-queue-draft-directory):
11858 Use expand-file-name.
11859 (feedmail-prompt-before-queue-standard-alist): Add scroll entries.
11860 Remove C-v help entry.
11861 (feedmail-queue-buffer-file-name): New variable.
11862 (feedmail-mail-send-hook-splitter, feedmail-buffer-to-binmail)
11863 (feedmail-buffer-to-smtpmail, feedmail-queue-express-to-draft)
11864 (feedmail-message-action-send-strong, feedmail-message-action-edit)
11865 (feedmail-message-action-draft, feedmail-message-action-draft-strong)
11866 (feedmail-message-action-queue, feedmail-message-action-queue-strong)
11867 (feedmail-message-action-toggle-spray)
11868 (feedmail-run-the-queue-no-prompts)
11869 (feedmail-run-the-queue-global-prompt, feedmail-queue-reminder)
11870 (feedmail-look-at-queue-directory, feedmail-queue-subject-slug-maker)
11871 (feedmail-create-queue-filename, feedmail-rfc822-time-zone):
11872 (feedmail-fiddle-header, feedmail-give-it-to-buffer-eater)
11873 (feedmail-envelope-deducer, feedmail-fiddle-from)
11874 (feedmail-fiddle-sender, feedmail-default-date-generator)
11875 (feedmail-fiddle-date, feedmail-fiddle-message-id)
11876 (feedmail-fiddle-spray-address)
11877 (feedmail-fiddle-list-of-spray-fiddle-plexes)
11878 (feedmail-fiddle-list-of-fiddle-plexes)
11879 (feedmail-fill-to-cc-function, feedmail-fill-this-one)
11880 (feedmail-one-last-look, feedmail-fqm-p): Add debug calls.
11881 (feedmail-queue-runner-message-sender, feedmail-binmail-template):
11882 Change default. Doc fix.
11883 (feedmail-queue-runner-cleaner-upper): Use feedmail-say-chatter.
11884 (feedmail-binmail-linuxish-template): New constant.
11885 (feedmail-buffer-to-sendmail): Doc fix. Add debug call.
11886 Respect feedmail-sendmail-f-doesnt-sell-me-out.
11887 (feedmail-send-it): Add debug call.
11888 Use feedmail-queue-buffer-file-name, and
11889 feedmail-send-it-immediately-wrapper.
11890 (feedmail-message-action-send): Add debug call.
11891 Use feedmail-send-it-immediately-wrapper.
11892 (feedmail-queue-express-to-queue): Add debug call.
11893 Run feedmail-queue-express-hook.
11894 (feedmail-message-action-help): Add debug call. Use feedmail-p-h-b-n.
11895 (feedmail-message-action-help-blat):
11896 Rename from feedmail-queue-send-edit-prompt-help-first.
11897 (feedmail-run-the-queue): Add debug call. Set buffer-file-type.
11898 Check line-endings. Handle errors better.
11899 (feedmail-queue-reminder-brief, feedmail-queue-reminder-medium):
11900 Doc fix. Add debug call.
11901 (feedmail-queue-send-edit-prompt): Doc fix. Add debug call.
11902 Use feedmail-queue-send-edit-prompt-inner.
11903 (feedmail-queue-runner-prompt, feedmail-scroll-buffer): New functions.
11904 (feedmail-queue-send-edit-prompt-inner): New function, extracted
11905 from feedmail-queue-send-edit-prompt.
11906 (feedmail-queue-send-edit-prompt-help)
11907 (feedmail-queue-send-edit-prompt-help-later): Remove functions.
11908 (feedmail-tidy-up-slug): Add debug call.
11909 Respect feedmail-queue-slug-suspect-regexp.
11910 (feedmail-queue-subject-slug-maker): Use buffer-substring-no-properties.
11911 (feedmail-dump-message-to-queue): Add debug call.
11912 Expand queue-directory.
11913 (feedmail-dump-message-to-queue): Change message slightly.
11914 Use feedmail-say-chatter.
11915 (feedmail-rfc822-date): Add debug call. Bind system-time-locale.
11916 (feedmail-send-it-immediately-wrapper): New function.
11917 (feedmail-send-it-immediately): Add debug calls. Use let not let*.
11918 Insert empty string rather than newline. Handle full-frame case.
11919 Use catch/throw. Use feedmail-say-chatter.
11920 (feedmail-fiddle-from): Try mail-host-address.
11921 (feedmail-default-message-id-generator): Doc fix.
11922 Bind system-time-locale. Handle missing end.
11923 (feedmail-fiddle-x-mailer): Add debug call.
11924 Handle feedmail-x-mailer-line being nil.
11925 (feedmail-accume-n-nuke-header, feedmail-deduce-address-list):
11926 Add debug call. Use buffer-substring-no-properties.
11927 (feedmail-say-debug, feedmail-say-chatter): New functions.
11928 (feedmail-find-eoh): Give an explicit error.
11929
11930 2011-05-13 Ulf Jasper <ulf.jasper@web.de>
11931
11932 * net/newst-treeview.el (newsticker-treeview-face): Change default
11933 family from helvetica to sans.
11934 (newsticker-treeview-tool-bar-map): Move tool-bar icons to
11935 etc/images/newsticker.
11936
11937 * net/newst-reader.el (newsticker-feed-face): Change default
11938 family from helvetica to sans.
11939
11940 * net/newst-plainview.el (newsticker-new-item-face)
11941 (newsticker-old-item-face, newsticker-immortal-item-face)
11942 (newsticker-obsolete-item-face, newsticker-date-face)
11943 (newsticker-statistics-face): Change default family from
11944 helvetica to sans.
11945 (newsticker--plainview-tool-bar-map): Move tool-bar icons to
11946 etc/images/newsticker.
11947
11948 * net/newst-backend.el (newsticker--do-run-auto-mark-filter)
11949 (newsticker--process-auto-mark-filter-match): Tell user about
11950 auto-marking.
11951
11952 2011-05-13 Didier Verna <didier@xemacs.org>
11953
11954 Common Lisp indentation improvements on defmethod and lambda-lists.
11955 * emacs-lisp/cl-indent.el: Advertise the changes and remove obsolete
11956 TODO entries.
11957 (lisp-lambda-list-keyword-parameter-indentation)
11958 (lisp-lambda-list-keyword-parameter-alignment)
11959 (lisp-lambda-list-keyword-alignment): New customizable user options.
11960 (lisp-indent-defun-method): Improve docstring.
11961 (extended-loop-p): Fix comment.
11962 (lisp-indent-lambda-list-keywords-regexp): New variable.
11963 (lisp-indent-lambda-list): New function.
11964 (lisp-indent-259): Use it.
11965 (lisp-indent-defmethod): Support for more than one
11966 method qualifier and properly indent methods lambda-lists.
11967 (defgeneric): Provide a missing common-lisp-indent-function property.
11968
11969 2011-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
11970
11971 * thingatpt.el (bounds-of-thing-at-point): Return nil rather than
11972 bounds for the empty string (bug#8667).
11973
11974 2011-05-13 Glenn Morris <rgm@gnu.org>
11975
11976 * mail/feedmail.el (feedmail-buffer-to-sendmail): Require sendmail.
11977
11978 * mail/sendmail.el (sendmail-program): Try executable-find first.
11979 (sendmail-send-it): `sendmail-program' cannot be unbound.
11980
11981 * calendar/appt.el (appt-make-list): Simplify.
11982 (appt-time-msg-list): Doc fix.
11983 (appt-check): Change mode-line message at the time of the appointment.
11984
11985 2011-05-12 Andreas Schwab <schwab@linux-m68k.org>
11986
11987 * progmodes/ld-script.el (ld-script-keywords)
11988 (ld-script-builtins): Update keywords list.
11989
11990 2011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
11991
11992 * progmodes/grep.el (grep-filter): Don't trip on partial lines.
11993
11994 * shell.el (shell-completion-vars): New function.
11995 (shell-mode):
11996 * simple.el (read-shell-command): Use it.
11997 (blink-matching-open): No need for " [...]" in minibuffer-message.
11998
11999 2011-05-12 Glenn Morris <rgm@gnu.org>
12000
12001 * calendar/appt.el (appt-now-displayed): Remove pointless variable.
12002 (appt-check): Simplify.
12003
12004 2011-05-12 Eli Zaretskii <eliz@gnu.org>
12005
12006 * vc/smerge-mode.el (smerge-resolve): Use null-device rather than a
12007 literal "/dev/null".
12008
12009 2011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
12010
12011 * emacs-lisp/lisp.el (lisp-complete-symbol, lisp-completion-at-point):
12012 Fix typo.
12013
12014 2011-05-12 Ralph Schleicher <rs@ralph-schleicher.de>
12015
12016 * progmodes/which-func.el (which-function):
12017 Use add-log-current-defun instead of add-log-current-defun-function,
12018 which might not be defined (Bug#8260).
12019
12020 2011-05-12 Glenn Morris <rgm@gnu.org>
12021
12022 * emacs-lisp/bytecomp.el (byte-compile-file-form-defmumble):
12023 Let byte-compile-initial-macro-environment always take precedence.
12024
12025 2011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
12026
12027 * net/rcirc.el: Add support for SSL/TLS connections.
12028 (rcirc-server-alist): New field `encryption'.
12029 (rcirc): Check `encryption' settings.
12030 (rcirc-connect): New arg `encryption'. Use open-network-stream.
12031 Merge make-local-variable into `set'.
12032 (rcirc--connection-open-p): New function.
12033 (rcirc-send-string, rcirc-clean-up-buffer): Use it to handle case where
12034 the process is not a network process (e.g. running gnutls-cli).
12035 (set-rcirc-decode-coding-system, set-rcirc-encode-coding-system):
12036 Make rcirc-(en|de)code-coding-system local here.
12037 (rcirc-mode): Merge make-local-variable into `set'.
12038 (rcirc-parent-buffer): Make permanent buffer-local.
12039 (rcirc-multiline-minor-mode): Don't do it here.
12040 (rcirc-switch-to-server-buffer): Don't switch to a random buffer if
12041 there's no server buffer.
12042
12043 2011-05-11 Glenn Morris <rgm@gnu.org>
12044
12045 * newcomment.el (comment-kill): Prefix "unused" local.
12046
12047 * term/w32console.el (get-screen-color): Declare.
12048
12049 * emacs-lisp/bytecomp.el (byte-compile-arglist-warn):
12050 Handle symbol elements of byte-compile-initial-macro-environment.
12051
12052 2011-05-10 Leo Liu <sdl.web@gmail.com>
12053
12054 * bookmark.el (bookmark-bmenu-mode-map):
12055 Bind bookmark-bmenu-search to `/'.
12056
12057 * mail/footnote.el: Convert to utf-8 encoding.
12058 (footnote-unicode-string, footnote-unicode-regexp): New variable.
12059 (Footnote-unicode): New function.
12060 (footnote-style-alist): Add unicode style to the list.
12061 (footnote-style): Doc fix.
12062
12063 2011-05-10 Jim Meyering <meyering@redhat.com>
12064
12065 Fix doubled-word typos.
12066 * international/quail.el (quail-insert-kbd-layout): and and -> and
12067 * kermit.el: and and -> and
12068 * net/ldap.el (ldap-search-internal): to to -> to
12069 * progmodes/vhdl-mode.el (vhdl-offsets-alist): Likewise.
12070 * progmodes/js.el (js-mode): and and -> and
12071 * textmodes/artist.el (artist-move-to-xy): at at -> at
12072 (artist-draw-region-trim-line-endings): if if -> if
12073 And Safetyc -> Safety.
12074 * textmodes/reftex-dcr.el (reftex-view-crossref): at at -> at a
12075
12076 2011-05-10 Glenn Morris <rgm@gnu.org>
12077 Stefan Monnier <monnier@iro.umontreal.ca>
12078
12079 * files.el (hack-one-local-variable-eval-safep):
12080 Consider "eval: (foo-mode)" to be safe. (Bug#8613)
12081
12082 2011-05-10 Glenn Morris <rgm@gnu.org>
12083
12084 * calendar/diary-lib.el (diary-list-entries-hook)
12085 (diary-mark-entries-hook, diary-nongregorian-listing-hook)
12086 (diary-nongregorian-marking-hook, diary-list-entries)
12087 (diary-include-other-diary-files, diary-mark-entries)
12088 (diary-mark-included-diary-files): Doc fixes.
12089
12090 2011-05-09 Juanma Barranquero <lekktu@gmail.com>
12091
12092 * misc.el: Require tabulated-list.el during compilation.
12093
12094 2011-05-09 Chong Yidong <cyd@stupidchicken.com>
12095
12096 * progmodes/compile.el (compilation-start):
12097 Run compilation-filter-hook for the async case too.
12098 (compilation-filter-hook): Doc fix.
12099
12100 2011-05-09 Deniz Dogan <deniz@dogan.se>
12101
12102 * wdired.el: Remove outdated installation comment. Fix usage
12103 comment.
12104
12105 2011-05-09 Juanma Barranquero <lekktu@gmail.com>
12106
12107 * misc.el: Implement new command `list-dynamic-libraries'.
12108 (list-dynamic-libraries--loaded-only-p): New variable.
12109 (list-dynamic-libraries--refresh): New function.
12110 (list-dynamic-libraries): New command.
12111
12112 2011-05-09 Chong Yidong <cyd@stupidchicken.com>
12113
12114 * progmodes/compile.el (compilation-error-regexp-alist-alist):
12115 Fix the ant regexp to handle end-line and end-column info from jikes.
12116 Re-introduce maven regexp. Give the ruby-Test::Unit regexp a
12117 higher priority to avoid clobbering by gnu.
12118
12119 2011-05-08 Chong Yidong <cyd@stupidchicken.com>
12120
12121 * cus-face.el (custom-declare-face): Call custom-theme-recalc-face
12122 if the face has existing theme settings (Bug#8454).
12123
12124 2011-05-08 Ralph Schleicher <rs@ralph-schleicher.de>
12125
12126 * progmodes/perl-mode.el (perl-imenu-generic-expression):
12127 Only match variables declared via `my' or `our' (Bug#8261).
12128
12129 * net/browse-url.el (browse-url-of-dired-file): Allow browsing of
12130 special file names `.' and `..' (Bug#8259).
12131
12132 2011-05-08 Chong Yidong <cyd@stupidchicken.com>
12133
12134 * progmodes/grep.el (grep-mode-font-lock-keywords):
12135 Remove buffer-changing entries.
12136 (grep-filter): New function.
12137 (grep-mode): Add it to compilation-filter-hook.
12138
12139 * progmodes/compile.el (compilation-filter-hook)
12140 (compilation-filter-start): New defvars.
12141 (compilation-filter): Call compilation-filter-hook prior to
12142 updating the process mark.
12143
12144 2011-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
12145
12146 * emacs-lisp/eieio.el (defmethod): Fix typo in last change.
12147
12148 2011-05-07 Eli Zaretskii <eliz@gnu.org>
12149
12150 * mail/sendmail.el (send-mail-function): On MS-Windows, default to
12151 mailclient-send-it even if window-system is nil. (Bug#8595)
12152
12153 * term/w32console.el (terminal-init-w32console):
12154 Call get-screen-color and use its output to set the frame
12155 background-mode. (Bug#8597)
12156
12157 2011-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
12158
12159 Make bytecomp.el understand that defmethod defines funs (bug#8631).
12160 * emacs-lisp/eieio.el (eieio--defalias, eieio--defgeneric-init-form):
12161 New functions.
12162 (defgeneric, eieio--defmethod): Use them.
12163 (eieio-defgeneric): Remove.
12164 (defmethod): Call defgeneric in a way visible to the byte-compiler.
12165
12166 2011-05-07 Glenn Morris <rgm@gnu.org>
12167
12168 * calendar/timeclock.el (timeclock-log-data): Remove unused local.
12169 Use let rather than let*.
12170 (timeclock-find-discrep): Remove unused local.
12171
12172 * calendar/diary-lib.el (diary-comment-start): Doc fix.
12173
12174 * calendar/appt.el (appt-time-msg-list): Doc fix.
12175
12176 2011-05-06 Noah Friedman <friedman@splode.com>
12177
12178 * apropos.el (apropos-print-doc): Only use
12179 emacs-lisp-docstring-fill-column when it is bound to an integer,
12180 per that variable's documentation.
12181
12182 2011-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
12183
12184 * lpr.el (print-region-1): Echo lpr-program's output, so error messages
12185 and warnings are not silently discarded (e.g. use -d instead of -P).
12186
12187 2011-05-06 Glenn Morris <rgm@gnu.org>
12188
12189 * calendar/appt.el (appt-message-warning-time): Doc fix.
12190 (appt-warning-time-regexp): New option.
12191 (appt-make-list): Respect appt-message-warning-time.
12192
12193 * calendar/diary-lib.el (diary-comment-start, diary-comment-end):
12194 New options.
12195 (diary-add-to-list): Strip comments from the displayed string.
12196 (diary-mode): Set comment-start and comment-end.
12197
12198 * vc/diff-mode.el (smerge-refine-subst): Declare.
12199 (diff-refine-hunk): Don't require smerge-mode when compiling.
12200
12201 2011-05-06 Juanma Barranquero <lekktu@gmail.com>
12202
12203 * simple.el (list-processes): Return nil as the docstring says.
12204
12205 2011-05-05 Michael Albinus <michael.albinus@gmx.de>
12206
12207 * net/ange-ftp.el (ange-ftp-binary-file-name-regexp): Set default
12208 to "".
12209 (ange-ftp-write-region, ange-ftp-insert-file-contents)
12210 (ange-ftp-copy-file-internal): Use only `ange-ftp-binary-file' for
12211 determining of binary transfer. (Bug#7383)
12212
12213 2011-05-05 Michael Albinus <michael.albinus@gmx.de>
12214
12215 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
12216 Fix port computation bug. (Bug#8618)
12217
12218 2011-05-05 Glenn Morris <rgm@gnu.org>
12219
12220 * allout-widgets.el (allout-widgets-mode-inhibit): Declare before use.
12221
12222 * simple.el (shell-dynamic-complete-functions)
12223 (comint-dynamic-complete-functions): Declare.
12224
12225 * net/network-stream.el (gnutls-negotiate):
12226 * simple.el (tabulated-list-print): Fix declarations.
12227
12228 * progmodes/gud.el (syntax-symbol, syntax-point):
12229 Remove unnecessary and incorrect declarations.
12230
12231 * emacs-lisp/check-declare.el (check-declare-scan):
12232 Handle byte-compile-initial-macro-environment in bytecomp.el
12233
12234 2011-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
12235
12236 Fix earlier half-done eieio-defmethod change (bug#8338).
12237 * emacs-lisp/eieio.el (eieio--defmethod): Rename from eieio-defmethod.
12238 Streamline and change calling convention.
12239 (defmethod): Adjust accordingly and simplify.
12240 (eieio-defclass): Fix broken calls to eieio-defmethod and redirect to
12241 new eieio--defmethod.
12242 (slot-boundp): Minor CSE simplification.
12243
12244 2011-05-05 Milan Zamazal <pdm@zamazal.org>
12245
12246 * progmodes/glasses.el (glasses-separate-capital-groups): New option.
12247 (glasses-make-readable): Use glasses-separate-capital-groups.
12248
12249 2011-05-05 Juanma Barranquero <lekktu@gmail.com>
12250
12251 * emacs-lisp/warnings.el (warning-level-aliases): Reflow docstring.
12252 (warning-series): Doc fix.
12253 (display-warning): Don't try to create the buffer if we just found it.
12254
12255 2011-05-04 Chong Yidong <cyd@stupidchicken.com>
12256
12257 * emacs-lisp/autoload.el (generated-autoload-file): Set to nil.
12258 (autoload-find-generated-file): New function.
12259 (generate-file-autoloads): Bind generated-autoload-file to
12260 buffer-file-name.
12261 (update-file-autoloads, update-directory-autoloads):
12262 Use autoload-find-generated-file. If called interactively, prompt for
12263 output file (Bug#7989).
12264 (batch-update-autoloads): Doc fix.
12265
12266 2011-05-04 Juanma Barranquero <lekktu@gmail.com>
12267
12268 * term/w32-win.el (dynamic-library-alist): Add `gnutls'.
12269
12270 2011-05-04 Glenn Morris <rgm@gnu.org>
12271
12272 * calendar/diary-lib.el (diary-fancy-date-pattern): Turn it into a
12273 function, so it follows changes in calendar-date-style.
12274 (diary-fancy-date-matcher): New function.
12275 (diary-fancy-font-lock-keywords): Use diary-fancy-date-matcher.
12276 (diary-fancy-font-lock-fontify-region-function):
12277 Use diary-fancy-date-pattern as a function.
12278
12279 * calendar/diary-lib.el (diary-fancy-date-pattern): Do not use
12280 non-numbers for `year' etc pseudo-variables. (Bug#8583)
12281
12282 2011-05-04 Teodor Zlatanov <tzz@lifelogs.com>
12283
12284 * net/gnutls.el (gnutls-negotiate): Use CL-style keyword arguments
12285 instead of positional arguments. Allow :keylist and :crlfiles
12286 arguments.
12287 (open-gnutls-stream): Call it.
12288
12289 * net/network-stream.el (network-stream-open-starttls): Adjust to
12290 call `gnutls-negotiate' with :process and :hostname arguments.
12291
12292 2011-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
12293
12294 * minibuffer.el (completion--message): New function.
12295 (completion--do-completion, minibuffer-complete)
12296 (minibuffer-force-complete, minibuffer-complete-word): Use it.
12297 (completion--do-completion): Don't ignore completion-auto-help when in
12298 icomplete-mode.
12299
12300 * whitespace.el (whitespace-trailing-regexp): Don't rely on the
12301 internal encoding (e.g. tibetan zero is not whitespace).
12302 (global-whitespace-mode): Prefer save-current-buffer.
12303 (whitespace-trailing-regexp): Remove useless save-match-data.
12304 (whitespace-empty-at-bob-regexp): Minor simplification.
12305
12306 2011-05-03 Chong Yidong <cyd@stupidchicken.com>
12307
12308 * emacs-lisp/autoload.el (generated-autoload-file): Doc fix (Bug#7989).
12309
12310 2011-05-03 Agustín Martín Domingo <agustin.martin@hispalinux.es>
12311
12312 * textmodes/ispell.el (ispell-add-per-file-word-list):
12313 Use `concat' to create string for insertion.
12314
12315 2011-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
12316
12317 * textmodes/bibtex.el (bibtex-fill-field-bounds, bibtex-fill-entry):
12318 Avoid open-line which runs post-self-insert-hook.
12319 (bibtex-fill-entry): Remove unused `end' var.
12320
12321 2011-05-03 Dirk Ullrich <dirk.ullrich@googlemail.com> (tiny change)
12322
12323 * textmodes/ispell.el (ispell-add-per-file-word-list):
12324 Protect against `nil' value of `comment-start' (Bug#8579).
12325
12326 2011-05-03 Leo Liu <sdl.web@gmail.com>
12327
12328 * isearch.el (isearch-yank-pop): New command.
12329 (isearch-mode-map): Bind it to `M-y'.
12330 (isearch-forward): Mention it.
12331
12332 2011-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
12333
12334 * simple.el (minibuffer-complete-shell-command): Remove.
12335 (minibuffer-local-shell-command-map): Use completion-at-point.
12336 (read-shell-command): Setup completion vars here instead.
12337 (read-expression-map): Bind TAB to symbol completion.
12338
12339 * textmodes/ispell.el (lookup-words): Use with-temp-buffer; signal
12340 error directly rather via storing it into `results'.
12341
12342 2011-05-02 Leo Liu <sdl.web@gmail.com>
12343
12344 * vc/diff.el: Fix description.
12345
12346 2011-05-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
12347
12348 * server.el (server-eval-at): New function.
12349
12350 2011-05-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
12351
12352 * net/network-stream.el (open-network-stream): Take a :nowait
12353 parameter and pass it on to `make-network-process'.
12354 (network-stream-open-plain): Ditto.
12355
12356 2011-04-30 Andreas Schwab <schwab@linux-m68k.org>
12357
12358 * faces.el (face-spec-set-match-display): Don't match toolkit
12359 options on terminal frames.
12360
12361 2011-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
12362
12363 * progmodes/pascal.el: Use lexical binding.
12364 (pascal-mode-map): Remove author preferences.
12365
12366 * pcomplete.el (pcomplete-std-complete): Don't abuse
12367 completion-at-point.
12368
12369 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
12370
12371 * calc/calccomp.el (math-comp-to-string-flat-term): Simplify by
12372 removing code that has been dead since 1991 or so.
12373
12374 * startup.el (command-line): When warning about "_emacs", use a
12375 delayed warning to allow the user to filter it out.
12376
12377 2011-04-28 Deniz Dogan <deniz@dogan.se>
12378
12379 * net/rcirc.el (rcirc-handler-353): Fix bug for channels which the
12380 user has not joined.
12381
12382 2011-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
12383
12384 * pcomplete.el (pcomplete-completions-at-point): Return nil if there
12385 aren't any completions at point.
12386
12387 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
12388
12389 * subr.el (display-delayed-warnings): New function.
12390 (delayed-warnings-hook): New variable.
12391
12392 2011-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
12393
12394 * minibuffer.el (completion-at-point, completion-help-at-point):
12395 Don't presume that a given completion-at-point-function will always
12396 use the same calling convention.
12397
12398 * pcomplete.el (pcomplete-completions-at-point):
12399 Obey pcomplete-ignore-case. Don't call pcomplete-norm-func unless
12400 pcomplete-seen is non-nil.
12401 (pcomplete-comint-setup): Also recognize the new comint/shell
12402 completion functions.
12403 (pcomplete-do-complete): Don't call pcomplete-norm-func unless
12404 pcomplete-seen is non-nil.
12405
12406 2011-04-27 Niels Giesen <niels.giesen@gmail.com>
12407
12408 * calendar/icalendar.el (diary-lib): Add require statement.
12409 (icalendar--create-uid): Read out a uid from a text-property on
12410 the first character in the entry. This allows for code to add its
12411 own uid to the entry.
12412 (icalendar--convert-float-to-ical): Add export of
12413 `diary-float'-entries save for those with the optional DAY
12414 argument.
12415
12416 2011-04-27 Daniel Colascione <dan.colascione@gmail.com>
12417
12418 * subr.el (shell-quote-argument): Use alternate escaping strategy
12419 when we spot a variable reference in a string.
12420
12421 2011-04-26 Daniel Colascione <dan.colascione@gmail.com>
12422
12423 * cus-start.el (all): Define customization for debug-on-event.
12424
12425 2011-04-26 Daniel Colascione <dan.colascione@gmail.com>
12426
12427 * subr.el (shell-quote-argument): Escape correctly under Windows.
12428
12429 2011-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
12430
12431 * emulation/cua-base.el (cua-selection-mode): Make it toggle again.
12432
12433 2011-04-25 Michael Albinus <michael.albinus@gmx.de>
12434
12435 * net/tramp.el (tramp-process-actions): Add POS argument.
12436 Delete region between POS and (pos).
12437
12438 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
12439 Use `nil' position in `tramp-process-actions' call.
12440 (tramp-maybe-open-connection): Call `tramp-process-actions' with pos.
12441
12442 * net/tramp-smb.el (tramp-smb-maybe-open-connection): Use `nil'
12443 position in `tramp-process-actions' call.
12444
12445 * net/trampver.el: Update release number.
12446
12447 2011-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
12448
12449 * custom.el (defcustom): Obey lexical-binding.
12450
12451 Fix octave-inf completion problems reported by Alexander Klimov.
12452 * progmodes/octave-inf.el (inferior-octave-mode-syntax-table):
12453 Inherit from octave-mode-syntax-table.
12454 (inferior-octave-mode): Set info-lookup-mode.
12455 (inferior-octave-completion-at-point): New function.
12456 (inferior-octave-complete): Use it and completion-in-region.
12457 (inferior-octave-dynamic-complete-functions): Use it as well, and use
12458 comint-filename-completion.
12459 * progmodes/octave-mod.el (octave-mode-syntax-table): Use _ syntax for
12460 symbol elements which shouldn't be word elements.
12461 (octave-font-lock-keywords, octave-beginning-of-defun)
12462 (octave-function-header-regexp): Adjust regexps accordingly.
12463 (octave-mode-map): Also use info-lookup-symbol for C-c C-h.
12464
12465 2011-04-25 Juanma Barranquero <lekktu@gmail.com>
12466
12467 * net/gnutls.el (gnutls-errorp): Declare before first use.
12468
12469 2011-04-24 Teodor Zlatanov <tzz@lifelogs.com>
12470
12471 * net/gnutls.el (gnutls-negotiate): Add hostname, verify-flags,
12472 verify-error, and verify-hostname-error parameters. Check whether
12473 default trustfile exists before going to use it. Add missing
12474 argument to gnutls-message-maybe call. Return value.
12475 Reported by Claudio Bley <claudio.bley@gmail.com>.
12476 (open-gnutls-stream): Add usage example.
12477
12478 * net/network-stream.el (network-stream-open-starttls): Give host
12479 parameter to `gnutls-negotiate'.
12480 (gnutls-negotiate): Adjust `gnutls-negotiate' declaration.
12481 * subr.el (shell-quote-argument): Escape correctly under Windows.
12482
12483 2011-04-24 Daniel Colascione <dan.colascione@gmail.com>
12484
12485 * progmodes/cc-engine.el (c-forward-decl-or-cast-1):
12486 Use correct match group (bug#8438).
12487
12488 2011-04-24 Chong Yidong <cyd@stupidchicken.com>
12489
12490 * emacs-lisp/package.el (package-built-in-p): Fix typo.
12491 (package-menu--generate): New arg specifying packages to show.
12492 (package-menu-refresh, package-menu-execute, list-packages):
12493 Callers changed.
12494 (package-show-package-list): New function, replacing deleted
12495 package--list-packages (renamed because it is non-internal).
12496
12497 * finder.el (finder-list-matches): Use package-show-package-list
12498 instead of deleted package--list-packages.
12499
12500 * vc/vc-annotate.el (vc-annotate-goto-line): New command.
12501 Based on a previous implementation by Juanma Barranquero (Bug#8366).
12502 (vc-annotate-mode-map): Bind it to RET.
12503
12504 2011-04-24 Uday S Reddy <u.s.reddy@cs.bham.ac.uk> (tiny change)
12505
12506 * progmodes/etags.el (next-file): Don't use set-buffer to change
12507 buffers (Bug#8478).
12508
12509 2011-04-24 Chong Yidong <cyd@stupidchicken.com>
12510
12511 * files.el (auto-mode-alist): Use js-mode for .json (Bug#8529).
12512
12513 * apropos.el (apropos-label-face): Avoid variable-pitch face.
12514 (apropos-accumulator): Doc fix.
12515 (apropos-function, apropos-macro, apropos-command)
12516 (apropos-variable, apropos-face, apropos-group, apropos-widget)
12517 (apropos-plist): Add face property.
12518 (apropos-symbols-internal): Fix indentation.
12519 (apropos-print): Simplify help, and recognize apropos-multi-type.
12520 (apropos-print-doc): Use button-type-get to extract the button's
12521 face property. Fill docstring (Bug#8352).
12522
12523 2011-04-23 Juanma Barranquero <lekktu@gmail.com>
12524
12525 * buff-menu.el (Buffer-menu--buffers): Fix typo in docstring (bug#8535).
12526
12527 * play/mpuz.el (mpuz-silent): Doc fix.
12528 (mpuz-mode-map): Use mapc.
12529 (mpuz-put-number-on-board): Rename parameter L to COLUMNS.
12530 (mpuz-letter-to-digit, mpuz-check-all-solved, mpuz-create-buffer):
12531 Fix typos in docstrings.
12532
12533 * play/doctor.el (doc$, doctor-$, doctor-read-print, doctor-read-token)
12534 (doctor-nounp, doctor-pronounp): Fix typos in docstrings.
12535
12536 * mouse-drag.el (mouse-drag-throw): Fix typo in docstring.
12537
12538 2011-04-23 Chong Yidong <cyd@stupidchicken.com>
12539
12540 * minibuffer.el (completion--do-completion): Avoid the "Next char
12541 not unique" prompt if icomplete-mode is enabled (Bug#5849).
12542
12543 * mouse.el (mouse-drag-mode-line-1): Make sure that if we push
12544 mouse-2 into unread-command-events, it is interpreted correctly.
12545
12546 * image-mode.el (image-type, image-mode-map, image-minor-mode-map)
12547 (image-toggle-display): Doc fix.
12548
12549 2011-04-23 Stephen Berman <stephen.berman@gmx.net>
12550
12551 * textmodes/page.el (what-page): Use line-number-at-pos to
12552 calculate line number (Bug#6825).
12553
12554 2011-04-22 Juanma Barranquero <lekktu@gmail.com>
12555
12556 * eshell/esh-mode.el (find-tag-interactive): Declare function.
12557 (eshell-find-tag): Remove `with-no-warnings', unneeded now.
12558 Pass argument NO-DEFAULT to `find-tag-interactive'.
12559
12560 2011-04-22 Juanma Barranquero <lekktu@gmail.com>
12561
12562 Lexical-binding cleanup.
12563
12564 * progmodes/ada-mode.el (ada-after-change-function, ada-loose-case-word)
12565 (ada-no-auto-case, ada-capitalize-word, ada-untab, ada-narrow-to-defun):
12566 * progmodes/ada-prj.el (ada-prj-initialize-values)
12567 (ada-prj-display-page, ada-prj-field-modified, ada-prj-display-help)
12568 (ada-prj-show-value):
12569 * progmodes/ada-xref.el (ada-find-any-references, ada-gdb-application):
12570 * progmodes/antlr-mode.el (antlr-with-displaying-help-buffer)
12571 (antlr-invalidate-context-cache, antlr-options-menu-filter)
12572 (antlr-language-option-extra, antlr-c++-mode-extra, antlr-run-tool):
12573 * progmodes/bug-reference.el (bug-reference-push-button):
12574 * progmodes/fortran.el (fortran-line-length):
12575 * progmodes/glasses.el (glasses-change):
12576 * progmodes/octave-mod.el (octave-fill-paragraph):
12577 * progmodes/python.el (python-mode, python-pdbtrack-track-stack-file)
12578 (python-pdbtrack-grub-for-buffer, python-sentinel):
12579 * progmodes/sql.el (sql-save-connection):
12580 * progmodes/tcl.el (tcl-indent-command, tcl-popup-menu):
12581 * progmodes/xscheme.el (xscheme-enter-debugger-mode):
12582 Mark unused parameters.
12583
12584 * progmodes/compile.el (compilation--flush-directory-cache)
12585 (compilation--flush-parse, compile-internal): Mark unused parameters.
12586 (compilation-buffer-name): Rename parameter MODE-NAME to NAME-OF-MODE.
12587 (compilation-next-error-function): Remove unused variable `timestamp'.
12588
12589 * progmodes/cpp.el (cpp-parse-close): Remove unused variable `begin'.
12590 (cpp-signal-read-only, cpp-grow-overlay): Mark unused parameters.
12591
12592 * progmodes/dcl-mode.el (dcl-end-of-command):
12593 Remove unused variable `start'.
12594 (dcl-calc-command-indent-multiple, dcl-calc-cont-indent-relative)
12595 (dcl-option-value-basic, dcl-option-value-offset)
12596 (dcl-option-value-margin-offset, dcl-option-value-comment-line):
12597 Mark unused parameters.
12598 (dcl-save-local-variable): Remove unused variable `val'.
12599 (mode): Declare.
12600
12601 * progmodes/delphi.el (delphi-save-state, delphi-after-change):
12602 Mark unused parameters.
12603 (delphi-ignore-changes): Move before first use.
12604 (delphi-charset-token-at): Remove unused variable `start'.
12605 (delphi-else-start): Remove unused variable `if-count'.
12606 (delphi-comment-block-start, delphi-comment-block-end):
12607 Remove unused variable `kind'.
12608 (delphi-indent-line): Remove unused variable `new-point'.
12609
12610 * progmodes/ebrowse.el (ebrowse-files-list)
12611 (ebrowse-list-of-matching-members, ebrowse-tags-list-members-in-file):
12612 Mark unused parameters. Don't quote `lambda'.
12613 (ebrowse-sort-tree-list, ebrowse-same-tree-member-buffer-list):
12614 Don't quote `lambda'.
12615 (ebrowse-revert-tree-buffer-from-file, ebrowse-tags-choose-class)
12616 (ebrowse-goto-visible-member/all-member-lists): Mark unused parameters.
12617 (ebrowse-create-tree-buffer): Rename parameter OBARRAY to CLASSES.
12618 (ebrowse-toggle-mark-at-point): Remove unused variable `pnt'.
12619 Use `ignore-errors'.
12620 (ebrowse-frozen-tree-buffer-name, ebrowse-find-source-file)
12621 (ebrowse-view/find-file-and-search-pattern)
12622 (ebrowse-view/find-member-declaration/definition):
12623 Rename parameter TAGS-FILE-NAME to TAGS-FILE.
12624 (ebrowse-find-class-declaration, ebrowse-view-class-declaration):
12625 Rename parameter PREFIX-ARG to PREFIX.
12626 (ebrowse-tags-read-name): Remove unused variables `start' and
12627 `member-info'.
12628 (ebrowse-display-member-buffer): Rename variable `tags-file-name'
12629 to `tags-file'.
12630
12631 * progmodes/etags.el (local-find-tag-hook): Declare.
12632 (tag-partial-file-name-match-p, tag-any-match-p, list-tags):
12633 Mark unused parameters.
12634
12635 * progmodes/executable.el (compilation-error-regexp-alist): Declare.
12636 (executable-interpret): Mark unused parameter.
12637
12638 * progmodes/flymake.el (flymake-process-sentinel)
12639 (flymake-after-change-function)
12640 (flymake-create-temp-with-folder-structure)
12641 (flymake-get-include-dirs-dot): Mark unused parameters.
12642 (flymake-safe-delete-directory): Remove unused variable `err'.
12643
12644 * progmodes/gdb-mi.el (speedbar-change-initial-expansion-list)
12645 (speedbar-timer-fn, speedbar-line-text)
12646 (speedbar-change-expand-button-char, speedbar-delete-subblock)
12647 (speedbar-center-buffer-smartly): Declare functions.
12648 (gdb-find-watch-expression): Remove unused variable `array'.
12649 (gdb-edit-value, gdb-gdb, gdb-ignored-notification, gdb-thread-created)
12650 (gdb-starting): Mark unused parameters.
12651 (gud-gdbmi-marker-filter): Remove unused variable `output-record'.
12652 (gdb-table-string): Remove unused variable `res'.
12653 (gdb-place-breakpoints): Remove unused variables `flag' and `bptno'.
12654 (gdb-disassembly-handler-custom): Remove unused variable `pos'.
12655 (gdb-display-buffer): Remove unused variable `cur-size'.
12656
12657 * progmodes/gud.el (gud-def): Use `defalias' instead of `defun' to
12658 allow lexical-binding compilation.
12659 (gud-expansion-speedbar-buttons, gud-gdb-goto-stackframe)
12660 (gud-dbx-massage-args, gud-xdb-massage-args, gud-perldb-massage-args)
12661 (gud-jdb-massage-args, gud-jdb-find-source, gud-find-class):
12662 Mark unused parameters.
12663 (gud-gdb-marker-filter): Remove unused variable `match'.
12664 (gud-find-class): Bind `syntax-symbol' and `syntax-point' to suitable
12665 lambda expressions and funcall them, instead of using `fset'.
12666
12667 * progmodes/hideif.el (hif-parse-if-exp): Rename parameter
12668 HIF-TOKEN-LIST to TOKEN-LIST and let-bind `hif-token-list'.
12669
12670 * progmodes/hideshow.el (hs-hide-block-at-point): Remove unused
12671 variable `header-beg'; use `let'.
12672
12673 * progmodes/icon.el (indent-icon-exp): Remove unused variables
12674 `restart', `last-sexp' and `at-do'.
12675
12676 * progmodes/js.el (js--debug): Mark unused parameter.
12677 (js--parse-state-at-point): Remove unused variable `bound'; use `let'.
12678 (js--splice-into-items): Remove unused variable `item'.
12679 (js--read-symbol, js--read-tab): Pass 1/-1 to `ido-mode', not t/nil.
12680
12681 * progmodes/make-mode.el (makefile-make-font-lock-keywords):
12682 Rename parameter FONT-LOCK-KEYWORDS to FL-KEYWORDS.
12683 (makefile-complete): Remove unused variable `try'.
12684 (makefile-fill-paragraph, makefile-match-function-end):
12685 Mark unused parameters.
12686
12687 * progmodes/octave-inf.el (inferior-octave-complete):
12688 Remove unused variable `proc'.
12689 (inferior-octave-output-digest): Mark unused parameter.
12690
12691 * progmodes/perl-mode.el (perl-calculate-indent):
12692 Remove unused variable `err'.
12693
12694 * progmodes/prolog.el (prolog-mode-keybindings-inferior)
12695 (prolog-indent-line): Mark unused parameters.
12696 (prolog-indent-line): Remove unused variable `beg'.
12697
12698 * progmodes/ps-mode.el (reporter-prompt-for-summary-p)
12699 (reporter-dont-compact-list): Declare.
12700
12701 * progmodes/sh-script.el (sh-font-lock-quoted-subshell):
12702 Remove unused variable `char'.
12703 (sh-debug): Mark unused parameter.
12704 (sh-get-indent-info): Remove unused variable `start'.
12705 (sh-calculate-indent): Remove unused variable `var'.
12706
12707 * progmodes/simula.el (simula-popup-menu): Mark unused parameter.
12708 (simula-electric-keyword): Remove unused variable `null'.
12709 (simula-search-backward, simula-search-forward): Remove unused
12710 variables `begin' and `end'.
12711
12712 * progmodes/vera-mode.el (vera-guess-basic-syntax):
12713 Remove unused variable `pos'.
12714 (vera-electric-tab, vera-comment-uncomment-region):
12715 Mark unused parameters.
12716 (vera-electric-tab): Rename parameter PREFIX-ARG to PREFIX.
12717
12718 2011-04-22 Chong Yidong <cyd@stupidchicken.com>
12719
12720 * emacs-lisp/package.el (package--builtins, package-alist)
12721 (package-load-descriptor, package-built-in-p, package-activate)
12722 (define-package, package-installed-p)
12723 (package-compute-transaction, package-buffer-info)
12724 (package--push): Doc fix. Distinguish more clearly between
12725 version strings and version lists.
12726
12727 2011-04-21 Juanma Barranquero <lekktu@gmail.com>
12728
12729 Lexical-binding cleanup.
12730
12731 * play/5x5.el (5x5-make-random-solution, 5x5-make-mutate-current)
12732 (5x5-make-mutate-best):
12733 * play/fortune.el (fortune-in-buffer):
12734 * play/gomoku.el (gomoku-init-display):
12735 * play/solitaire.el (solitaire, solitaire-do-check):
12736 * play/tetris.el (tetris-default-update-speed-function):
12737 Mark unused parameters.
12738
12739 * play/bubbles.el (bubbles-mode): Set `show-trailing-whitespace'.
12740 (bubbles--shift): Remove unused variable `char-org'.
12741 (bubbles--set-faces): Remove unused variable `fg-col'. Simplify.
12742 (bubbles--show-images): Remove unused variable `char'.
12743
12744 * play/decipher.el (decipher-keypress, decipher-alphabet-keypress)
12745 (decipher-get-undo, decipher-set-map, decipher-complete-alphabet)
12746 (decipher-resync, decipher-loop-with-breaks, decipher--analyze)
12747 (decipher-analyze-buffer): Use ?\s.
12748 (decipher-make-checkpoint): Remove unused variable `mapping'.
12749
12750 * play/doctor.el (doctor-doc): Rename parameter DOCTOR-SENT to SENT.
12751
12752 * play/gamegrid.el (gamegrid-add-score-with-update-game-score):
12753 Remove unused variable `result'; use `let'.
12754
12755 * play/gametree.el (gametree-current-layout, gametree-apply-layout):
12756 Rename parameter TOP-LEVEL to FROM-TOP-LEVEL; use `ignore-errors'.
12757 (gametree-children-shown-p, gametree-compute-reduced-score):
12758 Use `ignore-errors'.
12759
12760 * play/handwrite.el (ps-lpr-switches): Declare.
12761 (handwrite): Remove unused variables `pmin' and `lastp'.
12762
12763 * play/hanoi.el (hanoi-move-ring): Remove unused variable `total-steps'.
12764
12765 * play/landmark.el (landmark-init-display)
12766 (landmark-update-naught-weights): Mark unused parameters.
12767 (landmark-y): Remove unused variable `noise'. Simplify.
12768 (landmark-human-plays): Remove unused variable `score'.
12769
12770 * play/mpuz.el (mpuz-try-letter): Remove unused variable `message'.
12771 (mpuz-try-proposal): Remove unused variable `game'.
12772
12773 * play/zone.el (life-patterns): Declare.
12774
12775 2011-04-20 Juanma Barranquero <lekktu@gmail.com>
12776
12777 * vc/vc.el (ediff-vc-internal): Declare function.
12778
12779 2011-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
12780
12781 * shell.el: Use lexical-binding and std completion UI.
12782 (shell-filter-ctrl-a-ctrl-b): Work as a preoutput filter.
12783 (shell-mode): Put shell-filter-ctrl-a-ctrl-b on
12784 comint-preoutput-filter-functions rather than on
12785 comint-output-filter-functions.
12786 (shell-command-completion, shell--command-completion-data)
12787 (shell-filename-completion, shell-environment-variable-completion)
12788 (shell-c-a-p-replace-by-expanded-directory): New functions.
12789 (shell-dynamic-complete-functions, shell-dynamic-complete-command)
12790 (shell-dynamic-complete-filename, shell-replace-by-expanded-directory)
12791 (shell-dynamic-complete-environment-variable): Use them.
12792 (shell-dynamic-complete-as-environment-variable)
12793 (shell-dynamic-complete-as-command): Remove.
12794 (shell-match-partial-variable): Match past point.
12795 * comint.el: Clean up use of completion-at-point-functions.
12796 (comint-completion-at-point): New function.
12797 (comint-mode): Use it completion-at-point-functions.
12798 (comint-dynamic-complete): Make it obsolete.
12799 (comint-replace-by-expanded-history-before-point): Add dry-run arg.
12800 (comint-c-a-p-replace-by-expanded-history): New function.
12801 (comint-dynamic-complete-functions)
12802 (comint-replace-by-expanded-history): Use it.
12803 * minibuffer.el (completion-table-with-terminator): Allow dynamic
12804 termination strings. Try harder to avoid second try-completion.
12805 (completion-in-region-mode-map): Disable bindings that don't work yet.
12806
12807 * comint.el: Use lexical-binding. Require CL.
12808 (comint-dynamic-complete-functions): Use comint-filename-completion.
12809 (comint-completion-addsuffix): Tweak custom type.
12810 (comint-filename-completion, comint--common-suffix)
12811 (comint--common-quoted-suffix, comint--table-subvert)
12812 (comint--complete-file-name-data): New functions.
12813 (comint-dynamic-complete-as-filename, comint-dynamic-complete-filename)
12814 (comint-dynamic-list-filename-completions): Use them.
12815 (comint-dynamic-simple-complete): Make obsolete.
12816
12817 * minibuffer.el (completion-in-region-mode):
12818 Keep completion-in-region-mode--predicate global.
12819 (completion-in-region--postch):
12820 Assume completion-in-region-mode--predicate is not null.
12821
12822 * progmodes/flymake.el (flymake-start-syntax-check-process):
12823 Obey `dir'. Simplify.
12824
12825 * vc/vc.el (vc-version-ediff): Call ediff-vc-internal directly, since
12826 we're in VC after all.
12827
12828 2011-04-20 Christoph Scholtes <cschol2112@googlemail.com>
12829
12830 * vc/vc.el (vc-diff-build-argument-list-internal)
12831 (vc-version-ediff, vc-ediff): New commands.
12832 (vc-version-diff): Use vc-diff-build-argument-list-internal.
12833
12834 2011-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
12835
12836 * emacs-lisp/byte-opt.el (byte-decompile-bytecode-1): Remove dead code,
12837 add sanity check.
12838
12839 * obsolete/erc-hecomplete.el: Make obsolete.
12840 * obsolete/: Standardize obsolescence info in the header.
12841
12842 2011-04-20 Glenn Morris <rgm@gnu.org>
12843
12844 * calendar/solar.el (solar-horizontal-coordinates):
12845 Use the longitude argument rather than `calendar-longitude'.
12846 (solar-date-next-longitude): Remove unused locals.
12847
12848 2011-04-20 Vinicius Jose Latorre <viniciusjl@ig.com.br>
12849
12850 * whitespace.el: New version 13.2.1.
12851
12852 2011-04-20 felix <EmacsWiki> (tiny change)
12853
12854 * whitespace.el (global-whitespace-mode): Keep highlight when
12855 switching between major modes on a file.
12856
12857 2011-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
12858
12859 * progmodes/octave-mod.el (octave-in-comment-p, octave-in-string-p)
12860 (octave-not-in-string-or-comment-p): Use syntax-ppss so it works with
12861 multi-line comments as well.
12862
12863 2011-04-19 Juanma Barranquero <lekktu@gmail.com>
12864
12865 Lexical-binding cleanup.
12866
12867 * arc-mode.el (archive-mode-revert):
12868 * cmuscheme.el (scheme-interactively-start-process):
12869 * custom.el (custom-initialize-delay):
12870 * dnd.el (dnd-open-local-file, dnd-open-remote-url):
12871 * dos-w32.el (direct-print-region-helper, direct-print-region-function):
12872 * emacs-lock.el (emacs-lock-clear-sentinel):
12873 * ezimage.el (defezimage):
12874 * follow.el (follow-avoid-tail-recenter):
12875 * fringe.el (set-fringe-mode-1):
12876 * generic-x.el (bat-generic-mode-compile):
12877 * help-mode.el (help-info-variable, help-do-xref)
12878 (help-mode-revert-buffer):
12879 * help.el (view-emacs-todo):
12880 * iswitchb.el (iswitchb-completion-help):
12881 * jka-compr.el (jka-compr-make-temp-name, jka-compr-load):
12882 * kmacro.el (kmacro-cycle-ring-next, kmacro-cycle-ring-previous)
12883 (kmacro-delete-ring-head, kmacro-bind-to-key, kmacro-view-macro):
12884 * locate.el (locate-update):
12885 * longlines.el (longlines-encode-region)
12886 (longlines-after-change-function):
12887 * outline.el (outline-isearch-open-invisible):
12888 * ps-def.el (declare-function, charset-dimension, char-width)
12889 (encode-char):
12890 * ps-mule.el (ps-mule-plot-string):
12891 * recentf.el (recentf-make-menu-items, recentf-cancel-dialog)
12892 (recentf-edit-list-select, recentf-edit-list-validate)
12893 (recentf-open-files-action):
12894 * rect.el (delete-whitespace-rectangle-line)
12895 (rectangle-number-line-callback):
12896 * register.el (window-configuration-to-register)
12897 (frame-configuration-to-register):
12898 * scroll-bar.el (scroll-bar-mode, toggle-horizontal-scroll-bar):
12899 * select.el (xselect-convert-to-string, xselect-convert-to-length)
12900 (xselect-convert-to-targets, xselect-convert-to-delete)
12901 (xselect-convert-to-filename, xselect-convert-to-charpos)
12902 (xselect-convert-to-lineno, xselect-convert-to-colno)
12903 (xselect-convert-to-os, xselect-convert-to-host)
12904 (xselect-convert-to-user, xselect-convert-to-class)
12905 (xselect-convert-to-name, xselect-convert-to-integer)
12906 (xselect-convert-to-atom, xselect-convert-to-identity):
12907 * subr.el (declare, ignore, process-kill-without-query)
12908 (text-clone-maintain):
12909 * terminal.el (te-get-char, te-tic-sentinel):
12910 * tool-bar.el (tool-bar-make-keymap):
12911 * tooltip.el (tooltip-timeout, tooltip-hide, tooltip-help-tips):
12912 * type-break.el (type-break-mode, type-break-noninteractive-query):
12913 * view.el (View-back-to-mark):
12914 * wid-browse.el (widget-browse-action, widget-browse-widget)
12915 (widget-browse-widgets, widget-browse-sexp):
12916 * widget.el (define-widget-keywords):
12917 * xt-mouse.el (xterm-mouse-translate, turn-off-xterm-mouse-tracking):
12918 Mark unused parameters.
12919
12920 * align.el (align-adjust-col-for-rule): Mark unused parameter.
12921 (align-areas): Remove unused variable `look'.
12922 (align-region): Remove unused variables `real-end' and `pos-list'.
12923
12924 * apropos.el (apropos-score-doc): Remove unused variable `i'.
12925
12926 * bindings.el (mode-line-modified, mode-line-remote):
12927 Mark unused parameters.
12928 (mode-line-mule-info): Mark unused parameter; don't quote `lambda'.
12929
12930 * buff-menu.el (Buffer-menu-revert-function): Mark unused parameters.
12931 (Buffer-menu-mode): Mark unused parameter; don't quote `lambda'.
12932
12933 * comint.el (comint-history-isearch-pop-state)
12934 (comint-postoutput-scroll-to-bottom, comint-truncate-buffer)
12935 (comint-strip-ctrl-m, comint-read-noecho): Mark unused parameters.
12936 (comint-substitute-in-file-name): Doc fix.
12937
12938 * completion.el (cmpl-statistics-block): Mark unused parameter.
12939 (add-completions-from-tags-table, add-completions-from-lisp-buffer)
12940 (save-completions-to-file, load-completions-from-file):
12941 Remove unused local variable `e'.
12942
12943 * composite.el (compose-chars): Remove unused variable `len'.
12944 (lgstring-insert-glyph): Remove unused variable `g'.
12945 (compose-glyph-string): Remove unused variables `ascent',
12946 `descent', `lbearing' and `rbearing'.
12947 (compose-glyph-string-relative): Remove unused variables
12948 `lbearing', `rbearing' and `wadjust'.
12949 (compose-gstring-for-graphic): Remove unused variables `header',
12950 `wadjust', `xoff' and `yoff'. Use `let', not `let*'.
12951 (compose-gstring-for-terminal): Remove unused variables `header'
12952 and `nchars'. Use `let', not `let*'.
12953
12954 * cus-edit.el (Custom-set, Custom-save, custom-reset)
12955 (Custom-reset-current, Custom-reset-saved, Custom-reset-standard)
12956 (Custom-buffer-done, custom-buffer-create-internal)
12957 (custom-browse-visibility-action, custom-browse-group-tag-action)
12958 (custom-browse-variable-tag-action, custom-browse-face-tag-action)
12959 (widget-magic-mouse-down-action, custom-toggle-parent)
12960 (custom-add-parent-links, custom-toggle-hide-variable)
12961 (custom-face-edit-value-visibility-action, custom-face-edit-fix-value)
12962 (custom-toggle-hide-face, face, hook, custom-group-link-action)
12963 (custom-face-menu-create, custom-variable-menu-create, get)
12964 (custom-group-menu-create, Custom-no-edit): Mark unused parameters.
12965 (custom-reset-standard-save-and-update): Remove unused variable `value'.
12966 (customize-apropos): Remove unused variable `tests'.
12967 (custom-group-value-create): Remove unused variable `hidden-p'.
12968 (sort-fold-case): Declare.
12969
12970 * cus-theme.el (custom-reset-standard-faces-list)
12971 (custom-reset-standard-variables-list): Declare.
12972 (customize-create-theme, custom-theme-revert, custom-theme-write)
12973 (custom-theme-choose-mode, customize-themes, custom-theme-save):
12974 Mark unused parameters.
12975
12976 * dabbrev.el (dabbrev-completion): Remove unused variable `init'.
12977
12978 * delim-col.el (delimit-columns-max): Move defvar before first use.
12979
12980 * descr-text.el (describe-char-categories): Don't quote `lambda'.
12981 (describe-char): Don't quote `lambda'. Mark unused parameter.
12982
12983 * desktop.el (desktop-save-buffer-p): Mark unused parameter.
12984 (auto-insert): Declare.
12985 (desktop-restore-file-buffer): Rename desktop-* parameters;
12986 mark unused ones.
12987 (desktop-create-buffer): Rename desktop-* parameters and bind them.
12988 (desktop-buffer): Rename desktop-* parameters.
12989
12990 * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape): Declare.
12991 (dframe-reposition-frame-xemacs, dframe-help-echo)
12992 (dframe-hack-buffer-menu, dframe-set-timer, dframe-set-timer-internal):
12993 Mark unused parameters.
12994
12995 * dired-aux.el (backup-extract-version-start, overwrite-query)
12996 (overwrite-backup-query, rename-regexp-query)
12997 (rename-non-directory-query): Declare.
12998 (dired-shell-stuff-it, dired-do-create-files): Mark unused parameters.
12999 (dired-add-entry): Remove unused variable `orig-file-name'.
13000 (dired-copy-file-recursive): Remove unused variable `dirfailed'.
13001 Use parameter PRESERVE-TIME instead of accessing dynamic variable
13002 `dired-copy-preserve-time' directly.
13003 (dired-do-create-files-regexp): Remove unused variable `fn-count'.
13004 (dired-insert-subdir-newpos): Rename unused variable `pos'.
13005
13006 * dired-x.el (dired-omit-size-limit): Move defcustom before first use.
13007 (dired-virtual-revert, dired-make-relative-symlink):
13008 Mark unused parameters.
13009 (manual-program): Declare.
13010 (dired-x-hands-off-my-keys): Rename parameters of lambda expression.
13011 (inode, s, mode, nlink, uid, gid, size, time, name, sym): Declare them,
13012 wrapped in `with-no-warnings' to avoid replacing one warning by another.
13013
13014 * dirtrack.el (dirtrack): Remove unused variable `multi-line'.
13015
13016 * dos-fns.el (dos-8+3-filename): Remove unused variable `i'.
13017
13018 * echistory.el (electric-history-in-progress, Helper-return-blurb):
13019 Declare.
13020
13021 * edmacro.el (edmacro-finish-edit): Remove unused variable `kmacro'.
13022
13023 * electric.el (Electric-command-loop): Rename parameter
13024 INHIBIT-QUIT to INHIBIT-QUITTING and bind `inhibit-quit'.
13025
13026 * expand.el (expand-in-literal): Remove unused variable `here'.
13027
13028 * facemenu.el (facemenu-add-new-color):
13029 Remove unused variable `docstring'.
13030
13031 * faces.el (face-id, make-face-bold, make-face-unbold, make-face-italic)
13032 (make-face-unitalic, make-face-bold-italic): Mark unused parameters.
13033 (face-attr-construct): Mark unused parameter. Doc fix.
13034 (read-color): Remove unused variable `hex-string'.
13035
13036 * files.el (parse-colon-path): Rename argument CD-PATH to SEARCH-PATH.
13037 (locate-dominating-file): Remove unused vars `prev-file' and `user'.
13038 (remote-file-name-inhibit-cache, revert-buffer): Clean up docstrings.
13039 (display-buffer-other-frame): Remove unused variable `old-window'.
13040 (kill-buffer-hook): Declare.
13041 (insert-file-contents-literally, set-auto-mode, risky-local-variable-p):
13042 Mark unused parameters.
13043 (after-find-file): Pass 1 to `auto-save-mode', not t.
13044
13045 * files-x.el (auto-insert): Declare.
13046 (modify-file-local-variable-prop-line): Remove unused variable `val'.
13047
13048 * find-lisp.el (find-lisp-find-dired-internal): Remove unused
13049 variable `buf'. Mark unused parameter.
13050 (find-lisp-insert-directory): Mark unused parameter.
13051
13052 * format.el (format-decode-run-method): Mark unused parameter; doc fix.
13053 (format-encode-region): Remove unused variables `cur-buf' and `result'.
13054 (format-common-tail): Remove, unused.
13055 (format-deannotate-region): Remove unused variable `loc'.
13056 (format-annotate-region): Remove unused variable `p'.
13057 (format-annotate-single-property-change): Remove unused variables
13058 `default' and `tail'.
13059
13060 * forms.el (read-file-filter): Declare.
13061 (forms--iif-hook, forms--revert-buffer): Mark unused parameters.
13062
13063 * frame.el (frame-creation-function-alist): Mark unused parameter.
13064 (frame-geom-spec-cons): Pass FRAME to `frame-geom-value-cons'.
13065
13066 * hilit-chg.el (hilit-chg-cust-fix-changes-face-list, hilit-chg-clear):
13067 Remove unused parameters.
13068 (hilit-chg-set-face-on-change): Remove unused variable `beg-decr'.
13069 (highlight-compare-with-file): Remove unused variable `buf-b-read-only'.
13070
13071 * htmlfontify.el (hfy-default-footer, hfy-decor, hfy-invisible)
13072 (hfy-parse-tags-buffer, hfy-prepare-index-i, hfy-prepare-index)
13073 (hfy-prepare-tag-map): Mark unused parameters.
13074 (htmlfontify-buffer): Use `called-interactively-p'.
13075
13076 * ibuf-ext.el (ibuffer-do-kill-lines, ibuffer-jump-to-buffer)
13077 (ibuffer-copy-filename-as-kill, ibuffer-mark-on-buffer)
13078 (ibuffer-do-occur): Mark unused parameters.
13079 (ibuffer-forward-next-marked): Remove unused variable `curmark'.
13080 (ibuffer-diff-buffer-with-file-1): Remove unused variable `proc'.
13081
13082 * ibuffer.el: Don't quote `lambda'.
13083 (ibuffer-count-marked-lines, ibuffer-count-deletion-lines)
13084 (ibuffer-unmark-all, ibuffer-toggle-marks, ibuffer-redisplay-engine):
13085 Mark unused parameters.
13086
13087 * ido.el (ido-mode, ido-wide-find-dir-or-delete-dir)
13088 (ido-completing-read): Mark unused parameters.
13089 (ido-copy-current-word): Mark unused parameters;
13090 remove unused variable `name'.
13091 (ido-sort-merged-list): Remove unused parameter `dirs'.
13092
13093 * ielm.el (ielm-input-sender): Mark unused parameter.
13094 (ielm-string, ielm-form, ielm-pos, ielm-result, ielm-error-type)
13095 (ielm-output, ielm-wbuf, ielm-pmark): Declare.
13096 (ielm-eval-input): Rename argument IELM-STRING to INPUT-STRING to keep
13097 `ielm-string' as a dynamic variable accessible from the IELM prompt.
13098 Bind `ielm-string' to INPUT-STRING. Remove unused variable `err'.
13099
13100 * image-dired.el (image-dired-display-thumbs): Remove unused
13101 variables `curr-file' and `count'.
13102 (image-dired-remove-tag): Remove unused variable `start'.
13103 (image-dired-tag-files, image-dired-create-thumbs): Remove unused
13104 variable `curr-file'
13105 (image-dired-rotate-original): Remove unused variable `temp-file'.
13106 (image-dired-mouse-select-thumbnail, image-dired-mouse-toggle-mark):
13107 Remove unused variable `file'.
13108 (image-dired-gallery-generate): Remove unused variable `curr'.
13109 (image-dired-dired-edit-comment-and-tags): Mark unused parameters.
13110
13111 * indent.el (tab-to-tab-stop): Remove unused variable `opoint'.
13112
13113 * info-xref.el (info-xref-goto-node-p): Remove unused variable `err'.
13114
13115 * informat.el (texinfo-command-start, texinfo-command-end): Declare.
13116
13117 * isearch.el (minibuffer-history-symbol): Declare.
13118 (isearch-edit-string): Remove unused variable `err'.
13119 (isearch-message-prefix, isearch-message-suffix):
13120 Mark unused parameters.
13121
13122 * ls-lisp.el (ls-lisp-insert-directory): Remove unused variable `fil'.
13123
13124 * macros.el (insert-kbd-macro): Remove unused variable `mods'.
13125
13126 * makesum.el (double-column): Remove unused variable `cnt'.
13127
13128 * misearch.el (multi-isearch-pop-state): Mark unused parameter.
13129 (ido-ignore-item-temp-list): Declare.
13130
13131 * mouse-drag.el (mouse-drag-throw): Remove unused variables
13132 `mouse-delta', `window-last-row', `mouse-col-delta', `window-last-col',
13133 `adjusted-mouse-col-delta' and `adjusted-mouse-delta'.
13134 (mouse-drag-drag): Remove unused variables `mouse-delta' and
13135 `mouse-col-delta'.
13136
13137 * mouse-sel.el (mouse-extend-internal):
13138 Remove unused variable `orig-window-frame'.
13139
13140 * pcomplete.el (pcomplete-args, pcomplete-begins, pcomplete-last)
13141 (pcomplete-index, pcomplete-stub, pcomplete-seen, pcomplete-norm-func):
13142 Move declarations before first use.
13143 (pcomplete-opt): Mark unused parameters; doc fix.
13144
13145 * proced.el (proced-revert): Mark unused parameter.
13146 (proced-send-signal): Remove unused variable `err'.
13147
13148 * ps-print.el (ps-print-preprint-region, ps-print-preprint):
13149 Rename parameter PREFIX-ARG to ARG.
13150 (ps-basic-plot-string, ps-basic-plot-whitespace):
13151 Mark unused parameters.
13152
13153 * replace.el (replace-count): Define.
13154 (occur-revert-function): Mark unused parameters.
13155 (ido-ignore-item-temp-list, isearch-error, isearch-forward)
13156 (isearch-case-fold-search, isearch-string): Declare.
13157 (occur-engine): Rename parameter CASE-FOLD-SEARCH to CASE-FOLD and
13158 bind `case-fold-search'. Remove unused variables `beg' and `end',
13159 and simplify.
13160 (replace-eval-replacement): Rename parameter REPLACE-COUNT to
13161 COUNT and bind `replace-count'.
13162 (replace-loop-through-replacements): Rename parameter REPLACE-COUNT
13163 to COUNT.
13164
13165 * savehist.el (print-readably, print-string-length): Declare.
13166
13167 * shadowfile.el (shadow-expand-cluster-in-file-name):
13168 Remove unused variable `cluster'.
13169 (shadow-copy-file): Remove unused variable `i'.
13170 (shadow-noquery, shadow-clusters, shadow-site-cluster)
13171 (shadow-parse-fullname, shadow-parse-name, shadow-define-cluster)
13172 (shadow-define-literal-group, shadow-define-regexp-group)
13173 (shadow-make-group, shadow-shadows-of): Clean up docstrings.
13174
13175 * shell.el (shell-filter-ctrl-a-ctrl-b): Mark unused parameter.
13176 (shell): Use `called-interactively-p'.
13177 (shell-directory-tracker): Remove unused variable `chdir-failure'.
13178
13179 * simple.el (compilation-context-lines, comint-file-name-quote-list)
13180 (comint-file-name-chars, comint-delimiter-argument-list): Declare.
13181 (delete-backward-char): Remove unused variable `ocol'.
13182 (minibuffer-avoid-prompt, minibuffer-history-isearch-pop-state)
13183 (line-move-1, event-apply-alt-modifier, event-apply-super-modifier)
13184 (event-apply-hyper-modifier, event-apply-shift-modifier)
13185 (event-apply-control-modifier, event-apply-meta-modifier):
13186 Mark unused parameters.
13187 (undo-make-selective-list): Remove duplicate variable `undo-elt'.
13188 (normal-erase-is-backspace-mode): Remove unused variable `old-state'.
13189
13190 * speedbar.el (speedbar-ignored-directory-expressions)
13191 (speedbar-supported-extension-expressions, speedbar-directory-buttons)
13192 (speedbar-find-file, speedbar-dir-follow)
13193 (speedbar-directory-buttons-follow, speedbar-tag-find)
13194 (speedbar-buffer-buttons, speedbar-buffer-buttons-temp)
13195 (speedbar-buffers-line-directory, speedbar-buffer-click):
13196 Mark unused parameters.
13197 (speedbar-tag-file): Remove unused variable `mode'.
13198 (speedbar-buffers-tail-notes): Remove unused variable `mod'; simplify.
13199
13200 * strokes.el (strokes-decode-buffer): Remove unused variable `ext'.
13201
13202 * talk.el (talk): Remove unused variable `display'.
13203
13204 * tar-mode.el (tar-subfile-save-buffer): Remove unused variable `name'.
13205 (tar-write-region-annotate): Mark unused parameter.
13206
13207 * time.el (now, time, load, mail, 24-hours, hour, 12-hours, am-pm)
13208 (minutes, seconds, time-zone, day, year, monthname, month, dayname):
13209 Declare them, wrapped in `with-no-warnings' to avoid replacing one
13210 warning by another.
13211
13212 * time-stamp.el (time-stamp-string-preprocess):
13213 Remove unused variable `require-padding'.
13214
13215 * tree-widget.el (widget-glyph-enable): Declare.
13216 (tree-widget-action): Mark unused parameter.
13217
13218 * w32-fns.el (x-get-selection): Mark unused parameter.
13219 (autoload-make-program, generated-autoload-file): Declare.
13220
13221 * wdired.el (wdired-revert): Mark unused parameters.
13222 (wdired-xcase-word): Remove unused variable `err'.
13223
13224 * whitespace.el (whitespace-buffer-changed): Mark unused parameters.
13225 (whitespace-help-scroll): Remove unused variable `data-help'.
13226
13227 * wid-edit.el (widget-mouse-help, widget-overlay-inactive)
13228 (widget-image-insert, widget-after-change, default)
13229 (widget-default-format-handler, widget-default-notify)
13230 (widget-default-prompt-value, widget-info-link-action)
13231 (widget-url-link-action, widget-function-link-action)
13232 (widget-variable-link-action, widget-file-link-action)
13233 (widget-emacs-library-link-action, widget-emacs-commentary-link-action)
13234 (widget-field-prompt-internal, widget-field-action, widget-field-match)
13235 (widget-choice-mouse-down-action, toggle, widget-radio-button-notify)
13236 (widget-insert-button-action, widget-delete-button-action, visibility)
13237 (widget-documentation-link-action, widget-documentation-string-action)
13238 (widget-const-prompt-value, widget-regexp-match, symbol)
13239 (widget-coding-system-prompt-value)
13240 (widget-key-sequence-value-to-external, sexp)
13241 (widget-sexp-value-to-internal, character, vector, cons)
13242 (widget-choice-prompt-value, widget-boolean-prompt-value)
13243 (widget-color--choose-action): Mark unused parameters.
13244 (widget-item-match-inline, widget-choice-match-inline)
13245 (widget-checklist-match, widget-checklist-match-inline)
13246 (widget-group-match): Rename parameter VALUES to VALS.
13247 (widget-field-value-set): Remove unused variable `size'.
13248 (widget-color-action): Remove unused variables `value' and `start'.
13249
13250 * windmove.el (windmove-wrap-loc-for-movement): Remove unused
13251 variable `dir'. Doc fix.
13252 (windmove-find-other-window): Don't pass it.
13253
13254 * window.el (count-windows): Mark unused parameter.
13255 (bw-adjust-window): Remove unused variable `err'.
13256
13257 * woman.el (woman-file-name): Remove unused variable `default'.
13258 (woman-expand-directory-path): Rename parameters WOMAN-MANPATH and
13259 WOMAN-PATH to PATH-DIRS and PATH-REGEXPS, respectively.
13260 (global-font-lock-mode): Declare.
13261 (woman-decode-region): Mark unused parameter.
13262 (woman-get-tab-stop): Rename parameter TAB-STOP-LIST to TAB-STOPS.
13263
13264 * x-dnd.el (x-dnd-default-test-function, x-dnd-handle-old-kde)
13265 (x-dnd-handle-xdnd, x-dnd-handle-motif): Mark unused parameters.
13266 (x-dnd-handle-moz-url): Remove unused variable `title'.
13267 (x-dnd-handle-xdnd): Remove unused variables `x', `y' and `ret-action'.
13268
13269 * xml.el (xml-parse-tag, xml-parse-attlist):
13270 Remove unused variable `pos'.
13271
13272 2011-04-19 Glenn Morris <rgm@gnu.org>
13273
13274 * calendar/cal-tex.el (cal-tex-list-holidays, cal-tex-cursor-month)
13275 (cal-tex-cursor-week, cal-tex-cursor-week2, cal-tex-cursor-week-iso)
13276 (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
13277 (cal-tex-cursor-filofax-daily, cal-tex-mini-calendar)
13278 * calendar/cal-html.el (cal-html-insert-minical):
13279 * calendar/diary-lib.el (diary-list-entries-1, diary-list-entries)
13280 (calendar-mark-date-pattern):
13281 Prefix "unused" locals.
13282
13283 * calendar/cal-dst.el (dst-adjust-time): Remove never-implemented
13284 optional argument `style'.
13285
13286 * calendar/appt.el (appt-make-list):
13287 * calendar/cal-china.el (calendar-chinese-date-string):
13288 * calendar/cal-hebrew.el (calendar-hebrew-list-yahrzeits)
13289 (diary-hebrew-yahrzeit):
13290 * calendar/cal-tex.el (cal-tex-last-blank-p, cal-tex-cursor-week2):
13291 * calendar/calendar.el (calendar-generate-window):
13292 * calendar/time-date.el (time-to-days):
13293 Remove unused local variables.
13294
13295 2011-04-18 Chong Yidong <cyd@stupidchicken.com>
13296
13297 * emacs-lisp/tabulated-list.el (tabulated-list-mode): Use a custom
13298 glyphless-char-display table.
13299 (tabulated-list-glyphless-char-display): New var.
13300
13301 2011-04-18 Sam Steingold <sds@gnu.org>
13302
13303 * vc/add-log.el (change-log-font-lock-keywords): Add "Thanks to"
13304 to acknowledgments.
13305
13306 2011-04-17 Glenn Morris <rgm@gnu.org>
13307
13308 * calendar/diary-lib.el (diary-sexp-entry):
13309 * calendar/holidays.el (holiday-sexp):
13310 Set debug-on-error rather than the removed stack-trace-on-error.
13311
13312 2011-04-16 Glenn Morris <rgm@gnu.org>
13313
13314 * progmodes/f90.el: Use lexical-binding.
13315 (f90-get-correct-indent): Remove unnecessary local variable `cont'.
13316
13317 2011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
13318
13319 * mail/sendmail.el (mail-mode-map): Use completion-at-point.
13320 (mail-mode): Setup mailalias completion here instead.
13321 * mail/mailalias.el: Use lexical-binding.
13322 (pattern, mailalias-done): Declare dynamic.
13323 (mail-completion-at-point-function): New function, from mail-complete.
13324 (mail-complete): Use it.
13325 (mail-completion-expand): New function.
13326 (mail-get-names): Use it.
13327 (mail-directory, mail-directory-process, mail-directory-stream):
13328 Don't use `pattern' for lexically bound arg.
13329
13330 * emacs-lisp/lisp-mode.el (eval-defun-2): Use eval-sexp-add-defvars.
13331
13332 * htmlfontify.el (hfy-etags-cmd): Remove inoperant eval-and-compile.
13333 (hfy-e2x-etags-cmd, hfy-etags-cmd-alist-default)
13334 (hfy-etags-cmd-alist): Don't eval-and-compile any more.
13335
13336 * emacs-lisp/bytecomp.el (byte-temp-output-buffer-show)
13337 (byte-save-window-excursion, byte-temp-output-buffer-setup)
13338 (byte-interactive-p): Define them again, for use when inlining
13339 old code.
13340
13341 2011-04-15 Juanma Barranquero <lekktu@gmail.com>
13342
13343 * loadup.el: Use `string-to-number', not `string-to-int'.
13344
13345 2011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
13346
13347 * progmodes/gud.el (gud-gdb): Use completion-at-point instead of
13348 gud-gdb-complete-command.
13349 (gud-gdb-completions): New function, from gud-gdb-complete-command.
13350 (gud-gdb-completion-at-point): New function.
13351 (gud-gdb-completions): Remove.
13352
13353 2011-04-14 Michael Albinus <michael.albinus@gmx.de>
13354
13355 * net/tramp-sh.el (tramp-sh-handle-file-attributes): Handle the case
13356 when the scripts fail. Use `tramp-do-file-attributes-with-ls' then.
13357 (tramp-do-copy-or-rename-file-out-of-band): Do not check any longer
13358 whether `executable-find' is bound.
13359
13360 * net/tramp-smb.el (tramp-smb-handle-copy-file): Fix docstring.
13361
13362 2011-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
13363
13364 * minibuffer.el (completion-in-region-mode-predicate)
13365 (completion-in-region-mode--predicate): New vars.
13366 (completion-in-region, completion-in-region--postch)
13367 (completion-in-region-mode): Use them.
13368 (completion--capf-wrapper): Also return the hook function.
13369 (completion-at-point, completion-help-at-point):
13370 Adjust and provide a predicate.
13371
13372 Preserve arg names for advice of subr and lexical functions (bug#8457).
13373 * help-fns.el (help-function-arglist): Consolidate the subr and
13374 new-byte-code cases. Add argument `preserve-names' to extract names
13375 from the docstring when needed.
13376 * emacs-lisp/advice.el (ad-define-subr-args, ad-undefine-subr-args)
13377 (ad-subr-args-defined-p, ad-get-subr-args, ad-subr-arglist): Remove.
13378 (ad-arglist): Use help-function-arglist's new arg.
13379 (ad-definition-type): Use cond.
13380
13381 2011-04-13 Juanma Barranquero <lekktu@gmail.com>
13382
13383 * autorevert.el (auto-revert-handler):
13384 Bind `remote-file-name-inhibit-cache', not `tramp-cache-inhibit-cache',
13385 which was removed in 2010-10-02T13:21:43Z!michael.albinus@gmx.de.
13386 Don't quote lambda.
13387
13388 * image-mode.el (image-transform-set-scale):
13389 Fix change in 2011-04-09T20:28:01Z!cyd@stupidchicken.com.
13390
13391 2011-04-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
13392
13393 * net/network-stream.el (network-stream-open-starttls): Only do
13394 opportunistic STARTTLS upgrades if we have built-in GnuTLS support.
13395 Upgrades via gnutls-cli are too slow to be done opportunistically.
13396
13397 2011-04-12 Juanma Barranquero <lekktu@gmail.com>
13398
13399 * dframe.el (dframe-current-frame): Remove spurious quote.
13400
13401 2011-04-12 Glenn Morris <rgm@gnu.org>
13402
13403 * calendar/cal-tex.el (cal-tex-end-document):
13404 Try to automatically use latin1 input if needed.
13405
13406 * calendar/cal-hebrew.el (diary-hebrew-rosh-hodesh):
13407 Don't try to cons a mark onto an empty element.
13408
13409 2011-04-11 Leo Liu <sdl.web@gmail.com>
13410
13411 * ido.el (ido-buffer-internal): Allow method 'kill for virtual
13412 buffers.
13413 (ido-kill-buffer-at-head): Support killing virtual buffers.
13414
13415 2011-04-10 Chong Yidong <cyd@stupidchicken.com>
13416
13417 * minibuffer.el (completion-show-inline-help): New var.
13418 (completion--do-completion, minibuffer-complete)
13419 (minibuffer-force-complete, minibuffer-complete-word):
13420 Inhibit minibuffer messages if completion-show-inline-help is nil.
13421
13422 * icomplete.el (icomplete-mode): Bind completion-show-inline-help
13423 to avoid interference from inline help (Bug#5849).
13424
13425 2011-04-10 Leo Liu <sdl.web@gmail.com>
13426
13427 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
13428 Fix typo.
13429
13430 2011-04-09 Chong Yidong <cyd@stupidchicken.com>
13431
13432 * image-mode.el (image-toggle-display-image): Signal an error if
13433 not in Image mode.
13434 (image-transform-mode, image-transform-resize)
13435 (image-transform-set-rotation): Doc fix.
13436 (image-transform-set-resize): Delete.
13437 (image-transform-set-scale, image-transform-fit-to-height)
13438 (image-transform-fit-to-width): Handle image-toggle-display-image
13439 and image-transform-resize directly.
13440
13441 2011-04-08 Sho Nakatani <lay.sakura@gmail.com>
13442
13443 * doc-view.el (doc-view-fit-width-to-window)
13444 (doc-view-fit-height-to-window, doc-view-fit-page-to-window):
13445 New functions for fitting the shown image to the Emacs window size.
13446 (doc-view-mode-map): Add bindings for the new functions.
13447
13448 2011-04-08 Juanma Barranquero <lekktu@gmail.com>
13449
13450 * vc/vc-annotate.el (vc-annotate-show-log-revision-at-line):
13451 Fix typo in docstring.
13452
13453 2011-04-08 Eli Zaretskii <eliz@gnu.org>
13454
13455 * files.el (file-size-human-readable): Produce one digit after
13456 decimal, like "ls -lh" does.
13457
13458 * ls-lisp.el (ls-lisp-format-file-size): Allow for 7 characters in
13459 the file size representation.
13460
13461 * simple.el (list-processes): If async subprocesses are not
13462 available, error out with a clear error message.
13463
13464 2011-04-08 Chong Yidong <cyd@stupidchicken.com>
13465
13466 * help.el (help-form-show): New function, to be called from C.
13467 Put help-form output in a buffer named differently than *Help*.
13468
13469 2011-04-08 Eli Zaretskii <eliz@gnu.org>
13470
13471 * files.el (file-size-human-readable): New function.
13472
13473 * ls-lisp.el (ls-lisp-format-file-size): Use it, instead of
13474 computing the representation inline. Don't require `cl'.
13475
13476 2011-04-08 Glenn Morris <rgm@gnu.org>
13477
13478 * man.el (Man-page-header-regexp): Solaris < 2.6 no longer supported.
13479
13480 * net/browse-url.el (browse-url-firefox):
13481 Test system-type, not system-configuration.
13482
13483 * vc/log-edit.el (log-edit-empty-buffer-p): New function.
13484 (log-edit-insert-cvs-template, log-edit-insert-cvs-rcstemplate):
13485 Use log-edit-empty-buffer-p. (Bug#7598)
13486
13487 * net/rlogin.el (rlogin-process-connection-type): Simplify.
13488 (rlogin-mode-map): Initialize in the defvar.
13489 (rlogin): Use ignore-errors.
13490
13491 * replace.el (occur-mode-map): Some fixes for menu items.
13492
13493 2011-04-07 Aaron S. Hawley <aaron.s.hawley@gmail.com>
13494
13495 * play/morse.el (denato-region): Handle varying case. (Bug#8386)
13496
13497 2011-04-06 Chong Yidong <cyd@stupidchicken.com>
13498
13499 * emacs-lisp/cconv.el (cconv--analyse-use): Ignore "ignored" when
13500 issuing unused warnings.
13501
13502 * emacs-lisp/tabulated-list.el (tabulated-list-print): Use lambda
13503 macro directly.
13504
13505 * simple.el: Lisp reimplement of list-processes. Based on an
13506 earlier reimplementation by Leo Liu, but using tabulated-list.el.
13507 (process-menu-mode): New major mode.
13508 (list-processes--refresh, list-processes):
13509 (process-menu-visit-buffer): New functions.
13510
13511 * files.el (save-buffers-kill-emacs): Don't assume any return
13512 value of list-processes, which is undocumented anyway.
13513
13514 2011-04-06 Chong Yidong <cyd@stupidchicken.com>
13515
13516 * emacs-lisp/tabulated-list.el: New file.
13517
13518 * emacs-lisp/package.el: Use Tabulated List mode.
13519 (package-menu-mode-map): Inherit from tabulated-list-mode-map.
13520 (package-menu-mode): Derive from tabulated-list-mode. Set up the
13521 table format using Tabulated List mode variables.
13522 (package--push): New macro, replacing package-list-maybe-add.
13523 (package-menu--generate): Use package--push. Renamed from
13524 package--generate-package-list.
13525 (package-menu-refresh, list-packages): Use it.
13526 (package-menu--print-info): Rename from package-print-package.
13527 Return insertion data instead of inserting it directly.
13528 (package-menu-describe-package, package-menu-execute):
13529 Use tabulated-list-get-id.
13530 (package-menu-mark-delete, package-menu-mark-install)
13531 (package-menu-mark-unmark, package-menu-backup-unmark)
13532 (package-menu-mark-obsolete-for-deletion):
13533 Use tabulated-list-put-tag.
13534 (package--list-packages, package-menu-revert)
13535 (package-menu-get-package, package-menu-get-version)
13536 (package-menu-sort-by-column): Functions deleted.
13537 (package-menu-package-list, package-menu-sort-key): Vars deleted.
13538 (package-menu--status-predicate, package-menu--version-predicate)
13539 (package-menu--name-predicate)
13540 (package-menu--description-predicate): Handle arguments in the
13541 Tabulated List format.
13542 (package-list-packages-no-fetch): Call list-packages.
13543
13544 2011-04-06 Juanma Barranquero <lekktu@gmail.com>
13545
13546 * files.el (after-find-file-from-revert-buffer): Remove variable.
13547 (after-find-file): Don't bind it.
13548 (revert-buffer-in-progress-p): New variable.
13549 (revert-buffer): Bind it.
13550 Pass nil for `after-find-file-from-revert-buffer'.
13551
13552 * saveplace.el (save-place-find-file-hook): Use new variable
13553 `rever-buffer-in-progress-p', not `after-find-file-from-revert-buffer'.
13554
13555 2011-04-06 Glenn Morris <rgm@gnu.org>
13556
13557 * Makefile.in (AUTOGEN_VCS): New variable.
13558 (autoloads): Use $AUTOGEN_VCS.
13559
13560 * calendar/cal-move.el (calendar-scroll-toolkit-scroll): New function.
13561 * calendar/calendar.el (calendar-mode-map):
13562 Check for toolkit scroll bars. (Bug#8305)
13563
13564 2011-04-05 Chong Yidong <cyd@stupidchicken.com>
13565
13566 * minibuffer.el (completion-in-region--postch)
13567 (completion-in-region-mode): Remove unnecessary messages.
13568
13569 2011-04-05 Juanma Barranquero <lekktu@gmail.com>
13570
13571 * font-lock.el (font-lock-refresh-defaults):
13572 Don't bind `hi-lock--inhibit-font-lock-hook', removed in
13573 2010-10-09T04:09:19Z!cyd@stupidchicken.com and 2010-10-11T23:57:49Z!lekktu@gmail.com (2010-10-12).
13574
13575 * info.el (Info-directory-list, Info-read-node-name-2)
13576 (Info-split-parameter-string): Doc fixes.
13577 (Info-virtual-nodes): Reflow docstring.
13578 (Info-find-file, Info-directory-toc-nodes, Info-history-toc-nodes)
13579 (Info-apropos-toc-nodes, info-finder, Info-get-token)
13580 (Info-find-emacs-command-nodes, Info-speedbar-key-map):
13581 Fix typos in docstrings.
13582 (Info-revert-buffer-function, Info-search, Info-isearch-pop-state)
13583 (Info-speedbar-hierarchy-buttons, Info-speedbar-goto-node)
13584 (Info-speedbar-buttons, Info-desktop-buffer-misc-data)
13585 (Info-restore-desktop-buffer): Mark unused parameters.
13586 (Info-directory-find-file, Info-directory-find-node)
13587 (Info-history-find-file, Info-history-find-node, Info-toc-find-node)
13588 (Info-virtual-index-find-node, Info-apropos-find-file)
13589 (Info-apropos-find-node, Info-finder-find-file, Info-finder-find-node):
13590 Mark unused parameters; fix typos in docstrings.
13591 (Info-virtual-index): Remove unused local variable `nodename'.
13592
13593 2011-04-05 Deniz Dogan <deniz@dogan.se>
13594
13595 * net/rcirc.el: Update my e-mail address.
13596 (rcirc-mode-map): Remove M-o binding.
13597
13598 2011-04-05 Chong Yidong <cyd@stupidchicken.com>
13599
13600 * startup.el (command-line): Save the cursor's theme-face
13601 directly, instead of using face-override-spec.
13602
13603 * custom.el (load-theme): Minor optimization in assigning faces.
13604
13605 2011-04-04 Juanma Barranquero <lekktu@gmail.com>
13606
13607 * help-fns.el (describe-variable): Complete all variables having
13608 documentation, including keywords.
13609 http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00112.html
13610
13611 2011-04-04 Juanma Barranquero <lekktu@gmail.com>
13612
13613 Convert to lexical-binding.
13614
13615 * bs.el (bs-refresh, bs-sort-buffer-interns-are-last)
13616 (bs--get-marked-string, bs--get-modified-string)
13617 (bs--get-readonly-string, bs--get-size-string, bs--get-name)
13618 (bs--get-mode-name, bs--get-file-name): Mark unused arguments.
13619 (bs--configuration-name-for-prefix-arg): Rename argument PREFIX-ARG.
13620
13621 * ehelp.el (electric-help-execute-extended)
13622 (electric-help-ctrl-x-prefix):
13623 * hexl.el (hexl-revert-buffer-function):
13624 * linum.el (linum-after-change, linum-after-scroll):
13625 * emacs-lisp/re-builder.el (reb-auto-update): Mark unused arguments.
13626
13627 * help-fns.el (help-describe-category-set): Remove unused ERR variable.
13628
13629 2011-04-04 Daiki Ueno <ueno@unixuser.org>
13630
13631 * epa-dired.el:
13632 * epa-mail.el:
13633 * epa-hook.el:
13634 * epa-file.el:
13635 * epa.el:
13636 * epg.el: Use lexical binding.
13637
13638 2011-04-03 Chong Yidong <cyd@stupidchicken.com>
13639
13640 * dired-aux.el (dired-create-files): Add docstring (Bug#7970).
13641
13642 * textmodes/flyspell.el (flyspell-word): Recognize default
13643 dictionary case for flyspell-mark-duplications-exceptions.
13644 Use regexp matching for languages.
13645 (flyspell-mark-duplications-exceptions): Add "that" and "had" for
13646 default dictionary (Bug#7926).
13647
13648 2011-04-02 Chong Yidong <cyd@stupidchicken.com>
13649
13650 * emacs-lisp/package.el (package--with-work-buffer):
13651 Recognize https URLs.
13652
13653 * net/network-stream.el: Move from gnus/proto-stream.el.
13654 Change prefix to network-stream throughout.
13655 (open-protocol-stream): Merge into open-network-stream, leaving
13656 open-protocol-stream as an alias. Handle nil BUFFER args.
13657
13658 * subr.el (open-network-stream): Move to net/network-stream.el.
13659
13660 2011-04-02 Glenn Morris <rgm@gnu.org>
13661
13662 * find-dired.el (find-exec-terminator): New option.
13663 (find-ls-option): Test for -ls support.
13664 (find-ls-subdir-switches): Test for -b in find-ls-option.
13665 (find-dired, find-grep-dired): Doc fixes.
13666 (find-dired): Use find-exec-terminator.
13667
13668 * find-dired.el (find-ls-option, find-ls-subdir-switches)
13669 (find-grep-options): Do not autoload these defcustoms, remove purecopy.
13670 (find-name-arg): Remove purecopy.
13671
13672 * progmodes/grep.el (grep-find-use-xargs): Doc fix.
13673 (grep-compute-defaults): Check for `-exec COMMAND +' support.
13674 Set grep-find-use-xargs, grep-find-command, and grep-find-template
13675 accordingly. Don't add the null-device if not needed.
13676
13677 * files.el (save-some-buffers): Doc fix.
13678
13679 2011-04-02 Eli Zaretskii <eliz@gnu.org>
13680
13681 * makefile.w32-in (EMACS): Default to ../src/$(BLD)/emacs.exe.
13682
13683 2011-04-01 Juanma Barranquero <lekktu@gmail.com>
13684
13685 * progmodes/idlwave.el (idlwave-one-key-select, idlwave-list-abbrevs):
13686 Use `dolist' rather than `mapcar'.
13687
13688 2011-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
13689
13690 Add lexical binding.
13691
13692 * subr.el (apply-partially): Use new closures rather than CL.
13693 (--dolist-tail--, --dotimes-limit--): Don't declare dynamic.
13694 (dolist, dotimes): Use slightly different expansion for lexical code.
13695 (functionp): Move to C.
13696 (letrec): New macro.
13697 (with-wrapper-hook): Use it and apply-partially instead of CL.
13698 (eval-after-load): Preserve lexical-binding.
13699 (save-window-excursion, with-output-to-temp-buffer): Turn them
13700 into macros.
13701
13702 * simple.el (with-wrapper-hook, apply-partially): Move to subr.el.
13703
13704 * help-fns.el (help-split-fundoc): Return nil if there's nothing else
13705 than the arglist.
13706 (help-add-fundoc-usage): Don't add `Not documented'.
13707 (help-function-arglist): Handle closures, subroutines, and new
13708 byte-code-functions.
13709 (help-make-usage): Remove leading underscores.
13710 (describe-function-1): Handle closures.
13711 (describe-variable): Use special-variable-p for completion.
13712
13713 * files.el (lexical-binding): Declare safe.
13714
13715 * emacs-lisp/pcase.el: Don't use destructuring-bind.
13716 (pcase--memoize): Rename from pcase-memoize. Change weakness.
13717 (pcase): Add `let' pattern.
13718 Change memoization so it actually works.
13719 (pcase-mutually-exclusive-predicates): Add byte-code-function-p.
13720 (pcase--u1) <guard, pred>: Fix possible shadowing problem.
13721 <let>: New case.
13722
13723 * emacs-lisp/macroexp.el: Use lexical binding.
13724 (macroexpand-all-1): Check obsolete macros. Expand compiler-macros.
13725 Don't convert ' to #' without checking that it's indeed quoting
13726 a lambda.
13727
13728 * emacs-lisp/lisp-mode.el (eval-last-sexp-1):
13729 Use eval-sexp-add-defvars.
13730 (eval-sexp-add-defvars): New fun.
13731
13732 * emacs-lisp/float-sup.el (pi): Don't declare as dynamically bound.
13733
13734 * emacs-lisp/eieio.el (byte-compile-file-form-defmethod):
13735 Don't autoload.
13736 (eieio-defgeneric-form-primary-only-one): Use `byte-compile' rather
13737 than the internal `byte-compile-lambda'.
13738 (defmethod): Don't hide code under quotes.
13739 (eieio-defmethod): New `code' argument.
13740
13741 * emacs-lisp/eieio-comp.el: Remove.
13742
13743 * emacs-lisp/edebug.el (edebug-eval-defun)
13744 (edebug-eval-top-level-form): Use eval-sexp-add-defvars.
13745 (edebug-toggle): Avoid `eval'.
13746
13747 * emacs-lisp/disass.el (disassemble-internal): Handle new
13748 `closure' objects.
13749 (disassemble-1): Handle new byte codes.
13750
13751 * emacs-lisp/cl.el (pushnew): Silence warning.
13752
13753 * emacs-lisp/cl-macs.el (cl-byte-compile-block)
13754 (cl-byte-compile-throw): Remove.
13755 (cl-block-wrapper, cl-block-throw): Use compiler-macros instead.
13756
13757 * emacs-lisp/cl-extra.el (cl-macroexpand-all): Properly quote CL
13758 closures.
13759
13760 * emacs-lisp/cconv.el: New file.
13761
13762 * emacs-lisp/bytecomp.el: Use lexical binding instead of
13763 a "bytecomp-" prefix. Macroexpand everything as a separate phase.
13764 (byte-compile-initial-macro-environment):
13765 Handle declare-function here.
13766 (byte-compile--lexical-environment): New var.
13767 (byte-stack-ref, byte-stack-set, byte-discardN)
13768 (byte-discardN-preserve-tos): New lap codes.
13769 (byte-interactive-p): Don't use any more.
13770 (byte-compile-push-bytecodes, byte-compile-push-bytecode-const2):
13771 New macros.
13772 (byte-compile-lapcode): Use them and handle new lap codes.
13773 (byte-compile-obsolete): Remove.
13774 (byte-compile-arglist-signature): Handle new byte-code arg"lists".
13775 (byte-compile-arglist-warn): Check late def of inlinable funs.
13776 (byte-compile-cl-warn): Don't silence warnings for compiler-macros
13777 since they should have been expanded by now.
13778 (byte-compile--outbuffer): Rename from bytecomp-outbuffer.
13779 (byte-compile-from-buffer): Remove unused second arg.
13780 (byte-compile-preprocess): New function.
13781 (byte-compile-toplevel-file-form): New function to distinguish
13782 file-form calls from outside from file-form calls from hunk-handlers.
13783 (byte-compile-file-form): Simplify.
13784 (byte-compile-file-form-defsubst): Remove.
13785 (byte-compile-file-form-defmumble): Simplify now that
13786 byte-compile-lambda always returns a byte-code-function.
13787 (byte-compile): Preprocess.
13788 (byte-compile-byte-code-maker, byte-compile-byte-code-unmake):
13789 Remove, not used any more.
13790 (byte-compile-arglist-vars, byte-compile-make-lambda-lexenv)
13791 (byte-compile-make-args-desc): New funs.
13792 (byte-compile-lambda): Handle lexical functions. Always return
13793 a byte-code-function.
13794 (byte-compile-reserved-constants): New var, to make up room for
13795 closed-over variables.
13796 (byte-compile-constants-vector): Obey it.
13797 (byte-compile-top-level): New args `lexenv' and `reserved-csts'.
13798 (byte-compile-macroexpand-declare-function): New function.
13799 (byte-compile-form): Call byte-compile-unfold-bcf to inline immediate
13800 byte-code-functions.
13801 (byte-compile-form): Check obsolescence here.
13802 (byte-compile-inline-lapcode, byte-compile-unfold-bcf): New functions.
13803 (byte-compile-variable-ref): Remove.
13804 (byte-compile-dynamic-variable-op): New fun.
13805 (byte-compile-dynamic-variable-bind, byte-compile-variable-ref)
13806 (byte-compile-variable-set): New funs.
13807 (byte-compile-discard): Add 2 args.
13808 (byte-compile-stack-ref, byte-compile-stack-set)
13809 (byte-compile-make-closure, byte-compile-get-closed-var): New funs.
13810 (byte-compile-funarg, byte-compile-funarg-2): Remove, handled in
13811 macroexpand-all instead.
13812 (byte-compile-quote-form): Remove.
13813 (byte-compile-push-binding-init, byte-compile-not-lexical-var-p)
13814 (byte-compile-bind, byte-compile-unbind): New funs.
13815 (byte-compile-let): Handle let* and lexical binding.
13816 (byte-compile-let*): Remove.
13817 (byte-compile-catch, byte-compile-unwind-protect)
13818 (byte-compile-track-mouse, byte-compile-condition-case):
13819 Handle a new :fun-body form, used for lexical scoping.
13820 (byte-compile-save-window-excursion)
13821 (byte-compile-with-output-to-temp-buffer): Remove.
13822 (byte-compile-defun): Simplify.
13823 (byte-compile-stack-adjustment): New fun.
13824 (byte-compile-out): Use it.
13825 (byte-compile-refresh-preloaded): Don't reload byte-compiler files.
13826
13827 * emacs-lisp/byte-run.el (make-obsolete): Don't set the `byte-compile'
13828 handler any more.
13829
13830 * emacs-lisp/byte-opt.el: Use lexical binding.
13831 (byte-inline-lapcode): Remove (to bytecomp).
13832 (byte-compile-inline-expand): Pay attention to inlining to/from
13833 lexically bound code.
13834 (byte-compile-unfold-lambda): Don't handle byte-code-functions
13835 any more.
13836 (byte-optimize-form-code-walker): Don't handle save-window-excursion
13837 any more and don't call compiler-macros.
13838 (byte-compile-splice-in-already-compiled-code): Remove.
13839 (byte-code): Don't inline any more.
13840 (disassemble-offset): Receive `bytes' as argument rather than via
13841 dynamic scoping.
13842 (byte-compile-tag-number): Declare before first use.
13843 (byte-decompile-bytecode-1): Handle new byte-codes, don't change
13844 `return' even if make-spliceable.
13845 (byte-compile-side-effect-and-error-free-ops): Add stack-ref, remove
13846 obsolete interactive-p.
13847 (byte-optimize-lapcode): Optimize new lap-codes.
13848 Don't trip up on new form of `byte-constant' lap code.
13849
13850 * emacs-lisp/autoload.el (make-autoload): Don't burp on trivial macros.
13851
13852 * emacs-lisp/advice.el (ad-arglist): Use help-function-arglist.
13853
13854 * custom.el (custom-initialize-default, custom-declare-variable):
13855 Use `defvar'.
13856
13857 * Makefile.in (BIG_STACK_DEPTH, BIG_STACK_OPTS, BYTE_COMPILE_FLAGS):
13858 New variables.
13859 (compile-onefile, .el.elc, compile-calc, recompile): Use them.
13860 (COMPILE_FIRST): Add macroexp and cconv.
13861 * makefile.w32-in: Mirror changes in Makefile.in.
13862
13863 * vc/cvs-status.el:
13864 * vc/diff-mode.el:
13865 * vc/log-edit.el:
13866 * vc/log-view.el:
13867 * vc/smerge-mode.el:
13868 * textmodes/bibtex-style.el:
13869 * textmodes/css.el:
13870 * startup.el:
13871 * uniquify.el:
13872 * minibuffer.el:
13873 * newcomment.el:
13874 * reveal.el:
13875 * server.el:
13876 * mpc.el:
13877 * emacs-lisp/smie.el:
13878 * doc-view.el:
13879 * dired.el:
13880 * abbrev.el: Use lexical binding.
13881
13882 2011-04-01 Eli Zaretskii <eliz@gnu.org>
13883
13884 * info.el (info-display-manual): New function.
13885
13886 2011-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
13887
13888 * loadup.el: Load minibuffer after loaddefs, to use define-minor-mode.
13889
13890 2011-03-31 Tassilo Horn <tassilo@member.fsf.org>
13891
13892 * net/rcirc.el (rcirc-handler-001): Only authenticate, if there's
13893 an entry for that server in rcirc-authinfo. (Bug#8385)
13894
13895 2011-03-31 Glenn Morris <rgm@gnu.org>
13896
13897 * progmodes/f90.el (f90-find-tag-default): Handle multiple `%'.
13898
13899 * generic-x.el (etc-fstab-generic-mode): Add ext4, sysfs keywords.
13900
13901 2011-03-30 Christoph Scholtes <cschol2112@googlemail.com>
13902
13903 * progmodes/python.el (python-default-interpreter)
13904 (python-python-command-args, python-jython-command-args)
13905 (python-which-shell, python-which-args, python-which-bufname)
13906 (python-file-queue, python-comint-output-filter-function)
13907 (python-toggle-shells, python-shell): Remove obsolete defcustoms,
13908 variables and functions.
13909
13910 2011-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
13911
13912 * minibuffer.el (completion-table-dynamic): Optimize `boundaries'.
13913 (completion-in-region-mode): New minor mode.
13914 (completion-in-region): Use it.
13915 (completion-in-region--data, completion-in-region-mode-map): New vars.
13916 (completion-in-region--postch): New function.
13917 (completion--capf-misbehave-funs, completion--capf-safe-funs):
13918 New vars.
13919 (completion--capf-wrapper): New function.
13920 (completion-at-point): Use it to track well-behavedness of
13921 hook functions.
13922 (completion-help-at-point): New command.
13923
13924 2011-03-30 Jason Merrill <jason@redhat.com> (tiny change)
13925
13926 * vc/add-log.el (add-change-log-entry): Don't use whitespace
13927 syntax class to search for whitespace on a single line
13928 (Message-ID: <4D938140.4030905@redhat.com>).
13929
13930 2011-03-30 Leo Liu <sdl.web@gmail.com>
13931
13932 * abbrev.el (abbrev-edit-save-to-file, abbrev-edit-save-buffer):
13933 New commands.
13934 (edit-abbrevs-map): Bind them here.
13935 (write-abbrev-file): New optinal arg VERBOSE. (Bug#5937)
13936
13937 2011-03-29 Ken Manheimer <ken.manheimer@gmail.com>
13938
13939 * allout.el (allout-hide-by-annotation, allout-flag-region):
13940 Reduce possibility of overlay leakage by making them volatile.
13941
13942 * allout-widgets.el (allout-widgets-tally): Define as nil so the
13943 hash is not shared between buffers. Mode initialization is
13944 responsible for giving it a useful starting value.
13945 (allout-item-span): Reduce possibility of overlay leakage by
13946 making them volatile.
13947 (allout-widgets-count-buttons-in-region): Add diagnostic function
13948 for tracking down button overlay leaks.
13949
13950 2011-03-29 Leo Liu <sdl.web@gmail.com>
13951
13952 * ido.el (ido-read-internal): Use the default history var
13953 minibuffer-history if no HISTORY is specified.
13954
13955 2011-03-28 Brian T. Sniffen <bsniffen@akamai.com> (tiny change)
13956
13957 * net/imap.el (imap-shell-open, imap-process-connection-type):
13958 Use imap-process-connection-type for 'shell' streams as well as
13959 Kerberos, SSL, other subprocesses.
13960
13961 2011-03-28 Leo Liu <sdl.web@gmail.com>
13962
13963 * abbrev.el (abbrev-table-empty-p): New function.
13964 (prepare-abbrev-list-buffer): Place empty abbrev tables after
13965 nonempty ones. (Bug#5937)
13966
13967 2011-03-27 Jan Djärv <jan.h.d@swipnet.se>
13968
13969 * cus-start.el (all): Add boolean ns-auto-hide-menu-bar.
13970
13971 2011-03-27 Leo Liu <sdl.web@gmail.com>
13972
13973 * ansi-color.el (ansi-color-names-vector): Allow cons cell value
13974 for foreground and background colors.
13975 (ansi-color-make-color-map): Adapt.
13976
13977 2011-03-25 Leo Liu <sdl.web@gmail.com>
13978
13979 * midnight.el (midnight-time-float): Remove. Note it calculates
13980 the microsecond component incorrectly and seconds-to-time does the
13981 same job.
13982 Remove redundant (require 'timer).
13983
13984 * ido.el (ido-read-internal): Simplify with read-from-minibuffer.
13985 (ido-completions): Remove unused arguments. (Bug#8329)
13986
13987 2011-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
13988
13989 * minibuffer.el (completion--flush-all-sorted-completions):
13990 Remove itself from hook.
13991 (completion-at-point): Let the functions perform the completion
13992 immediately and return nil or t.
13993 * comint.el (comint-dynamic-complete-functions): Now identical to
13994 completion-at-point-functions.
13995 (comint-dynamic-list-input-ring): Remove unused var `index'.
13996 (comint--match-partial-filename, comint--unquote&expand-filename):
13997 New funs, split from comint-match-partial-filename.
13998 (comint-dynamic-complete): Use completion-at-point.
13999 (comint-dynamic-complete-filename): Use comint--match-partial-filename.
14000
14001 2011-03-24 Drew Adams <drew.adams@oracle.com>
14002
14003 * thingatpt.el: Support `defun'.
14004
14005 2011-03-23 Leo Liu <sdl.web@gmail.com>
14006
14007 * abbrevlist.el: Move to obsolete/abbrevlist.el.
14008
14009 * help-mode.el (help-mode-finish): Tweak regexp.
14010
14011 2011-03-23 Glenn Morris <rgm@gnu.org>
14012
14013 * eshell/esh-opt.el (eshell-eval-using-options):
14014 Do not bind unused local variable `eshell-option-stub'.
14015
14016 * progmodes/gdb-mi.el (gdb): Fix typo in previous change.
14017
14018 2011-03-22 Juanma Barranquero <lekktu@gmail.com>
14019
14020 * emacs-lisp/derived.el (define-derived-mode): Wrap declaration of
14021 keymap variable in `with-no-warnings' to avoid a warning when the
14022 keymap has been already `defconst'ed.
14023
14024 2011-03-22 Leo Liu <sdl.web@gmail.com>
14025
14026 * abbrev.el (write-abbrev-file): Use utf-8 for writing if it can
14027 encode all chars in abbrevs; otherwise use emacs-mule or
14028 utf-8-emacs. (Bug#8308)
14029
14030 2011-03-22 Juanma Barranquero <lekktu@gmail.com>
14031
14032 * simple.el (backward-delete-char-untabify):
14033 Avoid warning about using `delete-backward-char'.
14034
14035 * image.el (image-type-file-name-regexps): Make it variable.
14036 `imagemagick-register-types' modifies it, and the user may want
14037 to add new extensions for known image types.
14038 (imagemagick-register-types): Throw error if not using ImageMagick.
14039
14040 2011-03-22 Leo Liu <sdl.web@gmail.com>
14041
14042 * net/rcirc.el (rcirc-completion-at-point): Return nil if point is
14043 located before rcirc-prompt-end-marker.
14044 (rcirc-complete): Error if point is not after rcirc prompt.
14045 Handle the case when table is nil.
14046 (rcirc-user-authenticated): Define to fix compiler warning.
14047
14048 2011-03-22 Chong Yidong <cyd@stupidchicken.com>
14049
14050 * custom.el (custom--inhibit-theme-enable): Make it affect only
14051 custom-theme-set-variables and custom-theme-set-faces.
14052 (provide-theme): Ignore custom--inhibit-theme-enable.
14053 (load-theme): Enable the theme explicitly if NO-ENABLE is non-nil.
14054 (custom-enabling-themes): Delete variable.
14055 (enable-theme): Accept only loaded themes as arguments.
14056 Ignore the special custom-enabled-themes variable.
14057 (custom-enabled-themes): Forbid themes from setting this.
14058 Eliminate use of custom-enabling-themes.
14059 (custom-push-theme): Quote "changed" custom var entry.
14060
14061 2011-03-21 Leo Liu <sdl.web@gmail.com>
14062
14063 * ido.el (ido-read-internal): Add ido-selected to history instead
14064 of user input.
14065
14066 2011-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
14067
14068 * subr.el (deferred-action-list, deferred-action-function):
14069 Mark obsolete.
14070
14071 2011-03-21 Leo Liu <sdl.web@gmail.com>
14072
14073 * vc/log-view.el: Remove (require 'wid-edit), not needed after the
14074 change on 2011-02-13 (bug#8309).
14075
14076 * minibuffer.el (read-file-name-function): Change default value.
14077 (read-file-name--defaults): Rename from read-file-name-defaults.
14078 (read-file-name-default): Rename from read-file-name.
14079 (read-file-name): Call read-file-name-function.
14080
14081 2011-03-21 Glenn Morris <rgm@gnu.org>
14082
14083 * eshell/esh-opt.el (eshell-eval-using-options, eshell-process-args):
14084 Doc fixes.
14085
14086 2011-03-21 Chong Yidong <cyd@stupidchicken.com>
14087
14088 * cus-theme.el: Add missing provide statement.
14089 (customize-create-theme): Extract theme value correctly.
14090 (custom-theme-visit-theme): Autoload.
14091 (customize-create-theme): Prompt before inserting default faces.
14092
14093 2011-03-20 Jay Belanger <jay.p.belanger@gmail.com>
14094
14095 * calc/calc-menu.el (calc-units-menu): Add entries for logarithmic
14096 units and musical notes.
14097
14098 2011-03-20 Leo Liu <sdl.web@gmail.com>
14099
14100 * ido.el (ido-read-internal): Use completing-read-default.
14101 (ido-completing-read): Fix compatibility with completing-read.
14102
14103 2011-03-20 Christian Ohler <ohler@gnu.org>
14104
14105 * emacs-lisp/ert.el (ert-run-tests-batch): Remove unused variable.
14106 (ert-delete-all-tests): Use `called-interactively-p' rather than
14107 `interactive-p'.
14108 (ert--make-xrefs-region): Respect END.
14109
14110 2011-03-19 Chong Yidong <cyd@stupidchicken.com>
14111
14112 * dired-aux.el (dired-create-directory): Signal an error if the
14113 directory already exists (Bug#8246).
14114
14115 * facemenu.el (list-colors-display): Call list-faces-display
14116 inside with-help-window.
14117 (list-colors-print): Use display property to align the final
14118 column, instead of checking window-width.
14119
14120 2011-03-19 Eli Zaretskii <eliz@gnu.org>
14121
14122 * vc/emerge.el (emerge-metachars): Separate value for ms-dos and
14123 windows-nt systems.
14124 (emerge-protect-metachars): Quote correctly for ms-dos and
14125 windows-nt systems.
14126
14127 2011-03-19 Ralph Schleicher <rs@ralph-schleicher.de>
14128
14129 * info.el (info-initialize): Replace all uses of `:' with
14130 path-separator for compatibility with non-Unix systems.
14131 Cache quoting of path-separator. (Bug#8258)
14132
14133 2011-03-19 Juanma Barranquero <lekktu@gmail.com>
14134
14135 * avoid.el (mouse-avoidance-mode, mouse-avoidance-nudge-dist)
14136 (mouse-avoidance-threshold, mouse-avoidance-banish-destination)
14137 (mouse-avoidance-mode): Fix typos in docstrings.
14138
14139 2011-03-19 Chong Yidong <cyd@stupidchicken.com>
14140
14141 * startup.el (package-subdirectory-regexp): Move from package.el.
14142 Omit \\` and \\', and let callers add them.
14143
14144 * emacs-lisp/package.el (package-strip-version)
14145 (package-load-all-descriptors): Add \\` and \\' to
14146 package-subdirectory-regexp before using it.
14147 (package-untar-buffer): New arg DIR; ensure that file untars only
14148 into this expected directory. Remove superfluous delete-region.
14149 (package-unpack): Caller changed.
14150 (package-tar-file-info): Use package-subdirectory-regexp.
14151
14152 2011-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
14153
14154 * vc/diff-mode.el (diff-mode-map): Shadow problematic bindings from
14155 diff-mode-shared-map (bug#8284).
14156 (diff-mode-shared-map): Re-introduce some bindings that were problematic.
14157
14158 2011-03-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
14159
14160 * calendar/time-date.el (format-seconds): Use assoc instead of
14161 assoc-string, since assoc-string doesn't exist in XEmacs.
14162
14163 2011-03-17 Juanma Barranquero <lekktu@gmail.com>
14164
14165 * custom.el (custom-known-themes): Reflow docstring.
14166 (custom-theme-load-path): Fix typo in docstring.
14167 (load-theme): Fix typo in error message.
14168 (custom-available-themes, custom-variable-theme-value):
14169 Use `let', not `let*'.
14170
14171 2011-03-17 Jay Belanger <jay.p.belanger@gmail.com>
14172
14173 * calc/README: Mention inclusion of musical notes.
14174
14175 * calc/calc-units.el (calc-lu-quant): Rename from
14176 `calc-logunits-quantity'.
14177 (calcFunc-lupquant): Rename from `calcFunc-powerquant'.
14178 (calcFunc-lufquant): Rename from `calcFunc-fieldquant'.
14179 (calc-db): Rename from `calc-dblevel'.
14180 (calcFunc-dbpower): Rename from `calcFunc-dbpowerlevel'.
14181 (calcFunc-dbfield): Rename from `calcFunc-dbfieldlevel'.
14182 (calc-np): Rename from `calc-nplevel'.
14183 (calcFunc-nppower): Rename from `calcFunc-nppowerlevel'.
14184 (calcFunc-npfield): Rename from `calcFunc-npfieldlevel'.
14185 (calc-lu-plus): Rename from `calc-logunits-add'.
14186 (calcFunc-lupadd): Rename from `calcFunc-lupoweradd'.
14187 (calcFunc-lufadd): Rename from `calcFunc-lufieldadd'.
14188 (calc-lu-minus): Rename from `calc-logunits-sub'.
14189 (calcFunc-lupsub): Rename from `calcFunc-lupowersub'.
14190 (calcFunc-lufsub): Rename from `calcFunc-lufieldsub'.
14191 (calc-lu-times): Rename from `calc-logunits-mul'.
14192 (calcFunc-lupmul): Rename from `calcFunc-lupowermul'.
14193 (calcFunc-lufmul): Rename from `calcFunc-lufieldmul'.
14194 (calc-lu-divide): Rename from `calc-logunits-div'.
14195 (calcFunc-lupdiv): Rename from `calcFunc-lupowerdiv'.
14196 (calcFunc-lufdiv): Rename from `calcFunc-lufielddiv'.
14197
14198 * calc/calc-ext.el (calc-init-extensions): Update the names of the
14199 functions being autoloaded.
14200
14201 * calc/calc.el (calc-lu-power-reference): Rename from
14202 `calc-logunits-power-reference'.
14203 (calc-lu-field-reference): Rename from
14204 `calc-logunits-field-reference'.
14205
14206 * calc/calc-help.el (calc-l-prefix-help):
14207 Mention musical note functions.
14208
14209 2011-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
14210
14211 * minibuffer.el (completion-all-sorted-completions):
14212 Use :completion-cycle-penalty text property if present.
14213
14214 2011-03-16 Ken Manheimer <ken.manheimer@gmail.com>
14215
14216 * allout.el (allout-yank-processing): Adjust for new rebulleting
14217 regime so bullet being yanked is used without prompting the user
14218 for a choice.
14219
14220 2011-03-16 Juanma Barranquero <lekktu@gmail.com>
14221
14222 * startup.el (command-line): Warn the user that _emacs is deprecated.
14223
14224 2011-03-16 Juanma Barranquero <lekktu@gmail.com>
14225
14226 * progmodes/delphi.el (delphi-search-path, delphi-indent-level)
14227 (delphi-verbose, delphi-comment-face, delphi-string-face)
14228 (delphi-keyword-face, delphi-ignore-changes, delphi-indent-line)
14229 (delphi-mode-abbrev-table, delphi-debug-buffer, delphi-tab)
14230 (delphi-find-unit, delphi-find-current-xdef, delphi-fill-comment)
14231 (delphi-new-comment-line, delphi-font-lock-defaults)
14232 (delphi-debug-mode-map, delphi-mode-syntax-table, delphi-mode):
14233 Fix typos in docstrings.
14234
14235 2011-03-15 Ken Manheimer <ken.manheimer@gmail.com>
14236
14237 * allout.el (allout-make-topic-prefix, allout-rebullet-heading):
14238 Invert the roles of character and string values for INSTEAD, so a
14239 string is used for the more common case of a defaulting prompt.
14240
14241 2011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
14242
14243 * progmodes/ruby-mode.el (ruby-backward-sexp):
14244 * progmodes/ebrowse.el (ebrowse-draw-file-member-info):
14245 * play/gamegrid.el (gamegrid-make-face):
14246 * play/bubbles.el (bubbles--grid-width, bubbles--grid-height)
14247 (bubbles--colors, bubbles--shift-mode, bubbles--initialize-images):
14248 * notifications.el (notifications-notify):
14249 * net/xesam.el (xesam-search-engines):
14250 * net/quickurl.el (quickurl-list-insert):
14251 * vc/vc-hg.el (vc-hg-dir-printer): Fix use of case.
14252
14253 2011-03-15 Chong Yidong <cyd@stupidchicken.com>
14254
14255 * startup.el (command-line): Update package subdirectory regexp.
14256
14257 2011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
14258
14259 * allout.el (allout-abbreviate-flattened-numbering)
14260 (allout-mode-deactivate-hook): Fix up obsolescence "date".
14261
14262 * subr.el (read-char-choice): Only show the cursor after the prompt,
14263 not after the answer.
14264
14265 2011-03-15 Kevin Ryde <user42@zip.com.au>
14266
14267 * help-fns.el (variable-at-point): Skip leading quotes, if any
14268 (bug#8253).
14269
14270 2011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
14271
14272 * emacs-lisp/bytecomp.el (byte-compile-save-excursion): Change the
14273 warning message.
14274
14275 2011-03-14 Michael Albinus <michael.albinus@gmx.de>
14276
14277 * shell.el (shell): When called interactively, offer to change the
14278 shell file name on remote hosts.
14279
14280 2011-03-13 Teodor Zlatanov <tzz@lifelogs.com>
14281
14282 * net/ldap.el (ldap-search-internal): Add `auth-source-search'
14283 integration for LDAP parameters. The host, base, user or binddn,
14284 and secret tokens can be specified in a netrc file, for instance.
14285 This is optional because an `auth-source' parameter must be
14286 specified in the search attributes.
14287
14288 2011-03-13 Juanma Barranquero <lekktu@gmail.com>
14289
14290 * help.el (describe-mode): Link to the mode's definition (bug#8185).
14291
14292 2011-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
14293
14294 * ebuff-menu.el (electric-buffer-menu-mode-map): Move initialization
14295 into declaration. Remove redundant and harmful binding.
14296
14297 2011-03-12 Eli Zaretskii <eliz@gnu.org>
14298
14299 * files.el (file-ownership-preserved-p): Pass `integer' as an
14300 explicit 2nd argument to `file-attributes'. If the file's owner
14301 is the Administrators group on Windows, and the current user is
14302 Administrator, consider that a match.
14303
14304 * server.el (server-ensure-safe-dir): Consider server directory
14305 safe on MS-Windows if its owner is the Administrators group while
14306 the current Emacs user is Administrator. Use `=' to compare
14307 numerical UIDs, since they could be integers or floats.
14308
14309 2011-03-12 Juanma Barranquero <lekktu@gmail.com>
14310
14311 * vc/vc-bzr.el (vc-bzr-state): Handle bzr 2.3.0 (follow-up to bug#8170).
14312
14313 2011-03-12 Michael Albinus <michael.albinus@gmx.de>
14314
14315 Sync with Tramp 2.2.1.
14316
14317 * net/tramp-sh.el (tramp-methods): Exchange "%k" marker with options.
14318
14319 * net/trampver.el: Update release number.
14320
14321 2011-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
14322
14323 * progmodes/compile.el (compilation--previous-directory): Fix up
14324 various nil/dead-marker mismatches (bug#8014).
14325 (compilation-directory-properties, compilation-error-properties):
14326 Don't call it at a position past the one we're about to change.
14327
14328 * emacs-lisp/bytecomp.el (byte-compile-make-obsolete-variable):
14329 Disable obsolescence warnings in the file that declares it.
14330
14331 2011-03-11 Ken Manheimer <ken.manheimer@gmail.com>
14332
14333 * allout-widgets.el (allout-widgets-tally):
14334 Initialize allout-widgets-tally as a hash table rather than nil to
14335 prevent mode-line redisplay warnings. Also, clarify the module
14336 description and fix a comment typo.
14337
14338 2011-03-11 Juanma Barranquero <lekktu@gmail.com>
14339
14340 * help-fns.el (describe-variable): Don't complete keywords.
14341 Suggested by Teodor Zlatanov <tzz@lifelogs.com>.
14342
14343 2011-03-10 Chong Yidong <cyd@stupidchicken.com>
14344
14345 * emacs-lisp/package.el (package-version-join): Impose a standard
14346 string representation for pre/alpha/beta version lists.
14347 (package-unpack-single): Standardize the directory name by passing
14348 it through package-version-join.
14349 (package-strip-rcs-id): Accept any version string that does not
14350 signal an error in version-to-list.
14351
14352 2011-03-10 Michael Albinus <michael.albinus@gmx.de>
14353
14354 * simple.el (delete-trailing-whitespace): Return nil for the
14355 benefit of `write-file-functions'.
14356
14357 2011-03-10 Glenn Morris <rgm@gnu.org>
14358
14359 * vc/vc-hg.el (vc-hg-pull, vc-hg-merge-branch): Use vc-hg-program.
14360
14361 * vc/vc-git.el (vc-git-program): New option.
14362 (vc-git-branches, vc-git-pull, vc-git-merge-branch, vc-git-command)
14363 (vc-git--call): Use it.
14364
14365 * eshell/esh-util.el (eshell-condition-case): Doc fix.
14366
14367 * cus-edit.el (Custom-newline): If no button at point, look
14368 for a subgroup button at start-of-line. (Bug#2298)
14369
14370 * mail/rmail.el (rmail-msgend, rmail-msgbeg): Doc fixes.
14371
14372 2011-03-10 Julien Danjou <julien@danjou.info>
14373
14374 * avoid.el (mouse-avoidance-ignore-p): Do not move the cursor if
14375 `cursor-type' is nil.
14376
14377 2011-03-09 Jay Belanger <jay.p.belanger@gmail.com>
14378
14379 * calc/calc.el (calc-mode-map): Don't bind "C-_" to `calc-missing-key'.
14380
14381 2011-03-09 Ken Manheimer <ken.manheimer@gmail.com>
14382
14383 * allout.el: Change so yank of distinctive-bullet items
14384 preserves the existing header prefix, rebulleting it if necessary,
14385 rather than replacing it. This is necessary for proper operation
14386 of cooperative addons like allout-widgets.
14387 (allout-make-topic-prefix, allout-rebullet-heading):
14388 Change SOLICIT arg to INSTEAD, and interpret additionally a string
14389 value as alternate bullet to be used, instead of prompting the user
14390 for a bullet character.
14391
14392 2011-03-09 Michael Albinus <michael.albinus@gmx.de>
14393
14394 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
14395 Do not use `tramp-file-name-port', because this returns also
14396 `tramp-default-port'.
14397
14398 2011-03-09 Deniz Dogan <deniz.a.m.dogan@gmail.com>
14399
14400 * net/rcirc.el (rcirc-handler-001): Remove useless
14401 with-rcirc-process-buffer.
14402 (rcirc-check-auth-status): Swap arguments to string-match.
14403
14404 2011-03-09 Glenn Morris <rgm@gnu.org>
14405
14406 * shell.el (shell-mode):
14407 Set comint-input-ring-size from HISTSIZE. (Bug#7889)
14408
14409 * progmodes/gdb-mi.el (gdb): Improve 2010-12-08 change.
14410 Check for GDBHISTFILE, HISTSIZE, etc. (Bug#7889)
14411
14412 2011-03-08 Chong Yidong <cyd@stupidchicken.com>
14413
14414 * emacs-lisp/package.el (package-refresh-contents)
14415 (package-menu-execute): Use condition-case-no-debug.
14416
14417 2011-03-08 Michael Albinus <michael.albinus@gmx.de>
14418
14419 * simple.el (shell-command-to-string): Use `process-file'.
14420
14421 * emacs-lisp/package.el (package-tar-file-info): Handle also
14422 remote files.
14423
14424 * emacs-lisp/package-x.el (package-upload-buffer-internal):
14425 Use `equal' for upload base check.
14426
14427 2011-03-08 Arni Magnusson <arnima@hafro.is> (tiny change)
14428
14429 * textmodes/texinfo.el (texinfo-environments):
14430 Add deftypecv, deftypeivar, deftypemethod, deftypeop, html. (Bug#2783)
14431
14432 2011-03-08 Glenn Morris <rgm@gnu.org>
14433
14434 * cus-start.el (cursor-in-non-selected-windows):
14435 Fix :set quoting oddness. (Bug#8192)
14436
14437 * font-lock.el (lisp-font-lock-keywords-1): Don't highlight `)'
14438 in some setf expressions. (Bug#2159)
14439
14440 2011-03-08 Chong Yidong <cyd@stupidchicken.com>
14441
14442 * custom.el (custom-available-themes): Return themes in
14443 alphabetical order.
14444
14445 See ChangeLog.15 for earlier changes.
14446
14447 ;; Local Variables:
14448 ;; coding: utf-8
14449 ;; End:
14450
14451 Copyright (C) 2011-2012 Free Software Foundation, Inc.
14452
14453 This file is part of GNU Emacs.
14454
14455 GNU Emacs is free software: you can redistribute it and/or modify
14456 it under the terms of the GNU General Public License as published by
14457 the Free Software Foundation, either version 3 of the License, or
14458 (at your option) any later version.
14459
14460 GNU Emacs is distributed in the hope that it will be useful,
14461 but WITHOUT ANY WARRANTY; without even the implied warranty of
14462 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14463 GNU General Public License for more details.
14464
14465 You should have received a copy of the GNU General Public License
14466 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.