* lisp/international/characters.el (standard-case-table): Set syntax of ?»
[bpt/emacs.git] / lisp / ChangeLog
1 2013-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
2
3 * international/characters.el (standard-case-table): Set syntax of ?»
4 and ?« to punctuation.
5
6 2013-06-16 Juanma Barranquero <lekktu@gmail.com>
7
8 * progmodes/prog-mode.el (prog--prettify-font-lock-compose-symbol):
9 Save relevant match data before calling `syntax-ppss' (bug#14595).
10
11 2013-06-15 Juri Linkov <juri@jurta.org>
12
13 * files-x.el (modify-file-local-variable-prop-line): Add local
14 variables to the end of the existing comment on the first line.
15 Use `file-auto-mode-skip' to skip interpreter magic line,
16 and also skip XML declaration.
17
18 2013-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
19
20 * startup.el (package--builtin-versions): New var.
21 (package-subdirectory-regexp): Remove.
22 (package--description-file): Hard code its value instead.
23
24 * emacs-lisp/package.el: Don't activate packages older than builtin.
25 (package-obsolete-list): Rename from package-obsolete-alist, and make
26 it into a simple list of package-desc.
27 (package-strip-version): Remove.
28 (package-built-in-p): Use package--builtin-versions.
29 (package-mark-obsolete): Simplify.
30 (package-process-define-package): Mark it obsolete if older than the
31 builtin version.
32 (package-handle-response): Use line-end-position.
33 (package-read-archive-contents, package--download-one-archive):
34 Simplify.
35 (package--add-to-archive-contents): Skip if older than the builtin or
36 installed version.
37 (package-menu-describe-package): Fix last change.
38 (package-list-unversioned): New var.
39 (package-menu--generate): Use it.
40
41 * emacs-lisp/autoload.el: Manage package--builtin-versions.
42 (autoload--insert-text, autoload--insert-cookie-text): New functions.
43 (autoload-builtin-package-versions): New variable.
44 (autoload-generate-file-autoloads): Use them.
45 Remove the list of autoloaded functions/macros from the
46 (autoload...) comments.
47
48 * Makefile.in (autoloads): Set autoload-builtin-package-versions.
49
50 2013-06-15 Eli Zaretskii <eliz@gnu.org>
51
52 * simple.el (line-move-partial): Don't jump to the next screen
53 line as soon as it becomes visible. Instead, continue enlarging
54 the vscroll until the portion of a tall screen line that's left on
55 display is about the height of the frame's default font.
56 (Bug#14567)
57
58 2013-06-15 Glenn Morris <rgm@gnu.org>
59
60 * vc/vc-dispatcher.el (vc-compilation-mode): Avoid making
61 compilation-error-regexp-alist void, or local while let-bound.
62
63 * progmodes/make-mode.el (makefile-mode-syntax-table):
64 Treat "=" as punctuation. (Bug#14614)
65
66 2013-06-15 Juanma Barranquero <lekktu@gmail.com>
67
68 * help-fns.el (describe-variable):
69 Add extra line for permanent-local variables.
70
71 2013-06-15 Simen Heggestøyl <simenheg@ifi.uio.no> (tiny change)
72
73 * progmodes/scheme.el (scheme-font-lock-keywords-2):
74 Add export, import, library. (Bug#9164)
75 (library): Set indent function.
76
77 2013-06-14 Glenn Morris <rgm@gnu.org>
78
79 * term/xterm.el (xterm--query):
80 Stop after first matching handler. (Bug#14615)
81
82 2013-06-14 Ivan Kanis <ivan@kanis.fr>
83
84 Add support for dired in saveplace.
85 * dired.el (dired-initial-position-hook): New variable.
86 (dired-initial-position): Call hook to place cursor position.
87 * saveplace.el (save-place-to-alist): Add dired position.
88 (save-place-dired-hook): New function.
89
90 2013-06-14 Stefan Monnier <monnier@iro.umontreal.ca>
91
92 * subr.el (eval-after-load, set-temporary-overlay-map): Use indirection
93 through a symbol rather than letrec.
94
95 * emacs-lisp/package.el: Don't recompute dir. Use pkg-descs more.
96 (package-desc): Add `dir' field.
97 (package-desc-full-name): New function.
98 (package-load-descriptor): Combine the two arguments. Don't use `load'.
99 (package-maybe-load-descriptor): Remove.
100 (package-load-all-descriptors): Just call package-load-descriptor.
101 (package--disabled-p): New function.
102 (package-desc-vers, package-desc-doc): Remove aliases.
103 (package--dir): Remove function.
104 (package-activate): Check if a package is disabled.
105 (package-process-define-package): New function, extracted from
106 define-package.
107 (define-package): Turn into a place holder.
108 (package-unpack-single, package-tar-file-info):
109 Use package--description-file.
110 (package-compute-transaction): Use package--disabled-p.
111 (package-download-transaction): Don't call
112 package-maybe-load-descriptor since they're all loaded anyway.
113 (package-install): Change argument to be a pkg-desc.
114 (package-delete): Use a single pkg-desc argument.
115 (describe-package-1): Use package-desc-dir instead of package--dir.
116 Use package-desc property instead of package-symbol.
117 (package-install-button-action): Adjust accordingly.
118 (package--push): Rewrite.
119 (package-menu--print-info): Adjust accordingly. Change the ID format
120 to be a pkg-desc.
121 (package-menu-describe-package, package-menu-get-status)
122 (package-menu--find-upgrades, package-menu-mark-upgrades)
123 (package-menu-execute, package-menu--name-predicate):
124 Adjust accordingly.
125 * startup.el (package--description-file): New function.
126 (command-line): Use it.
127 * emacs-lisp/package-x.el (package-upload-buffer-internal):
128 Use package-desc-version.
129
130 * emacs-lisp/bytecomp.el (byte-compile-force-lexical-warnings): New var.
131 (byte-compile-preprocess): Use it.
132 (byte-compile-file-form-defalias): Try a bit harder to use macros we
133 can't quite recognize.
134 (byte-compile-add-to-list): Remove.
135 * emacs-lisp/cconv.el (cconv-warnings-only): New function.
136 (cconv-closure-convert): Add assertion.
137
138 * emacs-lisp/map-ynp.el: Use lexical-binding.
139 (map-y-or-n-p): Remove unused vars `tail' and `object'.
140 Factor out some repeated code.
141
142 2013-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
143
144 * subr.el (with-eval-after-load): New macro.
145 (eval-after-load): Allow form to be a function.
146 take advantage of lexical-binding.
147 (do-after-load-evaluation): Use dolist and adjust to new format.
148 * simple.el (bad-packages-alist): Use dolist and with-eval-after-load.
149
150 2013-06-13 Juri Linkov <juri@jurta.org>
151
152 * replace.el (perform-replace): Display "symbol " and other search
153 modes from `isearch-message-prefix' in the *Help* buffer.
154
155 * isearch.el (isearch-query-replace): Add " symbol" and other
156 possible search modes from `isearch-message-prefix' to the prompt.
157 (isearch-occur): Use `with-isearch-suspended' to not exit Isearch
158 when reading a regexp to collect.
159
160 2013-06-13 Juri Linkov <juri@jurta.org>
161
162 * isearch.el (word-search-regexp): Match whitespace if the search
163 string begins or ends in whitespace. The LAX arg is applied to
164 both ends of the search string. Use `regexp-quote' and explicit
165 \< and \> instead of \b. Use \` and \' instead of ^ and $.
166 (isearch-symbol-regexp): Sync with `word-search-regexp' where word
167 boundaries are replaced with symbol boundaries, and characters
168 between symbols match non-word non-symbol syntax. (Bug#14602)
169
170 2013-06-13 Juri Linkov <juri@jurta.org>
171
172 * isearch.el (isearch-del-char): Don't exceed the length of
173 `isearch-string' by the prefix arg. (Bug#14563)
174
175 2013-06-13 Juri Linkov <juri@jurta.org>
176
177 * isearch.el (isearch-yank-word, isearch-yank-line)
178 (isearch-char-by-name, isearch-quote-char)
179 (isearch-printing-char, isearch-process-search-char):
180 Add optional count prefix arg. (Bug#14563)
181
182 * international/isearch-x.el
183 (isearch-process-search-multibyte-characters):
184 Add optional count prefix arg.
185
186 2013-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
187
188 * subr.el (internal-push-keymap, internal-pop-keymap): New functions.
189 (set-temporary-overlay-map): Use them (bug#14095); and take advantage of
190 lexical-binding.
191
192 2013-06-13 Vitalie Spinu <spinuvit@gmail.com>
193
194 * subr.el (set-temporary-overlay-map): Add on-exit argument.
195
196 2013-06-13 Glenn Morris <rgm@gnu.org>
197
198 * startup.el (tty-handle-args):
199 Don't just discard "--" and anything after. (Bug#14608)
200
201 * emacs-lisp/lisp.el (forward-sexp, backward-sexp): Doc fixes.
202
203 2013-06-13 Michael Albinus <michael.albinus@gmx.de>
204
205 Implement changes in Secret Service API. Make it backward compatible.
206 * net/secrets.el (secrets-struct-secret-content-type): New defonst.
207 (secrets-create-item): Use it. Prefix properties with interface.
208
209 2013-06-13 Michael Hoffman <9qobl2n02@sneakemail.com> (tiny change)
210
211 * term.el (term-suppress-hard-newline): New option. (Bug#12017)
212 (term-emulate-terminal): Respect term-suppress-hard-newline.
213
214 2013-06-13 E Sabof <esabof@gmail.com> (tiny change)
215
216 * image-dired.el (image-dired-dired-toggle-marked-thumbs):
217 Only remove a `thumb-file' overlay. (Bug#14548)
218
219 2013-06-12 Grégoire Jadi <daimrod@gmail.com>
220
221 * mail/reporter.el (reporter-submit-bug-report):
222 Handle missing package-name. (Bug#14600)
223
224 2013-06-12 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
225
226 * textmodes/reftex-cite.el (reftex-cite-regexp-hist)
227 (reftex-citation-prompt, reftex-default-bibliography)
228 (reftex-bib-or-thebib, reftex-get-bibfile-list)
229 (reftex-pop-to-bibtex-entry, reftex-extract-bib-entries)
230 (reftex-bib-sort-author, reftex-bib-sort-year)
231 (reftex-bib-sort-year-reverse, reftex-get-crossref-alist)
232 (reftex-extract-bib-entries-from-thebibliography)
233 (reftex-get-bibkey-default, reftex-get-bib-names)
234 (reftex-parse-bibtex-entry, reftex-get-bib-field)
235 (reftex-format-bib-entry, reftex-parse-bibitem)
236 (reftex-format-bibitem, reftex-do-citation)
237 (reftex-figure-out-cite-format, reftex-offer-bib-menu)
238 (reftex-restrict-bib-matches, reftex-extract-bib-file)
239 (reftex-insert-bib-matches, reftex-format-citation)
240 (reftex-make-cite-echo-string, reftex-bibtex-selection-callback)
241 (reftex-create-bibtex-file): Add docstrings, mostly by converting
242 existing comments into docstrings.
243
244 2013-06-12 Xue Fuqiao <xfq.free@gmail.com>
245
246 * ibuf-ext.el (ibuffer-mark-help-buffers): Doc fix.
247
248 2013-06-12 Andreas Schwab <schwab@suse.de>
249
250 * international/mule.el (auto-coding-alist): Use utf-8-emacs-unix
251 for auto-save files.
252
253 2013-06-12 Glenn Morris <rgm@gnu.org>
254
255 * ido.el (ido-delete-ignored-files): Remove.
256 (ido-wide-find-dirs-or-files, ido-make-file-list-1):
257 Go back to calling ido-ignore-item-p directly.
258
259 2013-06-12 Eyal Lotem <eyal.lotem@gmail.com> (tiny change)
260
261 * ido.el (ido-wide-find-dirs-or-files): Respect ido-case-fold.
262
263 * ido.el (ido-delete-ignored-files): New function,
264 split from ido-make-file-list-1.
265 (ido-wide-find-dirs-or-files): Maybe ignore files. (Bug#13003)
266 (ido-make-file-list-1): Use ido-delete-ignored-files.
267
268 2013-06-12 Leo Liu <sdl.web@gmail.com>
269
270 * progmodes/octave.el (inferior-octave-startup)
271 (inferior-octave-completion-table)
272 (inferior-octave-track-window-width-change)
273 (octave-eldoc-function-signatures, octave-help)
274 (octave-find-definition): Use single quoted strings.
275 (inferior-octave-startup-args): Change default value.
276 (inferior-octave-startup): Do not hard code "-i" and
277 "--no-line-editing".
278 (inferior-octave-resync-dirs): Add optional arg NOERROR.
279 (inferior-octave-directory-tracker): Use it.
280 (octave-goto-function-definition): Robustify.
281 (octave-help): Support highlighting operators in 'See also'.
282 (octave-find-definition): Find subfunctions only in Octave mode.
283
284 2013-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
285
286 * help-fns.el (help-fns--compiler-macro): If the handler function is
287 named, then put a link to it.
288 * help-mode.el (help-function-cmacro): Adjust regexp for cl-lib names.
289 * emacs-lisp/cl-macs.el (cl--compiler-macro-typep): New function.
290 (cl-typep): Use it.
291 (cl-eval-when): Simplify debug spec.
292 (cl-define-compiler-macro): Use eval-and-compile. Give a name to the
293 compiler-macro function instead of setting `compiler-macro-file'.
294
295 2013-06-12 Xue Fuqiao <xfq.free@gmail.com>
296
297 * vc/vc-cvs.el (vc-cvs-stay-local): Doc fix.
298 * vc/vc-hooks.el (vc-stay-local): Doc fix.
299
300 2013-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
301 Daniel Hackney <dan@haxney.org>
302
303 First part of Daniel Hackney's patch to package.el.
304 * emacs-lisp/package.el: Use defstruct.
305 (package-desc): New, main struct.
306 (package--bi-desc, package--ac-desc): New structs, used to describe the
307 format in external files.
308 (package-desc-vers): Replace with package-desc-version accessor.
309 (package-desc-doc): Replace with package-desc-summary accessor.
310 (package-activate-1): Remove `package' arg since the pkg-vec now
311 includes the name.
312 (define-package): Use package-desc-from-define.
313 (package-unpack-single): Change file-name arg to be a symbol.
314 (package--add-to-archive-contents): Use package-desc-create and new
315 accessor functions to package--ac-desc.
316 (package-buffer-info, package-tar-file-info): Return a package-desc.
317 (package-install-from-buffer): Remove `type' argument. Change pkg-info
318 arg to be a package-desc.
319 (package-install-file): Adjust accordingly. Use \' to match EOS.
320 (package--from-builtin): New function.
321 (describe-package-1, package-menu--generate): Use it.
322 (package--make-autoloads-and-compile): Change name arg to be a symbol.
323 (package-generate-autoloads): Idem and return the name of the file.
324 * emacs-lisp/package-x.el (package-upload-buffer-internal):
325 Change pkg-info arg to be a package-desc.
326 Use package-make-ac-desc.
327 (package-upload-file): Use \' to match EOS.
328 * finder.el (finder-compile-keywords): Use package-make-builtin.
329
330 2013-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
331
332 * vc/vc.el (vc-deduce-fileset): Change error message.
333 (vc-read-backend): New function.
334 (vc-next-action): Use it.
335
336 * subr.el (function-arity): Remove (mistakenly added) (bug#14590).
337
338 * progmodes/prolog.el (prolog-make-keywords-regexp): Remove.
339 (prolog-font-lock-keywords): Use regexp-opt instead.
340 Don't manually highlight strings.
341 (prolog-mode-variables): Simplify comment-start-skip.
342 (prolog-consult-compile): Use display-buffer. Remove unused old-filter.
343
344 * emacs-lisp/generic.el (generic--normalise-comments)
345 (generic-set-comment-syntax, generic-set-comment-vars): New functions.
346 (generic-mode-set-comments): Use them.
347 (generic-bracket-support): Use setq-local.
348 (generic-make-keywords-list): Declare obsolete.
349
350 2013-06-11 Glenn Morris <rgm@gnu.org>
351
352 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
353 Prettify after setting font-lock-defaults. (Bug#14574)
354
355 2013-06-11 Juanma Barranquero <lekktu@gmail.com>
356
357 * replace.el (query-replace, occur-read-regexp-defaults-function)
358 (replace-search):
359 * subr.el (declare-function, number-sequence, local-set-key)
360 (substitute-key-definition, locate-user-emacs-file)
361 (with-silent-modifications, split-string, eval-after-load):
362 Fix typos, remove unneeded backslashes and reflow some docstrings.
363
364 2013-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
365
366 * international/mule-conf.el (file-coding-system-alist): Use utf-8 as
367 default for Elisp files.
368
369 2013-06-11 Glenn Morris <rgm@gnu.org>
370
371 * vc/log-view.el (log-view-mode-map): Inherit from special-mode-map,
372 although define-derived-mode was doing this anyway. (Bug#14583)
373
374 2013-06-10 Juanma Barranquero <lekktu@gmail.com>
375
376 * allout.el (allout-encryption-plaintext-sanitization-regexps):
377 Fix make-variable-buffer-local call to refer to the correct variable.
378
379 2013-06-10 Aidan Gauland <aidalgol@amuri.net>
380
381 * eshell/em-term.el (eshell-visual-commands)
382 (eshell-visual-subcommands, eshell-visual-options):
383 Add summary line to docstrings. Add cross-references.
384
385 2013-06-10 Glenn Morris <rgm@gnu.org>
386
387 * epa.el (epa-read-file-name): New function. (Bug#14510)
388 (epa-decrypt-file): Make plain-file optional. Use epa-read-file-name.
389
390 2013-06-09 Aidan Gauland <aidalgol@amuri.net>
391
392 * eshell/em-term.el (eshell-visual-command-p): Fix bug that caused
393 output redirection to be ignored with visual commands.
394
395 2013-06-09 Aidan Gauland <aidalgol@amuri.net>
396
397 * eshell/em-term.el (eshell-visual-command-p): New function.
398 (eshell-term-initialize): Move long lambda to separate function
399 eshell-visual-command-p.
400 * eshell/em-dirs.el (eshell-dirs-initialise):
401 * eshell/em-script.el (eshell-script-initialize):
402 Add missing #' to lambda.
403
404 2013-06-08 Leo Liu <sdl.web@gmail.com>
405
406 * progmodes/octave.el (octave-add-log-current-defun): New function.
407 (octave-mode): Set add-log-current-defun-function.
408 (octave-goto-function-definition): Do not move point if not found.
409 (octave-find-definition): Enhance to try subfunctions first.
410
411 2013-06-08 Glenn Morris <rgm@gnu.org>
412
413 * emacs-lisp/bytecomp.el (byte-compile-char-before)
414 (byte-compile-backward-char, byte-compile-backward-word):
415 Improve previous change, to handle non-explicit nil.
416
417 2013-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
418
419 * emacs-lisp/smie.el: Improve show-paren-mode behavior.
420 (smie--opener/closer-at-point): New function.
421 (smie--matching-block-data): Use it. Don't match from right after an
422 opener or right before a closer. Obey smie-blink-matching-inners.
423 Don't signal a mismatch for repeated inners like "switch..case..case".
424
425 2013-06-07 Leo Liu <sdl.web@gmail.com>
426
427 * progmodes/octave.el (octave-mode): Set comment-use-global-state
428 to t. (Bug#14303)
429 (octave-function-header-regexp): Fix. (Bug#14570)
430 (octave-help-mode-finish-hook, octave-help-mode-finish):
431 Remove. Just use temp-buffer-show-hook.
432
433 * newcomment.el (comment-search-backward): Revert last change.
434 (Bug#14434)
435
436 * emacs-lisp/smie.el (smie--matching-block-data): Minor simplification.
437
438 2013-06-07 Eli Zaretskii <eliz@gnu.org>
439
440 * Makefile.in (TAGS TAGS-LISP): Pass the (long) list of *.el files
441 through xargs, to avoid failure due to MS-Windows limitations on
442 command-line length.
443
444 2013-06-06 Glenn Morris <rgm@gnu.org>
445
446 * font-lock.el (lisp-font-lock-keywords-2):
447 Treat user-error like error.
448
449 * emacs-lisp/bytecomp.el (byte-compile-char-before)
450 (byte-compile-backward-char, byte-compile-backward-word):
451 Handle explicit nil arguments. (Bug#14565)
452
453 2013-06-05 Alan Mackenzie <acm@muc.de>
454
455 * isearch.el (isearch-allow-prefix): New user option.
456 (isearch-other-meta-char): Don't exit isearch when a prefix
457 argument is typed whilst `isearch-allow-prefix' is non-nil.
458 (Bug#9706)
459
460 2013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
461
462 * autorevert.el (auto-revert-notify-handler): Use memq.
463 Hide assertion failure.
464
465 * skeleton.el: Use cl-lib.
466 (skeleton-further-elements): Use defvar-local.
467 (skeleton-insert): Use cl-progv.
468
469 2013-06-05 Teodor Zlatanov <tzz@lifelogs.com>
470
471 * progmodes/prog-mode.el (prog-prettify-symbols)
472 (prog-prettify-install): Update docstrings.
473
474 2013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
475
476 * simple.el: Move all the prog-mode code to prog-mode.el.
477 * progmodes/prog-mode.el: New file.
478 * loadup.el: Add prog-mode.el.
479
480 2013-06-05 Teodor Zlatanov <tzz@lifelogs.com>
481
482 * simple.el (prog-prettify-symbols): Add version.
483 (prog-prettify-install): Add convenience function to prettify symbols.
484
485 * progmodes/perl-mode.el (perl--augmented-font-lock-keywords)
486 (perl--augmented-font-lock-keywords-1)
487 (perl--augmented-font-lock-keywords-2, perl-mode): Remove unneeded
488 variables and use it.
489
490 * progmodes/cfengine.el (cfengine3--augmented-font-lock-keywords)
491 (cfengine3-mode): Remove unneeded variable and use it.
492
493 * emacs-lisp/lisp-mode.el (lisp--augmented-font-lock-keywords)
494 (lisp--augmented-font-lock-keywords-1)
495 (lisp--augmented-font-lock-keywords-2, lisp-mode-variables):
496 Remove unneeded variables and use it.
497
498 2013-06-05 João Távora <joaotavora@gmail.com>
499
500 * net/tls.el (open-tls-stream): Remove unneeded buffer contents up
501 to point when opening the connection. (Bug#14380)
502
503 2013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
504
505 * subr.el (load-history-regexp, load-history-filename-element)
506 (eval-after-load, after-load-functions, do-after-load-evaluation)
507 (eval-next-after-load, display-delayed-warnings)
508 (collapse-delayed-warnings, delayed-warnings-hook): Move after the
509 definition of save-match-data.
510 (overriding-local-map): Remove accidental obsolescence declaration.
511
512 * emacs-lisp/edebug.el (edebug-result): Move before first use.
513
514 2013-06-05 Teodor Zlatanov <tzz@lifelogs.com>
515
516 Generalize symbol prettify support to prog-mode and implement it
517 for perl-mode, cfengine3-mode, and emacs-lisp-mode.
518 * simple.el (prog-prettify-symbols-alist, prog-prettify-symbols)
519 (prog--prettify-font-lock-compose-symbol)
520 (prog-prettify-font-lock-symbols-keywords): New variables and
521 functions to support symbol prettification.
522 * emacs-lisp/lisp-mode.el (lisp--augmented-font-lock-keywords)
523 (lisp--augmented-font-lock-keywords-1)
524 (lisp--augmented-font-lock-keywords-2, lisp-mode-variables)
525 (lisp--prettify-symbols-alist): Implement prettify of lambda.
526 * progmodes/cfengine.el (cfengine3--augmented-font-lock-keywords)
527 (cfengine3--prettify-symbols-alist, cfengine3-mode):
528 Implement prettify of -> => :: strings.
529 * progmodes/perl-mode.el (perl-prettify-symbols)
530 (perl--font-lock-compose-symbol)
531 (perl--font-lock-symbols-keywords): Move to prog-mode.
532 (perl--prettify-symbols-alist): Prettify -> => :: strings.
533 (perl-font-lock-keywords-1)
534 (perl-font-lock-keywords-2): Remove explicit prettify support.
535 (perl--augmented-font-lock-keywords)
536 (perl--augmented-font-lock-keywords-1)
537 (perl--augmented-font-lock-keywords-2, perl-mode):
538 Implement prettify support.
539
540 2013-06-05 Leo Liu <sdl.web@gmail.com>
541
542 Re-implement smie matching block highlight using
543 show-paren-data-function. (Bug#14395)
544 * emacs-lisp/smie.el (smie-matching-block-highlight)
545 (smie--highlight-matching-block-overlay)
546 (smie--highlight-matching-block-lastpos)
547 (smie-highlight-matching-block)
548 (smie-highlight-matching-block-mode): Remove.
549 (smie--matching-block-data-cache): New variable.
550 (smie--matching-block-data): New function.
551 (smie-setup): Use smie--matching-block-data for
552 show-paren-data-function.
553
554 * progmodes/octave.el (octave-mode-menu): Fix.
555 (octave-find-definition): Skip garbage lines.
556
557 2013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
558
559 Fix compilation error with simultaneous dynamic+lexical scoping.
560 Add warning when a defvar appears after the first let-binding.
561 * emacs-lisp/bytecomp.el (byte-compile-lexical-variables): New var.
562 (byte-compile-close-variables): Initialize it.
563 (byte-compile--declare-var): New function.
564 (byte-compile-file-form-defvar)
565 (byte-compile-file-form-define-abbrev-table)
566 (byte-compile-file-form-custom-declare-variable): Use it.
567 (byte-compile-make-lambda-lexenv): Change the argument. Simplify.
568 (byte-compile-lambda): Share call to byte-compile-arglist-vars.
569 (byte-compile-bind): Handle dynamic bindings that shadow
570 lexical bindings.
571 (byte-compile-unbind): Make arg non-optional.
572 (byte-compile-let): Simplify.
573 * emacs-lisp/cconv.el (byte-compile-lexical-variables): Declare var.
574 (cconv--analyse-function, cconv-analyse-form): Populate it.
575 Protect byte-compile-bound-variables to limit the scope of defvars.
576 (cconv-analyse-form): Add missing rule for (defvar <foo>).
577 Remove unneeded rule for `declare'.
578
579 * emacs-lisp/cl-macs.el (cl--compiler-macro-adjoin): Use macroexp-let2
580 so as to avoid depending on cl-adjoin at run-time.
581 * emacs-lisp/cl-lib.el (cl-pushnew): Use backquotes.
582
583 * emacs-lisp/macroexp.el (macroexp--compiling-p): New function.
584 (macroexp--warn-and-return): Use it.
585
586 2013-06-05 Leo Liu <sdl.web@gmail.com>
587
588 * eshell/esh-mode.el (eshell-mode): Fix key bindings.
589
590 2013-06-04 Leo Liu <sdl.web@gmail.com>
591
592 * progmodes/compile.el (compile-goto-error): Add optional arg NOMSG.
593 (compilation-auto-jump): Suppress the "Mark set" message to give
594 way to exit message.
595
596 2013-06-04 Alan Mackenzie <acm@muc.de>
597
598 Remove faulty optimisation from indentation calculation.
599 * progmodes/cc-engine.el (c-guess-basic-syntax): Don't calculate
600 search limit based on 2000 characters back from indent-point.
601
602 2013-06-03 Tassilo Horn <tsdh@gnu.org>
603
604 * eshell/em-term.el (cl-lib): Require `cl-lib'.
605
606 2013-06-03 Stefan Monnier <monnier@iro.umontreal.ca>
607
608 * emacs-lisp/lisp.el: Use lexical-binding.
609 (lisp--local-variables-1, lisp--local-variables): New functions.
610 (lisp--local-variables-completion-table): New var.
611 (lisp-completion-at-point): Use it complete let-bound vars.
612
613 * emacs-lisp/lisp-mode.el (eval-sexp-add-defvars): Expand macros
614 eagerly (bug#14422).
615
616 2013-06-03 Michael Albinus <michael.albinus@gmx.de>
617
618 * autorevert.el (auto-revert-notify-enabled)
619 (auto-revert-notify-rm-watch, auto-revert-notify-add-watch)
620 (auto-revert-notify-event-p, auto-revert-notify-event-file-name)
621 (auto-revert-notify-handler): Handle also gfilenotify.
622
623 * subr.el (file-notify-handle-event): New defun. Replacing ...
624 (inotify-event-p, inotify-handle-event, w32notify-handle-event):
625 Remove.
626
627 2013-06-03 Juri Linkov <juri@jurta.org>
628
629 * bindings.el (search-map): Bind `highlight-symbol-at-point' to
630 `M-s h .'. (Bug#14427)
631
632 * hi-lock.el (highlight-symbol-at-point): New alias for the new
633 command `hi-lock-face-symbol-at-point'.
634 (hi-lock-face-symbol-at-point): New command.
635 (hi-lock-map): Bind `highlight-symbol-at-point' to `C-x w .'.
636 (hi-lock-menu): Add `highlight-symbol-at-point'.
637 (hi-lock-mode): Doc fix.
638
639 * isearch.el (isearch-forward-symbol-at-point): New command.
640 (search-map): Bind `isearch-forward-symbol-at-point' to `M-s .'.
641 (isearch-highlight-regexp): Add a regexp which matches
642 words/symbols for word/symbol mode.
643
644 * subr.el (find-tag-default-bounds): New function with the body
645 mostly moved from `find-tag-default'.
646 (find-tag-default): Move most code to `find-tag-default-bounds',
647 call it and apply `buffer-substring-no-properties' afterwards.
648
649 2013-06-03 Tassilo Horn <tsdh@gnu.org>
650
651 * eshell/em-term.el (eshell-term-initialize):
652 Use `cl-intersection' rather than `intersection'.
653
654 2013-06-02 Xue Fuqiao <xfq.free@gmail.com>
655
656 * vc/log-view.el: Doc fix.
657 (log-view-mode-map): Copy keymap from `special-mode-map'.
658
659 2013-06-02 Eric Ludlam <zappo@gnu.org>
660
661 * emacs-lisp/eieio.el (eieio--defalias, eieio-hook)
662 (eieio-error-unsupported-class-tags, eieio-skip-typecheck)
663 (eieio-optimize-primary-methods-flag, eieio-initializing-object)
664 (eieio-unbound, eieio-default-superclass)
665 (eieio--define-field-accessors, method-static, method-before)
666 (method-primary, method-after, method-num-lists)
667 (method-generic-before, method-generic-primary)
668 (method-generic-after, method-num-slots)
669 (eieio-specialized-key-to-generic-key)
670 (eieio--check-type, class-v, class-p)
671 (eieio-class-name, define-obsolete-function-alias)
672 (eieio-class-parents-fast, eieio-class-children-fast)
673 (same-class-fast-p, class-constructor, generic-p)
674 (generic-primary-only-p, generic-primary-only-one-p)
675 (class-option-assoc, class-option, eieio-object-p)
676 (class-abstract-p, class-method-invocation-order)
677 (eieio-defclass-autoload-map, eieio-defclass-autoload)
678 (eieio-class-un-autoload, eieio-defclass)
679 (eieio-eval-default-p, eieio-perform-slot-validation-for-default)
680 (eieio-add-new-slot, eieio-copy-parents-into-subclass)
681 (eieio--defgeneric-init-form, eieio-defgeneric-form)
682 (eieio-defgeneric-reset-generic-form)
683 (eieio-defgeneric-form-primary-only)
684 (eieio-defgeneric-reset-generic-form-primary-only)
685 (eieio-defgeneric-form-primary-only-one)
686 (eieio-defgeneric-reset-generic-form-primary-only-one)
687 (eieio-unbind-method-implementations)
688 (eieio--defmethod, eieio--typep)
689 (eieio-perform-slot-validation, eieio-validate-slot-value)
690 (eieio-validate-class-slot-value, eieio-barf-if-slot-unbound)
691 (eieio-oref, eieio-oref-default, eieio-default-eval-maybe)
692 (eieio-oset, eieio-oset-default, eieio-slot-originating-class-p)
693 (eieio-slot-name-index, eieio-class-slot-name-index)
694 (eieio-set-defaults, eieio-initarg-to-attribute)
695 (eieio-attribute-to-initarg, eieio-c3-candidate)
696 (eieio-c3-merge-lists, eieio-class-precedence-c3)
697 (eieio-class-precedence-dfs, eieio-class-precedence-bfs)
698 (eieio-class-precedence-list, eieio-generic-call-methodname)
699 (eieio-generic-call-arglst, eieio-generic-call-key)
700 (eieio-generic-call-next-method-list)
701 (eieio-pre-method-execution-functions, eieio-generic-call)
702 (eieio-generic-call-primary-only, eieiomt-method-list)
703 (eieiomt-optimizing-obarray, eieiomt-install)
704 (eieiomt-add, eieiomt-next, eieiomt-sym-optimize)
705 (eieio-generic-form, eieio-defmethod, make-obsolete)
706 (eieio-defgeneric, make-obsolete): Move to eieio-core.el
707 (defclass): Remove `eval-and-compile' from macro.
708 (call-next-method, shared-initialize): Instead of using
709 `scoped-class' variable, use new eieio--scoped-class, and
710 eieio--with-scoped-class.
711 (initialize-instance): Rename local variable 'scoped-class' to
712 'this-class' to remove ambiguitity from old global.
713
714 * emacs-lisp/eieio-core.el: New file. Derived from key parts of
715 eieio.el.
716 (eieio--scoped-class-stack): New variable
717 (eieio--scoped-class): New fcn
718 (eieio--with-scoped-class): New scoping macro.
719 (eieio-defclass): Use pushnew instead of add-to-list.
720 (eieio-defgeneric-form-primary-only-one, eieio-oset-default)
721 (eieio-slot-name-index, eieio-set-defaults, eieio-generic-call)
722 (eieio-generic-call-primary-only, eieiomt-add): Instead of using
723 `scoped-class' variable, use new eieio--scoped-class, and
724 eieio--with-scoped-class.
725
726 * emacs-lisp/eieio-base.el (cl-lib): Require during compile.
727
728 2013-06-02 Tassilo Horn <tsdh@gnu.org>
729
730 * eshell/esh-ext.el (eshell-external-command): Pass args to
731 `eshell-find-interpreter'.
732 (eshell-find-interpreter): Add new second parameter ARGS.
733
734 * eshell/em-script.el (eshell-script-initialize): Add second arg
735 to the function added as MATCH to `eshell-interpreter-alist'.
736
737 * eshell/em-dirs.el (eshell-dirs-initialize): Add second arg to
738 the function added as MATCH to `eshell-interpreter-alist'.
739
740 * eshell/em-term.el (eshell-visual-subcommands): New defcustom.
741 (eshell-visual-options): New defcustom.
742 (eshell-escape-control-x): Adapt docstring.
743 (eshell-term-initialize): Test `eshell-visual-subcommands' and
744 `eshell-visual-options' in addition to `eshell-visual-commands'.
745 (eshell-exec-visual): Pass args to `eshell-find-interpreter'.
746
747 2013-06-01 Fabián Ezequiel Gallina <fgallina@gnu.org>
748
749 * progmodes/python.el (python-indent-block-enders): Add break,
750 continue and raise keywords.
751
752 2013-06-01 Glenn Morris <rgm@gnu.org>
753
754 * pcmpl-gnu.el (pcomplete/tar): Check obsolete variable is bound.
755
756 Plain (f)boundp silences compilation warnings since Emacs 22.1.
757 * progmodes/cc-cmds.el (delete-forward-p):
758 * progmodes/cc-defs.el (buffer-syntactic-context-depth):
759 * progmodes/cc-engine.el (buffer-syntactic-context):
760 * progmodes/cc-fonts.el (face-property-instance):
761 * progmodes/cc-mode.el (set-keymap-parents):
762 * progmodes/cc-vars.el (get-char-table): No need for cc-bytecomp-defun.
763 * progmodes/cc-defs.el (c-set-region-active, c-beginning-of-defun-1)
764 * progmodes/cc-mode.el (c-make-inherited-keymap): Use plain fboundp.
765 * progmodes/cc-defs.el (zmacs-region-stays, zmacs-regions)
766 (lookup-syntax-properties): Remove unecessary cc-bytecomp-defvar.
767
768 * progmodes/cc-vars.el (other): Emacs has this widget since
769 at least 21.1, so don't (re)define it.
770
771 * eshell/em-cmpl.el (eshell-cmpl-initialize):
772 Replace the obsolete alias pcomplete-arg-quote-list.
773
774 2013-06-01 Leo Liu <sdl.web@gmail.com>
775
776 * progmodes/octave.el (octave-mode-syntax-table): Give `.'
777 punctuation syntax.
778 (inferior-octave-minimal-columns)
779 (inferior-octave-last-column-width): New variables.
780 (inferior-octave-track-window-width-change): New function.
781 (inferior-octave-mode): Adjust column width so that Octave output,
782 for example from 'ls', can fit into the window nicely.
783
784 2013-05-31 Dmitry Gutov <dgutov@yandex.ru>
785
786 * progmodes/ruby-mode.el (ruby-syntax-expansion-allowed-p):
787 Highlight expansions inside regexp literals.
788
789 2013-05-31 Glenn Morris <rgm@gnu.org>
790
791 * obsolete/sym-comp.el (symbol-complete):
792 Replace obsolete completion-annotate-function.
793
794 * progmodes/cc-vars.el (c-make-macro-with-semi-re): Silence compiler.
795
796 2013-05-31 Dmitry Gutov <dgutov@yandex.ru>
797
798 * progmodes/ruby-mode.el (ruby-syntax-expansion-allowed-p):
799 New function, checks if point is inside a literal that allows
800 expression expansion.
801 (ruby-syntax-propertize-expansion): Use it.
802 (ruby-syntax-propertize-function): Bind `case-fold-search' to nil
803 around the body.
804
805 2013-05-30 Juri Linkov <juri@jurta.org>
806
807 * isearch.el (isearch-mode-map): Bind `isearch-toggle-invisible'
808 to "\M-si".
809 (isearch-invisible): New variable.
810 (isearch-forward): Doc fix.
811 (isearch-mode): Set `isearch-invisible'
812 to the value of `search-invisible'.
813 (isearch-toggle-case-fold): Doc fix.
814 (isearch-toggle-invisible): New command.
815 (isearch-query-replace): Let-bind `search-invisible'
816 to the value of `isearch-invisible'.
817 (isearch-search): Use `isearch-invisible' instead of
818 `search-invisible'. Let-bind `search-invisible'
819 to the value of `isearch-invisible'. (Bug#11378)
820
821 2013-05-30 Juri Linkov <juri@jurta.org>
822
823 * replace.el (perform-replace): Avoid `isearch-range-invisible'
824 call when `query-flag' is nil and `search-invisible' is non-nil.
825 (Bug#11746)
826
827 2013-05-30 Glenn Morris <rgm@gnu.org>
828
829 * progmodes/gdb-mi.el (gdb-wait-for-pending): Fix typo.
830
831 * progmodes/cc-bytecomp.el (cc-bytecomp-noruntime-functions): New.
832 (cc-require): Suppress spurious "noruntime" warnings.
833 (cc-require-when-compile): Use fboundp, for sake of compiler.
834
835 * progmodes/cc-mode.el: Move load of cc-vars before that of
836 cc-langs (which in turn loads cc-vars), to quieten compiler.
837
838 2013-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
839
840 * paren.el: Simplify the code.
841 (show-paren-mode): Always start the timer.
842 (show-paren--idle-timer): Rename from show-paren-idle-timer.
843 (show-paren--overlay, show-paren--overlay-1): Rename from
844 show-paren-overlay and show-paren-overlay-1, and initialize to an
845 overlay rather than to nil.
846 (show-paren-function): Misc cleanup and simplifications.
847
848 2013-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
849
850 * paren.el (show-paren-data-function): New hook.
851 (show-paren--default): New function, extracted from show-paren-function.
852 (show-paren-function): Use show-paren-data-function.
853
854 2013-05-30 Glenn Morris <rgm@gnu.org>
855
856 * ielm.el (ielm-map, ielm-complete-symbol):
857 Use completion-at-point rather than obsolete functions.
858 (inferior-emacs-lisp-mode): Doc fix.
859 Set completion-at-point-functions, rather than
860 comint-dynamic-complete-functions.
861
862 * eshell/em-cmpl.el (eshell-complete-lisp-symbol): New function.
863 (eshell-cmpl-initialize, eshell-complete-parse-arguments):
864 Replace obsolete lisp-complete-symbol with eshell-complete-lisp-symbol.
865
866 * image.el (image-animated-p): Tweak definition.
867
868 * net/rlogin.el (rlogin-program, rlogin-explicit-args): Default to ssh.
869 (rlogin-process-connection-type): Tweak default. Add set-after.
870 (rlogin-host): Doc fix.
871 (rlogin): Tweak prompt.
872 (rlogin-tab-or-complete): Use completion-at-point rather than alias.
873
874 * net/net-utils.el (nslookup-mode-map, ftp-mode-map):
875 * progmodes/tcl.el (inferior-tcl-mode-map):
876 Use completion-at-point rather than obsolete alias.
877
878 * emacs-lisp/eieio.el (eieio-eval-default-p): Move before use.
879
880 * minibuffer.el (read-file-name-completion-ignore-case):
881 Move before completion--in-region, for eager macro expansion.
882
883 2013-05-29 Juri Linkov <juri@jurta.org>
884
885 * replace.el (occur-engine): Rename `globalcount' to `global-lines'
886 for total count of matching lines. Add `global-matches' for total
887 count of matches. Rename `matches' to `lines' for count of
888 matching lines. Add `matches' for count of matches.
889 Rename `lines' to `curr-line' for line count. Rename `prev-lines'
890 to `prev-line' for line number of prev match endpt.
891 Increment `matches' for every match. Print the number of
892 matching lines in the header.
893 (occur-context-lines): Rename `lines' to `curr-line'.
894 Rename `prev-lines' to `prev-line'. (Bug#14017)
895
896 2013-05-29 Juri Linkov <juri@jurta.org>
897
898 * replace.el (perform-replace): Add `skip-read-only-count',
899 `skip-filtered-count', `skip-invisible-count' let-bound to 0.
900 Increment them for corresponding conditions and report the number
901 of skipped occurrences in the final message. (Bug#11746)
902 (query-replace, query-replace-regexp, query-replace-regexp-eval)
903 (replace-string, replace-regexp): Doc fix.
904
905 2013-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
906
907 * emacs-lisp/trace.el (trace--read-args): Provide a default.
908
909 * emacs-lisp/lisp-mode.el (lisp-mode-shared-map): Inherit from
910 prog-mode-map (bug#14504).
911
912 2013-05-29 Leo Liu <sdl.web@gmail.com>
913
914 * progmodes/octave.el (octave-indent-comment): Tweak regexps.
915 (octave-help): Small simplification.
916
917 * emacs-lisp/smie.el (smie-highlight-matching-block): Always turn
918 off the highlight first.
919
920 2013-05-29 Glenn Morris <rgm@gnu.org>
921
922 * progmodes/idlwave.el (idlwave-concatenate-rinfo-lists):
923 Handle idlwave-last-system-routine-info-cons-cell being nil.
924
925 * progmodes/idlwave.el (idlwave-scan-user-lib-files)
926 (idlwave-write-paths): Simplify via with-temp-buffer.
927
928 * emulation/cua-gmrk.el: Also load cua-base, cua-rect at run time.
929 * emulation/cua-rect.el: Also load cua-base at run time.
930
931 * progmodes/cperl-mode.el (imenu-choose-buffer-index)
932 (file-of-tag, etags-snarf-tag, etags-goto-tag-location): Declare.
933 (cperl-imenu-on-info): Require imenu.
934
935 2013-05-28 Alan Mackenzie <acm@muc.de>
936
937 Handle "capitalised keywords" correctly.
938 * progmodes/cc-mode.el (c-after-change): Bind case-fold-search to nil.
939
940 2013-05-28 Aidan Gauland <aidalgol@amuri.net>
941
942 * eshell/em-unix.el: Add -r option to cp.
943
944 2013-05-28 Glenn Morris <rgm@gnu.org>
945
946 * vc/vc-arch.el (vc-exec-after): Declare.
947 (vc-switches): Autoload.
948 * vc/vc-bzr.el: No need to require vc when compiling.
949 (vc-exec-after, vc-set-async-update, vc-default-dir-printer)
950 (vc-resynch-buffer, vc-dir-refresh): Declare.
951 (vc-setup-buffer, vc-switches): Autoload.
952 * vc/vc-cvs.el (vc-exec-after, vc-coding-system-for-diff)
953 (vc-resynch-buffer): Declare.
954 (vc-switches, vc-default-revert, vc-version-backup-file): Autoload.
955 * vc/vc-dir.el (desktop-missing-file-warning): Declare.
956 * vc/vc-git.el (vc-exec-after, vc-set-async-update)
957 (grep-read-regexp, grep-read-files, grep-expand-template)
958 (vc-dir-refresh): Declare.
959 (vc-setup-buffer, vc-switches, vc-resynch-buffer): Autoload.
960 * vc/vc-hg.el (vc-exec-after, vc-set-async-update): Declare.
961 (vc-setup-buffer, vc-switches, vc-do-async-command): Autoload.
962 * vc/vc-mtn.el (vc-exec-after): Declare.
963 (vc-switches): Autoload.
964 * vc/vc-rcs.el (vc-expand-dirs, vc-switches)
965 (vc-tag-precondition, vc-buffer-sync, vc-rename-master): Autoload.
966 (vc-file-tree-walk): Declare.
967 * vc/vc-sccs.el (vc-file-tree-walk): Declare.
968 (vc-expand-dirs, vc-switches, vc-setup-buffer, vc-delistify)
969 (vc-tag-precondition, vc-rename-master): Autoload.
970 * vc/vc-svn.el (vc-exec-after): Declare.
971 (vc-switches, vc-setup-buffer): Autoload.
972 * obsolete/vc-mcvs.el (vc-checkout, vc-switches, vc-default-revert):
973 Autoload.
974 (vc-resynch-buffer): Declare.
975
976 * obsolete/fast-lock.el (byte-compile-warnings):
977 Don't warn about obsolete features in this obsolete file.
978
979 * progmodes/cc-vars.el (c-macro-names-with-semicolon):
980 Move definition before use.
981
982 * play/dunnet.el (byte-compile-warnings): Don't disable them all.
983 (dun-unix-verbs): Remove dun-zippy.
984 (dun-zippy): Remove function.
985
986 * emacs-lisp/bytecomp.el (byte-compile-warnings): Doc fix.
987
988 2013-05-27 Juri Linkov <juri@jurta.org>
989
990 * replace.el (replace-search): New function with code moved out
991 from `perform-replace'.
992 (replace-highlight, replace-dehighlight): Move function definitions
993 up closer to `replace-search'. (Bug#11746)
994
995 2013-05-27 Juri Linkov <juri@jurta.org>
996
997 * replace.el (perform-replace): Ignore invisible matches.
998 In addition to checking `query-replace-skip-read-only', also
999 filter out matches by calling `run-hook-with-args-until-failure'
1000 on `isearch-filter-predicates', and also check `search-invisible'
1001 for t or call `isearch-range-invisible'.
1002 (replace-dehighlight): Call `isearch-clean-overlays'. (Bug#11746)
1003
1004 2013-05-27 Juri Linkov <juri@jurta.org>
1005
1006 * isearch.el (isearch-filter-predicates): Rename from
1007 `isearch-filter-predicate'. Doc fix. (Bug#11378)
1008 (isearch-message-prefix): Display text from the property
1009 `isearch-message-prefix' of the currently active filters.
1010 (isearch-search): Don't compare `isearch-filter-predicate' with
1011 `isearch-filter-visible'. Call `run-hook-with-args-until-failure'
1012 on `isearch-filter-predicates'. Also check `search-invisible' for t
1013 or call `isearch-range-invisible'.
1014 (isearch-filter-visible): Make obsolete.
1015 (isearch-lazy-highlight-search):
1016 Call `run-hook-with-args-until-failure' on
1017 `isearch-filter-predicates' and use `isearch-range-invisible'.
1018
1019 * info.el (Info-search): Call `run-hook-with-args-until-failure' on
1020 `isearch-filter-predicates' instead of `funcall'ing
1021 `isearch-filter-predicate'.
1022 (Info-mode): Set `Info-isearch-filter' to
1023 `isearch-filter-predicates' instead of `isearch-filter-predicate'.
1024
1025 * dired-aux.el (dired-isearch-filter-predicate-orig):
1026 Remove variable.
1027 (dired-isearch-filenames-toggle, dired-isearch-filenames-setup)
1028 (dired-isearch-filenames-end): Add and remove
1029 `dired-isearch-filter-filenames' in `isearch-filter-predicates'
1030 instead of changing the value of `isearch-filter-predicate'.
1031 Rebind `dired-isearch-filenames-toggle' from "\M-sf" to "\M-sff".
1032 (dired-isearch-filter-filenames): Don't use `isearch-filter-visible'.
1033 Put property `isearch-message-prefix' to "filename " on
1034 `dired-isearch-filter-filenames'.
1035
1036 * wdired.el (wdired-change-to-wdired-mode):
1037 Add `isearch-filter-predicates' to `wdired-isearch-filter-read-only'
1038 locally instead of changing `isearch-filter-predicate'.
1039 (wdired-isearch-filter-read-only): Don't use `isearch-filter-visible'.
1040
1041 2013-05-27 Dmitry Gutov <dgutov@yandex.ru>
1042
1043 * vc/vc-git.el (vc-git-working-revision): When in detached mode,
1044 return the commit hash (Bug#14459). Also set the
1045 `vc-git-detached' property.
1046 (vc-git--rev-parse): Extract from `vc-git-previous-revision'.
1047 (vc-git-mode-line-string): Use the same help-echo format whether
1048 in detached mode or not, because we know the actual revision now.
1049 When in detached mode, shorten the revision to 7 chars.
1050
1051 2013-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
1052
1053 * emacs-lisp/easy-mmode.el (define-minor-mode):
1054 * emacs-lisp/derived.el (define-derived-mode): Always defvar the
1055 mode hook and provide a docstring.
1056
1057 2013-05-27 Alan Mackenzie <acm@muc.de>
1058
1059 Remove spurious syntax-table text properties inserted by C-y.
1060 * progmodes/cc-mode.el (c-after-change): Also clear hard
1061 syntax-table property with value nil.
1062
1063 2013-05-27 Michael Albinus <michael.albinus@gmx.de>
1064
1065 * net/dbus.el (dbus-call-method): Let-bind `inhibit-redisplay'
1066 when reading the events; the buffer layout shall not be changed.
1067
1068 2013-05-27 Leo Liu <sdl.web@gmail.com>
1069
1070 * progmodes/octave.el (inferior-octave-directory-tracker-resync):
1071 New variable.
1072 (inferior-octave-directory-tracker): Automatically re-sync
1073 default-directory.
1074 (octave-help): Improve handling of 'See also'.
1075
1076 2013-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
1077
1078 * doc-view.el: Minor naming convention tweaks.
1079 (desktop-buffer-mode-handlers): Don't add to it repeatedly.
1080
1081 * image-mode.el (image-mode-reapply-winprops): Call image-mode-winprops
1082 even if there's no `display' property yet (bug#14435).
1083
1084 2013-05-25 Eli Zaretskii <eliz@gnu.org>
1085
1086 * subr.el (unmsys--file-name): Rename from reveal-filename.
1087
1088 * Makefile.in (custom-deps, finder-data, autoloads)
1089 ($(MH_E_DIR)/mh-loaddefs.el, $(TRAMP_DIR)/tramp-loaddefs.el)
1090 ($(CAL_DIR)/cal-loaddefs.el, $(CAL_DIR)/diary-loaddefs.el)
1091 ($(CAL_DIR)/hol-loaddefs.el): All users changed.
1092
1093 2013-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
1094
1095 * emacs-lisp/lisp.el (lisp-completion-at-point): Don't use
1096 error-completion on the first 2 args of condition-case (bug#14446).
1097 Don't burp at EOB.
1098
1099 2013-05-25 Leo Liu <sdl.web@gmail.com>
1100
1101 * comint.el (comint-previous-matching-input): Do not flood the
1102 *Messages* buffer with trivial messages.
1103
1104 2013-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
1105
1106 * progmodes/flymake.el (flymake-nop): Don't return a string.
1107 (flymake-set-at): Fix typo.
1108
1109 * simple.el (read--expression): New function, extracted from
1110 eval-expression. Set completion-at-point-functions (bug#14465).
1111 (eval-expression, eval-minibuffer): Use it.
1112
1113 2013-05-25 Xue Fuqiao <xfq.free@gmail.com>
1114
1115 * progmodes/flymake.el (flymake-save-buffer-in-file)
1116 (flymake-makehash, flymake-posn-at-point-as-event, flymake-nop)
1117 (flymake-selected-frame, flymake-log, flymake-ins-after)
1118 (flymake-set-at, flymake-get-buildfile-from-cache)
1119 (flymake-add-buildfile-to-cache, flymake-clear-buildfile-cache)
1120 (flymake-find-possible-master-files, flymake-save-buffer-in-file):
1121 Refine the doc string.
1122 (flymake-get-file-name-mode-and-masks): Reformat.
1123 (flymake-get-real-file-name-function): Fix a minor bug.
1124
1125 2013-05-24 Juri Linkov <juri@jurta.org>
1126
1127 * progmodes/grep.el (grep-mode-font-lock-keywords):
1128 Support =linenumber= format used by git-grep for lines with
1129 function names. (Bug#13549)
1130
1131 2013-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
1132
1133 * progmodes/octave.el (octave-smie-rules): Return nil rather than
1134 0 after a semi-colon; it works better for smie-auto-fill.
1135 (octave--indent-new-comment-line): New function.
1136 (octave-indent-new-comment-line): Use it (indirectly).
1137 (octave-mode): Don't disable smie-auto-fill. Use add-function to
1138 modify comment-line-break-function.
1139
1140 * emacs-lisp/smie.el (smie-auto-fill): Rework to be more robust.
1141 (smie-setup): Use add-function to set it.
1142
1143 2013-05-24 Sam Steingold <sds@gnu.org>
1144
1145 * sort.el (delete-duplicate-lines): Accept an optional `keep-blanks'
1146 argument (before the `interactive' argument).
1147
1148 2013-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
1149
1150 * image-mode.el (image-mode-winprops): Add winprops to
1151 image-mode-winprops-alist before running
1152 image-mode-new-window-functions.
1153 * doc-view.el (doc-view-new-window-function): Don't delay
1154 doc-view-goto-page via timers (bug#14435).
1155
1156 2013-05-24 Tassilo Horn <tsdh@gnu.org>
1157
1158 * doc-view.el: Integrate with desktop.el. (Bug#14435)
1159 (doc-view-desktop-save-buffer): New function.
1160 (doc-view-restore-desktop-buffer): New function.
1161 (desktop-buffer-mode-handlers):
1162 Add `doc-view-restore-desktop-buffer' as desktop.el buffer mode
1163 handler.
1164 (doc-view-mode): Set `doc-view-desktop-save-buffer' as custom
1165 `desktop-save-buffer' function.
1166
1167 2013-05-24 Michael Albinus <michael.albinus@gmx.de>
1168
1169 * net/tramp-gvfs.el (tramp-gvfs-enabled): New defconst.
1170 (tramp-gvfs-file-name-handler): Raise a user error when
1171 `tramp-gvfs-enabled' is nil.
1172 (top): Register signals only when `tramp-gvfs-enabled' is non-nil.
1173 Do not raise a user error when loading package. (Bug#14447)
1174
1175 * net/xesam.el: Move to obsolete/.
1176
1177 2013-05-24 Glenn Morris <rgm@gnu.org>
1178
1179 * font-lock.el (lisp-font-lock-keywords-2): Add with-coding-priority.
1180
1181 * emacs-lisp/chart.el (chart-sort): Replace obsolete `object-name'.
1182
1183 * progmodes/cperl-mode.el (cperl-mode): Use fboundp.
1184 (Info-find-node, Man-getpage-in-background): Declare.
1185
1186 * mail/unrmail.el (unrmail):
1187 Replace obsolete detect-coding-with-priority.
1188
1189 * net/socks.el (socks-split-string): Use this rather than split-string.
1190 (socks-nslookup-host): Update for above change.
1191 (dynamic-choice, s5-dynamic-choice-match)
1192 (s5-dynamic-choice-match-inline, s5-widget-value-create):
1193 Comment out unused code.
1194
1195 * tooltip.el (tooltip-use-echo-area): Warn only on 'set.
1196 * progmodes/gud.el (gud-gdb-completion-function): Move before use.
1197 (gud-tooltip-echo-area): Make obsolete.
1198 (gud-tooltip-process-output, gud-tooltip-tips): Also check tooltip-mode.
1199
1200 * progmodes/js.el (js--optimize-arglist): Declare.
1201
1202 * progmodes/ruby-mode.el (ruby-syntax-propertize-expansion): Declare.
1203
1204 * progmodes/which-func.el (ediff-window-A, ediff-window-B)
1205 (ediff-window-C): Declare.
1206
1207 * obsolete/pgg-gpg.el, obsolete/pgg-pgp.el, obsolete/pgg-pgp5.el:
1208 Tweak requires to silence compiler.
1209
1210 * obsolete/sym-comp.el: No need to load hipper-exp when compiling.
1211 (he-search-string, he-tried-table, he-expand-list)
1212 (he-init-string, he-string-member, he-substitute-string)
1213 (he-reset-string): Declare.
1214
1215 * obsolete/options.el (list-options): Use custom-variable-p,
1216 rather than obsolete alias.
1217
1218 2013-05-23 Sam Steingold <sds@gnu.org>
1219
1220 * simple.el (shell-command-on-region): Pass the `replace' argument
1221 down to `call-process-region' to comply with the doc as reported on
1222 <http://stackoverflow.com/questions/16720458/emacs-noninteractive-call-to-shell-command-on-region-always-deletes-region>
1223
1224 2013-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
1225
1226 * emacs-lisp/smie.el (smie-indent-forward-token)
1227 (smie-indent-backward-token): Handle string tokens (bug#14381).
1228
1229 2013-05-23 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
1230
1231 * ielm.el (ielm-menu): New menu.
1232 (inferior-emacs-lisp-mode): Set comment-start.
1233
1234 2013-05-23 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
1235
1236 * lisp/textmodes/reftex.el (reftex-ref-style-toggle):
1237 Fix deactivate action.
1238
1239 * lisp/textmodes/reftex-vars.el (reftex-ref-style-alist):
1240 Add cleveref macros.
1241
1242 * lisp/textmodes/reftex-parse.el
1243 (reftex-locate-bibliography-files): Accept options for
1244 bibliography commands.
1245 * lisp/textmodes/reftex-vars.el (reftex-bibliography-commands):
1246 Add addbibresource. Basic Biblatex support.
1247
1248 2013-05-23 Michael Albinus <michael.albinus@gmx.de>
1249
1250 * net/tramp-gvfs.el (top):
1251 * net/xesam.el (xesam-dbus-unique-names): Suppress D-Bus errors
1252 when loading package. (Bug#14447)
1253
1254 2013-05-23 Glenn Morris <rgm@gnu.org>
1255
1256 * progmodes/js.el: No need to load comint when compiling.
1257 (ring-insert, comint-send-string, comint-send-input)
1258 (comint-last-input-end, ido-chop): Declare.
1259
1260 * vc/ediff-diff.el, vc/ediff-merg.el: Require ediff-util at run-time.
1261 * vc/ediff-mult.el: Adjust requires.
1262 (ediff-directories-internal, ediff-directory-revisions-internal)
1263 (ediff-patch-file-internal): Declare.
1264 * vc/ediff-ptch.el: Adjust requires.
1265 (ediff-use-last-dir, ediff-buffers-internal): Declare.
1266 (ediff-find-file): Autoload.
1267 * vc/ediff-util.el: No need to load ediff when compiling.
1268 (ediff-regions-internal): Declare.
1269 * vc/ediff-wind.el: Adjust requires.
1270 (ediff-compute-toolbar-width): Define when compiling.
1271 (ediff-setup-control-buffer, ediff-make-bottom-toolbar): Declare.
1272 * vc/ediff.el: No need to load dired, ediff-ptch when compiling.
1273 (dired-get-filename, dired-get-marked-files)
1274 (ediff-last-dir-patch, ediff-patch-default-directory)
1275 (ediff-get-patch-buffer, ediff-dispatch-file-patching-job)
1276 (ediff-patch-buffer-internal): Declare.
1277
1278 * emacs-lisp/checkdoc.el: No need to load ispell when compiling.
1279 (ispell-process, ispell-buffer-local-words, lm-summary)
1280 (lm-section-start, lm-section-end): Declare.
1281 (checkdoc-ispell-init): Simplify.
1282
1283 * progmodes/vera-mode.el (he-init-string, he-dabbrev-beg)
1284 (he-string-member, he-reset-string, he-substitute-string): Declare.
1285
1286 * eshell/em-ls.el: Adjust requires.
1287 (eshell-glob-regexp): Declare.
1288 * eshell/em-tramp.el: Adjust requires.
1289 (eshell-parse-command): Autoload.
1290 * eshell/em-xtra.el: Adjust requires.
1291 (eshell-parse-command): Autoload.
1292 * eshell/esh-ext.el: Adjust requires.
1293 (eshell-parse-command, eshell-close-handles): Autoload.
1294 * eshell/esh-io.el: Adjust requires.
1295 (eshell-output-filter): Autoload.
1296 * eshell/esh-util.el: No need to load tramp when compiling.
1297 (tramp-file-name-structure, ange-ftp-ls, ange-ftp-file-modtime):
1298 Declare.
1299 (eshell-parse-ange-ls): Require ange-ftp and tramp.
1300 * eshell/em-alias.el, eshell/em-banner.el, eshell/em-basic.el:
1301 * eshell/em-cmpl.el, eshell/em-glob.el, eshell/em-pred.el:
1302 * eshell/em-prompt.el, eshell/em-rebind.el, eshell/em-smart.el:
1303 * eshell/em-term.el, eshell/esh-arg.el, eshell/esh-mode.el:
1304 * eshell/esh-opt.el, eshell/esh-proc.el:
1305 * eshell/esh-var.el: Adjust requires.
1306 * eshell/eshell.el: Do not require esh-util twice.
1307 (eshell-add-input-to-history): Declare.
1308 (eshell-command): Check history module is active before using it.
1309
1310 * eshell/em-ls.el (eshell-ls-dir): Fix -A handling.
1311
1312 2013-05-22 Leo Liu <sdl.web@gmail.com>
1313
1314 * progmodes/octave.el (inferior-octave-startup): Fix bug#14433.
1315
1316 2013-05-22 Michael Albinus <michael.albinus@gmx.de>
1317
1318 * autorevert.el (auto-revert-notify-add-watch)
1319 (auto-revert-notify-handler): Add `attrib' for the inotify case,
1320 it indicates changes in file modification time.
1321
1322 2013-05-22 Glenn Morris <rgm@gnu.org>
1323
1324 * emacs-lisp/bytecomp.el (byte-compile-file-form-autoload):
1325 Always delete the autoloaded function from the noruntime and
1326 unresolved functions lists.
1327
1328 * allout.el: No need to load epa, epg, overlay when compiling.
1329 (epg-context-set-passphrase-callback, epg-list-keys)
1330 (epg-decrypt-string, epg-encrypt-string, epg-user-id-string)
1331 (epg-key-user-id-list): Declare.
1332
1333 * emulation/viper-cmd.el (viper-set-searchstyle-toggling-macros)
1334 (viper-set-parsing-style-toggling-macro)
1335 (viper-set-emacs-state-searchstyle-macros):
1336 Use called-interactively-p on Emacs.
1337 (viper-looking-back): Make it an obsolete alias. Update callers.
1338 * emulation/viper-ex.el: Load viper-keym, not viper-cmd.
1339 Use looking-back rather than viper-looking-back.
1340 (viper-tmp-insert-at-eob, viper-enlarge-region)
1341 (viper-read-string-with-history, viper-register-to-point)
1342 (viper-append-to-register, viper-change-state-to-vi)
1343 (viper-backward-char-carefully, viper-forward-char-carefully)
1344 (viper-Put-back, viper-put-back, viper-add-newline-at-eob-if-necessary)
1345 (viper-change-state-to-emacs): Declare.
1346 * emulation/viper-macs.el: Load viper-mous, viper-ex, not viper-cmd.
1347 (viper-change-state-to-insert, viper-change-state-to-vi): Declare.
1348 * emulation/viper-mous.el: Do not load viper-cmd.
1349 (viper-backward-char-carefully, viper-forward-char-carefully)
1350 (viper-forward-word, viper-adjust-window): Declare.
1351
1352 * vc/ediff.el (ediff-version): Use called-interactively-p on Emacs.
1353
1354 * progmodes/idlw-help.el (idlwave-help-fontify):
1355 Use called-interactively-p.
1356
1357 * term/w32console.el (w32-get-console-codepage)
1358 (w32-get-console-output-codepage): Declare.
1359
1360 * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape):
1361 Remove unnecessary declarations.
1362 (dframe-message): Doc fix.
1363
1364 * info.el (dframe-select-attached-frame, dframe-current-frame):
1365 Declare.
1366
1367 * speedbar.el (speedbar-message): Make it an obsolete alias.
1368 Update all callers.
1369 (speedbar-with-attached-buffer)
1370 (speedbar-maybee-jump-to-attached-frame): Make these aliases obsolete.
1371 (speedbar-with-writable): Use backquote.
1372 * emacs-lisp/eieio-opt.el (eieio-describe-class-sb):
1373 * emacs-lisp/eieio-speedbar.el (eieio-speedbar-handle-click):
1374 Use dframe-with-attached-buffer, dframe-maybee-jump-to-attached-frame
1375 rather than speedbar- aliases.
1376 * mail/rmail.el: Load dframe rather than speedbar when compiling.
1377 (speedbar-make-specialized-keymap, speedbar-insert-button)
1378 (dframe-select-attached-frame, dframe-maybee-jump-to-attached-frame)
1379 (speedbar-do-function-pointer): Declare.
1380 (rmail-speedbar-button, rmail-speedbar-find-file)
1381 (rmail-speedbar-move-message):
1382 Use dframe-with-attached-buffer rather than speedbar- alias.
1383 * progmodes/gud.el: Load dframe rather than speedbar when compiling.
1384 (dframe-message, speedbar-make-specialized-keymap)
1385 (speedbar-add-expansion-list, speedbar-mode-functions-list)
1386 (speedbar-make-tag-line, speedbar-remove-localized-speedbar-support)
1387 (speedbar-insert-button, dframe-select-attached-frame)
1388 (dframe-maybee-jump-to-attached-frame)
1389 (speedbar-change-initial-expansion-list)
1390 (speedbar-previously-used-expansion-list-name): Declare.
1391 (gud-speedbar-item-info, gud-gdb-goto-stackframe):
1392 Use dframe-message, dframe-with-attached-buffer rather than
1393 speedbar- aliases.
1394 (gud-sentinel): Silence compiler.
1395 * progmodes/vhdl-mode.el (speedbar-refresh)
1396 (speedbar-do-function-pointer, speedbar-add-supported-extension)
1397 (speedbar-add-mode-functions-list, speedbar-make-specialized-keymap)
1398 (speedbar-change-initial-expansion-list, speedbar-add-expansion-list)
1399 (speedbar-extension-list-to-regex, speedbar-directory-buttons)
1400 (speedbar-file-lists, speedbar-make-tag-line)
1401 (speedbar-line-directory, speedbar-goto-this-file)
1402 (speedbar-center-buffer-smartly, speedbar-change-expand-button-char)
1403 (speedbar-delete-subblock, speedbar-position-cursor-on-line)
1404 (speedbar-make-button, speedbar-reset-scanners)
1405 (speedbar-files-item-info, speedbar-line-text)
1406 (speedbar-find-file-in-frame, speedbar-set-timer)
1407 (dframe-maybee-jump-to-attached-frame, speedbar-line-file): Declare.
1408 (speedbar-with-writable): Do not (re)define it.
1409 (vhdl-speedbar-find-file): Use dframe-maybee-jump-to-attached-frame
1410 rather than speedbar- alias.
1411
1412 2013-05-21 Leo Liu <sdl.web@gmail.com>
1413
1414 * progmodes/octave.el (octave-mode-menu): Update and re-organize
1415 menu items.
1416 (octave-mode): Tweak fill-nobreak-predicate.
1417 (inferior-octave-startup): Check process to avoid infinite loop.
1418 (inferior-octave): Pop to buffer first to show abornmal process
1419 exit information.
1420
1421 2013-05-21 Glenn Morris <rgm@gnu.org>
1422
1423 * printing.el (pr-menu-bar): Define when compiling.
1424
1425 2013-05-21 Leo Liu <sdl.web@gmail.com>
1426
1427 * progmodes/octave.el (octave-auto-fill): Remove.
1428 (octave-indent-new-comment-line): Improve.
1429 (octave-mode): Use auto fill mode through
1430 comment-line-break-function and fill-nobreak-predicate
1431 (octave-goto-function-definition): Support DEFUN_DLD.
1432 (octave-beginning-of-defun): Small Tweak
1433 (octave-help): Show parent directory.
1434
1435 2013-05-21 Glenn Morris <rgm@gnu.org>
1436
1437 * files.el (dired-unmark):
1438 * progmodes/gud.el (gdb-input): Update declarations.
1439
1440 * calculator.el (electric, ehelp): No need to load when compiling.
1441 (Electric-command-loop, electric-describe-mode): Declare.
1442
1443 * doc-view.el (doc-view-current-converter-processes): Move before use.
1444
1445 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
1446 Move MODE-set-explicitly definition before use.
1447
1448 * international/mule-diag.el (mule-diag):
1449 Don't use obsolete window-system-version.
1450
1451 * mail/feedmail.el (smtpmail): No need to load when compiling.
1452 (smtpmail-via-smtp, smtpmail-smtp-server): Declare.
1453
1454 * mail/mail-utils.el (rfc822): No need to load when compiling.
1455 (rfc822-addresses): Autoload it.
1456 (mail-strip-quoted-names): Trivial simplification.
1457
1458 * mail/rmail.el (rmail-mime-message-p, rmail-mime-toggle-raw): Declare.
1459 (rmail-retry-failure): Don't assume that rmail-mime-feature == rmailmm.
1460
1461 * net/snmp-mode.el (tempo): Don't duplicate requires.
1462
1463 * progmodes/prolog.el (info): No need to load when compiling.
1464 (comint): Require before shell requires it.
1465 (Info-goto-node): Autoload it.
1466 (Info-follow-nearest-node): Declare.
1467 (prolog-help-info, prolog-goto-predicate-info): No need to require info.
1468
1469 * textmodes/artist.el (picture-mode-exit): Declare.
1470
1471 * textmodes/reftex-parse.el (reftex-parse-from-file):
1472 Trivial rewrite so the compiler can parse it better.
1473
1474 2013-05-20 Leo Liu <sdl.web@gmail.com>
1475
1476 * progmodes/octave.el (octave-help-mode-map)
1477 (octave-help-mode-finish-hook): New variables.
1478 (octave-help-mode, octave-help-mode-finish): New functions.
1479 (octave-help): Use octave-help-mode.
1480
1481 2013-05-20 Glenn Morris <rgm@gnu.org>
1482
1483 * format-spec.el (format-spec): Allow spec chars with nil. (Bug#14420)
1484
1485 2013-05-19 Dmitry Gutov <dgutov@yandex.ru>
1486
1487 * progmodes/ruby-mode.el (ruby-expression-expansion-re): Allow to
1488 start at point, so that expansion starting right after opening
1489 slash in a regexp is recognized.
1490 (ruby-syntax-before-regexp-re): New defvar, extracted from
1491 ruby-syntax-propertize-function. Since the value of this regexp
1492 is looked up at runtime now, we should be able to turn
1493 `ruby-syntax-methods-before-regexp' into a defcustom later.
1494 (ruby-syntax-propertize-function): Split regexp matching into two
1495 parts, for opening and closing slashes. That allows us to skip
1496 over string interpolations and support multiline regexps.
1497 Don't call `ruby-syntax-propertize-expansions', instead use another rule
1498 for them, which calls `ruby-syntax-propertize-expansion'.
1499 (ruby-syntax-propertize-expansions): Move `remove-text-properties'
1500 call to `ruby-syntax-propertize-function'.
1501 (ruby-syntax-propertize-expansion): Extracted from
1502 `ruby-syntax-propertize-expansions'. Handles one expansion.
1503 (ruby-syntax-propertize-percent-literal): Leave point right after
1504 the percent symbol, so that the expression expansion rule can
1505 propertize the contents.
1506 (ruby-syntax-propertize-heredoc): Leave point at bol following the
1507 heredoc openers.
1508 (ruby-syntax-propertize-expansions): Remove.
1509
1510 2013-05-18 Juri Linkov <juri@jurta.org>
1511
1512 * man.el (Man-default-man-entry): Remove `-' from the end
1513 of the default value. (Bug#14400)
1514
1515 2013-05-18 Glenn Morris <rgm@gnu.org>
1516
1517 * comint.el (comint-password-prompt-regexp):
1518 Allow "password for XXX" where XXX contains colons (eg https://...).
1519
1520 2013-05-18 Leo Liu <sdl.web@gmail.com>
1521
1522 * progmodes/octave.el (inferior-octave-startup): Use OCTAVE_SRCDIR
1523 instead. Include "--no-gui" to prevent hangs for Octave > 3.7.
1524 (octave-source-directories): Don't check process.
1525 (octave-source-directories, octave-find-definition): Doc fix.
1526
1527 2013-05-18 Glenn Morris <rgm@gnu.org>
1528
1529 * progmodes/vhdl-mode.el (vhdl-mode-map-init):
1530 Remove backspace/delete bindings. (Bug#14392)
1531
1532 * cus-dep.el (custom-make-dependencies): Sort the output.
1533 (custom-versions-load-alist): Convert comment to doc.
1534
1535 2013-05-17 Leo Liu <sdl.web@gmail.com>
1536
1537 * newcomment.el (comment-search-backward): Stricter in finding
1538 comment start. (Bug#14303)
1539
1540 * progmodes/octave.el (octave-comment-start): Remove the SPC char.
1541 (octave-comment-start-skip): Properly anchored.
1542
1543 2013-05-17 Leo Liu <sdl.web@gmail.com>
1544
1545 * emacs-lisp/smie.el (smie-highlight-matching-block-mode):
1546 Clean up when turned off. (Bug#14395)
1547 (smie--highlight-matching-block-overlay): No longer buffer-local.
1548 (smie-highlight-matching-block): Adjust.
1549
1550 2013-05-17 Paul Eggert <eggert@cs.ucla.edu>
1551
1552 Doc string fix for "nanoseconds" (Bug#14406).
1553 * emacs-lisp/timer.el (timer-relative-time, timer-inc-time):
1554 Fix doc string typo that had "nanoseconds" instead of "microseconds".
1555
1556 2013-05-17 Jay Belanger <jay.p.belanger@gmail.com>
1557
1558 * calc/calc-units.el (math-extract-units): Preserve powers
1559 of units.
1560
1561 2013-05-17 Leo Liu <sdl.web@gmail.com>
1562
1563 * subr.el (delete-consecutive-dups): New function.
1564 * ido.el (ido-set-matches-1): Use it.
1565 * progmodes/octave.el (inferior-octave-completion-table): Use it.
1566 * ido.el (ido-remove-consecutive-dups): Remove.
1567
1568 2013-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
1569
1570 * progmodes/f90.el (f90-keywords-re, f90-keywords-level-3-re)
1571 (f90-hpf-keywords-re, f90-constants-re): Use \\_< rather than
1572 regexp-opt's `words'.
1573
1574 2013-05-16 Leo Liu <sdl.web@gmail.com>
1575
1576 * emacs-lisp/smie.el (smie-matching-block-highlight): New face.
1577 (smie--highlight-matching-block-overlay)
1578 (smie--highlight-matching-block-lastpos)
1579 (smie--highlight-matching-block-timer): New variables.
1580 (smie-highlight-matching-block): New function.
1581 (smie-highlight-matching-block-mode): New minor mode. (Bug#14395)
1582 (smie-setup): Conditionally enable smie-blink-matching-open.
1583
1584 2013-05-16 Wilson Snyder <wsnyder@wsnyder.org>
1585
1586 Sync with upstream verilog-mode r840.
1587 * progmodes/verilog-mode.el (verilog-mode-version)
1588 (verilog-mode-release-date): Update.
1589 (verilog-auto-lineup, verilog-auto-reset): Doc fixes.
1590 (verilog-sig-tieoff): Fix string error on
1591 AUTORESET with colon define, bug594. Reported by Andrew Hou.
1592 (verilog-read-decls): Fix parameters confusing
1593 AUTOINST interfaces, bug565. Reported by Leith Johnson.
1594
1595 2013-05-16 Eli Zaretskii <eliz@gnu.org>
1596
1597 * subr.el (reveal-filename): New function.
1598
1599 * loadup.el: Compute Emacs executable versions on MS-Windows,
1600 where executables have the .exe extension. Add a hard link
1601 emacs-XX.YY.ZZ.exe on MS-Windows.
1602
1603 * Makefile.in (XARGS_LIMIT): New variable.
1604 (custom-deps, finder-data, autoloads)
1605 ($(MH_E_DIR)/mh-loaddefs.el, $(TRAMP_DIR)/tramp-loaddefs.el)
1606 ($(CAL_DIR)/cal-loaddefs.el, $(CAL_DIR)/diary-loaddefs.el)
1607 ($(CAL_DIR)/hol-loaddefs.el): Use reveal-filename.
1608 (compile-main): Limit xargs according to $(XARGS_LIMIT).
1609
1610 2013-05-16 Leo Liu <sdl.web@gmail.com>
1611
1612 * progmodes/octave.el (octave-indent-defun): Mark obsolete.
1613 (octave-mode-menu, octave-mode-map): Remove its uses.
1614
1615 2013-05-16 Reto Zimmermann <reto@gnu.org>
1616
1617 Sync with upstream vhdl mode v3.34.2.
1618 * progmodes/vhdl-mode.el: Use `push' throughout.
1619 (vhdl-version, vhdl-time-stamp, vhdl-doc-release-notes): Update.
1620 (vhdl-compiler-alist): Replace "\t\n" by "\\t\\n".
1621 Add IBM & Quartus compiler. Enhance entry for ADVance MS compiler.
1622 (vhdl-actual-generic-name): New option to derive actual generic name.
1623 (vhdl-port-paste-signals): Replace formal by actual generics.
1624 (vhdl-beautify): New name for old group vhdl-align. Update users.
1625 (vhdl-beautify-options): New option.
1626 (vhdl-last-input-event): New compat alias. Use throughout.
1627 (vhdl-goto-line): Replace user level function `goto-line'.
1628 (vhdl-mode-map): Add bindings for vhdl-fix-statement-region,
1629 vhdl-fix-statement-buffer.
1630 (vhdl-create-mode-menu): Add some entries.
1631 (vhdl-align-region-groups): Respect vhdl-beautify-options.
1632 (vhdl-align-inline-comment-region-1): Handle "--" inside string.
1633 (vhdl-fixup-whitespace-region): Handle symbols at EOL.
1634 (vhdl-fix-statement-region, vhdl-fix-statement-buffer): New commands,
1635 to force statements on one line.
1636 (vhdl-remove-trailing-spaces-region):
1637 New, split from vhdl-remove-trailing-spaces.
1638 (vhdl-beautify-region): Fix statements, trailing spaces, ^M character.
1639 Respect vhdl-beautify-options.
1640 (vhdl-update-sensitivity-list-buffer): If non-interactive save buffer.
1641 (vhdl-update-sensitivity-list): Not add with index if exists without.
1642 Not include array index with signal. Ignore keywords in comments.
1643 (vhdl-get-visible-signals): Regexp tweaks.
1644 (vhdl-template-component-inst): Handle empty library.
1645 (vhdl-template-type): Add template for 'enum' type.
1646 (vhdl-port-paste-generic-map, vhdl-port-paste-constants):
1647 Use vhdl-replace-string.
1648 (vhdl-port-paste-signals): Use vhdl-prepare-search-1.
1649 (vhdl-speedbar-mode-map): Rename from vhdl-speedbar-key-map.
1650 (vhdl-speedbar-initialize): Update for above name change.
1651 (vhdl-compose-wire-components): Fix in handling of constants.
1652 (vhdl-error-regexp-emacs-alist): New variable.
1653 (vhdl-error-regexp-add-emacs): New function;
1654 adds support for new compile.el (Emacs 22+)
1655 (vhdl-generate-makefile-1): Change target order for single lib. units.
1656 Allow use of absolute file names.
1657
1658 2013-05-16 Leo Liu <sdl.web@gmail.com>
1659
1660 * simple.el (prog-indent-sexp): Indent enclosing defun.
1661
1662 2013-05-15 Glenn Morris <rgm@gnu.org>
1663
1664 * cus-start.el (show-trailing-whitespace): Move to editing basics.
1665 * faces.el (trailing-whitespace): Don't use whitespace-faces group.
1666 * obsolete/old-whitespace.el (whitespace-faces): Remove group.
1667 (whitespace-highlight): Move to whitespace group.
1668
1669 * comint.el (comint-source):
1670 * pcmpl-linux.el (pcmpl-linux):
1671 * shell.el (shell-faces):
1672 * eshell/esh-opt.el (eshell-opt):
1673 * international/ccl.el (ccl): Remove empty custom groups.
1674
1675 * completion.el (dynamic-completion-mode):
1676 * jit-lock.el (jit-lock-debug-mode):
1677 * minibuffer.el (completion-in-region-mode):
1678 * type-break.el (type-break-mode-line-message-mode)
1679 (type-break-query-mode):
1680 * emulation/tpu-edt.el (tpu-edt-mode):
1681 * progmodes/subword.el (global-subword-mode, global-superword-mode):
1682 * progmodes/vhdl-mode.el (vhdl-electric-mode, vhdl-stutter-mode):
1683 * term/vt100.el (vt100-wide-mode): Specify explicit :group.
1684
1685 * term/xterm.el (xterm): Change parent group to terminals.
1686
1687 * master.el (master): Remove empty custom group.
1688 (master-mode): Remove unused :group argument.
1689 * textmodes/refill.el (refill): Remove empty custom group.
1690 (refill-mode): Remove unused :group argument.
1691
1692 * textmodes/rst.el (rst-compile-toolsets): Use rst-compile group.
1693
1694 * cus-dep.el: Provide a feature.
1695 (custom-make-dependencies): Ignore dotfiles (dir-locals).
1696 Don't mistakenly ignore files whose basenames match a basename
1697 from preloaded-file-list (eg cedet/ede/simple.el).
1698 Add a fallback method for getting :group.
1699
1700 2013-05-15 Juri Linkov <juri@jurta.org>
1701
1702 * isearch.el (isearch-char-by-name): Rename from
1703 `isearch-insert-char-by-name'. Doc fix.
1704 (isearch-forward): Mention `isearch-char-by-name' in
1705 the docstring. (Bug#13348)
1706
1707 * isearch.el (minibuffer-local-isearch-map): Bind "\r" to
1708 `exit-minibuffer' instead of
1709 `isearch-nonincremental-exit-minibuffer'.
1710 (isearch-edit-string): Remove mention of
1711 `isearch-nonincremental-exit-minibuffer' from docstring.
1712 (isearch-nonincremental-exit-minibuffer): Mark as obsolete.
1713 (isearch-forward-exit-minibuffer)
1714 (isearch-reverse-exit-minibuffer): Add docstring. (Bug#13348)
1715
1716 2013-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
1717
1718 * loadup.el: Just use unversioned DOC.
1719
1720 * nxml/nxml-mode.el: Treat unclosed <[[, <?, comment, and other
1721 literals as extending to EOB.
1722 (nxml-last-fontify-end): Remove unused variable.
1723 (nxml-after-change1): Use with-silent-modifications.
1724 (nxml-extend-after-change-region): Simplify.
1725 (nxml-extend-after-change-region1): Remove function.
1726 (nxml-after-change1): Don't adjust for dependent regions.
1727 (nxml-fontify-matcher): Simplify.
1728 * nxml/xmltok.el (xmltok-dependent-regions): Remove variable.
1729 (xmltok-add-dependent): Remove function.
1730 (xmltok-scan-after-lt, xmltok-scan-after-processing-instruction-open)
1731 (xmltok-scan-after-comment-open, xmltok-scan-prolog-literal)
1732 (xmltok-scan-prolog-after-processing-instruction-open): Treat
1733 unclosed <[[, <?, comment, and other literals as extending to EOB.
1734 * nxml/rng-valid.el (rng-mark-xmltok-dependent-regions)
1735 (rng-mark-xmltok-dependent-region, rng-dependent-region-changed):
1736 Remove functions.
1737 (rng-do-some-validation-1): Don't mark dependent regions.
1738 * nxml/nxml-rap.el (nxml-adjust-start-for-dependent-regions)
1739 (nxml-mark-parse-dependent-regions, nxml-mark-parse-dependent-region)
1740 (nxml-clear-dependent-regions): Remove functions.
1741 (nxml-scan-after-change, nxml-scan-prolog, nxml-tokenize-forward)
1742 (nxml-ensure-scan-up-to-date):
1743 Don't clear&mark dependent regions.
1744
1745 2013-05-15 Leo Liu <sdl.web@gmail.com>
1746
1747 * progmodes/octave.el (octave-goto-function-definition):
1748 Improve and fix callers.
1749
1750 2013-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
1751
1752 * emacs-lisp/cl-extra.el (cl-getf): Return the proper value in
1753 the setter (bug#14387).
1754
1755 * progmodes/f90.el (f90-blocks-re): Include the terminating \> in the
1756 surrounding group (bug#14402).
1757
1758 2013-05-14 Juri Linkov <juri@jurta.org>
1759
1760 * subr.el (find-tag-default-as-regexp): Return nil if `tag' is nil.
1761 (Bug#14390)
1762
1763 2013-05-14 Glenn Morris <rgm@gnu.org>
1764
1765 * progmodes/f90.el (f90-imenu-generic-expression):
1766 Fix typo in 2013-05-08 change. (Bug#14402)
1767
1768 2013-05-14 Jean-Philippe Gravel <jpgravel@gmail.com>
1769
1770 * progmodes/gdb-mi.el (gdb-running, gdb-starting):
1771 Remove signals for which replies are never received.
1772
1773 2013-05-14 Jean-Philippe Gravel <jpgravel@gmail.com>
1774
1775 * progmodes/gdb-mi.el: Fix non-responsive gud commands (bug#13845)
1776 (gdb-handler-alist, gdb-handler-number): Remove variables.
1777 (gdb-handler-list): New variable.
1778 (gdb-add-handler, gdb-delete-handler, gdb-get-handler-function)
1779 (gdb-pending-handler-p, gdb-handle-reply)
1780 (gdb-remove-all-pending-triggers): New functions.
1781 (gdb-discard-unordered-replies): New defcustom.
1782 (gdb-handler): New defstruct.
1783 (gdb-wait-for-pending): Fix invalid backquote. Use gdb-handler-list.
1784 instead of gdb-pending-triggers. Update docstring.
1785 (gdb-init-1): Remove dead variables. Initialize gdb-handler-list.
1786 (gdb-speedbar-update, gdb-speedbar-timer-fn, gdb-var-update)
1787 (gdb-var-update-handler, def-gdb-auto-update-trigger)
1788 (def-gdb-auto-update-handler, gdb-get-changed-registers)
1789 (gdb-changed-registers-handler, gdb-get-main-selected-frame)
1790 (gdb-frame-handler): Pending triggers are now automatically managed.
1791 (def-gdb-trigger-and-handler, def-gdb-auto-update-handler):
1792 Remove argument.
1793 (gdb-input): Automatically handles pending triggers. Update docstring.
1794 (gdb-resync): Replace gdb-pending-triggers by gdb-handler-list.
1795 (gdb-thread-exited, gdb-thread-selected, gdb-register-names-handler):
1796 Update comments.
1797 (gdb-done-or-error): Now use gdb-handle-reply.
1798
1799 2013-05-14 Jean-Philippe Gravel <jpgravel@gmail.com>
1800
1801 * progmodes/gdb-mi.el (gdb-input): Include token numbers in
1802 gdb-debug-log.
1803
1804 2013-05-14 Glenn Morris <rgm@gnu.org>
1805
1806 * subr.el (user-emacs-directory-warning): New option.
1807 (locate-user-emacs-file): Handle non-accessible .emacs.d. (Bug#13930)
1808
1809 2013-05-14 Leo Liu <sdl.web@gmail.com>
1810
1811 * progmodes/octave.el (octave-font-lock-keywords): Fix error
1812 during redisplay.
1813 (octave-goto-function-definition, octave-find-definition): Minor tweaks.
1814 (octave-font-lock-texinfo-comment): Fix invalid search bound
1815 error: wrong side of point.
1816
1817 2013-05-14 Glenn Morris <rgm@gnu.org>
1818
1819 * progmodes/flymake.el (flymake-xml-program): New option.
1820 (flymake-xml-init): Use it.
1821
1822 * term/xterm.el: Provide a feature.
1823
1824 * term/sup-mouse.el: Move to obsolete/. Provide a feature.
1825
1826 2013-05-13 Glenn Morris <rgm@gnu.org>
1827
1828 * cus-dep.el (defcustom-mh, defgroup-mh, defface-mh):
1829 Add compat aliases as a hack workaround. (Bug#14384)
1830
1831 2013-05-13 Leo Liu <sdl.web@gmail.com>
1832
1833 * progmodes/octave.el (octave-indent-comment): Fix indentation for
1834 ###, and %!.
1835 (octave-mode-map): Bind octave-indent-defun to C-c C-q instead of
1836 C-M-q.
1837 (octave-comment-start-skip): Include %!.
1838 (octave-mode): Set comment-start-skip to octave-comment-start-skip.
1839
1840 2013-05-12 Leo Liu <sdl.web@gmail.com>
1841
1842 * progmodes/octave.el (inferior-octave-startup): Store the value
1843 of __octave_srcdir__ for octave-source-directories.
1844 (inferior-octave-check-process): New function refactored out of
1845 inferior-octave-send-list-and-digest.
1846 (octave-source-directories)
1847 (octave-find-definition-filename-function): New variables.
1848 (octave-source-directories)
1849 (octave-find-definition-default-filename): New functions.
1850 (octave-find-definition): Improve to find functions implemented in C++.
1851
1852 2013-05-12 Glenn Morris <rgm@gnu.org>
1853
1854 * calendar/diary-lib.el (diary-outlook-format-1):
1855 Don't include dayname in the output. (Bug#14349)
1856
1857 2013-05-11 Glenn Morris <rgm@gnu.org>
1858
1859 * emacs-lisp/autoload.el (generated-autoload-load-name): Doc fix.
1860
1861 * cus-dep.el (custom-make-dependencies): Only use safe local variables.
1862 Treat cc-provide like provide.
1863
1864 2013-05-11 Kevin Ryde <user42@zip.com.au>
1865
1866 * cus-dep.el (custom-make-dependencies):
1867 Use generated-autoload-load-name for the sake of files such
1868 such cedet/semantic/bovine/c.el, where the base file name
1869 is not in load-path. (Bug#5277)
1870
1871 2013-05-11 Glenn Morris <rgm@gnu.org>
1872
1873 * dos-vars.el, emacs-lisp/cl-indent.el, emulation/tpu-extras.el:
1874 Provide features.
1875
1876 2013-05-11 Leo Liu <sdl.web@gmail.com>
1877
1878 * progmodes/octave.el (octave-indent-comment): Improve.
1879 (octave-eldoc-message-style, octave-eldoc-cache): New variables.
1880 (octave-eldoc-function-signatures, octave-eldoc-function):
1881 New functions.
1882 (octave-mode, inferior-octave-mode): Add eldoc support.
1883
1884 2013-05-11 Richard Stallman <rms@gnu.org>
1885
1886 * epa.el (epa-decrypt-file): Take output file name as argument
1887 and read it using `interactive'.
1888
1889 2013-05-11 Leo Liu <sdl.web@gmail.com>
1890
1891 * progmodes/octave.el (octave-beginning-of-line)
1892 (octave-end-of-line): Check before using up-list because it jumps
1893 out of more syntactic contructs since moving to smie.
1894 (octave-indent-comment): New function.
1895 (octave-mode): Use it in smie-indent-functions. (Bug#14350)
1896 (octave-begin-keywords, octave-end-keywords)
1897 (octave-reserved-words, octave-smie-bnf-table)
1898 (octave-smie-rules): Add new keywords from Octave 3.6.4.
1899
1900 2013-05-11 Glenn Morris <rgm@gnu.org>
1901
1902 * faces.el (internal-face-x-get-resource):
1903 * frame.el (ns-display-monitor-attributes-list):
1904 * calc/calc-aent.el (math-to-radians-2): Fix declarations.
1905
1906 * emacs-lisp/package.el (tar-header-name, tar-header-link-type):
1907
1908 * calc/calc-menu.el: Make it loadable in isolation.
1909
1910 * net/eudcb-bbdb.el: Make it loadable without bbdb.
1911 (eudc-bbdb-filter-non-matching-record, eudc-bbdb-extract-phones)
1912 (eudc-bbdb-extract-addresses, eudc-bbdb-format-record-as-result)
1913 (eudc-bbdb-query-internal): Require 'bbdb.
1914
1915 * lpr.el (lpr-headers-switches):
1916 * emacs-lisp/testcover.el (testcover-compose-functions): Fix :type.
1917
1918 * progmodes/sql.el (sql-login-params): Fix and improve :type.
1919
1920 * emulation/edt-mapper.el: In batch mode, error rather than hang.
1921
1922 * term.el (term-set-escape-char): Make it idempotent.
1923
1924 2013-05-10 Leo Liu <sdl.web@gmail.com>
1925
1926 * progmodes/octave.el (inferior-octave-completion-table):
1927 No longer a function and all uses changed. Use cache to speed up
1928 completion due to bug#11906.
1929 (octave-beginning-of-defun): Re-write to be more general.
1930
1931 2013-05-10 Glenn Morris <rgm@gnu.org>
1932
1933 * emacs-lisp/cl-macs.el (cl-loop): Doc fix.
1934
1935 2013-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
1936
1937 * comint.el (comint-redirect-send-command-to-process): Use :around
1938 rather than :override for comint-redirect-filter.
1939 (comint-redirect-filter): Add the corresponding `orig-filter' argument.
1940 Call it instead of comint-redirect-original-filter-function (which
1941 is gone). Reported by Juanma Barranquero <lekktu@gmail.com>.
1942
1943 2013-05-09 Jan Djärv <jan.h.d@swipnet.se>
1944
1945 * frame.el (display-monitor-attributes-list): Add NS case.
1946 (ns-display-monitor-attributes-list): Declare.
1947
1948 2013-05-09 Ulrich Mueller <ulm@gentoo.org>
1949
1950 * descr-text.el (describe-char): Fix %d/%x typo. (Bug#14360)
1951
1952 2013-05-09 Glenn Morris <rgm@gnu.org>
1953
1954 * international/fontset.el (vertical-centering-font-regexp):
1955 Set standard-value.
1956
1957 * tar-mode.el (tar-superior-buffer, tar-superior-descriptor): Add doc.
1958
1959 * bookmark.el (bookmark-search-delay):
1960 * cus-start.el (vertical-centering-font-regexp):
1961 * ps-mule.el (ps-mule-font-info-database-default):
1962 * ps-print.el (ps-default-fg, ps-default-bg):
1963 * type-break.el (type-break-good-break-interval):
1964 * whitespace.el (whitespace-indentation-regexp)
1965 (whitespace-space-after-tab-regexp):
1966 * emacs-lisp/testcover.el (testcover-1value-functions)
1967 (testcover-noreturn-functions, testcover-progn-functions)
1968 (testcover-prog1-functions):
1969 * emulation/viper-init.el (viper-emacs-state-cursor-color):
1970 * eshell/em-glob.el (eshell-glob-translate-alist):
1971 * play/tetris.el (tetris-tty-colors):
1972 * progmodes/cpp.el (cpp-face-default-list):
1973 * progmodes/flymake.el (flymake-allowed-file-name-masks):
1974 * progmodes/idlw-help.el (idlwave-help-browser-generic-program)
1975 (idlwave-help-browser-generic-args):
1976 * progmodes/make-mode.el (makefile-special-targets-list):
1977 * progmodes/python.el (python-shell-virtualenv-path):
1978 * progmodes/verilog-mode.el (verilog-active-low-regexp)
1979 (verilog-auto-input-ignore-regexp, verilog-auto-inout-ignore-regexp)
1980 (verilog-auto-output-ignore-regexp, verilog-auto-tieoff-ignore-regexp)
1981 (verilog-auto-unused-ignore-regexp, verilog-typedef-regexp):
1982 * textmodes/reftex-vars.el (reftex-format-label-function):
1983 * textmodes/remember.el (remember-diary-file): Fix custom types.
1984
1985 * jka-cmpr-hook.el (jka-compr-mode-alist-additions): Fix typo.
1986 Add :version.
1987
1988 2013-05-09 Leo Liu <sdl.web@gmail.com>
1989
1990 * progmodes/octave.el (inferior-octave-completion-at-point):
1991 Restore file completion. (Bug#14300)
1992 (inferior-octave-startup): Fix incorrect highlighting for the
1993 first prompt.
1994
1995 2013-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
1996
1997 * progmodes/ruby-mode.el: First cut at SMIE support.
1998 (ruby-use-smie): New var.
1999 (ruby-smie-grammar): New constant.
2000 (ruby-smie--bosp, ruby-smie--implicit-semi-p)
2001 (ruby-smie--forward-token, ruby-smie--backward-token)
2002 (ruby-smie-rules): New functions.
2003 (ruby-mode-variables): Setup SMIE if applicable.
2004
2005 2013-05-08 Eli Zaretskii <eliz@gnu.org>
2006
2007 * simple.el (line-move-visual): Signal beginning/end of buffer
2008 only if vertical-motion moved less than it was requested. Avoids
2009 silly incorrect error messages when there are display strings with
2010 multiple newlines at EOL.
2011
2012 2013-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
2013
2014 * progmodes/vera-mode.el (vera-underscore-is-part-of-word):
2015 * progmodes/prolog.el (prolog-underscore-wordchar-flag)
2016 (prolog-char-quote-workaround):
2017 * progmodes/cperl-mode.el (cperl-under-as-char):
2018 * progmodes/vhdl-mode.el (vhdl-underscore-is-part-of-word):
2019 Mark as obsolete.
2020 (vhdl-mode-syntax-table, vhdl-mode-ext-syntax-table): Initialize in
2021 their declaration.
2022 (vhdl-mode-syntax-table-init): Remove.
2023
2024 * progmodes/m4-mode.el (m4-mode-syntax-table): Add comment on
2025 last change.
2026
2027 * progmodes/ld-script.el (ld-script-mode-syntax-table): Use symbol
2028 syntax for "_".
2029 (ld-script-font-lock-keywords):
2030 Change regexps to use things like \_< and \_>.
2031
2032 * progmodes/f90.el (f90-mode-syntax-table): Use symbol syntax for "_".
2033 Change all regexps to use things like \_< and \_>.
2034
2035 * progmodes/autoconf.el (autoconf-definition-regexp)
2036 (autoconf-font-lock-keywords, autoconf-current-defun-function):
2037 Handle a _ with symbol syntax.
2038 (autoconf-mode): Don't change the syntax-table for imenu and font-lock.
2039
2040 * progmodes/ada-mode.el (ada-mode-abbrev-table):
2041 Consolidate declaration.
2042 (ada-mode-syntax-table, ada-mode-symbol-syntax-table): Initialize in
2043 the declaration.
2044 (ada-create-syntax-table): Remove.
2045 (ada-capitalize-word): Don't mess with the syntax of "_" since it
2046 already has the right syntax nowadays.
2047 (ada-goto-next-word): Don't change the syntax of "_".
2048
2049 * font-lock.el (lisp-font-lock-keywords-2): Don't highlight obsolete
2050 with-wrapper-hook.
2051
2052 2013-05-08 Sam Steingold <sds@gnu.org>
2053
2054 * thingatpt.el (thing-at-point): Accept optional second argument
2055 NO-PROPERTIES to strip the text properties from the return value.
2056 * net/browse-url.el (browse-url-url-at-point): Pass NO-PROPERTIES
2057 to `thing-at-point' instead of stripping the properties ourselves.
2058 Also, when `thing-at-point' fails to find a url, prepend "http://"
2059 to the filename at point on the assumption that the user is
2060 pointing at something like gnu.org/gnu.
2061
2062 2013-05-08 Juanma Barranquero <lekktu@gmail.com>
2063
2064 * emacs-lisp/bytecomp.el (byte-compile-insert-header):
2065 * faces.el (crm-separator):
2066 Silence byte-compiler.
2067
2068 * progmodes/gud.el (gdb-speedbar-auto-raise, gud-tooltip-mode)
2069 (tool-bar-map): Remove unneeded defvars.
2070
2071 2013-05-08 Leo Liu <sdl.web@gmail.com>
2072
2073 Re-work a fix for bug#10994 based on Le Wang's patch.
2074 * ido.el (ido-remove-consecutive-dups): New helper.
2075 (ido-completing-read): Use it.
2076 (ido-chop): Revert fix for bug#10994.
2077
2078 2013-05-08 Adam Spiers <emacs@adamspiers.org>
2079
2080 * cus-edit.el (custom-save-variables):
2081 Pretty-print long values. (Bug#14187)
2082
2083 2013-05-08 Glenn Morris <rgm@gnu.org>
2084
2085 * progmodes/m4-mode.el (m4-program): Assume it is in PATH.
2086 (m4-mode-syntax-table): Init in the defvar.
2087 (m4-mode-abbrev-table): Let define-derived-mode define it.
2088
2089 2013-05-08 Tom Tromey <tromey@redhat.com>
2090
2091 * progmodes/m4-mode.el (m4-mode-syntax-table):
2092 Do not treat "_" as word constituent. (Bug#14167)
2093
2094 2013-05-07 Glenn Morris <rgm@gnu.org>
2095
2096 * eshell/em-hist.el (eshell-isearch-map): Initialize in the defvar.
2097 Remove explicit eshell-isearch-cancel-map.
2098
2099 * progmodes/f90.el (f90-smart-end-names): New option.
2100 (f90-smart-end): Doc fix.
2101 (f90-end-block-optional-name): New constant.
2102 (f90-block-match): Respect f90-smart-end-names.
2103
2104 2013-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
2105
2106 * progmodes/octave.el (octave-smie-forward-token): Be more careful
2107 about implicit semi-colons (bug#14218).
2108
2109 2013-05-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2110
2111 * frame.el (display-monitor-attributes-list)
2112 (frame-monitor-attributes): New functions.
2113
2114 2013-05-06 Leo Liu <sdl.web@gmail.com>
2115
2116 * progmodes/octave.el (octave-syntax-propertize-function): Change
2117 \'s syntax to escape when inside double-quoted strings. (Bug#14332)
2118 (octave-font-lock-keywords): Use octave-operator-regexp.
2119 (octave-completion-at-point): Rename from
2120 octave-completion-at-point-function.
2121 (inferior-octave-directory-tracker): Robustify.
2122 (octave-text-functions): Remove and fix its uses. No such things
2123 any more.
2124
2125 2013-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
2126
2127 * emacs-lisp/trace.el (trace--display-buffer): New function.
2128 (trace-make-advice): Use it.
2129
2130 2013-05-06 Juri Linkov <juri@jurta.org>
2131
2132 * emacs-lisp/lisp-mode.el (eval-defun-2): Doc fix. (Bug#14344)
2133 (eval-defun-2, eval-defun, eval-last-sexp, eval-last-sexp-1):
2134 Doc fix.
2135 (emacs-lisp-mode-map): Replace "minibuffer" with "echo area"
2136 in the help string. (Bug#12985)
2137
2138 2013-05-06 Kelly Dean <kellydeanch@yahoo.com> (tiny change)
2139
2140 * simple.el (shell-command-on-region): Doc fix. (Bug#14279)
2141
2142 2013-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
2143
2144 * progmodes/perl-mode.el: Add support for here documents.
2145 (perl-syntax-propertize-function): Match here-doc markers.
2146 (perl-syntax-propertize-special-constructs): Find their end.
2147 (perl-imenu-generic-expression): Use [:alnum:].
2148
2149 * emacs-lisp/nadvice.el (advice--member-p): Return the advice if found.
2150 (advice--add-function): Refresh the advice if already present
2151 (bug#14317).
2152
2153 2013-05-06 Ivan Andrus <darthandrus@gmail.com>
2154
2155 * find-file.el (cc-other-file-alist): Add ".m" for ObjC. (Bug#14339)
2156
2157 2013-05-06 Glenn Morris <rgm@gnu.org>
2158
2159 * w32-fns.el (w32-charset-info-alist): Declare.
2160
2161 * eshell/em-cmpl.el: Simply require pcomplete; eg we use a bunch
2162 of its defcustom properties.
2163 (eshell-cmpl-initialize): No need to load pcomplete.
2164
2165 * generic-x.el: No need to require comint when compiling.
2166
2167 * net/eudc-export.el: Make it loadable without bbdb.
2168 (top-level): Use require rather than load-library.
2169 (eudc-create-bbdb-record, eudc-bbdbify-phone)
2170 (eudc-batch-export-records-to-bbdb)
2171 (eudc-insert-record-at-point-into-bbdb, eudc-try-bbdb-insert):
2172 Require bbdb.
2173
2174 2013-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
2175
2176 * progmodes/octave.el (octave-texinfo-font-lock-keywords): Remove.
2177 (octave-font-lock-texinfo-comment): Use texinfo-font-lock-keywords with
2178 some tweaks, instead.
2179
2180 2013-05-05 Leo Liu <sdl.web@gmail.com>
2181
2182 * progmodes/octave.el (octave-font-lock-keywords)
2183 (octave-font-lock-texinfo-comment): Adjust for the byte-compiler.
2184 (inferior-octave-send-list-and-digest): Improve error message.
2185 (octave-mode, inferior-octave-mode): Use setq-local.
2186 (octave-help): Set info-lookup-mode.
2187
2188 2013-05-05 Richard Stallman <rms@gnu.org>
2189
2190 * vc/compare-w.el (compare-windows-whitespace):
2191 Treat no-break space as whitespace.
2192
2193 * mail/rmailsum.el (rmail-summary-rmail-update):
2194 Detect empty summary and don't change selected message.
2195 (rmail-summary-goto-msg): Likewise.
2196
2197 * mail/rmailsum.el (rmail-new-summary, rmail-new-summary-1):
2198 Doc fixes, rename args.
2199
2200 2013-05-05 Alan Mackenzie <acm@muc.de>
2201
2202 * progmodes/cc-defs.el (c-version): Increment to 5.32.5.
2203
2204 2013-05-05 Juri Linkov <juri@jurta.org>
2205
2206 * info.el (Info-read-subfile): Use (point-min) instead of (point)
2207 to not add the length of the summary segment to the return value.
2208 (Bug#14125)
2209
2210 2013-05-05 Leo Liu <sdl.web@gmail.com>
2211
2212 * progmodes/octave.el (inferior-octave-strip-ctrl-g)
2213 (inferior-octave-output-filter): Remove.
2214 (octave-send-region, inferior-octave-startup): Fix callers.
2215 (inferior-octave-mode-map): Don't use comint-dynamic-complete.
2216 (octave-binary-file-extensions): New user variable.
2217 (octave-find-definition): Confirm if opening binary files.
2218 (octave-help-file): Use octave-find-definition to get the binary
2219 confirmation.
2220 (octave-help): Adjust for octave-help-file change.
2221
2222 2013-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
2223
2224 * progmodes/pascal.el (pascal-font-lock-keywords): Use backquotes.
2225 Merge the two entries that handle function definitions.
2226 (pascal--syntax-propertize): New const.
2227 (pascal-mode): Use it. Use setq-local.
2228
2229 2013-05-04 Glenn Morris <rgm@gnu.org>
2230
2231 * calendar/diary-lib.el (diary-from-outlook-function): New variable.
2232 (diary-from-outlook): Respect diary-from-outlook-function.
2233
2234 2013-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
2235
2236 * simple.el (read-expression-map): Use completion-at-point (bug#14255).
2237 Move the declaration from C.
2238 (read-minibuffer, eval-minibuffer): Move from C.
2239 (completion-setup-function): Avoid minibuffer-completion-contents.
2240
2241 2013-05-03 Leo Liu <sdl.web@gmail.com>
2242
2243 * progmodes/octave.el (octave-font-lock-keywords): Do not
2244 dehighlight 'end' in comments or strings.
2245 (octave-completing-read, octave-goto-function-definition):
2246 New helpers.
2247 (octave-help-buffer): New user variable.
2248 (octave-help-file, octave-help-function): New button types.
2249 (octave-help): New command and bind it to C-h ;.
2250 (octave-find-definition): New command and bind it to M-.
2251 (user-error): Alias to error if not defined.
2252
2253 2013-05-02 Leo Liu <sdl.web@gmail.com>
2254
2255 * progmodes/octave.el (octave-mode-syntax-table): Correct syntax
2256 for \. (bug#14332)
2257 (octave-font-lock-keywords): Include [ and {.
2258
2259 2013-05-02 Leo Liu <sdl.web@gmail.com>
2260
2261 * progmodes/octave.el (inferior-octave-startup-file): Change default.
2262 (inferior-octave): Remove calling comint-mode and return the buffer.
2263 (inferior-octave-startup): Cosmetic changes.
2264
2265 2013-05-02 Leo Liu <sdl.web@gmail.com>
2266
2267 * progmodes/octave.el (octave-syntax-propertize-function):
2268 Include the case when ' is at line beginning. (Bug#14336)
2269
2270 2013-05-02 Glenn Morris <rgm@gnu.org>
2271
2272 * vc/vc-dir.el (vc-dir-mode): Don't autoload it for everyone.
2273 * desktop.el (vc-dir-mode): Just autoload it here.
2274
2275 2013-05-02 Alan Mackenzie <acm@muc.de>
2276
2277 Eliminate variable c-standard-font-lock-fontify-region-function.
2278 * progmodes/cc-mode.el
2279 (c-standard-font-lock-fontify-region-function): Remove.
2280 (c-font-lock-fontify-region, c-after-font-lock-init): Adapt.
2281
2282 2013-05-01 Leo Liu <sdl.web@gmail.com>
2283
2284 * progmodes/octave.el: Compatible with older emacs-24 releases.
2285 (inferior-octave-has-built-in-variables): Remove. Built-in
2286 variables were removed from Octave in 2007.
2287 (inferior-octave-startup): Fix uses.
2288 (comint-line-beginning-position): Remove compatibility code for
2289 emacs 21.
2290
2291 2013-05-01 Juri Linkov <juri@jurta.org>
2292
2293 * isearch.el (isearch-forward, isearch-mode): Doc fix. (Bug#13923)
2294
2295 2013-05-01 Juri Linkov <juri@jurta.org>
2296
2297 * comint.el (comint-previous-matching-input): Don't print message
2298 "History item: %d" when `isearch-mode' is active.
2299 (comint-history-isearch-message): Print message "History item: %d"
2300 when `comint-input-ring-index' is not empty and this function is
2301 called from `isearch-update' with a nil `ellipsis'. (Bug#13223)
2302
2303 2013-05-01 Leo Liu <sdl.web@gmail.com>
2304
2305 * progmodes/octave.el (octave-abbrev-table): Remove abbrev
2306 definitions. Use completion-at-point to insert keywords.
2307 (octave-abbrev-start): Remove.
2308 (inferior-octave-mode, octave-mode): Use :abbrev-table instead.
2309
2310 2013-04-30 Leo Liu <sdl.web@gmail.com>
2311
2312 * progmodes/octave.el (inferior-octave-prompt-read-only): Fix last
2313 change.
2314
2315 2013-04-30 Alan Mackenzie <acm@muc.de>
2316
2317 Handle arbitrarily long C++ member initialisation lists.
2318 * progmodes/cc-engine.el (c-back-over-member-initializers):
2319 new function.
2320 (c-guess-basic-syntax): New CASE 5R (extracted from 5B) to handle
2321 (most) member init lists.
2322
2323 2013-04-30 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
2324
2325 * progmodes/octave.el (inferior-octave-prompt-read-only): New user
2326 variable.
2327
2328 2013-04-30 Leo Liu <sdl.web@gmail.com>
2329
2330 * progmodes/octave.el (octave-variables): Remove. No builtin
2331 variables any more. All converted to functions.
2332 (octave-font-lock-keywords, octave-completion-at-point-function):
2333 Fix uses.
2334 (octave-font-lock-texinfo-comment): New user variable.
2335 (octave-texinfo-font-lock-keywords): New variable for texinfo
2336 comment block.
2337 (octave-function-comment-block): New face.
2338 (octave-font-lock-texinfo-comment): New function.
2339 (octave-mode): Font lock texinfo comment block.
2340
2341 2013-04-29 Leo Liu <sdl.web@gmail.com>
2342
2343 * progmodes/octave.el (octave-font-lock-keywords): Handle 'end' in
2344 indexing expression.
2345 (octave-continuation-string): Do not use \.
2346 (inferior-octave-complete-impossible): Remove.
2347 (inferior-octave-completion-table)
2348 (inferior-octave-completion-at-point): Remove its uses.
2349 (inferior-octave-startup): completion_matches was introduced to
2350 Octave in 1996 so safe to assume it.
2351 (octave-function-file-comment): Improve to follow how Octave does it.
2352 (octave-update-function-file-comment): Tweak.
2353
2354 2013-04-29 Leo Liu <sdl.web@gmail.com>
2355
2356 * progmodes/octave.el (inferior-octave-startup-hook): Obsolete.
2357 (inferior-octave-startup): Remove inferior-octave-startup-hook.
2358 (octave-function-file-comment): Fix typo.
2359 (octave-sync-function-file-names): Use read-char-choice.
2360
2361 2013-04-28 Jay Belanger <jay.p.belanger@gmail.com>
2362
2363 * calc/calc.el (math-normalize): Don't set `math-normalize-error'
2364 to t for the less important warnings.
2365
2366 2013-04-27 Darren Hoo <darren.hoo@gmail.com> (tiny change)
2367
2368 * isearch.el (isearch-fail-pos): Check for empty `cmds'. (Bug#14268)
2369
2370 2013-04-27 Glenn Morris <rgm@gnu.org>
2371
2372 * vc/log-view.el (log-view-current-entry):
2373 Treat "---" separator lines as part of the following rev. (Bug#14169)
2374
2375 2013-04-27 Juri Linkov <juri@jurta.org>
2376
2377 * subr.el (read-number): Doc fix about using it by interactive
2378 code letter `n'. (Bug#14254)
2379
2380 2013-04-27 Juri Linkov <juri@jurta.org>
2381
2382 * desktop.el (desktop-auto-save-timeout): New option.
2383 (desktop-file-checksum): New variable.
2384 (desktop-save): Add optional arg `auto-save' and don't auto-save
2385 if nothing changed.
2386 (desktop-auto-save-timer): New variable.
2387 (desktop-auto-save, desktop-auto-save-set-timer): New functions.
2388 (after-init-hook): Call `desktop-auto-save-set-timer'.
2389 Suggested by Reuben Thomas <rrt@sc3d.org> in
2390 <http://lists.gnu.org/archive/html/emacs-devel/2013-04/msg00327.html>.
2391
2392 2013-04-27 Leo Liu <sdl.web@gmail.com>
2393
2394 * progmodes/octave.el (octave-function-file-p)
2395 (octave-skip-comment-forward, octave-function-file-comment)
2396 (octave-update-function-file-comment): New functions.
2397 (octave-mode-map): Bind C-c ; to
2398 octave-update-function-file-comment.
2399 (octave-mode-menu): Add octave-update-function-file-comment.
2400 (octave-mode, inferior-octave-mode): Fix doc-string.
2401 (octave-insert-defun): Conform to Octave's coding convention.
2402 (Bug#14285)
2403
2404 * files.el (basic-save-buffer): Don't let errors in
2405 before-save-hook prevent saving buffer.
2406
2407 2013-04-20 Roland Winkler <winkler@gnu.org>
2408
2409 * faces.el (read-face-name): Use completing-read if arg multiple
2410 is nil.
2411
2412 2013-04-27 Ingo Lohmar <i.lohmar@gmail.com> (tiny change)
2413
2414 * ls-lisp.el (ls-lisp-insert-directory): If no files are
2415 displayed, move point to after the totals line.
2416 See http://lists.gnu.org/archive/html/emacs-devel/2013-04/msg00677.html
2417 for the details.
2418
2419 2013-04-27 Stefan Monnier <monnier@iro.umontreal.ca>
2420
2421 * emacs-lisp/package.el (package-autoload-ensure-default-file):
2422 Add current dir to the load-path.
2423 (package-generate-autoloads): Don't rely on
2424 autoload-ensure-default-file.
2425
2426 2013-04-26 Reuben Thomas <rrt@sc3d.org>
2427
2428 * textmodes/remember.el (remember-store-in-files): Document that
2429 the file name format is passed to `format-time-string'.
2430
2431 2013-04-26 Leo Liu <sdl.web@gmail.com>
2432
2433 * progmodes/octave.el (octave-sync-function-file-names): New function.
2434 (octave-mode): Use it in before-save-hook.
2435
2436 2013-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
2437
2438 * emacs-lisp/tabulated-list.el (tabulated-list-mode): Disable undo
2439 (bug#14274).
2440
2441 * progmodes/octave.el (octave-smie-forward-token): Properly skip
2442 \n and comment, even if it's not an implicit ; (bug#14218).
2443
2444 2013-04-26 Glenn Morris <rgm@gnu.org>
2445
2446 * subr.el (read-number): Once more use `read' rather than
2447 `string-to-number', to trap non-numeric input. (Bug#14254)
2448
2449 2013-04-26 Erik Charlebois <erikcharlebois@gmail.com>
2450
2451 * emacs-lisp/syntax.el (syntax-propertize-multiline):
2452 Use `syntax-multiline' text property consistently instead of
2453 `font-lock-multiline'. (Bug#14237)
2454
2455 2013-04-26 Glenn Morris <rgm@gnu.org>
2456
2457 * emacs-lisp/shadow.el (list-load-path-shadows):
2458 No longer necessary to check for duplicate simple.el, since
2459 2012-07-07 change to init_lread to not include installation lisp
2460 directories in load-path when running uninstalled. (Bug#14270)
2461
2462 2013-04-26 Leo Liu <sdl.web@gmail.com>
2463
2464 * progmodes/octave.el (octave-submit-bug-report): Obsolete.
2465 (octave-mode, inferior-octave-mode): Use setq-local.
2466 (octave-not-in-string-or-comment-p): Rename to
2467 octave-in-string-or-comment-p.
2468 (octave-in-comment-p, octave-in-string-p)
2469 (octave-in-string-or-comment-p): Replace defsubst with defun.
2470
2471 2013-04-25 Paul Eggert <eggert@cs.ucla.edu>
2472
2473 * Makefile.in (distclean): Remove $(lisp)/loaddefs.el~.
2474
2475 2013-04-25 Bastien Guerry <bzg@gnu.org>
2476
2477 * textmodes/remember.el (remember-data-directory)
2478 (remember-directory-file-name-format): Fix custom types.
2479
2480 2013-04-25 Leo Liu <sdl.web@gmail.com>
2481
2482 * progmodes/octave.el (octave-completion-at-point-function):
2483 Make use of inferior octave process.
2484 (octave-initialize-completions): Remove.
2485 (inferior-octave-completion-table): New function.
2486 (inferior-octave-completion-at-point): Use it.
2487 (octave-completion-alist): Remove.
2488
2489 2013-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
2490
2491 * progmodes/opascal.el: Use font-lock and syntax-propertize.
2492 (opascal-mode-syntax-table): New var.
2493 (opascal-literal-kind, opascal-is-literal-end)
2494 (opascal-literal-token-at): Rewrite.
2495 (opascal--literal-start-re, opascal-font-lock-keywords)
2496 (opascal--syntax-propertize): New constants.
2497 (opascal-font-lock-defaults): Adjust.
2498 (opascal-mode): Use them. Set comment-<foo> variables as well.
2499 (delphi-comment-face, opascal-comment-face, delphi-string-face)
2500 (opascal-string-face, delphi-keyword-face, opascal-keyword-face)
2501 (delphi-other-face, opascal-other-face): Remove face variables.
2502 (opascal-save-state): Remove macro.
2503 (opascal-fontifying-progress-step): Remove constant.
2504 (opascal--ignore-changes): Remove var.
2505 (opascal-set-token-property, opascal-parse-next-literal)
2506 (opascal-is-stable-literal, opascal-complete-literal)
2507 (opascal-is-literal-start, opascal-face-of)
2508 (opascal-parse-region, opascal-parse-region-until-stable)
2509 (opascal-fontify-region, opascal-after-change)
2510 (opascal-debug-show-is-stable, opascal-debug-unparse-buffer)
2511 (opascal-debug-parse-region, opascal-debug-parse-window)
2512 (opascal-debug-parse-buffer, opascal-debug-fontify-window)
2513 (opascal-debug-fontify-buffer): Remove.
2514 (opascal-debug-mode-map): Adjust accordingly.
2515
2516 2013-04-25 Leo Liu <sdl.web@gmail.com>
2517
2518 Merge octave-mod.el and octave-inf.el into octave.el with some
2519 cleanups.
2520 * progmodes/octave.el: New file renamed from octave-mod.el.
2521 * progmodes/octave-inf.el: Merged into octave.el.
2522 * progmodes/octave-mod.el: Renamed to octave.el.
2523
2524 2013-04-25 Tassilo Horn <tsdh@gnu.org>
2525
2526 * textmodes/reftex-vars.el
2527 (reftex-label-ignored-macros-and-environments): New defcustom.
2528
2529 * textmodes/reftex-parse.el (reftex-parse-from-file): Use it.
2530
2531 2013-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
2532
2533 * emacs-lisp/smie.el (smie-indent--hanging-p): Don't burp at EOB.
2534 (smie-indent-keyword): Improve the check to ensure that the next
2535 comment is really on the same line.
2536 (smie-indent-comment): Don't align with a subsequent closer (or eob).
2537
2538 * progmodes/octave-mod.el (octave-smie-forward-token): Only emit
2539 semi-colons if the line is not otherwise empty (bug#14218).
2540
2541 2013-04-25 Glenn Morris <rgm@gnu.org>
2542
2543 * vc/vc-bzr.el (vc-bzr-print-log): Tweak LIMIT = 1 case.
2544
2545 2013-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
2546
2547 * progmodes/opascal.el (opascal-set-token-property): Rename from
2548 opascal-set-text-properties and only set `token' (bug#14134).
2549 Suggested by Erik Knowles <eknowles@geosystemsoftware.com>.
2550 (opascal-literal-text-properties): Remove.
2551 (opascal-parse-next-literal, opascal-debug-unparse-buffer):
2552 Adjust callers.
2553
2554 2013-04-24 Reuben Thomas <rrt@sc3d.org>
2555
2556 * textmodes/remember.el (remember-handler-functions): Add an
2557 option for a new handler `remember-store-in-files'.
2558 (remember-data-directory, remember-directory-file-name-format):
2559 New options.
2560 (remember-store-in-files): New function to store remember notes
2561 as separate files within a directory.
2562
2563 2013-04-24 Magnus Henoch <magnus.henoch@gmail.com>
2564
2565 * progmodes/compile.el (compilation-next-error-function):
2566 Pass "formats" to compilation-find-file (bug#11777).
2567
2568 2013-04-24 Glenn Morris <rgm@gnu.org>
2569
2570 * vc/vc-bzr.el (vc-bzr-print-log):
2571 * vc/vc-hg.el (vc-hg-print-log):
2572 * vc/vc-svn.el (vc-svn-print-log):
2573 Fix START-REVISION with LIMIT != 1. (Bug#14168)
2574
2575 * vc/vc-bzr.el (vc-bzr-print-log):
2576 * vc/vc-cvs.el (vc-cvs-print-log):
2577 * vc/vc-git.el (vc-git-print-log):
2578 * vc/vc-hg.el (vc-hg-print-log):
2579 * vc/vc-mtn.el (vc-mtn-print-log):
2580 * vc/vc-rcs.el (vc-rcs-print-log):
2581 * vc/vc-sccs.el (vc-sccs-print-log):
2582 * vc/vc-svn.el (vc-svn-print-log):
2583 * vc/vc.el (vc-print-log-internal): Doc fixes.
2584
2585 2013-04-23 Glenn Morris <rgm@gnu.org>
2586
2587 * startup.el (normal-no-mouse-startup-screen, normal-about-screen):
2588 Remove venerable code attempting to avoid substitute-command-keys.
2589
2590 2013-04-23 Tassilo Horn <tsdh@gnu.org>
2591
2592 * textmodes/reftex-vars.el (reftex-label-regexps):
2593 Call `reftex-compile-variables' after changes to this variable.
2594
2595 2013-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
2596
2597 * jit-lock.el: Fix signals in jit-lock-force-redisplay (bug#13542).
2598 Use lexical-binding.
2599 (jit-lock-force-redisplay): Use markers, check buffer's continued
2600 existence and beware narrowed buffers.
2601 (jit-lock-fontify-now): Adjust call accordingly.
2602
2603 2013-04-22 Stefan Monnier <monnier@iro.umontreal.ca>
2604
2605 * minibuffer.el (minibuffer-completion-contents): Fix obsolescence info
2606 to avoid misleading the user.
2607
2608 2013-04-22 Leo Liu <sdl.web@gmail.com>
2609
2610 * info-look.el: Prefer latex2e.info. (Bug#14240)
2611
2612 2013-04-22 Michael Albinus <michael.albinus@gmx.de>
2613
2614 Fix pack/unpack coding. Reported by David Smith <davidsmith@acm.org>.
2615
2616 * net/tramp-compat.el (tramp-compat-call-process): Move function ...
2617 * net/tramp.el (tramp-call-process): ... here
2618 (tramp-set-completion-function, tramp-parse-putty):
2619 * net/tramp-adb.el (tramp-adb-execute-adb-command):
2620 * net/tramp-gvfs.el (tramp-gvfs-send-command):
2621 * net/tramp-sh.el (tramp-sh-handle-set-file-times)
2622 (tramp-set-file-uid-gid, tramp-sh-handle-write-region)
2623 (tramp-call-local-coding-command): Use `tramp-call-process'
2624 instead of `tramp-compat-call-process'.
2625
2626 * net/tramp-sh.el (tramp-perl-pack, tramp-perl-unpack): New defconst.
2627 (tramp-local-coding-commands, tramp-remote-coding-commands): Use them.
2628 (tramp-sh-handle-file-local-copy, tramp-sh-handle-write-region):
2629 (tramp-find-inline-compress): Improve traces.
2630 (tramp-maybe-send-script): Check for Perl binary.
2631 (tramp-get-inline-coding): Do not redirect STDOUT for local decoding.
2632
2633 2013-04-22 Daiki Ueno <ueno@gnu.org>
2634
2635 * epg.el (epg-context-pinentry-mode): New function.
2636 (epg-context-set-pinentry-mode): New function.
2637 (epg--start): Pass --pinentry-mode option to gpg command.
2638
2639 2013-04-21 Xue Fuqiao <xfq.free@gmail.com>
2640
2641 * comint.el (comint-dynamic-complete-functions, comint-mode-map):
2642 `comint-dynamic-complete' is obsolete since 24.1, replaced by
2643 `completion-at-point'. (Bug#13774)
2644
2645 * startup.el (normal-no-mouse-startup-screen): Bug fix, the
2646 default key binding for `describe-distribution' has been moved to
2647 `C-h C-o'. (Bug#13970)
2648
2649 2013-04-21 Glenn Morris <rgm@gnu.org>
2650
2651 * vc/vc.el (vc-print-log-setup-buttons, vc-print-log-internal):
2652 Add doc strings.
2653 (vc-print-log): Clarify interactive prompt.
2654
2655 2013-04-20 Glenn Morris <rgm@gnu.org>
2656
2657 * emacs-lisp/bytecomp.el (byte-compile-insert-header):
2658 No longer include timestamp etc information.
2659
2660 2013-04-20 Roland Winkler <winkler@gnu.org>
2661
2662 * faces.el (read-face-name): Bug fix, return just one face if arg
2663 multiple is nil. (Bug#14209)
2664
2665 2013-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
2666
2667 * emacs-lisp/nadvice.el (advice--where-alist): Add :override.
2668 (remove-function): Autoload.
2669
2670 * comint.el (comint-redirect-original-filter-function): Remove.
2671 (comint-redirect-cleanup, comint-redirect-send-command-to-process):
2672 * vc/vc-cvs.el (vc-cvs-annotate-process-filter)
2673 (vc-cvs-annotate-command):
2674 * progmodes/octave-inf.el (inferior-octave-send-list-and-digest):
2675 * progmodes/prolog.el (prolog-consult-compile):
2676 * progmodes/gdb-mi.el (gdb, gdb--check-interpreter):
2677 Use add/remove-function instead.
2678 * progmodes/gud.el (gud-tooltip-original-filter): Remove.
2679 (gud-tooltip-process-output, gud-tooltip-tips):
2680 Use add/remove-function instead.
2681 * progmodes/xscheme.el (xscheme-previous-process-state): Remove.
2682 (scheme-interaction-mode, exit-scheme-interaction-mode):
2683 Use add/remove-function instead.
2684
2685 * vc/vc-dispatcher.el: Use lexical-binding.
2686 (vc--process-sentinel): Rename from vc-process-sentinel.
2687 Change last arg to be the code to run. Don't use vc-previous-sentinel
2688 and vc-sentinel-commands any more.
2689 (vc-exec-after): Allow code to be a function. Use add/remove-function.
2690 (compilation-error-regexp-alist, view-old-buffer-read-only): Declare.
2691
2692 2013-04-19 Masatake YAMATO <yamato@redhat.com>
2693
2694 * progmodes/sh-script.el (sh-imenu-generic-expression):
2695 Handle function names with a single character. (Bug#14111)
2696
2697 2013-04-19 Dima Kogan <dima@secretsauce.net> (tiny change)
2698
2699 * progmodes/gud.el (gud-perldb-marker-filter): Understand position info
2700 for subroutines defined in an eval (bug#14182).
2701
2702 2013-04-19 Thierry Volpiatto <thierry.volpiatto@gmail.com>
2703
2704 * bookmark.el (bookmark-completing-read): Improve handling of empty
2705 string (bug#14176).
2706
2707 2013-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
2708
2709 * vc/vc-dispatcher.el (vc-do-command): Get rid of default sentinel msg.
2710
2711 2013-04-19 Fabián Ezequiel Gallina <fgallina@gnu.org>
2712
2713 New faster Imenu implementation (bug#14058).
2714 * progmodes/python.el:
2715 (python-imenu-prev-index-position):
2716 (python-imenu-format-item-label-function)
2717 (python-imenu-format-parent-item-label-function)
2718 (python-imenu-format-parent-item-jump-label-function):
2719 New vars.
2720 (python-imenu-format-item-label)
2721 (python-imenu-format-parent-item-label)
2722 (python-imenu-format-parent-item-jump-label)
2723 (python-imenu--put-parent, python-imenu--build-tree)
2724 (python-imenu-create-index, python-imenu-create-flat-index)
2725 (python-util-popn): New functions.
2726 (python-mode): Set imenu-create-index-function to
2727 python-imenu-create-index.
2728
2729 2013-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
2730
2731 * winner.el (winner-active-region): Use region-active-p, activate-mark
2732 and deactivate-mark (bug#14225).
2733
2734 * simple.el (deactivate-mark): Don't inline it.
2735
2736 2013-04-18 Michael Albinus <michael.albinus@gmx.de>
2737
2738 * net/tramp-sh.el (tramp-remote-process-environment): Add "TMOUT=0".
2739
2740 2013-04-18 Tassilo Horn <tsdh@gnu.org>
2741
2742 * files.el (auto-mode-alist): Delete OpenDocument and StarOffice
2743 file extensions from the archive-mode entry in order to prefer
2744 doc-view-mode-maybe with archive-mode as fallback (bug#14188).
2745
2746 2013-04-18 Leo Liu <sdl.web@gmail.com>
2747
2748 * bindings.el (help-event-list): Add ?\?.
2749
2750 2013-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
2751
2752 * subr.el (with-wrapper-hook): Declare obsolete.
2753 * simple.el (filter-buffer-substring-function): New hook.
2754 (filter-buffer-substring): Use it.
2755 (filter-buffer-substring-functions): Mark obsolete.
2756 * minibuffer.el (completion-in-region-function): New hook.
2757 (completion-in-region): Use it.
2758 (completion-in-region-functions): Mark obsolete.
2759 * mail/mailabbrev.el (mail-abbrevs-setup): Use abbrev-expand-function.
2760 * abbrev.el (abbrev-expand-function): New hook.
2761 (expand-abbrev): Use it.
2762 (abbrev-expand-functions): Mark obsolete.
2763 * emacs-lisp/nadvice.el (advice--where-alist): Add :filter-args
2764 and :filter-return.
2765
2766 2013-04-17 Fabián Ezequiel Gallina <fgallina@gnu.org>
2767
2768 * progmodes/python.el (python-nav--syntactically): Fix cornercases
2769 and do not care about match data.
2770
2771 2013-04-17 Stefan Monnier <monnier@iro.umontreal.ca>
2772
2773 * emacs-lisp/lisp.el (lisp-completion-at-point): Provide specialized
2774 completion tables when completing error conditions and
2775 `declare' arguments.
2776 (lisp-complete-symbol, field-complete): Mark as obsolete.
2777 (check-parens): Unmatched parens are user errors.
2778 * minibuffer.el (minibuffer-completion-contents): Mark as obsolete.
2779
2780 2013-04-17 Michal Nazarewicz <mina86@mina86.com>
2781
2782 * textmodes/flyspell.el (flyspell-check-pre-word-p): Return nil if
2783 command changed buffer (ie. `flyspell-pre-buffer' is not current
2784 buffer), which prevents making decisions based on invalid value of
2785 `flyspell-pre-point' in the wrong buffer. Most notably, this used to
2786 cause an error when `flyspell-pre-point' was nil after switching
2787 buffers.
2788 (flyspell-post-command-hook): No longer needs to change buffers when
2789 checking pre-word. While at it remove unnecessary progn.
2790
2791 2013-04-17 Nicolas Richard <theonewiththeevillook@yahoo.fr> (tiny change)
2792
2793 * textmodes/ispell.el (ispell-add-per-file-word-list):
2794 Fix `flyspell-correct-word-before-point' error when accepting
2795 words and `coment-padding' is an integer by using
2796 `comment-normalize-vars' (Bug #14214).
2797
2798 2013-04-17 Fabián Ezequiel Gallina <fgallina@gnu.org>
2799
2800 New defun movement commands.
2801 * progmodes/python.el (python-nav--syntactically)
2802 (python-nav--forward-defun, python-nav-backward-defun)
2803 (python-nav-forward-defun): New functions.
2804
2805 2013-04-17 Fabián Ezequiel Gallina <fgallina@gnu.org>
2806
2807 * progmodes/python.el (python-syntax--context-compiler-macro): New defun.
2808 (python-syntax-context): Use named compiler-macro for backwards
2809 compatibility with Emacs 24.x.
2810
2811 2013-04-17 Leo Liu <sdl.web@gmail.com>
2812
2813 * progmodes/octave-mod.el (octave-mode-map): Fix key binding to
2814 octave-hide-process-buffer.
2815
2816 2013-04-17 Stefan Monnier <monnier@iro.umontreal.ca>
2817
2818 * vc/vc-hg.el (vc-hg-annotate-re): Disallow ": " in file names
2819 (bug#14216).
2820
2821 2013-04-17 Jean-Philippe Gravel <jpgravel@gmail.com>
2822
2823 * progmodes/gdb-mi.el (gdbmi-bnf-incomplete-record-result):
2824 Fix adjustment of offset when receiving incomplete responses from GDB
2825 (bug#14129).
2826
2827 2013-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
2828
2829 * progmodes/python.el (python-mode-skeleton-abbrev-table): Rename from
2830 python-mode-abbrev-table.
2831 (python-skeleton-define): Adjust accordingly.
2832 (python-mode-abbrev-table): New table that inherits from it so that
2833 python-skeleton-autoinsert does not affect non-skeleton abbrevs.
2834
2835 * abbrev.el (abbrev--symbol): New function, extracted from abbrev-symbol.
2836 (abbrev-symbol): Use it.
2837 (abbrev--before-point): Use it since we already handle inheritance.
2838
2839 2013-04-16 Leo Liu <sdl.web@gmail.com>
2840
2841 * progmodes/octave-mod.el (octave-mode-map): Remove redundant key
2842 binding to info-lookup-symbol.
2843
2844 2013-04-16 Juanma Barranquero <lekktu@gmail.com>
2845
2846 * minibuffer.el (completion--twq-all):
2847 * term/ns-win.el (ns-initialize-window-system):
2848 * term/w32-win.el (w32-initialize-window-system): Silence byte-compiler.
2849
2850 2013-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
2851
2852 * emacs-lisp/nadvice.el (add-function): Default simple vars to their
2853 global bindings.
2854
2855 * doc-view.el (doc-view-start-process): Handle url-handler directories.
2856
2857 2013-04-15 Dmitry Gutov <dgutov@yandex.ru>
2858
2859 * progmodes/ruby-mode.el (ruby-beginning-of-defun)
2860 (ruby-end-of-defun, ruby-move-to-block): Bind `case-fold-search'
2861 to nil.
2862 (ruby-end-of-defun): Remove the unused arg, change the docstring
2863 to reflect that this function is only used as the value of
2864 `end-of-defun-function'.
2865 (ruby-beginning-of-defun): Remove "top-level" from the docstring,
2866 to reflect an earlier change that beginning/end-of-defun functions
2867 jump between methods in a class definition, as well as top-level
2868 functions.
2869
2870 2013-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
2871
2872 * minibuffer.el (minibuffer-complete): Don't just scroll
2873 a *Completions* that's been iconified.
2874 (minibuffer-force-complete): Make sure repetitions do cycle when going
2875 through completion-in-region -> minibuffer-complete.
2876
2877 2013-04-15 Alan Mackenzie <acm@muc.de>
2878
2879 Correct the placement of c-cpp-delimiters when there're #s not at
2880 col 0.
2881
2882 * progmodes/cc-langs.el (c-anchored-cpp-prefix): Reformulate and
2883 place a submatch around the #.
2884 * progmodes/cc-mode.el(c-neutralize-syntax-in-and-mark-CPP):
2885 Start a search at BOL. Put the c-cpp-delimiter category text propertiy
2886 on the #, not BOL.
2887
2888 2013-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
2889
2890 * emacs-lisp/nadvice.el: Properly test names when adding advice.
2891 (advice--member-p): New arg `name'.
2892 (advice--add-function, advice-member-p): Use it (bug#14202).
2893
2894 2013-04-15 Filipp Gunbin <fgunbin@fastmail.fm>
2895
2896 Reformulate java imenu-generic-expression.
2897 The old expression contained ill formed regexps.
2898
2899 * progmodes/cc-menus.el (cc-imenu-java-ellipsis-regexp)
2900 (cc-imenu-java-type-spec-regexp, cc-imenu-java-comment-regexp)
2901 (cc-imenu-java-method-arg-regexp): New defconsts.
2902 (cc-imenu-java-build-type-args-regex): New defun.
2903 (cc-imenu-java-generic-expression): Fix, to remove "ambiguous"
2904 handling of spaces in the regexp.
2905
2906 2013-03-15 Agustín Martín Domingo <agustin.martin@hispalinux.es>
2907
2908 * textmodes/ispell.el (ispell-command-loop): Remove
2909 flyspell highlight of a word when ispell accepts it (bug #14178).
2910
2911 2013-04-15 Michael Albinus <michael.albinus@gmx.de>
2912
2913 * net/ange-ftp.el (ange-ftp-run-real-handler-orig): New defun,
2914 uses code from the previous `ange-ftp-run-real-handler'.
2915 (ange-ftp-run-real-handler): Set it to `tramp-run-real-handler'
2916 only in case that function exist. This is needed for proper
2917 unloading of Tramp.
2918
2919 2013-04-15 Tassilo Horn <tsdh@gnu.org>
2920
2921 * textmodes/reftex-vars.el (reftex-label-regexps): New defcustom.
2922
2923 * textmodes/reftex.el (reftex-compile-variables): Use it.
2924
2925 2013-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
2926
2927 * files.el (normal-mode): Only use default major-mode if no other mode
2928 was specified.
2929
2930 * emacs-lisp/trace.el (trace-values): New function.
2931
2932 * files.el: Allow : in local variables (bug#14089).
2933 (hack-local-variable-regexp): New var.
2934 (hack-local-variables-prop-line, hack-local-variables): Use it.
2935
2936 2013-04-13 Roland Winkler <winkler@gnu.org>
2937
2938 * textmodes/bibtex.el (bibtex-search-entries): Bug fix. Use match
2939 data before it gets modified by bibtex-beginning-of-entry.
2940
2941 2013-04-13 Roland Winkler <winkler@gnu.org>
2942
2943 * textmodes/bibtex.el (bibtex-url): Doc fix.
2944
2945 2013-04-13 Roland Winkler <winkler@gnu.org>
2946
2947 * textmodes/bibtex.el (bibtex-initialize): If the current buffer
2948 does not visit a BibTeX file, exclude it from the list of buffers
2949 returned by bibtex-initialize.
2950
2951 2013-04-13 Stephen Berman <stephen.berman@gmx.net>
2952
2953 * window.el (split-window): Remove interactive form, since as a
2954 command this function is a special case of split-window-below.
2955 Correct doc string.
2956
2957 2013-04-12 Roland Winkler <winkler@gnu.org>
2958
2959 * faces.el (read-face-name): Do not override value of arg default.
2960 Allow single faces and strings as default values. Remove those
2961 elements from return value that are not faces.
2962 (describe-face): Simplify.
2963 (face-at-point): New optional args thing and multiple so that this
2964 function can provide the same functionality previously provided by
2965 read-face-name.
2966 (make-face-bold, make-face-unbold, make-face-italic)
2967 (make-face-unitalic, make-face-bold-italic, invert-face)
2968 (modify-face, read-face-and-attribute): Use face-at-point.
2969
2970 * cus-edit.el (customize-face, customize-face-other-window)
2971 * cus-theme.el (custom-theme-add-face)
2972 * face-remap.el (buffer-face-set)
2973 * facemenu.el (facemenu-set-face): Use face-at-point.
2974
2975 2013-04-12 Michael Albinus <michael.albinus@gmx.de>
2976
2977 * info.el (Info-file-list-for-emacs): Add "tramp" and "dbus".
2978
2979 2013-04-10 Tassilo Horn <tsdh@gnu.org>
2980
2981 * textmodes/reftex-cite.el (reftex-parse-bibtex-entry): Don't cut
2982 off leading { and trailing } from field values.
2983
2984 2013-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
2985
2986 * emacs-lisp/timer.el (timer--check): New function.
2987 (timer--time, timer-set-function, timer-event-handler): Use it.
2988 (timer-set-idle-time): Simplify.
2989 (timer--activate): CSE.
2990 (timer-event-handler): Give more info in error message.
2991 (internal-timer-start-idle): New function, moved from C.
2992
2993 * mpc.el (mpc-proc): Add `restart' argument.
2994 (mpc-proc-cmd): Use it.
2995 (mpc--status-timer-run): Also catch signals from `mpc-proc'.
2996 (mpc-status-buffer-show, mpc-tagbrowser-dir-toggle): Call `mpc-proc'
2997 less often.
2998
2999 2013-04-10 Masatake YAMATO <yamato@redhat.com>
3000
3001 * progmodes/sh-script.el: Implement `sh-mode' own
3002 `add-log-current-defun-function' (bug#14112).
3003 (sh-current-defun-name): New function.
3004 (sh-mode): Use the function.
3005
3006 2013-04-09 Bastien Guerry <bzg@gnu.org>
3007
3008 * simple.el (choose-completion-string): Fix docstring (bug#14163).
3009
3010 2013-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
3011
3012 * emacs-lisp/edebug.el (edebug-mode): Fix typo (bug#14144).
3013
3014 * emacs-lisp/timer.el (timer-event-handler): Don't retrigger a canceled
3015 timer (bug#14156).
3016
3017 2013-04-07 Nic Ferrier <nferrier@ferrier.me.uk>
3018
3019 * emacs-lisp/ert.el (should, should-not, should-error): Add edebug
3020 declaration.
3021
3022 2013-04-07 Leo Liu <sdl.web@gmail.com>
3023
3024 * pcmpl-x.el: New file.
3025
3026 2013-04-06 Dmitry Antipov <dmantipov@yandex.ru>
3027
3028 Do not set x-display-name until X connection is established.
3029 This is needed to prevent from weird situation described at
3030 <http://lists.gnu.org/archive/html/emacs-devel/2013-04/msg00212.html>.
3031 * frame.el (make-frame): Set x-display-name after call to
3032 window system initialization function, not before.
3033 * term/x-win.el (x-initialize-window-system): Add optional
3034 display argument and use it.
3035 * term/w32-win.el (w32-initialize-window-system):
3036 * term/ns-win.el (ns-initialize-window-system):
3037 * term/pc-win.el (msdos-initialize-window-system):
3038 Add compatible optional display argument.
3039
3040 2013-04-06 Eli Zaretskii <eliz@gnu.org>
3041
3042 * files.el (normal-backup-enable-predicate): On MS-Windows and
3043 MS-DOS compare truenames of temporary-file-directory and of the
3044 file, so that 8+3 aliases (usually found in $TEMP on Windows)
3045 don't fail comparison by compare-strings. Also, compare file
3046 names case-insensitively on MS-Windows and MS-DOS.
3047
3048 2013-04-05 Stefan Monnier <monnier@iro.umontreal.ca>
3049
3050 * emacs-lisp/package.el (package-compute-transaction): Fix last fix.
3051 Suggested by Donald Curtis <dcurtis@coe.edu> (bug#14082).
3052
3053 2013-04-05 Dmitry Gutov <dgutov@yandex.ru>
3054
3055 * whitespace.el (whitespace-color-on, whitespace-color-off):
3056 Only call `font-lock-fontify-buffer' when `font-lock-mode' is on.
3057
3058 2013-04-05 Jacek Chrząszcz <chrzaszcz@mimuw.edu.pl> (tiny change)
3059
3060 * ispell.el (ispell-set-spellchecker-params):
3061 Really set `ispell-args' for all equivs.
3062
3063 2013-04-05 Stefan Monnier <monnier@iro.umontreal.ca>
3064
3065 * ido.el (ido-completions): Use extra elements of ido-decorations
3066 (bug#14143).
3067 (ido-decorations): Update docstring.
3068
3069 2013-04-05 Michael Albinus <michael.albinus@gmx.de>
3070
3071 * autorevert.el (auto-revert-mode, auto-revert-tail-mode)
3072 (global-auto-revert-mode): Let-bind `auto-revert-use-notify' to
3073 nil during initialization, in order not to miss changes since the
3074 file was opened. (Bug#14140)
3075
3076 2013-04-05 Leo Liu <sdl.web@gmail.com>
3077
3078 * kmacro.el (kmacro-call-macro): Fix bug#14135.
3079
3080 2013-04-05 Jay Belanger <jay.p.belanger@gmail.com>
3081
3082 * calc/calc-units.el (calc-convert-units): Rewrite conditional.
3083
3084 2013-04-04 Glenn Morris <rgm@gnu.org>
3085
3086 * electric.el (electric-pair-inhibit-predicate): Add :version.
3087
3088 2013-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
3089
3090 * emacs-lisp/package.el (package-compute-transaction): Fix ordering
3091 when a package is required several times (bug#14082).
3092
3093 2013-04-04 Roland Winkler <winkler@gnu.org>
3094
3095 * faces.el (read-face-name): Behave as promised by the docstring.
3096 Assume that arg default is a list of faces.
3097 (describe-face): Call read-face-name with list of default faces.
3098
3099 2013-04-04 Thierry Volpiatto <thierry.volpiatto@gmail.com>
3100
3101 * bookmark.el: Fix deletion of bookmarks (bug#13972).
3102 (bookmark-bmenu-list): Don't toggle filenames if alist is empty.
3103 (bookmark-bmenu-execute-deletions): Only skip first line if it's
3104 the header.
3105 (bookmark-exit-hook-internal): Save even if list is empty.
3106
3107 2013-04-04 Yann Hodique <yann.hodique@gmail.com> (tiny change)
3108
3109 * emacs-lisp/package.el (package-pinned-packages): New var.
3110 (package--add-to-archive-contents): Obey it (bug#14118).
3111
3112 2013-04-03 Alan Mackenzie <acm@muc.de>
3113
3114 Handle `parse-partial-sexp' landing inside a comment opener (Bug#13244).
3115 Also adapt to the new values of element 7 of a parse state.
3116
3117 * progmodes/cc-engine.el (c-state-pp-to-literal): New optional
3118 parameter `not-in-delimiter'. Handle being inside comment opener.
3119 (c-invalidate-state-cache-1): Reckon with an extra "invalid"
3120 character in case we're typing a '*' after a '/'.
3121 (c-literal-limits): Handle the awkward "not-in-delimiter" cond arm
3122 instead by passing the parameter to c-state-pp-to-literal.
3123
3124 * progmodes/cc-fonts.el (c-font-lock-doc-comments): New handling
3125 for elt. 7 of a parse state.
3126
3127 2013-04-01 Paul Eggert <eggert@cs.ucla.edu>
3128
3129 Use UTF-8 for most files with non-ASCII characters (Bug#13936).
3130 * international/latin1-disp.el, international/mule-util.el:
3131 * language/cyril-util.el, language/european.el, language/ind-util.el:
3132 * language/lao-util.el, language/thai.el, language/tibet-util.el:
3133 * language/tibetan.el, language/viet-util.el:
3134 Switch from iso-2022-7bit to utf-8 or (if needed) utf-8-emacs.
3135
3136 2013-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
3137
3138 * electric.el (electric-pair-inhibit-predicate): New var (bug#14000).
3139 (electric-pair-post-self-insert-function): Use it.
3140 (electric-pair-default-inhibit): New function, extracted from
3141 electric-pair-post-self-insert-function.
3142
3143 2013-03-31 Roland Winkler <winkler@gnu.org>
3144
3145 * emacs-lisp/crm.el (completing-read-multiple): Doc fix.
3146
3147 2013-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
3148
3149 * hi-lock.el (hi-lock-mode): Cleanup after revert-buffer (bug#13891).
3150
3151 2013-03-30 Fabián Ezequiel Gallina <fabian@anue.biz>
3152
3153 Un-indent after "pass" and "return" statements (Bug#13888)
3154 * progmodes/python.el (python-indent-block-enders): New var.
3155 (python-indent-calculate-indentation): Use it.
3156
3157 2013-03-30 Michael Albinus <michael.albinus@gmx.de>
3158
3159 * net/tramp.el (tramp-drop-volume-letter): Make it an ordinary
3160 defun. Defining it as defalias could introduce too eager
3161 byte-compiler optimization. (Bug#14030)
3162
3163 2013-03-30 Chong Yidong <cyd@gnu.org>
3164
3165 * iswitchb.el (iswitchb-read-buffer): Fix typo.
3166
3167 2013-03-30 Leo Liu <sdl.web@gmail.com>
3168
3169 * kmacro.el (kmacro-call-macro): Add optional arg MACRO.
3170 (kmacro-execute-from-register): Pass the keyboard macro to
3171 kmacro-call-macro or repeating won't work correctly.
3172
3173 2013-03-30 Teodor Zlatanov <tzz@lifelogs.com>
3174
3175 * progmodes/subword.el: Back to using `forward-symbol'.
3176
3177 * subr.el (forward-whitespace, forward-symbol)
3178 (forward-same-syntax): Move from thingatpt.el.
3179
3180 2013-03-29 Leo Liu <sdl.web@gmail.com>
3181
3182 * kmacro.el (kmacro-to-register): New command.
3183 (kmacro-execute-from-register): New function.
3184 (kmacro-keymap): Bind to 'x'. (Bug#14071)
3185
3186 2013-03-29 Stefan Monnier <monnier@iro.umontreal.ca>
3187
3188 * mpc.el: Use defvar-local and setq-local.
3189 (mpc--proc-connect): Connection failures are not bugs.
3190 (mpc-mode-map): `follow-link' only applies to the buffer's content.
3191 (mpc-volume-map): Bind to the up-events.
3192
3193 2013-03-29 Teodor Zlatanov <tzz@lifelogs.com>
3194
3195 * progmodes/subword.el (superword-mode): Use `forward-sexp'
3196 instead of `forward-symbol'.
3197
3198 2013-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
3199
3200 * emacs-lisp/edebug.el (edebug-mode): Make it a minor mode.
3201 (edebug--recursive-edit): Use it.
3202 (edebug-kill-buffer): Don't let-bind kill-buffer-hook.
3203 (edebug-temp-display-freq-count): Don't let-bind buffer-read-only.
3204
3205 2013-03-28 Leo Liu <sdl.web@gmail.com>
3206
3207 * vc/vc-bzr.el (vc-bzr-revert): Don't backup. (Bug#14066)
3208
3209 2013-03-27 Eli Zaretskii <eliz@gnu.org>
3210
3211 * facemenu.el (list-colors-callback): New defvar.
3212 (list-colors-redisplay): New function.
3213 (list-colors-display): Install list-colors-redisplay as the
3214 revert-buffer-function. (Bug#14063)
3215
3216 2013-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
3217
3218 * minibuffer.el (completion-pcm--merge-completions): Make sure prefixes
3219 and suffixes don't overlap (bug#14061).
3220
3221 * case-table.el: Use lexical-binding.
3222 (case-table-get-table): New function.
3223 (get-upcase-table): Use it. Mark as obsolete. Adjust callers.
3224
3225 2013-03-27 Teodor Zlatanov <tzz@lifelogs.com>
3226
3227 * progmodes/subword.el: Add `superword-mode' to do word motion
3228 over symbol_words (parallels and leverages `subword-mode' which
3229 does word motion inside MixedCaseWords).
3230
3231 2013-03-27 Aidan Gauland <aidalgol@no8wireless.co.nz>
3232
3233 * eshell/em-unix.el: Move su and sudo to...
3234 * eshell/em-tramp.el: ...Eshell tramp module.
3235
3236 2013-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
3237
3238 * desktop.el (desktop--v2s): Rename from desktop-internal-v2s.
3239 Change return value to be a sexp. Delay `get-buffer' to after
3240 restoring the desktop (bug#13951).
3241
3242 2013-03-26 Leo Liu <sdl.web@gmail.com>
3243
3244 * register.el: Move semantic tag handling back to
3245 cedet/semantic/senator.el. (Bug#14052)
3246
3247 2013-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
3248
3249 * eshell/em-prompt.el (eshell-emit-prompt): Make sure we can't insert
3250 into the prompt either (bug#13963).
3251
3252 2013-03-25 Stefan Monnier <monnier@iro.umontreal.ca>
3253
3254 * font-lock.el (lisp-font-lock-keywords-2): Don't highlight the "error"
3255 part of "(error-foo)".
3256
3257 2013-03-24 Juri Linkov <juri@jurta.org>
3258
3259 * replace.el (list-matching-lines-prefix-face): New defcustom.
3260 (occur-1): Pass `list-matching-lines-prefix-face' to the function
3261 `occur-engine' if `face-differs-from-default-p' returns t.
3262 (occur-engine): Add `,' inside backquote construct to evaluate
3263 `prefix-face'. Propertize the prefix with the `prefix-face' face.
3264 Pass `prefix-face' to the functions `occur-context-lines' and
3265 `occur-engine-add-prefix'.
3266 (occur-engine-add-prefix, occur-context-lines): Add optional arg
3267 `prefix-face' and propertize the prefix with `prefix-face'.
3268 (Bug#14017)
3269
3270 2013-03-24 Leo Liu <sdl.web@gmail.com>
3271
3272 * nxml/rng-valid.el (rng-validate-while-idle)
3273 (rng-validate-quick-while-idle): Guard against deleted buffer.
3274 (Bug#13999)
3275
3276 * emacs-lisp/edebug.el (edebug-mode): Make sure edebug-kill-buffer
3277 is the last entry in kill-buffer-hook.
3278
3279 * files.el (kill-buffer-hook): Doc fix.
3280
3281 2013-03-23 Dmitry Gutov <dgutov@yandex.ru>
3282
3283 * emacs-lisp/lisp-mode.el (emacs-lisp-docstring-fill-column):
3284 Make it safe-local.
3285
3286 * vc/diff-mode.el (diff-mode-shared-map): Unbind "/" (Bug#14034).
3287
3288 2013-03-23 Leo Liu <sdl.web@gmail.com>
3289
3290 * nxml/nxml-util.el (nxml-with-unmodifying-text-property-changes):
3291 Remove.
3292
3293 * nxml/rng-valid.el (rng-validate-mode)
3294 (rng-after-change-function, rng-do-some-validation):
3295 * nxml/rng-maint.el (rng-validate-buffer):
3296 * nxml/nxml-rap.el (nxml-tokenize-forward, nxml-ensure-scan-up-to-date):
3297 * nxml/nxml-outln.el (nxml-show-all, nxml-set-outline-state):
3298 * nxml/nxml-mode.el (nxml-mode, nxml-degrade, nxml-after-change)
3299 (nxml-extend-after-change-region): Use with-silent-modifications.
3300
3301 * nxml/rng-nxml.el (rng-set-state-after): Do not let-bind
3302 timer-idle-list.
3303
3304 * nxml/rng-valid.el (rng-validate-while-idle-continue-p)
3305 (rng-next-error-1, rng-previous-error-1): Do not let-bind
3306 timer-idle-list. (Bug#13999)
3307
3308 2013-03-23 Juri Linkov <juri@jurta.org>
3309
3310 * info.el (info-index-match): New face.
3311 (Info-index, Info-apropos-matches): Add a nested subgroup to the
3312 main pattern and add text properties with the new face to matches
3313 in index entries relative to the beginning of the index entry.
3314 (Bug#14015)
3315
3316 2013-03-21 Eric Ludlam <zappo@gnu.org>
3317
3318 * eieio/eieio-datadebug.el (data-debug/eieio-insert-slots):
3319 Inhibit read only while inserting objects.
3320
3321 2013-03-22 Teodor Zlatanov <tzz@lifelogs.com>
3322
3323 * progmodes/cfengine.el: Update docs to mention
3324 `cfengine-auto-mode'. Use \_> and \_< instead of \> and \< for
3325 symbol motion. Remove "_" from the word syntax.
3326
3327 2013-03-21 Teodor Zlatanov <tzz@lifelogs.com>
3328
3329 * progmodes/cfengine.el (cfengine-common-syntax): Add "_" to word
3330 syntax for both `cfengine2-mode' and `cfengine3-mode'.
3331
3332 2013-03-20 Juri Linkov <juri@jurta.org>
3333
3334 * info.el (Info-next-reference-or-link)
3335 (Info-prev-reference-or-link): New functions.
3336 (Info-next-reference, Info-prev-reference): Use them.
3337 (Info-try-follow-nearest-node): Handle footnote navigation.
3338 (Info-fontify-node): Fontify footnotes. (Bug#13989)
3339
3340 2013-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
3341
3342 * subr.el (posn-point, posn-string): Fix it here instead (bug#13979).
3343 * mouse.el (mouse-on-link-p): Undo scroll-bar fix.
3344
3345 2013-03-20 Paul Eggert <eggert@cs.ucla.edu>
3346
3347 Suppress unnecessary non-ASCII chatter during build process.
3348 * international/ja-dic-cnv.el (skkdic-collect-okuri-nasi)
3349 (batch-skkdic-convert): Suppress most of the chatter.
3350 It's not needed so much now that machines are faster,
3351 and its non-ASCII component was confusing; see Dmitry Gutov in
3352 <http://lists.gnu.org/archive/html/emacs-devel/2013-03/msg00508.html>.
3353
3354 2013-03-20 Leo Liu <sdl.web@gmail.com>
3355
3356 * ido.el (ido-chop): Fix bug#10994.
3357
3358 2013-03-19 Dmitry Gutov <dgutov@yandex.ru>
3359
3360 * whitespace.el (whitespace-font-lock, whitespace-font-lock-mode):
3361 Remove vars.
3362 (whitespace-color-on, whitespace-color-off):
3363 Use `font-lock-fontify-buffer' (Bug#13817).
3364
3365 2013-03-19 Stefan Monnier <monnier@iro.umontreal.ca>
3366
3367 * mouse.el (mouse--down-1-maybe-follows-link): Fix follow-link
3368 remapping in mode-line.
3369 (mouse-on-link-p): Also check [mode-line follow-link] bindings.
3370
3371 2013-03-19 Dmitry Gutov <dgutov@yandex.ru>
3372
3373 * whitespace.el (whitespace-color-on): Use `prepend' OVERRIDE
3374 value for `whitespace-line' face (Bug#13875).
3375 (whitespace-font-lock-keywords): Change description.
3376 (whitespace-color-on): Don't save `font-lock-keywords' value, save
3377 the constructed keywords instead.
3378 (whitespace-color-off): Use `font-lock-remove-keywords' (Bug#13817).
3379
3380 2013-03-19 Leo Liu <sdl.web@gmail.com>
3381
3382 * progmodes/compile.el (compilation-display-error): New command.
3383 (compilation-mode-map, compilation-minor-mode-map): Bind it to
3384 C-o. (Bug#13992)
3385
3386 2013-03-18 Paul Eggert <eggert@cs.ucla.edu>
3387
3388 * term/x-win.el (x-keysym-pair): Add a Fixme (Bug#13936).
3389
3390 2013-03-18 Jan Djärv <jan.h.d@swipnet.se>
3391
3392 * mouse.el (mouse-on-link-p): Check for scroll bar (Bug#13979).
3393
3394 2013-03-18 Michael Albinus <michael.albinus@gmx.de>
3395
3396 * net/tramp-compat.el (tramp-compat-user-error): New defun.
3397
3398 * net/tramp-adb.el (tramp-adb-handle-shell-command):
3399 * net/tramp-gvfs.el (top):
3400 * net/tramp.el (tramp-find-method, tramp-dissect-file-name)
3401 (tramp-handle-shell-command): Use it.
3402 (tramp-dissect-file-name): Raise an error when hostname is a
3403 method name, and neither method nor user is specified.
3404
3405 * net/trampver.el: Update release number.
3406
3407 2013-03-18 Leo Liu <sdl.web@gmail.com>
3408
3409 Make sure eldoc can be turned off properly.
3410 * emacs-lisp/eldoc.el (eldoc-schedule-timer): Conditionalize on
3411 eldoc-mode.
3412 (eldoc-display-message-p): Revert last change.
3413 (eldoc-display-message-no-interference-p)
3414 (eldoc-print-current-symbol-info): Tweak.
3415
3416 2013-03-18 Tassilo Horn <tsdh@gnu.org>
3417
3418 * doc-view.el (doc-view-new-window-function): Check the new window
3419 overlay's display property instead the char property of the
3420 buffer's first char. Use `with-selected-window' instead of
3421 `save-window-excursion' with `select-window'.
3422 (doc-view-document->bitmap): Check the current doc-view overlay's
3423 display property instead the char property of the buffer's first char.
3424
3425 2013-03-18 Paul Eggert <eggert@cs.ucla.edu>
3426
3427 Automate the build of ja-dic.el (Bug#13984).
3428 * international/ja-dic-cnv.el (skkdic-convert): Remove the annotations
3429 from the input, rather than assume that it's been done for us by the
3430 SKK script unannotate.awk. Switch ja-dic.el to UTF-8. Don't put
3431 the current date into a ja-dic.el comment, as that complicates
3432 regression testing.
3433
3434 2013-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
3435
3436 * whitespace.el: Fix double evaluation.
3437 (whitespace-space, whitespace-hspace, whitespace-tab)
3438 (whitespace-newline, whitespace-trailing, whitespace-line)
3439 (whitespace-space-before-tab, whitespace-indentation)
3440 (whitespace-empty, whitespace-space-after-tab): Turn defcustoms into
3441 obsolete defvars.
3442 (whitespace-hspace-regexp): Fix regexp for emacs-unicode.
3443 (whitespace-color-on): Use a single font-lock-add-keywords call.
3444 Fix double-evaluation of face variables.
3445
3446 2013-03-17 Michael Albinus <michael.albinus@gmx.de>
3447
3448 * net/tramp-adb.el (tramp-adb-parse-device-names):
3449 Use `start-process' instead of `call-process'. Otherwise, the
3450 function might be blocked under MS Windows. (Bug#13299)
3451
3452 2013-03-17 Leo Liu <sdl.web@gmail.com>
3453
3454 Extend eldoc to display info in the mode-line. (Bug#13978)
3455 * emacs-lisp/eldoc.el (eldoc-post-insert-mode): New minor mode.
3456 (eldoc-mode-line-string): New variable.
3457 (eldoc-minibuffer-message): New function.
3458 (eldoc-message-function): New variable.
3459 (eldoc-message): Use it.
3460 (eldoc-display-message-p)
3461 (eldoc-display-message-no-interference-p):
3462 Support eldoc-post-insert-mode.
3463
3464 * simple.el (eval-expression-minibuffer-setup-hook): New hook.
3465 (eval-expression): Run it.
3466
3467 2013-03-17 Roland Winkler <winkler@gnu.org>
3468
3469 * emacs-lisp/crm.el (completing-read-multiple): Ignore empty
3470 strings in the list of return values.
3471
3472 2013-03-17 Jay Belanger <jay.p.belanger@gmail.com>
3473
3474 * calc/calc-ext.el (math-read-number-fancy): Check for an explicit
3475 radix before checking for HMS forms.
3476
3477 2013-03-16 Leo Liu <sdl.web@gmail.com>
3478
3479 * progmodes/scheme.el: Add indentation and font-locking for λ.
3480 (Bug#13975)
3481
3482 2013-03-16 Stefan Monnier <monnier@iro.umontreal.ca>
3483
3484 * emacs-lisp/smie.el (smie-auto-fill): Don't inf-loop if there's no
3485 token before point (bug#13942).
3486
3487 2013-03-16 Leo Liu <sdl.web@gmail.com>
3488
3489 * thingatpt.el (end-of-sexp): Fix bug#13952. Use syntax-after.
3490
3491 2013-03-16 Eli Zaretskii <eliz@gnu.org>
3492
3493 * startup.el (command-line-normalize-file-name): Fix handling of
3494 backslashes in DOS and Windows file names. Reported by Xue Fuqiao
3495 <xfq.free@gmail.com> in
3496 http://lists.gnu.org/archive/html/help-gnu-emacs/2013-03/msg00245.html.
3497
3498 2013-03-15 Michael Albinus <michael.albinus@gmx.de>
3499
3500 Sync with Tramp 2.2.7.
3501
3502 * net/trampver.el: Update release number.
3503
3504 2013-03-14 Tassilo Horn <tsdh@gnu.org>
3505
3506 * doc-view.el Fix bug#13887.
3507 (doc-view-insert-image): Don't modify overlay associated to
3508 non-live windows, and implement horizontal centering of image in
3509 case it's smaller than the window.
3510 (doc-view-new-window-function): Force redisplay of new windows on
3511 doc-view buffers.
3512
3513 2013-03-13 Karl Fogel <kfogel@red-bean.com>
3514
3515 * saveplace.el (save-place-alist-to-file): Don't sort
3516 `save-place-alist', just pretty-print it (bug#13882).
3517
3518 2013-03-13 Michael Albinus <michael.albinus@gmx.de>
3519
3520 * net/tramp-sh.el (tramp-sh-handle-insert-directory): Check,
3521 whether `default-file-name-coding-system' is bound. It isn't in
3522 XEmacs.
3523
3524 2013-03-13 Stefan Monnier <monnier@iro.umontreal.ca>
3525
3526 * emacs-lisp/byte-run.el (defun-declarations-alist): Don't use
3527 backquotes for `obsolete' (bug#13929).
3528
3529 * international/mule.el (find-auto-coding): Include file name in
3530 obsolescence warning (bug#13922).
3531
3532 2013-03-12 Teodor Zlatanov <tzz@lifelogs.com>
3533
3534 * progmodes/cfengine.el (cfengine-parameters-indent): New variable
3535 for CFEngine 3-specific indentation.
3536 (cfengine3-indent-line): Use it. Fix up category regex.
3537 (cfengine3-font-lock-keywords): Add bundle and namespace characters.
3538
3539 2013-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
3540
3541 * type-break.el (type-break-file-name):
3542 * textmodes/remember.el (remember-data-file):
3543 * strokes.el (strokes-file):
3544 * shadowfile.el (shadow-initialize):
3545 * saveplace.el (save-place-file):
3546 * ps-bdf.el (bdf-cache-file):
3547 * progmodes/idlwave.el (idlwave-config-directory):
3548 * net/quickurl.el (quickurl-url-file):
3549 * international/kkc.el (kkc-init-file-name):
3550 * ido.el (ido-save-directory-list-file):
3551 * emulation/viper.el (viper-custom-file-name):
3552 * emulation/vip.el (vip-startup-file):
3553 * calendar/todo-mode.el (todo-file-do, todo-file-done, todo-file-top):
3554 * calendar/timeclock.el (timeclock-file): Use locate-user-emacs-file.
3555
3556 2013-03-12 Paul Eggert <eggert@cs.ucla.edu>
3557
3558 Switch encodings of tutorials, thai-word to UTF-8 (Bug#13880).
3559 * language/thai-word.el: Switch to UTF-8.
3560
3561 2013-03-11 Stefan Monnier <monnier@iro.umontreal.ca>
3562
3563 * recentf.el (recentf-save-file): Use locate-user-emacs-file (bug#13870).
3564
3565 2013-03-11 Thierry Volpiatto <thierry.volpiatto@gmail.com>
3566
3567 * net/net-utils.el (net-utils-remove-ctrl-m-filter):
3568 Use with-current-buffer and don't move point.
3569 (net-utils-run-simple): Remove useless code.
3570 (net-utils-remove-ctl-m): Remove unused custom.
3571
3572 2013-03-11 Per Starbäck <starback@stp.lingfil.uu.se>
3573
3574 * international/characters.el (glyphless-set-char-table-range): New fun.
3575 (update-glyphless-char-display): Use it (bug#13744).
3576
3577 2013-03-11 Teodor Zlatanov <tzz@lifelogs.com>
3578
3579 * progmodes/cfengine.el: Update for CFEngine 3.4.2 and higher:
3580 namespaces in the syntax, indent closer for hanging brace
3581 correctly, allow single-quote delimited 'strings', and make
3582 `cfengine3-mode' the default.
3583
3584 2013-03-11 Jean-Philippe Gravel <jpgravel@gmail.com>
3585
3586 * progmodes/gdb-mi.el: Speed up initialization (bug#10580).
3587 Use lexical-binding. Fix up docstring according to conventions.
3588 (gdbmi-debug-mode): New var.
3589 (gdbmi-start-with, gdbmi-same-start, gdbmi-is-number, gdbmi-bnf-init)
3590 (gdbmi-bnf-output, gdbmi-bnf-skip-unrecognized, gdbmi-bnf-gdb-prompt)
3591 (gdbmi-bnf-result-record, gdbmi-bnf-out-of-band-record)
3592 (gdbmi-bnf-async-record, gdbmi-bnf-stream-record)
3593 (gdbmi-bnf-console-stream-output, gdbmi-bnf-target-stream-output)
3594 (gdbmi-bnf-log-stream-output, gdbmi-bnf-result-and-async-record-impl)
3595 (gdbmi-bnf-incomplete-record-result): New functions.
3596 (gdb-car<): Remove function.
3597 (gdbmi-record-list): Remove variable.
3598 (gdbmi-bnf-state, gdbmi-bnf-offset): New vars.
3599 (gdbmi-bnf-result-state-configs): New const.
3600 (gud-gdbmi-marker-filter): Rewrite.
3601 (gdb-ignored-notification, gdb-thread-created, gdb-thread-exited)
3602 (gdb-thread-selected, gdb-running, gdb-starting, gdb-stopped):
3603 Add `token' argument.
3604 (gdb-done, gdb-error): New functions.
3605 (gdb-done-or-error): Add `is-complete' argument. Change arg order.
3606
3607 2013-03-11 Stefan Monnier <monnier@iro.umontreal.ca>
3608
3609 * term/xterm.el (xterm--report-background-handler): Don't burp
3610 upon timeout.
3611 (xterm--version-handler): Extract from terminal-init-xterm.
3612 (xterm--query): Don't mishandle timeout. Remove debugging messages.
3613 Allow multiple handlers.
3614 (terminal-init-xterm): Handle OSX's Terminal.app's incorrect answer.
3615
3616 * term/xterm.el: Don't discard input (bug#6758). Use lexical-binding.
3617 (xterm--report-background-handler, xterm--query): New functions.
3618 (terminal-init-xterm): Use them.
3619
3620 2013-03-11 Michael R. Mauger <michael@mauger.com>
3621
3622 * progmodes/sql.el Version 3.2
3623 Please note that my address changed to <michael@mauger.com>;
3624 the <mmaug@yahoo.com> address remains active.
3625 (sql-connection-alist): Updates documentation to fix bug#13715.
3626 (sql-connect): Handle missing `sql-connection-alist' correctly.
3627 (sql-mode-oracle-font-lock-keywords): Add missing keywords.
3628 (sql-magic-go, sql-magic-semicolon): Mark with `delete-selection'
3629 property.
3630 (sql-default-value): New function.
3631 (sql-get-login-ext, sql-get-login): Fixes bug where buffer-local
3632 values were not used.
3633 (sql-rename-buffer): Make sure alternate buffer name has no text
3634 properties.
3635 (sql-input-sender, sql-execute-feature): Fetch variable with
3636 `buffer-local-value' rather than `with-current-buffer'.
3637 (sql-*): Use #' function syntax consistently.
3638 (sql-*): Use message/error/user-error consistently.
3639
3640 2013-03-11 Stefan Monnier <monnier@iro.umontreal.ca>
3641
3642 * xt-mouse.el (xterm-mouse-event-read): Remove.
3643 (xterm-mouse--read-event-sequence-1000)
3644 (xterm-mouse--read-event-sequence-1006): Use read-event instead.
3645
3646 2013-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
3647
3648 * term/xterm.el (xterm-function-map): Support format used with
3649 formatOtherKeys=1 (bug#13839).
3650
3651 * emacs-lisp/byte-run.el (dont-compile): Declare obsolete.
3652 (with-no-warnings): Use `declare'.
3653
3654 * whitespace.el (whitespace-enable-predicate): New variable.
3655 (whitespace-enable-predicate): Use it.
3656
3657 * comint.el (comint-send-input, comint-snapshot-last-prompt)
3658 (comint-output-filter, comint-update-fence):
3659 Use with-silent-modifications.
3660
3661 2013-03-10 Jambunathan K <kjambunathan@gmail.com>
3662
3663 * replace.el (occur-read-regexp-defaults-function): New var.
3664 (occur-read-regexp-defaults): New defun.
3665 (occur-read-primary-args): Propagate above change (bug#13892).
3666
3667 2013-03-09 Stefan Monnier <monnier@iro.umontreal.ca>
3668
3669 * mouse.el (mouse-drag-track): Remove left-over debugging code.
3670
3671 2013-03-09 Michael Albinus <michael.albinus@gmx.de>
3672
3673 Major rewrite due to changed D-Bus interface of GVFS 1.14.
3674
3675 * net/tramp-gvfs.el (top): Extend check for gvfs availability.
3676 (tramp-gvfs-methods-mounttracker, tramp-gvfs-listmounts)
3677 (tramp-gvfs-mountlocation, tramp-gvfs-mountlocation-signature):
3678 New defconst.
3679 (tramp-gvfs-file-name-handler-alist) [directory-files]
3680 [directory-files-and-attributes, file-exists-p, file-modes]:
3681 Use Tramp default handler.
3682 [file-acl, file-selinux-context, process-file, set-file-acl]:
3683 [set-file-modes, set-file-selinux-context, shell-command]:
3684 [start-file-process]: Remove handler.
3685 [verify-visited-file-modtime]: New handler.
3686 (tramp-gvfs-dbus-string-to-byte-array)
3687 (tramp-gvfs-dbus-byte-array-to-string): New defuns. Replace all
3688 calls of `dbus-string-to-byte-array' and
3689 `tramp-gvfs-dbus-byte-array-to-string'.
3690 (tramp-gvfs-handle-copy-file)
3691 (tramp-gvfs-handle-delete-directory)
3692 (tramp-gvfs-handle-delete-file, tramp-gvfs-handle-file-attributes)
3693 (tramp-gvfs-handle-file-directory-p)
3694 (tramp-gvfs-handle-file-executable-p)
3695 (tramp-gvfs-handle-file-name-all-completions)
3696 (tramp-gvfs-handle-file-readable-p)
3697 (tramp-gvfs-handle-file-writable-p)
3698 (tramp-gvfs-handle-insert-directory)
3699 (tramp-gvfs-handle-insert-file-contents)
3700 (tramp-gvfs-handle-make-directory, tramp-gvfs-handle-rename-file)
3701 (tramp-gvfs-handle-set-visited-file-modtime)
3702 (tramp-gvfs-handle-write-region): Rewrite.
3703 (tramp-gvfs-handle-file-acl)
3704 (tramp-gvfs-handle-file-selinux-context)
3705 (tramp-gvfs-handle-process-file, tramp-gvfs-handle-set-file-acl)
3706 (tramp-gvfs-handle-set-file-modes)
3707 (tramp-gvfs-handle-set-file-selinux-context)
3708 (tramp-gvfs-handle-shell-command)
3709 (tramp-gvfs-handle-start-file-process)
3710 (tramp-gvfs-handle-verify-visited-file-modtime): Remove defuns.
3711 (tramp-gvfs-url-file-name): Do not use `file-truename', we work
3712 over the symlinks. Fix user handling.
3713 (top, tramp-gvfs-handler-mounted-unmounted): Handle different names
3714 of the D-Bus signals.
3715 (tramp-gvfs-connection-mounted-p): Handle different names of the
3716 D-Bus methods.
3717 (tramp-gvfs-mount-spec-entry): New defun.
3718 (tramp-gvfs-mount-spec): Use it.
3719 (tramp-gvfs-maybe-open-connection): Check, that in case of "smb"
3720 there is a share name. Handle different names of the D-Bus
3721 signals and methods. Set connection properties needed for
3722 `tramp-check-cached-permissions'.
3723 (tramp-gvfs-send-command): Apply `tramp-gvfs-maybe-open-connection'.
3724 Return t or nil.
3725
3726 * net/tramp.el (tramp-backtrace): Move up.
3727 (tramp-error): Dump a backtrace into the debug buffer when
3728 `tramp-verbose > 9.
3729 (tramp-file-mode-type-map, tramp-file-mode-from-int)
3730 (tramp-file-mode-permissions, tramp-get-local-uid)
3731 (tramp-get-local-gid, tramp-check-cached-permissions): Move from
3732 tramp-sh.el.
3733
3734 * net/tramp-sh.el (tramp-file-mode-type-map)
3735 (tramp-check-cached-permissions, tramp-file-mode-from-int)
3736 (tramp-file-mode-permissions, tramp-get-local-uid)
3737 (tramp-get-local-gid): Move to tramp.el.
3738
3739 2013-03-09 Stefan Monnier <monnier@iro.umontreal.ca>
3740
3741 Separate mouse-1-click-follows-link from mouse-drag-region.
3742 * mouse.el (mouse--down-1-maybe-follows-link): New function.
3743 (key-translation-map): Use it to implement mouse-1-click-follows-link.
3744 (mouse-drag-line, mouse-drag-track):
3745 Remove mouse-1-click-follows-link code.
3746 (mouse--remap-link-click-p): Remove.
3747
3748 2013-03-08 Jambunathan K <kjambunathan@gmail.com>
3749
3750 * hi-lock.el (hi-lock-read-regexp-defaults-function): New var.
3751 (hi-lock-read-regexp-defaults): New defun.
3752 (hi-lock-line-face-buffer, hi-lock-face-buffer)
3753 (hi-lock-face-phrase-buffer): Propagate above change.
3754 Update docstring (bug#13892).
3755
3756 * subr.el (find-tag-default-as-regexp): New defun.
3757 * replace.el (read-regexp): Propagate above change.
3758
3759 2013-03-08 Jay Belanger <jay.p.belanger@gmail.com>
3760
3761 * calc/calc-units.el (calc-convert-units): Fix the way that default
3762 new units are stored.
3763
3764 2013-03-07 Matthias Meulien <orontee@gmail.com>
3765
3766 * bookmark.el: Define a face to highlight bookmark names in
3767 bookmark menu buffers, where the default is a bold face similarly
3768 to buffer names in buffer menu buffers.
3769 (bookmark-menu-bookmark): New face to highlight bookmark names.
3770 (bookmark-insert-location): Remove duplicated text property to
3771 conform to buffer list (see `list-buffers').
3772 (bookmark-bmenu-list, bookmark-bmenu-hide-filenames): Apply face
3773 `bookmark-menu-bookmark' to bookmark names.
3774
3775 2013-03-07 Matthias Meulien <orontee@gmail.com>
3776 Karl Fogel <kfogel@red-bean.com>
3777
3778 * bookmark.el: Display the bookmark list header similarly to the
3779 buffer list header (see `list-buffers'), where the default is now
3780 an immovable/immutable header line.
3781 (bookmark-bmenu-use-header-line): New variable.
3782 (bookmark-bmenu-inline-header-height): New name for
3783 `bookmark-bmenu-header-height', to avoid confusion with the code
3784 for the new immovable header. All references changed.
3785 (bookmark-bmenu-set-header): New function.
3786 (bookmark-bmenu-list, bookmark-bmenu-toggle-filenames):
3787 Conditionalize header construction accordingly.
3788 (bookmark-bmenu-ensure-position): Conditionalize the skipping of
3789 the inline header height.
3790 (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames):
3791 Conditionalize the skipping of the inline header height.
3792
3793 2013-03-07 Dmitry Gutov <dgutov@yandex.ru>
3794
3795 * progmodes/js.el (js--multi-line-declaration-indentation):
3796 Merge from js2-mode (https://github.com/mooz/js2-mode/issues/89).
3797
3798 2013-03-06 Dmitry Gutov <dgutov@yandex.ru>
3799
3800 * progmodes/ruby-mode.el (ruby-syntax-propertize-function):
3801 Only propertize regexp when not inside a string (Bug#13885).
3802
3803 2013-03-06 Alan Mackenzie <acm@muc.de>
3804
3805 Correct the position of point in some line-up functions.
3806 * progmodes/cc-align.el (c-lineup-whitesmith-in-block)
3807 (c-lineup-assignments, c-lineup-gcc-asm-reg ): Take position of
3808 point at column 0 rather than at a random place in the line.
3809
3810 2013-03-05 Michael Albinus <michael.albinus@gmx.de>
3811
3812 * net/tramp-compat.el (tramp-compat-delete-directory):
3813 Implement TRASH argument.
3814
3815 2013-03-05 Dmitry Gutov <dgutov@yandex.ru>
3816
3817 Keep pre-existing highlighting in completion candidates (Bug#13250).
3818 * minibuffer.el (completions-first-difference): State that the
3819 face is "added" in the docstring.
3820 (completions-common-part): Same. And don't inherit from default.
3821 (completion-hilit-commonality): Prepend 'completions-common-part
3822 and 'completion-first-difference faces to the 'face property,
3823 instead of replacing the value(s).
3824 (completion--insert-strings): Same with 'completions-annotations face.
3825 (completion-hilit-commonality): Use 'face instead of
3826 'font-lock-face, because it gets priority if the completion
3827 strings already have 'face set.
3828
3829 2013-03-04 Alan Mackenzie <acm@muc.de>
3830
3831 Replace `last-command-event' by `last-command-char' in XEmacs.
3832 * progmodes/cc-defs.el (c-last-command-char): New macro.
3833 * progmodes/cc-align.el (c-semi&comma-inside-parenlist)
3834 (c-semi&comma-no-newlines-before-nonblanks)
3835 (c-semi&comma-no-newlines-for-oneline-inliners): Use the new macro
3836 in place of `last-command-event'.
3837 * progmodes/cc-cmds.el (c-electric-pound, c-electric-brace)
3838 (c-electric-slash, c-electric-semi&comma, c-electric-lt-gt)
3839 (c-electric-paren, c-electric-continued-statement): Use the new
3840 macro in place of `last-command-event'.
3841
3842 2013-03-04 Glenn Morris <rgm@gnu.org>
3843
3844 * files.el (inhibit-local-variables-regexps):
3845 Add .diff and .patch. (Bug#13862)
3846
3847 2013-03-03 Michael Albinus <michael.albinus@gmx.de>
3848
3849 * net/tramp-adb.el (tramp-adb-maybe-open-connection): Cache,
3850 whether the "su" command is available on the device.
3851
3852 2013-03-01 Michael Albinus <michael.albinus@gmx.de>
3853
3854 * net/tramp-adb.el (tramp-adb-prompt): Extend regexp.
3855 (tramp-adb-handle-process-file): Remove superfluous setting.
3856 (tramp-adb-command-exit-status): Handle case that COMMAND is nil.
3857 (tramp-adb-barf-unless-okay): Use `tramp-adb-command-exit-status'.
3858 (tramp-adb-maybe-open-connection): Apply "su" if user is defined.
3859
3860 2013-03-01 Stefan Monnier <monnier@iro.umontreal.ca>
3861
3862 * textmodes/ispell.el: Fix nitpicks and byte-compiler warnings.
3863 (ispell-print-if-debug): Build `format' in. Avoid end-of-buffer.
3864 (ispell-parse-hunspell-affix-file): Avoid beginning-of-buffer.
3865 Use dict-key rather than dict-name for the error message.
3866
3867 2013-03-01 Thierry Volpiatto <thierry.volpiatto@gmail.com>
3868
3869 * net/net-utils.el (net-utils-run-simple): Don't display-buffer
3870 when reverting (bug#13831).
3871
3872 2013-03-01 Agustín Martín Domingo <agustin.martin@hispalinux.es>
3873
3874 * textmodes/ispell.el (ispell-find-hunspell-dictionaries):
3875 Always expand affix-file before storing to protect against changed
3876 `default-directory'.
3877 (ispell-print-if-debug): Make sure message is printed at the end
3878 of the debug buffer.
3879
3880 2013-03-01 Michael Albinus <michael.albinus@gmx.de>
3881
3882 * net/tramp.el (tramp-obsolete-methods): New defconst.
3883 (tramp-warned-obsolete-methods): New defvar.
3884 (tramp-find-method): Check for obsolete methods. Map them to a
3885 replacement method if appropriate.
3886
3887 * net/tramp-sh.el (tramp-methods) [scp1, scp2, ssh1, ssh2, plink1]:
3888 Remove methods.
3889 (top): Remove completion functions for "scp1", "scp2", "ssh1",
3890 "ssh2" and "plink1".
3891
3892 2013-02-28 Dale Sedivec <dale@codefu.org>
3893
3894 * textmodes/sgml-mode.el (sgml-syntax-propertize-function):
3895 Return valid syntax-table property value when converting
3896 quotes within text from string syntax to punctuation syntax (bug#13844).
3897
3898 2013-02-28 Juri Linkov <juri@jurta.org>
3899
3900 * dired-aux.el (dired-diff): If file at point is a backup file,
3901 use its original as the default value, and reverse the order
3902 of arguments to the `diff' call. Doc fix. (Bug#13772)
3903
3904 2013-02-28 Michael Albinus <michael.albinus@gmx.de>
3905
3906 * net/tramp-adb.el (tramp-adb-sdk-dir): Remove. Replaced by ...
3907 (tramp-adb-program): New defcustom. Remove function. Adapt calls.
3908
3909 2013-02-28 Agustín Martín Domingo <agustin.martin@hispalinux.es>
3910
3911 Initial support for hunspell dictionaries auto-detection (Bug#13639)
3912
3913 * textmodes/ispell.el (ispell-find-hunspell-dictionaries):
3914 Ask hunspell about available and default dictionaries.
3915 (ispell-parse-hunspell-affix-file): Extract relevant info from
3916 hunspell affix file.
3917 (ispell-hunspell-fill-dictionary-entry): Fill non-initialized
3918 `ispell-dictionary-alist' entry for given dictionary after info
3919 provided by `ispell-parse-hunspell-affix-file'.
3920 (ispell-hunspell-dict-paths-alist): New defvar to contain an alist
3921 of parsed hunspell dicts and associated affix files.
3922 (ispell-hunspell-dictionary-alist): New defvar to contain an alist
3923 of parsed hunspell dicts and associated parameters.
3924 (ispell-set-spellchecker-params):
3925 Call `ispell-find-hunspell-dictionaries' if hunspell and not
3926 previously done.
3927 (ispell-start-process):
3928 Call `ispell-hunspell-fill-dictionary-entry' for current
3929 dictionary if it is not initialized.
3930
3931 2013-02-28 Stefan Monnier <monnier@iro.umontreal.ca>
3932
3933 * imenu.el: Comment nitpicks.
3934
3935 2013-02-28 Sam Steingold <sds@gnu.org>
3936
3937 * vc/diff-mode.el (diff-hunk-file-names): Handle filenames with spaces.
3938 See <http://stackoverflow.com/questions/14720205>.
3939
3940 2013-02-28 Thierry Volpiatto <thierry.volpiatto@gmail.com>
3941
3942 * net/net-utils.el (net-utils--revert-function): New fun (bug#13831).
3943 (net-utils-mode): Use it.
3944 (net-utils--revert-cmd): New var.
3945 (net-utils-run-simple): Set it, and remove bogus interactive spec.
3946 (traceroute): Use net-utils-run-simple.
3947
3948 2013-02-28 Glenn Morris <rgm@gnu.org>
3949
3950 * textmodes/paragraphs.el (mark-paragraph): Doc fix.
3951
3952 2013-02-28 Stefan Monnier <monnier@iro.umontreal.ca>
3953
3954 * doc-view.el: Preserve h&v scroll across C-c C-c C-c C-c.
3955 (doc-view-fallback-mode): Remove overlays here.
3956 (doc-view-toggle-display): Instead of here. Don't throw away
3957 image-mode-winprops-alist.
3958 (doc-view-goto-page): Don't mess with hscroll.
3959
3960 2013-02-27 Thierry Volpiatto <thierry.volpiatto@gmail.com>
3961
3962 * font-lock.el (lisp-font-lock-keywords-2): Fix highlighting of
3963 &optional (bug#13819).
3964
3965 2013-02-27 Michael Albinus <michael.albinus@gmx.de>
3966
3967 * net/tramp-adb.el (tramp-adb-parse-device-names)
3968 (tramp-adb-maybe-open-connection): Add timeouts. (Bug#13299)
3969
3970 2013-02-26 Michael Albinus <michael.albinus@gmx.de>
3971
3972 * net/tramp-sh.el (tramp-sh-handle-insert-directory):
3973 Add "2>/dev/null" to the ls command, in case "en_US.utf8" is not
3974 defined. POSIX environments fall back to the "C" locale then and
3975 emit a warning, which shall be suppressed.
3976
3977 2013-02-26 Stefan Monnier <monnier@iro.umontreal.ca>
3978
3979 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode): Tweak logic.
3980 (easy-mmode-set-keymap-parents): Use make-composed-keymap.
3981
3982 2013-02-25 Stefan Monnier <monnier@iro.umontreal.ca>
3983
3984 * emacs-lisp/bytecomp.el (byte-compile-file): Use let.
3985
3986 2013-02-25 Juri Linkov <juri@jurta.org>
3987
3988 * replace.el (read-regexp): Let-bind `default' to the first
3989 element of `defaults' if it's a list, otherwise it should be
3990 a string or nil. Let-bind `suggestions' to `defaults' if it's
3991 a list, otherwise make a list with the string value. Doc fix.
3992 (Bug#13805)
3993
3994 2013-02-25 Eli Zaretskii <eliz@gnu.org>
3995
3996 * emacs-lisp/bytecomp.el (byte-recompile-directory): Reject files
3997 that match "\`\.#", to avoid compiling lock files, even if they
3998 are readable (as they are on MS-Windows).
3999
4000 2013-02-25 Stefan Monnier <monnier@iro.umontreal.ca>
4001
4002 * files.el (basic-save-buffer): Remove redundant directory-creation.
4003
4004 2013-02-24 Jay Belanger <jay.p.belanger@gmail.com>
4005
4006 * calc/calc-ext.el (math-to-radians-2, math-from-radians-2):
4007 Add option to force `pi' to remain symbolic.
4008 * calc/calcalg2.el (calcFunc-sin, calcFunc-cos, calcFunc-tan)
4009 (calcFunc-cot, calcFunc-csc, calcFunc-sec, calcFunc-arcsin)
4010 (calcFunc-arccos, calcFunc-arctan): Use symbolic `pi' in the
4011 derivatives, when necessary.
4012
4013 2013-02-23 Peter Kleiweg <p.c.j.kleiweg@rug.nl>
4014
4015 * progmodes/ps-mode.el (ps-mode-version): Bump to 1.1i.
4016 (ps-mode-octal-region): Use string-make-unibyte.
4017
4018 2013-02-23 Glenn Morris <rgm@gnu.org>
4019
4020 * emulation/viper-cmd.el (viper-submit-report):
4021 * progmodes/ps-mode.el (ps-mode-maintainer-address):
4022 * progmodes/vera-mode.el (vera-mode-help-address):
4023 * textmodes/artist.el (artist-maintainer-address):
4024 * textmodes/reftex.el (reftex-report-bug):
4025 * vc/ediff-util.el (ediff-submit-report):
4026 Add bug-gnu-emacs to bug report address.
4027
4028 * progmodes/simula.el (simula-mode-menu, simula-mode-map):
4029 Remove bug report entries.
4030 (simula-mode-help-address, simula-submit-bug-report): Make obsolete.
4031
4032 * emacs-lisp/bytecomp.el (byte-compile-level): New.
4033 (byte-compile-file, byte-compile-from-buffer):
4034 Use separate input/output buffers for each level of recursive
4035 byte-compile-file calls. (Bug#13787)
4036
4037 2013-02-23 Michael Albinus <michael.albinus@gmx.de>
4038
4039 * net/tramp.el (tramp-methods): Fix docstring.
4040 (tramp-ssh-controlmaster-options): Rename it from
4041 `tramp-ssh-controlmaster-template'. Return a string.
4042 (tramp-default-method): Adapt check for
4043 `tramp-ssh-controlmaster-options'.
4044
4045 * net/tramp-sh.el (tramp-methods):
4046 Replace `tramp-ssh-controlmaster-template' by "%c".
4047 (tramp-do-copy-or-rename-file-out-of-band)
4048 (tramp-maybe-open-connection): Use it in format spec. Ensure,
4049 that it is applied for the first hop only.
4050
4051 2013-02-22 Juri Linkov <juri@jurta.org>
4052
4053 * isearch.el (isearch-lazy-highlight-new-loop):
4054 Set `isearch-lazy-highlight-start' and `isearch-lazy-highlight-end'
4055 to `isearch-other-end' if it is not nil. (Bug#13402)
4056
4057 * replace.el (replace-highlight): Let-bind `isearch-other-end'
4058 to `match-beg'.
4059
4060 * textmodes/ispell.el (ispell-highlight-spelling-error-overlay):
4061 Let-bind `isearch-other-end' to `start', `isearch-forward' to t
4062 and `isearch-error' to nil.
4063
4064 2013-03-16 Fabián Ezequiel Gallina <fgallina@cuca>
4065
4066 * progmodes/python.el (python-info-current-defun):
4067 Enhance match-data cluttering prevention.
4068
4069 2013-02-22 Michael Albinus <michael.albinus@gmx.de>
4070
4071 * net/tramp.el (tramp-tramp-file-p): Fix docstring.
4072
4073 * net/tramp-sh.el (tramp-sh-handle-insert-directory):
4074 Handle multibyte file names.
4075
4076 2013-02-22 Glenn Morris <rgm@gnu.org>
4077
4078 * textmodes/sgml-mode.el (sgml-xml-mode): Move before use.
4079 (sgml-transformation-function): Give it a :set function.
4080 (sgml-tag): Doc fix.
4081
4082 * cmuscheme.el (scheme-buffer):
4083 * progmodes/inf-lisp.el (inferior-lisp-buffer):
4084 * progmodes/tcl.el (inferior-tcl-buffer):
4085 * textmodes/tex-mode.el (tex-command): Doc fixes.
4086
4087 * image-mode.el (image-mode): Add mouse bindings for mode-line-process.
4088
4089 * htmlfontify.el (hfy-default-header): Encode title string. (Bug#7457)
4090
4091 2013-02-21 Bastien Guerry <bzg@gnu.org>
4092
4093 * cmuscheme.el (scheme-buffer): Fix docstring. (Bug#13778)
4094
4095 2013-02-21 Fabián Ezequiel Gallina <fgallina@cuca>
4096
4097 * progmodes/python.el (python-info-current-defun):
4098 Enhance match-data cluttering prevention.
4099
4100 2013-02-21 Glenn Morris <rgm@gnu.org>
4101
4102 * net/tramp.el (tramp-get-debug-buffer): Ensure outline.el is not
4103 loaded while outline-regexp is let bound. (Bug#9584)
4104
4105 2013-02-21 Fabián Ezequiel Gallina <fgallina@cuca>
4106
4107 * progmodes/python.el (python-info-current-defun): Fix failed
4108 defun name retrieval because of unwanted match-data cluttering.
4109
4110 2013-02-21 Michael Albinus <michael.albinus@gmx.de>
4111
4112 * net/tramp.el (tramp-ssh-controlmaster-template): Make it a
4113 defconst. Apply independent check for ControlPersist.
4114
4115 * net/tramp-sh.el (tramp-sh-handle-set-file-times): Set $UTC only
4116 temporarily, via "env".
4117
4118 2013-02-21 Glenn Morris <rgm@gnu.org>
4119
4120 * info.el (Info-enable-edit): Remove.
4121 (Info-edit): Disable it rather than using Info-enable.
4122 (Info-edit-mode-hook, Info-edit-map, Info-edit-mode, Info-edit)
4123 (Info-cease-edit): Make editing of Info files obsolete.
4124
4125 * informat.el (Info-tagify):
4126 Handle buffers not visiting files. (Bug#13763)
4127
4128 2013-02-21 Juanma Barranquero <lekktu@gmail.com>
4129
4130 * calc/calc-graph.el (calc-graph-show-dumb): Fix typo.
4131
4132 2013-02-21 Glenn Morris <rgm@gnu.org>
4133
4134 * files.el (basic-save-buffer): Move check for existing parent
4135 directory after hooks. (Bug#13773)
4136
4137 2013-02-20 Stefan Monnier <monnier@iro.umontreal.ca>
4138
4139 * simple.el (command-execute): Move from C. Add obsolete check.
4140 (extended-command-history): Move from C.
4141
4142 2013-02-20 Ulrich Müller <ulm@gentoo.org>
4143
4144 * jka-cmpr-hook.el (jka-compr-compression-info-list)
4145 (jka-compr-mode-alist-additions): Handle .txz suffix for
4146 XZ-compressed tar archives (bug#13770).
4147
4148 2013-02-20 Bastien Guerry <bzg@gnu.org>
4149
4150 * outline.el (outline-regexp, outline-heading-end-regexp):
4151 Make variables, not options (bug#13731).
4152
4153 2013-02-20 Glenn Morris <rgm@gnu.org>
4154
4155 * image.el (image-current-frame): Change from variable to function.
4156 (image-show-frame): Rename from image-nth-frame. Update callers.
4157 * image-mode.el (image-multi-frame): New variable.
4158 (image-mode-map, image-mode, image-goto-frame):
4159 Use image-multi-frame rather than image-current-frame.
4160 (image-mode, image-goto-frame): Use image-current-frame as
4161 function rather than as variable.
4162
4163 * emacs-lisp/cl-lib.el (cl-floatp-safe): Make it an alias for floatp.
4164 * emacs-lisp/cl-macs.el (cl--make-type-test)
4165 (cl--compiler-macro-assoc): Use floatp rather than cl-floatp-safe.
4166
4167 2013-02-19 Michael Albinus <michael.albinus@gmx.de>
4168
4169 * net/tramp-cache.el (tramp-get-hash-table): New defun.
4170 (tramp-get-file-property, tramp-set-file-property)
4171 (tramp-get-connection-property, tramp-set-connection-property): Use it.
4172 (tramp-flush-file-property, tramp-flush-directory-property):
4173 Rename argument to KEY.
4174 (tramp-flush-connection-property): Simplify a little bit.
4175 (tramp-connection-property-p): New defun.
4176 (top): Reapply saved values only if there isn't a corresponding
4177 entry in `tramp-connection-properties'.
4178
4179 2013-02-19 Fabián Ezequiel Gallina <fgallina@cuca>
4180
4181 * progmodes/python.el (python-indent-context):
4182 Fix python-info-line-ends-backslash-p call.
4183 (python-info-line-ends-backslash-p)
4184 (python-info-beginning-of-backslash): Respect line-number argument.
4185 (python-info-current-line-comment-p):
4186 Fix behavior when not at beginning-of-line.
4187 (python-util-position): Remove function.
4188 (python-util-goto-line): New function.
4189
4190 2013-02-19 Michael Albinus <michael.albinus@gmx.de>
4191
4192 * eshell/em-unix.el (eshell/su): Require tramp.
4193 (eshell/sudo): Require tramp. Remove now unnecessary check.
4194
4195 * net/tramp-sh.el (tramp-sh-handle-start-file-process): Let-bind
4196 `tramp-current-connection' in order to avoid an error when several
4197 commands are invoked in a short time in eshell and friends.
4198
4199 2013-02-19 Stefan Monnier <monnier@iro.umontreal.ca>
4200
4201 Cleanup some of EIEIO's namespace.
4202 * emacs-lisp/eieio.el (eieio--define-field-accessors): New macro.
4203 Use it to define all the class-* and object-* field accessors (renamed
4204 to eieio--class-* and eieio--object-*). Update all uses.
4205 (eieio--class-num-slots, eieio--object-num-slots): Rename from
4206 class-num-slots and object-num-slots.
4207 (eieio--check-type): New macro.
4208 (eieio-defclass, eieio-oref, eieio-oref-default, same-class-p)
4209 (object-of-class-p, child-of-class-p, object-slots, class-slot-initarg)
4210 (eieio-oset, eieio-oset-default, object-assoc, object-assoc-list)
4211 (object-assoc-list-safe): Use it.
4212 (eieio-defclass): Tighten regexp.
4213 (eieio--defmethod): Use `memq'. Signal an error for unknown method kind.
4214 Remove unreachable code.
4215 (object-class-fast): Declare obsolete.
4216 (eieio-class-name, eieio-object-name, eieio-object-set-name-string)
4217 (eieio-object-class, eieio-object-class-name, eieio-class-parents)
4218 (eieio-class-children, eieio-class-precedence-list, eieio-class-parent):
4219 Rename from class-name, object-name, object-set-name-string,
4220 object-class, object-class-name, class-parents, class-children,
4221 class-precedence-list, class-parent; with obsolete alias.
4222 (class-of, class-direct-superclasses, class-direct-subclasses):
4223 Declare obsolete.
4224 (eieio-defmethod): Use `memq'; remove unreachable code.
4225 * emacs-lisp/eieio-base.el (eieio-persistent-read):
4226 * emacs-lisp/eieio-opt.el (eieio-class-button, eieio-describe-generic)
4227 (eieio-browse-tree, eieio-browse): Use eieio--check-type.
4228
4229 2013-02-18 Aidan Gauland <aidalgol@no8wireless.co.nz>
4230
4231 * eshell/em-cmpl.el: Correct "context-related help" keybinding in
4232 commentary.
4233
4234 2013-02-18 Michael Heerdegen <michael_heerdegen@web.de>
4235
4236 * emacs-lisp/eldoc.el (eldoc-highlight-function-argument):
4237 Use font-lock-keyword-face for macros and special forms (bug#8345).
4238
4239 2013-02-17 Didier Verna <didier@didierverna.net>
4240
4241 * net/network-stream.el (network-stream-open-starttls):
4242 Check that response to the starttls-command is non-nil. (Bug#13706)
4243
4244 2013-02-17 Stefan Monnier <monnier@iro.umontreal.ca>
4245
4246 * font-lock.el (lisp-font-lock-keywords-1, lisp-font-lock-keywords-2):
4247 Don't assume all identifier chars have syntax word.
4248 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
4249 Remove bar-not-symbol. Adjust callers.
4250 (lisp-mode-variables): Don't set a font-lock-syntax-table.
4251
4252 2013-02-17 Leo Liu <sdl.web@gmail.com>
4253
4254 * net/rcirc.el (rcirc-keepalive): Fix invalid timer error.
4255
4256 2013-02-17 Glenn Morris <rgm@gnu.org>
4257
4258 * menu-bar.el (menu-bar-tools-menu): Fix case of EDE entry.
4259
4260 * image-mode.el (image-mode-map): Add image-dired menu entry.
4261
4262 * image-dired.el (tumme): Make this alias obsolete.
4263
4264 2013-02-16 Glenn Morris <rgm@gnu.org>
4265
4266 * image.el (image-animated-types): Remove.
4267 (image-multi-frame-p): Rename from image-animated-p, and generalize.
4268 (image-animated-p): Make obsolete alias.
4269 (image-animate, image-nth-frame, image-animate-timeout):
4270 Use image-multi-frame-p.
4271 (image-animate-timeout): If no delay, use image-default-frame-delay.
4272 * image-mode.el (image-mode, image-toggle-animation):
4273 Use image-multi-frame-p. (Bug#763, bug#10739)
4274 (image-mode): Adjust startup message for a multi-frame image.
4275
4276 * image-mode.el (image-mode-map): Give it a menu.
4277
4278 2013-02-16 Michael Albinus <michael.albinus@gmx.de>
4279
4280 * net/tramp-cache.el (tramp-connection-properties): New customer
4281 option.
4282 (tramp-get-connection-property): Use it.
4283
4284 * net/tramp-compat.el (top): Require 'trampver.
4285
4286 * net/tramp-sh.el (tramp-remote-process-environment):
4287 Set tramp-autoload cookie.
4288
4289 2013-02-16 Kevin Ryde <user42@zip.com.au>
4290
4291 * info-look.el (info-lookup-select-mode): If major-mode has no
4292 info-lookup-alist entry then search up derived-mode-parent (bug#8660).
4293
4294 2013-02-16 Jambunathan K <kjambunathan@gmail.com>
4295
4296 * replace.el (read-regexp): Tighten the regexp that matches tag.
4297 When tag is retrieved with `find-tag-default', use regexp that
4298 matches tag at point. Also update docstring (Bug#13687).
4299
4300 2013-02-16 Eli Zaretskii <eliz@gnu.org>
4301
4302 * autorevert.el (auto-revert-notify-add-watch): With 'w32notify',
4303 add watch for the file, not its parent directory, since w32notify
4304 sets up the watch for the directory internally. (Bug#13725)
4305
4306 2013-02-16 Glenn Morris <rgm@gnu.org>
4307
4308 * image.el (image-default-frame-delay): New variable.
4309 (image-animated-p): Use image-default-frame-delay.
4310 (image-minimum-frame-delay): New constant.
4311 (image-animate-timeout): Use image-minimum-frame-delay.
4312
4313 * image.el (image-nth-frame): New, split from image-animate-timeout.
4314 (image-animate-timeout): Use image-nth-frame.
4315 * image-mode.el (image-goto-frame, image-next-frame)
4316 (image-previous-frame): New commands.
4317 (image-mode-map): Add new frame commands.
4318
4319 2013-02-16 Jonas Bernoulli <jonas@bernoul.li>
4320
4321 * emacs-lisp/tabulated-list.el (tabulated-list-print-col):
4322 If col-desc already has help-echo, use it. (Bug#13563)
4323
4324 2013-02-16 Glenn Morris <rgm@gnu.org>
4325
4326 * image.el (image-current-frame): New variable.
4327 (image-animate-timeout): Set image-current-frame.
4328 * image-mode.el (image-mode): For animated images,
4329 display a frame counter via mode-line-process.
4330
4331 * font-lock.el (lisp-font-lock-keywords-1): Add defvar-local.
4332
4333 2013-02-15 Stefan Monnier <monnier@iro.umontreal.ca>
4334
4335 * simple.el (eval-expression): Let `exp' set the mark (bug#13724).
4336
4337 2013-02-15 Alan Mackenzie <acm@muc.de>
4338
4339 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode): When a
4340 global minor mode has been enabled, call the minor mode function
4341 for a new buffer once only, after the major mode hook, whilst
4342 allowing that hook explicitly to disable the minor mode.
4343 (MODE-disable-in-buffer): New (generated) function.
4344 (disable-MODE): New (generated) buffer local variable.
4345
4346 2013-02-15 Jambunathan K <kjambunathan@gmail.com>
4347
4348 * iswitchb.el (iswitchb-read-buffer): Bind `C-.' and `C-,' to
4349 `iswitchb-next-match' and `iswitchb-prev-match' resply.
4350 * ido.el (ido-init-completion-maps): Bind `C-.' and `C-,' to
4351 `ido-next-match' and `ido-prev-match' resply.
4352 * icomplete.el (icomplete-minibuffer-map): Unbind `C-s' and `C-r'.
4353 Bind `C-.' and `C-,' to `icomplete-forward-completions' and
4354 `icomplete-backward-completions' (Bug#13708).
4355
4356 2013-02-15 Glenn Morris <rgm@gnu.org>
4357
4358 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix.
4359
4360 2013-02-15 Stefan Monnier <monnier@iro.umontreal.ca>
4361
4362 * net/goto-addr.el (goto-address-fontify): Add start and end args.
4363 (goto-address-fontify-region): Use them instead of narrowing, so
4364 syntax-ppss has access to the whole buffer.
4365
4366 2013-02-15 Fabián Ezequiel Gallina <fgallina@cuca>
4367
4368 * progmodes/python.el: Explain how to restore "cc-mode"-like
4369 forward-sexp movement in header documentation (Bug#13642).
4370 (python-nav--forward-sexp): Behave like emacs-lisp-mode in
4371 comments and strings (GH bug 114).
4372
4373 2013-02-15 Fabián Ezequiel Gallina <fgallina@cuca>
4374
4375 * progmodes/python.el (python-info-current-defun): Fix current
4376 defun detection (Bug#13618).
4377
4378 2013-02-15 Chong Yidong <cyd@gnu.org>
4379
4380 * xml.el (xml-parse-string): Fix typo in handling of bad character
4381 references.
4382
4383 2013-02-15 Glenn Morris <rgm@gnu.org>
4384
4385 * play/fortune.el (fortune-compile): Simplify and fix previous change.
4386
4387 2013-02-14 Michael Albinus <michael.albinus@gmx.de>
4388
4389 * net/tramp.el (tramp-debug-message):
4390 Add `tramp-condition-case-unless-debug'.
4391 (tramp-debug-on-error): New defvar.
4392 (tramp-condition-case-unless-debug): New defun.
4393 (tramp-file-name-handler): Use it.
4394
4395 2013-02-14 Juri Linkov <juri@jurta.org>
4396
4397 * info.el (Info-isearch-filter): Treat non-nil values of
4398 `search-invisible' including its default value `open'
4399 like the value `t' to match hidden text. (Bug#13402)
4400
4401 2013-02-14 Glenn Morris <rgm@gnu.org>
4402
4403 * help-fns.el (find-lisp-object-file-name): Give special treatment
4404 to all ~/.foo.elc files, not just ~/.emacs. (Bug#9007)
4405
4406 2013-02-14 David Biesack <sasdjb@d72933.na.sas.com> (tiny change)
4407
4408 * net/quickurl.el (quickurl-save-urls):
4409 Ensure quickurl-urls is not truncated on printing. (Bug#9276)
4410
4411 2013-02-14 Dmitry Gutov <dgutov@yandex.ru>
4412
4413 * progmodes/ruby-mode.el (ruby-parse-partial): Don't increase
4414 depth for unfinished percent literal. Not using it in the caller.
4415 (ruby-move-to-block): Jump over multiline literals of all types,
4416 ignoring code-looking contents inside them.
4417 (ruby-add-log-current-method): Improve performance at the expense
4418 of accuracy. `ruby-block-contains-point' is relatively slow, so
4419 only use it for method and singleton class blocks.
4420
4421 2013-02-13 Michael Albinus <michael.albinus@gmx.de>
4422
4423 Use ControlMaster where applicable. (Bug#13677)
4424
4425 * net/tramp.el (tramp-ssh-controlmaster-template): New defvar,
4426 replacing `tramp-detect-ssh-controlmaster'.
4427 (tramp-default-method): Use it.
4428
4429 * net/tramp-sh.el (tramp-methods) [scp, scp1, scp2, scpx, sftp]:
4430 [rsync, ssh, ssh1, ssh2, sshx]: Add ControlPath and ControlMaster
4431 arguments.
4432 [scpc, rsyncc]: Remove methods.
4433 (top): Remove completion functions for "scpc", "rsyncc", "ssh1_old"
4434 and "ssh2_old".
4435 (tramp-do-copy-or-rename-file-out-of-band): Change trace level.
4436 (tramp-maybe-open-connection): Reuse tmpfile for ControlPath.
4437
4438 2013-02-13 Stefan Monnier <monnier@iro.umontreal.ca>
4439
4440 * emacs-lisp/package.el (package--initialized): Move before first use.
4441
4442 2013-02-13 Jambunathan K <kjambunathan@gmail.com>
4443
4444 * icomplete.el (icomplete-hide-common-prefix): New user option.
4445 (icomplete-first-match): New face.
4446 (icomplete-completions): Correct handling of "complete but not
4447 unique" (Bug#12638).
4448
4449 2013-02-13 YE Qianchuan <stool.ye@gmail.com> (tiny change)
4450
4451 * descr-text.el (describe-char): Display the script (bug#13698).
4452
4453 2013-02-13 Stefan Monnier <monnier@iro.umontreal.ca>
4454
4455 * tmm.el: Use lexical-binding and current-active-maps.
4456 (tmm-menubar): Use map-keymap and pcase.
4457 (tmm--completion-table): New function.
4458 (tmm-prompt): Use it to fix the menu order.
4459 (tmm-get-keybind): Use current-active-maps.
4460
4461 2013-02-12 Christopher Schmidt <christopher@ch.ristopher.com>
4462
4463 Add dired-hide-details-mode. (Bug#6799)
4464
4465 * locate.el (locate-mode): Set parent mode property to dired-mode.
4466
4467 * find-dired.el (find-dired): Call dired-insert-set-properties on
4468 initial information line. Set process mark on end of buffer.
4469 (find-dired-sentinel):
4470 Call dired-insert-set-properties on summary.
4471
4472 * dired.el (dired-hide-details-hide-symlink-targets)
4473 (dired-hide-details-hide-information-lines): New options.
4474 (dired-insert-directory):
4475 Set properties after final treatment of output.
4476 (dired-insert-set-properties):
4477 Set dired-hide-details-* properties.
4478 (dired-mode-map): Bind dired-hide-details-mode.
4479 (dired-mode): Set buffer-invisibility-spec to a list.
4480 (dired-next-line): Skip hidden lines.
4481 (dired-previous-line): Use dired-next-line.
4482 (dired-hide-details-mode): New minor mode.
4483 (dired-hide-details-update-invisibility-spec): New function.
4484
4485 2013-02-13 Glenn Morris <rgm@gnu.org>
4486
4487 * play/yow.el: Move to obsolete/. (Bug#9384)
4488
4489 2013-02-13 Juri Linkov <juri@jurta.org>
4490
4491 * vc/ediff-util.el (ediff-recenter): Use `select-frame-set-input-focus'
4492 to select `ediff-control-frame' and set input focus correctly on Xfce.
4493 (Bug#12218)
4494
4495 2013-02-13 Juri Linkov <juri@jurta.org>
4496
4497 * image-mode.el (image-mode-map):
4498 * doc-view.el (doc-view-mode-map):
4499 * vc/ediff-util.el (ediff-setup-keymap):
4500 Make S-SPC scroll in the opposite sense to SPC. (Bug#2145)
4501
4502 2013-02-13 Dmitry Gutov <dgutov@yandex.ru>
4503
4504 * progmodes/ruby-mode.el (ruby-move-to-block): Improve
4505 performance. Instead of recalculating indentation fully for each
4506 line, sum up indentation depth based only on visited lines.
4507 (ruby-parse-partial): Increase the depth after "do" even when END
4508 is right after it.
4509 (ruby-parse-partial): When END is in the middle of a percent
4510 literal, increase the depth if the delimiter chars belong to the
4511 paren syntax class.
4512
4513 2013-02-13 Kirill A. Korinskiy <catap@catap.ru>
4514
4515 * play/fortune.el (fortune-compile): Also make the compiled file
4516 if it does not exist at all, not just if it is old. (Bug#5338)
4517
4518 2013-02-13 Glenn Morris <rgm@gnu.org>
4519
4520 * emacs-lisp/package.el (package-menu-execute): Doc fix.
4521
4522 2013-02-13 Yves Baumes <ybaumes@gmail.com> (tiny change)
4523
4524 * lisp/emacs-lisp/package.el (package-menu-execute):
4525 Add optional noquery argument. (Bug#13625)
4526
4527 2013-02-13 Michael Albinus <michael.albinus@gmx.de>
4528
4529 * net/ange-ftp.el (ange-ftp-make-directory): Don't raise an error,
4530 if DIR exists and PARENTS is non-nil.
4531
4532 2013-02-13 Juanma Barranquero <lekktu@gmail.com>
4533
4534 * progmodes/js.el (js--multi-line-declaration-indentation):
4535 Silence byte-compiler warning.
4536
4537 2013-02-12 Michael Albinus <michael.albinus@gmx.de>
4538
4539 * net/tramp-adb.el (tramp-adb-handle-start-file-process): Rewrite.
4540
4541 * net/tramp-compat.el (top): Declare `remote-file-name-inhibit-cache'
4542 only if it doesn't exist.
4543
4544 * net/tramp-sh.el (tramp-sh-handle-start-file-process):
4545 Set process marker.
4546
4547 2013-02-12 Tassilo Horn <tsdh@gnu.org>
4548
4549 * doc-view.el (doc-view-odf->pdf-converter-soffice): Use separate
4550 UserInstallation when calling soffice to work around LibreOffice
4551 bug 37531.
4552
4553 2013-02-12 Glenn Morris <rgm@gnu.org>
4554
4555 * files.el (basic-save-buffer):
4556 Offer to create a non-existing directory. (Bug#3016)
4557
4558 * calc/calc-graph.el (calc-graph-show-dumb):
4559 * calendar/calendar.el (calendar-mode-map):
4560 * cus-edit.el (custom-mode-map):
4561 * ehelp.el (electric-help-map):
4562 * emulation/vip.el (vip-mode-map):
4563 * epa.el (epa-key-list-mode-map):
4564 * info.el (Info-mode-map):
4565 * mail/rmail.el (rmail-mode-map):
4566 * mail/rmailsum.el (rmail-summary-mode-map):
4567 * man.el (Man-mode-map):
4568 * net/newst-plainview.el (newsticker-mode-map):
4569 * progmodes/cpp.el (cpp-edit-mode-map):
4570 * progmodes/grep.el (grep-mode-map):
4571 * progmodes/idlw-help.el (idlwave-help-mode-map):
4572 * simple.el (special-mode-map):
4573 * startup.el (splash-screen-keymap):
4574 * view.el (view-mode-map):
4575 Make S-SPC scroll in the opposite sense to SPC. (Bug#2145)
4576
4577 2013-02-11 Elias Pipping <pipping@lavabit.com>
4578
4579 * doc-view.el (doc-view-current-cache-dir): Beware % escapes
4580 (bug#13679).
4581
4582 2013-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
4583
4584 * cus-start.el (all): Remove inhibit-local-menu-bar-menus.
4585
4586 2013-02-11 Glenn Morris <rgm@gnu.org>
4587
4588 * vc/diff.el (diff-use-labels): New variable.
4589 (diff-no-select): Use --label rather than -L, and first
4590 check that it is supported. (Bug#11067)
4591
4592 * files.el (enable-dir-local-variables): New variable.
4593 (hack-dir-local-variables): Respect enable-dir-local-variables.
4594 * tutorial.el (help-with-tutorial):
4595 Ignore directory-local variables. (Bug#11127)
4596
4597 * vc/vc-svn.el (vc-svn-command): Move --non-interactive from here...
4598 (vc-svn-global-switches): ... to here. (Bug#13513)
4599
4600 2013-02-10 Christopher Schmidt <christopher@ch.ristopher.com>
4601
4602 * minibuf-eldef.el (minibuffer-default--in-prompt-regexps):
4603 Handle "foo (bar, default: xxx): " prompts.
4604
4605 2013-02-10 Chong Yidong <cyd@gnu.org>
4606
4607 * files.el (basic-save-buffer-1): Do not set
4608 buffer-file-coding-system-explicit (Bug#4533).
4609
4610 * mail/emacsbug.el (report-emacs-bug): Change binding of
4611 report-emacs-bug-insert-to-mailer to C-c M-i (Bug#13510).
4612
4613 2013-02-09 Jay Belanger <jay.p.belanger@gmail.com>
4614
4615 * calc/calc.el (calc-allow-units-as-numbers): New variable.
4616 * calc/calc-units.el (calc-convert-units): Use new variable.
4617
4618 2013-02-09 Eli Zaretskii <eliz@gnu.org>
4619
4620 * subr.el (buffer-file-type, default-buffer-file-type): Remove.
4621
4622 * net/ange-ftp.el (ange-ftp-insert-file-contents): Don't reference
4623 buffer-file-type.
4624
4625 * mail/feedmail.el (feedmail-force-binary-write): Doc fix.
4626 (feedmail-run-the-queue, feedmail-dump-message-to-queue)
4627 (feedmail-send-it-immediately): Don't bind buffer-file-type, bind
4628 coding-system-for-write instead.
4629
4630 * jka-compr.el (jka-compr-write-region): Don't bind
4631 buffer-file-type.
4632
4633 * emacs-lisp/bytecomp.el (byte-compile-file): Don't bind
4634 buffer-file-type.
4635
4636 * files.el (file-name-buffer-file-type-alist): Remove defvar.
4637 (insert-file-contents-literally): Remove reference to
4638 file-name-buffer-file-type-alist.
4639
4640 * dos-w32.el (file-name-buffer-file-type-alist): Deprecate and
4641 make-obsolete.
4642 (find-buffer-file-type-match, find-buffer-file-type): Remove.
4643 (find-buffer-file-type-coding-system): Remove references to
4644 find-buffer-file-type-match, find-buffer-file-type, and
4645 buffer-file-type.
4646 Don't put find-buffer-file-type-coding-system into
4647 file-coding-system-alist.
4648 (find-file-binary, find-file-text): Bind coding-system-for-read
4649 instead of file-name-buffer-file-type-alist.
4650
4651 2013-02-09 Jambunathan K <kjambunathan@gmail.com>
4652
4653 * doc-view.el: Use (and prefer) soffice as default ODF->PDF
4654 converter (Bug#13622).
4655 (doc-view-unoconv-program): Make obsolete alias.
4656 (doc-view-odf->pdf-converter-program): New variable.
4657 (doc-view-odf->pdf-converter-function): New variable.
4658 (doc-view-mode-p): Use it.
4659 (doc-view-odf->pdf-converter-unoconv):
4660 Rename from `doc-view-odf->pdf-converter-unoconv'.
4661 (doc-view-odf->pdf-converter-soffice): New function.
4662 (doc-view-convert-current-doc):
4663 Use `doc-view-odf->pdf-converter-function'.
4664
4665 2013-02-09 Chong Yidong <cyd@gnu.org>
4666
4667 * minibuffer.el (minibuffer-inactive-mode-map): Bind mouse-1 to
4668 view-echo-area-messages (Bug#13340).
4669
4670 * help.el (view-echo-area-messages): Use display-buffer.
4671
4672 * dired-x.el (dired-do-run-mail): Prompt for confirmation
4673 (Bug#13561).
4674
4675 2013-02-08 Stefan Monnier <monnier@iro.umontreal.ca>
4676
4677 * emacs-lisp/byte-run.el (eval-when-compile, eval-and-compile):
4678 Eval body right away, now that we do eager macroexpansion (bug#13605).
4679
4680 * simple.el (end-of-buffer): Don't touch unrelated windows (bug#13466).
4681 (fundamental-mode): Use run-mode-hooks.
4682
4683 * eshell/esh-proc.el (eshell/kill): Fix last change.
4684 * eshell/em-ls.el (eshell-ls-dir): Fix use of CL in last change.
4685
4686 2013-02-08 Aidan Gauland <aidalgol@no8wireless.co.nz>
4687
4688 * eshell/esh-proc.el (eshell/kill): Rewrite.
4689
4690 * eshell/em-ls.el (show-almost-all): Declare.
4691 (eshell-do-ls): Add support for -A argument.
4692
4693 2013-02-08 Jambunathan K <kjambunathan@gmail.com>
4694
4695 * icomplete.el (icomplete-forward-completions)
4696 (icomplete-backward-completions): Handle corner case (bug#13602).
4697
4698 2013-02-07 Michael Albinus <michael.albinus@gmx.de>
4699
4700 * vc/vc-hooks.el (vc-find-file-hook): `buffer-file-truename' can
4701 be nil. Handle this. (Bug#13636)
4702
4703 2013-02-07 Richard Stallman <rms@gnu.org>
4704
4705 * mail/rmail.el (rmail-variables): Specify `no-conversion' for
4706 `save-buffer-coding-system'.
4707
4708 2013-02-07 Alan Mackenzie <acm@muc.de>
4709
4710 Fix bug in state cache mechanism. Remove 'BOD "strategy". Refactor.
4711 * progmodes/cc-engine.el (c-get-fallback-scan-pos): Remove.
4712 (c-parse-state-get-strategy): Don't return 'BOD any more.
4713 (c-append-lower-brace-pair-to-state-cache):
4714 Extra parameter HERE instead of narrowing.
4715 Widen to top of buffer before searching backwards for a brace pair.
4716 (c-state-push-any-brace-pair): Add HERE parameter to function call.
4717 (c-append-to-state-cache): Extra parameter HERE in place of narrowing.
4718 Narrow to parameter HERE, in place of being called narrowed.
4719 (c-remove-stale-state-cache): Extra parameter HERE in place of
4720 narrowing. Check there's an open brace in the cache before
4721 searching for its match.
4722 (c-invalidate-state-cache-1): Add HERE parameter to function call.
4723 (c-parse-state-1): Don't narrow here for 'forward strategy,
4724 instead passing extra parameter HERE to several functions.
4725 Remove 'BOD strategy.
4726
4727 2013-02-06 Nicolas Richard <theonewiththeevillook@yahoo.fr> (tiny change)
4728
4729 * emacs-lisp/package.el (describe-package-1): Tell what archive is
4730 used to install the package.
4731
4732 2013-02-06 Glenn Morris <rgm@gnu.org>
4733
4734 * vc/vc-hooks.el (vc-find-file-hook): Don't ask about following links
4735 if we can't get user input. (Bug#6567)
4736
4737 * startup.el (command-line): If simple.el is missing,
4738 test and warn about for some possible causes.
4739
4740 2013-02-05 Jan Djärv <jan.h.d@swipnet.se>
4741
4742 * cus-start.el (all): Add ns-use-native-fullscreen.
4743
4744 2013-02-05 Glenn Morris <rgm@gnu.org>
4745
4746 * profiler.el (profiler-report-mode-map): Add a restart menu entry.
4747
4748 * play/gamegrid.el (gamegrid-add-score-with-update-game-score):
4749 Fix directory creation in fallback case.
4750
4751 2013-02-04 Thierry Volpiatto <thierry.volpiatto@gmail.com>
4752
4753 * vc/vc.el (vc-next-action): Fix inf-loop (bug#13610).
4754 (vc-update-change-log): Use dolist.
4755
4756 2013-02-04 Chong Yidong <cyd@gnu.org>
4757
4758 * thingatpt.el: Rewrite the URL detection routines, absorbing some
4759 code from ffap.el.
4760 (thing-at-point-beginning-of-url-regexp): New var.
4761 (thing-at-point-uri-schemes): Update list of URI schemes.
4762 (thing-at-point-url-regexp): Variable deleted.
4763 (thing-at-point-markedup-url-regexp): Disallow newlines.
4764 (thing-at-point-newsgroup-regexp)
4765 (thing-at-point-newsgroup-heads)
4766 (thing-at-point-default-mail-uri-scheme): New variables.
4767 (thing-at-point-bounds-of-url-at-point): Rewrite. Use ffap's
4768 method to find the possible bounds of the URI at point.
4769 New optional argument to find ill-formed URIs.
4770 (thing-at-point-url-at-point): Rewrite. New arguments for finding
4771 ill-formed URIs. Use thing-at-point-bounds-of-url-at-point, and
4772 the scheme-adding heuristics from ffap-url-at-point.
4773 (thing-at-point--bounds-of-well-formed-url): New function.
4774 Do parens matching to decide whether to include parens in the URI
4775 (Bug#9153).
4776
4777 * ffap.el: Require thingatpt.
4778 (ffap-url-at-point): Delegate URI detection to thing-at-point.
4779 All URI-valid characters are now recognized (Bug#5673).
4780 (ffap-string-at-point): Use use-region-p.
4781 (ffap-url-regexp): Extra character is handled by thing-at-point.
4782 (ffap-string-at-point-mode-alist): Allow parentheses.
4783 (ffap-newsgroup-regexp, ffap-newsgroup-heads, ffap-newsgroup-p):
4784 Convert to aliases; code moved to thingatpt.el.
4785 (ffap-gnus-hook): Use setq-local.
4786
4787 2013-02-04 Glenn Morris <rgm@gnu.org>
4788
4789 * emacs-lisp/ert.el (ert--explain-format-atom):
4790 Don't try to print non-characters as characters. (Bug#13543)
4791
4792 2013-02-03 Michael Albinus <michael.albinus@gmx.de>
4793
4794 * net/tramp.el (tramp-debug-message): Extend function exclude list.
4795 (tramp-backtrace): New defun.
4796 (tramp-handle-insert-file-contents): Use `visit' when inserting
4797 the local copy.
4798
4799 * net/tramp-sh.el (tramp-sh-handle-set-visited-file-modtime):
4800 Use `remote-file-name-inhibit-cache'.
4801
4802 2013-02-03 Stefan Monnier <monnier@iro.umontreal.ca>
4803
4804 * progmodes/cperl-mode.el (cperl-mode): Avoid byte-compile warning
4805 (bug#13614).
4806
4807 * subr.el (internal--called-interactively-p--get-frame): Avoid filling
4808 current-load-list (bug#13366).
4809
4810 2013-02-02 Christopher Schmidt <christopher@ch.ristopher.com>
4811
4812 * progmodes/compile.el (compilation-error-regexp-alist-alist):
4813 Identify g++ template instantiation trace. (Bug#12287)
4814 (compilation-mode-hook, compilation-start-hook)
4815 (compilation-window-height): Simplify docstrings. (Bug#13379)
4816
4817 2013-02-02 Stefan Monnier <monnier@iro.umontreal.ca>
4818
4819 * mouse.el (mouse-drag-track): Always deactivate the mark before
4820 running the final event's command since that command is in charge of
4821 activating the mark if needed (bug#13523).
4822
4823 2013-02-02 Juri Linkov <juri@jurta.org>
4824
4825 * replace.el (perform-replace): Move let-bindings of isearch-*
4826 variables deeper to the loop that searches for the next match.
4827 Add bindings for `isearch-nonincremental' and `isearch-adjusted'.
4828 Use `isearch-search-fun-default' instead of `isearch-search-fun'.
4829 (Bug#13579)
4830
4831 * isearch.el (isearch-search-fun-default): Check for null
4832 first element of isearch-cmds as a precaution when it's used
4833 with inactive isearch.
4834
4835 2013-02-02 Andrew W. Nosenko <andrew.w.nosenko@gmail.com> (tiny change)
4836
4837 * net/tramp.el (tramp-check-for-regexp): Avoid "Args out of range"
4838 error when buffer in question is narrowed so position 1 is out of
4839 visible part.
4840
4841 2013-02-02 Glenn Morris <rgm@gnu.org>
4842
4843 * textmodes/remember.el (remember-clipboard): Doc fix.
4844
4845 2013-02-02 Stefan Monnier <monnier@iro.umontreal.ca>
4846
4847 * progmodes/make-mode.el (makefile-fill-paragraph): Reset syntax-table
4848 properties (bug#13179).
4849
4850 2013-02-02 Juri Linkov <juri@jurta.org>
4851
4852 * progmodes/grep.el (grep-regexp-alist): Use variable grep-match-face
4853 instead of hard-coded default face `match'. (Bug#9438)
4854
4855 2013-02-01 Christopher Schmidt <christopher@ch.ristopher.com>
4856
4857 * vc/vc-arch.el (vc-arch-registered):
4858 * vc/vc-bzr.el (vc-bzr-registered):
4859 * vc/vc-cvs.el (vc-cvs-registered):
4860 * vc/vc-git.el (vc-git-registered):
4861 * vc/vc-hg.el (vc-hg-registered):
4862 * vc/vc-mtn.el (vc-mtn-registered):
4863 * vc/vc-svn.el (vc-svn-registered): Suppress load messages.
4864 (Bug#13139)
4865
4866 * info.el (Info-next-reference, Info-prev-reference): Add numeric
4867 prefix argument. (Bug#11656)
4868
4869 2013-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
4870
4871 * help-fns.el (help-split-fundoc): Don't insert byte-compiled body.
4872
4873 2013-02-01 Glenn Morris <rgm@gnu.org>
4874
4875 * vc/vc-hooks.el (vc-menu-map): Disable vc-rollback menu item
4876 if the backend is known not to support it.
4877
4878 * imenu.el (imenu-default-create-index-function):
4879 Tweak infinite loop test to check for forward motion as well as none.
4880
4881 2013-02-01 Alex Harsanyi <AlexHarsanyi@gmail.com>
4882
4883 * net/soap-client.el (soap-invoke): Encode the string for
4884 `url-request-data' as UTF-8.
4885 Fixes <http://code.google.com/p/emacs-soap-client/issues/detail?id=16>.
4886
4887 2013-02-01 Glenn Morris <rgm@gnu.org>
4888
4889 * calc/calc-help.el (calc-view-news): Use view-emacs-news.
4890
4891 * calc/README, calc/README.prev: Rename/merge to etc/CALC-NEWS.
4892
4893 2013-01-31 Michael Albinus <michael.albinus@gmx.de>
4894
4895 * net/tramp.el (tramp-tramp-file-p): Comment check for
4896 `string-as-unibyte'. The function does not exist on XEmacs, and
4897 likely we need another approach.
4898
4899 * net/tramp-sh.el (tramp-compute-multi-hops): Check, whether
4900 `tramp-gw-*' variables are bound.
4901
4902 2013-01-31 Glenn Morris <rgm@gnu.org>
4903
4904 * files.el (basic-save-buffer-2): Choose coding system for
4905 writing the file before backing it up, to reduce delay between
4906 backing up and writing the new version. (Bug#13522)
4907
4908 2013-01-31 Michal Nazarewicz <mina86@mina86.com>
4909
4910 * simple.el (cycle-spacing): New command.
4911 (just-one-space): Use it.
4912
4913 2013-01-31 Stefan Monnier <monnier@iro.umontreal.ca>
4914
4915 * progmodes/opascal.el: Rename from delphi.el. Use lexical-binding.
4916 (opascal-newline-always-indents): Remove custom.
4917 (opascal-tab, opascal-newline): Remove commands.
4918 (opascal-new-comment-line): Insert "\n" instead of calling newline.
4919 (opascal-mode-map): Keep default bindings for RET and TAB and DEL.
4920 (opascal-save-match-data): Remove, use save-match-data instead.
4921 (opascal-save-state): Use with-silent-modifications.
4922
4923 * progmodes/pascal.el (pascal-mode-syntax-table): Accept //..\n comments
4924 (bug#13585).
4925
4926 2013-01-30 Juri Linkov <juri@jurta.org>
4927
4928 * frame.el (toggle-frame-maximized, toggle-frame-fullscreen):
4929 Use fullboth as an alias for fullscreen. Suggested by Jan Djärv in
4930 <http://lists.gnu.org/archive/html/emacs-devel/2013-01/msg00203.html>.
4931
4932 2013-01-30 Stefan Monnier <monnier@iro.umontreal.ca>
4933
4934 * progmodes/make-mode.el (makefile-backslash-region): Don't compute
4935 column if we're just deleting the backslashes.
4936 (makefile-fill-paragraph): Use eolp.
4937
4938 2013-01-30 Michael Albinus <michael.albinus@gmx.de>
4939
4940 * autorevert.el (auto-revert-use-notify): Fix docstring.
4941
4942 2013-01-30 Leo Liu <sdl.web@gmail.com>
4943
4944 * imenu.el (imenu--truncate-items): Fix subalist checking (bug#13576).
4945
4946 2013-01-30 Glenn Morris <rgm@gnu.org>
4947
4948 * mouse.el (mouse-drag-line): Avoid pushing same event onto
4949 unread-command-events twice in some cases. This tries to implement
4950 the 2012-07-26 changes in a different way. (Bug#13560)
4951
4952 2013-01-30 Fabián Ezequiel Gallina <fgallina@cuca>
4953
4954 * progmodes/python.el
4955 (python-pdbtrack-comint-output-filter-function): Enhancements on
4956 stacktrace detection. (thanks @gnovak)
4957
4958 2013-01-30 Stefan Monnier <monnier@iro.umontreal.ca>
4959
4960 * jit-lock.el (jit-lock-stealth-chunk-start): Don't widen (bug#13542).
4961 (jit-lock-mode, jit-lock-functions, jit-lock-context-unfontify-pos):
4962 Use defvar-local.
4963 (jit-lock-register): Use setq-local.
4964
4965 2013-01-30 Jay Belanger <jay.p.belanger@gmail.com>
4966
4967 * calc-units.el (math-default-units-table): Remove initial value.
4968 (calc-convert-units): Treat expressions where all the units cancel as
4969 if they didn't have units.
4970
4971 2013-01-30 Michael Albinus <michael.albinus@gmx.de>
4972
4973 * net/tramp.el (tramp-process-connection-type): Fix docstring.
4974 (tramp-completion-reread-directory-timeout): Fix type.
4975 (tramp-connection-min-time-diff): New defcustom.
4976
4977 * net/tramp-sh.el (tramp-maybe-open-connection): Use it.
4978
4979 2013-01-30 Glenn Morris <rgm@gnu.org>
4980
4981 * imenu.el (imenu-default-create-index-function):
4982 Put back a version of the infinite loop test removed 2013-01-23.
4983
4984 2013-01-30 Fabián Ezequiel Gallina <fgallina@cuca>
4985
4986 * progmodes/python.el (python-shell-parse-command):
4987 Find python-shell-interpreter with modified environment.
4988
4989 2013-01-30 Stefan Monnier <monnier@iro.umontreal.ca>
4990
4991 * emacs-lisp/cl.el (cl-set-getf): Add compatibility alias.
4992
4993 2013-01-29 Alan Mackenzie <acm@muc.de>
4994
4995 Amend to fontify /regexp/s in actions correctly.
4996 * cc-awk.el (c-awk-harmless-char-re, c-awk-harmless-string*-re):
4997 (c-awk-harmless-string*-here-re): Braces, parens and semicolons
4998 are no longer included.
4999 (c-awk-harmless-line-char-re, c-awk-harmless-line-string*-re):
5000 What used to be these variables without "-line" in the name.
5001 (c-awk-neutral-re): { is no longer neutral. Escaped newlines now are.
5002 (c-awk-non-arith-op-bra-re): Now also matches {.
5003 (c-awk-pre-exp-alphanum-kwd-re): New regexp to match "print",
5004 "return", and "case".
5005 (c-awk-kwd-regexp-sign-re): New, to match "print", etc., followed
5006 by /.
5007 (c-awk-syntax-tablify-/): Check special cases "print /re/", etc.
5008 (c-awk-set-syntax-table-properties): Extend FSM to handle {,},(,),;.
5009
5010 2013-01-29 Michael Albinus <michael.albinus@gmx.de>
5011
5012 * autorevert.el (auto-revert-use-notify):
5013 Use `custom-initialize-default' for initialization. (Bug#13583)
5014
5015 * net/ange-ftp.el (ange-ftp-skip-msgs): Add another message.
5016
5017 * net/tramp-sh.el (tramp-sh-handle-start-file-process):
5018 Catch `suppress'. Otherwise, `tramp-run-real-handler' might be called
5019 in `tramp-file-name-handler'.
5020 (tramp-gw-tunnel-method, tramp-gw-socks-method): Declare for
5021 compatibility.
5022 (tramp-compute-multi-hops): Check, whether
5023 `tramp-gw-tunnel-method' and `tramp-gw-socks-method' are non-nil.
5024
5025 2013-01-28 Stefan Monnier <monnier@iro.umontreal.ca>
5026
5027 * hi-lock.el (hi-lock-unface-buffer): Don't assume `face' is a symbol
5028 (bug#13297).
5029
5030 2013-01-27 Dmitry Gutov <dgutov@yandex.ru>
5031
5032 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Remove some
5033 checks made superfluous by the \_< operator.
5034 * progmodes/ruby-mode.el (ruby-move-to-block): Work with (maybe
5035 temporarily) broken indentation.
5036 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
5037 Highlight nested constants, too. \_< broke that.
5038
5039 2013-01-27 Nobuyoshi Nakada <nobu@ruby-lang.org>
5040
5041 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Use "\\_<"
5042 instead of "\\b".
5043
5044 2013-01-27 Michael Albinus <michael.albinus@gmx.de>
5045
5046 * autorevert.el (auto-revert-handler): Notifications which result
5047 from a saved file shall not be taken into account. (Bug#13557)
5048
5049 2013-01-26 Andreas Schwab <schwab@linux-m68k.org>
5050
5051 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Add optional
5052 parameter BAR-NOT-SYMBOL to control syntax of | for font-lock.
5053 (lisp-mode): Pass t for it. (Bug#13556)
5054
5055 2013-01-25 Alan Mackenzie <acm@muc.de>
5056
5057 AWK Mode: Fix indentation bug at top level. Bug #12274.
5058
5059 * progmodes/cc-engine.el (c-guess-basic-syntax): Move CASE 5P to
5060 just before CASE 5D.
5061
5062 2013-01-25 Dmitry Antipov <dmantipov@yandex.ru>
5063
5064 * net/socks.el (socks-nslookup-host): Use string-to-number.
5065
5066 2013-01-25 Michael Albinus <michael.albinus@gmx.de>
5067
5068 * autorevert.el (auto-revert-remote-files)
5069 (auto-revert-notify-exclude-dir-regexp): New defcustoms.
5070 (auto-revert-notify-enabled, auto-revert-use-notify)
5071 (auto-revert-notify-watch-descriptor-hash-list)
5072 (auto-revert-notify-modified-p, auto-revert-notify-event-p)
5073 (auto-revert-notify-event-descriptor)
5074 (auto-revert-notify-event-action)
5075 (auto-revert-notify-event-file-name): Doc fix.
5076 (global-auto-revert-mode): Reorder checks.
5077 (auto-revert-notify-rm-watch): Respect changed values of
5078 `auto-revert-notify-watch-descriptor-hash-list'.
5079 (auto-revert-notify-add-watch): Check for
5080 `auto-revert-notify-exclude-dir-regexp'. Adapt filters for
5081 `inotify-add-watch'. Watch `default-directory' instead of
5082 `buffer-file-name'. `auto-revert-notify-watch-descriptor-hash-list'
5083 has a changed meaning now. (Bug#13540)
5084 (auto-revert-notify-handler): Change implementation wrt events
5085 returning from a directory.
5086 (auto-revert-handler): Reorder implementation for checks of remote
5087 files.
5088 (auto-revert-buffers): Fix parentheses error.
5089
5090 2013-01-25 Fabián Ezequiel Gallina <fgallina@cuca>
5091
5092 * progmodes/python.el: Enhancements to header documentation about
5093 skeletons. (Bug#5716)
5094
5095 * imenu.el (imenu-default-create-index-function): Remove useless
5096 infinite loop check. (Bug#13438)
5097
5098 2013-01-25 Alan Mackenzie <acm@muc.de>
5099
5100 Fix a bug in the state cache mechanism. Refactor this a bit.
5101
5102 * progmodes/cc-engine.el (c-parse-state-get-strategy): Remove the
5103 `cache-pos' element from the return value.
5104 (c-append-lower-brace-pair-to-state-cache): "Narrow" to end of
5105 buffer to enable proper searching from beyond HERE. Amend the
5106 test for detecting the sought brace pair. Amend the value written
5107 to the "brace desert cache" when the brace isn't found.
5108 (c-remove-stale-state-cache): Rename `good-pos' to `start-point',
5109 and several other variables analogously.
5110 (c-remove-stale-state-cache-backwards): Change `cache-pos' from a
5111 parameter to a locally calculated variable.
5112 (c-parse-state-1): Change the calling conventions to the two
5113 defuns involving `cache-pos'.
5114
5115 2013-01-25 Chong Yidong <cyd@gnu.org>
5116
5117 * xml.el (xml-entity-or-char-ref-re): Fix regexp.
5118
5119 2013-01-24 Aaron Ecay <aaronecay@gmail.com> (tiny change)
5120
5121 * paren.el (show-paren-function): Make sure to set 'priority and
5122 'face only if the overlay does exist.
5123
5124 2013-01-24 Michael Albinus <michael.albinus@gmx.de>
5125
5126 * net/tramp.el (tramp-tramp-file-p): Check, whether NAME is unibyte.
5127
5128 * net/tramp-sh.el (tramp-sh-handle-set-file-acl): Do not suppress
5129 basic attributes.
5130 (tramp-sh-handle-set-file-acl): Improve error checking.
5131
5132 2013-01-24 Dmitry Antipov <dmantipov@yandex.ru>
5133
5134 * doc-view.el (doc-view-display): Force mode line update until all
5135 document is converted. Suggested by Stefan Monnier (Bug#13164).
5136
5137 2013-01-23 Bastien Guerry <bzg@gnu.org>
5138
5139 * paren.el (show-paren-function): Make sure an overlay exists
5140 before trying to delete it. Also use `pos' as a position only
5141 when it is an integer.
5142
5143 2013-01-23 Dmitry Antipov <dmantipov@yandex.ru>
5144
5145 * play/gametree.el (gametree-break-line-here): Use point-marker.
5146
5147 2013-01-22 Michael Albinus <michael.albinus@gmx.de>
5148
5149 * net/tramp-cmds.el (tramp-bug, tramp-append-tramp-buffers):
5150 Mark descriptive parts with `display' property.
5151
5152 2013-01-21 Agustín Martín Domingo <agustin.martin@hispalinux.es>
5153
5154 * textmodes/ispell.el (ispell-hunspell-dictionary-equivs-alist):
5155 New variable to map standard dict names to hunspell ones.
5156 (ispell-set-spellchecker-params): Make sure specific dict names
5157 are used for standard dicts with hunspell.
5158
5159 2013-01-21 Tassilo Horn <tsdh@gnu.org>
5160
5161 * textmodes/reftex-cite.el (reftex-format-citation): Add format
5162 chars for note (%N) and url (%U).
5163 * textmodes/reftex-vars.el (reftex-cite-format): Document them.
5164
5165 2013-01-21 Juri Linkov <juri@jurta.org>
5166
5167 * frame.el: Bind `f10' in `esc-map' to `toggle-frame-maximized'
5168 in addition to existing separate binding `meta f10' in `global-map'.
5169 (Bug#13484)
5170
5171 2013-01-21 Michael Albinus <michael.albinus@gmx.de>
5172
5173 Improve XEmacs compatibility.
5174
5175 * net/tramp.el (tramp-replace-environment-variables): Make it a defun.
5176
5177 * net/tramp-adb.el (top): Require `time-date'.
5178 (tramp-adb-ls-output-time-less-p): Use `tramp-time-less-p'.
5179 (tramp-adb-handle-copy-file, tramp-adb-handle-rename-file):
5180 Use `tramp-file-name-handler'.
5181 (tramp-adb-maybe-open-connection):
5182 Use `tramp-compat-set-process-query-on-exit-flag'.
5183
5184 * net/tramp-sh.el (tramp-sh-handle-file-acl):
5185 Use `tramp-compat-funcall'.
5186
5187 * net/tramp-smb.el (tramp-smb-handle-file-acl): Use `looking-at' and
5188 `tramp-compat-funcall'.
5189
5190 2013-01-21 Jürgen Hötzel <juergen@archlinux.org>
5191
5192 * net/tramp-adb.el (tramp-adb-handle-start-file-process): Complete
5193 reimplementation using "adb shell command ..." instead of running
5194 remote shell interactively.
5195
5196 2013-01-20 Glenn Morris <rgm@gnu.org>
5197
5198 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map):
5199 Add native profiler menu entries.
5200
5201 * profiler.el (profiler-running-p): New function.
5202 (profiler-cpu-profile): Use profiler-running-p.
5203 (profiler-report-mode-map): Add some more menu entries.
5204
5205 2013-01-19 Glenn Morris <rgm@gnu.org>
5206
5207 * mail/unrmail.el (unrmail): Do not mangle the mbox From line;
5208 fixes 2012-12-07 change. (Bug#13499)
5209
5210 2013-01-19 Leo Liu <sdl.web@gmail.com>
5211
5212 * dired.el (dired-get-marked-files): Prune erroneous values due to
5213 last change. (Bug#13152)
5214
5215 2013-01-19 Glenn Morris <rgm@gnu.org>
5216
5217 * progmodes/etags.el (tags-table-check-computed-list):
5218 Preserve point in tags buffer. (Bug#13412)
5219
5220 * emacs-lisp/lisp-mode.el (lisp-indent-function): Doc fix.
5221
5222 2013-01-19 Christian Wittern <cwittern@gmail.com> (tiny change)
5223 Chong Yidong <cyd@gnu.org>
5224
5225 * image-mode.el (image-next-file, image-previous-file):
5226 New commands (Bug#8453).
5227 (image-mode-map): Bind them to n and p.
5228 (image-mode--images-in-directory): New helper function.
5229
5230 2013-01-19 Chong Yidong <cyd@gnu.org>
5231
5232 * image-mode.el (image-mode-fit-frame): Add a frame argument.
5233 Suggested by Drew Adams (Bug#7730). Handle window decorations;
5234 save and restore the old window configuration.
5235
5236 2013-01-18 Leo Liu <sdl.web@gmail.com>
5237
5238 * progmodes/js.el: Tweak autoload cookie for alias.
5239
5240 2013-01-17 Michael Albinus <michael.albinus@gmx.de>
5241
5242 * autorevert.el (auto-revert-notify-watch-descriptor): Make it
5243 buffer local, again. This was lost with the fix on 2013-01-12.
5244
5245 2013-01-17 Jürgen Hötzel <juergen@archlinux.org>
5246
5247 * eshell/esh-util.el (eshell-path-env): Make it buffer local, in
5248 order to support several eshell buffers in parallel.
5249
5250 2013-01-17 Michael Albinus <michael.albinus@gmx.de>
5251
5252 * autorevert.el (auto-revert-use-notify): In the :set function, do
5253 not modify `kill-buffer-hook'.
5254 (auto-revert-notify-rm-watch):
5255 Remove `auto-revert-notify-rm-watch' from `kill-buffer-hook'.
5256 (auto-revert-notify-add-watch): Do not call
5257 `auto-revert-notify-rm-watch', but add it to a buffer local
5258 `kill-buffer-hook'.
5259
5260 2013-01-16 Stefan Monnier <monnier@iro.umontreal.ca>
5261
5262 * emacs-lisp/trace.el (trace--read-args): Use a closure and an honest
5263 call to `eval' rather than a backquoted lambda.
5264
5265 2013-01-15 Stefan Monnier <monnier@iro.umontreal.ca>
5266
5267 * emacs-lisp/nadvice.el (advice--tweak): Make it possible for `tweak'
5268 to return an explicit nil.
5269 (advice--remove-function): Change accordingly.
5270
5271 * emacs-lisp/advice.el (ad-preactivate-advice): Adjust the cleanup to
5272 the use of nadvice.el.
5273
5274 * progmodes/which-func.el (which-function): Silence imenu errors
5275 (bug#13433).
5276
5277 2013-01-15 Michael R. Mauger <mmaug@yahoo.com>
5278
5279 * progmodes/sql.el (sql-imenu-generic-expression):
5280 (sql-mode-font-lock-object-name): Match schema qualified names.
5281 (sql-connect): Use string keys.
5282 (sql-product-interactive): Wait for interpreter prompt.
5283 (sql-comint-oracle): Set process coding based on NLS_LANG.
5284
5285 2013-01-15 Michael R. Mauger <mmaug@yahoo.com>
5286
5287 * progmodes/sql.el (sql-output-to-send): Remove, unused.
5288 (sql-interactive-remove-continuation-prompt):
5289 (sql-send-magic-terminator, sql-interactive-mode): Remove references.
5290
5291 2013-01-14 Leo Liu <sdl.web@gmail.com>
5292
5293 * calendar/calendar.el (calendar-redraw): Sync window-point and point.
5294 (Bug#13420)
5295
5296 2013-01-14 Glenn Morris <rgm@gnu.org>
5297
5298 * progmodes/compile.el (compilation-error-regexp-alist-alist):
5299 Fix interpretation of gnu line.col1-col2 format. (Bug#13335)
5300
5301 2013-01-13 Fabián Ezequiel Gallina <fgallina@cuca>
5302
5303 * progmodes/python.el (python-nav-end-of-statement):
5304 Fix cornercase when handling multiline strings.
5305
5306 2013-01-13 Richard Stallman <rms@gnu.org>
5307
5308 * mail/sendmail.el (mail-position-on-field): Add doc string.
5309
5310 * mail/rmailmm.el (rmail-insert-mime-forwarded-message):
5311 Get current message boundaries and pass them to
5312 message-forward-make-body-mime. Minor style changes.
5313
5314 2013-01-13 Eli Zaretskii <eliz@gnu.org>
5315
5316 * cus-start.el (all): Avoid warnings about
5317 scroll-bar-adjust-thumb-portion on platforms where it is not defined.
5318
5319 2013-01-11 Jan Djärv <jan.h.d@swipnet.se>
5320
5321 * cus-start.el (all): Add scroll-bar-adjust-thumb-portion.
5322
5323 2013-01-13 Stefan Monnier <monnier@iro.umontreal.ca>
5324
5325 * jit-lock.el (jit-lock-debug-mode): New minor mode.
5326 (jit-lock--debug-fontifying): New var.
5327 (jit-lock--debug-fontify): New function.
5328 * subr.el (condition-case-unless-debug): Don't prevent catching the
5329 error, just let the debbugger run.
5330 * emacs-lisp/timer.el (timer-event-handler): Don't prevent debugging
5331 timer code and don't drop errors silently.
5332
5333 2013-01-12 Michael Albinus <michael.albinus@gmx.de>
5334
5335 * autorevert.el (auto-revert-notify-watch-descriptor): Give it
5336 `permanent-local' property.
5337 (auto-revert-notify-handler): Use `file-equal-p'.
5338
5339 2013-01-12 Eli Zaretskii <eliz@gnu.org>
5340
5341 * autorevert.el (auto-revert-notify-handler): Fix filtering of
5342 file notification by ACTION. For filtering by file name, compare
5343 only the non-directory part of the file name.
5344
5345 2013-01-12 Stefan Monnier <monnier@iro.umontreal.ca>
5346
5347 * autorevert.el: Use cl-lib instead of cl.
5348
5349 * vc/vc-bzr.el (vc-bzr--sanitize-header): New function (bug#13307).
5350 (vc-bzr-checkin): Use it.
5351 * vc/log-edit.el (log-edit-extract-headers): Don't presume FUNCTION
5352 will preserve match-data.
5353
5354 2013-01-11 Felix H. Dahlke <fhd@ubercode.de>
5355
5356 * progmodes/js.el: Fix multiline declarations's indentation (bug#8576).
5357 (js--declaration-keyword-re): New var.
5358 (js--multi-line-declaration-indentation): New function.
5359 (js--proper-indentation): Use it.
5360
5361 2013-01-11 Aaron S. Hawley <Aaron.Hawley@vtinfo.com>
5362
5363 * calc/calc.el (calc-highlight-selections-with-faces)
5364 (calc-dispatch):
5365 * comint.el (comint-history-isearch-message):
5366 * emacs-lisp/edebug.el (edebug-read, edebug-eval-defun):
5367 * ffap.el (ffap-string-at-point-region, ffap-next)
5368 (ffap-string-at-point, ffap-string-around)
5369 (ffap-copy-string-as-kill, ffap-highlight-overlay)
5370 (ffap-literally):
5371 * font-lock.el (font-lock-keywords-alist)
5372 (font-lock-removed-keywords-alist):
5373 * help-mode.el (help-xref-symbol-regexp):
5374 * info.el (Info-find-emacs-command-nodes):
5375 * international/mule.el (add-to-coding-system-list):
5376 * isearch.el (isearch-message-function, isearch-fail-pos):
5377 * misearch.el (multi-isearch-next-buffer-function):
5378 * newcomment.el (comment-box):
5379 * printing.el (pr-txt-printer-alist, pr-ps-printer-alist)
5380 (pr-setting-database):
5381 * progmodes/cc-fonts.el (c-font-lock-keywords-3)
5382 (c++-font-lock-keywords-3, objc-font-lock-keywords-3)
5383 (java-font-lock-keywords-3, idl-font-lock-keywords-3)
5384 (pike-font-lock-keywords-3):
5385 * progmodes/compile.el (compile):
5386 * progmodes/etags.el (tags-table-files)
5387 (tags-table-files-function, tags-included-tables-function):
5388 * progmodes/gdb-mi.el (gdb, gdb-setup-windows)
5389 (gdb-restore-windows):
5390 * ps-print.el (ps-even-or-odd-pages, ps-spool-buffer-with-faces)
5391 (ps-n-up-filling-database):
5392 * server.el (server-buffer, server-log):
5393 * simple.el (newline, delete-backward-char, delete-forward-char)
5394 (minibuffer-history-isearch-message, kill-line, track-eol)
5395 (temporary-goal-column):
5396 * textmodes/flyspell.el (flyspell-mark-duplications-flag)
5397 (flyspell-default-deplacement-commands):
5398 * textmodes/ispell.el (ispell-accept-output):
5399 * textmodes/sgml-mode.el (html-tag-help):
5400 * vc/compare-w.el (compare-ignore-whitespace)
5401 (compare-ignore-case, compare-windows-dehighlight):
5402 * vc/diff.el (diff):
5403 * whitespace.el (whitespace-point)
5404 (whitespace-font-lock-refontify, whitespace-bob-marker)
5405 (whitespace-eob-marker): Fix ambiguous doc string cross-reference(s).
5406
5407 2013-01-11 Michael Albinus <michael.albinus@gmx.de>
5408
5409 * autorevert.el (top): Require 'cl in order to pacify byte compiler.
5410 (auto-revert-notify-rm-watch): Ignore errors.
5411 (auto-revert-notify-add-watch): Ignore errors. Use '(modify) for
5412 inotify, and '(size last-write-time) for w32notify.
5413 Set buffer-local `auto-revert-use-notify' to nil when adding a file
5414 watch fails - this is a fallback to the file modification check.
5415 (auto-revert-notify-event-p, auto-revert-notify-event-descriptor)
5416 (auto-revert-notify-event-action)
5417 (auto-revert-notify-event-file-name): New defuns.
5418 (auto-revert-notify-handler): Use them. Implement first
5419 plausibility checks.
5420 (auto-revert-handler): Handle also `auto-revert-tail-mode'.
5421
5422 2013-01-11 Julien Danjou <julien@danjou.info>
5423
5424 * color.el (color-rgb-to-hsv): Fix conversion computing in case min and
5425 max are almost equal. Also return the correct value for V which is
5426 already between 0 and 1.
5427
5428 2013-01-11 Dmitry Antipov <dmantipov@yandex.ru>
5429
5430 * emacs-lisp/ert.el (ert-run-test): Use point-max-marker.
5431
5432 2013-01-11 Eli Zaretskii <eliz@gnu.org>
5433
5434 * autorevert.el (auto-revert-notify-rm-watch)
5435 (auto-revert-notify-add-watch): Fix typos in w32notify function
5436 names.
5437
5438 2013-01-10 Michael Albinus <michael.albinus@gmx.de>
5439
5440 * autorevert.el (auto-revert-notify-enabled): Move up.
5441 (auto-revert-use-notify): New defcustom.
5442 (auto-revert-mode, global-auto-revert-mode)
5443 (auto-revert-notify-add-watch, auto-revert-handler)
5444 (auto-revert-buffers): Use `auto-revert-use-notify' instead of
5445 `auto-revert-notify-enabled'.
5446
5447 2013-01-10 Elias Pipping <pipping@exherbo.org>
5448
5449 * files.el (auto-mode-alist): Use doc-view for djvu files (bug#13164).
5450 * doc-view.el (doc-view-document->bitmap):
5451 Use doc-view-single-page-converter-function instead of
5452 single-page-converter arg; adjust callers.
5453
5454 2013-01-10 Feng Li <fengli@gmail.com> (tiny change)
5455
5456 * progmodes/which-func.el (which-function): Understand Semantic's use
5457 of overlays in imenu--index-alist.
5458
5459 2013-01-10 Wolfgang Jenkner <wjenkner@inode.at>
5460
5461 * man.el: Handle different "man -k" behaviors (bug#13160). Use utf-8.
5462 (Man-man-k-use-anchor): New var.
5463 (Man-parse-man-k): New function.
5464 (Man-completion-table): Use it.
5465 (man): Flush the completion cache between uses.
5466
5467 2013-01-10 Michael Albinus <michael.albinus@gmx.de>
5468
5469 * autorevert.el: Add file watch support.
5470 (auto-revert-notify-enabled): New defconst.
5471 (auto-revert-notify-watch-descriptor-hash-list)
5472 (auto-revert-notify-watch-descriptor)
5473 (auto-revert-notify-modified-p): New defvars.
5474 (auto-revert-notify-rm-watch, auto-revert-notify-add-watch)
5475 (auto-revert-notify-handler): New defuns.
5476 (auto-revert-mode, global-auto-revert-mode): Remove file watches
5477 when mode is disabled.
5478 (auto-revert-handler): Check for `auto-revert-notify-modified-p'.
5479 (auto-revert-buffers): Add file watches for active buffers.
5480
5481 2013-01-10 Dmitry Antipov <dmantipov@yandex.ru>
5482
5483 * cus-start.el (toplevel): Only allow float values for
5484 scroll-up-aggressively and scroll-down-aggressively.
5485 Allow any number for line-spacing.
5486
5487 2013-01-10 Stefan Monnier <monnier@iro.umontreal.ca>
5488
5489 * doc-view.el (doc-view-pdfdraw-program): Allow "pdfdraw" name.
5490 (doc-view-pdf->png-converter-function): Use mupdf if available.
5491 (doc-view-djvu->png-converter-function)
5492 (doc-view-ps->png-converter-function): Remove.
5493 (doc-view--image-file-pattern): Replace doc-view--image-file-extension.
5494 (doc-view-goto-page, doc-view-convert-current-doc, doc-view-display)
5495 (doc-view-already-converted-p): Adjust accordingly.
5496 (doc-view-mode-p): Simplify.
5497 (doc-view-enlarge): Use setq-local.
5498 (doc-view-pdf->png-converter-ghostscript)
5499 (doc-view-djvu->png-converter-ddjvu)
5500 (doc-view-pdf->png-converter-mupdf): Rework to call
5501 doc-view-start-process directly.
5502 (doc-view-pdf/ps->png): Simplify accordingly.
5503 (doc-view-pdf->png-1, doc-view-djvu->png-1): Remove.
5504 (doc-view-document->bitmap): Rename from doc-view-document->png.
5505 (doc-view-convert-current-doc): Merge pdf and djvu cases.
5506 (doc-view-set-slice-from-bounding-box): Fix completion table.
5507 (doc-view-mode): Use add-hook for after-revert-hook.
5508
5509 2013-01-10 Glenn Morris <rgm@gnu.org>
5510
5511 * emacs-lisp/authors.el (authors-ignored-files)
5512 (authors-valid-file-names, authors-renamed-files-alist):
5513 Add some more entries.
5514
5515 2013-01-10 Stefan Monnier <monnier@iro.umontreal.ca>
5516
5517 * image-mode.el (image-mode-winprops): Don't throw away the fallback
5518 `t' pseudo-window entry.
5519
5520 2013-01-10 Alan Mackenzie <acm@muc.de>
5521
5522 Fix bugs in the c-parse-state mechanism. Reuse some markers
5523 instead of continually generating new ones.
5524
5525 * progmodes/cc-engine.el (c-state-old-cpp-beg-marker)
5526 (c-state-old-cpp-end-marker): New variables.
5527 (c-append-lower-brace-pair-to-state-cache): Start a backward
5528 search for "}" definitively outside CPP constructs.
5529 (c-remove-stale-state-cache): Inform the caller of a need to
5530 search back for a brace pair in certain circumstances.
5531 (c-state-maybe-marker): New macro.
5532 (c-parse-state): Reuse markers when appropriate.
5533
5534 2013-01-10 Glenn Morris <rgm@gnu.org>
5535
5536 * simple.el (execute-extended-command): Doc fix.
5537 Bind prefix-arg around read-extended-command, for prompt. (Bug#13395)
5538
5539 2013-01-10 Chong Yidong <cyd@gnu.org>
5540
5541 * faces.el (read-face-name): Doc fix.
5542
5543 2013-01-10 Roland Winkler <winkler@gnu.org>
5544
5545 * emacs-lisp/crm.el: Allow any regexp for separators.
5546 (crm-default-separator): All spaces around the default comma separator.
5547 (crm--completion-command): New macro.
5548 (crm-completion-help, crm-complete, crm-complete-word): Use it.
5549 (crm-complete-and-exit): Handle non-single-char separators.
5550
5551 2013-01-09 Elias Pipping <pipping@lavabit.com>
5552
5553 * doc-view.el: Add support for DjVu (bug#13164).
5554 (doc-view-djvu->png-converter-function): New config var.
5555 (doc-view-single-page-converter-function, doc-view--image-type)
5556 (doc-view--image-file-extension): New vars.
5557 (doc-view-mode): Initialize them.
5558 (doc-view-goto-page): Use them.
5559 (doc-view-mode-p): Add support for ddjvu.
5560 (doc-view-djvu->png-converter-ddjvu, doc-view-djvu->png-1)
5561 (doc-view-set-up-single-converter): New funs.
5562 (doc-view-pdf/ps->png): Extend for djvu.
5563 (doc-view-document->png): Rename from doc-view-pdf->png.
5564 (doc-view-convert-current-doc): Handle djvu.
5565 (doc-view-insert-image, doc-view-display)
5566 (doc-view-already-converted-p): Don't hardcode png.
5567 (doc-view-set-doc-type): Recognize djvu docs.
5568
5569 2013-01-09 Elias Pipping <pipping@lavabit.com>
5570
5571 * doc-view.el: Add support for mupdf converter (bug#13164).
5572 (doc-view-pdfdraw-program, doc-view-pdf->png-converter-function)
5573 (doc-view-ps->png-converter-function): New config vars.
5574 (doc-view-pdf->png-converter-ghostscript)
5575 (doc-view-ps->png-converter-ghostscript)
5576 (doc-view-pdf->png-converter-mupdf): New functions.
5577 (doc-view-pdf/ps->png, doc-view-pdf->png-1): Use them.
5578
5579 2013-01-09 Jürgen Hötzel <juergen@archlinux.org>
5580
5581 * net/tramp.el (tramp-eshell-directory-change): Check remote-path
5582 first in session cache: When `tramp-own-remote-path' is in
5583 `tramp-remote-path', the remote path is only set in the session
5584 cache.
5585
5586 2013-01-09 Glenn Morris <rgm@gnu.org>
5587
5588 * emacs-lisp/trace.el (trace-function-foreground)
5589 (trace-function-background): Doc fix.
5590
5591 2013-01-09 Juri Linkov <juri@jurta.org>
5592
5593 * international/mule-cmds.el (read-char-by-name): Move let-binding
5594 of completion-ignore-case around completing-read to fix regression
5595 exhibited by the test case `C-x 8 RET *acc TAB' and caused by
5596 `string-match-p' using the nil value of `case-fold-search' and
5597 `completion-ignore-case' in `completion-pcm--all-completions'.
5598 (Bug#12615).
5599
5600 2013-01-09 Glenn Morris <rgm@gnu.org>
5601
5602 * progmodes/compile.el (compilation-parse-errors):
5603 Fix typo. (Bug#13369)
5604
5605 2013-01-09 Vitalie Spinu <spinuvit@gmail.com> (tiny change)
5606
5607 * comint.el (comint-send-input): Check size of buffer before
5608 waiting for process output, in case already accepted. (Bug#13290)
5609
5610 2013-01-09 Paul Eggert <eggert@cs.ucla.edu>
5611
5612 Spelling fixes.
5613 * net/tramp-adb.el (tramp-adb-get-toolbox):
5614 Fix misspelling of 'unknown'.
5615
5616 2013-01-08 Juri Linkov <juri@jurta.org>
5617
5618 * textmodes/flyspell.el (flyspell-incorrect, flyspell-duplicate):
5619 * progmodes/flymake.el (flymake-errline, flymake-warnline):
5620 Use underline style wave on terminals that support it. (Bug#13000)
5621
5622 2013-01-08 Stefan Monnier <monnier@iro.umontreal.ca>
5623
5624 * emacs-lisp/pcase.el (pcase--split-equal): Also take advantage if
5625 the predicate returns nil.
5626
5627 * simple.el: Use lexical-binding.
5628 (primitive-undo): Use pcase.
5629 (minibuffer-history-isearch-push-state): Use a closure.
5630
5631 2013-01-08 Aaron S. Hawley <aaron.s.hawley@gmail.com>
5632
5633 * simple.el (primitive-undo): Move from undo.c.
5634
5635 2013-01-08 Stefan Monnier <monnier@iro.umontreal.ca>
5636
5637 * vc/pcvs.el (cvs-cleanup-collection): Extend meaning of `rm-handled'.
5638 (cvs-mode-remove-handled): Use it (bug#13380).
5639
5640 * emacs-lisp/nadvice.el (advice--tweak): New function.
5641 (advice--remove-function, advice--subst-main): Use it.
5642
5643 * emacs-lisp/advice.el: Update commentary.
5644
5645 2013-01-08 Michael Albinus <michael.albinus@gmx.de>
5646
5647 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
5648 Remove spurious entry.
5649
5650 2013-01-08 Glenn Morris <rgm@gnu.org>
5651
5652 * net/tramp.el (tramp-default-host-alist): Add :version.
5653
5654 2013-01-08 Juri Linkov <juri@jurta.org>
5655
5656 * info.el (Info-read-node-name-2): Don't duplicate suffixes for
5657 single completion. (Bug#12456)
5658 (info--manual-names): Expand node completions into an explicit list
5659 before appending it to another list. Filter out internal buffers
5660 with the leading space in the buffer name. (Bug#10771)
5661
5662 2013-01-08 Juri Linkov <juri@jurta.org>
5663
5664 * info.el (Info-read-node-name-1): Allow empty node name in (FILENAME)
5665 that defaults to the Top node.
5666 (Info-goto-node, Info-read-node-name): Doc fix to mention that
5667 the short format (FILENAME) goes to the Top node.
5668 (Info-build-node-completions): Rename arg `file' to `filename'.
5669 (Bug#13365)
5670
5671 2013-01-07 Bastien Guerry <bzg@gnu.org>
5672
5673 * menu-bar.el (menu-bar-search-documentation-menu):
5674 Use `apropos-user-option' and fix the help message.
5675
5676 2013-01-07 Bastien Guerry <bzg@gnu.org>
5677
5678 * apropos.el (apropos-do-all): Update docstring.
5679 (apropos-user-option-button): New face.
5680 (apropos-user-option): Rename from `apropos-variable' and update
5681 docstring.
5682 (apropos-variable): Rewrite, now show all variables by default.
5683 (apropos-print): Mention "User option" instead of "Variable" when
5684 printing doc for user options. (Bug#13276)
5685
5686 2013-01-07 Jürgen Hötzel <juergen@archlinux.org>
5687
5688 * net/tramp-adb.el (tramp-do-parse-file-attributes-with-ls):
5689 Handle filename correctly, when parsing "source -> target" symlink
5690 output.
5691 (tramp-adb-handle-set-file-times): New defun.
5692
5693 2013-01-07 Stefan Monnier <monnier@iro.umontreal.ca>
5694
5695 * emacs-lisp/advice.el (ad-activate-advised-definition): Refresh the
5696 advice list when the interactive-spec of ad-Advice-* changes.
5697
5698 2013-01-07 Katsumi Yamaoka <yamaoka@jpl.org>
5699
5700 * wid-edit.el (widget-default-get): Work for inlined elements.
5701 (Bug#12670)
5702
5703 2013-01-07 Michael Albinus <michael.albinus@gmx.de>
5704
5705 * net/tramp.el (tramp-default-host-alist): New defcustom.
5706 (tramp-find-host): Use it.
5707 (tramp-eshell-directory-change): Move from tramp-sh.el. Add to
5708 `eshell-directory-change-hook'.
5709
5710 * net/tramp-adb.el (top): Add adb specific entry in
5711 `tramp-default-host-alist'.
5712 (tramp-adb-file-name-host): Remove function.
5713 (tramp-adb-execute-adb-command, tramp-adb-maybe-open-connection):
5714 Use `tramp-file-name-host' instead of `tramp-adb-file-name-host'.
5715
5716 * net/tramp-sh.el: Move eshell integration code to tramp.el.
5717
5718 2013-01-06 Jürgen Hötzel <juergen@archlinux.org>
5719
5720 * net/tramp-adb.el (tramp-methods): Add `tramp-tmpdir' entry.
5721
5722 2013-01-06 Michael Albinus <michael.albinus@gmx.de>
5723
5724 * net/tramp-adb.el (tramp-adb-ls-toolbox-regexp): The file size can
5725 consist of more than one digit.
5726 (tramp-adb-file-name-handler-alist):
5727 Use `tramp-handle-file-exists-p' consistently.
5728 (tramp-adb-file-name-handler): Don't tweak `tramp-default-host'.
5729 (tramp-adb-handle-file-exists-p): Remove function.
5730 (tramp-adb-file-name-host): New defun.
5731 (tramp-adb-execute-adb-command, tramp-adb-maybe-open-connection):
5732 Use it.
5733 (tramp-adb-maybe-open-connection): Set "remote-path" property.
5734
5735 2013-01-06 Chong Yidong <cyd@gnu.org>
5736
5737 * vc/vc.el (vc-next-action): Detect buffer modifications
5738 conflicting with locking VCS operation (Bug#11490).
5739
5740 * vc/vc-hooks.el (vc-after-save): DTRT for locking VCSes.
5741
5742 2013-01-05 Michael Albinus <michael.albinus@gmx.de>
5743
5744 * net/tramp-adb.el (tramp-do-parse-file-attributes-with-ls):
5745 (tramp-adb-handle-directory-files-and-attributes): Fix typos.
5746
5747 2013-01-05 Jürgen Hötzel <juergen@archlinux.org>
5748
5749 * net/tramp-adb.el (tramp-adb-handle-file-attributes): More robust
5750 parsing of ls output using regular expression (handle filenames
5751 with spaces). Use virtual device number.
5752 (tramp-do-parse-file-attributes-with-ls): New defun (Code
5753 cleanup).
5754
5755 2013-01-04 Daiki Ueno <ueno@gnu.org>
5756
5757 * epg.el: Silence byte-compiler warnings.
5758 (epg--start): Use delete-char instead of delete-backward-char.
5759 (epg-wait-for-completion): Pass FRAME arg to redraw-frame.
5760
5761 2013-01-04 Daiki Ueno <ueno@gnu.org>
5762
5763 * epg.el (epg--start): Don't call "tty" program on W32 platforms.
5764 Suggested by Eli Zaretskii <eliz@gnu.org>.
5765
5766 2013-01-04 Michael Albinus <michael.albinus@gmx.de>
5767
5768 * net/tramp-sh.el (tramp-set-file-uid-gid): UID and GID must be
5769 non-negative integers. Otherwise, the default values are used.
5770 (tramp-convert-file-attributes): Convert uid and gid to integers.
5771
5772 2013-01-04 Glenn Morris <rgm@gnu.org>
5773
5774 * term.el (term-handle-colors-array): Ensure face attributes
5775 are fully specified, not nil. (Bug#13337)
5776
5777 * term.el (term-default-fg-color, term-default-bg-color):
5778 Fix custom type.
5779
5780 * progmodes/etags.el (tags-compression-info-list): Doc fix.
5781 (tag-find-file-of-tag-noselect): Check auto-compression-mode
5782 rather than 'jka-compr being loaded. (Bug#13338)
5783
5784 2013-01-04 Wesley Dawson <whd@lavabit.com> (tiny change)
5785
5786 * icomplete.el (icomplete-completions):
5787 Honor icomplete-prospects-height once more following
5788 2012-11-29 changes. (Bug#13224)
5789
5790 2013-01-04 Stefan Monnier <monnier@iro.umontreal.ca>
5791
5792 * subr.el (internal--called-interactively-p--get-frame): Find aliases
5793 of called-interactively-p as well (bug#13237).
5794
5795 * view.el (view--enable, view--disable): Rename from view-mode-enable
5796 and view-mode-disable and assume it's called from view-mode.
5797 (view-mode-enable, view-mode-disable): Redefine as obsolete
5798 compatibility layer above view-mode.
5799 (view-mode-enter): Call `view-mode'.
5800
5801 * files.el (after-find-file): Call `view-mode'.
5802
5803 * doc-view.el (doc-view-scale-internally): New var.
5804 (doc-view-enlarge, doc-view-insert-image): Obey it.
5805
5806 2013-01-03 Daiki Ueno <ueno@gnu.org>
5807
5808 * epg.el (epg--start): Ignore errors when /dev/fd/0 does not
5809 exist. (Bug#13344)
5810
5811 2013-01-03 Glenn Morris <rgm@gnu.org>
5812
5813 * mail/rmail.el (rmail-set-header-1): Ignore case.
5814 Handle multi-line headers. (Bug#13330)
5815
5816 * progmodes/make-mode.el (makefile-fill-paragraph): Add doc.
5817 Handle paragraph starting at beginning of buffer.
5818
5819 * subr.el (eval-after-load): Don't purecopy the form, so that it
5820 can be nconc'd later on; reverts 2009-11-11 change. (Bug#13331)
5821
5822 * emacs-lisp/byte-run.el (defun): Place cl declarations
5823 after any interactive spec. (Bug#13265)
5824
5825 2013-01-02 Andreas Schwab <schwab@linux-m68k.org>
5826
5827 * emacs-lisp/byte-run.el (defmacro): Use same argument parsing as
5828 defun. Don't check for DECL if DOCSTRING isn't a string.
5829 (defun): Likewise.
5830
5831 2013-01-02 Glenn Morris <rgm@gnu.org>
5832
5833 * eshell/em-cmpl.el (eshell-pcomplete):
5834 More thoroughly imitate pcomplete. (Bug#13293)
5835
5836 * files.el (parse-colon-path): Doc fix. (Bug#12351)
5837 Return nil for empty path elements. (Bug#13296)
5838
5839 2013-01-02 Fabián Ezequiel Gallina <fgallina@cuca>
5840
5841 * progmodes/python.el (python-nav-end-of-statement): Rewrite in
5842 order to improve efficiency (Based on Daniel Colascione's
5843 <dancol@dancol.org> patch). (Bug#13182)
5844
5845 2013-01-02 Glenn Morris <rgm@gnu.org>
5846
5847 * vc/log-edit.el (log-edit-header-contents-regexp): Add doc string.
5848
5849 2013-01-02 Andreas Schwab <schwab@linux-m68k.org>
5850
5851 * emacs-lisp/byte-run.el (defmacro): Don't lose final nil if
5852 neither DOCSTRING nor DECL was given. (Bug#13316)
5853
5854 2013-01-02 Michael Albinus <michael.albinus@gmx.de>
5855
5856 * net/tramp-sh.el (tramp-sh-handle-set-file-acl): Add argument to
5857 `error' call.
5858 (tramp-do-copy-or-rename-file): Ignore errors when calling
5859 `set-file-extended-attributes'.
5860
5861 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
5862 Add handler for `file-acl'.
5863 (tramp-smb-handle-file-acl): New defun.
5864
5865 2013-01-02 Jay Belanger <jay.p.belanger@gmail.com>
5866
5867 * calc/README: Mention ISO 8601 week-numbering dates.
5868
5869 2013-01-01 Martin Rudalics <rudalics@gmx.at>
5870
5871 * view.el (view-mode-enable): New argument run-view-mode-hook.
5872 Run view-mode-hook only when it's non-nil (Bug#13315).
5873 (view-mode-enter): Call view-mode-enable with run-view-mode-hook
5874 argument t.
5875
5876 2012-12-31 Jürgen Hötzel <juergen@archlinux.org>
5877
5878 * net/tramp-adb.el (tramp-adb-maybe-open-connection): Handle errors
5879 (No device connected, invalid device name). (Bug #13299)
5880
5881 2012-12-31 Martin Rudalics <rudalics@gmx.at>
5882
5883 * window.el (window-resizable--p): Rename to window-resizable-p.
5884 (window-resize-no-error): New function.
5885
5886 * mail/rmail.el (rmail-maybe-display-summary): Restore behavior
5887 broken in fix from 2012-12-28.
5888
5889 2012-12-31 Stefan Monnier <monnier@iro.umontreal.ca>
5890
5891 * subr.el (special-form-p): Don't signal errors on undef aliases.
5892
5893 2012-12-31 Jay Belanger <jay.p.belanger@gmail.com>
5894
5895 * calc/calc-forms.el (math-parse-date): Try using
5896 `math-parse-iso-date' when it looks like it might be needed.
5897 Allow times of 24:00.
5898 (math-parse-date-validate, math-parse-iso-date-validate): Allow times
5899 of 24:00.
5900
5901 2012-12-30 Glenn Morris <rgm@gnu.org>
5902
5903 * net/mairix.el (rmail, rmail-summary-displayed, rmail-summary):
5904 Remove unnecessary/buggy autoloads (missing interactive). (Bug#13294)
5905 (rmail-summary-displayed, rmail-summary): Declare.
5906 (mairix-rmail-display): Just require rmail.
5907
5908 2012-12-30 Chong Yidong <cyd@gnu.org>
5909
5910 * emacs-lisp/package.el (package-untar-buffer): Improve integrity
5911 check for the tarball contents.
5912
5913 2012-12-30 Matt Fidler <matt.fidler@alcon.com> (tiny change)
5914
5915 * emacs-lisp/package.el (package-untar-buffer): Handle problematic
5916 tarfile content listings (Bug#13136).
5917
5918 2012-12-30 Mark Lillibridge <mark.lillibridge@hp.com>
5919
5920 * mail/rmailmm.el (rmail-insert-mime-forwarded-message):
5921 Insert the undecoded text of the message being forwarded. (Bug#9521)
5922
5923 2012-12-30 Michael Albinus <michael.albinus@gmx.de>
5924
5925 * net/tramp-sh.el (tramp-set-file-uid-gid): Convert UID and GID to
5926 integers, if they are real numbers. (Bug#13282)
5927
5928 * net/tramp-sh.el (tramp-sh-handle-set-file-selinux-context):
5929 Return `t' on success.
5930
5931 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
5932 Add handler for `set-file-selinux-context'.
5933
5934 2012-12-29 Michael Albinus <michael.albinus@gmx.de>
5935
5936 * net/tramp-sh.el (tramp-sh-handle-file-acl): Suppress basic attributes.
5937 (tramp-sh-handle-set-file-acl): Return `t' on success.
5938
5939 2012-12-29 Eli Zaretskii <eliz@gnu.org>
5940
5941 * files.el (backup-buffer-copy, basic-save-buffer-2):
5942 If set-file-extended-attributes fails, fall back on set-file-modes
5943 instead of signaling an error. (Bug#13298)
5944 (basic-save-buffer): Likewise.
5945
5946 2012-12-29 Fabián Ezequiel Gallina <fgallina@cuca>
5947
5948 * progmodes/python.el: Support other commands triggering
5949 python-indent-line so indentation cycling continues to work.
5950 (python-indent-trigger-commands): New defcustom.
5951 (python-indent-line): Use it.
5952
5953 2012-12-29 Fabián Ezequiel Gallina <fgallina@cuca>
5954
5955 * progmodes/python.el (python-shell-send-region): Add blank lines
5956 for non sent code so backtraces remain correct.
5957
5958 2012-12-29 Fabián Ezequiel Gallina <fgallina@cuca>
5959
5960 * progmodes/python.el: Remove cl dependency.
5961 (python-syntax-count-quotes): Replace incf call.
5962 (python-fill-string): Replace setf call.
5963
5964 2012-12-29 Damien Cassou <damien.cassou@gmail.com>
5965
5966 * info.el (info-other-window): New arg, for consistency with info.
5967
5968 2012-12-28 Martin Rudalics <rudalics@gmx.at>
5969
5970 * mail/rmail.el (rmail-maybe-display-summary):
5971 Rewrite (Bug#13066).
5972
5973 2012-12-28 Andreas Schwab <schwab@linux-m68k.org>
5974
5975 * epg.el (epg--start): Modify process-environment locally.
5976
5977 2012-12-28 Daiki Ueno <ueno@gnu.org>
5978
5979 * epg.el: Support pinentry-curses.
5980 Suggested by Werner Koch in
5981 <http://lists.gnu.org/archive/html/emacs-devel/2007-02/msg00755.html>.
5982 (epg-agent-file, epg-agent-mtime): New variable.
5983 (epg--start): Record the modified time of gpg-agent socket file,
5984 to restore Emacs frame after pinentry-curses termination.
5985 (epg-wait-for-completion): Restore Emacs frame here.
5986
5987 2012-12-27 Juri Linkov <juri@jurta.org>
5988
5989 * info.el (Info-file-completions): New variable.
5990 (Info-read-node-name-1): Complete node names in the Info file
5991 when a file name is given. Call `Info-build-node-completions'
5992 with a file name.
5993 (Info-build-node-completions): Add new arg `file'. When it is
5994 non-nil, visit it in a temporary buffer and cache its completions in
5995 `Info-current-file-completions'. Move most of the function body to
5996 `Info-build-node-completions-1'.
5997 (Info-build-node-completions-1): New function with the body from
5998 `Info-build-node-completions'. (Bug#12456)
5999
6000 2012-12-27 Juri Linkov <juri@jurta.org>
6001
6002 * frame.el (frame-maximization-style): Remove user option.
6003 (cycle-frame-maximized): Remove function.
6004 (toggle-frame-maximized): Rewrite and bind to M-<f10>.
6005 (toggle-frame-fullscreen): New command bound to <f11> instead of
6006 `toggle-frame-maximized'.
6007 http://lists.gnu.org/archive/html/emacs-devel/2012-12/msg00703.html
6008
6009 2012-12-27 Michael Albinus <michael.albinus@gmx.de>
6010
6011 * net/tramp.el (tramp-handle-file-accessible-directory-p): New defun.
6012
6013 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
6014 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
6015 * net/tramp-sh.el (tramp-sh-file-name-handler-alist): Add handler
6016 for `file-accessible-directory-p'. (Bug#13275)
6017
6018 2012-12-27 Sam Steingold <sds@gnu.org>
6019
6020 * progmodes/cperl-mode.el (cperl-calculate-indent): Do not stagger
6021 continuations, see <http://stackoverflow.com/questions/3582436>.
6022
6023 2012-12-27 Dmitry Gutov <dgutov@yandex.ru>
6024
6025 * progmodes/ruby-mode.el (ruby-indent-beg-re): Only allow "class",
6026 "module" and "def" to have indentation before them.
6027 Regression from 2012-09-07T04:15:56Z!dgutov@yandex.ru (see the new test).
6028
6029 * progmodes/ruby-mode.el: Bump the version to 1.2 (Bug#13200).
6030
6031 2012-12-27 Alan Mackenzie <acm@muc.de>
6032
6033 Speed up fontification where there's large brace blocks.
6034 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls): Add a limit
6035 to a call of c-beginning-of-decl-1.
6036
6037 2012-12-27 Vitalie Spinu <spinuvit@gmail.com> (tiny change)
6038
6039 * comint.el (comint-adjust-window-point): New function.
6040 (comint-postoutput-scroll-to-bottom):
6041 Call comint-adjust-window-point (Bug#13248).
6042
6043 2012-12-26 Dmitry Gutov <dgutov@yandex.ru>
6044
6045 * progmodes/ruby-mode.el (auto-mode-alist): `purecopy' the
6046 Rakefile regexp.
6047 (auto-mode-alist): Associate .gemspec files with ruby-mode
6048 (https://bugs.ruby-lang.org/issues/5453).
6049
6050 2012-12-26 Jürgen Hötzel <juergen@archlinux.org>
6051
6052 * net/tramp-adb.el (tramp-adb-get-ls-command): New defun.
6053 Suppress coloring, if possible (required for BusyBox based systems like
6054 CyanogenMod).
6055 (tramp-adb-handle-file-attributes)
6056 (tramp-adb-handle-insert-directory)
6057 (tramp-adb-handle-file-name-all-completions): Use it.
6058 (tramp-adb-get-toolbox): New defun. Check for remote shell
6059 implementation (BusyBox or Toolbox).
6060
6061 2012-12-24 Constantin Kulikov <zxnotdead@gmail.com> (tiny change)
6062
6063 * startup.el (initial-buffer-choice): Allow function as value
6064 (Bug#13251).
6065 (command-line-1): Handle case where initial-buffer-choice
6066 specifies a function.
6067 * server.el (server-execute): Handle case where
6068 initial-buffer-choice specifies a function.
6069
6070 2012-12-24 Lars Ingebrigtsen <larsi@gnus.org>
6071
6072 * mail/smtpmail.el (smtpmail-try-auth-method): Refactored out into
6073 its own function.
6074 (smtpmail-try-auth-methods): Forget the user name/password if the
6075 login is unsuccessful (bug#12424).
6076
6077 2012-12-22 Michael Albinus <michael.albinus@gmx.de>
6078
6079 * notifications.el (notifications-notify): Protect body with
6080 `with-demoted-errors'.
6081
6082 * net/tramp-adb.el (tramp-adb-maybe-open-connection):
6083 Check properties of remote device. Restart connection, if there is a
6084 change.
6085
6086 2012-12-21 Chong Yidong <cyd@gnu.org>
6087
6088 * sort.el (sort-subr): Doc fix (Bug#13056).
6089
6090 2012-12-21 Bastien Guerry <bzg@gnu.org>
6091
6092 * progmodes/etags.el (tags-search): Fix typo. Bug #13232.
6093
6094 2012-12-21 Michael Albinus <michael.albinus@gmx.de>
6095
6096 * simple.el (process-file): Overwrite stderr file, if exists.
6097
6098 2012-12-21 Daiki Ueno <ueno@gnu.org>
6099
6100 * epg.el (epg--start): Print GPG_AGENT_INFO in the debug buffer.
6101 (epg-error): Set `error-message' property.
6102
6103 2012-12-21 Chong Yidong <cyd@gnu.org>
6104
6105 * international/mule-cmds.el (read-char-by-name): Signal an error
6106 if the user does not supply a valid character (Bug#13177).
6107
6108 * simple.el (transpose-subr-1): Preserve marker positions by
6109 changing the insertion sequence (Bug#13122).
6110
6111 2012-12-21 Kelly Dean <kellydeanch@yahoo.com> (tiny change)
6112
6113 * simple.el (kill-region): Deactivate mark even for empty regions
6114 (Bug#13169).
6115
6116 2012-12-21 Chong Yidong <cyd@gnu.org>
6117
6118 * help-fns.el (describe-variable): Make sure we get the right
6119 buffer name (Bug#13105). Suggested by Kelly Dean.
6120
6121 2012-12-20 Michael R. Mauger <mmaug@yahoo.com>
6122
6123 * comint.el (comint-redirect-previous-input-string): New variable.
6124 (comint-redirect-setup, comint-redirect-cleanup)
6125 (comint-redirect-preoutput-filter): Use it. Fixes redirection bug.
6126 (comint-redirect-preoutput-filter): Fix verbose message.
6127
6128 2012-12-20 Michael Albinus <michael.albinus@gmx.de>
6129
6130 * progmodes/grep.el (rgrep): Escape command line. Sometimes, it
6131 is too long for Tramp. See discussion in
6132 <http://thread.gmane.org/gmane.emacs.tramp/8233/focus=8244>.
6133
6134 * progmodes/compile.el (compilation-start): Remove line escape
6135 template.
6136
6137 2012-12-20 Dmitry Antipov <dmantipov@yandex.ru>
6138
6139 * vc/ediff-ptch.el (ediff-map-patch-buffer): Use `point-min-marker'.
6140 Adjust comment.
6141
6142 2012-12-19 Jonas Bernoulli <jonas@bernoul.li>
6143
6144 * emacs-lisp/lisp-mnt.el (lm-section-end): Always end before the
6145 following non-comment text (bug#13207).
6146 (lm-header-multiline): Continuation lines need to be indented more than
6147 the first line.
6148 (lm-homepage): New function.
6149 (lm-with-file): Don't be confused if narrowing is in effect.
6150
6151 2012-12-19 Stefan Monnier <monnier@iro.umontreal.ca>
6152
6153 * vc/diff-mode.el (diff-post-command-hook): Don't ignore changes at the
6154 very beginning of a hunk (e.g. killing the first line).
6155
6156 2012-12-19 Michael Albinus <michael.albinus@gmx.de>
6157
6158 * net/tramp-sh.el (tramp-sh-handle-file-acl): Delete empty lines
6159 and text properties from returned ACL string.
6160 (tramp-sh-handle-set-file-acl): Do not use additional parentheses
6161 for "setfacl" command.
6162
6163 2012-12-18 Michael Albinus <michael.albinus@gmx.de>
6164
6165 * net/tramp.el (tramp-error-with-buffer): Give a hint to use
6166 `tramp-cleanup-this-connection', when the process has died.
6167 (Bug#13151)
6168
6169 2012-12-17 Stefan Monnier <monnier@iro.umontreal.ca>
6170
6171 * icomplete.el (icomplete-completions): Also use … to truncate prefix.
6172
6173 2012-12-17 Kevin Ryde <user42@zip.com.au>
6174
6175 * files.el (auto-save-file-name-p): Use \` and \' (bug#13186).
6176
6177 2012-12-17 Michael Albinus <michael.albinus@gmx.de>
6178
6179 Add support for preserving ACL entries of files.
6180
6181 * net/tramp.el (tramp-file-name-for-operation): Add `file-acl' and
6182 `set-file-acl' handlers.
6183
6184 * net/tramp-adb.el (tramp-adb-handle-copy-file):
6185 Handle PRESERVE-EXTENDED-ATTRIBUTES.
6186
6187 * net/tramp-compat.el (tramp-compat-copy-file):
6188 Handle PRESERVE-EXTENDED-ATTRIBUTES.
6189
6190 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
6191 Add `file-acl' and `set-file-acl' handlers.
6192 (tramp-gvfs-handle-copy-file):
6193 Handle PRESERVE-EXTENDED-ATTRIBUTES.
6194 (tramp-gvfs-handle-file-acl, tramp-gvfs-handle-set-file-acl):
6195 New defuns.
6196
6197 * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
6198 Add `file-acl' and `set-file-acl' handlers.
6199 (tramp-remote-acl-p, tramp-sh-handle-file-acl)
6200 (tramp-sh-handle-set-file-acl): New defuns.
6201 (tramp-sh-handle-copy-file, tramp-do-copy-or-rename-file):
6202 Handle PRESERVE-EXTENDED-ATTRIBUTES.
6203
6204 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
6205 Add `file-acl' and `set-file-acl' handlers.
6206 (tramp-smb-handle-copy-file): Handle PRESERVE-EXTENDED-ATTRIBUTES.
6207
6208 2012-12-17 Kelly Dean <kellydeanch@yahoo.com> (tiny change)
6209
6210 * help-macro.el (make-help-screen): Instead of switch-to-buffer
6211 use pop-to-buffer with NORECORD argument t. As buffer name, use
6212 *Metahelp* with a leading space (Bug#13190).
6213
6214 2012-12-16 Romain Francoise <romain@orebokech.com>
6215
6216 * files.el (file-extended-attributes)
6217 (set-file-extended-attributes): New functions.
6218 (backup-buffer): Use them to handle both SELinux context and ACL
6219 entries.
6220 (backup-buffer-copy): Work with an alist of extended attributes,
6221 rather than an SELinux context.
6222 (basic-save-buffer-2): Ditto.
6223
6224 2012-12-16 Timo Myyrä <timo.myyra@gmail.com>
6225
6226 * battery.el (battery-bsd-apm): New function.
6227
6228 2012-12-16 Jay Belanger <jay.p.belanger@gmail.com>
6229
6230 * calc/calc.el (calc-standard-date-formats): Adjust one of the
6231 standard date formats.
6232
6233 2012-12-15 Juri Linkov <juri@jurta.org>
6234
6235 * isearch.el (isearch-mode-map): Bind `C-x 8 RET' to
6236 `isearch-insert-char-by-name'.
6237 (with-isearch-suspended): New defmacro with body mostly from
6238 `isearch-edit-string' except the part that sets
6239 `isearch-new-string' and `isearch-new-message'.
6240 (isearch-edit-string): Use new macro `with-isearch-suspended' with
6241 body that sets `isearch-new-string' and `isearch-new-message'.
6242 (isearch-insert-char-by-name): New command.
6243 * international/mule-cmds.el (read-char-by-name): Let-bind
6244 `enable-recursive-minibuffers' to t.
6245 http://lists.gnu.org/archive/html/emacs-devel/2012-12/msg00234.html
6246
6247 2012-12-15 Juri Linkov <juri@jurta.org>
6248
6249 * isearch.el (isearch-delete-char, isearch-del-char): Doc fix.
6250 (Bug#13175)
6251
6252 2012-12-15 Christopher Schmidt <christopher@ch.ristopher.com>
6253
6254 * dired-x.el (dired-guess-shell-command): Put colon at the end of
6255 the prompt. (Bug#13045)
6256
6257 2012-12-14 Glenn Morris <rgm@gnu.org>
6258
6259 * emacs-lisp/macroexp.el (macroexp--warn-and-return):
6260 Try to include filename in non-bytecomp warning. (Bug#13132)
6261
6262 2012-12-14 Paul Eggert <eggert@cs.ucla.edu>
6263
6264 Fix permissions bugs with setgid directories etc. (Bug#13125)
6265 * files.el (backup-buffer): Don't rely on 9th output of
6266 file-attributes, as it's now a placeholder. Instead, use the new
6267 optional arg of file-ownership-preserved-p.
6268 (file-ownership-preserved-p): New optional arg GROUP.
6269 Fix mishandling of setuid directories that would cause this
6270 function to return t when it should have returned nil.
6271 Document what happens if the file does not exist, and when
6272 it's not known whether the ownership will be preserved.
6273 * net/tramp-sh.el (tramp-sh-handle-file-ownership-preserved-p):
6274 Likewise.
6275 (tramp-get-local-gid): Use group-gid for integer, as that's
6276 faster and more reliable.
6277
6278 2012-12-14 Julien Danjou <julien@danjou.info>
6279
6280 * progmodes/sql.el (sql-mode-postgres-font-lock-keywords):
6281 Update keywords list, data type and PL/pgSQL.
6282
6283 2012-12-14 Dave Abrahams <dave@boostpro.com>
6284
6285 * vc/ediff-util.el (ediff-buffer-type): New function.
6286 (ediff-clone-buffer-for-current-diff-comparison): Compute the buf-type
6287 rather than taking it as as argument.
6288 (ediff-inferior-compare-regions): Adjust calls accordingly (bug#11319).
6289
6290 2012-12-14 Ryan Crum <ryan.crum@eleostech.com>
6291
6292 * json.el: Add pretty-print option (bug#12634).
6293 (json-encoding-separator, json-encoding-default-indentation)
6294 (json--encoding-current-indentation, json-encoding-pretty-print)
6295 (json-encoding-lisp-style-closings): New vars.
6296 (json--with-indentation): New macro.
6297 (json-encode-hash-table, json-encode-alist, json-encode-plist)
6298 (json-encode-array): Use it to obey json-encoding-pretty-print.
6299 (json-pretty-print-buffer, json-pretty-print): New commands.
6300
6301 2012-12-14 Dmitry Gutov <dgutov@yandex.ru>
6302
6303 * progmodes/ruby-mode.el (ruby-syntax-propertize-function):
6304 Extract `ruby-syntax-propertize-expansions'.
6305 (ruby-syntax-propertize-expansions): Only change syntax on
6306 certain string delimiters, to punctuation. This way the common
6307 functions like forward-word and thing-at-point still work.
6308 (ruby-match-expression-expansion): Improve readability.
6309 (ruby-block-contains-point): New function.
6310 (ruby-add-log-current-method): Handle several edge cases.
6311
6312 2012-12-13 Juanma Barranquero <lekktu@gmail.com>
6313
6314 * emacs-lisp/edebug.el (edebug-unload-function): Make sure that
6315 unload-feature finishes even when aborting an ongoing edebug session.
6316 Also, do not worry about edebug-mode, unload-feature takes care of it.
6317
6318 2012-12-13 Andreas Schwab <schwab@suse.de>
6319
6320 * net/tls.el (tls-program): Update customize type.
6321
6322 2012-12-13 Juanma Barranquero <lekktu@gmail.com>
6323
6324 * emacs-lisp/edebug.el (edebug--require-cl-read): New function.
6325 (edebug-setup-hook, cl-read-load-hooks): Use it.
6326 (edebug-unload-function): New function. (Bug#13163)
6327
6328 2012-12-13 Michael Albinus <michael.albinus@gmx.de>
6329
6330 * net/tramp-adb.el (tramp-adb-file-name-p): Make it a defsubst.
6331 Otherwise, there could be errors in autoloading. (Bug#13151)
6332
6333 2012-12-13 Jürgen Hötzel <juergen@archlinux.org>
6334
6335 * net/tramp-adb.el (tramp-adb-wait-for-output): Remove spurious " ^H"
6336 sequences.
6337
6338 2012-12-13 Alan Mackenzie <acm@muc.de>
6339
6340 Make CC Mode not hang when _some_ lines end in CRLF. Bug #11841.
6341 * progmodes/cc-engine.el (c-backward-comments): Add code to work
6342 around `forward-comment' not recognizing ^M as whitespace.
6343
6344 2012-12-13 Fabián Ezequiel Gallina <fgallina@cuca>
6345
6346 * progmodes/python.el (python-skeleton-class)
6347 (python-skeleton-def): Do not add space after defun name.
6348
6349 2012-12-13 Stefan Monnier <monnier@iro.umontreal.ca>
6350
6351 * emacs-lisp/cl.el (letf): Make it an alias of cl-letf.
6352 (cl--symbol-function): Remove (now that funbound is like nil).
6353
6354 2012-12-12 Glenn Morris <rgm@gnu.org>
6355
6356 * button.el (button--area-button-p): Fix typo.
6357
6358 2012-12-12 Sam Steingold <sds@gnu.org>
6359
6360 * frame.el (frame-maximization-style): New user option.
6361 (toggle-frame-maximized): Toggle frame maximization according to
6362 `frame-maximization-style', bound to <f11>.
6363 (cycle-frame-maximized): Cycle between all maximization styles and
6364 non-maximized frame, bound to shift-<f11>.
6365
6366 2012-12-12 David Cadé <codename68@gmail.com>
6367
6368 * mpc.el (mpc-format): Use truncate-string-to-width (bug#13143).
6369
6370 2012-12-12 Jonas Bernoulli <jonas@bernoul.li>
6371
6372 * lisp/emacs-lisp/eieio.el: Prettier object pretty-printing (bug#13115).
6373 (eieio-override-prin1): Don't quote kewords and booleans.
6374 (object-write) <eieio-default-superclass>: Don't put closing parens
6375 on new line, avoid needless empty lines, align values that are objects
6376 with the slot keyword (instead of beginning on the same line).
6377 (eieio-list-prin1): Align value with slot keyword; increase
6378 eieio-print-depth before printing members of the list.
6379
6380 2012-12-11 Stefan Monnier <monnier@iro.umontreal.ca>
6381
6382 * mail/emacsbug.el (report-emacs-bug): Move the intangible text to
6383 a display text-property.
6384 (report-emacs-bug-hook): Don't bother deleting it any more.
6385
6386 * hilit-chg.el (highlight-save-buffer-state): Delete.
6387 Use with-silent-modifications instead.
6388 (hilit-chg-set-face-on-change): Only fixup the text that's modified.
6389
6390 * button.el: Handle buttons in display text-properties.
6391 (button--area-button-p, button--area-button-string):
6392 Use (STRING . STRING-POS) representation instead of just STRING.
6393
6394 2012-12-11 Eli Zaretskii <eliz@gnu.org>
6395
6396 * makefile.w32-in (compile4-SH): Fix a typo that caused term
6397 subdirectory be skipped.
6398
6399 2012-12-11 Glenn Morris <rgm@gnu.org>
6400
6401 * net/rcirc.el (rcirc-urls, rcirc-condition-filter): Doc fixes.
6402
6403 * progmodes/f90.el (f90-line-continued, f90-indent-region):
6404 Treat preprocessor lines embedded in continuations like comments.
6405 (f90-indent-line): Special-case preprocessor lines. (Bug#13138)
6406
6407 2012-12-11 Jay Belanger <jay.p.belanger@gmail.com>
6408
6409 * calc/calc.el (calc-standard-date-formats): Add more date
6410 formats.
6411 * calc/calc-forms.el (math-parse-iso-date): New function.
6412 (math-parse-date): Use `math-parse-iso-date' when appropriate.
6413 (math-parse-iso-date-validate): Add extra error checking.
6414 (calc-date-notation): Add ability to access new date formats.
6415
6416 2012-12-10 Stefan Monnier <monnier@iro.umontreal.ca>
6417
6418 * hi-lock.el (hi-lock--regexps-at-point): Fix boundary case for
6419 font-lock as well as when there's no text-property.
6420
6421 2012-12-10 Jambunathan K <kjambunathan@gmail.com>
6422
6423 * hi-lock.el: Refine the choice of default face.
6424 (hi-lock-keyword->face): New function. Use it wherever we used
6425 cadadadr instead.
6426 (hi-lock--regexps-at-point): Ignore faces that can't come from hi-lock.
6427 (hi-lock--last-face): Remove var.
6428 (hi-lock--unused-faces): New var to replace it.
6429 (hi-lock-read-face-name): Use/maintain it.
6430 (hi-lock-unface-buffer): Maintain it. Fix error for the C-u case.
6431 (hi-lock-set-pattern): Ignore new rule if it has the same regexp even
6432 if it has another face.
6433
6434 2012-12-10 Eli Zaretskii <eliz@gnu.org>
6435
6436 * subr.el (w32notify-handle-event): New function.
6437 (inotify-handle-event): Doc fix.
6438
6439 2012-12-10 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
6440
6441 * subr.el (inotify-event-p, inotify-handle-event): New functions.
6442
6443 2012-12-10 Dani Moncayo <dmoncayo@gmail.com>
6444
6445 * simple.el (just-one-space): Doc fix.
6446
6447 2012-12-10 Eli Zaretskii <eliz@gnu.org>
6448
6449 * textmodes/texinfo.el (texinfo-enable-quote-envs): Add "smallexample".
6450
6451 2012-12-10 Le Wang <l26wang@gmail.com>
6452
6453 * hilit-chg.el (hilit-chg-set-face-on-change): Don't burp in
6454 narrowed buffer (bug#12361).
6455
6456 2012-12-10 Juanma Barranquero <lekktu@gmail.com>
6457
6458 * vc/vc-hooks.el (vc-state): Doc fix.
6459
6460 2012-12-10 Glenn Morris <rgm@gnu.org>
6461
6462 * mail/rmail.el (rmail-maybe-display-summary):
6463 Preserve buffer, in case select-window changes it. (Bug#13066)
6464
6465 2012-12-10 Stefan Monnier <monnier@iro.umontreal.ca>
6466
6467 * emacs-lisp/cl.el, emacs-lisp/cl-lib.el: Move cl-unload-function and
6468 cl-load-hook where they belong.
6469
6470 2012-12-10 Stefan Monnier <monnier@iro.umontreal.ca>
6471
6472 * emacs-lisp/cl-lib.el (cl-declaim): Paren typo.
6473
6474 2012-12-09 Eli Zaretskii <eliz@gnu.org>
6475
6476 Parallelize byte compilation on MS-Windows.
6477 * makefile.w32-in (WINS_BASIC1, WINS_BASIC2, WINS_BASIC3)
6478 (WINS_BASIC4): New variables, subdivide subdirectories into 4 parts.
6479 (WINS_BASIC): Define as concatenation of the above.
6480 (compile): Subdivide into 4 separate and independent jobs that can
6481 be run in parallel.
6482 (compile0-CMD, compile0-SH): New targets for compiling
6483 COMPILE_FIRST files, which are prerequisites for the rest of the
6484 byte-compilation.
6485 (compile1-CMD, compile2-CMD, compile3-CMD, compile4-CMD):
6486 New targets for parallel compilation with cmd.exe.
6487 (compile1-SH, compile2-SH, compile3-SH, compile4-SH): Ditto for
6488 compiling under a Unixy shell.
6489
6490 2012-12-09 Chong Yidong <cyd@gnu.org>
6491
6492 * simple.el (set-mark-default-inactive): Delete this
6493 accidentally-introduced option.
6494 (set-mark-command, exchange-point-and-mark): Remove calls.
6495
6496 2012-12-09 Glenn Morris <rgm@gnu.org>
6497
6498 * emacs-lisp/lisp-mode.el (eval-defun-1): Doc fix.
6499 Respect a defcustom's :set function, if appropriate. (Bug#109)
6500 (eval-defun): Doc fix.
6501
6502 2012-12-08 Juri Linkov <juri@jurta.org>
6503
6504 * info.el (Info-copy-current-node-name, Info-breadcrumbs)
6505 (Info-fontify-node, Info-bookmark-make-record): Remove the
6506 file extension from Info-current-file (Bug#13016).
6507
6508 2012-12-07 Stefan Monnier <monnier@iro.umontreal.ca>
6509
6510 * hi-lock.el (hi-lock-unface-buffer): If there's no matching regexp at
6511 point, still provide some default.
6512 (hi-lock--regexps-at-point): Don't enforce a "hi-lock-" prefix on face
6513 names, since we don't use it right now. Actually return the list.
6514 (hi-lock-file-patterns, hi-lock-interactive-patterns): Use defvar-local.
6515
6516 2012-12-07 Chong Yidong <cyd@gnu.org>
6517
6518 * novice.el (disabled-command-function): Remove a spurious help
6519 xref (Bug#13043). Suggested by Kelly Dean.
6520
6521 * subr.el (text-clone-maintain): Fix clone overlay deletion when a
6522 syntax is specified (Bug#13025).
6523
6524 * info.el (Info-set-mode-line): Remove the file extension from
6525 Info-current-file if there is one (Bug#13016).
6526
6527 2012-12-07 Glenn Morris <rgm@gnu.org>
6528
6529 * mail/rmail.el (rmail-mime-decoded): New permanent local.
6530 (rmail-show-message-1): Set rmail-mime-decoded when appropriate.
6531 * mail/rmailedit.el (rmail-cease-edit): Respect rmail-mbox-format
6532 and rmail-mime-decoded. (Bug#9841)
6533
6534 * mail/unrmail.el (unrmail-mbox-format): New option. (Bug#6574)
6535 (batch-unrmail, unrmail): Doc fixes.
6536 (unrmail): Respect unrmail-mbox-format.
6537 * mail/rmail.el (rmail-mbox-format): New option.
6538 (rmail-show-message-1): Respect rmail-mbox-format.
6539
6540 2012-12-07 Stefan Monnier <monnier@iro.umontreal.ca>
6541
6542 * emacs-lisp/cl-macs.el (cl-tagbody): New macro.
6543
6544 2012-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
6545
6546 Further cleanup of the "cl-" namespace. Fit CL in 80 columns.
6547 * emacs-lisp/cl-macs.el (cl--pop2, cl--optimize-safety)
6548 (cl--optimize-speed, cl--not-toplevel, cl--parse-loop-clause)
6549 (cl--expand-do-loop, cl--proclaim-history, cl--declare-stack)
6550 (cl--do-proclaim, cl--proclaims-deferred): Rename from the "cl-" prefix.
6551 (cl-progv): Don't rely on dynamic scoping to find the body.
6552 * emacs-lisp/cl-lib.el (cl--optimize-speed, cl--optimize-safety)
6553 (cl--proclaims-deferred): Rename from the "cl-" prefix.
6554 (cl-declaim): Use backquotes.
6555 * emacs-lisp/cl-extra.el (cl-make-random-state, cl-random-state-p):
6556 Use "cl--" prefix for the object's tag.
6557
6558 * ses.el: Use advice-add/remove.
6559 (ses--advice-copy-region-as-kill, ses--advice-yank): New functions.
6560 (copy-region-as-kill, yank): Use advice-add.
6561 (ses-unload-function): Use advice-remove.
6562
6563 2012-12-06 Jonas Bernoulli <jonas@bernoul.li>
6564
6565 * button.el: Make them work in header-lines (bug#12817).
6566 (button-map): Add bindings for header-line and mode-line use.
6567 (button-get, button-put, button-label): `button' may now be a string.
6568 (button-activate): Don't make it a defsubst.
6569 (button--area-button-p, button--area-button-string): New functions.
6570 (make-text-button): Fix the return value when `beg' was a string.
6571 (push-button): Handle the mode-line case.
6572
6573 2012-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
6574
6575 * progmodes/sql.el: Use cl-lib and lexical-binding; various cleanup.
6576 (sql-signum): Remove. Use `cl-signum' instead.
6577 (sql-read-passwd): Remove; use read-passwd instread.
6578 (sql-get-login-ext): Use read-string.
6579 (sql-get-login): Use dolist and pcase.
6580 (sql--completion-table): Rename from sql-try-completion.
6581 Use complete-with-action.
6582 (sql-mode): Don't change abbrev-all-caps globally.
6583 (sql-connect): Don't rely on dynamic scoping for `new-name'.
6584 (sql-postgres-completion-object): Initialize vars in their `let'.
6585 (sql-comint-sybase, sql-comint-sqlite, sql-comint-mysql)
6586 (sql-comint-solid, sql-comint-ms, sql-comint-postgres)
6587 (sql-comint-interbase): Use a single append, without setq.
6588 (sql-comint-linter): Same, and unwind-protect the LINTER_MBX var.
6589
6590 * hi-lock.el: Rework the default face and the serialize regexp code.
6591 (hi-lock--auto-select-face-defaults): Remove.
6592 (hi-lock-string-serialize-serial): Remove.
6593 (hi-lock--hashcons-hash): Rename from hi-lock-string-serialize-hash;
6594 make weak.
6595 (hi-lock--hashcons): Rename from hi-lock-string-serialize, return an
6596 equal string.
6597 (hi-lock-set-pattern): Adjust accordingly.
6598 (hi-lock--regexps-at-point): Simplify accordingly.
6599 (hi-lock--auto-select-face-defaults): Remove.
6600 (hi-lock--last-face): New var to replace it.
6601 (hi-lock-read-face-name): Rewrite (bug#11095).
6602 (hi-lock-unface-buffer): Arrange for the face to be the next default.
6603
6604 2012-12-06 Michael Albinus <michael.albinus@gmx.de>
6605
6606 * net/tramp.el (tramp-replace-environment-variables):
6607 Hide compiler warning.
6608 (tramp-file-name-for-operation): Remove `executable-find',
6609 `start-process', `call-process' and `call-process-region'.
6610
6611 * net/tramp-compat.el (top): Don't require 'tramp-util and 'tramp-vc.
6612
6613 * net/tramp-gvfs.el (tramp-gvfs-dbus-event-error): Ensure backward
6614 compatibility.
6615
6616 * net/tramp-sh.el (top): Remove `tramp-sh-handle-call-process-region'.
6617
6618 2012-12-06 Chong Yidong <cyd@gnu.org>
6619
6620 * ffap.el (ffap-replace-file-component): Fix typo.
6621
6622 2012-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
6623
6624 * progmodes/octave-mod.el (octave-mark-block): Move out of tokens and
6625 fix open-paren-like token test (bug#12785).
6626
6627 2012-12-06 Glenn Morris <rgm@gnu.org>
6628
6629 * mail/rmailsum.el (rmail-new-summary): Tweak for
6630 rmail-maybe-display-summary changing buffer. (Bug#13066)
6631
6632 2012-12-06 Juri Linkov <juri@jurta.org>
6633
6634 * info.el (Info-fontify-node): Don't hide the last newline.
6635 (Bug#12272)
6636
6637 2012-12-06 Katsumi Yamaoka <yamaoka@jpl.org>
6638
6639 * mail/mailabbrev.el (mail-abbrev-expand-wrapper): Work in minibuffer
6640 so as to enable message-read-from-minibuffer to expand mail aliases.
6641
6642 2012-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
6643
6644 * minibuf-eldef.el (minibuf-eldef-update-minibuffer): Don't mess with
6645 the `intangible' property.
6646 Suggested by Christopher Schmidt <christopher@ch.ristopher.com>
6647
6648 2012-12-05 Deniz Dogan <deniz@dogan.se>
6649
6650 * net/rcirc.el (rcirc-urls): Update documentation.
6651 (rcirc-condition-filter): New function.
6652 (rcirc-browse-url, rcirc-markup-urls): Use only URLs before point
6653 and exclude consecutive duplicate URLs (Bug#6082).
6654
6655 2012-12-05 Michael Albinus <michael.albinus@gmx.de>
6656
6657 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
6658 Check return code of copy command.
6659
6660 * net/tramp-adb.el (tramp-adb-sdk-dir, tramp-adb-prompt):
6661 Use group `tramp'. Add version.
6662
6663 2012-12-05 Chong Yidong <cyd@gnu.org>
6664
6665 * ffap.el (ffap-url-regexp): Don't require matching at front of
6666 string (Bug#4952).
6667 (ffap-url-p): If only a substring matches, return that.
6668 (ffap-url-at-point): Use the return value of ffap-url-p.
6669 (ffap-read-file-or-url, ffap-read-file-or-url-internal)
6670 (find-file-at-point, dired-at-point, dired-at-point-prompter)
6671 (ffap-guess-file-name-at-point): Likewise.
6672 (ffap-replace-file-component): Fix typo.
6673
6674 * info.el (info-display-manual): Add existing Info buffers, whose
6675 files may not be in Info-directory-list, to the completion.
6676 (info--manual-names): New helper function.
6677
6678 2012-12-05 Glenn Morris <rgm@gnu.org>
6679
6680 * vc/vc-hg.el (vc-hg-resolve-when-done, vc-hg-find-file-hook):
6681 New functions, for detecting and resolving conflicts. (Bug#10709)
6682
6683 2012-12-04 Jambunathan K <kjambunathan@gmail.com>
6684
6685 * hi-lock.el (hi-lock-auto-select-face): New user variable.
6686 (hi-lock-auto-select-face-defaults): New buffer local variable.
6687 (hi-lock-read-face-name): Honor `hi-lock-auto-select-face'.
6688 (hi-lock-unface-buffer): Prompt user with useful defaults.
6689 With prefix arg, unhighlight all hi-lock patterns in buffer.
6690
6691 2012-12-04 Stefan Monnier <monnier@iro.umontreal.ca>
6692
6693 * obsolete/terminal.el, obsolete/longlines.el: Add obsolecence info.
6694
6695 2012-12-04 Michael Albinus <michael.albinus@gmx.de>
6696
6697 * Makefile.in (TRAMP_SRC):
6698 * makefile.w32-in (TRAMP_SRC): Add tramp-adb.el.
6699
6700 2012-12-04 Juergen Hoetzel <juergen@archlinux.org>
6701
6702 * net/tramp-adb.el: New package.
6703
6704 2012-12-04 Chong Yidong <cyd@gnu.org>
6705
6706 * terminal.el: Move to obsolete/.
6707
6708 * longlines.el: Move to obsolete/.
6709
6710 * vc/ediff-diff.el (ediff-extract-diffs, ediff-extract-diffs3):
6711 Remove code referring to longlines mode.
6712
6713 2012-12-03 Juri Linkov <juri@jurta.org>
6714
6715 * sort.el (delete-duplicate-lines): New command. (Bug#13032)
6716
6717 2012-12-03 Agustín Martín Domingo <agustin.martin@hispalinux.es>
6718
6719 * textmodes/ispell.el (ispell-init-process)
6720 (ispell-start-process, ispell-internal-change-dictionary):
6721 Make sure personal dictionary name is expanded after initial
6722 `default-directory' value. Use expanded strings for
6723 keep/restart checks and for value (Bug#13019).
6724
6725 2012-12-03 Jay Belanger <jay.p.belanger@gmail.com>
6726
6727 * calc/calc-forms.el (math-date-to-iso-dt): Fix weekday number.
6728
6729 2012-12-03 Leo Liu <sdl.web@gmail.com>
6730
6731 * files.el (dir-locals-read-from-file): Check file non-empty
6732 before reading. (Bug#13038)
6733
6734 2012-12-03 Glenn Morris <rgm@gnu.org>
6735
6736 * jka-cmpr-hook.el (jka-compr-get-compression-info):
6737 Remove any version extension before checking filename. (Bug#13006)
6738 (jka-compr-compression-info-list): Belated :version bump.
6739
6740 2012-12-03 Chong Yidong <cyd@gnu.org>
6741
6742 * simple.el (transient-mark-mode): Doc fix (Bug#11523).
6743
6744 * buff-menu.el (Buffer-menu-delete-backwards, Buffer-menu-mode)
6745 (buffer-menu): Doc fix (Bug#12294).
6746
6747 2012-12-03 Roland Winkler <winkler@gnu.org>
6748
6749 * calendar/diary-lib.el (diary-header-line-format): Use keybinding
6750 of diary-show-all-entries in the diary buffer (Bug#12994).
6751
6752 2012-12-03 Michael Albinus <michael.albinus@gmx.de>
6753
6754 * net/tramp-sh.el (tramp-perl-encode): Use "read STDIN" instead of
6755 "<STDIN>". This is binary safe.
6756
6757 2012-12-03 Jay Belanger <jay.p.belanger@gmail.com>
6758
6759 * calc/calc-forms.el (math-absolute-from-iso-dt)
6760 (math-date-to-iso-dt, math-parse-iso-date-validate)
6761 (math-iso-dt-to-date): New functions.
6762 (math-fd-iso-dt, math-fd-isoyear, math-fd-isoweek)
6763 (math-fd-isoweekday): New variables.
6764 (calc-date-notation, math-parse-standard-date, math-format-date)
6765 (math-format-date-part): Add support for more formatting codes.
6766
6767 2012-12-02 Dmitry Gutov <dgutov@yandex.ru>
6768
6769 * vc/vc.el (vc-delete-file, vc-rename-file): Default to the
6770 current buffer's file name when called interactively (Bug#12488).
6771
6772 2012-12-02 Juri Linkov <juri@jurta.org>
6773
6774 * info.el (info-display-manual): Don't clobber an existing Info
6775 buffer (Bug#10770). Add completion (Bug#10771).
6776
6777 2012-12-01 Yuya Nishihara <yuya@tcha.org> (tiny change)
6778
6779 * vc/vc-hooks.el (vc-find-file-hook): Expand buffer-file-truename
6780 before using it for comparison (Bug#5297).
6781
6782 2012-12-01 Jari Aalto <jari.aalto@cante.net>
6783
6784 * textmodes/css-mode.el (css-current-defun-name): New function.
6785 (css-mode): Use it.
6786
6787 * textmodes/sgml-mode.el (html-current-defun-name): New function.
6788 (html-mode): Use it.
6789
6790 2012-12-01 Chong Yidong <cyd@gnu.org>
6791
6792 Modularize add-log-current-defun (Bug#2224).
6793 Suggested by Jari Aalto.
6794
6795 * vc/add-log.el (add-log-current-defun-function): Doc fix.
6796 (add-log-current-defun): Move mode-specific code to other files.
6797 (add-log-lisp-like-modes, add-log-c-like-modes)
6798 (add-log-tex-like-modes): Variables deleted.
6799
6800 * emacs-lisp/lisp-mode.el (lisp-current-defun-name): New.
6801 (lisp-mode-variables): Use it.
6802
6803 * progmodes/cc-mode.el (c-common-init):
6804 * progmodes/cperl-mode.el (cperl-mode): Set a value for
6805 add-log-current-defun-function.
6806
6807 * progmodes/m4-mode.el (m4-current-defun-name): New function.
6808 (m4-mode): Use it.
6809
6810 * progmodes/perl-mode.el (perl-current-defun-name): New.
6811 (perl-mode): Use it.
6812
6813 * progmodes/scheme.el (scheme-mode-variables, dsssl-mode):
6814 Use lisp-current-defun-name.
6815
6816 * textmodes/tex-mode.el (tex-current-defun-name): New.
6817 (tex-common-initialization): Use it.
6818
6819 * textmodes/texinfo.el (texinfo-current-defun-name): New.
6820 (texinfo-mode): Use it.
6821
6822 2012-12-01 Chong Yidong <cyd@gnu.org>
6823
6824 * emacs-lisp/lisp-mode.el (lisp-mode-variables, lisp-mode):
6825 * progmodes/autoconf.el (autoconf-mode):
6826 * progmodes/js.el (js-mode):
6827 * progmodes/make-mode.el (makefile-mode, makefile-makepp-mode)
6828 (makefile-bsdmake-mode, makefile-imake-mode, makefile-browse):
6829 * progmodes/perl-mode.el (perl-mode):
6830 * progmodes/sh-script.el (sh-mode, sh-set-shell):
6831 * textmodes/css-mode.el (css-mode):
6832 * textmodes/sgml-mode.el (html-mode, sgml-mode)
6833 (sgml-tags-invisible, sgml-guess-indent):
6834 * textmodes/tex-mode.el (tex-common-initialization)
6835 (latex-complete-bibtex-keys, tex-shell, tex-main-file)
6836 (doctex-mode, plain-tex-mode, latex-mode):
6837 * textmodes/texinfo.el (texinfo-mode): Use setq-local.
6838
6839 2012-12-01 Kirk Kelsey <kirk.kelsey@0x4b.net>
6840
6841 * vc/vc-hg.el (vc-hg-next-revision):
6842 Ensure use of default "tip" output format. (Bug#6968)
6843
6844 2012-12-01 Kim F. Storm <storm@cua.dk>
6845
6846 * startup.el (fancy-startup-tail): Add a clickable link
6847 (Bug#2176).
6848
6849 2012-12-01 Chong Yidong <cyd@gnu.org>
6850
6851 * startup.el (fancy-startup-tail): Improve the message about
6852 auto-save files (Bug#2176).
6853
6854 * files.el (recover-session): Improve the descriptive message, and
6855 use substitute-command-keys.
6856
6857 2012-12-01 Glenn Morris <rgm@gnu.org>
6858
6859 * ido.el (ido-file-internal):
6860 Handle other-window, other-frame for dired. (Bug#13036)
6861
6862 2012-11-30 Glenn Morris <rgm@gnu.org>
6863
6864 * icomplete.el (icomplete-separator): Fix :version.
6865
6866 2012-11-30 Chong Yidong <cyd@gnu.org>
6867
6868 * shell.el (shell): For C-u M-x shell, use an inactive shell
6869 buffer as the default (Bug#1975).
6870 (shell-apply-ansi-color, shell-reapply-ansi-color): New functions.
6871 (shell-mode): Use them to reapply ansi colorization if Shell mode
6872 is re-enabled.
6873
6874 2012-11-30 Yuriy Vostrikov <delamonpansie@gmail.com> (tiny change)
6875
6876 * vc/vc-git.el (vc-git-command): Disable the pager (Bug#6137).
6877
6878 2012-11-30 Samuel Bronson <naesten@gmail.com>
6879
6880 * progmodes/grep.el (grep-compute-defaults): Do not pass the -e
6881 flag to xargs, for compatibility with BSD xargs (Bug#11703).
6882
6883 2012-11-30 Toru TSUNEYOSHI <t_tuneyosi@hotmail.com>
6884
6885 * textmodes/fill.el (fill-region-as-paragraph): Handle overshoot
6886 by move-to-column (Bug#3234).
6887
6888 2012-11-30 Chong Yidong <cyd@gnu.org>
6889
6890 * longlines.el (longlines-wrap-line, longlines-encode-region):
6891 Preserve text properties (Bug#1425).
6892
6893 2012-11-30 OKAZAKI Tetsurou <okazaki.tetsurou@gmail.com> (tiny change)
6894
6895 * vc/vc.el (vc-register): Allow registering a file which is
6896 already registered with a different backend (Bug#10589).
6897
6898 2012-11-29 Jambunathan K <kjambunathan@gmail.com>
6899 Stefan Monnier <monnier@iro.umontreal.ca>
6900
6901 * icomplete.el: Change separator; add ido-style commands.
6902 (icomplete-show-key-bindings): Remove custom var.
6903 (icomplete-get-keys): Remove function.
6904 (icomplete-forward-completions, icomplete-backward-completions):
6905 New commands.
6906 (icomplete-minibuffer-map): New var.
6907 (icomplete-minibuffer-setup): Use it.
6908 (icomplete-exhibit): Don't delay if the list of completions is known.
6909 (icomplete-separator): New custom.
6910 (icomplete-completions): Use it.
6911 * minibuffer.el (completion-all-sorted-completions): Delete duplicates.
6912 (minibuffer-force-complete-and-exit): New command.
6913 (minibuffer--complete-and-exit): New function extracted from
6914 minibuffer-complete-and-exit.
6915 (minibuffer-complete-and-exit): Use it.
6916
6917 * progmodes/etags.el (visit-tags-table-buffer): Give a more precise
6918 error message when the file doesn't exist (bug#12974).
6919
6920 2012-11-29 Kelly Dean <kellydeanch@yahoo.com> (tiny change)
6921
6922 * simple.el (activate-mark): Run activate-mark-hook (bug#13027).
6923
6924 2012-11-29 Glenn Morris <rgm@gnu.org>
6925
6926 * files.el (hack-dir-local-variables): Warn if try to set
6927 coding via dir-locals, since it doesn't work. (Bug#7169)
6928
6929 Add desktop support for restoring vc-dir buffers. (Bug#10606)
6930 * vc/vc-dir.el (vc-dir-mode): Autoload it (for desktop restore).
6931 Set buffer-local value of desktop-save-buffer.
6932 (vc-dir-desktop-buffer-misc-data, vc-dir-restore-desktop-buffer):
6933 New functions.
6934 (desktop-buffer-mode-handlers): Add vc-dir-mode entry.
6935 * desktop.el (desktop-save-buffer-p): Treat vc-dir like dired.
6936
6937 * files.el (inhibit-local-variables-ignore-case): New. (Bug#10610)
6938 (inhibit-local-variables-p): Use inhibit-local-variables-ignore-case.
6939 Doc fix.
6940 (inhibit-local-variables-regexps, inhibit-local-variables-suffixes):
6941 Doc fixes.
6942
6943 2012-11-28 Jay Belanger <jay.p.belanger@gmail.com>
6944
6945 * calc/calc-forms.el (calc-date-notation): Fix regexp
6946 used to find time codes. Fix symbol for seconds.
6947
6948 2012-11-27 Glenn Morris <rgm@gnu.org>
6949
6950 * emacs-lisp/derived.el (derived-mode-make-docstring):
6951 Don't mention "abbrev" or "syntax" if nil. (Bug#11277)
6952
6953 2012-11-27 Stefan Monnier <monnier@iro.umontreal.ca>
6954
6955 * textmodes/table.el (table-insert): Don't use `symbol-name' on
6956 lexically scoped variables (bug#13005).
6957
6958 2012-11-27 Glenn Morris <rgm@gnu.org>
6959
6960 * vc/vc-hooks.el (vc-mistrust-permissions):
6961 Default to t, to avoid data-loss. (Bug#11490)
6962
6963 2012-11-27 Fabián Ezequiel Gallina <fgallina@cuca>
6964
6965 * progmodes/python.el (python-indent-guess-indent-offset):
6966 If indentation is guessed make python-indent-offset buffer-local.
6967
6968 Fix Imenu regression.
6969 * progmodes/python.el (python-nav-beginning-of-defun):
6970 Fix forward movement when statement(s) separates point from defun.
6971 (python-imenu-prev-index-position): New function.
6972
6973 2012-11-27 Eli Zaretskii <eliz@gnu.org>
6974
6975 * subr.el (buffer-file-type): Declare with defvar-local. Doc fix.
6976
6977 * dos-w32.el (find-file-not-found-set-buffer-file-coding-system):
6978 Don't set buffer-file-type. Return nil. (Bug#12989)
6979
6980 2012-11-27 Glenn Morris <rgm@gnu.org>
6981
6982 * hippie-exp.el (hippie-expand-try-functions-list):
6983 Re-autoload it. (Bug#12982)
6984
6985 2012-11-27 Eli Zaretskii <eliz@gnu.org>
6986
6987 * descr-text.el (describe-char-padded-string):
6988 Call internal-char-font only on GUI frames. (Bug#11964)
6989
6990 2012-11-27 Andreas Schwab <schwab@linux-m68k.org>
6991
6992 * buff-menu.el (Buffer-menu-buffer+size-width): Fix customize type
6993 and obsoletion message.
6994
6995 2012-11-27 Stefan Monnier <monnier@iro.umontreal.ca>
6996
6997 * emacs-lisp/cl-macs.el (cl--transform-lambda): Add back `declare' in
6998 the constructs to keep outside of the `cl-block' (bug#12977).
6999
7000 2012-11-27 Chong Yidong <cyd@gnu.org>
7001
7002 * mouse.el (mouse-drag-line): Even if the line is not draggable,
7003 keep reading until we get the up-event anyway, in order to process
7004 the up-event for mouse-1-click-follows-link (Bug#12971).
7005
7006 2012-11-26 Stefan Monnier <monnier@iro.umontreal.ca>
7007
7008 * emacs-lisp/advice.el (ad-should-compile): Don't compile advice if the
7009 base function is not yet defined (bug#12965).
7010 (ad-activate-advised-definition): Use ad-compile-function.
7011 (ad-activate): Use cond.
7012
7013 2012-11-25 Leo Liu <sdl.web@gmail.com>
7014
7015 * textmodes/sgml-mode.el (sgml-tag): Fix indentation for closing tag.
7016 (Bug#12979)
7017
7018 2012-11-24 Vincent Belaïche <vincentb1@users.sourceforge.net>
7019
7020 * textmodes/reftex-parse.el (reftex-parse-from-file): Use variable
7021 reftex-section-info-function in order to be compatible with
7022 Texinfo integration.
7023
7024 * textmodes/reftex.el (reftex-section-pre-regexp)
7025 (reftex-section-post-regexp, reftex-section-info-function):
7026 New variable.
7027 (reftex-compile-variables): Use variables reftex-section-pre-regexp,
7028 reftex-section-post-regexp, and reftex-section-info-function in order
7029 to be compatible with Texinfo integration.
7030
7031 * textmodes/reftex-toc.el (reftex-toc-promote-action):
7032 use reftex-section-pre-regexp variable in order to be compatible with
7033 Texinfo integration.
7034
7035 2012-11-25 Chong Yidong <cyd@gnu.org>
7036
7037 * faces.el: Make face-spec-set more analogous to setq.
7038 (face-spec-set): Change the third arg to specify whether this
7039 function is being called via defface, customize, or a third party.
7040 Set the appropriate symbol properties. Clear the override spec if
7041 setting via Custom. Initialize face if necessary. (Bug#4988)
7042 (face-spec-recalc): Allow theme faces to completely replace the
7043 defface spec, in the same way as custom faces (Bug#8454).
7044
7045 * cus-face.el (custom-declare-face): Move face initialization to
7046 face-spec-set.
7047 (custom-theme-set-faces): Don't initialize the face name here, as
7048 that is now done in face-spec-set.
7049
7050 * cus-edit.el (custom-face-set, custom-face-mark-to-save)
7051 (custom-face-reset-saved, custom-face-mark-to-reset-standard):
7052 Simplify by using the new arg to face-spec-set.
7053
7054 * emacs-lisp/lisp-mode.el (eval-defun-1): When evaluating defface,
7055 reset face-override-spec too, and use custom-declare-face.
7056
7057 2012-11-24 Jan Djärv <jan.h.d@swipnet.se>
7058
7059 * term/ns-win.el (ns-initialize-window-system): Move creation of
7060 fontsets here (Bug#11964).
7061
7062 2012-11-24 Vincent Belaïche <vincentb1@users.sourceforge.net>
7063
7064 * ses.el (ses-rename-cell): Correct bug on mode-line update after
7065 cell renaming.
7066
7067 2012-11-24 Chong Yidong <cyd@gnu.org>
7068
7069 * woman.el (woman-default-faces, woman-monochrome-faces): Mark as
7070 obsolete.
7071
7072 * custom.el (custom-theme-set-variables): Use a topological sort
7073 for ordering by custom dependencies (Bug#12952).
7074 (custom--sort-vars, custom--sort-vars-1): New functions.
7075
7076 2012-11-24 Stefan Monnier <monnier@iro.umontreal.ca>
7077
7078 * emacs-lisp/bytecomp.el (byte-compile-file): Setup default value for
7079 lexical-binding (bug#12938).
7080
7081 2012-11-24 Wolfgang Jenkner <wjenkner@inode.at>
7082
7083 * image-mode.el (image-transform-check-size): Use assertions only
7084 for images of type imagemagick.
7085
7086 Otherwise no error, image-transform-fit-to-{width,height} is
7087 silently ignored, as before. Doc fix.
7088
7089 2012-11-24 Chong Yidong <cyd@gnu.org>
7090
7091 * faces.el (color-defined-p): Doc fix (Bug#12853).
7092
7093 2012-11-24 Juri Linkov <juri@jurta.org>
7094
7095 * dired.el (dired-mark): Add optional arg `interactive'.
7096 Check for `use-region-p' if `interactive' is non-nil.
7097 (dired-unmark, dired-flag-file-deletion): Add optional arg
7098 `interactive'. Call `dired-mark' with the arg `interactive'.
7099 (Bug#10624)
7100
7101 * wdired.el: Revert 2012-10-17 change partly and replace it with
7102 Patch by Christopher Schmidt <christopher@ch.ristopher.com>.
7103 (wdired-finish-edit): Add marks for new file names to
7104 `wdired-old-marks'. Restore marks using `dired-mark-remembered'
7105 after `revert-buffer'.
7106 (wdired-do-renames): Remove calls to `dired-remove-file',
7107 `dired-add-file', `dired-add-entry'. (Bug#11795)
7108
7109 2012-11-24 Alan Mackenzie <acm@muc.de>
7110
7111 * progmodes/cc-defs.el (c-version): Bump to 5.32.4.
7112
7113 Fix bugs in the state cache. Enhance a debugging mechanism.
7114 * progmodes/cc-engine.el (c-parse-state-get-strategy): Don't use
7115 "brace at column zero" strategy for C++.
7116 (c-append-lower-brace-pair-to-state-cache): Repair algorithm.
7117 (c-parse-state-point): New variable.
7118 (c-record-parse-state-state): Record old parse state with
7119 `copy-tree'. Record previous value of point.
7120 (c-debug-parse-state-double-cons): New debugging function.
7121 (c-debug-parse-state): Call the above new function.
7122 (c-toggle-parse-state-debug): Output a confirmatory message.
7123
7124 * progmodes/cc-mode.el (c-before-change, c-after-change):
7125 Call c-invalidate-state-cache from `c-before-change' instead of
7126 `c-after-change'.
7127
7128 2012-11-23 Chong Yidong <cyd@gnu.org>
7129
7130 * find-cmd.el (find-constituents): Add executable, ipath,
7131 readable, samefile, writable, daystart, regextype (Bug#12856).
7132
7133 2012-11-23 Stefan Monnier <monnier@iro.umontreal.ca>
7134
7135 * emacs-lisp/ert.el, emacs-lisp/ert-x.el: Use cl-lib and lexical-binding.
7136
7137 2012-11-22 Paul Eggert <eggert@cs.ucla.edu>
7138
7139 * calc/calc.el (calc-gregorian-switch): Move to after calc-refresh
7140 definition. This fixes a bootstrap failure.
7141 (calc-gregorian-switch): In menu, put dates before regions.
7142 This is easier to follow, lines up better in the menu, and lets us
7143 coalesce regions that switch at the same time. Give country
7144 names, not "Vatican", as that's better for non-expert users.
7145 Use names that are stable between the date of switch and now, e.g.,
7146 Bohemia and Moravia (which existed then and now) and not
7147 Czechoslovakia (which didn't exist then and doesn't exist now).
7148 What is now the U.S. mostly did not switch at the same time as
7149 Britain, so omit the U.S. Correct spelling of "Britain".
7150 Catholic Switzerland was too much of a mess, so omit it.
7151
7152 2012-11-22 Jay Belanger <jay.p.belanger@gmail.com>
7153
7154 * calc/calc.el (calc-gregorian-switch): Refresh the Calc buffer
7155 after the variable is changed.
7156
7157 2012-11-21 Daniel Colascione <dancol@dancol.org>
7158
7159 * progmodes/sql.el (sql-mode-font-lock-object-name): Support IF NOT EXISTS
7160 in SQL declarations for font-lock.
7161 (sql-imenu-generic-expression): Teach imenu about IF NOT EXISTS.
7162
7163 2012-11-21 Glenn Morris <rgm@gnu.org>
7164
7165 * faces.el (face-underline-p, face-inverse-video-p, face-bold-p)
7166 (face-italic-p): Add optional argument "inherit".
7167
7168 * faces.el (set-face-inverse-video, set-face-bold, set-face-italic):
7169 Remove -p suffix from names, for consistency with other set-face-*.
7170 (set-face-inverse-video): Fix interactive spec.
7171 * play/gamegrid.el (gamegrid-make-mono-tty-face):
7172 * textmodes/table.el (table--update-cell-face):
7173 Use set-face-inverse-video rather than now obsolete alias.
7174
7175 2012-11-21 Eli Zaretskii <eliz@gnu.org>
7176
7177 * simple.el (line-move): Don't call line-move-partial if
7178 scroll-conservatively is in effect. (Bug#12927)
7179
7180 2012-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
7181
7182 * eshell/em-cmpl.el (eshell-pcomplete): Refine fix for bug#12838:
7183 Fallback on completion-at-point rather than
7184 pcomplete-expand-and-complete, and only if pcomplete actually failed.
7185 (eshell-cmpl-initialize): Setup completion-at-point.
7186
7187 * pcomplete.el (pcomplete--entries): Obey pcomplete-ignore-case.
7188
7189 * emacs-lisp/ert.el (ert--expand-should-1): Adapt to cl-lib.
7190
7191 2012-11-21 Michael Albinus <michael.albinus@gmx.de>
7192
7193 * net/tramp-sh.el (tramp-do-copy-or-rename-file): If both files
7194 are remote, check out-of-band property for both.
7195
7196 2012-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
7197
7198 * window.el (switch-to-buffer): Re-add the warning that was lost in the
7199 code rewrite.
7200
7201 2012-11-21 Paul Eggert <eggert@cs.ucla.edu>
7202
7203 More minor time fixes.
7204 * calendar/time-date.el: Commentary fix.
7205 * net/tramp-sh.el (tramp-do-file-attributes-with-ls): Undo last change;
7206 too much other code depends on (0 0) time stamps.
7207 * net/tramp.el (tramp-time-less-p, tramp-time-subtract):
7208 Add a couple of FIXME comments.
7209
7210 Minor cleanup for times as lists of four integers.
7211 * files.el (dir-locals-directory-cache):
7212 * ps-bdf.el (bdf-file-mod-time, bdf-read-font-info):
7213 Doc fixes.
7214 * net/tramp-sh.el (tramp-do-file-attributes-with-ls):
7215 * ps-bdf.el (bdf-file-newer-than-time):
7216 Process four-integers time stamps, not two. Doc fixes.
7217
7218 2012-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
7219
7220 * uniquify.el (uniquify-managed): Use defvar-local.
7221 (rename-buffer, create-file-buffer): Advise with advice-add.
7222 (uniquify-unload-function): Unadvise accordingly.
7223
7224 * emacs-lisp/trace.el: Rewrite, use nadvice and lexical-binding.
7225 (trace-buffer): Don't purecopy.
7226 (trace-entry-message, trace-exit-message): Add `context' arg.
7227 (trace--timer): New var.
7228 (trace-make-advice): Adjust for use in nadvice.
7229 Add `context' argument. Delay `display-buffer' via a timer.
7230 (trace-function-internal): Use advice-add.
7231 (trace--read-args): New function.
7232 (trace-function-foreground, trace-function-background): Use it.
7233 (trace-function): Rename to trace-function-foreground and redefine as
7234 an alias to that new name.
7235 (untrace-function, untrace-all): Adjust to the use of nadvice.
7236
7237 * emacs-lisp/bytecomp.el (byte-compile): Fix handling of closures.
7238
7239 * emacs-lisp/byte-run.el (defun-declarations-alist): Fix last change.
7240
7241 * subr.el (called-interactively-p-functions): New var.
7242 (internal--called-interactively-p--get-frame): New macro.
7243 (called-interactively-p, interactive-p): Rewrite in Lisp.
7244 * emacs-lisp/nadvice.el (advice--called-interactively-skip): New fun.
7245 (called-interactively-p-functions): Use it.
7246 * emacs-lisp/edebug.el (edebug--called-interactively-skip): New fun.
7247 (called-interactively-p-functions): Use it.
7248 * allout.el (allout-called-interactively-p): Don't assume
7249 called-interactively-p is a subr.
7250
7251 2012-11-20 Glenn Morris <rgm@gnu.org>
7252
7253 * profiler.el (profiler-report-mode-map): Add a menu.
7254 No need to bind `q' because we derive from special-mode.
7255 (profiler-report-find-entry): Handle calls from the menu-bar.
7256
7257 2012-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
7258
7259 * emacs-lisp/byte-run.el (defun-declarations-alist):
7260 Allow a compiler-macro to be a lambda expression.
7261
7262 * progmodes/python.el: Use cl-lib. Move var declarations outside of
7263 eval-when-compile.
7264 (python-syntax-context): Add compiler-macro.
7265 (python-font-lock-keywords): Simplify with De Morgan.
7266
7267 * vc/diff-mode.el (diff-hunk): Don't make useless timers.
7268
7269 * files.el (load-file): Require match in minibuffer selection, as was
7270 the case in Emacs-20 before we changed the spec to allow .elc files
7271 (bug#12935).
7272
7273 * json.el: Don't require cl since we don't use it.
7274 * color.el: Don't require cl.
7275 (color-complement): `caddr' -> `nth 2'.
7276
7277 * calendar/time-date.el (time-to-seconds): De-obsolete.
7278
7279 2012-11-19 Jay Belanger <jay.p.belanger@gmail.com>
7280
7281 * calc/calc-forms.el (math-leap-year-p): Fix formula for negative
7282 year numbers.
7283 (math-date-to-julian-dt): Adjust the initial approximation for the
7284 year to deal with the new definition of the DATE.
7285
7286 2012-11-19 Daniel Colascione <dancol@dancol.org>
7287
7288 * term/w32-win.el (cygwin-convert-path-from-windows):
7289 Accomodate rename of cygwin_convert_path* to cygwin_convert_file_name*.
7290
7291 2012-11-18 Chong Yidong <cyd@gnu.org>
7292
7293 * filecache.el (file-cache--read-list): New function.
7294 (file-cache-add-directory-list, file-cache-add-file-list)
7295 (file-cache-delete-file-list, file-cache-delete-directory-list):
7296 Use it to read a list of files or directories (Bug#12846).
7297 (file-cache-add-file, file-cache-add-directory)
7298 (file-cache-delete-file-list, file-cache-delete-file-regexp)
7299 (file-cache-delete-directory): Print an message.
7300
7301 2012-11-18 Jay Belanger <jay.p.belanger@gmail.com>
7302
7303 * calc/calc-forms.el (math-date-to-dt): Use integer date when
7304 calling `math-date-to-julian-dt' and 'math-date-to-gregorian-dt'.
7305
7306 2012-11-18 Glenn Morris <rgm@gnu.org>
7307
7308 * image.el (insert-image, insert-sliced-image): Doc fix.
7309
7310 2012-11-18 Chong Yidong <cyd@gnu.org>
7311
7312 * emacs-lisp/syntax.el (syntax-propertize-function): Doc fix
7313 (Bug#12810).
7314
7315 2012-11-18 OKAZAKI Tetsurou <okazaki.tetsurou@gmail.com> (tiny change)
7316
7317 * vc/vc-svn.el (vc-svn-merge-news): Properly parse the merge
7318 response when the target file is in a subdirectory (Bug#12757).
7319
7320 2012-11-18 Chong Yidong <cyd@gnu.org>
7321
7322 * filecache.el (file-cache-add-file-list): Doc fix (Bug#12694).
7323
7324 2012-11-18 Glenn Morris <rgm@gnu.org>
7325
7326 * emacs-lisp/cl-lib.el (face-underline-p):
7327 Use set-face-underline rather than the alias set-face-underline-p.
7328
7329 * window.el (with-temp-buffer-window): Doc fix.
7330 * subr.el (with-output-to-temp-buffer):
7331 Add doc xref to with-temp-buffer-window.
7332
7333 2012-11-18 Juanma Barranquero <lekktu@gmail.com>
7334
7335 * woman.el (woman-non-underline-faces): Use `set-face-underline'.
7336 * calc/calc.el (math-format-date-cache): Declare.
7337
7338 2012-11-17 Paul Eggert <eggert@cs.ucla.edu>
7339
7340 Calc by default uses the Gregorian calendar for all dates (Bug#12633).
7341 It also uses January 1, 1 AD as its day number 1.
7342 * calc/calc-forms.el (math-julian-date-beginning)
7343 (math-julian-date-beginning-int): Implement this.
7344
7345 2012-11-17 Juanma Barranquero <lekktu@gmail.com>
7346
7347 * descr-text.el (quail-find-key):
7348 * dired.el (desktop-file-name):
7349 * dirtrack.el (shell-prefixed-directory-name, shell-process-cd):
7350 * generic-x.el (comint-mode, comint-exec):
7351 * image-dired.el (widget-forward):
7352 * info.el (speedbar-add-expansion-list, speedbar-center-buffer-smartly)
7353 (speedbar-change-expand-button-char)
7354 (speedbar-change-initial-expansion-list, speedbar-delete-subblock)
7355 (speedbar-make-specialized-keymap, speedbar-make-tag-line):
7356 * printing.el (easy-menu-add-item, easy-menu-remove-item)
7357 (widget-field-action, widget-value-set):
7358 * speedbar.el (imenu--make-index-alist):
7359 * term.el (ring-empty-p, ring-ref, ring-insert-at-beginning)
7360 (ring-length, ring-insert):
7361 * vcursor.el (compare-windows-skip-whitespace):
7362 * woman.el (dired-get-filename):
7363 Declare functions.
7364
7365 * term/w32-win.el (cygwin-convert-path-from-windows): Fix declaration.
7366
7367 2012-11-17 Jay Belanger <jay.p.belanger@gmail.com>
7368
7369 * calc/calc.el (calc-gregorian-switch): New variable.
7370
7371 * calc/calc-forms.el (math-day-in-year, math-dt-before-p)
7372 (math-absolute-from-gregorian-dt, math-absolute-from-julian-dt)
7373 (math-date-to-julian-dt, math-date-to-gregorian-dt): New functions.
7374 (math-leap-year-p): Add option to distinguish between Julian
7375 and Gregorian calendars.
7376 (math-day-number): Use `math-day-in-year' to do the computations.
7377 (math-absolute-from-dt): Rename from `math-absolute-from-date'.
7378 Use `math-absolute-from-gregorian' and `math-absolute-from-julian'
7379 to do the computations.
7380 (math-date-to-dt): Use `math-date-to-julian-dt' and
7381 `math-date-to-gregorian-dt' to do the computations.
7382 (calcFunc-weekday, math-format-date-part): Use the new version of
7383 the DATE to determine the weekday.
7384 (calcFunc-newmonth, calcFunc-newyear): Use `calc-gregorian-switch'
7385 when necessary.
7386
7387 2012-11-17 Eli Zaretskii <eliz@gnu.org>
7388
7389 * term/w32-win.el (w32-handle-dropped-file): Use 'file://' only on
7390 Cygwin; otherwise use 'file:'. (Bug#12914)
7391 (cygwin-convert-path-from-windows): Declare, to avoid
7392 byte-compiler warnings.
7393
7394 2012-11-17 Andreas Politz <politza@fh-trier.de>
7395
7396 * ibuffer.el (ibuffer-mark-forward, ibuffer-unmark-forward)
7397 (ibuffer-unmark-backward, ibuffer-mark-interactive): Support plain
7398 prefix and negative numeric prefix args (Bug#12795).
7399
7400 2012-11-17 Stephen Berman <stephen.berman@gmx.net>
7401
7402 * play/gamegrid.el (gamegrid-add-score-with-update-game-score-1):
7403 Don't signal an error with a score that is too low to add to the
7404 list of top scores. (Bug#12779)
7405
7406 2012-11-17 Chong Yidong <cyd@gnu.org>
7407
7408 * help-mode.el (help-xref-interned): End on point-min (Bug#12737).
7409
7410 * filecache.el (file-cache-add-file): Handle relative file name in
7411 the argument (Bug#12694).
7412
7413 2012-11-16 Jürgen Hötzel <juergen@archlinux.org> (tiny change)
7414
7415 * eshell/em-unix.el (eshell/mkdir): Handle "--parents" (bug#12897).
7416
7417 2012-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
7418
7419 * emacs-lisp/advice.el (ad-make-advised-definition): Improve last fix.
7420
7421 * emacs-lisp/cl-lib.el: Set more meaningful version number.
7422
7423 2012-11-16 Martin Rudalics <rudalics@gmx.at>
7424
7425 * window.el (enlarge-window, shrink-window): Don't mention return
7426 value in doc-string (Bug#12896).
7427 (window--display-buffer): Don't resize frames - it won't work
7428 with all window managers and defeat pop-up-frame-alist.
7429 (display-buffer-alist): In doc-string explain that CONDITION can
7430 be a function and which arguments are passed to it (Bug#12854).
7431 (display-buffer-assq-regexp): New argument ACTION. Handle lambda
7432 expressions (Bug#12854).
7433 (display-buffer): Pass ACTION argument to
7434 display-buffer-assq-regexp.
7435
7436 2012-11-16 Glenn Morris <rgm@gnu.org>
7437
7438 * window.el (fit-frame-to-buffer-bottom-margin)
7439 (fit-frame-to-buffer, fit-window-to-buffer): Doc fixes.
7440
7441 * faces.el (face-underline-p): Use face-attribute-specified-or.
7442
7443 2012-11-16 Juanma Barranquero <lekktu@gmail.com>
7444
7445 * emacs-lisp/cl-macs.el (cl-loop, cl-do, cl-do*): Doc fixes.
7446
7447 2012-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
7448
7449 * emacs-lisp/cl-macs.el (cl-flet, cl-flet*): Fix docstring (bug#12895).
7450
7451 2012-11-16 Glenn Morris <rgm@gnu.org>
7452
7453 * eshell/em-cmpl.el (eshell-pcomplete): New command. (Bug#12838)
7454 (eshell-cmpl-initialize): Bind eshell-pcomplete to TAB, C-i.
7455
7456 * faces.el (face-underline-p): Doc fix. Handle :underline being
7457 things other than `t' (a string, a list).
7458 (face-inverse-video-p): Doc fix.
7459 (set-face-underline): Rename it back from set-face-underline-p.
7460 Doc fix. Allow interactive input of values other than t.
7461 (read-face-attribute): Apply formatting to :underline,
7462 since like :box and :stipple it can take list values.
7463
7464 * term.el (ansi-term): Don't let C-x escape-char binding
7465 clobber the more standard C-c binding. (Bug#12842)
7466
7467 * subr.el (set-temporary-overlay-map): Doc fix.
7468
7469 2012-11-16 Martin Rudalics <rudalics@gmx.at>
7470
7471 * window.el (record-window-buffer)
7472 (display-buffer-record-window): When copying the markers to
7473 window-point preserve window-point-insertion-type. (Bug#12588)
7474
7475 2012-11-16 Glenn Morris <rgm@gnu.org>
7476
7477 * emacs-lisp/eieio-datadebug.el (eieio-debug-methodinvoke):
7478 * net/tramp-gvfs.el (tramp-gvfs-dbus-event-error):
7479 Use new names for hooks rather than obsolete aliases.
7480
7481 2012-11-15 Daniel Colascione <dancol@dancol.org>
7482
7483 * term/w32-win.el (w32-handle-dropped-file): Use a "file://"
7484 prefix instead of "file:" so that when FILE-NAME begins with "//",
7485 as it does when the target file is on a network share, url-handler
7486 isn't confused.
7487
7488 2012-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
7489
7490 * emacs-lisp/advice.el (ad-definition-type): Make sure we don't use
7491 a preactivated advice from an old advice.el; they're not compatible!
7492
7493 2012-11-15 Katsumi Yamaoka <yamaoka@jpl.org>
7494
7495 * emacs-lisp/nadvice.el (advice--make-interactive-form):
7496 Fix string-spec case.
7497
7498 * emacs-lisp/advice.el (ad-make-advised-definition): Fix undefined case.
7499
7500 2012-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
7501
7502 * emacs-lisp/nadvice.el: Add buffer-local support to add-function.
7503 (advice--buffer-local-function-sample): New var.
7504 (advice--set-buffer-local, advice--buffer-local): New functions.
7505 (add-function, remove-function): Use them.
7506
7507 2012-11-15 Drew Adams <drew.adams@oracle.com>
7508
7509 * imenu.el (imenu--split-submenus): Use imenu--subalist-p (bug#12717).
7510
7511 2012-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
7512
7513 * emacs-lisp/cl-macs.el (cl--transform-lambda): Defend against
7514 potential binding of print-gensym to t, and prettify (back)quotes in
7515 case they appear in args's default values (bug#12884).
7516
7517 2012-11-14 Stefan Monnier <monnier@iro.umontreal.ca>
7518
7519 * emacs-lisp/nadvice.el: Add around advice for interactive specs.
7520 (advice-eval-interactive-spec): New function.
7521 (advice--make-interactive-form): Support around advice (bug#12844).
7522
7523 2012-11-14 Dmitry Gutov <dgutov@yandex.ru>
7524
7525 * progmodes/ruby-mode.el (ruby-expr-beg): Make heredoc detection
7526 more strict. Add docstring.
7527 (ruby-expression-expansion-re): Extract from
7528 `ruby-match-expression-expansion'.
7529 (ruby-syntax-propertize-function): After everything else, search
7530 for expansions in string literals, mark their insides as
7531 whitespace syntax and save match data for font-lock.
7532 (ruby-font-lock-keywords): Use the 2nd group from expression
7533 expansion matches.
7534 (ruby-match-expression-expansion): Use the match data saved to the
7535 text property in ruby-syntax-propertize-function.
7536
7537 2012-11-14 Stefan Monnier <monnier@iro.umontreal.ca>
7538
7539 * emacs-lisp/gv.el (setf): Fix debug spec for multiple assignments
7540 (bug#12879).
7541
7542 2012-11-13 Dmitry Gutov <dgutov@yandex.ru>
7543
7544 * progmodes/ruby-mode.el (ruby-move-to-block): Looks for a block
7545 start/end keyword a bit harder. Works with different values of N.
7546 Add more comments.
7547 (ruby-end-of-block): Update accordingly.
7548
7549 2012-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
7550
7551 * woman.el (woman-file-name): Don't mess with unread-command-events
7552 (bug#12861).
7553
7554 * emacs-lisp/advice.el: Layer on top of nadvice.el.
7555 Remove out of date self-require hack.
7556 (ad-do-advised-functions): Use simple `dolist'.
7557 (ad-advice-name, ad-advice-protected, ad-advice-enabled)
7558 (ad-advice-definition): Redefine as functions.
7559 (ad-advice-classes): Move before first use.
7560 (ad-make-origname, ad-set-orig-definition, ad-clear-orig-definition)
7561 (ad-make-mapped-call, ad-make-advised-docstring)
7562 (ad-make-plain-docstring, ad--defalias-fset): Remove functions.
7563 (ad-make-advicefunname, ad-clear-advicefunname-definition): New funs.
7564 (ad-get-orig-definition): Rewrite.
7565 (ad-make-advised-definition-docstring): Change base docstring.
7566 (ad-real-orig-definition): Rewrite.
7567 (ad-map-arglists): Change name of called function.
7568 (ad--make-advised-docstring): Redirect `function' from ad-Advice-...
7569 (ad-make-advised-definition): Simplify.
7570 (ad-assemble-advised-definition): Tweak for new calling context.
7571 (ad-activate-advised-definition): Setup ad-Advice-* i.s.o ad-Orig-*.
7572 (ad--defalias-fset): Rename from ad-handle-definition. Make it set the
7573 function and call ad-activate if needed.
7574 (ad-activate, ad-deactivate): Don't call ad-handle-definition any more.
7575 (ad-recover): Clear ad-Advice-* instead of ad-Orig-*.
7576 (ad-compile-function): Compile ad-Advice-*.
7577 (ad-activate-on-top-level, ad-with-auto-activation-disabled): Remove.
7578 (ad-start-advice, ad-stop-advice): Remove.
7579
7580 2012-11-13 Dmitry Gutov <dgutov@yandex.ru>
7581
7582 * progmodes/ruby-mode.el (ruby-add-log-current-method): Print the
7583 period before class method names, not after. Remove handling of
7584 one impossible case. Add comments.
7585
7586 2012-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
7587
7588 * emacs-lisp/advice.el: Remove support for freezing.
7589 (ad-make-freeze-docstring, ad-make-freeze-definition): Remove functions.
7590 (ad-make-single-advice-docstring, ad-defadvice-flags, defadvice):
7591 Remove support for `freeze'.
7592
7593 * emacs-lisp/cl.el (dolist, dotimes, declare): Use advice-add to
7594 override the default.
7595 * emacs-lisp/cl-macs.el (cl-dolist, cl-dotimes): Rewrite without using
7596 cl--dotimes/dolist.
7597 * subr.el (dolist, dotimes, declare): Redefine them normally, even when
7598 `cl' is loaded.
7599
7600 * emacs-lisp/nadvice.el (advice--normalize): New function, extracted
7601 from add-advice.
7602 (advice--strip-macro): New function.
7603 (advice--defalias-fset): Use them to handle macros.
7604 (advice-add): Use them.
7605 (advice-member-p): Correctly handle macros.
7606
7607 2012-11-13 Dmitry Gutov <dgutov@yandex.ru>
7608
7609 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
7610 Never font-lock the beginning of singleton class as heredoc.
7611
7612 2012-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
7613
7614 * emacs-lisp/gv.el (gv-define-simple-setter): One more fix (bug#12871).
7615
7616 2012-11-13 Wolfgang Jenkner <wjenkner@inode.at>
7617
7618 * ansi-color.el (ansi-color-apply-sequence): Implement SGR codes
7619 39 and 49 (bug#12792). Also, treat unimplemented parameters as 0,
7620 thereby restoring the behavior of revisions prior to 2012-08-15T03:33:55Z!monnier@iro.umontreal.ca.
7621
7622 2012-11-13 Fabián Ezequiel Gallina <fgallina@cuca>
7623
7624 Fix end-of-defun misbehavior.
7625 * progmodes/python.el (python-nav-beginning-of-defun): Rename from
7626 python-beginning-of-defun-function. Handle nested defuns
7627 correctly.
7628 (python-nav-end-of-defun): Rename from
7629 python-end-of-defun-function. Ensure forward movement.
7630 (python-info-current-defun): Reimplement to work as intended
7631 with new fixed python-nav-{end,beginning}-of-defun. Stop scanning
7632 parent defuns as soon as possible.
7633
7634 2012-11-13 Glenn Morris <rgm@gnu.org>
7635
7636 * progmodes/flymake.el (flymake-error-bitmap)
7637 (flymake-warning-bitmap, flymake-fringe-indicator-position): Doc fixes.
7638 (flymake-error-bitmap, flymake-warning-bitmap): Fix :types.
7639
7640 2012-11-13 Dmitry Gutov <dgutov@yandex.ru>
7641
7642 * progmodes/ruby-mode.el (ruby-move-to-block): When moving
7643 backward, always stop at indentation. Reverts the change from
7644 2012-08-12T22:06:56Z!monnier@iro.umontreal.ca (Bug#12851).
7645
7646 2012-11-13 Glenn Morris <rgm@gnu.org>
7647
7648 * ibuffer.el (ibuffer-mode-map, ibuffer-mode):
7649 Add ibuffer-filter-by-derived-mode.
7650
7651 * ibuffer.el (ibuffer-mode-map): Don't have two menu items with
7652 the same name shadowing each other.
7653
7654 * window.el (with-temp-buffer-window): Doc tweak.
7655
7656 * emacs-lisp/debug.el (debugger-bury-or-kill): Doc tweak.
7657
7658 * help.el (temp-buffer-max-height):
7659 * window.el (fit-frame-to-buffer, fit-frame-to-buffer-bottom-margin):
7660 * emacs-lisp/debug.el (debugger-bury-or-kill): Fix :version.
7661
7662 2012-11-12 Stefan Monnier <monnier@iro.umontreal.ca>
7663
7664 * emacs-lisp/nadvice.el: New package.
7665 * subr.el (special-form-p): New function.
7666 * emacs-lisp/elp.el: Use lexical-binding and advice-add.
7667 (elp-all-instrumented-list): Remove var.
7668 (elp-not-profilable): Remove elp-wrapper.
7669 (elp-profilable-p): Use autoloadp and special-form-p.
7670 (elp--advice-name): New const.
7671 (elp-instrument-function): Use advice-add.
7672 (elp--instrumented-p): New predicate.
7673 (elp-restore-function): Use advice-remove.
7674 (elp-restore-all, elp-reset-all): Use mapatoms.
7675 (elp-set-master): Use elp--instrumented-p.
7676 (elp--make-wrapper): Rename from elp-wrapper, return a function
7677 suitable for advice-add. Use cl-inf.
7678 (elp-results): Use mapatoms+elp--instrumented-p.
7679 * emacs-lisp/debug.el: Use lexical-binding and advice-add.
7680 (debug-function-list): Remove var.
7681 (debug): Rename arg, and then let-bind it explicitly inside.
7682 (debugger-setup-buffer): Rename arg.
7683 (debugger-setup-buffer): Adjust counts to new debug-on-entry setup.
7684 (debugger-frame-number): Adjust to new debug-on-entry setup.
7685 (debug--implement-debug-on-entry): Rename from
7686 implement-debug-on-entry, add argument.
7687 (debugger-special-form-p): Remove, use special-form-p instead.
7688 (debug-on-entry): Use advice-add.
7689 (debug--function-list): New function.
7690 (cancel-debug-on-entry): Use it, along with advice-remove.
7691 (debug-arglist, debug-convert-byte-code, debug-on-entry-1): Remove.
7692 (debugger-list-functions): Use debug--function-list instead of
7693 debug-function-list.
7694 * emacs-lisp/advice.el (ad-save-real-definition): Remove, unused.
7695 (ad-special-form-p): Remove, use special-form-p instead.
7696 (ad-set-advice-info): Use add-function and remove-function.
7697 (ad--defalias-fset): Adjust accordingly.
7698
7699 2012-11-10 Glenn Morris <rgm@gnu.org>
7700
7701 * mail/emacsbug.el (report-emacs-bug-tracker-url)
7702 (report-emacs-bug-bug-alist, report-emacs-bug-choice-widget)
7703 (report-emacs-bug-create-existing-bugs-buffer)
7704 (report-emacs-bug-parse-query-results)
7705 (report-emacs-bug-query-existing-bugs): Remove. (Bug#7449)
7706
7707 * term.el (term-default-fg-color, term-default-bg-color):
7708 Make obsolete, rather than just saying "deprecated" in the doc.
7709
7710 * term.el (term): Rename from `term-face'.
7711 (term-current-face, ansi-term-color-vector)
7712 (term-default-fg-color, term-default-bg-color, term-ansi-reset):
7713 Update all users.
7714
7715 2012-11-10 Jan Djärv <jan.h.d@swipnet.se>
7716
7717 * server.el (server-create-window-system-frame): Handle Nextstep
7718 specially (Bug#12780).
7719
7720 2012-11-10 Glenn Morris <rgm@gnu.org>
7721
7722 * mail/emacsbug.el (report-emacs-bug-query-existing-bugs):
7723 Unautoload, and make obsolete. (Bug#7449)
7724
7725 2012-11-10 Chong Yidong <cyd@gnu.org>
7726
7727 * vc/diff-mode.el (diff-delete-trailing-whitespace): Rewrite, and
7728 rename from diff-remove-trailing-whitespace (Bug#12831).
7729
7730 2012-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
7731
7732 * emacs-lisp/advice.el: Require `cl-lib' at run-time to fix
7733 miscompilation of trace.el.
7734
7735 2012-11-10 Glenn Morris <rgm@gnu.org>
7736
7737 * vc/diff-mode.el (diff-remove-trailing-whitespace): Doc fix.
7738
7739 2012-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
7740
7741 * emacs-lisp/gv.el (gv-define-simple-setter): Fix last change
7742 (bug#12812).
7743
7744 2012-11-10 Chong Yidong <cyd@gnu.org>
7745
7746 * minibuf-eldef.el (minibuffer-eldef-shorten-default): Convert to
7747 a defcustom with an appropriate :set function.
7748 (minibuffer-default--in-prompt-regexps): New function.
7749
7750 2012-11-10 Glenn Morris <rgm@gnu.org>
7751
7752 * emacs-lisp/cl.el (define-setf-expander, defsetf)
7753 (define-modify-macro): Doc fixes.
7754
7755 * emacs-lisp/gv.el (gv-letplace): Fix doc typo.
7756 (gv-define-simple-setter): Update doc of `fix-return'.
7757
7758 2012-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
7759
7760 * emacs-lisp/gv.el (gv-define-simple-setter): Don't evaluate `val'
7761 twice when `fix-return' is set (bug#12813).
7762
7763 * emacs-lisp/cl.el (defsetf): Pass the third arg to
7764 gv-define-simple-setter (bug#12812).
7765
7766 * woman.el (woman-decode-region): Disable adaptive-fill when rendering
7767 (bug#12756).
7768
7769 2012-11-10 Glenn Morris <rgm@gnu.org>
7770
7771 * emacs-lisp/gv.el (gv-define-setter): Fix doc typo.
7772
7773 * emacs-lisp/cl-extra.el (cl-prettyexpand):
7774 * emacs-lisp/cl-lib.el (cl-proclaim, cl-declaim):
7775 * emacs-lisp/cl-macs.el (cl-destructuring-bind, cl-locally)
7776 (cl-the, cl-compiler-macroexpand): Add basic doc strings.
7777
7778 * emacs-lisp/cl-extra.el (cl-maplist, cl-mapcan): Doc fix.
7779
7780 2012-11-10 Leo Liu <sdl.web@gmail.com>
7781
7782 * ido.el (ido-set-matches-1): Improve flex matching performance by
7783 removing backtracking in the regexp (suggested by Stefan). (Bug#12796)
7784
7785 2012-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
7786
7787 * emacs-lisp/advice.el (ad-set-advice-info): Set defalias-fset-function.
7788 (ad--defalias-fset): New function.
7789 (ad-safe-fset): Remove.
7790 (ad-make-freeze-definition): Use cl-letf*.
7791
7792 2012-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
7793
7794 * subr.el (dolist): Don't bind VAR in RESULT.
7795
7796 * emacs-lisp/advice.el: Miscellaneous cleanup. Use lexical-binding.
7797 (fset, documentation): Don't save real def since we don't advise.
7798 (ad-do-advised-functions): Remove problematic `result-form'.
7799 (ad-safe-fset): `ad-real-fset' => `fset'.
7800 (ad-read-advised-function): Don't assume that ad-do-advised-functions
7801 uses CL's dolist internally.
7802 (ad-arglist): Remove unused arg `name'.
7803 (ad-docstring, ad-make-advised-docstring):
7804 `ad-real-documentation' => `documentation'.
7805 (warning-suppress-types): Declare.
7806 (ad-set-arguments): Simple CSE.
7807 (ad-recover-normality): Sanity check.
7808
7809 * emacs-lisp/bytecomp.el (byte-compile-out-toplevel): Don't turn
7810 (funcall '(lambda ..) ..) into ((lambda ..) ..).
7811
7812 2012-11-09 Vincent Belaïche <vincentb1@users.sourceforge.net>
7813
7814 * ses.el: Symbol to coordinate mapping is made by symbol property
7815 `ses-cell'. This means that the same mapping is done for all SES
7816 sheets. That is good enough for cells with standard A1 names, but
7817 not for named cell. So a hash map is added for the latter.
7818 (defconst ses-localvars): Add local variable ses--named-cell-hashmap
7819 (ses-sym-rowcol): Use hashmap for named cell.
7820 (ses-is-cell-sym-p): New defun.
7821 (ses-decode-cell-symbol): New defun.
7822 (ses-create-cell-variable): Add cell to hashmap when name is not
7823 A1-like.
7824 (ses-rename-cell): Check that cell new name is not already in
7825 spreadsheet with the use of ses-is-cell-sym-p
7826 (ses-rename-cell): Use hash map for named cells, but accept also
7827 renaming back to A1-like.
7828
7829 2012-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
7830
7831 * emacs-lisp/advice.el: Use new dynamic docstrings.
7832 (ad-make-advised-definition-docstring, ad-advised-definition-p):
7833 Use dynamic-docstring-function instead of ad-advice-info.
7834 (ad--make-advised-docstring): New function extracted from
7835 ad-make-advised-docstring.
7836 (ad-make-advised-docstring): Use it.
7837 * progmodes/sql.el (sql--make-help-docstring): New function, extracted
7838 from sql-help.
7839 (sql-help): Use it with dynamic-docstring-function.
7840
7841 * env.el (env--substitute-vars-regexp): Don't use rx (for bootstrap).
7842
7843 2012-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
7844
7845 * files.el (hack-one-local-variable--obsolete): New function.
7846 (hack-one-local-variable): Use it for obsolete settings.
7847
7848 * subr.el (locate-user-emacs-file): If both old and new name exist, use
7849 the new name.
7850
7851 * progmodes/js.el (js--filling-paragraph): New var.
7852 (c-forward-sws, c-backward-sws, c-beginning-of-macro): Advise.
7853 (js-c-fill-paragraph): Prefer advice to cl-letf so the rebinding is
7854 less sneaky.
7855
7856 2012-11-08 Julien Danjou <julien@danjou.info>
7857
7858 * progmodes/ruby-mode.el (auto-mode-alist): Add Rakefile in
7859 `auto-mode-alist' (Bug#12835).
7860
7861 2012-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
7862
7863 * progmodes/perl-mode.el (perl-prettify-symbols): New defcustom.
7864 (perl--prettify-symbols-alist): New const.
7865 (perl--font-lock-compose-symbol, perl--font-lock-symbols-keywords):
7866 New functions.
7867 (perl-font-lock-keywords-2): Use them.
7868 (perl-electric-noindent-p): New function.
7869 (perl-mode): Use it to set up electric-indent-mode.
7870 (perl-electric-terminator, perl-indent-command): Mark obsolete.
7871 (perl-mode-map): Remove bindings for them.
7872 (perl-imenu-generic-expression, perl-outline-level):
7873 Match functions&packages in column>0.
7874
7875 * env.el (env--substitute-vars-regexp): New const.
7876 (substitute-env-vars): Use it. Add `only-defined' arg.
7877 * net/tramp.el (tramp-replace-environment-variables): Use it.
7878
7879 * emacs-lisp/bytecomp.el (byte-compile-initial-macro-environment):
7880 Byte-compile *before* eval in eval-and-compile.
7881 (byte-compile-log-warning): Remove redundant inhibit-read-only.
7882 (byte-compile-file-form-autoload): Don't hide actual definition.
7883 (byte-compile-maybe-guarded): Accept `functionp' as well.
7884
7885 * emacs-lisp/gv.el (gv-ref, gv-deref): New function and macro.
7886
7887 2012-11-07 Michael Albinus <michael.albinus@gmx.de>
7888
7889 * notifications.el (notifications-get-server-information-method):
7890 New defconst.
7891 (notifications-get-capabilities): Fix docstring.
7892 (notifications-get-server-information): New defun.
7893
7894 2012-11-06 Agustín Martín Domingo <agustin.martin@hispalinux.es>
7895
7896 * textmodes/ispell.el (ispell-region): Standard re-indent for better
7897 readability.
7898
7899 * textmodes/ispell.el: Experimental support for support debugging.
7900 (ispell-create-debug-buffer): Create a `ispell-debug-buffer' debug
7901 buffer for ispell.
7902 (ispell-print-if-debug): New function to print stuff to
7903 `ispell-debug-buffer' if debugging is enabled.
7904 (ispell-region, ispell-process-line): Use `ispell-print-if-debug' to
7905 show some debugging info.
7906 (ispell-buffer-with-debug): New function that creates a debugging
7907 buffer and calls `ispell-buffer' with debugging enabled.
7908
7909 * textmodes/ispell.el (ispell-region): Do not prefix sent string by
7910 comment in autoconf mode. (Bug#12768)
7911
7912 2012-11-06 Dmitry Antipov <dmantipov@yandex.ru>
7913
7914 * emacs-lisp/byte-opt.el (toplevel): Add compare-window-configurations,
7915 frame-first-window, frame-root-window, frame-selected-window,
7916 minibuffer-selected-window, minibuffer-window,
7917 window-absolute-pixel-edges, window-at, window-body-height,
7918 window-body-width, window-display-table, window-combination-limit,
7919 window-frame, window-fringes, window-inside-absolute-pixel-edges,
7920 window-inside-edges, window-inside-pixel-edges, window-left-child,
7921 window-left-column, window-margins, window-next-buffers,
7922 window-next-sibling, window-new-normal, window-new-total,
7923 window-normal-size, window-parameter, window-parameters, window-parent,
7924 window-pixel-edges, window-point, window-prev-buffers,
7925 window-prev-sibling, window-redisplay-end-trigger, window-scroll-bars,
7926 window-start, window-text-height, window-top-child, window-top-line,
7927 window-total-height, window-total-width and window-use-time to the list
7928 of functions without side-effects.
7929 (toplevel): Add window-valid-p to the list of error-free functions
7930 without side-effects.
7931
7932 2012-11-05 Agustín Martín Domingo <agustin.martin@hispalinux.es>
7933
7934 * textmodes/ispell.el (ispell-program-name):
7935 Update spellchecker parameters when customized.
7936
7937 2012-11-04 Glenn Morris <rgm@gnu.org>
7938
7939 * vc/vc-svn.el (vc-svn-state-heuristic): Avoid calling svn. (Bug#7850)
7940
7941 2012-11-04 Chong Yidong <cyd@gnu.org>
7942
7943 * bookmark.el (bookmark-bmenu-switch-other-window): Avoid binding
7944 same-window-* variables.
7945
7946 2012-11-04 Juri Linkov <juri@jurta.org>
7947
7948 * isearch.el (isearch-help-for-help, isearch-describe-bindings)
7949 (isearch-describe-key, isearch-describe-mode): Use a display
7950 action instead of binding same-window-* variables (Bug#10040).
7951
7952 2012-11-03 Glenn Morris <rgm@gnu.org>
7953
7954 * emacs-lisp/cl-macs.el (cl-parse-loop-clause):
7955 Rename handler properties back from cl-- to cl-. (Bug#12788)
7956
7957 * emacs-lisp/cl-macs.el (cl-do-all-symbols): Add doc string.
7958
7959 2012-11-03 Eli Zaretskii <eliz@gnu.org>
7960
7961 * term/pc-win.el: Don't load term/internal from here.
7962
7963 * loadup.el: Load term/internal from here.
7964
7965 2012-11-03 Fabián Ezequiel Gallina <fgallina@cuca>
7966
7967 * progmodes/python.el (inferior-python-mode): Fix hang in
7968 jit-lock (Bug#12645).
7969
7970 2012-11-03 Martin Rudalics <rudalics@gmx.at>
7971
7972 * window.el (switch-to-visible-buffer)
7973 (switch-to-buffer-preserve-window-point): Fix doc-strings.
7974
7975 2012-11-03 Glenn Morris <rgm@gnu.org>
7976
7977 * emacs-lisp/cl-lib.el (cl--random-time):
7978 Rename from cl-random-time. (Bug#12773)
7979 (cl--gensym-counter, cl--random-state): Update callers.
7980 * emacs-lisp/cl-extra.el (cl-make-random-state): Update callers.
7981
7982 2012-11-03 Chong Yidong <cyd@gnu.org>
7983
7984 * cus-start.el: Make cursor-type customizable (Bug#11633).
7985
7986 2012-11-02 Glenn Morris <rgm@gnu.org>
7987
7988 * filecache.el: No need to load find-lisp when compiling.
7989 (find-lisp-find-files): Autoload it.
7990 (file-cache-add-directory-recursively): Don't require find-lisp.
7991
7992 * image.el (image-type-from-file-name): Trivial simplification.
7993
7994 * emacs-lisp/bytecomp.el (byte-compile-eval):
7995 Decouple "noruntime" and "cl-functions" warnings.
7996
7997 2012-11-01 Stephen Berman <stephen.berman@gmx.net>
7998
7999 * play/gomoku.el (gomoku-display-statistics): Update mode line
8000 only if in Gomoku buffer; don't capitalize "won" (Bug#12771).
8001
8002 2012-10-31 Martin Rudalics <rudalics@gmx.at>
8003
8004 * window.el (quit-restore-window): If the window has been
8005 created on an existing frame and ended up as the sole window on
8006 that frame, do not delete it (Bug#12764).
8007
8008 2012-10-31 Stefan Monnier <monnier@iro.umontreal.ca>
8009
8010 * progmodes/sh-script.el (sh--inside-noncommand-expression):
8011 Rename from sh--inside-arithmetic-expression, handle more cases
8012 (bug#11263).
8013
8014 * progmodes/sh-script.el (sh--inside-arithmetic-expression): New func.
8015 (sh-font-lock-open-heredoc): Use it (bug#12770).
8016
8017 2012-10-30 Glenn Morris <rgm@gnu.org>
8018
8019 * emacs-lisp/cl-extra.el (cl-mapc): Add autoload cookie. Doc fix.
8020
8021 * emacs-lisp/cl.el (letf): Doc fix. (Bug#12760)
8022
8023 2012-10-29 Chong Yidong <cyd@gnu.org>
8024
8025 * isearch.el (isearch-other-meta-char): Ensure that a reprocessed
8026 function key is stored in a keyboard macro (Bug#4894).
8027
8028 * thingatpt.el (number-at-point): Apply a thing-at-point property.
8029
8030 2012-10-29 Stefan Monnier <monnier@iro.umontreal.ca>
8031
8032 * vc/diff-mode.el (diff-context->unified): Don't get confused by "hunk
8033 header comments".
8034 (diff-unified->context, diff-context->unified)
8035 (diff-reverse-direction, diff-fixup-modifs): Use `use-region-p'.
8036
8037 * emacs-lisp/cl.el (letf): Add missing indent rules (bug#12759).
8038
8039 * files.el (find-alternate-file): Only ask one question (bug#12487).
8040
8041 2012-10-29 Chong Yidong <cyd@gnu.org>
8042
8043 * vc/vc-hooks.el (vc-file-clearprops): Kill vc-parent-buffer.
8044 Suggested by Dan Nicolaescu (Bug#6326).
8045
8046 * info.el (Info-complete-menu-item): Avoid duplicates (Bug#12705).
8047
8048 * startup.el (fancy-about-screen): Don't message (Bug#12680).
8049
8050 * thingatpt.el (thing-at-point): Doc fix (Bug#12691).
8051
8052 * imenu.el (imenu): Inhibit push-mark message (Bug#12726).
8053
8054 * face-remap.el (face-remap-add-relative): Handle the case where a
8055 face-remapping-alist entry is a cons cell (Bug#12762).
8056
8057 2012-10-29 Kevin Ryde <user42@zip.com.au>
8058
8059 * woman.el (woman-parse-numeric-value): Handle picas correctly
8060 (Bug#12639).
8061
8062 2012-10-29 Glenn Morris <rgm@gnu.org>
8063
8064 * emacs-lisp/cl.el (defsetf): Doc fix.
8065
8066 2012-10-29 Stefan Monnier <monnier@iro.umontreal.ca>
8067
8068 * progmodes/sh-script.el (sh-font-lock-paren): Also put punctuation
8069 syntax to the matching opener, if any (bug#12547).
8070 (sh-smie-sh-forward-token, sh-smie-sh-backward-token): Recognize this
8071 matching open as a "case-(".
8072 (sh-smie-rc-grammar): Add a corresponding rule for it.
8073
8074 2012-10-28 Daniel Hackney <dan@haxney.org>
8075
8076 * emacs-lisp/package.el (package-generate-autoloads): Kill buffer
8077 "PKGNAME-autoloads.el" in case we created it.
8078
8079 2012-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
8080
8081 * minibuffer.el (completion--sifn-requote): Rewrite to handle things
8082 like Tramp's "/foo:~bar//baz" -> "/scpc:foo:/baz" mapping (bug#11714).
8083 (completion--twq-all): Disable too-strict assertions.
8084
8085 * tmm.el (tmm-prompt): Use map-keymap (bug#12744).
8086
8087 2012-10-27 Eli Zaretskii <eliz@gnu.org>
8088
8089 * profiler.el (profiler-report-make-entry-part): Fix help-echo
8090 text to match the real keybindings.
8091
8092 2012-10-27 Juri Linkov <juri@jurta.org>
8093
8094 * wdired.el (wdired-keep-marker-rename): New defcustom.
8095 (wdired-do-renames): Use it instead of `dired-keep-marker-rename'.
8096 (Bug#11795)
8097
8098 * dired.el (dired-keep-marker-rename): Add reference to
8099 `wdired-keep-marker-rename' in the docstring.
8100 Add default character value ?R to display initially in
8101 Customization UI instead of ?@.
8102
8103 2012-10-27 Martin Rudalics <rudalics@gmx.at>
8104
8105 * window.el (display-buffer): In doc-string describe
8106 window-height and window-width alist entries.
8107
8108 * time.el (display-time-world): Restore fit-window-to-buffer
8109 behavior.
8110
8111 2012-10-27 Chong Yidong <cyd@gnu.org>
8112
8113 * subr.el (insert-buffer-substring-as-yank): Doc fix.
8114
8115 2012-10-26 Jambunathan K <kjambunathan@gmail.com>
8116
8117 * minibuffer.el (completion-category-overrides): New completion
8118 category `bookmark' (bug#11131).
8119
8120 2012-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
8121
8122 * emacs-lisp/advice.el (ad-assemble-advised-definition):
8123 Silence bogus compiler warnings for ad-do-it.
8124
8125 * bookmark.el (bookmark-completing-read): Set the completion category
8126 to `bookmark' (bug#11131).
8127
8128 2012-10-26 Bastien <bzg@altern.org>
8129 Stefan Monnier <monnier@iro.umontreal.ca>
8130
8131 * face-remap.el: Use lexical-binding.
8132 (text-scale-adjust): Improve docstring. Use itself for the temporary
8133 overlay-map bindings, so as to repeat the "Use..." message each time.
8134
8135 2012-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
8136
8137 * emacs-lisp/macroexp.el (macroexp--expand-all):
8138 Obey byte-compile-warning-enabled-p (bug#12486).
8139
8140 * vc/diff-mode.el (diff-end-of-hunk): Also skip potential "no LF at eol".
8141 (diff-refine-hunk): Similarly, handle the "no LF at eol" (bug#12584).
8142
8143 2012-10-26 Martin Rudalics <rudalics@gmx.at>
8144
8145 * mouse.el (mouse-drag-line): Move last form into preceding when
8146 clause (Bug#12731).
8147
8148 * help.el (resize-temp-buffer-window): Fix doc-string.
8149
8150 2012-10-25 David Engster <deng@randomsample.de>
8151
8152 * emacs-lisp/eieio.el (eieio-update-lisp-imenu-expression):
8153 Remove. This feature is already integrated in imenu.
8154
8155 * emacs-lisp/eieio-opt.el: Remove require for `button' since it is
8156 always loaded. Require `speedbar' unconditionally.
8157
8158 2012-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
8159
8160 * dired.el (dired-get-marked-files): Allow ! on . and .. (bug#12725).
8161
8162 * minibuffer.el (minibuffer-force-complete): Fix thinko.
8163
8164 * net/ldap.el (ldap-search-internal): The official ldif format starts
8165 with a "version: 1" header (bug#12724).
8166
8167 * emacs-lisp/package.el (package-installed-p): Warn if not ready
8168 (bug#12721).
8169
8170 2012-10-25 Glenn Morris <rgm@gnu.org>
8171
8172 * emacs-lisp/cl-macs.el (cl-progv): Doc fix.
8173
8174 2012-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
8175
8176 * minibuffer.el (minibuffer-force-complete): Use one more marker
8177 for the temporary-overlay-map command (bug#12619).
8178
8179 2012-10-24 Chong Yidong <cyd@gnu.org>
8180
8181 * time.el (display-time-world-mode): Derive from special-mode.
8182 (display-time-world): Use display-buffer (Bug#12708).
8183 (display-time-world-mode-map): Variable deleted.
8184 (display-time-world-display): Wrap the final delete-char inside
8185 inhibit-read-only.
8186
8187 2012-10-24 Chong Yidong <cyd@gnu.org>
8188
8189 * dired.el (dired-mark, dired-unmark, dired-flag-file-deletion):
8190 Doc fix.
8191
8192 * emacs-lisp/easymenu.el (easy-menu-define): Doc fix (Bug#12628).
8193
8194 2012-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
8195
8196 * minibuffer.el (completion--all-sorted-completions-location): New var.
8197 (completion--cache-all-sorted-completions)
8198 (completion--flush-all-sorted-completions): Use it.
8199 (completion-in-region, completion-in-region--postch)
8200 (completion-at-point, completion-help-at-point): Use markers in
8201 completion-in-region--data (bug#12619).
8202
8203 2012-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
8204
8205 * progmodes/compile.el (compilation-start): Try to handle common
8206 quoting of `cd' argument (bug#12640).
8207
8208 * vc/diff-mode.el (diff-hunk): `save-excursion' while refining
8209 (bug#12671).
8210
8211 2012-10-23 Glenn Morris <rgm@gnu.org>
8212
8213 * progmodes/gud.el (gud-menu-map):
8214 Check gdb-active-process is bound. (Bug#12358)
8215
8216 2012-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
8217
8218 * repeat.el (repeat): Set real-this-command (bug#12232).
8219
8220 * htmlfontify.el (hfy-post-html-hook):
8221 * filesets.el (filesets-cache-fill-content-hook):
8222 * arc-mode.el (archive-extract-hook):
8223 * progmodes/cc-mode.el (c-prepare-bug-report-hook):
8224 * net/rcirc.el (rcirc-sentinel-functions)
8225 (rcirc-receive-message-functions, rcirc-activity-functions)
8226 (rcirc-print-functions):
8227 * net/dbus.el (dbus-event-error-functions):
8228 * emacs-lisp/eieio.el (eieio-pre-method-execution-functions):
8229 * emacs-lisp/checkdoc.el (checkdoc-style-functions)
8230 (checkdoc-comment-style-functions): Don't use "-hooks" suffix.
8231 * term/sun.el (sun-raw-prefix-hooks):
8232 * mail/sendmail.el (mail-yank-hooks): Use make-obsolete-variable.
8233
8234 2012-10-23 Michael Albinus <michael.albinus@gmx.de>
8235
8236 * net/tramp-smb.el (tramp-smb-maybe-open-connection):
8237 Set `tramp-chunksize' to 1. This improves the performance.
8238 (tramp-smb-wait-for-output): Add timeout to
8239 `tramp-accept-process-output' calls.
8240
8241 2012-10-23 Chong Yidong <cyd@gnu.org>
8242
8243 * faces.el (font-list-limit): Define as an obsolete variable.
8244
8245 * startup.el (command-line):
8246 * cus-start.el: Don't refer to font-list-limit.
8247
8248 * newcomment.el (comment-normalize-vars): Doc fix (Bug#12583).
8249
8250 2012-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
8251
8252 * subr.el (internal-temp-output-buffer-show): Rename from
8253 temp-output-buffer-show, since previously compiled files expect this name.
8254
8255 2012-10-23 Glenn Morris <rgm@gnu.org>
8256
8257 * image.el (image-type-from-file-name): If multiple types match,
8258 return the first one that is supported. (Bug#9045)
8259
8260 2012-10-22 Glenn Morris <rgm@gnu.org>
8261
8262 * image.el (imagemagick-enabled-types): Doc fix.
8263
8264 2012-10-22 Takafumi Arakaki <aka.tkf@gmail.com> (tiny change)
8265
8266 * progmodes/which-func.el (which-func-current): The hash-table may have
8267 an explicit nil (bug#12338).
8268
8269 2012-10-22 Stefan Monnier <monnier@iro.umontreal.ca>
8270
8271 * electric.el (electric-pair-delete-selection-self-insert-function):
8272 Rename to electric-pair-will-use-region, return a boolean.
8273 (electric-pair-mode): Adjust accordingly. Don't require delsel.
8274
8275 * delsel.el (delete-selection-helper): Use a function instead of a hook.
8276 (delete-selection-pre-hook): Use use-region-p.
8277 (delete-selection-self-insert-function): Remove.
8278 (self-insert-command): Obey self-insert-uses-region-functions.
8279 (self-insert-iso): Revert to previous setting, since we don't actually
8280 know what that command does.
8281 (delete-selection-self-insert-hooks): Remove.
8282
8283 2012-10-22 Simon Law <sfllaw@sfllaw.ca> (tiny change)
8284
8285 * delsel.el (delete-selection-helper): New function, extracted from
8286 delete-selection-pre-hook.
8287 (delete-selection-pre-hook): Use it.
8288 (delete-selection-self-insert-function): New function.
8289 (delete-selection-self-insert-hooks): New hook.
8290 (self-insert-command, self-insert-iso): Use it.
8291 * electric.el (electric-pair-syntax): New function, extracted from
8292 electric-pair-post-self-insert-function.
8293 (electric-pair-post-self-insert-function): Use it.
8294 (electric-pair-delete-selection-self-insert-function): New function.
8295 (electric-pair-mode): Require delsel and setup
8296 delete-selection-self-insert-hooks (bug#11520).
8297
8298 2012-10-20 Chong Yidong <cyd@gnu.org>
8299
8300 * vc/vc.el (vc-diff-internal): Set up Diff mode even if there are
8301 no changes to show (Bug#12586).
8302
8303 * eshell/esh-cmd.el (eshell-rewrite-for-command): Copy the body
8304 list explicitly (Bug#12571).
8305
8306 2012-10-20 Arne Jørgensen <arne@arnested.dk>
8307
8308 * progmodes/flymake.el (flymake-create-temp-inplace):
8309 Use file-truename.
8310
8311 2012-10-20 Eli Zaretskii <eliz@gnu.org>
8312
8313 * loadup.el: Update comment about uncompiled Lisp files. (Bug#12395)
8314
8315 2012-10-20 Jay Belanger <jay.p.belanger@gmail.com>
8316
8317 * calc/calc-units.el (math-extract-units): Properly extract powers
8318 of units.
8319
8320 2012-10-20 Daniel Colascione <dancol@dancol.org>
8321
8322 * frame.el (make-frame): Set x-display-name as we used to in order
8323 to unbreak creating an X11 frame from an Emacs daemon started
8324 without a display.
8325
8326 2012-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
8327
8328 * minibuffer.el (minibuffer-force-complete): Make the next completion use
8329 the same completion-field (bug#12221).
8330
8331 2012-10-19 Martin Rudalics <rudalics@gmx.at>
8332
8333 * emacs-lisp/debug.el (debug): Record height of debugger window
8334 also when debugger will be back (Bug#8789).
8335
8336 2012-10-18 Chong Yidong <cyd@gnu.org>
8337
8338 * progmodes/gdb-mi.el (gdb-display-buffer-other-frame-action):
8339 Convert to defcustom.
8340 (gdb-get-source-file): Don't bind pop-up-windows.
8341
8342 * progmodes/gud.el (gud-display-line): Don't specially re-use
8343 other frames for the gdb-mi case (Bug#12648).
8344
8345 2012-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
8346
8347 * emacs-lisp/advice.el: Clean up commentary a bit.
8348 (ad-do-advised-functions, ad-with-originals): Use `declare'.
8349 (byte-code-function-p): Never redefine.
8350
8351 * emacs-lisp/gv.el (cond): Same fix as before for `if'.
8352
8353 2012-10-18 Glenn Morris <rgm@gnu.org>
8354
8355 * dired.el (dired-sort-toggle): Some ls implementations only allow
8356 a single option string. (Bug#12666)
8357
8358 * minibuffer.el (completion-cycle-threshold): Doc fix.
8359
8360 2012-10-17 Kenichi Handa <handa@gnu.org>
8361
8362 * international/mule.el (set-keyboard-coding-system):
8363 Recover input meta mode when the new coding system doesn not use 8-bit.
8364 Supply TERMINAL arg to set-input-meta-mode.
8365
8366 2012-10-17 Michael Heerdegen <michael_heerdegen@web.de>
8367
8368 * wdired.el (wdired-old-marks): New variable.
8369 (wdired-change-to-wdired-mode): Locally set wdired-old-marks.
8370 (wdired-do-renames): Move point with renamed file and don't lose
8371 mark status (Bug#11795).
8372
8373 2012-10-16 Juri Linkov <juri@jurta.org>
8374
8375 * replace.el (query-replace-help): Mention multi-buffer replacement
8376 keys in the Help message. (Bug#12655)
8377
8378 2012-10-15 Chong Yidong <cyd@gnu.org>
8379
8380 * emacs-lisp/byte-run.el (defsubst): Doc fix.
8381
8382 2012-10-14 Eli Zaretskii <eliz@gnu.org>
8383
8384 * window.el (display-buffer): Doc fix.
8385
8386 * progmodes/compile.el (compilation-error-regexp-alist-alist):
8387 Adjust the msft regexp to the output of Studio 2010, and move msft
8388 before edg-1. See the discussion on emacs-devel,
8389 http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00579.html,
8390 for the details.
8391
8392 2012-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
8393
8394 * emacs-lisp/eieio.el (eieio-oset-default, eieio-oset, oset-default)
8395 (oset): Move uses of object-class-fast macro after its definition.
8396
8397 * emacs-lisp/gv.el (if): Don't use closures in non-lexical-binding code.
8398
8399 2012-10-13 Chong Yidong <cyd@gnu.org>
8400
8401 * textmodes/ispell.el (ispell-pdict-save): If flyspell-mode is
8402 enabled, re-enable it (Bug#11963).
8403
8404 2012-10-13 Martin Rudalics <rudalics@gmx.at>
8405
8406 * emacs-lisp/debug.el (debug): When debugger-will-be-back is
8407 non-nil, restore window configuration (Bug#12623).
8408
8409 2012-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
8410
8411 * help-fns.el (describe-variable, describe-function-1):
8412 * help-mode.el (help-make-xrefs): Remove error handler, made unneeded.
8413
8414 * emacs-lisp/eieio.el (lisp-imenu-generic-expression): Fix typo.
8415
8416 2012-10-12 Glenn Morris <rgm@gnu.org>
8417
8418 * mail/rmailsum.el (rmail-header-summary):
8419 Fix 2010-11-26 test for multiline Subject: field. (Bug#12625)
8420
8421 2012-10-12 Fabián Ezequiel Gallina <fgallina@cuca>
8422
8423 * progmodes/python.el (python-mode-map):
8424 Replace subtitute-key-definition with proper command remapping.
8425 (python-nav--up-list): Fix behavior for blocks on the same level.
8426
8427 2012-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
8428
8429 * help-fns.el (describe-function-1): Handle autoloads w/o docstrings.
8430
8431 * emacs-lisp/bytecomp.el (byte-compile-eval): Adjust to long-ago
8432 changes to the format of load-history.
8433
8434 * international/mule-cmds.el (read-char-by-name): Move let-binding of
8435 completion-ignore-case in case that var is buffer-local (bug#12615).
8436
8437 2012-10-11 Kenichi Handa <handa@gnu.org>
8438
8439 * international/eucjp-ms.el: Re-generated.
8440
8441 2012-10-10 Kenichi Handa <handa@gnu.org>
8442
8443 * select.el (xselect--encode-string): If a coding is specified for
8444 selection, and that is compatible with COMPOUND_TEXT, use it.
8445
8446 2012-10-10 Martin Rudalics <rudalics@gmx.at>
8447
8448 * window.el (switch-to-buffer-preserve-window-point): New option.
8449 (switch-to-buffer):
8450 Obey `switch-to-buffer-preserve-window-point' (Bug#4041).
8451
8452 2012-10-09 Stefan Monnier <monnier@iro.umontreal.ca>
8453
8454 * newcomment.el (comment-start-skip, comment-end-skip, comment-end):
8455 Don't document nil as a useful value (bug#12583).
8456
8457 2012-10-09 Michael Albinus <michael.albinus@gmx.de>
8458
8459 * net/tramp.el (tramp-debug-message):
8460 Remove "tramp-with-progress-reporter" from regexp of ignored functions.
8461 (with-tramp-progress-reporter): Rename from
8462 `tramp-with-progress-reporter'.
8463 (with-tramp-file-property, with-tramp-connection-property):
8464 Move from tramp-cache.el, rename from `with-file-property' and
8465 `with-connection-property', respectively.
8466
8467 * net/tramp-cache.el: Remove `with-file-property' and
8468 `with-connection-property'.
8469
8470 * net/tramp.el:
8471 * net/tramp-gvfs.el:
8472 * net/tramp-sh.el:
8473 * net/tramp-smb.el: Adapt callees.
8474
8475 * net/trampver.el: Update release number.
8476
8477 2012-10-09 Glenn Morris <rgm@gnu.org>
8478
8479 * w32-fns.el (set-message-beep):
8480 * term/w32-win.el (set-message-beep): Update declarations.
8481
8482 2012-10-09 Stefan Monnier <monnier@iro.umontreal.ca>
8483
8484 * bindings.el (mode-line-toggle-read-only, mode-line-toggle-modified)
8485 (mode-line-widen, mode-line-input-method-map)
8486 (mode-line-coding-system-map, mode-line-remote)
8487 (mode-line-unbury-buffer, mode-line-bury-buffer)
8488 (mode-line-next-buffer, mode-line-previous-buffer):
8489 Replace save-selected-window+select-window => with-selected-window.
8490
8491 * progmodes/cc-bytecomp.el (cc-bytecomp-defmacro): Remove, unused.
8492 * progmodes/cc-vars.el (bq-process): Remove, unused.
8493
8494 * emacs-lisp/cl-macs.el (cl-defstruct): Obey the :read-only property.
8495
8496 2012-10-09 Fabián Ezequiel Gallina <fgallina@cuca>
8497
8498 Implemented `backward-up-list'-like navigation.
8499 * progmodes/python.el (python-nav-up-list)
8500 (python-nav-backward-up-list): New functions.
8501 (python-mode-map): Define substitute key for backward-up-list to
8502 python-nav-backward-up-list.
8503
8504 2012-10-08 Fabián Ezequiel Gallina <fgallina@cuca>
8505
8506 * progmodes/python.el (python-fill-paragraph): Rename from
8507 python-fill-paragraph-function. Fixed fill-paragraph for
8508 decorators (Bug#12605).
8509
8510 2012-10-08 Fabián Ezequiel Gallina <fgallina@cuca>
8511
8512 * progmodes/python.el (python-shell-output-filter): Handle extra
8513 carriage return in OSX (Bug#12409).
8514
8515 2012-10-08 Fabián Ezequiel Gallina <fgallina@cuca>
8516
8517 Fix shell handling of unbalanced quotes and parens in output.
8518 * progmodes/python.el (python-rx-constituents): Add string-delimiter.
8519 (python-syntax-propertize-function): Use it.
8520 (python-shell-output-syntax-table): New var.
8521 (inferior-python-mode): Prevent unbalanced parens/quotes from
8522 previous output mess with current input context.
8523
8524 2012-10-08 Juanma Barranquero <lekktu@gmail.com>
8525
8526 * generic-x.el (javascript-generic-mode, javascript-generic-mode-hook):
8527 Make obsolete aliases of js-mode and js-mode-hook (from js.el).
8528
8529 2012-10-08 Michael Albinus <michael.albinus@gmx.de>
8530
8531 * ffap.el (ffap-replace-file-component): Support Tramp file name
8532 syntax, not only ange-ftp's one.
8533
8534 2012-10-08 Glenn Morris <rgm@gnu.org>
8535
8536 * cus-start.el (message-log-max): Set :version.
8537
8538 * calendar/calendar.el (calendar-intermonth-header): Doc fix.
8539
8540 2012-10-08 Martin Rudalics <rudalics@gmx.at>
8541
8542 * emacs-lisp/edebug.el (edebug-pop-to-buffer): Don't try to split
8543 the minibuffer window (Bug#10851).
8544
8545 2012-10-08 Fabián Ezequiel Gallina <fgallina@cuca>
8546
8547 Enhancements on forward-sexp movement.
8548 * progmodes/python.el (python-nav-beginning-of-statement)
8549 (python-nav-end-of-statement): Return point-marker.
8550 (python-nav-forward-sexp): lisp-like forward-sexp behavior.
8551 (python-info-current-symbol)
8552 (python-info-statement-starts-block-p): Rename from
8553 python-info-beginning-of-block-p.
8554 (python-info-statement-ends-block-p): Rename from
8555 python-info-end-of-block-p.
8556 (python-info-beginning-of-statement-p)
8557 (python-info-end-of-statement-p)
8558 (python-info-beginning-of-block-p, python-info-end-of-block-p):
8559 New functions.
8560
8561 2012-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
8562
8563 * comint.el (comint-preinput-scroll-to-bottom): Preserve the
8564 frame-selected-windows.
8565
8566 2012-10-08 Daniel Colascione <dancol@dancol.org>
8567
8568 * battery.el (battery-status-function): Check for
8569 w32-battery-status itself, not system-time windows-nt.
8570
8571 * frame.el: Require cl-lib.
8572 (display-format-alist): New variable mapping frame types to
8573 functions that initialize them.
8574 (window-system-for-display): New function: interprets
8575 display-format-alist.
8576 (make-frame-on-display): Remove existing display-selection logic
8577 and just forward to make-frame, which will now DTRT.
8578 (make-frame): Restructure to use window-system-for-display to
8579 figure out how to create a frame on a given display.
8580 (display-mouse-p): Look for frame-type w32, not a particular
8581 system-type.
8582
8583 * loadup.el: Load w32 lisp code when we have the w32 feature.
8584
8585 * mouse.el (mouse-yank-primarY): Look for frame-type w32, not
8586 system-type windows-nt.
8587
8588 * server.el (server-create-window-system-frame): Look for window
8589 type.
8590 (server-proces-filter): Only force a window system when windows-nt
8591 _and_ w32. Explain why.
8592
8593 * simple.el (normal-erase-is-backspace-mode): Add w32 to the list
8594 of window systems we configure for the mode.
8595
8596 * startup.el (command-line): Mark window system is initialized
8597 after we've done it.
8598
8599 * common-win.el (x-select-text): Look for w32, not windows-nt.
8600
8601 * ns-win.el: Require cl-lib. Add ourselves to
8602 display-format-alist.
8603 (ns-initialize-window-system): Assert we're not initialized twice.
8604
8605 * w32-win.el: Enable lexical binding; require cl-lib; add
8606 ourselves to display-format-alist.
8607 (w32-handle-dropped-file): Convert incoming dropped files from
8608 Windows paths to Cygwin ones before passing them on to the rest of
8609 Emacs.
8610 (w32-drag-n-drop): New paramter new-frame. Simplify logic.
8611 (w32-initialize-window-system): Assert we're not initialized twice.
8612
8613 * x-win.el: Require cl-lib; add ourselves to display-format-alist.
8614 (x-initialize-window-system): Assert we're not initialized twice.
8615
8616 * w32-common-fns.el: New File.
8617 (w32-version, w32-using-nt, w32-get-clipboard-data)
8618 (w32-set-clipboard-data, x-set-selection, x-get-selection)
8619 (w32-charset-info-alist, x-last-selected, text)
8620 (x-get-selection-value, x-selection-value): Move here.
8621
8622 * w32-fns.el: Require w32-common-fns.
8623 (w32-version, w32-using-nt, w32-get-clipboard-data)
8624 (w32-set-clipboard-data, x-set-selection, x-get-selection)
8625 (w32-charset-info-alist, x-last-selected, text)
8626 (x-get-selection-value, x-selection-value): Move to
8627 w32-common-fns.
8628
8629 * w32-vars.el:
8630 (w32-allow-system-shell, w32-system-shells): Define only in
8631 non-cygwin case.
8632
8633 2012-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
8634
8635 * subr.el (read-passwd-map): Don't use `defconst' (bug#12597).
8636 (read-passwd): Remove a few more potential sources of leaks.
8637
8638 2012-10-07 Fabián Ezequiel Gallina <fgallina@cuca>
8639
8640 * progmodes/python.el (inferior-python-mode)
8641 (python-shell-make-comint): Fix initialization of local
8642 variables copied from parent buffer.
8643
8644 2012-10-07 Jan Djärv <jan.h.d@swipnet.se>
8645
8646 * term/ns-win.el (ns-read-file-name): Update declaration to match
8647 nsfns.m.
8648 (ns-respond-to-change-font): Change fontsize separately so we are sure
8649 it is set when font is acted upon.
8650
8651 2012-10-07 Fabián Ezequiel Gallina <fgallina@cuca>
8652
8653 Enhancements to indentation.
8654 * progmodes/python.el (python-indent-context): Give priority to
8655 inside-string context. Make comments indentation markers.
8656 (python-indent-region): Do not mess with strings, unless it's the
8657 enclosing set of quotes.
8658
8659 2012-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
8660
8661 * window.el (internal--before-save-selected-window)
8662 (internal--after-save-selected-window): New functions extracted from
8663 save-selected-window. Make sure we return the `alist' we construct.
8664 (save-selected-window): Use them.
8665
8666 * textmodes/tex-mode.el (tex-recenter-output-buffer):
8667 Use with-selected-window.
8668
8669 * emacs-lisp/autoload.el (make-autoload): Add `cl-defmacro' to the
8670 forms that define macros (bug#12593).
8671
8672 2012-10-07 Kenichi Handa <handa@gnu.org>
8673
8674 * international/mule-conf.el (compound-text-with-extensions):
8675 Add :mime-charset property as x-ctext.
8676
8677 2012-10-07 Stefan Merten <smerten@oekonux.de>
8678
8679 * textmodes/rst.el (rst-new-adornment-down, rst-indent-field)
8680 (rst-indent-literal-normal, rst-indent-literal-minimized)
8681 (rst-indent-comment): Correct :version tag.
8682 (rst-official-cvs-rev): Correct version string.
8683
8684 2012-10-07 Glenn Morris <rgm@gnu.org>
8685
8686 * mail/rmailmm.el (rmail-mime-process-multipart):
8687 Do not confuse a multipart message with an epilogue
8688 with a "truncated" one; fixes 2011-06-27 change. (Bug#10101)
8689
8690 2012-10-07 Fabián Ezequiel Gallina <fgallina@cuca>
8691
8692 Fix shell output retrieval and comint-prompt-regexp init.
8693 * progmodes/python.el (inferior-python-mode):
8694 (python-shell-make-comint): Fix initialization of
8695 comint-prompt-regexp from copied file local variables.
8696 (python-shell-fetched-lines): Remove var.
8697 (python-shell-output-filter-in-progress): Rename from
8698 python-shell-fetch-lines-in-progress.
8699 (python-shell-output-filter-buffer): Rename from
8700 python-shell-fetch-lines-string.
8701 (python-shell-fetch-lines-filter): Delete function.
8702 (python-shell-output-filter): New function.
8703 (python-shell-send-string-no-output): Use them.
8704
8705 2012-10-07 Glenn Morris <rgm@gnu.org>
8706
8707 * hi-lock.el (hi-lock-process-phrase):
8708 Try to make it less fragile. (Bug#7161)
8709
8710 * hi-lock.el (hi-lock-face-phrase-buffer): Doc fix.
8711
8712 2012-10-06 Glenn Morris <rgm@gnu.org>
8713
8714 * ehelp.el (electric-help-mode): Use help-mode rather than
8715 non-existent mode `help'.
8716 (electric-help-map): Use button-buffer-map. (Bug#10917)
8717
8718 * textmodes/reftex-vars.el (reftex-create-bibtex-header)
8719 (reftex-create-bibtex-footer): Fix custom types.
8720
8721 * progmodes/sh-script.el (sh-indent-after-continuation):
8722 Add explicit :group.
8723
8724 * textmodes/rst.el (rst-preferred-decorations)
8725 (rst-shift-basic-offset): Clarify obsolescence versions.
8726
8727 * profiler.el (profiler): Add missing group :version tag.
8728 * avoid.el (mouse-avoidance-banish-position):
8729 * proced.el (proced-renice-command):
8730 * calc/calc.el (calc-ensure-consistent-units):
8731 * calendar/icalendar.el (icalendar-import-format-uid):
8732 * net/tramp.el (tramp-save-ad-hoc-proxies):
8733 * progmodes/bug-reference.el (bug-reference-bug-regexp):
8734 * progmodes/flymake.el (flymake-error-bitmap)
8735 (flymake-warning-bitmap, flymake-fringe-indicator-position):
8736 * progmodes/sh-script.el (sh-indent-after-continuation):
8737 * progmodes/verilog-mode.el (verilog-auto-template-warn-unused)
8738 (verilog-before-save-font-hook, verilog-after-save-font-hook):
8739 * progmodes/vhdl-mode.el (vhdl-makefile-default-targets)
8740 (vhdl-array-index-record-field-in-sensitivity-list)
8741 (vhdl-indent-comment-like-next-code-line):
8742 * textmodes/reftex-vars.el (reftex-ref-style-alist)
8743 (reftex-ref-macro-prompt, reftex-ref-style-default-list)
8744 (reftex-cite-key-separator, reftex-create-bibtex-header)
8745 (reftex-create-bibtex-footer):
8746 * textmodes/rst.el (rst-new-adornment-down, rst-indent-field)
8747 (rst-indent-literal-normal, rst-indent-literal-minimized)
8748 (rst-indent-comment): Add missing custom :version tags.
8749
8750 * calendar/timeclock.el (timeclock-modeline-display):
8751 Add missing obsolete alias for renamed user option.
8752
8753 * strokes.el (strokes-modeline-string):
8754 * emulation/crisp.el (crisp-mode-modeline-string):
8755 * eshell/esh-mode.el (eshell-status-in-modeline):
8756 Aliases to defcustoms must come before the defcustom.
8757
8758 * calendar/cal-tex.el (cal-tex-diary, cal-tex-cursor-week)
8759 (cal-tex-cursor-week2, cal-tex-cursor-week-iso)
8760 (cal-tex-cursor-week-monday): Doc fixes.
8761 (cal-tex-cursor-week2-summary): Doc fix.
8762 Rename from cal-tex-cursor-week-at-a-glance.
8763
8764 * calendar/cal-menu.el (cal-menu-context-mouse-menu):
8765 Tweak week descriptions. Add cal-tex-cursor-week2-summary.
8766
8767 * calendar/calendar.el (calendar-mode-map):
8768 Add cal-tex-cursor-week2-summary.
8769
8770 2012-10-06 Stefan Monnier <monnier@iro.umontreal.ca>
8771
8772 * emacs-lisp/cl-macs.el (cl-defstruct): Improve docstring.
8773
8774 * subr.el (read-passwd-map): New var.
8775 (read-passwd): Use `read-string' again.
8776 * minibuffer.el (delete-minibuffer-contents): Make it interactive.
8777
8778 2012-10-06 Jambunathan K <kjambunathan@gmail.com>
8779
8780 * register.el (append-to-register, prepend-to-register):
8781 Deactivate mark, as does `copy-to-register' (bug#12389).
8782
8783 2012-10-06 Chong Yidong <cyd@gnu.org>
8784
8785 * files.el (auto-mode-alist): Add .by and .wy (Semantic grammars).
8786
8787 2012-10-06 Ikumi Keita <ikumi@ikumi.que.jp> (tiny change)
8788
8789 * international/characters.el: Fix simple mistake ((car chars) ->
8790 elt), delete duplicated code.
8791
8792 2012-10-06 Glenn Morris <rgm@gnu.org>
8793
8794 * subr.el (read-passwd): Allow C-u to erase entry. (Bug#12570)
8795
8796 2012-10-06 Julian Scheid <julians37@gmail.com> (tiny change)
8797
8798 * color.el (color-hsl-to-rgb): Fix incorrect results for
8799 small and large hue values. (Bug#12559)
8800
8801 2012-10-05 Fabián Ezequiel Gallina <fgallina@cuca>
8802
8803 Enhancements to docstring formatting when filling paragraphs.
8804 * progmodes/python.el (python-fill-docstring-style): Rename from
8805 python-fill-string-style. Added new style.
8806 (python-fill-string): Use new style. Better checks for
8807 docstrings.
8808
8809 2012-10-05 Glenn Morris <rgm@gnu.org>
8810
8811 * net/newst-treeview.el (newsticker-group-move-feed): Doc fix.
8812
8813 * color.el (color-name-to-rgb, color-rgb-to-hex)
8814 (color-hue-to-rgb, color-hsl-to-rgb, color-rgb-to-hsv)
8815 (color-rgb-to-hsl, color-srgb-to-xyz, color-saturate-hsl)
8816 (color-desaturate-hsl, color-desaturate-name, color-lighten-hsl)
8817 (color-lighten-name, color-darken-hsl, color-darken-name): Doc fixes.
8818
8819 * emacs-lisp/timer.el (with-timeout): Add missing progn. (Bug#12577)
8820
8821 2012-10-05 Juanma Barranquero <lekktu@gmail.com>
8822
8823 * ido.el (ido-directory-too-big-p): Pass dir through file-truename
8824 to get the correct size across symlinks.
8825
8826 * ido.el (ido-buffer-disable-smart-matches): Fix typo in docstring.
8827
8828 2012-10-04 Juri Linkov <juri@jurta.org>
8829
8830 * replace.el (query-replace-interactive): Declare obsolete.
8831 (query-replace-read-from): Add the last incremental search string
8832 to the list of default values accessible via M-n.
8833 (map-query-replace-regexp): Use `read-regexp'.
8834 (query-replace, query-replace-regexp, query-replace-regexp-eval)
8835 (map-query-replace-regexp, replace-string, replace-regexp):
8836 Fix docstrings to replace mentions of `query-replace-interactive'
8837 with alternatives. (Bug#12526)
8838
8839 2012-10-04 Juri Linkov <juri@jurta.org>
8840
8841 * dired.el (dired-shrink-to-fit): Declare obsolete. (Bug#1806)
8842 (dired-pop-to-buffer): Declare obsolete.
8843 (dired-mark-pop-up): Doc fix.
8844
8845 2012-10-04 Fabián Ezequiel Gallina <fgallina@cuca>
8846
8847 Allow user to set docstring style for fill-paragraph.
8848 * progmodes/python.el
8849 (python-fill-comment-function, python-fill-string-function)
8850 (python-fill-decorator-function, python-fill-paren-function):
8851 Remove :safe for defcustoms.
8852 (python-fill-string-style): New defcustom
8853 (python-fill-paragraph-function): Enhance context detection.
8854 (python-fill-string): Honor python-fill-string-style settings.
8855
8856 2012-10-04 Martin Rudalics <rudalics@gmx.at>
8857
8858 * emacs-lisp/edebug.el (edebug-pop-to-buffer): Select window
8859 after setting its buffer (Bug#10805).
8860
8861 2012-10-03 Fabián Ezequiel Gallina <fgallina@cuca>
8862
8863 Fix cornercase for string syntax.
8864 * progmodes/python.el (python-syntax-propertize-function):
8865 Simplify and enhance the regexp for unescaped quotes. Now it also
8866 matches quotes in weird situations like the single quote in
8867 "something\"'".
8868 (python-syntax-stringify): Simplify num-quotes detecting code.
8869
8870 2012-10-03 Glenn Morris <rgm@gnu.org>
8871
8872 * help-macro.el (three-step-help):
8873 Revert 2012-09-29 change. (Bug#12567)
8874
8875 2012-10-03 Martin Rudalics <rudalics@gmx.at>
8876
8877 * menu-bar.el (kill-this-buffer): Don't do anything when
8878 `menu-frame' is not alive or visible (Bug#8184).
8879
8880 * emacs-lisp/debug.el (debug): When quitting the debugger window
8881 restore current buffer (Bug#12502).
8882
8883 2012-10-02 Chong Yidong <cyd@gnu.org>
8884
8885 * progmodes/hideif.el (hif-lookup, hif-defined):
8886 Handle semantic-c-takeover-hideif.
8887
8888 2012-10-02 Paul Eggert <eggert@cs.ucla.edu>
8889
8890 Change sampling interval units from ms to ns.
8891 * profiler.el (profiler-sampling-interval): Change units
8892 from ms to ns, multiplying the default by 1000000 so that
8893 it remains 1 ms.
8894 (profiler-report-cpu-line-format): Give enough room for
8895 the maximum counters on 64-bit hosts.
8896 (profiler-report-render-calltree-1): Call them "CPU samples",
8897 not "Time (ms)", since they are not milliseconds now (and
8898 never really were).
8899
8900 2012-10-02 Sergio Durigan Junior <sergiodj@riseup.net> (tiny change)
8901
8902 * net/eudcb-bbdb.el (eudc-bbdb-format-record-as-result):
8903 Fix querying BBDB for entries without a last name (Bug#11580).
8904
8905 2012-10-02 Chong Yidong <cyd@gnu.org>
8906
8907 * emacs-lisp/eieio.el: Restore Version header.
8908
8909 2012-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
8910
8911 * vc/diff-mode.el (diff--auto-refine-data): New var.
8912 (diff-hunk): Use it to delay refinement.
8913 (diff-mode): Remove overlays when we turn off font-lock.
8914
8915 * textmodes/table.el: Use lexical-binding, dolist, define-minor-mode.
8916 (table-initialize-table-fixed-width-mode)
8917 (table-set-table-fixed-width-mode): Remove functions.
8918 (table-command-list): Move initialization into declaration.
8919 (table--tweak-menu-for-xemacs): Move defun outside mapcar.
8920 (table-with-cache-buffer): Use `declare'.
8921 (table-span-cell): Simplify via CSE.
8922 (table-fixed-width-mode): Use define-minor-mode.
8923 (table-call-interactively, table-funcall, table-apply): Remove.
8924 (table-function): New function, to replace them.
8925
8926 * bookmark.el (bookmark-search-pattern): Remove var.
8927 (bookmark-read-search-input): Remove function.
8928 (bookmark-bmenu-search): Reimplement using a minibuffer.
8929
8930 * faces.el (modeline): Remove obsolete face name.
8931
8932 * vc/add-log.el (add-log-buffer-file-name-function): Demote to defvar
8933 and give a non-nil default value.
8934 (add-change-log-entry): Simplify accordingly.
8935
8936 2012-10-01 Dmitry Gutov <dgutov@yandex.ru>
8937
8938 * vc/vc-git.el (vc-git-log-edit-toggle-signoff): New function.
8939 (vc-git-log-edit-toggle-amend): New function.
8940 (vc-git-log-edit-toggle-signoff): New function.
8941 (vc-git-log-edit-mode): New major mode.
8942 (vc-git-log-edit-mode-map): Keymap for it.
8943 (vc-git-checkin): Handle "Amend" and "Sign-Off" headers.
8944
8945 * vc/log-edit.el (log-edit-font-lock-keywords): Allow hyphens in
8946 header names.
8947 (log-edit-toggle-header): New function.
8948 (log-edit-extract-headers): Accept function values in HEADERS alist.
8949
8950 2012-10-01 David Engster <deng@randomsample.de>
8951
8952 * emacs-lisp/eieio-opt.el (eieio-describe-class): Add filename
8953 from symbol property and change message to be more consistent with
8954 Emacs proper.
8955 (eieio-describe-generic): Add filename for each implementation.
8956 Fix indices for generic and normal methods.
8957 (eieio-method-def, eieio-class-def): New buttons.
8958 (eieio-help-find-method-definition)
8959 (eieio-help-find-class-definition): New functions.
8960 (eieio-help-mode-augmentation-maybee): Add buttons to filenames of
8961 class, constructor and method definitions.
8962
8963 * emacs-lisp/eieio.el (eieiomt-add, eieio-defclass): Save file
8964 information in symbol property.
8965 (scoped-class): Remove.
8966 (eieio-slot-name-index, call-next-method): Check if it is bound.
8967
8968 2012-10-01 Leo P. White <lpw25@cam.ac.uk>
8969
8970 * emacs-lisp/eieio-custom.el (eieio-custom-mode-map): New option.
8971 (eieio-custom-mode): New major mode.
8972 (eieio-customize-object): Use it.
8973
8974 2012-10-01 Eric Ludlam <zappo@gnu.org>
8975
8976 * emacs-lisp/eieio-base.el (eieio-persistent-read): New input args
8977 specifying the expected class, and whether subclassing is allowed.
8978 (eieio-persistent-convert-list-to-object):
8979 (eieio-persistent-validate/fix-slot-value)
8980 (eieio-persistent-slot-type-is-class-p): New functions.
8981 (eieio-named::slot-missing): Doc fix.
8982
8983 * emacs-lisp/eieio-datadebug.el (data-debug/eieio-insert-slots):
8984 Stop using unused publd variable.
8985
8986 * emacs-lisp/eieio-speedbar.el (eieio-speedbar-handle-click):
8987 (eieio-speedbar-description, eieio-speedbar-derive-line-path)
8988 (eieio-speedbar-object-buttonname, eieio-speedbar-make-tag-line)
8989 (eieio-speedbar-handle-click): Do not specify a class for the
8990 method. Fixes method invocation order problems with EDE.
8991
8992 2012-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
8993
8994 * emacs-lisp/bytecomp.el (byte-compiler-abbreviate-file): New function.
8995 (byte-compile-warning-prefix, byte-compile-file): Use it (bug#12508).
8996
8997 2012-10-01 Karl Fogel <kfogel@red-bean.com>
8998
8999 * bookmark.el (bookmark-version-control): Give tags in the
9000 :type choices (Bug#12309), and improve doc string.
9001 (bookmark-write-file): Bind `print-circle' to `t' to allow
9002 circular custom bookmark types. (Bug#12503)
9003
9004 2012-10-01 Paul Eggert <eggert@cs.ucla.edu>
9005
9006 Revert the FOLLOW-SYMLINKS change for file-attributes.
9007 * files.el (remote-file-name-inhibit-cache, after-find-file):
9008 * time.el (display-time-file-nonempty-p): Undo last change.
9009
9010 * profiler.el (profiler-sampling-interval): Change default back to 1.
9011 See Stefan Monnier in
9012 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00863.html>.
9013
9014 2012-10-01 Fabián Ezequiel Gallina <fgallina@cuca>
9015
9016 Shell output catching a la gud-gdb.
9017 * progmodes/python.el (python-shell-fetch-lines-in-progress)
9018 (python-shell-fetch-lines-string, python-shell-fetched-lines):
9019 New Vars.
9020 (python-shell-fetch-lines-filter): New function.
9021 (python-shell-send-string-no-output): Use them.
9022
9023 2012-09-30 Tomohiro Matsuyama <tomo@cx4a.org>
9024
9025 * profiler.el (profiler-sampling-interval): Rename from
9026 profiler-sample-interval.
9027 (profiler-sampling-interval): Default to 10.
9028 (profiler-find-profile): New command (was profiler-find-log).
9029 (profiler-find-profile-other-window): New command.
9030 (profiler-find-profile-other-frame): New command.
9031 (profiler-profile): Introduce API-level data structure.
9032
9033 2012-09-30 Paul Eggert <eggert@cs.ucla.edu>
9034
9035 file-attributes has a new optional arg FOLLOW-SYMLINKS.
9036 * files.el (remote-file-name-inhibit-cache):
9037 * time.el (display-time-file-nonempty-p): Use it.
9038 * files.el (after-find-file): Don't chase links before calling
9039 file-exists-p, as file-exists-p already does the right thing.
9040
9041 2012-09-30 Ralf Angeli <angeli@caeruleus.net>
9042
9043 Merge from standalone RefTeX repository.
9044
9045 The following ChangeLog entries are shortened versions of the
9046 original ones with file paths adapted. A not so strongly edited
9047 version of the original ChangeLog can be found in the commit log.
9048
9049 * textmodes/reftex-auc.el: Move `provide' call to bottom of file.
9050 (reftex-arg-cite): Use `reftex-cite-key-separator'.
9051 Correctly handle new value type returned by `reftex-citation'.
9052
9053 * textmodes/reftex-cite.el (reftex-create-bibtex-file): Make sure
9054 that entries with whitespace at various places are found.
9055 Doc fix. Include entries that are cross-referenced from cited entries.
9056 Include @String definitions in the resulting bib file. Add header
9057 and footer defined in `reftex-create-bibtex-header' and
9058 `reftex-create-bibtex-footer'.
9059 (reftex-do-citation): Make it possible again to insert
9060 non-existent entries. Save match data when asking for optional
9061 arguments. Return all keys, not just the first one.
9062 (reftex-all-used-citation-keys): Fix regexp to correctly extract
9063 all citations in the same line.
9064 (reftex-parse-bibtex-entry): Accept additional optional argument
9065 `raw' and keep quotes or braces if it is non-nil. Match fields
9066 containing hyphens besides word constituents.
9067 (reftex-get-string-refs): New function.
9068 (reftex-extract-bib-entries): Check if BibTeX file changed on disk
9069 and ask if it should be reread in case it did.
9070 (reftex-pop-to-bibtex-entry)
9071 (reftex-extract-bib-entries-from-thebibliography): Match \bibitem
9072 entries with spaces or tabs in front of arguments.
9073 (reftex-pop-to-bibtex-entry, reftex-extract-bib-entries)
9074 (reftex-parse-bibtex-entry, reftex-create-bibtex-file):
9075 Match entries containing numbers and symbol constituents.
9076 (reftex-do-citation, reftex-figure-out-cite-format):
9077 Use `reftex-cite-key-separator'.
9078
9079 * textmodes/reftex-dcr.el: Move provide statement to end of file.
9080 (reftex-mouse-view-crossref): Explain why point is set.
9081
9082 * textmodes/reftex-global.el: Whitespace changes.
9083
9084 * textmodes/reftex-index.el: Move provide statement to end of
9085 file.
9086 (reftex-index-selection-or-word): Use `reftex-region-active-p'.
9087 (reftex-index-visit-phrases-buffer): Set marker when visiting
9088 buffer. This allows for returning from the phrases file to the
9089 file one was just editing instead of the file where the last
9090 phrases was added from.
9091 (reftex-index-phrases-syntax-table): New variable. Give ?\"
9092 punctuation syntax as it usually is not used as string quote in
9093 TeX-related modes and may occur unmatched. The change also
9094 prevents fontification of quoted content.
9095 (reftex-index-phrases-mode): Use it.
9096
9097 * textmodes/reftex-parse.el (reftex-parse-from-file):
9098 Move backward one char if a `\' was matched after a section macro.
9099 (reftex-parse-from-file): Use beginning of match instead of end as
9100 bound.
9101
9102 * textmodes/reftex-ref.el: Adapt creation of
9103 `reftex-<package>-<macro>' functions to new structure of
9104 `reftex-ref-style-alist'.
9105 (reftex-reference): Use `reftex-ref-style-list' function.
9106 Adapt to new structure of `reftex-ref-style-alist'. Prompt for a
9107 reference macro if `reftex-ref-macro-prompt' is non-nil.
9108 (reftex-reference): Pass refstyle to `reftex-format-special'.
9109 Determine reference macro by looking at
9110 `reftex-ref-style-default-list' and `reftex-ref-style-alist'.
9111 Use only one special format function.
9112 (reftex-varioref-vref, reftex-fancyref-fref)
9113 (reftex-fancyref-Fref): Remove definitions. The functions are now
9114 generated from `reftex-ref-style-alist'.
9115 (reftex-format-vref, reftex-format-Fref, reftex-format-fref):
9116 Remove.
9117 (reftex-format-special): New function.
9118
9119 * textmodes/reftex-sel.el
9120 (reftex-select-cycle-ref-style-internal): Adapt to new structure
9121 of `reftex-ref-style-alist'. Remove code for testing macro type.
9122 (reftex-select-toggle-varioref)
9123 (reftex-select-toggle-fancyref): Remove.
9124 (reftex-select-cycle-ref-style-internal)
9125 (reftex-select-cycle-ref-style-forward)
9126 (reftex-select-cycle-ref-style-backward): New functions.
9127 (reftex-select-label-map): Use `v' and `V' for general cycling
9128 through reference styles. Add `p' for switching between number
9129 and page reference types.
9130
9131 * textmodes/reftex-toc.el (reftex-re-enlarge):
9132 Call `enlarge-window' only if there is something to do because in Emacs
9133 the horizontal version throws an error even if the parameter is 0.
9134
9135 * textmodes/reftex-vars.el (reftex-label-alist): Doc fix.
9136 (reftex-plug-into-AUCTeX): Doc fix.
9137 (reftex-vref-is-default, reftex-fref-is-default): Adapt doc
9138 string. Adapt to new name.
9139 (reftex-ref-style-alist): Change structure so that it is not
9140 possible to use multiple different package names within a style.
9141 Remove the symbols for symbols for macro type distinction.
9142 Add characters for macro selection.
9143 (reftex-ref-macro-prompt, reftex-create-bibtex-header)
9144 (reftex-create-bibtex-footer): New variables.
9145 (reftex-format-ref-function): Mention third argument of special
9146 format function.
9147 (reftex-ref-style-alist, reftex-ref-style-default-list):
9148 New variables.
9149 (reftex-vref-is-default, reftex-fref-is-default): Adapt doc string
9150 to new implementation. Mark as obsolete. Add compatibility code
9151 for honoring the variable values in case they are set.
9152 (reftex-cite-format-builtin, reftex-bibliography-commands):
9153 Add support for ConTeXt.
9154 (reftex-format-ref-function, reftex-format-cite-function):
9155 Fix custom type.
9156 (reftex-cite-key-separator): New variable.
9157
9158 * textmodes/reftex.el (reftex-syntax-table-for-bib)
9159 (reftex-mode): Do not derive `reftex-syntax-table-for-bib' from
9160 `reftex-syntax-table' because parens have to retain their paren
9161 syntax in order for parsing of BibTeX entries like @book(...) to
9162 work.
9163 (reftex-in-comment): Do not error out if `comment-start-skip' is
9164 not set. Deal correctly with escaped comment characters.
9165 (reftex-tie-multifile-symbols): Add doc string.
9166 Initialize `reftex-ref-style-list'.
9167 (reftex-untie-multifile-symbols): Add doc string.
9168 (reftex-add-index-macros): Doc fix.
9169 (reftex-ref-style-activate, reftex-ref-style-toggle)
9170 (reftex-ref-style-list): New functions.
9171 (reftex-mode-menu): Use them. Adapt to new structure of
9172 `reftex-ref-style-alist'.
9173 (reftex-select-with-char): Kill the RefTeX Select buffer when
9174 done.
9175 (reftex-remove-if): New function.
9176 (reftex-erase-all-selection-and-index-buffers)
9177 (reftex-mode-menu): Reference styles are now computed from
9178 `reftex-ref-style-alist'. Fix typo.
9179 (reftex-report-bug): New function.
9180 (reftex-uniquify, reftex-uniquify-by-car): Replace O(n^2)
9181 algorithms with O(n log n). Introduce optional argument SORT (not
9182 yet used).
9183
9184 2012-09-30 Fabián Ezequiel Gallina <fgallina@cuca>
9185
9186 Enhancements for triple-quote string syntax.
9187 * progmodes/python.el (python-syntax-propertize-function):
9188 Match both quote cases in one regexp.
9189 (python-syntax-stringify): Handle matches properly.
9190
9191 2012-09-30 Juri Linkov <juri@jurta.org>
9192
9193 * arc-mode.el (archive-summarize): Let-bind `buffer-file-truename'
9194 to nil around the call to `insert' to prevent
9195 directory time modification by lock_file. (Bug#2295)
9196 * tar-mode.el (tar-summarize-buffer): Idem.
9197
9198 2012-09-30 Juri Linkov <juri@jurta.org>
9199
9200 * facemenu.el (list-colors-sort): Add option "Luminance".
9201 (list-colors-sort-key): Implement it.
9202
9203 * vc/diff-mode.el (diff-refine-removed):
9204 * vc/ediff-init.el (ediff-fine-diff-A):
9205 * vc/smerge-mode.el (smerge-refined-removed):
9206 Change background color "#ffaaaa" to "#ffbbbb". (Bug#10181)
9207
9208 2012-09-30 Jan Djärv <jan.h.d@swipnet.se>
9209
9210 * term/ns-win.el (x-file-dialog): New function.
9211
9212 2012-09-30 Juanma Barranquero <lekktu@gmail.com>
9213
9214 * ido.el (ido-max-directory-size): Default to nil; the current
9215 default is small for POSIX systems, and impractical on Windows 7
9216 now that lstat returns directory sizes for NTFS.
9217
9218 2012-09-30 Martin Rudalics <rudalics@gmx.at>
9219
9220 In buffer display functions handle window-height/window-width
9221 alist entries. Suggested by Juri Linkov as fix for Bug#1806.
9222 * window.el (window--display-buffer): New argument ALIST.
9223 Obey window-height and window-width alist entries.
9224 (window--try-to-split-window): New argument ALIST.
9225 Bind window-combination-limit to t when the window's size shall be
9226 changed and window-combination-limit equals `window-size'.
9227 (display-buffer-in-atom-window)
9228 (display-buffer-in-major-side-window)
9229 (display-buffer-in-side-window, display-buffer-same-window)
9230 (display-buffer-reuse-window, display-buffer-pop-up-frame)
9231 (display-buffer-pop-up-window, display-buffer-below-selected)
9232 (display-buffer-at-bottom, display-buffer-in-previous-window)
9233 (display-buffer-use-some-window): Adjust all callers of
9234 window--display-buffer and window--try-to-split-window.
9235 (fit-frame-to-buffer): New option.
9236 (fit-window-to-buffer): Can resize frames if fit-frame-to-buffer
9237 is non-nil.
9238 (display-buffer-in-major-side-window): Evaluate window-height /
9239 window-width alist entries.
9240
9241 * help.el (temp-buffer-resize-frames)
9242 (temp-buffer-resize-regexps): Remove options.
9243 (temp-buffer-resize-mode): Adjust doc-string.
9244 (resize-temp-buffer-window): Don't consult
9245 temp-buffer-resize-regexps. Use fit-frame-to-buffer instead of
9246 temp-buffer-resize-frames.
9247
9248 * dired.el (dired-mark-pop-up):
9249 Call display-buffer-below-selected with a fit-window-to-buffer alist
9250 entry.
9251
9252 2012-09-30 Chong Yidong <cyd@gnu.org>
9253
9254 * server.el (server-host): Document the security implications.
9255 (server-auth-key): Doc fix.
9256
9257 * startup.el (initial-buffer-choice): Doc fix.
9258
9259 * minibuffer.el (minibuffer-local-filename-syntax): Doc fix.
9260
9261 * simple.el (delete-trailing-whitespace): Avoid an unnecessary
9262 restriction change.
9263
9264 * bindings.el (goto-map): Bind M-g TAB to move-to-column.
9265
9266 * help-fns.el (help-fns--obsolete): Fix last change.
9267
9268 2012-09-30 Stefan Monnier <monnier@iro.umontreal.ca>
9269
9270 * winner.el (winner-mode-map): Obey winner-dont-bind-my-keys here.
9271 (minor-mode-map-alist): Remove redundant code.
9272
9273 * vc/pcvs.el (cvs-cleanup-collection): Keep entries that are currently
9274 visited in a buffer.
9275 (cvs-insert-visited-file): New function.
9276 (find-file-hook): Use it.
9277
9278 * vc/pcvs-info.el (cvs-fileinfo-pp): Don't use non-existent faces.
9279
9280 * vc/log-edit.el (log-edit-font-lock-keywords): Ignore case to
9281 chose face.
9282 (log-edit-empty-buffer-p): Don't require a space after a header.
9283
9284 * vc/ediff-util.el (ediff-diff-at-point): Don't assume point-min==1.
9285
9286 * tutorial.el (help-with-tutorial): Use minibuffer-with-setup-hook.
9287
9288 * textmodes/text-mode.el (paragraph-indent-minor-mode): Make it
9289 a proper minor-mode.
9290
9291 * textmodes/tex-mode.el (tex-mode-map): Don't bind paren keys.
9292
9293 2012-09-29 Glenn Morris <rgm@gnu.org>
9294
9295 * winner.el (winner-mode): Remove variable (let define-minor-mode
9296 handle it).
9297 (winner-dont-bind-my-keys, winner-boring-buffers, winner-mode-hook):
9298 Doc fixes.
9299 (winner-mode-leave-hook): Rename to winner-mode-off-hook.
9300 (winner-mode): Use define-minor-mode.
9301
9302 * vc/vc-sccs.el (vc-sccs-registered): Use the progn trick to get
9303 the full definition in loaddefs, rather than duplicating it.
9304
9305 * help-macro.el (three-step-help): No need to autoload defcustom.
9306
9307 * progmodes/inf-lisp.el (inferior-lisp-filter-regexp)
9308 (inferior-lisp-program, inferior-lisp-load-command)
9309 (inferior-lisp-prompt, inferior-lisp-mode-hook):
9310 No need to autoload defcustoms.
9311
9312 * hippie-exp.el (hippie-expand-try-functions-list)
9313 (hippie-expand-verbose, hippie-expand-dabbrev-skip-space)
9314 (hippie-expand-dabbrev-as-symbol, hippie-expand-no-restriction)
9315 (hippie-expand-max-buffers, hippie-expand-ignore-buffers)
9316 (hippie-expand-only-buffers): No need to autoload defcustoms.
9317 * progmodes/vhdl-mode.el (vhdl-line-expand):
9318 Explicitly load hippie-exp, so it does not get autoloaded
9319 while hippie-expand-try-functions-list is let-bound.
9320
9321 2012-09-28 Glenn Morris <rgm@gnu.org>
9322
9323 * emacs-lisp/cl.el (flet): Fix case of obsolescence message.
9324
9325 * emacs-lisp/bytecomp.el (byte-compile-cl-file-p):
9326 Only "cl.el" counts as cl these days.
9327
9328 2012-09-28 Juri Linkov <juri@jurta.org>
9329
9330 Display archive errors in the echo area instead of inserting
9331 to the file buffer.
9332
9333 * arc-mode.el (archive-extract-by-stdout): Change arg STDERR-FILE
9334 to STDERR-TEST that can be a regexp matching a successful output.
9335 Create a temporary file and redirect stderr to it. Search for
9336 STDERR-TEST in the stderr output and display it in the echo area
9337 if no match is found.
9338 (archive-extract-by-file): New function like
9339 `archive-extract-by-stdout' but extracting archives to files
9340 and looking for successful matches in stdout. Function body is
9341 mostly copied from `archive-rar-extract'.
9342 (archive-rar-extract): Use `archive-extract-by-file'.
9343 (archive-7z-extract): Use `archive-extract-by-stdout'. (Bug#10347)
9344
9345 2012-09-28 Leo Liu <sdl.web@gmail.com>
9346
9347 * pcomplete.el (pcomplete-show-completions):
9348 Use minibuffer-message to make pcomplete usable in minibuffer.
9349
9350 * ido.el (ido-set-matches-1): Fix 2012-09-11 change.
9351
9352 2012-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
9353
9354 * type-break.el: Use lexical-binding.
9355 (type-break-mode): Use define-minor-mode.
9356
9357 * emacs-lisp/pcase.el (pcase--mark-used): New.
9358 (pcase--u1): Use it (bug#12512).
9359
9360 * custom.el (load-theme): Set buffer-file-name so the load is recorded
9361 in load-history with the right file name.
9362
9363 2012-09-28 Tassilo Horn <tsdh@gnu.org>
9364
9365 * doc-view.el (doc-view-current-cache-doc-pdf): New function.
9366 (doc-view-doc->txt, doc-view-convert-current-doc): Use it.
9367 (doc-view-get-bounding-box): Make bounding box slicing work for
9368 ODF and DVI documents.
9369
9370 2012-09-28 Glenn Morris <rgm@gnu.org>
9371
9372 * type-break.el (type-break-mode, type-break-interval)
9373 (type-break-good-rest-interval, type-break-keystroke-threshold):
9374 No need to autoload.
9375 (type-break-good-rest-interval, type-break-keystroke-threshold):
9376 Add :set-after.
9377
9378 2012-09-28 Chong Yidong <cyd@gnu.org>
9379
9380 * progmodes/verilog-mode.el (verilog-auto-inst-interfaced-ports):
9381 Add :version tag.
9382
9383 2012-09-27 Stefan Monnier <monnier@iro.umontreal.ca>
9384
9385 * json.el (json-encode-char): Codes 127-160 aren't "ASCII printable".
9386
9387 2012-09-27 Glenn Morris <rgm@gnu.org>
9388
9389 * faces.el (x-display-name): Declare (for without-x builds).
9390
9391 * linum.el (linum-format): Don't autoload it. Improve :type.
9392
9393 * progmodes/tcl.el: Don't require outline when compiling.
9394 (outline-regexp, outline-level): Declare.
9395 * textmodes/sgml-mode.el: Don't require outline when compiling.
9396 (outline-regexp, outline-heading-end-regexp, outline-level): Declare.
9397
9398 * term.el (term-ansi-reset):
9399 Try setting term-ansi-face-already-done to nil. (Bug#11785)
9400
9401 * vc/vc.el (vc-next-action): Only gripe about committing read-only
9402 files for RCS and SCCS. (Bug#9781)
9403
9404 2012-09-27 Chong Yidong <cyd@gnu.org>
9405
9406 * progmodes/verilog-mode.el (verilog-mode-release-emacs): Fix last
9407 change; value should be t.
9408
9409 2012-09-27 Stefan Monnier <monnier@iro.umontreal.ca>
9410
9411 * image-mode.el: Use lexical-binding.
9412 (image-mode-winprops): Use t to stand for the window of
9413 a buffer that's not displayed.
9414 * doc-view.el (doc-view-new-window-function): Handle the new
9415 t in winprops.
9416 (doc-view-enlarge): Make it a real nop if the size is not changed.
9417 (doc-view-display): Handle the case where the buffer is not (yet?)
9418 displayed in any window.
9419 (doc-view-saved-settings): New var.
9420 (doc-view-mode): Use it.
9421 (doc-view-fallback-mode): Set it.
9422
9423 * minibuf-eldef.el: Make it possible to replace (default ...) with [...].
9424 Set lexical-binding.
9425 (minibuffer-eldef-shorten-default): New var.
9426 (minibuffer-default-in-prompt-regexps): Use it for new default.
9427 (minibuf-eldef-setup-minibuffer): Add replacement functionality.
9428
9429 2012-09-26 Juanma Barranquero <lekktu@gmail.com>
9430
9431 * international/uni-bidi.el:
9432 * international/uni-category.el:
9433 * international/uni-name.el:
9434 * international/uni-numeric.el: Regenerate.
9435
9436 2012-09-26 Tomohiro Matsuyama <tomo@cx4a.org>
9437 Stefan Monnier <monnier@iro.umontreal.ca>
9438
9439 * profiler.el: New file.
9440
9441 2012-09-26 Stefan Monnier <monnier@iro.umontreal.ca>
9442
9443 * emacs-lisp/testcover.el (testcover-after): Add gv-expander.
9444 (testcover-reinstrument): Simplify with CSE.
9445
9446 2012-09-26 Juanma Barranquero <lekktu@gmail.com>
9447
9448 * window.el (temp-buffer-window-setup): Fix typo in docstring.
9449
9450 2012-09-25 Wilson Snyder <wsnyder@wsnyder.org>
9451
9452 * verilog-mode.el (verilog-auto-ascii-enum, verilog-auto-inout)
9453 (verilog-auto-input, verilog-auto-insert-lisp)
9454 (verilog-auto-output, verilog-auto-output-every, verilog-auto-reg)
9455 (verilog-auto-reg-input, verilog-auto-tieoff, verilog-auto-undef)
9456 (verilog-auto-unused, verilog-auto-wire)
9457 (verilog-forward-or-insert-line): Fix AUTOs with no trailing
9458 newline. Reported by Andrew Jones.
9459 (verilog-auto-inst) Support expanding $clog2 in AUTOINST.
9460 Reported by Brad Dobbie.
9461 (verilog-batch-delete-trailing-whitespace):
9462 Create verilog-batch-delete-trailing-whitespace.
9463 Reported by Brad Dobbie.
9464 (verilog-auto-inout-param): Support AUTOINOUTPARAM for copying
9465 parameters from another module. Reported by Dan Katz.
9466 (verilog-auto, verilog-auto-assign-modport)
9467 (verilog-auto-inout-modport): Add AUTOASSIGNMODPORT and
9468 AUTOINOUTMODPORT for UVM interface module shell generation.
9469 Reported by Brad Dobbie.
9470 (verilog-auto-inst-interfaced-ports): Make default nil, as more
9471 standard behavior.
9472 (verilog-auto): Fix AUTO parameters with parenthesis arguments.
9473 Reported by Matt Martin.
9474
9475 2012-09-25 Martin Rudalics <rudalics@gmx.at>
9476
9477 * window.el (window--resize-child-windows): When resizing child
9478 windows proportionally, process them in reverse order to
9479 preserve the "when splitting a window the new one gets the odd
9480 line" behavior.
9481 (window--resize-root-window-vertically): When resizing the
9482 minibuffer window try to affect only windows at the bottom of the
9483 frame. (Bug#12419)
9484
9485 2012-09-25 Chong Yidong <cyd@gnu.org>
9486
9487 * subr.el (declare): Doc fix.
9488
9489 * help-fns.el (help-fns--obsolete): Handle macros properly.
9490
9491 2012-09-25 Chong Yidong <cyd@gnu.org>
9492
9493 * bookmark.el (bookmark-jump-noselect): Use a declare form to mark
9494 this function obsolete.
9495
9496 * calendar/cal-x.el (calendar-two-frame-setup)
9497 (calendar-only-one-frame-setup, calendar-one-frame-setup):
9498 * calendar/calendar.el (american-calendar, european-calendar)
9499 (calendar-for-loop):
9500 * comint.el (comint-dynamic-simple-complete)
9501 (comint-dynamic-complete-as-filename, comint-unquote-filename):
9502 * desktop.el (desktop-load-default):
9503 * dired-x.el (dired-omit-here-always)
9504 (dired-hack-local-variables, dired-default-directory):
9505 * emacs-lisp/derived.el (derived-mode-class):
9506 * emacs-lisp/timer.el (timer-set-time-with-usecs):
9507 * emacs-lock.el (toggle-emacs-lock):
9508 * epa.el (epa-display-verify-result):
9509 * epg.el (epg-sign-keys, epg-start-sign-keys)
9510 (epg-passphrase-callback-function):
9511 * eshell/esh-util.el (eshell-for):
9512 * eshell/eshell.el (eshell-remove-from-window-buffer-names)
9513 (eshell-add-to-window-buffer-names):
9514 * files.el (locate-file-completion):
9515 * imenu.el (imenu-example--create-c-index)
9516 (imenu-example--create-lisp-index)
9517 (imenu-example--lisp-extract-index-name)
9518 (imenu-example--name-and-position):
9519 * international/mule-cmds.el (princ-list):
9520 * international/mule-diag.el (decode-codepage-char):
9521 * international/mule-util.el (detect-coding-with-priority):
9522 * iswitchb.el (iswitchb-read-buffer):
9523 * mail/mailalias.el (mail-complete):
9524 * mail/sendmail.el (mail-sent-via):
9525 * mouse.el (mouse-popup-menubar-stuff, mouse-popup-menubar)
9526 (mouse-major-mode-menu):
9527 * password-cache.el (password-read-and-add):
9528 * pcomplete.el (pcomplete-parse-comint-arguments):
9529 * progmodes/sh-script.el (sh-maybe-here-document):
9530 * replace.el (query-replace-regexp-eval):
9531 * savehist.el (savehist-load):
9532 * simple.el (choose-completion-delete-max-match):
9533 * term.el (term-dynamic-simple-complete):
9534 * vc/ediff-init.el (ediff-check-version):
9535 * vc/ediff-wind.el (ediff-choose-window-setup-function-automatically):
9536 * vc/vc.el (vc-diff-switches-list):
9537 * view.el (view-return-to-alist-update): Likewise.
9538
9539 * subr.el (eval-next-after-load, makehash, insert-string)
9540 (assoc-ignore-representation, assoc-ignore-case): Use declare to
9541 mark obsolete.
9542 (mode-line-inverse-video): Variable deleted.
9543
9544 * international/mule-util.el (string-to-sequence): Remove.
9545
9546 * calendar/calendar.el (calendar-version):
9547 * calendar/icalendar.el (icalendar-extract-ical-from-buffer)
9548 (icalendar-convert-diary-to-ical):
9549 * cus-edit.el (custom-mode):
9550 * ansi-color.el (ansi-color-unfontify-region):
9551 * international/latin1-disp.el (latin1-char-displayable-p):
9552 * progmodes/cwarn.el (turn-on-cwarn-mode):
9553 * progmodes/which-func.el (which-func-update-1):
9554 Use define-obsolete-function-alias.
9555
9556 * net/newst-backend.el (newsticker-cache-filename):
9557 * net/newst-treeview.el (newsticker-groups-filename):
9558 Fix incorrect obsolescence declaration.
9559
9560 * allout.el (allout-passphrase-hint-string): Likewise.
9561 (allout-init): Use a declare form to mark obsolete.
9562
9563 * emacs-lisp/byte-run.el (make-obsolete): Doc fix; emphasize that
9564 this applies to functions.
9565
9566 * iswitchb.el (iswitchb-read-buffer): Move code of
9567 iswitchb-define-mode-map here, and delete that obsolete function.
9568
9569 * net/snmp-mode.el (snmp-font-lock-keywords-3): Don't use obsolete
9570 font-lock-reference-face.
9571
9572 2012-09-25 Glenn Morris <rgm@gnu.org>
9573
9574 * buff-menu.el (Buffer-menu-name-width, Buffer-menu-size-width):
9575 Doc fixes.
9576
9577 * eshell/em-term.el (eshell-term-name):
9578 Default to term-term-name. (Bug#12485)
9579
9580 2012-09-24 Fabián Ezequiel Gallina <fgallina@cuca>
9581
9582 * progmodes/python.el (python-shell-send-buffer): Better handling
9583 of "if __name__ == '__main__':" conditionals when sending the buffer.
9584
9585 2012-09-24 Glenn Morris <rgm@gnu.org>
9586
9587 * eshell/esh-cmd.el (eshell-find-alias-function):
9588 Tighten up file-name regexp. (Bug#12499)
9589
9590 2012-09-24 Fabián Ezequiel Gallina <fgallina@cuca>
9591
9592 Enhancements for triple-quote string syntax.
9593 * progmodes/python.el (python-quote-syntax): Remove.
9594 (python-syntax-propertize-function): New value.
9595 (python-syntax-count-quotes, python-syntax-stringify):
9596 New functions.
9597
9598 2012-09-24 Chong Yidong <cyd@gnu.org>
9599
9600 * mail/supercite.el (sc-version): Remove obsolete function.
9601 (sc-describe): Don't mark as obsolete, since it is bound.
9602 (sc-submit-bug-report): Remove.
9603
9604 * vc/log-edit.el (cvs-changelog-full-paragraphs)
9605 (cvs-commit-buffer-require-final-newline): Remove.
9606 (log-edit-require-final-newline)
9607 (log-edit-changelog-full-paragraphs): Default to t.
9608
9609 * vc/pcvs-defs.el (cvs-diff-buffer-name, cvs-diff-ignore-marks)
9610 * vc/vc-hooks.el (vc-ignore-vc-files, vc-master-templates)
9611 * vc/vc.el (vc-checkout-carefully): Likewise.
9612
9613 * vc/emerge.el (emerge-mode): Make it an obsolete alias.
9614 (emerge-version): Remove.
9615
9616 * progmodes/compile.el (compile-internal): Remove.
9617 (compilation-parse-errors-function): Fix typo.
9618
9619 * international/mule.el (set-char-table-default): Remove.
9620 (set-coding-priority, make-coding-system, generic-char-p)
9621 (charset-list, charset-bytes, charset-id): Use declare to mark
9622 functions as obsolete.
9623
9624 * vc/pcvs-defs.el (cvs-buffer-name-alist)
9625 (cvs-invert-ignore-marks): Remove references to obsolete vars.
9626 * vc/vc-hooks.el (vc-default-registered): Don't use
9627 vc-master-templates.
9628
9629 * font-lock.el (font-lock-reference-face):
9630 Use define-obsolete-variable-alias.
9631
9632 * generic-x.el (rul-generic-mode): Use font-lock-constant-face.
9633 * calendar/calendar.el (calendar-font-lock-keywords):
9634 * calendar/diary-lib.el (diary-font-lock-keywords)
9635 (diary-fancy-font-lock-keywords):
9636 * textmodes/reftex-sel.el (reftex-insert-docstruct):
9637 * textmodes/reftex-index.el (reftex-insert-index):
9638 * textmodes/reftex-cite.el (reftex-format-bib-entry):
9639 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
9640 * progmodes/ps-mode.el (ps-mode-font-lock-keywords-1):
9641 * progmodes/prolog.el (prolog-font-lock-keywords):
9642 * progmodes/idlwave.el (idlwave-idl-keywords):
9643 * progmodes/ada-mode.el (ada-font-lock-keywords):
9644 * net/snmp-mode.el (snmp-font-lock-keywords-3): Likewise.
9645
9646 2012-09-24 Glenn Morris <rgm@gnu.org>
9647
9648 * mail/emacsbug.el (report-emacs-bug): Include `lsb_release -d'.
9649
9650 2012-09-23 Fabián Ezequiel Gallina <fgallina@cuca>
9651
9652 * progmodes/python.el (python-indent-line): More consistent cursor
9653 movement behavior.
9654
9655 2012-09-23 Stefan Merten <smerten@oekonux.de>
9656
9657 * textmodes/rst.el: Fix compiler warning.
9658
9659 2012-09-23 Roland Winkler <winkler@gnu.org>
9660
9661 * textmodes/bibtex.el (bibtex-autokey-transcriptions):
9662 Transcribe also LaTeX hyphenation.
9663 (bibtex-reformat): Bug fix. Do not quote twice the elements of
9664 bibtex-reformat-previous-options.
9665
9666 2012-09-23 Roland Winkler <winkler@gnu.org>
9667
9668 * proced.el (proced-renice-command): New variable.
9669 (proced-marked-processes): New function.
9670 (proced-with-processes-buffer): New macro.
9671 (proced-send-signal): Use them.
9672 (proced-renice): New command bound to r.
9673
9674 2012-09-23 Roland Winkler <winkler@gnu.org>
9675
9676 * ibuf-ext.el (ibuffer-switch-to-saved-filter-groups): If list
9677 ibuffer-saved-filter-groups has one element, shortcut the call of
9678 completing-read. (Bug#12331)
9679
9680 2012-09-23 Chong Yidong <cyd@gnu.org>
9681
9682 * bindings.el (mode-line-toggle-read-only):
9683 * bs.el (bs-toggle-readonly):
9684 * buff-menu.el (Buffer-menu-toggle-read-only):
9685 * dired.el (dired-toggle-read-only):
9686 * ibuffer.el (ibuffer-do-toggle-read-only): Use read-only-mode.
9687
9688 2012-09-23 Chong Yidong <cyd@gnu.org>
9689
9690 * image.el (image-type-available-p): Adapt to init-image-library
9691 argument changes.
9692
9693 2012-09-22 Juri Linkov <juri@jurta.org>
9694
9695 * dired.el (dired-mode-map): Add [remap read-only-mode] for
9696 `dired-toggle-read-only'. (Bug#12462)
9697
9698 2012-09-22 Martin Rudalics <rudalics@gmx.at>
9699
9700 * subr.el (temp-output-buffer-show): New function.
9701 (with-output-to-temp-buffer): Call temp-output-buffer-show
9702 instead of internal-temp-output-buffer-show.
9703
9704 2012-09-22 Chong Yidong <cyd@gnu.org>
9705
9706 * files.el (ctl-x-map): Bind C-x C-q to read-only-mode
9707 (Bug#12462).
9708
9709 * repeat.el (repeat): Doc fix (Bug#12348).
9710
9711 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix
9712 (Bug#10909).
9713
9714 * simple.el (shell-command-on-region): Doc fix.
9715 (read-only-mode): Doc fix.
9716
9717 2012-09-22 Eli Zaretskii <eliz@gnu.org>
9718
9719 * emacs-lisp/timer.el (run-with-idle-timer)
9720 (timer-activate-when-idle): Warn against reinvoking an idle timer
9721 from within its own timer action. (Bug#12447)
9722
9723 2012-09-22 Martin Rudalics <rudalics@gmx.at>
9724
9725 * cus-start.el (window-combination-limit): Add new optional
9726 values.
9727 * window.el (temp-buffer-window-show)
9728 (window--try-to-split-window): Handle new values of
9729 window-combination-limit (Bug#1806).
9730 (split-window): Test window-combination-limit for t instead of
9731 non-nil.
9732 (display-buffer-at-bottom): New buffer display action function.
9733 * help.el (temp-buffer-resize-regexps): New option.
9734 (temp-buffer-resize-mode): Rewrite doc-string.
9735 (resize-temp-buffer-window): Obey temp-buffer-resize-regexps.
9736 Don't resize reused window. Suggested by Glenn Morris.
9737
9738 2012-09-22 Stefan Merten <smerten@oekonux.de>
9739
9740 * textmodes/rst.el: Revamp section title faces.
9741 (rst-official-version)
9742 (rst-package-emacs-version-alist): Sync with official version
9743 V1.4.0.
9744 (rst-faces-defaults, rst-set-level-default)
9745 (rst-level-face-max, rst-level-face-base-color)
9746 (rst-level-face-base-light, rst-level-face-format-light)
9747 (rst-level-face-step-light, rst-define-level-faces): Obsolete.
9748 (rst-adornment-faces-alist): Match new setup.
9749 (rst-level-1, rst-level-2, rst-level-3, rst-level-4)
9750 (rst-level-5, rst-level-6): New faces.
9751
9752 2012-09-22 Chong Yidong <cyd@gnu.org>
9753
9754 * simple.el (undo): Handle indirect buffers (Bug#8207).
9755
9756 2012-09-21 Leo Liu <sdl.web@gmail.com>
9757
9758 IDO: Disable match re-ordering for buffer switching.
9759 * ido.el (ido-buffer-disable-smart-matches): New variable.
9760 (ido-set-matches-1): Use it. (Bug#2042)
9761
9762 2012-09-21 Jose Marino <marinoj@nso.edu> (tiny change)
9763
9764 * progmodes/idlw-shell.el (idlwave-shell-complete-filename):
9765 Fix 2011-05-17 change. (Bug#12418)
9766
9767 2012-09-21 Leo Liu <sdl.web@gmail.com>
9768
9769 * subr.el (ignore-errors): Mention with-demoted-errors in doc-string.
9770
9771 2012-09-21 Glenn Morris <rgm@gnu.org>
9772
9773 * emacs-lisp/shadow.el (load-path-shadows-font-lock-keywords):
9774 Be more robust about locating simple.el.
9775
9776 2012-09-21 Glenn Morris <rgm@gnu.org>
9777
9778 * mail/emacsbug.el (report-emacs-bug): Trap load-path-shadows errors.
9779
9780 2012-09-21 Joel Bion <jpbion@westvi.com> (tiny change)
9781
9782 * pcmpl-gnu.el (pcmpl-gnu-tarfile-regexp): Add tar.xz. (Bug#12382)
9783
9784 2012-09-20 Juri Linkov <juri@jurta.org>
9785
9786 * replace.el (query-replace-read-from): Use `read-regexp' instead
9787 of `read-from-minibuffer' when `regexp-flag' is non-nil.
9788 (occur-read-primary-args): Use `read-regexp' instead of
9789 `read-string'.
9790 (multi-occur-in-matching-buffers): Use `read-regexp' instead of
9791 `read-from-minibuffer'.
9792 * isearch.el (isearch-occur): Use `read-regexp' instead of
9793 `read-string'.
9794 * dired.el (dired-read-regexp): Use `read-regexp' instead of
9795 `read-from-minibuffer'.
9796 * progmodes/grep.el (grep-read-regexp): Use `read-regexp' instead
9797 of `read-string'. (Bug#7567)
9798
9799 * replace.el (read-regexp): Rename DEFAULT-VALUE arg to DEFAULTS
9800 and allow accepting a list of strings prepended to a list of
9801 standard default values. Doc fix. (Bug#12321)
9802
9803 * replace.el (read-regexp): Add HISTORY arg. (Bug#7567)
9804
9805 * replace.el (read-regexp): Don't add ": " when PROMPT already
9806 ends with a colon and space. (Bug#12321)
9807
9808 2012-09-20 Tassilo Horn <tsdh@gnu.org>
9809
9810 * doc-view.el (doc-view-display): Better fix for the cl-assertion
9811 error.
9812
9813 2012-09-20 Stefan Merten <smerten@oekonux.de>
9814
9815 * textmodes/rst.el: Integrate support for `imenu' and `which-function'.
9816 Fixes feature request bug#11711.
9817 (rst-mode): Create `imenu-create-index-function'.
9818 (rst-get-stripped-line): Delete after refactoring.
9819 (rst-section-tree, rst-section-tree-rec)
9820 (rst-section-tree-point): Refactor and document properly.
9821 (rst-imenu-find-adornments-for-position)
9822 (rst-imenu-convert-cell, rst-imenu-create-index):
9823 New function.
9824
9825 2012-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
9826
9827 * emacs-lisp/macroexp.el (macroexp--obsolete-warning): New function.
9828 (macroexp--expand-all): Use it.
9829 (macroexp--funcall-and-return): Remove by folding it into its sole
9830 caller (macroexp--warn-and-return).
9831 * emacs-lisp/bytecomp.el (byte-compile-warn-obsolete):
9832 Use macroexp--obsolete-warning.
9833
9834 * calc/calc.el: Fix last change by removing the whole chunk, since it
9835 was only needed back when Calc was not bundled.
9836
9837 2012-09-20 Martin Rudalics <rudalics@gmx.at>
9838
9839 * emacs-lisp/debug.el (debug): Restore assignment to
9840 debugger-old-buffer removed on 2012-09-08.
9841
9842 2012-09-20 Juri Linkov <juri@jurta.org>
9843
9844 * dired-aux.el (dired-diff): Remove (require 'diff) since
9845 `diff-latest-backup-file' is now autoloaded.
9846
9847 2012-09-20 Chong Yidong <cyd@gnu.org>
9848
9849 * vc/diff.el (diff-latest-backup-file): Autoload.
9850
9851 2012-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
9852
9853 * calc/calc.el: Remove redundant autoload shape check.
9854 (sel-mode): Don't defvar.
9855 (calc-get-stack-element): Add `sel-mode' arg instead.
9856 (calc-top, calc-top-list): Pass it this additional argument.
9857 * calc/calc-store.el (calc-store-map):
9858 * calc/calc-map.el (calc-apply, calc-reduce, calc-map)
9859 (calc-map-equation, calc-outer-product, calc-inner-product):
9860 * calc/calc-aent.el (calc-alg-entry): Don't bind sel-mode.
9861
9862 * emacs-lisp/macroexp.el (macroexp--expand-all): Fix last change.
9863
9864 2012-09-19 Juri Linkov <juri@jurta.org>
9865
9866 * dired-aux.el (dired-diff): Add (require 'diff) because
9867 `diff-latest-backup-file' is not autoloaded.
9868 (dired-do-chxxx, dired-do-chmod): Set `no-error-if-not-filep' arg
9869 of `dired-get-filename' to t to not report error when there is
9870 no default file on the current line.
9871
9872 2012-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
9873
9874 * emacs-lisp/macroexp.el (macroexp--funcall-if-compiled): Rename from
9875 macroexp--eval-if-compile.
9876 (macroexp--funcall-and-return, macroexp--warn-and-return): New funs.
9877 (macroexp--expand-all): Use them (bug#12371).
9878
9879 * doc-view.el (doc-view-guess-paper-size)
9880 (doc-view-scale-bounding-box): Fix unbound `caddr'.
9881
9882 2012-09-19 Tassilo Horn <tsdh@gnu.org>
9883
9884 New feature: set optimal slice from BoundingBox information.
9885 * doc-view.el (doc-view-mode-map): Add keybinding.
9886 (doc-view-menu): Add menu entry.
9887 (doc-view-set-slice): Adapt docstring.
9888 (doc-view-get-bounding-box, doc-view-guess-paper-size)
9889 (doc-view-scale-bounding-box)
9890 (doc-view-set-slice-from-bounding-box): New functions.
9891 (doc-view-paper-sizes): New defvar.
9892
9893 2012-09-19 Glenn Morris <rgm@gnu.org>
9894
9895 * emacs-lisp/macroexp.el (byte-compile-warn-obsolete)
9896 (byte-compile-log-warning): Autoload. (Bug#12371)
9897
9898 * calendar/calendar.el (calendar-american-month-header)
9899 (calendar-european-month-header, calendar-iso-month-header)
9900 (calendar-month-header): New options.
9901 (calendar-set-date-style): Set calendar-month-header. Redraw calendar.
9902 (calendar-generate-month): Use calendar-month-header. (Bug#9510)
9903
9904 2012-09-19 Jan Djärv <jan.h.d@swipnet.se>
9905
9906 * startup.el (command-line-ns-option-alist): Add -g and --geometry.
9907
9908 2012-09-18 Juri Linkov <juri@jurta.org>
9909
9910 * dired-aux.el (dired-diff): Restore original functionality of
9911 getting the default value, but keep new feature of using the
9912 latest existing backup file (`diff-latest-backup-file').
9913
9914 2012-09-18 Juri Linkov <juri@jurta.org>
9915
9916 * dired.el (dired-mark): If the region is active in Transient Mark
9917 mode, mark all files in the active region. Doc fix.
9918 (dired-unmark, dired-flag-file-deletion, dired-unmark-backward):
9919 Doc fix. (Bug#10624)
9920
9921 2012-09-18 Juri Linkov <juri@jurta.org>
9922
9923 * dired-aux.el (dired-do-chxxx, dired-do-chmod): Default file
9924 attributes for M-n are pulled from the file at point.
9925 (dired-do-chgrp, dired-do-chown, dired-do-touch): Doc fix.
9926 Suggested by Drew Adams. (Bug#10624)
9927
9928 2012-09-18 Dmitry Gutov <dgutov@yandex.ru>
9929
9930 * progmodes/ruby-mode.el (ruby-brace-to-do-end): Don't add extra
9931 whitespace after "end".
9932 (ruby-do-end-to-brace): Collapse block to one line if it fits
9933 within fill-column.
9934
9935 2012-09-18 Martin Rudalics <rudalics@gmx.at>
9936
9937 * emacs-lisp/debug.el (debugger-bury-or-kill): Fix customization
9938 value.
9939 (debug): Don't remove debugger window when debugger is expected
9940 to be back.
9941
9942 2012-09-18 Chong Yidong <cyd@gnu.org>
9943
9944 * custom.el (defface): Doc fix.
9945
9946 * cus-edit.el (custom-unlispify-remove-prefixes): Add warning.
9947
9948 2012-09-18 Martin Blais <blais@furius.ca> (tiny change)
9949
9950 * progmodes/compile.el (compilation-start): Use compilation-always-kill
9951 to initialize query-on-exit; then test that instead (bug#12288).
9952
9953 2012-09-17 Stefan Merten <smerten@oekonux.de>
9954
9955 * textmodes/rst.el: Add support for `testcover'.
9956 (rst-defcustom-testcover, rst-testcover-add-compose)
9957 (rst-testcover-add-1value): New functions.
9958 (rst-portable-mark-active-p): Replace by `use-region-p'.
9959 (rst-update-section, rst-classify-adornment)
9960 (rst-find-title-line): Mark `1value' forms.
9961 (rst-classify-adornment): Remove superfluous form.
9962 (rst-update-section, rst-get-adornments-around)
9963 (rst-adornment-complete-p, rst-get-next-adornment)
9964 (rst-adjust, rst-promote-region)
9965 (rst-display-adornments-hierarchy, rst-straighten-adornments)
9966 (rst-find-pfx-in-region, rst-section-tree-rec)
9967 (rst-section-tree-point, rst-toc-insert, rst-toc-insert-node)
9968 (rst-toc-node, rst-toc, rst-forward-section)
9969 (rst-iterate-leftmost-paragraphs)
9970 (rst-iterate-leftmost-paragraphs-2, rst-enumerate-region)
9971 (rst-bullet-list-region)
9972 (rst-convert-bullets-to-enumeration, rst-font-lock-keywords)
9973 (rst-compile-find-conf, rst-compile)
9974 (rst-repeat-last-character): Fix style.
9975
9976 2012-09-17 Chong Yidong <cyd@gnu.org>
9977
9978 * comint.el (comint--complete-file-name-data): Don't add a space
9979 if the status is `sole'; that adds a gratuitous space in the
9980 completion-cycling case (Bug#12092).
9981
9982 * pcomplete.el (pcomplete-completions-at-point): Likewise.
9983
9984 2012-09-17 Richard Stallman <rms@gnu.org>
9985
9986 * mail/rmailmm.el (rmail-mime-toggle-raw): Do rmail-mime-insert
9987 only in the mime-shown mode, not in raw mode.
9988 (rmail-mime): Toggle off mime by displaying the message without
9989 mime processing. (Bug#12305)
9990
9991 * mail/rmail.el (rmail-retry-failure):
9992 Turn off mime processing first. (Bug#12037)
9993
9994 * epa-mail.el (epa-mail-encrypt): Fix bug when a name has no key.
9995
9996 2012-09-17 Chong Yidong <cyd@gnu.org>
9997
9998 * shell.el (shell-file-name-chars, shell-file-name-quote-list)
9999 (shell-dynamic-complete-functions): Convert to defcustom.
10000 (shell-prompt-pattern, shell-completion-fignore): Doc fix.
10001
10002 * bookmark.el (bookmark-bmenu-toggle-filenames): Doc fixes.
10003 * comint.el (comint-prompt-read-only):
10004 * custom.el (defcustom):
10005 * hi-lock.el (hi-lock-mode):
10006 * ibuffer.el (ibuffer-formats):
10007 * ielm.el (ielm-prompt-read-only):
10008 * novice.el (disable-command):
10009 * saveplace.el (toggle-save-place):
10010 * speedbar.el (speedbar-supported-extension-expressions):
10011 * startup.el (auto-save-list-file-prefix, init-file-user)
10012 (after-init-hook, inhibit-startup-echo-area-message):
10013 * strokes.el (strokes-help):
10014 * time-stamp.el (time-stamp):
10015 * calendar/calendar.el (calendar, diary-file):
10016 * calendar/diary-lib.el (diary-mail-entries, diary)
10017 (diary-list-entries-hook):
10018 * calendar/holidays.el (holidays, calendar-holidays):
10019 * calendar/lunar.el (lunar-phases):
10020 * calendar/solar.el (sunrise-sunset):
10021 * emulation/edt.el (edt-load-keys):
10022 * emulation/viper.el (viper-mode):
10023 * eshell/em-alias.el (eshell-command-aliases-list):
10024 * eshell/esh-util.el (eshell-convert-numeric-arguments):
10025 * international/ogonek.el (ogonek-information):
10026 * net/tramp-cmds.el (tramp-bug):
10027 * net/quickurl.el (quickurl-reread-hook-postfix):
10028 * play/decipher.el (decipher-font-lock-keywords):
10029 * progmodes/cc-styles.el (c-set-style):
10030 * progmodes/idlw-shell.el (idlwave-shell-prompt-pattern):
10031 * progmodes/inf-lisp.el (inferior-lisp-prompt):
10032 * progmodes/octave-mod.el (octave-mode):
10033 * progmodes/sql.el (sql-mode, sql-interactive-mode, sql-password):
10034 * progmodes/verilog-mode.el (verilog-read-defines):
10035 * textmodes/two-column.el (2C-mode): Likewise.
10036
10037 2012-09-16 Katsumi Yamaoka <yamaoka@jpl.org>
10038
10039 * mail/mailabbrev.el (mail-abbrev-expand-hook): Work for a mail aliasee
10040 that holds many addresses.
10041
10042 2012-09-16 Chong Yidong <cyd@gnu.org>
10043
10044 * align.el (align-areas): Call the indication function with
10045 positions instead of markers for arguments (Bug#12343).
10046
10047 * files.el (parse-colon-path): Use split-string (Bug#12351).
10048
10049 * window.el (special-display-popup-frame): Doc fix (Bug#8853).
10050 (display-buffer-function): Mark as obsolete.
10051
10052 * progmodes/compile.el (compilation-parse-errors): Accept list
10053 values similar to font-lock-keywords (Bug#12136).
10054 Suggested by Oleksandr Manzyuk.
10055 (compilation-error-regexp-alist): Doc fix.
10056
10057 2012-09-15 Glenn Morris <rgm@gnu.org>
10058
10059 * version.el (emacs-bzr-version-bzr): New function.
10060 (emacs-bzr-get-version): Add optional EXTERNAL argument.
10061
10062 * vc/vc-bzr.el (vc-bzr-working-revision): For lightweight local
10063 checkouts, check the parent dirstate matches the branch.
10064 Add "--tree" to "bzr revno" arguments. Don't try to shorten the
10065 empty string.
10066
10067 * version.el (emacs-bzr-version): Doc fix.
10068 (emacs-bzr-version-dirstate): New function.
10069 (emacs-bzr-get-version): For lightweight checkouts, if the parent
10070 is local try and check that it matches the branch. If not, just
10071 use dirstate information. (Bug#12441)
10072
10073 2012-09-14 Juri Linkov <juri@jurta.org>
10074
10075 * dired-aux.el (dired-do-chmod): Use `eq' to detect empty input.
10076 (Bug#12399)
10077
10078 2012-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
10079
10080 * emacs-lisp/advice.el (ad-prognify): Remove, use macroexp-progn.
10081
10082 * emacs-lisp/edebug.el: Miscellaneous cleanup.
10083 Remove obsolete byte-compiler hack that tried to silence some warnings.
10084 (edebug-submit-bug-report): Remove.
10085 (edebug-get-buffer-window, edebug-sit-for, edebug-input-pending-p):
10086 Remove aliases, use the un-prefixed name instead.
10087 (edebug-pop-to-buffer): Consider other frames.
10088 (edebug-original-read):: Make it more obvious that it's always defined.
10089 (edebug--make-form-data-entry, edebug--form-data-name)
10090 (edebug--form-data-begin, edebug--form-data-end): Rename from the
10091 single-dashed name, and implement with cl-defstruct.
10092 (edebug-set-form-data-entry): Use the standard accessors.
10093 (edebug-make-top-form-data-entry): Use push.
10094 (edebug-no-match): Drop useless `funcall'.
10095 (mapcar, mapconcat, mapatoms, apply, funcall): Don't add debug specs
10096 to functions.
10097 (defsubst, dont-compile, eval-when-compile, eval-and-compile)
10098 (delay-mode-hooks, with-temp-file, with-temp-message, ad-dolist)
10099 (with-syntax-table, push, pop, 1value, noreturn, defadvice)
10100 (easy-menu-define, with-custom-print): Remove redundant specs.
10101 (edebug-outside-overriding-local-map)
10102 (edebug-outside-overriding-terminal-local-map): Remove, unused.
10103 (edebug--display): Bind unread-command-events directly to nil rather
10104 than binding it to unread-command-events and later setting it to nil.
10105 (edebug--display): Kill edebug-eval-buffer here...
10106 (edebug--recursive-edit): ...rather than here.
10107 Bind standard-output and standard-input.
10108 (edebug-eval): Check cl-macroexpand-all is fboundp.
10109 (edebug-temp-display-freq-count): Fix last change.
10110
10111 * emacs-lisp/easymenu.el (easy-menu-define): Add `debug' spec.
10112 * subr.el (noreturn, 1value): Add `debug' spec.
10113 * emacs-lisp/advice.el: Require cl-lib.
10114 (ad-copy-tree): Remove, use copy-tree instead.
10115 (ad-dolist): Remove use dolist or cl-dolist instead.
10116 (ad-do-return): Remove, use cl-return instead.
10117 (defadvice): Add `debug' spec.
10118
10119 2012-09-13 Juri Linkov <juri@jurta.org>
10120
10121 * dired-aux.el (dired-do-chxxx): Use `eq' to detect empty input.
10122 (Bug#12399)
10123
10124 2012-09-13 Glenn Morris <rgm@gnu.org>
10125
10126 * calc/calc.el (math-compose-expr):
10127 * calc/calc-ext.el (math-compose-expr):
10128 * progmodes/cc-defs.el (cl-macroexpand-all):
10129 * progmodes/cc-langs.el (delete-duplicates, mapcan)
10130 (cl-macroexpand-all): Update declarations.
10131
10132 * vc/vc.el: No need to require ediff.
10133 (ediff-load-version-control): Declare.
10134 (ediff-vc-internal): Fix declaration.
10135 (vc-version-ediff): Require ediff.
10136
10137 2012-09-13 Paul Eggert <eggert@cs.ucla.edu>
10138
10139 Use a more backwards-compatible timer format (Bug#12430).
10140 * emacs-lisp/timer.el (timer): PSECS is now at the end, rather than
10141 being right after USECS, as that better supports old code that
10142 inadvisedly looked directly at the timer vector.
10143
10144 2012-09-13 Kenichi Handa <handa@gnu.org>
10145
10146 * language/chinese.el ("Chinese-GB", "Chinese-BIG5")
10147 ("Chinese-CNS", "Chinese-EUC-TW"): Add chinese-gbk to
10148 `coding-priority' property of these language environment.
10149
10150 2012-09-13 Paul Eggert <eggert@cs.ucla.edu>
10151
10152 Fix glitches caused by addition of psec to timers (Bug#12430).
10153 * image.el (image-animate-timer):
10154 * time.el (display-time-world-timer):
10155 Use timer--function and timer--args rather than raw access to
10156 timer vector.
10157
10158 2012-09-13 Glenn Morris <rgm@gnu.org>
10159
10160 * emacs-lisp/bytecomp.el (byte-compile-warning-prefix):
10161 If not compiling a file, try using load-file-name.
10162
10163 2012-09-13 Stefan Monnier <monnier@iro.umontreal.ca>
10164
10165 * emacs-lisp/edebug.el (edebug-outside-unread-command-events):
10166 Fix last change.
10167 (edebug-update-eval-list): Use `push'.
10168
10169 * emacs-lisp/edebug.el: Use lexical-binding.
10170 Remove the "edebug-" prefix from non-dynamically-scoped variables.
10171 Mark unused args with underscore.
10172 (edebug-save-restriction, edebug-outside-excursion): Use `declare'.
10173 (edebug-form-data): Use defvar-local.
10174 (edebug-make-before-and-after-form, edebug-make-after-form):
10175 Use backquote.
10176 (edebug-args, edebug-value, edebug-after-index, edebug-arg-mode):
10177 Not dynamically scoped any more.
10178 (edebug--enter-trace): Add arguments `function' and `args'.
10179 Rename from edebug-enter-trace.
10180 (edebug-enter): Call it accordingly. Bind edebug-function explicitly.
10181 (edebug--update-coverage): Add `after-index' and `value' args.
10182 Rename from edebug-update-coverage.
10183 (edebug-slow-after): Call it accordingly.
10184 (edebug--recursive-edit): Add arg `arg-mode'. Rename from
10185 edebug-recursive-edit.
10186 (edebug--display): Call it accordingly. Add args `value',
10187 `offset-index', and `arg-mode'. Rename from edebug-display.
10188 (edebug-debugger, edebug): Call it accordingly.
10189 (edebug-eval-display-list): Use dolist.
10190
10191 2012-09-12 Juri Linkov <juri@jurta.org>
10192
10193 * info.el (Info-search): Don't check for isearch-mode and
10194 isearch-regexp before let-binding search-spaces-regexp to
10195 Info-search-whitespace-regexp.
10196 (Info-isearch-search): Let-bind Info-search-whitespace-regexp to
10197 search-whitespace-regexp if isearch-lax-whitespace or
10198 isearch-regexp-lax-whitespace is non-nil.
10199 (Info-mode): Don't set local variable search-whitespace-regexp.
10200 http://lists.gnu.org/archive/html/emacs-devel/2012-08/msg00811.html
10201
10202 2012-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
10203
10204 * emacs-lisp/debug.el (debugger-outer-unread-command-char, debug)
10205 (debugger-env-macro): Remove support for unread-command-char.
10206
10207 * subr.el (set-temporary-overlay-map): Minimize slightly the impact of
10208 the temporary map re-appearing on emulation-mode-map-alists.
10209
10210 * emacs-lisp/edebug.el (def-edebug-form-spec): Remove, it's been broken
10211 since 22.1.
10212
10213 * ehelp.el (with-electric-help): Accept functions in
10214 electric-help-form-to-execute.
10215 (electric-help-execute-extended, electric-help-ctrl-x-prefix): Use it.
10216 And replace unread-command-char -> unread-command-events.
10217
10218 2012-09-12 Michael Albinus <michael.albinus@gmx.de>
10219
10220 Sync with Tramp 2.2.6.
10221
10222 * net/tramp.el (tramp-accept-process-output): Don't use
10223 JUST-THIS-ONE in the XEmacs case.
10224
10225 * net/trampver.el: Update release number.
10226
10227 2012-09-12 Martin Rudalics <rudalics@gmx.at>
10228
10229 * emacs-lisp/debug.el (debugger-previous-window-height):
10230 New variable.
10231 (debug): When debugger-jumping-flag is non-nil try to restore
10232 height of debugger window. (Bug#8789)
10233
10234 2012-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
10235
10236 * emacs-lisp/edebug.el (edebug-enter): Don't mess with
10237 overriding-local-map and pre/post-command-hook here.
10238 (edebug-recursive-edit): Do it here instead (bug#12345).
10239 (edebug-outside-unread-command-char): Remove all uses of
10240 unread-command-char.
10241
10242 * emacs-lisp/debug.el (debug): Don't bind debug-on-error since
10243 inhibit-debugger is bound instead.
10244
10245 2012-09-11 Bastien Guerry <bzg@gnu.org>
10246
10247 * subr.el (set-temporary-overlay-map): Add a docstring.
10248 (Bug#12346)
10249
10250 2012-09-11 Bastien Guerry <bzg@gnu.org>
10251
10252 * minibuffer.el (completion-table-subvert): Fix docstring.
10253 (Bug#12347)
10254
10255 2012-09-11 Bastien Guerry <bzg@gnu.org>
10256
10257 * help-fns.el (describe-variable): Fix typo. (Bug#12346)
10258
10259 2012-09-10 Michael R. Mauger <mmaug@yahoo.com>
10260
10261 * progmodes/sql.el: Version 3.1
10262 (sql-db2-escape-newlines): New variable.
10263 (sql-escape-newlines-filter): Use it.
10264
10265 2012-09-10 Juanma Barranquero <lekktu@gmail.com>
10266
10267 * custom.el (custom-theme-load-confirm): Remove unneeded assignment.
10268
10269 2012-09-10 Dan Nicolaescu <dann@gnu.org>
10270
10271 * vc/diff-mode.el (diff-mode-menu):
10272 Bind diff-remove-trailing-whitespace.
10273
10274 2012-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
10275
10276 * emacs-lisp/lisp-mode.el (emacs-list-byte-code-comment-re): New var.
10277 (emacs-lisp-byte-code-comment, emacs-lisp-byte-code-syntax-propertize)
10278 (emacs-lisp-byte-code-mode): New functions.
10279 (eval-sexp-add-defvars): Don't skip defvars in column >0.
10280 (eval-defun-2): Remove bogus interactive spec.
10281 (lisp-indent-line): Remove redundant whole-exp code, now done in
10282 indent-according-to-mode.
10283 (save-match-data): Remove redundant indent data.
10284
10285 * emacs-lisp/benchmark.el (benchmark-run, benchmark-run-compiled):
10286 Use `declare'.
10287
10288 2012-09-09 Juri Linkov <juri@jurta.org>
10289
10290 * replace.el (replace-regexp-lax-whitespace): New defcustom.
10291 (replace-lax-whitespace, query-replace-regexp)
10292 (query-replace-regexp-eval, replace-regexp): Doc fix.
10293 (perform-replace, replace-highlight): Let-bind
10294 isearch-lax-whitespace to replace-lax-whitespace and
10295 isearch-regexp-lax-whitespace to replace-regexp-lax-whitespace.
10296
10297 * isearch.el (isearch-query-replace): Let-bind
10298 replace-lax-whitespace to isearch-lax-whitespace and
10299 replace-regexp-lax-whitespace to
10300 isearch-regexp-lax-whitespace. (Bug#10885)
10301
10302 2012-09-09 Stefan Monnier <monnier@iro.umontreal.ca>
10303
10304 * eshell/em-unix.el (eshell/sudo): Explicitly drop return value.
10305
10306 2012-09-09 Alan Mackenzie <acm@muc.de>
10307
10308 * progmodes/cc-engine.el (c-state-cache-init):
10309 Initialise c-state-semi-nonlit-pos-cache\(-limit\)? properly.
10310 (c-record-parse-state-state):
10311 Record c-state-semi-nonlit-pos-cache\(-limit\)?.
10312
10313 2012-09-09 Andreas Schwab <schwab@linux-m68k.org>
10314
10315 * register.el (register-separator): Rename from
10316 separator-register. All uses changed. Doc fix.
10317 (register): Fix version.
10318
10319 2012-09-09 Chong Yidong <cyd@gnu.org>
10320
10321 * replace.el (query-replace-map): Bind four new symbols for
10322 requesting window scrolling.
10323
10324 * subr.el (y-or-n-p): Handle the window-scrolling bindings in
10325 query-replace-map (Bug#8948).
10326
10327 * custom.el (custom-theme-load-confirm): Use y-or-n-p.
10328
10329 * emacs-lisp/map-ynp.el (map-y-or-n-p): Don't bind scrolling keys
10330 since they are now in query-replace-map.
10331
10332 * window.el (scroll-other-window-down): Make the arg optional.
10333
10334 2012-09-09 Chong Yidong <cyd@gnu.org>
10335
10336 * files.el (hack-local-variables-confirm): Use quit-window to kill
10337 the *Local Variables* buffer.
10338
10339 2012-09-08 Dmitry Gutov <dgutov@yandex.ru>
10340
10341 * progmodes/ruby-mode.el (ruby-toggle-block): Guess the current block,
10342 not just expect to be at its beginning. Adjust callees.
10343 Succeed when do-end block has no space before the pipe character.
10344 (ruby-brace-to-do-end): When the original block is one-liner,
10345 convert to multiline. Reindent the result.
10346
10347 2012-09-08 Jambunathan K <kjambunathan@gmail.com>
10348
10349 * register.el (register): New group.
10350 (separator-register): New user option.
10351 (increment-register): Route it to `append-to-register', if
10352 register contains text. Implication is that `C-x r +' can now be
10353 used for appending to a text register (bug#12217).
10354 (append-to-register, prepend-to-register): Add separator based on
10355 `separator-register'.
10356
10357 2012-09-08 Alan Mackenzie <acm@muc.de>
10358
10359 AWK Mode: make auto-newline work when there's "==" in the pattern.
10360 * progmodes/cc-cmds.el (c-point-syntax): Handle virtual semicolons
10361 correctly.
10362 * progmodes/cc-engine.el (c-guess-basic-syntax CASE 5A.3):
10363 Test more rigorously for "=" token.
10364
10365 2012-09-08 Dmitry Gutov <dgutov@yandex.ru>
10366
10367 * progmodes/ruby-mode.el (ruby-match-expression-expansion):
10368 Only fail when reached LIMIT.
10369
10370 2012-09-08 Chong Yidong <cyd@gnu.org>
10371
10372 * dired.el (dired-mode-map): Don't bind M-=.
10373
10374 * dired-aux.el (dired-diff): Use backup file as default.
10375
10376 2012-09-08 Drew Adams <drew.adams@oracle.com>
10377
10378 * subr.el (add-to-history): Fix delete usage (Bug#12314).
10379
10380 2012-09-08 Chong Yidong <cyd@gnu.org>
10381
10382 * subr.el (syntax-after, syntax-class): Doc fix.
10383
10384 2012-09-08 Martin Rudalics <rudalics@gmx.at>
10385
10386 * window.el (display-buffer-in-previous-window): New buffer
10387 display action function.
10388
10389 * emacs-lisp/debug.el (debugger-bury-or-kill): New option.
10390 (debugger-previous-window): New variable.
10391 (debug): Rewrite using display-buffer-in-previous-window,
10392 quit-restore-window and debugger-bury-or-kill. (Bug#8789)
10393
10394 2012-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
10395
10396 * emacs-lisp/byte-run.el (defun): Tweak message. Simplify code.
10397
10398 2012-09-07 Matt McClure <mlm@aya.yale.edu> (tiny change)
10399
10400 * progmodes/python.el (python-shell-send-string):
10401 When default-directory is remote, create temp file on remote
10402 filesystem.
10403 (python-shell-send-file): When file is remote, pass local view of
10404 file paths to remote Python interpreter. (Bug#12340)
10405
10406 2012-09-07 Chong Yidong <cyd@gnu.org>
10407
10408 * window.el (switch-to-buffer): Doc fix (Bug#12181).
10409
10410 * files.el (after-find-file): Don't fail on a read-only buffer if
10411 require-final-newline is `visit' or `visit-save' (Bug#11156).
10412
10413 * subr.el (read-char-choice): Allow quitting via ESC ESC.
10414
10415 * userlock.el (ask-user-about-supersession-threat):
10416 Use read-char-choice (Bug#12093).
10417
10418 2012-09-07 Chong Yidong <cyd@gnu.org>
10419
10420 * subr.el (buffer-narrowed-p): New function.
10421
10422 * ses.el (ses-widen):
10423 * simple.el (count-words--buffer-message):
10424 * net/browse-url.el (browse-url-of-buffer): Use it.
10425
10426 * simple.el (count-words-region): Don't signal an error if there
10427 is a non-nil prefix arg and the mark is not set.
10428
10429 * help.el (describe-key-briefly): Allow the message to be seen
10430 when invoked from the minibuffer (Bug#7014).
10431
10432 2012-09-07 Dmitry Gutov <dgutov@yandex.ru>
10433
10434 * progmodes/ruby-mode.el (ruby-end-of-defun)
10435 (ruby-beginning-of-defun): Simplify, allow indentation before
10436 block beginning and end keywords.
10437 (ruby-beginning-of-defun): Only consider 3 keywords defun beginners.
10438 (ruby-end-of-defun): Expect that the point is at the beginning of
10439 the defun.
10440
10441 2012-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
10442
10443 * emacs-lisp/cl-macs.el (cl--do-arglist): Understand _ on &key args
10444 (bug#12367).
10445 (cl--make-usage-args): Strip _ from argument names.
10446
10447 2012-09-06 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
10448
10449 * progmodes/vhdl-mode.el (vhdl-speedbar-initialize): Don't use
10450 obsolete alias speedbar-key-map.
10451 (vhdl-doc-variable, vhdl-doc-mode): Use called-interactively-p.
10452 (vhdl-index-menu-init): Don't use obsolete variable
10453 font-lock-maximum-size.
10454
10455 2012-09-06 Chong Yidong <cyd@gnu.org>
10456
10457 * frame.el (window-system-version): Mark as obsolete.
10458
10459 * speedbar.el (speedbar-update-flag, speedbar-mode): Remove uses
10460 of obsolete variable speedbar-key-map.
10461
10462 2012-09-06 Juri Linkov <juri@jurta.org>
10463
10464 * replace.el (replace-lax-whitespace): New defcustom.
10465 (query-replace, query-replace-regexp, query-replace-regexp-eval)
10466 (replace-string, replace-regexp): Mention it in docstrings.
10467 (perform-replace, replace-highlight): Let-bind
10468 isearch-lax-whitespace and isearch-regexp-lax-whitespace according
10469 to the values of replace-lax-whitespace and regexp-flag.
10470 Don't let-bind search-whitespace-regexp. (Bug#10885)
10471
10472 * isearch.el (isearch-query-replace): Let-bind
10473 replace-lax-whitespace instead of let-binding
10474 replace-search-function and replace-re-search-function.
10475 (isearch-lazy-highlight-search): Let-bind isearch-lax-whitespace
10476 and isearch-regexp-lax-whitespace to lazy-highlight variables.
10477 (isearch-toggle-symbol): Set isearch-regexp to nil
10478 in isearch-word mode (like in isearch-toggle-word).
10479
10480 2012-09-06 Juri Linkov <juri@jurta.org>
10481
10482 * replace.el (replace-search-function)
10483 (replace-re-search-function): Set default values to nil.
10484 (perform-replace): Let-bind isearch-related variables based on
10485 replace-related values, call `isearch-search-fun' and let-bind
10486 the result to `search-function'. Remove code that sets
10487 `search-function' and `search-string' separately for
10488 `delimited-flag'.
10489 (replace-highlight): Add new argument `delimited-flag' and
10490 rename other arguments to the names used in `perform-replace'.
10491 Let-bind `isearch-word' to the argument `delimited-flag'.
10492 (Bug#10885, bug#10887)
10493
10494 2012-09-07 Dmitry Gutov <dgutov@yandex.ru>
10495
10496 * progmodes/ruby-mode.el (ruby-indent-beg-re): Add pieces from
10497 ruby-beginning-of-indent, simplify, allow all keywords to have
10498 indentation before them.
10499 (ruby-beginning-of-indent): Adjust for above. Search until the
10500 found point is not inside a string or comment.
10501 (ruby-font-lock-keywords): Allow symbols to start with "@"
10502 character, give them higher priority than variables.
10503 (ruby-syntax-propertize-function)
10504 (ruby-font-lock-syntactic-keywords): Remove the "not comments"
10505 matchers. Expression expansions are not comments when inside a
10506 string, and there comment syntax status is irrelevant.
10507 (ruby-match-expression-expansion): New function. Check that
10508 expression expansion is inside a string, and it's not escaped.
10509 (ruby-font-lock-keywords): Use it.
10510
10511 2012-09-05 Martin Rudalics <rudalics@gmx.at>
10512
10513 * help.el (temp-buffer-max-height): New default value.
10514 (temp-buffer-resize-frames): New option.
10515 (resize-temp-buffer-window): Optionally resize frame.
10516
10517 * window.el (fit-frame-to-buffer-bottom-margin): New option.
10518 (fit-frame-to-buffer): New function.
10519
10520 2012-09-05 Glenn Morris <rgm@gnu.org>
10521
10522 * emulation/cua-rect.el (cua--init-rectangles):
10523 * textmodes/picture.el (picture-mode-map):
10524 * play/blackbox.el (blackbox-mode-map): Remap right-char and left-char
10525 like forward-char and backward-char. (Bug#12317)
10526
10527 2012-09-05 Leo Liu <sdl.web@gmail.com>
10528
10529 * progmodes/flymake.el (flymake-warning-re): New variable.
10530 (flymake-parse-line): Use it.
10531
10532 2012-09-05 Glenn Morris <rgm@gnu.org>
10533
10534 * calendar/holidays.el (holiday-christian-holidays):
10535 Rename an entry. (Bug#12289)
10536
10537 2012-09-05 Stefan Monnier <monnier@iro.umontreal.ca>
10538
10539 * progmodes/sh-script.el (sh-font-lock-paren): Don't burp at BOB
10540 (bug#12222).
10541
10542 2012-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
10543
10544 * loadup.el: Load macroexp. Remove hack.
10545 * emacs-lisp/macroexp.el (macroexp--eval-if-compile): New function.
10546 (macroexp--expand-all): Use it to get better warnings.
10547 (macroexp--backtrace, macroexp--trim-backtrace-frame)
10548 (internal-macroexpand-for-load): New functions.
10549 (macroexp--pending-eager-loads): New var.
10550 (emacs-startup-hook): New hack to replace one in loadup.el.
10551 * emacs-lisp/cl-macs.el (cl--compiler-macro-list*)
10552 (cl--compiler-macro-cXXr): Move to top, before they can be used.
10553 (cl-psetf): Simplify.
10554 (cl-defstruct): Add indent rule.
10555
10556 2012-09-04 Lars Ingebrigtsen <larsi@gnus.org>
10557
10558 * mail/smtpmail.el (smtpmail-send-it): Prefer the From: header
10559 over `user-mail-address' for the SMTP MAIL FROM envelope.
10560 (smtpmail-via-smtp): Ditto.
10561
10562 2012-09-04 Dmitry Gutov <dgutov@yandex.ru>
10563
10564 * progmodes/ruby-mode.el: Clean up keybindings.
10565 (ruby-mode-map): Don't bind ruby-electric-brace,
10566 ruby-beginning-of-defun, ruby-end-of-defun, ruby-mark-defun,
10567 backward-kill-word, reindent-then-newline-and-indent.
10568 (ruby-mark-defun): Remove.
10569 (ruby-electric-brace): Remove. Obsoleted by electric-indent-chars.
10570 (ruby-mode): Set local beginning-of-defun-function and
10571 end-of-defun-function values.
10572
10573 2012-09-03 Martin Rudalics <rudalics@gmx.at>
10574
10575 * window.el (temp-buffer-window-setup-hook)
10576 (temp-buffer-window-show-hook): New hooks.
10577 (temp-buffer-window-setup, temp-buffer-window-show)
10578 (with-temp-buffer-window): New functions.
10579 (fit-window-to-buffer): Remove unused optional argument OVERRIDE.
10580 (special-display-popup-frame): Make sure the window used shows BUFFER.
10581
10582 * help.el (temp-buffer-resize-mode): Fix doc-string.
10583 (resize-temp-buffer-window): New optional argument WINDOW.
10584
10585 * files.el (recover-file, save-buffers-kill-emacs):
10586 * dired.el (dired-mark-pop-up): Use with-temp-buffer-window.
10587
10588 2012-09-02 Michael Albinus <michael.albinus@gmx.de>
10589
10590 * eshell/em-unix.el (eshell/sudo): When we have an ad-hoc
10591 remote definition of `default-directory', ensure we can connect.
10592
10593 2012-09-02 Juri Linkov <juri@jurta.org>
10594
10595 Toggle whitespace matching mode with M-s SPC.
10596 http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00008.html
10597
10598 * isearch.el (search-whitespace-regexp): Doc fix.
10599 Remove cons cell customization.
10600 (isearch-mode-map): Bind "\M-s " to isearch-toggle-lax-whitespace.
10601 (isearch-lax-whitespace, isearch-regexp-lax-whitespace):
10602 New variables.
10603 (isearch-forward, isearch-forward-regexp): Doc fix.
10604 (isearch-toggle-lax-whitespace): New command.
10605 (search-forward-lax-whitespace, search-backward-lax-whitespace)
10606 (re-search-forward-lax-whitespace)
10607 (re-search-backward-lax-whitespace): New functions.
10608 (isearch-whitespace-regexp): Remove function.
10609 (isearch-query-replace): Let-bind replace-search-function and
10610 replace-re-search-function.
10611 (isearch-occur): Let-bind search-spaces-regexp according to the
10612 value of isearch-lax-whitespace and isearch-regexp-lax-whitespace.
10613 (isearch-quote-char): Check isearch-regexp-lax-whitespace in the
10614 condition for C-q SPC.
10615 (isearch-search-fun-default): Use new functions mentioned above.
10616 (isearch-search-forward, isearch-search-backward): Remove functions.
10617 (isearch-search): Don't let-bind search-spaces-regexp.
10618 (isearch-lazy-highlight-space-regexp): Remove variable.
10619 (isearch-lazy-highlight-lax-whitespace)
10620 (isearch-lazy-highlight-regexp-lax-whitespace): New variables.
10621 (isearch-lazy-highlight-new-loop): Use them.
10622 (isearch-lazy-highlight-search): Don't let-bind search-spaces-regexp.
10623
10624 2012-09-02 Chong Yidong <cyd@gnu.org>
10625
10626 * dired.el (dired-mode-map): Menu string fixes (Bug#11616).
10627
10628 2012-09-02 Glenn Morris <rgm@gnu.org>
10629
10630 * simple.el (undo): Tweak message in undo-only case. (Bug#12283)
10631
10632 2012-09-01 Glenn Morris <rgm@gnu.org>
10633
10634 * term.el: Tidy up menu definitions.
10635 (term-mode-map): Use easymenu for In/Out, Complete menus.
10636 (term-pager-break-map): Initialize in the defvar.
10637 (term-terminal-menu, term-signals-menu): Define with easymenu.
10638 (term-terminal-menu): Also show it in line-mode. (Bug#11957)
10639 (term-pager-menu): New, extracted from term-process-pager.
10640 (term-mode, term-char-mode, term-process-pager): Use easymenu-add.
10641 (term-update-mode-line): Propertize line/char and page items.
10642 (term-process-pager): Move keymap initialization elsewhere.
10643
10644 2012-09-01 Martin Rudalics <rudalics@gmx.at>
10645
10646 * window.el (switch-to-prev-buffer): Handle additional values of
10647 BURY-OR-KILL argument. Don't switch in minibuffer window.
10648 (switch-to-next-buffer): Don't switch in minibuffer window.
10649 (quit-restore-window): New function based on quit-window.
10650 Handle additional values of former KILL argument.
10651 (quit-window): Call quit-restore-window with appropriate
10652 interpretation of KILL argument.
10653 (display-buffer-below-selected): New buffer display action
10654 function.
10655
10656 2012-09-01 Stefan Monnier <monnier@iro.umontreal.ca>
10657
10658 * minibuffer.el (completion-at-point-functions): Complete docstring
10659 (bug#12254).
10660
10661 2012-09-01 Paul Eggert <eggert@cs.ucla.edu>
10662
10663 Better seed support for (random).
10664 * play/5x5.el, play/animate.el, play/cookie1.el, play/dissociate.el:
10665 * play/doctor.el, play/dunnet.el, play/gomoku.el, play/landmark.el:
10666 * play/mpuz.el, play/tetris.el, play/zone.el:
10667 * calc/calc-comb.el (math-init-random-base):
10668 * play/blackbox.el (bb-init-board):
10669 * play/life.el (life):
10670 * server.el (server-use-tcp):
10671 * type-break.el (type-break):
10672 Remove unnecessary call to (random t).
10673 * net/sasl.el (sasl-unique-id-function):
10674 Change (random t) to (random), now that the latter is more random.
10675 * play/life.el (life-initialized): Remove no-longer-needed var.
10676
10677 2012-08-31 Alp Aker <alp.tekin.aker@gmail.com>
10678
10679 * window.el (switch-to-prev-buffer, switch-to-next-buffer):
10680 Consider frame's buffer predicate when choosing the buffer.
10681 (Bug#12081)
10682
10683 2012-08-30 Richard Stallman <rms@gnu.org>
10684
10685 * simple.el (special-mode-map): Delete binding for `z'.
10686
10687 2012-08-30 Andreas Schwab <schwab@linux-m68k.org>
10688
10689 * progmodes/compile.el (compilation-always-kill): Doc fix.
10690
10691 2012-08-30 Chong Yidong <cyd@gnu.org>
10692
10693 * window.el (display-buffer-reuse-frames): Make the obsolescence
10694 message more informative.
10695
10696 2012-08-30 Glenn Morris <rgm@gnu.org>
10697
10698 * paren.el (show-paren-delay):
10699 Add a :set function. Doc fix. (Bug#12297)
10700
10701 2012-08-29 Martin Blais <blais@furius.ca> (tiny change)
10702
10703 * progmodes/compile.el (compilation-always-kill): New var.
10704 (compilation-start): Use it.
10705
10706 2012-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
10707
10708 * simple.el (read-only-mode): Move from files.el for bootstrapping.
10709 * files.el (read-only-mode): Move to simple.el.
10710
10711 * files.el (read-only-mode): New minor mode.
10712 (toggle-read-only): Use it and mark obsolete.
10713 (find-file--read-only):
10714 * vc/vc.el (vc-next-action, vc-checkout):
10715 * vc/vc-cvs.el (vc-cvs-checkout):
10716 * obsolete/vc-mcvs.el (vc-mcvs-update):
10717 * ffap.el (ffap--toggle-read-only): Update callers.
10718
10719 2012-08-29 Michael Albinus <michael.albinus@gmx.de>
10720
10721 * eshell/esh-ext.el (eshell-external-command): Do not examine
10722 remote shell scripts.
10723 See <https://bugs.launchpad.net/ubuntu/+source/emacs23/+bug/1035790>.
10724
10725 * net/tramp-sh.el (tramp-remote-path): Add "/sbin" and
10726 "/usr/local/sbin".
10727
10728 2012-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
10729
10730 * emacs-lisp/cl-lib.el (buffer-string): Fix setter macro (bug#12293).
10731
10732 2012-08-28 Leo Liu <sdl.web@gmail.com>
10733
10734 * progmodes/sh-script.el (sh-dynamic-complete-functions): Adapt to
10735 completion-at-point. (Bug#12220)
10736
10737 * skeleton.el (skeleton-untabify): Change to nil (bug#12223).
10738
10739 * progmodes/sh-script.el (sh-indent-comment): Change to t (bug#12267).
10740
10741 2012-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
10742
10743 * files.el (safe-local-eval-forms): Fix before-save-hook entry to
10744 be buffer-local; add delete-trailing-whitespace (bug#12259).
10745
10746 2012-08-28 Jeremy Moore <jmoore@ieee.org> (tiny change)
10747
10748 * progmodes/hideif.el (hif-compress-define-list):
10749 Fix typo. (Bug#11951)
10750
10751 2012-08-28 Dan Nicolaescu <dann@gnu.org>
10752
10753 * progmodes/hideshow.el (hs-block-end-regexp): Restore lost
10754 buffer local setting.
10755
10756 * net/rcirc.el (rcirc-split-message): Fix for buffer-local
10757 rcirc-encode-coding-system.
10758
10759 2012-08-28 Leo Liu <sdl.web@gmail.com>
10760
10761 * net/rcirc.el (rcirc-split-message): New function.
10762 (rcirc-send-message): Use it. (Bug#12051)
10763
10764 2012-08-28 Juri Linkov <juri@jurta.org>
10765
10766 * info.el (Info-fontify-node): Hide empty lines at the end of
10767 the node. (Bug#12272)
10768
10769 2012-08-27 Drew Adams <drew.adams@oracle.com>
10770
10771 * dired.el (dired-pop-to-buffer): Make window start at beginning
10772 of buffer (Bug#12281).
10773
10774 2012-08-26 Chong Yidong <cyd@gnu.org>
10775
10776 * window.el (special-display-regexps, special-display-frame-alist)
10777 (special-display-buffer-names, special-display-function)
10778 (display-buffer-reuse-frames): Mark as obsolete.
10779
10780 * progmodes/compile.el: Don't use display-buffer-reuse-frames.
10781
10782 * help.el (help-print-return-message): Don't treat
10783 display-buffer-reuse-frames specially.
10784
10785 2012-08-26 Chong Yidong <cyd@gnu.org>
10786
10787 * progmodes/gdb-mi.el (gdb-display-buffer-other-frame-action):
10788 New variable, replacing gdb-frame-parameters.
10789 (gdb-frame-io-buffer, gdb-frame-breakpoints-buffer)
10790 (gdb-frame-threads-buffer, gdb-frame-memory-buffer)
10791 (gdb-frame-disassembly-buffer, gdb-frame-stack-buffer)
10792 (gdb-frame-locals-buffer, gdb-frame-registers-buffer): Use it.
10793 (def-gdb-frame-for-buffer): Macro deleted. It is easier to define
10794 the functions directly with gdb-display-buffer-other-frame-action.
10795 (gdb-display-breakpoints-buffer, gdb-display-threads-buffer)
10796 (gdb-display-memory-buffer, gdb-display-disassembly-buffer)
10797 (gdb-display-stack-buffer, gdb-display-locals-buffer)
10798 (gdb-display-registers-buffer): Define directly.
10799 (def-gdb-display-buffer): Macro deleted.
10800 (gdb-display-buffer): Remove second and third args, callers don't
10801 use them. Defer to the default display-buffer behavior, apart
10802 from making windows dedicated.
10803 (gdb-setup-windows): Don't call display-buffer unnecessarily.
10804
10805 * progmodes/gud.el (gud-display-line): Just use display-buffer.
10806
10807 * window.el (display-buffer-pop-up-frame): Handle a
10808 pop-up-frame-parameters alist entry.
10809 (display-buffer): Document it.
10810
10811 2012-08-26 Chong Yidong <cyd@gnu.org>
10812
10813 * isearch.el (search-whitespace-regexp): Make string and nil
10814 values apply to both ordinary and regexp search. Allow a cons
10815 cell value to distinguish between the two.
10816 (isearch-whitespace-regexp, isearch-search-forward)
10817 (isearch-search-backward): New functions.
10818 (isearch-occur, isearch-search-fun-default, isearch-search)
10819 (isearch-lazy-highlight-new-loop): Use them.
10820 (isearch-forward, isearch-forward-regexp): Doc fix.
10821
10822 2012-08-26 Chong Yidong <cyd@gnu.org>
10823
10824 * faces.el (help-argument-name): Always inherit from italic
10825 (Bug#12213).
10826
10827 2012-08-25 Martin Rudalics <rudalics@gmx.at>
10828
10829 * window.el (window--even-window-heights): Even heights when
10830 WINDOW and the selected window form a vertical combination.
10831 (display-buffer-use-some-window): Provide that window used gets
10832 sized back by quit-window. (Bug#11880) and (Bug#12091)
10833
10834 2012-08-24 Paul Eggert <eggert@cs.ucla.edu>
10835
10836 Fix file time stamp problem with bzr and CVS (Bug#12001).
10837 * vc/vc-cvs.el (vc-cvs-parse-entry): Ignore subsecond information
10838 in the file's time stamp, since the version control system loses
10839 that information.
10840
10841 2012-08-22 Juri Linkov <juri@jurta.org>
10842
10843 * info.el (Info-fontify-node): Hide the suffix of the
10844 Info file name in the header line. (Bug#12187)
10845
10846 2012-08-22 Glenn Morris <rgm@gnu.org>
10847
10848 * calendar/cal-tex.el (cal-tex-weekly-common):
10849 Restore leading blank page.
10850
10851 2012-08-22 Le Wang <l26wang@gmail.com>
10852
10853 * misc.el (forward-to-word, backward-to-word): Activate or extend
10854 the region under `shift-select-mode'. (Bug#12231)
10855
10856 2012-08-22 Bastien Guerry <bzg@gnu.org>
10857
10858 * progmodes/executable.el (executable-prefix): Set to "#!" instead
10859 of "#! ". http://www.in-ulm.de/~mascheck/various/shebang/#details
10860 gives details on why the space is never needed.
10861
10862 2012-08-22 Martin Rudalics <rudalics@gmx.at>
10863
10864 * window.el (walk-window-tree, window-with-parameter):
10865 New optional argument MINIBUF to control whether these functions
10866 should run on the minibuffer window.
10867 (window-at-side-list): Don't operate on minibuffer window.
10868 (window-in-direction): Simplify and rewrite doc-string.
10869 (window--size-ignore): Rename to window--size-ignore-p.
10870 Update callers.
10871 (display-buffer-in-atom-window, window--major-non-side-window)
10872 (window--major-side-window, display-buffer-in-major-side-window)
10873 (delete-side-window, display-buffer-in-side-window):
10874 New functions.
10875 (window--side-check, window-deletable-p, delete-window)
10876 (delete-other-windows, split-window): Handle side windows and
10877 atomic windows appropriately.
10878 (window--display-buffer): Call display-buffer-record-window also
10879 when the window buffer did not change.
10880
10881 2012-08-22 Christopher Schmidt <christopher@ch.ristopher.com>
10882
10883 * help-fns.el (help-fns--key-bindings):
10884 Abbreviate non-symbol remap targets. (Bug#12174)
10885
10886 2012-08-22 Martin Rudalics <rudalics@gmx.at>
10887
10888 * dired.el (dired-mark-remembered): Don't clobber point.
10889 (Bug#11795)
10890
10891 2012-08-22 Glenn Morris <rgm@gnu.org>
10892
10893 * progmodes/bug-reference.el (bug-reference): New custom group.
10894 (bug-reference-bug-regexp): Make it a defcustom.
10895
10896 2012-08-22 Daiki Ueno <ueno@unixuser.org>
10897
10898 * progmodes/js.el (js-indent-level, js-expr-indent-offset)
10899 (js-paren-indent-offset, js-square-indent-offset)
10900 (js-curly-indent-offset): Add :safe (Bug#12257).
10901
10902 2012-08-22 Edward O'Connor <hober0@gmail.com>
10903
10904 * json.el (json-key-format): Add error properties.
10905 (json-encode-key): New function.
10906 (json-encode-hash-table, json-encode-alist, json-encode-plist):
10907 Use json-encode-key.
10908
10909 2012-08-22 Glenn Morris <rgm@gnu.org>
10910
10911 * calendar/cal-tex.el (cal-tex-longday): New function, replacing...
10912 (cal-tex-leftday, cal-tex-rightday): Remove functions.
10913 (cal-tex-weekly-common, cal-tex-cursor-filofax-2week):
10914 Update for above change.
10915
10916 2012-08-21 Andreas Schwab <schwab@linux-m68k.org>
10917
10918 * cus-face.el (custom-face-attributes): Fix customize type for the
10919 :underline attribute. (Bug#11805)
10920
10921 2012-08-21 Martin Rudalics <rudalics@gmx.at>
10922
10923 * window.el (window-point-1, set-window-point-1): Remove.
10924 (window-in-direction, record-window-buffer)
10925 (set-window-buffer-start-and-point, split-window-below)
10926 (window--state-get-1, display-buffer-record-window):
10927 Replace calls to window-point-1 and set-window-point-1 by calls to
10928 window-point and set-window-point respectively.
10929
10930 2012-08-21 Glenn Morris <rgm@gnu.org>
10931
10932 * calendar/cal-tex.el (cal-tex-weekly-common): New function.
10933 (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-week):
10934 Use it.
10935
10936 * calendar/cal-tex.el (cal-tex-rightday): Add optional funcname arg.
10937 (cal-tex-shortday): New function.
10938 (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-week)
10939 (cal-tex-cursor-filofax-daily): Use the above.
10940
10941 * calendar/cal-tex.el (cal-tex-leftday, cal-tex-rightday):
10942 New functions.
10943 (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-2week)
10944 (cal-tex-cursor-filofax-week): Use them.
10945
10946 * calendar/cal-tex.el (cal-tex-lefthead, cal-tex-righthead):
10947 New constants.
10948 (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-2week)
10949 (cal-tex-cursor-filofax-week, cal-tex-cursor-filofax-daily): Use them.
10950
10951 * calendar/cal-tex.el (cal-tex-preamble): Generate new buffers.
10952 (cal-tex-end-document): Don't rely on buffer name.
10953
10954 * calendar/cal-tex.el (cal-tex-cursor-filofax-year):
10955 Use cal-tex-vspace.
10956 (cal-tex-vspace, cal-tex-hspace, cal-tex-em, cal-tex-bf)
10957 (cal-tex-Huge-bf, cal-tex-large-bf): Use cal-tex-cmd.
10958 (cal-tex-scriptsize, cal-tex-huge, cal-tex-Huge, cal-tex-large):
10959 Use cal-tex-arg.
10960
10961 * calendar/cal-tex.el (cal-tex-cursor-filofax-year)
10962 (cal-tex-cursor-week, cal-tex-cursor-week2)
10963 (cal-tex-cursor-week-iso, cal-tex-cursor-week-at-a-glance)
10964 (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
10965 (cal-tex-cursor-filofax-daily, cal-tex-cursor-day)
10966 (cal-tex-insert-preamble, cal-tex-b-document)
10967 (cal-tex-e-document, cal-tex-b-center, cal-tex-e-center):
10968 Improve cal-tex-cmd usage.
10969
10970 * calendar/cal-tex.el (cal-tex-filofax-paper): New function.
10971 (cal-tex-cursor-filofax-year, cal-tex-cursor-filofax-2week)
10972 (cal-tex-cursor-filofax-week, cal-tex-cursor-filofax-daily): Use it.
10973 (cal-tex-weekly-paper): New function.
10974 (cal-tex-cursor-week, cal-tex-cursor-week2)
10975 (cal-tex-cursor-week-iso, cal-tex-cursor-week-monday)
10976 (cal-tex-cursor-day): Use it.
10977
10978 * calendar/cal-tex.el (cal-tex-cursor-week-at-a-glance)
10979 (cal-tex-cursor-filofax-week): Remove leading blank page.
10980
10981 * calendar/cal-tex.el (cal-tex-cursor-week-at-a-glance):
10982 Add autoload cookie. For now at least, don't use color, since
10983 no other cal-tex function does.
10984
10985 * calendar/cal-tex.el (cal-tex-cursor-week-iso)
10986 (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
10987 (cal-tex-cursor-filofax-daily): Correct start date for diary entries.
10988
10989 2012-08-21 Juri Linkov <juri@jurta.org>
10990
10991 * info.el (Info-file-attributes): New variable.
10992 (info-insert-file-contents): Add file attributes to
10993 `Info-file-attributes'. Clear the caches `Info-index-nodes' and
10994 `Info-toc-nodes' when previous modtime of the Info file is less
10995 than new modtime.
10996 (Info-toc-nodes, Info-index-nodes): Move definitions up to the top
10997 of info.el. (Bug#12230)
10998
10999 2012-08-20 Glenn Morris <rgm@gnu.org>
11000
11001 * calendar/diary-lib.el (diary-include-files, diary-sexp-entry):
11002 * calendar/holidays.el (calendar-holiday-list):
11003 Report errors with display-warning rather than beep'n'sleep.
11004
11005 2012-08-20 Michael Albinus <michael.albinus@gmx.de>
11006
11007 * net/tramp.el (tramp-accept-process-output): Accept only output
11008 from PROC. Otherwise, process filters and sentinels might be
11009 confused. (Bug#12145)
11010
11011 2012-08-20 Chong Yidong <cyd@gnu.org>
11012
11013 * descr-text.el (describe-text-properties-1): Use overlays-in to
11014 report on empty overlays (Bug#3322).
11015
11016 2012-08-20 Glenn Morris <rgm@gnu.org>
11017
11018 * mail/rmailout.el (rmail-output-read-file-name):
11019 Trap and report errors in rmail-output-file-alist elements.
11020
11021 * font-lock.el (font-lock-add-keywords): Doc fix (quote face names
11022 since most non-font-lock faces are not also variables).
11023
11024 2012-08-20 Edward Reingold <reingold@iit.edu>
11025
11026 * calendar/cal-tex.el (cal-tex-cursor-week-at-a-glance):
11027 New function. (Bug12160)
11028
11029 2012-08-19 Glenn Morris <rgm@gnu.org>
11030
11031 * mail/rmailout.el (rmail-output-read-file-name):
11032 Fix previous change (when the alist is nil or does not match).
11033
11034 2012-08-19 Chong Yidong <cyd@gnu.org>
11035
11036 * xml.el (xml-escape-string): Don't refer to xml-entity-alist
11037 (Bug#12228).
11038
11039 2012-08-18 Chong Yidong <cyd@gnu.org>
11040
11041 * simple.el (yank-handled-properties): New defcustom.
11042 (yank-excluded-properties): Add font-lock-face and category.
11043 (yank): Doc fix.
11044
11045 * subr.el (remove-yank-excluded-properties):
11046 Obey yank-handled-properties. The special handling of font-lock-face
11047 and category is now done this way, instead of being hard-coded.
11048 (insert-for-yank-1): Remove font-lock-face handling.
11049 (yank-handle-font-lock-face-property)
11050 (yank-handle-category-property): New function.
11051
11052 2012-08-17 Glenn Morris <rgm@gnu.org>
11053
11054 * mail/rmailout.el (rmail-output-read-file-name):
11055 Check rmail-output-file-alist against the full message body
11056 in the correct rmail buffer. (Bug#12214)
11057
11058 2012-08-17 Michael Albinus <michael.albinus@gmx.de>
11059
11060 * net/tramp-sh.el (tramp-sh-handle-start-file-process):
11061 Eliminate superfluous prompt. (Bug#12203)
11062
11063 2012-08-17 Chong Yidong <cyd@gnu.org>
11064
11065 * mouse.el (mouse-appearance-menu): If x-select-font returns a
11066 font spec, set the font directly (Bug#3228).
11067
11068 2012-08-17 Martin Rudalics <rudalics@gmx.at>
11069
11070 * window.el (delete-window): Fix last fix.
11071
11072 2012-08-16 Martin Rudalics <rudalics@gmx.at>
11073
11074 * window.el (window-valid-p): Move to window.c.
11075 (window-child, window-child-count, window-last-child)
11076 (window-normalize-window, window-combined-p)
11077 (window-combinations, window-atom-root, window-min-size)
11078 (window-sizable, window-sizable-p, window-size-fixed-p)
11079 (window-min-delta, window-max-delta, window--resizable)
11080 (window--resizable-p, window-resizable, window-total-size)
11081 (window-full-height-p, window-full-width-p, window-body-size)
11082 (window-at-side-p, adjust-window-trailing-edge, maximize-window)
11083 (minimize-window, window-deletable-p, delete-window)
11084 (delete-other-windows, set-window-buffer-start-and-point)
11085 (next-buffer, previous-buffer, split-window, balance-windows-2)
11086 (set-window-text-height, window-buffer-height)
11087 (fit-window-to-buffer, shrink-window-if-larger-than-buffer)
11088 (truncated-partial-width-window-p): Minor code adjustments.
11089 In doc-strings state whether the argument window has to denote a
11090 live, valid or any window.
11091
11092 2012-08-16 Phil Sainty <psainty@orcon.net.nz> (tiny change)
11093
11094 * progmodes/subword.el (subword-forward-function)
11095 (subword-backward-function, subword-forward-regexp)
11096 (subword-backward-regexp): New variables.
11097 (subword-forward, subword-forward-internal, subword-backward-internal):
11098 Use new variables, eg so that different "word" definitions
11099 can be easily used. (Bug#11411)
11100
11101 2012-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
11102
11103 * vc/vc-mtn.el (vc-mtn-revision-completion-table): Handle completion
11104 for composite selectors.
11105 * vc/vc.el (vc-diff-build-argument-list-internal): Don't prevent
11106 operation just because we can't find a previous revision.
11107
11108 2012-08-15 Chong Yidong <cyd@gnu.org>
11109
11110 * frame.el (set-frame-font): Accept font objects.
11111
11112 2012-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
11113
11114 * textmodes/tex-mode.el (tex-insert-quote): ~ is a space (bug#12137).
11115
11116 2012-08-15 Wolfgang Jenkner <wjenkner@inode.at>
11117
11118 * man.el (Man-overstrike-face, Man-underline-face)
11119 (Man-reverse-face): Remove variables.
11120 (Man-overstrike, Man-underline, Man-reverse): New faces.
11121 (Man-fontify-manpage): Use them instead of the variables.
11122 (Man-cleanup-manpage): Comment change.
11123 (Man-ansi-color-map): New variable.
11124 (Man-fontify-manpage): Use it.
11125 Call ansi-color-apply-on-region to replace ad hoc code (bug#12147).
11126
11127 Implement ANSI SGR parameters 22-27 (bug#12146).
11128 * ansi-color.el (ansi-colors): Doc fix.
11129 (ansi-color-context, ansi-color-context-region): Doc fix.
11130 (ansi-color--find-face): New function.
11131 (ansi-color-apply, ansi-color-apply-on-region): Use it.
11132 Rename the local variable `face' to `codes' since it is now a list of
11133 ansi codes. Doc fix.
11134 (ansi-color-get-face): Remove.
11135 (ansi-color-parse-sequence): New function, derived from
11136 ansi-color-get-face.
11137 (ansi-color-apply-sequence): Use it. Rewrite, and support ansi
11138 codes 22-27.
11139
11140 2012-08-14 Stefan Monnier <monnier@iro.umontreal.ca>
11141
11142 * subr.el (read-passwd): Allow use from a minibuffer.
11143
11144 2012-08-14 Eli Zaretskii <eliz@gnu.org>
11145
11146 * tooltip.el (tooltip-identifier-from-point): Don't treat tokens
11147 inside comments and strings as identifiers.
11148
11149 * progmodes/gud.el (gud-tooltip-print-command): Quote the
11150 expression to evaluate. This allows to evaluate expressions with
11151 embedded whitespace.
11152 (gud-tooltip-tips): Add a blank before the newline in the
11153 message-box text, for the benefit of message-box emulation on
11154 MS-Windows.
11155
11156 * progmodes/gdb-mi.el (gdb-tooltip-print): Don't ignore error
11157 messages from GDB, pop them up in a tooltip to give feedback to
11158 user.
11159 (gdb-tooltip-print-1): Quote the expression to evaluate.
11160 This allows to evaluate expressions with embedded whitespace.
11161 (gdb-inferior-io--init-proc): Don't send "-inferior-tty" command
11162 if the TTY name is nil or empty (which happens when communicating
11163 with the inferior via pipes, e.g. on MS-Windows).
11164 (gdb-internals): If GDB sends a "&\n" empty debugging message,
11165 don't send that to the GUD buffer.
11166
11167 2012-08-14 Glenn Morris <rgm@gnu.org>
11168
11169 * emacs-lisp/bytecomp.el (byte-compile-setq-default):
11170 Optimize away setq-default with no args, as for setq. (Bug#12195)
11171
11172 2012-08-14 Chong Yidong <cyd@gnu.org>
11173
11174 * minibuffer.el (read-file-name): Doc fix (Bug#10881).
11175
11176 * emacs-lisp/regexp-opt.el (regexp-opt-charset): Doc fix
11177 (Bug#12085).
11178
11179 2012-08-14 Glenn Morris <rgm@gnu.org>
11180
11181 * emacs-lisp/bytecomp.el (byte-recompile-file): Doc fix.
11182
11183 2012-08-14 Michael Albinus <michael.albinus@gmx.de>
11184
11185 * net/tramp-sh.el (tramp-open-shell): Cache the shell name.
11186 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
11187 Use cached shell name.
11188
11189 2012-08-14 Fabián Ezequiel Gallina <fgallina@cuca>
11190
11191 * progmodes/python.el (python-shell-send-string):
11192 (python-shell-send-setup-code): Do not use `format' with `message'.
11193
11194 2012-08-14 Dmitry Gutov <dgutov@yandex.ru>
11195
11196 * progmodes/ruby-mode.el: Improve percent literals (bug#6286).
11197 (ruby-percent-literal-beg-re): New constant.
11198 (ruby-syntax-general-delimiters-goto-beg): Rename to
11199 `ruby-syntax-enclosing-percent-literal', improve literal type check.
11200 (ruby-syntax-propertize-general-delimiters): Rename to
11201 `ruby-syntax-propertize-percent-literal', it's a shorter and more
11202 popular term. Adjust comments everywhere.
11203 (ruby-syntax-propertize-percent-literal): Only propertize when not
11204 inside a simple string or comment. When the literal is unclosed,
11205 leave the text after it unpropertized.
11206 (ruby-syntax-methods-before-regexp): New constant.
11207 (ruby-syntax-propertize-function): Use it to recognize regexps.
11208 Don't look at the text after regexp, just use the whitelist.
11209
11210 2012-08-14 Andreas Schwab <schwab@linux-m68k.org>
11211
11212 * emacs-lisp/bytecomp.el (byte-recompile-file): When LOAD is
11213 non-nil always load the compiled file if it exists. (Bug#12197)
11214
11215 2012-08-14 Chong Yidong <cyd@gnu.org>
11216
11217 * hi-lock.el (hi-lock-mode): Do not unilaterally enable font lock.
11218 (hi-lock-set-pattern): When deciding whether to use font lock or
11219 overlays, look at font-lock-mode instead of font-lock-fontified
11220 (Bug#12168).
11221 (hi-lock-mode, hi-lock-line-face-buffer, hi-lock-unface-buffer)
11222 (hi-lock-face-buffer, hi-lock-face-phrase-buffer): Doc fix.
11223
11224 2012-08-14 Daiki Ueno <ueno@unixuser.org>
11225
11226 * subr.el (internal--after-with-selected-window): Fix typo
11227 (Bug#12193).
11228
11229 2012-08-14 Fabián Ezequiel Gallina <fgallina@cuca>
11230
11231 Use `completion-table-dynamic' for completion functions.
11232 * progmodes/python.el
11233 (python-shell-completion--do-completion-at-point)
11234 (python-shell-completion--get-completions):
11235 Remove functions.
11236 (python-shell-completion-complete-at-point): New function.
11237 (python-completion-complete-at-point): Use it.
11238
11239 2012-08-13 Jambunathan K <kjambunathan@gmail.com>
11240
11241 * vc/vc-dir.el (vc-dir-hide-state): New command (bug#12159).
11242 (vc-dir-hide-up-to-date): Route it to `vc-dir-hide-state'.
11243
11244 2012-08-13 Stefan Monnier <monnier@iro.umontreal.ca>
11245
11246 * subr.el (function-get): Refine `autoload' arg so it can also
11247 autoload functions for gv.el (bug#12191).
11248 * emacs-lisp/edebug.el (get-edebug-spec): Adjust so it only
11249 autoloads macros.
11250
11251 * color.el (color-xyz-to-lab, color-lab-to-xyz, color-cie-de2000):
11252 Prefer pcase-let over destructuring-bind.
11253 * vc/diff-mode.el (diff-remove-trailing-whitespace): Same.
11254 Also, remove whitespace as we go, rather than after accumulating the
11255 various places.
11256
11257 * subr.el (internal--before-with-selected-window)
11258 (internal--after-with-selected-window): Fix typo seleted->selected.
11259 (with-selected-window): Adjust callers.
11260 Reported by Dmitry Gutov <dgutov@yandex.ru>.
11261
11262 2012-08-13 Bastien Guerry <bzg@gnu.org>
11263
11264 * window.el (special-display-popup-frame): Minor docstring
11265 enhancement. (Bug#12172)
11266
11267 2012-08-13 Andreas Schwab <schwab@linux-m68k.org>
11268
11269 * tar-mode.el (tar-header-data-end): Only ignore size for files of
11270 type 1-6.
11271 (tar-header-block-summarize, tar-get-descriptor): Handle pax
11272 extended headers.
11273
11274 * files.el (hack-local-variables-filter): Remove useless eval.
11275
11276 2012-08-13 Martin Rudalics <rudalics@gmx.at>
11277
11278 * subr.el (with-selected-window): Fix last change.
11279
11280 2012-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
11281
11282 * subr.el (internal--before-with-seleted-window)
11283 (internal--after-with-seleted-window): New functions.
11284 (with-selected-window): Use them, to replace dependency on
11285 tty-top-frame.
11286
11287 2012-08-12 Nobuyoshi Nakada <nobu@ruby-lang.org>
11288
11289 * progmodes/ruby-mode.el (ruby-mode-map): Remove unnecessary
11290 binding for `newline'.
11291 (ruby-move-to-block): When moving backward, stop at block opening,
11292 not indentation.
11293 * progmodes/ruby-mode.el (ruby-brace-to-do-end)
11294 (ruby-do-end-to-brace, ruby-toggle-block): New functions.
11295 * progmodes/ruby-mode.el (ruby-mode-map): Add binding for
11296 `ruby-toggle-block'.
11297
11298 2012-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
11299
11300 * ibuffer.el (ibuffer-do-toggle-read-only):
11301 * dired.el (dired-toggle-read-only):
11302 * buff-menu.el (Buffer-menu-toggle-read-only):
11303 * bindings.el (mode-line-toggle-read-only):
11304 * bs.el (bs-toggle-readonly): Call toggle-read-only interactively.
11305
11306 2012-08-12 Andreas Schwab <schwab@linux-m68k.org>
11307
11308 * descr-text.el (describe-char): Put the overlays over the
11309 "displayed as" character.
11310
11311 2012-08-12 Jay Belanger <jay.p.belanger@gmail.com>
11312
11313 * calc/calc-units.el (math-default-units-table): Give an
11314 initial value.
11315 (math-put-default-units): Add options to put composite units and
11316 unit systems in the default units table.
11317 (calc-convert-units): Send composite units to
11318 `math-put-default-units' when appropriate.
11319
11320 2012-08-11 Glenn Morris <rgm@gnu.org>
11321
11322 * emacs-lisp/copyright.el (copyright-update-directory): Logic fix.
11323
11324 * tutorial.el (help-with-tutorial):
11325 * emacs-lisp/copyright.el (copyright-update-directory):
11326 * emacs-lisp/autoload.el (autoload-find-generated-file)
11327 (autoload-find-file): Disable local eval: (for insurance).
11328
11329 * files.el (hack-local-variables-filter): If an eval: form is not
11330 known to be safe, and enable-local-variables is :safe, then ignore
11331 the form totally, as is done for non-eval forms. (Bug#12155)
11332 This is CVE-2012-3479.
11333
11334 2012-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
11335
11336 * emacs-lisp/rx.el (rx-constituents): Don't define as constant.
11337 (rx-form): Simplify.
11338
11339 2012-08-09 Dmitry Gutov <dgutov@yandex.ru>
11340
11341 * progmodes/ruby-mode.el (ruby-expr-beg, ruby-parse-partial):
11342 ?, _, and : are symbol constituents, ! is not (but kinda should be).
11343 (ruby-syntax-propertize-heredoc): Use ruby-singleton-class-p.
11344 (ruby-syntax-propertize-function): Adjust for changes in
11345 `ruby-syntax-propertize-heredoc'.
11346
11347 2012-08-09 Nobuyoshi Nakada <nobu@ruby-lang.org>
11348
11349 * progmodes/ruby-mode.el (ruby-mode-map): Remove deprecated
11350 binding (use `M-;' instead).
11351 (ruby-singleton-class-p): New function.
11352 (ruby-expr-beg, ruby-in-here-doc-p) Use it.
11353
11354 2012-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
11355
11356 * emacs-lisp/cl-macs.el (cl-loop): Improve debug spec.
11357
11358 2012-08-10 Chong Yidong <cyd@gnu.org>
11359
11360 * progmodes/python.el (python-shell-get-process-name): Don't mess
11361 with same-window-buffer-names.
11362
11363 * eshell/eshell.el (eshell-add-to-window-buffer-names)
11364 (eshell-remove-from-window-buffer-names): Make obsolete.
11365 (eshell-buffer-name, eshell-unload-hook): Don't use them.
11366 (eshell): Just use pop-to-buffer-same-window instead.
11367
11368 2012-08-10 Chong Yidong <cyd@gnu.org>
11369
11370 * bindings.el: Bind M-= back to count-words-region.
11371
11372 * simple.el (count-words-region): Accept a prefix arg for acting
11373 on the entire buffer.
11374 (count-words--buffer-message): New helper function.
11375
11376 2012-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
11377
11378 * term/x-win.el (x-menu-bar-open): Always pass last-nonmenu-event.
11379 * subr.el (eventp): `nil' is not an event, and eventp is not hot.
11380 (event-start, event-end): Use posn-at-point to return a more
11381 informative posn.
11382 (posnp): New function.
11383 * mouse.el (popup-menu-normalize-position): Use it.
11384
11385 2012-08-10 Masatake YAMATO <yamato@redhat.com>
11386
11387 * mouse.el (popup-menu-normalize-position): New function.
11388 (popup-menu): Use `popup-menu-normalize-position' to normalize
11389 the form for POSITION argument.
11390
11391 * term/x-win.el (x-menu-bar-open):
11392 Use the value returend from (posn-at-point) as position
11393 passed to `popup-menu'.
11394
11395 2012-08-09 Jay Belanger <jay.p.belanger@gmail.com>
11396
11397 * calc/calccomp.el (math-compose-expr): Add extra argument
11398 indicating that parentheses should be put around products in
11399 denominators. Give multiplication precedence over division during
11400 composition.
11401
11402 2012-08-09 Chong Yidong <cyd@gnu.org>
11403
11404 * man.el (Man-switches, Man-sed-command, Man-awk-command)
11405 (Man-mode-hook, Man-cooked-hook, Man-untabify-command-args)
11406 (Man-untabify-command, manual-program): Convert to defcustom
11407 (Bug#10429).
11408
11409 * vc/add-log.el (change-log-mode): Bind comment-start to nil.
11410
11411 * descr-text.el (describe-char): Don't insert extra newlines
11412 (Bug#10127).
11413
11414 * vc/log-view.el (log-view-diff): Use use-region-p (Bug#10133).
11415 (log-view-diff-changeset, log-view-minor-wrap): Likewise.
11416
11417 * align.el (align-region): Delete temporary markers (Bug#10047).
11418 Plus some code cleanups.
11419
11420 2012-08-09 Fabián Ezequiel Gallina <fgallina@cuca>
11421
11422 * progmodes/python.el (python-pdbtrack-tracked-buffer)
11423 (python-pdbtrack-buffers-to-kill, python-shell-internal-buffer)
11424 (python-shell-internal-last-output): Use make-local-variable
11425 instead of make-variable-buffer-local.
11426
11427 2012-08-09 Fabián Ezequiel Gallina <fgallina@cuca>
11428
11429 * progmodes/python.el: Enhancements to forward-sexp.
11430 (python-nav-forward-sexp): Rename from
11431 python-nav-forward-sexp-function.
11432 (python-nav--forward-sexp, python-nav--backward-sexp):
11433 New functions.
11434
11435 2012-08-09 Jay Belanger <jay.p.belanger@gmail.com>
11436
11437 * calc/calc-menu.el (calc-modes-menu): Add entries for matrix
11438 modes and simplification modes.
11439
11440 2012-08-09 Stefan Monnier <monnier@iro.umontreal.ca>
11441
11442 * delsel.el (delete-selection-pre-hook): Don't propagate the
11443 file-supersession signals (bug#12161).
11444
11445 2012-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
11446
11447 * emacs-lisp/cl.el (cl-map-keymap-recursively, cl-map-intervals)
11448 (cl-map-extents): Add compatibility aliases (bug#12135).
11449
11450 2012-08-08 Michael Albinus <michael.albinus@gmx.de>
11451
11452 * net/tramp-sh.el (tramp-find-file-exists-command): Protect the
11453 tests by `ignore-error'.
11454 (tramp-find-shell): Open also a new shell, when cache is already
11455 set. Reported by Carsten Bormann <cabo@tzi.org>. (Bug#12148)
11456
11457 2012-08-08 Juri Linkov <juri@jurta.org>
11458
11459 * bookmark.el: Add `defaults' property to the bookmark record.
11460 (bookmark-current-buffer): Doc fix.
11461 (bookmark-make-record): Add `defaults' property with default values
11462 to the bookmark record.
11463 (bookmark-minibuffer-read-name-map): Remove key binding "\C-u"
11464 with `bookmark-insert-current-bookmark'.
11465 (bookmark-set): Get `defaults' property from the bookmark record
11466 and use it in `read-from-minibuffer'.
11467 (bookmark-insert-current-bookmark): Remove function.
11468
11469 * info.el (Info-bookmark-make-record): Add `defaults' property
11470 with values of canonical Info node name, the current Info file
11471 name and the current Info node name. (Bug#12107)
11472
11473 2012-08-08 Juri Linkov <juri@jurta.org>
11474
11475 * files.el (basic-save-buffer): Use `buffer-name' as the default
11476 of `read-file-name' when buffer is not visiting a file (bug#12128).
11477
11478 2012-08-08 Juri Linkov <juri@jurta.org>
11479
11480 * info.el (Info-isearch-search): Doc fix.
11481 (Info-search): Change search-failed message from "initial node" to
11482 "end of node" (bug#12078).
11483 (Info-isearch-search): Change `isearch-string-state' to
11484 `isearch--state-string'.
11485
11486 2012-08-08 Glenn Morris <rgm@gnu.org>
11487
11488 * language/persian.el: Remove file.
11489 * language/misc-lang.el: Move unique part of persian.el here.
11490 * loadup.el: Remove language/persian.
11491
11492 2012-08-08 Óscar Fuentes <ofv@wanadoo.es>
11493
11494 * vc/diff-mode.el (diff-remove-trailing-whitespace): New function.
11495
11496 2012-08-08 Fabián Ezequiel Gallina <fgallina@cuca>
11497
11498 * progmodes/python.el: Fix defsubst warning.
11499 (python-syntax-context) Rename from python-info-ppss-context.
11500 (python-syntax-context-type): Rename from
11501 python-info-ppss-context-type.
11502 (python-syntax-comment-or-string-p): Rename from
11503 python-info-ppss-comment-or-string-p.
11504
11505 2012-08-08 Jay Belanger <jay.p.belanger@gmail.com>
11506
11507 * calc/calc-misc.el (calc-record-why): Don't record a message twice.
11508
11509 2012-08-07 Andreas Schwab <schwab@linux-m68k.org>
11510
11511 * emacs-lisp/lisp-mode.el (eval-defun-1): Handle standard value of
11512 a defcustom that is quoted with backquote.
11513
11514 * calc/calc-prog.el (math-do-defmath): Use backquote forms.
11515 Fix handling of interactive spec when the body uses return.
11516 (math-do-arg-check, math-define-function-body): Use backquote forms.
11517 * calc/calc-ext.el (math-defcache): Likewise.
11518 * calc/calc-rewr.el (math-rwfail, math-rweval): Likewise.
11519 * allout.el (allout-new-exposure): Likewise.
11520 * calc/calcalg2.el (math-tracing-integral): Likewise.
11521 * info.el (Info-last-menu-item): Likewise.
11522 * emulation/vip.el (vip-loop): Likewise.
11523 * textmodes/artist.el (artist-funcall): Likewise.
11524 * menu-bar.el (menu-bar-make-mm-toggle, menu-bar-make-toggle):
11525 Construct menu-item directly.
11526
11527 * progmodes/autoconf.el (font-lock-syntactic-keywords):
11528 Don't declare.
11529
11530 2012-08-07 Chong Yidong <cyd@gnu.org>
11531
11532 * simple.el (deactivate-mark): Preserve text properties when
11533 saving the primary selection (Bug#8384).
11534
11535 2012-08-07 Kevin Ryde <user42@zip.com.au>
11536
11537 * woman.el (woman0-if): Quietly treat ".if v" as false (Bug#12109).
11538 (woman-parse-numeric-value): On a bad .IP line, issue a warning
11539 and continue processing (Bug#12110).
11540
11541 2012-08-06 Stefan Monnier <monnier@iro.umontreal.ca>
11542
11543 * progmodes/cperl-mode.el (cperl-mode): Yet another fix for
11544 syntax-propertize-function (bug#10095).
11545
11546 2012-08-06 Stefan Monnier <monnier@iro.umontreal.ca>
11547
11548 * help-fns.el (help-fns--key-bindings, help-fns--signature)
11549 (help-fns--parent-mode, help-fns--obsolete): New funs, extracted from
11550 describe-function-1.
11551 (describe-function-1): Use them. Move compiler macro after sig.
11552 (help-fns--compiler-macro): Use function-get. Assume we're already in
11553 standard-output. Adjust layout to new call order.
11554
11555 * emacs-lisp/cl-macs.el (cl--sm-macroexpand): Fix handling of
11556 re-binding a symbol that has a symbol-macro (bug#12119).
11557
11558 2012-08-06 Mohsen BANAN <libre@mohsen.1.banan.byname.net>
11559
11560 * language/persian.el: New file. (Bug#11812)
11561 * loadup.el: Add language/persian.el.
11562
11563 2012-08-06 Chong Yidong <cyd@gnu.org>
11564
11565 * window.el (window--maybe-raise-frame): New function.
11566 (window--display-buffer): Split off from here.
11567 (display-buffer-reuse-window, display-buffer-pop-up-frame)
11568 (display-buffer-pop-up-window, display-buffer-use-some-window):
11569 Obey an inhibit-switch-frame action alist entry.
11570 (display-buffer): Update doc.
11571
11572 * replace.el (occur-after-change-function): Avoid losing focus by
11573 using the inhibit-switch-frame display parameter (Bug#12139).
11574
11575 2012-08-06 Fabián Ezequiel Gallina <fgallina@cuca>
11576
11577 Make internal shell process buffer names start with space.
11578 * progmodes/python.el (python-shell-make-comint): Add optional
11579 argument INTERNAL.
11580 (run-python-internal): Use it.
11581 (python-shell-internal-get-or-create-process): Check for new
11582 internal buffer names.
11583
11584 2012-08-06 Glenn Morris <rgm@gnu.org>
11585
11586 * eshell/esh-ext.el (eshell/addpath): Use dolist and mapconcat.
11587 Do less getting and setting of environment variables.
11588
11589 2012-08-05 Chong Yidong <cyd@gnu.org>
11590
11591 * proced.el (proced): Add substitution string to docstring to
11592 trigger autoloading of the proced library on C-h f (Bug#1768).
11593
11594 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
11595 Don't show defvars which have no second argument (Bug#8638).
11596
11597 * imenu.el (imenu-generic-expression): Move documentation here
11598 from imenu--generic-function.
11599 (imenu--generic-function): Refer to imenu-generic-expression.
11600
11601 2012-08-05 Vegard Øye <vegard_oye@hotmail.com> (tiny change)
11602
11603 * emulation/viper-init.el (viper-deflocalvar): Add docstring and
11604 indentation declaration.
11605 (viper-loop): Add indentation declaration (Bug#7025).
11606
11607 2012-08-05 Chong Yidong <cyd@gnu.org>
11608
11609 * help-fns.el (describe-variable): Add hyperlink for
11610 directory-local variables files. Improve buffer-local and
11611 permanent-local reporting; suggested by MON KEY (Bug#6644).
11612
11613 * help-mode.el (help-dir-local-var-def): New button type.
11614
11615 * files.el (kill-buffer-hook): Provide a defvar.
11616
11617 2012-08-05 Glenn Morris <rgm@gnu.org>
11618
11619 * eshell/esh-ext.el (eshell/addpath):
11620 Also update eshell-path-env. (Bug#12013)
11621
11622 2012-08-05 Chong Yidong <cyd@gnu.org>
11623
11624 * wdired.el (wdired-mode, wdired-change-to-wdired-mode): Doc fixes.
11625
11626 * fringe.el (fringe-styles): Add docstring.
11627 (fringe--check-mode): New function.
11628 (set-fringe-mode, set-fringe-style): Use it.
11629 (fringe-mode, set-fringe-style): Doc fixes (Bug#6480).
11630
11631 * files.el (set-auto-mode): Fix invalid setq call.
11632
11633 2012-08-04 Stefan Monnier <monnier@iro.umontreal.ca>
11634
11635 * isearch.el: Misc simplification; use defstruct.
11636 (isearch-mode-map): Dense maps now work like sparse ones.
11637 (isearch--state): New defstruct.
11638 (isearch-string-state, isearch-message-state, isearch-point-state)
11639 (isearch-success-state, isearch-forward-state)
11640 (isearch-other-end-state, isearch-word-state, isearch-error-state)
11641 (isearch-wrapped-state, isearch-barrier-state)
11642 (isearch-case-fold-search-state, isearch-pop-fun-state): Remove,
11643 replaced by defstruct's accessors.
11644 (isearch--set-state): Rename from isearch-top-state and change
11645 calling convention.
11646 (isearch-push-state): Use new isearch--get-state.
11647 (isearch-toggle-word): Disable regexp when enabling word.
11648 (isearch-message-prefix): Remove unused arg _c-q-hack.
11649 (isearch-message-suffix): Remove unused arg _ellipsis.
11650
11651 2012-08-04 Andreas Schwab <schwab@linux-m68k.org>
11652
11653 * simple.el (list-processes--refresh): For a server use :host or
11654 :local as the address.
11655 (list-processes): Doc fix.
11656
11657 2012-08-04 Michal Nazarewicz <mina86@mina86.com>
11658
11659 * lisp/mpc.el: Support password in host argument.
11660 (mpc--proc-connect): Parse and use new password element.
11661 Set mpc-proc variable instead of returning process.
11662 (mpc-proc): Adjust accordingly.
11663
11664 2012-08-03 Eli Zaretskii <eliz@gnu.org>
11665
11666 * whitespace.el (whitespace-display-mappings): Use Unicode
11667 codepoints, instead of emacs-mule codepoints. See
11668 http://lists.gnu.org/archive/html/help-gnu-emacs/2012-07/msg00366.html
11669 for the details.
11670
11671 * files.el (file-truename): Don't skip symlink-chasing part on
11672 windows-nt. Incorporate the resolution of 8+3 short aliases on
11673 Windows into the loop that recursively chases symlinks.
11674 Compare directory and its parent case-insensitively on MS-Windows and
11675 MS-DOS.
11676
11677 2012-08-03 Chong Yidong <cyd@gnu.org>
11678
11679 * menu-bar.el (menu-bar-tools-menu): Remove PCL-CVS.
11680
11681 * sort.el (sort-regexp-fields): Doc fix.
11682
11683 2012-08-03 Tassilo Horn <tsdh@gnu.org>
11684
11685 * textmodes/reftex.el (reftex-compile-variables): Make keyvals
11686 labels regex position point at the expected place.
11687
11688 2012-08-03 MON KEY <monkey@sandpframing.com>
11689
11690 * net/imap.el (imap-interactive-login, imap-authenticate)
11691 (imap-mailbox-lsub, imap-mailbox-list)
11692 (imap-mailbox-status-asynch, imap-mailbox-acl-delete)
11693 (imap-fetch, imap-message-flag-permanent-p, imap-envelope-from)
11694 (imap-parse-response): Doc fix.
11695
11696 2012-08-03 João Távora <joaotavora@gmail.com>
11697
11698 * textmodes/tex-mode.el (latex-forward-sexp): Terminate the loop
11699 if sexp scanning does not move point (Bug#5734).
11700
11701 2012-08-02 Tassilo Horn <tsdh@gnu.org>
11702
11703 * textmodes/reftex-vars.el (reftex-default-label-alist-entries):
11704 Add listings, minted, and ctable packages.
11705 (reftex-label-alist-builtin): Move listings, minted, and ctable
11706 entries before LaTeX.
11707 (reftex-label-alist): Docfix.
11708
11709 2012-08-02 Bastien Guerry <bzg@gnu.org>
11710
11711 * replace.el (occur): Fix docstring (bug#12122).
11712
11713 2012-08-02 Glenn Morris <rgm@gnu.org>
11714
11715 * emacs-lisp/authors.el (authors-renamed-files-alist): Add ms-w32.h.
11716
11717 2012-08-02 Paul Eggert <eggert@cs.ucla.edu>
11718
11719 Obsolete alias inactivate-current-input-method-function (Bug#10150).
11720 * international/mule-cmds.el: Create
11721 inactivate-current-input-method-function as an obsolete alias for
11722 deactivate-current-input-method-function. See Katsumi Yamaoka in
11723 <http://bugs.gnu.org/10150#46>.
11724
11725 2012-08-01 Jay Belanger <jay.p.belanger@gmail.com>
11726
11727 * calc/calc-mode.el (calc-set-simplify-mode): Use `cond' instead
11728 of nested `if's.
11729
11730 2012-08-01 Glenn Morris <rgm@gnu.org>
11731
11732 * progmodes/autoconf.el (autoconf-definition-regexp):
11733 Add AH_TEMPLATE, adjust submatch numbering.
11734 (autoconf-font-lock-keywords, autoconf-imenu-generic-expression)
11735 (autoconf-current-defun-function): Update for above change.
11736 (autoconf-current-defun-function): First skip to end of current word.
11737
11738 2012-08-01 Rupert Swarbrick <rswarbrick@gmail.com> (tiny change)
11739
11740 * calendar/cal-html.el (cal-html-insert-agenda-days):
11741 Fix typo. (Bug#12018)
11742
11743 2012-07-31 Fabián Ezequiel Gallina <fgallina@cuca>
11744
11745 Shell processes: enhancements to startup and CEDET compatibility.
11746 * progmodes/python.el (python-shell-send-setup-max-wait): Delete var.
11747 (python-shell-make-comint): accept-process-output at startup.
11748 (run-python-internal): Set inferior-python-mode-hook to nil.
11749 (python-shell-internal-get-or-create-process): Call sit-for.
11750 (python-preoutput-result): Add obsolete alias.
11751 (python-shell-internal-send-string): Use it.
11752 (python-shell-send-setup-code): Remove call to
11753 accept-process-output.
11754
11755 2012-07-31 Andreas Schwab <schwab@linux-m68k.org>
11756
11757 * buff-menu.el (list-buffers-noselect): Use prefix-numeric-value.
11758 (Bug#12108)
11759
11760 2012-07-31 Jay Belanger <jay.p.belanger@gmail.com>
11761
11762 * calc-mode.el (calc-basic-simplification-mode): Rename from
11763 `calc-limited-simplification-mode'.
11764 (calc-alg-simplification-mode): New function.
11765 (calc-set-simplify-mode): Adjust message.
11766
11767 * calc.el (calc-set-mode-line): Adjust mode line display for
11768 basic simplification mode.
11769
11770 * calc-help.el (calc-m-prefix-help): Update help message.
11771
11772 * calc-ext.el (calc-init-extensions): Add bindings and autoloads
11773 for `calc-basic-simplify-mode' and `calc-alg-simplify-mode'.
11774
11775 2012-07-31 Bastien Guerry <bzg@gnu.org>
11776
11777 * man.el (man): Fix comment. (bug#12101)
11778
11779 2012-07-31 Martin Rudalics <rudalics@gmx.at>
11780
11781 * window.el (switch-to-prev-buffer, switch-to-next-buffer):
11782 Don't return a non-nil value when no suitable buffer was found.
11783
11784 2012-07-31 Fabián Ezequiel Gallina <fgallina@cuca>
11785
11786 * progmodes/python.el (run-python-internal): Disable font lock for
11787 internal shells.
11788
11789 2012-07-30 Stefan Merten <smerten@oekonux.de>
11790
11791 * textmodes/rst.el: Silence `checkdoc-ispell'.
11792 (rst-cvs-header, rst-svn-rev, rst-svn-timestamp)
11793 (rst-official-version, rst-official-cvs-rev)
11794 (rst-package-emacs-version-alist): Update to upstream V1.3.1.
11795 (rst-mode-map): New key binding.
11796
11797 2012-07-30 Paul Eggert <eggert@cs.ucla.edu>
11798
11799 Update .PHONY listings in makefiles.
11800 * Makefile.in (.PHONY): Add all, doit, custom-deps, finder-data,
11801 autoloads, update-subdirs, updates, bzr-update, update-authors,
11802 compile-onefile, compile-calc, backup-compiled-files,
11803 compile-after-backup, compile-one-process, mh-autoloads,
11804 bootstrap-clean, distclean, maintainer-clean.
11805
11806 2012-07-29 Jay Belanger <jay.p.belanger@gmail.com>
11807
11808 * calc/calc.el (calc-simplify-mode): Make 'alg the default value.
11809 (calc-set-mode-line): Don't display "AlgSimp ".
11810
11811 * calc/calc-mode.el (calc-alg-simplify-mode): Remove function.
11812 (calc-lim-simplify-mode): New function.
11813 (calc-set-simplify-mode): Default to 'alg.
11814 (calc-default-simplify-mode): Make algebraic simplifications
11815 the default.
11816
11817 * calc/calc-ext.el (calc-init-extensions): Remove binding for
11818 `calc-alg-simplify-mode'. Add binding for `calc-lim-simplify-mode'.
11819
11820 * calc/calc-help.el (calc-m-prefix-help): Change messages to
11821 indicate new simplification modes.
11822
11823 * calc/README: Mention new default simplification mode.
11824
11825 * calc/calc.el (math-normalize-error): New variable.
11826 (math-normalize): Set `math-normalize-error' to t
11827 when there's an error.
11828
11829 * calc/calc-alg.el (math-simplify): Don't simplify when
11830 `math-normalize' returns an error.
11831
11832 2012-07-29 Eli Zaretskii <eliz@gnu.org>
11833
11834 * international/mule-cmds.el (set-locale-environment): Revert last
11835 change, since display-graphic-p returns nil when this function is
11836 called during startup. Instead...
11837
11838 * term/w32console.el (terminal-init-w32console): ...setup the
11839 keyboard and terminal encoding for TTY sessions here. (Bug#12082)
11840
11841 2012-07-29 Juri Linkov <juri@jurta.org>
11842
11843 * simple.el (goto-line): Don't display default line number in the
11844 prompt because it should be displayed by `read-number' (bug#9952).
11845 Add the current line number to the defaults of `goto-line' to
11846 allow its easier modification by users with `M-n' (bug#9201).
11847
11848 * subr.el (read-number): Support multiple default values like in
11849 other minibuffer reading functions. Replace `read' with
11850 `string-to-number' for consistency with `number-to-string'.
11851
11852 2012-07-29 Paul Eggert <eggert@cs.ucla.edu>
11853
11854 deactive->inactive, inactivate->deactivate spelling fixes (Bug#10150)
11855 * emulation/viper-init.el (viper-deactivate-input-method-action):
11856 Rename from viper-inactivate-input-method-action.
11857 (viper-deactivate-input-method):
11858 Rename from viper-inactivate-input-method.
11859 * follow.el (follow-inactive-menu): Rename from follow-deactive-menu.
11860 * international/mule-cmds.el (deactivate-input-method):
11861 Rename from inactivate-input-method.
11862 Also run input-method-deactivate-hook.
11863 (deactivate-current-input-method-function):
11864 Rename from inactivate-current-input-method-function.
11865 (input-method-deactivate-hook): New hook.
11866 (input-method-inactivate-hook): Mark obsolete.
11867 (inactivate-input-method): Mark obsolete.
11868
11869 * international/quail.el (quail-activate):
11870 Also run quail-deactivate-hook.
11871 (quail-deactivate): Rename from quail-inactivate.
11872 * international/robin.el (robin-activate):
11873 Also run robin-deactivate-hook.
11874 (robin-deactivate): Rename from robin-inactivate.
11875
11876 2012-07-29 Chong Yidong <cyd@gnu.org>
11877
11878 * simple.el (indicate-copied-region): New function.
11879 (kill-ring-save): Split off from here.
11880
11881 * rect.el (copy-rectangle-as-kill): Call indicate-copied-region.
11882 (kill-rectangle): Set deactivate-mark to t on read-only error.
11883
11884 * register.el (copy-to-register, copy-rectangle-to-register):
11885 Deactivate the mark, and use indicate-copied-region (Bug#10056).
11886 (append-to-register, prepend-to-register): Call indicate-copied-region.
11887
11888 2012-07-29 Juri Linkov <juri@jurta.org>
11889
11890 * simple.el (async-shell-command-buffer): New defcustom.
11891 (shell-command): Use it. (Bug#4719)
11892
11893 2012-07-28 Eli Zaretskii <eliz@gnu.org>
11894
11895 * international/mule-cmds.el (set-locale-environment): In a
11896 console session on MS-Windows, set up keyboard and terminal
11897 encoding from the OEM codepage, not the ANSI codepage.
11898 (Bug#12055)
11899
11900 2012-07-28 Chong Yidong <cyd@gnu.org>
11901
11902 * progmodes/gdb-mi.el (gdb-place-breakpoints): Fix the call to
11903 gdb-get-location.
11904
11905 2012-07-28 Leo Liu <sdl.web@gmail.com>
11906
11907 * progmodes/cc-menus.el (cc-imenu-objc-function): Avoid leaving nil in
11908 the alist (bug#12029).
11909
11910 2012-07-28 Eli Zaretskii <eliz@gnu.org>
11911
11912 * makefile.w32-in (custom-deps, finder-data, updates, compile)
11913 (compile-always, compile-first)
11914 ($(lisp)/calendar/cal-loaddefs.el)
11915 ($(lisp)/calendar/diary-loaddefs.el)
11916 ($(lisp)/calendar/hol-loaddefs.el, $(lisp)/mh-e/mh-loaddefs.el)
11917 ($(lisp)/net/tramp-loaddefs.el, bootstrap)
11918 ($(lisp)/progmodes/cc-mode.elc): Depend on $(lisp)subdirs.el,
11919 instead of on update-subdirs.
11920 (bootstrap-clean): Delete $(lisp)/subdirs.el.
11921
11922 2012-07-28 Chong Yidong <cyd@gnu.org>
11923
11924 * vc/vc.el (vc-root-diff, vc-print-root-log): Prompt for a
11925 directory if vc-deduce-backend returns nil (Bug#7350).
11926
11927 * simple.el (delete-trailing-lines): New option.
11928 (delete-trailing-whitespace): Obey it (Bug#11879).
11929
11930 2012-07-28 David Engster <deng@randomsample.de>
11931
11932 * xml.el (xml-node-name, xml-parse-file, xml-parse-region):
11933 Explanation of new 'symbol-qnames feature in doc-strings.
11934 (xml-maybe-do-ns): Return expanded names as plain symbols if
11935 'symbol-qnames was provided in XML-NS argument (Bug#11916).
11936 (xml-parse-tag-1): Deal with new definition of PARSE-NS argument.
11937
11938 2012-07-27 Fabián Ezequiel Gallina <fgallina@cuca>
11939
11940 Consistent completion in inferior python with emacs -nw.
11941 * progmodes/python.el (inferior-python-mode): Replace "<tab>"
11942 binding in inferior-python-mode-map with "\t".
11943 (python-shell-completion-complete-at-point)
11944 (python-completion-complete-at-point): Remove interactive spec.
11945
11946 2012-07-27 Jay Belanger <jay.p.belanger@gmail.com>
11947
11948 * calc/calccomp.el (math-compose-expr): Undo previous change.
11949
11950 2012-07-27 Fabián Ezequiel Gallina <fgallina@cuca>
11951
11952 * progmodes/python.el (python-mode-map): Add keybinding for
11953 run-python.
11954 (python-shell-make-comint): Fix pop-to-buffer call.
11955 (run-python): Autoload. New arg SHOW.
11956 (python-shell-get-or-create-process): Do not pop python process
11957 buffer.
11958
11959 2012-07-27 Michael Albinus <michael.albinus@gmx.de>
11960
11961 * notifications.el (notifications-on-action-signal)
11962 (notifications-on-closed-signal): Use also the bus address for the map.
11963 (notifications-notify, notifications-close-notification)
11964 (notifications-get-capabilities): Add optional argument BUS.
11965
11966 2012-07-27 Tassilo Horn <tsdh@gnu.org>
11967
11968 * textmodes/reftex-vars.el (reftex-label-alist-builtin):
11969 Add support for the lstlisting and minted environments, and for the
11970 ctable macro.
11971 * textmodes/reftex.el (reftex-compile-variables): Also recognize
11972 labels written in keyvals syntax.
11973
11974 2012-07-27 Jay Belanger <jay.p.belanger@gmail.com>
11975
11976 * calc/calccomp.el (math-compose-expr): Use parentheses when
11977 there is a product in the denominator of a fraction.
11978
11979 2012-07-26 Eli Zaretskii <eliz@gnu.org>
11980
11981 * makefile.w32-in ($(lisp)/calendar/cal-loaddefs.el)
11982 ($(lisp)/calendar/diary-loaddefs.el)
11983 ($(lisp)/calendar/hol-loaddefs.el, $(lisp)/mh-e/mh-loaddefs.el)
11984 ($(lisp)/net/tramp-loaddefs.el): Depend on update-subdirs.
11985 Fixes failures in parallel bootstrap because subdirs.el is being
11986 rewritten while the autoload files are built at the same time,
11987 which needs to load subdirs.el.
11988
11989 2012-07-26 Martin Rudalics <rudalics@gmx.at>
11990
11991 * mouse.el (popup-menu): Fix doc-string and re-indent code.
11992 (mouse-drag-line): Don't exit tracking when a switch-frame or
11993 switch-window event occurs (Bug#12006).
11994
11995 2012-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
11996
11997 * mouse.el (popup-menu): Fix last change.
11998
11999 2012-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
12000
12001 Autoload from Lisp with more care. Follow aliases when looking for
12002 function properties.
12003 * subr.el (autoloadp): New function.
12004 (symbol-file): Use it.
12005 (function-get): New function.
12006 * emacs-lisp/macroexp.el (macroexp--expand-all): Use function-get and
12007 autoload-do-load.
12008 * emacs-lisp/lisp-mode.el (lisp-font-lock-syntactic-face-function)
12009 (lisp-indent-function):
12010 * emacs-lisp/gv.el (gv-get):
12011 * emacs-lisp/edebug.el (get-edebug-spec, edebug-basic-spec):
12012 * emacs-lisp/byte-opt.el (byte-optimize-form):
12013 * emacs-lisp/bytecomp.el (byte-compile-arglist-warn):
12014 * emacs-lisp/autoload.el (make-autoload, autoload-print-form):
12015 Use function-get.
12016 * emacs-lisp/cl.el: Don't propagate function properties any more.
12017
12018 * speedbar.el (speedbar-add-localized-speedbar-support):
12019 * emacs-lisp/disass.el (disassemble-internal):
12020 * desktop.el (desktop-load-file):
12021 * help-fns.el (help-function-arglist, find-lisp-object-file-name)
12022 (describe-function-1):
12023 * emacs-lisp/find-func.el (find-function-noselect):
12024 * emacs-lisp/elp.el (elp-instrument-function):
12025 * emacs-lisp/advice.el (ad-has-proper-definition):
12026 * apropos.el (apropos-safe-documentation, apropos-macrop):
12027 * emacs-lisp/debug.el (debug-on-entry):
12028 * emacs-lisp/cl-macs.el (cl-compiler-macroexpand):
12029 * emacs-lisp/byte-opt.el (byte-compile-inline-expand):
12030 * calc/calc.el (name): Use autoloadp & autoload-do-load.
12031
12032 2012-07-25 Alp Aker <alp.tekin.aker@gmail.com>
12033
12034 * international/mule-cmds.el (ucs-insert): Mark it as an obsolete
12035 function, not an obsolete variable (Bug#12046).
12036
12037 2012-07-25 Andreas Schwab <schwab@linux-m68k.org>
12038
12039 * faces.el (face-spec-reset-face): Fix last change. (Bug#12042)
12040
12041 2012-07-25 Christopher Schmidt <christopher@ch.ristopher.com>
12042
12043 * emacs-lisp/pp.el (pp-display-expression): Select old selected
12044 window only if it is still live (Bug#12034).
12045
12046 2012-07-25 Martin Rudalics <rudalics@gmx.at>
12047
12048 * subr.el (redirect-frame-focus): Add advertised calling
12049 convention (Bug#12030).
12050
12051 2012-07-25 Paul Eggert <eggert@cs.ucla.edu>
12052
12053 Prefer typical American spelling for "acknowledgment".
12054 * vc/add-log.el (change-log-acknowledgment): Rename from
12055 change-log-acknowledgement, with an alias for the old name.
12056
12057 2012-07-25 Jay Belanger <jay.p.belanger@gmail.com>
12058
12059 * calc-alg.el (math-simplify-divide): Don't cross multiply
12060 in an equation when the lhs is a variable.
12061
12062 2012-07-24 Julien Danjou <julien@danjou.info>
12063
12064 * net/netrc.el (netrc-find-service-number, netrc-store-data):
12065 Remove, unused.
12066
12067 2012-07-23 Eli Zaretskii <eliz@gnu.org>
12068
12069 * startup.el (command-line): Don't display an empty user name in
12070 the error message about non-existent home directory, when
12071 init-file-user was set to an empty string. See
12072 http://lists.gnu.org/archive/html/bug-gnu-emacs/2012-07/msg00835.html
12073 for the details and context.
12074
12075 2012-07-22 Vincent Belaïche <vincentb1@users.sourceforge.net>
12076
12077 * ses.el (ses-cell-formula-aset): New macro.
12078 (ses-cell-references-aset): New macro.
12079 (ses-cell-p): New function.
12080 (ses-rename-cell): Do no longer rely on complex operations like
12081 ses-cell-set-formula or ses-set-cell to change the cell and handle
12082 the undo at the same time, but rather use lower level new macros
12083 `ses-cell-formula-aset' and `ses-cell-references-aset' and handle
12084 the undo directly. Refresh the mode line.
12085
12086 2012-07-21 Leo Liu <sdl.web@gmail.com>
12087
12088 * progmodes/cc-cmds.el (c-defun-name):
12089 Use match-string-no-properties instead for consistency.
12090
12091 2012-07-20 Leo Liu <sdl.web@gmail.com>
12092
12093 * progmodes/cc-cmds.el (c-defun-name): Handle objc selectors properly.
12094 (Bug#7879)
12095
12096 * progmodes/cc-langs.el (c-symbol-start): Include char _ (bug#11986).
12097
12098 2012-07-20 Stefan Monnier <monnier@iro.umontreal.ca>
12099
12100 * userlock.el, emacs-lisp/map-ynp.el: Declare part of `emacs' package.
12101 * progmodes/bug-reference.el, misearch.el: Provide themselves
12102 (bug#11915).
12103
12104 * progmodes/cperl-mode.el (cperl-unwind-to-safe): Don't inf-loop at end
12105 of narrowed buffer (bug#11966).
12106
12107 2012-07-20 Vincent Belaïche <vincentb1@users.sourceforge.net>
12108
12109 * ses.el (ses-rename-cell): Set new name also in reference list of
12110 cells of which the renamed cell depends.
12111
12112 2012-07-20 Masatake YAMATO <yamato@redhat.com>
12113
12114 * term/x-win.el (x-menu-bar-open): Use `frame-parameter'
12115 to check whether menu-bar is shown or not. If not shown,
12116 show the menu-bar as a popup menu instead of using tmm.
12117 * mouse.el (popup-menu): Accept `point' as `position' argument.
12118
12119 2012-07-20 Dmitry Gutov <dgutov@yandex.ru>
12120
12121 * progmodes/ruby-mode.el (ruby-parse-partial): No error when end
12122 up inside string symbol literal (bug#11923).
12123
12124 2012-07-20 Eli Zaretskii <eliz@gnu.org>
12125
12126 * startup.el (fancy-startup-text): Read the whole tutorial, not
12127 just its first 256 bytes. Prevents gibberish in display of the
12128 tutorial title.
12129
12130 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
12131
12132 Drop idle buffer compaction due to an absence of the
12133 proved efficiency.
12134 * compact.el: Remove.
12135
12136 2012-07-19 Sam Steingold <sds@gnu.org>
12137
12138 * vc/vc-dispatcher.el (vc-compilation-mode): Add, based on
12139 vc-bzr-pull & vc-bzr-merge-branch.
12140 * vc/vc-bzr.el (vc-bzr-pull, vc-bzr-merge-branch): Use it.
12141 (vc-bzr-error-regexp-alist): Rename from vc-bzr-error-regex-alist
12142 for consistency with compilation-error-regexp-alist.
12143 * vc/vc-git.el (vc-git-error-regexp-alist): Add.
12144 (vc-git-pull, vc-git-merge-branch): Call vc-compilation-mode.
12145 * vc/vc-hg.el (vc-hg-error-regexp-alist): Add.
12146 (vc-hg-pull, vc-hg-merge-branch): Call vc-compilation-mode.
12147
12148 2012-07-19 Stefan Monnier <monnier@iro.umontreal.ca>
12149
12150 * emacs-lisp/chart.el: Use lexical-binding.
12151 (chart-emacs-storage): Don't hardcode the list of entries.
12152
12153 2012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
12154
12155 Next round of tweaks caused by Fgarbage_collect changes.
12156 * emacs-lisp/chart.el (chart-emacs-storage): Adjust again.
12157
12158 2012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
12159
12160 Compact buffers when idle.
12161 * compact.el: New file.
12162
12163 2012-07-19 Stefan Monnier <monnier@iro.umontreal.ca>
12164
12165 * subr.el (eventp): Presume that if it looks vaguely like an event,
12166 it's an event (bug#10190).
12167
12168 2012-07-19 Fabián Ezequiel Gallina <fgallina@cuca>
12169
12170 Enhancements to ppss related code (thanks Stefan).
12171 * progmodes/python.el (python-indent-context)
12172 (python-indent-calculate-indentation, python-indent-dedent-line)
12173 (python-indent-electric-colon, python-nav-forward-block)
12174 (python-mode-abbrev-table)
12175 (python-info-assignment-continuation-line-p): Simplify checks
12176 for ppss context.
12177 (python-info-continuation-line-p): Cleanup.
12178 (python-info-ppss-context): Do not catch 'quote.
12179 (python-info-ppss-context-type)
12180 (python-info-ppss-comment-or-string-p): Simplify.
12181
12182 2012-07-18 Fabián Ezequiel Gallina <fgallina@cuca>
12183
12184 * progmodes/python.el: Enhancements to eldoc support.
12185 (python-info-current-symbol): New function.
12186 (python-eldoc-at-point): Use python-info-current-symbol.
12187 (python-info-current-defun): Fix cornercase on first defun scan.
12188 (python-eldoc--get-doc-at-point): Use python-info-current-symbol
12189 and signal error when no inferior python process is available.
12190
12191 2012-07-18 Dmitry Gutov <dgutov@yandex.ru>
12192
12193 * vc/vc-git.el (vc-git-state): Don't call `vc-git-registered',
12194 assume it's always t.
12195 (vc-git-registered): Remove caching, the function is only called
12196 once.
12197 (vc-git-branches): Use `vc-git--call' instead of `call-process'.
12198
12199 2012-07-18 Chong Yidong <cyd@gnu.org>
12200
12201 * subr.el (last-input-char, last-command-char): Remove (Bug#9195).
12202
12203 * simple.el (count-words): Report on narrowing (Bug#9959).
12204
12205 * bindings.el: Bind M-= to count-words.
12206
12207 * faces.el (face-spec-reset-face): Handle reverse video (Bug#4238).
12208
12209 2012-07-18 Masatake YAMATO <yamato@redhat.com>
12210
12211 * progmodes/sh-script.el (sh-imenu-generic-expression):
12212 Capture a function with `function' keyword and without parentheses
12213 like "function FOO" (bug#11856).
12214
12215 2012-07-18 Tassilo Horn <tassilo@member.fsf.org>
12216
12217 * window.el (split-window-sensibly): Make WINDOW argument
12218 optional.
12219
12220 2012-07-18 Chong Yidong <cyd@gnu.org>
12221
12222 * subr.el (keyboard-translate): Doc fix (Bug#7261).
12223
12224 * isearch.el (isearch-mode-map): Handle C-x 8 key translations,
12225 and make C-x 8 RET exit isearch (Bug#11439).
12226
12227 * international/iso-transl.el: Move isearch-mode-map key
12228 definitions to isearch.el.
12229
12230 2012-07-18 Stefan Monnier <monnier@iro.umontreal.ca>
12231
12232 * emacs-lisp/eieio.el: Adapt further to gv.el (bug#11970).
12233 (eieio-defclass): Use gv-define-setter when possible.
12234
12235 2012-07-18 Dmitry Antipov <dmantipov@yandex.ru>
12236
12237 Reflect recent changes in Fgarbage_collect.
12238 * emacs-lisp/chart.el (chart-emacs-storage): Change to
12239 reflect new format of data returned by Fgarbage_collect.
12240
12241 2012-07-17 Fabián Ezequiel Gallina <fgallina@cuca>
12242
12243 New utility functions + python-info-ppss-context fix (Bug#11910).
12244 * progmodes/python.el (python-info-beginning-of-block-statement-p)
12245 (python-info-ppss-comment-or-string-p): New functions.
12246 (python-info-ppss-context): Small fix for string check.
12247
12248 2012-07-17 Juri Linkov <juri@jurta.org>
12249
12250 * dired-aux.el (dired-do-async-shell-command): Doc fix.
12251 (dired-do-async-shell-command): Don't add `*' at the end of the
12252 command (Bug#11815).
12253 (dired-do-shell-command): Doc fix.
12254 (dired-shell-stuff-it): Strip the trailing "&" and ";" if any.
12255 Join the individual commands using either "&" or ";" as the
12256 separator depending on the values of these trailing characters.
12257 At the end re-add the trailing "&". (Bug#10598)
12258
12259 * simple.el (async-shell-command): Sync the interactive spec with
12260 `shell-command'. Doc fix.
12261 (shell-command): Doc fix.
12262
12263 2012-07-17 Juri Linkov <juri@jurta.org>
12264
12265 * descr-text.el (describe-char): Fix format args. (Bug#10129)
12266
12267 2012-07-17 Fabián Ezequiel Gallina <fgallina@cuca>
12268
12269 Final renames and doc fixes for movement commands (bug#11899).
12270 * progmodes/python.el (python-nav-beginning-of-statement):
12271 Rename from python-nav-statement-start.
12272 (python-nav-end-of-statement): Rename from
12273 python-nav-statement-end.
12274 (python-nav-beginning-of-block): Rename from
12275 python-nav-block-start.
12276 (python-nav-end-of-block): Rename from python-nav-block-end.
12277
12278 2012-07-17 Fabián Ezequiel Gallina <fgallina@cuca>
12279
12280 * progmodes/python.el (python-shell-send-string-no-output):
12281 Allow accept-process-output to quit, keeping shell process ready for
12282 future interactions (Bug#11868).
12283
12284 2012-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
12285
12286 * emacs-lisp/cl-macs.el (cl-progv): Use a properly prefixed var name.
12287
12288 * emacs-lisp/elint.el (elint-find-args-in-code):
12289 Use help-function-arglist, so as to handle lexical byte-code.
12290
12291 * progmodes/sh-script.el (sh-syntax-propertize-function): Fix last
12292 change (bug#11826).
12293
12294 2012-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
12295
12296 * progmodes/cc-engine.el (c-forward-sws, c-backward-sws):
12297 Avoid spuriously marking the buffer as modified because of c-is-sws.
12298
12299 * progmodes/sh-script.el (sh-syntax-propertize-function): Mark "${#VAR"
12300 as not-a-comment (bug#11946).
12301
12302 * emacs-lisp/macroexp.el (macroexp-let2): Use more informative names
12303 for uninterned vars.
12304
12305 * xt-mouse.el (xterm-mouse-translate-1, xterm-mouse-event-read):
12306 Use read-event since we don't really want to read chars but bytes.
12307
12308 * textmodes/tex-mode.el (tex-font-lock-keywords-1): Highlight not only
12309 $$..$$ but also $..$ using regexps (bug#11953).
12310 Use tex-verbatim for \url and \path.
12311 (tex-font-lock-keywords): Define as defconst like the others.
12312 (tex-common-initialization): Don't use font-lock-syntax-table any more.
12313
12314 2012-07-16 René Kyllingstad <Rene@Kyllingstad.com> (tiny change)
12315
12316 * international/mule-cmds.el (ucs-insert): Make it an obsolete
12317 alias for insert-char.
12318
12319 2012-07-16 Fabián Ezequiel Gallina <fgallina@cuca>
12320
12321 * progmodes/python.el: Simplified imenu implementation.
12322 (python-nav-jump-to-defun): Remove command.
12323 (python-mode-map): Use `imenu' instead.
12324 (python-nav-list-defun-positions-cache)
12325 (python-imenu-include-defun-type, python-imenu-make-tree)
12326 (python-imenu-subtree-root-label, python-imenu-index-alist):
12327 Remove vars.
12328 (python-nav-list-defun-positions, python-nav-read-defun)
12329 (python-imenu-tree-assoc, python-imenu-make-element-tree)
12330 (python-imenu-make-tree, python-imenu-create-index):
12331 Remove functions.
12332 (python-mode): Update to interact with imenu by setting
12333 `imenu-extract-index-name-function' only.
12334
12335 2012-07-16 Fabián Ezequiel Gallina <fgallina@cuca>
12336
12337 * progmodes/python.el: Enhancements to navigation commands.
12338 (python-nav-backward-sentence)
12339 (python-nav-forward-sentence): Remove.
12340 (python-nav-backward-statement, python-nav-forward-statement)
12341 (python-nav-statement-start, python-nav-statement-end)
12342 (python-nav-backward-block, python-nav-forward-block)
12343 (python-nav-block-start, python-nav-block-end)
12344 (python-nav-forward-sexp-function)
12345 (python-info-current-line-comment-p)
12346 (python-info-current-line-empty-p): New functions.
12347 (python-indent-context): Use `python-nav-statement-start'.
12348
12349 2012-07-16 Michael Albinus <michael.albinus@gmx.de>
12350
12351 * eshell/em-ls.el (eshell/ls): Use `apply'.
12352
12353 * eshell/em-unix.el (eshell/su, eshell/sudo): Apply Tramp's ad-hoc
12354 multi-hops, instead of Tramp internals.
12355
12356 * vc/ediff.el (ediff-directories): Add trailing space to prompts.
12357
12358 * vc/ediff-diff.el (ediff-same-file-contents): Handle the case,
12359 when F1 and F2 are located on different hosts.
12360
12361 2012-07-14 Chong Yidong <cyd@gnu.org>
12362
12363 * xt-mouse.el: Implement extended mouse coordinates (Bug#10642).
12364 (xterm-mouse-translate): Move code into xterm-mouse-translate-1.
12365 (xterm-mouse-translate-extended, xterm-mouse-translate-1)
12366 (xterm-mouse--read-event-sequence-1000)
12367 (xterm-mouse--read-event-sequence-1006): New functions. For old
12368 mouse protocol, handle M-mouse-X events correctly.
12369 (xterm-mouse-event): New arg specifying mouse protocol.
12370 (turn-on-xterm-mouse-tracking-on-terminal)
12371 (turn-off-xterm-mouse-tracking-on-terminal): Send DEC 1006
12372 sequence to toggle extended coordinates on newer XTerms.
12373 This appears to be harmless on terminals which do not support this.
12374
12375 2012-07-14 Leo Liu <sdl.web@gmail.com>
12376
12377 Add fringe bitmap indicators for flymake. (Bug#11253)
12378 * progmodes/flymake.el (flymake-highlight-line): Use fringe bitmaps.
12379 (flymake-make-overlay): New arg BITMAP.
12380 (flymake-error-bitmap, flymake-warning-bitmap)
12381 (flymake-fringe-indicator-position): New user variables.
12382
12383 * fringe.el: New bitmap exclamation-mark.
12384
12385 2012-07-14 Jan Djärv <jan.h.d@swipnet.se>
12386
12387 * progmodes/cc-cmds.el (c-defun-name): Recognize Objective-C methods
12388 also (Bug#7879).
12389
12390 2012-07-14 Chong Yidong <cyd@gnu.org>
12391
12392 * electric.el (electric-pair-post-self-insert-function): Fix pair
12393 insertion in empty-region case (Bug#11520).
12394
12395 2012-07-14 Chong Yidong <cyd@gnu.org>
12396
12397 * bindings.el: Consolidate ctl-x-r-map bindings.
12398 Bind copy-rectangle-as-kill to C-x r w.
12399
12400 * rect.el, register.el: Move bindings to bindings.el.
12401
12402 2012-07-14 Reuben Thomas <rrt@sc3d.org>
12403
12404 * rect.el (copy-rectangle-as-kill): New command (Bug#739).
12405
12406 2012-07-13 Andreas Schwab <schwab@linux-m68k.org>
12407
12408 * emacs-lisp/cl.el (labels): Remove spurious quote. (Bug#11938)
12409
12410 2012-07-13 Juanma Barranquero <lekktu@gmail.com>
12411
12412 * bindings.el (top): Use `mapc' instead of `mapcar'.
12413
12414 * loadup.el (top): Remove bogus `if' choice (brought by 2008-06-21T01:38:39Z!monnier@iro.umontreal.ca).
12415
12416 2012-07-13 Michael Albinus <michael.albinus@gmx.de>
12417
12418 * progmodes/sql.el (sql-comint): Suppress the check for program on
12419 remote hosts. Reported by Francis Devereux <francis@devrx.org>.
12420 (Bug#11908)
12421
12422 2012-07-13 Chong Yidong <cyd@gnu.org>
12423
12424 * bindings.el: Assign a non-nil permanent-local property to
12425 per-buffer variables which lack a default value (Bug#11930).
12426
12427 * help-fns.el (describe-variable): In the "automatically becomes
12428 local" notice, take note of permanent-local variables.
12429
12430 2012-07-13 Chong Yidong <cyd@gnu.org>
12431
12432 * files.el (toggle-read-only): Doc fix and code cleanup. New arg
12433 to allow printing the message when called from Lisp.
12434
12435 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
12436 Remove toggle-read-only.
12437
12438 * bs.el (bs-toggle-readonly):
12439 * buff-menu.el (Buffer-menu-toggle-read-only):
12440 Remove with-no-warnings around toggle-read-only.
12441
12442 * ffap.el (ffap--toggle-read-only): Accept a list of buffers.
12443 Remove with-no-warnings around toggle-read-only.
12444 (ffap-read-only, ffap-read-only-other-window)
12445 (ffap-read-only-other-frame): Callers changed.
12446
12447 * help-mode.el: Don't require view package.
12448 (help-mode-finish): Set buffer-read-only instead of calling
12449 toggle-read-only.
12450
12451 * bindings.el (mode-line-toggle-read-only):
12452 * dired.el (dired-toggle-read-only):
12453 * ibuffer.el (ibuffer-do-toggle-read-only): Call toggle-read-only
12454 with non-nil second arg.
12455
12456 * emacs-lisp/eieio-custom.el (eieio-customize-object):
12457 * vc/ediff.el (ediff-set-read-only-in-buf-A): Set buffer-read-only
12458 directly.
12459
12460 2012-07-12 Eli Zaretskii <eliz@gnu.org>
12461
12462 * emacs-lisp/bytecomp.el (byte-recompile-directory): Use cl-incf,
12463 not incf.
12464
12465 2012-07-11 Stefan Monnier <monnier@iro.umontreal.ca>
12466
12467 More CL cleanups and reduction of use of cl.el.
12468 * woman.el, winner.el, vc/vc-rcs.el, vc/vc-hooks.el, vc/vc-hg.el:
12469 * vc/vc-git.el, vc/vc-dir.el, vc/vc-bzr.el, vc/vc-annotate.el:
12470 * textmodes/tex-mode.el, textmodes/sgml-mode.el, tar-mode.el:
12471 * strokes.el, ses.el, server.el, progmodes/js.el, progmodes/gdb-mi.el:
12472 * progmodes/flymake.el, progmodes/ebrowse.el, progmodes/compile.el:
12473 * play/tetris.el, play/snake.el, play/pong.el, play/landmark.el:
12474 * play/hanoi.el, play/decipher.el, play/5x5.el, nxml/nxml-mode.el:
12475 * net/secrets.el, net/quickurl.el, midnight.el, mail/footnote.el:
12476 * image-dired.el, ibuffer.el, ibuf-macs.el, ibuf-ext.el, hexl.el:
12477 * eshell/eshell.el, eshell/esh-io.el, eshell/esh-ext.el:
12478 * eshell/esh-cmd.el, eshell/em-ls.el, eshell/em-hist.el:
12479 * eshell/em-cmpl.el, eshell/em-banner.el:
12480 * calendar/parse-time.el: Use cl-lib.
12481 * wid-browse.el, wdired.el, vc/vc.el, vc/vc-mtn.el, vc/vc-cvs.el:
12482 * vc/vc-arch.el, tree-widget.el, textmodes/texinfo.el:
12483 * textmodes/refill.el, textmodes/css-mode.el, term/tvi970.el:
12484 * term/ns-win.el, term.el, shell.el, ps-samp.el:
12485 * progmodes/perl-mode.el, progmodes/pascal.el, progmodes/gud.el:
12486 * progmodes/glasses.el, progmodes/etags.el, progmodes/cwarn.el:
12487 * play/gamegrid.el, play/bubbles.el, novice.el, notifications.el:
12488 * net/zeroconf.el, net/xesam.el, net/snmp-mode.el, net/mairix.el:
12489 * net/ldap.el, net/eudc.el, net/browse-url.el, man.el:
12490 * mail/mailheader.el, mail/feedmail.el: Don't use CL.
12491 * ibuf-ext.el (ibuffer-mark-old-buffers): Use float-time.
12492 * eshell/esh-opt.el (eshell-eval-using-options): Quote code with
12493 `lambda' rather than with `quote'.
12494 (eshell-do-opt): Adjust accordingly.
12495 (eshell-process-option): Simplify.
12496 * eshell/esh-var.el:
12497 * eshell/em-script.el: Require `esh-opt' for eshell-eval-using-options.
12498 * emacs-lisp/pcase.el (pcase--dontcare-upats, pcase--let*)
12499 (pcase--expand, pcase--u1): Rename pcase's internal `dontcare' pattern
12500 to `pcase--dontcare'.
12501 * emacs-lisp/cl.el (labels): Mark obsolete.
12502 (cl--letf, letf): Move to cl-lib.
12503 (cl--letf*, letf*): Remove.
12504 * emacs-lisp/cl-lib.el (cl-nth-value): Use defalias.
12505 * emacs-lisp/cl-macs.el (cl-dolist, cl-dotimes): Add indent rule.
12506 (cl-progv): Rewrite.
12507 (cl--letf, cl-letf): Move from cl.el.
12508 (cl-letf*): New macro.
12509 * emacs-lisp/cl-extra.el (cl--progv-before, cl--progv-after): Remove.
12510
12511 2012-07-11 Michael Albinus <michael.albinus@gmx.de>
12512
12513 * net/ange-ftp.el (ange-ftp-cf1): Update the files cache.
12514
12515 2012-07-11 Chong Yidong <cyd@gnu.org>
12516
12517 * vc/log-edit.el (log-edit-vc-backend): New variable.
12518 (log-edit): Doc fix.
12519
12520 * vc/vc-dispatcher.el (vc-log-edit): New args. Use PARAMS
12521 argument of log-edit to set up all local variables.
12522 (vc-start-logentry): New optional arg specifying VC backend.
12523
12524 * vc/vc.el (vc-checkin): Use it.
12525 (vc-deduce-fileset): Handle Log Edit buffers.
12526 (vc-diff): Make first argument optional too.
12527
12528 * vc/log-view.el (log-view-vc-fileset, log-view-vc-backend): Doc fix.
12529
12530 2012-07-10 Michael Albinus <michael.albinus@gmx.de>
12531
12532 * eshell/esh-ext.el (eshell-remote-command): Remove remote part of
12533 command, just in case. The function is not needed anymore.
12534 (eshell-external-command): Do not call `eshell-remote-command'.
12535
12536 2012-07-10 Stefan Monnier <monnier@iro.umontreal.ca>
12537
12538 Reduce use of (require 'cl).
12539 * vc/smerge-mode.el, vc/pcvs.el, vc/pcvs-util.el, vc/pcvs-info.el:
12540 * vc/diff-mode.el, vc/cvs-status.el, uniquify.el, scroll-bar.el:
12541 * register.el, progmodes/sh-script.el, net/gnutls.el, net/dbus.el:
12542 * msb.el, mpc.el, minibuffer.el, international/ucs-normalize.el:
12543 * international/quail.el, info-xref.el, imenu.el, image-mode.el:
12544 * font-lock.el, filesets.el, edmacro.el, doc-view.el, bookmark.el:
12545 * battery.el, avoid.el, abbrev.el: Use cl-lib.
12546 * vc/pcvs-parse.el, vc/pcvs-defs.el, vc/log-view.el, vc/log-edit.el:
12547 * vc/diff.el, simple.el, pcomplete.el, lpr.el, comint.el, loadhist.el:
12548 * jit-lock.el, international/iso-ascii.el, info.el, frame.el, bs.el:
12549 * emulation/crisp.el, electric.el, dired.el, cus-dep.el, composite.el:
12550 * calculator.el, autorevert.el, apropos.el: Don't require CL.
12551 * emacs-lisp/bytecomp.el (byte-recompile-directory, display-call-tree)
12552 (byte-compile-unfold-bcf, byte-compile-check-variable):
12553 * emacs-lisp/byte-opt.el (byte-compile-trueconstp)
12554 (byte-compile-nilconstp):
12555 * emacs-lisp/autoload.el (make-autoload): Use pcase.
12556 * face-remap.el (text-scale-adjust): Simplify pcase patterns.
12557
12558 * emacs-lisp/gv.el (cond): Make it a valid place.
12559 (if): Simplify slightly.
12560
12561 * emacs-lisp/pcase.el (pcase): Accept self-quoting exps as "upatterns".
12562 (pcase--self-quoting-p): New function.
12563 (pcase--u1): Use it.
12564
12565 2012-07-10 Glenn Morris <rgm@gnu.org>
12566
12567 * emacs-lisp/authors.el (authors-fixed-entries):
12568 (authors-renamed-files-alist): Update for configure.in -> configure.ac.
12569
12570 2012-07-09 Paul Eggert <eggert@cs.ucla.edu>
12571
12572 Rename configure.in to configure.ac (Bug#11603).
12573 * emacs-lisp/authors.el (authors-canonical-file-name):
12574 * progmodes/autoconf.el (autoconf-mode):
12575 Prefer configure.ac to configure.in.
12576
12577 2012-07-08 Chong Yidong <cyd@gnu.org>
12578
12579 * mouse.el (mouse-drag-line): Rewrite the track-mouse loop.
12580 Implement the mouse-1-click-follows-link handling properly.
12581
12582 * info.el (Info-link-keymap): Use follow-link mechanism for
12583 header-line links (Bug#374).
12584
12585 * simple.el (deactivate-mark): Do not set the primary selection
12586 if another program has acquired it (Bug#11772).
12587
12588 2012-07-07 Kevin Ryde <user42@zip.com.au>
12589
12590 * woman.el (woman-strings): Fix double-quote handling (Bug#1151).
12591 (woman-decode-region): Replace escaped-escapes without destroying
12592 bold or underline (Bug#11552).
12593 (woman2-process-escapes): Handle nofill regions (Bug#11591).
12594
12595 2012-07-07 Chong Yidong <cyd@gnu.org>
12596
12597 * simple.el (yank-pop-change-selection): Doc fix (Bug#11361).
12598 (interprogram-cut-function, interprogram-paste-function):
12599 Mention that we typically mean the clipboard.
12600
12601 2012-07-06 Glenn Morris <rgm@gnu.org>
12602
12603 * kmacro.el (kmacro-call-macro): Restore repeat message. (Bug#11817)
12604
12605 * files.el (toggle-read-only): Restrict message to interactive use.
12606
12607 2012-07-06 Michael Albinus <michael.albinus@gmx.de>
12608
12609 * net/tramp.el (tramp-restricted-shell-hosts-alist): New defcustom.
12610
12611 * net/tramp-sh.el (tramp-maybe-open-connection): Handle it.
12612
12613 2012-07-06 Glenn Morris <rgm@gnu.org>
12614
12615 * Makefile.in (compile-one-process): Rename from "recompile".
12616
12617 * Makefile.in (bzr-update): "compile" is the same as "recompile
12618 autoloads", but parallelizable, so use that instead.
12619
12620 2012-07-06 Dmitry Gutov <dgutov@yandex.ru>
12621
12622 * window.el (quit-window): Always restore window height when
12623 it's saved in quit-restore parameter (Bug#11810).
12624
12625 2012-07-06 Glenn Morris <rgm@gnu.org>
12626
12627 * simple.el (kill-whole-line): Doc tweak.
12628
12629 2012-07-06 Eli Zaretskii <eliz@gnu.org>
12630
12631 * files.el (file-relative-name): Compare file names
12632 case-insensitively if on MS-Windows or MS-DOS, or if
12633 read-file-name-completion-ignore-case is non-nil. Don't use
12634 case-fold-search for this purpose. (Bug#11827)
12635
12636 2012-07-17 Andreas Schwab <schwab@linux-m68k.org>
12637
12638 * calendar/cal-dst.el (calendar-current-time-zone):
12639 Return calendar-current-time-zone-cache if non-nil.
12640
12641 2012-07-17 Masatake YAMATO <yamato@redhat.com>
12642 2012-07-06 Andreas Schwab <schwab@linux-m68k.org>
12643
12644 * calendar/cal-dst.el (calendar-current-time-zone):
12645 Return calendar-current-time-zone-cache if non-nil.
12646
12647 2012-07-06 Glenn Morris <rgm@gnu.org>
12648
12649 * Makefile.in (cvs-update): Remove old alias.
12650
12651 2012-07-05 Michael Albinus <michael.albinus@gmx.de>
12652
12653 Sync with Tramp 2.2.6-pre.
12654
12655 * net/tramp.el (tramp-drop-volume-letter): Provide an XEmacs
12656 compatible declaration.
12657
12658 * net/tramp-cmds.el (tramp-append-tramp-buffers):
12659 Protect `list-load-path-shadows' call.
12660
12661 * net/tramp-compat.el (top): Require packages, which aren't
12662 autoloaded anymore for XEmacs. Protect call of
12663 `tramp-file-name-handler' by `tramp-compat-funcall', pacifying the
12664 compiler. Do not require tramp-util.el and tramp-vc.el anymore,
12665 it hurts at least for SXEmacs.
12666 (tramp-compat-temporary-file-directory): In XEmacs, there is no
12667 standard-value for `temporary-file-directory'.
12668
12669 * net/tramp-sh.el (tramp-do-directory-files-and-attributes-with-stat):
12670 Redirect stderr to /dev/null.
12671 (tramp-sh-handle-write-region): uid and gid can be floats.
12672 Reported by Russell Sim <russell.sim@gmail.com>.
12673 (tramp-sh-handle-vc-registered): Hide errors.
12674 (tramp-vc-file-name-handler): Use dummy results for `process-file'
12675 and `start-file-process'.
12676 (tramp-maybe-open-connection): Check also whether `non-essential'
12677 is bound.
12678
12679 2012-07-04 Chong Yidong <cyd@gnu.org>
12680
12681 * xml.el (xml--parse-buffer): Use xml-syntax-table.
12682 (xml-parse-tag): Likewise, and avoid changing entity tables.
12683 (xml-syntax-table): Define from scratch, making sure not to give
12684 x2000 and other Unicode spaces whitespace syntax, since those are
12685 not spaces in XML.
12686 (xml-parse-fragment): Delete unused function.
12687 (xml-name-start-char-re, xml-name-char-re, xml-name-re)
12688 (xml-names-re, xml-nmtoken-re, xml-nmtokens-re, xml-char-ref-re)
12689 (xml-entity-ref, xml-pe-reference-re)
12690 (xml-reference-re, xml-att-value-re, xml-tokenized-type-re)
12691 (xml-notation-type-re, xml-enumeration-re, xml-enumerated-type-re)
12692 (xml-att-type-re, xml-default-decl-re, xml-att-def-re)
12693 (xml-entity-value-re): Use syntax references in regexps where
12694 possible; no need to define inside a let-binding.
12695 (xml-parse-dtd): Use xml-pe-reference-re.
12696 (xml-entity-or-char-ref-re): New defconst.
12697 (xml-parse-string, xml-substitute-special): Use it.
12698
12699 2012-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
12700
12701 * files.el (locate-dominating-file): Allow `name' to be a predicate.
12702 (find-file--read-only): New function.
12703 (find-file-read-only, find-file-read-only-other-window)
12704 (find-file-read-only-other-frame): Use it.
12705 (insert-file-contents-literally): Don't `fset'.
12706 (get-free-disk-space): Use locate-dominating-file.
12707
12708 * emacs-lisp/bytecomp.el (byte-compile): Don't signal an error if the
12709 function is already compiled.
12710
12711 * xml.el (xml-name-regexp): Remove, redundant. Use xml-name-re.
12712
12713 2012-07-03 Michael Albinus <michael.albinus@gmx.de>
12714
12715 * vc/ediff-diff.el (ediff-same-file-contents): Fix it for remote
12716 files on the same host.
12717
12718 2012-07-03 Andreas Schwab <schwab@linux-m68k.org>
12719
12720 * help-fns.el (describe-function-1): Only call
12721 help-fns--autoloaded-p when we have a file name. (Bug#11848)
12722
12723 2012-07-03 Chong Yidong <cyd@gnu.org>
12724
12725 * xml.el: Protect parser against XML bombs.
12726 (xml-entity-expansion-limit): New variable.
12727 (xml-parse-string, xml-substitute-special): Use it.
12728 (xml-parse-dtd): Avoid infloop if the DTD is not terminated.
12729
12730 2012-07-03 Glenn Morris <rgm@gnu.org>
12731
12732 * progmodes/bug-reference.el (bug-reference-bug-regexp):
12733 Allow linking to specific messages in debbugs reports (eg 123#5).
12734
12735 2012-07-02 Chong Yidong <cyd@gnu.org>
12736
12737 * xml.el: Fix entity and character reference expansion, allowing
12738 them to expand into markup as per XML spec.
12739 (xml-default-ns): New variable.
12740 (xml-entity-alist): Use XML spec definitions for lt and amp.
12741 (xml-parse-region): Make first two arguments optional.
12742 Discard text properties.
12743 (xml-parse-tag-1): New function, spun off from xml-parse-tag.
12744 All callers changed.
12745 (xml-parse-tag): Call xml-parse-tag-1. For backward
12746 compatibility, this function should not modify buffer contents.
12747 (xml-parse-tag-1): Fix opening-tag regexp.
12748 (xml-parse-string): Rewrite, handling entity and character
12749 references properly.
12750 (xml--entity-replacement-text): Signal an error if a parameter
12751 entity is undefined.
12752
12753 2012-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
12754
12755 * comint.el (comint-output-filter): Filter out repeated prompts.
12756
12757 * net/ange-ftp.el (ange-ftp-expand-file-name): Use ange-ftp-ftp-name
12758 and file-name-absolute-p.
12759 (ange-ftp-file-exists-p): Use ange-ftp-file-exists-p for
12760 internal calls.
12761
12762 2012-07-02 Paul Eggert <eggert@cs.ucla.edu>
12763
12764 Spelling fixes.
12765 * emacs-lisp/bytecomp.el (byte-compile--reify-function):
12766 Rename from byte-compile--refiy-function. All uses changed.
12767
12768 2012-07-01 Chong Yidong <cyd@gnu.org>
12769
12770 * xml.el (xml--parse-buffer): New function. Move most of
12771 xml-parse-region here.
12772 (xml-parse-region): Copy region into a temporary buffer, since
12773 parameter entity substitution requires changing buffer contents.
12774 Use xml--parse-buffer.
12775 (xml-parse-file): Use xml--parse-buffer.
12776 (xml-parse-dtd): Make parameter entity substitution work right.
12777 Use proper regexps for ELEMENT declarations (Bug#7172).
12778
12779 2012-06-30 Glenn Morris <rgm@gnu.org>
12780
12781 * comint.el (follow-comint-scroll-to-bottom): Fix declaration.
12782
12783 * net/secrets.el, net/tramp-gvfs.el, net/xesam.el, net/zeroconf.el:
12784 Remove outdated and unnecessary dbus declarations.
12785
12786 2012-06-30 Eli Zaretskii <eliz@gnu.org>
12787
12788 * emacs-lisp/timer.el (timer-until): Subtract results of
12789 float-time, instead of taking float-time of the result of
12790 time-subtract, since float-time signals an error for negative time
12791 arguments.
12792
12793 2012-06-30 Chong Yidong <cyd@gnu.org>
12794
12795 * xml.el (xml-*-re): Convert defvars into defconsts, and
12796 eval-and-compile them so eval-and-compile works on derivatives.
12797 (xml--entity-replacement-text): Use eval-and-comple.
12798
12799 2012-06-30 Michael Albinus <michael.albinus@gmx.de>
12800
12801 * vc/vc-git.el (vc-git-registered): Use cache property
12802 `git-registered'.
12803 (vc-git-mode-line-string): Call `vc-working-revision' instead of
12804 `vc-git-working-revision' in order to benefit from the cache.
12805 (vc-git-root): Use cache property `git-root'. (Bug#11757)
12806
12807 2012-06-30 Dmitry Gutov <dgutov@yandex.ru>
12808
12809 * vc/vc-hooks.el (vc-before-save): Clear cache if file has been
12810 removed (likely outside Emacs). (Bug#11757)
12811
12812 2012-06-30 Stefan Monnier <monnier@iro.umontreal.ca>
12813
12814 * emacs-lisp/cl-lib.el: Require macroexp.
12815
12816 2012-06-30 Chong Yidong <cyd@gnu.org>
12817
12818 * xml.el: Implement XML parameter entities.
12819 (xml-parameter-entity-alist): New variable.
12820 (xml-parse-region, xml-parse-fragment): Preserve previous values
12821 of xml-entity-alist and xml-parameter-entity-alist, so that
12822 repeated calls on different documents do not change them.
12823 (xml-parse-tag): Fix doctype regexp.
12824 (xml--entity-replacement-text): New function.
12825 (xml-parse-dtd): Use it. Don't handle system entities; doing that
12826 properly requires url retrieval which is unimplemented.
12827 (xml-escape-string): Doc fix.
12828
12829 2012-06-30 Stefan Monnier <monnier@iro.umontreal.ca>
12830
12831 * emacs-lisp/cl-lib.el (cl-pushnew): Use macroexp-let2.
12832
12833 2012-06-29 Dmitry Antipov <dmantipov@yandex.ru>
12834
12835 * fringe.el (fringe-mode): Doc fix.
12836
12837 2012-06-29 Michael Albinus <michael.albinus@gmx.de>
12838
12839 * net/ange-ftp.el (ange-ftp-get-passwd): Throw if `non-essential'
12840 is non-nil.
12841 (ange-ftp-ignore-errors-if-non-essential): New defmacro.
12842 (ange-ftp-file-name-all-completions): Use it. (Bug#11808)
12843
12844 2012-06-29 Andreas Schwab <schwab@linux-m68k.org>
12845
12846 * calendar/cal-dst.el (calendar-current-time-zone):
12847 Return calendar-current-time-zone-cache if non-nil.
12848
12849 2012-06-29 Masatake YAMATO <yamato@redhat.com>
12850
12851 * progmodes/which-func.el (which-func-format):
12852 Add mouse-face. (Bug#11698)
12853
12854 2012-06-29 Leo Liu <sdl.web@gmail.com>
12855
12856 * textmodes/enriched.el (enriched-next-annotation): Use eq (Bug#11528).
12857
12858 2012-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
12859
12860 * minibuffer.el (minibuffer-confirm-exit-commands):
12861 Add completion-at-point (bug#11725).
12862
12863 2012-06-29 Glenn Morris <rgm@gnu.org>
12864
12865 * progmodes/f90.el (f90-font-lock-keywords-2):
12866 Add some preprocessor elements. (Bug#10499)
12867
12868 2012-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
12869
12870 * progmodes/cperl-mode.el (cperl-update-syntaxification):
12871 Use syntax-propertize (bug#11739).
12872
12873 2012-06-28 Juanma Barranquero <lekktu@gmail.com>
12874
12875 * emacs-lisp/cl-lib.el (cl-pushnew): Don't capture X (bug#11811).
12876
12877 2012-06-28 Julien Danjou <julien@danjou.info>
12878
12879 * term.el (term-handle-colors-array): Use a set of new faces to
12880 color the terminal. Also uses :inverse-video property.
12881 (term-default-fg-color): Set to nil by default, deprecate in favor
12882 of `term-face'.
12883 (term-default-bg-color): Set to nil by default, deprecate in favor
12884 of `term-face'.
12885 (term-current-face): Use `term-face' by default.
12886 (term-bold-attribute): Variable deleted.
12887
12888 2012-06-28 Glenn Morris <rgm@gnu.org>
12889
12890 * simple.el (completion-list-mode-finish):
12891 Don't use toggle-read-only. (Since completion-list-mode has
12892 a special mode-class, it wasn't doing anything extra anyway.)
12893
12894 2012-06-28 Stefan Monnier <monnier@iro.umontreal.ca>
12895
12896 Make inlining of other-mode interpreted functions work (bug#11799).
12897 * emacs-lisp/bytecomp.el (byte-compile--refiy-function): New fun.
12898 (byte-compile): Use it to fix compilation of lexical-binding closures.
12899 * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Compile the
12900 function, if needed.
12901
12902 2012-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
12903
12904 * help-mode.el (help-make-xrefs): Don't just withstand
12905 cyclic-variable-indirection but any error in documentation-property.
12906
12907 * loadup.el (purify-flag): Pre-grow the hash-table to reduce the
12908 memory use.
12909 * bindings.el (bindings--define-key): New function.
12910 * vc/vc-hooks.el, replace.el, menu-bar.el, international/mule-cmds.el:
12911 * emacs-lisp/lisp-mode.el, buff-menu.el, bookmark.el:
12912 * bindings.el: Use it to purecopy define-key bindings.
12913
12914 * textmodes/rst.el (rst-adornment-faces-alist): Avoid copy-list.
12915
12916 * emacs-lisp/cl.el (flet): Mark obsolete.
12917 * emacs-lisp/cl-macs.el (cl-flet*): New macro.
12918 * vc/vc-rcs.el (vc-rcs-annotate-command, vc-rcs-parse):
12919 * progmodes/js.el (js-c-fill-paragraph):
12920 * progmodes/ebrowse.el (ebrowse-switch-member-buffer-to-sibling-class)
12921 (ebrowse-switch-member-buffer-to-derived-class):
12922 * play/5x5.el (5x5-solver): Use cl-flet.
12923
12924 * emacs-lisp/cl.el: Use lexical-binding. Fix flet (bug#11780).
12925 (cl--symbol-function): New macro.
12926 (cl--letf, cl--letf*): Use it.
12927
12928 * emacs-lisp/easy-mmode.el (easy-mmode-pretty-mode-name):
12929 Strip "toggle-" if any.
12930
12931 2012-06-27 Glenn Morris <rgm@gnu.org>
12932
12933 * info.el (Info-default-directory-list): Move here from paths.el.
12934 * paths.el: Remove file, which is now empty.
12935 * loadup.el: No longer load "paths".
12936
12937 * custom.el (custom-initialize-delay): Doc fix.
12938
12939 * eshell/em-alias.el, eshell/em-banner.el, eshell/em-basic.el:
12940 * eshell/em-cmpl.el, eshell/em-dirs.el, eshell/em-glob.el:
12941 * eshell/em-hist.el, eshell/em-ls.el, eshell/em-pred.el:
12942 * eshell/em-prompt.el, eshell/em-rebind.el, eshell/em-script.el:
12943 * eshell/em-smart.el, eshell/em-term.el, eshell/em-unix.el:
12944 * eshell/em-xtra.el: Replace eshell-defgroup with "(progn (defgroup".
12945 * eshell/eshell.el (eshell-defgroup): Remove alias.
12946
12947 2012-06-27 Chong Yidong <cyd@gnu.org>
12948
12949 * help.el (help-enable-auto-load): New variable.
12950
12951 * help-fns.el (help-fns--autoloaded-p): New function.
12952 (describe-function-1): Refer to a function as "autoloaded" if it
12953 was autoloaded at any time in the past. Perform autoloading if
12954 help-enable-auto-load is non-nil.
12955
12956 2012-06-26 Eli Zaretskii <eliz@gnu.org>
12957
12958 * makefile.w32-in (compile, compile-always): Depend on
12959 update-subdirs, not on subdirs.el. Otherwise, several different
12960 sub-targets of 'bootstrap' running in parallel could
12961 simultaneously write to subdirs.el, producing a garbled file.
12962
12963 2012-06-26 Sam Steingold <sds@gnu.org>
12964
12965 * files.el (file-name-base): New convenience function.
12966 * autoinsert.el, cus-dep.el, doc-view.el, image-dired.el:
12967 * woman.el, eshell/esh-cmd.el, progmodes/ada-xref.el:
12968 * progmodes/cc-defs.el, progmodes/cperl-mode.el:
12969 * progmodes/flymake.el, progmodes/gud.el, progmodes/idlwave.el:
12970 * textmodes/ispell.el, textmodes/reftex-ref.el:
12971 * textmodes/tex-mode.el: Use it.
12972 Did not touch cedet and org because they are maintained elsewhere.
12973
12974 2012-06-26 Martin Rudalics <rudalics@gmx.at>
12975
12976 * calendar/calendar.el (calendar-exit): Don't try to delete or
12977 iconify last frame. See:
12978 http://lists.gnu.org/archive/html/emacs-devel/2012-06/msg00372.html
12979
12980 2012-06-25 Jim Diamond <Jim.Diamond@AcadiaU.ca> (tiny change)
12981
12982 * server.el (server-process-filter): Remember dir in the
12983 process's `server-client-directory' properties.
12984
12985 2012-06-24 Chong Yidong <cyd@gnu.org>
12986
12987 * xml.el (xml-parse-tag): Correctly handle comment embedded in
12988 non-tag text.
12989
12990 2012-06-23 Juanma Barranquero <lekktu@gmail.com>
12991
12992 * makefile.w32-in (COMPILE_FIRST): Synch with changes in 2012-06-22T21:24:54Z!monnier@iro.umontreal.ca.
12993
12994 2012-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
12995
12996 * help-fns.el (describe-variable): Don't croak when doc is not found.
12997 * vc/pcvs.el (cvs-retrieve-revision): Avoid toggle-read-only.
12998 * menu-bar.el (menu-bar-line-wrapping-menu): Purecopy a tiny bit more.
12999 * emacs-lisp/syntax.el (syntax-ppss): Simplify with new `if' place.
13000 * emacs-lisp/smie.el (smie-next-sexp): CSE.
13001 * emacs-lisp/macroexp.el (macroexp-let2): Fix edebug spec and avoid
13002 ((lambda ..) ..).
13003 * emacs-lisp/eieio.el (eieio-oref, slot-value): Use simpler defsetf.
13004
13005 2012-06-23 Chong Yidong <cyd@gnu.org>
13006
13007 * info.el (Info-mouse-follow-link): Accept symbol values of
13008 link-args. Select window; suggested by Gerhard Kahl (Bug#11672).
13009 (Info-fontify-node): Use Info-link-keymap for all navigation
13010 buttons, with link-args property to perform the desired action.
13011 (Info-link-keymap): Doc fix.
13012 (Info-next-link-keymap, Info-prev-link-keymap)
13013 (Info-up-link-keymap): Delete now-unused keymaps.
13014
13015 2012-06-23 Chong Yidong <cyd@gnu.org>
13016
13017 * mouse.el (mouse-drag-track): Deactivate the mark before popping.
13018
13019 * progmodes/python.el (python-skeleton-define): Mark abbrevs as
13020 system abbrevs.
13021
13022 * ansi-color.el (ansi-color-apply-on-region): Doc fix.
13023
13024 2012-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
13025
13026 * emacs-lisp/cl-macs.el (cl--make-usage-args): Handle improper lists
13027 (bug#11719).
13028
13029 * minibuffer.el (completion--twq-try): Try to fail more gracefully when
13030 the requote function doesn't work properly (bug#11714).
13031
13032 2012-06-23 Glenn Morris <rgm@gnu.org>
13033
13034 * pcmpl-rpm.el (pcmpl-rpm-packages): Give status messages.
13035
13036 2012-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
13037
13038 Further GV/CL cleanups.
13039 * emacs-lisp/gv.el (gv-get): Autoload functions to find their
13040 gv-expander.
13041 (gv--defun-declaration): New function.
13042 (defun-declarations-alist): Use it.
13043 (gv-define-modify-macro, gv-pushnew!, gv-inc!, gv-dec!): Remove.
13044 (gv-place): Autoload.
13045 * emacs-lisp/cl.el (cl--dotimes, cl--dolist): Remember subr.el's
13046 original definition of dotimes and dolist.
13047 * emacs-lisp/cl-macs.el (cl-expr-access-order): Remove unused.
13048 (cl-dolist, cl-dotimes): Use `dolist' and `dotimes'.
13049 * emacs-lisp/cl-lib.el: Move gv handlers from cl-macs to here.
13050 (cl-fifth, cl-sixth, cl-seventh, cl-eighth)
13051 (cl-ninth, cl-tenth): Move gv handler to the function's definition.
13052 * emacs-lisp/cl-extra.el (cl-subseq, cl-get, cl-getf): Move gv handler
13053 to the function's definition.
13054 * Makefile.in (COMPILE_FIRST): Re-order to speed it up by about 50%.
13055 * window.el:
13056 * files.el:
13057 * faces.el:
13058 * env.el: Don't use CL.
13059
13060 2012-06-22 Paul Eggert <eggert@cs.ucla.edu>
13061
13062 Support higher-resolution time stamps (Bug#9000).
13063
13064 * calendar/time-date.el (with-decoded-time-value): New arg
13065 PICO-SYMBOL in VARLIST. It's optional, for backward compatibility.
13066 (encode-time-value): New optional arg PICO. New type 3.
13067 (time-to-seconds) [!float-time]: Support the new picoseconds
13068 component if it's used.
13069 (seconds-to-time, time-subtract, time-add):
13070 Support ps-resolution time stamps as well.
13071
13072 * emacs-lisp/timer.el (timer): New component psecs. All uses changed.
13073 (timerp): Timer vectors now have length 9, not 8.
13074 (timer--time): Support new-style (4-part) time stamps.
13075 (timer-next-integral-multiple-of-time): Time stamps now have
13076 picosecond resolution, so take a bit more care about rounding.
13077 (timer-relative-time, timer-inc-time): New optional arg psecs.
13078 (timer-set-time-with-usecs): Set psecs to 0.
13079 (timer--activate): Check psecs component, too.
13080
13081 * proced.el (proced-time-lessp): Support ps-resolution stamps.
13082
13083 2012-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
13084
13085 * icomplete.el (icomplete-minibuffer-setup, icomplete-completions):
13086 Move the non-essential binding to the post/pre-command-hook where it is
13087 more obviously correct.
13088
13089 * subr.el (read-passwd): Don't use a history at all.
13090 * savehist.el (savehist-save): Remove password saved accidentally
13091 because of the above bug.
13092
13093 2012-06-22 Bastien Guerry <bzg@gnu.org>
13094
13095 * files.el (toggle-read-only): Display a message telling whether
13096 the buffer is read-only or not (bug#11726).
13097
13098 2012-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
13099
13100 * emacs-lisp/gv.el: New file.
13101 * subr.el (push, pop): Extend to generalized variables.
13102 * loadup.el (macroexp): Unload if preloaded and uncompiled (bug#11657).
13103 * emacs-lisp/cl-lib.el (cl-pop, cl-push, cl--set-nthcdr): Remove.
13104 * emacs-lisp/cl-macs.el: Require gv. Use gv-define-setter,
13105 gv-define-simple-setter, and gv-define-expander.
13106 Remove setf-methods defined in gv. Rename cl-setf -> setf.
13107 (cl-setf, cl-do-pop, cl-get-setf-method): Remove.
13108 (cl-letf, cl-letf*, cl-define-modify-macro, cl-defsetf)
13109 (cl-define-setf-expander, cl-struct-setf-expander): Move to cl.el.
13110 (cl-remf, cl-shiftf, cl-rotatef, cl-callf, cl-callf2): Rewrite with
13111 gv-letplace.
13112 (cl-defstruct): Don't define setf-method any more.
13113 * emacs-lisp/cl.el (flet): Don't autoload.
13114 (cl--letf, letf, cl--letf*, letf*, cl--gv-adapt)
13115 (define-setf-expander, defsetf, define-modify-macro)
13116 (cl-struct-setf-expander): Move from cl-lib.el.
13117 * emacs-lisp/syntax.el:
13118 * emacs-lisp/ewoc.el:
13119 * emacs-lisp/smie.el:
13120 * emacs-lisp/cconv.el:
13121 * emacs-lisp/timer.el: Rename cl-setf -> setf, cl-push -> push.
13122 (timer--time): Use gv-define-simple-setter.
13123 * emacs-lisp/macroexp.el (macroexp-let2): Rename from macroexp-let²
13124 to avoid coding-system problems in subr.el. Adjust all users.
13125 (macroexp--maxsize, macroexp-small-p): New functions.
13126 * emacs-lisp/bytecomp.el (byte-compile-file): Don't use cl-letf.
13127 * scroll-bar.el (scroll-bar-mode):
13128 * simple.el (auto-fill-mode, overwrite-mode, binary-overwrite-mode)
13129 (normal-erase-is-backspace-mode): Don't use the `eq' place.
13130 * winner.el (winner-configuration, winner-make-point-alist)
13131 (winner-set-conf, winner-get-point, winner-set): Don't abuse letf.
13132 * files.el (locate-file-completion-table): Avoid list*.
13133
13134 2012-06-22 Chong Yidong <cyd@gnu.org>
13135
13136 * dired-aux.el (dired-do-create-files): Doc fix (Bug#11327).
13137 (dired-create-files): Doc fix (Bug#11329).
13138 (dired-do-copy): Doc fix (Bug#11334).
13139 (dired-mark-read-string): Doc fix (Bug#11553).
13140
13141 * dired.el (dired-recursive-copies, dired-recursive-deletes):
13142 Doc fix (Bug#11326).
13143 (dired-make-relative): Doc fix (Bug#11332). Remove unused arg.
13144 (dired-dwim-target): Doc fix.
13145
13146 * wdired.el (wdired-mode): Doc fix.
13147
13148 2012-06-22 Glenn Morris <rgm@gnu.org>
13149
13150 * pcmpl-rpm.el (pcmpl-rpm-cache): New option.
13151 (pcmpl-rpm-cache-stamp-file): New constant.
13152 (pcmpl-rpm-cache-time, pcmpl-rpm-packages): New variables.
13153 (pcmpl-rpm-packages): Optionally cache list of packages.
13154
13155 * pcmpl-rpm.el (pcmpl-rpm): New group.
13156 (pcmpl-rpm-query-options): New option.
13157 (pcmpl-rpm-packages): No need to inline it.
13158 Use pcmpl-rpm-query-options.
13159
13160 * calendar/calendar.el (calendar-in-read-only-buffer):
13161 Avoid some needless mode changes.
13162
13163 2012-06-21 Chong Yidong <cyd@gnu.org>
13164
13165 * desktop.el (desktop-read): Don't prompt if daemon (Bug#11674).
13166 (desktop-path): Remove . from the default value (Bug#10977).
13167 (desktop-read): Use user-emacs-directory if desktop-path is nil.
13168
13169 2012-06-20 Chong Yidong <cyd@gnu.org>
13170
13171 * term.el (term-send-raw-meta): Make C-M-<char> keys work (Bug#8172).
13172
13173 2012-06-20 David Röthlisberger <david@rothlis.net> (tiny change)
13174
13175 * ido.el (ido-switch-buffer, ido-find-file): Fix up doc of C-j
13176 (bug#11201).
13177
13178 2012-06-20 Chong Yidong <cyd@gnu.org>
13179
13180 * term.el (term-window-width): Handle the case of a missing right
13181 fringe (Bug#8837).
13182 (term-check-size): Use window-text-height (Bug#5445).
13183 (term-mode): Use define-derived-mode. Minor cleanups.
13184 Set font-lock-defaults (Bug#7692).
13185 (term-move-columns, term-insert-char, term-emulate-terminal)
13186 (term-erase-in-line, term-insert-spaces): Use font-lock-face.
13187
13188 2012-06-20 Michael Albinus <michael.albinus@gmx.de>
13189
13190 * net/ange-ftp.el (ange-ftp-get-passwd):
13191 Bind `enable-recursive-minibuffers'.
13192 (ange-ftp-get-process): Throw if `non-essential' is non-nil.
13193
13194 2012-06-19 David Röthlisberger <david@rothlis.net> (tiny change)
13195
13196 * ido.el (ido-find-file): Mention C-d binding in docstring (bug#11244).
13197
13198 2012-06-19 Glenn Morris <rgm@gnu.org>
13199
13200 * progmodes/python.el (python-mode): Derive from prog-mode.
13201
13202 2012-06-19 Kevin Gallagher <Kevin.Gallagher@boeing.com>
13203
13204 * emulation/edt.el (edt-default-menu-bar-update-buffers)
13205 (edt-user-menu-bar-update-buffers): New functions.
13206 (edt-default-emulation-setup, edt-user-emulation-setup): Use them.
13207
13208 2012-06-19 Chong Yidong <cyd@gnu.org>
13209
13210 * subr.el (with-selected-window): Preserve the selected window's
13211 terminal's top-frame (Bug#4702).
13212
13213 * window.el (save-selected-window): Likewise.
13214
13215 2012-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
13216
13217 * progmodes/python.el (python-rx-constituents): Move backquote.
13218 (python-skeleton-define, python-define-auxiliary-skeleton):
13219 Use `declare'.
13220
13221 2012-06-18 Michael Albinus <michael.albinus@gmx.de>
13222
13223 * minibuffer.el (read-file-name-default): Revert the patch from
13224 2012-06-17.
13225
13226 2012-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
13227
13228 * emacs-lisp/pcase.el (pcase--expand): Warn for unused pattern.
13229 (pcase--u1, pcase--q1): Don't use apply-partially.
13230
13231 2012-06-18 Glenn Morris <rgm@gnu.org>
13232
13233 * progmodes/python.el (python-proc, python-buffer)
13234 (python-send-receive, python-send-string): Fix obsolete versions.
13235
13236 2012-06-18 Martin Rudalics <rudalics@gmx.at>
13237
13238 * window.el (special-display-p): Completely remove stringp
13239 check. Suggested by Andreas Schwab <schwab@linux-m68k.org>.
13240
13241 2012-06-17 Michael Albinus <michael.albinus@gmx.de>
13242
13243 * minibuffer.el (read-file-name-default): Bind `non-essential' to `t'.
13244
13245 * net/tramp.el (tramp-file-name-handler): Catch 'non-essential.
13246
13247 * net/ange-ftp.el (ange-ftp-gwp-start, ange-ftp-start-process):
13248 * net/tramp-sh.el (tramp-maybe-open-connection):
13249 Throw if `non-essential' is non-nil.
13250
13251 2012-06-17 Martin Rudalics <rudalics@gmx.at>
13252
13253 * window.el (special-display-p): Signal an error if BUFFER-NAME
13254 is not a string (Bug#11713).
13255
13256 2012-06-17 Paul Eggert <eggert@cs.ucla.edu>
13257
13258 * progmodes/python.el (python-info-beginning-of-backslash):
13259 Rename from python-info-beginning-of-backlash, as a spelling fix.
13260
13261 2012-06-17 Chong Yidong <cyd@gnu.org>
13262
13263 * term.el (term-emulate-terminal): If term-check-size is called,
13264 move point to the process mark without resetting point (Bug#4635).
13265
13266 2012-06-17 Glenn Morris <rgm@gnu.org>
13267
13268 * international/mule-cmds.el (mule-menu-keymap)
13269 (set-language-environment, set-locale-environment): Doc tweaks.
13270
13271 2012-06-16 Aurelien Aptel <aurelien.aptel@gmail.com>
13272
13273 * cus-face.el (custom-face-attributes): Add wave-style underline
13274 attribute.
13275 * faces.el (set-face-attribute): Update docstring to describe
13276 wave-style underline attribute.
13277
13278 2012-06-16 Chong Yidong <cyd@gnu.org>
13279
13280 * term/xterm.el (terminal-init-xterm): Discard input before
13281 querying background mode (Bug#10959).
13282
13283 2012-06-16 Stefan Merten <smerten@oekonux.de>
13284
13285 * textmodes/rst.el: Added and corrected some comments.
13286 (rst-re-alist-def): Improve symbol syntax.
13287 (rst-mode-syntax-table): Correct syntax entries.
13288 (rst-cvs-header, rst-svn-rev, rst-svn-timestamp)
13289 (rst-official-version, rst-official-cvs-rev): Update version
13290 information.
13291
13292 2012-06-15 Juanma Barranquero <lekktu@gmail.com>
13293
13294 * makefile.w32-in (COMPILE_FIRST): Synch with makefile.in changes
13295 in 2008-06-22T13:57:28Z!monnier@iro.umontreal.ca.
13296
13297 2012-06-15 Fabián Ezequiel Gallina <fgallina@cuca>
13298
13299 * progmodes/python.el: New python.el merge.
13300 (python-guess-indent): Obsolete var.
13301 (python-indent-guess-indent-offset): New defcustom.
13302 (python-indent): Obsolete var.
13303 (python-indent-offset): New defcustom.
13304 (python-python-command, python-jython-command): Delete var.
13305 (python-shell-interpreter): New defcustom.
13306 (python-pdbtrack-do-tracking-p): Delete var.
13307 (python-pdbtrack-activate): New defcustom.
13308 (python-use-skeletons): Obsolete var.
13309 (python-skeleton-autoinsert): New defcustom.
13310 (inferior-python-filter-regexp, python-continuation-offset)
13311 (python-honour-comment-indentation, python-indent-string-contents)
13312 (python-jython-packages, python-mode-hook)
13313 (python-pdbtrack-minor-mode-string, python-remove-cwd-from-path)
13314 (python-shell-prompt-alist)
13315 (python-source-modes): Delete defcustoms.
13316 (python-check-buffer-name, python-eldoc-setup-code)
13317 (python-eldoc-string-code, python-ffap-setup-code)
13318 (python-ffap-string-code, python-fill-comment-function)
13319 (python-fill-decorator-function, python-fill-paren-function)
13320 (python-fill-string-function, python-imenu-include-defun-type)
13321 (python-imenu-make-tree, python-imenu-subtree-root-label)
13322 (python-pdbtrack-stacktrace-info-regexp, python-shell-buffer-name)
13323 (python-shell-compilation-regexp-alist)
13324 (python-shell-completion-module-string-code)
13325 (python-shell-completion-pdb-string-code)
13326 (python-shell-completion-setup-code)
13327 (python-shell-completion-string-code)
13328 (python-shell-enable-font-lock, python-shell-exec-path)
13329 (python-shell-extra-pythonpaths)
13330 (python-shell-internal-buffer-name, python-shell-interpreter-args)
13331 (python-shell-process-environment)
13332 (python-shell-prompt-block-regexp)
13333 (python-shell-prompt-output-regexp)
13334 (python-shell-prompt-pdb-regexp, python-shell-prompt-regexp)
13335 (python-shell-send-setup-max-wait, python-shell-setup-codes)
13336 (python-shell-virtualenv-path): New defcustoms.
13337 (brm-menu, eldoc-documentation-function, inferior-python-mode-map)
13338 (inferior-python-mode-syntax-table, python--prompt-regexp)
13339 (python-buffer, python-command python-python-command)
13340 (python-default-template, python-imports, python-indent-index)
13341 (python-indent-list, python-indent-list-length)
13342 (python-mode-running, python-pdbtrack-is-tracking-p)
13343 (python-preoutput-continuation, python-preoutput-leftover)
13344 (python-preoutput-result, python-preoutput-skip-next-prompt)
13345 (python-prev-dir/file, python-recursing)
13346 (python-saved-check-command, python-version-checked)
13347 (python-which-func-length-limit)
13348 (view-return-to-alist): Delete vars.
13349 (python-check-custom-command, python-dotty-syntax-table)
13350 (python-imenu-index-alist, python-indent-current-level)
13351 (python-indent-dedenters, python-indent-levels)
13352 (python-nav-beginning-of-defun-regexp)
13353 (python-nav-list-defun-positions-cache)
13354 (python-pdbtrack-buffers-to-kill, python-pdbtrack-tracked-buffer)
13355 (python-shell-internal-buffer)
13356 (python-skeleton-available): New vars.
13357 (def-python-skeleton): Delete macro.
13358 (python-skeleton-define): New macro.
13359 (python-define-auxiliary-skeleton, python-rx): New macros.
13360 (python-insert-class): Delete command.
13361 (python-skeleton-class): New command.
13362 (python-insert-def): Delete command.
13363 (python-skeleton-def): New command.
13364 (python-insert-for): Delete command.
13365 (python-skeleton-for): New command.
13366 (python-insert-if): Delete command.
13367 (python-skeleton-if): New command.
13368 (python-insert-try/except, python-insert-try/finally): Delete commands.
13369 (python-skeleton-try): New command.
13370 (python-insert-while): Delete command.
13371 (python-skeleton-while): New command.
13372 (python-backspace): Delete command.
13373 (python-indent-dedent-line-backspace): New command.
13374 (python-electric-colon): Delete command.
13375 (python-indent-electric-colon): New command.
13376 (python-guess-indent): Delete command.
13377 (python-indent-guess-indent-offset): New command.
13378 (python-shift-left): Delete command.
13379 (python-indent-shift-left): New command.
13380 (python-shift-right): Delete command.
13381 (python-indent-shift-right): New command.
13382 (python-find-function): Delete command.
13383 (python-nav-jump-to-defun): New command.
13384 (python-next-statement): Delete command.
13385 (python-nav-forward-sentence): New command.
13386 (python-previous-statement): Delete command.
13387 (python-nav-backward-sentence): New command.
13388 (python-fill-paragraph): Delete command.
13389 (python-fill-paragraph-function): New command.
13390 (python-send-buffer): Delete command.
13391 (python-shell-send-buffer): New command.
13392 (python-send-defun): Delete command.
13393 (python-shell-send-defun): New command.
13394 (python-send-region, python-send-region-and-go): Delete commands.
13395 (python-shell-send-region)
13396 (python-shell-switch-to-shell): New commands.
13397 (python-send-string): Delete command.
13398 (python-shell-send-string): New command.
13399 (python-switch-to-python): Delete command.
13400 (python-shell-switch-to-shell): New command.
13401 (python-describe-symbol): Delete command.
13402 (python-eldoc-at-point): New command.
13403 (python--set-prompt-regexp, python-args-to-list)
13404 (python-after-info-look, python-check-version)
13405 (python-check-comint-prompt, python-find-imports)
13406 (python-execute-file, turn-off-pdbtrack, turn-on-pdbtrack)
13407 (python-unload-function, python-expand-template)
13408 (python-maybe-jython, python-preoutput-filter)
13409 (python-pdbtrack-get-source-buffer)
13410 (python-pdbtrack-grub-for-buffer, python-pdbtrack-overlay-arrow)
13411 (python-pdbtrack-toggle-stack-tracking)
13412 (python-pdbtrack-track-stack-file, python-initial-text)
13413 (python-first-word, python-comment-line-p, python-send-command)
13414 (python-setup-brm, python-sentinel, python-set-proc)
13415 (python-skip-out, python-input-filter, python-outdent-p)
13416 (python-outline-level, python-backslash-continuation-line-p)
13417 (python-end-of-block, python-end-of-statement, python-mark-block)
13418 (python-beginning-of-block, python-beginning-of-statement)
13419 (python-blank-line-p, python-beginning-of-string)
13420 (python-open-block-statement-p): Delete functions.
13421 (python-indent-line, python-indent-line-1): Delete functions.
13422 (python-indent-line): New function.
13423 (python-indentation-levels): Delete function.
13424 (python-indent-calculate-levels): New function.
13425 (python-proc): Delete function.
13426 (python-shell-get-process): New function.
13427 (python-send-receive): Delete function.
13428 (python-shell-send-string-no-output): New function.
13429 (python-module-path): Delete function.
13430 (python-ffap-module-path): New function.
13431 (python-completion-at-point)
13432 (python-symbol-completions): Delete functions.
13433 (python-completion-complete-at-point): New function.
13434 (python-load-file): Delete function.
13435 (python-shell-send-file): New function.
13436 (python-calculate-indentation): Delete function.
13437 (python-indent-calculate-indentation): New function.
13438 (python-skip-comments/blanks): Delete function.
13439 (python-util-forward-comment): New function.
13440 (python-continuation-line-p): Delete function.
13441 (python-info-continuation-line-p): New function.
13442 (python-which-func, python-current-defun): Delete function.
13443 (python-info-current-defun): New function.
13444 (python-beginning-of-defun): Delete function.
13445 (python-nav-beginning-of-defun): New function.
13446 (python-close-block-statement-p)
13447 (python-block-end-p): Delete function.
13448 (python-info-closing-block): New function.
13449 (python-comint-output-filter-function)
13450 (python-eldoc--get-doc-at-point, python-end-of-defun-function)
13451 (python-fill-comment, python-fill-decorator, python-fill-paren)
13452 (python-fill-string, python-imenu-make-element-tree)
13453 (python-imenu-make-tree, python-imenu-tree-assoc)
13454 (python-indent-context, python-indent-dedent-line)
13455 (python-indent-line-function)
13456 (python-indent-post-self-insert-function)
13457 (python-indent-toggle-levels)
13458 (python-info-assignment-continuation-line-p)
13459 (python-info-beginning-of-backlash)
13460 (python-info-block-continuation-line-p)
13461 (python-info-closing-block-message)
13462 (python-info-line-ends-backslash-p)
13463 (python-info-looking-at-beginning-of-defun)
13464 (python-info-ppss-context, python-info-ppss-context-type)
13465 (python-nav-list-defun-positions, python-nav-read-defun)
13466 (python-nav-sentence-end, python-nav-sentence-start)
13467 (python-pdbtrack-comint-output-filter-function)
13468 (python-pdbtrack-set-tracked-buffer)
13469 (python-shell-calculate-exec-path)
13470 (python-shell-calculate-process-environment)
13471 (python-shell-completion--do-completion-at-point)
13472 (python-shell-completion--get-completions)
13473 (python-shell-completion-complete-at-point)
13474 (python-shell-completion-complete-or-indent)
13475 (python-shell-get-or-create-process)
13476 (python-shell-get-process-name)
13477 (python-shell-internal-get-or-create-process)
13478 (python-shell-internal-get-process-name)
13479 (python-shell-internal-send-string, python-shell-make-comint)
13480 (python-shell-parse-command, python-shell-send-setup-code)
13481 (python-skeleton-add-menu-items)
13482 (python-util-clone-local-variables, python-util-position)
13483 (run-python-internal, python-indentation-levels)
13484 (python-nav-beginning-of-defun)
13485 (python-completion-complete-at-point): New functions.
13486 (run-python): Change arguments. New API requirements.
13487
13488 2012-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
13489
13490 * emacs-lisp/cl-lib.el (cl--defsubst-expand): Autoload inliner
13491 (bug#11649).
13492
13493 * emacs-lisp/macroexp.el (macroexp--compiler-macro): New function.
13494 (macroexp--expand-all): Use it.
13495
13496 * emacs-lisp/cl-macs.el (cl--transform-function-property): Remove.
13497 (cl-define-setf-expander, cl-deftype, cl-define-compiler-macro):
13498 Use `cl-function' instead.
13499
13500 2012-06-14 Juanma Barranquero <lekktu@gmail.com>
13501
13502 * makefile.w32-in (COMPILE_FIRST): Remove subr.el.
13503 Suggested by Stefan Monnier while discussing bug#11657.
13504
13505 2012-06-14 Sam Steingold <sds@gnu.org>
13506
13507 * files.el (abort-if-file-too-large): Use `file-size-human-readable'.
13508
13509 2012-06-14 Andreas Schwab <schwab@linux-m68k.org>
13510
13511 * play/doctor.el (doctor-doc): Remove parameter and use
13512 doctor-sent instead of sent.
13513 (doctor-read-print): Use doctor-sent instead of sent. (Bug#11708)
13514
13515 2012-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
13516
13517 * files.el: Require cl-lib.
13518 (file-name-non-special): Replace case -> cl-case.
13519
13520 * emacs-lisp/cl-macs.el (cl-defstruct): Don't add print-func.
13521
13522 * emacs-lisp/edebug.el (edebug-read-function): Remove old incorrect
13523 mapping from #' to function*.
13524
13525 2012-06-13 Chong Yidong <cyd@gnu.org>
13526
13527 * mouse.el (mouse-drag-track): Do not set the mark if the user
13528 releases the mouse without selecting anything (Bug#11588).
13529
13530 2012-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
13531
13532 * textmodes/tex-mode.el (latex-indent): Recognize tex-verbatim at EOB
13533 as well (bug#11646).
13534
13535 * loadup.el: Count byte-code functions as well.
13536
13537 * emacs-lisp/byte-opt.el (featurep): Move compiler-macro...
13538 * emacs-lisp/bytecomp.el (featurep): ...here (bug#11692).
13539
13540 * emacs-lisp/autoload.el (make-autoload): Accept nil doc-string-elt
13541 (bug#11649). Add cl-defun and cl-defmacro.
13542
13543 2012-06-13 Drew Adams <drew.adams@oracle.com>
13544
13545 * help-mode.el (help-bookmark-make-record, help-bookmark-jump):
13546 Fix last change.
13547
13548 2012-06-13 Michael Albinus <michael.albinus@gmx.de>
13549
13550 * net/dbus.el (dbus-call-method): Use timeout for `read-event'.
13551 Otherwise, it blocks in batch mode.
13552
13553 2012-06-13 Juanma Barranquero <lekktu@gmail.com>
13554
13555 * help-mode.el (bookmark-make-record-default): Declare.
13556
13557 2012-06-13 Chong Yidong <cyd@gnu.org>
13558
13559 * emacs-lisp/package.el (list-packages): Compute a list of
13560 packages that are newly-available since the last list-packages
13561 invocation.
13562 (package-menu--new-package-list): New var.
13563 (package-menu--generate, package-menu--print-info)
13564 (package-menu--status-predicate, package-menu-mark-install):
13565 Handle new status label "new".
13566
13567 2012-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
13568
13569 * emacs-lisp/cl-macs.el (cl-remf): Fix error in recent
13570 conversion to backquotes.
13571
13572 2012-06-12 Chong Yidong <cyd@gnu.org>
13573
13574 * emacs-lisp/edebug.el (edebug-inhibit-emacs-lisp-mode-bindings):
13575 Rename from gud-inhibit-global-bindings.
13576
13577 * emacs-lisp/eieio.el (eieio-pre-method-execution-hooks): Doc fix.
13578
13579 * nxml/nxml-glyph.el (nxml-glyph-set-functions): Rename abnormal
13580 hook from nxml-glyph-set-hook.
13581
13582 * progmodes/cwarn.el (cwarn-mode): Remove redundant variable
13583 declaration.
13584
13585 * progmodes/pascal.el (pascal-toggle-completions): Doc fix.
13586
13587 * textmodes/bibtex.el (bibtex-string-file-path, bibtex-file-path):
13588 Convert to defcustom.
13589
13590 2012-06-12 Drew Adams <drew.adams@oracle.com>
13591
13592 * help-mode.el (help-bookmark-make-record, help-bookmark-jump):
13593 New functions.
13594 (help-mode): Use them.
13595
13596 2012-06-11 Glenn Morris <rgm@gnu.org>
13597
13598 * progmodes/fortran.el (fortran-font-lock-keywords-3):
13599 Use preprocessor face for directives.
13600 (fortran-directive-re): Doc fix.
13601
13602 2012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
13603
13604 * emacs-lisp/cl-macs.el (cl-parse-loop-clause): Fix error in recent
13605 conversion to backquotes (bug#11652).
13606
13607 Fix compiler-expansion of CL's cXXr functions (bug#11673).
13608 * emacs-lisp/cl-lib.el (cl--defalias): New function.
13609 (cl-values, cl-values-list, cl-copy-seq, cl-svref, cl-first)
13610 (cl-second, cl-rest, cl-endp, cl-third, cl-fourth): Use it.
13611 (cl-plusp, cl-minusp, cl-fifth, cl-sixth, cl-seventh, cl-eighth)
13612 (cl-ninth, cl-tenth): Mark them as inlinable.
13613 (cl-caaar, cl-caadr, cl-cadar, cl-caddr, cl-cdaar, cl-cdadr)
13614 (cl-cddar, cl-cdddr, cl-caaaar, cl-caaadr, cl-caadar, cl-caaddr)
13615 (cl-cadaar, cl-cadadr, cl-caddar, cl-cadddr, cl-cdaaar, cl-cdaadr)
13616 (cl-cdadar, cl-cdaddr, cl-cddaar, cl-cddadr, cl-cdddar, cl-cddddr):
13617 Add a compiler-macro declaration to use cl--compiler-macro-cXXr.
13618 (cl-list*, cl-adjoin): Don't put an autoload manually.
13619 * emacs-lisp/cl-macs.el (cl--compiler-macro-adjoin)
13620 (cl--compiler-macro-list*): Add autoload cookie.
13621 (cl--compiler-macro-cXXr): New function.
13622
13623 * help-fns.el (help-fns--compiler-macro): New function extracted from
13624 describe-function-1; follow aliases and use `compiler-macro' property.
13625 (describe-function-1): Use it.
13626
13627 2012-06-11 Chong Yidong <cyd@gnu.org>
13628
13629 * startup.el (fancy-splash-head): Use splash.svg even if librsvg
13630 is uninstalled, if imagemagick is installed.
13631
13632 2012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
13633
13634 * emacs-lisp/cl-lib.el: Use lexical-binding.
13635 (cl-map-extents, cl-maclisp-member): Remove.
13636 (cl--set-elt, cl--set-nthcdr, cl--set-buffer-substring)
13637 (cl--set-substring, cl--block-wrapper, cl--block-throw)
13638 (cl--compiling-file, cl--mapcar-many, cl--do-subst): Use "cl--" prefix.
13639 * emacs-lisp/cl-extra.el: Use lexical-binding.
13640 (cl--mapcar-many, cl--map-keymap-recursively, cl--map-intervals)
13641 (cl--map-overlays, cl--set-frame-visible-p, cl--progv-save)
13642 (cl--progv-before, cl--progv-after, cl--finite-do, cl--set-getf)
13643 (cl--do-remf, cl--do-prettyprint): Use "cl--" prefix.
13644 * emacs-lisp/cl-seq.el: Use lexical-binding.
13645 (cl--parsing-keywords, cl--check-key, cl--check-test-nokey)
13646 (cl--check-test, cl--check-match): Use "cl--" prefix and backquotes.
13647 (cl--alist, cl--sublis-rec, cl--nsublis-rec, cl--tree-equal-rec):
13648 * emacs-lisp/cl-macs.el (cl--lambda-list-keywords): Use "cl--" prefix.
13649 * edmacro.el (edmacro-mismatch): Simplify to remove dependence on
13650 CL's internals.
13651
13652 2012-06-11 Michael Albinus <michael.albinus@gmx.de>
13653
13654 Sync with Tramp 2.2.6-pre.
13655
13656 * net/tramp-cache.el (tramp-dump-connection-properties): Let-bind
13657 `print-length' and `print-level' to nil, in order to avoid
13658 truncation. Reported by Christopher Schmidt
13659 <christopher@ristopher.com>.
13660
13661 * net/tramp-cmds.el (tramp-cleanup-connection): Delete also process.
13662
13663 * net/tramp-compat.el (tramp-compat-condition-case-unless-debug):
13664 New defmacro.
13665 (tramp-compat-copy-directory): Add optional argument
13666 COPY-CONTENTS. It is not handled yet.
13667
13668 * net/tramp-ftp.el (tramp-disable-ange-ftp): Fix docstring.
13669 (tramp-ftp-file-name-p): Simplify.
13670
13671 * net/tramp-gvfs.el (tramp-gvfs-handle-expand-file-name):
13672 * net/tramp-gw.el (tramp-gw-open-connection): Add hop to
13673 connection vector.
13674
13675 * net/tramp-sh.el (tramp-copy-size-limit): Fix docstring.
13676 (tramp-methods): Do not use `tramp-password-end-of-line'.
13677 (tramp-completion-function-alist-putty): Handle UNIX case.
13678 (tramp-remote-path): Add "/opt/bin", "/opt/sbin" and "/opt/local/bin".
13679 (tramp-do-file-attributes-with-stat)
13680 (tramp-do-directory-files-and-attributes-with-stat) Return uid and
13681 gid as real numbers. They could run out of integer range on cygwin.
13682 (tramp-do-copy-or-rename-file-out-of-band): Better trace format.
13683 (tramp-sh-handle-expand-file-name): Handle hops.
13684 (tramp-open-connection-setup-interactive-shell):
13685 Use `tramp-cleanup'. Move check for busyboxes ...
13686 (tramp-find-shell): ... here. Simplify implementation.
13687 Set "remote-shell" property also for alternative shells.
13688 (tramp-remote-coding-commands): Check "test -c /dev/stdout".
13689 If failing, a regular file would be written otherwise.
13690 Reported by Dmitry Kurochkin <dmitry.kurochkin@gmail.com>.
13691 (tramp-find-inline-encoding): Cache the coding commands in the
13692 process cache. Apply test command on the remote side, if defined.
13693 (tramp-find-inline-compress): Cache the compress commands in the
13694 process cache.
13695 (tramp-compute-multi-hops): Save `tramp-default-proxies-alist'
13696 when requested. Handle hops.
13697 (tramp-current-connection): New defvar.
13698 (tramp-maybe-open-connection): Use `tramp-cleanup'.
13699 Throw `suppress', if there was a failed connection shortly before.
13700 Handle user interrupt. (Bug#10187)
13701 (tramp-get-inline-compress, tramp-get-inline-coding):
13702 Read connection properties from the process cache.
13703
13704 * net/tramp-smb.el (tramp-smb-server-version)
13705 (tramp-smb-wrong-passwd-regexp, tramp-smb-actions-with-tar):
13706 New defconsts.
13707 (tramp-smb-prompt): Extend for powershell prompt.
13708 (tramp-smb-file-name-handler-alist): Add handlers for
13709 `process-file', `shell-command' and `start-file-process'.
13710 (tramp-smb-winexe-program, tramp-smb-winexe-shell-command)
13711 (tramp-smb-winexe-shell-command-switch): New defcustoms.
13712 (tramp-smb-file-name-p): Simplify.
13713 (tramp-smb-action-with-tar, tramp-smb-handle-process-file)
13714 (tramp-smb-kill-winexe-function, tramp-smb-call-winexe)
13715 (tramp-smb-shell-quote-argument): New defuns.
13716 (tramp-smb-handle-copy-directory): Add COPY-CONTENTS argument.
13717 Implement using "tar". By this, time-stamps are preserved.
13718 (tramp-smb-handle-copy-file): Handle also the case of directories.
13719 (tramp-smb-do-file-attributes-with-stat)
13720 (tramp-smb-get-file-entries, tramp-smb-get-cifs-capabilities):
13721 Use `tramp-get-connection-buffer').
13722 (tramp-smb-handle-rename-file): Use "rename", when source and
13723 target are on the same share.
13724 (tramp-smb-maybe-open-connection): Handle wrong passwords.
13725 Use `tramp-smb-server-version'.
13726 (tramp-smb-wait-for-output): Remove prompt.
13727
13728 * net/tramp.el (top): Require 'cl.
13729 (tramp-methods, tramp-rsh-end-of-line):
13730 Remove `tramp-password-end-of-line' from docstring.
13731 (tramp-save-ad-hoc-proxies): New defcustom.
13732 (tramp-completion-function-alist): Adapt docstring.
13733 (tramp-default-password-end-of-line): Remove defcustom.
13734 (tramp-shell-prompt-pattern): Allow "[]" style prompts. (Bug#11065)
13735 (tramp-user-regexp, tramp-file-name-regexp-unified)
13736 (tramp-file-name-regexp-url): Extend regexp by hop separator.
13737 (tramp-postfix-hop-format, tramp-postfix-hop-regexp)
13738 (tramp-remote-file-name-spec-regexp): New defconst.
13739 (tramp-file-name-structure): Extend structure for hops.
13740 (tramp-get-method-parameter): Move up.
13741 (tramp-file-name-p, tramp-dissect-file-name)
13742 (with-parsed-tramp-file-name): Handle hops.
13743 (tramp-file-name-hop): New defun.
13744 (tramp-make-tramp-file-name): New optional arg HOP.
13745 (tramp-message-show-progress-reporter-message): New defvar.
13746 (tramp-with-progress-reporter): Use it. We cannot use
13747 `tramp-message-show-message' here, because this suppresses also
13748 error buffers.
13749 (tramp-error-with-buffer): Suppress buffer view, if
13750 `tramp-message-show-message' is nil.
13751 Use `tramp-get-connection-buffer'.
13752 (tramp-cleanup): New defun.
13753 (tramp-rfn-eshadow-update-overlay): Let-bind `non-essential' to `t'.
13754 (tramp-file-name-handler): If `debug-on-error' is set, propagate
13755 an error unchanged.
13756 (tramp-completion-handle-file-name-all-completions): Handle hops.
13757 Fix an error when called from ido.
13758 (tramp-completion-dissect-file-name): Use better local variable
13759 name. Add hop to the vector.
13760 (tramp-handle-insert-file-contents): Use progress-reporter for the
13761 whole scenario.
13762 (tramp-action-password): Let-bind `enable-recursive-minibuffers'
13763 to `t'.
13764 (tramp-check-for-regexp): Simplify search.
13765 (tramp-enter-password): Remove it. Move implementation ...
13766 (tramp-action-password): ... here.
13767 (tramp-mode-string-to-int, tramp-local-host-p)
13768 (tramp-make-tramp-temp-file, tramp-read-passwd)
13769 (tramp-clear-passwd, tramp-time-less-p, tramp-time-diff):
13770 Set tramp-autoload cookie.
13771
13772 * net/trampver.el: Update release number.
13773
13774 2012-06-11 Thierry Volpiatto <thierry.volpiatto@gmail.com>
13775 Michael Albinus <michael.albinus@gmx.de>
13776
13777 * net/tramp.el (tramp-set-completion-function): Fix docstring.
13778 (tramp-parse-group, tramp-parse-file)
13779 (tramp-parse-shostkeys-sknownhosts): New defuns.
13780 (tramp-parse-rhosts, tramp-parse-rhosts-group, tramp-parse-shosts)
13781 (tramp-parse-shosts-group, tramp-parse-sconfig)
13782 (tramp-parse-sconfig-group, tramp-parse-shostkeys)
13783 (tramp-parse-sknownhosts, tramp-parse-hosts)
13784 (tramp-parse-hosts-group, tramp-parse-passwd, tramp-parse-netrc):
13785 Use them.
13786 (tramp-parse-passwd-group, tramp-parse-netrc-group)
13787 (tramp-parse-putty-group): Don't narrow.
13788 (tramp-parse-putty): Make a loop.
13789 (tramp-file-name-handler): Catch the `suppress' signal.
13790
13791 2012-06-11 Chong Yidong <cyd@gnu.org>
13792
13793 * image.el (imagemagick-register-types): Put the ImageMagick entry
13794 at the end of image-type-file-name-regexps.
13795
13796 2012-06-11 Johan Bockgård <bojohan@gnu.org>
13797
13798 * emacs-lisp/pcase.el (pcase-UPAT, pcase-QPAT): New edebug specs.
13799 (pcase, pcase-let*, pcase-dolist): Use them.
13800
13801 2012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
13802
13803 * emacs-lisp/pcase.el (pcase--let*): New function.
13804 (pcase-let*): Use it. Use pcase--memoize to avoid repeated expansions.
13805 (pcase--expand): Use macroexp-let².
13806
13807 2012-06-10 Stefan Monnier <monnier@iro.umontreal.ca>
13808
13809 * emacs-lisp/timer.el, emacs-lisp/syntax.el, emacs-lisp/smie.el:
13810 * emacs-lisp/ewoc.el, emacs-lisp/cconv.el, emacs-lisp/bytecomp.el:
13811 * emacs-lisp/byte-opt.el, emacs-lisp/autoload.el: Convert to cl-lib.
13812 * emacs-lisp/easymenu.el, emacs-lisp/easy-mmode.el:
13813 * emacs-lisp/derived.el: Use pcase instead of `cl'.
13814 * emacs-lisp/cl-lib.el: Get rid of special cl-macs auto load.
13815
13816 2012-06-10 Glenn Morris <rgm@gnu.org>
13817
13818 * mail/rmail.el (rmail-yank-current-message): Leave point at
13819 correct position. (Bug#11660)
13820
13821 2012-06-10 Chong Yidong <cyd@gnu.org>
13822
13823 * allout-widgets.el: Fix code header.
13824
13825 2012-06-10 Chong Yidong <cyd@gnu.org>
13826
13827 * cus-edit.el (customize-changed-options-previous-release):
13828 Bump to 24.1.
13829
13830 2012-06-09 Andreas Schwab <schwab@linux-m68k.org>
13831
13832 * Makefile.in (BIG_STACK_DEPTH): Enlarge to 2200.
13833
13834 2012-06-09 Chong Yidong <cyd@gnu.org>
13835
13836 * ebuff-menu.el (electric-buffer-list): Preserve header line.
13837
13838 2012-06-09 Martin Rudalics <rudalics@gmx.at>
13839
13840 * window.el (special-display-popup-frame): Don't use
13841 window--display-buffer (Bug#11651).
13842
13843 2012-06-09 Eli Zaretskii <eliz@gnu.org>
13844
13845 Fix parallel builds: make sure loaddefs.el is not being written
13846 while Lisp files are compiled.
13847 (compile): Don't depend on 'mh-autoloads'.
13848 (compile-CMD, compile-SH): Depend on 'autoloads'.
13849 (bootstrap): Don't depend on 'autoloads' and 'mh-autoloads'.
13850
13851 * makefile.w32-in (BIG_STACK_DEPTH): Enlarge to 2200. (Bug#11649)
13852
13853 2012-06-09 Chong Yidong <cyd@gnu.org>
13854
13855 * face-remap.el (face-remap-add-relative, face-remap-set-base)
13856 (buffer-face-set, buffer-face-toggle, buffer-face-mode-invoke):
13857 Doc fixes (Bug#11225).
13858
13859 2012-06-09 Stefan Monnier <monnier@iro.umontreal.ca>
13860
13861 * emacs-lisp/macroexp.el (macroexp--expand-all): Only autoload
13862 a function if there's a clear indication that it has a compiler-macro.
13863 * emacs-lisp/byte-run.el (defun-declarations-alist, defmacro, defun)
13864 (macro-declarations-alist): Add arglist to declaration functions.
13865 (defun-declarations-alist): Add `obsolete' and `compiler-macro'.
13866 * emacs-lisp/cl-seq.el (cl-member, cl-assoc):
13867 * emacs-lisp/cl-lib.el (cl-list*, cl-adjoin):
13868 * emacs-lisp/cl-extra.el (cl-get): Use the new `declare' statement.
13869 Also add autoload to find the compiler macro.
13870 * emacs-lisp/cl-macs.el (eql) [compiler-macro]: Remove.
13871 (cl--compiler-macro-member, cl--compiler-macro-assoc)
13872 (cl--compiler-macro-adjoin, cl--compiler-macro-list*)
13873 (cl--compiler-macro-get): New functions, replacing calls to
13874 cl-define-compiler-macro.
13875 (cl-typep) [compiler-macro]: Use macroexp-let².
13876
13877 2012-06-08 Nick Dokos <nicholas.dokos@hp.com> (tiny change)
13878
13879 * calendar/icalendar.el (icalendar--parse-vtimezone): Import TZID
13880 string properly, fixes Bug#11473.
13881
13882 2012-06-08 Chong Yidong <cyd@gnu.org>
13883
13884 * faces.el (set-face-attribute): Doc fix.
13885 (modify-face): Don't use :bold and :italic.
13886 (error, warning, success): Tweak definitions.
13887
13888 * cus-edit.el (custom-modified, custom-invalid, custom-rogue)
13889 (custom-modified, custom-set, custom-changed, custom-themed)
13890 (custom-saved, custom-button, custom-button-mouse)
13891 (custom-button-pressed, custom-state, custom-comment-tag)
13892 (custom-variable-tag, custom-group-tag-1, custom-group-tag)
13893 (custom-group-subtitle): Use new-style face specs.
13894 (custom-invalid-face, custom-rogue-face, custom-modified-face)
13895 (custom-set-face, custom-changed-face, custom-saved-face)
13896 (custom-button-face, custom-button-pressed-face)
13897 (custom-documentation-face, custom-state-face)
13898 (custom-comment-face, custom-comment-tag-face)
13899 (custom-variable-tag-face, custom-variable-button-face)
13900 (custom-face-tag-face, custom-group-tag-face-1)
13901 (custom-group-tag-face): Remove obsolete face alias.
13902
13903 * epa.el (epa-validity-high, epa-validity-medium)
13904 (epa-validity-low, epa-mark, epa-field-name, epa-string)
13905 (epa-field-name, epa-field-body):
13906 * font-lock.el (font-lock-comment-face, font-lock-string-face)
13907 (font-lock-keyword-face, font-lock-builtin-face)
13908 (font-lock-function-name-face, font-lock-variable-name-face)
13909 (font-lock-type-face, font-lock-constant-face):
13910 * ido.el (ido-first-match, ido-only-match, ido-subdir)
13911 (ido-virtual, ido-indicator, ido-incomplete-regexp):
13912 * speedbar.el (speedbar-button-face, speedbar-file-face)
13913 (speedbar-directory-face, speedbar-tag-face)
13914 (speedbar-selected-face, speedbar-highlight-face)
13915 (speedbar-separator-face):
13916 * whitespace.el (whitespace-newline, whitespace-space)
13917 (whitespace-hspace, whitespace-tab, whitespace-trailing)
13918 (whitespace-line, whitespace-space-before-tab)
13919 (whitespace-space-after-tab, whitespace-indentation)
13920 (whitespace-empty):
13921 * emulation/cua-base.el (cua-global-mark):
13922 * eshell/em-prompt.el (eshell-prompt):
13923 * net/newst-plainview.el (newsticker-new-item-face)
13924 (newsticker-old-item-face, newsticker-immortal-item-face)
13925 (newsticker-obsolete-item-face, newsticker-date-face)
13926 (newsticker-statistics-face, newsticker-default-face):
13927 * net/newst-reader.el (newsticker-feed-face)
13928 (newsticker-extra-face, newsticker-enclosure-face):
13929 * net/newst-treeview.el (newsticker-treeview-face)
13930 (newsticker-treeview-new-face, newsticker-treeview-old-face)
13931 (newsticker-treeview-immortal-face)
13932 (newsticker-treeview-obsolete-face)
13933 (newsticker-treeview-selection-face):
13934 * net/rcirc.el (rcirc-my-nick, rcirc-other-nick)
13935 (rcirc-bright-nick, rcirc-server, rcirc-timestamp)
13936 (rcirc-nick-in-message, rcirc-nick-in-message-full-line)
13937 (rcirc-prompt, rcirc-track-keyword, rcirc-url, rcirc-keyword):
13938 * nxml/nxml-outln.el (nxml-heading, nxml-outline-indicator)
13939 (nxml-outline-active-indicator, nxml-outline-ellipsis):
13940 * play/mpuz.el (mpuz-unsolved, mpuz-solved, mpuz-trivial)
13941 (mpuz-text):
13942 * progmodes/vera-mode.el (vera-font-lock-number)
13943 (vera-font-lock-function, vera-font-lock-interface):
13944 * textmodes/table.el (table-cell): Use new-style face specs, and
13945 don't use the old :bold and :italic attributes.
13946
13947 * progmodes/ebrowse.el (ebrowse-tree-mark, ebrowse-root-class)
13948 (ebrowse-member-attribute, ebrowse-default, ebrowse-file-name)
13949 (ebrowse-member-class, ebrowse-progress): Likewise.
13950 (ebrowse-tree-mark-face, ebrowse-root-class-face)
13951 (ebrowse-file-name-face, ebrowse-default-face)
13952 (ebrowse-member-attribute-face, ebrowse-member-class-face)
13953 (ebrowse-progress-face): Remove obsolete faces.
13954
13955 * progmodes/flymake.el (flymake-errline, flymake-warnline):
13956 Inherit from error and warning faces respectively.
13957
13958 * textmodes/flyspell.el (flyspell-incorrect, flyspell-duplicate):
13959 Likewise.
13960 (flyspell-incorrect-face, flyspell-duplicate-face):
13961 Remove obsolete aliases.
13962
13963 2012-06-08 Michael Albinus <michael.albinus@gmx.de>
13964
13965 * net/tramp-compat.el (tramp-compat-temporary-file-directory):
13966 Avoid infloop.
13967
13968 2012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
13969
13970 * startup.el (argv, argi): Make lexically scoped.
13971 * emacs-lisp/float-sup.el (pi): Use internal-make-var-non-special.
13972 * emacs-lisp/cl-macs.el: Use lexical-binding.
13973 Rename cl-bind-* to cl--bind-*.
13974 * files.el: Don't require `cl' since it doesn't use it.
13975 * emacs-lisp/pcase.el, emacs-lisp/macroexp.el: Add coding cookie.
13976
13977 2012-06-08 Juanma Barranquero <lekktu@gmail.com>
13978
13979 * textmodes/texinfmt.el: Fix bug#11640 (reverts part of 2008-07-31T05:33:56Z!dann@ics.uci.edu).
13980 (texinfo-format-printindex): Use `texinfo-sort-region' in all platforms,
13981 instead of calling external sort utility.
13982 (texinfo-sort-region, texinfo-sort-startkeyfun): Restore functions.
13983
13984 2012-06-08 Eli Zaretskii <eliz@gnu.org>
13985
13986 * descr-text.el (describe-char): Mention how to insert the
13987 character, if the current input method doesn't support it.
13988 See the discussion in this thread for the details:
13989 http://lists.gnu.org/archive/html/emacs-devel/2012-05/msg00533.html.
13990
13991 2012-06-08 Sam Steingold <sds@gnu.org>
13992
13993 * bindings.el (global-map): Bind XF86Forward to next-buffer and
13994 XF86Back to previous-buffer.
13995 (minibuffer-local-map): Bind them to next-history-element and
13996 previous-history-element respectively.
13997 * help-mode.el (help-mode-map): Bind them to help-go-forward and
13998 help-go-back respectively.
13999 * info.el (Info-mode-map): Bind them to Info-history-forward and
14000 Info-history-back respectively.
14001 These are the keys next to Up on the ThinkPad keyboard.
14002
14003 2012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
14004
14005 Get rid of cl-lexical-let, keeping only lexical-let for compatibility.
14006 * emacs-lisp/cl-macs.el: Provide itself.
14007 (cl--labels-convert-cache): New var.
14008 (cl--labels-convert): New function.
14009 (cl-flet, cl-labels): New implementation with new semantics, relying on
14010 lexical-binding.
14011 * emacs-lisp/cl.el: Mark compatibility aliases as obsolete.
14012 (cl-closure-vars, cl--function-convert-cache)
14013 (cl--function-convert): Move from cl-macs.el.
14014 (lexical-let, lexical-let*, flet, labels): Move from cl-macs.el and
14015 rename by removing the "cl-" prefix.
14016 * emacs-lisp/macroexp.el (macroexp-unprogn): New function.
14017
14018 2012-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
14019
14020 * emacs-lisp/cl.el (cl-macroexpand, cl-macro-environment)
14021 (cl-macroexpand-all, cl-not-hash-table, cl-builtin-gethash)
14022 (cl-builtin-remhash, cl-builtin-clrhash, cl-builtin-maphash)
14023 (cl-map-keymap, cl-copy-tree, cl-gethash, cl-puthash, cl-remhash)
14024 (cl-clrhash, cl-maphash, cl-make-hash-table, cl-hash-table-p)
14025 (cl-hash-table-count): Add old compatibility aliases.
14026
14027 * emacs-lisp/cl-macs.el (cl-macro-environment): Remove var.
14028 Use macroexpand-all-environment instead.
14029 (cl--old-macroexpand): New var.
14030 (cl--sm-macroexpand): New function.
14031 (cl-symbol-macrolet): Use it during macro expansion.
14032 (cl--function-convert-cache): New var.
14033 (cl--function-convert): New function, extracted from
14034 cl-macroexpand-all.
14035 (cl-lexical-let): Use it.
14036
14037 * emacs-lisp/cl-lib.el (cl-macro-environment): Remove decl.
14038 (cl-macroexpand): Move to cl-macs.el and rename to cl--sm-macroexpand.
14039 (cl-member): Remove old alias.
14040
14041 * emacs-lisp/cl-extra.el (cl-map-keymap, cl-copy-tree)
14042 (cl-not-hash-table, cl-builtin-gethash, cl-builtin-remhash)
14043 (cl-builtin-clrhash, cl-builtin-maphash, cl-gethash, cl-puthash)
14044 (cl-remhash, cl-clrhash, cl-maphash, cl-make-hash-table)
14045 (cl-hash-table-p, cl-hash-table-count): Move to cl.el.
14046 (cl-macroexpand-cmacs): Remove var.
14047 (cl-macroexpand-all, cl-macroexpand-body): Remove funs.
14048 Use macroexpand-all instead.
14049
14050 2012-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
14051
14052 * emacs-lisp/macroexp.el (macroexp-progn, macroexp-let*, macroexp-if)
14053 (macroexp-let², macroexp--const-symbol-p, macroexp-const-p)
14054 (macroexp-copyable-p): New functions and macros.
14055 * emacs-lisp/edebug.el (edebug-unwrap):
14056 * emacs-lisp/disass.el (disassemble-internal): Use macroexp-progn.
14057 * emacs-lisp/pcase.el: Use macroexp-let*, macroexp-if, ...
14058 (pcase--let*): Remove.
14059 * emacs-lisp/bytecomp.el (byte-compile-const-symbol-p)
14060 (byte-compile-constp): Remove. Use macroexp--const-symbol-p and
14061 macroexp-const-p instead.
14062 * emacs-lisp/byte-opt.el: Use macroexp-const-p and macroexp-progn.
14063
14064 * emacs-lisp/cl-macs.el: Clean up the name space by using "cl--"
14065 instead of "cl-" for internal definitions. Use macroexp-const-p.
14066 (cl-old-bc-file-form): Remove var.
14067 (cl-const-exprs-p): Remove fun.
14068 (cl-labels, cl-macrolet): Use backquote.
14069 (cl-lexical-let): Use cl-symbol-macrolet. Don't use cl-defun-expander.
14070 (cl-defun-expander, cl-byte-compile-compiler-macro): Remove fun.
14071 (cl-define-setf-expander): Rename from cl-define-setf-method.
14072 * emacs-lisp/cl.el: Adjust alias for define-setf-method.
14073
14074 * international/mule-cmds.el: Don't require CL.
14075 (view-hello-file): Don't use `letf'.
14076
14077 2012-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
14078
14079 * tmm.el (tmm-prompt): Use string-prefix-p.
14080 (tmm-completion-delete-prompt): Don't affect current-buffer outside.
14081 (tmm-add-prompt): Use minibuffer-completion-help.
14082 (tmm-delete-map): Remove.
14083
14084 * subr.el (kbd): Make it its own function.
14085
14086 2012-06-07 Stefan Merten <smerten@oekonux.de>
14087
14088 * textmodes/rst.el: Use `eval-when-compile' for requiring `cl.el'.
14089 Silence compiler warnings. Fix versions.
14090 (rst-position-if, rst-position, rst-some, rst-signum): New functions.
14091 (rst-shift-region, rst-adornment-level, rst-compute-tabs)
14092 (rst-indent-line, rst-shift-region, rst-forward-line): Use them.
14093 (rst-package-emacs-version-alist): Correct Emacs version to
14094 represent major merge with upstream.
14095 (rst-transition, rst-adornment, rst-compile-toolsets): Fix versions.
14096
14097 2012-06-06 Glenn Morris <rgm@gnu.org>
14098
14099 * mail/emacsbug.el (report-emacs-bug): Add relevant EMACS env-vars.
14100 Only print environment variables if set.
14101
14102 2012-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
14103
14104 * emacs-lisp/macroexp.el: Don't require CL since we don't use it.
14105 (macroexp--cons): Rename from maybe-cons.
14106 (macroexp--accumulate): Rename from macroexp-accumulate.
14107 (macroexp--all-forms): Rename from macroexpand-all-forms.
14108 (macroexp--all-clauses): Rename from macroexpand-all-clauses.
14109 (macroexp--expand-all): Rename from macroexpand-all-1.
14110
14111 2012-06-06 Sam Steingold <sds@gnu.org>
14112
14113 * calendar/calendar.el (calendar-in-read-only-buffer):
14114 Call `special-mode' to enable the standard read-only keybindings.
14115
14116 2012-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
14117
14118 * emacs-lisp/macroexp.el (macroexpand-all-1): Don't spam the output
14119 with "loading" messages (bug#11635).
14120
14121 2012-06-06 Michael Albinus <michael.albinus@gmx.de>
14122
14123 * files.el (enable-remote-dir-locals): New option.
14124 (hack-dir-local-variables): Use it. (Bug#1933, Bug#6731)
14125
14126 * net/tramp-compat.el (tramp-compat-temporary-file-directory):
14127 Ensure, that the temp directory is local.
14128
14129 * net/tramp-sh.el (tramp-sh-handle-write-region): Let-bind
14130 `temporary-file-directory'.
14131
14132 * progmodes/python.el (python-send-region): Ensure, that the
14133 temporary file is created also in the remote case.
14134
14135 2012-06-06 Glenn Morris <rgm@gnu.org>
14136
14137 * vc/vc-rcs.el (vc-rcs-rcs2log-program): New.
14138 (vc-rcs-update-changelog): Use it.
14139
14140 * emacs-lisp/authors.el (authors-fixed-entries): Remove vcdiff.
14141
14142 * vc/vc-sccs.el (vc-sccs-write-revision): New function.
14143 (vc-sccs-workfile-unchanged-p): Use vc-sccs-write-revision.
14144 (vc-sccs-diff): Replace use of the external vcdiff script.
14145
14146 2012-06-05 Glenn Morris <rgm@gnu.org>
14147
14148 * ledit.el: Move to obsolete/.
14149
14150 2012-06-05 Sam Steingold <sds@gnu.org>
14151
14152 * calendar/calendar.el (calendar-exit): Reinstate the 2012-03-28
14153 patch (Bug#11140).
14154
14155 2012-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
14156
14157 * emacs-lisp/cust-print.el: Move to obsolete.
14158
14159 * emacs-lisp/macroexp.el (macroexpand-all-1): Tolerate errors during
14160 compiler-macro expansion.
14161
14162 Add native compiler-macro support.
14163 * emacs-lisp/macroexp.el (macroexpand-all-1):
14164 Support compiler-macros directly. Properly follow aliases and apply
14165 the compiler macros more thoroughly.
14166 * emacs-lisp/cl.el: Don't copy compiler-macro properties any more since
14167 macroexpand now properly follows aliases.
14168 * emacs-lisp/cl-macs.el (toplevel, cl-define-compiler-macro)
14169 (cl-compiler-macroexpand): Use new prop.
14170 * emacs-lisp/byte-opt.el (featurep): Optimize earlier.
14171
14172 * emacs-lisp/cl-lib.el (custom-print-functions): Add alias.
14173
14174 2012-06-05 Martin Rudalics <rudalics@gmx.at>
14175
14176 * window.el (get-lru-window, get-mru-window, get-largest-window):
14177 New argument NOT-SELECTED to avoid picking the selected window.
14178 (window--display-buffer-1, window--display-buffer-2): Replace by
14179 new function window--display-buffer
14180 (display-buffer-same-window, display-buffer-reuse-window)
14181 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
14182 Use window--display-buffer.
14183 (display-buffer-use-some-window): Remove temporary dedication
14184 hack by calling get-lru-window and get-largest-window with
14185 NOT-SELECTED argument non-nil. Call window--display-buffer.
14186
14187 2012-06-05 Glenn Morris <rgm@gnu.org>
14188
14189 * vc/vc-sccs.el (vc-sccs-workfile-unchanged-p):
14190 Replace external vcdiff script.
14191
14192 2012-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
14193
14194 * emacs-lisp/cl-lib.el (cl-values, cl-values-list): Fix up last change.
14195
14196 2012-06-04 Chong Yidong <cyd@gnu.org>
14197
14198 * image.el (imagemagick-types-inhibit): Revert last change.
14199 Add INFO and M.
14200 (imagemagick-enabled-types): Remove CIN and EPS*.
14201
14202 2012-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
14203
14204 * emacs-lisp/cl-lib.el: Rename from cl.el.
14205 * emacs-lisp/cl.el: New compatibility file.
14206 * emacs-lisp/cl-lib.el, emacs-lisp/cl-seq.el, emacs-lisp/cl-macs.el:
14207 * emacs-lisp/cl-extra.el: Rename all top-level functions and variables
14208 to obey the "cl-" prefix.
14209 * emacs-lisp/macroexp.el (macroexpand-all-1): Adjust to new name.
14210
14211 2012-06-03 Glenn Morris <rgm@gnu.org>
14212
14213 * emacs-lisp/authors.el (authors-aliases): Addition.
14214
14215 * cus-start.el (tool-bar-style, tool-bar-max-label-size):
14216 Fix :version.
14217
14218 2012-06-03 Stefan Merten <smerten@oekonux.de>
14219
14220 * textmodes/rst.el: Add comments.
14221 (rst-transition, rst-adornment): New faces.
14222 (rst-adornment-faces-alist): Make default safe to reevaluate.
14223 Fixes
14224 http://sourceforge.net/tracker/?func=detail&atid=422030&aid=3479603&group_id=38414.
14225 Improve customization tags.
14226 (rst-define-level-faces): Clarify meaning.
14227
14228 2012-06-03 Chong Yidong <cyd@gnu.org>
14229
14230 * progmodes/compile.el (compilation-mode-line-fail)
14231 (compilation-mode-line-run, compilation-mode-line-exit):
14232 New faces.
14233 (compilation-start, compilation-handle-exit): Use them (Bug#11032).
14234
14235 2012-06-03 Jack Duthen <duthen.mac.01@gmail.com> (tiny change)
14236
14237 * progmodes/which-func.el (which-func-update-ediff-windows):
14238 New function. Use it in ediff-select-hook (Bug#11478).
14239
14240 2012-06-03 Chong Yidong <cyd@gnu.org>
14241
14242 * bindings.el: Remove explicit help text from format-mode-line.
14243 It is now supplied by mode-line-default-help-echo.
14244 (mode-line-front-space, mode-line-end-spaces)
14245 (mode-line-misc-info): New variables.
14246 (mode-line-modes, mode-line-position): Move the default value to
14247 the variable definition.
14248 (mode-line-default-help-echo): New defcustom.
14249 (mode-line-mule-info-help-echo, mode-line-read-only-help-echo)
14250 (mode-line-modified-help-echo): New functions.
14251 (mode-line-mule-info, mode-line-modified): Use them.
14252 (mode-line-eol-desc, propertized-buffer-identification):
14253 Consistency fixes for help text.
14254 (mode-line-coding-system-map): Allow using mouse-3 to invoke
14255 set-buffer-file-coding-system (Bug#289).
14256 (mode-line-mule-info-help-echo): Update help text.
14257
14258 2012-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
14259
14260 * simple.el (execute-extended-command): Set real-this-command
14261 (bug#11506).
14262
14263 2012-06-02 Chong Yidong <cyd@gnu.org>
14264
14265 Remove incorrect uses of "modeline" in comments, docstrings, and
14266 function/variable names (Bug#10329).
14267
14268 * cus-edit.el (mode-line):
14269 * dframe.el (dframe-mouse-hscroll):
14270 * emacs-lisp/re-builder.el:
14271 * emacs-lisp/easy-mmode.el (define-minor-mode):
14272 * frame.el (set-frame-name):
14273 * help.el (lookup-minor-mode-from-indicator):
14274 * net/rcirc.el (rcirc-activity-string, rcirc-short-buffer-name):
14275 * progmodes/cc-cmds.el (c-toggle-auto-newline)
14276 (c-toggle-hungry-state):
14277 * progmodes/antlr-mode.el (antlr-language-alist):
14278 * progmodes/idlw-shell.el (idlwave-shell-electric-stop-line-face):
14279 * progmodes/vhdl-mode.el (vhdl-mode):
14280 * progmodes/which-func.el (which-func, which-func-cleanup-function):
14281 * term/ns-win.el (ns-face-at-pos):
14282 * term/sup-mouse.el (sup-mouse-report):
14283 * textmodes/flyspell.el (flyspell-mode-line-string):
14284 * textmodes/ispell.el (ispell-highlight-face):
14285 * textmodes/reftex-global.el:
14286 * vc/vc-arch.el (vc-arch-mode-line-string):
14287 * vc/vc-cvs.el (vc-cvs-mode-line-string):
14288 * vc/vc-git.el (vc-git-mode-line-string):
14289 * vc/vc-hooks.el (vc-display-status)
14290 (vc-default-mode-line-string):
14291 * vc/vc-mtn.el (vc-mtn-mode-line-string): Doc fixes.
14292
14293 * ansi-color.el (ansi-color-faces-vector): Change default faces.
14294
14295 * dired.el (dired-sort-set-mode-line): Rename from
14296 dired-sort-set-modeline. All callers changed.
14297
14298 * eshell/esh-mode.el (eshell-status-in-mode-line): Rename from
14299 eshell-status-in-modeline.
14300
14301 * foldout.el (foldout-mode-line-string): Rename from
14302 foldout-modeline-string. All callers changed.
14303 (foldout-update-mode-line): Rename from foldout-update-modeline.
14304
14305 * subr.el (redraw-modeline): Make into obsolete alias.
14306
14307 * calendar/timeclock.el (timeclock-mode-line-display): Rename from
14308 timeclock-modeline-display. Make old name an alias.
14309 (timeclock-update-mode-line): Likewise. All callers changed.
14310 (timeclock-mode-line-display): No need to check before using
14311 add-hook.
14312 (timeclock-relative, timeclock-day-over-hook)
14313 (timeclock-use-elapsed, timeclock-mode-string)
14314 (timeclock-mode-line-display): Doc fix, "modeline" -> "mode line".
14315
14316 * emulation/crisp.el (crisp-mode-mode-line-string): Rename from
14317 crisp-mode-modeline-string.
14318
14319 * play/solitaire.el (solitaire-build-mode-line): Rename from
14320 solitaire-build-modeline. All callers changed.
14321
14322 * play/zone.el (zone-hiding-mode-line): Rename from
14323 zone-hiding-modeline. All callers changed.
14324 (zone): Remove unusued `modeline-hidden-level' property.
14325
14326 * progmodes/xscheme.el (xscheme-mode-line-initialize): Rename from
14327 xscheme-modeline-initialize. All callers changed.
14328
14329 * strokes.el (strokes-lighter): Rename from
14330 strokes-modeline-string.
14331
14332 * textmodes/sgml-mode.el (html-face-tag-alist)
14333 (html-tag-face-alist): Use mode-line face instead of obsolete
14334 alias modeline.
14335
14336 2012-06-02 Stefan Merten <smerten@oekonux.de>
14337
14338 * textmodes/rst.el: Always require `cl'.
14339 (rst-mode-map): Fix meaning of C-M-a / C-M-e.
14340
14341 2012-06-02 Chong Yidong <cyd@gnu.org>
14342
14343 * image.el (imagemagick-enabled-types): Rename from
14344 imagemagick-types-enable. Add many more types.
14345 (imagemagick-types-inhibit): Change default to nil.
14346 (imagemagick-filter-types): Caller changed.
14347
14348 2012-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
14349
14350 * emacs-lisp/cl-macs.el: Use backquotes.
14351 (cl-transform-function-property): Use eval-and-compile rather than
14352 abusing `require'.
14353 (defstruct): Use declare-function instead of with-no-warnings.
14354
14355 * emacs-lisp/bytecomp.el: Fix last change (bug#11594).
14356 (byte-compile-output-docform): Re-add the print-circle bindings.
14357 (byte-compile-fix-header): Use #$ just because it's shorter.
14358 (byte-compile-output-file-form): Remove defun/defmacro.
14359
14360 2012-06-01 Martin Rudalics <rudalics@gmx.at>
14361
14362 * simple.el (choose-completion): Remove now obsolete binding for
14363 owindow.
14364
14365 2012-06-01 Michael Albinus <michael.albinus@gmx.de>
14366
14367 * net/tramp.el (tramp-check-for-regexp): Search from buffer end,
14368 in order to avoid "Stack overflow in regexp matcher".
14369
14370 2012-05-31 Glenn Morris <rgm@gnu.org>
14371
14372 * image.el: For clarity, call imagemagick-register-types at
14373 top-level, rather than relying on a custom :initialize.
14374 (imagemagick-types-enable): New option. (Bug#11557)
14375 (imagemagick-filter-types): New function. (Bug#7406)
14376 (imagemagick-register-types): Use imagemagick-filter-types.
14377 If disabling support, remove elements altogether rather
14378 than using an impossible regexp.
14379 (imagemagick-types-inhibit): Give it the default init function.
14380
14381 2012-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
14382
14383 * emacs-lisp/bytecomp.el (byte-compile-fix-header):
14384 Handle arbitrary file name lengths (Bug#11585).
14385
14386 2012-05-31 Martin Rudalics <rudalics@gmx.at>
14387
14388 * desktop.el (desktop-read): Clear previous and next buffers for
14389 all windows and bury *Messages* buffer (bug#11556).
14390
14391 2012-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
14392
14393 Add `declare' for `defun'. Align `defmacro's with it.
14394 * emacs-lisp/easy-mmode.el (define-minor-mode)
14395 (define-globalized-minor-mode): Don't autoload the var definitions.
14396 * emacs-lisp/byte-run.el: Use lexical-binding.
14397 (defun-declarations-alist, macro-declarations-alist): New vars.
14398 (defmacro, defun): Use them.
14399 (make-obsolete, define-obsolete-function-alias)
14400 (make-obsolete-variable, define-obsolete-variable-alias):
14401 Use `declare'.
14402 (macro-declaration-function): Mark obsolete.
14403 * emacs-lisp/autoload.el: Use lexical-binding.
14404 (make-autoload): Add `expansion' arg. Rely more on macro expansion.
14405
14406 2012-05-30 Agustín Martín Domingo <agustin.martin@hispalinux.es>
14407
14408 * textmodes/ispell.el (ispell-with-no-warnings):
14409 Define as a macro.
14410 (ispell-kill-ispell, ispell-change-dictionary):
14411 Use `called-interactively-p' for Emacs instead of obsolete
14412 `interactive-p'.
14413
14414 2012-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
14415
14416 * emacs-lisp/byte-run.el (defmacro, defun): Move from C.
14417 (macro-declaration-function): Move var from C code.
14418 (macro-declaration-function): Define function with defalias.
14419 * emacs-lisp/macroexp.el (macroexpand-all-1):
14420 * emacs-lisp/cconv.el (cconv-convert, cconv-analyse-form):
14421 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker): Don't handle
14422 defun/defmacro any more.
14423 * emacs-lisp/bytecomp.el (byte-compile-arglist-signature):
14424 Provide fallback for unknown arglist.
14425 (byte-compile-arglist-warn): Change calling convention.
14426 (byte-compile-output-file-form): Move print-vars binding.
14427 (byte-compile-output-docform): Simplify accordingly.
14428 (byte-compile-file-form-defun, byte-compile-file-form-defmacro)
14429 (byte-compile-defmacro-declaration): Remove.
14430 (byte-compile-file-form-defmumble): Generalize to defalias.
14431 (byte-compile-output-as-comment): Return byte-positions.
14432 Simplify callers accordingly.
14433 (byte-compile-lambda): Use `assert'.
14434 (byte-compile-defun, byte-compile-defmacro): Remove.
14435 (byte-compile-file-form-defalias):
14436 Use byte-compile-file-form-defmumble.
14437 (byte-compile-defalias-warn): Remove.
14438
14439 2012-05-29 Stefan Merten <smerten@oekonux.de>
14440
14441 * textmodes/rst.el: Silence `checkdoc-ispell' errors where
14442 possible. Fix authors. Improve comments. Improve loading of `cl'.
14443
14444 (rst-mode-abbrev-table): Merge definition.
14445 (rst-mode): Make sure `font-lock-defaults' is buffer local.
14446 (rst-define-key, rst-deprecated-keys, rst-call-deprecated): Refactor.
14447
14448 2012-05-29 Ulf Jasper <ulf.jasper@web.de>
14449
14450 * calendar/icalendar.el
14451 (icalendar-export-region): Export UID properly.
14452
14453 2012-05-29 Leo Liu <sdl.web@gmail.com>
14454 * calendar/icalendar.el (icalendar-import-format):
14455 Add `icalendar-import-format-uid' (Bug#11525).
14456 (icalendar-import-format-uid): New.
14457 (icalendar--parse-summary-and-rest, icalendar--format-ical-event):
14458 Export UID.
14459
14460 2012-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
14461
14462 * emacs-lisp/pcase.el (pcase--expand): Accept different sets of vars in
14463 different alternative patterns.
14464 (pcase-codegen): Be more careful to preserve identity.
14465 (pcase--u1): Don't forget to mark vars as used.
14466
14467 * emacs-lisp/bytecomp.el (byte-compile-constp): Treat #'v as a constant.
14468 (byte-compile-close-variables): Bind byte-compile--outbuffer here...
14469 (byte-compile-from-buffer): ...rather than here.
14470
14471 * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Don't re-preprocess
14472 functions from byte-compile-function-environment.
14473
14474 2012-05-29 Troels Nielsen <bn.troels@gmail.com>
14475
14476 * window.el (window-deletable-p): Avoid deleting the root window
14477 of a frame with an active minibuffer.
14478
14479 2012-05-29 Martin Rudalics <rudalics@gmx.at>
14480
14481 * simple.el (choose-completion): Use quit-window (Bug#11567).
14482
14483 2012-05-29 Chong Yidong <cyd@gnu.org>
14484
14485 * whitespace.el (whitespace-cleanup): Fix usage of
14486 whitespace-empty-at-bob-regexp (Bug#11492).
14487
14488 2012-05-29 Aaron S. Hawley <aaron.s.hawley@gmail.com>
14489
14490 * vc/vc.el (vc-revert, vc-rollback): Dont kill vc-diff buffer on
14491 revert (Bug#11488).
14492
14493 2012-05-29 Juri Linkov <juri@jurta.org>
14494
14495 * isearch.el (isearch-mode-map): Bind `M-s _' to
14496 `isearch-toggle-symbol'. Bind `M-s c' to
14497 `isearch-toggle-case-fold'.
14498 (search-map): Bind `M-s _' to `isearch-forward-symbol'.
14499 (isearch-forward): Add `M-s _' to the docstring.
14500 (isearch-forward-symbol, isearch-toggle-case-fold)
14501 (isearch-symbol-regexp): New functions. (Bug#11381)
14502
14503 2012-05-29 Juri Linkov <juri@jurta.org>
14504
14505 * isearch.el (isearch-word): Add docstring. (Bug#11381)
14506 (isearch-occur, isearch-search-and-update): If `isearch-word' is
14507 a function, call it to get the regexp.
14508 (isearch-message-prefix): If `isearch-word' holds a symbol, use its
14509 property `isearch-message-prefix' instead of the string "word ".
14510 (isearch-search-fun-default): For the case of `isearch-word',
14511 return a lambda that calls re-search-forward/re-search-backward
14512 with a regexp returned by `word-search-regexp' or by the function
14513 in `isearch-word'.
14514
14515 2012-05-29 Juri Linkov <juri@jurta.org>
14516
14517 * isearch.el (isearch-search-fun-default): New function.
14518 (isearch-search-fun): Move default part to the new function
14519 `isearch-search-fun-default'.
14520 (isearch-search-fun-function): Set the default value to
14521 `isearch-search-fun-default'. (Bug#11381)
14522
14523 * comint.el (comint-history-isearch-end):
14524 Use `isearch-search-fun-default'.
14525 (comint-history-isearch-search): Use `isearch-search-fun-default'
14526 and remove spacial case for `isearch-word'.
14527 (comint-history-isearch-wrap): Remove spacial case for
14528 `isearch-word'.
14529
14530 * hexl.el (hexl-isearch-search-function):
14531 Use `isearch-search-fun-default'.
14532
14533 * info.el (Info-isearch-search): Use `isearch-search-fun-default'.
14534 Use `word-search-regexp' for `isearch-word'.
14535
14536 * misearch.el (multi-isearch-search-fun):
14537 Use `isearch-search-fun-default'.
14538
14539 * simple.el (minibuffer-history-isearch-search):
14540 Use `isearch-search-fun-default' and remove spacial case for
14541 `isearch-word'.
14542 (minibuffer-history-isearch-wrap): Remove spacial case for
14543 `isearch-word'.
14544
14545 * textmodes/reftex-global.el (reftex-isearch-wrap-function):
14546 Remove spacial case for `isearch-word'.
14547 (reftex-isearch-isearch-search): Use `isearch-search-fun-default'.
14548
14549 2012-05-28 Agustín Martín Domingo <agustin.martin@hispalinux.es>
14550
14551 Decrease XEmacs incompatibilities.
14552 * textmodes/flyspell.el (flyspell-check-pre-word-p):
14553 Use `string-match'.
14554 (flyspell-delete-region-overlays): Use alternative definition for
14555 XEmacs.
14556 (flyspell-delete-all-overlays): Use `flyspell-delete-region-overlays'.
14557 (flyspell-word): Use `process-kill-without-query' if XEmacs.
14558 (flyspell-mode-on): Use `interactive-p' if XEmacs.
14559 (flyspell-incorrect-face, flyspell-duplicate-face): Do not use
14560 `define-obsolete-face-alias' under XEmacs, but old method.
14561
14562 * textmodes/ispell.el (ispell-with-no-warnings): XEmacs alternative
14563 `with-no-warnings' definition or Emacs alias.
14564 (ispell-command-loop, ispell-message): Use `ispell-with-no-warnings'.
14565 (ispell-word): Do not use `region-p' if XEmacs.
14566
14567 2012-05-28 Agustín Martín Domingo <agustin.martin@hispalinux.es>
14568
14569 * textmodes/ispell.el (ispell-find-aspell-dictionaries):
14570 Check for `ispell-dictionary-base-alist' instead of full
14571 `ispell-dictionary-alist'.
14572 (ispell-init-process): Show spellchecker when starting new Ispell
14573 process.
14574
14575 2012-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
14576
14577 * progmodes/vhdl-mode.el: Sync with upstream 3.33.28.
14578 http://www.iis.ee.ethz.ch/~zimmi/emacs/vhdl-mode.html#release-notes-3.33
14579
14580 2012-05-27 Juanma Barranquero <lekktu@gmail.com>
14581
14582 * version.el (motif-version-string, gtk-version-string)
14583 (ns-version-string): Declare.
14584
14585 2012-05-27 Juri Linkov <juri@jurta.org>
14586
14587 * emacs-lisp/lisp-mode.el (eval-defun-2): Use `eval-sexp-add-defvars'
14588 after the `eval-defun-1' specialcaseing
14589 like in `edebug-eval-defun' (bug#10181).
14590
14591 * emacs-lisp/edebug.el (edebug-eval-defun): Set `face-documentation'
14592 like in `eval-defun-1'.
14593
14594 2012-05-27 Eli Zaretskii <eliz@gnu.org>
14595
14596 * mail/sendmail.el (mail-yank-region):
14597 Recognize rmail-yank-current-message in addition to insert-buffer.
14598 Fixes mail-mode's "C-c C-r" that otherwise does nothing when invoked in
14599 a *mail* buffer created through rmail-start-mail with sendmail as
14600 mail-user-agent.
14601
14602 2012-05-27 Chong Yidong <cyd@gnu.org>
14603
14604 * net/gnutls.el (gnutls-min-prime-bits): Improve docstring.
14605 Default to 256 (Bug#11267).
14606
14607 * help.el (describe-mode): Doc fix.
14608
14609 2012-05-26 Glenn Morris <rgm@gnu.org>
14610
14611 * w32-fns.el (w32-init-info): Remove.
14612 * paths.el (Info-default-directory-list): Add w32-init-info equivalent.
14613
14614 * info.el (info-initialize): For self-contained NS builds, put the
14615 included info/ directory at the front. (Bug#2791)
14616
14617 * paths.el (Info-default-directory-list): Make it a defcustom,
14618 mainly so that we can use custom-initialize-delay.
14619
14620 2012-05-26 Stefan Monnier <monnier@iro.umontreal.ca>
14621
14622 * subr.el (buffer-has-markers-at): Mark obsolete.
14623
14624 * subr.el (lambda): Use declare.
14625
14626 * emacs-lisp/lisp-mode.el (lambda):
14627 * emacs-lisp/edebug.el (lambda): Move properties to its definition.
14628
14629 2012-05-26 Aaron S. Hawley <aaron.s.hawley@gmail.com>
14630
14631 * thingatpt.el (forward-same-syntax): Handle no ARG case. (Bug#11560)
14632
14633 2012-05-26 Glenn Morris <rgm@gnu.org>
14634
14635 * progmodes/cc-mode.el (auto-mode-alist): Fix typo.
14636
14637 2012-05-25 Glenn Morris <rgm@gnu.org>
14638
14639 * paths.el: Remove no-byte-compile.
14640 * loadup.el: No need to load paths.el uncompiled.
14641
14642 * image.el (imagemagick-types-inhibit): Doc fix.
14643
14644 * version.el: Remove no-byte-compile and associated formatting.
14645 * loadup.el: No need to load version.el uncompiled. AFAICS, this
14646 is ancient code from when there was an "inc-vers.el".
14647
14648 2012-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
14649
14650 * progmodes/gdb-mi.el: Minor style changes.
14651 (gdb-enable-debug, gdb-speedbar-auto-raise, gdb-many-windows):
14652 Turn into minor modes.
14653 (gdb--if-arrow): Rename from gdb-if-arrow, make it hygienic.
14654 (gdb-mouse-until, gdb-mouse-jump): Adjust uses accordingly.
14655 (gdb-shell): Remove unneeded let-binding.
14656 (gdb-get-many-fields): Eliminate O(n²) behavior.
14657
14658 2012-05-25 Eli Zaretskii <eliz@gnu.org>
14659
14660 * cus-start.el <vertical-centering-font-regexp>: Avoid warning on
14661 platforms that don't link in fontset.c.
14662
14663 2012-05-25 Juri Linkov <juri@jurta.org>
14664
14665 Use the same diff color scheme as in modern VCSes (bug#10181).
14666
14667 * vc/diff-mode.el (diff-header, diff-file-header): Remove "green"
14668 to avoid confusion with `diff-added' that now uses green colors.
14669 (diff-removed): Use shades of red.
14670 (diff-added): Use shades of green.
14671 (diff-changed): Leave just the yellow color.
14672 (diff-use-changed-face): New variable.
14673 (diff-font-lock-keywords): Use `diff-use-changed-face' to decide
14674 how to highlight context diff changes.
14675 (diff-refine-change): Use shades of yellow.
14676 (diff-refine-removed): New face that uses shades of red.
14677 (diff-refine-added): New face that uses shades of green.
14678 (diff-refine-hunk): Use `diff-refine-change', `diff-refine-added',
14679 `diff-refine-removed' in the call to `smerge-refine-subst'
14680 depending on the value of `diff-use-changed-face'.
14681
14682 * vc/smerge-mode.el (smerge-mine): Use shades of red.
14683 (smerge-other): Use shades of green.
14684 (smerge-base): Use shades of yellow.
14685 (smerge-refined-change): Empty face.
14686 (smerge-refined-removed): New face that uses shades of red.
14687 (smerge-refined-added): New face that uses shades of green.
14688 (smerge-refine-subst): Rename arg `props' to `props-c'. Add new
14689 args `props-r' and `props-a', and use them. Doc fix.
14690 (smerge-refine): Evaluate `smerge-use-changed-face' and depending
14691 on its value use different faces `smerge-refined-change',
14692 `smerge-refined-removed', `smerge-refined-added' in the call to
14693 `smerge-refine-subst'.
14694
14695 * vc/ediff-init.el (ediff-current-diff-A, ediff-fine-diff-A):
14696 Add face condition `min-colors 88' with shades of red.
14697 (ediff-current-diff-B, ediff-fine-diff-B): Add face condition
14698 `min-colors 88' with shades of green.
14699 (ediff-current-diff-C, ediff-fine-diff-C): Add face condition
14700 `min-colors 88' with shades of yellow.
14701
14702 2012-05-24 Glenn Morris <rgm@gnu.org>
14703
14704 * paths.el (prune-directory-list, remote-shell-program): Move to...
14705 * files.el (prune-directory-list, remote-shell-program): ...here.
14706 For the latter, delay initialization, prefer ssh, just search PATH.
14707
14708 * paths.el (term-file-prefix): Move to faces.el (the only user).
14709 * faces.el (term-file-prefix): Move here, make it a defcustom.
14710
14711 * paths.el (news-directory, news-path, news-inews-program):
14712 Move to gnus/nnspool.el.
14713
14714 * paths.el (gnus-default-nntp-server): Remove (gnus.el defines it).
14715
14716 * paths.el (rmail-file-name, rmail-spool-directory): Move from here...
14717 * mail/rmail.el (rmail-file-name, rmail-spool-directory): ... to here.
14718 Make the latter a defcustom, with a delayed initialization.
14719
14720 * paths.el (gnus-nntp-service, gnus-local-organization): Remove.
14721 These were deleted from Gnus itself late 2010.
14722
14723 2012-05-22 Juanma Barranquero <lekktu@gmail.com>
14724
14725 * progmodes/which-func.el (which-func-ff-hook):
14726 Check against user-error, not error.
14727
14728 * emacs-lisp/edebug.el (top): Do not load or set up loading of
14729 cl-specs.el, which no longer exists.
14730
14731 2012-05-22 Glenn Morris <rgm@gnu.org>
14732
14733 * info.el (info-emacs-bug): New command.
14734 * menu-bar.el (menu-bar-help-menu): Add "How to Report a Bug" to Help.
14735 * mail/emacsbug.el (report-emacs-bug): Replace with info-emacs-bug.
14736
14737 2012-05-21 Glenn Morris <rgm@gnu.org>
14738
14739 * makefile.w32-in (update-subdirs-SH):
14740 * Makefile.in (update-subdirs): Update for moved update-subdirs.
14741
14742 2012-05-21 Stefan Monnier <monnier@iro.umontreal.ca>
14743
14744 * hi-lock.el (hi-lock-face-defaults): Move obsolete before definition.
14745
14746 * progmodes/compile.el (compilation-error-regexp-alist-alist):
14747 Simplify Maven regexp, and make sure the file can't start with a space
14748 (bug#11517).
14749
14750 2012-05-21 Glenn Morris <rgm@gnu.org>
14751
14752 * Makefile.in (setwins, setwins_almost, setwins_for_subdirs):
14753 Scrap superfluous subshells.
14754
14755 2012-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
14756
14757 * emacs-lisp/bytecomp.el (byte-compile-root-dir): New var.
14758 (byte-compile-warning-prefix, batch-byte-compile-file): Use it.
14759
14760 2012-05-19 Jay Belanger <jay.p.belanger@gmail.com>
14761
14762 * calc/calc.el (calc-ensure-consistent-units): New variable.
14763
14764 * calc/calc-units.el (math-consistent-units-p)
14765 (math-check-unit-consistency): New functions.
14766 (calc-quick-units, calc-convert-units):
14767 Use `math-check-unit-consistency' when `calc-ensure-consistent-units'
14768 is non-nil.
14769 (calc-extract-units): Fix typo.
14770
14771 2012-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
14772
14773 * vc/vc-bzr.el (vc-bzr-state-heuristic): Save match-data around sha1.
14774
14775 * textmodes/flyspell.el: Commenting style, plus code simplifications.
14776 (flyspell-default-deplacement-commands): Don't spell check after
14777 repeated window/frame switches (e.g. triggered by mouse-movement).
14778 (flyspell-delay-commands, flyspell-deplacement-commands): Use mapc.
14779 (flyspell-debug-signal-word-checked): Simplify and fit in 80 cols.
14780 (flyspell-casechars-cache, flyspell-ispell-casechars-cache)
14781 (flyspell-not-casechars-cache, flyspell-ispell-not-casechars-cache):
14782 Remove unused vars.
14783 (flyspell-get-casechars, flyspell-get-not-casechars):
14784 Simplify; Don't bother removing a ] just to add it back.
14785 * textmodes/ispell.el (ispell-program-name): Use executable-find.
14786
14787 2012-05-18 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
14788
14789 * calc/calc-lang.el (math-C-parse-bess, math-C-parse-fma):
14790 New functions.
14791 (math-function-table): Add support for more C functions.
14792
14793 2012-05-18 Agustín Martín Domingo <agustin.martin@hispalinux.es>
14794
14795 * textmodes/flyspell.el (flyspell-check-pre-word-p)
14796 (flyspell-check-word-p, flyspell-debug-signal-word-checked):
14797 Protect delay handling for otherchars against empty otherchars.
14798
14799 2012-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
14800
14801 * emacs-lisp/lisp-mode.el (doc-string-elt): Move those properties to
14802 their respective macro declarations.
14803 * skeleton.el (define-skeleton):
14804 * progmodes/compile.el (define-compilation-mode):
14805 * ibuf-macs.el (define-ibuffer-sorter, define-ibuffer-op)
14806 (define-ibuffer-filter):
14807 * emacs-lisp/generic.el (define-generic-mode):
14808 * emacs-lisp/easy-mmode.el (define-minor-mode)
14809 (define-globalized-minor-mode):
14810 * emacs-lisp/cl-macs.el (defun*, defmacro*, defstruct, deftype):
14811 * emacs-lisp/byte-run.el (defsubst):
14812 * custom.el (deftheme): Add doc-string metadata.
14813
14814 2012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
14815
14816 * emacs-lisp/cl-macs.el, emacs-lisp/cl.el: Move indent info.
14817
14818 2012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
14819
14820 * emacs-lisp/pcase.el (pcase--u1): Avoid ((lambda ...) ...).
14821
14822 * emacs-lisp/cl.el: Add edebug specs from cl-specs.el.
14823 * emacs-lisp/cl-macs.el: Idem.
14824 * emacs-lisp/cl-specs.el: Remove.
14825
14826 2012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
14827
14828 Minor renaming of internal CL functions and variables.
14829 * emacs-lisp/cl-seq.el (cl--adjoin): Rename from cl-adjoin.
14830 (cl--position): Rename from cl-position.
14831 (cl--delete-duplicates): Rename from cl-delete-duplicates.
14832 * emacs-lisp/cl.el (cl--gensym-counter): Rename from *gensym-counter*.
14833 (cl--random-state): Rename from *random-state*.
14834
14835 2012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
14836
14837 * emacs-lisp/cl-macs.el (cl-transform-lambda): Don't add spurious
14838 parens around the arg list (bug#11499).
14839
14840 2012-05-17 Juri Linkov <juri@jurta.org>
14841
14842 * isearch.el (word-search-regexp, word-search-backward)
14843 (word-search-forward, word-search-backward-lax)
14844 (word-search-forward-lax): Move functions from search.c
14845 (bug#10145, bug#11381).
14846
14847 2012-05-16 Agustín Martín Domingo <agustin.martin@hispalinux.es>
14848
14849 * textmodes/flyspell.el (flyspell-check-pre-word-p)
14850 (flyspell-check-word-p, flyspell-debug-signal-word-checked):
14851 Delay for otherchars as for normal word components.
14852
14853 2012-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
14854
14855 * minibuffer.el (completion--sifn-requote): Fix last change.
14856 (minibuffer-local-must-match-filename-map):
14857 Move define-obsolete-variable-alias before its var.
14858
14859 2012-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
14860
14861 * emacs-lisp/pcase.el (pcase-let*, pcase-let): Fix edebug spec.
14862
14863 * minibuffer.el (completion--sifn-requote): Handle sifn's truncation
14864 behavior.
14865 (completion--string-equal-p): New function.
14866 (completion--twq-all): Use it to get better assertion failure data.
14867
14868 Only handle ".." and '..' quoting in shell-mode (bug#11466).
14869 * shell.el (shell--unquote&requote-argument, shell--unquote-argument)
14870 (shell--requote-argument): New functions.
14871 (shell-completion-vars): Use them.
14872 (shell--parse-pcomplete-arguments): Rename from
14873 shell-parse-pcomplete-arguments.
14874 * comint.el (comint-word): Obey comint-file-name-quote-list. Simplify.
14875 (comint--unquote&requote-argument): Don't handle ".." and '..' quoting.
14876 Obey comint-file-name-quote-list.
14877
14878 * emacs-lisp/smie.el (smie-indent--bolp-1): New function.
14879 (smie-indent-keyword): Use it.
14880
14881 2012-05-14 Stefan Merten <smerten@oekonux.de>
14882
14883 * textmodes/rst.el (rst-re-alist): Fix loading (bug#11462).
14884
14885 2012-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
14886
14887 * net/rlogin.el (rlogin-mode-map): Fix last change.
14888
14889 2012-05-14 Jason L. Wright <jason.wright@inl.gov> (tiny change)
14890
14891 * mail/smtpmail.el (smtpmail-send-command): Send the command and
14892 the following \r\n using a single `process-send-string', since the
14893 Lotus SMTP server refuses to accept any commands if they are sent
14894 with two `process-send-string's (Bug#11444).
14895
14896 2012-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
14897
14898 * shell.el (shell-parse-pcomplete-arguments):
14899 Obey pcomplete-arg-quote-list inside double-quoted args (Bug#11348).
14900
14901 2012-05-14 Wolfgang Jenkner <wjenkner@inode.at>
14902
14903 * image-mode.el: Fit to width/height for rotated images (Bug#11431).
14904 (image-transform-scale, image-transform-right-angle-fudge): New vars.
14905 (image-transform-width, image-transform-fit-width): New functions.
14906 (image-transform-properties): Use them.
14907 (image-transform-check-size): New function.
14908 (image-toggle-display-image): Use it (for testing).
14909 (image-transform-set-rotation): Reduce angle mod 360.
14910 Delete obsolete comment.
14911
14912 2012-05-14 Wolfgang Jenkner <wjenkner@inode.at>
14913
14914 * image-mode.el: Fix scaling (bug#11399).
14915 (image-transform-resize): Doc fix.
14916 (image-transform-properties): Default scale is 1 and height should
14917 be an integer.
14918
14919 2012-05-13 Johan Bockgård <bojohan@gnu.org>
14920
14921 * emacs-lisp/smie.el (smie-next-sexp): Use accessor `op-forw' rather
14922 than hard-coding `car', to fix misbehavior when moving forward.
14923
14924 2012-05-13 Chong Yidong <cyd@gnu.org>
14925
14926 * emacs-lisp/tabulated-list.el (tabulated-list-format)
14927 (tabulated-list-entries, tabulated-list-padding)
14928 (tabulated-list-sort-key): Make permanent-local.
14929
14930 * ebuff-menu.el: Adapt to Buffer Menu changes (Bug#11455).
14931 (electric-buffer-list): Put electric buffer menu
14932 command descriptions in this docstring, instead of the docstring
14933 of electric-buffer-menu-mode. Code cleanups.
14934 (electric-buffer-menu-mode): Use define-derived-mode. Rename from
14935 Electric-buffer-menu-mode.
14936 (electric-buffer-update-highlight): Minor code cleanup.
14937
14938 2012-05-13 Michael Albinus <michael.albinus@gmx.de>
14939
14940 * net/dbus.el (dbus-call-method): Restore events not from D-Bus.
14941 (Bug#11447)
14942
14943 2012-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
14944
14945 Move define-obsolete-variable-alias before the var's definition.
14946 * vc/log-edit.el (vc-comment-ring, vc-comment-ring-index):
14947 * tooltip.el (tooltip-hook):
14948 * textmodes/reftex-toc.el (reftex-toc-map):
14949 * textmodes/reftex-sel.el (reftex-select-label-map)
14950 (reftex-select-bib-map):
14951 * textmodes/reftex-index.el (reftex-index-map)
14952 (reftex-index-phrases-map):
14953 * speedbar.el (speedbar-syntax-table, speedbar-key-map):
14954 * progmodes/meta-mode.el (meta-mode-map):
14955 * novice.el (disabled-command-hook):
14956 * loadhist.el (unload-hook-features-list):
14957 * frame.el (blink-cursor):
14958 * files.el (find-file-not-found-hooks, write-file-hooks)
14959 (write-contents-hooks):
14960 * emulation/tpu-edt.el (GOLD-map):
14961 * emacs-lock.el (emacs-lock-from-exiting):
14962 * emacs-lisp/generic.el (generic-font-lock-defaults):
14963 * emacs-lisp/chart.el (chart-map):
14964 * dos-fns.el (register-name-alist):
14965 * dired-x.el (dired-omit-files-p):
14966 * desktop.el (desktop-enable):
14967 * cus-edit.el (custom-mode-hook):
14968 * buff-menu.el (buffer-menu-mode-hook):
14969 * bookmark.el (bookmark-read-annotation-text-func)
14970 (bookmark-exit-hooks):
14971 * allout.el (allout-mode-deactivate-hook)
14972 (allout-exposure-change-hook, allout-structure-added-hook)
14973 (allout-structure-deleted-hook, allout-structure-shifted-hook):
14974 * dirtrack.el (dirtrack-toggle, dirtrackp, dirtrack-debug-toggle)
14975 (dirtrack-debug): Move call to define-obsolete-variable-alias so it
14976 comes before the corresponding variable's definition.
14977
14978 2012-05-12 Chong Yidong <cyd@gnu.org>
14979
14980 * buff-menu.el (Buffer-menu-buffer+size-width): Doc fix (Bug#11454).
14981 (Buffer-menu-mouse-select): Restore function (Bug#11459).
14982 (Buffer-menu-mode-map): Bind it.
14983 (Buffer-menu--pretty-name): Add a mouse-face property.
14984
14985 2012-05-11 Stefan Monnier <monnier@iro.umontreal.ca>
14986
14987 * progmodes/prolog.el: Use SMIE. Cleanup regexp setup.
14988 (prolog-upper-case-string, prolog-lower-case-string)
14989 (prolog-atom-char-regexp, prolog-atom-regexp): Initialize in defconst.
14990 (prolog-use-smie, prolog-smie-grammar): New vars.
14991 (prolog-smie-forward-token, prolog-smie-backward-token)
14992 (prolog-smie-rules): New funs.
14993 (prolog-comment-indent): Remove.
14994 (prolog-mode-variables): Use default comment indentation instead.
14995 Setup SMIE.
14996 (prolog-build-case-strings, prolog-set-atom-regexps): Remove.
14997 (prolog-mode): Don't call them any more.
14998 (prolog-electric-colon, prolog-electric-dash)
14999 (prolog-edit-menu-insert-move): Use indent-according-to-mode.
15000
15001 * dabbrev.el (dabbrev-expand): Make "no expansion found" a user-error.
15002
15003 * minibuffer.el (completion--twq-all): Again, allow case differences.
15004
15005 * term.el: Move keymap initialization code to be more idiomatic.
15006 (term-signals-menu, term-mode-map, term-raw-map, term-raw-escape-map)
15007 (term-terminal-menu): Move initialization into declaration.
15008 (term-escape-char): Let the user set it in her .emacs.
15009
15010 * progmodes/sh-script.el: Use post-self-insert-hook&electric-pair-mode.
15011 Provide SMIE-based indentation (not enabled by default yet).
15012 (sh-mode-map): Don't bind electric keys.
15013 Use electric-pair-mode instead of skeleton-pair.
15014 (sh-assignment-regexp): Fit within 80 columns.
15015 (sh-indent-supported): Specify actual shell name instead of boolean.
15016 (sh--maybe-here-document): New fun, from sh-maybe-here-document.
15017 (sh-maybe-here-document): Use it. Make obsolete.
15018 (sh-electric-here-document-mode) New minor mode.
15019 (sh-mode): Use it. Don't set sh-indent-supported-here here.
15020 (sh-smie-sh-grammar, sh-smie--sh-operators, sh-smie--sh-operators-re)
15021 (sh-smie--sh-operators-back-re, sh-indent-after-continuation)
15022 (sh-smie-rc-grammar, sh-use-smie): New vars.
15023 (sh-smie--keyword-p, sh-smie--newline-semi-p, sh-smie--sh-keyword-p)
15024 (sh-smie-sh-forward-token, sh-smie--looking-back-at-continuation-p)
15025 (sh-smie-sh-backward-token, sh-smie--continuation-start-indent)
15026 (sh-smie-sh-rules, sh-smie-rc-rules, sh-smie--sh-keyword-in-p)
15027 (sh-smie--rc-after-special-arg-p, sh-smie-rc-backward-token)
15028 (sh-smie-sh-rules, sh-smie--rc-newline-semi-p): New functions.
15029 (sh-set-shell): Use smie-setup if requested.
15030
15031 * term.el (term-set-escape-char): Properly set term-escape-char.
15032 See http://stackoverflow.com/questions/10524656.
15033
15034 2012-05-10 Chong Yidong <cyd@gnu.org>
15035
15036 * ffap.el (ffap-url-unwrap-local): Make it work right (Bug#9131).
15037 Use url-generic-parse-url, and handle host names and Windows
15038 filenames properly.
15039 (ffap-url-unwrap-remote): Use url-generic-parse-url.
15040 (ffap-url-unwrap-remote): Accept list values, specifying a list of
15041 URL schemes to work on.
15042 (ffap--toggle-read-only): New function.
15043 (ffap-read-only, ffap-read-only-other-window)
15044 (ffap-read-only-other-frame): Use it.
15045 (ffap-fixup-url): Don't check ffap-ftp-regexp, since it is not
15046 necessary for ffap-url-unwrap-remote.
15047
15048 2012-05-10 Dave Abrahams <dave@boostpro.com>
15049
15050 * cus-start.el (create-lockfiles): Add it.
15051
15052 2012-05-09 Chong Yidong <cyd@gnu.org>
15053
15054 * net/browse-url.el (browse-url-url-encode-chars): Use upper-case.
15055 (browse-url-encode-url): Encode spaces and quotes (Bug#6300).
15056
15057 2012-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
15058
15059 * shell.el (shell-completion-vars): Fix last change (bug#11348).
15060
15061 2012-05-09 Chong Yidong <cyd@gnu.org>
15062
15063 * ansi-color.el (ansi-color-process-output): Check for validity of
15064 comint-last-output-start before using it. This avoids a bad
15065 interaction with gdb-mi's input/output buffer.
15066
15067 2012-05-09 Glenn Morris <rgm@gnu.org>
15068
15069 * files.el (dir-locals-read-from-file):
15070 Mention dir-locals in any error message.
15071
15072 2012-05-09 Chong Yidong <cyd@gnu.org>
15073
15074 * emacs-lisp/package.el (package-built-in-p): Handle the `emacs'
15075 package (Bug#11410).
15076
15077 * emacs-lisp/package.el (package-buffer-info): Avoid putting local
15078 variables into description.
15079
15080 2012-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
15081
15082 * shell.el (shell-completion-vars): Set pcomplete-arg-quote-list like
15083 shell-delimiter-argument-list (bug#11348).
15084 (shell-parse-pcomplete-arguments): Obey pcomplete-arg-quote-list.
15085
15086 2012-05-09 Juanma Barranquero <lekktu@gmail.com>
15087
15088 * textmodes/rst.el: Silence byte-compiler warnings.
15089 (rst-re-alist, rst-reset-section-caches): Move around.
15090 (rst-re): Use `characterp', not `char-valid-p'.
15091 (font-lock-beg, font-lock-end): Declare.
15092
15093 * progmodes/idlw-shell.el (specs): Remove reference to deleted
15094 variable `idlwave-shell-activate-alt-keybindings' and simplify.
15095
15096 * eshell/esh-cmd.el (eshell-debug-command): Fix typo in previous change.
15097
15098 2012-05-08 Glenn Morris <rgm@gnu.org>
15099
15100 * files.el (auto-mode-alist): Treat ".make" like ".mk".
15101
15102 2012-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
15103
15104 * vc/log-edit.el: Add GNU coding standards highlighting.
15105 (log-edit-font-lock-gnu-style)
15106 (log-edit-font-lock-gnu-keywords): New vars.
15107 (log-edit-font-lock-keywords): New fun.
15108 (log-edit-mode): Don't fold case in font-lock.
15109 (log-edit-font-lock-keywords): Do not assume case-folding.
15110
15111 * imenu.el: Misc cleanup. Make docstrings out of comments.
15112 Use lexical-binding.
15113 (imenu--index-alist, imenu--last-menubar-index-alist)
15114 (imenu-menubar-modified-tick): Use defvar-local.
15115 (imenu--split-menu): Remove unused var.
15116 (imenu--cleanup-seen): Declare as global.
15117 (imenu--cleanup): Use dolist.
15118
15119 * subr.el (defvar-local): Add debug spec and doc-string position.
15120
15121 2012-05-08 Glenn Morris <rgm@gnu.org>
15122
15123 * language/burmese.el, language/cham.el, language/czech.el:
15124 * language/english.el, language/georgian.el, language/greek.el:
15125 * language/japanese.el, language/khmer.el, language/korean.el:
15126 * language/lao.el, language/misc-lang.el, language/romanian.el:
15127 * language/sinhala.el, language/slovak.el, language/tai-viet.el:
15128 * language/thai.el, language/utf-8-lang.el:
15129 Remove no-byte-compile setting.
15130
15131 * play/zone.el (zone-pgm-stress): Don't pollute kill-ring. (Bug#11388)
15132
15133 2012-05-08 Aaron S. Hawley <aaron.s.hawley@gmail.com>
15134
15135 * progmodes/make-mode.el (makefile-browse):
15136 Remove unnecessary interactive. (Bug#11324)
15137
15138 2012-05-07 Glenn Morris <rgm@gnu.org>
15139
15140 * forms-d2.el, forms-pass.el: Move to ../etc/forms directory.
15141
15142 * international/mule.el (find-auto-coding): Make "unibyte: t" obsolete.
15143
15144 2012-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
15145
15146 * loadup.el: Preload newcomment.el.
15147 * newcomment.el: Move autoload-only code to toplevel.
15148
15149 * buff-menu.el (list-buffers--refresh): Mark `size' as right-align.
15150 * emacs-lisp/tabulated-list.el (tabulated-list-init-header):
15151 Handle new :right-align column property.
15152 (tabulated-list-print-col): Idem, plus use `display' text-property to
15153 try and preserve alignment for variable pitch fonts.
15154
15155 2012-05-07 Chong Yidong <cyd@gnu.org>
15156
15157 * emacs-lisp/tabulated-list.el: Add no-header-line alternative.
15158 (tabulated-list-use-header-line): New var.
15159 (tabulated-list-init-header): Use it.
15160 (tabulated-list-print-fake-header): New function.
15161 (tabulated-list-print): Use it.
15162 (tabulated-list-sort-button-map): Add non-header-line commands.
15163 (tabulated-list-init-header): Add column name property to basic
15164 labels as well.
15165 (tabulated-list-col-sort): Handle non-header-line button case.
15166 (tabulated-list--sort-by-column-name): Fix a corner case.
15167
15168 * buff-menu.el (list-buffers--refresh):
15169 Handle Buffer-menu-use-header-line.
15170
15171 2012-05-06 Chong Yidong <cyd@gnu.org>
15172
15173 * buff-menu.el: Convert to Tabulated List mode.
15174 (Buffer-menu-buffer+size-width): Make obsolete.
15175 (Buffer-menu-name-width, Buffer-menu-size-width): New variables.
15176 (Buffer-menu-mode-map): Inherit from tabulated-list-mode-map.
15177 (Buffer-menu-mode): Derive from tabulated-list-mode. Move command
15178 documentation into docstring of buffer-menu.
15179 (Buffer-menu-toggle-files-only): Add an informative message.
15180 (Buffer-menu-sort): Convert to alias for tabulated-list-sort.
15181 (Buffer-menu-buffer, Buffer-menu-beginning, Buffer-menu-mark)
15182 (Buffer-menu-unmark, Buffer-menu-backup-unmark)
15183 (Buffer-menu-delete, Buffer-menu-save, Buffer-menu-not-modified)
15184 (Buffer-menu-execute, Buffer-menu-select)
15185 (Buffer-menu-marked-buffers, Buffer-menu-toggle-read-only)
15186 (Buffer-menu-bury): Use Tabulated List machinery.
15187 (Buffer-menu-mouse-select, Buffer-menu-sort-by-column)
15188 (Buffer-menu-sort-button-map, Buffer-menu-make-sort-button):
15189 Delete.
15190 (list-buffers--refresh): New function.
15191 (list-buffers-noselect): Use it.
15192 (tabulated-list-entry-size->, Buffer-menu--pretty-name)
15193 (Buffer-menu--pretty-file-name): New helper functions.
15194
15195 * loadup.el: Preload tabulated-list.
15196
15197 * emacs-lisp/tabulated-list.el (tabulated-list-sort): Rename from
15198 tabulated-list-sort-column.
15199 (tabulated-list-init-header): Add the initial aligning space even
15200 if tabulated-list-padding is zero.
15201
15202 2012-05-06 Christopher Schmidt <christopher@ch.ristopher.com>
15203
15204 * emacs-lisp/cl-macs.el (cl-expr-contains): Handle cons cells
15205 whose cdr is not a cons cell correctly (bug#11038).
15206
15207 2012-05-06 Chong Yidong <cyd@gnu.org>
15208
15209 * emacs-lisp/tabulated-list.el (tabulated-list-format):
15210 Accept additional plist in column descriptors.
15211 (tabulated-list-init-header): Obey it.
15212 (tabulated-list-get-entry): New function.
15213 (tabulated-list-put-tag): Use it. Use string-width instead of
15214 length.
15215 (tabulated-list--column-number): New function.
15216 (tabulated-list-print): Use it.
15217 (tabulated-list-print-col): New function.
15218 Set `tabulated-list-column-name' property on each column's text.
15219 (tabulated-list-print-entry): Use it.
15220 (tabulated-list-delete-entry, tabulated-list-set-col):
15221 New functions.
15222 (tabulated-list-sort-column): New command (Bug#11337).
15223
15224 * buff-menu.el (list-buffers): Move C-x C-b binding from
15225 buff-menu.el to bindings.el.
15226
15227 * ebuff-menu.el (Electric-buffer-menu-undefined): Use the
15228 :advertised-binding feature.
15229
15230 2012-05-06 Troels Nielsen <bn.troels@gmail.com> (tiny change)
15231
15232 * progmodes/compile.el (compilation-internal-error-properties):
15233 Calculate start position correctly when end-col is set but
15234 end-line is not (Bug#11382).
15235
15236 2012-05-06 Wolfgang Jenkner <wjenkner@inode.at>
15237
15238 * man.el (Man-unindent): Use text-property-default-nonsticky to
15239 prevent untabify from inheriting face properties (Bug#11408).
15240
15241 2012-05-05 Stefan Merten <smerten@oekonux.de>
15242
15243 * textmodes/rst.el: Major merge with upstream development up to
15244 Docutils SVN r7399 / rst.el V1.2.1.
15245
15246 Clarify maintainership and authors.
15247
15248 (rst-extract-version, rst-cvs-header, rst-cvs-rev)
15249 (rst-cvs-timestamp, rst-svn-rev, rst-svn-timestamp)
15250 (rst-official-version, rst-official-cvs-rev, rst-version)
15251 (rst-package-emacs-version-alist): New functions and variables
15252 for version information.
15253
15254 (rst-bullets, rst-uri-schemes, rst-adornment-chars)
15255 (rst-max-inline-length, rst-re-alist-def, rst-re-alist)
15256 (rst-mode-syntax-table, rst-mode): New and corrected functions
15257 and variables representing reStructuredText features.
15258
15259 (rst-re): New function for reStructuredText regexes. Use in
15260 many places.
15261
15262 (rst-deprecated-keys, rst-call-deprecated, rst-define-key)
15263 (rst-mode-map): Rebind keys.
15264
15265 (rst-mode-lazy, rst-font-lock-keywords)
15266 (rst-font-lock-extend-region)
15267 (rst-font-lock-extend-region-internal)
15268 (rst-font-lock-extend-region-extend)
15269 (rst-font-lock-find-unindented-line-limit)
15270 (rst-font-lock-find-unindented-line-match)
15271 (rst-adornment-level, rst-font-lock-adornment-level)
15272 (rst-font-lock-adornment-match)
15273 (rst-font-lock-handle-adornment-pre-match-form)
15274 (rst-font-lock-handle-adornment-matcher): Major revision of
15275 font-locking. Integrate with other code. Use `jit-lock-mode'.
15276
15277 (rst-preferred-adornments, rst-adjust-hook)
15278 (rst-new-adornment-down, rst-preferred-bullets)
15279 (rst-preferred-bullets, rst-indent, rst-indent-width)
15280 (rst-indent-field, rst-indent-literal-normal)
15281 (rst-indent-literal-minimized, rst-indent-comment): Change,
15282 extend and improve customization.
15283
15284 (rst-line-homogeneous-p, rst-line-homogeneous-nodent-p)
15285 (rst-normalize-cursor-position, rst-get-decoration)
15286 (rst-straighten-deco-spacing, rst-re-bullets, rst-re-items)
15287 (rst-rstrip, rst-toc-insert-find-delete-contents)
15288 (rst-shift-fill-region, rst-compute-bullet-tabs)
15289 (rst-debug-print-tabs, rst-debug-mark-found)
15290 (rst-shift-region-guts, rst-shift-region-right)
15291 (rst-shift-region-left, rst-use-char-classes)
15292 (rst-font-lock-keywords-function)
15293 (rst-font-lock-indentation-point)
15294 (rst-font-lock-find-unindented-line-begin)
15295 (rst-font-lock-find-unindented-line-end)
15296 (rst-font-lock-find-unindented-line)
15297 (rst-font-lock-adornment-point, rst-font-lock-level)
15298 (rst-adornment-level-alist): Remove functions and variables.
15299
15300 (rst-compare-adornments, rst-get-adornment-match)
15301 (rst-suggest-new-adornment, rst-get-adornments-around)
15302 (rst-adornment-complete-p, rst-get-next-adornment)
15303 (rst-adjust-adornment, rst-display-adornments-hierarchy)
15304 (rst-straighten-adornments): Standardize function names to
15305 use "adornment" instead of "decoration". Correct callers.
15306 Similar standardizing in many places.
15307
15308 (rst-update-section, rst-adjust, rst-promote-region)
15309 (rst-enumerate-region, rst-bullet-list-region)
15310 (rst-repeat-last-character): Correct use of `interactive'.
15311
15312 (rst-classify-adornment, rst-find-all-adornments)
15313 (rst-get-hierarchy, rst-adjust-adornment, rst-toc-update)
15314 (rst-find-leftmost-column, rst-repeat-last-character):
15315 Refactor functions.
15316
15317 (rst-find-title-line, rst-reset-section-caches)
15318 (rst-get-adornments-around, rst-adjust-adornment-work)
15319 (rst-arabic-to-roman, rst-roman-to-arabic)
15320 (rst-insert-list-pos, rst-insert-list-new-item)
15321 (rst-insert-list-continue, rst-insert-list, rst-forward-line):
15322 New functions.
15323
15324 (rst-all-sections, rst-section-hierarchy)
15325 (rst-arabic-to-roman, rst-initial-enums, rst-initial-items):
15326 New variables.
15327
15328 (rst-toc-return-wincfg, rst-toc-quit-window): Use window
15329 configuration instead of only buffer. Change where necessary.
15330
15331 (rst-line-tabs, rst-compute-tabs, rst-indent-line)
15332 (rst-shift-region, rst-adaptive-fill): New functions for
15333 indentation and filling.
15334
15335 (rst-comment-line-break, rst-comment-indent)
15336 (rst-comment-insert-comment, rst-comment-region)
15337 (rst-uncomment-region): New functions for handling comments.
15338
15339 (rst-compile): Quote shell arguments.
15340
15341 (rst-compile-pdf-preview, rst-compile-slides-preview):
15342 Delete temporary files after use.
15343
15344 2012-05-05 Glenn Morris <rgm@gnu.org>
15345
15346 * calendar/cal-html.el: Optionally include holidays in the output.
15347 Suggested by Ed Reingold <reingold@emr.cs.iit.edu>.
15348 (cal-html-holidays): New option.
15349 (cal-html-css-default): Add holiday entry.
15350 (holiday-in-range): Autoload it.
15351 (cal-html-htmlify-entry): Add optional class argument.
15352 (cal-html-htmlify-list): Add optional holidays argument.
15353 (cal-html-insert-agenda-days): Include holidays in the output.
15354 (cal-html-one-month): Maybe include holidays.
15355
15356 * calendar/holidays.el (holiday-in-range):
15357 Move here from cal-tex-list-holidays.
15358 * calendar/cal-tex.el (cal-tex-list-holidays):
15359 Make it an obsolete alias for holiday-in-range. Update all callers.
15360
15361 2012-05-05 Chong Yidong <cyd@gnu.org>
15362
15363 * select.el (xselect--encode-string): Always use utf-8 for TEXT on
15364 Nextstep.
15365
15366 2012-05-05 Ransom Williams <auvergnerw@gmail.com> (tiny change)
15367
15368 * files.el (file-auto-mode-skip): New var.
15369 (set-auto-mode-1): Use it.
15370
15371 2012-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
15372
15373 * repeat.el: Use lexical-binding.
15374 (repeat-last-self-insert, repeat-num-input-keys-at-self-insert)
15375 (repeat-undo-count): Remove.
15376 (repeat):
15377 * progmodes/octave-mod.el (octave-abbrev-start):
15378 * progmodes/f90.el (f90-abbrev-start):
15379 * face-remap.el (text-scale-adjust):
15380 * kmacro.el (kmacro-call-macro): Use set-temporary-overlay-map.
15381
15382 * emacs-lisp/pcase.el (pcase--let*): New function.
15383 (pcase--expand, pcase-codegen, pcase--q1): Use it to reduce nesting
15384 a bit more.
15385 (pcase--split-pred): Be more clever about ruling out overlap between
15386 a predicate and some constant pattern.
15387 (pcase--q1): Use `null' instead of (eq foo nil).
15388
15389 * subr.el (setq-local, defvar-local): New macros.
15390 (kbd): Redefine as an alias.
15391 (with-selected-window): Leave unrelated frames alone.
15392 (set-temporary-overlay-map): New function.
15393
15394 2012-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
15395
15396 * subr.el (user-error): New function.
15397 * window.el (switch-to-buffer):
15398 * vc/smerge-mode.el (smerge-resolve-function, smerge-resolve)
15399 (smerge-match-conflict):
15400 * simple.el (previous-matching-history-element)
15401 (next-matching-history-element, goto-history-element, undo-more)
15402 (undo-start):
15403 * progmodes/etags.el (visit-tags-table-buffer, find-tag-tag)
15404 (find-tag-noselect, find-tag-in-order, etags-goto-tag-location)
15405 (next-file, tags-loop-scan, list-tags, complete-tag):
15406 * progmodes/compile.el (compilation-loop):
15407 * mouse.el (mouse-minibuffer-check):
15408 * man.el (Man-bgproc-sentinel, Man-goto-page):
15409 * info.el (Info-find-node-2, Info-extract-pointer, Info-history-back)
15410 (Info-history-forward, Info-follow-reference, Info-menu)
15411 (Info-extract-menu-item, Info-extract-menu-counting)
15412 (Info-forward-node, Info-backward-node, Info-next-menu-item)
15413 (Info-last-menu-item, Info-next-preorder, Info-last-preorder)
15414 (Info-next-reference, Info-prev-reference, Info-index)
15415 (Info-index-next, Info-follow-nearest-node)
15416 (Info-copy-current-node-name):
15417 * imenu.el (imenu--make-index-alist)
15418 (imenu-default-create-index-function, imenu-add-to-menubar):
15419 * files.el (basic-save-buffer, recover-file):
15420 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
15421 * emacs-lisp/checkdoc.el (checkdoc-continue, checkdoc-comments)
15422 (checkdoc-message-text, checkdoc-defun):
15423 * dabbrev.el (dabbrev-completion, dabbrev--abbrev-at-point):
15424 * cus-edit.el (customize-changed-options, customize-rogue)
15425 (customize-saved, custom-variable-set, custom-variable-mark-to-save)
15426 (custom-variable-mark-to-reset-standard)
15427 (custom-variable-reset-backup, custom-face-mark-to-reset-standard)
15428 (custom-file):
15429 * completion.el (check-completion-length):
15430 * comint.el (comint-search-arg)
15431 (comint-previous-matching-input-string-position)
15432 (comint-previous-matching-input)
15433 (comint-replace-by-expanded-history-before-point, comint-send-input)
15434 (comint-copy-old-input, comint-backward-matching-input)
15435 (comint-goto-process-mark, comint-set-process-mark):
15436 * calendar/calendar.el (calendar-cursor-to-date): Use it.
15437 * bindings.el (debug-ignored-errors): Remove regexps, add `user-error'.
15438
15439 2012-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
15440
15441 * dabbrev.el (dabbrev--ignore-case-p): New function.
15442 (dabbrev-completion, dabbrev-expand, dabbrev--substitute-expansion):
15443 Use it.
15444
15445 * files.el (automount-dir-prefix): Mark as obsolete.
15446
15447 2012-05-04 Glenn Morris <rgm@gnu.org>
15448
15449 * patcomp.el, play/bruce.el: Move to obsolete/.
15450
15451 2012-05-04 Paul Eggert <eggert@cs.ucla.edu>
15452
15453 Fix minor Y10k bugs.
15454 * arc-mode.el (archive-unixdate):
15455 * autoinsert.el (auto-insert-alist):
15456 * calc/calc-forms.el (math-this-year):
15457 * emacs-lisp/copyright.el (copyright-current-year)
15458 (copyright-update-year, copyright):
15459 * tar-mode.el (tar-clip-time-string):
15460 * time.el (display-time-update):
15461 Don't assume years have 4 digits.
15462
15463 2012-05-04 Chong Yidong <cyd@gnu.org>
15464
15465 * dos-w32.el (file-name-buffer-file-type-alist)
15466 (direct-print-region-use-command-dot-com):
15467 * ffap.el (ffap-menu-regexp):
15468 * find-file.el (ff-special-constructs):
15469 * follow.el (follow-debug):
15470 * forms.el (forms--debug):
15471 * iswitchb.el (iswitchb-all-frames):
15472 * ido.el (ido-all-frames):
15473 * emacs-lisp/timer.el (timer-max-repeats):
15474 * mail/feedmail.el (feedmail-mail-send-hook)
15475 (feedmail-mail-send-hook-queued):
15476 * mail/footnote.el (footnote-signature-separator):
15477 * mail/mailabbrev.el (mail-alias-separator-string)
15478 (mail-abbrev-mode-regexp):
15479 * mail/rmail.el (rmail-speedbar-match-folder-regexp):
15480 * progmodes/idlwave.el (idlwave-libinfo-file)
15481 (idlwave-default-completion-case-is-down)
15482 (idlwave-library-routines): Convert defvars to defcustoms.
15483
15484 * mail/rmail.el (rmail-decode-mime-charset):
15485 * progmodes/idlw-shell.el (idlwave-shell-print-expression-function)
15486 (idlwave-shell-fix-inserted-breaks)
15487 (idlwave-shell-activate-alt-keybindings)
15488 (idlwave-shell-use-breakpoint-glyph):
15489 * facemenu.el (facemenu-unlisted-faces): Delete obsolete vars.
15490
15491 2012-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
15492
15493 * minibuffer.el (completion--twq-all): Beware completion-ignore-case.
15494
15495 2012-05-03 Wilson Snyder <wsnyder@wsnyder.org>
15496
15497 * progmodes/verilog-mode.el (font-lock-keywords):
15498 Fix mis-highligting auto. Reported by Craig Barner.
15499 (verilog-auto, verilog-auto-undef): Add AUTOUNDEF to remove
15500 defines from global name space. Reported by Dan Dever.
15501 (verilog-auto-reset, verilog-auto-reset-widths)
15502 (verilog-auto-tieoff): Support using unbased numbers for
15503 AUTORESET and AUTOTIEOFF.
15504 (verilog-submit-bug-report): Update variable list.
15505 (verilog-read-auto-params): Fix AUTOINPUT regexps containing
15506 parenthesis from not matching. Reported by Michael Rytting.
15507 (verilog-auto-template-lint): Fix hash error when linting modules
15508 with no used templates.
15509 (verilog-warn, verilog-warn-error)
15510 (verilog-warn-fatal): When non-interactive report multiple
15511 warnings before exiting. Suggested by Brad Dobbie.
15512 (verilog-auto-template-lint, verilog-auto-template-warn-unused)
15513 (verilog-read-auto-template): Add `verilog-auto-template-warn-unused'
15514 to report unused template errors. Reported by Brad Dobbie.
15515 (verilog-read-decls): Fix AUTOWIRE etc on supply0, supply1 type
15516 nets, bug438. Reported by Vns Blore.
15517 (verilog-auto-inout-module, verilog-auto-reg)
15518 (verilog-read-decls, verilog-read-sub-decls-sig)
15519 (verilog-signals-edit-wire-reg, verilog-signals-with):
15520 Fix passing of Verilog data types in ANSI input/output ports
15521 such as "output logic" into the AUTOs. Special case "wire" and
15522 "reg" for backwards compatibility presuming Verilog 2001.
15523 (verilog-auto-ascii-enum): Add "auto enum" as alias.
15524 (verilog-preprocess): Fix replication of preprocess output.
15525 Reported by Brad Dobbie.
15526 (verilog-auto-inst-interfaced-ports):
15527 Create verilog-auto-inst-interfaced-ports, bug429.
15528 Reported by Julian Gorfajn.
15529 (verilog-after-save-font-hook)
15530 (verilog-before-save-font-hook): New variable.
15531 (verilog-modi-cache-results, verilog-save-font-mod-hooked)
15532 (verilog-save-font-mods): Wrap disabling fontification, reported
15533 by David Rogoff.
15534 (verilog-do-indent, verilog-pretty-declarations-auto)
15535 (verilog-sk-def-reg): Fix obeying `verilog-auto-lineup', bug305.
15536 Reported by Pierre-David Pfister.
15537 (verilog-set-auto-endcomments): Fix endtask auto comments outside
15538 of class declarations, bug292. Reported by Kevin Heilman.
15539 (verilog-read-decls): Fix 'parameter type' not appearing in
15540 AUTOINSTPARAM, bug340. Reported by Jonathan Greenlaw.
15541 (verilog-auto-logic): Fix when AUTOLOGIC present to properly do
15542 AUTOINPUTs, bug411. Reported by Jonathan Greenlaw.
15543 (verilog-read-auto-lisp): Avoid syntax-ppss warning on AUTOLISP.
15544 Reported by David Kravitz.
15545
15546 2012-05-03 Michael McNamara <mac@mail.brushroad.com>
15547
15548 * progmodes/verilog-mode.el (verilog-pretty-expr): Don't line up
15549 assignment with tests in ifs and for loops.
15550 (verilog-extended-complete-re, verilog-complete-reg): Change so
15551 that DPI inport functions don't look like fuction declarations.
15552 (verilog-pretty-expr): Don't line up assignment
15553 operations to the test and increment in if and for loops
15554 (verilog-extended-complete-re, verilog-complete-reg): Change so
15555 that DPI inport functions don't look like fuction declarations.
15556
15557 2012-05-03 Kenichi Handa <handa@m17n.org>
15558
15559 * mail/rmailmm.el (rmail-show-mime): Catch an error caused by text
15560 decoding, and show a warning message without signaling an error
15561 (Bug#11282).
15562
15563 2012-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
15564
15565 * emacs-lisp/bytecomp.el
15566 (byte-compile-file-form-custom-declare-variable): Compile all elements,
15567 since cconv.el might have introduced :fun-body, internal-make-closure,
15568 and friends for bytecomp to handle (bug#11391).
15569 * custom.el (defcustom): Avoid ((λ ..) ..).
15570
15571 2012-05-02 Stefan Monnier <monnier@iro.umontreal.ca>
15572
15573 * subr.el (read-passwd): Better clean after ourselves (bug#11392).
15574
15575 2012-05-02 Juanma Barranquero <lekktu@gmail.com>
15576
15577 * notifications.el (dbus-debug):
15578 * term/linux.el (gpm-mouse-enable):
15579 * term/screen.el (xterm-register-default-colors): Declare.
15580
15581 2012-05-02 Chong Yidong <cyd@gnu.org>
15582
15583 * cus-start.el (gc-cons-percentage, exec-suffixes)
15584 (dos-display-scancodes, dos-hyper-key, dos-super-key)
15585 (dos-keypad-mode, debug-on-signal, vertical-centering-font-regexp)
15586 (make-cursor-line-fully-visible, void-text-area-pointer)
15587 (font-list-limit): Add customization data.
15588
15589 * allout.el (allout-exposure-change-functions)
15590 (allout-structure-added-functions)
15591 (allout-structure-deleted-functions)
15592 (allout-structure-shifted-functions): Rename abnormal hooks from
15593 *-hook, and convert to defcustoms.
15594 (allout-after-copy-or-kill-hook, allout-post-undo-hook):
15595 Convert to defcustoms.
15596 (allout-mode-hook, allout-mode-deactivate-hook): Doc fix.
15597
15598 * allout-widgets.el: Hook callers changed.
15599
15600 2012-05-02 Eli Zaretskii <eliz@gnu.org>
15601
15602 * mail/rmail.el (rmail-yank-current-message): Use the encoding of
15603 the yanked message in preference to the default value of
15604 buffer-file-coding-system.
15605
15606 2012-05-02 Martin Rudalics <rudalics@gmx.at>
15607
15608 * window.el (display-buffer--action-function-custom-type):
15609 Fix entry.
15610
15611 2012-05-02 Alan Mackenzie <acm@muc.de>
15612
15613 * progmodes/cc-defs.el (c-version): Update to 5.32.3.
15614
15615 2012-05-01 Glenn Morris <rgm@gnu.org>
15616
15617 * cus-start.el (suggest-key-bindings): Remove, now it is in Lisp.
15618
15619 * eshell/esh-cmd.el (eshell-debug-command): Doc fix. Add :set.
15620
15621 * cus-edit.el (custom-variable-documentation): Simplify with format.
15622
15623 2012-05-01 Aaron S. Hawley <aaron.s.hawley@gmail.com>
15624 Stefan Monnier <monnier@iro.umontreal.ca>
15625
15626 * simple.el (suggest-key-bindings, execute-extended-command):
15627 Move from keyboard.c.
15628
15629 2012-05-01 Chong Yidong <cyd@gnu.org>
15630
15631 * follow.el: Eliminate advice.
15632 (set-process-filter, process-filter, sit-for): Advice deleted.
15633 (follow-mode-off-hook): Obsolete hook removed.
15634 (follow-avoid-tail-recenter-p, follow-process-filter-alist):
15635 Vars deleted.
15636 (follow-auto): Use a :set function.
15637 (follow-mode): Rewritten. Don't advise process filters.
15638 (follow-switch-to-current-buffer-all, follow-scroll-up)
15639 (follow-scroll-down): Assume follow-mode is bound.
15640 (follow-comint-scroll-to-bottom)
15641 (follow-align-compilation-windows): New functions.
15642 (follow--window-sorter): New function.
15643 (follow-all-followers): Use it to explicitly sort windows by their
15644 positions; don't make assumptions about next-window order.
15645 (follow-windows-start-end, follow-delete-other-windows-and-split)
15646 (follow-calc-win-start): Doc fix.
15647 (follow-windows-aligned-p, follow-select-if-visible): Don't call
15648 vertical-motion unnecessarily.
15649 (follow-adjust-window): New function.
15650 (follow-post-command-hook): Use it.
15651 (follow-call-set-process-filter, follow-call-process-filter)
15652 (follow-intercept-process-output, follow-tidy-process-filter-alist)
15653 (follow-stop-intercept-process-output, follow-generic-filter):
15654 Functions deleted.
15655 (follow-scroll-bar-toolkit-scroll, follow-scroll-bar-drag)
15656 (follow-scroll-bar-scroll-up, follow-scroll-bar-scroll-down):
15657 New functions, replacing advice on scroll-bar-* commands.
15658 (follow-mwheel-scroll): New function (Bug#4112).
15659
15660 * comint.el (comint-adjust-point): New function.
15661 (comint-postoutput-scroll-to-bottom): Use it.
15662 Call follow-comint-scroll-to-bottom for Follow mode buffers.
15663
15664 2012-05-01 Glenn Morris <rgm@gnu.org>
15665
15666 * term/AT386.el, term/apollo.el, term/bobcat.el, term/cygwin.el:
15667 * term/iris-ansi.el, term/linux.el, term/lk201.el, term/news.el:
15668 * term/screen.el, term/vt102.el, term/vt125.el, term/vt200.el:
15669 * term/vt201.el, term/vt220.el, term/vt240.el, term/vt300.el:
15670 * term/vt320.el, term/vt400.el, term/vt420.el, term/wyse50.el:
15671 Remove no-byte-compile setting.
15672
15673 2012-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
15674
15675 * minibuffer.el (completion-table-with-quoting): Fix compatibility
15676 all-completions code to not return a number in the last cdr.
15677
15678 2012-04-30 Leo Liu <sdl.web@gmail.com>
15679
15680 * ibuf-ext.el (ibuffer-diff-buffer-with-file-1): Avoid buffer
15681 read-only error.
15682
15683 2012-04-29 Chong Yidong <cyd@gnu.org>
15684
15685 * follow.el (follow-calc-win-end): Rewrite to handle partial
15686 screen lines correctly (Bug#8390).
15687 (follow-avoid-tail-recenter): Minor cleanup.
15688
15689 2012-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
15690
15691 Avoid the obsolete `assoc' package.
15692 * speedbar.el (speedbar-refresh): Avoid adelete.
15693 (speedbar-file-lists): Simplify and avoid aput.
15694 * man.el (Man--sections, Man--refpages): New vars, replacing
15695 Man-sections-alist and Man-refpages-alist.
15696 (Man-build-section-alist, Man-build-references-alist):
15697 Use them; avoid aput.
15698 (Man--last-section, Man--last-refpage): New vars.
15699 (Man-follow-manual-reference): Use them.
15700 Use the `default' arg of completing-read.
15701 (Man-goto-section): Idem. Move prompt to the `interactive' spec.
15702
15703 2012-04-27 Chong Yidong <cyd@gnu.org>
15704
15705 * vc/diff.el (diff-sentinel): Go to bob (Bug#10259).
15706
15707 * startup.el (x-apply-session-resources): New function.
15708
15709 * term/ns-win.el (ns-initialize-window-system):
15710 * term/w32-win.el (w32-initialize-window-system):
15711 * term/x-win.el (x-initialize-window-system): Use it to properly
15712 set menu-bar-mode and other vars from X resources, even if the
15713 initial frame is not a window-system frame (Bug#2299).
15714
15715 * subr.el (read-key): Avoid running filter function when setting
15716 up temporary tool bar entries (Bug#9922).
15717
15718 2012-04-27 Andreas Schwab <schwab@linux-m68k.org>
15719
15720 * vc/vc-git.el (vc-git-state): Fix regexp matching diff output.
15721 (Bug#11344)
15722
15723 2012-04-27 Chong Yidong <cyd@gnu.org>
15724
15725 * select.el (xselect--encode-string): New function, split from
15726 xselect-convert-to-string.
15727 (xselect-convert-to-string): Use it.
15728 (xselect-convert-to-filename, xselect-convert-to-os)
15729 (xselect-convert-to-host, xselect-convert-to-user): Ensure that
15730 returned strings are properly encoded (Bug#11315).
15731
15732 2012-04-27 Chong Yidong <cyd@gnu.org>
15733
15734 * simple.el (delete-active-region): Move to killing custom group.
15735
15736 2012-04-27 Andreas Schwab <schwab@linux-m68k.org>
15737
15738 * progmodes/which-func.el (which-func-current): Quote %
15739 characters for mode-line processing.
15740
15741 2012-04-27 Chong Yidong <cyd@gnu.org>
15742
15743 * xml.el (xml-parse-region, xml-parse-tag): Avoid errors due to
15744 reaching eob (Bug#11286).
15745
15746 2012-04-27 Eli Zaretskii <eliz@gnu.org>
15747
15748 * progmodes/gdb-mi.el (gdb-control-level): New variable.
15749 (gdb): Make it buffer-local and init to zero.
15750 (gdb-control-commands-regexp): New variable.
15751 (gdb-send): Don't wrap in "-interpreter-exec console" if
15752 gdb-control-level is positive. Increment gdb-control-level
15753 whenever the command matches gdb-control-commands-regexp, and
15754 decrement it each time the command is "end". (Bug#11279)
15755
15756 2012-04-27 Martin Rudalics <rudalics@gmx.at>
15757
15758 * window.el (adjust-window-trailing-edge, enlarge-window)
15759 (shrink-window, window-resize):
15760 * mouse.el (mouse-drag-line): Fix resizing of minibuffer
15761 windows (Bug#11276).
15762
15763 2012-04-27 Chong Yidong <cyd@gnu.org>
15764
15765 * progmodes/pascal.el (pascal--extra-indent): Rename from ind, to
15766 fix "missing prefix" warning. All callers changed.
15767
15768 2012-04-27 Stefan Monnier <monnier@iro.umontreal.ca>
15769
15770 * emacs-lisp/assoc.el: Move to obsolete/.
15771
15772 2012-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
15773
15774 * emacs-lisp/assoc.el (aget): Fix dynamic-scoping issue (bug#11352).
15775
15776 * term/ns-win.el (ns-define-service):
15777 * progmodes/pascal.el (pascal-goto-defun):
15778 * progmodes/js.el (js--read-tab):
15779 * progmodes/etags.el (tags-lazy-completion-table):
15780 * emacs-lisp/syntax.el (syntax-propertize-via-font-lock):
15781 * emacs-lisp/ewoc.el (ewoc--wrap):
15782 * emacs-lisp/assoc.el (aput, adelete, amake):
15783 * doc-view.el (doc-view-convert-current-doc):
15784 * vc/diff.el (diff-no-select): Replace lexical-let by lexical-binding.
15785
15786 2012-04-26 Chong Yidong <cyd@gnu.org>
15787
15788 * image.el (image-type-from-buffer): Only return supported image
15789 type (Bug#9045).
15790
15791 * vc/diff-mode.el (diff-beginning-of-hunk): Return a meaningful
15792 value, for symmetry with diff-end-of-hunk.
15793 (diff-split-hunk, diff-find-source-location)
15794 (diff-ignore-whitespace-hunk, diff-refine-hunk): Use it.
15795 (diff-bounds-of-hunk, diff-bounds-of-file): New functions.
15796 (diff-restrict-view, diff-hunk-kill, diff-file-kill): Use them to
15797 compute the relevant hunk or file properly (Bug#6005).
15798 (diff-file-junk-re): Add bzr's "modified file" tag (Bug#6041).
15799
15800 2012-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
15801
15802 * vc/vc-mtn.el:
15803 * vc/vc-hg.el:
15804 * vc/vc-git.el:
15805 * vc/vc-dir.el:
15806 * vc/vc-cvs.el:
15807 * vc/vc-bzr.el:
15808 * vc/vc-arch.el:
15809 * vc/vc.el: Replace lexical-let by lexical-binding.
15810 * minibuffer.el (lazy-completion-table): Avoid ((λ ...) ...).
15811 * emacs-lisp/cl-macs.el (lexical-let): Fix use in lexical-binding.
15812 * emacs-lisp/cconv.el (cconv-analyse-form): Warn use of ((λ ...) ...).
15813
15814 2012-04-26 Chong Yidong <cyd@gnu.org>
15815
15816 * vc/diff-mode.el (diff-undo): New command (Bug#5302).
15817 (diff-mode-shared-map): Bind it to / and [remap undo].
15818
15819 * vc/ediff-wind.el (ediff-setup-windows-default): New function.
15820 (ediff-window-setup-function): Use it as the default, to set up
15821 windows based on whether the current frame is graphical (Bug#2138).
15822 (ediff-choose-window-setup-function-automatically): Make obsolete.
15823
15824 * vc/ediff-init.el: Always define ediff-pixel-width/height.
15825
15826 2012-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
15827
15828 * ffap.el: Remove old code for obsolete package.
15829 (ffap-complete-as-file-p): Remove.
15830
15831 Use completion-table-with-quoting for comint and pcomplete.
15832 * comint.el (comint--unquote&requote-argument)
15833 (comint--unquote-argument, comint--requote-argument): New functions.
15834 (comint--unquote&expand-filename, comint-unquote-filename): Obsolete.
15835 (comint-quote-filename): Use regexp-opt-charset.
15836 (comint--common-suffix, comint--common-quoted-suffix)
15837 (comint--table-subvert): Remove.
15838 (comint-unquote-function, comint-requote-function): New vars.
15839 (comint--complete-file-name-data): Use them with
15840 completion-table-with-quoting.
15841 * pcmpl-unix.el (pcomplete/scp): Use completion-table-subvert.
15842 * pcomplete.el (pcomplete-arg-quote-list)
15843 (pcomplete-quote-arg-hook, pcomplete-quote-argument): Obsolete.
15844 (pcomplete-unquote-argument-function): Default to non-nil.
15845 (pcomplete-unquote-argument): Simplify.
15846 (pcomplete--common-quoted-suffix): Remove.
15847 (pcomplete-requote-argument-function): New var.
15848 (pcomplete--common-suffix): New function.
15849 (pcomplete-completions-at-point): Use completion-table-with-quoting
15850 and completion-table-subvert.
15851
15852 * minibuffer.el: Use completion-table-with-quoting for read-file-name.
15853 (minibuffer--double-dollars): Preserve properties.
15854 (completion--sifn-requote): New function.
15855 (completion--file-name-table): Rewrite using it and c-t-with-quoting.
15856
15857 * minibuffer.el: Add support for completion of quoted/escaped data.
15858 (completion-table-with-quoting, completion-table-subvert): New funs.
15859 (completion--twq-try, completion--twq-all): New functions.
15860 (completion--nth-completion): New function.
15861 (completion-try-completion, completion-all-completions): Use it.
15862
15863 2012-04-25 Leo Liu <sdl.web@gmail.com>
15864
15865 * progmodes/python.el (python-pdbtrack-get-source-buffer):
15866 Use compilation-message if available to find real filename.
15867
15868 2012-04-25 Chong Yidong <cyd@gnu.org>
15869
15870 * vc/diff-mode.el (diff-setup-whitespace): New function.
15871 (diff-mode): Use it.
15872
15873 * vc/diff.el (diff-sentinel):
15874 * vc/vc.el (vc-diff-finish): Call diff-setup-whitespace to assign
15875 Whitespace mode variables based on diff style (Bug#8612).
15876
15877 2012-04-25 Leo Liu <sdl.web@gmail.com>
15878
15879 * progmodes/python.el (python-send-region): Add suffix .py to the
15880 temp file.
15881
15882 * files.el (auto-mode-alist): Use javascript-mode instead.
15883
15884 2012-04-25 Alex Harsanyi <AlexHarsanyi@gmail.com>
15885
15886 Sync with soap-client repository. Support SOAP simpleType (Bug#10331).
15887
15888 * net/soap-client.el (soap-resolve-references-for-sequence-type)
15889 (soap-resolve-references-for-array-type): Hack to prevent self
15890 references, see Bug#9.
15891 (soap-parse-envelope): Report the contents of the 'detail' node
15892 when receiving a fault reply.
15893 (soap-parse-envelope): Report the contents of the entire 'detail' node.
15894
15895 * net/soap-inspect.el (soap-sample-value-for-simple-type)
15896 (soap-inspect-simple-type): New function.
15897
15898 * net/soap-client.el (soap-simple-type): New struct.
15899 (soap-default-xsd-types, soap-default-soapenc-types)
15900 (soap-decode-basic-type, soap-encode-basic-type):
15901 support unsignedInt and double basic types.
15902 (soap-resolve-references-for-simple-type)
15903 (soap-parse-simple-type, soap-encode-simple-type): New function.
15904 (soap-parse-schema): Parse xsd:simpleType declarations.
15905
15906 * net/soap-client.el (soap-default-xsd-types)
15907 (soap-default-soapenc-types): Add integer, byte and anyURI types.
15908 (soap-parse-complex-type-complex-content): Use `soap-wk2l' to find
15909 the local name of "soapenc:Array".
15910 (soap-decode-basic-type, soap-encode-basic-type): Support encoding
15911 decoding integer, byte and anyURI xsd types.
15912
15913 2012-04-25 Chong Yidong <cyd@gnu.org>
15914
15915 * cus-edit.el (custom-buffer-create-internal): Update header text.
15916
15917 2012-04-25 Eli Zaretskii <eliz@gnu.org>
15918
15919 * progmodes/gdb-mi.el (gdb-init-1): Condition Windows-specific
15920 settings on 'system-type', not on 'window-system'. On MS-Windows,
15921 set interactive-mode on in GDB.
15922
15923 2012-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
15924
15925 * progmodes/ruby-mode.el: Simplify last change, and cleanup code.
15926 (ruby-syntax-propertize-regexp): Remove.
15927 (ruby-syntax-propertize-function): Split regexp into chunks.
15928 Match following code directly.
15929
15930 2012-04-24 Dmitry Gutov <dgutov@yandex.ru>
15931
15932 * progmodes/ruby-mode.el: Handle Cucumber defs (bug#6286).
15933 (ruby-syntax-propertize-regexp): New function.
15934 (ruby-syntax-propertize-function): Use it to handle regexp not preceded
15935 by a special keyword.
15936
15937 * progmodes/ruby-mode.el: Handle general delimited literals (bug#6286).
15938 (ruby-syntax-general-delimiters-goto-beg)
15939 (ruby-syntax-propertize-general-delimiters): New functions.
15940 (ruby-syntax-propertize-function): Use them to handle GDL.
15941 (ruby-font-lock-keywords): Move old handling of GDL...
15942 (ruby-font-lock-syntactic-keywords): .. to here.
15943 (ruby-calculate-indent): Adjust indentation for GDL.
15944
15945 2012-04-24 Michael Albinus <michael.albinus@gmx.de>
15946
15947 * notifications.el (top): Remove unneeded declarations.
15948 (notifications-specification-version): Change to "1.2".
15949 (notifications-interface, notifications-notify-method)
15950 (notifications-close-notification-method): Fix docstring.
15951 (notifications-get-capabilities-method): New defconst.
15952 (notifications-notify): Add :action-items, :resident and
15953 :transient hints. Change "image_data" to "image-data" and
15954 "image_path" to "image-path".
15955 (notifications-get-capabilities): New defun.
15956
15957 2012-04-24 Leo Liu <sdl.web@gmail.com>
15958
15959 * progmodes/python.el: Move hideshow setup to the end.
15960
15961 2012-04-24 Martin Rudalics <rudalics@gmx.at>
15962
15963 * window.el (handle-select-window): Clear echo area since this is
15964 no more done by read_char (Bug#11304).
15965
15966 2012-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
15967
15968 * ibuffer.el (ibuffer-mode-map): Bind `/ m' to filter-used-mode
15969 and `/ M' to filter-derived-mode.
15970 * ibuf-ext.el (ibuffer-list-buffer-modes): Simplify; avoid add-to-list.
15971 (ibuffer-filter-by-mode, ibuffer-filter-by-used-mode)
15972 (ibuffer-mark-by-mode): Use default rather than initial-input.
15973 (ibuffer-filter-by-derived-mode): Autoload and require-match.
15974
15975 2012-04-24 Ivan Andrus <darthandrus@gmail.com> (tiny change)
15976
15977 * ibuf-ext.el (ibuffer-list-buffer-modes): Add `include-parents' arg.
15978 (ibuffer-filter-by-derived-mode): New filter.
15979 * ibuffer.el (ibuffer-mode-map): Bind to `/ w'.
15980
15981 2012-04-23 Andreas Politz <politza@fh-trier.de>
15982
15983 * subr.el (accept-change-group): Fix arg usage (Bug#6095).
15984
15985 2012-04-23 Chong Yidong <cyd@gnu.org>
15986
15987 * cus-edit.el (customize-apropos, customize-apropos-options):
15988 Disable matching of non-option variables (Bug#11176).
15989 (customize-option, customize-option-other-window)
15990 (customize-changed-options): Doc fix.
15991 (customize-apropos-options, customize-apropos-faces)
15992 (customize-apropos-groups): Use apropos-read-pattern (Bug#11124).
15993
15994 * apropos.el (apropos-read-pattern): Make prompt less cryptic.
15995 Fix word list splitting (Bug#11132).
15996 (apropos-symbol, apropos-keybinding, apropos-label)
15997 (apropos-property, apropos-function-button)
15998 (apropos-variable-button, apropos-misc-button): New faces.
15999 (apropos-symbol-face, apropos-keybinding-face)
16000 (apropos-label-face, apropos-property-face, apropos-match-face):
16001 Variables removed (Bug#8396).
16002 (apropos-library-button, apropos-format-plist, apropos-print)
16003 (apropos-print-doc, apropos-describe-plist): Callers changed.
16004
16005 2012-04-23 Michael Albinus <michael.albinus@gmx.de>
16006
16007 * net/xesam.el (xesam-mode-map): Use let-bound map in
16008 initialization. (Bug#11292)
16009
16010 2012-04-23 Agustín Martín Domingo <agustin.martin@hispalinux.es>
16011
16012 Preserve ispell session localwords when switching back to
16013 original buffer.
16014
16015 * textmodes/ispell.el (ispell-buffer-session-localwords):
16016 New buffer-local variable to hold buffer session localwords.
16017 (ispell-kill-ispell): Add option 'clear to delete session
16018 localwords.
16019 (ispell-command-loop, ispell-change-dictionary)
16020 (ispell-buffer-local-words): Preserve session localwords when
16021 needed.
16022
16023 * textmodes/flyspell.el (flyspell-process-localwords)
16024 (flyspell-do-correct): Preserve session localwords when needed.
16025
16026 2012-04-23 Agustín Martín Domingo <agustin.martin@hispalinux.es>
16027
16028 * textmodes/ispell.el (ispell-insert-word) Remove unneeded function
16029 using obsolete `translation-table-for-input'.
16030 (ispell-word, ispell-process-line, ispell-complete-word):
16031 Use plain `insert' instead of removed `ispell-insert-word'.
16032
16033 2012-04-22 Chong Yidong <cyd@gnu.org>
16034
16035 * cus-edit.el (custom-variable-menu)
16036 (custom-variable-reset-saved, custom-face-menu)
16037 (custom-face-reset-saved): If there is no saved value, make the
16038 "reset-saved" operation bring back the default (Bug#9509).
16039 (custom-face-state): Properly detect themed faces.
16040
16041 * faces.el (face-spec-set): Stop supporting deprecated form of
16042 third arg.
16043
16044 2012-04-22 Michael Albinus <michael.albinus@gmx.de>
16045
16046 Move functions from C to Lisp. Make non-blocking method calls
16047 the default. Implement further D-Bus standard interfaces.
16048
16049 * net/dbus.el (dbus-message-internal): Declare function.
16050 Remove unneeded function declarations.
16051 (defvar dbus-message-type-invalid, dbus-message-type-method-call)
16052 (dbus-message-type-method-return, dbus-message-type-error)
16053 (dbus-message-type-signal): Declare variables. Remove local
16054 definitions.
16055 (dbus-interface-dbus, dbus-interface-peer)
16056 (dbus-interface-introspectable, dbus-interface-properties)
16057 (dbus-path-emacs, dbus-interface-emacs, dbus-return-values-table):
16058 Adapt docstring.
16059 (dbus-interface-objectmanager): New defconst.
16060 (dbus-call-method, dbus-call-method-asynchronously)
16061 (dbus-send-signal, dbus-method-return-internal)
16062 (dbus-method-error-internal, dbus-register-service)
16063 (dbus-register-signal, dbus-register-method): New defuns, moved
16064 from dbusbind.c
16065 (dbus-call-method-handler, dbus-setenv)
16066 (dbus-get-all-managed-objects, dbus-managed-objects-handler):
16067 New defuns.
16068 (dbus-call-method-non-blocking): Make it an obsolete function.
16069 (dbus-unregister-object, dbus-unregister-service)
16070 (dbus-handle-event, dbus-register-property)
16071 (dbus-property-handler): Obey the new structure of
16072 `bus-registered-objects'.
16073 (dbus-introspect): Use `dbus-call-method'. Use a timeout.
16074 (dbus-get-property, dbus-set-property, dbus-get-all-properties):
16075 Use `dbus-call-method'.
16076
16077 2012-04-22 Chong Yidong <cyd@gnu.org>
16078
16079 * cus-edit.el (custom-commands, custom-reset-menu)
16080 (Custom-reset-standard): Tweak labels.
16081 (custom-reset-button-menu): Change default to t.
16082 (custom-buffer-create-internal): For the custom-reset-button-menu
16083 case, put the revert button first.
16084 (custom-group-subtitle): New face.
16085 (custom-group-value-create): Align docstring to a specific column.
16086
16087 * wid-edit.el (widget-documentation-link-add): Don't handle
16088 indentation in this function.
16089 (widget-documentation-string-indent-to): New function.
16090 (widget-documentation-string-value-create): Use it.
16091
16092 * autorevert.el (auto-revert):
16093 * epg-config.el (epg):
16094 * ibuffer.el (ibuffer):
16095 * mpc.el (mpc):
16096 * ses.el (ses):
16097 * eshell/eshell.el (eshell):
16098 * net/ange-ftp.el (ange-ftp):
16099 * progmodes/ebnf2ps.el (postscript):
16100 * progmodes/flymake.el (flymake):
16101 * progmodes/prolog.el (prolog):
16102 * progmodes/verilog-mode.el (verilog-mode):
16103 * progmodes/which-func.el (which-func):
16104 * term/xterm.el (xterm):
16105 * textmodes/picture.el (picture):
16106 * textmodes/tildify.el (tildify):
16107 * vc/ediff.el (ediff): Tweak defgroups to improve presentation in
16108 customization buffers.
16109
16110 2012-04-22 Alan Mackenzie <acm@muc.de>
16111
16112 * progmodes/cc-engine.el (c-append-lower-brace-pair-to-state-cache):
16113 Adding a ) can hide the resulting (..) from searches. Fix it.
16114 Bound the backward search to the position of the existing (.
16115
16116 2012-04-21 Juanma Barranquero <lekktu@gmail.com>
16117
16118 * progmodes/verilog-mode.el (verilog-mode): Check whether
16119 which-func-modes is t before adding verilog-mode.
16120 Reported by Andy Moreton <andrewjmoreton@gmail.com>.
16121
16122 2012-04-21 Leo Liu <sdl.web@gmail.com>
16123
16124 * net/rcirc.el (rcirc): Avoid error when process-contact returns t.
16125
16126 2012-04-21 Michael Vehrs <Michael.Burschik@gmx.de>
16127
16128 * woman.el: Add support for "T{ T}" tbl syntax, and fix the
16129 filling of the last column of a table (Bug#5635).
16130 (woman-find-next-control-line): New arg, specifying an additional
16131 regexp component for the control line.
16132 (woman2-roff-buffer): Use it.
16133 (woman-break-table): New function.
16134 (woman2-TS): Use it.
16135
16136 2012-04-21 Chong Yidong <cyd@gnu.org>
16137
16138 * woman.el (woman-set-buffer-display-table, woman-decode-region)
16139 (woman-horizontal-escapes, woman-negative-vertical-space)
16140 (woman-tab-to-tab-stop, woman2-fc, woman2-TS)
16141 (WoMan-warn-ignored): Use ?\s instead of ?\ .
16142
16143 2012-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
16144
16145 * minibuffer.el (completion-file-name-table): Complete user names.
16146
16147 2012-04-20 Leo Liu <sdl.web@gmail.com>
16148
16149 * font-lock.el (lisp-font-lock-keywords-2): Add pcase, pcase-let
16150 and pcase-let*.
16151
16152 2012-04-20 Chong Yidong <cyd@gnu.org>
16153
16154 * server.el (server-execute): Respect initial-buffer-choice if it
16155 is a string and there are no files to open (Bug#2825).
16156 (server-create-window-system-frame, server-create-tty-frame):
16157 Don't switch buffers here.
16158 (server-process-filter): Only try to open a window system frame if
16159 compiled with graphical support (Bug#8314).
16160
16161 2012-04-20 Dan Nicolaescu <dann@gnu.org>
16162
16163 * battery.el (battery-echo-area-format): Display remaining time
16164 for sysfs backend too (Bug#11269).
16165 (battery-linux-sysfs): Fix conditional for the charge.
16166
16167 2012-04-20 Chong Yidong <cyd@gnu.org>
16168
16169 * progmodes/gdb-mi.el (gdb): Revert previous change.
16170 (gdb-inferior-io--init-proc): New function.
16171 (gdb-init-1): Use it.
16172 (gdb-inferior-io-sentinel): New sentinel for the gdb-inferior pty,
16173 responsible for allocating a new pty and hooking it to gdb when
16174 the old pty gets an EIO due to process exit.
16175 (gdb-delchar-or-quit): New command. Bind it in gdb-mi buffers.
16176 (gdb-tooltip-print): Don't use obsolete tooltip-use-echo-area.
16177 (gdb-inferior-io--maybe-delete-pty): Move into gdb-reset.
16178
16179 2012-04-20 Eli Zaretskii <eliz@gnu.org>
16180
16181 * window.el (window-min-size, window-sizable, window-min-delta)
16182 (window-max-delta, window--resizable, window-resizable)
16183 (window-total-size, window-full-height-p, window-full-width-p)
16184 (window-in-direction, window--resize-mini-window, window-resize)
16185 (window--resize-child-windows-normal)
16186 (window--resize-child-windows, window--resize-siblings)
16187 (window--resize-this-window, adjust-window-trailing-edge)
16188 (enlarge-window, shrink-window): Doc fixes.
16189
16190 2012-04-20 Chong Yidong <cyd@gnu.org>
16191
16192 * progmodes/gdb-mi.el (gdb-inferior-io--maybe-delete-pty):
16193 New function to call delete-process on the gdb-inferior buffer's pty.
16194 (gdb-reset): Use it, instead of relying on kill-buffer to kill the
16195 pty process (Bug#11273).
16196 (gdb-update): New arg to suppress talking to the gdb process.
16197 (gdb-done-or-error): Use it.
16198 (gdb-stopped-functions): Rename from gdb-stopped-hooks.
16199 (gdb): Call gdb-inferior-io--maybe-delete-pty as a workaround for
16200 sentinel not being called.
16201
16202 * comint.el (make-comint-in-buffer, comint-exec): Doc fix.
16203
16204 * progmodes/grep.el (grep, rgrep): Doc fix (Bug#11268).
16205
16206 2012-04-20 Glenn Morris <rgm@gnu.org>
16207
16208 * net/network-stream.el (open-network-stream): Doc fix.
16209
16210 2012-04-20 Chong Yidong <cyd@gnu.org>
16211
16212 * emacs-lisp/tabulated-list.el (tabulated-list-print): Fix typos.
16213
16214 2012-04-20 Alan Mackenzie <acm@muc.de>
16215
16216 Ensure searching for keywords is case sensitive.
16217
16218 * progmodes/cc-cmds.el (c-electric-brace, c-electric-lt-gt)
16219 (c-electric-paren, c-beginning-of-defun, c-end-of-defun)
16220 (c-defun-name, c-mark-function, c-cpp-define-name)
16221 (c-comment-indent, c-scan-conditionals, c-indent-defun)
16222 (c-context-line-break): Bind case-fold-search to nil.
16223
16224 * progmodes/cc-mode.el (c-font-lock-fontify-region):
16225 Bind case-fold-search to nil.
16226
16227 2012-04-20 Chong Yidong <cyd@gnu.org>
16228
16229 * mail/sendmail.el (mail-bury): Call return action with the right
16230 Rmail buffer (Bug#11242).
16231
16232 * server.el (server-process-filter): Handle corner case where both
16233 tty and nowait options are present (Bug#11102).
16234
16235 2012-04-20 Eli Zaretskii <eliz@gnu.org>
16236
16237 * version.el (emacs-bzr-version, emacs-bzr-get-version): Doc fixes.
16238 (top level): Put into the executable the ident-style '$Id:' tag on
16239 windows-nt as well.
16240
16241 2012-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
16242
16243 * electric.el (electric-indent-post-self-insert-function): Check that
16244 electric-indent-mode is enabled in current buffer.
16245
16246 2012-04-19 Juanma Barranquero <lekktu@gmail.com>
16247
16248 * imenu.el (imenu-progress-message): Restore; it is "used" in
16249 erc/erc-imenu.el and net/snmp-mode.el.
16250
16251 2012-04-19 Juanma Barranquero <lekktu@gmail.com>
16252
16253 * avoid.el (mouse-avoidance-mode): Mark unused arg.
16254 (mouse-avoidance-nudge-mouse): Remove unused binding.
16255
16256 * bs.el (bs-toggle-readonly): Call `toggle-read-only' interactively.
16257
16258 * descr-text.el (describe-char):
16259 * progmodes/python.el (python-describe-symbol):
16260 Don't call `toggle-read-only', set `buffer-read-only'.
16261
16262 * imenu.el (imenu-default-goto-function): Mark unused args.
16263 (imenu-progress-message): Remove obsolete macro; all callers changed.
16264
16265 * subr.el (keymap-canonicalize): Remove unused binding.
16266 (read-passwd): Mark unused arg.
16267
16268 * tutorial.el (tutorial--display-changes): Remove unused binding.
16269 (tutorial--save-tutorial-to): Remove unused variable.
16270
16271 * emacs-lisp/package.el (define-package, package-menu-mark-delete)
16272 (package-menu-mark-install, package-menu-mark-unmark): Mark unused args.
16273 (package-generate-autoloads, package-menu--generate)
16274 (package-menu--find-upgrades): Remove unused bindings.
16275
16276 * emulation/cua-rect.el (cua-restrict-regexp-rectangle)
16277 (cua-restrict-prefix-rectangle): Doc fixes. Remove unused bindings.
16278 (cua--mouse-ignore, cua--delete-rectangle, cua--extract-rectangle)
16279 (cua--indent-rectangle, cua-open-rectangle, cua-close-rectangle)
16280 (cua-blank-rectangle, cua-string-rectangle, cua-replace-in-rectangle)
16281 (cua-incr-rectangle, cua-sequence-rectangle, cua--convert-rectangle-as)
16282 (cua--rectangle-aux-replace, cua--left-fill-rectangle)
16283 (cua-scroll-rectangle-up, cua-scroll-rectangle-down)
16284 (cua-delete-char-rectangle): Mark unused args.
16285 (cua-align-rectangle): Remove unused binding.
16286
16287 * mail/rmail.el (compilation--message->loc)
16288 (epa--find-coding-system-for-mime-charset): Declare.
16289
16290 * net/dbus.el (dbus-register-service): Declare.
16291 (dbus-name-owner-changed-handler): Remove unused binding.
16292
16293 * nxml/nxml-mode.el (nxml-electric-slash, nxml-in-mixed-content-p)
16294 (nxml-compute-indent-from-matching-start-tag): Remove unused variables.
16295 (nxml-scan-backward-within): Mark unused arg.
16296 (nxml-dynamic-markup-word): Remove unused binding.
16297
16298 * mouse.el (mouse-menu-major-mode-map):
16299 * emacs-lisp/authors.el (authors-scan-change-log)
16300 (authors-add-to-author-list):
16301 * emacs-lisp/avl-tree.el (avl-tree--enter-balance):
16302 * emacs-lisp/smie.el (smie-auto-fill):
16303 * mail/sendmail.el (mail-bury):
16304 * mail/unrmail.el (unrmail):
16305 * net/tls.el (open-tls-stream):
16306 * textmodes/picture.el (picture-mouse-set-point):
16307 Remove unused bindings.
16308
16309 2012-04-19 Michael Albinus <michael.albinus@gmx.de>
16310
16311 * net/tramp.el (tramp-action-password): Let-bind
16312 `enable-recursive-minibuffers' to t.
16313
16314 2012-04-18 Sam Steingold <sds@gnu.org>
16315
16316 * progmodes/gud.el (gud-key-prefix): Use :type 'key-sequence
16317 instead of 'string to accommodate values like [f11].
16318 Always use `vconcat' instead of `concat' on it, like in `gud-def'.
16319 * progmodes/gdb-mi.el: Likewise.
16320
16321 2012-04-18 Leo Liu <sdl.web@gmail.com>
16322
16323 * abbrev.el (edit-abbrevs): Move point to the abbrev table of
16324 current buffer.
16325 (prepare-abbrev-list-buffer): Enter edit-abbrevs-mode only if
16326 LOCAL is nil.
16327
16328 2012-04-18 Chong Yidong <cyd@gnu.org>
16329
16330 * simple.el (line-move): Use forward-line if in batch mode
16331 (Bug#11053).
16332
16333 2012-04-18 Christopher Schmidt <christopher@ch.ristopher.com>
16334
16335 * files.el (after-find-file): Do not try to add a final newline if
16336 the buffer is read-only (Bug#11156).
16337
16338 2012-04-17 Richard Stallman <rms@gnu.org>
16339
16340 * mail/rmail.el (rmail-start-mail):
16341 Pass (rmail-mail-return...) for the return-action.
16342 Pass (rmail-yank-current-message...) for the yank-action.
16343 (rmail-yank-current-message): New function.
16344 (rmail-mail): Pass the Rmail buffer, not view buffer, for replybuffer.
16345 (rmail-reply): Likewise.
16346 (rmail-forward): Pass the Rmail buffer, not nil, for replybuffer.
16347
16348 * mail/sendmail.el (mail-bury): Choose the first rmail-mode
16349 buffer, not the last. Reject temp buffers. Use the rmail-mode
16350 buffer, not newbuf.
16351
16352 2012-04-17 Juanma Barranquero <lekktu@gmail.com>
16353
16354 * server.el (server-ensure-safe-dir): Simplify.
16355
16356 2012-04-17 Stefan Monnier <monnier@iro.umontreal.ca>
16357
16358 * emacs-lisp/smie.el: Provide smarter auto-filling.
16359 (smie-auto-fill): New function.
16360 (smie-setup): Use it.
16361
16362 * newcomment.el (comment-choose-indent): Obey comment-inline-offset.
16363
16364 2012-04-17 Philipp Haselwarter <philipp.haselwarter@gmx.de> (tiny change)
16365
16366 * newcomment.el (comment-inline-offset): New custom var (bug#11090).
16367 (comment-indent): Use it.
16368
16369 2012-04-17 Vincent Belaïche <vincentb1@users.sourceforge.net>
16370
16371 * ses.el: The overall change is to add cell renaming, that is
16372 setting fancy names for cell symbols other than name matching
16373 "\\`[A-Z]+[0-9]+\\'" regexp .
16374 (ses-localvars): Add ses--renamed-cell-symb-list.
16375 (ses-create-cell-variable): New defun.
16376 (ses-destroy-cell-variable-range): Respect ses--numrows, ses--numcols.
16377 (ses-relocate-formula): Relocate formulas only for cells the
16378 symbols of which are not renamed, i.e. symbols whose names do not
16379 match regexp "\\`[A-Z]+[0-9]+\\'".
16380 (ses-relocate-all): Relocate values only for cells the symbols of
16381 which are not renamed.
16382 (ses-load): Create cells variables as the (ses-cell ...) are read,
16383 in order to check row col consistency with cell symbol name only
16384 for cells that are not renamed.
16385 (ses-replace-name-in-formula): New defun.
16386 (ses-rename-cell): New defun.
16387
16388 2012-04-17 Peter Oliver <bzr@mavit.org.uk> (tiny change)
16389
16390 * progmodes/perl-mode.el (perl-indent-parens-as-block):
16391 New option (bug#11118).
16392 (perl-calculate-indent): Respect it.
16393
16394 2012-04-17 Glenn Morris <rgm@gnu.org>
16395
16396 * dired-aux.el (dired-mark-read-string): Doc fix.
16397
16398 2012-04-17 Dmitry Antipov <dmantipov@yandex.ru>
16399
16400 * dired-aux.el (dired-mark-read-string): Offer optional completion.
16401 (dired-do-chxxx): Complete chown, chgrp over users, groups. (Bug#7900)
16402
16403 2012-04-17 Glenn Morris <rgm@gnu.org>
16404
16405 * mouse.el (mouse-drag-track):
16406 * speedbar.el (speedbar-frame-mode):
16407 Use auto-hscroll-mode rather than the alias automatic-hscrolling.
16408
16409 2012-04-16 Leo Liu <sdl.web@gmail.com>
16410
16411 * progmodes/python.el: Trivial cleanup.
16412
16413 2012-04-16 Glenn Morris <rgm@gnu.org>
16414
16415 * vc/vc.el (vc-string-prefix-p):
16416 * vc/pcvs-util.el (cvs-string-prefix-p):
16417 * textmodes/tex-mode.el (latex-string-prefix-p, tex-string-prefix-p):
16418 * mpc.el (mpc-string-prefix-p):
16419 Make all of these into obsolete aliases for string-prefix-p.
16420 Update callers.
16421 * vc/pcvs.el, vc/vc-dispatcher.el, vc/vc-dir.el: Update callers.
16422
16423 * textmodes/two-column.el: Move custom options to the start.
16424 (frame-width): Remove compat definition.
16425 (2C-associate-buffer, 2C-dissociate):
16426 Use with-current-buffer rather than save-excursion.
16427 (2C-dissociate): Force a mode-line update.
16428 (2C-autoscroll): Use ignore-errors.
16429
16430 * emacs-lisp/eieio-opt.el (describe-class, describe-generic):
16431 Autoload trivia.
16432
16433 * emacs-lisp/cl-extra.el (*random-state*):
16434 Remove unnecessary declaration.
16435
16436 * calendar/cal-tex.el (cal-tex-end-document): Trivial clarification.
16437
16438 * play/cookie1.el (cookie-snarf):
16439 Give an explicit error if input file cannot be read.
16440
16441 * play/yow.el (yow-file): Use expand-file-name rather than concat.
16442
16443 * progmodes/perl-mode.el (c-macro-expand):
16444 Remove unnecessary autoload (it is in loaddefs.el).
16445
16446 * textmodes/picture.el (picture-desired-column)
16447 (picture-update-desired-column): Convert comments to doc-strings.
16448 (picture-substitute): Remove function.
16449 (picture-mode-map): Initialize in the defvar.
16450
16451 * woman.el: Remove eval-after-load for tar-mode.
16452 * tar-mode.el (tar-mode-map): Add woman binding and menu entry.
16453 (woman-tar-extract-file): Autoload it.
16454
16455 * frame.el (automatic-hscrolling): Make this alias obsolete.
16456
16457 2012-04-12 Agustín Martín Domingo <agustin.martin@hispalinux.es>
16458
16459 * textmodes/ispell.el (ispell-set-spellchecker-params): Post-process
16460 `ispell-dictionary-alist' to use [:alpha:] and utf-8 if possible.
16461 (ispell-dictionary-base-alist): Revert to original XEmacs
16462 friendly version for default. [:alpha:] will be added in
16463 `ispell-set-spellchecker-params' if needed.
16464
16465 2012-04-16 Chong Yidong <cyd@gnu.org>
16466
16467 * image.el (imagemagick--file-regexp): New variable.
16468 (imagemagick-register-types): Use it.
16469 (imagemagick-types-inhibit): Add :set function. Allow new value
16470 of t to inhibit all types.
16471
16472 * emacs-lisp/regexp-opt.el (regexp-opt-charset): Avoid cl macros,
16473 so we can preload it.
16474
16475 * loadup.el (fboundp): Preload regexp-opt, needed by
16476 imagemagick-register-types.
16477
16478 2012-04-15 Chong Yidong <cyd@gnu.org>
16479
16480 * frame.el (scrolling): Remove nearly unused customization group.
16481
16482 * scroll-all.el (scroll-all-mode): Move to windows group.
16483
16484 2012-04-15 Chong Yidong <cyd@gnu.org>
16485
16486 * bindings.el (goto-map): Bind goto-char to M-g c (Bug#11240).
16487
16488 2012-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
16489
16490 Avoid the use of ((lambda ...) ...) in lexical-binding code.
16491 * emacs-lisp/easy-mmode.el (define-minor-mode): Use funcall (bug#11241).
16492
16493 2012-04-15 Glenn Morris <rgm@gnu.org>
16494
16495 * simple.el (process-file-side-effects): Doc fix.
16496
16497 2012-04-15 Glenn Morris <rgm@gnu.org>
16498
16499 * international/mule-cmds.el (set-language-environment): Doc fix.
16500
16501 2012-04-14 Juanma Barranquero <lekktu@gmail.com>
16502
16503 * server.el (server-auth-key, server-generate-key): Doc fixes.
16504 (server-get-auth-key): Doc fix. Use `string-match-p'.
16505 (server-start): Reflow docstring.
16506
16507 2012-04-14 Lars Ingebrigtsen <larsi@gnus.org>
16508
16509 * server.el (server-generate-key): `called-interactively-p'
16510 requires a parameter.
16511
16512 2012-04-14 Michal Nazarewicz <mina86@mina86.com>
16513
16514 * server.el (server-auth-key): New variable.
16515 (server-generate-key, server-get-auth-key): New function.
16516 (server-start): Use the new variable and functions to allow
16517 setting a permanent server key (bug#9423).
16518
16519 2012-04-14 Leo Liu <sdl.web@gmail.com>
16520
16521 * vc/diff-mode.el (diff-file-prev/next): Fix typo.
16522
16523 2012-04-14 Paul Eggert <eggert@cs.ucla.edu>
16524
16525 Spelling fixes.
16526 * hexl.el (hexl-rulerize): Rename from hexl-rulerise, since
16527 Emacs uses American spelling.
16528
16529 2012-04-14 Juanma Barranquero <lekktu@gmail.com>
16530
16531 * emacs-lock.el (emacs-lock-locked-buffer-functions): New hook.
16532 (emacs-lock--exit-locked-buffer): Return the locked buffer. Doc fix.
16533 (emacs-lock--kill-emacs-hook, emacs-lock--kill-emacs-query-functions)
16534 (emacs-lock--kill-buffer-query-functions): Run new hook. (Bug#11017)
16535
16536 2012-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
16537
16538 * progmodes/which-func.el (which-func-modes): Change default.
16539
16540 2012-04-14 Kim F. Storm <storm@cua.dk>
16541
16542 * emulation/cua-base.el (cua-exchange-point-and-mark): Just call
16543 exchange-point-and-mark if cua-enable-cua-keys is nil (Bug#11191).
16544
16545 2012-04-14 Chong Yidong <cyd@gnu.org>
16546
16547 * custom.el (custom-theme-set-variables): Doc fix.
16548
16549 2012-04-14 Glenn Morris <rgm@gnu.org>
16550
16551 * international/mule.el (set-auto-coding-for-load): Doc fix.
16552
16553 2012-04-14 Alan Mackenzie <acm@muc.de>
16554
16555 * progmodes/cc-menus.el (cc-imenu-objc-generic-expression): Make
16556 imenu work again for Objective C Mode. Correct the *-index values,
16557 these having been disturbed by a previous change in 2011-08.
16558
16559 * progmodes/cc-engine.el (c-before-change-check-<>-operators):
16560 Correct two search limits.
16561
16562 2012-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
16563
16564 * startup.el (command-line-1): Inhibit splash from daemon (bug#10996).
16565
16566 2012-04-14 Andreas Schwab <schwab@linux-m68k.org>
16567
16568 * international/characters.el: Fix sorting.
16569
16570 2012-04-14 Eli Zaretskii <eliz@gnu.org>
16571
16572 * international/characters.el: Add more missing Latin case pairs.
16573
16574 2012-04-14 Glenn Morris <rgm@gnu.org>
16575
16576 * files.el (dir-locals-set-class-variables): Doc fix.
16577
16578 2012-04-14 Eli Zaretskii <eliz@gnu.org>
16579
16580 * international/characters.el: Add set-case-syntax-pair call for
16581 LATIN CAPITAL LETTER Y WITH DIAERESIS RET and its lower-case
16582 counterpart. (Bug#11209)
16583
16584 * simple.el (shell-command-on-region): Doc fix. (Bug#11208)
16585
16586 2012-04-14 Glenn Morris <rgm@gnu.org>
16587
16588 * calendar/holidays.el (calendar-check-holidays): Doc fix.
16589
16590 2012-04-14 Eli Zaretskii <eliz@gnu.org>
16591
16592 * textmodes/ispell.el (ispell-dictionary-base-alist):
16593 Add data for Hebrew.
16594
16595 2012-04-14 Chong Yidong <cyd@gnu.org>
16596
16597 * net/rcirc.el (rcirc-cmd-quit):
16598 Revert 2012-03-18 change (Bug#11192).
16599
16600 2012-04-14 Glenn Morris <rgm@gnu.org>
16601
16602 * pcmpl-rpm.el (pcomplete/rpm): Handle -qf.
16603
16604 2012-04-14 Eli Zaretskii <eliz@gnu.org>
16605
16606 * minibuffer.el (completion-in-region-mode-map):
16607 Bind completion-help-at-point to M-? rather than ?. (Bug#11182)
16608
16609 2012-04-13 Vivek Dasmohapatra <vivek@etla.org>
16610
16611 * hexl.el (hexl-insert-char): Make display sizes other than 16 work.
16612
16613 2012-04-13 Masatake YAMATO <yamato@redhat.com>
16614
16615 * minibuffer.el (minibuffer-local-filename-syntax): New variable
16616 to allow `C-M-f' and `C-M-b' to move to the nearest path
16617 separator (bug#9511).
16618
16619 2012-04-13 Lars Ingebrigtsen <larsi@gnus.org>
16620
16621 * avoid.el: Require cl when compiling. And also move the
16622 `provide' to the end.
16623
16624 2012-04-13 Thierry Volpiatto <thierry.volpiatto@gmail.com>
16625
16626 * avoid.el (mouse-avoidance-banish-position): New variable.
16627 (mouse-avoidance-banish-destination): Use it (bug#10165).
16628
16629 2012-04-13 Leo Liu <sdl.web@gmail.com>
16630
16631 * progmodes/which-func.el (which-func-modes): Add objc-mode.
16632
16633 2012-04-13 Ken Brown <kbrown@cornell.edu>
16634
16635 * net/browse-url.el (browse-url-file-url): Remove Cygwin hack;
16636 this is no longer needed now that cygstart understands file:// URLs.
16637 (browse-url-filename-alist): For the same reason, don't modify
16638 file:// URLs on Cygwin.
16639
16640 2012-04-13 Stefan Monnier <monnier@iro.umontreal.ca>
16641
16642 * emulation/cua-base.el (cua--pre-command-handler-1): Don't activate
16643 the region on shift if the binding is already shifted (bug#11221).
16644
16645 2012-04-12 Glenn Morris <rgm@gnu.org>
16646
16647 * mail/mailpost.el: Move to obsolete/.
16648
16649 2012-04-12 Drew Adams <drew.adams@oracle.com>
16650
16651 * imenu.el (imenu--generic-function): Ignore invisible definitions
16652 (bug#10123).
16653
16654 2012-04-12 Vivek Dasmohapatra <vivek@etla.org>
16655
16656 * hexl.el (hexl-bits): New variable.
16657 (hexl-options): Mention the variable in the doc string.
16658 (hexl-rulerise, hexl-line-displen): New functions.
16659 (hexl-mode): Mention the new variable.
16660 (hexl-mode, hexl-current-address, hexl-current-address):
16661 Use the displen.
16662 (hexl-ascii-start-column): New function.
16663 (hexl-address-to-marker, hexl-beginning-of-line, hexl-options)
16664 (hexl-insert-char, hexl-mode-ruler): Use the displen (bug#4941).
16665
16666 2012-04-12 Agustín Martín Domingo <agustin.martin@hispalinux.es>
16667
16668 * textmodes/flyspell.el (flyspell-large-region): For hunspell, use
16669 '("-i" ENCODING), in 2 separate command-line arguments, to specify
16670 the encoding, as expected by hunspell.
16671
16672 2012-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
16673
16674 * battery.el (battery--linux-sysfs-regexp): New const.
16675 (battery-status-function): Use it. Remove yeeloong special case.
16676 (battery-yeeloong-sysfs): Remove.
16677 (battery-echo-area-format): Remove yeeloong special case.
16678
16679 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
16680
16681 * imenu.el (imenu-add-to-menubar): `current-local-map' can be nil.
16682 Reported by Noah Friedman.
16683
16684 * subr.el (read-passwd): Use read-string.
16685
16686 2012-04-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
16687
16688 * vcursor.el (vcursor-move): Increase the priority of the overlay
16689 (bug#9663).
16690
16691 2012-04-11 Deniz Dogan <deniz.a.m.dogan@gmail.com>
16692
16693 * net/rcirc.el (rcirc-kill-channel-buffers): New variable.
16694 (rcirc-kill-buffer-hook): Use it to kill channel buffers (bug#5128).
16695
16696 2012-04-11 William Stevenson <yhvh2000@gmail.com>
16697
16698 * textmodes/artist.el (artist-mode): Convert artist-mode to use
16699 define-minor-mode (bug#10760).
16700
16701 2012-04-11 Wolfgang Jenkner <wjenkner@inode.at> (tiny change)
16702
16703 * progmodes/grep.el (rgrep): Tweak the find command line so
16704 that directories matching `grep-find-ignored-files' won't be
16705 pruned (bug#10351).
16706
16707 2012-04-11 Chong Yidong <cyd@gnu.org>
16708
16709 * startup.el (command-line): Remove support for long-obsolete
16710 variable font-lock-face-attributes.
16711
16712 2012-04-11 Glenn Morris <rgm@gnu.org>
16713
16714 * vc/vc-bzr.el (vc-bzr-status): Avoid condition-case-unless-debug.
16715
16716 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
16717
16718 * window.el (window--state-get-1): Obey window-point-insertion-type.
16719
16720 2012-04-11 Lennart Borgman <lennart.borgman@gmail.com>
16721
16722 * emacs-lisp/lisp.el (narrow-to-defun): `beginning-of-defun' goes
16723 to previous function when point is on the first character of a
16724 function. Take care of that in `narrow-to-defun' (bug#6157).
16725
16726 2012-04-11 Glenn Morris <rgm@gnu.org>
16727
16728 * vc/vc-bzr.el (vc-bzr-status): Handle all errors,
16729 not just file-errors.
16730
16731 * vc/vc-bzr.el (vc-bzr-sha1-program, sha1-program): Remove.
16732 (vc-bzr-sha1): Use internal sha1.
16733
16734 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
16735
16736 * progmodes/flymake.el (flymake-mode): Beware read-only dirs (bug#8954).
16737
16738 2012-04-10 Sébastien Gross <seb@chezwam.org> (tiny change)
16739
16740 * progmodes/hideshow.el (hs-hide-all): Don't infloop on comments
16741 that start in the middle of the line (bug#10496).
16742
16743 2012-04-10 Dan Nicolaescu <dann@gnu.org>
16744
16745 * battery.el (battery-linux-proc-acpi): Only one battery is
16746 discharged at a time, but that seems to confuse battery.el when
16747 computing `rate-type' for the battery not being discharged
16748 (bug#10332).
16749
16750 2012-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
16751
16752 * emacs-lisp/autoload.el (autoload-make-program): Remove, unused.
16753
16754 * international/quail.el: Use dolist and simplify.
16755 (quail-define-package, quail-update-keyboard-layout)
16756 (quail-define-rules): Use dolist.
16757 (quail-insert-kbd-layout, quail-get-translation): CSE.
16758
16759 * tmm.el: Use dolist, remove left over hook.
16760 (tmm-prompt, tmm-define-keys, tmm-shortcut, tmm-get-keybind):
16761 Use dolist.
16762 (calendar-load-hook): Don't mess with it.
16763
16764 * vc/vc-annotate.el (vc-annotate-show-diff-revision-at-line-internal):
16765 Use derived-mode-p. Run the diff asynchronously.
16766
16767 2012-04-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
16768
16769 * obsolete/mouse-sel.el: Add an Obsolete-since header.
16770
16771 2012-04-10 Juanma Barranquero <lekktu@gmail.com>
16772
16773 * misc.el: Display absolute path of loaded DLLs (bug#10424).
16774 (list-dynamic-libraries--loaded): New function.
16775 (list-dynamic-libraries--refresh): Use it.
16776
16777 2012-04-10 Nathan Weizenbaum <nweiz@google.com>
16778
16779 * progmodes/python.el (python-fill-paragraph):
16780 Make python-fill-region in a multiline string work when font-lock is
16781 disabled (bug#7018).
16782
16783 2012-04-10 Laimonas Vėbra <laimonas.vebra@gmail.com> (tiny change)
16784
16785 * language/european.el (cp775): Add oem/legacy (en)coding on
16786 DOS/MS Windows for the Baltic languages. There are still plenty
16787 of texts written in this encoding/codepage (bug#6519).
16788
16789 2012-04-10 Glenn Morris <rgm@gnu.org>
16790
16791 * cus-start.el (eol-mnemonic-unix, eol-mnemonic-dos, eol-mnemonic-mac):
16792 Add :standard values, reducing "rogue" customs in emacs -Q a bit more.
16793
16794 2012-04-10 Florian Adamsky <florian@adamsky.it> (tiny change)
16795
16796 * recentf.el (recentf-dialog-mode-map): Add two keybindings for
16797 next-line "n" and previous-line "p" in order to make recentf more
16798 consistent with ibuffer, dired or org-mode (bug#9387).
16799
16800 2012-04-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
16801
16802 * image.el (put-image): Return the overlay created instead of the
16803 optional input string (bug#7834). Note that this may break code
16804 that is (for some reason or other) depending on `put-image'
16805 returning the string.
16806
16807 * mouse-sel.el (mouse-sel-mode): Mark as obsolete (bug#6174).
16808
16809 * simple.el (zap-to-char): Allow zapping using input methods
16810 (bug#1580).
16811
16812 * textmodes/fill.el (fill-region): Leave point and mark where they
16813 were before filling (bug#5399).
16814
16815 2012-04-09 Glenn Morris <rgm@gnu.org>
16816
16817 * version.el (emacs-bzr-get-version):
16818 Handle lightweight checkouts of local branches.
16819
16820 2012-04-09 Andreas Schwab <schwab@linux-m68k.org>
16821
16822 * international/characters.el: Recover lost case pairs. (Bug#11209)
16823
16824 2012-04-09 Chong Yidong <cyd@gnu.org>
16825
16826 * custom.el (custom-variable-p): Return nil for non-symbol
16827 arguments instead of signaling an error.
16828 (user-variable-p): Obsolete alias for custom-variable-p.
16829
16830 * apropos.el (apropos-variable):
16831 * files-x.el (read-file-local-variable):
16832 * simple.el (set-variable):
16833 * woman.el (woman-mini-help):
16834 * emacs-lisp/byte-opt.el (side-effect-free-fns): Callers changed.
16835
16836 2012-04-09 Glenn Morris <rgm@gnu.org>
16837
16838 * startup.el (normal-top-level): Don't look for leim-list.el
16839 in places where it will not be found. (Bug#910)
16840
16841 * international/mule-cmds.el (set-default-coding-systems):
16842 * files.el (normal-mode):
16843 Remove guarded calls to ucs-set-table-for-input. (Bug#9821)
16844 This function was removed with ucs-tables.el in 2008.
16845
16846 2012-04-08 Eli Zaretskii <eliz@gnu.org>
16847
16848 * textmodes/ispell.el (ispell-check-version): For hunspell, set
16849 ispell-encoding8-command to "-i", without a trailing space.
16850 (ispell-start-process): For hunspell, use '("-i" ENCODING), in 2
16851 separate command-line arguments, to specify the encoding, since
16852 that's how hunspell expects it.
16853
16854 2012-04-08 Glenn Morris <rgm@gnu.org>
16855
16856 * loadup.el: Load bindings before cus-start.
16857 This reduces somewhat the number of "rogue" settings in emacs -Q.
16858
16859 2012-04-07 Glenn Morris <rgm@gnu.org>
16860
16861 * version.el (emacs-bzr-get-version): New function.
16862 (emacs-bzr-version): New variable.
16863 * loadup.el (emacs-bzr-version): Set it. (Bug#8054)
16864 * mail/emacsbug.el (report-emacs-bug): Include bzr version.
16865
16866 2012-04-07 Eli Zaretskii <eliz@gnu.org>
16867
16868 * international/uni-bidi.el, international/uni-category.el:
16869 * international/uni-combining.el, international/uni-decimal.el:
16870 * international/uni-decomposition.el, international/uni-digit.el:
16871 * international/uni-lowercase.el, international/uni-mirrored.el:
16872 * international/uni-name.el, international/uni-numeric.el:
16873 * international/uni-titlecase.el, international/uni-uppercase.el:
16874 Update for Unicode 6.1.
16875
16876 2012-04-07 Eli Zaretskii <eliz@gnu.org>
16877
16878 * term/w32-win.el (dynamic-library-alist): Add libxml2 DLLs.
16879
16880 2012-04-05 Lars Magne Ingebrigtsen <larsi@gnus.org>
16881
16882 * window.el (shrink-window): Mention the `window-min-height'
16883 variable in the doc string.
16884
16885 2012-04-05 Bastien Guerry <bzg@altern.org>
16886
16887 * color.el (color-lighten-name): Fix typo.
16888
16889 2012-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
16890
16891 * server.el (server--on-display-p): New function.
16892 (server--on-display-p): Use it.
16893
16894 2012-04-04 Gábor Vida <vidagabor@gmail.com> (tiny change)
16895
16896 * ido.el (ido-wide-find-dirs-or-files): Use file-name-absolute-p
16897 (bug#11145).
16898
16899 2012-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
16900
16901 * comint.el (comint--common-quoted-suffix): Check string boundary
16902 before comparing (bug#11158).
16903 * pcomplete.el (pcomplete--common-quoted-suffix): Idem.
16904
16905 2012-04-04 Chong Yidong <cyd@gnu.org>
16906
16907 * minibuffer.el (completion-extra-properties): Doc fix.
16908
16909 * subr.el (delayed-warnings-hook): Doc fix.
16910
16911 2012-04-04 Daiki Ueno <ueno@unixuser.org>
16912
16913 * epa.el (epa--select-keys): Bind C-c C-c to finish the key
16914 selection (Bug#11159).
16915 (epa-insert-keys): Inform that the default public key will be
16916 exported if no key is selected.
16917
16918 2012-04-04 Richard Stallman <rms@gnu.org>
16919
16920 * mail/emacsbug.el (report-emacs-bug): Bind inhibit-read-only.
16921
16922 2012-04-03 Chong Yidong <cyd@gnu.org>
16923
16924 * mail/sendmail.el (mail-mode-map): Bind C-c C-i to
16925 mail-insert-file, not its obsolete alias mail-attach-file.
16926
16927 2012-04-03 Michael Albinus <michael.albinus@gmx.de>
16928
16929 * notifications.el (notifications-notify): Fix docstring.
16930
16931 2012-04-02 Glenn Morris <rgm@gnu.org>
16932
16933 * emacs-lisp/authors.el (authors-aliases): Another addition.
16934
16935 2012-04-02 Michael Albinus <michael.albinus@gmx.de>
16936
16937 * net/tramp-gvfs.el (tramp-gvfs-send-command): Apply
16938 `tramp-compat-call-process' instead of `tramp-local-call-process'.
16939 Reported by Magnus Henoch <magnus.henoch@gmail.com>.
16940
16941 2012-04-01 Chong Yidong <cyd@gnu.org>
16942
16943 * files.el (file-in-directory-p): Rename from file-subdir-of-p.
16944 Handle root directory properly.
16945 (copy-directory): Caller changed.
16946
16947 * dired-aux.el (dired-copy-file-recursive, dired-create-files):
16948 * net/tramp.el (tramp-file-name-for-operation): Callers changed.
16949
16950 2012-03-31 Glenn Morris <rgm@gnu.org>
16951
16952 * term/xterm.el (xterm-extra-capabilities): Doc fix.
16953
16954 * language/indian.el ("Devanagari"): Fix typo. (Bug#11103)
16955
16956 * calendar/calendar.el (calendar-window-list)
16957 (calendar-hide-window): Restore. (Bug#11140)
16958 (calendar-exit): Use calendar-window-list, calendar-hide-window again.
16959
16960 * emacs-lisp/edebug.el (edebug-unwrap-results): Doc fix.
16961
16962 2012-03-30 Thierry Volpiatto <thierry.volpiatto@gmail.com>
16963
16964 * dired-aux.el (dired-copy-file-recursive, dired-create-files):
16965 Check if file is a symlink (Bug#10489).
16966
16967 * files.el (copy-directory): Likewise.
16968
16969 2012-03-30 Chong Yidong <cyd@gnu.org>
16970
16971 * image.el (imagemagick-types-inhibit)
16972 (imagemagick-register-types): Doc fix.
16973
16974 2012-03-30 Agustín Martín Domingo <agustin.martin@hispalinux.es>
16975
16976 * textmodes/ispell.el (ispell-get-extended-character-mode):
16977 Disable extended-char-mode for hunspell. hunspell does not support it
16978 and treats ~word as ordinary words in pipe mode.
16979
16980 2012-03-30 Glenn Morris <rgm@gnu.org>
16981
16982 * tutorial.el (help-with-tutorial): Ensure local variables don't
16983 happen to make the buffer read-only. (Bug#11127)
16984
16985 2012-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
16986
16987 * progmodes/perl-mode.el (perl-indent-line): Use `noindent' in strings.
16988 (perl-calculate-indent): Return `noindent' in strings.
16989
16990 2012-03-28 Sam Steingold <sds@gnu.org>
16991
16992 * calendar/calendar.el (calendar-exit): Use `quit-windows-on'
16993 instead of the broken adhockery which does not prevent calendar
16994 buffers from being displayed at random after exit.
16995 (calendar-window-list, calendar-hide-window): Remove the broken
16996 adhockery.
16997
16998 2012-03-28 Glenn Morris <rgm@gnu.org>
16999
17000 * replace.el (query-replace-map): Doc fix.
17001
17002 2012-03-28 Andreas Schwab <schwab@linux-m68k.org>
17003
17004 * vc/vc-git.el (vc-git-state): Don't try to match all of the diff
17005 contents. (Bug#11109)
17006
17007 2012-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
17008
17009 * emacs-lisp/avl-tree.el (avl-tree--enter-balance): Fix paren typo
17010 (bug#11077).
17011 (avl-tree--check, avl-tree--check-node): New funs.
17012
17013 2012-03-27 Martin Rudalics <rudalics@gmx.at>
17014
17015 * window.el (switch-to-visible-buffer): New option.
17016 (switch-to-prev-buffer, switch-to-next-buffer):
17017 Observe switch-to-visible-buffer. Make sure that checking for a window
17018 showing a buffer already is done on the same frame.
17019
17020 2012-03-27 Glenn Morris <rgm@gnu.org>
17021
17022 * startup.el (mail-host-address): Doc fix.
17023
17024 2012-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
17025
17026 * emacs-lisp/bytecomp.el (byte-compile-constants-vector): Allow more
17027 than 197 variables.
17028
17029 2012-03-26 Ami Fischman <ami@fischman.org>
17030
17031 * vc/vc-git.el (vc-git-state): Avoid unnecessarily locking.
17032
17033 2012-03-26 Glenn Morris <rgm@gnu.org>
17034
17035 * files.el (save-buffers-kill-emacs): Doc fix.
17036
17037 * startup.el (normal-top-level, command-line, command-line-1):
17038 Give them doc strings.
17039
17040 2012-03-25 Eli Zaretskii <eliz@gnu.org>
17041
17042 * makefile.w32-in (install): Use $(DIRNAME)_same-dir.tst instead
17043 of same-dir.tst, to avoid stepping on other (parallel) Make job's toes.
17044
17045 2012-03-25 Chong Yidong <cyd@gnu.org>
17046
17047 * custom.el (load-theme): Even if NO-ENABLE arg is t, reenable the
17048 theme if it was previously enabled before (Bug#11031).
17049
17050 * cus-theme.el (custom-theme-write-faces): Retrieve current face
17051 spec with custom-face-get-current-spec if its :shown-value is not
17052 determined yet (Bug#9337).
17053 (customize-create-theme, custom-theme-revert): Doc fixes.
17054
17055 * button.el (button-at): Minor addition to docstring.
17056
17057 2012-03-24 Simon Leinen <simon.leinen@gmail.com>
17058
17059 * vc/vc.el (vc-merge): Fix a prompt.
17060
17061 2012-03-24 Chong Yidong <cyd@gnu.org>
17062
17063 * mwheel.el (mwheel-scroll): Call deactivate-mark at the right
17064 point (Bug#9623).
17065
17066 * button.el (button-at): Minor addition to docstring.
17067
17068 2012-03-23 Stefan Monnier <monnier@iro.umontreal.ca>
17069
17070 * newcomment.el (comment-choose-indent): No space after BOL.
17071
17072 2012-03-22 Sam Steingold <sds@gnu.org>
17073
17074 * window.el (switch-to-prev-buffer): Revert last patch because the
17075 bug turned out to be an advertised feature (Elisp manual 28.14).
17076
17077 2012-03-22 Glenn Morris <rgm@gnu.org>
17078
17079 * vc/vc-bzr.el (vc-bzr-status-switches): New option. (Bug#6724)
17080 (vc-bzr-command): If running "status", pass vc-bzr-status-switches.
17081
17082 2012-03-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
17083
17084 * net/network-stream.el (network-stream-open-starttls): Make error
17085 message under Windows be less misleading.
17086
17087 2012-03-22 Liang Wang <netcasper@gmail.com> (tiny change)
17088
17089 * progmodes/etags.el (etags-list-tags): Only use tags which goto-func
17090 understands (bug#9942).
17091
17092 2012-03-22 Chong Yidong <cyd@gnu.org>
17093
17094 * simple.el (end-of-visible-line): Handle return value of
17095 next-single-property-change properly (Bug#9371).
17096
17097 2012-03-22 Kenichi Handa <handa@m17n.org>
17098
17099 * international/quail.el (quail-insert-kbd-layout): Fix previous
17100 change. To avoid unwanted bidi reordering, use
17101 bidi-string-mark-left-to-right instead of inserting LRO and PDF.
17102
17103 2012-03-21 Dmitry Gutov <dgutov@yandex.ru>
17104
17105 * progmodes/ruby-mode.el: Don't confuse "end:" for "end" (bug#10786).
17106 (ruby-block-end-re, ruby-delimiter, ruby-parse-partial)
17107 (ruby-beginning-of-indent): Be more careful with the difference
17108 between word-boundary and symbol boundary.
17109 (ruby-mode-syntax-table): Make : a symbol constituent.
17110
17111 2012-03-21 Andreas Politz <politza@fh-trier.de>
17112
17113 * outline.el (outline-flag-region): Evaporate overlays (bug#10789).
17114
17115 2012-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
17116
17117 * progmodes/etags.el (tags-completion-at-point-function):
17118 Improve last fix.
17119
17120 * files.el (move-file-to-trash): Files aren't regexps (bug#11055).
17121
17122 2012-03-21 Sam Steingold <sds@gnu.org>
17123
17124 * progmodes/etags.el (tags-completion-at-point-function):
17125 Avoid the error when point is inside the pattern.
17126
17127 2012-03-21 John Yates <john@yates-sheets.org> (tiny change)
17128
17129 * progmodes/hideshow.el (hs-inside-comment-p): Fix hiding of first
17130 line (Bug#10855).
17131
17132 2012-03-21 Drew Adams <drew.adams@oracle.com>
17133
17134 * info.el (Info-menu): Handle string value of FORK arg (Bug#10858).
17135
17136 2012-03-21 Anmol Khirbat <anmol@khirbat.net> (tiny change)
17137
17138 * ido.el (ido-set-current-directory, ido-read-internal)
17139 (ido-choose-completion-string, ido-completion-help): Handle nil
17140 value of ido-completion-buffer (Bug#11008).
17141
17142 2012-03-21 Sam Steingold <sds@gnu.org>
17143
17144 * window.el (switch-to-prev-buffer): Do not switch to a visible
17145 window previous buffer, just like with the frame previous buffers.
17146
17147 2012-03-21 Chong Yidong <cyd@gnu.org>
17148
17149 * faces.el (make-face, make-empty-face, copy-face):
17150 * face-remap.el (face-remap-add-relative, face-remap-set-base):
17151 Doc fixes.
17152
17153 2012-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
17154
17155 * wid-edit.el (widget-complete-field): Remove (bug#11051).
17156 (widget-complete): Remove broken use of it.
17157
17158 2012-03-20 Chong Yidong <cyd@gnu.org>
17159
17160 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
17161 Use string-width and truncate-string-width to handle arbitrary
17162 characters.
17163
17164 2012-03-20 Tassilo Horn <tassilo@member.fsf.org>
17165
17166 * textmodes/artist.el (artist-menu-map): Bind Rectangle menu item
17167 to draw rectangles, not squares. (Regression introduced by revno
17168 2011-03-02T03:48:01Z!cyd@stupidchicken.com)
17169
17170 2012-03-18 Chong Yidong <cyd@gnu.org>
17171
17172 * faces.el (face-spec-reset-face): Don't call display-graphic-p if
17173 it is not yet defined (for temacs).
17174
17175 2012-03-18 Leo Liu <sdl.web@gmail.com>
17176
17177 * net/rcirc.el (rcirc-cmd-quit): Allow quitting all servers with
17178 prefix.
17179
17180 2012-03-17 Eli Zaretskii <eliz@gnu.org>
17181
17182 * textmodes/ispell.el (ispell-skip-tib, ispell-keep-choices-win)
17183 (ispell-choices-win-default-height, ispell-silently-savep)
17184 (ispell-dictionary-alist, ispell-encoding8-command)
17185 (ispell-check-version, ispell-aspell-find-dictionary)
17186 (ispell-valid-dictionary-list, ispell-words-keyword)
17187 (ispell-get-word, ispell-internal-change-dictionary)
17188 (ispell-region, ispell-skip-region-list)
17189 (ispell-begin-skip-region-regexp, ispell-ignore-fcc)
17190 (ispell-process-line, ispell-minor-mode, ispell-minor-check)
17191 (ispell-message-text-end, ispell-message)
17192 (ispell-buffer-local-parsing): Doc fix.
17193
17194 2012-03-13 Jambunathan K <kjambunathan@gmail.com>
17195
17196 * htmlfontify.el: Add support for code block fontification for ODT
17197 export (Bug #9914).
17198 (hfy-optimisations): Define new option
17199 `body-text-only'
17200 (hfy-fontify-buffer): Honor above setting.
17201 (hfy-begin-span, hfy-end-span): New routines factored out form
17202 `hfy-fontify-buffer'.
17203 (hfy-begin-span-handler, hfy-end-span-handler): New variables
17204 that permit insertion of custom tags.
17205 (hfy-fontify-buffer): Use above handlers.
17206 (hfy-face-to-css-default): Same as the earlier `hfy-face-to-css'.
17207 (hfy-face-to-css): Re-defined to be a variable.
17208 (hfy-compile-stylesheet): Modify. Allow stylesheet to be built
17209 over multiple runs. This is made possible by having the caller let
17210 bind a special variable `hfy-user-sheet-assoc'.
17211 (htmlfontify-string): New defun.
17212 (hfy-compile-face-map): Make sure that the last char in the
17213 buffer is correctly fontified.
17214 (hfy-face-resolve-face): Whitespace only change.
17215
17216 2012-03-17 Eli Zaretskii <eliz@gnu.org>
17217
17218 * textmodes/ispell.el (ispell-get-decoded-string): Make the error
17219 message more clear.
17220
17221 2012-03-16 Leo Liu <sdl.web@gmail.com>
17222
17223 * emacs-lisp/copyright.el (copyright-year-ranges): Fix typo.
17224
17225 2012-03-16 Alan Mackenzie <acm@muc.de>
17226
17227 Further optimize the handling of large macros.
17228
17229 * progmodes/cc-engine.el (c-crosses-statement-barrier-p): Use a
17230 limit to a call of `c-literal-limits'.
17231 (c-determine-+ve-limit): New function.
17232 (c-at-macro-vsemi-p): Move `c-in-literal' to the bottom of an `and'.
17233 (c-guess-basic-syntax): In macros, restrict a search limit to 2000.
17234 In CASE 5B, restrict a search limit to 500.
17235 (c-just-after-func-arglist-p): Obviouly wrong `or' -> `and'.
17236
17237 * progmodes/cc-mode.el (c-neutralize-syntax-in-and-mark-CPP):
17238 Restrict macro bounds to +-500 from after-change's BEG END.
17239
17240 2012-03-16 Leo Liu <sdl.web@gmail.com>
17241
17242 * font-lock.el (lisp-font-lock-keywords-2): Add letrec.
17243
17244 2012-03-16 Aaron S. Hawley <Aaron.S.Hawley@gmail.com>
17245
17246 * tar-mode.el (tar-mode): Fix saving by conditionally undoing
17247 `special-mode' setting of `buffer-read-only'. (Bug#11010)
17248
17249 2012-03-16 Glenn Morris <rgm@gnu.org>
17250
17251 * view.el (view-buffer, view-buffer-other-window)
17252 (view-buffer-other-frame): Doc fixes re special mode-class.
17253
17254 * subr.el (eval-after-load): If named feature is provided not from
17255 a file, run after-load forms. (Bug#10946)
17256
17257 * calendar/calendar.el (calendar-insert-at-column):
17258 Handle non-unit-width characters a bit better. (Bug#10978)
17259
17260 2012-03-15 Chong Yidong <cyd@gnu.org>
17261
17262 * emacs-lisp/ring.el (ring-extend): New function.
17263 (ring-insert+extend): Extend the ring correctly (Bug#11019).
17264
17265 * comint.el (comint-read-input-ring)
17266 (comint-add-to-input-history): Grow comint-input-ring lazily.
17267
17268 2012-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
17269
17270 * progmodes/perl-mode.el (perl-syntax-propertize-special-constructs):
17271 Fix up parsing of multiline twoarg non-paired elements (bug#11014).
17272
17273 * imenu.el: Fix multiple inheritance breakage (bug#9199).
17274 (imenu-add-to-menubar): Don't add a redundant index.
17275 (imenu-update-menubar): Handle a dynamically composed keymap.
17276
17277 2012-03-13 Katsumi Yamaoka <yamaoka@jpl.org>
17278
17279 * mail/sendmail.el (mail-encode-header):
17280 Bind rfc2047-encode-encoded-words to nil.
17281
17282 2012-03-13 Glenn Morris <rgm@gnu.org>
17283
17284 * calendar/calendar.el (calendar-string-spread):
17285 Handle non-unit-width characters a bit better. (Bug#10978)
17286
17287 2012-03-13 Leo Liu <sdl.web@gmail.com>
17288
17289 * vc/vc-hg.el (vc-hg-working-revision): Rework to work with both
17290 directory and file as argument (Bug#10822).
17291
17292 2012-03-13 Kaushik Srenevasan <ksrenevasan@gmail.com> (tiny change)
17293
17294 * progmodes/gdb-mi.el (gdb-invalidate-disassembly):
17295 For dynamically generated code, follow $PC.
17296 (gdb-disassembly-handler-custom): Handle no function name case.
17297
17298 2012-03-13 Tim Landscheidt <tim@tim-landscheidt.de> (tiny change)
17299
17300 * calendar/icalendar.el (icalendar-export-file, icalendar-import-file):
17301 * emulation/ws-mode.el (ws-query-replace):
17302 * sort.el (sort-regexp-fields):
17303 Fix missing trailing whitespace in interactive prompts. (Bug#11002)
17304
17305 2012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
17306
17307 * dabbrev.el: Fix cycle completion order (bug#10963).
17308 (dabbrev--last-obarray, dabbrev--last-completion-buffer): Remove.
17309 (dabbrev-completion): Don't use an obarray; provide
17310 a cycle-sort-function.
17311
17312 2012-03-12 Leo Liu <sdl.web@gmail.com>
17313
17314 * simple.el (kill-new): Use equal-including-properties for comparison.
17315 (kill-do-not-save-duplicates): Doc fix.
17316
17317 2012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
17318
17319 * dabbrev.el: Fix cycle completion (bug#10963).
17320 Use lexical binding and wrap to 80 columns.
17321 (dabbrev-completion): Delay computing the list of completions.
17322
17323 2012-03-12 Kenichi Handa <handa@m17n.org>
17324
17325 * international/quail.el (quail-insert-kbd-layout): Surround each
17326 row by LRO and PDF instead of inserting many LRMs. Pad the left
17327 and right of each non-spacing marks. Insert invisible space
17328 between lower and upper characters to prevent composition.
17329
17330 2012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
17331
17332 * minibuffer.el (minibuffer-complete): Don't get confused when the
17333 function is run twice via different commands (bug#10958).
17334 (complete-with-action): Fix docstring.
17335
17336 2012-03-12 Chong Yidong <cyd@gnu.org>
17337
17338 * nxml/nxml-mode.el (nxml-mode-map): Do not bind C-RET (Bug#6776).
17339 (nxml-completion-at-point-function): New function.
17340 (nxml-mode): Use it.
17341 (nxml-bind-meta-tab-to-complete-flag): Default to t.
17342
17343 * emacs-lisp/package.el (package-unpack, package-unpack-single):
17344 Load generated autoloads file before byte compiling (Bug#10970).
17345 (package--make-autoloads-and-compile): New helper fun.
17346
17347 2012-03-12 Christopher Schmidt <christopher@ch.ristopher.com>
17348
17349 * ibuffer.el (ibuffer-redisplay): Remove another gratuitous error.
17350
17351 2012-03-11 Michael Albinus <michael.albinus@gmx.de>
17352
17353 * autorevert.el (auto-revert-handler): Ensure, that
17354 file-readable-p is applied only for local files or in
17355 auto-revert-tail-mode.
17356
17357 2012-03-11 Andreas Schwab <schwab@linux-m68k.org>
17358
17359 * server.el (server-eval-at): Handle non-tcp connections.
17360 Decode result string.
17361
17362 * server.el (server-msg-size): New constant.
17363 (server-reply-print): New function.
17364 (server-eval-and-print): Use it.
17365 (server-eval-at): Use server-quote-arg and server-unquote-arg.
17366 Handle -print-nonl.
17367
17368 2012-03-11 Christopher Schmidt <christopher@ch.ristopher.com>
17369
17370 * ibuffer.el (ibuffer-redisplay): Remove gratuitous error
17371 (Bug#10987).
17372
17373 2012-03-11 Chong Yidong <cyd@gnu.org>
17374
17375 * simple.el (goto-line): Doc fix (Bug#9938).
17376
17377 * subr.el (save-window-excursion): Doc fix (Bug#9979).
17378
17379 * dabbrev.el (dabbrev--find-expansion): Update progress reporter
17380 when finished (Bug#10963).
17381
17382 2012-03-11 Martin Rudalics <rudalics@gmx.at>
17383
17384 * window.el (split-window-below): Fix bug in case where
17385 split-window-keep-point is nil (Bug#10971).
17386
17387 2012-03-11 Juri Linkov <juri@jurta.org>
17388
17389 * replace.el (replace-highlight): Set isearch-word to nil
17390 unconditionally. (Bug#10887)
17391
17392 2012-03-10 Eli Zaretskii <eliz@gnu.org>
17393
17394 * net/mairix.el (mairix-replace-invalid-chars): Rename from
17395 mairix-replace-illegal-chars; all callers changed. Don't remove
17396 ^, ~, and = characters: they are meaningful in mairix search specs.
17397 (mairix-widget-create-query): Add usage information about mairix
17398 search forms: negating words, searching for substrings, etc.
17399
17400 2012-03-10 Jae-hyeon Park <jae-hyeon.park@desy.de> (tiny change)
17401
17402 * international/fontset.el (font-encoding-alist): Add an entry for
17403 ksx1001 (Bug#5667).
17404
17405 2012-03-10 Richard Stallman <rms@gnu.org>
17406
17407 * mail/sendmail.el (mail-encode-header):
17408 Set rfc2047-encode-encoded-words.
17409
17410 * mail/mail-utils.el (mail-quote-printable): Quote multibyte chars.
17411
17412 * mail/rmail.el (rmail-buffers-swapped-p): Don't assume dead
17413 view buffer means not swapped.
17414 (rmail-view-buffer-kill-buffer-hook): Give buf name in error msg.
17415 (rmail-write-region-annotate): Error if real text has disappeared.
17416
17417 * epa-mail.el (epa-mail-encrypt): Bind inhibit-read-only.
17418
17419 2012-03-10 Chong Yidong <cyd@gnu.org>
17420
17421 * emulation/cua-rect.el (cua--init-rectangles):
17422 * emulation/cua-base.el (cua--init-keymaps):
17423 Add delete-forward-char to remappings (Bug#9666).
17424
17425 2012-03-10 Martin Rudalics <rudalics@gmx.at>
17426
17427 * speedbar.el (speedbar-unhighlight-one-tag-line):
17428 Avoid unhighlighting due to frame switching (Bug#10275).
17429
17430 2012-03-10 Chong Yidong <cyd@gnu.org>
17431
17432 * minibuffer.el (completion-in-region, completion-help-at-point):
17433 Give the completion field overlay a high priority (Bug#6830).
17434
17435 * dired.el (dired-goto-file): Recognize absolute file name
17436 listings (Bug#7126).
17437 (dired-goto-file-1): New helper function.
17438 (dired-toggle-read-only): Inhibit warnings.
17439
17440 2012-03-09 Michael Albinus <michael.albinus@gmx.de>
17441
17442 * net/dbus.el (dbus-property-handler): Return empty array if
17443 there are no properties.
17444
17445 2012-03-09 Leo Liu <sdl.web@gmail.com>
17446
17447 * savehist.el (savehist-printable): Stricter check for string
17448 value (Bug#10937).
17449
17450 2012-03-09 Eli Zaretskii <eliz@gnu.org>
17451
17452 * mail/smtpmail.el (smtpmail-send-it):
17453 Bind coding-system-for-write to *-unix, so that FCC files are kept in
17454 valid mbox format.
17455
17456 2012-03-09 Glenn Morris <rgm@gnu.org>
17457
17458 * files.el (dir-locals-find-file):
17459 Don't check result is regular, readable.
17460 (dir-locals-read-from-file): Demote errors.
17461
17462 2012-03-08 Eli Zaretskii <eliz@gnu.org>
17463
17464 * international/quail.el (quail-insert-kbd-layout):
17465 Insert invisible LRM characters before each character in a keyboard
17466 layout cell, to prevent their reordering by bidi display engine.
17467 For details, see the discussion in
17468 http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00085.html.
17469
17470 2012-03-08 Alan Mackenzie <acm@muc.de>
17471
17472 * progmodes/cc-cmds.el (c-mark-function): Make it leave a mark at
17473 the starting position; make it extend the marked region when
17474 invoked repeatedly - all under appropriate circumstances.
17475 Fixes bugs #5525, #10906.
17476
17477 2012-03-08 Glenn Morris <rgm@gnu.org>
17478
17479 * files.el (locate-dominating-file, dir-locals-find-file):
17480 Undo 2012-03-06 change.
17481
17482 2012-03-07 Eli Zaretskii <eliz@gnu.org>
17483
17484 * international/quail.el (quail-help):
17485 Force bidi-paragraph-direction be left-to-right. See discussion in
17486 http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00062.html
17487 for the reason.
17488
17489 2012-03-07 Michael Albinus <michael.albinus@gmx.de>
17490
17491 Avoid superfluous registering of signals. (Bug#10807)
17492
17493 * notifications.el (notifications-on-action-object)
17494 (notifications-on-close-object): New defvars.
17495 (notifications-on-action-signal, notifications-on-closed-signal):
17496 Unregister the signal if not needed any longer.
17497 (notifications-notify): Register `notifications-action-signal' or
17498 `notifications-closed-signal', if :on-action or :on-close has been
17499 passed as argument.
17500
17501 2012-03-07 Chong Yidong <cyd@gnu.org>
17502
17503 * cus-start.el: Avoid x-select-enable-clipboard-manager warning on
17504 non-X platforms.
17505
17506 2012-03-06 Glenn Morris <rgm@gnu.org>
17507
17508 * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
17509 (x-disown-selection-internal, x-get-selection-internal):
17510 Doc fix (add arglist signatures). (Bug#10783)
17511
17512 2012-03-06 Kaushik Srenevasan <ksrenevasan@gmail.com> (tiny change)
17513
17514 * progmodes/gdb-mi.el (gdb-breakpoints-list-handler-custom):
17515 Handle breakpoints with no "type".
17516
17517 2012-03-06 Glenn Morris <rgm@gnu.org>
17518
17519 * files.el (locate-dominating-file): Add optional predicate argument.
17520 (dir-locals-find-file): Make use of above change.
17521
17522 2012-03-06 Thien-Thi Nguyen <ttn@gnuvola.org>
17523
17524 * info.el (Info-insert-dir): Also try "dir.gz".
17525
17526 2012-03-06 Glenn Morris <rgm@gnu.org>
17527
17528 * files.el (dir-locals-find-file):
17529 Ignore non-readable or non-regular files. (Bug#10928)
17530
17531 * files.el (locate-dominating-file): Doc fix.
17532
17533 2012-03-06 Adam Spiers <emacs@adamspiers.org> (tiny change)
17534
17535 * calendar/calendar.el (calendar-set-mode-line):
17536 `getenv' returns a string. (Bug#10951)
17537
17538 2012-03-05 Leo Liu <sdl.web@gmail.com>
17539
17540 * simple.el (backward-delete-char-untabify): Constrain point to
17541 field (Bug#10939).
17542
17543 * eshell/em-cmpl.el (eshell-cmpl-initialize): Fix shift-tab key.
17544
17545 2012-03-05 Chong Yidong <cyd@gnu.org>
17546
17547 * simple.el (count-words): If called from Lisp, return the word
17548 count, for symmetry with `count-lines'. Arglist changed.
17549 (count-words--message): Args changed. Consolidate counting code
17550 from count-words and count-words-region.
17551 (count-words-region): Caller changed.
17552 (count-lines-region): Make it an obsolete alias.
17553
17554 2012-03-04 Tassilo Horn <tassilo@member.fsf.org>
17555
17556 * saveplace.el (save-place-to-alist)
17557 (save-place-ignore-files-regexp): Allow value nil to disable this
17558 feature.
17559
17560 2012-03-04 Chong Yidong <cyd@gnu.org>
17561
17562 * faces.el (face-spec-reset-face): For the default face, reset the
17563 attributes to default values (Bug#10748).
17564
17565 2012-03-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
17566
17567 * mail/emacsbug.el (report-emacs-bug-hook): Fix up thinko in
17568 previous patch: Check `message-send-mail-function', and not the
17569 default function (bug#10897).
17570
17571 2012-03-04 Michael Albinus <michael.albinus@gmx.de>
17572
17573 * notifications.el (notifications-on-action-signal)
17574 (notifications-on-closed-signal): Check for unique service name of
17575 incoming event. Fix error in removing entry.
17576 (top): Register for signals with wildcard service name.
17577 (notifications-notify): Use daemon unique service name for map entries.
17578
17579 2012-03-04 Chong Yidong <cyd@gnu.org>
17580
17581 * cus-start.el: Make x-select-enable-clipboard-manager customizable.
17582
17583 2012-03-04 Glenn Morris <rgm@gnu.org>
17584
17585 * abbrev.el (copy-abbrev-table, abbrev-table-p)
17586 (abbrev-minor-mode-table-alist, define-abbrev, abbrev-insert)
17587 (expand-abbrev, define-abbrev-table): Doc fixes.
17588
17589 2012-03-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
17590
17591 * mail/emacsbug.el (report-emacs-bug-hook): Look at the value of
17592 `message-default-send-mail-function' and not `send-mail-function'
17593 when doing the prompting for `sendmail-query-once' before sending
17594 in Message buffers (bug#10897).
17595
17596 * net/tls.el (open-tls-stream): Don't set the dont-query-on-exit flag.
17597 This is inconsistent with all the other stream functions, which leave
17598 the setting up to the higher levels (if so wanted) (bug#10931).
17599
17600 2012-03-02 Alan Mackenzie <acm@muc.de>
17601
17602 Depessimize the handling of very large macros.
17603
17604 * progmodes/cc-engine.el (c-macro-cache, c-macro-cache-start-pos):
17605 (c-macro-cache-syntactic): New variables to implement a one
17606 element macro cache.
17607 (c-invalidate-macro-cache): New function.
17608 (c-beginning-of-macro, c-end-of-macro, c-syntactic-end-of-macro):
17609 Adapt to use the new cache.
17610 (c-state-safe-place): Use better the cache of safe positions.
17611 (c-state-semi-nonlit-pos-cache)
17612 (c-state-semi-nonlit-pos-cache-limit):
17613 New variables for...
17614 (c-state-semi-safe-place): New function. Here, in a macro is "safe".
17615 (c-invalidate-state-cache-1): New stuff for c-state-semi-safe-place.
17616 (c-in-literal, c-literal-limits, c-determine-limit-get-base):
17617 Use c-state-semi-safe-place.
17618
17619 * progmodes/cc-langs.el (c-get-state-before-change-functions):
17620 Add c-invalidate-macro-cache to the C, C++, Obj entries.
17621
17622 2012-03-02 Michael Albinus <michael.albinus@gmx.de>
17623
17624 * jka-compr.el (jka-compr-call-process):
17625 Apply `file-accessible-directory-p' only when the default directory is
17626 not remote.
17627
17628 2012-03-01 Michael Albinus <michael.albinus@gmx.de>
17629
17630 * files.el (file-equal-p): Fix docstring. Avoid unnecessary
17631 access of FILE2, if FILE1 does not exist.
17632
17633 * net/tramp-sh.el (tramp-remote-process-environment): Add "PAGER=\"\"".
17634 Reported by Robert Lupton the Good <rhl@astro.princeton.edu>.
17635
17636 * vc/vc-git.el (vc-git--call): Enable `inhibit-null-byte-detection'.
17637 Add "PAGER=" to `process-environment'.
17638
17639 2012-03-01 Michael R. Mauger <mmaug@yahoo.com>
17640
17641 * progmodes/sql.el: Bug fix
17642 (sql-get-login-ext): Save login values in globals.
17643 (sql-get-login): Use new version of `sql-get-login-ext'.
17644 (sql-interactive-mode): Set global `sql-connection' to nil.
17645 (sql-connect): Set global values for connection.
17646 (sql-product-interactive): Save global values as buffer local.
17647
17648 2012-02-29 Leo Liu <sdl.web@gmail.com>
17649
17650 * abbrev.el (define-abbrevs): Reset sys to nil.
17651
17652 2012-02-28 Thierry Volpiatto <thierry.volpiatto@gmail.com>
17653
17654 * files.el (file-equal-p): Rename from `files-equal-p'.
17655 Return nil when one or both files don't exist.
17656 (file-subdir-of-p): Now only top directory must exists,
17657 return nil if it doesn't.
17658 (copy-directory): No need to test with `file-subdir-of-p' after
17659 creating dir.
17660 * net/tramp.el (tramp-file-name-for-operation): Rename `files-equal-p'
17661 to `file-equal-p'.
17662
17663 2012-02-28 Glenn Morris <rgm@gnu.org>
17664
17665 * shell.el (shell-mode):
17666 * progmodes/vhdl-mode.el (wildcard-to-regexp, file-expand-wildcards):
17667 * play/landmark.el (landmark-font-lock-face-O):
17668 * play/handwrite.el (handwrite):
17669 * play/gomoku.el (gomoku-O):
17670 * net/browse-url.el (browse-url-browser-display):
17671 * international/mule.el (define-charset):
17672 * htmlfontify.el (hfy-etags-cmd, hfy-face-attr-for-class):
17673 * filesets.el (filesets-find-file-delay):
17674 * eshell/em-xtra.el (eshell-xtra):
17675 * eshell/em-unix.el (eshell-grep):
17676 * emulation/viper.el (viper-mode):
17677 * emacs-lisp/regexp-opt.el (regexp-opt-group):
17678 * emacs-lisp/easymenu.el (easy-menu-define):
17679 * calendar/timeclock.el (timeclock-use-display-time):
17680 * bs.el (bs-mode):
17681 * bookmark.el (bookmark-save-flag):
17682 Doc fix (standardize possessive apostrophe usage).
17683
17684 2012-02-27 Chong Yidong <cyd@gnu.org>
17685
17686 * emulation/viper-cmd.el (viper-intercept-ESC-key):
17687 Fix key-binding lookup for ESC key (Bug#9146).
17688
17689 * font-lock.el (font-lock-specified-p): Rename from
17690 font-lock-spec-present. Callers changed.
17691
17692 2012-02-27 Daniel Hackney <dan@haxney.org>
17693
17694 * emacs-lisp/package.el (package-compute-transaction):
17695 Handle holding a package version to t in package-load-list.
17696
17697 2012-02-26 Michael Albinus <michael.albinus@gmx.de>
17698
17699 * net/tramp.el (tramp-inodes, tramp-devices): Initialize with 0.
17700 (tramp-get-inode, tramp-get-device): Use cached values.
17701
17702 2012-02-26 Alan Mackenzie <acm@muc.de>
17703
17704 Check there is a font-lock specification before doing initial
17705 fontification.
17706
17707 * font-core.el (font-lock-mode): Move the conditional from
17708 :after-hook to font-lock-initial-fontify.
17709 (font-lock-default-function): Move the check for a specification
17710 to font-lock-spec-present.
17711
17712 * font-lock.el (font-lock-initial-fontify): Call ...
17713 (font-lock-spec-present): New function.
17714
17715 2012-02-26 Jim Blandy <jimb@red-bean.com>
17716
17717 * progmodes/gdb-mi.el (gdb-mi-quote): New function.
17718 (gdb-send): Apply it to the operand of the '-interpreter-exec
17719 console' command, so that we can pass arguments with (say) quotes
17720 in them. Store exact string sent in gdb-debug-log (Bug#10765).
17721
17722 2012-02-26 Chong Yidong <cyd@gnu.org>
17723
17724 * help-fns.el (describe-function-1): Clarify description of
17725 remapping (Bug#10844).
17726
17727 * files.el (files-equal-p): Doc fix.
17728 (file-subdir-of-p): Doc fix. Convert loop macro to plain Lisp,
17729 and quit the loop once a mismatch is found.
17730
17731 2012-02-25 Juanma Barranquero <lekktu@gmail.com>
17732
17733 * bs.el (bs--show-with-configuration): Don't throw an error
17734 if the window cannot be split; otherwise, subsequent calls to
17735 bs-show fail, restoring a stale window config. (Bug#10882)
17736
17737 2012-02-25 Jan Djärv <jan.h.d@swipnet.se>
17738
17739 * term/ns-win.el (global-map): Bind ns-drag-file to
17740 ns-find-file (Bug#5855, Bug#10050).
17741
17742 2012-02-25 Andreas Schwab <schwab@linux-m68k.org>
17743
17744 * calendar/parse-time.el (parse-time-string): Allow extractor to
17745 return nil.
17746
17747 2012-02-25 Michael Albinus <michael.albinus@gmx.de>
17748
17749 * net/tramp.el (tramp-file-name-for-operation):
17750 Add `files-equal-p' and `file-subdir-of-p'.
17751
17752 * net/tramp-sh.el (tramp-sh-handle-copy-directory):
17753 * net/tramp-smb.el (tramp-smb-handle-copy-directory):
17754 Add COPY-CONTENTS argument.
17755
17756 2012-02-25 Chong Yidong <cyd@gnu.org>
17757
17758 Add custom groups for VC backends, for consistency with vc-bzr.
17759
17760 * vc/vc-arch.el (vc-arch):
17761 * vc/vc-cvs.el (vc-cvs):
17762 * vc/vc-git.el (vc-git):
17763 * vc/vc-hg.el (vc-hg):
17764 * vc/vc-mtn.el (vc-mtn):
17765 * vc/vc-rcs.el (vc-rcs):
17766 * vc/vc-sccs.el (vc-sccs):
17767 * vc/vc-svn.el (vc-svn): New customization group (Bug#10871).
17768 All relevant defcustoms reassigned.
17769
17770 2012-02-25 Chong Yidong <cyd@gnu.org>
17771
17772 * newcomment.el (comment-styles): Add autoload (Bug#10868).
17773
17774 * term/x-win.el (x-initialize-window-system): Reduce default for
17775 x-selection-timeout to 5 seconds (Bug#8869).
17776
17777 2012-02-24 Thierry Volpiatto <thierry.volpiatto@gmail.com>
17778
17779 * files.el (files-equal-p, file-subdir-of-p): New functions.
17780 (copy-directory): Error when trying to copy a directory on itself.
17781 Add missing copy-contents arg to tramp handler.
17782 * dired-aux.el (dired-copy-file-recursive): Same.
17783 (dired-create-files): Modify destination when source is equal to
17784 dest when copying files.
17785 Return also when dest is a subdir of source. (Bug#10489)
17786
17787 2012-02-24 Michael Albinus <michael.albinus@gmx.de>
17788
17789 * net/ange-ftp.el (ange-ftp-parse-netrc): Suppress comment lines.
17790 (Bug#10874)
17791
17792 2012-02-23 Alan Mackenzie <acm@muc.de>
17793
17794 * emacs-lisp/easy-mmode.el (define-minor-mode): Add extra
17795 parameter "after-hook:" to allow the expansion to run code after
17796 the execution of the mode hooks.
17797
17798 * font-lock.el (font-lock-initial-fontify): New function extracted
17799 from font-lock-mode-internal.
17800
17801 * font-core.el (font-lock-mode): Call font-lock-initial-fontify in
17802 :after-hook.
17803
17804 2012-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
17805
17806 * minibuffer.el: Make sure cycling is reset upon edit with icomplete.el.
17807 (completion--cache-all-sorted-completions): New function.
17808 (completion-all-sorted-completions): Use it.
17809 (completion--do-completion, minibuffer-force-complete):
17810 Use it to re-instate the flush hook.
17811
17812 * icomplete.el (icomplete-completions): Replace last fix with a better
17813 one (bug#10850).
17814
17815 2012-02-23 Dmitry Gutov <dgutov@yandex.ru>
17816
17817 * emacs-lisp/lisp.el (beginning-of-defun-raw): Don't call end-of-defun
17818 when it might call us back infinitely (bug#10797).
17819
17820 2012-02-23 Glenn Morris <rgm@gnu.org>
17821
17822 * minibuffer.el (completion-category-overrides): Doc fix.
17823
17824 2012-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
17825
17826 * minibuffer.el (completion-table-with-context): Fix inf-loop.
17827 Reported by Aaron S. Hawley <aaron.s.hawley@gmail.com>.
17828
17829 2012-02-23 Glenn Morris <rgm@gnu.org>
17830
17831 * emacs-lisp/authors.el (authors-aliases, authors-fixed-case)
17832 (authors-obsolete-files-regexps, authors-ignored-files)
17833 (authors-ambiguous-files, authors-renamed-files-alist):
17834 Add more entries.
17835
17836 2012-02-23 Juri Linkov <juri@jurta.org>
17837
17838 * isearch.el (isearch-occur): Sync interactive spec with occur's
17839 new feature in `occur-read-primary-args'. Doc fix. (Bug#10705)
17840
17841 * replace.el (occur-menu-map): Add menu item for `occur-edit-mode'.
17842
17843 2012-02-22 Juri Linkov <juri@jurta.org>
17844
17845 * international/mule-cmds.el (read-char-by-name): Use \` and \'.
17846 (ucs-insert): Doc fix. Check for hex digits in the string.
17847 Don't display `nil' in the error message. (Bug#10857)
17848
17849 2012-02-22 Alan Mackenzie <acm@muc.de>
17850
17851 * progmodes/cc-mode.el: Revert change #2012-02-06T22:08:41Z!larsi@gnus.org from 2012-02-06.
17852
17853 2012-02-22 Glenn Morris <rgm@gnu.org>
17854
17855 * ffap.el (ffap-c-path):
17856 * man.el (Man-header-file-path): Handle multiarch. (Bug#10702)
17857
17858 2012-02-22 Chong Yidong <cyd@gnu.org>
17859
17860 * custom.el (load-theme): Doc fix.
17861
17862 2012-02-22 Glenn Morris <rgm@gnu.org>
17863
17864 * dired-x.el (dired-guess-shell-alist-default):
17865 Remove escape sequences from nroff output. (Bug#172)
17866
17867 2012-02-21 Glenn Morris <rgm@gnu.org>
17868
17869 * vc/emerge.el (emerge-defvar-local):
17870 Set `permanent-local' property rather than unused `preserved'.
17871
17872 * textmodes/picture.el (picture-delete-char): New alias.
17873 (picture-mode-map): Use it. (Bug#10860)
17874 (picture-mode): Doc fix.
17875
17876 2012-02-21 Juanma Barranquero <lekktu@gmail.com>
17877
17878 * newcomment.el (uncomment-region-default): Remove unused binding.
17879
17880 2012-02-21 Glenn Morris <rgm@gnu.org>
17881
17882 * textmodes/picture.el (picture-motion, picture-motion-reverse)
17883 (picture-self-insert, picture-tab-chars): Doc fix.
17884 (picture-mode-map): Fix C-a, C-e.
17885
17886 2012-02-20 Glenn Morris <rgm@gnu.org>
17887
17888 * emacs-lisp/authors.el (authors-aliases): Add another entry.
17889
17890 2012-02-20 Leo Liu <sdl.web@gmail.com>
17891
17892 * icomplete.el (icomplete-completions): Check FROM arg before
17893 passing to substring (Bug#10850).
17894
17895 2012-02-19 Chong Yidong <cyd@gnu.org>
17896
17897 * comint.el: Require ansi-color.
17898 (comint-output-filter-functions): Add ansi-color-process-output.
17899
17900 * ansi-color.el: Don't set comint-output-filter-functions; it is
17901 now in the initial value defined in comint.el.
17902 (ansi-color-apply-face-function): New variable.
17903 (ansi-color-apply-on-region): Use it.
17904 (ansi-color-apply-overlay-face): New function.
17905
17906 * shell.el (shell): No need to require ansi-color.
17907 (shell-mode): Use ansi-color-apply-face-function to highlight
17908 color escapes using font-lock-face property (Bug#10835).
17909
17910 2012-02-19 Chong Yidong <cyd@gnu.org>
17911
17912 * vc/ediff-init.el (ediff-strip-mode-line-format): Handle non-list
17913 mode-line formats (Bug#10839).
17914
17915 2012-02-18 Glenn Morris <rgm@gnu.org>
17916
17917 * mail/rmail.el (rmail-dont-reply-to-names): Mark as obsolete.
17918
17919 * mail/undigest.el (unforward-rmail-message): Doc fix.
17920
17921 * saveplace.el (save-place-ignore-files-regexp): Add :version.
17922
17923 2012-02-18 Eli Zaretskii <eliz@gnu.org>
17924
17925 * international/characters.el (script-list): Sync with the latest
17926 Unicode Character Database.
17927
17928 2012-02-18 Andreas Schwab <schwab@linux-m68k.org>
17929
17930 * international/titdic-cnv.el: Remove duplicate coding tag.
17931 * language/cham.el: Likewise.
17932 * language/tai-viet.el: Likewise.
17933
17934 2012-02-18 Glenn Morris <rgm@gnu.org>
17935
17936 * calendar/cal-menu.el (cal-menu-diary-menu, cal-menu-goto-menu):
17937 * calendar/calendar.el (diary-file, diary-bahai-entry-symbol)
17938 (calendar-bahai-all-holidays-flag, calendar-other-dates):
17939 * calendar/diary-lib.el (diary-abbreviated-year-flag):
17940 * calendar/holidays.el (holiday-bahai-holidays)
17941 (calendar-holidays, list-holidays):
17942 Use utf-8 Bahá'í in doc-strings, menus, etc.
17943
17944 2012-02-17 Tassilo Horn <tassilo@member.fsf.org>
17945
17946 * saveplace.el (save-place-ignore-files-regexp): New variable
17947 allowing for excluding files from saving their location of point.
17948 The default value matches the temporary commit message editing
17949 files from Git, SVN, Bazaar, and Mercurial.
17950 (save-place-to-alist): Use it.
17951
17952 2012-02-17 Lawrence Mitchell <wence@gmx.li>
17953 Stefan Monnier <monnier@iro.umontreal.ca>
17954
17955 * newcomment.el (uncomment-region-default): Don't leave extra space
17956 when an arg is provided (bug#8150).
17957
17958 2012-02-17 Teodor Zlatanov <tzz@lifelogs.com>
17959
17960 * net/gnutls.el (gnutls-trustfiles): Fix Cygwin bundle location.
17961
17962 2012-02-17 Glenn Morris <rgm@gnu.org>
17963
17964 * net/socks.el: Require network-stream. (Bug#10599)
17965
17966 2012-02-17 Kenichi Handa <handa@m17n.org>
17967
17968 * international/charprop.el:
17969 * international/uni-name.el:
17970 * international/uni-old-name.el:
17971 * international/uni-comment.el: Regenerate.
17972
17973 2012-02-16 Glenn Morris <rgm@gnu.org>
17974
17975 * calendar/cal-hebrew.el (calendar-hebrew-list-yahrzeits):
17976 Interactively in calendar buffer, give an error if not on a date.
17977
17978 2012-02-15 Glenn Morris <rgm@gnu.org>
17979
17980 * shell.el (shell-delimiter-argument-list):
17981 Revert 2011-02-17 change. (Bug#8027)
17982
17983 2012-02-15 Chong Yidong <cyd@gnu.org>
17984
17985 * minibuffer.el (completion-at-point-functions): Doc fix.
17986
17987 * custom.el (defcustom): Doc fix; note use of defvar.
17988
17989 2012-02-15 Glenn Morris <rgm@gnu.org>
17990
17991 * mail/smtpmail.el (smtpmail-smtp-user, smtpmail-stream-type):
17992 Doc fixes.
17993
17994 2012-02-14 Glenn Morris <rgm@gnu.org>
17995
17996 * mail/smtpmail.el (smtpmail-query-smtp-server): Give it a doc.
17997
17998 2012-02-14 Lars Ingebrigtsen <larsi@gnus.org>
17999
18000 * mail/smtpmail.el (smtpmail-query-smtp-server): Fix typo in the
18001 way the ports list is computed.
18002 (smtpmail-query-smtp-server): Prompt the user for a port number if
18003 we can't connect to any of the standard ports (bug#10810).
18004
18005 2012-02-14 Teodor Zlatanov <tzz@lifelogs.com>
18006
18007 * net/gnutls.el (gnutls-trustfiles): Add Cygwin location.
18008
18009 2012-02-13 Glenn Morris <rgm@gnu.org>
18010
18011 * minibuffer.el (read-file-name): Doc fix. (Bug#10798)
18012
18013 2012-02-13 Teodor Zlatanov <tzz@lifelogs.com>
18014
18015 * net/gnutls.el (gnutls-trustfiles): New variable.
18016 (gnutls-negotiate): Use it.
18017
18018 2012-02-13 Lars Ingebrigtsen <larsi@gnus.org>
18019
18020 * simple.el (mail-user-agent): Mention that `gnus-user-agent' only
18021 does its stuff if Gnus is running.
18022
18023 2012-02-13 Alan Mackenzie <acm@muc.de>
18024
18025 Fix a loop in c-set-fl-decl-start.
18026
18027 * progmodes/cc-engine.el (c-set-fl-decl-start): Add a check that
18028 c-backward-syntactic-ws actually moves backwards.
18029
18030 2012-02-13 Leo Liu <sdl.web@gmail.com>
18031
18032 * net/rcirc.el (rcirc-markup-attributes): Move point to the
18033 beginning so that all \C-o chars are removed.
18034
18035 2012-02-12 Teodor Zlatanov <tzz@lifelogs.com>
18036
18037 * net/gnutls.el (gnutls-algorithm-priority): Add missing :group tag.
18038
18039 2012-02-12 Alan Mackenzie <acm@muc.de>
18040
18041 Fix infinite loop with long macros.
18042 * progmodes/cc-engine.el (c-state-safe-place): Handle macros properly.
18043
18044 2012-02-12 Chong Yidong <cyd@gnu.org>
18045
18046 * window.el (display-buffer): Doc fix (Bug#10785).
18047
18048 2012-02-12 Glenn Morris <rgm@gnu.org>
18049
18050 * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
18051 (x-disown-selection-internal, x-get-selection-internal):
18052 Sync docs with the xselect.c versions.
18053
18054 * allout-widgets.el: Add missing license notice.
18055
18056 2012-02-11 Glenn Morris <rgm@gnu.org>
18057
18058 * select.el (x-get-selection-internal, x-own-selection-internal)
18059 (x-disown-selection-internal):
18060 * x-dnd.el (x-get-selection-internal): Update declarations.
18061
18062 * vc/log-view.el (vc-diff-internal): Remove unneeded declaration.
18063
18064 * window.el (window-sides-slots):
18065 * tool-bar.el (tool-bar-position):
18066 * term/xterm.el (xterm-extra-capabilities):
18067 * ses.el (ses-self-reference-early-detection):
18068 * progmodes/verilog-mode.el (verilog-auto-declare-nettype)
18069 (verilog-auto-wire-type)
18070 (verilog-auto-delete-trailing-whitespace)
18071 (verilog-auto-reset-blocking-in-non, verilog-auto-inst-sort)
18072 (verilog-auto-tieoff-declaration):
18073 * progmodes/sql.el (sql-login-hook, sql-ansi-statement-starters)
18074 (sql-oracle-statement-starters, sql-oracle-scan-on):
18075 * progmodes/prolog.el (prolog-align-comments-flag)
18076 (prolog-indent-mline-comments-flag, prolog-object-end-to-0-flag)
18077 (prolog-left-indent-regexp, prolog-paren-indent-p)
18078 (prolog-paren-indent, prolog-parse-mode, prolog-keywords)
18079 (prolog-types, prolog-mode-specificators)
18080 (prolog-determinism-specificators, prolog-directives)
18081 (prolog-electric-newline-flag, prolog-hungry-delete-key-flag)
18082 (prolog-electric-dot-flag)
18083 (prolog-electric-dot-full-predicate-template)
18084 (prolog-electric-underscore-flag, prolog-electric-tab-flag)
18085 (prolog-electric-if-then-else-flag, prolog-electric-colon-flag)
18086 (prolog-electric-dash-flag, prolog-old-sicstus-keys-flag)
18087 (prolog-program-switches, prolog-prompt-regexp)
18088 (prolog-debug-on-string, prolog-debug-off-string)
18089 (prolog-trace-on-string, prolog-trace-off-string)
18090 (prolog-zip-on-string, prolog-zip-off-string)
18091 (prolog-use-standard-consult-compile-method-flag)
18092 (prolog-use-prolog-tokenizer-flag, prolog-imenu-flag)
18093 (prolog-imenu-max-lines, prolog-info-predicate-index)
18094 (prolog-underscore-wordchar-flag, prolog-use-sicstus-sd)
18095 (prolog-char-quote-workaround):
18096 * progmodes/cc-vars.el (c-defun-tactic):
18097 * net/tramp.el (tramp-encoding-command-interactive)
18098 (tramp-local-end-of-line):
18099 * net/soap-client.el (soap-client):
18100 * net/netrc.el (netrc-file):
18101 * net/gnutls.el (gnutls):
18102 * minibuffer.el (completion-category-overrides)
18103 (completion-cycle-threshold)
18104 (completion-pcm-complete-word-inserts-delimiters):
18105 * man.el (Man-name-local-regexp):
18106 * mail/feedmail.el (feedmail-display-full-frame):
18107 * international/characters.el (glyphless-char-display-control):
18108 * eshell/em-ls.el (eshell-ls-date-format):
18109 * emacs-lisp/cl-indent.el (lisp-lambda-list-keyword-alignment)
18110 (lisp-lambda-list-keyword-parameter-indentation)
18111 (lisp-lambda-list-keyword-parameter-alignment):
18112 * doc-view.el (doc-view-image-width, doc-view-unoconv-program):
18113 * dired-x.el (dired-omit-verbose):
18114 * cus-theme.el (custom-theme-allow-multiple-selections):
18115 * calc/calc.el (calc-highlight-selections-with-faces)
18116 (calc-lu-field-reference, calc-lu-power-reference)
18117 (calc-note-threshold):
18118 * battery.el (battery-mode-line-limit):
18119 * arc-mode.el (archive-7z-extract, archive-7z-expunge)
18120 (archive-7z-update):
18121 * allout.el (allout-prefixed-keybindings)
18122 (allout-unprefixed-keybindings)
18123 (allout-inhibit-auto-fill-on-headline)
18124 (allout-flattened-numbering-abbreviation):
18125 * allout-widgets.el (allout-widgets-auto-activation)
18126 (allout-widgets-icons-dark-subdir)
18127 (allout-widgets-icons-light-subdir, allout-widgets-icon-types)
18128 (allout-widgets-theme-dark-background)
18129 (allout-widgets-theme-light-background)
18130 (allout-widgets-item-image-properties-emacs)
18131 (allout-widgets-item-image-properties-xemacs)
18132 (allout-widgets-run-unit-tests-on-load)
18133 (allout-widgets-time-decoration-activity)
18134 (allout-widgets-hook-error-post-time)
18135 (allout-widgets-track-decoration):
18136 Add missing :version tags to new defcustoms and defgroups.
18137
18138 * progmodes/sql.el (sql-ansi-statement-starters)
18139 (sql-oracle-statement-starters): Add custom type.
18140
18141 * progmodes/prolog.el: Remove leading '*' from defcustom docs.
18142 (prolog-system-version): Give it a type.
18143
18144 2012-02-11 Eli Zaretskii <eliz@gnu.org>
18145
18146 * term/pc-win.el (x-select-text, x-selection-owner-p)
18147 (x-own-selection-internal, x-disown-selection-internal)
18148 (x-get-selection-internal): Sync doc strings and argument lists
18149 with xselect.c, common-win.el and x-win.el. (Bug#10783)
18150
18151 2012-02-11 Leo Liu <sdl.web@gmail.com>
18152
18153 * progmodes/python.el (python-end-of-statement): Fix infinite
18154 loop. (Bug#10788)
18155
18156 2012-02-10 Glenn Morris <rgm@gnu.org>
18157
18158 * international/mule-cmds.el (unify-8859-on-encoding-mode)
18159 (unify-8859-on-decoding-mode): Properly mark as obsolete.
18160
18161 2012-02-10 Lars Ingebrigtsen <larsi@gnus.org>
18162
18163 * mail/emacsbug.el (report-emacs-bug-hook): Query the user first
18164 about SMTP before checking the From header.
18165
18166 * mail/sendmail.el (sendmail-query-user-about-smtp): Refactor out
18167 into own function for reuse by emacsbug.el.
18168
18169 2012-02-10 Leo Liu <sdl.web@gmail.com>
18170
18171 * subr.el (condition-case-unless-debug): Rename from
18172 condition-case-no-debug. All callers changed.
18173 (with-demoted-errors): Fix caller.
18174
18175 * vc/diff-mode.el (diff-auto-refine-mode, diff-hunk):
18176 * nxml/rng-valid.el (rng-do-some-validation):
18177 * emacs-lisp/package.el (package-refresh-contents)
18178 (package-menu-execute):
18179 * desktop.el (desktop-create-buffer):
18180 * font-lock.el (lisp-font-lock-keywords-2): Caller changed.
18181
18182 2012-02-10 Glenn Morris <rgm@gnu.org>
18183
18184 * textmodes/bibtex.el:
18185 Add missing :version tags for new/changed defcustoms.
18186
18187 * files.el (remote-file-name-inhibit-cache): Doc fixes.
18188
18189 2012-02-09 Lars Ingebrigtsen <larsi@rusty>
18190
18191 * mail/smtpmail.el (smtpmail-user-mail-address): New function.
18192 (smtpmail-via-smtp): Use it, or fall back on the From address.
18193 (smtpmail-send-it): Ditto.
18194
18195 2012-02-09 Stefan Monnier <monnier@iro.umontreal.ca>
18196
18197 * emacs-lisp/bytecomp.el (byte-compile-file-form-defvar):
18198 Don't fallback on byte-compile-defvar. Optimize (defvar foo) away.
18199 (byte-compile-tmp-var): New const.
18200 (byte-compile-defvar): Use it to minimize .elc size.
18201 Just use `defvar' rather than simulate it (bug#10761).
18202
18203 2012-02-09 Glenn Morris <rgm@gnu.org>
18204
18205 * files.el (rename-uniquely): Doc fix. (Bug#3806)
18206
18207 * progmodes/cc-guess.el (c-guess-offset-threshold, c-guess-region-max):
18208 Add :version tags.
18209
18210 * progmodes/compile.el (compilation-error-screen-columns)
18211 (compilation-first-column, compilation-filter-start): Doc fixes.
18212
18213 * vc/log-view.el (log-view-toggle-entry-display):
18214 * vc/vc.el (vc-merge, vc-pull): Doc fixes.
18215
18216 * mail/emacsbug.el (report-emacs-bug-can-use-osx-open)
18217 (report-emacs-bug-can-use-xdg-email):
18218 (report-emacs-bug-insert-to-mailer): Doc fixes.
18219 (report-emacs-bug): Message fix.
18220
18221 * net/browse-url.el (browse-url-can-use-xdg-open)
18222 (browse-url-xdg-open): Doc fixes.
18223
18224 * electric.el (electric-indent-mode, electric-pair-mode)
18225 (electric-layout-rules, electric-layout-mode): Doc fixes.
18226 (electric-pair-pairs, electric-pair-skip-self): Add :version tags.
18227
18228 2012-02-08 Martin Rudalics <rudalics@gmx.at>
18229
18230 * server.el (server-unselect-display): Don't inadvertently kill
18231 the current buffer. (Bug#10729)
18232
18233 2012-02-08 Glenn Morris <rgm@gnu.org>
18234
18235 * progmodes/sql.el (sql-port, sql-connection-alist, sql-list-all)
18236 (sql-list-table): Doc fixes.
18237
18238 * image-mode.el (image-transform-minor-mode-map, image-transform-mode):
18239 Comment out (does nothing).
18240
18241 * completion.el (dynamic-completion-mode):
18242 * dirtrack.el (dirtrack-debug-mode):
18243 * electric.el (electric-layout-mode):
18244 * epa-mail.el (epa-mail-mode, epa-global-mail-mode):
18245 * face-remap.el (text-scale-mode, buffer-face-mode):
18246 * iimage.el (iimage-mode):
18247 * image-mode.el (image-transform-mode):
18248 * minibuffer.el (completion-in-region-mode):
18249 * scroll-lock.el (scroll-lock-mode):
18250 * simple.el (next-error-follow-minor-mode):
18251 * tar-mode.el (tar-subfile-mode):
18252 * tooltip.el (tooltip-mode):
18253 * vcursor.el (vcursor-use-vcursor-map):
18254 * wid-browse.el (widget-minor-mode):
18255 * emulation/tpu-edt.el (tpu-edt-mode):
18256 * emulation/tpu-extras.el (tpu-cursor-free-mode):
18257 * international/iso-ascii.el (iso-ascii-mode):
18258 * language/thai-util.el (thai-word-mode):
18259 * mail/supercite.el (sc-minor-mode):
18260 * net/goto-addr.el (goto-address-mode):
18261 * net/rcirc.el (rcirc-multiline-minor-mode, rcirc-track-minor-mode):
18262 * progmodes/cwarn.el (cwarn-mode):
18263 * progmodes/flymake.el (flymake-mode):
18264 * progmodes/glasses.el (glasses-mode):
18265 * progmodes/hideshow.el (hs-minor-mode):
18266 * progmodes/pascal.el (pascal-outline-mode):
18267 * textmodes/enriched.el (enriched-mode):
18268 * vc/smerge-mode.el (smerge-mode):
18269 Doc fixes (minor mode argument).
18270
18271 2012-02-07 Eli Zaretskii <eliz@gnu.org>
18272
18273 * ls-lisp.el (ls-lisp-sanitize): New function.
18274 (ls-lisp-insert-directory): Use it to fix or remove any elements
18275 in file-alist with missing attributes. (Bug#4673)
18276
18277 2012-02-07 Alan Mackenzie <acm@muc.de>
18278
18279 Fix spurious recognition of c-in-knr-argdecl.
18280
18281 * progmodes/cc-engine.el (c-in-knr-argdecl): Check for '=' in a
18282 putative K&R region.
18283
18284 2012-02-07 Alan Mackenzie <acm@muc.de>
18285
18286 * progmodes/cc-engine.el (c-forward-objc-directive):
18287 Prevent looping in "#pragma mark @implementation".
18288
18289 2012-02-07 Michael Albinus <michael.albinus@gmx.de>
18290
18291 * notifications.el (notifications-on-closed-signal): Make `reason'
18292 optional. (Bug#10744)
18293
18294 2012-02-07 Glenn Morris <rgm@gnu.org>
18295
18296 * emacs-lisp/easy-mmode.el (define-minor-mode):
18297 Doc fixes for the macro and the mode it defines.
18298
18299 * image.el (imagemagick-types-inhibit): Doc fix.
18300
18301 * cus-start.el (imagemagick-render-type): Add it.
18302
18303 2012-02-06 Lars Ingebrigtsen <larsi@gnus.org>
18304
18305 * progmodes/cc-mode.el (c-standard-font-lock-fontify-region-function):
18306 Set the default at load time, too, so that `font-lock-fontify-buffer'
18307 can be called without setting up the entire mode first. This fixes
18308 a bug in `mm-inline-text' with C MIME parts.
18309
18310 2012-02-06 Chong Yidong <cyd@gnu.org>
18311
18312 * simple.el (list-processes--refresh): Delete exited processes
18313 (Bug#8094).
18314
18315 * comint.el (comint-next-prompt): next-single-char-property-change
18316 and prev-single-char-property-change never return nil (Bug#8657).
18317
18318 * custom.el (defcustom): Doc fix (Bug#9711).
18319
18320 2012-02-05 Chong Yidong <cyd@gnu.org>
18321
18322 * cus-edit.el (custom-variable-reset-backup): Quote the value
18323 before storing it in the customized-value property (Bug#6712).
18324 (custom-display): Add a customization type tag.
18325 (custom-buffer-create-internal): Improve tooltip message.
18326
18327 * wid-edit.el (widget-field-value-get): New optional arg to
18328 suppress trailing whitespace truncation.
18329 (character): Use it (Bug#2689).
18330
18331 2012-02-05 Andreas Schwab <schwab@linux-m68k.org>
18332
18333 * progmodes/gud.el (gud-pv): Use pv instead of pv1.
18334 * progmodes/gdb-mi.el (gud-pp): Use pp instead of pp1.
18335
18336 2012-02-05 Chong Yidong <cyd@gnu.org>
18337
18338 * cus-edit.el (custom-variable-value-create): For mismatched
18339 types, show the current value (Bug#7600).
18340
18341 * custom.el (defcustom): Doc fix.
18342
18343 2012-02-05 Glenn Morris <rgm@gnu.org>
18344
18345 * font-lock.el (lisp-font-lock-keywords-2): Add with-wrapper-hook.
18346
18347 2012-02-05 Juanma Barranquero <lekktu@gmail.com>
18348
18349 * emacs-lisp/pp.el (pp-to-string): Use `with-temp-buffer'.
18350 (pp-buffer): Use `ignore-errors', `looking-at-p'.
18351 (pp-last-sexp): Use `looking-at-p'.
18352
18353 2012-02-04 Glenn Morris <rgm@gnu.org>
18354
18355 * files.el (revert-buffer):
18356 Doc fix (mention revert-buffer-in-progress-p).
18357
18358 * emacs-lisp/ert-x.el (ert-simulate-command):
18359 Check deferred-action-list (which is obsolete) is bound.
18360
18361 * subr.el (with-wrapper-hook): Doc fixes.
18362
18363 * simple.el (filter-buffer-substring-functions)
18364 (buffer-substring-filters, filter-buffer-substring): Doc fixes.
18365
18366 2012-02-04 Lars Ljung <lars@matholka.se> (tiny change)
18367
18368 * eshell/esh-ext.el (eshell-windows-shell-file): Match "cmdproxy"
18369 anywhere in shell-file-name, not just at the beginning. (Bug#10523)
18370
18371 2012-02-04 Leo Liu <sdl.web@gmail.com>
18372
18373 * emacs-lisp/smie.el: Fix dead link (Bug#10711).
18374
18375 2012-02-04 Glenn Morris <rgm@gnu.org>
18376
18377 * image.el (image-extension-data): Add obsolete alias.
18378
18379 * isearch.el (isearch-update): Doc fix.
18380
18381 * facemenu.el (list-colors-display): Doc fix (minor rephrasing).
18382
18383 * ido.el (ido-find-file): Doc fix (ido-toggle-vc not on any key).
18384
18385 2012-02-03 Glenn Morris <rgm@gnu.org>
18386
18387 * image.el (image-animated-p): Doc fix. Use image-animated-types.
18388 (image-animate-timeout): Doc fix.
18389
18390 * image-mode.el (image-animate-loop, image-toggle-animation): Doc fixes.
18391
18392 2012-02-02 Glenn Morris <rgm@gnu.org>
18393
18394 * server.el (server-auth-dir): Doc fix.
18395 (server-eval-at): Doc fix. Give an explicit error if !server-use-tcp.
18396
18397 * subr.el (run-mode-hooks): Doc fix.
18398
18399 2012-02-02 Juri Linkov <juri@jurta.org>
18400
18401 * image-mode.el (image-toggle-display-image): Remove tautological
18402 `major-mode' from the `derived-mode-p' test.
18403
18404 2012-02-02 Kenichi Handa <handa@m17n.org>
18405
18406 * composite.el (compose-region): Cancel previous change.
18407
18408 2012-02-02 Kenichi Handa <handa@m17n.org>
18409
18410 * composite.el (compose-region, compose-string): Signal error for
18411 a null string component (Bug#6988).
18412
18413 2012-02-01 Chong Yidong <cyd@gnu.org>
18414
18415 * view.el (view-buffer-other-window, view-buffer-other-frame):
18416 Handle special modes like view-buffer (Bug#10650).
18417 (view-buffer): Simplify.
18418
18419 * frame.el (set-frame-font): Tweak meaning of third argument.
18420
18421 * dynamic-setting.el (font-setting-change-default-font):
18422 Use set-frame-font (Bug#9982).
18423
18424 2012-02-01 Glenn Morris <rgm@gnu.org>
18425
18426 * progmodes/compile.el (compilation-internal-error-properties):
18427 Respect compilation-first-column in the "*compilation*" buffer.
18428
18429 * emacs-lisp/easy-mmode.el (define-minor-mode):
18430 Relax :variable's test for a named function.
18431
18432 2012-01-31 Alan Mackenzie <acm@muc.de>
18433
18434 * progmodes/cc-engine.el (c-guess-basic-syntax): CASE 5B.1: Fix an
18435 off by one error.
18436
18437 2012-01-31 Chong Yidong <cyd@gnu.org>
18438
18439 * frame.el (set-frame-font): New arg ALL-FRAMES.
18440
18441 * menu-bar.el (menu-set-font): Use set-frame-font.
18442
18443 * faces.el (face-spec-reset-face): Don't apply unspecified
18444 attribute values to the default face.
18445
18446 2012-01-31 Juanma Barranquero <lekktu@gmail.com>
18447
18448 * progmodes/cwarn.el (cwarn): Remove dead link.
18449 (cwarn-configuration, cwarn-verbose, cwarn-mode-text, cwarn-load-hook):
18450 Remove * from defcustom docstrings.
18451 (turn-on-cwarn-mode): Make obsolete.
18452 (c-at-toplevel-p): Remove compatibility code for Emacs 20.3 and older.
18453 (turn-on-cwarn-mode-if-enabled): Call `cwarn-mode'.
18454
18455 2012-01-31 Glenn Morris <rgm@gnu.org>
18456
18457 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix.
18458 Fix :variable handling of mode a symbol not equal to modefun.
18459 Allow named functions to be used as the cdr of :variable.
18460
18461 2012-01-30 Glenn Morris <rgm@gnu.org>
18462
18463 * emacs-lisp/authors.el (authors-fixed-entries):
18464 Remove reference to deleted file rnewspost.el.
18465
18466 2012-01-29 Juanma Barranquero <lekktu@gmail.com>
18467
18468 * window.el (window-with-parameter): Remove unused variable `windows'.
18469 (window--side-check): Remove unused variable `code'.
18470 (window--resize-siblings): Remove unused variable `first'.
18471 (adjust-window-trailing-edge): Remove unused variable `failed'.
18472 (window-deletable-p, window--delete): Remove unused variable `buffer'.
18473 Use `let', not `let*'.
18474 (balance-windows-2): Remove unused variable `found'.
18475 (window--state-put-2): Remove unused variable `splits'.
18476 (window-state-put): Remove unused variable `selected'.
18477 (same-window-p): Use `string-match-p'.
18478 (display-buffer-assq-regexp): Remove unused variable `value'.
18479 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
18480 Mark argument ALIST as ignored.
18481 (pop-to-buffer): Remove unused variable `old-window'.
18482
18483 2012-01-29 Eli Zaretskii <eliz@gnu.org>
18484
18485 * jka-cmpr-hook.el (jka-compr-compression-info-list): Support .lz
18486 and .lzma compressed files.
18487
18488 2012-01-29 Chong Yidong <cyd@gnu.org>
18489
18490 * frame.el (window-system-default-frame-alist): Doc fix.
18491
18492 * dynamic-setting.el (font-setting-change-default-font): Don't
18493 change the default face if SET-FONT argument is non-nil (Bug#9982).
18494
18495 2012-01-29 Samuel Bronson <naesten@gmail.com>
18496
18497 * custom.el (defcustom): Add doc link to Lisp manual (Bug#10635).
18498
18499 2012-01-29 Syver Enstad <syver.enstad@cisco.com> (tiny change)
18500
18501 * progmodes/gud.el (pdb): Give pdb full paths, to allow setting
18502 breakpoints in files outside current directory (Bug#6098).
18503
18504 2012-01-29 Chong Yidong <cyd@gnu.org>
18505
18506 * progmodes/python.el: Require ansi-color at top-level.
18507
18508 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-abbrev-table):
18509 Define and use in Emacs Lisp mode (Bug#9360).
18510 (lisp-mode-abbrev-table): Add doc.
18511 (lisp-mode-variables): Don't set local-abbrev-table.
18512 (lisp-interaction-mode): Use emacs-lisp-mode-abbrev-table.
18513
18514 2012-01-28 Roland Winkler <winkler@gnu.org>
18515
18516 * textmodes/bibtex.el (bibtex-vec-incr): Fix docstring.
18517
18518 2012-01-28 Roland Winkler <winkler@gnu.org>
18519
18520 * textmodes/bibtex.el (bibtex-entry-alist): New function.
18521 (bibtex-set-dialect): Use it. Either set global values of
18522 dialect-dependent variables or bind these variables buffer-locally
18523 (Bug#10254).
18524 (bibtex-mode): Call bibtex-set-dialect via
18525 hack-local-variables-hook.
18526 (bibtex-dialect): Update docstring.
18527 Add safe-local-variable predicate.
18528 (bibtex-entry-alist, bibtex-field-alist): Initialize via
18529 bibtex-set-dialect.
18530 (bibtex-mode-map): Define menu for each dialect.
18531 (bibtex-entry): Fix docstring.
18532
18533 2012-01-28 Chong Yidong <cyd@gnu.org>
18534
18535 * eshell/esh-arg.el (eshell-quote-argument): New function.
18536
18537 * eshell/esh-ext.el (eshell-invoke-batch-file):
18538 * eshell/em-unix.el (eshell/cat, eshell/du): Use it to quote the
18539 first arg to eshell-parse-command (Bug#10523).
18540
18541 2012-01-28 Drew Adams <drew.adams@oracle.com>
18542
18543 * net/ange-ftp.el (ange-ftp-canonize-filename): Check, that
18544 `default-directory' is non-nil.
18545
18546 2012-01-28 Eli Zaretskii <eliz@gnu.org>
18547
18548 * mail/emacsbug.el (report-emacs-bug): Fill the potentially long
18549 line that displays system-configuration-options. (Bug#9924)
18550
18551 2012-01-28 Drew Adams <drew.adams@oracle.com>
18552
18553 * descr-text.el (describe-char): Show information about POS, in
18554 addition to information about the character at POS. Improve and
18555 update the doc string. Change "code point" to "code point in
18556 charset", to avoid confusion with the character's Unicode code
18557 point shown above that. (Bug#10129)
18558
18559 2012-01-28 Eli Zaretskii <eliz@gnu.org>
18560
18561 * descr-text.el (describe-char): Show the raw character, not only
18562 its display form at POS. Suggested by Kenichi Handa <handa@m17n.org>.
18563 See http://lists.gnu.org/archive/html/emacs-devel/2012-01/msg00760.html
18564 for the reasons.
18565
18566 2012-01-28 Phil Hagelberg <phil@hagelb.org>
18567
18568 * emacs-lisp/package.el (package-install):
18569 Run package-refresh-contents if there is no archive yet (Bug#9798).
18570
18571 2012-01-28 Chong Yidong <cyd@gnu.org>
18572
18573 * emacs-lisp/package.el (package-maybe-load-descriptor):
18574 New function, split from package-maybe-load-descriptor.
18575 (package-maybe-load-descriptor): Use it.
18576 (package-download-transaction): Fully load required packages
18577 inside the loop, so that `require' calls work (Bug#10593).
18578 (package-install): No need to call package-initialize now.
18579
18580 2012-01-28 Chong Yidong <cyd@gnu.org>
18581
18582 * simple.el (deactivate-mark): Doc fix (Bug#8614).
18583
18584 * tooltip.el (tooltip-mode): Doc fix.
18585 (tooltip-use-echo-area): Mark as obsolete (Bug#6595).
18586
18587 * frame.el (set-cursor-color): Doc fix (Bug#352).
18588
18589 * mail/rmail.el (rmail-start-mail): Add send-action again (Bug#10625).
18590 (rmail-mail-return): Switch to NEWBUF only if it is non-nil.
18591
18592 * cus-edit.el (custom-buffer-create-internal): Fix search button
18593 action (Bug#10542).
18594 (customize-unsaved, customize-saved): Doc fix (Bug#10541).
18595
18596 2012-01-27 Eduard Wiebe <usenet@pusto.de>
18597
18598 * dired.el (dired-mark-files-regexp):
18599 Include any subdirectory components. (Bug#10445)
18600
18601 2012-01-27 Mike Lamb <mrlamb@gmail.com> (tiny change)
18602
18603 * pcmpl-unix.el (pcmpl-ssh-known-hosts):
18604 Handle [host]:port syntax. (Bug#10533)
18605
18606 2012-01-27 Alex Harsanyi <harsanyi@mac.com>
18607
18608 * xml.el (xml-parse-tag): Fix parsing of comments (Bug#10405).
18609
18610 2012-01-26 Glenn Morris <rgm@gnu.org>
18611
18612 * dired-x.el (dired-bind-jump): Use ctl-x-map and ctl-x-4-map.
18613 * term.el (term-raw-escape-map): Use Control-X-prefix.
18614 * vc/vc-hooks.el (vc-prefix-map): Use ctl-x-map. (Bug#10566)
18615
18616 2012-01-25 Martin Rudalics <rudalics@gmx.at>
18617
18618 * window.el (window-state-get, window--state-get-1): Don't deal
18619 with fixed-sizeness of windows. Simplify code.
18620
18621 2012-01-25 Jérémy Compostella <jeremy.compostella@gmail.com>
18622
18623 * window.el (window--state-get-1, window--state-put-2):
18624 Don't save and restore the mark.
18625
18626 2012-01-25 Chong Yidong <cyd@gnu.org>
18627
18628 * custom.el (custom-variable-p): Doc fix.
18629
18630 2012-01-25 Glenn Morris <rgm@gnu.org>
18631
18632 * dired.el (dired-goto-file): Handle some of the more common
18633 characters that `ls -b' escapes. (Bug#10596)
18634
18635 * progmodes/compile.el (compilation-next-error-function):
18636 Respect compilation-first-column in the "*compilation*" buffer.
18637 * progmodes/grep.el (grep-first-column): New variable. (Bug#10594)
18638
18639 * vc/vc.el (vc-modify-change-comment): Scoping fix. (Bug#10513)
18640
18641 2012-01-24 Glenn Morris <rgm@gnu.org>
18642
18643 * pcmpl-gnu.el (pcomplete/tar): Handle " - ". (Bug#10457)
18644
18645 2012-01-24 Julien Danjou <julien@danjou.info>
18646
18647 * color.el (color-rgb-to-hsl): Fix value computing.
18648 (color-hue-to-rgb): New function.
18649 (color-hsl-to-rgb): New function.
18650 (color-clamp, color-saturate-hsl, color-saturate-name)
18651 (color-desaturate-hsl, color-desaturate-name, color-lighten-hsl)
18652 (color-lighten-name, color-darken-hsl, color-darken-name): New function.
18653
18654 2012-01-24 Glenn Morris <rgm@gnu.org>
18655
18656 * vc/vc-rcs.el (vc-rcs-create-tag):
18657 * vc/vc-sccs.el (vc-sccs-create-tag):
18658 Fix argument spec to be what vc-create-tag expects. (Bug#10515)
18659
18660 2012-01-23 Mike Lamb <mrlamb@gmail.com> (tiny change)
18661
18662 * eshell/esh-util.el (eshell-read-hosts-file):
18663 Skip comment lines. (Bug#10549)
18664
18665 * eshell/em-unix.el (pcomplete/ssh): Remove. (Bug#10548)
18666
18667 2012-01-23 Juanma Barranquero <lekktu@gmail.com>
18668
18669 * subr.el (display-delayed-warnings): Doc fix.
18670 (collapse-delayed-warnings): New function to collapse identical
18671 adjacent warnings.
18672 (delayed-warnings-hook): Add it.
18673
18674 2012-01-22 Michael Albinus <michael.albinus@gmx.de>
18675
18676 * net/tramp.el (tramp-action-login): Set connection property "login-as".
18677
18678 * net/tramp-sh.el (tramp-methods): Add user spec to "pscp" and "psftp".
18679 (tramp-default-user-alist): Don't add "pscp".
18680 (tramp-do-copy-or-rename-file-out-of-band): Use connection
18681 property "login-as", if set. (Bug#10530)
18682
18683 2012-01-21 Michael Albinus <michael.albinus@gmx.de>
18684
18685 * net/tramp-sh.el (tramp-default-user-alist): Don't add "plink",
18686 "plink1" and "psftp". (Bug#10530)
18687
18688 2012-01-21 Kenichi Handa <handa@m17n.org>
18689
18690 * international/mule-cmds.el (prefer-coding-system): Show a
18691 warning message if the default value of file-name-coding-system
18692 was not changed.
18693
18694 2012-01-21 Jérémy Compostella <jeremy.compostella@gmail.com>
18695
18696 * windmove.el (windmove-reference-loc):
18697 Fix windmove-reference-loc miscalculation.
18698
18699 2012-01-21 Jay Belanger <jay.p.belanger@gmail.com>
18700
18701 * calc/calc-units.el (math-put-default-units): Don't use "1" as a
18702 default unit.
18703
18704 2012-01-21 Glenn Morris <rgm@gnu.org>
18705
18706 * international/mule.el (auto-coding-alist): Add .tbz.
18707
18708 * files.el (local-enable-local-variables): Doc fix.
18709 (inhibit-local-variables-regexps): Rename from
18710 inhibit-first-line-modes-regexps. Keep old name as obsolete alias.
18711 Doc fix. Add some extensions from auto-coding-alist.
18712 (inhibit-local-variables-suffixes):
18713 Rename from inhibit-first-line-modes-suffixes. Doc fix.
18714 (inhibit-local-variables-p):
18715 New function, extracted from set-auto-mode-1.
18716 (set-auto-mode): Doc fix. Respect inhibit-local-variables-regexps.
18717 (set-auto-mode-1): Doc fix. Use inhibit-local-variables-p.
18718 (hack-local-variables): Doc fix. Make the mode-only case
18719 respect enable-local-variables and friends.
18720 Respect inhibit-local-variables-regexps for file-locals, but
18721 not for directory-locals.
18722 (set-visited-file-name):
18723 Take account of inhibit-local-variables-regexps.
18724 Whether it applies may change as the file name is changed.
18725 * jka-cmpr-hook.el (jka-compr-install):
18726 * jka-compr.el (jka-compr-uninstall):
18727 Update for inhibit-first-line-modes-suffixes name change.
18728
18729 2012-01-20 Martin Rudalics <rudalics@gmx.at>
18730
18731 * help-macro.el (make-help-screen): Temporarily restore original
18732 binding for minor-mode-map-alist (Bug#10454).
18733
18734 2012-01-19 Julien Danjou <julien@danjou.info>
18735
18736 * color.el (color-name-to-rgb): Use the white color to find the max
18737 color component value and return correctly computed values.
18738 (color-name-to-rgb): Add missing float conversion for max value.
18739
18740 2012-01-19 Martin Rudalics <rudalics@gmx.at>
18741
18742 * window.el (window--state-get-1, window-state-get): Do not use
18743 special state value for window-persistent-parameters.
18744 Rename argument IGNORE to WRITABLE. Rewrite doc-string.
18745 (window--state-put-2): Reset all window parameters to nil before
18746 assigning values of persistent parameters.
18747
18748 2012-01-18 Alan Mackenzie <acm@muc.de>
18749
18750 Eliminate sluggishness and hangs in fontification of "semicolon
18751 deserts".
18752
18753 * progmodes/cc-engine.el (c-state-nonlit-pos-interval):
18754 Change value 10000 -> 3000.
18755 (c-state-safe-place): Reformulate so it doesn't stack up an
18756 infinite number of wrong entries in c-state-nonlit-pos-cache.
18757 (c-determine-limit-get-base, c-determine-limit): New functions to
18758 determine backward search limits disregarding literals.
18759 (c-find-decl-spots): Amend commenting.
18760 (c-cheap-inside-bracelist-p): New function which detects "={".
18761
18762 * progmodes/cc-fonts.el
18763 (c-make-font-lock-BO-decl-search-function): Give a limit to a
18764 backward search.
18765 (c-font-lock-declarations): Fix an occurrence of point being
18766 undefined. Check additionally for point being in a bracelist or
18767 near a macro invocation without a semicolon so as to avoid a
18768 fruitless time consuming search for a declarator. Give a more
18769 precise search limit for declarators using the new
18770 c-determine-limit.
18771
18772 2012-01-18 Glenn Morris <rgm@gnu.org>
18773
18774 * files.el (auto-mode-alist, inhibit-first-line-modes-regexps)
18775 (set-auto-mode): Doc fixes.
18776
18777 2012-01-17 Glenn Morris <rgm@gnu.org>
18778
18779 * isearch.el (search-nonincremental-instead): Fix doc typo.
18780
18781 * dired.el (dired-insert-directory): Handle newlines in directory name.
18782 (dired-build-subdir-alist): Unescape newlines in directory name.
18783
18784 2012-01-17 Michael Albinus <michael.albinus@gmx.de>
18785
18786 * net/tramp.el (tramp-local-end-of-line): New defcustom.
18787 (tramp-action-login, tramp-action-yesno, tramp-action-yn)
18788 (tramp-action-terminal): Use it. (Bug#10530)
18789
18790 2012-01-16 Stefan Monnier <monnier@iro.umontreal.ca>
18791
18792 * minibuffer.el (completion--replace): Strip properties (bug#10062).
18793
18794 2012-01-16 Martin Rudalics <rudalics@gmx.at>
18795
18796 * window.el (window-state-ignored-parameters): Remove variable.
18797 (window--state-get-1): Rename argument MARKERS to IGNORE.
18798 Handle persistent window parameters. Make copy of clone-of
18799 parameter only if requested. (Bug#10348)
18800 (window--state-put-2): Install a window parameter only if it has
18801 a non-nil value or an existing parameter shall be overwritten.
18802
18803 2012-01-15 Michael Albinus <michael.albinus@gmx.de>
18804
18805 * net/tramp-sh.el (tramp-remote-path): Set tramp-autoload cookie.
18806
18807 2012-01-14 Eli Zaretskii <eliz@gnu.org>
18808
18809 * info.el (Info-toc-build): If the Info file has no "Up" pointer,
18810 don't pass the (nil) value of `upnode' to string-match.
18811
18812 2012-01-14 Chong Yidong <cyd@gnu.org>
18813
18814 * startup.el (command-line): Fix X resource class for cursorColor.
18815 Fix values recognized by the cursorBlink resource.
18816
18817 2012-01-14 Paul Eggert <eggert@cs.ucla.edu>
18818
18819 * epg.el (epg--make-temp-file): Avoid permission race condition
18820 when running on old Emacs versions (bug#10403).
18821
18822 2012-01-14 Glenn Morris <rgm@gnu.org>
18823
18824 * dired.el (dired-get-filename): Fix 'verbatim case of previous change.
18825
18826 2012-01-13 Alan Mackenzie <acm@muc.de>
18827
18828 Fix filling for when filladapt mode is enabled.
18829
18830 * progmodes/cc-cmds.el (c-fill-paragraph): In the invocation of
18831 c-mask-paragraph, pass in `fill-paragraph' rather than
18832 `fill-region-as-paragraph'. (This is a reversion of a previous
18833 change.)
18834 * progmodes/cc-mode.el (c-basic-common-init):
18835 Make fill-paragraph-handle-comment buffer local and set it to nil.
18836
18837 2012-01-13 Glenn Morris <rgm@gnu.org>
18838
18839 * dired.el (dired-switches-escape-p): New function.
18840 (dired-insert-directory): Use dired-switches-escape-p.
18841 (dired-get-filename): Undo "\ " quoting if needed. (Bug#10469)
18842
18843 * find-dired.el (find-ls-option): Doc fix. (Bug#10262)
18844
18845 2012-01-12 Glenn Morris <rgm@gnu.org>
18846
18847 * mail/sendmail.el (mail-mode): Update paragraph-separate for
18848 changes in adaptive-fill-regexp. (Bug#10276)
18849
18850 2012-01-11 Alan Mackenzie <acm@muc.de>
18851
18852 Fix Emacs bug #10463 - put `widen's around the critical spots.
18853
18854 * progmodes/cc-engine.el (c-in-literal, c-literal-limits): Put a
18855 widen around each invocation of c-state-pp-to-literal. Remove an
18856 unused let variable.
18857
18858 2012-01-11 Glenn Morris <rgm@gnu.org>
18859
18860 * dired-aux.el (dired-do-shell-command): Fix */? logic. (Bug#6561)
18861 Doc fix.
18862
18863 2012-01-10 Chong Yidong <cyd@gnu.org>
18864
18865 * net/network-stream.el (network-stream-open-starttls):
18866 Avoid emitting a confusing error message when the server gives a bad
18867 response to the capability command.
18868
18869 2012-01-10 Glenn Morris <rgm@gnu.org>
18870
18871 * mail/unrmail.el (unrmail): Tweak previous change.
18872
18873 2012-01-09 Chong Yidong <cyd@gnu.org>
18874
18875 * custom.el (custom-safe-themes): Use SHA-256 for hashing.
18876
18877 2012-01-08 Alan Mackenzie <acm@muc.de>
18878
18879 Optimize font locking in long enum definitions.
18880
18881 * progmodes/cc-fonts.el (c-font-lock-declarations): Add an extra
18882 arm to a cond form to handle enums.
18883 * progmodes/cc-langs.el (c-enums-contain-decls): New lang variable.
18884 * progmodes/cc-mode.el (c-font-lock-fontify-region): Correct a typo.
18885
18886 2012-01-07 Paul Eggert <eggert@cs.ucla.edu>
18887
18888 * files.el (move-file-to-trash): Preserve default file modes on error.
18889 (Bug#10401)
18890
18891 2012-01-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
18892
18893 * faces.el (set-face-attribute): Clarify the meaning of the nil
18894 frame (bug#10294).
18895
18896 * subr.el (with-selected-frame): Mention that the selected frame
18897 is restored (bug#9980).
18898
18899 * ibuffer.el (ibuffer-mode): List the bindings in the corrent map
18900 (bug#9759).
18901
18902 * mail/smtpmail.el (password-cache-add): Remove unused declaration.
18903 (password-read): Don't autoload unused function.
18904
18905 2012-01-07 Juanma Barranquero <lekktu@gmail.com>
18906
18907 * progmodes/which-func.el (which-func-mode): Turn into a
18908 non-interactive function and mark as obsolete (bug#10428).
18909
18910 2012-01-06 Chong Yidong <cyd@gnu.org>
18911
18912 * files.el (hack-dir-local-variables-non-file-buffer): Add doc.
18913 (hack-one-local-variable-eval-safep): Allow 0 arg for minor mode
18914 functions, along with 1 and -1.
18915
18916 2012-01-06 Eli Zaretskii <eliz@gnu.org>
18917
18918 * time.el (display-time-load-average)
18919 (display-time-default-load-average): Doc fixes. See the thread
18920 starting at
18921 http://lists.gnu.org/archive/html/help-gnu-emacs/2012-01/msg00059.html
18922 for the details.
18923
18924 2012-01-06 Glenn Morris <rgm@gnu.org>
18925
18926 * mail/unrmail.el (unrmail): Give an explicit error if the input file
18927 has no messages. (Bug#10377)
18928
18929 * info.el (Info-mode-map): Bind e to end-of-buffer, rather
18930 than Info-edit. (Bug#10385)
18931
18932 * time.el (display-time-load-average, display-time-next-load-average):
18933 Doc fixes.
18934
18935 * emacs-lisp/bytecomp.el (byte-compile-file): Do not propagate a file
18936 local setting of buffer-read-only to the input buffer. (Bug#10419)
18937
18938 * calendar/calendar.el (calendar-mode):
18939 Locally set scroll-margin to 0. (Bug#10379)
18940
18941 2012-01-06 Ulrich Mueller <ulm@gentoo.org>
18942
18943 * play/doctor.el (doctor-death): Escape "," characters. (Bug#10370)
18944
18945 2012-01-05 Glenn Morris <rgm@gnu.org>
18946
18947 * eshell/em-unix.el (diff-no-select): Autoload it.
18948 (eshell/diff): Use diff-no-select. (Bug#10420)
18949
18950 2012-01-05 Chong Yidong <cyd@gnu.org>
18951
18952 * shell.el (shell-dynamic-complete-functions): Revert last change.
18953 (shell-command-completion-function): New function.
18954 (shell-completion-vars): Use it to implement
18955 shell-completion-execonly (Bug#10417).
18956
18957 * custom.el (enable-theme): Don't set custom-safe-themes.
18958
18959 * cus-theme.el (custom-theme-merge-theme):
18960 Ignore custom-enabled-themes and custom-safe-themes.
18961
18962 2012-01-05 Michael R. Mauger <mmaug@yahoo.com>
18963
18964 * progmodes/sql.el (sql-login-hook): Add hook to respond to the
18965 first prompt in `sql-interacive-mode'.
18966 (sql-mode-oracle-font-lock-keywords): Add CONNECT_BY_* builtin
18967 keywords.
18968 (sql-mode-mysql-font-lock-keywords): Add ELSEIF keyword.
18969 (sql-product-interactive): Bug fix: Set `sql-buffer' in
18970 context of original buffer. Invoke `sql-login-hook'.
18971
18972 2012-01-04 Eli Zaretskii <eliz@gnu.org>
18973
18974 * mail/rmail.el (rmail-font-lock-keywords): Accept non-ASCII
18975 letters in cite-prefix.
18976
18977 2012-01-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
18978
18979 * mail/smtpmail.el (smtpmail-stream-type): Mention the `ssl' value.
18980
18981 2012-01-03 Chong Yidong <cyd@gnu.org>
18982
18983 * shell.el (shell-dynamic-complete-functions):
18984 Put pcomplete-completions-at-point, so as to try
18985 comint-filename-completion first (Bug#10417).
18986
18987 2012-01-02 Richard Stallman <rms@gnu.org>
18988
18989 * battery.el (battery-status-function):
18990 Detect when to use battery-yeeloong-sysfs.
18991 (battery-echo-area-format): Add string for Yeeloong.
18992 (battery-linux-proc-apm, battery-linux-proc-acpi): Doc fixes.
18993 (battery-yeeloong-sysfs): New function.
18994
18995 2012-01-02 Chong Yidong <cyd@gnu.org>
18996
18997 * dirtrack.el (dirtrack-list): Eliminate unused third element.
18998 (dirtrack): Merge code for handling relative filenames in prompt
18999 from shell-dir-cookie-watcher.
19000 (dirtrack-debug-message): New arg to avoid excess format calls.
19001
19002 * shell.el (shell-dir-cookie-re): Variable deleted.
19003 (shell-dir-cookie-watcher): Function deleted.
19004 (shell-mode): Don't use shell-dir-cookie-re, since it is redundant
19005 with dirtrack-mode.
19006
19007 2012-01-01 Eli Zaretskii <eliz@gnu.org>
19008
19009 * term/w32-win.el (dynamic-library-alist) <gnutls>:
19010 Load libgnutls-28.dll, from GnuTLS version 3.x, in preference to
19011 libgnutls-26.dll.
19012
19013 2011-12-31 Andreas Schwab <schwab@linux-m68k.org>
19014
19015 * emacs-lisp/bytecomp.el (byte-compile-file): Fix indentation.
19016
19017 2011-12-31 Eli Zaretskii <eliz@gnu.org>
19018
19019 * mail/rmail.el (rmail-show-message-1): Decode any RFC2047 encoded
19020 headers of non-MIME messages, when rmail-enable-mime is non-nil.
19021
19022 2011-12-29 Michael Albinus <michael.albinus@gmx.de>
19023
19024 * net/tramp-sh.el (tramp-find-shell): Set "remote-shell" property
19025 also for alternative shells.
19026 (tramp-open-connection-setup-interactive-shell): Check, whether
19027 the shell is a busybox.
19028 (tramp-send-command): Don't suppress multiple prompts for
19029 busyboxes, it hurts.
19030
19031 2011-12-28 Chong Yidong <cyd@gnu.org>
19032
19033 * progmodes/gdb-mi.el (gdb-get-source-file-list)
19034 (gdb-get-source-file): Move mode line update to
19035 gdb-get-source-file (Bug#10087).
19036
19037 2011-12-25 Chong Yidong <cyd@gnu.org>
19038
19039 * progmodes/gud.el (gud-gdb-fetch-lines-filter): Just use
19040 gud-gdb-marker-filter without taking it as an argument.
19041 (gud-gdb-run-command-fetch-lines): Caller changed.
19042 (gud-gdb-completion-function): New variable.
19043 (gud-gdb-completion-at-point): Use it.
19044 (gud-gdb-completions-1): Split from gud-gdb-completions.
19045
19046 * progmodes/gdb-mi.el (gdb-input): Accept command and handler
19047 function as separate arguments.
19048 (gdb-init-1, gdb-non-stop-handler, gdb-check-target-async)
19049 (gdb-tooltip-print-1, gud-watch, gdb-speedbar-update)
19050 (gdb-var-list-children, gdb-var-set-format, gdb-var-delete-1)
19051 (gdb-var-delete-children, gdb-edit-value, gdb-var-update)
19052 (gdb-stopped, def-gdb-auto-update-trigger)
19053 (gdb-place-breakpoints, gdb-select-thread, gdb-select-frame)
19054 (gdb-get-changed-registers, gdb-get-main-selected-frame):
19055 Callers changed.
19056 (gud-gdbmi-completions): New function.
19057 (gdb): Use it for generating the completion table.
19058
19059 2011-12-24 Alan Mackenzie <acm@muc.de>
19060
19061 Introduce a mechanism to widen the region used in context font
19062 locking. Use this to protect declarations from losing their contexts.
19063
19064 * progmodes/cc-langs.el (c-before-font-lock-functions):
19065 Replace c-set-fl-decl-start with c-change-set-fl-decl-start (Renaming).
19066 (c-before-context-fontification-functions): New defvar, a list of
19067 functions to be run just before context (etc.) font locking.
19068
19069 * progmodes/cc-mode.el (c-extend-font-lock-region-for-macros):
19070 New, functionality extracted from
19071 c-neutralize-syntax-in-and-mark-CPP.
19072 (c-in-after-change-fontification): New variable.
19073 (c-after-change): Set c-in-after-change-fontification.
19074 (c-set-fl-decl-start): Rejig its interface, so it can be called
19075 from both after-change and context fontifying.
19076 (c-change-set-fl-decl-start, c-context-set-fl-decl-start):
19077 New functions.
19078 (c-standard-font-lock-fontify-region-function): New variable.
19079 (c-font-lock-fontify-region): New function.
19080
19081 2011-12-24 Juri Linkov <juri@jurta.org>
19082
19083 * window.el (window--state-get-1): Set `FORCE' arg of `mark' to t.
19084 (Bug#10348)
19085
19086 2011-12-23 Michael Albinus <michael.albinus@gmx.de>
19087
19088 * net/ange-ftp.el (ange-ftp-copy-file-internal): Check for
19089 existence of source file. (Bug#10325)
19090
19091 2011-12-23 Alan Mackenzie <acm@muc.de>
19092
19093 Fix unstable fontification inside templates.
19094
19095 * progmodes/cc-langs.el (c-before-font-lock-functions):
19096 Newly created from the singular version. The (c c++ objc) entry now
19097 additionally has c-set-fl-decl-start. The other languages (apart
19098 from AWK) have that as a single entry.
19099
19100 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
19101 The functionality for "local" declarations has been extracted to
19102 c-set-fl-decl-start.
19103
19104 * progmodes/cc-mode.el (c-common-init, c-after-change):
19105 Changes due to pluralisation of c-before-font-lock-functions.
19106 (c-set-fl-decl-start): New function, extracted from
19107 c-font-lock-enclosing-decls and enhanced.
19108
19109 2011-12-23 Juanma Barranquero <lekktu@gmail.com>
19110
19111 * desktop.el (desktop-internal-v2s): Fix typos in docstring (bug#10353).
19112
19113 2011-12-22 Juri Linkov <juri@jurta.org>
19114
19115 * progmodes/grep.el (rgrep): Fix docstring. (Bug#10185)
19116
19117 2011-12-22 Chong Yidong <cyd@gnu.org>
19118
19119 * vc/vc-hooks.el (vc-keep-workfiles): Doc fix.
19120
19121 2011-12-21 Drew Adams <drew.adams@oracle.com>
19122
19123 * files.el (file-remote-p): Fix docstring. (Bug#10319)
19124
19125 2011-12-21 Jérémy Compostella <jeremy.compostella@gmail.com>
19126
19127 * battery.el (battery-linux-sysfs): Add missing parameters from acpi.
19128
19129 2011-12-21 Teodor Zlatanov <tzz@lifelogs.com>
19130
19131 * progmodes/cfengine.el: Add Version. Improve CFEngine 3.x syntax
19132 highlighting and support. Fix up comments for capitalization.
19133 (cfengine-mode-debug): New var.
19134 (cfengine3-mode): Change the modeline indicator to "CFE3".
19135 (cfengine3-font-lock-keywords): Improve defun highlighting.
19136 (cfengine2-actions): Rename from `cfengine-actions'.
19137 (cfengine2-font-lock-keywords): Rename from
19138 `cfengine-font-lock-keywords'.
19139 (cfengine2-imenu-expression): Rename from
19140 `cfengine-imenu-expression'.
19141 (cfengine2-outline-level): Rename from `cfengine-outline-level'.
19142 (cfengine2-beginning-of-defun): Rename from
19143 `cfengine-beginning-of-defun'.
19144 (cfengine2-end-of-defun): Rename from `cfengine-end-of-defun'.
19145 (cfengine2-indent-line): Rename from `cfengine-indent-line'.
19146 (cfengine2-mode): Rename from `cfengine-mode'. Change the
19147 modeline indicator to "CFE2".
19148 (cfengine-mode): Defalias to `cfengine-auto-mode'.
19149 (cfengine-mode-abbrevs): Mark obsolete.
19150
19151 2011-12-21 Chong Yidong <cyd@gnu.org>
19152
19153 * vc/vc-bzr.el (vc-bzr-rename-file): Don't pass ~ to Bzr in
19154 filename argument.
19155
19156 2011-12-20 Martin Rudalics <rudalics@gmx.at>
19157
19158 * window.el (window-normalize-buffer-to-display): Remove.
19159 (display-buffer): Handle buffer-or-name argument as in Emacs 23.
19160
19161 2011-12-19 Chong Yidong <cyd@gnu.org>
19162
19163 * vc/vc-dir.el (vc-dir-parent-marked-p, vc-dir-children-marked-p):
19164 Don't signal an error in a predicate function; return non-nil.
19165 (vc-dir-mark-file): Move the error here.
19166 (vc-dir-mark-unmark): If acting on the region, keep going if one
19167 of the entries cannot be marked/unmarked.
19168 (vc-dir-mark-all-files): If current entry is a directory, mark
19169 only child files, as documented.
19170
19171 2011-12-19 Vincent Belaïche <vincentb1@users.sourceforge.net>
19172
19173 * ses.el: Ooops... undo changes of 2011-12-11T14:49:48Z!vincentb1@users.sourceforge.net, as trunk
19174 branch is feature frozen, and 2011-12-11T14:49:48Z!vincentb1@users.sourceforge.net was a feature
19175 addition.
19176
19177 2011-12-18 Jan Djärv <jan.h.d@swipnet.se>
19178
19179 * term/ns-win.el (ns-get-selection-internal)
19180 (ns-store-selection-internal): Declare.
19181 (ns-store-cut-buffer-internal, ns-get-cut-buffer-internal):
19182 Declare as obsolete.
19183 (ns-get-pasteboard, ns-paste-secondary):
19184 Use ns-get-selection-internal.
19185 (ns-set-pasteboard, ns-copy-including-secondary):
19186 Use ns-store-selection-internal.
19187
19188 2011-12-17 Chong Yidong <cyd@gnu.org>
19189
19190 * vc/vc.el (vc-next-action): Doc fix; remove CVS-isms.
19191 (vc-deduce-fileset): Doc fix.
19192
19193 2011-12-16 Andreas Schwab <schwab@linux-m68k.org>
19194
19195 * calc/calc-misc.el (calc-help): Avoid wrapping help message.
19196
19197 2011-12-13 Sam Steingold <sds@gnu.org>
19198
19199 * man.el (Man-getpage-in-background): When running under a
19200 window-system, ignore $MANWIDTH and $COLUMNS.
19201
19202 2011-12-15 Kenichi Handa <handa@m17n.org>
19203
19204 * language/ethio-util.el: Change coding tag to utf-8-emacs.
19205 (setup-ethiopic-environment-internal): Comment out key-binding for
19206 ethio-toggle-punctuation.
19207
19208 2011-12-13 Alan Mackenzie <acm@muc.de>
19209
19210 Add the switch statement to AWK Mode.
19211
19212 * progmodes/cc-awk.el (awk-font-lock-keywords): Add "switch", "case",
19213 "default" to the keywords regexp.
19214
19215 * progmodes/cc-langs.el (c-label-kwds): Let AWK take the same
19216 expression as the rest.
19217 (c-nonlabel-token-key): Allow string literals for AWK.
19218 Refactor for the other modes.
19219
19220 Large brace-block initialisation makes CC Mode slow: Fix.
19221 Tidy up and accelerate c-in-literal, etc. by using the c-parse-state
19222 routines. Limit backward searching in c-font-lock-enclosing.decl.
19223
19224 * progmodes/cc-engine.el (c-state-pp-to-literal): Return the
19225 pp-state and literal type in addition to the limits.
19226 (c-state-safe-place): New defun, extracted from c-state-literal-at.
19227 (c-state-literal-at): Use the above new defun.
19228 (c-slow-in-literal, c-fast-in-literal): Remove.
19229 (c-in-literal, c-literal-limits): Amend to use c-state-pp-to-literal.
19230
19231 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls): Check for
19232 being in a literal. Add a limit for backward searching.
19233
19234 * progmodes/cc-mode.el (awk-mode): Don't alias c-in-literal to
19235 c-slow-in-literal.
19236
19237 2011-12-13 Stefan Monnier <monnier@iro.umontreal.ca>
19238
19239 * progmodes/pascal.el: Declare `ind' as dyn-bound (bug#10264).
19240
19241 2011-12-13 Martin Rudalics <rudalics@gmx.at>
19242
19243 * window.el (delete-other-windows): Use correct frame in call to
19244 window-with-parameter.
19245
19246 2011-12-12 Daniel Pfeiffer <occitan@t-online.de>
19247
19248 * progmodes/make-mode.el: Bring it up to date with makepp V2.0.
19249 (makefile-make-font-lock-keywords): Extend meaning of `keywords'.
19250 (makefile-gmake-statements, makefile-makepp-statements):
19251 Use it and add new makepp keywords.
19252 (makefile-makepp-font-lock-keywords): Add new patterns.
19253 (makefile-match-function-end): Match new [...] and [[...]].
19254
19255 2011-12-11 Juanma Barranquero <lekktu@gmail.com>
19256
19257 * ses.el (ses-call-printer-return, ses-cell-property-get)
19258 (ses-sym-rowcol, ses-printer-validate, ses-formula-record)
19259 (ses-create-cell-variable, ses-reset-header-string)
19260 (ses-cell-set-formula, ses-repair-cell-reference-all)
19261 (ses-self-reference-early-detection, ses-in-print-area, ses-set-curcell)
19262 (ses-check-curcell, ses-call-printer, ses-adjust-print-width)
19263 (ses-print-cell-new-width, ses-formula-references, ses-relocate-formula)
19264 (ses-aset-with-undo, ses-load, ses-truncate-cell)
19265 (ses-read-column-printer, ses-read-default-printer, ses-insert-row)
19266 (ses-delete-row, ses-delete-column, ses-append-row-jump-first-column)
19267 (ses-kill-override, ses-yank-pop, ses-yank-cells, ses-yank-tsf)
19268 (ses-yank-resize, ses-export-tab, ses-mark-row, ses-mark-column)
19269 (ses-renarrow-buffer, ses-insert-range, ses-insert-ses-range)
19270 (ses-safe-printer, ses-safe-formula, ses-warn-unsafe, ses--clean-!)
19271 (ses--clean-_, ses-range, ses-select, ses-center, ses-center-span)
19272 (ses-dashfill, ses-unsafe): Fix typos and reflow docstrings.
19273
19274 2011-12-11 Vincent Belaïche <vincentb1@users.sourceforge.net>
19275
19276 * ses.el: The overall change is to add cell renaming, that is
19277 setting fancy names for cell symbols other than name matching
19278 "\\`[A-Z]+[0-9]+\\'" regexp .
19279 (ses-create-cell-variable): New defun.
19280 (ses-relocate-formula): Relocate formulas only for cells the
19281 symbols of which are not renamed, i.e. symbols whose names do not
19282 match regexp "\\`[A-Z]+[0-9]+\\'".
19283 (ses-relocate-all): Relocate values only for cells the symbols of
19284 which are not renamed.
19285 (ses-load): Create cells variables as the (ses-cell ...) are read,
19286 in order to check row col consistency with cell symbol name only
19287 for cells that are not renamed.
19288 (ses-replace-name-in-formula): New defun.
19289 (ses-rename-cell): New defun.
19290
19291 2011-12-11 Chong Yidong <cyd@gnu.org>
19292
19293 * progmodes/gdb-mi.el (gdb): Set comint-prompt-regexp, required
19294 for completion via gud-gdb-fetch-lines-filter (Bug#10274).
19295
19296 2011-12-11 Eric Hanchrow <eric.hanchrow@gmail.com>
19297
19298 * window.el (other-window): Fix docstring.
19299
19300 2011-12-10 Eli Zaretskii <eliz@gnu.org>
19301
19302 * mail/rmailsum.el (rmail-header-summary): RFC2047 decode the
19303 `from' or `to' address before taking its substring.
19304 Fixes incorrect display in Rmail summary buffer whereby an RFC2047
19305 encoded name is chopped in the middle of the encoded string, and
19306 thus displayed encoded.
19307
19308 2011-12-10 Juanma Barranquero <lekktu@gmail.com>
19309
19310 * makefile.w32-in (update-subdirs-CMD): Use a Local Variables section.
19311
19312 2011-12-10 Eli Zaretskii <eliz@gnu.org>
19313
19314 * textmodes/texnfo-upd.el: Update commentary. Add a warning not
19315 to use texinfo-update-node and commands that call it if the
19316 Texinfo file uses @node lines without next/prev/up pointers.
19317 Correct outdated description about texinfo-master-menu.
19318 (texinfo-all-menus-update, texinfo-master-menu)
19319 (texinfo-update-node, texinfo-every-node-update)
19320 (texinfo-multiple-files-update): Doc fix. Warn against updating
19321 all the @node lines.
19322 (texinfo-master-menu): Only call texinfo-update-node if the prefix
19323 argument is numeric. Explain better in the doc string what the
19324 function really does.
19325 (texinfo-insert-master-menu-list): Improve the error message
19326 displayed if there's no menu in the Top node.
19327 (Bug#2975) See also this thread:
19328 http://lists.gnu.org/archive/html/emacs-devel/2011-12/msg00156.html.
19329
19330 2011-12-09 Manuel Gómez <mgrojo@gmail.com> (tiny change)
19331
19332 * speedbar.el (speedbar-supported-extension-expressions):
19333 Add .adb and .ads, commonly used for Ada source code (bug#10256).
19334
19335 2011-12-09 Juanma Barranquero <lekktu@gmail.com>
19336
19337 * printing.el (pr-mode-alist):
19338 * simple.el (filter-buffer-substring-functions)
19339 (completion-list-insert-choice-function):
19340 * window.el (window-with-parameter, window-atom-root)
19341 (window-sides-slots, window-size-fixed, window-min-delta)
19342 (window-max-delta, window--resize-mini-window)
19343 (window--resize-child-windows-normal, window-tree)
19344 (delete-other-windows, quit-window, split-window)
19345 (display-buffer-record-window, special-display-buffer-names)
19346 (special-display-regexps, special-display-popup-frame)
19347 (same-window-p, split-window-sensibly)
19348 (display-buffer-overriding-action, display-buffer-alist)
19349 (display-buffer-base-action, display-buffer, switch-to-buffer)
19350 (switch-to-buffer-other-window, switch-to-buffer-other-frame)
19351 (fit-window-to-buffer, recenter-positions)
19352 (mouse-autoselect-window-state, mouse-autoselect-window-select):
19353 * emacs-lisp/syntax.el (syntax-propertize-function): Fix typos
19354 and remove unneeded backslashes in docstrings.
19355
19356 2011-12-08 Stefan Monnier <monnier@iro.umontreal.ca>
19357
19358 * emacs-lisp/lisp-mode.el (defmethod): Add doc-string-elt (bug#10244).
19359
19360 * pcmpl-gnu.el: Don't fail when there is no Makefile nor -f arg.
19361 (pcmpl-gnu-makefile-regexps): Accept "makefile" as well as files that
19362 end in ".mk".
19363 (pcmpl-gnu-make-rule-names): Check "makefile" and ignore errors
19364 when reading the makefile (bug#10116).
19365
19366 2011-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
19367
19368 * pcmpl-gnu.el (pcomplete/make): Also allow filename arguments
19369 (bug#10116).
19370
19371 2011-12-06 Glenn Morris <rgm@gnu.org>
19372
19373 * emacs-lisp/package.el (package-archives): Doc fix re riskiness.
19374
19375 2011-12-06 Chong Yidong <cyd@gnu.org>
19376
19377 * progmodes/cc-fonts.el (c-annotation-face): Use defface.
19378
19379 2011-12-06 Juanma Barranquero <lekktu@gmail.com>
19380
19381 * textmodes/table.el (table-shorten-cell): Fix typo.
19382
19383 2011-12-05 Christopher Genovese <genovese.cr@gmail.com> (tiny change)
19384
19385 * emacs-lisp/assoc.el (aput): Fix return value (bug#10146)
19386
19387 2011-12-05 Eli Zaretskii <eliz@gnu.org>
19388
19389 * descr-text.el (describe-char): Fix display of strong
19390 right-to-left characters and directional embeddings and overrides.
19391
19392 * simple.el (what-cursor-position): Fix display of codepoints of
19393 strong right-to-left characters.
19394
19395 2011-12-05 Chong Yidong <cyd@gnu.org>
19396
19397 * faces.el (read-color): Doc fix.
19398
19399 2011-12-05 Glenn Morris <rgm@gnu.org>
19400
19401 * align.el (align--set-marker): Add doc-string.
19402 Don't try to move something that is not a marker. (Bug#10216)
19403
19404 2011-12-04 Glenn Morris <rgm@gnu.org>
19405
19406 * calendar/appt.el (appt-add): Rewrite the interactive-spec to avoid
19407 overly zealous deletion of trailing whitespace.
19408
19409 2011-12-04 Juanma Barranquero <lekktu@gmail.com>
19410
19411 * server.el (server-delete-client): On Windows, do not try to delete
19412 the only terminal.
19413 (server-process-filter): On Windows, treat requests for a tty frame as
19414 if they were for a GUI frame if the running server is in GUI mode.
19415
19416 2011-12-03 Glenn Morris <rgm@gnu.org>
19417
19418 * textmodes/texinfmt.el (batch-texinfo-format): Doc fix. (Bug#10207)
19419
19420 2011-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
19421
19422 * electric.el: Streamline electric-indent's hook.
19423 (electric-indent-chars): Revert to simple list.
19424 (electric-indent-functions): New var.
19425 (electric-indent-post-self-insert-function): Use it.
19426
19427 * progmodes/prolog.el (prolog-find-value-by-system): Avoid error when
19428 there's no inferior buffer (bug#10196).
19429 (prolog-consult-compile): Don't use toggle-read-only.
19430
19431 2011-12-02 Michael Albinus <michael.albinus@gmx.de>
19432
19433 * net/tramp-sh.el (tramp-maybe-open-connection): Handle user
19434 interrupt. (Bug#10187)
19435
19436 2011-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
19437
19438 * pcmpl-gnu.el (pcomplete/tar): large-file-warn-threshold can be nil
19439 (bug#9160).
19440
19441 * dired-aux.el (dired-query): Don't assume help-char is modifier-free
19442 (bug#10191).
19443
19444 2011-12-02 Juri Linkov <juri@jurta.org>
19445
19446 * info.el (Info-search): Display "end of manual" when Isearch
19447 reaches the end of single-file Info manual. (Bug#9918)
19448
19449 2011-12-02 Eli Zaretskii <eliz@gnu.org>
19450
19451 * isearch.el (isearch-message-prefix): Run the input method part
19452 of the prompt through bidi-string-mark-left-to-right. (Bug#10183)
19453
19454 2011-12-02 Juri Linkov <juri@jurta.org>
19455
19456 * isearch.el (isearch-occur): Use `word-search-regexp' for
19457 `isearch-word'.
19458 (isearch-search-and-update): Add condition for `isearch-word' and
19459 call `word-search-regexp'. (Bug#10145)
19460
19461 2011-12-01 Glenn Morris <rgm@gnu.org>
19462
19463 * eshell/em-hist.el (eshell-hist-initialize):
19464 Handle eshell-history-size nil and HISTSIZE set or unset.
19465 (eshell-history-file-name, eshell-history-size): Fix custom type.
19466
19467 2011-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
19468
19469 * man.el (Man-completion-table): Fix the lambda case (bug#10168).
19470
19471 2011-12-01 Michael McNamara <mac@mail.brushroad.com>
19472
19473 * progmodes/verilog-mode.el (verilog-pretty-expr):
19474 Rework verilog-pretty-expr to handle new assignment operators in system
19475 verilog, such as += *= and the like.
19476 (verilog-assignment-operator-re): Regular expression to find the
19477 assigment operator in a verilog assignment.
19478 (verilog-assignment-operation-re): Regular expression to find an
19479 assignment statement for pretty-expr.
19480 (verilog-in-attribute-p): Query returns true if point is in an
19481 attribute context; used to skip these for expression line up from
19482 pretty-expr.
19483 (verilog-in-parameter-p): Query returns true if point is in an
19484 parameter definition context; used to skip these for expression
19485 line up from pretty-expr.
19486 (verilog-in-parenthesis-p): Query returns true if point is in a
19487 parenthetical expression, specifically ( ) but not [ ] or { };
19488 used by pretty-expr.
19489 (verilog-just-one-space): If there is no space, don't add one.
19490 (verilog-get-lineup-indent-2): Specifically skip just attribute
19491 contexts for expression lineup, rather than skipping all
19492 parenthetical expressions.
19493 (verilog-calculate-indent): Fix comment, and fix indent.
19494 (verilog-do-indent): Indent declarations in lists (suggested by
19495 Joachim Lechner).
19496 (verilog-mode-abbrev-table): Populate abbrev mode with the various
19497 skeleton items.
19498 (verilog-sk-ovm-class): Add skeleton for OVM classes (reported
19499 by Alain Mellan).
19500
19501 2011-12-01 Wilson Snyder <wsnyder@wsnyder.org>
19502
19503 * progmodes/verilog-mode.el (verilog-read-defines): Fix reading
19504 parameters with embedded comments. Reported by Ray Stevens.
19505 (verilog-calc-1, verilog-fork-wait-re, verilog-forward-sexp)
19506 (verilog-wait-fork-re): Fix indentation of "wait fork", bug407.
19507 Reported by Tim Holt.
19508 (verilog-auto): Fix AUTOing a upper module then AUTOing module
19509 instantiated by upper module causing wrong expansion until AUTOed a
19510 second time. Reported by K C Buckenmaier.
19511 (verilog-diff-auto): Fix showing .* as a difference when
19512 `verilog-auto-star-save' off. Reported by Dan Dever.
19513 (verilog-auto-reset, verilog-read-always-signals)
19514 (verilog-auto-reset-blocking-in-non): Fix AUTORESET including
19515 temporary signals in reset list if
19516 verilog-auto-reset-blocking-in-non is nil, and match assignment
19517 style to each signal's assignment type, bug381.
19518 Reported by Thomas Esposito.
19519 (verilog-sk-uvm-class, verilog-uvm-begin-re, verilog-uvm-end-re)
19520 (verilog-uvm-statement-re): Support UVM indentation and
19521 highlighting, with old OVM keywords only.
19522 (verilog-auto-tieoff, verilog-auto-tieoff-declaration):
19523 Support AUTOTIEOFF creating non-wire data types.
19524 Suggested by Jonathan Greenlaw.
19525 (verilog-auto-insert-lisp, verilog-delete-to-paren)
19526 (verilog-forward-sexp-cmt, verilog-forward-sexp-ign-cmt)
19527 (verilog-inject-sense, verilog-read-inst-pins)
19528 (verilog-read-sub-decls, verilog-read-sub-decls-line):
19529 Fix mismatching parenthesis inside commented out code when deleting
19530 AUTOINST, bug383. Reported by Jonathan Greenlaw.
19531 (verilog-auto-ascii-enum): Fix AUTOASCIIENUM one-hot with
19532 non-numeric vector width. Reported by Alex Reed.
19533 (verilog-auto-ascii-enum): Add "onehot" option to work around not
19534 detecting signals with parameter widths. Reported by Alex Reed.
19535 (verilog-auto-delete-trailing-whitespace):
19536 With `verilog-auto-delete-trailing-whitespace' remove trailing
19537 whitespace in auto expansion, bug371. Reported by Brad Dobbie.
19538 (verilog-run-hooks, verilog-scan-cache-flush, verilog-syntax-ppss):
19539 Fix verilog-scan-cache corruption when running user AUTO expansion
19540 hooks that call indentation routines.
19541 (verilog-simplify-range-expression): Fix typo ignoring lower case
19542 identifiers.
19543 (verilog-delete-auto): Fix delete-autos to also remove user created
19544 automatics, as long as they start with AUTO.
19545 (verilog-batch-diff-auto, verilog-diff-auto)
19546 (verilog-diff-function): Add `verilog-diff-auto' and bind to
19547 "C-c?" to report differences in AUTO expansion, ignoring spaces.
19548 (verilog-backward-syntactic-ws-quick, verilog-beg-of-defun-quick)
19549 (verilog-in-paren-quick, verilog-re-search-backward-quick)
19550 (verilog-re-search-forward-quick, verilog-syntax-ppss):
19551 Fix calling `syntax-ppss' when inside auto expansions as the ppss hook
19552 is disabled and its cache will get corrupt, causing AUTOS not to
19553 expand. Instead use only -quick functions.
19554 (verilog-scan-region): Fix scanning over escaped quotes.
19555 (verilog-inside-comment-or-string-p, verilog-inside-comment-p)
19556 (verilog-re-search-backward-quick)
19557 (verilog-re-search-forward-quick, verilog-scan): verilog-scan and
19558 related functions now ignore strings, to fix misparsing of strings
19559 with magic comments embedded in them.
19560 (verilog-read-auto-template):
19561 Fix 'verilog-auto-inst-template-numbers' with extra newline before (.
19562 Reported by Brad Dobbie.
19563 (verilog-read-auto-template):
19564 Fix 'verilog-auto-inst-template-numbers' with comments.
19565 Reported by Brad Dobbie.
19566 (verilog-auto-inst, verilog-auto-inst-param)
19567 (verilog-auto-inst-sort): Add 'verilog-auto-inst-sort' to reduce
19568 merge conflicts with AUTOINST, bug358. Reported by Brad Dobbie.
19569 (verilog-auto-inst-template-numbers): Add 'lhs' policy for
19570 debugging templates without merge conflicts, bug357.
19571 Reported by Brad Dobbie.
19572 (verilog-read-auto-template):
19573 Fix verilog-auto-inst-template-numbers with multiple templates.
19574 Reported by Brad Dobbie.
19575 (verilog-define-abbrev): Fix verilog-mode abbrevs to be system
19576 abbrevs so user won't be asked to save.
19577 (verilog-read-auto-lisp-present): Fix to start at beginning of
19578 buffer in case called outside of verilog-auto.
19579 (verilog-simplify-range-expression): Fix AUTOWIRE expanding "X-1+1"
19580 to "X-2". Reported by Matthew Myers.
19581 (verilog-auto, verilog-auto-inout-in): Add AUTOINOUTIN for creating
19582 all inputs from module templates. Reported by Leith Johnson.
19583 (verilog-module-inside-filename-p): Fix locating programs as with
19584 modules.
19585 (verilog-auto-inst-port): Fix vl-width expressions when using
19586 verilog-auto-inst-param-value, bug331. Reported by Julian Gorfajn.
19587 (verilog-decls-get-regs, verilog-decls-get-signals,
19588 verilog-decls-get-vars, verilog-decls-get-wires, verilog-decls-new,
19589 verilog-modi-cache-add-vars, verilog-modi-cache-add-wires,
19590 verilog-read-decls): Combine reg and wire structures into one var
19591 structure to represent SystemVerilog concepts.
19592 (verilog-auto-ascii-enum, verilog-auto-logic, verilog-auto-reg)
19593 (verilog-auto-reg-input, verilog-auto-tieoff, verilog-auto-wire)
19594 (verilog-auto-wire-type, verilog-insert-definition):
19595 Add verilog-auto-wire-type and AUTOLOGIC to support using
19596 SystemVerilog "logic" keyword instead of "wire"/"reg".
19597 (verilog-auto-reg-input, verilog-decls-get-signals): Fix AUTOWIRE
19598 to declares outputs that also have assignments (presumably in an
19599 ifdef or generate if so there's not a driver conflict).
19600 Reported by Matthew Myers.
19601 (verilog-auto-declare-nettype, verilog-insert-definition):
19602 Add verilog-auto-declare-nettype to fix declarations using
19603 `default_nettype none. Reported by Julian Gorfajn.
19604 (verilog-read-always-signals-recurse, verilog-read-decls)
19605 (verilog-read-sub-decls-gate): Fix infinite loop with (*) and
19606 malformed end statement, bug325. Reported by Joshua Wise and
19607 Andrew Drake.
19608 (verilog-auto-star-safe, verilog-delete-auto-star-implicit)
19609 (verilog-inst-comment-re): Fix not deleting Interfaced comment
19610 when expanding .* in interfaces, bug320.
19611 Reported by Pierre-David Pfister.
19612 (verilog-read-module-name): Fix import statements between module
19613 name and open parenthesis, bug317.
19614 Reported by Pierre-David Pfister.
19615 (verilog-simplify-range-expression): Fix simplification of
19616 multiplications inside AUTOWIRE connections, bug303.
19617 (verilog-auto-inst-port): Support parameter expansion in
19618 multidimensional arrays.
19619 (verilog-read-decls): Fix AUTOREG etc looking for "endproperty"
19620 after "assert property". Reported by Julian Gorfajn.
19621 (verilog-simplify-range-expression): Fix "couldn't merge" errors
19622 with multiplication, bug303.
19623 (verilog-read-decls): Fix parsing of unsigned data types, bug302.
19624 Reported by Jan Frode Lonnum.
19625
19626 2011-11-30 Juanma Barranquero <lekktu@gmail.com>
19627
19628 * htmlfontify.el (hfy-page-header, hfy-post-html-hooks)
19629 (hfy-shell-file-name, hfy-shell):
19630 * international/fontset.el (x-decompose-font-name): Fix typos.
19631
19632 2011-11-29 Ken Brown <kbrown@cornell.edu>
19633
19634 * progmodes/gdb-mi.el: Fix bug#9853, bug#9858, and bug#9878.
19635 (gdb-version): Remove defvar.
19636 (gdb-supports-non-stop): New defvar, replacing `gdb-version'.
19637 (gdb-gud-context-command, gdb-non-stop-handler)
19638 (gdb-current-context-command, gdb-stopped): Use it.
19639 (gdb-init-1): Enable pretty printing here.
19640 (gdb-non-stop-handler): Don't enable pretty-printing here.
19641 Check to see if the target supports non-stop mode; if not, turn off
19642 non-stop mode. Use the following.
19643 (gdb-check-target-async): New defun.
19644 (gud-watch, gdb-stopped): Fix whitespace.
19645 (gdb-get-source-file): Don't try to display the source file if
19646 `gdb-main-file' is nil.
19647
19648 2011-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
19649
19650 * align.el: Try to generate fewer markers (bug#10047).
19651 (align--set-marker): New macro.
19652 (align-region): Use it.
19653
19654 2011-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
19655
19656 * isearch.el (isearch-yank-x-selection): Deactivate mark (bug#10022).
19657
19658 2011-11-29 Chong Yidong <cyd@gnu.org>
19659
19660 * indent.el (indent-for-tab-command, indent-according-to-mode):
19661 Doc fix.
19662 (indent-region): Doc fix. Switch nested ifs to equivalent cond.
19663
19664 2011-11-29 Michael Albinus <michael.albinus@gmx.de>
19665
19666 * vc/diff-mode.el (diff-find-file-name): Make `read-file-name'
19667 aware of remote file names. (Bug#10124)
19668
19669 2011-11-29 Chong Yidong <cyd@gnu.org>
19670
19671 * frame.el (auto-raise-mode, auto-lower-mode): Doc fix.
19672
19673 2011-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
19674
19675 * files.el (find-file): Don't use force-same-window (bug#10144).
19676 * window.el (switch-to-buffer): Better match Emacs-23 behavior and only
19677 use pop-to-buffer if the selected window can't be used.
19678 (pop-to-buffer-same-window): Use display-buffer--same-window-action.
19679
19680 2011-11-28 Eli Zaretskii <eliz@gnu.org>
19681
19682 * vc/diff-mode.el (diff-mode-map): Don't inherit 'z' => 'M-z' from
19683 special-mode-map.
19684
19685 2011-11-28 Chong Yidong <cyd@gnu.org>
19686
19687 * emacs-lisp/easy-mmode.el (define-minor-mode): Fix default doc.
19688
19689 2011-11-27 Nick Roberts <nickrob@snap.net.nz>
19690
19691 * progmodes/gdb-mi.el (gdb-init-1): Condition execution of
19692 gdb-get-source-file-list on gdb-create-source-file-list.
19693
19694 2011-11-26 Eli Zaretskii <eliz@gnu.org>
19695
19696 * whitespace.el (whitespace-newline): Use a different foreground
19697 color for 16-color light-background displays.
19698
19699 2011-11-24 Chong Yidong <cyd@gnu.org>
19700
19701 * window.el (display-buffer--special-action): Doc fix.
19702
19703 2011-11-25 Juanma Barranquero <lekktu@gmail.com>
19704
19705 * emacs-lisp/avl-tree.el (avl-tree--do-copy, avl-tree-create)
19706 (avl-tree-compare-function, avl-tree-empty, avl-tree-enter)
19707 (avl-tree-delete, avl-tree-member, avl-tree-member-p, avl-tree-map)
19708 (avl-tree-mapc, avl-tree-mapf, avl-tree-mapcar, avl-tree-copy)
19709 (avl-tree-clear, avl-tree-stack, avl-tree-stack-pop)
19710 (avl-tree-stack-first):
19711 * emacs-lisp/cconv.el (cconv--analyse-use):
19712 * net/gnutls.el (gnutls-negotiate): Fix typos.
19713
19714 2011-11-24 Glenn Morris <rgm@gnu.org>
19715
19716 * lpr.el (lpr-windows-system, lpr-lp-system):
19717 * mail/binhex.el (binhex-begin-line):
19718 * progmodes/grep.el (grep-history, grep-find-history):
19719 * textmodes/flyspell.el:
19720 * vc/pcvs-defs.el (cvs-global-menu):
19721 * vc/vc-bzr.el (vc-bzr-admin-checkout-format-file):
19722 * vc/vc-mtn.el (vc-mtn-admin-dir, vc-mtn-admin-format):
19723 * vc/vc-cvs.el (vc-cvs-registered): Give them basic doc-strings.
19724
19725 * net/tls.el: Fix case of "GnuTLS".
19726
19727 * paths.el (rmail-file-name): Format doc-string for make-docfile.
19728
19729 * version.el (emacs-build-system): Give it a doc-string.
19730
19731 2011-11-24 Juri Linkov <juri@jurta.org>
19732
19733 * view.el (view-buffer): Revert 2011-07-19T15:01:49Z!larsi@gnus.org from 2011-07-19 (bug#8615).
19734
19735 2011-11-24 Glenn Morris <rgm@gnu.org>
19736
19737 * mail/rmailmm.el (rmail-mime): When rmail-enable-mime is non-nil,
19738 if called on a non-mime message just toggle the headers. (Bug#8006)
19739
19740 2011-11-24 Juanma Barranquero <lekktu@gmail.com>
19741
19742 * allout.el (allout-setup, allout-auto-save-temporarily-disabled)
19743 (allout-lead-with-comment-string, allout-structure-deleted-hook)
19744 (allout-mode, allout-chart-subtree, allout-hotspot-key-handler)
19745 (allout-rebullet-heading, allout-open-sibtopic)
19746 (allout-toggle-current-subtree-encryption)
19747 (allout-toggle-subtree-encryption, allout-encrypt-string)
19748 (allout-next-topic-pending-encryption, allout-adjust-file-variable)
19749 (allout-distinctive-bullets-string, allout-auto-activation):
19750 * window.el (window-normalize-buffer-to-display):
19751 * progmodes/verilog-mode.el (verilog-batch-indent):
19752 * textmodes/bibtex.el (bibtex-field-braces-opt)
19753 (bibtex-field-strings-opt):
19754 * vc/cvs-status.el (cvs-tree-merge):
19755 Fix typos.
19756
19757 2011-11-23 Michael Albinus <michael.albinus@gmx.de>
19758
19759 * rfn-eshadow.el (rfn-eshadow-update-overlay): Let-bind
19760 `non-essential' to t, in order to avoid remote connections.
19761
19762 2011-11-23 Eli Zaretskii <eliz@gnu.org>
19763
19764 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
19765 On MS-DOS and MS-Windows, compare with loaddefs.el
19766 case-insensitively.
19767
19768 2011-11-23 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
19769
19770 * mail/unrmail.el (unrmail): Always add blank line. (Bug#7743)
19771
19772 2011-11-23 Glenn Morris <rgm@gnu.org>
19773
19774 * paths.el (rmail-file-name): Reformat the doc-string so that it
19775 is picked up.
19776
19777 * mail/rmail.el (rmail-message-filter, rmail-auto-file): Doc fixes.
19778 (rmail-auto-file): Ignore case in the "special" field names,
19779 as mail-fetch-field does for all others.
19780
19781 * mail/rmail.el (rmail-forward):
19782 * mail/rmailkwd.el (rmail-set-label):
19783 * mail/rmailout.el (rmail-output, rmail-output-as-seen)
19784 (rmail-output-body-to-file): Give error if no message. (Bug#10082)
19785
19786 * mail/rmail.el (rmail-current-message): Doc fix.
19787
19788 * mail/rmail.el (rmail-message-filter): Mark as obsolete. (Bug#2624)
19789
19790 2011-11-22 Stefan Monnier <monnier@iro.umontreal.ca>
19791
19792 * server.el (server-eval-and-print): Allow C-g (bug#6585).
19793
19794 2011-11-22 Glenn Morris <rgm@gnu.org>
19795
19796 * mail/rmailmm.el (test-rmail-mime-handler)
19797 (test-rmail-mime-bulk-handler)
19798 (test-rmail-mime-multipart-handler): Move tests to test/ directory.
19799
19800 2011-11-21 Juri Linkov <juri@jurta.org>
19801
19802 * calc/calc.el (calc-read-key-sequence):
19803 Let-bind `input-method-function' to nil. (Bug#10018)
19804
19805 2011-11-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
19806
19807 * emacs-lisp/cl-indent.el (common-lisp-loop-part-indentation):
19808 Tell the caller that the next line needs recomputation, even
19809 though it doesn't start a sexp (bug#10094).
19810
19811 2011-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
19812
19813 * emacs-lisp/autoload.el (autoload-generate-file-autoloads): Simplify.
19814
19815 2011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
19816
19817 * vc/pcvs-util.el (cvs-pop-to-buffer-same-frame):
19818 Use force-same-window.
19819
19820 2011-11-20 Juanma Barranquero <lekktu@gmail.com>
19821
19822 * descr-text.el (describe-char-unicode-data):
19823 * json.el (json-string-escape):
19824 * mail/footnote.el (footnote-unicode-string, footnote-unicode-regexp)
19825 (Footnote-unicode, Footnote-style-p):
19826 * net/ntlm.el (ntlm-get-password-hashes): Fix typos.
19827
19828 2011-11-20 Chong Yidong <cyd@gnu.org>
19829
19830 * window.el (replace-buffer-in-windows): Restore interactive spec.
19831
19832 2011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
19833
19834 * electric.el (electric-indent-mode): Fix last change (too optimistic).
19835
19836 * emacs-lisp/bytecomp.el: Silence obsolete warnings more reliably.
19837 (byte-compile-global-not-obsolete-vars): New var.
19838 (byte-compile-check-variable, byte-compile-make-obsolete-variable):
19839 Use it.
19840 (byte-compile-warn-obsolete): Align text with the one in *Help*.
19841
19842 2011-11-20 Juanma Barranquero <lekktu@gmail.com>
19843
19844 * progmodes/cwarn.el (cwarn-is-enabled, cwarn-font-lock-keywords):
19845 * progmodes/pascal.el (electric-pascal-equal):
19846 * textmodes/reftex-dcr.el (reftex-view-crossref-from-bibtex):
19847 * xml.el (xml-substitute-special): Fix typos.
19848
19849 2011-11-20 Glenn Morris <rgm@gnu.org>
19850
19851 * mail/rmail.el (rmail-enable-mime-composing): Make it a defcustom.
19852 (rmail-insert-mime-forwarded-message-function, rmail-mime-feature):
19853 Doc fixes.
19854 (rmail-decode-mime-charset): Mark as obsolete.
19855
19856 * mail/rmailsum.el (rmail-message-regexp-p-1):
19857 * mail/rmail.el (rmail-search-message, rmail-forward, rmail-resend):
19858 Before using mime functions, check they are set. (Bug#10077)
19859
19860 2011-11-19 Juri Linkov <juri@jurta.org>
19861
19862 * info.el (Info-finder-find-node): Use `package--builtins' instead
19863 of `package-alist'. Use node names formed by the pattern "Keyword "
19864 and the keyword name.
19865
19866 2011-11-19 Andreas Schwab <schwab@linux-m68k.org>
19867
19868 * progmodes/sh-script.el (sh-assignment-regexp): Add entry for bash.
19869
19870 2011-11-19 Juri Linkov <juri@jurta.org>
19871
19872 * info.el (Info-hide-note-references): Add `:set' tag to `defcustom'
19873 that calls `revert-buffer' on all Info buffers. (Bug#9915)
19874 (Info-revert-find-node): Remove let-bindings `old-buffer-name',
19875 `old-history', `old-history-forward'. Add let-binding
19876 `window-selected'. Remove calls to `kill-buffer',
19877 `switch-to-buffer' and `Info-mode'. Set `Info-current-file' to nil
19878 before calling `Info-find-node', so `Info-find-node-2' will reread
19879 the Info file. Restore window positions only when `window-selected'
19880 is non-nil.
19881
19882 2011-11-19 Juri Linkov <juri@jurta.org>
19883
19884 * isearch.el (isearch-lazy-highlight-new-loop):
19885 Remove condition `(not isearch-error)'. (Bug#9918)
19886
19887 * misearch.el (multi-isearch-search-fun): Add condition
19888 `(not bound)' to ignore lazy-highlighting search.
19889 Add the search-failed message "end of multi" when the end of
19890 multi-sequence is reached. Uncapitalize the search-failed
19891 message "Repeat for next buffer".
19892
19893 * info.el (Info-search): Add the search-failed message
19894 "end of the manual" when the end of the manual is reached
19895 in Isearch mode.
19896
19897 2011-11-19 Juri Linkov <juri@jurta.org>
19898
19899 * info.el (Info-find-node-2, Info-select-node, Info-history-find-node):
19900 Use non-destructive `remove' instead of `delete' because
19901 `Info-history-list' stored to `Info-isearch-initial-history-list' in
19902 `Info-isearch-start' might need to be restored in `Info-isearch-end'.
19903
19904 2011-11-19 Juri Linkov <juri@jurta.org>
19905
19906 * isearch.el (isearch-edit-string): Let-bind `history-add-new-input'
19907 to nil instead of binding `search-ring' and `regexp-search-ring'.
19908 (Bug#9185)
19909
19910 2011-11-19 Eli Zaretskii <eliz@gnu.org>
19911
19912 * simple.el (line-move): Force movement by logical lines for any
19913 hscrolled window, not only when auto-hscroll-mode is on.
19914 (line-move-visual): Update doc string to that effect. (Bug#10076)
19915
19916 2011-11-19 Andreas Schwab <schwab@linux-m68k.org>
19917
19918 * language/european.el (macintosh): Define as alias for mac-roman.
19919
19920 2011-11-19 Eli Zaretskii <eliz@gnu.org>
19921
19922 * mail/rmailmm.el (rmail-mime-display-header)
19923 (rmail-mime-display-tagline, rmail-mime-display-body): New defsubsts.
19924 (rmail-mime-entity-segment, rmail-mime-toggle-raw)
19925 (rmail-mime-toggle-hidden, rmail-mime-insert-text)
19926 (rmail-mime-insert-bulk, rmail-mime-insert-multipart)
19927 (rmail-mime-insert, rmail-mime-insert-tagline): Use them instead
19928 of a raw aref.
19929 (rmail-mime-entity-segment): To get past the tagline, move forward
19930 2 more lines, to account for the 2 empty lines that precede and
19931 follow the line with the buttons.
19932 (rmail-mime-update-tagline): Move one more line, to get past the
19933 empty line that follows the buttons in the tagline. (Bug#9520)
19934
19935 2011-11-19 Martin Rudalics <rudalics@gmx.at>
19936
19937 * window.el (window-max-delta-1, window-min-delta-1)
19938 (window-min-size-1, window-state-get-1, window-state-put-1)
19939 (window-state-put-2): Use "window--" prefix.
19940
19941 2011-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
19942
19943 * emacs-lisp/smie.el: Improve warnings and conflict detection.
19944 (smie-warning-count): New var.
19945 (smie-set-prec2tab): Use it.
19946 (smie-bnf->prec2): Improve warnings. Add docstring.
19947 (smie-bnf--closer-alist): Rename from smie-bnf-closer-alist.
19948 (smie-bnf--set-class): New function.
19949 (smie-bnf--classify): Rename from smie-bnf-classify. Rewrite to fix
19950 corner case.
19951
19952 * progmodes/compile.el: Obey compilation-first-column in dest buffer.
19953 (compilation-error-properties, compilation-move-to-column):
19954 Handle compilation-first-column while in the target buffer.
19955
19956 * progmodes/cc-engine.el (c-remove-stale-state-cache-backwards):
19957 Don't hardcode point-min==1.
19958
19959 * eshell/esh-cmd.el (eshell-do-eval): Handle `setq' (bug#9907).
19960 (eshell-rewrite-for-command): Remove workaround.
19961 (eshell-do-pipelines, eshell-do-pipelines-synchronously)
19962 (eshell-do-eval, eshell-exec-lisp): Avoid gratuitous setq.
19963 * eshell/esh-util.el (eshell-condition-case, eshell-for): Use declare.
19964
19965 * files-x.el (modify-file-local-variable): Obey commenting conventions.
19966
19967 2011-11-17 Glenn Morris <rgm@gnu.org>
19968
19969 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
19970 Ignore buffer-local generated-autoload-file if it is the same
19971 as the global value. (Bug#10049)
19972
19973 2011-11-17 Juanma Barranquero <lekktu@gmail.com>
19974
19975 * textmodes/reftex-toc.el (reftex-toc-return-marker, reftex-toc-help)
19976 (reftex-toc, reftex-toc, reftex-toc-dframe-p, reftex-toc-next-heading)
19977 (reftex-toc-previous-heading, reftex-toc-max-level)
19978 (reftex-toc-goto-line-and-hide, reftex-toc-show-calling-point)
19979 (reftex-toc-quit, reftex-toc-revert, reftex-toc-jump)
19980 (reftex-toc-do-promote, reftex-toc-promote-prepare)
19981 (reftex-toc-promote-action, reftex-toc-extract-section-number)
19982 (reftex-toc-load-all-files-for-promotion, reftex-toc-rename-label)
19983 (reftex-toc-rename-label, reftex-toc-visit-location)
19984 (reftex-toc-visit-location, reftex-toggle-auto-toc-recenter)
19985 (reftex-toggle-auto-toc-recenter, reftex-toggle-auto-toc-recenter)
19986 (reftex-make-separate-toc-frame): Fix typos, and use TOC consistently,
19987 leaving "*toc*" only for references to the buffer.
19988
19989 2011-11-17 Martin Rudalics <rudalics@gmx.at>
19990
19991 * window.el (window-resize, delete-window, split-window):
19992 Replace window-splits by window-combination-resize.
19993 * cus-start.el (window-splits): Replace by window-combination-resize.
19994
19995 2011-11-17 Glenn Morris <rgm@gnu.org>
19996
19997 * progmodes/sh-script.el (sh-font-lock-keywords-var):
19998 Make bash entry derive from sh entry, not shell entry.
19999
20000 2011-11-16 Michael Albinus <michael.albinus@gmx.de>
20001
20002 * net/tramp-sh.el (tramp-sh-handle-file-truename): Cache only the
20003 local file name.
20004
20005 2011-11-16 Juanma Barranquero <lekktu@gmail.com>
20006
20007 * menu-bar.el (menu-bar-file-menu):
20008 * printing.el (pr-ps-utility):
20009 * calendar/icalendar.el (icalendar, icalendar--convert-tz-offset)
20010 (icalendar--convert-to-ical, icalendar--convert-ordinary-to-ical)
20011 (icalendar--convert-weekly-to-ical, icalendar--convert-yearly-to-ical)
20012 (icalendar--convert-sexp-to-ical, icalendar--convert-block-to-ical)
20013 (icalendar--convert-float-to-ical, icalendar--convert-date-to-ical)
20014 (icalendar--convert-cyclic-to-ical)
20015 (icalendar--convert-anniversary-to-ical, icalendar-import-buffer)
20016 (icalendar--convert-ical-to-diary)
20017 (icalendar--convert-recurring-to-diary)
20018 (icalendar--convert-non-recurring-all-day-to-diary)
20019 (icalendar-import-format-sample):
20020 * progmodes/idlw-shell.el (idlwave-shell-mode):
20021 * progmodes/vhdl-mode.el (vhdl-mode, vhdl-print-two-column)
20022 (vhdl-print-customize-faces, vhdl-mode, vhdl-ps-print-settings)
20023 (vhdl-ps-print-init): Fix typos.
20024
20025 2011-11-16 Ken Manheimer <ken.manheimer@gmail.com>
20026
20027 * allout.el, allout-widgets.el (file metadata): Attribute copyright to
20028 FSF and collapse date sequence, obscure author/maintainer email address
20029 better, remove extra version line, track relocation of author's webpage.
20030
20031 * progmodes/python.el (python-pdbtrack-input-prompt)
20032 (python-pdbtrack-track-stack-file): Adjust to recognize ipdb as well as
20033 regular python pdb prompts. Adjustments shamelessly taken exactly as
20034 suggested in EmacsWiki page (tiny change):
20035 http://www.emacswiki.org/PythonProgrammingInEmacs#toc14
20036
20037 2011-11-16 Juanma Barranquero <lekktu@gmail.com>
20038
20039 * expand.el (expand-pos, expand-index, expand-point):
20040 Remove redundant info from docstring.
20041 (expand-add-abbrevs): Doc fix.
20042 (expand-c-sample-expand-list, expand-sample-lisp-mode-expand-list)
20043 (expand-sample-perl-mode-expand-list): Fix typos.
20044
20045 * net/dbus.el (dbus-event-member-name):
20046 * play/5x5.el (5x5-solve-rotate-left, 5x5-solver-output):
20047 * term/pc-win.el (msdos-create-frame-with-faces):
20048 * textmodes/texinfmt.el (texinfo-format-image): Fix typos.
20049
20050 2011-11-16 Martin Rudalics <rudalics@gmx.at>
20051
20052 * window.el (split-window, window-state-get-1)
20053 (window-state-put-1, window-state-put-2): Rename occurrences of
20054 window-nest to window-combination-limit.
20055 * cus-start.el (window-nest): Rename to window-combination-limit.
20056
20057 2011-11-16 Chong Yidong <cyd@gnu.org>
20058
20059 * progmodes/autoconf.el (autoconf-mode): Fix comment-start-skip
20060 regexp (Bug#10033).
20061
20062 2011-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
20063
20064 * tmm.el (tmm-prompt): Use minibuffer-with-setup-hook (bug#10053).
20065 `completing-read' will remove *Completions* and will preserve
20066 current-buffer for us.
20067 (tmm-add-prompt): Users of *Completions* will always (re)set its
20068 major mode.
20069 (tmm-old-comp-map): Remove.
20070
20071 2011-11-16 Glenn Morris <rgm@gnu.org>
20072
20073 * mail/rmailedit.el: Require rmailmm when compiling.
20074 (rmail-old-mime-state): New declaration.
20075 (rmail-edit-current-message): If editing a mime message,
20076 edit the "raw" message from the mbox buffer.
20077 (rmail-cease-edit): Handle mime messages. (Bug#9840)
20078
20079 2011-11-15 Glenn Morris <rgm@gnu.org>
20080
20081 * mail/rmailmm.el (rmail-mime-toggle-raw): Remove entity arg,
20082 which wasn't being used. Add optional arg to force given state.
20083 (rmail-mime): Add optional arg to force given state.
20084
20085 2011-11-15 Juanma Barranquero <lekktu@gmail.com>
20086
20087 * allout.el (allout-encryption-plaintext-sanitization-regexps):
20088 * frame.el (display-mm-dimensions-alist):
20089 * outline.el (outline-mode-menu-bar-map, outline-move-subtree-up)
20090 (outline-move-subtree-down):
20091 * net/newst-treeview.el (newsticker--treeview-do-get-node-of-feed)
20092 (newsticker--treeview-do-get-node):
20093 * net/quickurl.el (quickurl-list-buffer-name):
20094 * progmodes/dcl-mode.el (dcl-mode):
20095 * progmodes/gdb-mi.el (gdb-mapcar*):
20096 * progmodes/sql.el (sql-mode-oracle-font-lock-keywords): Fix typos.
20097
20098 2011-11-15 Glenn Morris <rgm@gnu.org>
20099
20100 * mail/rmail.el (rmail-file-coding-system): It's only ever used
20101 in a boolean sense, so just make it a boolean, and fix the doc.
20102 (rmail-show-mime-function, rmail-mime-feature)
20103 (rmail-require-mime-maybe): Doc fixes.
20104 (rmail-show-message-1): Check rmail-show-mime-function is non-nil.
20105
20106 * mail/rmailmm.el (rmail-show-mime): Doc fix.
20107
20108 2011-11-15 Juanma Barranquero <lekktu@gmail.com>
20109
20110 * epg.el (epg-start-decrypt, epg-start-verify, epg-start-sign)
20111 (epg-start-encrypt, epg-start-export-keys, epg-start-import-keys)
20112 (epg-start-receive-keys, epg-start-delete-keys, epg-start-sign-keys)
20113 (epg-start-generate-key, epg-context-set-progress-callback): Fix typos.
20114
20115 2011-11-15 Glenn Morris <rgm@gnu.org>
20116
20117 * mail/rmailmm.el (rmail-mime-entity, rmail-mime-entity-segment)
20118 (rmail-mime-shown-mode, rmail-mime-hidden-mode, rmail-mime-raw-mode)
20119 (rmail-mime-toggle-hidden, rmail-mime-insert-tagline)
20120 (rmail-mime-insert-header, rmail-mime-handle, rmail-mime-parse)
20121 (rmail-mime, rmail-show-mime): Doc fixes.
20122
20123 * term/ns-win.el (mode-line-frame-identification):
20124 Leave it alone. (Bug#10051)
20125
20126 * simple.el (mark-whole-buffer): Doc fix. (Bug#10023)
20127
20128 * mail/rmailout.el (rmail-output-to-rmail-buffer):
20129 Handle empty buffers. (Bug#9978)
20130
20131 2011-11-14 Juanma Barranquero <lekktu@gmail.com>
20132
20133 * international/mule.el (define-charset):
20134 * mail/rmailmm.el (rmail-mime-find-header-encoding):
20135 * progmodes/prolog.el (prolog-mode-hook, prolog-inferior-mode-hook):
20136 * progmodes/verilog-mode.el (verilog-backward-token):
20137 * textmodes/ispell.el (lookup-words):
20138 * textmodes/sgml-mode.el (sgml-guess-indent): Fix typos.
20139
20140 2011-11-14 Glenn Morris <rgm@gnu.org>
20141
20142 * progmodes/executable.el
20143 (executable-make-buffer-file-executable-if-script-p):
20144 Handle file-modes returning nil.
20145
20146 * mail/rmailsum.el (rmail-summary): Remove movement to beginning of
20147 message - not necessary, and causes problems. (Bug#9831)
20148
20149 * mail/rmailsum.el (rmail-new-summary): Preserve message number.
20150
20151 * mail/rmail.el (rmail-no-mail-p): Remove mode-line N/M indicator.
20152
20153 * mail/rmailsum.el (rmail-summary, rmail-new-summary)
20154 (rmail-new-summary-1): Allow empty summaries. (Bug#9964)
20155 (rmail-new-summary): Remember that rmail-summary-buffer is buffer-local.
20156
20157 2011-11-12 Martin Rudalics <rudalics@gmx.at>
20158
20159 * window.el (window-resize, delete-window): Use window-splits
20160 variable instead of function.
20161 (window-state-get-1, window-state-put-2, window-state-put):
20162 Don't deal with windows' splits status.
20163
20164 2011-11-12 Glenn Morris <rgm@gnu.org>
20165
20166 * apropos.el (apropos-do-all, apropos-library, apropos-value)
20167 (apropos-documentation): Doc fixes.
20168
20169 2011-11-11 Juanma Barranquero <lekktu@gmail.com>
20170
20171 * progmodes/idlw-shell.el (idlwave-shell-make-new-bp-overlay):
20172 * textmodes/sgml-mode.el (html-tag-help): Fix typos.
20173
20174 2011-11-11 Stefan Monnier <monnier@iro.umontreal.ca>
20175
20176 * electric.el (electric-indent-post-self-insert-function): Make it
20177 possible for a char to only indent in some circumstances.
20178 (electric-indent-mode): Simplify.
20179
20180 2011-11-11 Martin Rudalics <rudalics@gmx.at>
20181
20182 * window.el (windows-with-parameter): Remove unused function.
20183 (windows-at-side): Rename to window-at-side-list.
20184 (window-check, window-atom-check, window-atom-check-1)
20185 (window-side-check, window-size-ignore, window-size-fixed-1)
20186 (window-in-direction-2): Prefix with "window--".
20187 (window-tree-1): Rename to window--subtree, fix doc-string.
20188
20189 2011-11-11 Glenn Morris <rgm@gnu.org>
20190
20191 * subr.el (eval-after-load): If FILE is already loaded,
20192 evaluate FORM before it gets wrapped in more stuff. (Bug#10009)
20193
20194 2011-11-10 Glenn Morris <rgm@gnu.org>
20195
20196 * vc/vc-svn.el (vc-svn-create-repo, vc-svn-modify-change-comment):
20197 Call svn via vc-svn-command rather than vc-do-command.
20198 (vc-svn-command): Add --non-interactive. (Bug#9993)
20199 (vc-svn-update, vc-svn-merge-news): No need for --non-interactive.
20200
20201 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
20202 Add toggle-read-only. (Bug#7292)
20203 * files.el (toggle-read-only): Mention that it should only
20204 be used interactively. (Bug#10006)
20205
20206 2011-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
20207
20208 * progmodes/compile.el (compilation-error-regexp-alist-alist):
20209 Adjust regexp for OCaml warnings.
20210
20211 * electric.el (electric-pair-post-self-insert-function): Let user
20212 turn it off buffer-locally (bug#9932).
20213
20214 * progmodes/python.el (python-beginning-of-statement):
20215 Rewrite (bug#2703).
20216
20217 * progmodes/compile.el: Better handle TABs (bug#9749).
20218 (compilation-internal-error-properties)
20219 (compilation-next-error-function): Obey the target buffer's
20220 compilation-error-screen-columns.
20221
20222 2011-11-09 Juanma Barranquero <lekktu@gmail.com>
20223
20224 * progmodes/meta-mode.el: Remove obsolete comments.
20225 (meta-right-comment-regexp, meta-ignore-comment-regexp):
20226 Fix typos in docstrings.
20227
20228 2011-11-09 Martin Rudalics <rudalics@gmx.at>
20229
20230 * window.el (window-size-fixed-p): Rewrite doc-string.
20231 (window-resizable-p): Rename to window--resizable-p. Update callers.
20232 (window--resizable): New function. Make all callers of
20233 window-resizable call window--resizable instead.
20234 (window-resizable): Rewrite in terms of window--resizable.
20235
20236 2011-11-08 Glenn Morris <rgm@gnu.org>
20237
20238 * progmodes/delphi.el (delphi-mode-syntax-table):
20239 Let define-derived-mode define a proper syntax table. (Bug#9994)
20240
20241 2011-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
20242
20243 * window.el: Stay away from defsubst.
20244 (window-list-no-nils): Remove.
20245 (window-state-get-1, window-state-get): Use backquote instead.
20246
20247 2011-11-08 Thierry Volpiatto <thierry.volpiatto@gmail.com>
20248
20249 * emacs-lisp/find-func.el (find-function-read):
20250 Fix incorrect use of default argument in `completing-read'.
20251
20252 2011-11-08 Martin Rudalics <rudalics@gmx.at>
20253
20254 * window.el (display-buffer-function, special-display-function):
20255 Mention display-buffer-record-window but do not mention
20256 help-setup parameter in doc-strings.
20257 (window-min-delta): Fix doc-string typo.
20258
20259 2011-11-08 Chong Yidong <cyd@gnu.org>
20260
20261 * window.el (window-total-height, window-total-width): Doc fix.
20262 (window-body-size): Move from C.
20263 (window-body-height, window-body-width): Move to C.
20264
20265 2011-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
20266
20267 * window.el: Make special-display like display-buffer-alist (bug#9532).
20268 (display-buffer--special-action): New function, morphed
20269 from display-buffer--special.
20270 (display-buffer): Use it to handle special-display-buffers at higher
20271 priority (just after display-buffer-alist).
20272 (display-buffer-fallback-action, display-buffer--other-frame-action)
20273 (pop-to-buffer-same-window): Remove display-buffer--special.
20274
20275 2011-11-07 Glenn Morris <rgm@gnu.org>
20276
20277 * calendar/cal-menu.el (cal-menu-set-date-title):
20278 Do nothing if not in a calendar. (Bug#9976)
20279
20280 2011-11-07 Stefan Monnier <monnier@iro.umontreal.ca>
20281
20282 * files.el (find-file): Always use selected-window.
20283
20284 2011-11-07 Martin Rudalics <rudalics@gmx.at>
20285
20286 * window.el (window-combinations): Make WINDOW argument
20287 mandatory. Rewrite doc-string.
20288 (walk-window-subtree, window-atom-check, window-min-delta)
20289 (window-max-delta, window--resize-this-window)
20290 (window--resize-root-window-vertically, window-tree)
20291 (balance-windows, window-state-put): Rewrite doc-strings as to
20292 not mention the term "subwindow".
20293 (window--resize-subwindows-skip-p): Rename to
20294 window--resize-child-windows-skip-p.
20295 (window--resize-subwindows-normal): Rename to
20296 window--resize-child-windows-normal.
20297 (window--resize-subwindows): Rename to
20298 window--resize-child-windows.
20299 (window-or-subwindow-p): Rename to window--in-subtree-p.
20300
20301 2011-11-07 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
20302
20303 * mail/rmail.el (rmail-get-new-mail, rmail-insert-inbox-text):
20304 Ensure that mbox format messages end in two newlines (Bug#9974).
20305
20306 2011-11-06 Chong Yidong <cyd@gnu.org>
20307
20308 * window.el (window-combination-p): Function deleted; its
20309 side-effect is not used in any existing code.
20310 (window-combinations, window-combined-p): Call window-*-child
20311 directly.
20312
20313 2011-11-05 Chong Yidong <cyd@gnu.org>
20314
20315 * window.el (window-valid-p): Rename from window-any-p.
20316 (window-size-ignore, window-state-get): Callers changed.
20317 (window-normalize-window): Rename from window-normalize-any-window.
20318 New arg LIVE-ONLY, replacing window-normalize-live-window.
20319 (window-normalize-live-window): Delete.
20320 (window-combination-p, window-combined-p, window-combinations)
20321 (walk-window-subtree, window-atom-root, window-min-size)
20322 (window-sizable, window-sizable-p, window-size-fixed-p)
20323 (window-min-delta, window-max-delta, window-resizable)
20324 (window-resizable-p, window-full-height-p, window-full-width-p)
20325 (window-current-scroll-bars, window-point-1, set-window-point-1)
20326 (window-at-side-p, window-in-direction, window-resize)
20327 (adjust-window-trailing-edge, maximize-window, minimize-window)
20328 (window-deletable-p, delete-window, delete-other-windows)
20329 (record-window-buffer, unrecord-window-buffer)
20330 (switch-to-prev-buffer, switch-to-next-buffer, window--delete)
20331 (quit-window, split-window, window-state-put)
20332 (set-window-text-height, fit-window-to-buffer)
20333 (shrink-window-if-larger-than-buffer): Callers changed.
20334
20335 2011-11-04 Eli Zaretskii <eliz@gnu.org>
20336
20337 * mail/rmail.el (rmail-simplified-subject): Decode subject with
20338 rfc2047-decode-string.
20339 (rmail-mime-toggle-hidden): Declare to avoid byte-compilation
20340 warnings.
20341
20342 * window.el (window-body-height, window-body-width): Mention in
20343 the doc string that the return values are in frame's canonical
20344 units. (Bug#9949)
20345
20346 2011-11-03 Alan Mackenzie <acm@muc.de>
20347
20348 * progmodes/cc-langs.el (c-nonlabel-token-2-key): New variable for
20349 change in cc-engine.el.
20350
20351 2011-11-02 Stefan Monnier <monnier@iro.umontreal.ca>
20352
20353 * window.el (switch-to-buffer): Use `force-same-window' interactively.
20354
20355 2011-11-02 Martin Rudalics <rudalics@gmx.at>
20356
20357 * window.el (quit-window): Call unrecord-window-buffer after
20358 showing another buffer in the window. (Bug#9937)
20359 (bury-buffer): Call switch-to-prev-buffer with second argument `bury'.
20360
20361 2011-11-02 Juanma Barranquero <lekktu@gmail.com>
20362
20363 * vc/vc-bzr.el (vc-bzr-state, vc-bzr-after-dir-status):
20364 Accept status with more than 9 shelves. (Bug#9935)
20365 Reported by Colin D Bennett <colin@gibibit.com>.
20366
20367 2011-11-01 Martin Rudalics <rudalics@gmx.at>
20368
20369 * help.el (with-help-window): Don't reference
20370 temp-buffer-show-specifiers in doc-string.
20371
20372 2011-10-31 Andreas Schwab <schwab@linux-m68k.org>
20373
20374 * subr.el (keymap--menu-item-with-binding): Ignore item if not a
20375 menu-item.
20376
20377 2011-10-30 Vinicius Jose Latorre <viniciusjl@ig.com.br>
20378
20379 * whitespace.el: New version 13.2.2.
20380 (whitespace-newline-mode): Disable properly. Reported by Sarah
20381 <EmacsWiki>.
20382
20383 2011-10-30 Ulf Jasper <ulf.jasper@web.de>
20384
20385 * net/newst-treeview.el: Remove "Time-stamp".
20386 (newsticker--group-manage-orphan-feeds): Do not call
20387 newsticker--treeview-tree-update.
20388 (newsticker-treeview-update, newsticker-treeview):
20389 Call newsticker--treeview-tree-update if necessary.
20390
20391 2011-10-30 Martin Rudalics <rudalics@gmx.at>
20392
20393 * window.el (window-iso-combination-p, window-iso-combined-p)
20394 (window-iso-combinations): Remove "iso-" infix.
20395 Suggested by Chong Yidong.
20396 (window-min-size-1, window-size-fixed-1, window-min-delta-1)
20397 (window-max-delta-1, window-resize, window--resize-siblings)
20398 (window--resize-this-window, adjust-window-trailing-edge)
20399 (split-window, balance-windows-1)
20400 (shrink-window-if-larger-than-buffer):
20401 * calendar/calendar.el (calendar-generate-window):
20402 * help.el (resize-temp-buffer-window): Adjust callers accordingly.
20403
20404 2011-10-30 Stefan Monnier <monnier@iro.umontreal.ca>
20405
20406 * eshell/esh-cmd.el (eshell-rewrite-for-command): Don't modify the list
20407 in place (bug#9907).
20408 (eshell-subcommand-arg-values, eshell-rewrite-named-command)
20409 (eshell-rewrite-if-command, eshell-rewrite-for-command)
20410 (eshell-structure-basic-command, eshell-rewrite-while-command)
20411 (eshell-invokify-arg, eshell-parse-pipeline, eshell-parse-command)
20412 (eshell-parse-subcommand-argument, eshell-parse-lisp-argument)
20413 (eshell-trap-errors, eshell-do-pipelines, eshell-do-eval)
20414 (eshell-do-pipelines-synchronously, eshell-eval-command):
20415 Use backquotes and prefer setq to set.
20416 (eshell-lookup-function, function-p-func, eshell-functionp): Remove.
20417 (eshell-macrop): Use functionp.
20418 (eshell-do-eval): Handle multiple expressions in `while' body.
20419
20420 2011-10-30 Chong Yidong <cyd@gnu.org>
20421
20422 * emulation/viper-cmd.el (viper-exec-change): Use push-mark
20423 instead of set-mark (Bug#9810).
20424
20425 2011-10-30 Chong Yidong <cyd@gnu.org>
20426
20427 * window.el (split-window-below, split-window-right): Rename from
20428 split-window-above-each-other and split-window-side-by-side
20429 respectively. All callers changed.
20430 (split-window-sensibly, split-window-sensibly): Use them.
20431 (split-window-keep-point): Doc fix.
20432
20433 * isearch.el: Add isearch-scroll property to split-window-below
20434 and split-window-right.
20435
20436 * follow.el (follow-mode):
20437 * vc/pcvs-util.el (cvs-pop-to-buffer-same-frame):
20438 * progmodes/ada-xref.el (ada-gdb-application):
20439 * emulation/vip.el (vip-buffer-in-two-windows):
20440 * image-dired.el (image-dired-dired-with-window-configuration):
20441 * dired-x.el (dired-do-find-marked-files):
20442 * dired.el (dired-pop-to-buffer):
20443 * bs.el (bs--show-with-configuration):
20444 * vc/emerge.el (emerge-setup-windows):
20445 * textmodes/two-column.el (2C-two-columns):
20446 * textmodes/reftex-toc.el (reftex-toc):
20447 * progmodes/gdb-mi.el (gdb-setup-windows):
20448 * progmodes/fortran.el (fortran-window-create):
20449 * net/newst-treeview.el (newsticker--treeview-window-init):
20450 * emulation/ws-mode.el (wordstar-C-o-map, wordstar-mode):
20451 * emulation/tpu-edt.el (tpu-gold-map):
20452 * emulation/crisp.el (crisp-mode-map):
20453 * calendar/calendar.el (calendar-basic-setup): Callers changed.
20454
20455 2011-10-29 Chong Yidong <cyd@gnu.org>
20456
20457 * subr.el (y-or-n-p): Add code for batch mode (Bug#9818).
20458
20459 * mouse.el (mouse-yank-primary): Push the mark (Bug#9894).
20460
20461 * textmodes/flyspell.el (flyspell-word): Fix char offset for
20462 forged Ispell output (Bug#7904).
20463
20464 * emacs-lisp/package.el (package-refresh-contents): Add autoload.
20465
20466 2011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
20467
20468 * doc-view.el: Avoid ugly errors about not finding nil.
20469 (doc-view-ghostscript-program, doc-view-dvipdfm-program)
20470 (doc-view-dvipdf-program, doc-view-unoconv-program)
20471 (doc-view-ps2pdf-program, doc-view-pdftotext-program):
20472 Avoid nil or absolute file name as default value.
20473 (doc-view-pdf->txt, doc-view-ps->pdf): Use executable-find here.
20474
20475 2011-10-28 Alan Mackenzie <acm@muc.de>
20476
20477 * progmodes/cc-defs.el (c-version): -> 5.32.2.
20478
20479 2011-10-28 Alan Mackenzie <acm@muc.de>
20480
20481 Amend the handling of c-beginning/end-of-defun in nested declaration
20482 scopes.
20483
20484 * progmodes/cc-vars.el (c-defun-tactic): Move here from
20485 cc-langs.el. Change it to a defcustom.
20486
20487 * progmodes/cc-langs.el (c-defun-tactic): Move this variable to
20488 cc-vars.el.
20489
20490 * progmodes/cc-engine.el (c-beginning-of-statement-1):
20491 Prevent "class foo : bar" being spuriously recognized as a label.
20492
20493 * progmodes/cc-cmds.el (c-narrow-to-most-enclosing-decl-block):
20494 Add parameter `inclusive' (to include enclosing braces in the region).
20495 (c-widen-to-enclosing-decl-scope): New function.
20496 (c-while-widening-to-decl-block): New macro.
20497 (c-beginning-of-defun, c-end-of-defun): Change algorithm to keep going
20498 outward for defun boundaries, and correspondingly change symbol
20499 `respect-enclosure' to `go-outward'.
20500 (c-declaration-limits): Change algorithm to report only the "innermost"
20501 defun's boundaries.
20502
20503 2011-10-28 Deniz Dogan <deniz@dogan.se>
20504
20505 * net/rcirc.el (rcirc-mode): Use hard newlines.
20506
20507 2011-10-28 Alan Mackenzie <acm@muc.de>
20508
20509 Amend to indent and fontify macros "which include their own semicolon"
20510 correctly, using the "virtual semicolon" mechanism.
20511
20512 * progmodes/cc-defs.el: Update "virtual semicolon" comments.
20513
20514 * progmodes/cc-engine.el (c-crosses-statement-barrier-p):
20515 Recode to scan one line at a time rather than having \n and \r
20516 explicitly in c-stmt-delim-chars (for some modes, e.g. AWK).
20517 (c-forward-label): Amend for virtual semicolons.
20518 (c-at-macro-vsemi-p, c-macro-vsemi-status-unknown-p): New functions.
20519
20520 * progmodes/cc-fonts.el (c-font-lock-declarations): Take account
20521 of the new C macros.
20522
20523 * progmodes/cc-langs.el (c-at-vsemi-p-fn):
20524 (c-vsemi-status-unknown-p-fn): Move to earlier in the file.
20525 (c-opt-cpp-symbol, c-line-comment-start-regexp): New language vars.
20526 (c-opt-cpp-macro-define): Make into a full language variable.
20527 (c-stmt-delim-chars, c-stmt-delim-chars-with-comma): Special value for
20528 AWK Mode (including \n, \r) removed, no longer needed.
20529
20530 * progmodes/cc-mode.el (c-mode, c++-mode, objc-mode):
20531 Invoke c-make-macro-with-semi-re.
20532
20533 * progmodes/cc-vars.el (c-macro-with-semi-re):
20534 (c-macro-names-with-semicolon): New variables.
20535 (c-make-macro-with-semi-re): New function.
20536
20537 2011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
20538
20539 * vc/log-edit.el: Fill empty field rather than adding new one.
20540 (log-edit-add-field): New function.
20541 (log-edit-insert-changelog): Use it.
20542
20543 2011-10-28 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
20544
20545 * mail/rmail.el (rmail-mode-map): Add M-C-f as in rmailsum (bug#9802).
20546
20547 2011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
20548
20549 * progmodes/gdb-mi.el: Warn the user when -i=mi is missing.
20550 (gdb--check-interpreter): New function.
20551 (gdb): Use it.
20552
20553 2011-10-27 Glenn Morris <rgm@gnu.org>
20554
20555 * emacs-lisp/cl-extra.el (most-positive-float, most-negative-float)
20556 (least-positive-float, least-negative-float)
20557 (least-positive-normalized-float, least-negative-normalized-float)
20558 (float-epsilon, float-negative-epsilon):
20559 Remove unnecessary declarations.
20560
20561 * emacs-lisp/cl-extra.el (cl-float-limits): Add doc string.
20562 * emacs-lisp/cl.el (most-positive-float, most-negative-float)
20563 (least-positive-float, least-negative-float)
20564 (least-positive-normalized-float, least-negative-normalized-float)
20565 (float-epsilon, float-negative-epsilon): Add doc-strings,
20566 based on those in cl.texi.
20567
20568 * files.el (set-visited-file-name): If the major-mode changed,
20569 reload the local variables. (Bug#9796)
20570
20571 2011-10-27 Chong Yidong <cyd@gnu.org>
20572
20573 * subr.el (change-major-mode-after-body-hook): New hook.
20574 (run-mode-hooks): Run it.
20575
20576 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
20577 Use change-major-mode-before-body-hook.
20578
20579 * simple.el (fundamental-mode):
20580 * emacs-lisp/derived.el (define-derived-mode): Revert 2010-04-28
20581 change introducing fundamental-mode-hook.
20582
20583 2011-10-26 Juanma Barranquero <lekktu@gmail.com>
20584
20585 * term/w32-win.el (w32-default-color-map): Declare obsolete (Bug#9785).
20586
20587 2011-10-26 Michael Albinus <michael.albinus@gmx.de>
20588
20589 * ido.el (ido-file-name-all-completions-1): Do not require
20590 tramp.el explicitly. (Bug#7583)
20591
20592 2011-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
20593
20594 * progmodes/octave-mod.el:
20595 * progmodes/octave-inf.el: Update maintainer.
20596
20597 2011-10-26 Chong Yidong <cyd@gnu.org>
20598
20599 * subr.el (with-wrapper-hook): Rewrite doc.
20600
20601 2011-10-25 Michael Albinus <michael.albinus@gmx.de>
20602
20603 * net/tramp-sh.el (tramp-sh-handle-file-directory-p): Return t for
20604 filenames "/method:foo:". (Bug#9793)
20605
20606 2011-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
20607
20608 * comint.el (comint-get-old-input-default): Fix use-prompt-regexp case
20609 (bug#9865).
20610
20611 2011-10-24 Glenn Morris <rgm@gnu.org>
20612
20613 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix. (Bug#9819)
20614
20615 2011-10-24 Michael Albinus <michael.albinus@gmx.de>
20616
20617 * notifications.el: Add the requirement of a running D-Bus session
20618 bus to the Commentary.
20619
20620 2011-10-24 Juri Linkov <juri@jurta.org>
20621
20622 * isearch.el (isearch-occur): Let-bind `search-spaces-regexp' to
20623 `search-whitespace-regexp' only when `isearch-regexp' is non-nil.
20624 (Bug#9364)
20625
20626 2011-10-24 Juri Linkov <juri@jurta.org>
20627
20628 * info.el (Info-following-node-name-re): Add newline to the list
20629 of allowed characters for leading space. (Bug#9824)
20630
20631 2011-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
20632
20633 * progmodes/octave-inf.el (inferior-octave-mode-map):
20634 Fix C-c C-h binding.
20635 * progmodes/octave-mod.el (octave-help): Remove.
20636
20637 2011-10-23 Michael Albinus <michael.albinus@gmx.de>
20638
20639 Sync with Tramp 2.2.3.
20640
20641 * net/tramp-cache.el (top): Pacify byte-compiler using
20642 `init-file-user' and `site-run-file'.
20643
20644 * net/trampver.el: Update release number.
20645
20646 2011-10-23 Chong Yidong <cyd@gnu.org>
20647
20648 * files.el (toggle-read-only): Remove obsolete comment about
20649 version control.
20650
20651 * vc/vc-hooks.el (vc-toggle-read-only): Make it an obsolete alias
20652 for toggle-read-only. Note that this hasn't called vc-next-action
20653 since 2008-05-02, though it wasn't documented at the time.
20654
20655 * vc/ediff-init.el (ediff-toggle-read-only-function):
20656 Use toggle-read-only.
20657
20658 2011-10-22 Alan Mackenzie <bug-cc-mode@gnu.org>
20659
20660 Fix bug #9560, sporadic wrong indentation; improve instrumentation
20661 of c-parse-state.
20662
20663 * progmodes/cc-engine.el (c-append-lower-brace-pair-to-state-cache):
20664 correct faulty logical expression.
20665 (c-parse-state-state, c-record-parse-state-state):
20666 (c-replay-parse-state-state): New defvar/defuns.
20667 (c-debug-parse-state): Use new functions.
20668
20669 2011-10-22 Martin Rudalics <rudalics@gmx.at>
20670
20671 * mouse.el (mouse-drag-line): Fix minibuffer resizing broken by
20672 last fix. Use window-in-direction correctly.
20673
20674 2011-10-21 Chong Yidong <cyd@gnu.org>
20675
20676 * progmodes/idlwave.el (idlwave-mode):
20677 * progmodes/vera-mode.el (vera-mode): No need to set
20678 require-final-newline; that's done in prog-mode.
20679 Suggested by Stefan Monnier.
20680
20681 2011-10-21 Martin Rudalics <rudalics@gmx.at>
20682
20683 * mouse.el (mouse-drag-window-above)
20684 (mouse-drag-move-window-bottom, mouse-drag-move-window-top)
20685 (mouse-drag-mode-line-1, mouse-drag-header-line)
20686 (mouse-drag-vertical-line-rightward-window): Remove.
20687 (mouse-drag-line): New function.
20688 (mouse-drag-mode-line, mouse-drag-header-line)
20689 (mouse-drag-vertical-line): Call mouse-drag-line.
20690 * window.el (window-at-side-p, windows-at-side): New functions.
20691
20692 2011-10-21 Ulrich Mueller <ulm@gentoo.org>
20693
20694 * tar-mode.el (tar-grind-file-mode):
20695 Fix handling of setuid/setgid, handle sticky bit. (Bug#9817)
20696
20697 2011-10-21 Chong Yidong <cyd@gnu.org>
20698
20699 * progmodes/idlwave.el (idlwave-mode):
20700 * progmodes/vera-mode.el (vera-mode):
20701 Use mode-require-final-newline.
20702
20703 2011-10-20 Glenn Morris <rgm@gnu.org>
20704
20705 * vc/vc.el (vc-next-action): Handle removed directories. (Bug#9781)
20706
20707 2011-10-20 Christoph Scholtes <cschol2112@googlemail.com>
20708
20709 * emulation/cua-base.el (cua-set-mark): Fix case of string.
20710
20711 2011-10-20 Chong Yidong <cyd@gnu.org>
20712
20713 * emulation/cua-base.el (cua-mode):
20714 * mail/footnote.el (footnote-mode):
20715 * mail/mailabbrev.el (mail-abbrevs-mode):
20716 * net/xesam.el (xesam-minor-mode):
20717 * progmodes/bug-reference.el (bug-reference-mode):
20718 * progmodes/cap-words.el (capitalized-words-mode):
20719 * progmodes/compile.el (compilation-minor-mode)
20720 (compilation-shell-minor-mode):
20721 * progmodes/gud.el (gud-tooltip-mode):
20722 * progmodes/hideif.el (hide-ifdef-mode):
20723 * progmodes/idlw-shell.el (idlwave-shell-electric-debug-mode):
20724 * progmodes/subword.el (subword-mode):
20725 * progmodes/vhdl-mode.el (vhdl-electric-mode, vhdl-stutter-mode):
20726 * progmodes/which-func.el (which-function-mode):
20727 * term/tvi970.el (tvi970-set-keypad-mode):
20728 * term/vt100.el (vt100-wide-mode):
20729 * textmodes/flyspell.el (flyspell-mode):
20730 * textmodes/ispell.el (ispell-minor-mode):
20731 * textmodes/nroff-mode.el (nroff-electric-mode):
20732 * textmodes/paragraphs.el (use-hard-newlines):
20733 * textmodes/refill.el (refill-mode):
20734 * textmodes/reftex.el (reftex-mode):
20735 * textmodes/rst.el (rst-minor-mode):
20736 * textmodes/sgml-mode.el (html-autoview-mode)
20737 (sgml-electric-tag-pair-mode):
20738 * textmodes/tex-mode.el (latex-electric-env-pair-mode):
20739 * vc/diff-mode.el (diff-auto-refine-mode, diff-minor-mode):
20740 * emulation/crisp.el (crisp-mode):
20741 * emacs-lisp/eldoc.el (eldoc-mode):
20742 * emacs-lisp/checkdoc.el (checkdoc-minor-mode): Doc fixes for new
20743 minor mode behavior.
20744
20745 2011-10-19 Juri Linkov <juri@jurta.org>
20746
20747 * descr-text.el (describe-char): Add #x2010 and #x2011 to
20748 the list of hard-coded chars with escape-glyph face.
20749
20750 2011-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
20751
20752 * vc/log-edit.el (log-edit-empty-buffer-p): Ignore empty headers.
20753
20754 2011-10-19 Michael Albinus <michael.albinus@gmx.de>
20755
20756 * net/tramp.el (tramp-connectable-p): Make a stronger check on a
20757 running process.
20758
20759 2011-10-19 Glenn Morris <rgm@gnu.org>
20760
20761 * vc/vc-bzr.el (vc-bzr-after-dir-status):
20762 Ignore ignored files. (Bug#9726)
20763
20764 2011-10-19 Chong Yidong <cyd@gnu.org>
20765
20766 Doc fix for minor modes, stating that an omitted argument enables
20767 the mode unconditionally when called from Lisp.
20768
20769 * abbrev.el (abbrev-mode):
20770 * allout.el (allout-mode):
20771 * autoinsert.el (auto-insert-mode):
20772 * autoarg.el (autoarg-mode, autoarg-kp-mode):
20773 * autorevert.el (auto-revert-mode, auto-revert-tail-mode)
20774 (global-auto-revert-mode):
20775 * battery.el (display-battery-mode):
20776 * composite.el (global-auto-composition-mode)
20777 (auto-composition-mode):
20778 * delsel.el (delete-selection-mode):
20779 * desktop.el (desktop-save-mode):
20780 * dired-x.el (dired-omit-mode):
20781 * dirtrack.el (dirtrack-mode):
20782 * doc-view.el (doc-view-minor-mode):
20783 * double.el (double-mode):
20784 * electric.el (electric-indent-mode, electric-pair-mode):
20785 * emacs-lock.el (emacs-lock-mode):
20786 * epa-hook.el (auto-encryption-mode):
20787 * follow.el (follow-mode):
20788 * font-core.el (font-lock-mode):
20789 * frame.el (auto-raise-mode, auto-lower-mode, blink-cursor-mode):
20790 * help.el (temp-buffer-resize-mode):
20791 * hilit-chg.el (highlight-changes-mode)
20792 (highlight-changes-visible-mode):
20793 * hi-lock.el (hi-lock-mode):
20794 * hl-line.el (hl-line-mode, global-hl-line-mode):
20795 * icomplete.el (icomplete-mode):
20796 * ido.el (ido-everywhere):
20797 * image-file.el (auto-image-file-mode):
20798 * image-mode.el (image-minor-mode):
20799 * iswitchb.el (iswitchb-mode):
20800 * jka-cmpr-hook.el (auto-compression-mode):
20801 * linum.el (linum-mode):
20802 * longlines.el (longlines-mode):
20803 * master.el (master-mode):
20804 * mb-depth.el (minibuffer-depth-indicate-mode):
20805 * menu-bar.el (menu-bar-mode):
20806 * minibuf-eldef.el (minibuffer-electric-default-mode):
20807 * mouse-sel.el (mouse-sel-mode):
20808 * msb.el (msb-mode):
20809 * mwheel.el (mouse-wheel-mode):
20810 * outline.el (outline-minor-mode):
20811 * paren.el (show-paren-mode):
20812 * recentf.el (recentf-mode):
20813 * reveal.el (reveal-mode, global-reveal-mode):
20814 * rfn-eshadow.el (file-name-shadow-mode):
20815 * ruler-mode.el (ruler-mode):
20816 * savehist.el (savehist-mode):
20817 * scroll-all.el (scroll-all-mode):
20818 * scroll-bar.el (scroll-bar-mode):
20819 * server.el (server-mode):
20820 * shell.el (shell-dirtrack-mode):
20821 * simple.el (auto-fill-mode, transient-mark-mode)
20822 (visual-line-mode, overwrite-mode, binary-overwrite-mode)
20823 (line-number-mode, column-number-mode, size-indication-mode)
20824 (auto-save-mode, normal-erase-is-backspace-mode, visible-mode):
20825 * strokes.el (strokes-mode):
20826 * time.el (display-time-mode):
20827 * t-mouse.el (gpm-mouse-mode):
20828 * tool-bar.el (tool-bar-mode):
20829 * tooltip.el (tooltip-mode):
20830 * type-break.el (type-break-mode-line-message-mode)
20831 (type-break-query-mode):
20832 * view.el (view-mode):
20833 * whitespace.el (whitespace-mode, whitespace-newline-mode)
20834 (global-whitespace-mode, global-whitespace-newline-mode):
20835 * xt-mouse.el (xterm-mouse-mode): Doc fix.
20836
20837 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
20838 Fix autogenerated docstring.
20839
20840 2011-10-19 Juri Linkov <juri@jurta.org>
20841
20842 * net/browse-url.el (browse-url-can-use-xdg-open): Support LXDE
20843 by checking environment variables "DESKTOP_SESSION" and
20844 "XDG_CURRENT_DESKTOP". (Bug#9779)
20845
20846 2011-10-19 Juri Linkov <juri@jurta.org>
20847
20848 * net/browse-url.el (browse-url-browser-function): Add "Chromium".
20849 (browse-url-chromium-program, browse-url-chromium-arguments):
20850 New defcustoms.
20851 (browse-url-default-browser): Check for `browse-url-chromium' and
20852 call `browse-url-chromium-program'.
20853 (browse-url-chromium): New command. (Bug#9779)
20854
20855 2011-10-18 Juanma Barranquero <lekktu@gmail.com>
20856
20857 * facemenu.el (list-colors-duplicates): On Windows, detect more
20858 duplicates by assuming that only colors matching "^System" are
20859 special "system colors". (Bug#9722)
20860
20861 2011-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
20862
20863 * vc/log-edit.el (log-edit): Add "Author:" header to encourage people
20864 to distinguish the author from the committer.
20865
20866 2011-10-18 Michael Albinus <michael.albinus@gmx.de>
20867
20868 * net/tramp.el (tramp-file-name-handler): Load Tramp packages silently.
20869
20870 2011-10-18 Jirka Kosek <jirka@kosek.cz> (tiny change)
20871
20872 * international/mule.el (sgml-html-meta-auto-coding-function):
20873 Add support for detecting encoding in HTML5 specified only as
20874 <meta charset="UTF-8">. Implementation just makes http-equiv and
20875 content-type parts from HTML4 encoding string optional. (Bug#9716)
20876
20877 2011-10-18 Glenn Morris <rgm@gnu.org>
20878
20879 * vc/vc.el (vc-initial-comment): Mark as obsolete. (Bug#9745)
20880
20881 2011-10-18 Chong Yidong <cyd@gnu.org>
20882
20883 * faces.el (cursor): Doc fix.
20884
20885 2011-10-17 Chong Yidong <cyd@gnu.org>
20886
20887 * font-lock.el (font-lock-maximum-size): Mark as obsolete.
20888
20889 2011-10-17 Ryan Barrett <emacs@ryanb.org> (tiny change)
20890
20891 * dirtrack.el (dirtrack): Support shell buffers with path
20892 prefixes, e.g. tramp-based remote shells. (Bug#9647)
20893
20894 2011-10-17 Teodor Zlatanov <tzz@lifelogs.com>
20895
20896 * json.el: Bump version to 1.3 and note change in History.
20897 (json-alist-p, json-plist-p): Rewrite to avoid recursion.
20898
20899 2011-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
20900
20901 * comint.el (comint-insert-input, comint-send-input)
20902 (comint-get-old-input-default, comint-backward-matching-input)
20903 (comint-next-prompt): Use nil instead of `input' for field property of
20904 past user input (bug#114).
20905
20906 * minibuffer.el (completion--replace): Inherit surrounding properties
20907 (bug#114).
20908 (minibuffer-complete-and-exit): Use it.
20909
20910 * comint.el (comint--table-subvert): Quote the all-completions output
20911 (bug#9160).
20912
20913 2011-10-17 Martin Rudalics <rudalics@gmx.at>
20914
20915 * ido.el (ido-default-buffer-method): Remove redundant :type entry.
20916
20917 * menu-bar.el (menu-bar-file-menu): Add entry for making new
20918 window on right of selected. (Bug#9350) Reword other window
20919 entries and separate them from frame entries.
20920
20921 2011-10-15 Glenn Morris <rgm@gnu.org>
20922
20923 * emacs-lisp/ert.el (ert--explain-equal-rec, ert-select-tests):
20924 Doc fixes.
20925
20926 2011-10-15 Chong Yidong <cyd@stupidchicken.com>
20927
20928 * net/network-stream.el (network-stream-open-starttls):
20929 Improve detection of failure due to lack of TLS support.
20930
20931 * mail/sendmail.el (sendmail-query-once): Tweak prompt message,
20932 putting the input text in front and in bold.
20933
20934 2011-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
20935
20936 * pcmpl-unix.el (pcomplete/ssh): SSH does allow ganging.
20937
20938 * mpc.el (mpc-songs-jump-to): Don't burp if the user clicks in an
20939 empty buffer.
20940
20941 * mouse.el (mouse-drag-mode-line-1): Modify the end-event we pushed on
20942 unread-command-events rather than pushing yet-another event.
20943
20944 2011-10-14 Eli Zaretskii <eliz@gnu.org>
20945
20946 * mail/sendmail.el (sendmail-query-once): Improve the wording of
20947 the explanation of the possible choices. Make the options passed
20948 to completing-read shorter.
20949
20950 2011-10-13 Agustín Martín Domingo <agustin.martin@hispalinux.es>
20951
20952 * textmodes/flyspell.el (flyspell-large-region): Make sure
20953 extended character mode is used if defined (Bug#1339).
20954
20955 2011-10-13 Eli Zaretskii <eliz@gnu.org>
20956
20957 * simple.el (what-cursor-position): Fix the display of the
20958 character info for LRE, LRO, RLE, and RLO characters by appending
20959 an invisible PDF.
20960
20961 2011-10-13 Stefan Monnier <monnier@iro.umontreal.ca>
20962
20963 * emacs-lisp/timer.el (with-timeout): Make sure we cancel the timer
20964 even in case of error; add debug spec; simplify data flow.
20965 (with-timeout-handler): Remove.
20966
20967 2011-10-12 Michael Albinus <michael.albinus@gmx.de>
20968
20969 Fix Bug#6019, Bug#9315.
20970
20971 * files.el (set-auto-mode): Call `file-name-sans-versions' for the
20972 complete `buffer-file-name', the local file name part could look
20973 remotely (for example on VMS).
20974
20975 * net/ange-ftp.el (ange-ftp-run-real-handler): Make it an alias of
20976 `tramp-run-real-handler'.
20977 (ange-ftp-fix-name-for-vms): Handle the case, where `name' is
20978 already quoted by '"'.
20979
20980 * net/tramp.el (tramp-rfn-eshadow-update-overlay): Ignore errors.
20981 Let `file-name-handler-alist' be nil, the local file name part
20982 could look remotely (for example on VMS).
20983
20984 2011-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
20985
20986 * textmodes/flyspell.el (flyspell-word): Move with-local-quit
20987 from here...
20988 (flyspell-post-command-hook): ...to here.
20989
20990 2011-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
20991
20992 * mail/sendmail.el (send-mail-function): Don't use sendmail-query-once
20993 if not needed.
20994 (sendmail-query-once): Remove OS dependencies. Make it a 3-way choice
20995 using completion. Protect against "slow" callers.
20996 Remove the "message hack".
20997
20998 2011-10-11 Juri Linkov <juri@jurta.org>
20999
21000 * isearch.el (isearch-lazy-highlight-word): New variable.
21001 (isearch-lazy-highlight-new-loop, isearch-lazy-highlight-search):
21002 Use it. (Bug#9727)
21003
21004 2011-10-11 Glenn Morris <rgm@gnu.org>
21005
21006 * progmodes/f90.el (f90-next-statement): Ignore preprocessor lines,
21007 like f90-previous-statement does.
21008
21009 2011-10-11 Thierry Volpiatto <thierry.volpiatto@gmail.com>
21010
21011 * eshell/eshell.el (eshell-command): History should be saved
21012 only in interactive use, to avoid error.
21013
21014 2011-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
21015
21016 * minibuffer.el (completion-file-name-table): Fix last change,
21017 i.e. ignore normal errors but not the other ones.
21018
21019 2011-10-10 Martin Rudalics <rudalics@gmx.at>
21020
21021 * window.el (special-display-buffer-names)
21022 (special-display-regexps): Remove some remnants of earlier
21023 changes from doc-strings.
21024 (quit-windows-on): New function.
21025
21026 * vc/vc.el (vc-revert, vc-rollback):
21027 * vc/vc-dispatcher.el (vc-finish-logentry): Call quit-windows-on
21028 instead of deleting windows. (Bug#4557) (Bug#5310) (Bug#5556)
21029 (Bug#6183) (Bug#7074) (Bug#7447)
21030
21031 2011-10-09 Martin Rudalics <rudalics@gmx.at>
21032
21033 * window.el (frame-auto-hide-function): Add version tag.
21034 (Bug#9699)
21035
21036 2011-10-09 Michael Albinus <michael.albinus@gmx.de>
21037
21038 * net/tramp.el (tramp-file-name-handler): Add 'debug to the error
21039 condition.
21040
21041 2011-10-09 Leo Liu <sdl.web@gmail.com>
21042
21043 * mail/smtpmail.el (smtpmail-send-data): Add a missing space.
21044 (Bug#9701)
21045
21046 2011-10-08 Glenn Morris <rgm@gnu.org>
21047
21048 * progmodes/f90.el (f90-calculate-indent): Give preprocessor lines
21049 before the first code statement zero indent. (Bug#9690)
21050
21051 2011-10-08 Chong Yidong <cyd@stupidchicken.com>
21052
21053 * simple.el (count-words-region): Always count in the region.
21054 Report the number of lines and characters too.
21055 (count-words): New command, which counts in the buffer if the
21056 region is inactive, as count-words-region used to.
21057 (count-words--message): New function. Handle plurals.
21058 (count-lines-region): Make it an alias for count-words-region.
21059
21060 * bindings.el (esc-map): Replace count-lines-region with
21061 count-words-region.
21062
21063 2011-10-08 Martin Rudalics <rudalics@gmx.at>
21064
21065 * window.el (window--delete): Delete dedicated frame
21066 unconditionally when argument KILL is non-nil. (Bug#9699)
21067 (switch-to-buffer): Fix doc-string typo.
21068
21069 2011-10-08 Thierry Volpiatto <thierry.volpiatto@gmail.com>
21070
21071 * eshell/eshell.el (eshell-command): Avoid using hooks.
21072
21073 2011-10-07 Chong Yidong <cyd@stupidchicken.com>
21074
21075 * bindings.el ([M-left], [M-right]): Bind to left-word and
21076 right-word respectively.
21077
21078 2011-10-07 Glenn Morris <rgm@gnu.org>
21079
21080 * cus-start.el (debug-on-quit): Fix custom type.
21081
21082 2011-10-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
21083
21084 * subr.el (define-key-after): Clarify that the function is not
21085 useful for non-menu keymaps.
21086
21087 * progmodes/gdb-mi.el (gdb): Fix typo in doc string.
21088
21089 2011-10-06 Thierry Volpiatto <thierry.volpiatto@gmail.com>
21090
21091 * eshell/eshell.el (eshell-command): Enable `eshell-mode' only
21092 in current minibuffer (Fix bug with recursive minibuffers).
21093
21094 2011-10-06 Chong Yidong <cyd@stupidchicken.com>
21095
21096 * progmodes/gdb-mi.el (gdb): Doc fix.
21097
21098 2011-10-05 Martin Rudalics <rudalics@gmx.at>
21099
21100 * window.el (frame-auto-hide-function): New option replacing
21101 frame-auto-delete. Suggested by Stefan Monnier.
21102 (window--delete): Call frame-auto-hide-function instead of
21103 investigating frame-auto-delete.
21104 (window-point-1, set-window-point-1): New functions.
21105 (window-in-direction, record-window-buffer, window-state-get-1)
21106 (display-buffer-record-window): Use window-point-1 instead of
21107 window-point.
21108 (set-window-buffer-start-and-point): Use set-window-point-1.
21109
21110 2011-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
21111
21112 * emacs-lisp/edebug.el: Heed checkdoc recommendations.
21113
21114 2011-10-05 Glenn Morris <rgm@gnu.org>
21115
21116 * progmodes/perl-mode.el (perl-electric-terminator): Doc fix.
21117 (perl-calculate-indent): Suppress scan errors. (Bug#2205)
21118
21119 2011-10-05 Leo Liu <sdl.web@gmail.com>
21120
21121 * subr.el (read-char-choice): Fix argument to buffer-live-p which
21122 works with buffer object.
21123
21124 2011-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
21125
21126 * mpc.el (mpc-tool-bar-map): Add labels.
21127
21128 2011-10-04 Glenn Morris <rgm@gnu.org>
21129
21130 * calendar/holidays.el (calendar-check-holidays): Doc fix.
21131
21132 2011-10-04 Martin Rudalics <rudalics@gmx.at>
21133
21134 * window.el (window--delete): New function.
21135 (frame-auto-delete): Resuscitate option.
21136 (bury-buffer, replace-buffer-in-windows)
21137 (quit-window): Rewrite using window--delete.
21138 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
21139 Pass display-buffer-mark-dedicated to window--display-buffer-2
21140 (Bug#9639).
21141
21142 2011-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
21143
21144 * pcmpl-unix.el (pcomplete/scp): Don't assume pcomplete-all-entries
21145 returns a list (bug#9554). Add remote file name completion.
21146 * comint.el (comint--table-subvert): Curry and get quote&unquote
21147 functions as arguments.
21148 (comint--complete-file-name-data): Adjust call accordingly.
21149 * pcomplete.el (pcomplete--table-subvert): Remove.
21150 (pcomplete-completions-at-point): Use comint--table-subvert instead.
21151
21152 * minibuffer.el (completion-table-case-fold): Use currying.
21153 (completion--styles-type, completion--cycling-threshold-type):
21154 New constants.
21155 (completion-styles, completion-category-overrides)
21156 (completion-cycle-threshold): Use them.
21157 * pcomplete.el (pcomplete-completions-at-point): Adjust call to
21158 completion-table-case-fold.
21159
21160 2011-10-03 Stephen Berman <stephen.berman@gmx.net>
21161
21162 * minibuffer.el (completion-category-overrides): Fix type of styles
21163 and add more user friendly tags (bug#9660).
21164
21165 2011-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
21166
21167 * international/mule-cmds.el: Fix abuses of apply-partially (bug#9661).
21168 (mule-input-method-string): New widget.
21169 (default-input-method, language-info-custom-alist): Use it.
21170
21171 2011-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
21172
21173 * pcomplete.el: Require comint.
21174 (pcomplete--common-suffix): Remove.
21175 (pcomplete--common-quoted-suffix): Use comint--common-suffix instead.
21176 (pcomplete--table-subvert): Sync with comint--table-subvert.
21177 (pcomplete--entries): Use comint-completion-file-name-table.
21178 * comint.el (comint-unquote-filename): Simplify.
21179 (comint-completion-file-name-table): New function (bug#9616).
21180 (comint--complete-file-name-data): Use it.
21181
21182 * pcmpl-gnu.el (pcmpl-gnu-with-file-buffer): New macro (bug#9643).
21183 (pcmpl-gnu-tar-buffer): Remove.
21184 (pcmpl-gnu-with-file-buffer): Use it to avoid leaving the tar's buffer
21185 around. Make sure pcomplete-suffix-list is only changed temporarily.
21186 Don't look inside the tar's file if it's too large.
21187
21188 2011-10-01 Chong Yidong <cyd@stupidchicken.com>
21189
21190 * cus-edit.el (custom-mode-map):
21191 * epa.el (epa-key-list-mode-map):
21192 * man.el (Man-mode-map):
21193 * startup.el (splash-screen-keymap):
21194 * simple.el (special-mode-map): Use scroll-up-command and
21195 scroll-down-command.
21196
21197 * progmodes/idlw-help.el (idlwave-help-mode-map):
21198 * progmodes/ebrowse.el (ebrowse-electric-position-mode-map):
21199 * net/newst-plainview.el (newsticker-mode-map):
21200 * emulation/ws-mode.el (wordstar-mode-map):
21201 * emulation/vi.el (vi-com-map):
21202 * calc/calc-graph.el (calc-graph-show-dumb):
21203 * term/sun.el (terminal-init-sun):
21204 * term/ns-win.el (global-map):
21205 * progmodes/grep.el (grep-mode-map):
21206 * progmodes/ebrowse.el (ebrowse-electric-list-mode-map):
21207 * mail/rmail.el (rmail-mode-map):
21208 * progmodes/cpp.el (cpp-edit-mode-map): Likewise.
21209
21210 * custom.el (custom-safe-themes, load-theme): Treat value of t for
21211 custom-safe-themes as special.
21212
21213 2011-10-01 Julien Danjou <julien@danjou.info>
21214
21215 * notifications.el (notifications-notify): Fix docstring.
21216
21217 2011-10-01 Per Starbäck <per@starback.se>
21218
21219 * pcmpl-gnu.el (pcomplete/tar): Fix tar-header-name call. (Bug#9643)
21220
21221 2011-09-30 Martin Rudalics <rudalics@gmx.at>
21222
21223 * startup.el (command-line-1): Fix last fix by inserting
21224 initial-scratch-message into *scratch* before displaying it.
21225 (Bug#9605) and (Bug#9636)
21226
21227 2011-09-29 Eli Zaretskii <eliz@gnu.org>
21228
21229 * simple.el (line-move): If auto-hscroll-mode is disabled and the
21230 window is hscrolled, move by logical lines. (Bug#9607)
21231 (line-move-visual): Update the doc string to the above effect.
21232
21233 2011-09-29 Martin Rudalics <rudalics@gmx.at>
21234
21235 * window.el (display-buffer-record-window): When WINDOW is the
21236 selected window use `point' instead of `window-point'. (Bug#9626)
21237
21238 * startup.el (command-line-1): Use insert-before-markers when
21239 inserting initial-scratch-message. (Bug#9605)
21240
21241 * help.el (help-window): Remove variable.
21242
21243 2011-09-29 Glenn Morris <rgm@gnu.org>
21244
21245 * pcmpl-cvs.el (pcomplete/cvs): Add "status" handler.
21246
21247 2011-09-29 Juanma Barranquero <lekktu@gmail.com>
21248
21249 * descr-text.el (describe-char-categories): Accept category
21250 descriptions more than one line long.
21251
21252 2011-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
21253
21254 * simple.el (delete-trailing-whitespace): Fix last change.
21255
21256 * progmodes/perl-mode.el (perl-syntax-propertize-function):
21257 Don't confuse "y => 3" as the beginning of a `y' operation.
21258
21259 * emacs-lisp/debug.el (debug-convert-byte-code): Don't assume the
21260 object has more than 4 slots (bug#9613).
21261
21262 2011-09-28 Juanma Barranquero <lekktu@gmail.com>
21263
21264 * subr.el (with-output-to-temp-buffer):
21265 * net/quickurl.el (quickurl, quickurl-browse-url):
21266 Fix typos in docstrings.
21267
21268 2011-09-27 Eli Zaretskii <eliz@gnu.org>
21269
21270 * minibuffer.el (completion-styles)
21271 (completion-category-overrides): Cross reference each other in doc
21272 strings.
21273
21274 2011-09-27 Glenn Morris <rgm@gnu.org>
21275
21276 * pcmpl-cvs.el (pcmpl-cvs-entries): Update for Emacs 22.1 changes
21277 to split-string. (Bug#9606)
21278
21279 2011-09-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
21280
21281 * mail/smtpmail.el (smtpmail-via-smtp): Fix STARTTLS detection
21282 (bug#9615).
21283
21284 2011-09-27 Chong Yidong <cyd@stupidchicken.com>
21285
21286 * emacs-lisp/package.el (list-packages): Fix echo area message.
21287
21288 2011-09-27 Leo Liu <sdl.web@gmail.com>
21289
21290 * ido.el (ido-read-internal): Accept cons cell HIST arg.
21291
21292 2011-09-25 Michael Albinus <michael.albinus@gmx.de>
21293
21294 * net/dbus.el (dbus-unregister-object): Don't release services for
21295 registered signals. (Bug#9581)
21296
21297 2011-09-25 Teodor Zlatanov <tzz@lifelogs.com>
21298
21299 * progmodes/cfengine.el (cfengine-auto-mode): Add convenience
21300 function that picks between cfengine 2 and 3 support
21301 automatically. Update docs accordingly.
21302
21303 2011-09-22 Kenichi Handa <handa@m17n.org>
21304
21305 * language/ind-util.el (indian-tml-base-table): Add TAMIL DIGIT
21306 ZERO.
21307 (indian-itrans-v5-table-for-tamil): New variable.
21308 (indian-tml-itrans-v5-hash): Use the above variable (Bug#9336).
21309
21310 2011-09-22 Ken Manheimer <ken.manheimer@gmail.com>
21311
21312 * allout.el (allout-this-command-hid-stuff): Buffer-local variable
21313 that's true if the current command involved collapsing of text.
21314 It's reset to false at the beginning of the next command.
21315 (allout-post-command-business): Move the cursor to the beginning
21316 of entry if the cursor is hidden and collapsing activity just
21317 happened.
21318
21319 2011-09-24 Chong Yidong <cyd@stupidchicken.com>
21320
21321 * mouse.el (mouse-drag-track): Set scroll-margin to 0 while
21322 tracking (Bug#9541).
21323
21324 2011-09-24 Ulf Jasper <ulf.jasper@web.de>
21325
21326 * net/newst-reader.el (newsticker-html-renderer)
21327 (newsticker-show-news): Automatically load html rendering package
21328 if newsticker-html-renderer is set. Fixes "Warning: defvar ignored
21329 because w3m-fill-column is let-bound" and the error "Symbol's value
21330 as variable is void: w3m-fill-column".
21331
21332 2011-09-24 Michael Albinus <michael.albinus@gmx.de>
21333
21334 * net/dbus.el (dbus-unregister-object): Remove match rule of signals.
21335 Release services only if they are defined. (Bug#9581)
21336
21337 2011-09-23 Richard Stallman <rms@gnu.org>
21338
21339 * textmodes/paragraphs.el (forward-sentence): For backwards case,
21340 distinguish start of paragraph from start of its text.
21341
21342 * mail/emacsbug.el (report-emacs-bug-query-existing-bugs): Autoload.
21343
21344 * mail/rmail.el (rmail-view-buffer-kill-buffer-hook): New function.
21345 (rmail-generate-viewer-buffer): Put that hook on view buffer.
21346 (rmail-mode-kill-buffer-hook): Override that hook, to kill view buffer.
21347
21348 2011-09-23 Andreas Schwab <schwab@linux-m68k.org>
21349
21350 * international/mule-diag.el (mule-diag): Insert a newline after
21351 each fontset description.
21352
21353 2011-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
21354
21355 * simple.el (delete-trailing-whitespace):
21356 Document last change; simplify.
21357
21358 2011-09-23 Peter J. Weisberg <pj@irregularexpressions.net>
21359
21360 * simple.el (delete-trailing-whitespace): Also delete
21361 extra newlines at the end of the buffer.
21362
21363 * textmodes/picture.el: Make motion commands obey shift-select-mode.
21364 (picture-newline): Use forward-line so as to ignore fields.
21365
21366 2011-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
21367
21368 * subr.el (with-wrapper-hook): Fix edebug spec.
21369
21370 2011-09-23 Lars Magne Ingebrigtsen <larsi@gnus.org>
21371
21372 * simple.el (kill-line): Note effect of `show-trailing-whitespace'
21373 (bug#4538).
21374
21375 2011-09-23 Michael Albinus <michael.albinus@gmx.de>
21376
21377 * net/tramp-sh.el (tramp-sh-handle-file-name-all-completions):
21378 Fix nasty bug using wrong cached values.
21379
21380 2011-09-23 Alan Mackenzie <acm@muc.de>
21381
21382 * progmodes/cc-defs.el (c-version): Increase to 5.31.9.
21383
21384 2011-09-23 Chong Yidong <cyd@stupidchicken.com>
21385
21386 * window.el (pop-to-buffer): Ensure right window is selected if we
21387 chose another frame.
21388
21389 2011-09-22 Eli Zaretskii <eliz@gnu.org>
21390
21391 * simple.el (what-cursor-position): Use get-char-property-change
21392 and next-single-char-property-change, to be able to show display
21393 properties that come from overlays as well as text properties.
21394
21395 2011-09-22 Chong Yidong <cyd@stupidchicken.com>
21396
21397 * window.el (pop-to-buffer-same-window): New (reinstated) fun.
21398
21399 * cmuscheme.el (run-scheme, switch-to-scheme):
21400 * cus-edit.el (customize-group, custom-buffer-create)
21401 (customize-browse):
21402 * info.el (info):
21403 * shell.el (shell):
21404 * mail/sendmail.el (mail):
21405 * progmodes/inf-lisp.el (inferior-lisp): Use it (Bug#9532).
21406
21407 2011-09-22 Richard Stallman <rms@gnu.org>
21408
21409 * textmodes/paragraphs.el (forward-sentence): When setting PAR-BEG,
21410 move back only to line beg, don't move back over blank lines.
21411
21412 2011-09-22 Michael Albinus <michael.albinus@gmx.de>
21413
21414 * files.el (copy-directory): Set directory attributes only in case
21415 they could be retrieved from the source directory. (Bug#9565)
21416
21417 2011-09-22 Dima Kogan <dkogan@secretsauce.net> (tiny change)
21418
21419 * progmodes/hideshow.el (hs-looking-at-block-start-p)
21420 (hs-find-block-beginning, hs-hide-level-recursive):
21421 Ignore strings as well as comments. (Bug#9502)
21422
21423 2011-09-22 Andrew Schein <andrew@andrewschein.com> (tiny change)
21424
21425 * progmodes/sql.el (sql-comint-postgres):
21426 Convert port number to a string. (Bug#9566)
21427
21428 2011-09-22 Martin Rudalics <rudalics@gmx.at>
21429
21430 * window.el (quit-window): Undedicate window when switching to
21431 previous buffer. Reported by Thierry Volpiatto
21432 <thierry.volpiatto@gmail.com>.
21433 (special-display-popup-frame): When popping up a new frame reset
21434 its previous buffers to nil. Simplify code.
21435
21436 2011-09-21 Michael Albinus <michael.albinus@gmx.de>
21437
21438 * net/tramp.el (tramp-handle-shell-command): Set process sentinel
21439 and process filter, as done also in `shell-command'.
21440
21441 2011-09-21 Martin Rudalics <rudalics@gmx.at>
21442
21443 * window.el (set-window-buffer-start-and-point):
21444 Call set-window-start with NOFORCE argument t.
21445 Suggested by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
21446 (quit-window): Reword doc-string. Handle new format of
21447 quit-restore parameter. Don't delete window if it has a
21448 previous buffer we can show instead of the present one.
21449 (display-buffer-record-window): Rewrite using a new format for
21450 the quit-restore window parameter
21451 (special-display-popup-frame, display-buffer-same-window)
21452 (display-buffer-reuse-window, display-buffer-pop-up-frame)
21453 (display-buffer-pop-up-window, display-buffer-use-some-window):
21454 Adapt symbol passed to display-buffer-record-window.
21455 * help.el (help-window-setup): Handle new format of quit-restore
21456 parameter.
21457
21458 2011-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
21459
21460 * faces.el (face-list): Fix docstring (bug#9564).
21461
21462 * window.el (display-buffer--action-function-custom-type):
21463 Don't include internal functions in the Custom interface.
21464
21465 2011-09-20 Juri Linkov <juri@jurta.org>
21466
21467 * info.el (Info-history-skip-intermediate-nodes): New defcustom.
21468 (Info-forward-node, Info-backward-node, Info-next-preorder)
21469 (Info-last-preorder): Use it. (Bug#9528)
21470
21471 2011-09-20 Juri Linkov <juri@jurta.org>
21472
21473 * info.el (Info-last-preorder): Visit last menu item only when
21474 `Info-scroll-prefer-subnodes' is non-nil (third test-case of bug#9528).
21475
21476 2011-09-20 Julien Danjou <julien@danjou.info>
21477
21478 * password-cache.el (password-cache-remove): Remove entries even if the
21479 value is nil, so that password with a nil value (negative caching) is
21480 possible to invalidate.
21481
21482 2011-09-20 Lawrence Mitchell <wence@gmx.li>
21483
21484 * progmodes/f90.el (f90-break-line): If breaking inside comment delete
21485 all whitespace around breakpoint. (Bug#9553)
21486 (f90-find-breakpoint): Only break at whitespace inside a comment.
21487
21488 2011-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
21489
21490 * minibuffer.el (completion-file-name-table): Keep track of errors.
21491 (completion-table-with-predicate): Handle the case where pred1 is nil.
21492 * pcomplete.el (pcomplete-completions-at-point): Simplify.
21493
21494 2011-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
21495
21496 * emacs-lisp/debug.el (debugger-args): Give it a docstring.
21497 (debugger-return-value): Signal an error if the debugging context does
21498 not await any return value.
21499
21500 * ps-mule.el (ps-mule-plot-string): Don't inf-loop (bug#5108).
21501 * image-mode.el (image-toggle-display-text)
21502 (image-toggle-display-image): Stay away from evil `intangible'.
21503
21504 2011-09-19 Leo Liu <sdl.web@gmail.com>
21505
21506 * replace.el (occur-revert-arguments): Make it permanent-local.
21507 (occur-mode): Don't call font-lock-defontify.
21508
21509 2011-09-19 Chong Yidong <cyd@stupidchicken.com>
21510
21511 * net/ldap.el (ldap-search-internal): Don't push empty search
21512 result (Bug#9508).
21513
21514 2011-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
21515
21516 * whitespace.el (whitespace-newline-mode): Disable it right (bug#9550).
21517
21518 2011-09-19 Michael Albinus <michael.albinus@gmx.de>
21519
21520 * net/tramp-sh.el (tramp-inline-compress-commands): Add "xz".
21521 Suggested by Liam Stitt <stittl@cuug.ab.ca>.
21522
21523 2011-09-18 Juri Linkov <juri@jurta.org>
21524
21525 * buff-menu.el (Buffer-menu-mode-map):
21526 * dired.el (dired-mode-map):
21527 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map)
21528 (lisp-interaction-mode-map):
21529 * emacs-lisp/package.el (package-menu-mode-map):
21530 * epa.el (epa-key-list-mode-map):
21531 * menu-bar.el (menu-bar-showhide-tool-bar-menu)
21532 (menu-bar-options-menu):
21533 * outline.el (outline-mode-menu-bar-map):
21534 * vc/vc-bzr.el (vc-bzr-shelve-menu-map, vc-bzr-extra-menu-map):
21535 * vc/vc-dir.el (vc-dir-menu-map):
21536 * vc/vc-git.el (vc-git-stash-menu-map, vc-git-extra-menu-map):
21537 Capitalize non-function content words in menu item strings.
21538
21539 * dired.el (dired-mode-map): Add menu item for
21540 `image-dired-dired-toggle-marked-thumbs'.
21541
21542 2011-09-18 Juri Linkov <juri@jurta.org>
21543
21544 * isearch.el (isearch-edit-string): Bind `isearch-new-case-fold'
21545 to `isearch-case-fold-search' and restore its original value
21546 after the `isearch-mode' call.
21547
21548 2011-09-18 Juri Linkov <juri@jurta.org>
21549
21550 * progmodes/grep.el (grep-process-setup): Don't check code for 1
21551 because `zgrep' returns 1 for successful matches (bug#9226).
21552
21553 2011-09-18 Juri Linkov <juri@jurta.org>
21554
21555 * info.el (Info-extract-menu-node-name): Check the second match
21556 for empty string (second test-case of bug#9528).
21557 (Info-last-preorder): Let-bind `Info-history' to nil to not add
21558 intermediate nodes to the history (first test-case of bug#9528).
21559
21560 2011-09-18 Juri Linkov <juri@jurta.org>
21561
21562 * info.el (Info-mode-syntax-table): New variable.
21563 (Info-mode): Set `:syntax-table' to `Info-mode-syntax-table' (bug#3312).
21564
21565 2011-09-18 Juri Linkov <juri@jurta.org>
21566
21567 * info.el (Info-file-supports-index-cookies):
21568 Increment line-beginning-position's arg from 3 to 4 because makeinfo
21569 outputs one more line for long file names (bug#4142).
21570
21571 2011-09-18 Chong Yidong <cyd@stupidchicken.com>
21572
21573 * newcomment.el (comment-normalize-vars): If prompting for
21574 comment-start, set comment-start-skip too (Bug#8424).
21575
21576 2011-09-18 Johan Bockgård <bojohan@gnu.org>
21577
21578 * icomplete.el: Fix previous fix of Bug#5849.
21579 (icomplete-mode): Don't set completion-show-inline-help.
21580 (icomplete-minibuffer-setup): Set completion-show-inline-help
21581 locally during icompletion.
21582
21583 2011-09-18 Chong Yidong <cyd@stupidchicken.com>
21584
21585 * woman.el (woman2-process-escapes): Don't delete unrecognized
21586 escapes (Bug#7843).
21587
21588 * files.el (inhibit-first-line-modes-regexps): Add image files.
21589 (hack-local-variables-prop-line): Return nil for malformed
21590 prop-lines (Bug#9044).
21591
21592 2011-09-18 Michael Albinus <michael.albinus@gmx.de>
21593
21594 * net/tramp.el (top): Don't require 'shell.
21595 (tramp-methods): Fix docstring.
21596 (tramp-get-remote-tmpdir): New defun, moved from tramp-sh.el.
21597 Return complete remote file name. Handle "smb" case.
21598 Use `tramp-tmpdir', if defined for the respective method.
21599 (tramp-make-tramp-temp-file): Adapt call of `tramp-get-remote-tmpdir'.
21600
21601 * net/tramp-compat.el (top): Require 'shell.
21602
21603 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band)
21604 (tramp-maybe-open-connection): Use `tramp-file-name-real-host' for
21605 `tramp-current-host'.
21606 (tramp-get-remote-tmpdir): Remove.
21607
21608 * net/tramp-smb.el (tramp-methods): Add `tramp-remote-shell' and
21609 `tramp-tmpdir' entries.
21610 (tramp-smb-errors): Add "NT_STATUS_IMAGE_ALREADY_LOADED".
21611 (tramp-smb-handle-file-attributes): Ignore errors.
21612 (tramp-smb-wait-for-output): Check also for process end.
21613
21614 2011-09-18 Lars Magne Ingebrigtsen <larsi@gnus.org>
21615
21616 * mail/smtpmail.el (smtpmail-via-smtp): Ignore errors that arise
21617 when sending QUIT (bug#9312).
21618
21619 2011-09-17 Chong Yidong <cyd@stupidchicken.com>
21620
21621 * replace.el (occur-mode-map): Rebind occur-edit-mode to "e" (Bug#8463).
21622 (occur-edit-mode-map): Bind C-c C-c to occur-cease-edit and C-o to
21623 occur-mode-display-occurrence.
21624 (occur-edit-mode): Add usage message.
21625 (occur-cease-edit): New command.
21626 (occur-after-change-function): Use text properties to find the
21627 position of the prefix text.
21628 (occur-engine): Set stickiness of prefix text properties.
21629
21630 2011-09-17 Glenn Morris <rgm@gnu.org>
21631
21632 * progmodes/etags.el (complete-tag):
21633 Fix call to completion-in-region. (Bug#9526)
21634
21635 2011-09-17 Juri Linkov <juri@jurta.org>
21636
21637 * textmodes/ispell.el (ispell-word): Add to the error message
21638 the word, ispell program name and current dictionary (bug#9121).
21639 (ispell-tex-arg-end): Capitalize "error" in the error message.
21640
21641 2011-09-17 Andreas Schwab <schwab@linux-m68k.org>
21642
21643 * emacs-lisp/bytecomp.el (byte-compile-lapcode): Fix overflow
21644 check. (Bug#4251)
21645
21646 2011-09-17 Juri Linkov <juri@jurta.org>
21647
21648 * window.el (window-safe-min-height, window-safe-min-width):
21649 Fix typos (followup to bug#9522).
21650
21651 2011-09-17 Sven Joachim <svenjoac@gmx.de>
21652
21653 * window.el (window-min-width, window-state-put): Fix typos (bug#9522).
21654
21655 2011-09-16 Eli Zaretskii <eliz@gnu.org>
21656
21657 * simple.el (line-move): If goal-column is set, move by logical
21658 lines, not by display lines. (Bug#971)
21659 (next-line, previous-line, goal-column, line-move-visual): Doc fix
21660 to reflect the above change.
21661
21662 2011-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
21663
21664 * image.el (imagemagick-register-types): Use regexp-opt.
21665
21666 2011-09-15 Chong Yidong <cyd@stupidchicken.com>
21667
21668 * window.el (display-buffer-base-action): Rename from
21669 display-buffer-default-action. Make default value empty.
21670 (display-buffer-overriding-action): Convert to defvar.
21671 (display-buffer-fallback-action): New var.
21672
21673 2011-09-15 Chong Yidong <cyd@stupidchicken.com>
21674
21675 * emacs-lisp/package.el (package-alist): Fix risky-local-variable
21676 declaration.
21677 (package--add-to-archive-contents): If there is a duplicate entry
21678 with an older version, remove it.
21679 (package-menu-mark-delete, package-menu-mark-install)
21680 (package-menu-mark-unmark): Make unused args optional.
21681 (package-menu-mark-obsolete-for-deletion):
21682 Use package-menu-get-status instead of a regexp search.
21683 (package-menu-get-status): Use tabulated-list-entry.
21684 (package-menu-mark-upgrades): New command.
21685 (package-menu-mode-map): Bind it to U. Add it to menu bar.
21686 (package-menu-execute): Do installation before deletion.
21687 (package-menu-refresh, package-menu-execute): Use derived-mode-p
21688 instead of checking major-mode.
21689 (package-menu--find-upgrades): New function.
21690
21691 2011-09-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
21692
21693 * mail/smtpmail.el (smtpmail-send-command): Don't include AUTH
21694 passwords in the log buffer.
21695 (smtpmail-process-filter): Update the process marker so that the
21696 "broken by peer" status message is inserted in the right place.
21697
21698 2011-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
21699
21700 * textmodes/bibtex.el (bibtex-complete-string-cleanup)
21701 (bibtex-complete-crossref-cleanup): Adjust to accommodate needs of
21702 bibtex-completion-at-point-function.
21703 (bibtex-completion-at-point-function): Use them.
21704
21705 * newcomment.el (comment-add, comment-valid-prefix-p): Docfix.
21706
21707 * mpc.el (mpc-constraints-tag-lookup): New function.
21708 (mpc-constraints-restore): Use it to make jumping to "album=Foo" apply
21709 also to browser "album|playlist".
21710
21711 2011-09-14 Juri Linkov <juri@jurta.org>
21712
21713 * isearch.el (isearch-fail-pos): Add new arg `msg'. Doc fix.
21714 (isearch-edit-string): Use length of `isearch-string' when
21715 `isearch-fail-pos' returns nil.
21716 (isearch-message): Remove duplicate code and call
21717 `isearch-fail-pos' with arg `t'.
21718
21719 2011-09-14 Chong Yidong <cyd@stupidchicken.com>
21720
21721 * replace.el (occur-mode-goto-occurrence): Don't force using other
21722 window (Bug#9499).
21723
21724 * dired-aux.el (dired-do-chmod): Don't provide initial input.
21725
21726 2011-09-14 Martin Rudalics <rudalics@gmx.at>
21727
21728 * window.el (display-buffer-window): Remove.
21729 (display-buffer-record-window): Use help-setup window parameter
21730 instead of variable display-buffer-window.
21731 (display-buffer-function, special-display-buffer-names)
21732 (special-display-function): Mention help-setup parameter instead
21733 of display-buffer-window in doc-string.
21734 * help.el (help-window-setup): New argument help-window.
21735 Use help-window-setup parameter instead of display-buffer-window.
21736 Reword some messages.
21737 (with-help-window): Pass window used for displaying the buffer
21738 to help-window-setup. Don't set display-buffer-window.
21739
21740 2011-09-13 Glenn Morris <rgm@gnu.org>
21741
21742 * emacs-lisp/debug.el (debugger-make-xrefs):
21743 Preserve point. (Bug#9462)
21744
21745 2011-09-13 Chong Yidong <cyd@stupidchicken.com>
21746
21747 * window.el (window-deletable-p): Use next-frame.
21748
21749 2011-09-13 Martin Rudalics <rudalics@gmx.at>
21750
21751 * window.el (window-auto-delete): Remove.
21752 (window-deletable-p): Remove argument FORCE. Don't deal with
21753 dedication and previous buffers.
21754 (switch-to-prev-buffer): Don't delete window.
21755 (delete-windows-on): Delete a window's frame if and only if the
21756 window is dedicated.
21757 (replace-buffer-in-windows): Delete buffer's window or frame if
21758 and only if window is dedicated.
21759 (quit-window): Handle quit-restore as before last change.
21760 (bury-buffer): Delete window only if window-deletable-p returns t.
21761
21762 2011-09-13 Chong Yidong <cyd@stupidchicken.com>
21763
21764 * window.el (window-deletable-p): Never delete the last frame on a
21765 given terminal.
21766
21767 2011-09-13 Glenn Morris <rgm@gnu.org>
21768
21769 * help.el (describe-key-briefly): Copy previous standard-output change.
21770
21771 2011-09-13 PJ Weisberg <pj@irregularexpressions.net>
21772
21773 * help.el (where-is): Respect non-standard standard-output. (Bug#9030)
21774
21775 2011-09-13 Glenn Morris <rgm@gnu.org>
21776
21777 * emacs-lisp/lisp-mode.el (lisp-indent-function):
21778 * progmodes/scheme.el (scheme-indent-function): Doc fixes.
21779
21780 2011-09-12 Chong Yidong <cyd@stupidchicken.com>
21781
21782 * dired-aux.el (dired-mark-read-string): Don't return default
21783 value on empty input (Bug#9361).
21784 (dired-do-chxxx): Treat empty input for "touch" as no -t option.
21785 Omit initial minibuffer contents.
21786 (dired-do-chmod): Signal an error on empty input.
21787 (dired-mark-read-string): Don't return default on empty input.
21788
21789 * files.el (file-modes-symbolic-to-number): Doc fix.
21790
21791 2011-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
21792
21793 * international/mule-cmds.el (ucs-completions): Remove.
21794 (read-char-by-name): Use complete-with-action instead; add metadata.
21795
21796 2011-09-11 Chong Yidong <cyd@stupidchicken.com>
21797
21798 * window.el (display-buffer--action-function-custom-type)
21799 (display-buffer--action-custom-type): New vars.
21800 (display-buffer-alist, display-buffer-default-action)
21801 (display-buffer-overriding-action): Add defcustom types.
21802
21803 * frame.el (delete-other-frames): Doc fix (Bug#276).
21804
21805 2011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
21806
21807 * play/doctor.el (make-doctor-variables): Define `doctor-sent'.
21808
21809 2011-09-11 Chong Yidong <cyd@stupidchicken.com>
21810
21811 Change modes that used same-window-* vars to use switch-to-buffer.
21812
21813 * progmodes/gdb-mi.el (gdb-restore-windows, gdb-setup-windows):
21814 Use switch-to-buffer.
21815
21816 * cus-edit.el (customize-group, custom-buffer-create)
21817 (customize-browse, custom-buffer-create-other-window):
21818 Use switch-to-buffer or switch-to-buffer-other-window.
21819
21820 * info.el (info, Info-find-node, Info-revert-find-node, Info-next)
21821 (Info-prev, Info-up, Info-speedbar-goto-node)
21822 (info-display-manual): Use switch-to-buffer.
21823 (Info-speedbar-goto-node): Use switch-to-buffer-other-frame.
21824
21825 * mail/sendmail.el (mail): Use switch-to-buffer.
21826 (mail-recover): Use switch-to-buffer-other-window.
21827
21828 * cmuscheme.el (run-scheme, switch-to-scheme):
21829 * ielm.el (ielm):
21830 * shell.el (shell):
21831 * net/rlogin.el (rlogin):
21832 * net/telnet.el (telnet, rsh):
21833 * progmodes/inf-lisp.el (inferior-lisp): Use switch-to-buffer.
21834
21835 2011-09-11 Andreas Schwab <schwab@linux-m68k.org>
21836
21837 * dired.el (dired-sort-toggle-or-edit): Revert last changes.
21838
21839 2011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
21840
21841 * dired.el (dired-sort-toggle-or-edit): -o doesn't exist on *BSD,
21842 so don't mention it (bug#9301).
21843 (dired-sort-toggle-or-edit): Clarify string further.
21844
21845 * faces.el (face-spec-set-match-display): Make `(type graphic)'
21846 match `x', `w32' and `ns', like the manual says (bug#9029).
21847
21848 * subr.el (eval-after-load): Doc string clarification (bug#9125).
21849 (process-kill-buffer-query-function): Mention the buffer name in
21850 the query.
21851
21852 * image-mode.el (image-next-line): The line parameter is mandatory
21853 (bug#9258).
21854
21855 * dired.el (dired-sort-toggle-or-edit): Mention -o and -g, too,
21856 which can be useful (bug#9301).
21857
21858 * textmodes/flyspell.el: Remove obsolete comment (bug#9368).
21859
21860 * subr.el (match-string): Mention that the current buffer should
21861 be the same as the search was done in (bug#9282).
21862
21863 * facemenu.el: Disable the remove-* commands if the mark isn't
21864 active (bug#9162).
21865
21866 2011-09-10 Chong Yidong <cyd@stupidchicken.com>
21867
21868 * buff-menu.el (Buffer-menu-switch-other-window): Use second arg
21869 of display-buffer.
21870 (Buffer-menu-2-window): Use switch-to-buffer-other-window.
21871
21872 * replace.el (occur-mode-goto-occurrence)
21873 (occur-mode-display-occurrence) Use second arg of pop-to-buffer
21874 and display-buffer.
21875
21876 * mail/reporter.el (reporter-submit-bug-report): Use second arg of
21877 display-buffer.
21878
21879 * mail/sendmail.el (sendmail-user-agent-compose): Don't bind the
21880 special-display and same-window variables.
21881 (mail-other-window): Use switch-to-buffer-other-window.
21882 (mail-other-frame): USe switch-to-buffer-other-frame.
21883
21884 * progmodes/gdb-mi.el (gdb-frame-gdb-buffer):
21885 Use display-buffer-other-frame.
21886 (gdb-display-gdb-buffer): Use pop-to-buffer.
21887
21888 * progmodes/gud.el (gud-goto-info): Use info-other-window.
21889
21890 * progmodes/python.el: Don't set same-window-buffer-names.
21891
21892 * textmodes/bibtex.el (bibtex-search-entry): Use switch-to-buffer.
21893
21894 * window.el (display-buffer-alist): Add *Python*.
21895
21896 2011-09-10 Chong Yidong <cyd@stupidchicken.com>
21897
21898 * window.el (display-buffer-alist): Add entry for buffers
21899 previously handled same-window-*.
21900 (display-buffer-alist, display-buffer-default-action)
21901 (display-buffer-overriding-action): Mark as risky.
21902 (display-buffer-alist): Document action function changes.
21903 (display-buffer--same-window-action)
21904 (display-buffer--other-frame-action): New variables.
21905 (switch-to-buffer, display-buffer-other-frame): Use them.
21906 (display-buffer): Rename reuse-frame entry to reusable-frames.
21907 (display-buffer-reuse-selected-window): Function deleted.
21908 (display-buffer-reuse-window): Handle reusable-frames alist entry.
21909 If it's omitted, check pop-up-frames/display-buffer-reuse-frames.
21910 (display-buffer-special): New function.
21911 (display-buffer--maybe-pop-up-frame-or-window): Rename from
21912 display-buffer-reuse-or-pop-window. Split off special-display
21913 part into display-buffer-special.
21914 (display-buffer-use-some-window): Don't perform any special
21915 pop-up-frames handling.
21916 (pop-to-buffer): Use window-normalize-buffer-to-switch-to.
21917 (display-buffer--maybe-same-window): Rename from
21918 display-buffer-maybe-same-window.
21919
21920 * info.el: Don't set same-window-regexps.
21921 (info-setup): New function.
21922 (info-other-window, info): Call it.
21923
21924 * cus-edit.el: Don't set same-window-regexps.
21925 (customize-group): New argument.
21926 (customize-group-other-window): Use it.
21927 (customize-face, customize-face-other-window): Likewise.
21928 (custom-buffer-create-other-window): Use pop-to-buffer directly.
21929
21930 * net/rlogin.el:
21931 * net/telnet.el:
21932 * progmodes/gud.el: Don't set same-window-regexps.
21933
21934 * cmuscheme.el:
21935 * ielm.el:
21936 * shell.el:
21937 * mail/sendmail.el:
21938 * progmodes/inf-lisp.el: Don't set same-window-buffer-names.
21939
21940 2011-09-10 Juri Linkov <juri@jurta.org>
21941
21942 * isearch.el (isearch-edit-string): Remove obsolete mention of
21943 `C-w' (`isearch-yank-word-or-char') from docstring.
21944 (isearch-query-replace): Fix typo in docstring (bug#9466).
21945
21946 2011-09-10 Juri Linkov <juri@jurta.org>
21947
21948 * paren.el (show-paren-function): Don't show escaped parens.
21949 Let-bind `unescaped' to `t' when paren is not escaped. (Bug#9461)
21950
21951 2011-09-10 Eli Zaretskii <eliz@gnu.org>
21952
21953 * mail/sendmail.el (mml-to-mime, mml-attach-file)
21954 (mm-default-file-encoding): Remove autoload forms, they are
21955 replaced with autoload cookies in mml.el and mm-encode.el.
21956 (mail-add-attachment): New command.
21957 (mail-mode-map): Add a menu-bar item for mail-add-attachment.
21958 (mail-mode): Mention mail-insert-file and mail-add-attachment in
21959 the doc string.
21960 (mml-to-mime, mml-attach-file, mm-default-file-encoding): Declare.
21961
21962 2011-09-10 Reuben Thomas <rrt@sc3d.org>
21963
21964 * simple.el (count-words-region): Use buffer if there's no region
21965 (bug#9429).
21966
21967 2011-09-09 Juri Linkov <juri@jurta.org>
21968
21969 * wdired.el (wdired-change-to-wdired-mode): Set buffer-local
21970 `isearch-filter-predicate' to `wdired-isearch-filter-read-only'.
21971 (wdired-isearch-filter-read-only): New function. (Bug#6362)
21972
21973 2011-09-09 Alan Mackenzie <acm@muc.de>
21974
21975 * progmodes/cc-mode.el (awk-mode): Prevent `define-derived-mode'
21976 spuriously generating `awk-mode-syntax-table'. (Bug #9448).
21977
21978 2011-09-09 Eli Zaretskii <eliz@gnu.org>
21979
21980 Fix for Savannah bug#9392.
21981 * simple.el (mail-encode-mml): New defvar.
21982
21983 * mail/rmail.el (mail-encode-mml): Add a defvar.
21984 (rmail-enable-mime-composing): Default to t.
21985 (rmail-forward): Use MIME method of forwarding only if both
21986 rmail-enable-mime-composing and rmail-enable-mime are non-nil.
21987 Set mail-encode-mml non-nil if the MIME method was used.
21988
21989 * mail/sendmail.el (mml-to-mime): Add autoload form.
21990 (mail-encode-mml): Add a defvar.
21991 (mail-mode): Make mail-encode-mml buffer-local and initialize it
21992 to nil.
21993 (mail-send): If mail-encode-mml is non-nil, run the outgoing
21994 message through mml-to-mime, and reset mail-encode-mml to nil.
21995
21996 2011-09-09 Glenn Morris <rgm@gnu.org>
21997
21998 * woman.el (woman-if-body): When processing an .el block,
21999 do not delete the next .el block as well. (Bug#9447)
22000 (woman-special-characters): Add oq, cq, and hy characters.
22001
22002 2011-09-08 Martin Rudalics <rudalics@gmx.at>
22003
22004 * window.el (window-deletable-p): Make sure window is live before
22005 invoking window-prev-buffers.
22006
22007 2011-09-08 Leo Liu <sdl.web@gmail.com>
22008
22009 * net/rcirc.el (rcirc-cmd-invite): New rcirc command. (Bug#9453)
22010
22011 2011-09-08 Juri Linkov <juri@jurta.org>
22012
22013 * progmodes/compile.el (compilation-environment): Make it
22014 a defcustom (bug#8340).
22015
22016 2011-09-08 Martin Rudalics <rudalics@gmx.at>
22017
22018 * window.el (frame-auto-delete): Rename to window-auto-delete.
22019 Make it control auto-deletion of windows and/or frames.
22020 (window-deletable-p): New argument FORCE. Rewrite conditions
22021 for deleting window/frame. (Bug#9419)
22022 (switch-to-prev-buffer, replace-buffer-in-windows, quit-window):
22023 Rewrite handling of case when window/frame can be deleted.
22024 (delete-windows-on): Call window-deletable-p with new FORCE
22025 argument t. (Bug#9456)
22026
22027 2011-09-07 Chong Yidong <cyd@stupidchicken.com>
22028
22029 * help-mode.el (help-mode): Restore autoload.
22030
22031 2011-09-07 Juri Linkov <juri@jurta.org>
22032
22033 * progmodes/compile.el (compilation-start): Let-bind `thisenv' to
22034 `compilation-environment'. Set buffer-local
22035 `compilation-environment' to `thisenv' later after (funcall mode).
22036 (Bug#8340)
22037
22038 * vc/vc-git.el (vc-git-grep): Remove --no-color. (Bug#9408)
22039 (vc-git-grep): Prepend "PAGER=" to `compilation-environment'
22040 instead of replacing its value. (Bug#8340)
22041
22042 2011-09-07 Juri Linkov <juri@jurta.org>
22043
22044 * progmodes/grep.el (grep-regexp-alist): Calculate column positions
22045 based on text properties put by `grep-filter' instead of matching
22046 escape sequences.
22047 (grep-mode): Set buffer-local `compilation-error-screen-columns'
22048 to the value of `grep-error-screen-columns' (bug#9438).
22049
22050 2011-09-07 Juri Linkov <juri@jurta.org>
22051
22052 * simple.el (next-error-highlight, next-error-highlight-no-select):
22053 Doc fix (bug#9432).
22054
22055 2011-09-07 OKAZAKI Tetsurou <okazaki.tetsurou@gmail.com> (tiny change)
22056
22057 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
22058 Check for null c-opt-block-decls-with-vars-key. (Bug#9443)
22059
22060 2011-09-07 Leo Liu <sdl.web@gmail.com>
22061
22062 * net/rcirc.el (rcirc-mode): Conditionally initialize
22063 rcirc-input-ring.
22064
22065 2011-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
22066
22067 * emacs-lisp/find-func.el (find-function-C-source): Only set
22068 find-function-C-source-directory after checking that we found a source
22069 file there (bug#9440).
22070
22071 2011-09-06 Alan Mackenzie <acm@muc.de>
22072
22073 * isearch.el (isearch-other-meta-char): Wherever a key list is
22074 unread, "unread" the prefix arg, too. This fixes bug #8901.
22075
22076 2011-09-05 Oleksandr Gavenko <gavenkoa@gmail.com> (tiny change)
22077
22078 * progmodes/grep.el (rgrep): Add "-type d" (bug#9414).
22079
22080 2011-09-05 Juri Linkov <juri@jurta.org>
22081
22082 * progmodes/grep.el (grep-process-setup): Fix comments (bug#8084).
22083
22084 2011-09-05 Juri Linkov <juri@jurta.org>
22085
22086 * progmodes/grep.el (grep-filter): Avoid incomplete processing by
22087 keeping point where processing of grep matches begins, and
22088 continue to delete remaining escape sequences from the same point.
22089 (grep-filter): Make leading zero optional in "0?1;31m" because
22090 git-grep emits "\033[1;31m" escape sequences unlike expected
22091 "\033[01;31m" as GNU Grep does (bug#9408).
22092 (grep-process-setup): Replace obsolete "ml=" with newer "sl=".
22093
22094 2011-09-05 Juri Linkov <juri@jurta.org>
22095
22096 * subr.el (y-or-n-p): Capitalize "yes".
22097
22098 2011-09-04 Michael Albinus <michael.albinus@gmx.de>
22099
22100 * net/tramp.el (top): Require 'shell. Use `tramp-unload-hook' but
22101 `tramp-cache-unload-hook' where appropriate.
22102 (tramp-methods): Rename `tramp-remote-sh' to
22103 `tramp-remote-shell'. Add `tramp-remote-shell-args'.
22104 (tramp-handle-shell-command): New defun, moved from tramp-sh.el.
22105
22106 * net/tramp-sh.el (top): Don't require 'shell.
22107 (tramp-methods): Add `tramp-remote-shell' and
22108 `tramp-remote-shell-args' entries.
22109 (tramp-sh-file-name-handler-alist): Use `tramp-handle-shell-command'.
22110 (tramp-sh-handle-shell-command): Remove.
22111 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
22112 Use `tramp-remote-shell'.
22113
22114 2011-09-03 Chong Yidong <cyd@stupidchicken.com>
22115
22116 * mail/sendmail.el (sendmail-query-once-function): Delete.
22117 (sendmail-query-once): Save directly to send-mail-function.
22118 Update message-send-mail-function too.
22119
22120 * mail/smtpmail.el (smtpmail-try-auth-methods): Clarify prompt.
22121
22122 2011-09-03 Christoph Scholtes <cschol2112@googlemail.com>
22123
22124 * progmodes/python.el (python-mode-map): Use correct function to
22125 start python interpreter from menu-bar (as reported by Geert
22126 Kloosterman).
22127 (inferior-python-mode-map): Fix typo.
22128 (python-shell-map): Remove.
22129
22130 2011-09-03 Deniz Dogan <deniz@dogan.se>
22131
22132 * net/rcirc.el (rcirc-print): Simplify code for
22133 rcirc-scroll-show-maximum-output. There is no need to walk
22134 through all windows to find the right one.
22135
22136 2011-09-03 Christoph Scholtes <cschol2112@googlemail.com>
22137
22138 * help.el (help-return-method): Doc fix.
22139
22140 2011-09-03 Martin Rudalics <rudalics@gmx.at>
22141
22142 * window.el (window-deletable-p): Don't return a non-nil value
22143 when there's a buffer that was shown in the window before.
22144 (Bug#9419)
22145 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
22146 Set window's previous buffers to nil.
22147
22148 2011-09-03 Eli Zaretskii <eliz@gnu.org>
22149
22150 * mail/rmailmm.el (rmail-mime-insert-tagline): Insert an extra
22151 newline before and after the tag line, so it doesn't interfere
22152 with determining the paragraph direction of bidirectional text.
22153
22154 2011-09-03 Leo Liu <sdl.web@gmail.com>
22155
22156 * files.el (find-file-not-true-dirname-list): Remove. (Bug#9422)
22157
22158 2011-09-02 Chong Yidong <cyd@stupidchicken.com>
22159
22160 * window.el (pop-to-buffer-1, pop-to-buffer-same-window): Delete.
22161 (pop-to-buffer): Change interactive spec. Pass second argument
22162 directly to display-buffer.
22163 (display-buffer): Fix interactive spec. Use functionp to
22164 distinguish between a function and a list of functions.
22165
22166 * abbrev.el (edit-abbrevs):
22167 * arc-mode.el (archive-extract):
22168 * autoinsert.el (auto-insert):
22169 * bookmark.el (bookmark-bmenu-list):
22170 * files.el (find-file):
22171 * view.el (view-buffer):
22172 * progmodes/compile.el (compilation-goto-locus):
22173 * textmodes/bibtex.el (bibtex-initialize): Use switch-to-buffer.
22174
22175 2011-09-02 Chong Yidong <cyd@stupidchicken.com>
22176
22177 * window.el (display-buffer-alist): Doc fix.
22178 (display-buffer): Add docstring. Don't treat
22179 display-buffer-default specially.
22180 (display-buffer-reuse-selected-window)
22181 (display-buffer-same-window, display-buffer-maybe-same-window)
22182 (display-buffer-reuse-window, display-buffer-pop-up-frame)
22183 (display-buffer-pop-up-window)
22184 (display-buffer-reuse-or-pop-window)
22185 (display-buffer-use-some-window): New functions.
22186 (display-buffer-default-action): Use them.
22187 (display-buffer-default): Delete.
22188 (pop-to-buffer-1): Fix choice of actions.
22189
22190 2011-09-02 Stefan Monnier <monnier@iro.umontreal.ca>
22191
22192 * minibuffer.el (completion--insert-strings): Don't get confused by
22193 completion entries that end with an LF char.
22194
22195 2011-09-01 Eli Zaretskii <eliz@gnu.org>
22196
22197 * window.el (frame-auto-delete, window-deletable-p): Doc fix.
22198
22199 2011-09-01 Chong Yidong <cyd@stupidchicken.com>
22200
22201 * window.el (display-buffer): Restore interactive spec.
22202 (display-buffer-same-window, display-buffer-other-window):
22203 New functions.
22204 (pop-to-buffer-1): New function. Use the above.
22205 (pop-to-buffer, pop-to-buffer-same-window): Use it.
22206 (pop-to-buffer-other-window, pop-to-buffer-other-frame): Delete.
22207
22208 * view.el (view-buffer-other-window, view-buffer-other-frame):
22209 Just use pop-to-buffer.
22210
22211 2011-09-01 Thierry Volpiatto <thierry.volpiatto@gmail.com>
22212
22213 * vc/vc-rcs.el (vc-rcs-responsible-p): Handle directories. (Bug#9391)
22214
22215 2011-09-01 Wilfred Hughes <wilfred@potatolondon.com> (tiny change)
22216
22217 * vc/vc-git.el (vc-git-grep): Use --no-color. (Bug#9408)
22218
22219 2011-08-31 Richard Stallman <rms@gnu.org>
22220
22221 * mail/rmail.el (rmail-epa-decrypt): Rewrite to take account
22222 of the separation of rmail-view-buffer from rmail-buffer.
22223 If you say no to "replace original", the decrypt is in the
22224 view buffer. If you say yes, the decrypt goes into the
22225 rmail buffer also.
22226
22227 2011-08-31 Martin Rudalics <rudalics@gmx.at>
22228
22229 * window.el (display-buffer-window): Rewrite doc-string.
22230 (display-buffer-record-window): New function.
22231 (display-buffer-macro-specifiers)
22232 (display-buffer-even-window-sizes, display-buffer-set-height)
22233 (display-buffer-set-width, display-buffer-in-window)
22234 (display-buffer-reuse-window, display-buffer-split-specifiers)
22235 (display-buffer-side-specifiers, display-buffer-split-window-1)
22236 (display-buffer-split-window, display-buffer-split-atom-window)
22237 (display-buffer-pop-up-window, display-buffer-pop-up-frame)
22238 (display-buffer-pop-up-side-window, display-buffer-in-side-window)
22239 (display-buffer-other-window-means-other-frame)
22240 (display-buffer-normalize-special)
22241 (display-buffer-normalize-default)
22242 (display-buffer-normalize-argument)
22243 (display-buffer-normalize-alist-1, display-buffer-normalize-alist)
22244 (display-buffer-normalize-specifiers, display-buffer-frame)
22245 (display-buffer-same-window, display-buffer-same-frame)
22246 (display-buffer-other-window)
22247 (display-buffer-same-frame-other-window)
22248 (display-buffer-other-frame, pop-to-buffer-same-window)
22249 (pop-to-buffer-same-frame, pop-to-buffer-other-window)
22250 (pop-to-buffer-same-frame-other-window, pop-to-buffer-other-frame)
22251 (switch-to-buffer-same-frame)
22252 (switch-to-buffer-other-window-same-frame)
22253 (display-buffer-alist-of-strings-p, display-buffer-alist-add)
22254 (display-buffer-alist-set-1, display-buffer-alist-set-2)
22255 (display-buffer-alist-set): Remove.
22256 (display-buffer-function, special-display-buffer-names)
22257 (special-display-regexps, special-display-function):
22258 In doc-string refer to display-buffer-window and quit-restore
22259 parameter.
22260 (pop-up-frame-alist, pop-up-frame-function, special-display-p)
22261 (special-display-frame-alist, special-display-popup-frame)
22262 (same-window-buffer-names, same-window-regexps, same-window-p)
22263 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
22264 (split-window-preferred-function, split-height-threshold)
22265 (split-width-threshold, window-splittable-p)
22266 (split-window-sensibly, window--try-to-split-window)
22267 (window--frame-usable-p, even-window-heights)
22268 (window--even-window-heights, window--display-buffer-1)
22269 (window--display-buffer-2, display-buffer-other-frame):
22270 Restore old Emacs 23 code, order and doc-strings where applicable.
22271 (display-buffer-default, display-buffer-assq-regexp): New functions.
22272 (display-buffer-alist): Rewrite doc-string.
22273 (display-buffer-default-action)
22274 (display-buffer-overriding-action): New variables.
22275 (display-buffer, switch-to-buffer): Rewrite.
22276 (pop-to-buffer): Restore Emacs 23 behavior but use
22277 window-normalize-buffer-to-display.
22278 (switch-to-buffer-other-window, switch-to-buffer-other-frame):
22279 Restore Emacs 23 behavior but use
22280 window-normalize-buffer-to-switch-to.
22281 (pop-to-buffer-same-window): Rewrite.
22282 (pop-to-buffer-other-window, pop-to-buffer-other-frame):
22283 Rewrite using Emacs 23 options.
22284
22285 2011-08-31 Michael Albinus <michael.albinus@gmx.de>
22286
22287 * net/tramp.el (tramp-root-regexp): Remove.
22288 (tramp-completion-file-name-regexp-unified)
22289 (tramp-completion-file-name-regexp-separate)
22290 (tramp-completion-file-name-regexp-url): Don't use leading volume
22291 letter on w32 systems. (Bug#5303, Bug#9311)
22292 (tramp-drop-volume-letter): Simplify definition.
22293 Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
22294
22295 2011-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
22296
22297 * subr.el (event-modifiers): Fix "missing modifier" part of docstring
22298 (bug#9356).
22299
22300 2011-08-30 Reuben Thomas <rrt@sc3d.org> (tiny change)
22301
22302 * vc/pcvs-defs.el (cvs-find-file-and-jump): Docstring typo (bug#9369).
22303
22304 2011-08-29 Juri Linkov <juri@jurta.org>
22305
22306 * isearch.el (isearch-done): Don't display message "Mark saved"
22307 when arg `edit' is non-nil to prevent its flicker in the echo area.
22308
22309 2011-08-28 Chong Yidong <cyd@stupidchicken.com>
22310
22311 * emacs-lisp/package.el (package-menu-mark-delete): Allow marking
22312 obsolete packages for deletion.
22313
22314 2011-08-28 Christoph Scholtes <cschol2112@googlemail.com>
22315
22316 * help-mode.el (help-mode-map): Add special-mode-map to parent.
22317 (help-mode): Derive help-mode from special-mode. Don't invoke
22318 view-mode from help-mode.
22319 (help-xref-override-view-map): Remove.
22320 (help-make-xrefs): Remove minor-mode-overriding-map-alist since
22321 view-mode is not used anymore.
22322
22323 2011-08-28 Chong Yidong <cyd@stupidchicken.com>
22324
22325 * server.el (server-port): Doc fix.
22326
22327 * cus-theme.el (custom-theme-choose-mode): Inherit from
22328 special-mode (Bug#9124).
22329 (custom-theme-choose-mode-map): Add special-mode to parent.
22330
22331 2011-08-28 Alan Mackenzie <acm@muc.de>
22332
22333 * progmodes/cc-fonts.el
22334 (c-make-font-lock-BO-decl-search-function): New function.
22335 (c-basic-matchers-after - "Fontify the clauses after various
22336 keywords"): Extract the three keyword lists for the 3 erroneous
22337 constructs from the list of four, and use the new function above
22338 in place of an old one.
22339
22340 2011-08-28 Deniz Dogan <deniz@dogan.se>
22341
22342 * net/rcirc.el (rcirc-insert-prev-input)
22343 (rcirc-insert-next-input): Remove unused argument.
22344
22345 2011-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
22346
22347 * shell.el (shell-parse-pcomplete-arguments): Unquote args (bug#9160).
22348
22349 2011-08-27 Alan Mackenzie <acm@muc.de>
22350
22351 * progmodes/cc-menus.el (cc-imenu-c++-generic-expression): Make it
22352 handle function pointer parameters properly.
22353
22354 2011-08-27 Martin Rudalics <rudalics@gmx.at>
22355
22356 * window.el (display-buffer-reuse-window): Fix case where
22357 selected window was reused with non-nil OTHER-WINDOW argument.
22358 (Bug#9381)
22359
22360 2011-08-27 Deniz Dogan <deniz@dogan.se>
22361
22362 * net/rcirc.el (rcirc-check-auth-status): Adding support for
22363 oftc's NickServ messages.
22364
22365 2011-08-27 Glenn Morris <rgm@gnu.org>
22366
22367 * saveplace.el (save-place-limit): Make it finite. (Bug#9352)
22368
22369 2011-08-26 Chong Yidong <cyd@stupidchicken.com>
22370
22371 * emacs-lisp/package.el (package-install): Call package-initialize
22372 if called interactively.
22373
22374 2011-08-26 Leo Liu <sdl.web@gmail.com>
22375
22376 * emacs-lisp/cl-macs.el (defstruct): Fix format. (Bug#9357)
22377
22378 2011-08-25 Juri Linkov <juri@jurta.org>
22379
22380 * isearch.el (isearch-occur): Let-bind `search-spaces-regexp' to
22381 `search-whitespace-regexp' (bug#9364).
22382
22383 2011-08-25 Juri Linkov <juri@jurta.org>
22384
22385 * isearch.el (isearch-edit-string): Let-bind `search-ring' and
22386 `regexp-search-ring' to their global values to protect from
22387 updating by `read-from-minibuffer' (bug#9185).
22388
22389 2011-08-25 Juri Linkov <juri@jurta.org>
22390
22391 * textmodes/ispell.el (ispell-command-loop): Add newline
22392 at the end of the "Use option `i'..." line.
22393
22394 2011-08-25 Juri Linkov <juri@jurta.org>
22395
22396 * battery.el (display-battery-mode): If `battery-status-function'
22397 or `battery-mode-line-format' is nil, display the message and set
22398 `display-battery-mode' to nil (bug#9363).
22399
22400 2011-08-25 Eli Zaretskii <eliz@gnu.org>
22401
22402 * buff-menu.el (Buffer-menu-buffer+size): Remove calls to
22403 bidi-string-mark-left-to-right; they are unnecessary now.
22404
22405 2011-08-25 Deniz Dogan <deniz@dogan.se>
22406
22407 * net/quickurl.el: Documentation typo fixes.
22408
22409 2011-08-25 Chong Yidong <cyd@stupidchicken.com>
22410
22411 * window.el (bury-buffer, quit-window): Use bury-buffer-internal.
22412
22413 2011-08-25 Glenn Morris <rgm@gnu.org>
22414
22415 * emacs-lisp/derived.el (define-derived-mode): Doc fix.
22416
22417 * mail/smtpmail.el (smtpmail-smtp-user): Add version: tag.
22418 (smtpmail-via-smtp): Handle nil response from smtp.
22419
22420 2011-08-24 Juri Linkov <juri@jurta.org>
22421
22422 * proced.el (proced-marked): Inherit from `error' instead of
22423 `font-lock-warning-face'.
22424
22425 * ibuffer.el (ibuffer-marked-face): Change default face from
22426 `font-lock-warning-face' to `warning'.
22427 (ibuffer-deletion-face): Change default face from
22428 `font-lock-type-face' to `error'.
22429
22430 * battery.el (battery-update): Use the face `error' instead of
22431 `font-lock-warning-face' (bug#6117).
22432
22433 2011-08-24 Juri Linkov <juri@jurta.org>
22434
22435 * faces.el (success): Change face color from "Green3" to
22436 "ForestGreen" on light background (bug#9353).
22437
22438 2011-08-24 Chong Yidong <cyd@stupidchicken.com>
22439
22440 * window.el (quit-window): Rename from quit-restore-window.
22441 Use same arglist as old quit-window.
22442 (frame-auto-delete): Doc fix.
22443
22444 * view.el (view-mode-exit): Use quit-window.
22445
22446 2011-08-24 Juri Linkov <juri@jurta.org>
22447
22448 * isearch.el (isearch-ring-adjust1): Start visiting previous
22449 search strings from the index 0 (-1 + 1) instead of 1 (0 + 1).
22450 (isearch-repeat, isearch-edit-string): Call `isearch-ring-adjust1'
22451 for empty search string (when the last search string is reused
22452 automatically) to adjust the isearch ring to the last element and
22453 prepare the correct index for further M-p commands (bug#9185).
22454
22455 2011-08-24 Kenichi Handa <handa@m17n.org>
22456
22457 * international/ucs-normalize.el: If decomposition property of
22458 CHAR is the default one (i.e. a list of CHAR itself), treat it as
22459 nil.
22460 (nfd, nfkd): Likewise.
22461
22462 2011-08-24 Stefan Monnier <monnier@iro.umontreal.ca>
22463
22464 * mpc.el (mpc--proc-filter): Don't signal mpc-proc-error since signals
22465 from process filters aren't reliably transmitted to the surrounding
22466 accept-process-output.
22467 (mpc-proc-check): New function.
22468 (mpc-proc-sync): Use it (bug#8293)
22469
22470 2011-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
22471
22472 * emacs-lisp/eieio.el (eieio-defmethod, eieio-defgeneric):
22473 Add compatibility functions (bug#9313).
22474
22475 2011-08-23 Eli Zaretskii <eliz@gnu.org>
22476
22477 * cus-start.el (all): Add entry for bidi-paragraph-direction.
22478
22479 * international/uni-bidi.el: Regenerate.
22480
22481 2011-08-23 Kenichi Handa <handa@m17n.org>
22482
22483 * international/charprop.el:
22484 * international/uni-bidi.el:
22485 * international/uni-category.el:
22486 * international/uni-combining.el:
22487 * international/uni-comment.el:
22488 * international/uni-decimal.el:
22489 * international/uni-decomposition.el:
22490 * international/uni-digit.el:
22491 * international/uni-lowercase.el:
22492 * international/uni-mirrored.el:
22493 * international/uni-name.el:
22494 * international/uni-numeric.el:
22495 * international/uni-old-name.el:
22496 * international/uni-titlecase.el:
22497 * international/uni-uppercase.el: Regenerate.
22498
22499 2011-08-23 Martin Rudalics <rudalics@gmx.at>
22500
22501 * help.el (help-window-setup): Fix message displayed when other
22502 window is reused. (Bug#9341)
22503
22504 2011-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
22505
22506 * shell.el (shell-completion-vars): Set pcomplete-arg-quote-list.
22507 * pcomplete.el (pcomplete-quote-argument): Fix thinko (bug#9161).
22508
22509 * pcomplete.el (pcomplete-parse-comint-arguments): Fix inf-loop.
22510 Mark obsolete.
22511 * shell.el (shell-parse-pcomplete-arguments): New function.
22512 (shell-completion-vars): Use it instead (bug#9160).
22513
22514 2011-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
22515
22516 * progmodes/sh-script.el (sh-maybe-here-document): Disable magic in
22517 strings and comments (bug#9333).
22518
22519 * emacs-lisp/debug.el (debug-arglist): New function.
22520 (debug-convert-byte-code): Use it. Handle lexical byte-codes.
22521 (debug-on-entry-1): Handle interpreted closures (bug#9120).
22522
22523 2011-08-22 Juri Linkov <juri@jurta.org>
22524
22525 * progmodes/compile.el (compilation-mode-font-lock-keywords):
22526 Revert regexp that highlights output switches to its old
22527 pre-2010-10-28 value and remove one `?' from it (bug#9319).
22528
22529 * progmodes/grep.el (grep-process-setup): Use `buffer-modified-p'
22530 to check for empty output (bug#9226).
22531
22532 2011-08-22 Chong Yidong <cyd@stupidchicken.com>
22533
22534 * progmodes/scheme.el (scheme-mode-syntax-table): Don't use
22535 symbol-constituent as the default, as that stops font-lock from
22536 working properly (Bug#8843).
22537
22538 2011-08-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
22539
22540 * mail/smtpmail.el (smtpmail-via-smtp): Only bind
22541 `coding-system-for-*' around the process open call to avoid
22542 auth-source side effects.
22543 (smtpmail-try-auth-methods): Expand the secret password.
22544 (smtpmail-query-smtp-server): Allow `quit'-ing out in case the
22545 probe hangs.
22546
22547 2011-08-21 Chong Yidong <cyd@stupidchicken.com>
22548
22549 * term.el (term-mouse-paste): Yank primary selection (Bug#6845).
22550
22551 * emacs-lisp/find-func.el (find-function-noselect): New arg
22552 lisp-only.
22553
22554 * emacs-lisp/edebug.el (edebug-instrument-function): Use it to
22555 signal an error for built-in functions (Bug#6664).
22556
22557 2011-08-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
22558
22559 * mail/smtpmail.el (smtpmail-smtp-user): New variable.
22560 (smtpmail-try-auth-methods): Use it.
22561
22562 2011-08-21 Chong Yidong <cyd@stupidchicken.com>
22563
22564 * font-lock.el (font-lock-fontify-region)
22565 (font-lock-unfontify-region, font-lock-default-fontify-buffer)
22566 (font-lock-default-unfontify-buffer)
22567 (font-lock-default-fontify-region)
22568 (font-lock-default-unfontify-region): Add docstrings (Bug#8624).
22569
22570 * progmodes/compile.el (compilation-error-properties):
22571 Fix confusion between file struct and message struct (Bug#9319).
22572 (compilation-error-regexp-alist-alist): Fix 2011-05-09 change to
22573 `ant' regexp.
22574
22575 * net/browse-url.el (browse-url-firefox): Don't call
22576 browse-url-firefox-sentinel unless using -remote (Bug#9328).
22577
22578 2011-08-20 Glenn Morris <rgm@gnu.org>
22579
22580 * tutorial.el (help-with-tutorial): Avoid an error on short screens.
22581
22582 * tutorial.el (tutorial--default-keys): Update some default bindings.
22583
22584 * files.el (hack-local-variables): Fully ignore case for "mode:".
22585
22586 2011-08-20 Alan Mackenzie <acm@muc.de>
22587
22588 Resolve invalid use of a regexp in regexp-opt.
22589
22590 * progmodes/cc-fonts.el (c-complex-decl-matchers): Add in special
22591 detection for a java annotation.
22592
22593 * progmodes/cc-engine.el (c-forward-decl-or-cast-1): Add in special
22594 detection for a java annotation.
22595
22596 * progmodes/cc-langs.el (c-prefix-spec-kwds-re): Remove the special
22597 handling for java.
22598 (c-modifier-kwds): Remove the regexp "@[A-za-z0-9]+".
22599
22600 2011-08-20 Chong Yidong <cyd@stupidchicken.com>
22601
22602 * startup.el (normal-top-level-add-subdirs-to-load-path): Doc fix
22603 (Bug#9274).
22604
22605 2011-08-20 Alan Mackenzie <acm@muc.de>
22606
22607 Fontify CPP expressions correctly when starting in the middle of
22608 such a construct. Mainly for when jit-lock etc. starts a chunk
22609 here.
22610
22611 * progmodes/cc-fonts.el (c-font-lock-context): New buffer local
22612 variable.
22613 (c-make-font-lock-search-form): New function, extracted from
22614 c-make-font-lock-search-function.
22615 (c-make-font-lock-search-function): Use the above function.
22616 (c-make-font-lock-context-search-function): New function.
22617 (c-cpp-matchers): Enhance the preprocessor expression case with
22618 the above function
22619 (c-font-lock-complex-decl-prepare): Test for being in a CPP form
22620 which takes an expression.
22621
22622 * progmodes/cc-langs.el (c-cpp-expr-intro-re): New lang-variable.
22623
22624 2011-08-20 Martin Rudalics <rudalics@gmx.at>
22625
22626 * window.el (display-buffer-reuse-window)
22627 (display-buffer-pop-up-window): Don't reuse or split a side
22628 window.
22629
22630 2011-08-19 Glenn Morris <rgm@gnu.org>
22631
22632 * files.el (hack-local-variables-prop-line, hack-local-variables):
22633 Downcase "Mode:". (Bug#9331)
22634
22635 2011-08-18 Chong Yidong <cyd@stupidchicken.com>
22636
22637 * international/characters.el: Add L and R categories.
22638
22639 * subr.el (bidi-string-mark-left-to-right): Rename from
22640 string-mark-left-to-right. Use category search.
22641
22642 * buff-menu.el (Buffer-menu-buffer+size): Callers changed.
22643
22644 2011-08-18 Juri Linkov <juri@jurta.org>
22645
22646 * faces.el (error, warning, success): New faces with definitions
22647 copied from old default values of `font-lock-warning-face',
22648 `compilation-warning', `compilation-info' (bug#6117).
22649
22650 * font-lock.el (font-lock-warning-face): Inherit from `error'.
22651
22652 * progmodes/compile.el (compilation-error): Inherit from `error'.
22653 (compilation-warning): Inherit from `warning'.
22654 (compilation-info): Inherit from `success'.
22655
22656 * dired.el (dired-marked): Inherit from `warning'.
22657 (dired-flagged): Inherit from `error'.
22658
22659 2011-08-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
22660
22661 * mail/smtpmail.el (auth-source): Require to avoid problems with
22662 binding variables (bug#9298). Also clean up some unused
22663 autoloads.
22664
22665 * net/network-stream.el (network-stream-open-starttls):
22666 Support using starttls.el without using gnutls-cli.
22667
22668 2011-08-17 Juri Linkov <juri@jurta.org>
22669
22670 * progmodes/grep.el (rgrep): Handle the case when
22671 `grep-find-command' is a cons cell (bug#9278).
22672
22673 2011-08-17 Martin Rudalics <rudalics@gmx.at>
22674
22675 * window.el (display-buffer-pop-up-frame): Run frame creation
22676 function with BUFFER current (as special-display-popup-frame
22677 does). Reported by Drew Adams.
22678
22679 2011-08-17 Daiki Ueno <ueno@unixuser.org>
22680
22681 * epa-mail.el: Simplify GnuPG group expansion using
22682 epg-expand-group.
22683 (epa-mail-group-alist, epa-mail-group-modtime)
22684 (epa-mail-gnupg-conf-file, epa-mail-parse-groups)
22685 (epa-mail-sync-groups, epa-mail-expand-recipient-1)
22686 (epa-mail-expand-recipients-2, epa-mail-expand-recipients):
22687 Remove.
22688
22689 2011-08-16 Feng Li <fengli@gmail.com> (tiny change)
22690
22691 * calc/calc-ext.el (math-defintegral-2): Remove nested backquote.
22692
22693 2011-08-16 Alan Mackenzie <acm@muc.de>
22694
22695 * progmodes/cc-engine.el (c-state-cache-non-literal-place):
22696 Correct, to avoid the inside of macros.
22697
22698 2011-08-16 Richard Stallman <rms@gnu.org>
22699
22700 * epa-mail.el: Handle GnuPG group definitions.
22701 (epa-mail-group-alist, epa-mail-group-modtime)
22702 (epa-mail-gnupg-conf-file): New variables.
22703 (epa-mail-parse-groups, epa-mail-sync-groups)
22704 (epa-mail-expand-recipient-1, epa-mail-expand-recipients-2)
22705 (epa-mail-expand-recipients): New functions.
22706 (epa-mail-encrypt): Call epa-mail-expand-recipients.
22707
22708 * mail/rmail.el (rmail-epa-decrypt): New command.
22709
22710 * epa.el (epa-decrypt-region): New arg MAKE-BUFFER-FUNCTION.
22711 Don't bind buffer-read-only, just inhibit-read-only.
22712 (epa--find-coding-system-for-mime-charset): Fix the non-xemacs case.
22713 (epa-decrypt-armor-in-region): Make error message clearer.
22714
22715 2011-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
22716
22717 * minibuffer.el (completion-pcm--merge-completions): Don't merge "a1b"
22718 and "a2b" to "ab" for `prefix'.
22719
22720 2011-08-14 Chong Yidong <cyd@stupidchicken.com>
22721
22722 * ibuf-ext.el (ibuffer-filter-disable): New arg for deleting
22723 filter groups.
22724 (ibuffer-included-in-filter-p-1): Use it. Suggested by Rafaël
22725 Fourquet (Bug#8804).
22726
22727 2011-08-12 Juanma Barranquero <lekktu@gmail.com>
22728
22729 * startup.el (argi): Declare as global variable (bug#9275).
22730
22731 2011-08-12 Chong Yidong <cyd@stupidchicken.com>
22732
22733 * subr.el (string-mark-left-to-right): Search the entire string
22734 for RTL script, not just the terminating character. Doc fix.
22735
22736 2011-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
22737
22738 * progmodes/js.el (js-syntax-propertize, js-syntax-propertize-regexp):
22739 New function.
22740 (js--regexp-literal, js-syntax-propertize-function): Remove.
22741 (js-mode): Use js-syntax-propertize to handle multilines (bug#9183).
22742 (js-mode-map): Don't rebind electric keys.
22743 (js-insert-and-indent): Remove.
22744 (js-mode): Setup electric-layout and electric-indent instead.
22745
22746 * epa-file.el (epa-file-select-keys): Revert to nil default (bug#9280).
22747
22748 2011-08-12 Daiki Ueno <ueno@unixuser.org>
22749
22750 * epa.el (epa-progress-callback-function): Fix the logic of
22751 displaying progress.
22752 * epa-file.el (epa-file-insert-file-contents): Make progress
22753 display more user-friendly.
22754 (epa-file-write-region): Ditto.
22755
22756 2011-08-10 Chong Yidong <cyd@stupidchicken.com>
22757
22758 * subr.el (string-mark-left-to-right): New function.
22759
22760 * buff-menu.el (Buffer-menu-buffer+size): Remove LRM argument.
22761 Use string-mark-left-to-right.
22762 (list-buffers-noselect): Caller changed.
22763
22764 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
22765 Use string-mark-left-to-right.
22766 (tabulated-list-print): Recenter after moving point.
22767
22768 2011-08-10 Juri Linkov <juri@jurta.org>
22769
22770 * progmodes/grep.el (rgrep): Don't bind `process-connection-type'.
22771 This finishes incomplete reversion of 2011-06-30T01:09:13Z!larsi@gnus.org
22772 intended by 2011-07-06T15:49:19Z!larsi@gnus.org.
22773
22774 2011-08-09 Chong Yidong <cyd@stupidchicken.com>
22775
22776 * hi-lock.el (hi-lock-unface-buffer): Fix interactive spec
22777 (Bug#7554).
22778
22779 2011-08-09 Andreas Schwab <schwab@linux-m68k.org>
22780
22781 * xt-mouse.el (xterm-mouse-event-read): Try to recover the raw
22782 character. (Bug#6594)
22783
22784 2011-08-08 Chong Yidong <cyd@stupidchicken.com>
22785
22786 * image-dired.el: Don't use find-file for temporary work (Bug#7895).
22787 (image-dired--with-db-file): New macro.
22788 (image-dired-write-tags, image-dired-remove-tag)
22789 (image-dired-create-gallery-lists, image-dired-write-comments)
22790 (image-dired-get-comment, image-dired-mark-tagged-files)
22791 (image-dired-list-tags, image-dired-gallery-generate): Use it.
22792 (image-dired-gallery-generate): Use insert-file-contents.
22793
22794 * time.el (display-time-world-list, display-time-world-display):
22795 * time-stamp.el (time-stamp-string):
22796 * vc/add-log.el (add-change-log-entry): Use setenv instead of
22797 set-time-zone-rule (Bug#7337).
22798
22799 2011-08-08 Daiki Ueno <ueno@unixuser.org>
22800
22801 * epg.el (epg--status-KEYEXPIRED, epg--status-KEYREVOKED): Fix typo.
22802 (epg-error-to-string, epg-errors-to-string): New function.
22803 (epg-wait-for-completion): Reverse errors list.
22804 (epg--check-error-for-decrypt, epg-sign-file, epg-sign-string)
22805 (epg-encrypt-file, epg-encrypt-string, epg-export-keys-to-file)
22806 (epg--import-keys-1, epg-receive-keys, epg-delete-keys)
22807 (epg-sign-keys, epg-generate-key-from-file)
22808 (epg-generate-key-from-string): Format errors by using
22809 epg-errors-to-string (bug#9255).
22810 (epg--status-INV_SGNR, epg--status-NO_SGNR): New status handler.
22811
22812 2011-08-07 Juri Linkov <juri@jurta.org>
22813
22814 * faces.el (list-faces-display): Remove extra angle bracket
22815 from `help-mode-map'.
22816
22817 * info.el (Info-history-toc-nodes): Doc fix.
22818
22819 * longlines.el (longlines-mode): Doc fix.
22820
22821 2011-08-05 Stefan Monnier <monnier@iro.umontreal.ca>
22822
22823 * progmodes/js.el (js--regexp-literal): Accept regexps at the beginning
22824 of statements and in a few more cases (bug#9183).
22825
22826 * emacs-lisp/cl-macs.el (cl--make-usage-var, cl--make-usage-args):
22827 New functions.
22828 (cl-transform-lambda): Use them (bug#9239).
22829
22830 2011-08-05 Martin Rudalics <rudalics@gmx.at>
22831
22832 * window.el (display-buffer-same-window)
22833 (display-buffer-same-frame, display-buffer-other-window)
22834 (pop-to-buffer-same-window, pop-to-buffer-same-frame)
22835 (pop-to-buffer-other-window)
22836 (pop-to-buffer-same-frame-other-window)
22837 (pop-to-buffer-other-frame): Make them defuns.
22838 (switch-to-buffer): Don't set LABEL argument of pop-to-buffer.
22839
22840 2011-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
22841
22842 * subr.el (make-composed-keymap): Move from C. Change calling
22843 convention, and improve docstring to bring attention to a subtle point.
22844 * minibuffer.el (completing-read-default): Adjust accordingly.
22845
22846 2011-08-03 Michael Albinus <michael.albinus@gmx.de>
22847
22848 * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell)
22849 (tramp-open-shell): Use `tramp-shell-quote-argument'.
22850
22851 * net/trampver.el: Update release number.
22852
22853 2011-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
22854
22855 * progmodes/sh-script.el (sh-font-lock-paren): Don't mistake "main" for
22856 "in" (bug#9190).
22857
22858 2011-08-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
22859
22860 * mail/sendmail.el (sendmail-query-once): Restore the current
22861 buffer after querying (bug#9074).
22862
22863 * dired.el (dired-flagged): Use different faces for marked and
22864 flagged files (bug#6117).
22865
22866 * emacs-lisp/cl-macs.el (dolist): Mention that there's a nil block
22867 (bug#4433).
22868
22869 * ido.el (ido-mode): Switch off the message if called
22870 non-interactively.
22871
22872 * mail/smtpmail.el (smtpmail-query-smtp-server): Try port 25
22873 before 587, since it appears that that's more likely to work for
22874 more people.
22875
22876 * cus-edit.el (custom-file): When running under emacs -q, always
22877 refuse to save the customizations, even if the .emacs file doesn't
22878 exist.
22879
22880 * info.el: Remove the `Info-beginning-of-buffer' function
22881 (bug#8325).
22882
22883 * net/network-stream.el (network-stream-open-starttls):
22884 Use `starttls-available-p' to see whether starttls.el can be used.
22885
22886 2011-08-01 Martin Rudalics <rudalics@gmx.at>
22887
22888 * window.el (display-buffer-in-window): Don't set dedicated status
22889 of window here (Bug#9215).
22890 (display-buffer-pop-up-window, display-buffer-pop-up-frame)
22891 (display-buffer-pop-up-side-window)
22892 (display-buffer-in-side-window): Set dedicated status of window here.
22893
22894 2011-08-01 Stefan Monnier <monnier@iro.umontreal.ca>
22895
22896 * emacs-lisp/package.el (package-generate-autoloads): Load autoloads
22897 before binding generated-autoload-file.
22898
22899 2011-08-01 Deniz Dogan <deniz@dogan.se>
22900
22901 * net/rcirc.el (rcirc-handler-333): Clarify docstring.
22902
22903 2011-07-30 Michael Albinus <michael.albinus@gmx.de>
22904
22905 Sync with Tramp 2.2.2.
22906
22907 * net/trampver.el: Update release number.
22908
22909 2011-07-30 Juri Linkov <juri@jurta.org>
22910
22911 * dired-aux.el (dired-touch-initial): Remove function.
22912 (dired-do-chxxx): For op-symbol `touch', set `initial' to the
22913 current time, and `default' to the last modification time of the
22914 current marked file (bug#6887).
22915
22916 2011-07-28 Jose E. Marchesi <jemarch@gnu.org>
22917
22918 * simple.el (goto-line): Use string-to-number to provide a
22919 numeric argument to read-number (bug#9163).
22920
22921 2011-07-27 Michael Albinus <michael.albinus@gmx.de>
22922
22923 * net/tramp-sh.el (tramp-maybe-send-script): Don't let-bind the
22924 connection process, it could be nil.
22925
22926 2011-07-27 Leo Liu <sdl.web@gmail.com>
22927
22928 Simplify url handling in rcirc-mode.
22929
22930 * net/rcirc.el (rcirc-browse-url-map, rcirc-browse-url-at-point)
22931 (rcirc-browse-url-at-mouse): Remove.
22932 * net/rcirc.el (rcirc-markup-urls): Use `make-button'.
22933
22934 2011-07-26 Alan Mackenzie <acm@muc.de>
22935
22936 Fontify bitfield declarations properly.
22937
22938 * progmodes/cc-langs.el (c-has-bitfields): New lang variable.
22939 (c-symbol-chars): Now exported as a lang variable.
22940 (c-not-primitive-type-keywords): New lang variable.
22941
22942 * progmodes/cc-fonts.el (c-font-lock-declarations): Jump over the
22943 QT keyword "more" to prevent "more slots: ...." being spuriously
22944 parsed as a bitfield declaration.
22945
22946 * progmodes/cc-engine.el (c-beginning-of-statement-1):
22947 Refactor and enhance to handle bitfield declarations.
22948 (c-punctuation-in): New function.
22949 (c-forward-decl-or-cast-1): Enhance CASE 3 to handle bitfield
22950 declarations properly.
22951
22952 2011-07-26 Ulf Jasper <ulf.jasper@web.de>
22953
22954 * calendar/icalendar.el (icalendar--all-events): Take care of
22955 multiple vcalendars in a single file.
22956 (icalendar--convert-float-to-ical): Checkdoc fixes.
22957
22958 2011-07-25 Deniz Dogan <deniz@dogan.se>
22959
22960 * image.el (insert-image): Clarifying docstring.
22961
22962 2011-07-24 Michael Albinus <michael.albinus@gmx.de>
22963
22964 * net/tramp-sh.el (tramp-barf-unless-okay): Return the value of
22965 `tramp-send-command-and-check' if there is no error.
22966 (tramp-send-command-and-read): Suppress *all* errors if NOERROR.
22967
22968 2011-07-22 Alan Mackenzie <acm@muc.de>
22969
22970 Prevent cc-langs.elc being loaded at run time.
22971
22972 * progmodes/cc-mode.el: Remove two autoload forms which loaded
22973 cc-langs.
22974
22975 * progmodes/cc-langs.el (c-make-init-lang-vars-fun): Don't emit
22976 "(require 'cc-langs)". Quote a form so it will evaluate at
22977 (cc-mode's) compilation time.
22978
22979 2011-07-22 Michael Albinus <michael.albinus@gmx.de>
22980
22981 * net/tramp.el (tramp-file-name-handler): Avoid recursive
22982 loading. (Bug#9114)
22983
22984 2011-07-21 Martin Rudalics <rudalics@gmx.at>
22985
22986 * window.el (display-buffer-pop-up-window)
22987 (display-buffer-pop-up-side-window)
22988 (display-buffer-in-side-window): Call display-buffer-set-height
22989 and display-buffer-set-width after setting the new window's
22990 buffer so `fit-window-to-buffer' and friends work on the right buffer.
22991
22992 2011-07-20 Sam Steingold <sds@gnu.org>
22993
22994 * progmodes/etags.el (etags-file-of-tag, etags-tags-table-files)
22995 (etags-tags-included-tables): Call `convert-standard-filename' on
22996 the file names contained in TAGS so that windows Emacs can handle
22997 TAGS files created by cygwin ctags.
22998
22999 2011-07-20 Lars Magne Ingebrigtsen <larsi@gnus.org>
23000
23001 * proced.el (proced-update): Revert yesterday's bug#1779 patch,
23002 which apparently didn't work.
23003
23004 2011-07-19 Roland Winkler <winkler@gnu.org>
23005
23006 * proced.el (proced-send-signal): For *Marked Processes* buffer
23007 put point at beginning of buffer.
23008
23009 2011-07-19 Stephen Berman <stephen.berman@gmx.net>
23010
23011 * proced.el (proced-format): Make header lines align with the text
23012 (bug#1779).
23013
23014 2011-07-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
23015
23016 * view.el (view-buffer): Allow running in `special' modes if we're
23017 visiting a file (bug#8615).
23018
23019 2011-07-19 Martin Rudalics <rudalics@gmx.at>
23020
23021 * window.el (display-buffer-alist-of-strings-p)
23022 (display-buffer-alist-set-1, display-buffer-alist-set-2):
23023 New functions.
23024 (display-buffer-alist-set): Rewrite to handle Emacs 23 options
23025 more accurately.
23026
23027 2011-07-18 Alan Mackenzie <acm@muc.de>
23028
23029 Fontify declarators properly when, e.g., a jit-lock chunk begins
23030 inside a declaration.
23031
23032 * progmodes/cc-langs.el (c-symbol-chars): Correct a typo.
23033
23034 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
23035 New function.
23036 (c-complex-decl-matchers): Insert reference to
23037 c-font-lock-enclosing-decls.
23038
23039 * progmodes/cc-engine.el (c-backward-single-comment):
23040 (c-backward-comments): Bind open-paren-in-column-0-is-defun-start
23041 to nil around calls to (forward-comment -1).
23042
23043 2011-07-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
23044
23045 * image.el (put-image): Doc typo fix.
23046
23047 * progmodes/etags.el (tags-search): Doc typo fix.
23048
23049 * mail/smtpmail.el (smtpmail-via-smtp): Query the user for
23050 password if we get errors 550 to 554.
23051
23052 2011-07-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
23053
23054 * net/gnutls.el (gnutls-log-level): Remove.
23055
23056 * textmodes/fill.el (adaptive-fill-regexp): Include EN DASH as an
23057 indentation character (bug#6380).
23058
23059 * files.el (buffer-offer-save): Made permanently local (bug#6241).
23060
23061 * doc-view.el (doc-view-make-safe-dir): Rewrite the error message
23062 to clarify what the problem is (bug#4291).
23063
23064 * simple.el (current-kill): Clarify what
23065 `interprogram-paste-function' does (bug#7500).
23066 (auto-fill-mode): Document `auto-fill-function' in relation to
23067 `auto-fill-mode' (bug#2470).
23068
23069 2011-07-16 Lawrence Mitchell <wence@gmx.li>
23070
23071 * emacs-lisp/cl-macs.el (defstruct): Ignore argument to setf
23072 method if slot is read-only (bug#9035).
23073
23074 2011-07-16 Martin Rudalics <rudalics@gmx.at>
23075
23076 * frame.el (select-frame-set-input-focus): New argument NORECORD.
23077 * window.el (pop-to-buffer): Select window used even if it was
23078 selected before, see discussion of (Bug#8615), (Bug#6954).
23079 Pass argument NORECORD on to select-frame-set-input-focus.
23080
23081 2011-07-15 Glenn Morris <rgm@gnu.org>
23082
23083 * subr.el (read-char-choice): Allow quitting. (Bug#9001)
23084 Respect help-form.
23085
23086 2011-07-09 Lawrence Mitchell <wence@gmx.li>
23087
23088 * net/gnutls.el (gnutls-min-prime-bits): New variable.
23089 (gnutls-negotiate): Use it.
23090
23091 2011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
23092
23093 * net/gnutls.el (gnutls-negotiate):
23094 Upcase `gnutls-algorithm-priority'.
23095
23096 2011-07-15 Glenn Morris <rgm@gnu.org>
23097
23098 * jka-compr.el (jka-compr-verbose): Move from here...
23099 * jka-cmpr-hook.el (jka-compr-verbose): ... to here. (Bug#9090)
23100 Add missing :version tag.
23101 * info.el: No need to require jka-compr when compiling.
23102
23103 2011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
23104
23105 * net/gnutls.el (gnutls-algorithm-priority): New variable.
23106 (gnutls-negotiate): Use it.
23107
23108 * emacs-lisp/cl-macs.el (declare): Link to the "Declarations" node.
23109
23110 * info.el (Info-beginning-of-buffer): New command.
23111 (Info-mode-map): Use it instead of `beginning-of-buffer' to allow
23112 announcing `b' as the key (bug#8325).
23113 (Info-mode-menu): Use `Info-beginning-of-buffer' for consistency.
23114
23115 * emacs-lisp/cl-macs.el (declare): Doc string fix-up.
23116
23117 * international/mule-cmds.el
23118 (describe-specified-language-support): Make the error message
23119 clearer (bug#8905).
23120
23121 * emacs-lisp/cl-macs.el (declare): Add a doc string (bug#8690).
23122
23123 * isearch.el (isearch-barrier): Add a doc string, since it's
23124 mentioned in a function doc string (bug#8678).
23125
23126 2011-07-15 Martin Rudalics <rudalics@gmx.at>
23127
23128 * window.el (switch-to-buffer): Call pop-to-buffer with normalized
23129 buffer argument (Bug#9083) and self-identifying label argument.
23130
23131 2011-07-15 Glenn Morris <rgm@gnu.org>
23132
23133 * emacs-lisp/debug.el (debug): Doc fix. (Bug#8273)
23134
23135 2011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
23136
23137 * man.el (Man-fontify-manpage): Fix message when formatting the
23138 man page (bug#7929).
23139
23140 2011-07-14 Eli Zaretskii <eliz@gnu.org>
23141
23142 * buff-menu.el (Buffer-menu-buffer+size): Accept an additional
23143 argument LRM; if non-nil, append an invisible LRM character to the
23144 buffer name.
23145 (list-buffers-noselect): Call Buffer-menu-buffer+size with the
23146 last argument non-nil, when formatting buffer names.
23147 (Buffer-menu-mode, list-buffers-noselect): Force left-to-right
23148 paragraph direction.
23149
23150 2011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
23151
23152 * man.el (Man-bgproc-sentinel): Skip any arguments and only output
23153 the man page name (bug#7929).
23154
23155 * image.el (put-image): Mention the `put-image' overlay property
23156 (bug#7834).
23157
23158 * scroll-bar.el (set-scroll-bar-mode): Mention that
23159 `scroll-bar-mode' lists the values (bug#7772).
23160
23161 * image-mode.el (image-mode-fit-frame): Mention that it's a toggle
23162 command (bug#7729).
23163
23164 * rect.el (apply-on-rectangle): Return the point after the last
23165 operation.
23166 (string-rectangle): Go to the point after the last operation
23167 (bug#7522).
23168
23169 * printing.el (pr-toggle-region): Clarify the documentation
23170 slightly (bug#7493).
23171
23172 * time.el (display-time-update):
23173 Allow `display-time-mail-function' to return nil (bug#7158).
23174 Fix suggested by Detlev Zundel.
23175
23176 * vc/diff.el (diff): Clarify the order the file names are read
23177 (bug#7111).
23178
23179 * mouse.el (mouse-set-region): Link to `mouse-drag-copy-region' in
23180 the doc string (bug#7015).
23181
23182 * font-lock.el (font-lock-maximum-decoration): Mention what
23183 numeric levels mean (bug#6935).
23184
23185 * startup.el (initial-buffer-choice): Don't mention the `none'
23186 selection, which is against policy.
23187
23188 2011-07-14 Martin Rudalics <rudalics@gmx.at>
23189
23190 * window.el (display-buffer-normalize-special):
23191 Replace `dedicated' by `dedicate' to dedicate window (Bug#9072).
23192
23193 2011-07-14 Eli Zaretskii <eliz@gnu.org>
23194
23195 * subr.el (version<, version<=, version=): Mention "-CVS" and
23196 "-12345" alpha version numbers.
23197
23198 2011-07-14 Chong Yidong <cyd@stupidchicken.com>
23199
23200 * bindings.el: Add advertised binding for set-mark-command
23201 (Bug#5772).
23202
23203 2011-07-14 Chong Yidong <cyd@stupidchicken.com>
23204
23205 * bindings.el (mode-line-other-buffer):
23206 * bookmark.el (bookmark-bmenu-2-window):
23207 * bs.el (bs-cycle-next, bs-cycle-previous):
23208 * net/tramp-cmds.el (tramp-append-tramp-buffers): Revert to using
23209 switch-to-buffer.
23210
23211 * net/tramp-compat.el (tramp-compat-pop-to-buffer-same-window):
23212 Delete.
23213
23214 2011-07-14 Juanma Barranquero <lekktu@gmail.com>
23215
23216 * follow.el (follow-debug-message, follow-redisplay):
23217 * jka-cmpr-hook.el (with-auto-compression-mode):
23218 Fix typos in docstrings.
23219
23220 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
23221
23222 * subr.el (with-silent-modifications): Clarify somewhat what the
23223 macro inhibits (bug#6525).
23224
23225 * simple.el (eval-expression): Note what it does if called
23226 interactively (bug#6495).
23227
23228 2011-07-13 Chong Yidong <cyd@stupidchicken.com>
23229
23230 * window.el (switch-to-buffer): New arg FORCE-SAME-WINDOW.
23231 Use pop-to-buffer buffer-or-name if it is nil.
23232
23233 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
23234 Remove switch-to-buffer.
23235
23236 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
23237
23238 * files.el (make-directory): Clarify that an error will be raised
23239 if there's an error (bug#6397).
23240
23241 * startup.el (initial-buffer-choice): Add `none' as a choice
23242 (bug#6234).
23243
23244 * subr.el (add-hook): Clarify section about buffer-local hooks
23245 (bug#6218).
23246
23247 * dired.el (dired-flagged): Clarify doc string (bug#6117).
23248
23249 2011-07-13 Juanma Barranquero <lekktu@gmail.com>
23250
23251 * tabify.el (untabify): Preserve the current column so that point
23252 doesn't move (bug#6032).
23253
23254 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
23255
23256 * progmodes/cperl-mode.el (cperl-syntaxify-by-font-lock):
23257 Rewrite to avoid awkward possessive "s" (bug#5986).
23258
23259 2011-07-13 Glenn Morris <rgm@gnu.org>
23260
23261 * dired.el (dired-use-ls-dired): Doc fix. (Bug#9039).
23262 (dired-insert-directory): Give a message the first time
23263 if ls is found not to support --dired.
23264
23265 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
23266
23267 * simple.el (toggle-truncate-lines): Clarify what is toggled
23268 (bug#5580). Text by Drew Adams.
23269
23270 2011-07-13 Chong Yidong <cyd@stupidchicken.com>
23271
23272 * simple.el (blink-matching-open): Make the error message from the
23273 last change less verbose.
23274
23275 2011-07-13 Dan Nicolaescu <dann@ics.uci.edu>
23276
23277 * font-lock.el (font-lock-comment-face): Use the high contrast
23278 "yellow" color for font-lock-comment-face on low color terminals
23279 using a dark background color (bug#4221).
23280
23281 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
23282
23283 * dired.el (dired-insert-set-properties): Make the doc string
23284 reflect what it does now (bug#5325).
23285
23286 * simple.el (blink-matching-open): Say that we were unable to find
23287 the match within the limit, if we're limited (bug#5122).
23288
23289 * international/mule-cmds.el (prefer-coding-system): Add an
23290 example (bug#4869).
23291
23292 * progmodes/etags.el (tags-search): Document `file-list-form'
23293 (bug#4731).
23294
23295 2011-07-13 Lawrence Mitchell <wence@gmx.li>
23296
23297 * net/browse-url.el (browse-url-default-browser)
23298 (browse-url-browser-function): Make the default browser choice a
23299 bit more logical (bug#4300). Also clean up the doc string.
23300
23301 2011-07-13 Juanma Barranquero <lekktu@gmail.com>
23302
23303 * bindings.el (completion-ignored-extensions): Add OpenMCL/Clozure
23304 binary endings (bug#4440).
23305
23306 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
23307
23308 * info.el (info-insert-file-contents): Inhibit jka-compr messages,
23309 which can be pretty annoying (bug#8971).
23310
23311 * jka-compr.el (jka-compr-verbose): New variable, and use
23312 throughout (bug#8971).
23313
23314 * info.el (Info-find-file): Fall back on the installation
23315 directory if we can't find the info node anywhere else.
23316
23317 2011-07-13 Sergei Organov <osv@javad.com> (tiny change)
23318
23319 * vc/vc.el (vc-revert-file):
23320 Don't set file time-stamp in the past. (Bug#5181)
23321
23322 2011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
23323
23324 * files.el (after-find-file): Give a better error message when
23325 trying to find a symlink that points to a file that doesn't exist
23326 (bug#4398).
23327
23328 * progmodes/cc-vars.el: Remove (probably) misleading comment
23329 (bug#4396).
23330
23331 2011-07-12 Johan Bockgård <bojohan@gnu.org>
23332
23333 * mouse-sel.el (mouse-sel-primary-overlay): Use the `region' face.
23334
23335 2011-07-12 Chong Yidong <cyd@stupidchicken.com>
23336
23337 * mouse-sel.el: Hack restoring functionality, while keeping
23338 compatibility with 2010-07-03 changes to mouse selection.
23339 (mouse-sel-primary-overlay): New var.
23340 (mouse-sel-selection-alist): Use it.
23341 (mouse-sel-mode): Doc fix; remove points that are default features
23342 of mouse.el.
23343
23344 2011-07-12 Johan Bockgård <bojohan@gnu.org>
23345
23346 * progmodes/compile.el (compilation-error-regexp-alist-alist):
23347 Fix previous fix (bug#2490).
23348
23349 2011-07-12 Roland Winkler <winkler@gnu.org>
23350
23351 * textmodes/bibtex.el (bibtex-initialize):
23352 Use pop-to-buffer-same-window.
23353 (bibtex-search-entries): Fix interactive call.
23354
23355 2011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
23356
23357 * progmodes/compile.el (compilation-error-regexp-alist-alist):
23358 Fontise bytecomp Error lines more correctly (bug#2490).
23359 Fix suggested by Johan Bockgård.
23360
23361 * subr.el (remove-duplicates): Remove; `delete-dups' is sufficient.
23362
23363 * dired-x.el (dired-guess-default): Use `delete-dups'.
23364
23365 2011-07-12 Chong Yidong <cyd@stupidchicken.com>
23366
23367 * dired.el (dired-mark-prompt):
23368 * dired-aux.el (dired-read-shell-command): Doc fix.
23369
23370 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
23371
23372 * mail/sendmail.el (sendmail-query-once):
23373 Use `customize-save-variable' unconditionally, now that it works under
23374 emacs -Q.
23375
23376 * mail/smtpmail.el (smtpmail-query-smtp-server): Ditto.
23377
23378 * cus-edit.el (custom-file): Take an optional no-error variable.
23379 (customize-save-variable): Set the variable, and give a warning if
23380 running under "emacs -q".
23381
23382 2011-07-11 Juanma Barranquero <lekktu@gmail.com>
23383
23384 * loadhist.el (unload-feature-special-hooks):
23385 Add `auto-coding-functions', `fill-nobreak-predicate' and
23386 `find-directory-functions' (bug#5327).
23387
23388 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
23389
23390 * vc/ediff.el (ediff-patch-file): Clarify doc string (bug#3138).
23391
23392 * cus-edit.el (custom-guess-name-alist): -alist variables should
23393 use the `alist' type (bug#3120). Suggested by Drew Adams.
23394
23395 * printing.el: Add documentation to all the `pr-toggle-' commands.
23396
23397 2011-07-11 Leo Liu <sdl.web@gmail.com>
23398
23399 * files.el (toggle-read-only): Only do the `C-x C-q' warning on VC
23400 backends where it makes sense (bug#2623).
23401
23402 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
23403
23404 * dired-x.el (dired-guess-default): Remove duplicate shell command
23405 entries (bug#2028).
23406 (dired-guess-default): Fix grammar in doc string (bug#2028).
23407 (dired-guess-shell-alist-user): Clarify the example a bit (bug#2030).
23408
23409 * subr.el (remove-duplicates): New conveniency function.
23410
23411 2011-07-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
23412
23413 * tool-bar.el (tool-bar-mode): Clarify positive/negative arguments
23414 (bug#1526).
23415
23416 2011-07-10 Martin Rudalics <rudalics@gmx.at>
23417
23418 * window.el (display-buffer-normalize-default): Don't invert
23419 meaning of even-window-heights. Reported by Eli Zaretskii
23420 <eliz@gnu.org>.
23421
23422 2011-07-10 Bob Rogers <rogers@rgrjr.dyndns.org>
23423
23424 * vc/vc.el (vc-diff-internal): Fix race condition (Bug#1256).
23425
23426 2011-07-10 Chong Yidong <cyd@stupidchicken.com>
23427
23428 * window.el (display-buffer): Fix arguments to
23429 display-buffer-reuse-window in last change.
23430
23431 * faces.el (link): Use a less saturated blue on light backgrounds.
23432
23433 * startup.el (fancy-startup-text, fancy-about-text)
23434 (fancy-startup-tail): Use font-lock faces, for background safety.
23435
23436 2011-07-09 Bob Nnamtrop <bobnnamtrop@gmail.com> (tiny change)
23437
23438 * emulation/viper-cmd.el (viper-change-state-to-vi):
23439 Limit triggering of abbrev expansion (Bug#9038).
23440
23441 2011-07-09 Martin Rudalics <rudalics@gmx.at>
23442
23443 * window.el (display-buffer-default-specifiers): Remove.
23444 (display-buffer-macro-specifiers): Remove default specifiers.
23445 (display-buffer-alist): Default to nil.
23446 (display-buffer-reuse-window): New optional argument other-window.
23447 (display-buffer-pop-up-window): Allow splitting internal
23448 windows. Check whether a live window was created.
23449 (display-buffer-other-window-means-other-frame)
23450 (display-buffer-normalize-arguments): Rename to
23451 display-buffer-normalize-argument and rewrite. Set the
23452 other-window specifier.
23453 (display-buffer-normalize-special): New function.
23454 (display-buffer-normalize-options): Rename to
23455 display-buffer-normalize-default and rewrite.
23456 (display-buffer-normalize-options-inhibit): Remove.
23457 (display-buffer-normalize-specifiers): Rewrite.
23458 (display-buffer): Process other-window specifier and call
23459 display-buffer-reuse-window with it. Emulate Emacs 23 behavior
23460 more faithfully.
23461 (pop-up-windows, even-window-heights): Restore Emacs 23 default values.
23462 (display-buffer-alist-set): Don't handle 'unset default values.
23463 (display-buffer-in-window, display-buffer-alist-set):
23464 Replace symbol "dedicated" by "dedicate". Reported by Tassilo Horn
23465 <tassilo@member.fsf.org>.
23466
23467 2011-07-09 Leo Liu <sdl.web@gmail.com>
23468
23469 * register.el (insert-register): Restore accidental change on
23470 2011-06-26. (Bug#9028)
23471
23472 2011-07-09 Glenn Morris <rgm@gnu.org>
23473
23474 * subr.el (remq): Handle the empty list. (Bug#9024)
23475
23476 2011-07-08 Andreas Schwab <schwab@linux-m68k.org>
23477
23478 * mail/sendmail.el (send-mail-function): No longer delay custom
23479 initialization.
23480 * custom.el (custom-initialize-delay): Doc fix.
23481
23482 2011-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
23483
23484 * abbrev.el (expand-abbrev): Try to preserve point (bug#5805).
23485
23486 2011-07-08 Michael Albinus <michael.albinus@gmx.de>
23487
23488 * net/tramp-sh.el (tramp-sh-handle-start-file-process): Use a
23489 human-friendly prompt.
23490
23491 2011-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
23492
23493 * vc/vc-bzr.el (vc-bzr-revision-keywords): Remove svn, it's only
23494 provided by a particular plugin.
23495
23496 2011-07-08 Lars Magne Ingebrigtsen <larsi@gnus.org>
23497
23498 * mail/sendmail.el (sendmail-query-once): If we aren't allowed to
23499 save customizations (with "emacs -Q"), just set the variable
23500 instead of erroring out.
23501
23502 * mail/smtpmail.el (smtpmail-query-smtp-server): Ditto.
23503
23504 2011-07-08 Juri Linkov <juri@jurta.org>
23505
23506 * arc-mode.el (archive-zip-expunge, archive-zip-update)
23507 (archive-zip-update-case): Use 7z if found by `executable-find'.
23508 The order of searching the available programs is the same as in
23509 `archive-zip-extract' (bug#8968).
23510
23511 2011-07-07 Chong Yidong <cyd@stupidchicken.com>
23512
23513 * menu-bar.el (menu-bar-line-wrapping-menu): Revert last change.
23514 (menu-bar-options-menu): Tweak descriptions.
23515
23516 2011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
23517
23518 * menu-bar.el (menu-bar-line-wrapping-menu): Make all the Options
23519 menu items into verb phrases (bug#1421). Also refill to fit under
23520 80 columns.
23521
23522 2011-07-07 Chong Yidong <cyd@stupidchicken.com>
23523
23524 * info.el (info, Info-read-node-name-2, Info-read-node-name-1)
23525 (Info-read-node-name): Doc fix (Bug#1084).
23526
23527 * thingatpt.el (forward-thing, bounds-of-thing-at-point)
23528 (thing-at-point, beginning-of-thing, end-of-thing, in-string-p)
23529 (end-of-sexp, beginning-of-sexp)
23530 (thing-at-point-bounds-of-list-at-point, forward-whitespace)
23531 (forward-symbol, forward-same-syntax, word-at-point)
23532 (sentence-at-point): Doc fix (Bug#1144).
23533
23534 2011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
23535
23536 * info.el (Info-mode-map): Remove S-TAB binding, since [backtab]
23537 should cover it (bug#1281).
23538
23539 * cus-edit.el (custom-show): Mark as obsolete.
23540
23541 * net/network-stream.el (network-stream-open-starttls): If GnuTLS
23542 negotiation fails, then possibly try again with a non-encrypted
23543 connection (bug#9017).
23544
23545 * mail/smtpmail.el (smtpmail-stream-type): Note that `plain' can
23546 be used.
23547
23548 2011-07-07 Richard Stallman <rms@gnu.org>
23549
23550 * mail/rmail.el (rmail-next-error-move): Use `compilation-message'
23551 property, and handle its changed format.
23552 Look for the correct line number.
23553 Use file's line contents (but not past first =) to find
23554 correct line in message.
23555
23556 2011-07-07 Kenichi Handa <handa@m17n.org>
23557
23558 * international/characters.el (build-unicode-category-table):
23559 Delete it.
23560 (unicode-category-table): Set it by unicode-property-table-internal.
23561
23562 * international/mule-cmds.el (char-code-property-alist): Move to
23563 to src/chartab.c.
23564 (get-char-code-property): Call unicode-property-table-internal to
23565 load a file. Call get-unicode-property-internal where necessary.
23566 (put-char-code-property): Call unicode-property-table-internal to
23567 load a file. Call put-unicode-property-internal where necessary.
23568 put-unicode-property-internal where necessary.
23569 (char-code-property-description):
23570 Call unicode-property-table-internal to load a file.
23571
23572 * international/charprop.el:
23573 * international/uni-bidi.el:
23574 * international/uni-category.el:
23575 * international/uni-combining.el:
23576 * international/uni-comment.el:
23577 * international/uni-decimal.el:
23578 * international/uni-decomposition.el:
23579 * international/uni-digit.el:
23580 * international/uni-lowercase.el:
23581 * international/uni-mirrored.el:
23582 * international/uni-name.el:
23583 * international/uni-numeric.el:
23584 * international/uni-old-name.el:
23585 * international/uni-titlecase.el:
23586 * international/uni-uppercase.el: Regenerate.
23587
23588 * loadup.el: Load international/charprop.el before
23589 international/characters.
23590
23591 2011-07-07 Chong Yidong <cyd@stupidchicken.com>
23592
23593 * window.el (next-buffer, previous-buffer): Signal an error if
23594 called from a minibuffer window.
23595
23596 * bindings.el: Revert 2011-07-04 change.
23597
23598 2011-07-06 Richard Stallman <rms@gnu.org>
23599
23600 * mail/rmailmm.el (rmail-mime-process): Use markers for buf positions.
23601 (rmail-mime-insert-bulk, rmail-mime-insert-text):
23602 Treat markers like ints.
23603 (rmail-mime-entity): Doc fix.
23604
23605 2011-07-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
23606
23607 * mail/smtpmail.el (smtpmail-default-smtp-server): Made into a
23608 defcustom again for backwards compatibility.
23609
23610 * simple.el (shell-command-on-region): Fill.
23611
23612 * dired-aux.el (dired-kill-line): Add a doc string.
23613
23614 * dabbrev.el (dabbrev-abbrev-char-regexp): Note that nil defaults
23615 to "\\sw\\|\\s_" (bug#358).
23616
23617 * dired.el (dired-mode): Clarify "unmark or unflag" (bug#8770).
23618 (dired-unmark-backward): Ditto.
23619 (dired-flag-backup-files): Ditto.
23620
23621 * dired-x.el (dired-mark-sexp): Ditto.
23622
23623 2011-07-06 Richard Stallman <rms@gnu.org>
23624
23625 * mail/rmailmm.el: Give entity a new slot, TRUNCATED.
23626 (rmail-mime-entity): New arg TRUNCATED.
23627 (rmail-mime-entity-truncated, rmail-mime-entity-set-truncated):
23628 New functions.
23629 (rmail-mime-save): Warn if entity is truncated.
23630 (rmail-mime-toggle-hidden): Likewise, for showing.
23631 (rmail-mime-process-multipart): Record when an entity is truncated.
23632
23633 * mail/rmailmm.el (rmail-search-mime-message): Don't get confused
23634 if ENTITY is a string.
23635
23636 2011-07-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
23637
23638 * emacs-lisp/lisp-mode.el (eval-defun-1): Update the documentation
23639 of faces when `M-C-x'-ing their definitions (bug#8378).
23640 Also clean up the code slightly.
23641
23642 * progmodes/grep.el (rgrep): Don't bind `process-connection-type',
23643 because that makes the colors go away.
23644
23645 * mail/sendmail.el (send-mail-function): Change the default to
23646 `sendmail-query-once'.
23647 (sendmail-query-once): Add an autoload cookie.
23648
23649 * net/network-stream.el (network-stream-open-starttls): Try using
23650 a plain connection even if the server offered STARTTLS, and we
23651 kinda wanted to use it, if Emacs doesn't have any STARTTLS
23652 capability. This should make smtpmail.el work in slightly more
23653 configurations.
23654
23655 2011-07-06 Michael Albinus <michael.albinus@gmx.de>
23656
23657 * net/tramp-compat.el (tramp-compat-pop-to-buffer-same-window):
23658 New defun.
23659 * net/tramp-cmds.el (tramp-append-tramp-buffers): Use it.
23660
23661 2011-07-06 Michael R. Mauger <mmaug@yahoo.com>
23662
23663 * progmodes/sql.el: Version 3.0
23664 (sql-product-alist): Add product :completion-object,
23665 :completion-column, and :statement attributes.
23666 (sql-mode-menu, sql-interactive-mode-map): Fix List entries.
23667 (sql-mode-syntax-table): Mark all punctuation.
23668 (sql-font-lock-keywords-builder): Temporarily remove fallback on
23669 ansi keywords.
23670 (sql-regexp-abbrev, sql-regexp-abbrev-list): New functions.
23671 (sql-mode-oracle-font-lock-keywords): Improve.
23672 (sql-oracle-show-reserved-words): New function for development.
23673 (sql-product-font-lock): Simplify for source code buffers.
23674 (sql-product-syntax-table, sql-product-font-lock-syntax-alist):
23675 New functions.
23676 (sql-highlight-product): Set product specific syntax table.
23677 (sql-mode-map): Add statement movement functions.
23678 (sql-ansi-statement-starters, sql-oracle-statement-starters):
23679 New variable.
23680 (sql-statement-regexp, sql-beginning-of-statement)
23681 (sql-end-of-statement, sql-signum): New functions.
23682 (sql-buffer-live-p, sql=find-sqli-buffer): Add CONNECTION parameter.
23683 (sql-show-sqli-buffer): Bug fix.
23684 (sql-interactive-mode): Store connection data as buffer local.
23685 (sql-connect): Add NEW-NAME parameter. Redesign interaction
23686 with sql-interactive-mode.
23687 (sql-save-connection): Save buffer local settings.
23688 (sql-connection-menu-filter): Change menu entry name.
23689 (sql-product-interactive): Bug fix.
23690 (sql-preoutput-hold): New variable.
23691 (sql-interactive-remove-continuation-prompt): Bug fixes.
23692 (sql-debug-redirect): New variable.
23693 (sql-str-literal): New function.
23694 (sql-redirect, sql-redirect-one, sql-redirect-value, sql-execute):
23695 Redesign.
23696 (sql-oracle-save-settings, sql-oracle-restore-settings)
23697 (sql-oracle-list-all, sql-oracle-list-table): New functions.
23698 (sql-completion-object, sql-completion-column)
23699 (sql-completion-sqlbuf): New variables.
23700 (sql-build-completions-1, sql-build-completions)
23701 (sql-try-completion): New functions.
23702 (sql-read-table-name): Use them.
23703 (sql-contains-names): New buffer local variable.
23704 (sql-list-all, sql-list-table): Use it.
23705 (sql-oracle-completion-types): New variable.
23706 (sql-oracle-completion-object, sql-sqlite-completion-object)
23707 (sql-postgres-completion-object): New functions.
23708
23709 2011-07-06 Glenn Morris <rgm@gnu.org>
23710
23711 * window.el (pop-to-buffer): Doc fix.
23712
23713 2011-07-06 Markus Heiser <markus.heiser@darmarit.de> (tiny change)
23714
23715 * progmodes/gud.el (gud-pdb-marker-regexp): Accept \r char (Bug#5653).
23716
23717 2011-07-06 Chong Yidong <cyd@stupidchicken.com>
23718
23719 * window.el (special-display-popup-frame): Doc fix (Bug#8853).
23720
23721 * info.el (Info-directory-toc-nodes): Minor doc fix (Bug#8833).
23722
23723 2011-07-05 Chong Yidong <cyd@stupidchicken.com>
23724
23725 * button.el (button): Inherit from link face. Suggested by Dan
23726 Nicolaescu.
23727
23728 2011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
23729
23730 * progmodes/gdb-mi.el: Fit in 80 columns.
23731 (gdb-setup-windows, gdb-restore-windows): Avoid other-window and
23732 switch-to-buffer.
23733
23734 * progmodes/which-func.el (which-func-ff-hook): Don't output a message
23735 if imenu is simply not configured (bug#8941).
23736
23737 2011-07-05 Ken Manheimer <ken.manheimer@gmail.com>
23738
23739 * allout.el (allout-post-undo-hook): New allout outline-change
23740 event hook to signal undo activity.
23741 (allout-post-command-business): Run allout-post-undo-hook if an
23742 undo just occurred.
23743 (allout-after-copy-or-kill-hook, allout-mode): Minor docstring changes.
23744 * allout-widgets.el (allout-widgets-after-undo-function):
23745 Ensure the integrity of the current item's decoration after it has been
23746 in the vicinity of an undo.
23747 (allout-widgets-mode): Include allout-widgets-after-undo-function
23748 on the new allout-post-undo-hook.
23749
23750 2011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
23751
23752 * emacs-lisp/lisp-mode.el (lisp-interaction-mode-abbrev-table):
23753 Let define-derived-mode define it.
23754 * emacs-lisp/derived.el (define-derived-mode): Try to avoid creating
23755 cycles of abbrev-table inheritance (bug#8998).
23756
23757 2011-07-05 Roland Winkler <winkler@gnu.org>
23758
23759 * textmodes/bibtex.el: Add support for biblatex.
23760 (bibtex-BibTeX-entry-alist, bibtex-biblatex-entry-alist)
23761 (bibtex-BibTeX-field-alist, bibtex-biblatex-field-alist)
23762 (bibtex-dialect-list, bibtex-dialect, bibtex-no-opt-remove-re)
23763 (bibtex-entry-alist, bibtex-field-alist): New variables.
23764 (bibtex-entry-field-alist): Obsolete alias for
23765 bibtex-BibTeX-entry-alist.
23766 (bibtex-entry-alist, bibtex-field-alist): New widgets.
23767 (bibtex-set-dialect): New command.
23768 (bibtex-entry-type, bibtex-entry-head)
23769 (bibtex-entry-maybe-empty-head, bibtex-any-valid-entry-type):
23770 Bind via bibtex-set-dialect.
23771 (bibtex-Article, bibtex-Book, bibtex-Booklet, bibtex-InBook)
23772 (bibtex-InCollection, bibtex-InProceedings, bibtex-Manual)
23773 (bibtex-MastersThesis, bibtex-Misc, bibtex-PhdThesis)
23774 (bibtex-Proceedings, bibtex-TechReport, bibtex-Unpublished):
23775 Define via bibtex-set-dialect.
23776 (bibtex-name-in-field, bibtex-remove-OPT-or-ALT):
23777 Obey bibtex-no-opt-remove-re.
23778 (bibtex-vec-push, bibtex-vec-incr): New functions.
23779 (bibtex-format-entry, bibtex-field-list)
23780 (bibtex-print-help-message, bibtex-validate)
23781 (bibtex-search-entries): Use new format of bibtex-entry-alist.
23782
23783 2011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
23784
23785 * progmodes/compile.el (compilation-goto-locus):
23786 * net/tramp-cmds.el (tramp-append-tramp-buffers):
23787 * bs.el (bs-cycle-next, bs-cycle-previous):
23788 * bookmark.el (bookmark-bmenu-list, bookmark-bmenu-2-window):
23789 * bindings.el (mode-line-other-buffer):
23790 * autoinsert.el (auto-insert):
23791 * arc-mode.el (archive-extract):
23792 * abbrev.el (edit-abbrevs): Fix some uses of switch-to-buffer.
23793
23794 2011-07-05 Juanma Barranquero <lekktu@gmail.com>
23795
23796 * emacs-lock.el (emacs-lock-mode): Fix typo in variable name.
23797 Fix check of `emacs-lock-unlockable-modes'.
23798 Coerce true values of `emacs-lock--try-unlocking' to t.
23799
23800 2011-07-05 Juanma Barranquero <lekktu@gmail.com>
23801
23802 * obsolete/old-emacs-lock.el: Rename from emacs-lock.el.
23803 * emacs-lock.el: New file.
23804
23805 2011-07-05 Julien Danjou <julien@danjou.info>
23806
23807 * textmodes/rst.el (rst-define-level-faces): Use `facep' rather
23808 than `boundp' to check if face is set.
23809
23810 2011-07-05 Juanma Barranquero <lekktu@gmail.com>
23811
23812 * register.el (registerv-make):
23813 * window.el (window-min-height): Fix typos in docstrings.
23814
23815 2011-07-05 Jan Djärv <jan.h.d@swipnet.se>
23816
23817 * dynamic-setting.el (dynamic-setting-handle-config-changed-event):
23818 Update doc string.
23819
23820 2011-07-04 Juanma Barranquero <lekktu@gmail.com>
23821
23822 * server.el (server-execute): Catch quit and call
23823 `server-return-error' to pass the error back to emacsclient and
23824 close the connection (bug#8942).
23825
23826 2011-07-04 Ken Manheimer <ken.manheimer@gmail.com>
23827
23828 * allout.el (allout-encrypt-unencrypted-on-saves): Do not provide
23829 insecure exception for current topic. Also note that auto-saves
23830 are handled differently.
23831
23832 (allout-auto-save-temporarily-disabled, allout-just-did-undo):
23833 State variables for tracking auto-save inhibition situation.
23834
23835 (allout-write-contents-hook-handler): Rename from
23836 'allout-write-file-hook-handler', and describe how it depends on
23837 write-contents-functions sensitivity to non-nil value to prevent
23838 file write.
23839
23840 (allout-auto-save-hook-handler): Remove. auto-save does not check
23841 this in individual buffers, only in the starting buffer, so this
23842 is not the right way for us to inhibit auto-save in a buffer
23843 according to its condition.
23844
23845 (allout-mode): Use new allout-write-contents-hook-handler, and
23846 only with write-contents-functions. Remove auto-save provisions -
23847 they're implemented elsewhere.
23848
23849 (allout-before-change-handler): If undo is in progress, note that
23850 for attention of allout-post-command-business.
23851
23852 (allout-post-command-business): If the command we're following was
23853 an undo, check for change in the status of encrypted items and
23854 adjust auto-save inhibitions accordingly.
23855
23856 (allout-toggle-subtree-encryption): Adjust auto-save inhibition
23857 according to whether there are or aren't any plain-text topics
23858 pending encryption.
23859
23860 (allout-inhibit-auto-save-info-for-decryption):
23861 Adjust buffer-saved-size and some allout state to inhibit auto-saves
23862 if there are plain-text topics pending encryption.
23863
23864 (allout-maybe-resume-auto-save-info-after-encryption): Adjust
23865 buffer-saved-size and some allout state to not inhibit auto-saves
23866 if there are no longer any plain-text topics pending encryption.
23867
23868 (allout-next-topic-pending-encryption, allout-encrypt-decrypted):
23869 No longer provide for exemption of the current topic.
23870
23871 2011-07-04 Juri Linkov <juri@jurta.org>
23872
23873 Add 7z operations to delete and save changed members (bug#8968).
23874 * arc-mode.el (archive-7z-expunge, archive-7z-update):
23875 New defcustoms.
23876 (archive-7z-write-file-member): New function.
23877 (archive-7z-summarize): Fix the number of dashes in the
23878 listing output.
23879
23880 2011-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
23881
23882 * pcmpl-linux.el (pcomplete-pare-list): Re-add, from pcomplete.el
23883 (bug#8958).
23884
23885 2011-07-04 Chong Yidong <cyd@stupidchicken.com>
23886
23887 * bindings.el: Ignore next-buffer and previous-buffer in
23888 minibuffer-local-map.
23889
23890 * font-lock.el (font-lock-builtin-face): Change light background
23891 color to dark slate blue (Bug#6693).
23892
23893 2011-07-04 Wang Diancheng <dcwang@kingbase.com.cn> (tiny change)
23894
23895 * progmodes/gdb-mi.el (gdb): Use completion-at-point.
23896
23897 2011-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
23898
23899 * files.el (find-file): Use pop-to-buffer-same-window (bug#8911).
23900 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
23901 Add switch-to-buffer.
23902
23903 2011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
23904
23905 * isearch.el (isearch-search-fun-function): Clarify further the
23906 meaning of the function returned.
23907
23908 2011-07-04 Michael Albinus <michael.albinus@gmx.de>
23909
23910 * net/tramp-cmds.el (tramp-cleanup-this-connection): New command.
23911
23912 * net/tramp-sh.el (tramp-color-escape-sequence-regexp): New defconst.
23913 (tramp-sh-handle-insert-directory, tramp-convert-file-attributes):
23914 Use it.
23915 (tramp-remote-path): Add "/bin" and "/usr/bin". On busyboxes,
23916 `tramp-default-remote-path' does not exist.
23917 (tramp-send-command-and-read): New optional argument NOERROR.
23918 (tramp-open-connection-setup-interactive-shell)
23919 (tramp-get-remote-path, tramp-get-remote-stat): Use it.
23920 (tramp-get-remote-readlink): Do not mask with `ignore-errors'.
23921 (tramp-process-sentinel): Flush also process' connection property.
23922 (tramp-sh-handle-start-file-process): Do not set process
23923 sentinel. It is done now ...
23924 (tramp-maybe-open-connection): ... here. (Bug#8929)
23925
23926 2011-07-04 MON KEY <monkey@sandpframing.com>
23927
23928 * play/animate.el (animate-string): Doc fixes and allow changing
23929 the buffer name (bug#5417).
23930
23931 2011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
23932
23933 * play/animate.el (animation-buffer-name): Rename from *animate*.
23934
23935 2011-07-04 Paul Eggert <eggert@cs.ucla.edu>
23936
23937 * emacs-lisp/timer.el: Use time-date fns rather than rolling our own.
23938 This is simpler and helps future-proof the code.
23939 (timer-until): Use time-subtract and float-time.
23940 (timer--time-less-p): Use time-less-p.
23941
23942 2011-07-04 Juanma Barranquero <lekktu@gmail.com>
23943
23944 * type-break.el (timep): Use the value of `float-time' to avoid a
23945 byte-compiler warning.
23946
23947 * server.el (server-eval-and-print): Return any result, even nil.
23948
23949 2011-07-03 Paul Eggert <eggert@cs.ucla.edu>
23950
23951 * type-break.el: Accept time formats that the builtins accept.
23952 (timep, type-break-time-difference): Accept any format that
23953 float-time accepts, rather than insisting on (HIGH LOW USECS) format.
23954 This is simpler and helps future-proof the code.
23955 (type-break-time-difference): Round rather than ignoring
23956 subseconds components.
23957
23958 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
23959
23960 * info.el (Info-apropos-matches): Make non-interactive, since it
23961 doesn't seem to do anything useful as a command (bug#8829).
23962
23963 2011-07-03 Chong Yidong <cyd@stupidchicken.com>
23964
23965 * frame.el (frame-background-mode, frame-set-background-mode):
23966 Move from faces.el.
23967 (frame-default-terminal-background): New function.
23968
23969 * custom.el (custom-push-theme): Don't record faces in `changed'
23970 theme; this doesn't work correctly for per-frame face settings.
23971 (disable-theme): Use face-set-after-frame-default to reset faces.
23972 (custom--frame-color-default): New function.
23973
23974 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
23975
23976 * dired.el (dired-flagging-regexp): Remove unused variable
23977 (bug#8769).
23978
23979 2011-03-29 Kevin Ryde <user42@zip.com.au>
23980
23981 * progmodes/compile.el (compilation-error-regexp-alist-alist):
23982 `perl-Test2' extend to match possible "fail #N" rep count
23983 (bug#8377).
23984
23985 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
23986
23987 * mail/feedmail.el (feedmail-buffer-to-smtpmail):
23988 `smtpmail-via-smtp' now returns the error instead of nil.
23989
23990 * isearch.el (isearch-search-fun-function): Clarify the doc string
23991 (bug#8101).
23992
23993 2011-07-03 Richard Kim <emacs18@gmail.com> (tiny change)
23994
23995 * textmodes/texnfo-upd.el (texinfo-insert-menu): Don't insert
23996 unnecessary spaces (bug#8987).
23997
23998 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
23999
24000 * net/network-stream.el (open-network-stream): Use the
24001 :end-of-capability command thoughout.
24002
24003 2011-07-03 Wolfgang Jenkner <wjenkner@inode.at> (tiny change)
24004
24005 * net/network-stream.el (open-network-stream): Add the
24006 :end-of-capability command parameter, used by pop3.el.
24007
24008 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
24009
24010 * dired.el (dired-map-over-marks): Refill the doc string (bug#6814).
24011
24012 * fringe.el (fringe-query-style): Remove redundant text " (type ?
24013 for list)" (bug#6475).
24014
24015 * files.el (file-expand-wildcards): Ignore non-readable
24016 sub-directories while trying to find matches instead of signaling
24017 an error (bug#6297).
24018
24019 * man.el (Man-reference-regexp): Allow matching possible
24020 word-wrapped references (bug#6289).
24021
24022 * vc/vc.el (vc-modify-change-comment): Change *VC-log* to *vc-log*
24023 for consistency with the other vc buffers (bug#6197).
24024 (vc-checkin): Ditto.
24025
24026 * vc/vc-arch.el: Fix comments to match the *VC-log* name change.
24027
24028 * longlines.el (longlines-mode): Document what ARG does (bug#6150).
24029
24030 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
24031
24032 * custom.el (defcustom): Clarify that :set is only used in the
24033 Customize user interface (bug#6089).
24034
24035 * progmodes/flymake.el (flymake-mode): If the buffer isn't
24036 associated with a file, refuse to run instead of erroring out
24037 (bug#6084).
24038
24039 * textmodes/fill.el (fill-region): Remove the "Ordinarily" from
24040 the doc string, since it appears that using `fill-column' always
24041 controls the width (bug#7845).
24042
24043 * simple.el (shell-command-on-region): Say where the error output
24044 went if `shell-command-default-error-buffer' is set (bug#6857).
24045
24046 2011-07-02 Ken Manheimer <ken.manheimer@gmail.com>
24047
24048 * allout.el (allout-yank-processing): Adjust cursor position for
24049 backwards-deleted space.
24050
24051 (allout-rebullet-heading): Register changes with
24052 allout-exposure-changed-hook, so the modified topic is properly
24053 decorated.
24054
24055 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
24056
24057 * minibuffer.el (completion-in-region): Document PREDICATE
24058 (bug#7136).
24059
24060 * info-look.el (info-lookup-add-help): Clarify that ARGS is a list
24061 of keyword/argument pairs (bug#6904).
24062
24063 * replace.el (multi-occur):
24064 Mention `multi-occur-in-matching-buffers' in the doc string (bug#7566).
24065
24066 2011-07-02 Drew Adams <drew.adams@oracle.com>
24067
24068 * dired.el (dired-mark-if): Make the message about whether it's
24069 marking or unmarking clearer (bug#8523).
24070
24071 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
24072
24073 * disp-table.el (display-table-print-array): New function.
24074 (describe-display-table): Use it to print the vectors more pretty
24075 (Bug#8859).
24076
24077 2011-07-02 Martin Rudalics <rudalics@gmx.at>
24078
24079 * window.el (window-state-get-1): Don't assign clone numbers.
24080 Add clone-of item to list of window parameters.
24081 (window-state-put-2): Don't process clone numbers.
24082 (display-buffer-alist): Fix doc-string.
24083
24084 2011-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
24085
24086 * subr.el (remq): Don't allocate if it's not needed.
24087 (keymap--menu-item-binding, keymap--menu-item-with-binding)
24088 (keymap--merge-bindings): New functions.
24089 (keymap-canonicalize): Use them to refine the canonicalization.
24090 * minibuffer.el (minibuffer-local-completion-map)
24091 (minibuffer-local-must-match-map): Move initialization from C.
24092 (minibuffer-local-filename-completion-map): Move initialization from C;
24093 don't inherit from anything here.
24094 (minibuffer-local-filename-must-match-map): Make obsolete.
24095 (completing-read-default): Use make-composed-keymap to combine
24096 minibuffer-local-filename-completion-map with either
24097 minibuffer-local-must-match-map or
24098 minibuffer-local-filename-completion-map.
24099
24100 2011-07-01 Glenn Morris <rgm@gnu.org>
24101
24102 * type-break.el (type-break-time-sum): Use dolist.
24103
24104 * textmodes/flyspell.el (flyspell-word-search-backward):
24105 Replace CL function.
24106
24107 2011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
24108
24109 * mouse.el (mouse--strip-first-event): New function.
24110 (function-key-map): Use it to map fringe clicks to normal clicks
24111 by default.
24112
24113 * vc/vc-bzr.el (vc-bzr-revision-keywords): Update.
24114 (vc-bzr-revision-completion-table): Add support for annotate and date.
24115
24116 * emacs-lisp/derived.el (define-derived-mode): Make abbrev-table
24117 inherit from parent.
24118
24119 2011-07-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
24120
24121 * dired-aux.el (dired-diff): Doc fixup (bug#8816).
24122 (dired-show-file-type): Doc fixup (bug#8818).
24123
24124 * dired.el (dired-mode): Fix up the doc string as suggested by
24125 Drew Adams (bug#8817).
24126
24127 * progmodes/flymake.el (flymake-find-file-hook): Add an `autoload'
24128 cookie, since the manual says that it should be possible to add
24129 this function to `find-file-hook' (bug#8709).
24130
24131 2011-07-01 Teodor Zlatanov <tzz@lifelogs.com>
24132
24133 * progmodes/cfengine.el: Moved all cfengine3.el functionality
24134 here. Noted Ted Zlatanov as the maintainer.
24135 (cfengine-common-settings, cfengine-common-syntax): New functions
24136 to set up common things between `cfengine-mode' and
24137 `cfengine3-mode'.
24138 (cfengine3-mode): New mode.
24139 (cfengine3-defuns cfengine3-defuns-regex
24140 (cfengine3-class-selector-regex cfengine3-category-regex)
24141 (cfengine3-vartypes cfengine3-font-lock-keywords)
24142 (cfengine3-beginning-of-defun, cfengine3-end-of-defun)
24143 (cfengine3-indent-line): Add from cfengine3.el.
24144
24145 2011-07-01 Michael Albinus <michael.albinus@gmx.de>
24146
24147 * net/tramp.el (tramp-encoding-command-interactive): New defcustom.
24148
24149 * net/tramp-sh.el (tramp-maybe-open-connection): Use it.
24150
24151 2011-07-01 Martin Rudalics <rudalics@gmx.at>
24152
24153 * window.el (same-window-buffer-names, same-window-regexps)
24154 (same-window-p, special-display-frame-alist)
24155 (special-display-popup-frame, special-display-function)
24156 (special-display-buffer-names, special-display-regexps)
24157 (special-display-p, pop-up-frame-alist, pop-up-frame-function)
24158 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
24159 (split-window-preferred-function, split-height-threshold)
24160 (split-width-threshold, even-window-heights)
24161 (display-buffer-mark-dedicated, window-splittable-p)
24162 (split-window-sensibly, window-safely-shrinkable-p):
24163 Un-obsolete.
24164 (display-buffer): Don't spread args with function specifier
24165 because special-display-popup-frame won't like it.
24166
24167 2011-07-01 Paul Eggert <eggert@cs.ucla.edu>
24168
24169 Time-stamp simplifications and fixes.
24170 These improve accuracy slightly, and future-proof the code
24171 against some potential changes to current-time format.
24172
24173 * woman.el (woman-decode-buffer, WoMan-log-end): Log fractional secs
24174 by using time-since and float-time.
24175
24176 * vc/ediff-util.el (ediff-calc-command-time): Use time-since
24177 and float-time. Say "NNN.NNN seconds" rather than "NNN seconds
24178 + NNN microseconds".
24179
24180 * type-break.el (type-break-time-sum): Rewrite using time-add.
24181
24182 * play/hanoi.el (hanoi-current-time-float): Remove.
24183 All uses replaced by float-time.
24184
24185 * nxml/rng-maint.el (rng-time-function): Rewrite using time-subtract.
24186 This yields a more-accurate answer.
24187 (rng-time-to-float): Remove; no longer needed.
24188
24189 * emacs-lisp/timer.el (timer-relative-time): Use time-add.
24190
24191 * calendar/timeclock.el (timeclock-seconds-to-time):
24192 Defalias to seconds-to-time, since they're the same thing.
24193
24194 * emacs-lisp/elp.el (elp-elapsed-time):
24195 * emacs-lisp/benchmark.el (benchmark-elapse):
24196 * allout-widgets.el (allout-elapsed-time-seconds): Use float-time.
24197
24198 2011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
24199
24200 * window.el (bury-buffer): Don't iconify the only frame.
24201 (switch-to-buffer): Revert to Emacs<23 behavior, i.e. do not fallback
24202 to pop-to-buffer. Use pop-to-buffer-same-frame if you don't like that.
24203
24204 2011-07-01 Chong Yidong <cyd@stupidchicken.com>
24205
24206 * eshell/em-smart.el (eshell-smart-display-navigate-list):
24207 Add mouse-yank-primary.
24208
24209 2011-07-01 Teodor Zlatanov <tzz@lifelogs.com>
24210
24211 * progmodes/cfengine3.el: New file to support CFEngine 3.x.
24212
24213 2011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
24214
24215 * emacs-lisp/find-func.el (find-library--load-name): New fun.
24216 (find-library-name): Use it to find relative load names when provided
24217 absolute file name (bug#8803).
24218
24219 2011-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
24220
24221 * textmodes/flyspell.el (flyspell-word): Consider words that
24222 differ only in case as potential doublons (bug#5687).
24223
24224 * net/soap-client.el (soap-invoke, soap-wsdl-resolve-references):
24225 Remove two rather uninteresting debugging-like messages to make
24226 debbugs.el more silent.
24227
24228 * comint.el (comint-password-prompt-regexp): Accept "Response" as
24229 a password-like phrase.
24230
24231 2011-06-30 Masatake YAMATO <yamato@redhat.com>
24232
24233 * progmodes/cc-guess.el: New file.
24234
24235 * progmodes/cc-langs.el (c-mode-menu): Add "Style..." submenu.
24236
24237 * progmodes/cc-styles.el (cc-choose-style-for-mode): New function
24238 derived from `c-basic-common-init'.
24239
24240 * progmodes/cc-mode.el (top-level): Require cc-guess.
24241 (c-basic-common-init): Use `cc-choose-style-for-mode'.
24242
24243 2011-06-30 Lawrence Mitchell <wence@gmx.li>
24244
24245 * progmodes/js.el (js-mode): Don't stomp on global settings (bug#8933).
24246
24247 2011-06-30 Alan Mackenzie <acm@muc.de>
24248
24249 * progmodes/cc-engine.el (c-guess-continued-construct):
24250 Correct the handling of template-args-cont, particularly for when font
24251 lock is disabled. Name this case as "CASE G".
24252
24253 2011-06-30 Ken Manheimer <ken.manheimer@gmail.com>
24254
24255 * allout.el (allout-yank-processing): Fix injection of extra space
24256 between bullet and non-whitespace character in first topic when
24257 pasting, ensuring that the actual spacing in the pasted topic
24258 following the bullet char is preserved. This extra space was
24259 causing pasted encrypted topics to get a decrypted status even
24260 when the content was actually still encrypted. Now the decryption
24261 status from before the paste is preserved.
24262
24263 (allout-flag-region): Set all allout overlays so they evaporate
24264 when reduced to zero length (evanescent), to prevent overlay
24265 leakage.
24266
24267 2011-06-30 Glenn Morris <rgm@gnu.org>
24268
24269 * w32-fns.el (w32-charset-info-alist): Declare.
24270
24271 * find-dired.el (find-grep-options): Simplify.
24272
24273 * term/ns-win.el (ns-set-resource): Declare.
24274
24275 * ses.el (row, col): Declare dynamic variables honestly.
24276
24277 * textmodes/reftex-parse.el (index-tags): Declare.
24278
24279 2011-06-30 Chong Yidong <cyd@stupidchicken.com>
24280
24281 * cus-edit.el (customize-push-and-save): New function.
24282
24283 * files.el (hack-local-variables-confirm): Use it.
24284
24285 * custom.el (load-theme): New arg NO-CONFIRM.
24286 Use customize-push-and-save (Bug#8720).
24287 (custom-enabled-themes): Doc fix.
24288
24289 * cus-theme.el (customize-create-theme)
24290 (custom-theme-merge-theme): Callers to load-theme changed.
24291
24292 2011-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
24293
24294 * thingatpt.el (thing-at-point-short-url-regexp): Require that
24295 short URLs have at least one dot in them (bug #7614).
24296
24297 * progmodes/grep.el (rgrep): Bind `process-connection-type' to
24298 nil, because using a pty is apparently too slow (bug #895).
24299
24300 2011-06-29 Lars Magne Ingebrigtsen <larsi@gnus.org>
24301
24302 * mail/sendmail.el (sendmail-query-once): New function.
24303 (sendmail-query-once-function): New variable.
24304
24305 2011-06-29 Glenn Morris <rgm@gnu.org>
24306
24307 * files.el (auto-mode-alist): Add .f03, .f08 for f90-mode.
24308
24309 * ses.el (top-level): Require cl when compiling.
24310 (ses-set-localvars): Fix error statement.
24311 Call it at compile time to silence a storm of warnings.
24312
24313 2011-06-29 Martin Rudalics <rudalics@gmx.at>
24314
24315 * window.el (normalize-live-buffer): Rename to
24316 window-normalize-buffer.
24317 (normalize-live-frame): Rename to window-normalize-frame.
24318 (normalize-any-window): Rename to window-normalize-any-window.
24319 (normalize-live-window): Rename to window-normalize-live-window.
24320 (make-window-atom): Rename to window-make-atom.
24321 (window-resize-reset): Rename to window--resize-reset.
24322 (window-resize-reset-1): Rename to window--resize-reset-1.
24323 (resize-mini-window): Rename to window--resize-mini-window.
24324 (resize-subwindows-skip-p): Rename to
24325 window--resize-subwindows-skip-p.
24326 (resize-subwindows-normal): Rename to
24327 window--resize-subwindows-normal.
24328 (resize-subwindows): Rename to window--resize-subwindows.
24329 (resize-other-windows): Rename to window--resize-siblings.
24330 (resize-this-window): Rename to window--resize-this-window.
24331 (resize-root-window): Rename to window--resize-root-window.
24332 (resize-root-window-vertically): Rename to
24333 window--resize-root-window-vertically.
24334 (normalize-buffer-to-display): Rename to
24335 window-normalize-buffer-to-display.
24336 (normalize-buffer-to-switch-to): Rename to
24337 window-normalize-buffer-to-switch-to.
24338 Correspondingly update all callers of the functions listed
24339 above.
24340 (display-buffer-alist, display-buffer-normalize-arguments)
24341 (display-buffer-normalize-options, display-buffer)
24342 (display-buffer-alist-set): Use "function" instead of
24343 "fun-with-args".
24344
24345 2011-06-28 Chong Yidong <cyd@stupidchicken.com>
24346
24347 * mail/emacsbug.el (report-emacs-bug): Handle non-gnu bug
24348 addresses more clearly. Add hyperlinks for bug-gnu-emacs and
24349 debbugs.gnu.org. Mention acknowledgment email.
24350
24351 2011-06-28 Lars Magne Ingebrigtsen <larsi@gnus.org>
24352
24353 * mail/smtpmail.el (smtpmail-send-it): Leave off changing the
24354 buffer multibyteness, since it shouldn't matter.
24355
24356 2011-06-28 Martin Rudalics <rudalics@gmx.at>
24357
24358 * window.el (display-buffer-in-side-window): Handle dedicated
24359 windows as in display-buffer-reuse-window.
24360 (display-buffer-normalize-alist): Use value of override
24361 specifier.
24362 (display-buffer-normalize-specifiers): Use value of
24363 other-window-means-other-frame specifier.
24364 (display-buffer-alist): Rewrite some texts in widgets.
24365 (display-buffer): Spread arguments when calling function
24366 specified by fun-with-args.
24367
24368 2011-06-28 Deniz Dogan <deniz@dogan.se>
24369
24370 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
24371 Unnest `let'.
24372
24373 * textmodes/css-mode.el (css-font-lock-keywords): Fix grouped
24374 selectors (Bug#5732).
24375 (css-proprietary-nmstart-re): Use `regexp-opt'.
24376
24377 2011-06-27 Jari Aalto <jari.aalto@cante.net>
24378
24379 * eshell/em-ls.el: Display `ls -l' dates in ISO format (Bug#8440).
24380 (eshell-ls-date-format): New defcustom.
24381 (eshell-ls-file): Use it.
24382
24383 2011-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
24384
24385 * help-fns.el (describe-variable): Fix message for terminal-local vars.
24386
24387 2011-06-27 Katsumi Yamaoka <yamaoka@jpl.org>
24388
24389 * net/ange-ftp.el: Allow loading .gz files (Bug#6923).
24390 (ange-ftp-make-tmp-name): New arg.
24391 (ange-ftp-file-local-copy): Use it.
24392
24393 2011-06-27 Jambunathan K <kjambunathan@gmail.com>
24394
24395 * tar-mode.el (tar-untar-buffer): Set coding-system-for-write to
24396 no-conversion (Bug#8870).
24397
24398 2011-06-27 Martin Rudalics <rudalics@gmx.at>
24399
24400 * window.el (window-right, window-left, window-child)
24401 (window-child-count, window-last-child)
24402 (window-iso-combination-p, walk-window-tree-1)
24403 (window-atom-check-1, window-tree-1, delete-window)
24404 (window-state-get-1, display-buffer-even-window-sizes): Adapt to
24405 new naming conventions - window-vchild, window-hchild,
24406 window-next and window-prev are now called window-top-child,
24407 window-left-child, window-next-sibling and window-prev-sibling
24408 respectively.
24409 (resize-window-reset): Rename to window-resize-reset.
24410 (resize-window-reset-1): Rename to window-resize-reset-1.
24411 (resize-window): Rename to window-resize.
24412 (window-min-height, window-min-width)
24413 (resize-mini-window, resize-this-window, resize-root-window)
24414 (resize-root-window-vertically, adjust-window-trailing-edge)
24415 (enlarge-window, shrink-window, maximize-window)
24416 (minimize-window, delete-window, quit-restore-window)
24417 (split-window, balance-windows, balance-windows-area-adjust)
24418 (balance-windows-area, window-state-put-2)
24419 (display-buffer-even-window-sizes, display-buffer-set-height)
24420 (display-buffer-set-width, set-window-text-height)
24421 (fit-window-to-buffer): Rename all "resize-window" prefixed
24422 calls to use the "window-resize" prefix convention.
24423 (display-buffer-alist): Fix symbol for label specifier.
24424 (display-buffer-reuse-window): Set reuse-dedicated to cdr of
24425 corresponding specifier.
24426 Reported by Juanma Barranquero <lekktu@gmail.com>.
24427
24428 2011-06-27 Vincent Belaïche <vincentb1@users.sourceforge.net>
24429
24430 * ses.el (ses-destroy-cell-variable-range): Fix heading comment
24431 convention.
24432 (ses-call-printer): Does not pass an empty string to formatter when the
24433 cell is empty to keep from barking printer Calc math-format-value.
24434
24435 2011-06-27 Richard Stallman <rms@gnu.org>
24436
24437 * battery.el (battery-mode-line-limit): New variable.
24438 (battery-update): Handle it.
24439
24440 * mail/rmailmm.el (rmail-mime-process-multipart):
24441 Handle truncated messages.
24442
24443 2011-06-27 Glenn Morris <rgm@gnu.org>
24444
24445 * progmodes/flymake.el (flymake-err-line-patterns):
24446 Allow for column numbers in the ant/javac pattern. (Bug#8866)
24447
24448 2011-06-27 Vincent Belaïche <vincentb1@users.sourceforge.net>
24449
24450 * ses.el (ses-relocate-range): Keep rest of arguments for ses-range.
24451 (ses--clean-!, ses--clean-_): New functions.
24452 (ses-range): Add configurability of readout order, and conversion
24453 to Calc vector.
24454
24455 * ses.el (ses-repair-cell-reference-all): New function.
24456 (ses-cell-symbol): Set macro as safe, so that it can be used in
24457 formulas.
24458
24459 * ses.el: Update cycle detection algorithm.
24460 (ses-localvars): Add ses--Dijkstra-attempt-nb and
24461 ses--Dijkstra-weight-bound, and initial values thereof when applicable.
24462 (ses-set-localvars): New function.
24463 (ses-make-cell): Add property-list as a cell element.
24464 (ses-cell-property-get-fun, ses-cell-property-get)
24465 (ses-cell-property-delq-fun, ses-cell-property-set-fun)
24466 (ses-cell-property-pop-fun, ses-cell-property-get-handle-fun):
24467 New functions.
24468 (ses-cell-property-set, ses-cell-property-pop)
24469 (ses-cell-property-get-handle): New macro.
24470 (ses-cell-property-handle-car, ses-cell-property-handle-setcar):
24471 New aliases, used for code readability.
24472 (ses-calculate-cell, ses-update-cells): Use Dijkstra algorithm for
24473 cycle detection.
24474 (ses-self-reference-early-detection): New defcustom.
24475 (ses-formula-references): Robustify against self-referring cells.
24476 (ses-mode): Use ses-set-localvars.
24477 (ses-command-hook): Add call to ses-initialize-Dijkstra-attempt
24478 before lauching the update processing.
24479 (ses-initialize-Dijkstra-attempt): New function.
24480 (ses-recalculate-cell): Update for cycle detection based on
24481 Dijkstra algorithm.
24482
24483 * ses.el: Fix commenting and indenting convention.
24484
24485 2011-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
24486
24487 * bs.el (bs-cycle-next): Complete last change.
24488
24489 2011-06-27 Drew Adams <drew.adams@oracle.com>
24490
24491 * faces.el (list-faces-display): Add help-mode-map to output (bug#8939).
24492
24493 2011-06-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
24494
24495 * net/network-stream.el (network-stream-open-starttls):
24496 Don't re-get capabilities unless we've reestablished connection.
24497 (network-stream-open-starttls): Fix stupid typo with gnutls-clii.
24498
24499 * mail/smtpmail.el (smtpmail-via-smtp): Bind coding-system-for-*
24500 to binary to possibly avoid line encoding issues on Windows (among
24501 other things).
24502
24503 2011-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
24504
24505 * net/network-stream.el (open-network-stream): Return an :error
24506 saying what the problem was, if possible.
24507
24508 * mail/smtpmail.el (smtpmail-via-smtp): Report the error from the
24509 server.
24510
24511 * net/network-stream.el (network-stream-open-starttls): If we
24512 wanted to use STARTTLS, and the server offered it, but we weren't
24513 able to because we had no STARTTLS support, then close the connection.
24514 (open-network-stream): Return an :error element, if present.
24515
24516 2011-06-26 Chong Yidong <cyd@stupidchicken.com>
24517
24518 * hl-line.el (hl-line-sticky-flag): Doc fix.
24519 (global-hl-line-sticky-flag): New option (Bug#8323).
24520 (global-hl-line-highlight): Obey it.
24521
24522 * vc/vc.el (vc-revert-show-diff): Default to t.
24523
24524 2011-06-26 Ken Manheimer <ken.manheimer@gmail.com>
24525
24526 * allout-widgets.el (allout-widgets-post-command-business):
24527 Stop decorating intermediate isearch matches. They're not being
24528 undecorated when an isearch is continued past, and isearch
24529 automatically collapses them. This leads to "widget leaks", where
24530 decorated items accumulate in collapsed areas. Lines with lots of
24531 hidden widgets can slow down cursor travel, substantially.
24532 Too much complicated machinery would be needed to ensure undecoration,
24533 so we're doing without this nicety.
24534
24535 (allout-widgets-tally-string): Don't try to do a hash-table-count
24536 of allout-widgets-tally when it's nil. This eliminates spurious "Error
24537 during redisplay: (wrong-type-argument hash-table-p nil)" warnings in
24538 *Messages* when allout-widgets-maintain-tally is t.
24539
24540 2011-06-26 Martin Rudalics <rudalics@gmx.at>
24541
24542 * window.el (display-buffer-normalize-argument): Rename to
24543 display-buffer-normalize-arguments. Handle special meaning of
24544 LABEL argument. Respect special-display-function when popping up
24545 a new frame. Fix code searching for a window showing the buffer
24546 on another frame.
24547 (display-buffer-normalize-specifiers):
24548 Call display-buffer-normalize-arguments.
24549 (display-buffer-in-window): Don't undedicate the window if its
24550 buffer remains the same.
24551 Reported by Drew Adams <drew.adams@oracle.com>.
24552 (display-buffer-alist): Add choice for same-window macro
24553 specfier.
24554 (display-buffer): Mention special meaning of LABEL argument in
24555 doc-string. Fix quoting. Don't pop up a new frame even as
24556 fallback.
24557
24558 2011-06-26 Juanma Barranquero <lekktu@gmail.com>
24559
24560 * bs.el (bs-cycle-next): Pass current buffer to `bury-buffer' to
24561 avoid deleting the current window in some cases (bug#8911).
24562
24563 2011-06-26 Andreas Schwab <schwab@linux-m68k.org>
24564
24565 * emacs-lisp/smie.el (smie-bnf->prec2): Fix last change.
24566 (Bug#8934)
24567
24568 2011-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
24569
24570 * net/network-stream.el (network-stream-open-starttls):
24571 Use built-in TLS support if `gnutls-available-p' is true.
24572 (network-stream-open-tls): Ditto.
24573
24574 2011-06-26 Leo Liu <sdl.web@gmail.com>
24575
24576 * register.el (registerv): New struct.
24577 (registerv-make): New function.
24578 (jump-to-register, describe-register-1, insert-register):
24579 Support the jump-func, print-func and insert-func slot of a registerv
24580 struct. (Bug#8415)
24581
24582 2011-06-26 Chong Yidong <cyd@stupidchicken.com>
24583
24584 * vc/vc.el (vc-revert-show-diff): New defcustom.
24585 (vc-diff-internal): New arg specifying diff buffer.
24586 (vc-revert): Obey vc-revert-show-diff. If we show a diff, don't
24587 reuse an existing *vc-diff* buffer (Bug#8927).
24588
24589 * progmodes/cperl-mode.el (cperl-mode): Derive from prog-mode.
24590
24591 2011-06-26 Glenn Morris <rgm@gnu.org>
24592
24593 * progmodes/f90.el (f90-critical-indent): New option.
24594 (f90-font-lock-keywords-2, f90-blocks-re, f90-end-block-re)
24595 (f90-start-block-re, f90-mode-abbrev-table): Add block, critical.
24596 (f90-mode): Doc fix.
24597 (f90-looking-at-critical, f90-looking-at-end-critical): New funcs.
24598 (f90-no-block-limit, f90-calculate-indent, f90-end-of-block)
24599 (f90-beginning-of-block, f90-next-block, f90-indent-region)
24600 (f90-match-end): Handle block, critical.
24601
24602 2011-06-25 Glenn Morris <rgm@gnu.org>
24603
24604 * calendar/diary-lib.el (diary-included-files): Doc fix.
24605 (diary-include-files): New function, extracted from
24606 diary-include-other-diary-files and diary-mark-included-diary-files.
24607 (diary-include-other-diary-files, diary-mark-included-diary-files):
24608 Just call diary-include-files.
24609 (diary-mark-entries): Reset diary-included-files on first call.
24610
24611 * calendar/diary-lib.el (diary-mark-entries)
24612 (diary-mark-included-diary-files):
24613 Visit included diary-files in temp buffers.
24614
24615 * progmodes/f90.el (f90-keywords-re, f90-font-lock-keywords-1)
24616 (f90-blocks-re, f90-program-block-re, f90-end-block-re)
24617 (f90-start-block-re, f90-imenu-generic-expression)
24618 (f90-looking-at-program-block-start, f90-no-block-limit):
24619 Add support for submodules.
24620
24621 * progmodes/f90.el (f90-keywords-re, f90-keywords-level-3-re)
24622 (f90-procedures-re, f90-constants-re): Add some F2008 stuff.
24623
24624 2011-06-25 Eli Zaretskii <eliz@gnu.org>
24625
24626 * net/ange-ftp.el (ange-ftp-insert-file-contents): Let-bind
24627 buffer-file-type before setting its value, to avoid disastrous
24628 global effects on decoding files for DOS/Windows systems. (Bug#8780)
24629
24630 2011-06-25 Juanma Barranquero <lekktu@gmail.com>
24631
24632 * allout.el (allout-unload-function): Pass -1 to `allout-mode'.
24633
24634 * ses.el (ses-unload-function):
24635 * emacs-lisp/re-builder.el (re-builder-unload-function): Simplify.
24636
24637 * proced.el (proced-unload-function):
24638 * progmodes/cperl-mode.el (cperl-mode-unload-function): Remove.
24639
24640 2011-06-25 Andreas Rottmann <a.rottmann@gmx.at>
24641
24642 * server.el (server-create-window-system-frame): Add parameters arg.
24643 (server-process-filter): Doc fix. Handle frame-parameters.
24644
24645 2011-06-25 Juanma Barranquero <lekktu@gmail.com>
24646
24647 Fix bug#8730, bug#8781.
24648
24649 * loadhist.el (unload--set-major-mode): New function.
24650 (unload-feature): Use it.
24651
24652 * progmodes/python.el (python-after-info-look): Add autoload cookie.
24653 (python-unload-function): New function.
24654
24655 2011-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
24656
24657 * mail/rmail.el (rmail-show-message-1): Use restore-buffer-modified-p.
24658
24659 2011-06-25 Giuseppe Scrivano <gscrivano@gnu.org>
24660
24661 * net/browse-url.el (browse-url-firefox-program): Add icecat to
24662 the candidates list.
24663
24664 2011-06-24 Juanma Barranquero <lekktu@gmail.com>
24665
24666 * progmodes/verilog-mode.el (verilog-mode): Fix test for bound variable.
24667
24668 2011-06-23 Richard Stallman <rms@gnu.org>
24669
24670 * mail/rmail.el: Going to grep hit in Rmail buffer finds the message.
24671 (rmail-variables): Set next-error-move-function.
24672 (rmail-what-message): Take argument POS.
24673 (rmail-next-error-move): New function.
24674
24675 2011-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
24676
24677 * emacs-lisp/smie.el (smie-bnf->prec2): Give more understandable error
24678 messages for adjacent non-terminals.
24679
24680 2011-06-23 Richard Stallman <rms@gnu.org>
24681
24682 * mail/rmail.el (rmail-retry-ignored-headers): Add message-id.
24683 (rmail-show-message-1): Preserve buffer modified flag.
24684 (rmail-start-mail): Don't specify use of rmail-mail-return;
24685 that's done by mail-bury now.
24686 (rmail-mail-return): Handle arg NEWBUF.
24687
24688 2011-06-23 Michael Albinus <michael.albinus@gmx.de>
24689
24690 * net/tramp-sh.el (tramp-method-out-of-band-p): Check, whether
24691 SIZE is a number.
24692
24693 2011-06-23 Martin Rudalics <rudalics@gmx.at>
24694
24695 * window.el (get-lru-window, get-mru-window)
24696 (get-largest-window): Never return a minibuffer window.
24697 (display-buffer-pop-up-window): Fix a bug that could lead to
24698 reusing the minibuffer window.
24699 (display-buffer): Pass original specifier argument to
24700 display-buffer-function instead of the normalized one.
24701 Reported by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
24702
24703 2011-06-22 Leo Liu <sdl.web@gmail.com>
24704
24705 * minibuffer.el (completing-read-function)
24706 (completing-read-default): Move from minibuf.c.
24707
24708 2011-06-22 Richard Stallman <rms@gnu.org>
24709
24710 * mail/sendmail.el (mail-bury): If Rmail is in use, return nicely
24711 to Rmail even if not started by a special Rmail command.
24712
24713 * mail/rmailmm.el (rmail-insert-mime-forwarded-message):
24714 Copy the buffer currently showing just one message.
24715
24716 2011-06-22 Roland Winkler <winkler@gnu.org>
24717
24718 * textmodes/bibtex.el (bibtex-entry-update): Use mapc.
24719 (bibtex-clean-entry): First delete the old key so that a
24720 customized algorithm for generating the new key does not get
24721 confused by the old key.
24722 (bibtex-url): Obey regexp of first step.
24723 (bibtex-search-entries): Do not use add-to-list with local
24724 list-var.
24725
24726 2011-06-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
24727
24728 * mail/smtpmail.el (smtpmail-try-auth-methods): If the user has
24729 stored a user name, then query for the password first, instead of
24730 waiting for SMTP to give an error message and the trying again.
24731
24732 2011-06-22 Lawrence Mitchell <wence@gmx.li>
24733
24734 * net/browse-url.el (browse-url-xdg-open): Use 0, rather than nil
24735 BUFFER in call-process.
24736
24737 2011-06-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
24738
24739 * mail/smtpmail.el (smtpmail-via-smtp): Make sure we don't send
24740 QUIT twice.
24741 (smtpmail-try-auth-methods): Require user name and password from
24742 auth-source.
24743
24744 2011-06-22 Martin Rudalics <rudalics@gmx.at>
24745
24746 * window.el (display-buffer-default-specifiers)
24747 (display-buffer-alist): Remove entries for pop-up-frame-alist.
24748 Suggested by Katsumi Yamaoka <yamaoka@jpl.org>.
24749 (split-window): Normalize SIDE argument (Bug#8916).
24750
24751 * frame.el (pop-up-frame-alist, pop-up-frame-function)
24752 (special-display-frame-alist, special-display-popup-frame):
24753 Remove duplicate declarations. These are now in window.el.
24754
24755 2011-06-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
24756
24757 * mail/smtpmail.el (smtpmail-via-smtp):
24758 Set :use-starttls-if-possible so that we always use STARTTLS if the
24759 server supports it. SMTP servers that support STARTTLS commonly
24760 require it.
24761
24762 * net/network-stream.el (network-stream-open-starttls): Support
24763 upgrading to STARTTLS always, even if we don't have built-in support.
24764 (open-network-stream): Add the :always-query-capabilities keyword.
24765
24766 * mail/smtpmail.el: Rewritten to do opportunistic STARTTLS
24767 upgrades with `open-network-stream', and rely solely on
24768 auth-source for all credentials. Big changes throughout the file,
24769 but in particular:
24770 (smtpmail-auth-credentials): Remove.
24771 (smtpmail-starttls-credentials): Remove.
24772 (smtpmail-via-smtp): Check for servers saying they want AUTH after
24773 MAIL FROM, too.
24774
24775 * net/network-stream.el (network-stream-open-starttls):
24776 Provide support for client certificates both for external and built-in
24777 STARTTLS.
24778 (auth-source): Require.
24779 (open-network-stream): Document the :client-certificate keyword.
24780 (network-stream-certificate): Change cert-cert to cert and
24781 cert-key to key.
24782
24783 2011-06-21 Michael Albinus <michael.albinus@gmx.de>
24784
24785 * net/tramp-cache.el (top): Don't load the persistency file when
24786 "emacs -Q" has been called.
24787
24788 2011-06-21 Tim Harper <timcharper@gmail.com>
24789
24790 * term/ns-win.el (ns-initialize-window-system):
24791 Set application-specific `ApplePressAndHoldEnabled' system
24792 resource to NO as it is not yet supported by the NS port.
24793
24794 2011-06-21 Juanma Barranquero <lekktu@gmail.com>
24795
24796 * misc.el (list-dynamic-libraries--refresh): Compute header here...
24797 (list-dynamic-libraries): ...not here.
24798
24799 2011-06-21 Leo Liu <sdl.web@gmail.com>
24800
24801 * subr.el (sha1): Implement sha1 using secure-hash.
24802
24803 2011-06-21 Martin Rudalics <rudalics@gmx.at>
24804
24805 * window.el (display-buffer-alist): In default value do not
24806 enforce searching a window on any but the selected frame.
24807 Reported by Katsumi Yamaoka <yamaoka@jpl.org>.
24808 (display-buffer-select-window): Remove function.
24809 (display-buffer-in-window): When a window on another frame gets
24810 reused, do not select it any more but just raise its frame if
24811 necessary (Bug#8851) and (Bug#8856).
24812 (display-buffer-normalize-options): Handle pop-up-frames related
24813 options more faithfully.
24814 (pop-to-buffer): Don't rely on `display-buffer' selecting the
24815 window if it is on another frame.
24816 (display-buffer-alist, display-buffer-default-specifiers):
24817 Don't make new frame unsplittable by default.
24818 (display-buffer-normalize-argument): Fix doc-string typo and use
24819 'same-frame-other-window instead of 'other-window when associating
24820 with display-buffer-macro-specifiers.
24821
24822 2011-06-21 Vincent Belaïche <vincent.b.1@hotmail.fr>
24823
24824 * play/5x5.el (5x5-solve-rotate-left, 5x5-solve-rotate-right):
24825 New functions.
24826 (5x5-mode-map, 5x5-mode-menu): Bind them.
24827 (5x5-draw-grid): Tweak the solver's rendering.
24828
24829 2011-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
24830
24831 * progmodes/compile.el (compilation-error-regexp-alist-alist): Rename
24832 `caml' to `python-tracebacks-and-caml'; allow leading tabs (bug#8585).
24833
24834 2011-06-21 Drew Adams <drew.adams@oracle.com>
24835
24836 * menu-bar.el: Use function variable instead of switch-to-buffer.
24837 (menu-bar-select-buffer-function): New variable.
24838 (menu-bar-update-buffers): Use it (bug#8876).
24839
24840 2011-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
24841
24842 * emacs-lisp/bytecomp.el (add-to-list): Add handler to check the
24843 variable's status.
24844
24845 2011-06-20 Jan Djärv <jan.h.d@swipnet.se>
24846
24847 * x-dnd.el (x-dnd-version-from-flags)
24848 (x-dnd-more-than-3-from-flags): New functions that handle long-as-cons
24849 and long as number (Bug#8899).
24850 (x-dnd-handle-xdnd): Call functions above (Bug#8899).
24851
24852 2011-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
24853
24854 * minibuffer.el (completion-metadata): Add `metadata' to the alist.
24855 (completion-try-completion, completion-all-completions): Compute the
24856 metadata argument if it's missing; make it optional (bug#8795).
24857
24858 * wid-edit.el: Use lex-bind and move towards completion-at-point.
24859 (widget-complete): Use new :completion-function property.
24860 (widget-completions-at-point): New function.
24861 (default): Use :completion-function instead of :complete.
24862 (widget-default-completions): Rename from widget-default-complete;
24863 Rewrite.
24864 (widget-string-complete, widget-file-complete, widget-color-complete):
24865 Remove functions.
24866 (file, symbol, function, variable, coding-system, color):
24867 * international/mule-cmds.el (default-input-method, charset)
24868 (language-info-custom-alist):
24869 * cus-edit.el (face): Use new property :completions.
24870
24871 * progmodes/pascal.el (pascal-completions-at-point): New function.
24872 (pascal-mode): Use it.
24873 (pascal-mode-map): Use completion-at-point.
24874 (pascal-toggle-completions): Make obsolete.
24875 (pascal-complete-word, pascal-show-completions):
24876 * progmodes/octave-mod.el (octave-complete-symbol):
24877 Redefine as obsolete alias.
24878 * progmodes/octave-inf.el (inferior-octave-completion-at-point):
24879 Signal absence of completion info for old Octave,
24880 (inferior-octave-complete): Redefine as obsolete alias.
24881 * progmodes/meta-mode.el: Use lexical-binding and completion-at-point.
24882 (meta-completions-at-point): Rename from meta-complete-symbol and
24883 adapt it for use on completion-at-point-functions.
24884 (meta-common-mode): Use it.
24885 (meta-looking-at-backward, meta-match-buffer): Remove.
24886 (meta-complete-symbol): Redefine as obsolete alias.
24887 (meta-common-mode-map): Use completion-at-point.
24888 * progmodes/make-mode.el: Use lexical-binding and completion-at-point.
24889 (makefile-mode-map): Use completion-at-point.
24890 (makefile-completions-at-point): Rename from makefile-complete and
24891 adapt it for use on completion-at-point-functions.
24892 (makefile-mode): Use it.
24893 (makefile-complete): Redefine as obsolete alias.
24894
24895 2011-06-20 Deniz Dogan <deniz@dogan.se>
24896
24897 * net/rcirc.el: Delete trailing whitespaces once and for all.
24898
24899 2011-06-20 Daniel Colascione <dan.colascione@gmail.com>
24900
24901 * emacs-lisp/syntax.el (syntax-ppss): Further improve docstring.
24902
24903 2011-06-19 Chong Yidong <cyd@stupidchicken.com>
24904
24905 * files.el (auto-mode-alist): Entry for m2-mode (Bug#8852).
24906
24907 * info.el (Info-apropos-toc-nodes): Minor doc fix (Bug#8833).
24908
24909 2011-06-19 Martin Rudalics <rudalics@gmx.at>
24910
24911 * window.el (display-buffer-other-window-means-other-frame):
24912 Call display-buffer-normalize-alist.
24913 (display-buffer-normalize-specifiers-1): Rename to
24914 display-buffer-normalize-argument. New argument other-frame.
24915 Rewrite.
24916 (display-buffer-normalize-specifiers-2): Rename to
24917 display-buffer-normalize-options.
24918 (display-buffer-normalize-alist-1): New function.
24919 (display-buffer-normalize-specifiers-3): Rename to
24920 display-buffer-normalize-alist.
24921 Call display-buffer-normalize-alist-1.
24922 (display-buffer-normalize-options-inhibit): New variable.
24923 (display-buffer-normalize-specifiers): Rewrite calling
24924 display-buffer-normalize-alist,
24925 display-buffer-normalize-argument, and
24926 display-buffer-normalize-options. Don't call the latter if
24927 display-buffer-normalize-options-inhibit is non-nil.
24928 (frame-auto-delete): New option.
24929 (window-deletable-p): Use frame-auto-delete.
24930 (window-list-no-nils, window-state-ignored-parameters)
24931 (window-state-get-1, window-state-get, window-state-put-list)
24932 (window-state-put-1, window-state-put-2, window-state-put):
24933 New functions.
24934 (display-buffer-normalize-options): Move special-display-p group
24935 after pop-up-frame group (Bug#8851) and (Bug#8856).
24936
24937 2011-06-18 Chong Yidong <cyd@stupidchicken.com>
24938
24939 * emacs-lisp/rx.el (rx-constituents): Add support for numbered
24940 groups (Bug#8776).
24941 (rx-submatch-n): New function.
24942 (rx): Document it.
24943
24944 * dired-x.el (dired-mark-unmarked-files): Fix interactive spec
24945 (Bug#8768).
24946
24947 * replace.el (occur-mode-map): Set occur-edit-mode binding to "e".
24948
24949 * textmodes/fill.el (default-justification): Add :safe (Bug#8879).
24950
24951 * cus-face.el (custom-declare-face): Call custom-theme-recalc face
24952 anytime existing face settings are present (Bug#8889).
24953
24954 * progmodes/delphi.el (delphi-mode-syntax-table): Use defvar.
24955 (delphi-mode): Use define-derived-mode to inherit from prog-mode.
24956 Remove unused argument.
24957
24958 2011-06-18 Martin Rudalics <rudalics@gmx.at>
24959
24960 * window.el (display-buffer-default-specifiers):
24961 Remove pop-up-frame. Add pop-up-window-min-height,
24962 pop-up-window-min-width, and another reuse-window specifier
24963 (Bug#8882). Reported by Dan Nicolaescu <dann@gnu.org>.
24964 (display-buffer-normalize-specifiers-2):
24965 Handle split-height-threshold and split-width-threshold also when
24966 pop-up-windows is unset. Add a reuse-window specifier for the
24967 case popping up a new window fails.
24968 (special-display-popup-frame): Remove double quoting.
24969 (display-buffer-normalize-specifiers-1): Fix thinko.
24970
24971 2011-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
24972
24973 * shell.el (shell-completion-vars): Set pcomplete-termination-string
24974 according to comint-completion-addsuffix.
24975
24976 * pcomplete.el: Convert to lexical binding and fix bug#8819.
24977 (pcomplete-suffix-list): Mark as obsolete.
24978 (pcomplete-completions-at-point): Capture pcomplete-norm-func and
24979 pcomplete-seen in the closure.
24980 (pcomplete-comint-setup): Setup completion-at-point as well.
24981 (pcomplete--entries): New function.
24982 (pcomplete--env-regexp): New var.
24983 (pcomplete-entries): Rewrite to work with partial-completion and
24984 without relying on pcomplete-suffix-list.
24985 (pcomplete-pare-list): Remove, unused.
24986
24987 2011-06-17 Martin Rudalics <rudalics@gmx.at>
24988
24989 * window.el (display-buffer-alist): Set pop-up-window-min-height
24990 and pop-up-window-min-width in default value. Reported by
24991 Thierry Volpiatto <thierry.volpiatto@gmail.com>. New specifier
24992 other-window-means-other-frame.
24993 (display-buffer-macro-specifiers): Comment out entry for
24994 other-window specifier.
24995 (display-buffer-other-window-means-other-frame): New function.
24996 (display-buffer-normalize-specifiers-1): New arguments
24997 buffer-name and label. Treat other-window case specially.
24998 (display-buffer-normalize-specifiers-2): Treat other-window case
24999 specially.
25000 (display-buffer-normalize-specifiers-3): New function.
25001 (display-buffer-normalize-specifiers):
25002 Call display-buffer-normalize-specifiers-3.
25003
25004 2011-06-17 Martin Rudalics <rudalics@gmx.at>
25005
25006 * window.el (same-window-p): Fix two typos introduced when
25007 adding with-no-warnings.
25008 (display-buffer-normalize-specifiers-1): Don't check
25009 pop-up-frames for 'unset initialization.
25010 (display-buffer-normalize-specifiers-2): Major rewrite using
25011 special-display-p and same-window-p (Bug#8851) and (Bug#8856).
25012 (pop-up-frames, display-buffer-reuse-frames)
25013 (display-buffer-mark-dedicated): Don't initialize to 'unset.
25014 Suggested by David Engster <deng@randomsample.de>.
25015 (even-window-heights): Initialize to 'unset.
25016 (display-buffer-alist-set): Handle new 'unset initializations.
25017 (display-buffer-macro-specifiers): Don't pop up a new frame in the
25018 other window case.
25019
25020 2011-06-16 Martin Rudalics <rudalics@gmx.at>
25021
25022 * window.el (display-buffer-normalize-specifiers-1):
25023 Respect current value of pop-up-frames for most reasonable values of
25024 second argument of display-buffer (Bug#8865).
25025 (switch-to-buffer-same-frame, switch-to-buffer-other-window)
25026 (switch-to-buffer-other-window-same-frame)
25027 (switch-to-buffer-other-frame): Fix doc-strings. Reported by Drew
25028 Adams (Bug#8875).
25029 (display-buffer): Don't check noninteractive when calling
25030 display-buffer-pop-up-frame.
25031 (display-buffer-pop-up-frame): Never pop up a frame in
25032 noninteractive mode (Bug#8857).
25033 (enlarge-window, shrink-window): Don't report an error when the
25034 window can't be resized as requested (Bug#8862).
25035
25036 2011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
25037
25038 * pcmpl-rpm.el (pcomplete/rpm): Minor simplification.
25039
25040 * emacs-lisp/debug.el (debug): Don't leave the buffer in Debugger.
25041
25042 * abbrev.el (define-abbrev-table): Don't add a table multiple times.
25043
25044 2011-06-15 Alan Mackenzie <acm@muc.de>
25045
25046 * progmodes/cc-fonts.el (c-font-lock-declarations): 1: Whilst checking
25047 for declarators, disable knr checking to speed up for normal files.
25048 2: Refactor, replacing a sequence of nested if forms by a cond form.
25049
25050 2011-06-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
25051
25052 * net/network-stream.el (open-network-stream): Add the keyword
25053 :always-query-capabilities for the case where you want to force a
25054 `plain' network connection, but the protocol still requires the
25055 capabilitiy command (i.e., SMTP and EHLO).
25056
25057 * subr.el (process-live-p): Rename from `process-alive-p' for
25058 consistency with other `-live-p' functions.
25059
25060 2011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
25061
25062 * window.el (same-window-buffer-names, same-window-regexps)
25063 (special-display-frame-alist, special-display-popup-frame)
25064 (special-display-function, special-display-buffer-names)
25065 (special-display-regexps, pop-up-frame-alist)
25066 (pop-up-frame-function, pop-up-frames, display-buffer-reuse-frames)
25067 (pop-up-windows, split-window-preferred-function)
25068 (split-height-threshold, split-width-threshold, even-window-heights)
25069 (display-buffer-mark-dedicated): Don't encourage the use of
25070 display-buffer-alist from Elisp code.
25071
25072 2011-06-15 Dan Nicolaescu <dann@ics.uci.edu>
25073
25074 * progmodes/python.el (python-mode): Derive from prog-mode.
25075 * progmodes/ps-mode.el (ps-mode):
25076 * progmodes/mixal-mode.el (mixal-mode):
25077 * progmodes/cfengine.el (cfengine-mode):
25078 * progmodes/ld-script.el (ld-script-mode): Likewise.
25079
25080 2011-06-15 Martin Rudalics <rudalics@gmx.at>
25081
25082 * window.el (display-buffer-alist): Trim default value to avoid
25083 popping up a new frame (Bug#8857) or reusing an arbitrary window
25084 on another frame.
25085 (display-buffer): Do not fall back on popping up a new frame in
25086 batch mode (Bug#8857).
25087
25088 2011-06-14 Chong Yidong <cyd@stupidchicken.com>
25089
25090 * cus-theme.el (describe-theme-1): Use custom-theme-p.
25091 (custom-theme-summary): New function.
25092 (customize-themes): Use it.
25093
25094 2011-06-13 Glenn Morris <rgm@gnu.org>
25095
25096 * cus-dep.el (custom-make-dependencies): Use up command-line-args-left.
25097
25098 2011-06-13 Martin Rudalics <rudalics@gmx.at>
25099
25100 * help.el (help-window): Remove variable.
25101 (help-window-point-marker, temp-buffer-max-height)
25102 (temp-buffer-resize-mode, help-window-select): Rewrite doc-strings.
25103 (help-print-return-message): Don't set help-window.
25104 (resize-temp-buffer-window): Rewrite cod eand doc-string.
25105 (help-window-setup-finish): Remove.
25106 (help-window-display-message, help-window-setup)
25107 (with-help-window): Major rewrite based on new
25108 display-buffer-window variable.
25109
25110 * help-mode.el (help-mode-finish): Remove help-window related
25111 code.
25112
25113 * view.el (view-exits-all-viewing-windows): Remove reference to
25114 view-return-to-alist in doc-string.
25115 (view-return-to-alist): Make obsolete.
25116 (view-buffer): Call pop-to-buffer-same-window and remove
25117 undo-window code.
25118 (view-buffer-other-window): Call pop-to-buffer-other-window and
25119 simplify code. Ignore second argument.
25120 (view-buffer-other-frame): Call pop-to-buffer-other-frame and
25121 simplify code. Ignore second argument.
25122 (view-return-to-alist-update): Make obsolete.
25123 (view-mode-enter): Rename second argument to QUIT-RESTORE.
25124 Rewrite using quit-restore window parameters.
25125 (view-mode-exit): Rename second argument to EXIT-ONLY.
25126 Rewrite using quit-restore-window.
25127 (View-exit, View-exit-and-edit, View-leave, View-quit)
25128 (View-quit-all, View-kill-and-leave): Call view-mode-exit with
25129 appropriate arguments.
25130 (view-end-message): Use quit-restore window parameter.
25131
25132 * window.el (display-buffer-function): Rewrite doc-string.
25133 (display-buffer-window, display-buffer-alist): New variables.
25134 (display-buffer-split-specifiers)
25135 (display-buffer-side-specifiers)
25136 (display-buffer-macro-specifiers): New constants.
25137 (display-buffer-even-window-sizes, display-buffer-set-height)
25138 (display-buffer-set-width, display-buffer-select-window)
25139 (display-buffer-in-window, display-buffer-reuse-window)
25140 (display-buffer-split-window-1, display-buffer-split-window)
25141 (display-buffer-split-atom-window, display-buffer-pop-up-window)
25142 (display-buffer-pop-up-frame, display-buffer-pop-up-side-window)
25143 (display-buffer-in-side-window, normalize-buffer-to-display)
25144 (display-buffer-normalize-specifiers-1)
25145 (display-buffer-normalize-specifiers-2)
25146 (display-buffer-normalize-specifiers, display-buffer-frame):
25147 New functions.
25148 (display-buffer): Major rewrite.
25149 (display-buffer-other-window, display-buffer-other-frame)
25150 (pop-to-buffer, switch-to-buffer-other-window)
25151 (switch-to-buffer-other-frame): Rewrite.
25152 (display-buffer-same-window, display-buffer-same-frame)
25153 (display-buffer-same-frame-other-window)
25154 (pop-to-buffer-same-window, pop-to-buffer-same-frame)
25155 (pop-to-buffer-other-window)
25156 (pop-to-buffer-same-frame-other-window)
25157 (pop-to-buffer-other-frame, switch-to-buffer-same-frame)
25158 (switch-to-buffer-other-window-same-frame): New functions.
25159 (same-window-p, special-display-p): Rewrite disabling warnings.
25160 Make obsolete.
25161 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
25162 (display-buffer-mark-dedicated): Initialize to symbol 'unset.
25163 Make obsolete
25164 (same-window-buffer-names, same-window-regexps)
25165 (special-display-frame-alist, special-display-popup-frame)
25166 (special-display-function, special-display-buffer-names)
25167 (special-display-regexps, pop-up-frame-alist)
25168 (pop-up-frame-function, split-window-preferred-function)
25169 (split-height-threshold, split-width-threshold)
25170 (even-window-heights): Make obsolete.
25171
25172 2011-06-12 Glenn Morris <rgm@gnu.org>
25173
25174 * term/xterm.el (terminal-init-xterm): `version' may be nil. (Bug#8838)
25175 Misc simplifications.
25176
25177 2011-06-12 Martin Rudalics <rudalics@gmx.at>
25178
25179 * window.el (window-safely-shrinkable-p): Restore function which
25180 was inadvertently removed in change from 2011-06-11. Declare as
25181 obsolete.
25182
25183 * calendar/calendar.el (calendar-generate-window):
25184 Use window-iso-combined-p instead of combination of one-window-p and
25185 window-safely-shrinkable-p.
25186
25187 2011-06-12 Glenn Morris <rgm@gnu.org>
25188
25189 * progmodes/fortran.el (fortran-mode-syntax-table):
25190 * progmodes/f90.el (f90-mode-syntax-table):
25191 Set % to punctuation. (Bug#8820)
25192 (f90-find-tag-default): Remove, no longer needed.
25193
25194 2011-06-12 Daniel Colascione <dan.colascione@gmail.com>
25195
25196 * emacs-lisp/syntax.el (syntax-ppss): Clarify which items are invalid.
25197
25198 2011-06-11 Chong Yidong <cyd@stupidchicken.com>
25199
25200 * image.el (image-animated-p): Return animation delay in seconds.
25201 Avoid bit manipulation in Lisp; use `delay' entry in the metadata.
25202 (image-animate-timeout): Remove DELAY argument. Don't assume
25203 every subimage has the same delay; get it from image-animated-p.
25204 (image-animate): Caller changed.
25205
25206 2011-06-11 Michael Albinus <michael.albinus@gmx.de>
25207
25208 * net/tramp.el (tramp-debug-message): Add `tramp-with-progress-reporter'
25209 to ignored backtrace functions.
25210
25211 2011-06-11 Glenn Morris <rgm@gnu.org>
25212
25213 * calendar/appt.el (appt-disp-window-function): Doc fix.
25214 (appt-check): Handle overlapping appointments. (Bug#8337)
25215
25216 2011-06-11 Martin Rudalics <rudalics@gmx.at>
25217
25218 * window.el (window-tree-1, window-tree): New functions, moving
25219 the latter to window.el.
25220 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
25221 (bw-find-tree-sub-1, bw-l, bw-t, bw-r, bw-b, bw-dir, bw-eqdir)
25222 (bw-refresh-edges): Remove.
25223 (balance-windows-1, balance-windows-2): New functions.
25224 (balance-windows): Rewrite in terms of window tree functions,
25225 balance-windows-1 and balance-windows-2.
25226 (bw-adjust-window): Remove.
25227 (balance-windows-area-adjust): New function with functionality of
25228 bw-adjust-window but using resize-window.
25229 (set-window-text-height): Rewrite doc-string.
25230 Use normalize-live-window and resize-window.
25231 (enlarge-window-horizontally, shrink-window-horizontally):
25232 Rename argument to DELTA.
25233 (window-buffer-height): New function.
25234 (fit-window-to-buffer, shrink-window-if-larger-than-buffer):
25235 Rewrite using new window resize routines.
25236 (kill-buffer-and-window, mouse-autoselect-window-select):
25237 Use ignore-errors instead of condition-case.
25238 (quit-window): Call delete-frame instead of delete-windows-on
25239 for the only buffer on frame.
25240
25241 2011-06-10 Martin Rudalics <rudalics@gmx.at>
25242
25243 * loadup.el (top-level): Load window before files for the sake
25244 of replace-buffer-in-windows.
25245
25246 * files.el (read-buffer-to-switch)
25247 (switch-to-buffer-other-window)
25248 (switch-to-buffer-other-frame, display-buffer-other-frame):
25249 Move to window.el.
25250
25251 * simple.el (get-next-valid-buffer, last-buffer, next-buffer)
25252 (previous-buffer): Move to window.el.
25253
25254 * bindings.el (unbury-buffer): Move to window.el.
25255
25256 * window.el (delete-other-windows-vertically): Move after
25257 definition of delete-other-windows.
25258 (other-window, delete-windows-on, replace-buffer-in-windows):
25259 Move here from window.c.
25260 (record-window-buffer, unrecord-window-buffer)
25261 (set-window-buffer-start-and-point, switch-to-prev-buffer)
25262 (switch-to-next-buffer): New functions.
25263 (get-next-valid-buffer, last-buffer, next-buffer): Move here
25264 from simple.el. Call switch-to-next-buffer.
25265 (previous-buffer): Move here from simple.el.
25266 Call switch-to-prev-buffer.
25267 (bury-buffer): Move here from buffer.c. Switch to previous
25268 buffer when window cannot be deleted.
25269 (unbury-buffer): Move here from bindings.el.
25270 (ctl-x-map): Move binding for other-window from window.c to
25271 here.
25272 (read-buffer-to-switch, switch-to-buffer-other-window)
25273 (switch-to-buffer-other-frame): Move here from files.el.
25274 (normalize-buffer-to-switch-to): New functions.
25275 (switch-to-buffer): Move here from buffer.c.
25276 Use read-buffer-to-switch and normalize-buffer-to-switch-to.
25277
25278 2011-06-10 Martin Rudalics <rudalics@gmx.at>
25279
25280 * window.el (window-min-height, window-min-width): Move here
25281 from window.c. Add defcustoms and rewrite doc-strings.
25282 (resize-mini-window, resize-window): New functions.
25283 (adjust-window-trailing-edge, enlarge-window, shrink-window):
25284 Move here from window.c.
25285 (maximize-window, minimize-window): New functions.
25286 (delete-window, delete-other-windows, split-window): Move here
25287 from window.c.
25288 (window-split-min-size): New function.
25289 (split-window-keep-point): Mention split-window-above-each-other
25290 instead of split-window-vertically.
25291 (split-window-above-each-other, split-window-vertically):
25292 Rename split-window-vertically to split-window-above-each-other
25293 and provide defalias for old definition.
25294 (split-window-side-by-side, split-window-horizontally):
25295 Rename split-window-horizontally to split-window-side-by-side
25296 and provide defalias for the old definition.
25297 (ctl-x-map): Move bindings for delete-window,
25298 delete-other-windows and enlarge-window here from window.c.
25299 Replace bindings for split-window-vertically and
25300 split-window-horizontally by bindings for
25301 split-window-above-each-other and split-window-side-by-side.
25302
25303 * cus-start.el (all): Remove entries for window-min-height and
25304 window-min-width. Add entries for window-splits and
25305 window-nest.
25306
25307 2011-06-09 Glenn Morris <rgm@gnu.org>
25308
25309 * calendar/appt.el (appt-mode-line): New function.
25310 (appt-check, appt-disp-window): Use it.
25311
25312 * files.el (hack-one-local-variable-eval-safep):
25313 Allow minor-modes with explicit +/-1 arguments.
25314
25315 2011-06-09 Teodor Zlatanov <tzz@lifelogs.com>
25316
25317 * term/xterm.el (xterm): Add defgroup.
25318 (xterm-extra-capabilities): Add defcustom to supply known xterm
25319 capabilities, skip querying them, or query them (default).
25320 (terminal-init-xterm): Use it.
25321 (terminal-init-xterm-modify-other-keys): New function to set up
25322 modifyOtherKeys support to simplify `terminal-init-xterm'.
25323
25324 2011-06-09 Martin Rudalics <rudalics@gmx.at>
25325
25326 * window.el (resize-window-reset, resize-window-reset-1)
25327 (resize-subwindows-skip-p, resize-subwindows-normal)
25328 (resize-subwindows, resize-other-windows, resize-this-window)
25329 (resize-root-window, resize-root-window-vertically)
25330 (window-deletable-p, window-or-subwindow-p)
25331 (frame-root-window-p): New functions.
25332
25333 2011-06-09 Glenn Morris <rgm@gnu.org>
25334
25335 * net/ange-ftp.el (ange-ftp-switches-ok): New function.
25336 (ange-ftp-get-files): Use it.
25337
25338 2011-06-09 Alexander Klimov <alserkli@inbox.ru> (tiny change)
25339
25340 * mail/sendmail.el (mail-recover-1, mail-recover):
25341 * files.el (recover-file, recover-session):
25342 Handle dired-listing-switches not being just a single short option.
25343
25344 2011-06-09 Glenn Morris <rgm@gnu.org>
25345
25346 * calendar/appt.el (appt-display-message, appt-disp-window):
25347 Handle lists of appointments.
25348
25349 2011-06-08 Martin Rudalics <rudalics@gmx.at>
25350
25351 * window.el (one-window-p): Move down in code.
25352 Rewrite doc-string.
25353 (window-current-scroll-bars): Rewrite doc-string.
25354 Normalize live window argument.
25355 (walk-windows, get-window-with-predicate, count-windows):
25356 Rewrite doc-string. Use window-list-1.
25357 (window-in-direction-2, window-in-direction, get-mru-window):
25358 New functions.
25359
25360 2011-06-08 Reuben Thomas <rrt@sc3d.org>
25361
25362 * progmodes/flymake.el (flymake-compilation-prevents-syntax-check):
25363 Doc fix (Bug#8713).
25364
25365 2011-06-08 Chong Yidong <cyd@stupidchicken.com>
25366
25367 * repeat.el (repeat-on-final-keystroke): Fix type (Bug#8696).
25368
25369 2011-06-08 Juanma Barranquero <lekktu@gmail.com>
25370
25371 * loadhist.el (unload-feature-special-hooks):
25372 Add `comint-output-filter-functions'.
25373
25374 2011-06-08 Ivan Kanis <gnu@kanis.fr>
25375
25376 * calendar/appt.el (appt-check): Move some initializations into the let.
25377
25378 2011-06-08 Martin Rudalics <rudalics@gmx.at>
25379
25380 * window.el (window-height): Defalias to window-total-height.
25381 (window-width): Defalias to window-body-width.
25382
25383 2011-06-07 Chong Yidong <cyd@stupidchicken.com>
25384
25385 * image-mode.el (image-toggle-animation): New command.
25386 (image-mode-map): Bind it to RET.
25387 (image-mode): Update message.
25388 (image-toggle-display-image): Avoid a spurious cache flush.
25389 (image-transform-rotation): Doc fix.
25390 (image-transform-properties): Return quickly in the normal case.
25391 (image-animate-loop): Rename from image-animate-max-time.
25392
25393 * image.el (image-animate-max-time): Move to image-mode.el.
25394 (create-animated-image): Remove unnecessary function.
25395 (image-animate): Rename from image-animate-start. New arg.
25396 (image-animate-stop): Remove; just use image-animate-timer.
25397 (image-animate-timer): Use car-safe.
25398 (image-animate-timeout): Rename argument.
25399
25400 2011-06-07 Martin Rudalics <rudalics@gmx.at>
25401
25402 * window.el (get-lru-window, get-largest-window): Move here from
25403 window.c. Rename first argument to ALL-FRAMES.
25404 Rephrase doc-strings.
25405 (get-buffer-window-list): Rewrite using window-list-1.
25406 Rephrase doc-string.
25407 (window-safe-min-height, window-safe-min-width): New constants.
25408 (window-size-ignore, window-min-size, window-min-size-1)
25409 (window-sizable, window-sizable-p, window-size-fixed-1)
25410 (window-size-fixed-p, window-min-delta-1, window-min-delta)
25411 (window-max-delta-1, window-max-delta, window-resizable)
25412 (window-resizable-p, window-total-height, window-total-width)
25413 (window-body-width): New functions.
25414 (window-full-height-p, window-full-width-p): Rewrite using
25415 window-total-size.
25416 (window-body-height): Rewrite using window-body-size.
25417
25418 2011-06-06 Martin Rudalics <rudalics@gmx.at>
25419
25420 * window.el (window-right, window-left, window-child)
25421 (window-child-count, window-last-child, window-any-p)
25422 (normalize-live-buffer, normalize-live-frame)
25423 (normalize-any-window, normalize-live-window)
25424 (window-iso-combination-p, window-iso-combined-p)
25425 (window-iso-combinations)
25426 (walk-window-tree-1, walk-window-tree, walk-window-subtree)
25427 (windows-with-parameter, window-with-parameter)
25428 (window-atom-root, make-window-atom, window-atom-check-1)
25429 (window-atom-check, window-side-check, window-check):
25430 New functions.
25431 (ignore-window-parameters, window-sides, window-sides-vertical)
25432 (window-sides-slots): New variables.
25433 (window-size-fixed): Move down in code. Minor doc-string fix.
25434
25435 2011-06-05 Andreas Schwab <schwab@linux-m68k.org>
25436
25437 * comint.el (comint-dynamic-complete-as-filename)
25438 (comint-dynamic-complete-filename): Correctly call
25439 completion-in-region.
25440
25441 2011-06-05 Deniz Dogan <deniz@dogan.se>
25442
25443 * net/rcirc.el (rcirc-prompt-for-encryption): Fix bug introduced
25444 in last change.
25445
25446 2011-06-05 Deniz Dogan <deniz@dogan.se>
25447
25448 * net/rcirc.el (rcirc-prompt-for-encryption): New function.
25449 (rcirc): Use it to prompt for encryption.
25450
25451 2011-06-05 Roland Winkler <winkler@gnu.org>
25452
25453 * textmodes/bibtex.el (bibtex-search-buffer): New variable.
25454 (bibtex-search-entries): New command bound to C-c C-a.
25455 (bibtex-display-entries): New function.
25456
25457 2011-06-05 Roland Winkler <winkler@gnu.org>
25458
25459 * textmodes/bibtex.el (bibtex-generate-url-list): Fix docstring.
25460 (bibtex-insert-kill): After yanking insert newline if necessary.
25461 (bibtex-initialize): Call bibtex-string-files-init only once.
25462 (bibtex-mode): Do not call easy-menu-add.
25463 (bibtex-validate-globally): Use save-excursion in bibtex buffers.
25464 (bibtex-yank): Set arg properly if nil.
25465
25466 2011-06-05 Roland Winkler <winkler@gnu.org>
25467
25468 * textmodes/bibtex.el (bibtex-search-entry-globally):
25469 New variable.
25470 (bibtex-search-entry): Use it.
25471
25472 2011-06-05 Roland Winkler <winkler@gnu.org>
25473
25474 * textmodes/bibtex.el (bibtex-entry-format): New option
25475 sort-fields.
25476 (bibtex-format-entry, bibtex-reformat): Honor this option.
25477 (bibtex-parse-entry): Return fields in proper order.
25478
25479 2011-06-05 Juanma Barranquero <lekktu@gmail.com>
25480
25481 * doc-view.el (doc-view-remove-if): Move computation of result out
25482 of `dolist' to silence misleading lexical-binding warning.
25483
25484 2011-06-04 Chong Yidong <cyd@stupidchicken.com>
25485
25486 * emacs-lisp/timer.el (timer-activate): Remove unused arg.
25487 (timer-activate, timer-activate-when-idle): Doc fix (Bug#8793).
25488
25489 2011-06-04 Michael Albinus <michael.albinus@gmx.de>
25490
25491 * net/tramp-sh.el (tramp-find-shell): Apply workaround also for
25492 "SunOS 5.10".
25493
25494 2011-06-04 Michael Albinus <michael.albinus@gmx.de>
25495
25496 * net/tramp.el (tramp-set-completion-function, tramp-parse-rhosts)
25497 (tramp-parse-shosts, tramp-parse-sconfig, tramp-parse-shostkeys)
25498 (tramp-parse-hosts, tramp-parse-passwd, tramp-parse-netrc)
25499 (tramp-parse-putty):
25500 * net/tramp-sh.el (tramp-completion-function-alist-rsh)
25501 (tramp-completion-function-alist-ssh)
25502 (tramp-completion-function-alist-telnet)
25503 (tramp-completion-function-alist-su)
25504 (tramp-completion-function-alist-putty): Set `tramp-autoload'
25505 cookie.
25506
25507 * net/tramp-ftp.el:
25508 * net/tramp-sh.el:
25509 * net/tramp-smb.el: Set `tramp-autoload' cookie, and eval after
25510 load "tramp.el" `tramp-set-completion-function'.
25511
25512 2011-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
25513
25514 * shell.el: Require and use pcomplete.
25515 (shell-dynamic-complete-functions): Add pcomplete-completions-at-point.
25516 (shell-completion-vars): Set pcomplete-default-completion-function.
25517
25518 2011-06-04 Deniz Dogan <deniz@dogan.se>
25519
25520 * iswitchb.el (iswitchb-window-buffer-p): Use `member' instead of
25521 `memq' (Bug#8799).
25522
25523 2011-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
25524
25525 * subr.el (make-progress-reporter): Add "..." by default (bug#8785).
25526
25527 2011-06-02 Juanma Barranquero <lekktu@gmail.com>
25528
25529 * bs.el (bs--mark-unmark, bs--nth-wrapper):
25530 * mpc.el (mpc-select-extend, mpc-songpointer-context):
25531 * vc/log-view.el (log-view-beginning-of-defun):
25532 * vc/smerge-mode.el (smerge-apply-resolution-patch)
25533 (smerge-refine-forward, smerge-refine-chopup-region):
25534 Silence warning for unused `dotimes' counter variables.
25535
25536 2011-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
25537
25538 * net/tramp.el (tramp-with-progress-reporter): Rename from
25539 with-progress-reporter. Use `declare'.
25540 * net/tramp-smb.el:
25541 * net/tramp-sh.el:
25542 * net/tramp-gvfs.el: Update all uses.
25543
25544 2011-06-02 Jay Belanger <jay.p.belanger@gmail.com>
25545
25546 * calc/calc.el (calc-kill-stack-buffer): Make sure that the trail
25547 buffer isn't killed before making it current.
25548
25549 2011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
25550
25551 Silence various byte-compiler warnings.
25552 * emacs-lisp/byte-run.el (make-obsolete-variable): New argument
25553 `access-type' and new obsolescence format.
25554 * emacs-lisp/bytecomp.el (byte-compile-warn-obsolete): Adjust to
25555 new format.
25556 (byte-compile-check-variable): New `access-type' argument.
25557 Only warn if the access-type is obsolete.
25558 (byte-compile-dynamic-variable-bind, byte-compile-variable-ref)
25559 (byte-compile-variable-set): Adjust callers.
25560 * help-fns.el (describe-variable): Adjust to new obsolescence format.
25561 * mail/sendmail.el (mail-mailer-swallows-blank-line): Only mark
25562 setting it as obsolete.
25563 * simple.el (minibuffer-completing-symbol):
25564 * font-lock.el (font-lock-beginning-of-syntax-function): Only mark read
25565 access as obsolete.
25566 * minibuffer.el (minibuffer-completing-file-name): Don't make it
25567 obsolete yet.
25568 * international/quail.el (quail-mouse-choose-completion): Remove unused
25569 code referring to obsolete var.
25570 (quail-choose-completion-string): Remove.
25571 * server.el (server-clients-with, server-kill-buffer-query-function)
25572 (server-kill-emacs-query-function): Silence "unused `proc'" warnings.
25573 * proced.el (proced-send-signal):
25574 * emacs-lisp/lisp.el (lisp-complete-symbol):
25575 Replace completion-annotate-function with completion-extra-properties.
25576
25577 2011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
25578
25579 * simple.el (goto-line): Use read-number.
25580 (overriding-map-is-bound): Remove.
25581 (saved-overriding-map): Change default.
25582 (save&set-overriding-map): Rename from ensure-overriding-map-is-bound;
25583 Take the map as argument.
25584 (universal-argument, negative-argument, digit-argument): Use it.
25585 (restore-overriding-map): Adjust.
25586 (do-auto-fill): Use fill-forward-paragraph.
25587 (keyboard-quit): Don't signal an error when debug-on-quit is non-nil.
25588
25589 * minibuffer.el (minibuffer-inactive-mode-map): New var.
25590 (minibuffer-inactive-mode): New major mode.
25591 * mouse.el (mouse-drag-region): Remove the "mouse-1 pops up
25592 the *Messages* buffer" hack.
25593 (mouse-popup-menubar): Don't burp if the event is a normal key.
25594
25595 Miscellaneous tweaks.
25596 * emacs-lisp/cl-macs.el (dolist, dotimes): Use the same strategy for
25597 lexical scoping as in subr.el's dolist and dotimes.
25598 * emacs-lisp/bytecomp.el (byte-compile-unfold-bcf):
25599 Silence compiler warning.
25600 * thingatpt.el (forward-whitespace): Trivial coding style fix.
25601 * subr.el (with-output-to-temp-buffer): Provide an edebug spec.
25602 * international/ccl.el (ccl-compile): Trivial simplification.
25603 * help-fns.el (help-do-arg-highlight): Silence compiler warning.
25604 * emacs-lisp/testcover.el (testcover-end): Remove spurious
25605 `printflag' argument.
25606 * emacs-lisp/byte-run.el (make-obsolete, make-obsolete-variable):
25607 Purecopy the whole obsolescence data.
25608
25609 2011-06-01 Leo Liu <sdl.web@gmail.com>
25610
25611 * net/rcirc.el (rcirc-decode-coding-system): Revert last change;
25612 improve doc-string as suggested by Marco Pessotto
25613 <melmothx@gmail.com>.
25614 (rcirc-print): Fix last change.
25615
25616 2011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
25617
25618 * minibuffer.el (complete-with-action): Return nil for the metadata and
25619 boundaries of non-functional tables.
25620 (completion-table-dynamic): Return nil for the metadata.
25621 (completion-table-with-terminator): Add default case, using
25622 complete-with-action.
25623 (completion--metadata): New function.
25624 (completion-all-sorted-completions, minibuffer-completion-help): Use it
25625 to try and avoid pathological performance problems.
25626 (completion--embedded-envvar-table): Return `category' metadata.
25627
25628 2011-05-31 Lars Magne Ingebrigtsen <larsi@gnus.org>
25629
25630 * subr.el (process-alive-p): New tiny convenience function.
25631
25632 2011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
25633
25634 * emacs-lisp/debug.el (debug): Save&restore not just the buffer's
25635 content but also its previous major mode.
25636
25637 2011-05-31 Helmut Eller <eller.helmut@gmail.com>
25638
25639 * emacs-lisp/debug.el (debug): Restore the previous content of the
25640 *Backtrace* buffer when we exit with C-M-c.
25641
25642 2011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
25643
25644 * minibuffer.el: Add metadata method to completion tables.
25645 (completion-category-overrides): New defcustom.
25646 (completion-metadata, completion--field-metadata)
25647 (completion-metadata-get, completion--styles)
25648 (completion--cycle-threshold): New functions.
25649 (completion-try-completion, completion-all-completions):
25650 Add `metadata' argument to choose completion-styles.
25651 (completion--do-completion): Use metadata to choose cycling.
25652 (completion-all-sorted-completions): Use metadata for sorting.
25653 Remove :completion-cycle-penalty which is not needed any more.
25654 (completion--try-word-completion): Add `metadata' argument.
25655 (minibuffer-completion-help): Check metadata for annotation function
25656 and sorting.
25657 (completion-file-name-table): Return `category' metadata.
25658 (minibuffer-completing-file-name): Make obsolete.
25659 * simple.el (minibuffer-completing-symbol): Make obsolete.
25660 * icomplete.el (icomplete-completions): Pass new `metadata' param to
25661 completion-try-completion.
25662
25663 2011-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
25664
25665 * mail/smtpmail.el (smtpmail-send-data): Add progress reporter.
25666
25667 2011-05-30 Leo Liu <sdl.web@gmail.com>
25668
25669 * net/rcirc.el (rcirc-debug-buffer): Use visible buffer name.
25670 (rcirc-print): Decode all incoming messages (bug#8744).
25671 (rcirc-decode-coding-system): Allow value nil for automatic coding
25672 system detection.
25673
25674 2011-06-01 Glenn Morris <rgm@gnu.org>
25675
25676 * mail/emacsbug.el (report-emacs-bug-hook): Mailclient ignores From.
25677
25678 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
25679
25680 * image.el (image-animate-max-time): Allow nil and t values.
25681 Default to nil.
25682 (create-animated-image): Doc fix.
25683 (image-animate-start): Remove second arg; just use
25684 image-animate-max-time.
25685 (image-animate-timeout): Doc fix. Args changed.
25686
25687 * image-mode.el (image-toggle-display-image): Ensure that the
25688 image spec passed to the animate timer is the same object as in
25689 the buffer's display property (Bug#6981).
25690 (image-transform-properties): Doc fix.
25691
25692 * image.el (image-animate-max-time): Default to nil.
25693
25694 2011-05-29 Martin Rudalics <rudalics@gmx.at>
25695
25696 * menu-bar.el (kill-this-buffer-enabled-p): Avoid looping over
25697 entire buffer list (Bug#8184).
25698
25699 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
25700
25701 * image.el (imagemagick-types-inhibit)
25702 (imagemagick-register-types): Doc fix.
25703
25704 2011-05-29 Deniz Dogan <deniz@dogan.se>
25705
25706 * net/rcirc.el (rcirc): Use the user's stored encryption method by
25707 default.
25708
25709 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
25710
25711 * select.el: Don't perform clipboard-manager saving in hooks;
25712 leave the hooks empty.
25713
25714 2011-05-28 Leo Liu <sdl.web@gmail.com>
25715
25716 * replace.el (occur-menu-map, occur-edit-mode-map): New vars.
25717 (occur-mode-map): Bind occur-edit-mode. Use occur-menu-map.
25718 (occur-edit-mode): New major mode (Bug#8463).
25719 (occur-after-change-function): New function.
25720 (occur-engine): Give Occur tags a read-only property.
25721
25722 2011-05-28 Kevin Ryde <user42@zip.com.au>
25723
25724 * subr.el (def-edebug-spec): Doc fix (Bug#8430).
25725
25726 2011-05-28 Chong Yidong <cyd@stupidchicken.com>
25727
25728 * bindings.el (help-echo): Make the initial non-indicator dash
25729 empty on graphical terminals (Bug#7295).
25730
25731 * files.el (auto-mode-alist): Move config rule after the
25732 in-stripping one (Bug#8547).
25733
25734 * newcomment.el (comment-end-skip): Doc fix (Bug#8659).
25735
25736 * startup.el (normal-splash-screen): Remove gratuitous mode-line
25737 setting (Bug#8740).
25738
25739 2011-05-28 Alp Aker <aker@pitt.edu> (tiny change)
25740
25741 * buff-menu.el (Buffer-menu-revert-function, Buffer-menu-sort)
25742 (Buffer-menu-buffer+size): Use Buffer-menu-buffer-column
25743 (Bug#8539).
25744
25745 2011-05-28 Chong Yidong <cyd@stupidchicken.com>
25746
25747 * emacs-lisp/re-builder.el (re-builder): Improve doc (Bug#8286).
25748
25749 2011-05-28 Dima Kogan <dkogan@cds.caltech.edu> (tiny change)
25750
25751 * progmodes/hideshow.el (hs-looking-at-block-start-p): New fun.
25752 (hs-hide-block-at-point, hs-find-block-beginning)
25753 (hs-already-hidden-p, hs-hide-block, hs-show-block): Use it
25754 (Bug#8279).
25755
25756 2011-05-28 Glenn Morris <rgm@gnu.org>
25757
25758 * startup.el (fancy-about-screen): Use standard mode line. (Bug#8740)
25759
25760 2011-05-28 Chong Yidong <cyd@stupidchicken.com>
25761
25762 * help-fns.el (describe-function-1): If the function is a derived
25763 major mode, print the parent mode.
25764
25765 * progmodes/cc-mode.el (c-mode, c++-mode, objc-mode, java-mode)
25766 (idl-mode, pike-mode, awk-mode): Inherit from prog-mode.
25767
25768 2011-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
25769
25770 * minibuffer.el (completion--capf-wrapper): Check applicability before
25771 returning non-nil for non-exclusive completion data.
25772 * progmodes/etags.el (tags-completion-at-point-function):
25773 * info-look.el (info-lookup-completions-at-point): Mark as
25774 non-exclusive.
25775 (info-complete): Adjust accordingly.
25776
25777 * info-look.el: Convert to lexical-binding and completion-at-point.
25778 (info-lookup-completions-at-point): New function.
25779 (info-complete): Use it and completion-in-region.
25780
25781 2011-05-28 Drew Adams <drew.adams@oracle.com>
25782
25783 * isearch.el: Let M-e start with point at the first mismatched char.
25784 (isearch-fail-pos): New function.
25785 (isearch-edit-string): Use it.
25786
25787 2011-05-28 Dmitry Kurochkin <dmitry.kurochkin@gmail.com> (tiny change)
25788
25789 * isearch.el (isearch-range-invisible): Use invisible-p (bug#8721).
25790
25791 2011-05-27 Toby Cubitt <toby-predictive@dr-qubit.org>
25792
25793 * emacs-lisp/avl-tree.el: New avl-tree-stack datatype. Add new
25794 traversal functions for avl-trees.
25795 (avl-tree--stack): New struct.
25796 (avl-tree-stack-p, avl-tree--stack-repopulate): New funs.
25797 (avl-tree-enter): Add optional `updatefun' arg.
25798 (avl-tree--do-enter): Add optional `updatefun' arg.
25799 Change return value.
25800 (avl-tree-delete): Add optional `test' and `nilflag' args.
25801 (avl-tree--do-delete): Add `test' and `nilflag' args.
25802 Change return value.
25803 (avl-tree-member): Add optional `nilflag'
25804 (avl-tree-member-p): New function.
25805 (avl-tree-mapc, avl-tree-mapf, avl-tree-mapcar): New functions.
25806 (avl-tree-stack, avl-tree-stack-pop, avl-tree-stack-first)
25807 (avl-tree-stack-empty-p): New functions.
25808
25809 * emacs-lisp/avl-tree.el (avl-tree--del-balance): Rename from
25810 avl-tree--del-balance1 and make it work both ways.
25811 (avl-tree--del-balance2): Remove.
25812 (avl-tree--enter-balance): Rename from avl-tree--enter-balance1 and
25813 make it work both ways.
25814 (avl-tree--enter-balance2): Remove.
25815 (avl-tree--switch-dir, avl-tree--dir-to-sign, avl-tree--sign-to-dir):
25816 New macros.
25817 (avl-tree--mapc, avl-tree-map): Add direction argument.
25818
25819 2011-05-27 David Michael <fedora.dm0@gmail.com> (tiny change)
25820
25821 * files.el (interpreter-mode-alist): Add rbash (bug#8745).
25822
25823 2011-05-27 Chong Yidong <cyd@stupidchicken.com>
25824
25825 * select.el: Support clipboard managers with built-in function
25826 x-clipboard-manager-save, via delete-frame-functions and
25827 kill-emacs-hook.
25828 (xselect-convert-to-targets): Add MULTIPLE target to list.
25829 (xselect-convert-to-save-targets): New function.
25830
25831 2011-05-27 Kenichi Handa <handa@m17n.org>
25832
25833 * mail/sendmail.el (mail-encode-header): Avoid double encoding by
25834 let-binding rfc2047-encode-encoded-words to nil.
25835
25836 2011-05-27 Glenn Morris <rgm@gnu.org>
25837
25838 * mail/emacsbug.el: Don't require url-util.
25839
25840 * shell.el (shell-directory-tracker): Case matters. (Bug#8735)
25841
25842 * files.el (set-auto-mode):
25843 Also respect mode: entries at the end of the file. (Bug#8586)
25844
25845 2011-05-26 Glenn Morris <rgm@gnu.org>
25846
25847 * files.el (hack-local-variables-prop-line, hack-local-variables):
25848 Downcase mode names, as seems to be traditional.
25849 (hack-local-variables, hack-local-variables-apply): Doc fixes.
25850
25851 * mail/emacsbug.el (report-emacs-bug): Mention checking From address.
25852 (report-emacs-bug-hook): Try to validate the From address. (Bug#8038)
25853
25854 2011-05-25 Julien Danjou <julien@danjou.info>
25855
25856 * textmodes/rst.el (rst-define-level-faces): Do not define face
25857 symbol if it is already defined.
25858
25859 2011-05-24 Vincent Belaïche <vincentb1@users.sourceforge.net>
25860
25861 * play/5x5.el (5x5-new-game, 5x5-randomize):
25862 Reset 5x5-solver-output to nil when a new grid is cast.
25863 (5x5-log-init, 5x5-log): Use defsubst instead of defmacro to shunt
25864 these debugging traces, as defmacro breaks the compiled code.
25865
25866 2011-05-24 Dmitry Kurochkin <dmitry.kurochkin@gmail.com> (tiny change)
25867
25868 * isearch.el (isearch-range-invisible): Use invisible-p (bug#8721).
25869
25870 2011-05-24 Leo Liu <sdl.web@gmail.com>
25871
25872 * vc/vc-bzr.el (vc-bzr-sha1-program): Rename from sha1-program.
25873 (vc-bzr-sha1): Adapt.
25874
25875 * sha1.el: Remove. Function `sha1' is now builtin.
25876
25877 * bindings.el: Provide sha1 feature.
25878
25879 2011-05-24 Kenichi Handa <handa@m17n.org>
25880
25881 * mail/sendmail.el: Require `rfc2047'.
25882 (mail-insert-from-field): Do not perform RFC2047 encoding.
25883 (mail-encode-header): New function.
25884 (sendmail-send-it): Set buffer-file-coding-system of the work
25885 buffer to the return value of select-message-coding-system.
25886 Call mail-encode-header.
25887
25888 * mail/smtpmail.el (smtpmail-send-it): Call mail-encode-header.
25889
25890 2011-05-24 Sean Neakums <sneakums@zork.net> (tiny change)
25891
25892 * mail/supercite.el (sc-default-cite-frame):
25893 Handle sc-nested-citation-p when sc-cite-blank-lines-p is non-nil.
25894
25895 2011-05-24 Glenn Morris <rgm@gnu.org>
25896
25897 * progmodes/python.el (brm-menu): Declare.
25898
25899 * emulation/viper.el (viper-set-hooks): Declare.
25900
25901 * play/5x5.el (5x5-log-init, 5x5-log): Evaluate when compiling.
25902 (5x5-log-init, 5x5-log, 5x5-solver): Doc fixes.
25903 (math-map-vec, math-sub, math-mul, math-make-intv, math-reduce-vec)
25904 (math-format-number, math-pow, calcFunc-arrange, calcFunc-cvec)
25905 (calcFunc-diag, calcFunc-trn, calcFunc-inv, calcFunc-mrow)
25906 (calcFunc-mcol, calcFunc-vconcat, calcFunc-index): Declare.
25907
25908 2011-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
25909
25910 Add an :exit-function for completion-at-point.
25911
25912 * minibuffer.el (completion--done): New fun.
25913 (completion--do-completion): Use it. New arg `expect-exact'.
25914 (minibuffer-complete, minibuffer-complete-word): Don't output message,
25915 since completion--do-completion does it for us now.
25916 (minibuffer-force-complete): Use completion--done and
25917 completion--replace. Handle sole-completion case with more care.
25918 (minibuffer-complete-and-exit): Use new `expect-exact' arg.
25919 (completion-extra-properties): New var.
25920 (completion-annotate-function): Make obsolete.
25921 (minibuffer-completion-help): Adjust accordingly.
25922 Use completion-list-insert-choice-function.
25923 (completion-at-point, completion-help-at-point):
25924 Bind completion-extra-properties.
25925 (completion-pcm-word-delimiters): Add | (for uniquify, for example).
25926 * simple.el (completion-list-insert-choice-function): New var.
25927 (completion-setup-function): Preserve it.
25928 (choose-completion): Pay attention to it, shuffle the code a bit.
25929 (choose-completion-string): New arg `insert-function'.
25930
25931 * textmodes/bibtex.el: Convert to lexical binding.
25932 (bibtex-mode-map): Use completion-at-point.
25933 (bibtex-mode): Use define-derived-mode&completion-at-point-functions.
25934 (bibtex-completion-at-point-function): New fun, from bibtex-complete.
25935 (bibtex-complete): Define as obsolete alias.
25936 (bibtex-complete-internal): Remove.
25937 (bibtex-format-entry): Remove unused sub-group in regexp.
25938 * shell.el (shell--command-completion-data)
25939 (shell-environment-variable-completion):
25940 * pcomplete.el (pcomplete-completions-at-point):
25941 * comint.el (comint--complete-file-name-data): Use :exit-function
25942 instead of completion-table-with-terminator so it also works for
25943 choose-completion.
25944
25945 2011-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
25946
25947 * <lots-of-files>.el: Don't quote lambda expressions with `quote'.
25948
25949 * vc/smerge-mode.el (smerge-refine-subst): Don't deactivate the mark
25950 (bug#8710).
25951
25952 * emacs-lisp/lisp.el (up-list): Fix forward movement (bug#8708).
25953
25954 2011-05-23 Ken Manheimer <ken.manheimer@gmail.com>
25955
25956 * allout.el (allout-inhibit-auto-fill-on-headline): Create new
25957 customization variable and implement: If non-nil, auto-fill will
25958 be inhibited while on topic's header line.
25959
25960 2011-05-23 Vincent Belaïche <vincentb1@users.sourceforge.net>
25961
25962 * play/5x5.el: I/ Add an arithmetic solver to suggest positions to
25963 click on. II/ Make 5x5 multisession. III/ Ensure that random grids
25964 always have a solution in grid size = 5 cases.
25965 (5x5-mode-map): Add keybinding to function `5x5-solve-suggest'.
25966 (5x5-solver-output, 5x5-log-buffer): New vars.
25967 (5x5-grid, 5x5-x-pos, 5x5-y-pos, 5x5-moves, 5x5-cracking):
25968 Make these variables buffer local to achieve 5x5 multi-session-ness.
25969 (5x5): Set 5x5-grid-size only if SIZE is non-negative.
25970 (5x5-grid-to-vec, 5x5-vec-to-grid, 5x5-log-init, 5x5-log, 5x5-solver)
25971 (5x5-solve-suggest): New funs.
25972 (5x5-randomize): Use 5x5-make-move instead of 5x5-flip-cell to
25973 randomize a grid so that we ensure that there is always a solution.
25974 (5x5-make-random-grid): Allow other movement than flipping.
25975
25976 2011-05-23 Kevin Ryde <user42@zip.com.au>
25977
25978 * emacs-lisp/advice.el (ad-read-advised-function):
25979 Use `function-called-at-point' as the default, if it has
25980 advice and passes PREDICATE.
25981
25982 2011-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
25983
25984 * emacs-lisp/bytecomp.el (byte-compile-function-form): Only call
25985 byte-compile-lambda if it's actually a lambda.
25986
25987 * emacs-lisp/eieio.el (eieio-defgeneric-form-primary-only-one):
25988 Fix function quoting. Use backquote better.
25989
25990 2011-05-22 Yuanle Song <sylecn@gmail.com>
25991
25992 * nxml/rng-xsd.el (rng-xsd-check-pattern): Use case-sensitive
25993 matching (Bug#8516).
25994
25995 2011-05-22 Jari Aalto <jari.aalto@cante.net>
25996
25997 * vc/vc-dir.el (vc-default-dir-printer): Give edited tag a
25998 different face (Bug#8178).
25999
26000 2011-05-22 Chong Yidong <cyd@stupidchicken.com>
26001
26002 * vc/diff-mode.el (diff-changed): Don't use terminal specs for
26003 defface (Bug#8144).
26004
26005 2011-05-22 Stefan Monnier <monnier@iro.umontreal.ca>
26006
26007 * emacs-lisp/macroexp.el (macroexpand-all-1): Convert ' to #' for
26008 funcall as well (bug#8712). Warn when performing those conversions.
26009 * emacs-lisp/bytecomp.el (byte-compile-form): Fix error report.
26010
26011 * progmodes/grep.el (grep-mode): Fix it for good (bug#8684)!
26012
26013 2011-05-22 Glenn Morris <rgm@gnu.org>
26014
26015 * files.el (hack-local-variables-prop-line): Small simplifications.
26016 (hack-local-variables, hack-local-variables-prop-line):
26017 If MODE-ONLY, return the mode, rather than just `t'.
26018
26019 2011-05-21 Stefan Monnier <monnier@iro.umontreal.ca>
26020
26021 * progmodes/grep.el (grep-mode): Fix last change (bug#8684).
26022
26023 2011-05-21 Glenn Morris <rgm@gnu.org>
26024
26025 * files.el (hack-local-variables-prop-line, hack-local-variables):
26026 If only interested in the mode, don't bother doing the other stuff.
26027
26028 * image-mode.el (image-after-revert-hook):
26029 Redraw all frames on which the image is visible. (Bug#8567)
26030
26031 * dired-aux.el (dired-touch-initial): Just use current-time. (Bug#6887)
26032
26033 * wid-edit.el (widget-checklist-match-inline):
26034 Fix 2011-04-19 change. (Bug#8649)
26035
26036 2011-05-20 Stefan Monnier <monnier@iro.umontreal.ca>
26037
26038 * emacs-lisp/checkdoc.el (checkdoc-sentencespace-region-engine):
26039 Also allow singlespace after single-letter capitals followed by a dot.
26040
26041 * nxml/nxml-mode.el (nxml-electric-slash): Reindent when completion is
26042 enabled. Suggested by James Ahlborn <jahlborn@gmail.com> (bug#8704).
26043
26044 2011-05-20 Nix <nix@esperi.org.uk>
26045
26046 * files.el (basic-save-buffer-2):
26047 Fix handling of break-hardlink-on-save with non-existent files.
26048
26049 2011-05-19 Deniz Dogan <deniz@dogan.se>
26050
26051 * net/rcirc.el (rcirc-mode): Initialize rcirc-urls to nil.
26052 (rcirc-markup-urls): Check if rcirc-url-regexp is nil.
26053
26054 2011-05-19 Glenn Morris <rgm@gnu.org>
26055
26056 * progmodes/f90.el (f90-type-def-re):
26057 Handle "type, bind(c)". (Bug#8691)
26058
26059 * emacs-lisp/autoload.el (batch-update-autoloads):
26060 Set autoload-excludes by parsing loadup.el rather than Makefiles.
26061
26062 2011-05-18 Michael Albinus <michael.albinus@gmx.de>
26063
26064 * net/tramp.el (tramp-process-actions): Set "first-password-request"
26065 property for the correct connection in case of multihops.
26066
26067 2011-05-18 Glenn Morris <rgm@gnu.org>
26068
26069 * emacs-lisp/authors.el (authors-fixed-entries): Remove fakemail.c.
26070 * mail/sendmail.el (sendmail-program): Fall back to just "sendmail".
26071
26072 Rationalize calendar handling of day and month abbrev-arrays.
26073 * calendar/calendar.el (calendar-customized-p): New function.
26074 (calendar-abbrev-construct, calendar-make-alist): Change what it does.
26075 (calendar-day-name-array, calendar-month-name-array): Doc fix.
26076 Add :set function.
26077 (calendar-abbrev-length, calendar-day-abbrev-array)
26078 (calendar-month-abbrev-array): Make defcustoms, with appropriate :set.
26079 (calendar-day-abbrev-array, calendar-month-abbrev-array):
26080 Elements may no longer be nil.
26081 (calendar-day-name, calendar-month-name):
26082 Update for changed nature of abbrev arrays.
26083 * calendar/diary-lib.el (diary-name-pattern):
26084 Update for changed nature of abbrev arrays.
26085 (diary-mark-entries-1): Update calendar-make-alist calls.
26086 (diary-font-lock-date-forms): Doc fix for changed abbrev arrays.
26087 * calendar/cal-html.el (cal-html-day-abbrev-array):
26088 Simply inherit from calendar-day-abbrev-array.
26089
26090 2011-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
26091
26092 * progmodes/grep.el (grep-mode): Disable default
26093 compilation-directory-matcher setting (bug#8684).
26094
26095 2011-05-17 Michael Albinus <michael.albinus@gmx.de>
26096
26097 * net/tramp.el (tramp-handle-insert-file-contents): Use "dd"
26098 instead of "head" and "tail". There were problems with SunOS 5.9,
26099 and it performs better.
26100
26101 2011-05-17 Glenn Morris <rgm@gnu.org>
26102
26103 * mail/mail-utils.el (mail-dont-reply-to): Silence compiler.
26104
26105 * progmodes/idlw-shell.el (idlwave-shell-complete-filename):
26106 Replace obsolete function.
26107
26108 * shell.el (pcomplete-parse-arguments-function): Declare.
26109
26110 * calendar/appt.el (appt-message-warning-time, appt-display-mode-line)
26111 (appt-display-diary, appt-display-interval, appt-prev-comp-time)
26112 (appt-check): Doc fixes.
26113 (appt-disp-window-function, appt-delete-window-function):
26114 Remove needless special case in custom :type.
26115 (appt-display-count): Default to 0, not nil.
26116 (appt-check): Reset appt-display-count to 0, not nil.
26117
26118 2011-05-17 Juanma Barranquero <lekktu@gmail.com>
26119
26120 * progmodes/python.el (python-font-lock-keywords):
26121 Add the Python 3.X keyword "nonlocal" (bug#8639).
26122
26123 2011-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
26124
26125 * emacs-lisp/eieio.el (defmethod): Fix quoting of code (bug#8677).
26126
26127 2011-05-16 Kevin Ryde <user42@zip.com.au>
26128
26129 * info-look.el (makefile-automake-mode): New setups, looking in
26130 automake manual, then makefile-mode.
26131 (makefile-mode): Remove automake manual, have it just in
26132 makefile-automake-mode since there's various things different or
26133 not relevant to plain make.
26134 (makefile-mode): Remove "other-modes" non-existent automake-mode,
26135 believe a hypothetical automake-mode would go to makefile-mode,
26136 not the other way around.
26137
26138 2011-05-15 Chong Yidong <cyd@stupidchicken.com>
26139
26140 * vc/diff-mode.el (diff-fixup-modifs): Locate correct position for
26141 hunk-end tags (Bug#8672).
26142
26143 * vc/vc-annotate.el (vc-annotate-mode-map): Bind = to
26144 vc-annotate-show-diff-revision-at-line (Bug#8671).
26145
26146 2011-05-14 Glenn Morris <rgm@gnu.org>
26147
26148 * vc/add-log.el (add-change-log-entry): Don't start adding a new entry
26149 in the middle of an existing one with multiple authors. (Bug#8645)
26150 (change-log-font-lock-keywords): Also handle multiple author lines
26151 with leading tabs. (Bug#8644)
26152
26153 * calendar/appt.el (appt-check): Rename some local variables.
26154 Some simplification/reordering.
26155
26156 * mail/feedmail.el (feedmail-confirm-outgoing-timeout)
26157 (feedmail-sendmail-f-doesnt-sell-me-out)
26158 (feedmail-queue-slug-suspect-regexp, feedmail-debug)
26159 (feedmail-debug-sit-for, feedmail-queue-express-hook)
26160 (feedmail-queue-runner-message-sender): Set :version.
26161 (bbdb-search, bbdb-records, smtp-via-smtp, smtp-server)
26162 (bbdb-dwim-net-address, vm-mail): Declare.
26163 (feedmail-binmail-gnulinuxish-template):
26164 Rename from feedmail-binmail-linuxish-template.
26165 (feedmail-buffer-to-smtp, feedmail-vm-mail-mode):
26166 Use insert-buffer-substring.
26167
26168 2011-05-14 Bill Carpenter <bill@carpenter.org>
26169
26170 * mail/feedmail.el (feedmail-patch-level): Increase.
26171 (feedmail-debug): New custom group.
26172 (feedmail-confirm-outgoing-timeout)
26173 (feedmail-sendmail-f-doesnt-sell-me-out)
26174 (feedmail-queue-slug-suspect-regexp, feedmail-debug)
26175 (feedmail-debug-sit-for, feedmail-queue-express-hook): New options.
26176 (feedmail-sender-line, feedmail-from-line)
26177 (feedmail-fiddle-headers-upwardly, feedmail-enable-spray)
26178 (feedmail-spray-this-address)
26179 (feedmail-spray-address-fiddle-plex-list)
26180 (feedmail-queue-use-send-time-for-date)
26181 (feedmail-queue-use-send-time-for-message-id)
26182 (feedmail-last-chance-hook, feedmail-queue-runner-mode-setter)
26183 (feedmail-buffer-eating-function):
26184 Doc fixes.
26185 (feedmail-spray-via-bbdb, feedmail-buffer-to-smtp)
26186 (feedmail-vm-mail-mode, feedmail-message-action-scroll-up)
26187 (feedmail-message-action-scroll-down): New functions.
26188 (feedmail-queue-directory, feedmail-queue-draft-directory):
26189 Use expand-file-name.
26190 (feedmail-prompt-before-queue-standard-alist): Add scroll entries.
26191 Remove C-v help entry.
26192 (feedmail-queue-buffer-file-name): New variable.
26193 (feedmail-mail-send-hook-splitter, feedmail-buffer-to-binmail)
26194 (feedmail-buffer-to-smtpmail, feedmail-queue-express-to-draft)
26195 (feedmail-message-action-send-strong, feedmail-message-action-edit)
26196 (feedmail-message-action-draft, feedmail-message-action-draft-strong)
26197 (feedmail-message-action-queue, feedmail-message-action-queue-strong)
26198 (feedmail-message-action-toggle-spray)
26199 (feedmail-run-the-queue-no-prompts)
26200 (feedmail-run-the-queue-global-prompt, feedmail-queue-reminder)
26201 (feedmail-look-at-queue-directory, feedmail-queue-subject-slug-maker)
26202 (feedmail-create-queue-filename, feedmail-rfc822-time-zone):
26203 (feedmail-fiddle-header, feedmail-give-it-to-buffer-eater)
26204 (feedmail-envelope-deducer, feedmail-fiddle-from)
26205 (feedmail-fiddle-sender, feedmail-default-date-generator)
26206 (feedmail-fiddle-date, feedmail-fiddle-message-id)
26207 (feedmail-fiddle-spray-address)
26208 (feedmail-fiddle-list-of-spray-fiddle-plexes)
26209 (feedmail-fiddle-list-of-fiddle-plexes)
26210 (feedmail-fill-to-cc-function, feedmail-fill-this-one)
26211 (feedmail-one-last-look, feedmail-fqm-p): Add debug calls.
26212 (feedmail-queue-runner-message-sender, feedmail-binmail-template):
26213 Change default. Doc fix.
26214 (feedmail-queue-runner-cleaner-upper): Use feedmail-say-chatter.
26215 (feedmail-binmail-linuxish-template): New constant.
26216 (feedmail-buffer-to-sendmail): Doc fix. Add debug call.
26217 Respect feedmail-sendmail-f-doesnt-sell-me-out.
26218 (feedmail-send-it): Add debug call.
26219 Use feedmail-queue-buffer-file-name, and
26220 feedmail-send-it-immediately-wrapper.
26221 (feedmail-message-action-send): Add debug call.
26222 Use feedmail-send-it-immediately-wrapper.
26223 (feedmail-queue-express-to-queue): Add debug call.
26224 Run feedmail-queue-express-hook.
26225 (feedmail-message-action-help): Add debug call. Use feedmail-p-h-b-n.
26226 (feedmail-message-action-help-blat):
26227 Rename from feedmail-queue-send-edit-prompt-help-first.
26228 (feedmail-run-the-queue): Add debug call. Set buffer-file-type.
26229 Check line-endings. Handle errors better.
26230 (feedmail-queue-reminder-brief, feedmail-queue-reminder-medium):
26231 Doc fix. Add debug call.
26232 (feedmail-queue-send-edit-prompt): Doc fix. Add debug call.
26233 Use feedmail-queue-send-edit-prompt-inner.
26234 (feedmail-queue-runner-prompt, feedmail-scroll-buffer): New functions.
26235 (feedmail-queue-send-edit-prompt-inner): New function, extracted
26236 from feedmail-queue-send-edit-prompt.
26237 (feedmail-queue-send-edit-prompt-help)
26238 (feedmail-queue-send-edit-prompt-help-later): Remove functions.
26239 (feedmail-tidy-up-slug): Add debug call.
26240 Respect feedmail-queue-slug-suspect-regexp.
26241 (feedmail-queue-subject-slug-maker): Use buffer-substring-no-properties.
26242 (feedmail-dump-message-to-queue): Add debug call.
26243 Expand queue-directory.
26244 (feedmail-dump-message-to-queue): Change message slightly.
26245 Use feedmail-say-chatter.
26246 (feedmail-rfc822-date): Add debug call. Bind system-time-locale.
26247 (feedmail-send-it-immediately-wrapper): New function.
26248 (feedmail-send-it-immediately): Add debug calls. Use let not let*.
26249 Insert empty string rather than newline. Handle full-frame case.
26250 Use catch/throw. Use feedmail-say-chatter.
26251 (feedmail-fiddle-from): Try mail-host-address.
26252 (feedmail-default-message-id-generator): Doc fix.
26253 Bind system-time-locale. Handle missing end.
26254 (feedmail-fiddle-x-mailer): Add debug call.
26255 Handle feedmail-x-mailer-line being nil.
26256 (feedmail-accume-n-nuke-header, feedmail-deduce-address-list):
26257 Add debug call. Use buffer-substring-no-properties.
26258 (feedmail-say-debug, feedmail-say-chatter): New functions.
26259 (feedmail-find-eoh): Give an explicit error.
26260
26261 2011-05-13 Ulf Jasper <ulf.jasper@web.de>
26262
26263 * net/newst-treeview.el (newsticker-treeview-face): Change default
26264 family from helvetica to sans.
26265 (newsticker-treeview-tool-bar-map): Move tool-bar icons to
26266 etc/images/newsticker.
26267
26268 * net/newst-reader.el (newsticker-feed-face): Change default
26269 family from helvetica to sans.
26270
26271 * net/newst-plainview.el (newsticker-new-item-face)
26272 (newsticker-old-item-face, newsticker-immortal-item-face)
26273 (newsticker-obsolete-item-face, newsticker-date-face)
26274 (newsticker-statistics-face): Change default family from
26275 helvetica to sans.
26276 (newsticker--plainview-tool-bar-map): Move tool-bar icons to
26277 etc/images/newsticker.
26278
26279 * net/newst-backend.el (newsticker--do-run-auto-mark-filter)
26280 (newsticker--process-auto-mark-filter-match): Tell user about
26281 auto-marking.
26282
26283 2011-05-13 Didier Verna <didier@xemacs.org>
26284
26285 Common Lisp indentation improvements on defmethod and lambda-lists.
26286 * emacs-lisp/cl-indent.el: Advertise the changes and remove obsolete
26287 TODO entries.
26288 (lisp-lambda-list-keyword-parameter-indentation)
26289 (lisp-lambda-list-keyword-parameter-alignment)
26290 (lisp-lambda-list-keyword-alignment): New customizable user options.
26291 (lisp-indent-defun-method): Improve docstring.
26292 (extended-loop-p): Fix comment.
26293 (lisp-indent-lambda-list-keywords-regexp): New variable.
26294 (lisp-indent-lambda-list): New function.
26295 (lisp-indent-259): Use it.
26296 (lisp-indent-defmethod): Support for more than one
26297 method qualifier and properly indent methods lambda-lists.
26298 (defgeneric): Provide a missing common-lisp-indent-function property.
26299
26300 2011-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
26301
26302 * thingatpt.el (bounds-of-thing-at-point): Return nil rather than
26303 bounds for the empty string (bug#8667).
26304
26305 2011-05-13 Glenn Morris <rgm@gnu.org>
26306
26307 * mail/feedmail.el (feedmail-buffer-to-sendmail): Require sendmail.
26308
26309 * mail/sendmail.el (sendmail-program): Try executable-find first.
26310 (sendmail-send-it): `sendmail-program' cannot be unbound.
26311
26312 * calendar/appt.el (appt-make-list): Simplify.
26313 (appt-time-msg-list): Doc fix.
26314 (appt-check): Change mode-line message at the time of the appointment.
26315
26316 2011-05-12 Andreas Schwab <schwab@linux-m68k.org>
26317
26318 * progmodes/ld-script.el (ld-script-keywords)
26319 (ld-script-builtins): Update keywords list.
26320
26321 2011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
26322
26323 * progmodes/grep.el (grep-filter): Don't trip on partial lines.
26324
26325 * shell.el (shell-completion-vars): New function.
26326 (shell-mode):
26327 * simple.el (read-shell-command): Use it.
26328 (blink-matching-open): No need for " [...]" in minibuffer-message.
26329
26330 2011-05-12 Glenn Morris <rgm@gnu.org>
26331
26332 * calendar/appt.el (appt-now-displayed): Remove pointless variable.
26333 (appt-check): Simplify.
26334
26335 2011-05-12 Eli Zaretskii <eliz@gnu.org>
26336
26337 * vc/smerge-mode.el (smerge-resolve): Use null-device rather than a
26338 literal "/dev/null".
26339
26340 2011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
26341
26342 * emacs-lisp/lisp.el (lisp-complete-symbol, lisp-completion-at-point):
26343 Fix typo.
26344
26345 2011-05-12 Ralph Schleicher <rs@ralph-schleicher.de>
26346
26347 * progmodes/which-func.el (which-function):
26348 Use add-log-current-defun instead of add-log-current-defun-function,
26349 which might not be defined (Bug#8260).
26350
26351 2011-05-12 Glenn Morris <rgm@gnu.org>
26352
26353 * emacs-lisp/bytecomp.el (byte-compile-file-form-defmumble):
26354 Let byte-compile-initial-macro-environment always take precedence.
26355
26356 2011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
26357
26358 * net/rcirc.el: Add support for SSL/TLS connections.
26359 (rcirc-server-alist): New field `encryption'.
26360 (rcirc): Check `encryption' settings.
26361 (rcirc-connect): New arg `encryption'. Use open-network-stream.
26362 Merge make-local-variable into `set'.
26363 (rcirc--connection-open-p): New function.
26364 (rcirc-send-string, rcirc-clean-up-buffer): Use it to handle case where
26365 the process is not a network process (e.g. running gnutls-cli).
26366 (set-rcirc-decode-coding-system, set-rcirc-encode-coding-system):
26367 Make rcirc-(en|de)code-coding-system local here.
26368 (rcirc-mode): Merge make-local-variable into `set'.
26369 (rcirc-parent-buffer): Make permanent buffer-local.
26370 (rcirc-multiline-minor-mode): Don't do it here.
26371 (rcirc-switch-to-server-buffer): Don't switch to a random buffer if
26372 there's no server buffer.
26373
26374 2011-05-11 Glenn Morris <rgm@gnu.org>
26375
26376 * newcomment.el (comment-kill): Prefix "unused" local.
26377
26378 * term/w32console.el (get-screen-color): Declare.
26379
26380 * emacs-lisp/bytecomp.el (byte-compile-arglist-warn):
26381 Handle symbol elements of byte-compile-initial-macro-environment.
26382
26383 2011-05-10 Leo Liu <sdl.web@gmail.com>
26384
26385 * bookmark.el (bookmark-bmenu-mode-map):
26386 Bind bookmark-bmenu-search to `/'.
26387
26388 * mail/footnote.el: Convert to utf-8 encoding.
26389 (footnote-unicode-string, footnote-unicode-regexp): New variable.
26390 (Footnote-unicode): New function.
26391 (footnote-style-alist): Add unicode style to the list.
26392 (footnote-style): Doc fix.
26393
26394 2011-05-10 Jim Meyering <meyering@redhat.com>
26395
26396 Fix doubled-word typos.
26397 * international/quail.el (quail-insert-kbd-layout): and and -> and.
26398 * kermit.el: and and -> and.
26399 * net/ldap.el (ldap-search-internal): to to -> to.
26400 * progmodes/vhdl-mode.el (vhdl-offsets-alist): Likewise.
26401 * progmodes/js.el (js-mode): and and -> and.
26402 * textmodes/artist.el (artist-move-to-xy): at at -> at.
26403 (artist-draw-region-trim-line-endings): if if -> if.
26404 And Safetyc -> Safety.
26405 * textmodes/reftex-dcr.el (reftex-view-crossref): at at -> at a.
26406
26407 2011-05-10 Glenn Morris <rgm@gnu.org>
26408 Stefan Monnier <monnier@iro.umontreal.ca>
26409
26410 * files.el (hack-one-local-variable-eval-safep):
26411 Consider "eval: (foo-mode)" to be safe. (Bug#8613)
26412
26413 2011-05-10 Glenn Morris <rgm@gnu.org>
26414
26415 * calendar/diary-lib.el (diary-list-entries-hook)
26416 (diary-mark-entries-hook, diary-nongregorian-listing-hook)
26417 (diary-nongregorian-marking-hook, diary-list-entries)
26418 (diary-include-other-diary-files, diary-mark-entries)
26419 (diary-mark-included-diary-files): Doc fixes.
26420
26421 2011-05-09 Juanma Barranquero <lekktu@gmail.com>
26422
26423 * misc.el: Require tabulated-list.el during compilation.
26424
26425 2011-05-09 Chong Yidong <cyd@stupidchicken.com>
26426
26427 * progmodes/compile.el (compilation-start):
26428 Run compilation-filter-hook for the async case too.
26429 (compilation-filter-hook): Doc fix.
26430
26431 2011-05-09 Deniz Dogan <deniz@dogan.se>
26432
26433 * wdired.el: Remove outdated installation comment. Fix usage
26434 comment.
26435
26436 2011-05-09 Juanma Barranquero <lekktu@gmail.com>
26437
26438 * misc.el: Implement new command `list-dynamic-libraries'.
26439 (list-dynamic-libraries--loaded-only-p): New variable.
26440 (list-dynamic-libraries--refresh): New function.
26441 (list-dynamic-libraries): New command.
26442
26443 2011-05-09 Chong Yidong <cyd@stupidchicken.com>
26444
26445 * progmodes/compile.el (compilation-error-regexp-alist-alist):
26446 Fix the ant regexp to handle end-line and end-column info from jikes.
26447 Re-introduce maven regexp. Give the ruby-Test::Unit regexp a
26448 higher priority to avoid clobbering by gnu.
26449
26450 2011-05-08 Chong Yidong <cyd@stupidchicken.com>
26451
26452 * cus-face.el (custom-declare-face): Call custom-theme-recalc-face
26453 if the face has existing theme settings (Bug#8454).
26454
26455 2011-05-08 Ralph Schleicher <rs@ralph-schleicher.de>
26456
26457 * progmodes/perl-mode.el (perl-imenu-generic-expression):
26458 Only match variables declared via `my' or `our' (Bug#8261).
26459
26460 * net/browse-url.el (browse-url-of-dired-file): Allow browsing of
26461 special file names `.' and `..' (Bug#8259).
26462
26463 2011-05-08 Chong Yidong <cyd@stupidchicken.com>
26464
26465 * progmodes/grep.el (grep-mode-font-lock-keywords):
26466 Remove buffer-changing entries.
26467 (grep-filter): New function.
26468 (grep-mode): Add it to compilation-filter-hook.
26469
26470 * progmodes/compile.el (compilation-filter-hook)
26471 (compilation-filter-start): New defvars.
26472 (compilation-filter): Call compilation-filter-hook prior to
26473 updating the process mark.
26474
26475 2011-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
26476
26477 * emacs-lisp/eieio.el (defmethod): Fix typo in last change.
26478
26479 2011-05-07 Eli Zaretskii <eliz@gnu.org>
26480
26481 * mail/sendmail.el (send-mail-function): On MS-Windows, default to
26482 mailclient-send-it even if window-system is nil. (Bug#8595)
26483
26484 * term/w32console.el (terminal-init-w32console):
26485 Call get-screen-color and use its output to set the frame
26486 background-mode. (Bug#8597)
26487
26488 2011-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
26489
26490 Make bytecomp.el understand that defmethod defines funs (bug#8631).
26491 * emacs-lisp/eieio.el (eieio--defalias, eieio--defgeneric-init-form):
26492 New functions.
26493 (defgeneric, eieio--defmethod): Use them.
26494 (eieio-defgeneric): Remove.
26495 (defmethod): Call defgeneric in a way visible to the byte-compiler.
26496
26497 2011-05-07 Glenn Morris <rgm@gnu.org>
26498
26499 * calendar/timeclock.el (timeclock-log-data): Remove unused local.
26500 Use let rather than let*.
26501 (timeclock-find-discrep): Remove unused local.
26502
26503 * calendar/diary-lib.el (diary-comment-start): Doc fix.
26504
26505 * calendar/appt.el (appt-time-msg-list): Doc fix.
26506
26507 2011-05-06 Noah Friedman <friedman@splode.com>
26508
26509 * apropos.el (apropos-print-doc): Only use
26510 emacs-lisp-docstring-fill-column when it is bound to an integer,
26511 per that variable's documentation.
26512
26513 2011-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
26514
26515 * lpr.el (print-region-1): Echo lpr-program's output, so error messages
26516 and warnings are not silently discarded (e.g. use -d instead of -P).
26517
26518 2011-05-06 Glenn Morris <rgm@gnu.org>
26519
26520 * calendar/appt.el (appt-message-warning-time): Doc fix.
26521 (appt-warning-time-regexp): New option.
26522 (appt-make-list): Respect appt-message-warning-time.
26523
26524 * calendar/diary-lib.el (diary-comment-start, diary-comment-end):
26525 New options.
26526 (diary-add-to-list): Strip comments from the displayed string.
26527 (diary-mode): Set comment-start and comment-end.
26528
26529 * vc/diff-mode.el (smerge-refine-subst): Declare.
26530 (diff-refine-hunk): Don't require smerge-mode when compiling.
26531
26532 2011-05-06 Juanma Barranquero <lekktu@gmail.com>
26533
26534 * simple.el (list-processes): Return nil as the docstring says.
26535
26536 2011-05-05 Michael Albinus <michael.albinus@gmx.de>
26537
26538 * net/ange-ftp.el (ange-ftp-binary-file-name-regexp): Set default
26539 to "".
26540 (ange-ftp-write-region, ange-ftp-insert-file-contents)
26541 (ange-ftp-copy-file-internal): Use only `ange-ftp-binary-file' for
26542 determining of binary transfer. (Bug#7383)
26543
26544 2011-05-05 Michael Albinus <michael.albinus@gmx.de>
26545
26546 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
26547 Fix port computation bug. (Bug#8618)
26548
26549 2011-05-05 Glenn Morris <rgm@gnu.org>
26550
26551 * allout-widgets.el (allout-widgets-mode-inhibit): Declare before use.
26552
26553 * simple.el (shell-dynamic-complete-functions)
26554 (comint-dynamic-complete-functions): Declare.
26555
26556 * net/network-stream.el (gnutls-negotiate):
26557 * simple.el (tabulated-list-print): Fix declarations.
26558
26559 * progmodes/gud.el (syntax-symbol, syntax-point):
26560 Remove unnecessary and incorrect declarations.
26561
26562 * emacs-lisp/check-declare.el (check-declare-scan):
26563 Handle byte-compile-initial-macro-environment in bytecomp.el.
26564
26565 2011-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
26566
26567 Fix earlier half-done eieio-defmethod change (bug#8338).
26568 * emacs-lisp/eieio.el (eieio--defmethod): Rename from eieio-defmethod.
26569 Streamline and change calling convention.
26570 (defmethod): Adjust accordingly and simplify.
26571 (eieio-defclass): Fix broken calls to eieio-defmethod and redirect to
26572 new eieio--defmethod.
26573 (slot-boundp): Minor CSE simplification.
26574
26575 2011-05-05 Milan Zamazal <pdm@zamazal.org>
26576
26577 * progmodes/glasses.el (glasses-separate-capital-groups): New option.
26578 (glasses-make-readable): Use glasses-separate-capital-groups.
26579
26580 2011-05-05 Juanma Barranquero <lekktu@gmail.com>
26581
26582 * emacs-lisp/warnings.el (warning-level-aliases): Reflow docstring.
26583 (warning-series): Doc fix.
26584 (display-warning): Don't try to create the buffer if we just found it.
26585
26586 2011-05-04 Chong Yidong <cyd@stupidchicken.com>
26587
26588 * emacs-lisp/autoload.el (generated-autoload-file): Set to nil.
26589 (autoload-find-generated-file): New function.
26590 (generate-file-autoloads): Bind generated-autoload-file to
26591 buffer-file-name.
26592 (update-file-autoloads, update-directory-autoloads):
26593 Use autoload-find-generated-file. If called interactively, prompt for
26594 output file (Bug#7989).
26595 (batch-update-autoloads): Doc fix.
26596
26597 2011-05-04 Juanma Barranquero <lekktu@gmail.com>
26598
26599 * term/w32-win.el (dynamic-library-alist): Add `gnutls'.
26600
26601 2011-05-04 Glenn Morris <rgm@gnu.org>
26602
26603 * calendar/diary-lib.el (diary-fancy-date-pattern): Turn it into a
26604 function, so it follows changes in calendar-date-style.
26605 (diary-fancy-date-matcher): New function.
26606 (diary-fancy-font-lock-keywords): Use diary-fancy-date-matcher.
26607 (diary-fancy-font-lock-fontify-region-function):
26608 Use diary-fancy-date-pattern as a function.
26609
26610 * calendar/diary-lib.el (diary-fancy-date-pattern): Do not use
26611 non-numbers for `year' etc pseudo-variables. (Bug#8583)
26612
26613 2011-05-04 Teodor Zlatanov <tzz@lifelogs.com>
26614
26615 * net/gnutls.el (gnutls-negotiate): Use CL-style keyword arguments
26616 instead of positional arguments. Allow :keylist and :crlfiles
26617 arguments.
26618 (open-gnutls-stream): Call it.
26619
26620 * net/network-stream.el (network-stream-open-starttls): Adjust to
26621 call `gnutls-negotiate' with :process and :hostname arguments.
26622
26623 2011-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
26624
26625 * minibuffer.el (completion--message): New function.
26626 (completion--do-completion, minibuffer-complete)
26627 (minibuffer-force-complete, minibuffer-complete-word): Use it.
26628 (completion--do-completion): Don't ignore completion-auto-help when in
26629 icomplete-mode.
26630
26631 * whitespace.el (whitespace-trailing-regexp): Don't rely on the
26632 internal encoding (e.g. tibetan zero is not whitespace).
26633 (global-whitespace-mode): Prefer save-current-buffer.
26634 (whitespace-trailing-regexp): Remove useless save-match-data.
26635 (whitespace-empty-at-bob-regexp): Minor simplification.
26636
26637 2011-05-03 Chong Yidong <cyd@stupidchicken.com>
26638
26639 * emacs-lisp/autoload.el (generated-autoload-file): Doc fix (Bug#7989).
26640
26641 2011-05-03 Agustín Martín Domingo <agustin.martin@hispalinux.es>
26642
26643 * textmodes/ispell.el (ispell-add-per-file-word-list):
26644 Use `concat' to create string for insertion.
26645
26646 2011-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
26647
26648 * textmodes/bibtex.el (bibtex-fill-field-bounds, bibtex-fill-entry):
26649 Avoid open-line which runs post-self-insert-hook.
26650 (bibtex-fill-entry): Remove unused `end' var.
26651
26652 2011-05-03 Dirk Ullrich <dirk.ullrich@googlemail.com> (tiny change)
26653
26654 * textmodes/ispell.el (ispell-add-per-file-word-list):
26655 Protect against `nil' value of `comment-start' (Bug#8579).
26656
26657 2011-05-03 Leo Liu <sdl.web@gmail.com>
26658
26659 * isearch.el (isearch-yank-pop): New command.
26660 (isearch-mode-map): Bind it to `M-y'.
26661 (isearch-forward): Mention it.
26662
26663 2011-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
26664
26665 * simple.el (minibuffer-complete-shell-command): Remove.
26666 (minibuffer-local-shell-command-map): Use completion-at-point.
26667 (read-shell-command): Setup completion vars here instead.
26668 (read-expression-map): Bind TAB to symbol completion.
26669
26670 * textmodes/ispell.el (lookup-words): Use with-temp-buffer; signal
26671 error directly rather via storing it into `results'.
26672
26673 2011-05-02 Leo Liu <sdl.web@gmail.com>
26674
26675 * vc/diff.el: Fix description.
26676
26677 2011-05-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
26678
26679 * server.el (server-eval-at): New function.
26680
26681 2011-05-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
26682
26683 * net/network-stream.el (open-network-stream): Take a :nowait
26684 parameter and pass it on to `make-network-process'.
26685 (network-stream-open-plain): Ditto.
26686
26687 2011-04-30 Andreas Schwab <schwab@linux-m68k.org>
26688
26689 * faces.el (face-spec-set-match-display): Don't match toolkit
26690 options on terminal frames.
26691
26692 2011-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
26693
26694 * progmodes/pascal.el: Use lexical binding.
26695 (pascal-mode-map): Remove author preferences.
26696
26697 * pcomplete.el (pcomplete-std-complete): Don't abuse
26698 completion-at-point.
26699
26700 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
26701
26702 * calc/calccomp.el (math-comp-to-string-flat-term): Simplify by
26703 removing code that has been dead since 1991 or so.
26704
26705 * startup.el (command-line): When warning about "_emacs", use a
26706 delayed warning to allow the user to filter it out.
26707
26708 2011-04-28 Deniz Dogan <deniz@dogan.se>
26709
26710 * net/rcirc.el (rcirc-handler-353): Fix bug for channels which the
26711 user has not joined.
26712
26713 2011-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
26714
26715 * pcomplete.el (pcomplete-completions-at-point): Return nil if there
26716 aren't any completions at point.
26717
26718 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
26719
26720 * subr.el (display-delayed-warnings): New function.
26721 (delayed-warnings-hook): New variable.
26722
26723 2011-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
26724
26725 * minibuffer.el (completion-at-point, completion-help-at-point):
26726 Don't presume that a given completion-at-point-function will always
26727 use the same calling convention.
26728
26729 * pcomplete.el (pcomplete-completions-at-point):
26730 Obey pcomplete-ignore-case. Don't call pcomplete-norm-func unless
26731 pcomplete-seen is non-nil.
26732 (pcomplete-comint-setup): Also recognize the new comint/shell
26733 completion functions.
26734 (pcomplete-do-complete): Don't call pcomplete-norm-func unless
26735 pcomplete-seen is non-nil.
26736
26737 2011-04-27 Niels Giesen <niels.giesen@gmail.com>
26738
26739 * calendar/icalendar.el (diary-lib): Add require statement.
26740 (icalendar--create-uid): Read out a uid from a text-property on
26741 the first character in the entry. This allows for code to add its
26742 own uid to the entry.
26743 (icalendar--convert-float-to-ical): Add export of
26744 `diary-float'-entries save for those with the optional DAY
26745 argument.
26746
26747 2011-04-27 Daniel Colascione <dan.colascione@gmail.com>
26748
26749 * subr.el (shell-quote-argument): Use alternate escaping strategy
26750 when we spot a variable reference in a string.
26751
26752 2011-04-26 Daniel Colascione <dan.colascione@gmail.com>
26753
26754 * cus-start.el (all): Define customization for debug-on-event.
26755
26756 2011-04-26 Daniel Colascione <dan.colascione@gmail.com>
26757
26758 * subr.el (shell-quote-argument): Escape correctly under Windows.
26759
26760 2011-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
26761
26762 * emulation/cua-base.el (cua-selection-mode): Make it toggle again.
26763
26764 2011-04-25 Michael Albinus <michael.albinus@gmx.de>
26765
26766 * net/tramp.el (tramp-process-actions): Add POS argument.
26767 Delete region between POS and (pos).
26768
26769 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
26770 Use `nil' position in `tramp-process-actions' call.
26771 (tramp-maybe-open-connection): Call `tramp-process-actions' with pos.
26772
26773 * net/tramp-smb.el (tramp-smb-maybe-open-connection): Use `nil'
26774 position in `tramp-process-actions' call.
26775
26776 * net/trampver.el: Update release number.
26777
26778 2011-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
26779
26780 * custom.el (defcustom): Obey lexical-binding.
26781
26782 Fix octave-inf completion problems reported by Alexander Klimov.
26783 * progmodes/octave-inf.el (inferior-octave-mode-syntax-table):
26784 Inherit from octave-mode-syntax-table.
26785 (inferior-octave-mode): Set info-lookup-mode.
26786 (inferior-octave-completion-at-point): New function.
26787 (inferior-octave-complete): Use it and completion-in-region.
26788 (inferior-octave-dynamic-complete-functions): Use it as well, and use
26789 comint-filename-completion.
26790 * progmodes/octave-mod.el (octave-mode-syntax-table): Use _ syntax for
26791 symbol elements which shouldn't be word elements.
26792 (octave-font-lock-keywords, octave-beginning-of-defun)
26793 (octave-function-header-regexp): Adjust regexps accordingly.
26794 (octave-mode-map): Also use info-lookup-symbol for C-c C-h.
26795
26796 2011-04-25 Juanma Barranquero <lekktu@gmail.com>
26797
26798 * net/gnutls.el (gnutls-errorp): Declare before first use.
26799
26800 2011-04-24 Teodor Zlatanov <tzz@lifelogs.com>
26801
26802 * net/gnutls.el (gnutls-negotiate): Add hostname, verify-flags,
26803 verify-error, and verify-hostname-error parameters. Check whether
26804 default trustfile exists before going to use it. Add missing
26805 argument to gnutls-message-maybe call. Return value.
26806 Reported by Claudio Bley <claudio.bley@gmail.com>.
26807 (open-gnutls-stream): Add usage example.
26808
26809 * net/network-stream.el (network-stream-open-starttls): Give host
26810 parameter to `gnutls-negotiate'.
26811 (gnutls-negotiate): Adjust `gnutls-negotiate' declaration.
26812 * subr.el (shell-quote-argument): Escape correctly under Windows.
26813
26814 2011-04-24 Daniel Colascione <dan.colascione@gmail.com>
26815
26816 * progmodes/cc-engine.el (c-forward-decl-or-cast-1):
26817 Use correct match group (bug#8438).
26818
26819 2011-04-24 Chong Yidong <cyd@stupidchicken.com>
26820
26821 * emacs-lisp/package.el (package-built-in-p): Fix typo.
26822 (package-menu--generate): New arg specifying packages to show.
26823 (package-menu-refresh, package-menu-execute, list-packages):
26824 Callers changed.
26825 (package-show-package-list): New function, replacing deleted
26826 package--list-packages (renamed because it is non-internal).
26827
26828 * finder.el (finder-list-matches): Use package-show-package-list
26829 instead of deleted package--list-packages.
26830
26831 * vc/vc-annotate.el (vc-annotate-goto-line): New command.
26832 Based on a previous implementation by Juanma Barranquero (Bug#8366).
26833 (vc-annotate-mode-map): Bind it to RET.
26834
26835 2011-04-24 Uday S Reddy <u.s.reddy@cs.bham.ac.uk> (tiny change)
26836
26837 * progmodes/etags.el (next-file): Don't use set-buffer to change
26838 buffers (Bug#8478).
26839
26840 2011-04-24 Chong Yidong <cyd@stupidchicken.com>
26841
26842 * files.el (auto-mode-alist): Use js-mode for .json (Bug#8529).
26843
26844 * apropos.el (apropos-label-face): Avoid variable-pitch face.
26845 (apropos-accumulator): Doc fix.
26846 (apropos-function, apropos-macro, apropos-command)
26847 (apropos-variable, apropos-face, apropos-group, apropos-widget)
26848 (apropos-plist): Add face property.
26849 (apropos-symbols-internal): Fix indentation.
26850 (apropos-print): Simplify help, and recognize apropos-multi-type.
26851 (apropos-print-doc): Use button-type-get to extract the button's
26852 face property. Fill docstring (Bug#8352).
26853
26854 2011-04-23 Juanma Barranquero <lekktu@gmail.com>
26855
26856 * buff-menu.el (Buffer-menu--buffers): Fix typo in docstring (bug#8535).
26857
26858 * play/mpuz.el (mpuz-silent): Doc fix.
26859 (mpuz-mode-map): Use mapc.
26860 (mpuz-put-number-on-board): Rename parameter L to COLUMNS.
26861 (mpuz-letter-to-digit, mpuz-check-all-solved, mpuz-create-buffer):
26862 Fix typos in docstrings.
26863
26864 * play/doctor.el (doc$, doctor-$, doctor-read-print, doctor-read-token)
26865 (doctor-nounp, doctor-pronounp): Fix typos in docstrings.
26866
26867 * mouse-drag.el (mouse-drag-throw): Fix typo in docstring.
26868
26869 2011-04-23 Chong Yidong <cyd@stupidchicken.com>
26870
26871 * minibuffer.el (completion--do-completion): Avoid the "Next char
26872 not unique" prompt if icomplete-mode is enabled (Bug#5849).
26873
26874 * mouse.el (mouse-drag-mode-line-1): Make sure that if we push
26875 mouse-2 into unread-command-events, it is interpreted correctly.
26876
26877 * image-mode.el (image-type, image-mode-map, image-minor-mode-map)
26878 (image-toggle-display): Doc fix.
26879
26880 2011-04-23 Stephen Berman <stephen.berman@gmx.net>
26881
26882 * textmodes/page.el (what-page): Use line-number-at-pos to
26883 calculate line number (Bug#6825).
26884
26885 2011-04-22 Juanma Barranquero <lekktu@gmail.com>
26886
26887 * eshell/esh-mode.el (find-tag-interactive): Declare function.
26888 (eshell-find-tag): Remove `with-no-warnings', unneeded now.
26889 Pass argument NO-DEFAULT to `find-tag-interactive'.
26890
26891 2011-04-22 Juanma Barranquero <lekktu@gmail.com>
26892
26893 Lexical-binding cleanup.
26894
26895 * progmodes/ada-mode.el (ada-after-change-function, ada-loose-case-word)
26896 (ada-no-auto-case, ada-capitalize-word, ada-untab, ada-narrow-to-defun):
26897 * progmodes/ada-prj.el (ada-prj-initialize-values)
26898 (ada-prj-display-page, ada-prj-field-modified, ada-prj-display-help)
26899 (ada-prj-show-value):
26900 * progmodes/ada-xref.el (ada-find-any-references, ada-gdb-application):
26901 * progmodes/antlr-mode.el (antlr-with-displaying-help-buffer)
26902 (antlr-invalidate-context-cache, antlr-options-menu-filter)
26903 (antlr-language-option-extra, antlr-c++-mode-extra, antlr-run-tool):
26904 * progmodes/bug-reference.el (bug-reference-push-button):
26905 * progmodes/fortran.el (fortran-line-length):
26906 * progmodes/glasses.el (glasses-change):
26907 * progmodes/octave-mod.el (octave-fill-paragraph):
26908 * progmodes/python.el (python-mode, python-pdbtrack-track-stack-file)
26909 (python-pdbtrack-grub-for-buffer, python-sentinel):
26910 * progmodes/sql.el (sql-save-connection):
26911 * progmodes/tcl.el (tcl-indent-command, tcl-popup-menu):
26912 * progmodes/xscheme.el (xscheme-enter-debugger-mode):
26913 Mark unused parameters.
26914
26915 * progmodes/compile.el (compilation--flush-directory-cache)
26916 (compilation--flush-parse, compile-internal): Mark unused parameters.
26917 (compilation-buffer-name): Rename parameter MODE-NAME to NAME-OF-MODE.
26918 (compilation-next-error-function): Remove unused variable `timestamp'.
26919
26920 * progmodes/cpp.el (cpp-parse-close): Remove unused variable `begin'.
26921 (cpp-signal-read-only, cpp-grow-overlay): Mark unused parameters.
26922
26923 * progmodes/dcl-mode.el (dcl-end-of-command):
26924 Remove unused variable `start'.
26925 (dcl-calc-command-indent-multiple, dcl-calc-cont-indent-relative)
26926 (dcl-option-value-basic, dcl-option-value-offset)
26927 (dcl-option-value-margin-offset, dcl-option-value-comment-line):
26928 Mark unused parameters.
26929 (dcl-save-local-variable): Remove unused variable `val'.
26930 (mode): Declare.
26931
26932 * progmodes/delphi.el (delphi-save-state, delphi-after-change):
26933 Mark unused parameters.
26934 (delphi-ignore-changes): Move before first use.
26935 (delphi-charset-token-at): Remove unused variable `start'.
26936 (delphi-else-start): Remove unused variable `if-count'.
26937 (delphi-comment-block-start, delphi-comment-block-end):
26938 Remove unused variable `kind'.
26939 (delphi-indent-line): Remove unused variable `new-point'.
26940
26941 * progmodes/ebrowse.el (ebrowse-files-list)
26942 (ebrowse-list-of-matching-members, ebrowse-tags-list-members-in-file):
26943 Mark unused parameters. Don't quote `lambda'.
26944 (ebrowse-sort-tree-list, ebrowse-same-tree-member-buffer-list):
26945 Don't quote `lambda'.
26946 (ebrowse-revert-tree-buffer-from-file, ebrowse-tags-choose-class)
26947 (ebrowse-goto-visible-member/all-member-lists): Mark unused parameters.
26948 (ebrowse-create-tree-buffer): Rename parameter OBARRAY to CLASSES.
26949 (ebrowse-toggle-mark-at-point): Remove unused variable `pnt'.
26950 Use `ignore-errors'.
26951 (ebrowse-frozen-tree-buffer-name, ebrowse-find-source-file)
26952 (ebrowse-view/find-file-and-search-pattern)
26953 (ebrowse-view/find-member-declaration/definition):
26954 Rename parameter TAGS-FILE-NAME to TAGS-FILE.
26955 (ebrowse-find-class-declaration, ebrowse-view-class-declaration):
26956 Rename parameter PREFIX-ARG to PREFIX.
26957 (ebrowse-tags-read-name): Remove unused variables `start' and
26958 `member-info'.
26959 (ebrowse-display-member-buffer): Rename variable `tags-file-name'
26960 to `tags-file'.
26961
26962 * progmodes/etags.el (local-find-tag-hook): Declare.
26963 (tag-partial-file-name-match-p, tag-any-match-p, list-tags):
26964 Mark unused parameters.
26965
26966 * progmodes/executable.el (compilation-error-regexp-alist): Declare.
26967 (executable-interpret): Mark unused parameter.
26968
26969 * progmodes/flymake.el (flymake-process-sentinel)
26970 (flymake-after-change-function)
26971 (flymake-create-temp-with-folder-structure)
26972 (flymake-get-include-dirs-dot): Mark unused parameters.
26973 (flymake-safe-delete-directory): Remove unused variable `err'.
26974
26975 * progmodes/gdb-mi.el (speedbar-change-initial-expansion-list)
26976 (speedbar-timer-fn, speedbar-line-text)
26977 (speedbar-change-expand-button-char, speedbar-delete-subblock)
26978 (speedbar-center-buffer-smartly): Declare functions.
26979 (gdb-find-watch-expression): Remove unused variable `array'.
26980 (gdb-edit-value, gdb-gdb, gdb-ignored-notification, gdb-thread-created)
26981 (gdb-starting): Mark unused parameters.
26982 (gud-gdbmi-marker-filter): Remove unused variable `output-record'.
26983 (gdb-table-string): Remove unused variable `res'.
26984 (gdb-place-breakpoints): Remove unused variables `flag' and `bptno'.
26985 (gdb-disassembly-handler-custom): Remove unused variable `pos'.
26986 (gdb-display-buffer): Remove unused variable `cur-size'.
26987
26988 * progmodes/gud.el (gud-def): Use `defalias' instead of `defun' to
26989 allow lexical-binding compilation.
26990 (gud-expansion-speedbar-buttons, gud-gdb-goto-stackframe)
26991 (gud-dbx-massage-args, gud-xdb-massage-args, gud-perldb-massage-args)
26992 (gud-jdb-massage-args, gud-jdb-find-source, gud-find-class):
26993 Mark unused parameters.
26994 (gud-gdb-marker-filter): Remove unused variable `match'.
26995 (gud-find-class): Bind `syntax-symbol' and `syntax-point' to suitable
26996 lambda expressions and funcall them, instead of using `fset'.
26997
26998 * progmodes/hideif.el (hif-parse-if-exp): Rename parameter
26999 HIF-TOKEN-LIST to TOKEN-LIST and let-bind `hif-token-list'.
27000
27001 * progmodes/hideshow.el (hs-hide-block-at-point): Remove unused
27002 variable `header-beg'; use `let'.
27003
27004 * progmodes/icon.el (indent-icon-exp): Remove unused variables
27005 `restart', `last-sexp' and `at-do'.
27006
27007 * progmodes/js.el (js--debug): Mark unused parameter.
27008 (js--parse-state-at-point): Remove unused variable `bound'; use `let'.
27009 (js--splice-into-items): Remove unused variable `item'.
27010 (js--read-symbol, js--read-tab): Pass 1/-1 to `ido-mode', not t/nil.
27011
27012 * progmodes/make-mode.el (makefile-make-font-lock-keywords):
27013 Rename parameter FONT-LOCK-KEYWORDS to FL-KEYWORDS.
27014 (makefile-complete): Remove unused variable `try'.
27015 (makefile-fill-paragraph, makefile-match-function-end):
27016 Mark unused parameters.
27017
27018 * progmodes/octave-inf.el (inferior-octave-complete):
27019 Remove unused variable `proc'.
27020 (inferior-octave-output-digest): Mark unused parameter.
27021
27022 * progmodes/perl-mode.el (perl-calculate-indent):
27023 Remove unused variable `err'.
27024
27025 * progmodes/prolog.el (prolog-mode-keybindings-inferior)
27026 (prolog-indent-line): Mark unused parameters.
27027 (prolog-indent-line): Remove unused variable `beg'.
27028
27029 * progmodes/ps-mode.el (reporter-prompt-for-summary-p)
27030 (reporter-dont-compact-list): Declare.
27031
27032 * progmodes/sh-script.el (sh-font-lock-quoted-subshell):
27033 Remove unused variable `char'.
27034 (sh-debug): Mark unused parameter.
27035 (sh-get-indent-info): Remove unused variable `start'.
27036 (sh-calculate-indent): Remove unused variable `var'.
27037
27038 * progmodes/simula.el (simula-popup-menu): Mark unused parameter.
27039 (simula-electric-keyword): Remove unused variable `null'.
27040 (simula-search-backward, simula-search-forward): Remove unused
27041 variables `begin' and `end'.
27042
27043 * progmodes/vera-mode.el (vera-guess-basic-syntax):
27044 Remove unused variable `pos'.
27045 (vera-electric-tab, vera-comment-uncomment-region):
27046 Mark unused parameters.
27047 (vera-electric-tab): Rename parameter PREFIX-ARG to PREFIX.
27048
27049 2011-04-22 Chong Yidong <cyd@stupidchicken.com>
27050
27051 * emacs-lisp/package.el (package--builtins, package-alist)
27052 (package-load-descriptor, package-built-in-p, package-activate)
27053 (define-package, package-installed-p)
27054 (package-compute-transaction, package-buffer-info)
27055 (package--push): Doc fix. Distinguish more clearly between
27056 version strings and version lists.
27057
27058 2011-04-21 Juanma Barranquero <lekktu@gmail.com>
27059
27060 Lexical-binding cleanup.
27061
27062 * play/5x5.el (5x5-make-random-solution, 5x5-make-mutate-current)
27063 (5x5-make-mutate-best):
27064 * play/fortune.el (fortune-in-buffer):
27065 * play/gomoku.el (gomoku-init-display):
27066 * play/solitaire.el (solitaire, solitaire-do-check):
27067 * play/tetris.el (tetris-default-update-speed-function):
27068 Mark unused parameters.
27069
27070 * play/bubbles.el (bubbles-mode): Set `show-trailing-whitespace'.
27071 (bubbles--shift): Remove unused variable `char-org'.
27072 (bubbles--set-faces): Remove unused variable `fg-col'. Simplify.
27073 (bubbles--show-images): Remove unused variable `char'.
27074
27075 * play/decipher.el (decipher-keypress, decipher-alphabet-keypress)
27076 (decipher-get-undo, decipher-set-map, decipher-complete-alphabet)
27077 (decipher-resync, decipher-loop-with-breaks, decipher--analyze)
27078 (decipher-analyze-buffer): Use ?\s.
27079 (decipher-make-checkpoint): Remove unused variable `mapping'.
27080
27081 * play/doctor.el (doctor-doc): Rename parameter DOCTOR-SENT to SENT.
27082
27083 * play/gamegrid.el (gamegrid-add-score-with-update-game-score):
27084 Remove unused variable `result'; use `let'.
27085
27086 * play/gametree.el (gametree-current-layout, gametree-apply-layout):
27087 Rename parameter TOP-LEVEL to FROM-TOP-LEVEL; use `ignore-errors'.
27088 (gametree-children-shown-p, gametree-compute-reduced-score):
27089 Use `ignore-errors'.
27090
27091 * play/handwrite.el (ps-lpr-switches): Declare.
27092 (handwrite): Remove unused variables `pmin' and `lastp'.
27093
27094 * play/hanoi.el (hanoi-move-ring): Remove unused variable `total-steps'.
27095
27096 * play/landmark.el (landmark-init-display)
27097 (landmark-update-naught-weights): Mark unused parameters.
27098 (landmark-y): Remove unused variable `noise'. Simplify.
27099 (landmark-human-plays): Remove unused variable `score'.
27100
27101 * play/mpuz.el (mpuz-try-letter): Remove unused variable `message'.
27102 (mpuz-try-proposal): Remove unused variable `game'.
27103
27104 * play/zone.el (life-patterns): Declare.
27105
27106 2011-04-20 Juanma Barranquero <lekktu@gmail.com>
27107
27108 * vc/vc.el (ediff-vc-internal): Declare function.
27109
27110 2011-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
27111
27112 * shell.el: Use lexical-binding and std completion UI.
27113 (shell-filter-ctrl-a-ctrl-b): Work as a preoutput filter.
27114 (shell-mode): Put shell-filter-ctrl-a-ctrl-b on
27115 comint-preoutput-filter-functions rather than on
27116 comint-output-filter-functions.
27117 (shell-command-completion, shell--command-completion-data)
27118 (shell-filename-completion, shell-environment-variable-completion)
27119 (shell-c-a-p-replace-by-expanded-directory): New functions.
27120 (shell-dynamic-complete-functions, shell-dynamic-complete-command)
27121 (shell-dynamic-complete-filename, shell-replace-by-expanded-directory)
27122 (shell-dynamic-complete-environment-variable): Use them.
27123 (shell-dynamic-complete-as-environment-variable)
27124 (shell-dynamic-complete-as-command): Remove.
27125 (shell-match-partial-variable): Match past point.
27126 * comint.el: Clean up use of completion-at-point-functions.
27127 (comint-completion-at-point): New function.
27128 (comint-mode): Use it completion-at-point-functions.
27129 (comint-dynamic-complete): Make it obsolete.
27130 (comint-replace-by-expanded-history-before-point): Add dry-run arg.
27131 (comint-c-a-p-replace-by-expanded-history): New function.
27132 (comint-dynamic-complete-functions)
27133 (comint-replace-by-expanded-history): Use it.
27134 * minibuffer.el (completion-table-with-terminator): Allow dynamic
27135 termination strings. Try harder to avoid second try-completion.
27136 (completion-in-region-mode-map): Disable bindings that don't work yet.
27137
27138 * comint.el: Use lexical-binding. Require CL.
27139 (comint-dynamic-complete-functions): Use comint-filename-completion.
27140 (comint-completion-addsuffix): Tweak custom type.
27141 (comint-filename-completion, comint--common-suffix)
27142 (comint--common-quoted-suffix, comint--table-subvert)
27143 (comint--complete-file-name-data): New functions.
27144 (comint-dynamic-complete-as-filename, comint-dynamic-complete-filename)
27145 (comint-dynamic-list-filename-completions): Use them.
27146 (comint-dynamic-simple-complete): Make obsolete.
27147
27148 * minibuffer.el (completion-in-region-mode):
27149 Keep completion-in-region-mode--predicate global.
27150 (completion-in-region--postch):
27151 Assume completion-in-region-mode--predicate is not null.
27152
27153 * progmodes/flymake.el (flymake-start-syntax-check-process):
27154 Obey `dir'. Simplify.
27155
27156 * vc/vc.el (vc-version-ediff): Call ediff-vc-internal directly, since
27157 we're in VC after all.
27158
27159 2011-04-20 Christoph Scholtes <cschol2112@googlemail.com>
27160
27161 * vc/vc.el (vc-diff-build-argument-list-internal)
27162 (vc-version-ediff, vc-ediff): New commands.
27163 (vc-version-diff): Use vc-diff-build-argument-list-internal.
27164
27165 2011-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
27166
27167 * emacs-lisp/byte-opt.el (byte-decompile-bytecode-1): Remove dead code,
27168 add sanity check.
27169
27170 * obsolete/erc-hecomplete.el: Make obsolete.
27171 * obsolete/: Standardize obsolescence info in the header.
27172
27173 2011-04-20 Glenn Morris <rgm@gnu.org>
27174
27175 * calendar/solar.el (solar-horizontal-coordinates):
27176 Use the longitude argument rather than `calendar-longitude'.
27177 (solar-date-next-longitude): Remove unused locals.
27178
27179 2011-04-20 Vinicius Jose Latorre <viniciusjl@ig.com.br>
27180
27181 * whitespace.el: New version 13.2.1.
27182
27183 2011-04-20 felix <EmacsWiki> (tiny change)
27184
27185 * whitespace.el (global-whitespace-mode): Keep highlight when
27186 switching between major modes on a file.
27187
27188 2011-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
27189
27190 * progmodes/octave-mod.el (octave-in-comment-p, octave-in-string-p)
27191 (octave-not-in-string-or-comment-p): Use syntax-ppss so it works with
27192 multi-line comments as well.
27193
27194 2011-04-19 Juanma Barranquero <lekktu@gmail.com>
27195
27196 Lexical-binding cleanup.
27197
27198 * arc-mode.el (archive-mode-revert):
27199 * cmuscheme.el (scheme-interactively-start-process):
27200 * custom.el (custom-initialize-delay):
27201 * dnd.el (dnd-open-local-file, dnd-open-remote-url):
27202 * dos-w32.el (direct-print-region-helper, direct-print-region-function):
27203 * emacs-lock.el (emacs-lock-clear-sentinel):
27204 * ezimage.el (defezimage):
27205 * follow.el (follow-avoid-tail-recenter):
27206 * fringe.el (set-fringe-mode-1):
27207 * generic-x.el (bat-generic-mode-compile):
27208 * help-mode.el (help-info-variable, help-do-xref)
27209 (help-mode-revert-buffer):
27210 * help.el (view-emacs-todo):
27211 * iswitchb.el (iswitchb-completion-help):
27212 * jka-compr.el (jka-compr-make-temp-name, jka-compr-load):
27213 * kmacro.el (kmacro-cycle-ring-next, kmacro-cycle-ring-previous)
27214 (kmacro-delete-ring-head, kmacro-bind-to-key, kmacro-view-macro):
27215 * locate.el (locate-update):
27216 * longlines.el (longlines-encode-region)
27217 (longlines-after-change-function):
27218 * outline.el (outline-isearch-open-invisible):
27219 * ps-def.el (declare-function, charset-dimension, char-width)
27220 (encode-char):
27221 * ps-mule.el (ps-mule-plot-string):
27222 * recentf.el (recentf-make-menu-items, recentf-cancel-dialog)
27223 (recentf-edit-list-select, recentf-edit-list-validate)
27224 (recentf-open-files-action):
27225 * rect.el (delete-whitespace-rectangle-line)
27226 (rectangle-number-line-callback):
27227 * register.el (window-configuration-to-register)
27228 (frame-configuration-to-register):
27229 * scroll-bar.el (scroll-bar-mode, toggle-horizontal-scroll-bar):
27230 * select.el (xselect-convert-to-string, xselect-convert-to-length)
27231 (xselect-convert-to-targets, xselect-convert-to-delete)
27232 (xselect-convert-to-filename, xselect-convert-to-charpos)
27233 (xselect-convert-to-lineno, xselect-convert-to-colno)
27234 (xselect-convert-to-os, xselect-convert-to-host)
27235 (xselect-convert-to-user, xselect-convert-to-class)
27236 (xselect-convert-to-name, xselect-convert-to-integer)
27237 (xselect-convert-to-atom, xselect-convert-to-identity):
27238 * subr.el (declare, ignore, process-kill-without-query)
27239 (text-clone-maintain):
27240 * terminal.el (te-get-char, te-tic-sentinel):
27241 * tool-bar.el (tool-bar-make-keymap):
27242 * tooltip.el (tooltip-timeout, tooltip-hide, tooltip-help-tips):
27243 * type-break.el (type-break-mode, type-break-noninteractive-query):
27244 * view.el (View-back-to-mark):
27245 * wid-browse.el (widget-browse-action, widget-browse-widget)
27246 (widget-browse-widgets, widget-browse-sexp):
27247 * widget.el (define-widget-keywords):
27248 * xt-mouse.el (xterm-mouse-translate, turn-off-xterm-mouse-tracking):
27249 Mark unused parameters.
27250
27251 * align.el (align-adjust-col-for-rule): Mark unused parameter.
27252 (align-areas): Remove unused variable `look'.
27253 (align-region): Remove unused variables `real-end' and `pos-list'.
27254
27255 * apropos.el (apropos-score-doc): Remove unused variable `i'.
27256
27257 * bindings.el (mode-line-modified, mode-line-remote):
27258 Mark unused parameters.
27259 (mode-line-mule-info): Mark unused parameter; don't quote `lambda'.
27260
27261 * buff-menu.el (Buffer-menu-revert-function): Mark unused parameters.
27262 (Buffer-menu-mode): Mark unused parameter; don't quote `lambda'.
27263
27264 * comint.el (comint-history-isearch-pop-state)
27265 (comint-postoutput-scroll-to-bottom, comint-truncate-buffer)
27266 (comint-strip-ctrl-m, comint-read-noecho): Mark unused parameters.
27267 (comint-substitute-in-file-name): Doc fix.
27268
27269 * completion.el (cmpl-statistics-block): Mark unused parameter.
27270 (add-completions-from-tags-table, add-completions-from-lisp-buffer)
27271 (save-completions-to-file, load-completions-from-file):
27272 Remove unused local variable `e'.
27273
27274 * composite.el (compose-chars): Remove unused variable `len'.
27275 (lgstring-insert-glyph): Remove unused variable `g'.
27276 (compose-glyph-string): Remove unused variables `ascent',
27277 `descent', `lbearing' and `rbearing'.
27278 (compose-glyph-string-relative): Remove unused variables
27279 `lbearing', `rbearing' and `wadjust'.
27280 (compose-gstring-for-graphic): Remove unused variables `header',
27281 `wadjust', `xoff' and `yoff'. Use `let', not `let*'.
27282 (compose-gstring-for-terminal): Remove unused variables `header'
27283 and `nchars'. Use `let', not `let*'.
27284
27285 * cus-edit.el (Custom-set, Custom-save, custom-reset)
27286 (Custom-reset-current, Custom-reset-saved, Custom-reset-standard)
27287 (Custom-buffer-done, custom-buffer-create-internal)
27288 (custom-browse-visibility-action, custom-browse-group-tag-action)
27289 (custom-browse-variable-tag-action, custom-browse-face-tag-action)
27290 (widget-magic-mouse-down-action, custom-toggle-parent)
27291 (custom-add-parent-links, custom-toggle-hide-variable)
27292 (custom-face-edit-value-visibility-action, custom-face-edit-fix-value)
27293 (custom-toggle-hide-face, face, hook, custom-group-link-action)
27294 (custom-face-menu-create, custom-variable-menu-create, get)
27295 (custom-group-menu-create, Custom-no-edit): Mark unused parameters.
27296 (custom-reset-standard-save-and-update): Remove unused variable `value'.
27297 (customize-apropos): Remove unused variable `tests'.
27298 (custom-group-value-create): Remove unused variable `hidden-p'.
27299 (sort-fold-case): Declare.
27300
27301 * cus-theme.el (custom-reset-standard-faces-list)
27302 (custom-reset-standard-variables-list): Declare.
27303 (customize-create-theme, custom-theme-revert, custom-theme-write)
27304 (custom-theme-choose-mode, customize-themes, custom-theme-save):
27305 Mark unused parameters.
27306
27307 * dabbrev.el (dabbrev-completion): Remove unused variable `init'.
27308
27309 * delim-col.el (delimit-columns-max): Move defvar before first use.
27310
27311 * descr-text.el (describe-char-categories): Don't quote `lambda'.
27312 (describe-char): Don't quote `lambda'. Mark unused parameter.
27313
27314 * desktop.el (desktop-save-buffer-p): Mark unused parameter.
27315 (auto-insert): Declare.
27316 (desktop-restore-file-buffer): Rename desktop-* parameters;
27317 mark unused ones.
27318 (desktop-create-buffer): Rename desktop-* parameters and bind them.
27319 (desktop-buffer): Rename desktop-* parameters.
27320
27321 * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape): Declare.
27322 (dframe-reposition-frame-xemacs, dframe-help-echo)
27323 (dframe-hack-buffer-menu, dframe-set-timer, dframe-set-timer-internal):
27324 Mark unused parameters.
27325
27326 * dired-aux.el (backup-extract-version-start, overwrite-query)
27327 (overwrite-backup-query, rename-regexp-query)
27328 (rename-non-directory-query): Declare.
27329 (dired-shell-stuff-it, dired-do-create-files): Mark unused parameters.
27330 (dired-add-entry): Remove unused variable `orig-file-name'.
27331 (dired-copy-file-recursive): Remove unused variable `dirfailed'.
27332 Use parameter PRESERVE-TIME instead of accessing dynamic variable
27333 `dired-copy-preserve-time' directly.
27334 (dired-do-create-files-regexp): Remove unused variable `fn-count'.
27335 (dired-insert-subdir-newpos): Rename unused variable `pos'.
27336
27337 * dired-x.el (dired-omit-size-limit): Move defcustom before first use.
27338 (dired-virtual-revert, dired-make-relative-symlink):
27339 Mark unused parameters.
27340 (manual-program): Declare.
27341 (dired-x-hands-off-my-keys): Rename parameters of lambda expression.
27342 (inode, s, mode, nlink, uid, gid, size, time, name, sym): Declare them,
27343 wrapped in `with-no-warnings' to avoid replacing one warning by another.
27344
27345 * dirtrack.el (dirtrack): Remove unused variable `multi-line'.
27346
27347 * dos-fns.el (dos-8+3-filename): Remove unused variable `i'.
27348
27349 * echistory.el (electric-history-in-progress, Helper-return-blurb):
27350 Declare.
27351
27352 * edmacro.el (edmacro-finish-edit): Remove unused variable `kmacro'.
27353
27354 * electric.el (Electric-command-loop): Rename parameter
27355 INHIBIT-QUIT to INHIBIT-QUITTING and bind `inhibit-quit'.
27356
27357 * expand.el (expand-in-literal): Remove unused variable `here'.
27358
27359 * facemenu.el (facemenu-add-new-color):
27360 Remove unused variable `docstring'.
27361
27362 * faces.el (face-id, make-face-bold, make-face-unbold, make-face-italic)
27363 (make-face-unitalic, make-face-bold-italic): Mark unused parameters.
27364 (face-attr-construct): Mark unused parameter. Doc fix.
27365 (read-color): Remove unused variable `hex-string'.
27366
27367 * files.el (parse-colon-path): Rename argument CD-PATH to SEARCH-PATH.
27368 (locate-dominating-file): Remove unused vars `prev-file' and `user'.
27369 (remote-file-name-inhibit-cache, revert-buffer): Clean up docstrings.
27370 (display-buffer-other-frame): Remove unused variable `old-window'.
27371 (kill-buffer-hook): Declare.
27372 (insert-file-contents-literally, set-auto-mode, risky-local-variable-p):
27373 Mark unused parameters.
27374 (after-find-file): Pass 1 to `auto-save-mode', not t.
27375
27376 * files-x.el (auto-insert): Declare.
27377 (modify-file-local-variable-prop-line): Remove unused variable `val'.
27378
27379 * find-lisp.el (find-lisp-find-dired-internal): Remove unused
27380 variable `buf'. Mark unused parameter.
27381 (find-lisp-insert-directory): Mark unused parameter.
27382
27383 * format.el (format-decode-run-method): Mark unused parameter; doc fix.
27384 (format-encode-region): Remove unused variables `cur-buf' and `result'.
27385 (format-common-tail): Remove, unused.
27386 (format-deannotate-region): Remove unused variable `loc'.
27387 (format-annotate-region): Remove unused variable `p'.
27388 (format-annotate-single-property-change): Remove unused variables
27389 `default' and `tail'.
27390
27391 * forms.el (read-file-filter): Declare.
27392 (forms--iif-hook, forms--revert-buffer): Mark unused parameters.
27393
27394 * frame.el (frame-creation-function-alist): Mark unused parameter.
27395 (frame-geom-spec-cons): Pass FRAME to `frame-geom-value-cons'.
27396
27397 * hilit-chg.el (hilit-chg-cust-fix-changes-face-list, hilit-chg-clear):
27398 Remove unused parameters.
27399 (hilit-chg-set-face-on-change): Remove unused variable `beg-decr'.
27400 (highlight-compare-with-file): Remove unused variable `buf-b-read-only'.
27401
27402 * htmlfontify.el (hfy-default-footer, hfy-decor, hfy-invisible)
27403 (hfy-parse-tags-buffer, hfy-prepare-index-i, hfy-prepare-index)
27404 (hfy-prepare-tag-map): Mark unused parameters.
27405 (htmlfontify-buffer): Use `called-interactively-p'.
27406
27407 * ibuf-ext.el (ibuffer-do-kill-lines, ibuffer-jump-to-buffer)
27408 (ibuffer-copy-filename-as-kill, ibuffer-mark-on-buffer)
27409 (ibuffer-do-occur): Mark unused parameters.
27410 (ibuffer-forward-next-marked): Remove unused variable `curmark'.
27411 (ibuffer-diff-buffer-with-file-1): Remove unused variable `proc'.
27412
27413 * ibuffer.el: Don't quote `lambda'.
27414 (ibuffer-count-marked-lines, ibuffer-count-deletion-lines)
27415 (ibuffer-unmark-all, ibuffer-toggle-marks, ibuffer-redisplay-engine):
27416 Mark unused parameters.
27417
27418 * ido.el (ido-mode, ido-wide-find-dir-or-delete-dir)
27419 (ido-completing-read): Mark unused parameters.
27420 (ido-copy-current-word): Mark unused parameters;
27421 remove unused variable `name'.
27422 (ido-sort-merged-list): Remove unused parameter `dirs'.
27423
27424 * ielm.el (ielm-input-sender): Mark unused parameter.
27425 (ielm-string, ielm-form, ielm-pos, ielm-result, ielm-error-type)
27426 (ielm-output, ielm-wbuf, ielm-pmark): Declare.
27427 (ielm-eval-input): Rename argument IELM-STRING to INPUT-STRING to keep
27428 `ielm-string' as a dynamic variable accessible from the IELM prompt.
27429 Bind `ielm-string' to INPUT-STRING. Remove unused variable `err'.
27430
27431 * image-dired.el (image-dired-display-thumbs): Remove unused
27432 variables `curr-file' and `count'.
27433 (image-dired-remove-tag): Remove unused variable `start'.
27434 (image-dired-tag-files, image-dired-create-thumbs): Remove unused
27435 variable `curr-file'
27436 (image-dired-rotate-original): Remove unused variable `temp-file'.
27437 (image-dired-mouse-select-thumbnail, image-dired-mouse-toggle-mark):
27438 Remove unused variable `file'.
27439 (image-dired-gallery-generate): Remove unused variable `curr'.
27440 (image-dired-dired-edit-comment-and-tags): Mark unused parameters.
27441
27442 * indent.el (tab-to-tab-stop): Remove unused variable `opoint'.
27443
27444 * info-xref.el (info-xref-goto-node-p): Remove unused variable `err'.
27445
27446 * informat.el (texinfo-command-start, texinfo-command-end): Declare.
27447
27448 * isearch.el (minibuffer-history-symbol): Declare.
27449 (isearch-edit-string): Remove unused variable `err'.
27450 (isearch-message-prefix, isearch-message-suffix):
27451 Mark unused parameters.
27452
27453 * ls-lisp.el (ls-lisp-insert-directory): Remove unused variable `fil'.
27454
27455 * macros.el (insert-kbd-macro): Remove unused variable `mods'.
27456
27457 * makesum.el (double-column): Remove unused variable `cnt'.
27458
27459 * misearch.el (multi-isearch-pop-state): Mark unused parameter.
27460 (ido-ignore-item-temp-list): Declare.
27461
27462 * mouse-drag.el (mouse-drag-throw): Remove unused variables
27463 `mouse-delta', `window-last-row', `mouse-col-delta', `window-last-col',
27464 `adjusted-mouse-col-delta' and `adjusted-mouse-delta'.
27465 (mouse-drag-drag): Remove unused variables `mouse-delta' and
27466 `mouse-col-delta'.
27467
27468 * mouse-sel.el (mouse-extend-internal):
27469 Remove unused variable `orig-window-frame'.
27470
27471 * pcomplete.el (pcomplete-args, pcomplete-begins, pcomplete-last)
27472 (pcomplete-index, pcomplete-stub, pcomplete-seen, pcomplete-norm-func):
27473 Move declarations before first use.
27474 (pcomplete-opt): Mark unused parameters; doc fix.
27475
27476 * proced.el (proced-revert): Mark unused parameter.
27477 (proced-send-signal): Remove unused variable `err'.
27478
27479 * ps-print.el (ps-print-preprint-region, ps-print-preprint):
27480 Rename parameter PREFIX-ARG to ARG.
27481 (ps-basic-plot-string, ps-basic-plot-whitespace):
27482 Mark unused parameters.
27483
27484 * replace.el (replace-count): Define.
27485 (occur-revert-function): Mark unused parameters.
27486 (ido-ignore-item-temp-list, isearch-error, isearch-forward)
27487 (isearch-case-fold-search, isearch-string): Declare.
27488 (occur-engine): Rename parameter CASE-FOLD-SEARCH to CASE-FOLD and
27489 bind `case-fold-search'. Remove unused variables `beg' and `end',
27490 and simplify.
27491 (replace-eval-replacement): Rename parameter REPLACE-COUNT to
27492 COUNT and bind `replace-count'.
27493 (replace-loop-through-replacements): Rename parameter REPLACE-COUNT
27494 to COUNT.
27495
27496 * savehist.el (print-readably, print-string-length): Declare.
27497
27498 * shadowfile.el (shadow-expand-cluster-in-file-name):
27499 Remove unused variable `cluster'.
27500 (shadow-copy-file): Remove unused variable `i'.
27501 (shadow-noquery, shadow-clusters, shadow-site-cluster)
27502 (shadow-parse-fullname, shadow-parse-name, shadow-define-cluster)
27503 (shadow-define-literal-group, shadow-define-regexp-group)
27504 (shadow-make-group, shadow-shadows-of): Clean up docstrings.
27505
27506 * shell.el (shell-filter-ctrl-a-ctrl-b): Mark unused parameter.
27507 (shell): Use `called-interactively-p'.
27508 (shell-directory-tracker): Remove unused variable `chdir-failure'.
27509
27510 * simple.el (compilation-context-lines, comint-file-name-quote-list)
27511 (comint-file-name-chars, comint-delimiter-argument-list): Declare.
27512 (delete-backward-char): Remove unused variable `ocol'.
27513 (minibuffer-avoid-prompt, minibuffer-history-isearch-pop-state)
27514 (line-move-1, event-apply-alt-modifier, event-apply-super-modifier)
27515 (event-apply-hyper-modifier, event-apply-shift-modifier)
27516 (event-apply-control-modifier, event-apply-meta-modifier):
27517 Mark unused parameters.
27518 (undo-make-selective-list): Remove duplicate variable `undo-elt'.
27519 (normal-erase-is-backspace-mode): Remove unused variable `old-state'.
27520
27521 * speedbar.el (speedbar-ignored-directory-expressions)
27522 (speedbar-supported-extension-expressions, speedbar-directory-buttons)
27523 (speedbar-find-file, speedbar-dir-follow)
27524 (speedbar-directory-buttons-follow, speedbar-tag-find)
27525 (speedbar-buffer-buttons, speedbar-buffer-buttons-temp)
27526 (speedbar-buffers-line-directory, speedbar-buffer-click):
27527 Mark unused parameters.
27528 (speedbar-tag-file): Remove unused variable `mode'.
27529 (speedbar-buffers-tail-notes): Remove unused variable `mod'; simplify.
27530
27531 * strokes.el (strokes-decode-buffer): Remove unused variable `ext'.
27532
27533 * talk.el (talk): Remove unused variable `display'.
27534
27535 * tar-mode.el (tar-subfile-save-buffer): Remove unused variable `name'.
27536 (tar-write-region-annotate): Mark unused parameter.
27537
27538 * time.el (now, time, load, mail, 24-hours, hour, 12-hours, am-pm)
27539 (minutes, seconds, time-zone, day, year, monthname, month, dayname):
27540 Declare them, wrapped in `with-no-warnings' to avoid replacing one
27541 warning by another.
27542
27543 * time-stamp.el (time-stamp-string-preprocess):
27544 Remove unused variable `require-padding'.
27545
27546 * tree-widget.el (widget-glyph-enable): Declare.
27547 (tree-widget-action): Mark unused parameter.
27548
27549 * w32-fns.el (x-get-selection): Mark unused parameter.
27550 (autoload-make-program, generated-autoload-file): Declare.
27551
27552 * wdired.el (wdired-revert): Mark unused parameters.
27553 (wdired-xcase-word): Remove unused variable `err'.
27554
27555 * whitespace.el (whitespace-buffer-changed): Mark unused parameters.
27556 (whitespace-help-scroll): Remove unused variable `data-help'.
27557
27558 * wid-edit.el (widget-mouse-help, widget-overlay-inactive)
27559 (widget-image-insert, widget-after-change, default)
27560 (widget-default-format-handler, widget-default-notify)
27561 (widget-default-prompt-value, widget-info-link-action)
27562 (widget-url-link-action, widget-function-link-action)
27563 (widget-variable-link-action, widget-file-link-action)
27564 (widget-emacs-library-link-action, widget-emacs-commentary-link-action)
27565 (widget-field-prompt-internal, widget-field-action, widget-field-match)
27566 (widget-choice-mouse-down-action, toggle, widget-radio-button-notify)
27567 (widget-insert-button-action, widget-delete-button-action, visibility)
27568 (widget-documentation-link-action, widget-documentation-string-action)
27569 (widget-const-prompt-value, widget-regexp-match, symbol)
27570 (widget-coding-system-prompt-value)
27571 (widget-key-sequence-value-to-external, sexp)
27572 (widget-sexp-value-to-internal, character, vector, cons)
27573 (widget-choice-prompt-value, widget-boolean-prompt-value)
27574 (widget-color--choose-action): Mark unused parameters.
27575 (widget-item-match-inline, widget-choice-match-inline)
27576 (widget-checklist-match, widget-checklist-match-inline)
27577 (widget-group-match): Rename parameter VALUES to VALS.
27578 (widget-field-value-set): Remove unused variable `size'.
27579 (widget-color-action): Remove unused variables `value' and `start'.
27580
27581 * windmove.el (windmove-wrap-loc-for-movement): Remove unused
27582 variable `dir'. Doc fix.
27583 (windmove-find-other-window): Don't pass it.
27584
27585 * window.el (count-windows): Mark unused parameter.
27586 (bw-adjust-window): Remove unused variable `err'.
27587
27588 * woman.el (woman-file-name): Remove unused variable `default'.
27589 (woman-expand-directory-path): Rename parameters WOMAN-MANPATH and
27590 WOMAN-PATH to PATH-DIRS and PATH-REGEXPS, respectively.
27591 (global-font-lock-mode): Declare.
27592 (woman-decode-region): Mark unused parameter.
27593 (woman-get-tab-stop): Rename parameter TAB-STOP-LIST to TAB-STOPS.
27594
27595 * x-dnd.el (x-dnd-default-test-function, x-dnd-handle-old-kde)
27596 (x-dnd-handle-xdnd, x-dnd-handle-motif): Mark unused parameters.
27597 (x-dnd-handle-moz-url): Remove unused variable `title'.
27598 (x-dnd-handle-xdnd): Remove unused variables `x', `y' and `ret-action'.
27599
27600 * xml.el (xml-parse-tag, xml-parse-attlist):
27601 Remove unused variable `pos'.
27602
27603 2011-04-19 Glenn Morris <rgm@gnu.org>
27604
27605 * calendar/cal-tex.el (cal-tex-list-holidays, cal-tex-cursor-month)
27606 (cal-tex-cursor-week, cal-tex-cursor-week2, cal-tex-cursor-week-iso)
27607 (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
27608 (cal-tex-cursor-filofax-daily, cal-tex-mini-calendar)
27609 * calendar/cal-html.el (cal-html-insert-minical):
27610 * calendar/diary-lib.el (diary-list-entries-1, diary-list-entries)
27611 (calendar-mark-date-pattern):
27612 Prefix "unused" locals.
27613
27614 * calendar/cal-dst.el (dst-adjust-time): Remove never-implemented
27615 optional argument `style'.
27616
27617 * calendar/appt.el (appt-make-list):
27618 * calendar/cal-china.el (calendar-chinese-date-string):
27619 * calendar/cal-hebrew.el (calendar-hebrew-list-yahrzeits)
27620 (diary-hebrew-yahrzeit):
27621 * calendar/cal-tex.el (cal-tex-last-blank-p, cal-tex-cursor-week2):
27622 * calendar/calendar.el (calendar-generate-window):
27623 * calendar/time-date.el (time-to-days):
27624 Remove unused local variables.
27625
27626 2011-04-18 Chong Yidong <cyd@stupidchicken.com>
27627
27628 * emacs-lisp/tabulated-list.el (tabulated-list-mode): Use a custom
27629 glyphless-char-display table.
27630 (tabulated-list-glyphless-char-display): New var.
27631
27632 2011-04-18 Sam Steingold <sds@gnu.org>
27633
27634 * vc/add-log.el (change-log-font-lock-keywords): Add "Thanks to"
27635 to acknowledgments.
27636
27637 2011-04-17 Glenn Morris <rgm@gnu.org>
27638
27639 * calendar/diary-lib.el (diary-sexp-entry):
27640 * calendar/holidays.el (holiday-sexp):
27641 Set debug-on-error rather than the removed stack-trace-on-error.
27642
27643 2011-04-16 Glenn Morris <rgm@gnu.org>
27644
27645 * progmodes/f90.el: Use lexical-binding.
27646 (f90-get-correct-indent): Remove unnecessary local variable `cont'.
27647
27648 2011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
27649
27650 * mail/sendmail.el (mail-mode-map): Use completion-at-point.
27651 (mail-mode): Setup mailalias completion here instead.
27652 * mail/mailalias.el: Use lexical-binding.
27653 (pattern, mailalias-done): Declare dynamic.
27654 (mail-completion-at-point-function): New function, from mail-complete.
27655 (mail-complete): Use it.
27656 (mail-completion-expand): New function.
27657 (mail-get-names): Use it.
27658 (mail-directory, mail-directory-process, mail-directory-stream):
27659 Don't use `pattern' for lexically bound arg.
27660
27661 * emacs-lisp/lisp-mode.el (eval-defun-2): Use eval-sexp-add-defvars.
27662
27663 * htmlfontify.el (hfy-etags-cmd): Remove inoperant eval-and-compile.
27664 (hfy-e2x-etags-cmd, hfy-etags-cmd-alist-default)
27665 (hfy-etags-cmd-alist): Don't eval-and-compile any more.
27666
27667 * emacs-lisp/bytecomp.el (byte-temp-output-buffer-show)
27668 (byte-save-window-excursion, byte-temp-output-buffer-setup)
27669 (byte-interactive-p): Define them again, for use when inlining
27670 old code.
27671
27672 2011-04-15 Juanma Barranquero <lekktu@gmail.com>
27673
27674 * loadup.el: Use `string-to-number', not `string-to-int'.
27675
27676 2011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
27677
27678 * progmodes/gud.el (gud-gdb): Use completion-at-point instead of
27679 gud-gdb-complete-command.
27680 (gud-gdb-completions): New function, from gud-gdb-complete-command.
27681 (gud-gdb-completion-at-point): New function.
27682 (gud-gdb-completions): Remove.
27683
27684 2011-04-14 Michael Albinus <michael.albinus@gmx.de>
27685
27686 * net/tramp-sh.el (tramp-sh-handle-file-attributes): Handle the case
27687 when the scripts fail. Use `tramp-do-file-attributes-with-ls' then.
27688 (tramp-do-copy-or-rename-file-out-of-band): Do not check any longer
27689 whether `executable-find' is bound.
27690
27691 * net/tramp-smb.el (tramp-smb-handle-copy-file): Fix docstring.
27692
27693 2011-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
27694
27695 * minibuffer.el (completion-in-region-mode-predicate)
27696 (completion-in-region-mode--predicate): New vars.
27697 (completion-in-region, completion-in-region--postch)
27698 (completion-in-region-mode): Use them.
27699 (completion--capf-wrapper): Also return the hook function.
27700 (completion-at-point, completion-help-at-point):
27701 Adjust and provide a predicate.
27702
27703 Preserve arg names for advice of subr and lexical functions (bug#8457).
27704 * help-fns.el (help-function-arglist): Consolidate the subr and
27705 new-byte-code cases. Add argument `preserve-names' to extract names
27706 from the docstring when needed.
27707 * emacs-lisp/advice.el (ad-define-subr-args, ad-undefine-subr-args)
27708 (ad-subr-args-defined-p, ad-get-subr-args, ad-subr-arglist): Remove.
27709 (ad-arglist): Use help-function-arglist's new arg.
27710 (ad-definition-type): Use cond.
27711
27712 2011-04-13 Juanma Barranquero <lekktu@gmail.com>
27713
27714 * autorevert.el (auto-revert-handler):
27715 Bind `remote-file-name-inhibit-cache', not `tramp-cache-inhibit-cache',
27716 which was removed in 2010-10-02T13:21:43Z!michael.albinus@gmx.de.
27717 Don't quote lambda.
27718
27719 * image-mode.el (image-transform-set-scale):
27720 Fix change in 2011-04-09T20:28:01Z!cyd@stupidchicken.com.
27721
27722 2011-04-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
27723
27724 * net/network-stream.el (network-stream-open-starttls): Only do
27725 opportunistic STARTTLS upgrades if we have built-in GnuTLS support.
27726 Upgrades via gnutls-cli are too slow to be done opportunistically.
27727
27728 2011-04-12 Juanma Barranquero <lekktu@gmail.com>
27729
27730 * dframe.el (dframe-current-frame): Remove spurious quote.
27731
27732 2011-04-12 Glenn Morris <rgm@gnu.org>
27733
27734 * calendar/cal-tex.el (cal-tex-end-document):
27735 Try to automatically use latin1 input if needed.
27736
27737 * calendar/cal-hebrew.el (diary-hebrew-rosh-hodesh):
27738 Don't try to cons a mark onto an empty element.
27739
27740 2011-04-11 Leo Liu <sdl.web@gmail.com>
27741
27742 * ido.el (ido-buffer-internal): Allow method 'kill for virtual
27743 buffers.
27744 (ido-kill-buffer-at-head): Support killing virtual buffers.
27745
27746 2011-04-10 Chong Yidong <cyd@stupidchicken.com>
27747
27748 * minibuffer.el (completion-show-inline-help): New var.
27749 (completion--do-completion, minibuffer-complete)
27750 (minibuffer-force-complete, minibuffer-complete-word):
27751 Inhibit minibuffer messages if completion-show-inline-help is nil.
27752
27753 * icomplete.el (icomplete-mode): Bind completion-show-inline-help
27754 to avoid interference from inline help (Bug#5849).
27755
27756 2011-04-10 Leo Liu <sdl.web@gmail.com>
27757
27758 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
27759 Fix typo.
27760
27761 2011-04-09 Chong Yidong <cyd@stupidchicken.com>
27762
27763 * image-mode.el (image-toggle-display-image): Signal an error if
27764 not in Image mode.
27765 (image-transform-mode, image-transform-resize)
27766 (image-transform-set-rotation): Doc fix.
27767 (image-transform-set-resize): Delete.
27768 (image-transform-set-scale, image-transform-fit-to-height)
27769 (image-transform-fit-to-width): Handle image-toggle-display-image
27770 and image-transform-resize directly.
27771
27772 2011-04-08 Sho Nakatani <lay.sakura@gmail.com>
27773
27774 * doc-view.el (doc-view-fit-width-to-window)
27775 (doc-view-fit-height-to-window, doc-view-fit-page-to-window):
27776 New functions for fitting the shown image to the Emacs window size.
27777 (doc-view-mode-map): Add bindings for the new functions.
27778
27779 2011-04-08 Juanma Barranquero <lekktu@gmail.com>
27780
27781 * vc/vc-annotate.el (vc-annotate-show-log-revision-at-line):
27782 Fix typo in docstring.
27783
27784 2011-04-08 Eli Zaretskii <eliz@gnu.org>
27785
27786 * files.el (file-size-human-readable): Produce one digit after
27787 decimal, like "ls -lh" does.
27788
27789 * ls-lisp.el (ls-lisp-format-file-size): Allow for 7 characters in
27790 the file size representation.
27791
27792 * simple.el (list-processes): If async subprocesses are not
27793 available, error out with a clear error message.
27794
27795 2011-04-08 Chong Yidong <cyd@stupidchicken.com>
27796
27797 * help.el (help-form-show): New function, to be called from C.
27798 Put help-form output in a buffer named differently than *Help*.
27799
27800 2011-04-08 Eli Zaretskii <eliz@gnu.org>
27801
27802 * files.el (file-size-human-readable): New function.
27803
27804 * ls-lisp.el (ls-lisp-format-file-size): Use it, instead of
27805 computing the representation inline. Don't require `cl'.
27806
27807 2011-04-08 Glenn Morris <rgm@gnu.org>
27808
27809 * man.el (Man-page-header-regexp): Solaris < 2.6 no longer supported.
27810
27811 * net/browse-url.el (browse-url-firefox):
27812 Test system-type, not system-configuration.
27813
27814 * vc/log-edit.el (log-edit-empty-buffer-p): New function.
27815 (log-edit-insert-cvs-template, log-edit-insert-cvs-rcstemplate):
27816 Use log-edit-empty-buffer-p. (Bug#7598)
27817
27818 * net/rlogin.el (rlogin-process-connection-type): Simplify.
27819 (rlogin-mode-map): Initialize in the defvar.
27820 (rlogin): Use ignore-errors.
27821
27822 * replace.el (occur-mode-map): Some fixes for menu items.
27823
27824 2011-04-07 Aaron S. Hawley <aaron.s.hawley@gmail.com>
27825
27826 * play/morse.el (denato-region): Handle varying case. (Bug#8386)
27827
27828 2011-04-06 Chong Yidong <cyd@stupidchicken.com>
27829
27830 * emacs-lisp/cconv.el (cconv--analyse-use): Ignore "ignored" when
27831 issuing unused warnings.
27832
27833 * emacs-lisp/tabulated-list.el (tabulated-list-print): Use lambda
27834 macro directly.
27835
27836 * simple.el: Lisp reimplement of list-processes. Based on an
27837 earlier reimplementation by Leo Liu, but using tabulated-list.el.
27838 (process-menu-mode): New major mode.
27839 (list-processes--refresh, list-processes):
27840 (process-menu-visit-buffer): New functions.
27841
27842 * files.el (save-buffers-kill-emacs): Don't assume any return
27843 value of list-processes, which is undocumented anyway.
27844
27845 2011-04-06 Chong Yidong <cyd@stupidchicken.com>
27846
27847 * emacs-lisp/tabulated-list.el: New file.
27848
27849 * emacs-lisp/package.el: Use Tabulated List mode.
27850 (package-menu-mode-map): Inherit from tabulated-list-mode-map.
27851 (package-menu-mode): Derive from tabulated-list-mode. Set up the
27852 table format using Tabulated List mode variables.
27853 (package--push): New macro, replacing package-list-maybe-add.
27854 (package-menu--generate): Use package--push. Renamed from
27855 package--generate-package-list.
27856 (package-menu-refresh, list-packages): Use it.
27857 (package-menu--print-info): Rename from package-print-package.
27858 Return insertion data instead of inserting it directly.
27859 (package-menu-describe-package, package-menu-execute):
27860 Use tabulated-list-get-id.
27861 (package-menu-mark-delete, package-menu-mark-install)
27862 (package-menu-mark-unmark, package-menu-backup-unmark)
27863 (package-menu-mark-obsolete-for-deletion):
27864 Use tabulated-list-put-tag.
27865 (package--list-packages, package-menu-revert)
27866 (package-menu-get-package, package-menu-get-version)
27867 (package-menu-sort-by-column): Functions deleted.
27868 (package-menu-package-list, package-menu-sort-key): Vars deleted.
27869 (package-menu--status-predicate, package-menu--version-predicate)
27870 (package-menu--name-predicate)
27871 (package-menu--description-predicate): Handle arguments in the
27872 Tabulated List format.
27873 (package-list-packages-no-fetch): Call list-packages.
27874
27875 2011-04-06 Juanma Barranquero <lekktu@gmail.com>
27876
27877 * files.el (after-find-file-from-revert-buffer): Remove variable.
27878 (after-find-file): Don't bind it.
27879 (revert-buffer-in-progress-p): New variable.
27880 (revert-buffer): Bind it.
27881 Pass nil for `after-find-file-from-revert-buffer'.
27882
27883 * saveplace.el (save-place-find-file-hook): Use new variable
27884 `rever-buffer-in-progress-p', not `after-find-file-from-revert-buffer'.
27885
27886 2011-04-06 Glenn Morris <rgm@gnu.org>
27887
27888 * Makefile.in (AUTOGEN_VCS): New variable.
27889 (autoloads): Use $AUTOGEN_VCS.
27890
27891 * calendar/cal-move.el (calendar-scroll-toolkit-scroll): New function.
27892 * calendar/calendar.el (calendar-mode-map):
27893 Check for toolkit scroll bars. (Bug#8305)
27894
27895 2011-04-05 Chong Yidong <cyd@stupidchicken.com>
27896
27897 * minibuffer.el (completion-in-region--postch)
27898 (completion-in-region-mode): Remove unnecessary messages.
27899
27900 2011-04-05 Juanma Barranquero <lekktu@gmail.com>
27901
27902 * font-lock.el (font-lock-refresh-defaults):
27903 Don't bind `hi-lock--inhibit-font-lock-hook', removed in
27904 2010-10-09T04:09:19Z!cyd@stupidchicken.com and 2010-10-11T23:57:49Z!lekktu@gmail.com (2010-10-12).
27905
27906 * info.el (Info-directory-list, Info-read-node-name-2)
27907 (Info-split-parameter-string): Doc fixes.
27908 (Info-virtual-nodes): Reflow docstring.
27909 (Info-find-file, Info-directory-toc-nodes, Info-history-toc-nodes)
27910 (Info-apropos-toc-nodes, info-finder, Info-get-token)
27911 (Info-find-emacs-command-nodes, Info-speedbar-key-map):
27912 Fix typos in docstrings.
27913 (Info-revert-buffer-function, Info-search, Info-isearch-pop-state)
27914 (Info-speedbar-hierarchy-buttons, Info-speedbar-goto-node)
27915 (Info-speedbar-buttons, Info-desktop-buffer-misc-data)
27916 (Info-restore-desktop-buffer): Mark unused parameters.
27917 (Info-directory-find-file, Info-directory-find-node)
27918 (Info-history-find-file, Info-history-find-node, Info-toc-find-node)
27919 (Info-virtual-index-find-node, Info-apropos-find-file)
27920 (Info-apropos-find-node, Info-finder-find-file, Info-finder-find-node):
27921 Mark unused parameters; fix typos in docstrings.
27922 (Info-virtual-index): Remove unused local variable `nodename'.
27923
27924 2011-04-05 Deniz Dogan <deniz@dogan.se>
27925
27926 * net/rcirc.el: Update my e-mail address.
27927 (rcirc-mode-map): Remove M-o binding.
27928
27929 2011-04-05 Chong Yidong <cyd@stupidchicken.com>
27930
27931 * startup.el (command-line): Save the cursor's theme-face
27932 directly, instead of using face-override-spec.
27933
27934 * custom.el (load-theme): Minor optimization in assigning faces.
27935
27936 2011-04-04 Juanma Barranquero <lekktu@gmail.com>
27937
27938 * help-fns.el (describe-variable): Complete all variables having
27939 documentation, including keywords.
27940 http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00112.html
27941
27942 2011-04-04 Juanma Barranquero <lekktu@gmail.com>
27943
27944 Convert to lexical-binding.
27945
27946 * bs.el (bs-refresh, bs-sort-buffer-interns-are-last)
27947 (bs--get-marked-string, bs--get-modified-string)
27948 (bs--get-readonly-string, bs--get-size-string, bs--get-name)
27949 (bs--get-mode-name, bs--get-file-name): Mark unused arguments.
27950 (bs--configuration-name-for-prefix-arg): Rename argument PREFIX-ARG.
27951
27952 * ehelp.el (electric-help-execute-extended)
27953 (electric-help-ctrl-x-prefix):
27954 * hexl.el (hexl-revert-buffer-function):
27955 * linum.el (linum-after-change, linum-after-scroll):
27956 * emacs-lisp/re-builder.el (reb-auto-update): Mark unused arguments.
27957
27958 * help-fns.el (help-describe-category-set): Remove unused ERR variable.
27959
27960 2011-04-04 Daiki Ueno <ueno@unixuser.org>
27961
27962 * epa-dired.el:
27963 * epa-mail.el:
27964 * epa-hook.el:
27965 * epa-file.el:
27966 * epa.el:
27967 * epg.el: Use lexical binding.
27968
27969 2011-04-03 Chong Yidong <cyd@stupidchicken.com>
27970
27971 * dired-aux.el (dired-create-files): Add docstring (Bug#7970).
27972
27973 * textmodes/flyspell.el (flyspell-word): Recognize default
27974 dictionary case for flyspell-mark-duplications-exceptions.
27975 Use regexp matching for languages.
27976 (flyspell-mark-duplications-exceptions): Add "that" and "had" for
27977 default dictionary (Bug#7926).
27978
27979 2011-04-02 Chong Yidong <cyd@stupidchicken.com>
27980
27981 * emacs-lisp/package.el (package--with-work-buffer):
27982 Recognize https URLs.
27983
27984 * net/network-stream.el: Move from gnus/proto-stream.el.
27985 Change prefix to network-stream throughout.
27986 (open-protocol-stream): Merge into open-network-stream, leaving
27987 open-protocol-stream as an alias. Handle nil BUFFER args.
27988
27989 * subr.el (open-network-stream): Move to net/network-stream.el.
27990
27991 2011-04-02 Glenn Morris <rgm@gnu.org>
27992
27993 * find-dired.el (find-exec-terminator): New option.
27994 (find-ls-option): Test for -ls support.
27995 (find-ls-subdir-switches): Test for -b in find-ls-option.
27996 (find-dired, find-grep-dired): Doc fixes.
27997 (find-dired): Use find-exec-terminator.
27998
27999 * find-dired.el (find-ls-option, find-ls-subdir-switches)
28000 (find-grep-options): Do not autoload these defcustoms, remove purecopy.
28001 (find-name-arg): Remove purecopy.
28002
28003 * progmodes/grep.el (grep-find-use-xargs): Doc fix.
28004 (grep-compute-defaults): Check for `-exec COMMAND +' support.
28005 Set grep-find-use-xargs, grep-find-command, and grep-find-template
28006 accordingly. Don't add the null-device if not needed.
28007
28008 * files.el (save-some-buffers): Doc fix.
28009
28010 2011-04-02 Eli Zaretskii <eliz@gnu.org>
28011
28012 * makefile.w32-in (EMACS): Default to ../src/$(BLD)/emacs.exe.
28013
28014 2011-04-01 Juanma Barranquero <lekktu@gmail.com>
28015
28016 * progmodes/idlwave.el (idlwave-one-key-select, idlwave-list-abbrevs):
28017 Use `dolist' rather than `mapcar'.
28018
28019 2011-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
28020
28021 Add lexical binding.
28022
28023 * subr.el (apply-partially): Use new closures rather than CL.
28024 (--dolist-tail--, --dotimes-limit--): Don't declare dynamic.
28025 (dolist, dotimes): Use slightly different expansion for lexical code.
28026 (functionp): Move to C.
28027 (letrec): New macro.
28028 (with-wrapper-hook): Use it and apply-partially instead of CL.
28029 (eval-after-load): Preserve lexical-binding.
28030 (save-window-excursion, with-output-to-temp-buffer): Turn them
28031 into macros.
28032
28033 * simple.el (with-wrapper-hook, apply-partially): Move to subr.el.
28034
28035 * help-fns.el (help-split-fundoc): Return nil if there's nothing else
28036 than the arglist.
28037 (help-add-fundoc-usage): Don't add `Not documented'.
28038 (help-function-arglist): Handle closures, subroutines, and new
28039 byte-code-functions.
28040 (help-make-usage): Remove leading underscores.
28041 (describe-function-1): Handle closures.
28042 (describe-variable): Use special-variable-p for completion.
28043
28044 * files.el (lexical-binding): Declare safe.
28045
28046 * emacs-lisp/pcase.el: Don't use destructuring-bind.
28047 (pcase--memoize): Rename from pcase-memoize. Change weakness.
28048 (pcase): Add `let' pattern.
28049 Change memoization so it actually works.
28050 (pcase-mutually-exclusive-predicates): Add byte-code-function-p.
28051 (pcase--u1) <guard, pred>: Fix possible shadowing problem.
28052 <let>: New case.
28053
28054 * emacs-lisp/macroexp.el: Use lexical binding.
28055 (macroexpand-all-1): Check obsolete macros. Expand compiler-macros.
28056 Don't convert ' to #' without checking that it's indeed quoting
28057 a lambda.
28058
28059 * emacs-lisp/lisp-mode.el (eval-last-sexp-1):
28060 Use eval-sexp-add-defvars.
28061 (eval-sexp-add-defvars): New fun.
28062
28063 * emacs-lisp/float-sup.el (pi): Don't declare as dynamically bound.
28064
28065 * emacs-lisp/eieio.el (byte-compile-file-form-defmethod):
28066 Don't autoload.
28067 (eieio-defgeneric-form-primary-only-one): Use `byte-compile' rather
28068 than the internal `byte-compile-lambda'.
28069 (defmethod): Don't hide code under quotes.
28070 (eieio-defmethod): New `code' argument.
28071
28072 * emacs-lisp/eieio-comp.el: Remove.
28073
28074 * emacs-lisp/edebug.el (edebug-eval-defun)
28075 (edebug-eval-top-level-form): Use eval-sexp-add-defvars.
28076 (edebug-toggle): Avoid `eval'.
28077
28078 * emacs-lisp/disass.el (disassemble-internal): Handle new
28079 `closure' objects.
28080 (disassemble-1): Handle new byte codes.
28081
28082 * emacs-lisp/cl.el (pushnew): Silence warning.
28083
28084 * emacs-lisp/cl-macs.el (cl-byte-compile-block)
28085 (cl-byte-compile-throw): Remove.
28086 (cl-block-wrapper, cl-block-throw): Use compiler-macros instead.
28087
28088 * emacs-lisp/cl-extra.el (cl-macroexpand-all): Properly quote CL
28089 closures.
28090
28091 * emacs-lisp/cconv.el: New file.
28092
28093 * emacs-lisp/bytecomp.el: Use lexical binding instead of
28094 a "bytecomp-" prefix. Macroexpand everything as a separate phase.
28095 (byte-compile-initial-macro-environment):
28096 Handle declare-function here.
28097 (byte-compile--lexical-environment): New var.
28098 (byte-stack-ref, byte-stack-set, byte-discardN)
28099 (byte-discardN-preserve-tos): New lap codes.
28100 (byte-interactive-p): Don't use any more.
28101 (byte-compile-push-bytecodes, byte-compile-push-bytecode-const2):
28102 New macros.
28103 (byte-compile-lapcode): Use them and handle new lap codes.
28104 (byte-compile-obsolete): Remove.
28105 (byte-compile-arglist-signature): Handle new byte-code arg"lists".
28106 (byte-compile-arglist-warn): Check late def of inlinable funs.
28107 (byte-compile-cl-warn): Don't silence warnings for compiler-macros
28108 since they should have been expanded by now.
28109 (byte-compile--outbuffer): Rename from bytecomp-outbuffer.
28110 (byte-compile-from-buffer): Remove unused second arg.
28111 (byte-compile-preprocess): New function.
28112 (byte-compile-toplevel-file-form): New function to distinguish
28113 file-form calls from outside from file-form calls from hunk-handlers.
28114 (byte-compile-file-form): Simplify.
28115 (byte-compile-file-form-defsubst): Remove.
28116 (byte-compile-file-form-defmumble): Simplify now that
28117 byte-compile-lambda always returns a byte-code-function.
28118 (byte-compile): Preprocess.
28119 (byte-compile-byte-code-maker, byte-compile-byte-code-unmake):
28120 Remove, not used any more.
28121 (byte-compile-arglist-vars, byte-compile-make-lambda-lexenv)
28122 (byte-compile-make-args-desc): New funs.
28123 (byte-compile-lambda): Handle lexical functions. Always return
28124 a byte-code-function.
28125 (byte-compile-reserved-constants): New var, to make up room for
28126 closed-over variables.
28127 (byte-compile-constants-vector): Obey it.
28128 (byte-compile-top-level): New args `lexenv' and `reserved-csts'.
28129 (byte-compile-macroexpand-declare-function): New function.
28130 (byte-compile-form): Call byte-compile-unfold-bcf to inline immediate
28131 byte-code-functions.
28132 (byte-compile-form): Check obsolescence here.
28133 (byte-compile-inline-lapcode, byte-compile-unfold-bcf): New functions.
28134 (byte-compile-variable-ref): Remove.
28135 (byte-compile-dynamic-variable-op): New fun.
28136 (byte-compile-dynamic-variable-bind, byte-compile-variable-ref)
28137 (byte-compile-variable-set): New funs.
28138 (byte-compile-discard): Add 2 args.
28139 (byte-compile-stack-ref, byte-compile-stack-set)
28140 (byte-compile-make-closure, byte-compile-get-closed-var): New funs.
28141 (byte-compile-funarg, byte-compile-funarg-2): Remove, handled in
28142 macroexpand-all instead.
28143 (byte-compile-quote-form): Remove.
28144 (byte-compile-push-binding-init, byte-compile-not-lexical-var-p)
28145 (byte-compile-bind, byte-compile-unbind): New funs.
28146 (byte-compile-let): Handle let* and lexical binding.
28147 (byte-compile-let*): Remove.
28148 (byte-compile-catch, byte-compile-unwind-protect)
28149 (byte-compile-track-mouse, byte-compile-condition-case):
28150 Handle a new :fun-body form, used for lexical scoping.
28151 (byte-compile-save-window-excursion)
28152 (byte-compile-with-output-to-temp-buffer): Remove.
28153 (byte-compile-defun): Simplify.
28154 (byte-compile-stack-adjustment): New fun.
28155 (byte-compile-out): Use it.
28156 (byte-compile-refresh-preloaded): Don't reload byte-compiler files.
28157
28158 * emacs-lisp/byte-run.el (make-obsolete): Don't set the `byte-compile'
28159 handler any more.
28160
28161 * emacs-lisp/byte-opt.el: Use lexical binding.
28162 (byte-inline-lapcode): Remove (to bytecomp).
28163 (byte-compile-inline-expand): Pay attention to inlining to/from
28164 lexically bound code.
28165 (byte-compile-unfold-lambda): Don't handle byte-code-functions
28166 any more.
28167 (byte-optimize-form-code-walker): Don't handle save-window-excursion
28168 any more and don't call compiler-macros.
28169 (byte-compile-splice-in-already-compiled-code): Remove.
28170 (byte-code): Don't inline any more.
28171 (disassemble-offset): Receive `bytes' as argument rather than via
28172 dynamic scoping.
28173 (byte-compile-tag-number): Declare before first use.
28174 (byte-decompile-bytecode-1): Handle new byte-codes, don't change
28175 `return' even if make-spliceable.
28176 (byte-compile-side-effect-and-error-free-ops): Add stack-ref, remove
28177 obsolete interactive-p.
28178 (byte-optimize-lapcode): Optimize new lap-codes.
28179 Don't trip up on new form of `byte-constant' lap code.
28180
28181 * emacs-lisp/autoload.el (make-autoload): Don't burp on trivial macros.
28182
28183 * emacs-lisp/advice.el (ad-arglist): Use help-function-arglist.
28184
28185 * custom.el (custom-initialize-default, custom-declare-variable):
28186 Use `defvar'.
28187
28188 * Makefile.in (BIG_STACK_DEPTH, BIG_STACK_OPTS, BYTE_COMPILE_FLAGS):
28189 New variables.
28190 (compile-onefile, .el.elc, compile-calc, recompile): Use them.
28191 (COMPILE_FIRST): Add macroexp and cconv.
28192 * makefile.w32-in: Mirror changes in Makefile.in.
28193
28194 * vc/cvs-status.el:
28195 * vc/diff-mode.el:
28196 * vc/log-edit.el:
28197 * vc/log-view.el:
28198 * vc/smerge-mode.el:
28199 * textmodes/bibtex-style.el:
28200 * textmodes/css-mode.el:
28201 * startup.el:
28202 * uniquify.el:
28203 * minibuffer.el:
28204 * newcomment.el:
28205 * reveal.el:
28206 * server.el:
28207 * mpc.el:
28208 * emacs-lisp/smie.el:
28209 * doc-view.el:
28210 * dired.el:
28211 * abbrev.el: Use lexical binding.
28212
28213 2011-04-01 Eli Zaretskii <eliz@gnu.org>
28214
28215 * info.el (info-display-manual): New function.
28216
28217 2011-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
28218
28219 * loadup.el: Load minibuffer after loaddefs, to use define-minor-mode.
28220
28221 2011-03-31 Tassilo Horn <tassilo@member.fsf.org>
28222
28223 * net/rcirc.el (rcirc-handler-001): Only authenticate, if there's
28224 an entry for that server in rcirc-authinfo. (Bug#8385)
28225
28226 2011-03-31 Glenn Morris <rgm@gnu.org>
28227
28228 * progmodes/f90.el (f90-find-tag-default): Handle multiple `%'.
28229
28230 * generic-x.el (etc-fstab-generic-mode): Add ext4, sysfs keywords.
28231
28232 2011-03-30 Christoph Scholtes <cschol2112@googlemail.com>
28233
28234 * progmodes/python.el (python-default-interpreter)
28235 (python-python-command-args, python-jython-command-args)
28236 (python-which-shell, python-which-args, python-which-bufname)
28237 (python-file-queue, python-comint-output-filter-function)
28238 (python-toggle-shells, python-shell): Remove obsolete defcustoms,
28239 variables and functions.
28240
28241 2011-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
28242
28243 * minibuffer.el (completion-table-dynamic): Optimize `boundaries'.
28244 (completion-in-region-mode): New minor mode.
28245 (completion-in-region): Use it.
28246 (completion-in-region--data, completion-in-region-mode-map): New vars.
28247 (completion-in-region--postch): New function.
28248 (completion--capf-misbehave-funs, completion--capf-safe-funs):
28249 New vars.
28250 (completion--capf-wrapper): New function.
28251 (completion-at-point): Use it to track well-behavedness of
28252 hook functions.
28253 (completion-help-at-point): New command.
28254
28255 2011-03-30 Jason Merrill <jason@redhat.com> (tiny change)
28256
28257 * vc/add-log.el (add-change-log-entry): Don't use whitespace
28258 syntax class to search for whitespace on a single line
28259 (Message-ID: <4D938140.4030905@redhat.com>).
28260
28261 2011-03-30 Leo Liu <sdl.web@gmail.com>
28262
28263 * abbrev.el (abbrev-edit-save-to-file, abbrev-edit-save-buffer):
28264 New commands.
28265 (edit-abbrevs-map): Bind them here.
28266 (write-abbrev-file): New optinal arg VERBOSE. (Bug#5937)
28267
28268 2011-03-29 Ken Manheimer <ken.manheimer@gmail.com>
28269
28270 * allout.el (allout-hide-by-annotation, allout-flag-region):
28271 Reduce possibility of overlay leakage by making them volatile.
28272
28273 * allout-widgets.el (allout-widgets-tally): Define as nil so the
28274 hash is not shared between buffers. Mode initialization is
28275 responsible for giving it a useful starting value.
28276 (allout-item-span): Reduce possibility of overlay leakage by
28277 making them volatile.
28278 (allout-widgets-count-buttons-in-region): Add diagnostic function
28279 for tracking down button overlay leaks.
28280
28281 2011-03-29 Leo Liu <sdl.web@gmail.com>
28282
28283 * ido.el (ido-read-internal): Use the default history var
28284 minibuffer-history if no HISTORY is specified.
28285
28286 2011-03-28 Brian T. Sniffen <bsniffen@akamai.com> (tiny change)
28287
28288 * net/imap.el (imap-shell-open, imap-process-connection-type):
28289 Use imap-process-connection-type for 'shell' streams as well as
28290 Kerberos, SSL, other subprocesses.
28291
28292 2011-03-28 Leo Liu <sdl.web@gmail.com>
28293
28294 * abbrev.el (abbrev-table-empty-p): New function.
28295 (prepare-abbrev-list-buffer): Place empty abbrev tables after
28296 nonempty ones. (Bug#5937)
28297
28298 2011-03-27 Jan Djärv <jan.h.d@swipnet.se>
28299
28300 * cus-start.el (all): Add boolean ns-auto-hide-menu-bar.
28301
28302 2011-03-27 Leo Liu <sdl.web@gmail.com>
28303
28304 * ansi-color.el (ansi-color-names-vector): Allow cons cell value
28305 for foreground and background colors.
28306 (ansi-color-make-color-map): Adapt.
28307
28308 2011-03-25 Leo Liu <sdl.web@gmail.com>
28309
28310 * midnight.el (midnight-time-float): Remove. Note it calculates
28311 the microsecond component incorrectly and seconds-to-time does the
28312 same job.
28313 Remove redundant (require 'timer).
28314
28315 * ido.el (ido-read-internal): Simplify with read-from-minibuffer.
28316 (ido-completions): Remove unused arguments. (Bug#8329)
28317
28318 2011-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
28319
28320 * minibuffer.el (completion--flush-all-sorted-completions):
28321 Remove itself from hook.
28322 (completion-at-point): Let the functions perform the completion
28323 immediately and return nil or t.
28324 * comint.el (comint-dynamic-complete-functions): Now identical to
28325 completion-at-point-functions.
28326 (comint-dynamic-list-input-ring): Remove unused var `index'.
28327 (comint--match-partial-filename, comint--unquote&expand-filename):
28328 New funs, split from comint-match-partial-filename.
28329 (comint-dynamic-complete): Use completion-at-point.
28330 (comint-dynamic-complete-filename): Use comint--match-partial-filename.
28331
28332 2011-03-24 Drew Adams <drew.adams@oracle.com>
28333
28334 * thingatpt.el: Support `defun'.
28335
28336 2011-03-23 Leo Liu <sdl.web@gmail.com>
28337
28338 * abbrevlist.el: Move to obsolete/abbrevlist.el.
28339
28340 * help-mode.el (help-mode-finish): Tweak regexp.
28341
28342 2011-03-23 Glenn Morris <rgm@gnu.org>
28343
28344 * eshell/esh-opt.el (eshell-eval-using-options):
28345 Do not bind unused local variable `eshell-option-stub'.
28346
28347 * progmodes/gdb-mi.el (gdb): Fix typo in previous change.
28348
28349 2011-03-22 Juanma Barranquero <lekktu@gmail.com>
28350
28351 * emacs-lisp/derived.el (define-derived-mode): Wrap declaration of
28352 keymap variable in `with-no-warnings' to avoid a warning when the
28353 keymap has been already `defconst'ed.
28354
28355 2011-03-22 Leo Liu <sdl.web@gmail.com>
28356
28357 * abbrev.el (write-abbrev-file): Use utf-8 for writing if it can
28358 encode all chars in abbrevs; otherwise use emacs-mule or
28359 utf-8-emacs. (Bug#8308)
28360
28361 2011-03-22 Juanma Barranquero <lekktu@gmail.com>
28362
28363 * simple.el (backward-delete-char-untabify):
28364 Avoid warning about using `delete-backward-char'.
28365
28366 * image.el (image-type-file-name-regexps): Make it variable.
28367 `imagemagick-register-types' modifies it, and the user may want
28368 to add new extensions for known image types.
28369 (imagemagick-register-types): Throw error if not using ImageMagick.
28370
28371 2011-03-22 Leo Liu <sdl.web@gmail.com>
28372
28373 * net/rcirc.el (rcirc-completion-at-point): Return nil if point is
28374 located before rcirc-prompt-end-marker.
28375 (rcirc-complete): Error if point is not after rcirc prompt.
28376 Handle the case when table is nil.
28377 (rcirc-user-authenticated): Define to fix compiler warning.
28378
28379 2011-03-22 Chong Yidong <cyd@stupidchicken.com>
28380
28381 * custom.el (custom--inhibit-theme-enable): Make it affect only
28382 custom-theme-set-variables and custom-theme-set-faces.
28383 (provide-theme): Ignore custom--inhibit-theme-enable.
28384 (load-theme): Enable the theme explicitly if NO-ENABLE is non-nil.
28385 (custom-enabling-themes): Delete variable.
28386 (enable-theme): Accept only loaded themes as arguments.
28387 Ignore the special custom-enabled-themes variable.
28388 (custom-enabled-themes): Forbid themes from setting this.
28389 Eliminate use of custom-enabling-themes.
28390 (custom-push-theme): Quote "changed" custom var entry.
28391
28392 2011-03-21 Leo Liu <sdl.web@gmail.com>
28393
28394 * ido.el (ido-read-internal): Add ido-selected to history instead
28395 of user input.
28396
28397 2011-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
28398
28399 * subr.el (deferred-action-list, deferred-action-function):
28400 Mark obsolete.
28401
28402 2011-03-21 Leo Liu <sdl.web@gmail.com>
28403
28404 * vc/log-view.el: Remove (require 'wid-edit), not needed after the
28405 change on 2011-02-13 (bug#8309).
28406
28407 * minibuffer.el (read-file-name-function): Change default value.
28408 (read-file-name--defaults): Rename from read-file-name-defaults.
28409 (read-file-name-default): Rename from read-file-name.
28410 (read-file-name): Call read-file-name-function.
28411
28412 2011-03-21 Glenn Morris <rgm@gnu.org>
28413
28414 * eshell/esh-opt.el (eshell-eval-using-options, eshell-process-args):
28415 Doc fixes.
28416
28417 2011-03-21 Chong Yidong <cyd@stupidchicken.com>
28418
28419 * cus-theme.el: Add missing provide statement.
28420 (customize-create-theme): Extract theme value correctly.
28421 (custom-theme-visit-theme): Autoload.
28422 (customize-create-theme): Prompt before inserting default faces.
28423
28424 2011-03-20 Jay Belanger <jay.p.belanger@gmail.com>
28425
28426 * calc/calc-menu.el (calc-units-menu): Add entries for logarithmic
28427 units and musical notes.
28428
28429 2011-03-20 Leo Liu <sdl.web@gmail.com>
28430
28431 * ido.el (ido-read-internal): Use completing-read-default.
28432 (ido-completing-read): Fix compatibility with completing-read.
28433
28434 2011-03-20 Christian Ohler <ohler@gnu.org>
28435
28436 * emacs-lisp/ert.el (ert-run-tests-batch): Remove unused variable.
28437 (ert-delete-all-tests): Use `called-interactively-p' rather than
28438 `interactive-p'.
28439 (ert--make-xrefs-region): Respect END.
28440
28441 2011-03-19 Chong Yidong <cyd@stupidchicken.com>
28442
28443 * dired-aux.el (dired-create-directory): Signal an error if the
28444 directory already exists (Bug#8246).
28445
28446 * facemenu.el (list-colors-display): Call list-faces-display
28447 inside with-help-window.
28448 (list-colors-print): Use display property to align the final
28449 column, instead of checking window-width.
28450
28451 2011-03-19 Eli Zaretskii <eliz@gnu.org>
28452
28453 * vc/emerge.el (emerge-metachars): Separate value for ms-dos and
28454 windows-nt systems.
28455 (emerge-protect-metachars): Quote correctly for ms-dos and
28456 windows-nt systems.
28457
28458 2011-03-19 Ralph Schleicher <rs@ralph-schleicher.de>
28459
28460 * info.el (info-initialize): Replace all uses of `:' with
28461 path-separator for compatibility with non-Unix systems.
28462 Cache quoting of path-separator. (Bug#8258)
28463
28464 2011-03-19 Juanma Barranquero <lekktu@gmail.com>
28465
28466 * avoid.el (mouse-avoidance-mode, mouse-avoidance-nudge-dist)
28467 (mouse-avoidance-threshold, mouse-avoidance-banish-destination)
28468 (mouse-avoidance-mode): Fix typos in docstrings.
28469
28470 2011-03-19 Chong Yidong <cyd@stupidchicken.com>
28471
28472 * startup.el (package-subdirectory-regexp): Move from package.el.
28473 Omit \\` and \\', and let callers add them.
28474
28475 * emacs-lisp/package.el (package-strip-version)
28476 (package-load-all-descriptors): Add \\` and \\' to
28477 package-subdirectory-regexp before using it.
28478 (package-untar-buffer): New arg DIR; ensure that file untars only
28479 into this expected directory. Remove superfluous delete-region.
28480 (package-unpack): Caller changed.
28481 (package-tar-file-info): Use package-subdirectory-regexp.
28482
28483 2011-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
28484
28485 * vc/diff-mode.el (diff-mode-map): Shadow problematic bindings from
28486 diff-mode-shared-map (bug#8284).
28487 (diff-mode-shared-map): Re-introduce some bindings that were problematic.
28488
28489 2011-03-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
28490
28491 * calendar/time-date.el (format-seconds): Use assoc instead of
28492 assoc-string, since assoc-string doesn't exist in XEmacs.
28493
28494 2011-03-17 Juanma Barranquero <lekktu@gmail.com>
28495
28496 * custom.el (custom-known-themes): Reflow docstring.
28497 (custom-theme-load-path): Fix typo in docstring.
28498 (load-theme): Fix typo in error message.
28499 (custom-available-themes, custom-variable-theme-value):
28500 Use `let', not `let*'.
28501
28502 2011-03-17 Jay Belanger <jay.p.belanger@gmail.com>
28503
28504 * calc/README: Mention inclusion of musical notes.
28505
28506 * calc/calc-units.el (calc-lu-quant): Rename from
28507 `calc-logunits-quantity'.
28508 (calcFunc-lupquant): Rename from `calcFunc-powerquant'.
28509 (calcFunc-lufquant): Rename from `calcFunc-fieldquant'.
28510 (calc-db): Rename from `calc-dblevel'.
28511 (calcFunc-dbpower): Rename from `calcFunc-dbpowerlevel'.
28512 (calcFunc-dbfield): Rename from `calcFunc-dbfieldlevel'.
28513 (calc-np): Rename from `calc-nplevel'.
28514 (calcFunc-nppower): Rename from `calcFunc-nppowerlevel'.
28515 (calcFunc-npfield): Rename from `calcFunc-npfieldlevel'.
28516 (calc-lu-plus): Rename from `calc-logunits-add'.
28517 (calcFunc-lupadd): Rename from `calcFunc-lupoweradd'.
28518 (calcFunc-lufadd): Rename from `calcFunc-lufieldadd'.
28519 (calc-lu-minus): Rename from `calc-logunits-sub'.
28520 (calcFunc-lupsub): Rename from `calcFunc-lupowersub'.
28521 (calcFunc-lufsub): Rename from `calcFunc-lufieldsub'.
28522 (calc-lu-times): Rename from `calc-logunits-mul'.
28523 (calcFunc-lupmul): Rename from `calcFunc-lupowermul'.
28524 (calcFunc-lufmul): Rename from `calcFunc-lufieldmul'.
28525 (calc-lu-divide): Rename from `calc-logunits-div'.
28526 (calcFunc-lupdiv): Rename from `calcFunc-lupowerdiv'.
28527 (calcFunc-lufdiv): Rename from `calcFunc-lufielddiv'.
28528
28529 * calc/calc-ext.el (calc-init-extensions): Update the names of the
28530 functions being autoloaded.
28531
28532 * calc/calc.el (calc-lu-power-reference): Rename from
28533 `calc-logunits-power-reference'.
28534 (calc-lu-field-reference): Rename from
28535 `calc-logunits-field-reference'.
28536
28537 * calc/calc-help.el (calc-l-prefix-help):
28538 Mention musical note functions.
28539
28540 2011-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
28541
28542 * minibuffer.el (completion-all-sorted-completions):
28543 Use :completion-cycle-penalty text property if present.
28544
28545 2011-03-16 Ken Manheimer <ken.manheimer@gmail.com>
28546
28547 * allout.el (allout-yank-processing): Adjust for new rebulleting
28548 regime so bullet being yanked is used without prompting the user
28549 for a choice.
28550
28551 2011-03-16 Juanma Barranquero <lekktu@gmail.com>
28552
28553 * startup.el (command-line): Warn the user that _emacs is deprecated.
28554
28555 2011-03-16 Juanma Barranquero <lekktu@gmail.com>
28556
28557 * progmodes/delphi.el (delphi-search-path, delphi-indent-level)
28558 (delphi-verbose, delphi-comment-face, delphi-string-face)
28559 (delphi-keyword-face, delphi-ignore-changes, delphi-indent-line)
28560 (delphi-mode-abbrev-table, delphi-debug-buffer, delphi-tab)
28561 (delphi-find-unit, delphi-find-current-xdef, delphi-fill-comment)
28562 (delphi-new-comment-line, delphi-font-lock-defaults)
28563 (delphi-debug-mode-map, delphi-mode-syntax-table, delphi-mode):
28564 Fix typos in docstrings.
28565
28566 2011-03-15 Ken Manheimer <ken.manheimer@gmail.com>
28567
28568 * allout.el (allout-make-topic-prefix, allout-rebullet-heading):
28569 Invert the roles of character and string values for INSTEAD, so a
28570 string is used for the more common case of a defaulting prompt.
28571
28572 2011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
28573
28574 * progmodes/ruby-mode.el (ruby-backward-sexp):
28575 * progmodes/ebrowse.el (ebrowse-draw-file-member-info):
28576 * play/gamegrid.el (gamegrid-make-face):
28577 * play/bubbles.el (bubbles--grid-width, bubbles--grid-height)
28578 (bubbles--colors, bubbles--shift-mode, bubbles--initialize-images):
28579 * notifications.el (notifications-notify):
28580 * net/xesam.el (xesam-search-engines):
28581 * net/quickurl.el (quickurl-list-insert):
28582 * vc/vc-hg.el (vc-hg-dir-printer): Fix use of case.
28583
28584 2011-03-15 Chong Yidong <cyd@stupidchicken.com>
28585
28586 * startup.el (command-line): Update package subdirectory regexp.
28587
28588 2011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
28589
28590 * allout.el (allout-abbreviate-flattened-numbering)
28591 (allout-mode-deactivate-hook): Fix up obsolescence "date".
28592
28593 * subr.el (read-char-choice): Only show the cursor after the prompt,
28594 not after the answer.
28595
28596 2011-03-15 Kevin Ryde <user42@zip.com.au>
28597
28598 * help-fns.el (variable-at-point): Skip leading quotes, if any
28599 (bug#8253).
28600
28601 2011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
28602
28603 * emacs-lisp/bytecomp.el (byte-compile-save-excursion): Change the
28604 warning message.
28605
28606 2011-03-14 Michael Albinus <michael.albinus@gmx.de>
28607
28608 * shell.el (shell): When called interactively, offer to change the
28609 shell file name on remote hosts.
28610
28611 2011-03-13 Teodor Zlatanov <tzz@lifelogs.com>
28612
28613 * net/ldap.el (ldap-search-internal): Add `auth-source-search'
28614 integration for LDAP parameters. The host, base, user or binddn,
28615 and secret tokens can be specified in a netrc file, for instance.
28616 This is optional because an `auth-source' parameter must be
28617 specified in the search attributes.
28618
28619 2011-03-13 Juanma Barranquero <lekktu@gmail.com>
28620
28621 * help.el (describe-mode): Link to the mode's definition (bug#8185).
28622
28623 2011-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
28624
28625 * ebuff-menu.el (electric-buffer-menu-mode-map): Move initialization
28626 into declaration. Remove redundant and harmful binding.
28627
28628 2011-03-12 Eli Zaretskii <eliz@gnu.org>
28629
28630 * files.el (file-ownership-preserved-p): Pass `integer' as an
28631 explicit 2nd argument to `file-attributes'. If the file's owner
28632 is the Administrators group on Windows, and the current user is
28633 Administrator, consider that a match.
28634
28635 * server.el (server-ensure-safe-dir): Consider server directory
28636 safe on MS-Windows if its owner is the Administrators group while
28637 the current Emacs user is Administrator. Use `=' to compare
28638 numerical UIDs, since they could be integers or floats.
28639
28640 2011-03-12 Juanma Barranquero <lekktu@gmail.com>
28641
28642 * vc/vc-bzr.el (vc-bzr-state): Handle bzr 2.3.0 (follow-up to bug#8170).
28643
28644 2011-03-12 Michael Albinus <michael.albinus@gmx.de>
28645
28646 Sync with Tramp 2.2.1.
28647
28648 * net/tramp-sh.el (tramp-methods): Exchange "%k" marker with options.
28649
28650 * net/trampver.el: Update release number.
28651
28652 2011-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
28653
28654 * progmodes/compile.el (compilation--previous-directory): Fix up
28655 various nil/dead-marker mismatches (bug#8014).
28656 (compilation-directory-properties, compilation-error-properties):
28657 Don't call it at a position past the one we're about to change.
28658
28659 * emacs-lisp/bytecomp.el (byte-compile-make-obsolete-variable):
28660 Disable obsolescence warnings in the file that declares it.
28661
28662 2011-03-11 Ken Manheimer <ken.manheimer@gmail.com>
28663
28664 * allout-widgets.el (allout-widgets-tally):
28665 Initialize allout-widgets-tally as a hash table rather than nil to
28666 prevent mode-line redisplay warnings. Also, clarify the module
28667 description and fix a comment typo.
28668
28669 2011-03-11 Juanma Barranquero <lekktu@gmail.com>
28670
28671 * help-fns.el (describe-variable): Don't complete keywords.
28672 Suggested by Teodor Zlatanov <tzz@lifelogs.com>.
28673
28674 2011-03-10 Chong Yidong <cyd@stupidchicken.com>
28675
28676 * emacs-lisp/package.el (package-version-join): Impose a standard
28677 string representation for pre/alpha/beta version lists.
28678 (package-unpack-single): Standardize the directory name by passing
28679 it through package-version-join.
28680 (package-strip-rcs-id): Accept any version string that does not
28681 signal an error in version-to-list.
28682
28683 2011-03-10 Michael Albinus <michael.albinus@gmx.de>
28684
28685 * simple.el (delete-trailing-whitespace): Return nil for the
28686 benefit of `write-file-functions'.
28687
28688 2011-03-10 Glenn Morris <rgm@gnu.org>
28689
28690 * vc/vc-hg.el (vc-hg-pull, vc-hg-merge-branch): Use vc-hg-program.
28691
28692 * vc/vc-git.el (vc-git-program): New option.
28693 (vc-git-branches, vc-git-pull, vc-git-merge-branch, vc-git-command)
28694 (vc-git--call): Use it.
28695
28696 * eshell/esh-util.el (eshell-condition-case): Doc fix.
28697
28698 * cus-edit.el (Custom-newline): If no button at point, look
28699 for a subgroup button at start-of-line. (Bug#2298)
28700
28701 * mail/rmail.el (rmail-msgend, rmail-msgbeg): Doc fixes.
28702
28703 2011-03-10 Julien Danjou <julien@danjou.info>
28704
28705 * avoid.el (mouse-avoidance-ignore-p): Do not move the cursor if
28706 `cursor-type' is nil.
28707
28708 2011-03-09 Jay Belanger <jay.p.belanger@gmail.com>
28709
28710 * calc/calc.el (calc-mode-map): Don't bind "C-_" to `calc-missing-key'.
28711
28712 2011-03-09 Ken Manheimer <ken.manheimer@gmail.com>
28713
28714 * allout.el: Change so yank of distinctive-bullet items
28715 preserves the existing header prefix, rebulleting it if necessary,
28716 rather than replacing it. This is necessary for proper operation
28717 of cooperative addons like allout-widgets.
28718 (allout-make-topic-prefix, allout-rebullet-heading):
28719 Change SOLICIT arg to INSTEAD, and interpret additionally a string
28720 value as alternate bullet to be used, instead of prompting the user
28721 for a bullet character.
28722
28723 2011-03-09 Michael Albinus <michael.albinus@gmx.de>
28724
28725 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
28726 Do not use `tramp-file-name-port', because this returns also
28727 `tramp-default-port'.
28728
28729 2011-03-09 Deniz Dogan <deniz.a.m.dogan@gmail.com>
28730
28731 * net/rcirc.el (rcirc-handler-001): Remove useless
28732 with-rcirc-process-buffer.
28733 (rcirc-check-auth-status): Swap arguments to string-match.
28734
28735 2011-03-09 Glenn Morris <rgm@gnu.org>
28736
28737 * shell.el (shell-mode):
28738 Set comint-input-ring-size from HISTSIZE. (Bug#7889)
28739
28740 * progmodes/gdb-mi.el (gdb): Improve 2010-12-08 change.
28741 Check for GDBHISTFILE, HISTSIZE, etc. (Bug#7889)
28742
28743 2011-03-08 Chong Yidong <cyd@stupidchicken.com>
28744
28745 * emacs-lisp/package.el (package-refresh-contents)
28746 (package-menu-execute): Use condition-case-no-debug.
28747
28748 2011-03-08 Michael Albinus <michael.albinus@gmx.de>
28749
28750 * simple.el (shell-command-to-string): Use `process-file'.
28751
28752 * emacs-lisp/package.el (package-tar-file-info): Handle also
28753 remote files.
28754
28755 * emacs-lisp/package-x.el (package-upload-buffer-internal):
28756 Use `equal' for upload base check.
28757
28758 2011-03-08 Arni Magnusson <arnima@hafro.is> (tiny change)
28759
28760 * textmodes/texinfo.el (texinfo-environments):
28761 Add deftypecv, deftypeivar, deftypemethod, deftypeop, html. (Bug#2783)
28762
28763 2011-03-08 Glenn Morris <rgm@gnu.org>
28764
28765 * cus-start.el (cursor-in-non-selected-windows):
28766 Fix :set quoting oddness. (Bug#8192)
28767
28768 * font-lock.el (lisp-font-lock-keywords-1): Don't highlight `)'
28769 in some setf expressions. (Bug#2159)
28770
28771 2011-03-08 Chong Yidong <cyd@stupidchicken.com>
28772
28773 * custom.el (custom-available-themes): Return themes in
28774 alphabetical order.
28775
28776 See ChangeLog.15 for earlier changes.
28777
28778 ;; Local Variables:
28779 ;; coding: utf-8
28780 ;; End:
28781
28782 Copyright (C) 2011-2013 Free Software Foundation, Inc.
28783
28784 This file is part of GNU Emacs.
28785
28786 GNU Emacs is free software: you can redistribute it and/or modify
28787 it under the terms of the GNU General Public License as published by
28788 the Free Software Foundation, either version 3 of the License, or
28789 (at your option) any later version.
28790
28791 GNU Emacs is distributed in the hope that it will be useful,
28792 but WITHOUT ANY WARRANTY; without even the implied warranty of
28793 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
28794 GNU General Public License for more details.
28795
28796 You should have received a copy of the GNU General Public License
28797 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.