* lisp/progmodes/prog-mode.el: Fix bug#14595.
[bpt/emacs.git] / lisp / ChangeLog
1 2013-06-16 Juanma Barranquero <lekktu@gmail.com>
2
3 * progmodes/prog-mode.el (prog--prettify-font-lock-compose-symbol):
4 Save relevant match data before calling `syntax-ppss' (bug#14595).
5
6 2013-06-15 Juri Linkov <juri@jurta.org>
7
8 * files-x.el (modify-file-local-variable-prop-line): Add local
9 variables to the end of the existing comment on the first line.
10 Use `file-auto-mode-skip' to skip interpreter magic line,
11 and also skip XML declaration.
12
13 2013-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
14
15 * startup.el (package--builtin-versions): New var.
16 (package-subdirectory-regexp): Remove.
17 (package--description-file): Hard code its value instead.
18
19 * emacs-lisp/package.el: Don't activate packages older than builtin.
20 (package-obsolete-list): Rename from package-obsolete-alist, and make
21 it into a simple list of package-desc.
22 (package-strip-version): Remove.
23 (package-built-in-p): Use package--builtin-versions.
24 (package-mark-obsolete): Simplify.
25 (package-process-define-package): Mark it obsolete if older than the
26 builtin version.
27 (package-handle-response): Use line-end-position.
28 (package-read-archive-contents, package--download-one-archive):
29 Simplify.
30 (package--add-to-archive-contents): Skip if older than the builtin or
31 installed version.
32 (package-menu-describe-package): Fix last change.
33 (package-list-unversioned): New var.
34 (package-menu--generate): Use it.
35
36 * emacs-lisp/autoload.el: Manage package--builtin-versions.
37 (autoload--insert-text, autoload--insert-cookie-text): New functions.
38 (autoload-builtin-package-versions): New variable.
39 (autoload-generate-file-autoloads): Use them.
40 Remove the list of autoloaded functions/macros from the
41 (autoload...) comments.
42
43 * Makefile.in (autoloads): Set autoload-builtin-package-versions.
44
45 2013-06-15 Eli Zaretskii <eliz@gnu.org>
46
47 * simple.el (line-move-partial): Don't jump to the next screen
48 line as soon as it becomes visible. Instead, continue enlarging
49 the vscroll until the portion of a tall screen line that's left on
50 display is about the height of the frame's default font.
51 (Bug#14567)
52
53 2013-06-15 Glenn Morris <rgm@gnu.org>
54
55 * vc/vc-dispatcher.el (vc-compilation-mode): Avoid making
56 compilation-error-regexp-alist void, or local while let-bound.
57
58 * progmodes/make-mode.el (makefile-mode-syntax-table):
59 Treat "=" as punctuation. (Bug#14614)
60
61 2013-06-15 Juanma Barranquero <lekktu@gmail.com>
62
63 * help-fns.el (describe-variable):
64 Add extra line for permanent-local variables.
65
66 2013-06-15 Simen Heggestøyl <simenheg@ifi.uio.no> (tiny change)
67
68 * progmodes/scheme.el (scheme-font-lock-keywords-2):
69 Add export, import, library. (Bug#9164)
70 (library): Set indent function.
71
72 2013-06-14 Glenn Morris <rgm@gnu.org>
73
74 * term/xterm.el (xterm--query):
75 Stop after first matching handler. (Bug#14615)
76
77 2013-06-14 Ivan Kanis <ivan@kanis.fr>
78
79 Add support for dired in saveplace.
80 * dired.el (dired-initial-position-hook): New variable.
81 (dired-initial-position): Call hook to place cursor position.
82 * saveplace.el (save-place-to-alist): Add dired position.
83 (save-place-dired-hook): New function.
84
85 2013-06-14 Stefan Monnier <monnier@iro.umontreal.ca>
86
87 * subr.el (eval-after-load, set-temporary-overlay-map): Use indirection
88 through a symbol rather than letrec.
89
90 * emacs-lisp/package.el: Don't recompute dir. Use pkg-descs more.
91 (package-desc): Add `dir' field.
92 (package-desc-full-name): New function.
93 (package-load-descriptor): Combine the two arguments. Don't use `load'.
94 (package-maybe-load-descriptor): Remove.
95 (package-load-all-descriptors): Just call package-load-descriptor.
96 (package--disabled-p): New function.
97 (package-desc-vers, package-desc-doc): Remove aliases.
98 (package--dir): Remove function.
99 (package-activate): Check if a package is disabled.
100 (package-process-define-package): New function, extracted from
101 define-package.
102 (define-package): Turn into a place holder.
103 (package-unpack-single, package-tar-file-info):
104 Use package--description-file.
105 (package-compute-transaction): Use package--disabled-p.
106 (package-download-transaction): Don't call
107 package-maybe-load-descriptor since they're all loaded anyway.
108 (package-install): Change argument to be a pkg-desc.
109 (package-delete): Use a single pkg-desc argument.
110 (describe-package-1): Use package-desc-dir instead of package--dir.
111 Use package-desc property instead of package-symbol.
112 (package-install-button-action): Adjust accordingly.
113 (package--push): Rewrite.
114 (package-menu--print-info): Adjust accordingly. Change the ID format
115 to be a pkg-desc.
116 (package-menu-describe-package, package-menu-get-status)
117 (package-menu--find-upgrades, package-menu-mark-upgrades)
118 (package-menu-execute, package-menu--name-predicate):
119 Adjust accordingly.
120 * startup.el (package--description-file): New function.
121 (command-line): Use it.
122 * emacs-lisp/package-x.el (package-upload-buffer-internal):
123 Use package-desc-version.
124
125 * emacs-lisp/bytecomp.el (byte-compile-force-lexical-warnings): New var.
126 (byte-compile-preprocess): Use it.
127 (byte-compile-file-form-defalias): Try a bit harder to use macros we
128 can't quite recognize.
129 (byte-compile-add-to-list): Remove.
130 * emacs-lisp/cconv.el (cconv-warnings-only): New function.
131 (cconv-closure-convert): Add assertion.
132
133 * emacs-lisp/map-ynp.el: Use lexical-binding.
134 (map-y-or-n-p): Remove unused vars `tail' and `object'.
135 Factor out some repeated code.
136
137 2013-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
138
139 * subr.el (with-eval-after-load): New macro.
140 (eval-after-load): Allow form to be a function.
141 take advantage of lexical-binding.
142 (do-after-load-evaluation): Use dolist and adjust to new format.
143 * simple.el (bad-packages-alist): Use dolist and with-eval-after-load.
144
145 2013-06-13 Juri Linkov <juri@jurta.org>
146
147 * replace.el (perform-replace): Display "symbol " and other search
148 modes from `isearch-message-prefix' in the *Help* buffer.
149
150 * isearch.el (isearch-query-replace): Add " symbol" and other
151 possible search modes from `isearch-message-prefix' to the prompt.
152 (isearch-occur): Use `with-isearch-suspended' to not exit Isearch
153 when reading a regexp to collect.
154
155 2013-06-13 Juri Linkov <juri@jurta.org>
156
157 * isearch.el (word-search-regexp): Match whitespace if the search
158 string begins or ends in whitespace. The LAX arg is applied to
159 both ends of the search string. Use `regexp-quote' and explicit
160 \< and \> instead of \b. Use \` and \' instead of ^ and $.
161 (isearch-symbol-regexp): Sync with `word-search-regexp' where word
162 boundaries are replaced with symbol boundaries, and characters
163 between symbols match non-word non-symbol syntax. (Bug#14602)
164
165 2013-06-13 Juri Linkov <juri@jurta.org>
166
167 * isearch.el (isearch-del-char): Don't exceed the length of
168 `isearch-string' by the prefix arg. (Bug#14563)
169
170 2013-06-13 Juri Linkov <juri@jurta.org>
171
172 * isearch.el (isearch-yank-word, isearch-yank-line)
173 (isearch-char-by-name, isearch-quote-char)
174 (isearch-printing-char, isearch-process-search-char):
175 Add optional count prefix arg. (Bug#14563)
176
177 * international/isearch-x.el
178 (isearch-process-search-multibyte-characters):
179 Add optional count prefix arg.
180
181 2013-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
182
183 * subr.el (internal-push-keymap, internal-pop-keymap): New functions.
184 (set-temporary-overlay-map): Use them (bug#14095); and take advantage of
185 lexical-binding.
186
187 2013-06-13 Vitalie Spinu <spinuvit@gmail.com>
188
189 * subr.el (set-temporary-overlay-map): Add on-exit argument.
190
191 2013-06-13 Glenn Morris <rgm@gnu.org>
192
193 * startup.el (tty-handle-args):
194 Don't just discard "--" and anything after. (Bug#14608)
195
196 * emacs-lisp/lisp.el (forward-sexp, backward-sexp): Doc fixes.
197
198 2013-06-13 Michael Albinus <michael.albinus@gmx.de>
199
200 Implement changes in Secret Service API. Make it backward compatible.
201 * net/secrets.el (secrets-struct-secret-content-type): New defonst.
202 (secrets-create-item): Use it. Prefix properties with interface.
203
204 2013-06-13 Michael Hoffman <9qobl2n02@sneakemail.com> (tiny change)
205
206 * term.el (term-suppress-hard-newline): New option. (Bug#12017)
207 (term-emulate-terminal): Respect term-suppress-hard-newline.
208
209 2013-06-13 E Sabof <esabof@gmail.com> (tiny change)
210
211 * image-dired.el (image-dired-dired-toggle-marked-thumbs):
212 Only remove a `thumb-file' overlay. (Bug#14548)
213
214 2013-06-12 Grégoire Jadi <daimrod@gmail.com>
215
216 * mail/reporter.el (reporter-submit-bug-report):
217 Handle missing package-name. (Bug#14600)
218
219 2013-06-12 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
220
221 * textmodes/reftex-cite.el (reftex-cite-regexp-hist)
222 (reftex-citation-prompt, reftex-default-bibliography)
223 (reftex-bib-or-thebib, reftex-get-bibfile-list)
224 (reftex-pop-to-bibtex-entry, reftex-extract-bib-entries)
225 (reftex-bib-sort-author, reftex-bib-sort-year)
226 (reftex-bib-sort-year-reverse, reftex-get-crossref-alist)
227 (reftex-extract-bib-entries-from-thebibliography)
228 (reftex-get-bibkey-default, reftex-get-bib-names)
229 (reftex-parse-bibtex-entry, reftex-get-bib-field)
230 (reftex-format-bib-entry, reftex-parse-bibitem)
231 (reftex-format-bibitem, reftex-do-citation)
232 (reftex-figure-out-cite-format, reftex-offer-bib-menu)
233 (reftex-restrict-bib-matches, reftex-extract-bib-file)
234 (reftex-insert-bib-matches, reftex-format-citation)
235 (reftex-make-cite-echo-string, reftex-bibtex-selection-callback)
236 (reftex-create-bibtex-file): Add docstrings, mostly by converting
237 existing comments into docstrings.
238
239 2013-06-12 Xue Fuqiao <xfq.free@gmail.com>
240
241 * ibuf-ext.el (ibuffer-mark-help-buffers): Doc fix.
242
243 2013-06-12 Andreas Schwab <schwab@suse.de>
244
245 * international/mule.el (auto-coding-alist): Use utf-8-emacs-unix
246 for auto-save files.
247
248 2013-06-12 Glenn Morris <rgm@gnu.org>
249
250 * ido.el (ido-delete-ignored-files): Remove.
251 (ido-wide-find-dirs-or-files, ido-make-file-list-1):
252 Go back to calling ido-ignore-item-p directly.
253
254 2013-06-12 Eyal Lotem <eyal.lotem@gmail.com> (tiny change)
255
256 * ido.el (ido-wide-find-dirs-or-files): Respect ido-case-fold.
257
258 * ido.el (ido-delete-ignored-files): New function,
259 split from ido-make-file-list-1.
260 (ido-wide-find-dirs-or-files): Maybe ignore files. (Bug#13003)
261 (ido-make-file-list-1): Use ido-delete-ignored-files.
262
263 2013-06-12 Leo Liu <sdl.web@gmail.com>
264
265 * progmodes/octave.el (inferior-octave-startup)
266 (inferior-octave-completion-table)
267 (inferior-octave-track-window-width-change)
268 (octave-eldoc-function-signatures, octave-help)
269 (octave-find-definition): Use single quoted strings.
270 (inferior-octave-startup-args): Change default value.
271 (inferior-octave-startup): Do not hard code "-i" and
272 "--no-line-editing".
273 (inferior-octave-resync-dirs): Add optional arg NOERROR.
274 (inferior-octave-directory-tracker): Use it.
275 (octave-goto-function-definition): Robustify.
276 (octave-help): Support highlighting operators in 'See also'.
277 (octave-find-definition): Find subfunctions only in Octave mode.
278
279 2013-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
280
281 * help-fns.el (help-fns--compiler-macro): If the handler function is
282 named, then put a link to it.
283 * help-mode.el (help-function-cmacro): Adjust regexp for cl-lib names.
284 * emacs-lisp/cl-macs.el (cl--compiler-macro-typep): New function.
285 (cl-typep): Use it.
286 (cl-eval-when): Simplify debug spec.
287 (cl-define-compiler-macro): Use eval-and-compile. Give a name to the
288 compiler-macro function instead of setting `compiler-macro-file'.
289
290 2013-06-12 Xue Fuqiao <xfq.free@gmail.com>
291
292 * vc/vc-cvs.el (vc-cvs-stay-local): Doc fix.
293 * vc/vc-hooks.el (vc-stay-local): Doc fix.
294
295 2013-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
296 Daniel Hackney <dan@haxney.org>
297
298 First part of Daniel Hackney's patch to package.el.
299 * emacs-lisp/package.el: Use defstruct.
300 (package-desc): New, main struct.
301 (package--bi-desc, package--ac-desc): New structs, used to describe the
302 format in external files.
303 (package-desc-vers): Replace with package-desc-version accessor.
304 (package-desc-doc): Replace with package-desc-summary accessor.
305 (package-activate-1): Remove `package' arg since the pkg-vec now
306 includes the name.
307 (define-package): Use package-desc-from-define.
308 (package-unpack-single): Change file-name arg to be a symbol.
309 (package--add-to-archive-contents): Use package-desc-create and new
310 accessor functions to package--ac-desc.
311 (package-buffer-info, package-tar-file-info): Return a package-desc.
312 (package-install-from-buffer): Remove `type' argument. Change pkg-info
313 arg to be a package-desc.
314 (package-install-file): Adjust accordingly. Use \' to match EOS.
315 (package--from-builtin): New function.
316 (describe-package-1, package-menu--generate): Use it.
317 (package--make-autoloads-and-compile): Change name arg to be a symbol.
318 (package-generate-autoloads): Idem and return the name of the file.
319 * emacs-lisp/package-x.el (package-upload-buffer-internal):
320 Change pkg-info arg to be a package-desc.
321 Use package-make-ac-desc.
322 (package-upload-file): Use \' to match EOS.
323 * finder.el (finder-compile-keywords): Use package-make-builtin.
324
325 2013-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
326
327 * vc/vc.el (vc-deduce-fileset): Change error message.
328 (vc-read-backend): New function.
329 (vc-next-action): Use it.
330
331 * subr.el (function-arity): Remove (mistakenly added) (bug#14590).
332
333 * progmodes/prolog.el (prolog-make-keywords-regexp): Remove.
334 (prolog-font-lock-keywords): Use regexp-opt instead.
335 Don't manually highlight strings.
336 (prolog-mode-variables): Simplify comment-start-skip.
337 (prolog-consult-compile): Use display-buffer. Remove unused old-filter.
338
339 * emacs-lisp/generic.el (generic--normalise-comments)
340 (generic-set-comment-syntax, generic-set-comment-vars): New functions.
341 (generic-mode-set-comments): Use them.
342 (generic-bracket-support): Use setq-local.
343 (generic-make-keywords-list): Declare obsolete.
344
345 2013-06-11 Glenn Morris <rgm@gnu.org>
346
347 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
348 Prettify after setting font-lock-defaults. (Bug#14574)
349
350 2013-06-11 Juanma Barranquero <lekktu@gmail.com>
351
352 * replace.el (query-replace, occur-read-regexp-defaults-function)
353 (replace-search):
354 * subr.el (declare-function, number-sequence, local-set-key)
355 (substitute-key-definition, locate-user-emacs-file)
356 (with-silent-modifications, split-string, eval-after-load):
357 Fix typos, remove unneeded backslashes and reflow some docstrings.
358
359 2013-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
360
361 * international/mule-conf.el (file-coding-system-alist): Use utf-8 as
362 default for Elisp files.
363
364 2013-06-11 Glenn Morris <rgm@gnu.org>
365
366 * vc/log-view.el (log-view-mode-map): Inherit from special-mode-map,
367 although define-derived-mode was doing this anyway. (Bug#14583)
368
369 2013-06-10 Juanma Barranquero <lekktu@gmail.com>
370
371 * allout.el (allout-encryption-plaintext-sanitization-regexps):
372 Fix make-variable-buffer-local call to refer to the correct variable.
373
374 2013-06-10 Aidan Gauland <aidalgol@amuri.net>
375
376 * eshell/em-term.el (eshell-visual-commands)
377 (eshell-visual-subcommands, eshell-visual-options):
378 Add summary line to docstrings. Add cross-references.
379
380 2013-06-10 Glenn Morris <rgm@gnu.org>
381
382 * epa.el (epa-read-file-name): New function. (Bug#14510)
383 (epa-decrypt-file): Make plain-file optional. Use epa-read-file-name.
384
385 2013-06-09 Aidan Gauland <aidalgol@amuri.net>
386
387 * eshell/em-term.el (eshell-visual-command-p): Fix bug that caused
388 output redirection to be ignored with visual commands.
389
390 2013-06-09 Aidan Gauland <aidalgol@amuri.net>
391
392 * eshell/em-term.el (eshell-visual-command-p): New function.
393 (eshell-term-initialize): Move long lambda to separate function
394 eshell-visual-command-p.
395 * eshell/em-dirs.el (eshell-dirs-initialise):
396 * eshell/em-script.el (eshell-script-initialize):
397 Add missing #' to lambda.
398
399 2013-06-08 Leo Liu <sdl.web@gmail.com>
400
401 * progmodes/octave.el (octave-add-log-current-defun): New function.
402 (octave-mode): Set add-log-current-defun-function.
403 (octave-goto-function-definition): Do not move point if not found.
404 (octave-find-definition): Enhance to try subfunctions first.
405
406 2013-06-08 Glenn Morris <rgm@gnu.org>
407
408 * emacs-lisp/bytecomp.el (byte-compile-char-before)
409 (byte-compile-backward-char, byte-compile-backward-word):
410 Improve previous change, to handle non-explicit nil.
411
412 2013-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
413
414 * emacs-lisp/smie.el: Improve show-paren-mode behavior.
415 (smie--opener/closer-at-point): New function.
416 (smie--matching-block-data): Use it. Don't match from right after an
417 opener or right before a closer. Obey smie-blink-matching-inners.
418 Don't signal a mismatch for repeated inners like "switch..case..case".
419
420 2013-06-07 Leo Liu <sdl.web@gmail.com>
421
422 * progmodes/octave.el (octave-mode): Set comment-use-global-state
423 to t. (Bug#14303)
424 (octave-function-header-regexp): Fix. (Bug#14570)
425 (octave-help-mode-finish-hook, octave-help-mode-finish):
426 Remove. Just use temp-buffer-show-hook.
427
428 * newcomment.el (comment-search-backward): Revert last change.
429 (Bug#14434)
430
431 * emacs-lisp/smie.el (smie--matching-block-data): Minor simplification.
432
433 2013-06-07 Eli Zaretskii <eliz@gnu.org>
434
435 * Makefile.in (TAGS TAGS-LISP): Pass the (long) list of *.el files
436 through xargs, to avoid failure due to MS-Windows limitations on
437 command-line length.
438
439 2013-06-06 Glenn Morris <rgm@gnu.org>
440
441 * font-lock.el (lisp-font-lock-keywords-2):
442 Treat user-error like error.
443
444 * emacs-lisp/bytecomp.el (byte-compile-char-before)
445 (byte-compile-backward-char, byte-compile-backward-word):
446 Handle explicit nil arguments. (Bug#14565)
447
448 2013-06-05 Alan Mackenzie <acm@muc.de>
449
450 * isearch.el (isearch-allow-prefix): New user option.
451 (isearch-other-meta-char): Don't exit isearch when a prefix
452 argument is typed whilst `isearch-allow-prefix' is non-nil.
453 (Bug#9706)
454
455 2013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
456
457 * autorevert.el (auto-revert-notify-handler): Use memq.
458 Hide assertion failure.
459
460 * skeleton.el: Use cl-lib.
461 (skeleton-further-elements): Use defvar-local.
462 (skeleton-insert): Use cl-progv.
463
464 2013-06-05 Teodor Zlatanov <tzz@lifelogs.com>
465
466 * progmodes/prog-mode.el (prog-prettify-symbols)
467 (prog-prettify-install): Update docstrings.
468
469 2013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
470
471 * simple.el: Move all the prog-mode code to prog-mode.el.
472 * progmodes/prog-mode.el: New file.
473 * loadup.el: Add prog-mode.el.
474
475 2013-06-05 Teodor Zlatanov <tzz@lifelogs.com>
476
477 * simple.el (prog-prettify-symbols): Add version.
478 (prog-prettify-install): Add convenience function to prettify symbols.
479
480 * progmodes/perl-mode.el (perl--augmented-font-lock-keywords)
481 (perl--augmented-font-lock-keywords-1)
482 (perl--augmented-font-lock-keywords-2, perl-mode): Remove unneeded
483 variables and use it.
484
485 * progmodes/cfengine.el (cfengine3--augmented-font-lock-keywords)
486 (cfengine3-mode): Remove unneeded variable and use it.
487
488 * emacs-lisp/lisp-mode.el (lisp--augmented-font-lock-keywords)
489 (lisp--augmented-font-lock-keywords-1)
490 (lisp--augmented-font-lock-keywords-2, lisp-mode-variables):
491 Remove unneeded variables and use it.
492
493 2013-06-05 João Távora <joaotavora@gmail.com>
494
495 * net/tls.el (open-tls-stream): Remove unneeded buffer contents up
496 to point when opening the connection. (Bug#14380)
497
498 2013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
499
500 * subr.el (load-history-regexp, load-history-filename-element)
501 (eval-after-load, after-load-functions, do-after-load-evaluation)
502 (eval-next-after-load, display-delayed-warnings)
503 (collapse-delayed-warnings, delayed-warnings-hook): Move after the
504 definition of save-match-data.
505 (overriding-local-map): Remove accidental obsolescence declaration.
506
507 * emacs-lisp/edebug.el (edebug-result): Move before first use.
508
509 2013-06-05 Teodor Zlatanov <tzz@lifelogs.com>
510
511 Generalize symbol prettify support to prog-mode and implement it
512 for perl-mode, cfengine3-mode, and emacs-lisp-mode.
513 * simple.el (prog-prettify-symbols-alist, prog-prettify-symbols)
514 (prog--prettify-font-lock-compose-symbol)
515 (prog-prettify-font-lock-symbols-keywords): New variables and
516 functions to support symbol prettification.
517 * emacs-lisp/lisp-mode.el (lisp--augmented-font-lock-keywords)
518 (lisp--augmented-font-lock-keywords-1)
519 (lisp--augmented-font-lock-keywords-2, lisp-mode-variables)
520 (lisp--prettify-symbols-alist): Implement prettify of lambda.
521 * progmodes/cfengine.el (cfengine3--augmented-font-lock-keywords)
522 (cfengine3--prettify-symbols-alist, cfengine3-mode):
523 Implement prettify of -> => :: strings.
524 * progmodes/perl-mode.el (perl-prettify-symbols)
525 (perl--font-lock-compose-symbol)
526 (perl--font-lock-symbols-keywords): Move to prog-mode.
527 (perl--prettify-symbols-alist): Prettify -> => :: strings.
528 (perl-font-lock-keywords-1)
529 (perl-font-lock-keywords-2): Remove explicit prettify support.
530 (perl--augmented-font-lock-keywords)
531 (perl--augmented-font-lock-keywords-1)
532 (perl--augmented-font-lock-keywords-2, perl-mode):
533 Implement prettify support.
534
535 2013-06-05 Leo Liu <sdl.web@gmail.com>
536
537 Re-implement smie matching block highlight using
538 show-paren-data-function. (Bug#14395)
539 * emacs-lisp/smie.el (smie-matching-block-highlight)
540 (smie--highlight-matching-block-overlay)
541 (smie--highlight-matching-block-lastpos)
542 (smie-highlight-matching-block)
543 (smie-highlight-matching-block-mode): Remove.
544 (smie--matching-block-data-cache): New variable.
545 (smie--matching-block-data): New function.
546 (smie-setup): Use smie--matching-block-data for
547 show-paren-data-function.
548
549 * progmodes/octave.el (octave-mode-menu): Fix.
550 (octave-find-definition): Skip garbage lines.
551
552 2013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
553
554 Fix compilation error with simultaneous dynamic+lexical scoping.
555 Add warning when a defvar appears after the first let-binding.
556 * emacs-lisp/bytecomp.el (byte-compile-lexical-variables): New var.
557 (byte-compile-close-variables): Initialize it.
558 (byte-compile--declare-var): New function.
559 (byte-compile-file-form-defvar)
560 (byte-compile-file-form-define-abbrev-table)
561 (byte-compile-file-form-custom-declare-variable): Use it.
562 (byte-compile-make-lambda-lexenv): Change the argument. Simplify.
563 (byte-compile-lambda): Share call to byte-compile-arglist-vars.
564 (byte-compile-bind): Handle dynamic bindings that shadow
565 lexical bindings.
566 (byte-compile-unbind): Make arg non-optional.
567 (byte-compile-let): Simplify.
568 * emacs-lisp/cconv.el (byte-compile-lexical-variables): Declare var.
569 (cconv--analyse-function, cconv-analyse-form): Populate it.
570 Protect byte-compile-bound-variables to limit the scope of defvars.
571 (cconv-analyse-form): Add missing rule for (defvar <foo>).
572 Remove unneeded rule for `declare'.
573
574 * emacs-lisp/cl-macs.el (cl--compiler-macro-adjoin): Use macroexp-let2
575 so as to avoid depending on cl-adjoin at run-time.
576 * emacs-lisp/cl-lib.el (cl-pushnew): Use backquotes.
577
578 * emacs-lisp/macroexp.el (macroexp--compiling-p): New function.
579 (macroexp--warn-and-return): Use it.
580
581 2013-06-05 Leo Liu <sdl.web@gmail.com>
582
583 * eshell/esh-mode.el (eshell-mode): Fix key bindings.
584
585 2013-06-04 Leo Liu <sdl.web@gmail.com>
586
587 * progmodes/compile.el (compile-goto-error): Add optional arg NOMSG.
588 (compilation-auto-jump): Suppress the "Mark set" message to give
589 way to exit message.
590
591 2013-06-04 Alan Mackenzie <acm@muc.de>
592
593 Remove faulty optimisation from indentation calculation.
594 * progmodes/cc-engine.el (c-guess-basic-syntax): Don't calculate
595 search limit based on 2000 characters back from indent-point.
596
597 2013-06-03 Tassilo Horn <tsdh@gnu.org>
598
599 * eshell/em-term.el (cl-lib): Require `cl-lib'.
600
601 2013-06-03 Stefan Monnier <monnier@iro.umontreal.ca>
602
603 * emacs-lisp/lisp.el: Use lexical-binding.
604 (lisp--local-variables-1, lisp--local-variables): New functions.
605 (lisp--local-variables-completion-table): New var.
606 (lisp-completion-at-point): Use it complete let-bound vars.
607
608 * emacs-lisp/lisp-mode.el (eval-sexp-add-defvars): Expand macros
609 eagerly (bug#14422).
610
611 2013-06-03 Michael Albinus <michael.albinus@gmx.de>
612
613 * autorevert.el (auto-revert-notify-enabled)
614 (auto-revert-notify-rm-watch, auto-revert-notify-add-watch)
615 (auto-revert-notify-event-p, auto-revert-notify-event-file-name)
616 (auto-revert-notify-handler): Handle also gfilenotify.
617
618 * subr.el (file-notify-handle-event): New defun. Replacing ...
619 (inotify-event-p, inotify-handle-event, w32notify-handle-event):
620 Remove.
621
622 2013-06-03 Juri Linkov <juri@jurta.org>
623
624 * bindings.el (search-map): Bind `highlight-symbol-at-point' to
625 `M-s h .'. (Bug#14427)
626
627 * hi-lock.el (highlight-symbol-at-point): New alias for the new
628 command `hi-lock-face-symbol-at-point'.
629 (hi-lock-face-symbol-at-point): New command.
630 (hi-lock-map): Bind `highlight-symbol-at-point' to `C-x w .'.
631 (hi-lock-menu): Add `highlight-symbol-at-point'.
632 (hi-lock-mode): Doc fix.
633
634 * isearch.el (isearch-forward-symbol-at-point): New command.
635 (search-map): Bind `isearch-forward-symbol-at-point' to `M-s .'.
636 (isearch-highlight-regexp): Add a regexp which matches
637 words/symbols for word/symbol mode.
638
639 * subr.el (find-tag-default-bounds): New function with the body
640 mostly moved from `find-tag-default'.
641 (find-tag-default): Move most code to `find-tag-default-bounds',
642 call it and apply `buffer-substring-no-properties' afterwards.
643
644 2013-06-03 Tassilo Horn <tsdh@gnu.org>
645
646 * eshell/em-term.el (eshell-term-initialize):
647 Use `cl-intersection' rather than `intersection'.
648
649 2013-06-02 Xue Fuqiao <xfq.free@gmail.com>
650
651 * vc/log-view.el: Doc fix.
652 (log-view-mode-map): Copy keymap from `special-mode-map'.
653
654 2013-06-02 Eric Ludlam <zappo@gnu.org>
655
656 * emacs-lisp/eieio.el (eieio--defalias, eieio-hook)
657 (eieio-error-unsupported-class-tags, eieio-skip-typecheck)
658 (eieio-optimize-primary-methods-flag, eieio-initializing-object)
659 (eieio-unbound, eieio-default-superclass)
660 (eieio--define-field-accessors, method-static, method-before)
661 (method-primary, method-after, method-num-lists)
662 (method-generic-before, method-generic-primary)
663 (method-generic-after, method-num-slots)
664 (eieio-specialized-key-to-generic-key)
665 (eieio--check-type, class-v, class-p)
666 (eieio-class-name, define-obsolete-function-alias)
667 (eieio-class-parents-fast, eieio-class-children-fast)
668 (same-class-fast-p, class-constructor, generic-p)
669 (generic-primary-only-p, generic-primary-only-one-p)
670 (class-option-assoc, class-option, eieio-object-p)
671 (class-abstract-p, class-method-invocation-order)
672 (eieio-defclass-autoload-map, eieio-defclass-autoload)
673 (eieio-class-un-autoload, eieio-defclass)
674 (eieio-eval-default-p, eieio-perform-slot-validation-for-default)
675 (eieio-add-new-slot, eieio-copy-parents-into-subclass)
676 (eieio--defgeneric-init-form, eieio-defgeneric-form)
677 (eieio-defgeneric-reset-generic-form)
678 (eieio-defgeneric-form-primary-only)
679 (eieio-defgeneric-reset-generic-form-primary-only)
680 (eieio-defgeneric-form-primary-only-one)
681 (eieio-defgeneric-reset-generic-form-primary-only-one)
682 (eieio-unbind-method-implementations)
683 (eieio--defmethod, eieio--typep)
684 (eieio-perform-slot-validation, eieio-validate-slot-value)
685 (eieio-validate-class-slot-value, eieio-barf-if-slot-unbound)
686 (eieio-oref, eieio-oref-default, eieio-default-eval-maybe)
687 (eieio-oset, eieio-oset-default, eieio-slot-originating-class-p)
688 (eieio-slot-name-index, eieio-class-slot-name-index)
689 (eieio-set-defaults, eieio-initarg-to-attribute)
690 (eieio-attribute-to-initarg, eieio-c3-candidate)
691 (eieio-c3-merge-lists, eieio-class-precedence-c3)
692 (eieio-class-precedence-dfs, eieio-class-precedence-bfs)
693 (eieio-class-precedence-list, eieio-generic-call-methodname)
694 (eieio-generic-call-arglst, eieio-generic-call-key)
695 (eieio-generic-call-next-method-list)
696 (eieio-pre-method-execution-functions, eieio-generic-call)
697 (eieio-generic-call-primary-only, eieiomt-method-list)
698 (eieiomt-optimizing-obarray, eieiomt-install)
699 (eieiomt-add, eieiomt-next, eieiomt-sym-optimize)
700 (eieio-generic-form, eieio-defmethod, make-obsolete)
701 (eieio-defgeneric, make-obsolete): Move to eieio-core.el
702 (defclass): Remove `eval-and-compile' from macro.
703 (call-next-method, shared-initialize): Instead of using
704 `scoped-class' variable, use new eieio--scoped-class, and
705 eieio--with-scoped-class.
706 (initialize-instance): Rename local variable 'scoped-class' to
707 'this-class' to remove ambiguitity from old global.
708
709 * emacs-lisp/eieio-core.el: New file. Derived from key parts of
710 eieio.el.
711 (eieio--scoped-class-stack): New variable
712 (eieio--scoped-class): New fcn
713 (eieio--with-scoped-class): New scoping macro.
714 (eieio-defclass): Use pushnew instead of add-to-list.
715 (eieio-defgeneric-form-primary-only-one, eieio-oset-default)
716 (eieio-slot-name-index, eieio-set-defaults, eieio-generic-call)
717 (eieio-generic-call-primary-only, eieiomt-add): Instead of using
718 `scoped-class' variable, use new eieio--scoped-class, and
719 eieio--with-scoped-class.
720
721 * emacs-lisp/eieio-base.el (cl-lib): Require during compile.
722
723 2013-06-02 Tassilo Horn <tsdh@gnu.org>
724
725 * eshell/esh-ext.el (eshell-external-command): Pass args to
726 `eshell-find-interpreter'.
727 (eshell-find-interpreter): Add new second parameter ARGS.
728
729 * eshell/em-script.el (eshell-script-initialize): Add second arg
730 to the function added as MATCH to `eshell-interpreter-alist'.
731
732 * eshell/em-dirs.el (eshell-dirs-initialize): Add second arg to
733 the function added as MATCH to `eshell-interpreter-alist'.
734
735 * eshell/em-term.el (eshell-visual-subcommands): New defcustom.
736 (eshell-visual-options): New defcustom.
737 (eshell-escape-control-x): Adapt docstring.
738 (eshell-term-initialize): Test `eshell-visual-subcommands' and
739 `eshell-visual-options' in addition to `eshell-visual-commands'.
740 (eshell-exec-visual): Pass args to `eshell-find-interpreter'.
741
742 2013-06-01 Fabián Ezequiel Gallina <fgallina@gnu.org>
743
744 * progmodes/python.el (python-indent-block-enders): Add break,
745 continue and raise keywords.
746
747 2013-06-01 Glenn Morris <rgm@gnu.org>
748
749 * pcmpl-gnu.el (pcomplete/tar): Check obsolete variable is bound.
750
751 Plain (f)boundp silences compilation warnings since Emacs 22.1.
752 * progmodes/cc-cmds.el (delete-forward-p):
753 * progmodes/cc-defs.el (buffer-syntactic-context-depth):
754 * progmodes/cc-engine.el (buffer-syntactic-context):
755 * progmodes/cc-fonts.el (face-property-instance):
756 * progmodes/cc-mode.el (set-keymap-parents):
757 * progmodes/cc-vars.el (get-char-table): No need for cc-bytecomp-defun.
758 * progmodes/cc-defs.el (c-set-region-active, c-beginning-of-defun-1)
759 * progmodes/cc-mode.el (c-make-inherited-keymap): Use plain fboundp.
760 * progmodes/cc-defs.el (zmacs-region-stays, zmacs-regions)
761 (lookup-syntax-properties): Remove unecessary cc-bytecomp-defvar.
762
763 * progmodes/cc-vars.el (other): Emacs has this widget since
764 at least 21.1, so don't (re)define it.
765
766 * eshell/em-cmpl.el (eshell-cmpl-initialize):
767 Replace the obsolete alias pcomplete-arg-quote-list.
768
769 2013-06-01 Leo Liu <sdl.web@gmail.com>
770
771 * progmodes/octave.el (octave-mode-syntax-table): Give `.'
772 punctuation syntax.
773 (inferior-octave-minimal-columns)
774 (inferior-octave-last-column-width): New variables.
775 (inferior-octave-track-window-width-change): New function.
776 (inferior-octave-mode): Adjust column width so that Octave output,
777 for example from 'ls', can fit into the window nicely.
778
779 2013-05-31 Dmitry Gutov <dgutov@yandex.ru>
780
781 * progmodes/ruby-mode.el (ruby-syntax-expansion-allowed-p):
782 Highlight expansions inside regexp literals.
783
784 2013-05-31 Glenn Morris <rgm@gnu.org>
785
786 * obsolete/sym-comp.el (symbol-complete):
787 Replace obsolete completion-annotate-function.
788
789 * progmodes/cc-vars.el (c-make-macro-with-semi-re): Silence compiler.
790
791 2013-05-31 Dmitry Gutov <dgutov@yandex.ru>
792
793 * progmodes/ruby-mode.el (ruby-syntax-expansion-allowed-p):
794 New function, checks if point is inside a literal that allows
795 expression expansion.
796 (ruby-syntax-propertize-expansion): Use it.
797 (ruby-syntax-propertize-function): Bind `case-fold-search' to nil
798 around the body.
799
800 2013-05-30 Juri Linkov <juri@jurta.org>
801
802 * isearch.el (isearch-mode-map): Bind `isearch-toggle-invisible'
803 to "\M-si".
804 (isearch-invisible): New variable.
805 (isearch-forward): Doc fix.
806 (isearch-mode): Set `isearch-invisible'
807 to the value of `search-invisible'.
808 (isearch-toggle-case-fold): Doc fix.
809 (isearch-toggle-invisible): New command.
810 (isearch-query-replace): Let-bind `search-invisible'
811 to the value of `isearch-invisible'.
812 (isearch-search): Use `isearch-invisible' instead of
813 `search-invisible'. Let-bind `search-invisible'
814 to the value of `isearch-invisible'. (Bug#11378)
815
816 2013-05-30 Juri Linkov <juri@jurta.org>
817
818 * replace.el (perform-replace): Avoid `isearch-range-invisible'
819 call when `query-flag' is nil and `search-invisible' is non-nil.
820 (Bug#11746)
821
822 2013-05-30 Glenn Morris <rgm@gnu.org>
823
824 * progmodes/gdb-mi.el (gdb-wait-for-pending): Fix typo.
825
826 * progmodes/cc-bytecomp.el (cc-bytecomp-noruntime-functions): New.
827 (cc-require): Suppress spurious "noruntime" warnings.
828 (cc-require-when-compile): Use fboundp, for sake of compiler.
829
830 * progmodes/cc-mode.el: Move load of cc-vars before that of
831 cc-langs (which in turn loads cc-vars), to quieten compiler.
832
833 2013-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
834
835 * paren.el: Simplify the code.
836 (show-paren-mode): Always start the timer.
837 (show-paren--idle-timer): Rename from show-paren-idle-timer.
838 (show-paren--overlay, show-paren--overlay-1): Rename from
839 show-paren-overlay and show-paren-overlay-1, and initialize to an
840 overlay rather than to nil.
841 (show-paren-function): Misc cleanup and simplifications.
842
843 2013-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
844
845 * paren.el (show-paren-data-function): New hook.
846 (show-paren--default): New function, extracted from show-paren-function.
847 (show-paren-function): Use show-paren-data-function.
848
849 2013-05-30 Glenn Morris <rgm@gnu.org>
850
851 * ielm.el (ielm-map, ielm-complete-symbol):
852 Use completion-at-point rather than obsolete functions.
853 (inferior-emacs-lisp-mode): Doc fix.
854 Set completion-at-point-functions, rather than
855 comint-dynamic-complete-functions.
856
857 * eshell/em-cmpl.el (eshell-complete-lisp-symbol): New function.
858 (eshell-cmpl-initialize, eshell-complete-parse-arguments):
859 Replace obsolete lisp-complete-symbol with eshell-complete-lisp-symbol.
860
861 * image.el (image-animated-p): Tweak definition.
862
863 * net/rlogin.el (rlogin-program, rlogin-explicit-args): Default to ssh.
864 (rlogin-process-connection-type): Tweak default. Add set-after.
865 (rlogin-host): Doc fix.
866 (rlogin): Tweak prompt.
867 (rlogin-tab-or-complete): Use completion-at-point rather than alias.
868
869 * net/net-utils.el (nslookup-mode-map, ftp-mode-map):
870 * progmodes/tcl.el (inferior-tcl-mode-map):
871 Use completion-at-point rather than obsolete alias.
872
873 * emacs-lisp/eieio.el (eieio-eval-default-p): Move before use.
874
875 * minibuffer.el (read-file-name-completion-ignore-case):
876 Move before completion--in-region, for eager macro expansion.
877
878 2013-05-29 Juri Linkov <juri@jurta.org>
879
880 * replace.el (occur-engine): Rename `globalcount' to `global-lines'
881 for total count of matching lines. Add `global-matches' for total
882 count of matches. Rename `matches' to `lines' for count of
883 matching lines. Add `matches' for count of matches.
884 Rename `lines' to `curr-line' for line count. Rename `prev-lines'
885 to `prev-line' for line number of prev match endpt.
886 Increment `matches' for every match. Print the number of
887 matching lines in the header.
888 (occur-context-lines): Rename `lines' to `curr-line'.
889 Rename `prev-lines' to `prev-line'. (Bug#14017)
890
891 2013-05-29 Juri Linkov <juri@jurta.org>
892
893 * replace.el (perform-replace): Add `skip-read-only-count',
894 `skip-filtered-count', `skip-invisible-count' let-bound to 0.
895 Increment them for corresponding conditions and report the number
896 of skipped occurrences in the final message. (Bug#11746)
897 (query-replace, query-replace-regexp, query-replace-regexp-eval)
898 (replace-string, replace-regexp): Doc fix.
899
900 2013-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
901
902 * emacs-lisp/trace.el (trace--read-args): Provide a default.
903
904 * emacs-lisp/lisp-mode.el (lisp-mode-shared-map): Inherit from
905 prog-mode-map (bug#14504).
906
907 2013-05-29 Leo Liu <sdl.web@gmail.com>
908
909 * progmodes/octave.el (octave-indent-comment): Tweak regexps.
910 (octave-help): Small simplification.
911
912 * emacs-lisp/smie.el (smie-highlight-matching-block): Always turn
913 off the highlight first.
914
915 2013-05-29 Glenn Morris <rgm@gnu.org>
916
917 * progmodes/idlwave.el (idlwave-concatenate-rinfo-lists):
918 Handle idlwave-last-system-routine-info-cons-cell being nil.
919
920 * progmodes/idlwave.el (idlwave-scan-user-lib-files)
921 (idlwave-write-paths): Simplify via with-temp-buffer.
922
923 * emulation/cua-gmrk.el: Also load cua-base, cua-rect at run time.
924 * emulation/cua-rect.el: Also load cua-base at run time.
925
926 * progmodes/cperl-mode.el (imenu-choose-buffer-index)
927 (file-of-tag, etags-snarf-tag, etags-goto-tag-location): Declare.
928 (cperl-imenu-on-info): Require imenu.
929
930 2013-05-28 Alan Mackenzie <acm@muc.de>
931
932 Handle "capitalised keywords" correctly.
933 * progmodes/cc-mode.el (c-after-change): Bind case-fold-search to nil.
934
935 2013-05-28 Aidan Gauland <aidalgol@amuri.net>
936
937 * eshell/em-unix.el: Add -r option to cp.
938
939 2013-05-28 Glenn Morris <rgm@gnu.org>
940
941 * vc/vc-arch.el (vc-exec-after): Declare.
942 (vc-switches): Autoload.
943 * vc/vc-bzr.el: No need to require vc when compiling.
944 (vc-exec-after, vc-set-async-update, vc-default-dir-printer)
945 (vc-resynch-buffer, vc-dir-refresh): Declare.
946 (vc-setup-buffer, vc-switches): Autoload.
947 * vc/vc-cvs.el (vc-exec-after, vc-coding-system-for-diff)
948 (vc-resynch-buffer): Declare.
949 (vc-switches, vc-default-revert, vc-version-backup-file): Autoload.
950 * vc/vc-dir.el (desktop-missing-file-warning): Declare.
951 * vc/vc-git.el (vc-exec-after, vc-set-async-update)
952 (grep-read-regexp, grep-read-files, grep-expand-template)
953 (vc-dir-refresh): Declare.
954 (vc-setup-buffer, vc-switches, vc-resynch-buffer): Autoload.
955 * vc/vc-hg.el (vc-exec-after, vc-set-async-update): Declare.
956 (vc-setup-buffer, vc-switches, vc-do-async-command): Autoload.
957 * vc/vc-mtn.el (vc-exec-after): Declare.
958 (vc-switches): Autoload.
959 * vc/vc-rcs.el (vc-expand-dirs, vc-switches)
960 (vc-tag-precondition, vc-buffer-sync, vc-rename-master): Autoload.
961 (vc-file-tree-walk): Declare.
962 * vc/vc-sccs.el (vc-file-tree-walk): Declare.
963 (vc-expand-dirs, vc-switches, vc-setup-buffer, vc-delistify)
964 (vc-tag-precondition, vc-rename-master): Autoload.
965 * vc/vc-svn.el (vc-exec-after): Declare.
966 (vc-switches, vc-setup-buffer): Autoload.
967 * obsolete/vc-mcvs.el (vc-checkout, vc-switches, vc-default-revert):
968 Autoload.
969 (vc-resynch-buffer): Declare.
970
971 * obsolete/fast-lock.el (byte-compile-warnings):
972 Don't warn about obsolete features in this obsolete file.
973
974 * progmodes/cc-vars.el (c-macro-names-with-semicolon):
975 Move definition before use.
976
977 * play/dunnet.el (byte-compile-warnings): Don't disable them all.
978 (dun-unix-verbs): Remove dun-zippy.
979 (dun-zippy): Remove function.
980
981 * emacs-lisp/bytecomp.el (byte-compile-warnings): Doc fix.
982
983 2013-05-27 Juri Linkov <juri@jurta.org>
984
985 * replace.el (replace-search): New function with code moved out
986 from `perform-replace'.
987 (replace-highlight, replace-dehighlight): Move function definitions
988 up closer to `replace-search'. (Bug#11746)
989
990 2013-05-27 Juri Linkov <juri@jurta.org>
991
992 * replace.el (perform-replace): Ignore invisible matches.
993 In addition to checking `query-replace-skip-read-only', also
994 filter out matches by calling `run-hook-with-args-until-failure'
995 on `isearch-filter-predicates', and also check `search-invisible'
996 for t or call `isearch-range-invisible'.
997 (replace-dehighlight): Call `isearch-clean-overlays'. (Bug#11746)
998
999 2013-05-27 Juri Linkov <juri@jurta.org>
1000
1001 * isearch.el (isearch-filter-predicates): Rename from
1002 `isearch-filter-predicate'. Doc fix. (Bug#11378)
1003 (isearch-message-prefix): Display text from the property
1004 `isearch-message-prefix' of the currently active filters.
1005 (isearch-search): Don't compare `isearch-filter-predicate' with
1006 `isearch-filter-visible'. Call `run-hook-with-args-until-failure'
1007 on `isearch-filter-predicates'. Also check `search-invisible' for t
1008 or call `isearch-range-invisible'.
1009 (isearch-filter-visible): Make obsolete.
1010 (isearch-lazy-highlight-search):
1011 Call `run-hook-with-args-until-failure' on
1012 `isearch-filter-predicates' and use `isearch-range-invisible'.
1013
1014 * info.el (Info-search): Call `run-hook-with-args-until-failure' on
1015 `isearch-filter-predicates' instead of `funcall'ing
1016 `isearch-filter-predicate'.
1017 (Info-mode): Set `Info-isearch-filter' to
1018 `isearch-filter-predicates' instead of `isearch-filter-predicate'.
1019
1020 * dired-aux.el (dired-isearch-filter-predicate-orig):
1021 Remove variable.
1022 (dired-isearch-filenames-toggle, dired-isearch-filenames-setup)
1023 (dired-isearch-filenames-end): Add and remove
1024 `dired-isearch-filter-filenames' in `isearch-filter-predicates'
1025 instead of changing the value of `isearch-filter-predicate'.
1026 Rebind `dired-isearch-filenames-toggle' from "\M-sf" to "\M-sff".
1027 (dired-isearch-filter-filenames): Don't use `isearch-filter-visible'.
1028 Put property `isearch-message-prefix' to "filename " on
1029 `dired-isearch-filter-filenames'.
1030
1031 * wdired.el (wdired-change-to-wdired-mode):
1032 Add `isearch-filter-predicates' to `wdired-isearch-filter-read-only'
1033 locally instead of changing `isearch-filter-predicate'.
1034 (wdired-isearch-filter-read-only): Don't use `isearch-filter-visible'.
1035
1036 2013-05-27 Dmitry Gutov <dgutov@yandex.ru>
1037
1038 * vc/vc-git.el (vc-git-working-revision): When in detached mode,
1039 return the commit hash (Bug#14459). Also set the
1040 `vc-git-detached' property.
1041 (vc-git--rev-parse): Extract from `vc-git-previous-revision'.
1042 (vc-git-mode-line-string): Use the same help-echo format whether
1043 in detached mode or not, because we know the actual revision now.
1044 When in detached mode, shorten the revision to 7 chars.
1045
1046 2013-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
1047
1048 * emacs-lisp/easy-mmode.el (define-minor-mode):
1049 * emacs-lisp/derived.el (define-derived-mode): Always defvar the
1050 mode hook and provide a docstring.
1051
1052 2013-05-27 Alan Mackenzie <acm@muc.de>
1053
1054 Remove spurious syntax-table text properties inserted by C-y.
1055 * progmodes/cc-mode.el (c-after-change): Also clear hard
1056 syntax-table property with value nil.
1057
1058 2013-05-27 Michael Albinus <michael.albinus@gmx.de>
1059
1060 * net/dbus.el (dbus-call-method): Let-bind `inhibit-redisplay'
1061 when reading the events; the buffer layout shall not be changed.
1062
1063 2013-05-27 Leo Liu <sdl.web@gmail.com>
1064
1065 * progmodes/octave.el (inferior-octave-directory-tracker-resync):
1066 New variable.
1067 (inferior-octave-directory-tracker): Automatically re-sync
1068 default-directory.
1069 (octave-help): Improve handling of 'See also'.
1070
1071 2013-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
1072
1073 * doc-view.el: Minor naming convention tweaks.
1074 (desktop-buffer-mode-handlers): Don't add to it repeatedly.
1075
1076 * image-mode.el (image-mode-reapply-winprops): Call image-mode-winprops
1077 even if there's no `display' property yet (bug#14435).
1078
1079 2013-05-25 Eli Zaretskii <eliz@gnu.org>
1080
1081 * subr.el (unmsys--file-name): Rename from reveal-filename.
1082
1083 * Makefile.in (custom-deps, finder-data, autoloads)
1084 ($(MH_E_DIR)/mh-loaddefs.el, $(TRAMP_DIR)/tramp-loaddefs.el)
1085 ($(CAL_DIR)/cal-loaddefs.el, $(CAL_DIR)/diary-loaddefs.el)
1086 ($(CAL_DIR)/hol-loaddefs.el): All users changed.
1087
1088 2013-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
1089
1090 * emacs-lisp/lisp.el (lisp-completion-at-point): Don't use
1091 error-completion on the first 2 args of condition-case (bug#14446).
1092 Don't burp at EOB.
1093
1094 2013-05-25 Leo Liu <sdl.web@gmail.com>
1095
1096 * comint.el (comint-previous-matching-input): Do not flood the
1097 *Messages* buffer with trivial messages.
1098
1099 2013-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
1100
1101 * progmodes/flymake.el (flymake-nop): Don't return a string.
1102 (flymake-set-at): Fix typo.
1103
1104 * simple.el (read--expression): New function, extracted from
1105 eval-expression. Set completion-at-point-functions (bug#14465).
1106 (eval-expression, eval-minibuffer): Use it.
1107
1108 2013-05-25 Xue Fuqiao <xfq.free@gmail.com>
1109
1110 * progmodes/flymake.el (flymake-save-buffer-in-file)
1111 (flymake-makehash, flymake-posn-at-point-as-event, flymake-nop)
1112 (flymake-selected-frame, flymake-log, flymake-ins-after)
1113 (flymake-set-at, flymake-get-buildfile-from-cache)
1114 (flymake-add-buildfile-to-cache, flymake-clear-buildfile-cache)
1115 (flymake-find-possible-master-files, flymake-save-buffer-in-file):
1116 Refine the doc string.
1117 (flymake-get-file-name-mode-and-masks): Reformat.
1118 (flymake-get-real-file-name-function): Fix a minor bug.
1119
1120 2013-05-24 Juri Linkov <juri@jurta.org>
1121
1122 * progmodes/grep.el (grep-mode-font-lock-keywords):
1123 Support =linenumber= format used by git-grep for lines with
1124 function names. (Bug#13549)
1125
1126 2013-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
1127
1128 * progmodes/octave.el (octave-smie-rules): Return nil rather than
1129 0 after a semi-colon; it works better for smie-auto-fill.
1130 (octave--indent-new-comment-line): New function.
1131 (octave-indent-new-comment-line): Use it (indirectly).
1132 (octave-mode): Don't disable smie-auto-fill. Use add-function to
1133 modify comment-line-break-function.
1134
1135 * emacs-lisp/smie.el (smie-auto-fill): Rework to be more robust.
1136 (smie-setup): Use add-function to set it.
1137
1138 2013-05-24 Sam Steingold <sds@gnu.org>
1139
1140 * sort.el (delete-duplicate-lines): Accept an optional `keep-blanks'
1141 argument (before the `interactive' argument).
1142
1143 2013-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
1144
1145 * image-mode.el (image-mode-winprops): Add winprops to
1146 image-mode-winprops-alist before running
1147 image-mode-new-window-functions.
1148 * doc-view.el (doc-view-new-window-function): Don't delay
1149 doc-view-goto-page via timers (bug#14435).
1150
1151 2013-05-24 Tassilo Horn <tsdh@gnu.org>
1152
1153 * doc-view.el: Integrate with desktop.el. (Bug#14435)
1154 (doc-view-desktop-save-buffer): New function.
1155 (doc-view-restore-desktop-buffer): New function.
1156 (desktop-buffer-mode-handlers):
1157 Add `doc-view-restore-desktop-buffer' as desktop.el buffer mode
1158 handler.
1159 (doc-view-mode): Set `doc-view-desktop-save-buffer' as custom
1160 `desktop-save-buffer' function.
1161
1162 2013-05-24 Michael Albinus <michael.albinus@gmx.de>
1163
1164 * net/tramp-gvfs.el (tramp-gvfs-enabled): New defconst.
1165 (tramp-gvfs-file-name-handler): Raise a user error when
1166 `tramp-gvfs-enabled' is nil.
1167 (top): Register signals only when `tramp-gvfs-enabled' is non-nil.
1168 Do not raise a user error when loading package. (Bug#14447)
1169
1170 * net/xesam.el: Move to obsolete/.
1171
1172 2013-05-24 Glenn Morris <rgm@gnu.org>
1173
1174 * font-lock.el (lisp-font-lock-keywords-2): Add with-coding-priority.
1175
1176 * emacs-lisp/chart.el (chart-sort): Replace obsolete `object-name'.
1177
1178 * progmodes/cperl-mode.el (cperl-mode): Use fboundp.
1179 (Info-find-node, Man-getpage-in-background): Declare.
1180
1181 * mail/unrmail.el (unrmail):
1182 Replace obsolete detect-coding-with-priority.
1183
1184 * net/socks.el (socks-split-string): Use this rather than split-string.
1185 (socks-nslookup-host): Update for above change.
1186 (dynamic-choice, s5-dynamic-choice-match)
1187 (s5-dynamic-choice-match-inline, s5-widget-value-create):
1188 Comment out unused code.
1189
1190 * tooltip.el (tooltip-use-echo-area): Warn only on 'set.
1191 * progmodes/gud.el (gud-gdb-completion-function): Move before use.
1192 (gud-tooltip-echo-area): Make obsolete.
1193 (gud-tooltip-process-output, gud-tooltip-tips): Also check tooltip-mode.
1194
1195 * progmodes/js.el (js--optimize-arglist): Declare.
1196
1197 * progmodes/ruby-mode.el (ruby-syntax-propertize-expansion): Declare.
1198
1199 * progmodes/which-func.el (ediff-window-A, ediff-window-B)
1200 (ediff-window-C): Declare.
1201
1202 * obsolete/pgg-gpg.el, obsolete/pgg-pgp.el, obsolete/pgg-pgp5.el:
1203 Tweak requires to silence compiler.
1204
1205 * obsolete/sym-comp.el: No need to load hipper-exp when compiling.
1206 (he-search-string, he-tried-table, he-expand-list)
1207 (he-init-string, he-string-member, he-substitute-string)
1208 (he-reset-string): Declare.
1209
1210 * obsolete/options.el (list-options): Use custom-variable-p,
1211 rather than obsolete alias.
1212
1213 2013-05-23 Sam Steingold <sds@gnu.org>
1214
1215 * simple.el (shell-command-on-region): Pass the `replace' argument
1216 down to `call-process-region' to comply with the doc as reported on
1217 <http://stackoverflow.com/questions/16720458/emacs-noninteractive-call-to-shell-command-on-region-always-deletes-region>
1218
1219 2013-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
1220
1221 * emacs-lisp/smie.el (smie-indent-forward-token)
1222 (smie-indent-backward-token): Handle string tokens (bug#14381).
1223
1224 2013-05-23 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
1225
1226 * ielm.el (ielm-menu): New menu.
1227 (inferior-emacs-lisp-mode): Set comment-start.
1228
1229 2013-05-23 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
1230
1231 * lisp/textmodes/reftex.el (reftex-ref-style-toggle):
1232 Fix deactivate action.
1233
1234 * lisp/textmodes/reftex-vars.el (reftex-ref-style-alist):
1235 Add cleveref macros.
1236
1237 * lisp/textmodes/reftex-parse.el
1238 (reftex-locate-bibliography-files): Accept options for
1239 bibliography commands.
1240 * lisp/textmodes/reftex-vars.el (reftex-bibliography-commands):
1241 Add addbibresource. Basic Biblatex support.
1242
1243 2013-05-23 Michael Albinus <michael.albinus@gmx.de>
1244
1245 * net/tramp-gvfs.el (top):
1246 * net/xesam.el (xesam-dbus-unique-names): Suppress D-Bus errors
1247 when loading package. (Bug#14447)
1248
1249 2013-05-23 Glenn Morris <rgm@gnu.org>
1250
1251 * progmodes/js.el: No need to load comint when compiling.
1252 (ring-insert, comint-send-string, comint-send-input)
1253 (comint-last-input-end, ido-chop): Declare.
1254
1255 * vc/ediff-diff.el, vc/ediff-merg.el: Require ediff-util at run-time.
1256 * vc/ediff-mult.el: Adjust requires.
1257 (ediff-directories-internal, ediff-directory-revisions-internal)
1258 (ediff-patch-file-internal): Declare.
1259 * vc/ediff-ptch.el: Adjust requires.
1260 (ediff-use-last-dir, ediff-buffers-internal): Declare.
1261 (ediff-find-file): Autoload.
1262 * vc/ediff-util.el: No need to load ediff when compiling.
1263 (ediff-regions-internal): Declare.
1264 * vc/ediff-wind.el: Adjust requires.
1265 (ediff-compute-toolbar-width): Define when compiling.
1266 (ediff-setup-control-buffer, ediff-make-bottom-toolbar): Declare.
1267 * vc/ediff.el: No need to load dired, ediff-ptch when compiling.
1268 (dired-get-filename, dired-get-marked-files)
1269 (ediff-last-dir-patch, ediff-patch-default-directory)
1270 (ediff-get-patch-buffer, ediff-dispatch-file-patching-job)
1271 (ediff-patch-buffer-internal): Declare.
1272
1273 * emacs-lisp/checkdoc.el: No need to load ispell when compiling.
1274 (ispell-process, ispell-buffer-local-words, lm-summary)
1275 (lm-section-start, lm-section-end): Declare.
1276 (checkdoc-ispell-init): Simplify.
1277
1278 * progmodes/vera-mode.el (he-init-string, he-dabbrev-beg)
1279 (he-string-member, he-reset-string, he-substitute-string): Declare.
1280
1281 * eshell/em-ls.el: Adjust requires.
1282 (eshell-glob-regexp): Declare.
1283 * eshell/em-tramp.el: Adjust requires.
1284 (eshell-parse-command): Autoload.
1285 * eshell/em-xtra.el: Adjust requires.
1286 (eshell-parse-command): Autoload.
1287 * eshell/esh-ext.el: Adjust requires.
1288 (eshell-parse-command, eshell-close-handles): Autoload.
1289 * eshell/esh-io.el: Adjust requires.
1290 (eshell-output-filter): Autoload.
1291 * eshell/esh-util.el: No need to load tramp when compiling.
1292 (tramp-file-name-structure, ange-ftp-ls, ange-ftp-file-modtime):
1293 Declare.
1294 (eshell-parse-ange-ls): Require ange-ftp and tramp.
1295 * eshell/em-alias.el, eshell/em-banner.el, eshell/em-basic.el:
1296 * eshell/em-cmpl.el, eshell/em-glob.el, eshell/em-pred.el:
1297 * eshell/em-prompt.el, eshell/em-rebind.el, eshell/em-smart.el:
1298 * eshell/em-term.el, eshell/esh-arg.el, eshell/esh-mode.el:
1299 * eshell/esh-opt.el, eshell/esh-proc.el:
1300 * eshell/esh-var.el: Adjust requires.
1301 * eshell/eshell.el: Do not require esh-util twice.
1302 (eshell-add-input-to-history): Declare.
1303 (eshell-command): Check history module is active before using it.
1304
1305 * eshell/em-ls.el (eshell-ls-dir): Fix -A handling.
1306
1307 2013-05-22 Leo Liu <sdl.web@gmail.com>
1308
1309 * progmodes/octave.el (inferior-octave-startup): Fix bug#14433.
1310
1311 2013-05-22 Michael Albinus <michael.albinus@gmx.de>
1312
1313 * autorevert.el (auto-revert-notify-add-watch)
1314 (auto-revert-notify-handler): Add `attrib' for the inotify case,
1315 it indicates changes in file modification time.
1316
1317 2013-05-22 Glenn Morris <rgm@gnu.org>
1318
1319 * emacs-lisp/bytecomp.el (byte-compile-file-form-autoload):
1320 Always delete the autoloaded function from the noruntime and
1321 unresolved functions lists.
1322
1323 * allout.el: No need to load epa, epg, overlay when compiling.
1324 (epg-context-set-passphrase-callback, epg-list-keys)
1325 (epg-decrypt-string, epg-encrypt-string, epg-user-id-string)
1326 (epg-key-user-id-list): Declare.
1327
1328 * emulation/viper-cmd.el (viper-set-searchstyle-toggling-macros)
1329 (viper-set-parsing-style-toggling-macro)
1330 (viper-set-emacs-state-searchstyle-macros):
1331 Use called-interactively-p on Emacs.
1332 (viper-looking-back): Make it an obsolete alias. Update callers.
1333 * emulation/viper-ex.el: Load viper-keym, not viper-cmd.
1334 Use looking-back rather than viper-looking-back.
1335 (viper-tmp-insert-at-eob, viper-enlarge-region)
1336 (viper-read-string-with-history, viper-register-to-point)
1337 (viper-append-to-register, viper-change-state-to-vi)
1338 (viper-backward-char-carefully, viper-forward-char-carefully)
1339 (viper-Put-back, viper-put-back, viper-add-newline-at-eob-if-necessary)
1340 (viper-change-state-to-emacs): Declare.
1341 * emulation/viper-macs.el: Load viper-mous, viper-ex, not viper-cmd.
1342 (viper-change-state-to-insert, viper-change-state-to-vi): Declare.
1343 * emulation/viper-mous.el: Do not load viper-cmd.
1344 (viper-backward-char-carefully, viper-forward-char-carefully)
1345 (viper-forward-word, viper-adjust-window): Declare.
1346
1347 * vc/ediff.el (ediff-version): Use called-interactively-p on Emacs.
1348
1349 * progmodes/idlw-help.el (idlwave-help-fontify):
1350 Use called-interactively-p.
1351
1352 * term/w32console.el (w32-get-console-codepage)
1353 (w32-get-console-output-codepage): Declare.
1354
1355 * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape):
1356 Remove unnecessary declarations.
1357 (dframe-message): Doc fix.
1358
1359 * info.el (dframe-select-attached-frame, dframe-current-frame):
1360 Declare.
1361
1362 * speedbar.el (speedbar-message): Make it an obsolete alias.
1363 Update all callers.
1364 (speedbar-with-attached-buffer)
1365 (speedbar-maybee-jump-to-attached-frame): Make these aliases obsolete.
1366 (speedbar-with-writable): Use backquote.
1367 * emacs-lisp/eieio-opt.el (eieio-describe-class-sb):
1368 * emacs-lisp/eieio-speedbar.el (eieio-speedbar-handle-click):
1369 Use dframe-with-attached-buffer, dframe-maybee-jump-to-attached-frame
1370 rather than speedbar- aliases.
1371 * mail/rmail.el: Load dframe rather than speedbar when compiling.
1372 (speedbar-make-specialized-keymap, speedbar-insert-button)
1373 (dframe-select-attached-frame, dframe-maybee-jump-to-attached-frame)
1374 (speedbar-do-function-pointer): Declare.
1375 (rmail-speedbar-button, rmail-speedbar-find-file)
1376 (rmail-speedbar-move-message):
1377 Use dframe-with-attached-buffer rather than speedbar- alias.
1378 * progmodes/gud.el: Load dframe rather than speedbar when compiling.
1379 (dframe-message, speedbar-make-specialized-keymap)
1380 (speedbar-add-expansion-list, speedbar-mode-functions-list)
1381 (speedbar-make-tag-line, speedbar-remove-localized-speedbar-support)
1382 (speedbar-insert-button, dframe-select-attached-frame)
1383 (dframe-maybee-jump-to-attached-frame)
1384 (speedbar-change-initial-expansion-list)
1385 (speedbar-previously-used-expansion-list-name): Declare.
1386 (gud-speedbar-item-info, gud-gdb-goto-stackframe):
1387 Use dframe-message, dframe-with-attached-buffer rather than
1388 speedbar- aliases.
1389 (gud-sentinel): Silence compiler.
1390 * progmodes/vhdl-mode.el (speedbar-refresh)
1391 (speedbar-do-function-pointer, speedbar-add-supported-extension)
1392 (speedbar-add-mode-functions-list, speedbar-make-specialized-keymap)
1393 (speedbar-change-initial-expansion-list, speedbar-add-expansion-list)
1394 (speedbar-extension-list-to-regex, speedbar-directory-buttons)
1395 (speedbar-file-lists, speedbar-make-tag-line)
1396 (speedbar-line-directory, speedbar-goto-this-file)
1397 (speedbar-center-buffer-smartly, speedbar-change-expand-button-char)
1398 (speedbar-delete-subblock, speedbar-position-cursor-on-line)
1399 (speedbar-make-button, speedbar-reset-scanners)
1400 (speedbar-files-item-info, speedbar-line-text)
1401 (speedbar-find-file-in-frame, speedbar-set-timer)
1402 (dframe-maybee-jump-to-attached-frame, speedbar-line-file): Declare.
1403 (speedbar-with-writable): Do not (re)define it.
1404 (vhdl-speedbar-find-file): Use dframe-maybee-jump-to-attached-frame
1405 rather than speedbar- alias.
1406
1407 2013-05-21 Leo Liu <sdl.web@gmail.com>
1408
1409 * progmodes/octave.el (octave-mode-menu): Update and re-organize
1410 menu items.
1411 (octave-mode): Tweak fill-nobreak-predicate.
1412 (inferior-octave-startup): Check process to avoid infinite loop.
1413 (inferior-octave): Pop to buffer first to show abornmal process
1414 exit information.
1415
1416 2013-05-21 Glenn Morris <rgm@gnu.org>
1417
1418 * printing.el (pr-menu-bar): Define when compiling.
1419
1420 2013-05-21 Leo Liu <sdl.web@gmail.com>
1421
1422 * progmodes/octave.el (octave-auto-fill): Remove.
1423 (octave-indent-new-comment-line): Improve.
1424 (octave-mode): Use auto fill mode through
1425 comment-line-break-function and fill-nobreak-predicate
1426 (octave-goto-function-definition): Support DEFUN_DLD.
1427 (octave-beginning-of-defun): Small Tweak
1428 (octave-help): Show parent directory.
1429
1430 2013-05-21 Glenn Morris <rgm@gnu.org>
1431
1432 * files.el (dired-unmark):
1433 * progmodes/gud.el (gdb-input): Update declarations.
1434
1435 * calculator.el (electric, ehelp): No need to load when compiling.
1436 (Electric-command-loop, electric-describe-mode): Declare.
1437
1438 * doc-view.el (doc-view-current-converter-processes): Move before use.
1439
1440 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
1441 Move MODE-set-explicitly definition before use.
1442
1443 * international/mule-diag.el (mule-diag):
1444 Don't use obsolete window-system-version.
1445
1446 * mail/feedmail.el (smtpmail): No need to load when compiling.
1447 (smtpmail-via-smtp, smtpmail-smtp-server): Declare.
1448
1449 * mail/mail-utils.el (rfc822): No need to load when compiling.
1450 (rfc822-addresses): Autoload it.
1451 (mail-strip-quoted-names): Trivial simplification.
1452
1453 * mail/rmail.el (rmail-mime-message-p, rmail-mime-toggle-raw): Declare.
1454 (rmail-retry-failure): Don't assume that rmail-mime-feature == rmailmm.
1455
1456 * net/snmp-mode.el (tempo): Don't duplicate requires.
1457
1458 * progmodes/prolog.el (info): No need to load when compiling.
1459 (comint): Require before shell requires it.
1460 (Info-goto-node): Autoload it.
1461 (Info-follow-nearest-node): Declare.
1462 (prolog-help-info, prolog-goto-predicate-info): No need to require info.
1463
1464 * textmodes/artist.el (picture-mode-exit): Declare.
1465
1466 * textmodes/reftex-parse.el (reftex-parse-from-file):
1467 Trivial rewrite so the compiler can parse it better.
1468
1469 2013-05-20 Leo Liu <sdl.web@gmail.com>
1470
1471 * progmodes/octave.el (octave-help-mode-map)
1472 (octave-help-mode-finish-hook): New variables.
1473 (octave-help-mode, octave-help-mode-finish): New functions.
1474 (octave-help): Use octave-help-mode.
1475
1476 2013-05-20 Glenn Morris <rgm@gnu.org>
1477
1478 * format-spec.el (format-spec): Allow spec chars with nil. (Bug#14420)
1479
1480 2013-05-19 Dmitry Gutov <dgutov@yandex.ru>
1481
1482 * progmodes/ruby-mode.el (ruby-expression-expansion-re): Allow to
1483 start at point, so that expansion starting right after opening
1484 slash in a regexp is recognized.
1485 (ruby-syntax-before-regexp-re): New defvar, extracted from
1486 ruby-syntax-propertize-function. Since the value of this regexp
1487 is looked up at runtime now, we should be able to turn
1488 `ruby-syntax-methods-before-regexp' into a defcustom later.
1489 (ruby-syntax-propertize-function): Split regexp matching into two
1490 parts, for opening and closing slashes. That allows us to skip
1491 over string interpolations and support multiline regexps.
1492 Don't call `ruby-syntax-propertize-expansions', instead use another rule
1493 for them, which calls `ruby-syntax-propertize-expansion'.
1494 (ruby-syntax-propertize-expansions): Move `remove-text-properties'
1495 call to `ruby-syntax-propertize-function'.
1496 (ruby-syntax-propertize-expansion): Extracted from
1497 `ruby-syntax-propertize-expansions'. Handles one expansion.
1498 (ruby-syntax-propertize-percent-literal): Leave point right after
1499 the percent symbol, so that the expression expansion rule can
1500 propertize the contents.
1501 (ruby-syntax-propertize-heredoc): Leave point at bol following the
1502 heredoc openers.
1503 (ruby-syntax-propertize-expansions): Remove.
1504
1505 2013-05-18 Juri Linkov <juri@jurta.org>
1506
1507 * man.el (Man-default-man-entry): Remove `-' from the end
1508 of the default value. (Bug#14400)
1509
1510 2013-05-18 Glenn Morris <rgm@gnu.org>
1511
1512 * comint.el (comint-password-prompt-regexp):
1513 Allow "password for XXX" where XXX contains colons (eg https://...).
1514
1515 2013-05-18 Leo Liu <sdl.web@gmail.com>
1516
1517 * progmodes/octave.el (inferior-octave-startup): Use OCTAVE_SRCDIR
1518 instead. Include "--no-gui" to prevent hangs for Octave > 3.7.
1519 (octave-source-directories): Don't check process.
1520 (octave-source-directories, octave-find-definition): Doc fix.
1521
1522 2013-05-18 Glenn Morris <rgm@gnu.org>
1523
1524 * progmodes/vhdl-mode.el (vhdl-mode-map-init):
1525 Remove backspace/delete bindings. (Bug#14392)
1526
1527 * cus-dep.el (custom-make-dependencies): Sort the output.
1528 (custom-versions-load-alist): Convert comment to doc.
1529
1530 2013-05-17 Leo Liu <sdl.web@gmail.com>
1531
1532 * newcomment.el (comment-search-backward): Stricter in finding
1533 comment start. (Bug#14303)
1534
1535 * progmodes/octave.el (octave-comment-start): Remove the SPC char.
1536 (octave-comment-start-skip): Properly anchored.
1537
1538 2013-05-17 Leo Liu <sdl.web@gmail.com>
1539
1540 * emacs-lisp/smie.el (smie-highlight-matching-block-mode):
1541 Clean up when turned off. (Bug#14395)
1542 (smie--highlight-matching-block-overlay): No longer buffer-local.
1543 (smie-highlight-matching-block): Adjust.
1544
1545 2013-05-17 Paul Eggert <eggert@cs.ucla.edu>
1546
1547 Doc string fix for "nanoseconds" (Bug#14406).
1548 * emacs-lisp/timer.el (timer-relative-time, timer-inc-time):
1549 Fix doc string typo that had "nanoseconds" instead of "microseconds".
1550
1551 2013-05-17 Jay Belanger <jay.p.belanger@gmail.com>
1552
1553 * calc/calc-units.el (math-extract-units): Preserve powers
1554 of units.
1555
1556 2013-05-17 Leo Liu <sdl.web@gmail.com>
1557
1558 * subr.el (delete-consecutive-dups): New function.
1559 * ido.el (ido-set-matches-1): Use it.
1560 * progmodes/octave.el (inferior-octave-completion-table): Use it.
1561 * ido.el (ido-remove-consecutive-dups): Remove.
1562
1563 2013-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
1564
1565 * progmodes/f90.el (f90-keywords-re, f90-keywords-level-3-re)
1566 (f90-hpf-keywords-re, f90-constants-re): Use \\_< rather than
1567 regexp-opt's `words'.
1568
1569 2013-05-16 Leo Liu <sdl.web@gmail.com>
1570
1571 * emacs-lisp/smie.el (smie-matching-block-highlight): New face.
1572 (smie--highlight-matching-block-overlay)
1573 (smie--highlight-matching-block-lastpos)
1574 (smie--highlight-matching-block-timer): New variables.
1575 (smie-highlight-matching-block): New function.
1576 (smie-highlight-matching-block-mode): New minor mode. (Bug#14395)
1577 (smie-setup): Conditionally enable smie-blink-matching-open.
1578
1579 2013-05-16 Wilson Snyder <wsnyder@wsnyder.org>
1580
1581 Sync with upstream verilog-mode r840.
1582 * progmodes/verilog-mode.el (verilog-mode-version)
1583 (verilog-mode-release-date): Update.
1584 (verilog-auto-lineup, verilog-auto-reset): Doc fixes.
1585 (verilog-sig-tieoff): Fix string error on
1586 AUTORESET with colon define, bug594. Reported by Andrew Hou.
1587 (verilog-read-decls): Fix parameters confusing
1588 AUTOINST interfaces, bug565. Reported by Leith Johnson.
1589
1590 2013-05-16 Eli Zaretskii <eliz@gnu.org>
1591
1592 * subr.el (reveal-filename): New function.
1593
1594 * loadup.el: Compute Emacs executable versions on MS-Windows,
1595 where executables have the .exe extension. Add a hard link
1596 emacs-XX.YY.ZZ.exe on MS-Windows.
1597
1598 * Makefile.in (XARGS_LIMIT): New variable.
1599 (custom-deps, finder-data, autoloads)
1600 ($(MH_E_DIR)/mh-loaddefs.el, $(TRAMP_DIR)/tramp-loaddefs.el)
1601 ($(CAL_DIR)/cal-loaddefs.el, $(CAL_DIR)/diary-loaddefs.el)
1602 ($(CAL_DIR)/hol-loaddefs.el): Use reveal-filename.
1603 (compile-main): Limit xargs according to $(XARGS_LIMIT).
1604
1605 2013-05-16 Leo Liu <sdl.web@gmail.com>
1606
1607 * progmodes/octave.el (octave-indent-defun): Mark obsolete.
1608 (octave-mode-menu, octave-mode-map): Remove its uses.
1609
1610 2013-05-16 Reto Zimmermann <reto@gnu.org>
1611
1612 Sync with upstream vhdl mode v3.34.2.
1613 * progmodes/vhdl-mode.el: Use `push' throughout.
1614 (vhdl-version, vhdl-time-stamp, vhdl-doc-release-notes): Update.
1615 (vhdl-compiler-alist): Replace "\t\n" by "\\t\\n".
1616 Add IBM & Quartus compiler. Enhance entry for ADVance MS compiler.
1617 (vhdl-actual-generic-name): New option to derive actual generic name.
1618 (vhdl-port-paste-signals): Replace formal by actual generics.
1619 (vhdl-beautify): New name for old group vhdl-align. Update users.
1620 (vhdl-beautify-options): New option.
1621 (vhdl-last-input-event): New compat alias. Use throughout.
1622 (vhdl-goto-line): Replace user level function `goto-line'.
1623 (vhdl-mode-map): Add bindings for vhdl-fix-statement-region,
1624 vhdl-fix-statement-buffer.
1625 (vhdl-create-mode-menu): Add some entries.
1626 (vhdl-align-region-groups): Respect vhdl-beautify-options.
1627 (vhdl-align-inline-comment-region-1): Handle "--" inside string.
1628 (vhdl-fixup-whitespace-region): Handle symbols at EOL.
1629 (vhdl-fix-statement-region, vhdl-fix-statement-buffer): New commands,
1630 to force statements on one line.
1631 (vhdl-remove-trailing-spaces-region):
1632 New, split from vhdl-remove-trailing-spaces.
1633 (vhdl-beautify-region): Fix statements, trailing spaces, ^M character.
1634 Respect vhdl-beautify-options.
1635 (vhdl-update-sensitivity-list-buffer): If non-interactive save buffer.
1636 (vhdl-update-sensitivity-list): Not add with index if exists without.
1637 Not include array index with signal. Ignore keywords in comments.
1638 (vhdl-get-visible-signals): Regexp tweaks.
1639 (vhdl-template-component-inst): Handle empty library.
1640 (vhdl-template-type): Add template for 'enum' type.
1641 (vhdl-port-paste-generic-map, vhdl-port-paste-constants):
1642 Use vhdl-replace-string.
1643 (vhdl-port-paste-signals): Use vhdl-prepare-search-1.
1644 (vhdl-speedbar-mode-map): Rename from vhdl-speedbar-key-map.
1645 (vhdl-speedbar-initialize): Update for above name change.
1646 (vhdl-compose-wire-components): Fix in handling of constants.
1647 (vhdl-error-regexp-emacs-alist): New variable.
1648 (vhdl-error-regexp-add-emacs): New function;
1649 adds support for new compile.el (Emacs 22+)
1650 (vhdl-generate-makefile-1): Change target order for single lib. units.
1651 Allow use of absolute file names.
1652
1653 2013-05-16 Leo Liu <sdl.web@gmail.com>
1654
1655 * simple.el (prog-indent-sexp): Indent enclosing defun.
1656
1657 2013-05-15 Glenn Morris <rgm@gnu.org>
1658
1659 * cus-start.el (show-trailing-whitespace): Move to editing basics.
1660 * faces.el (trailing-whitespace): Don't use whitespace-faces group.
1661 * obsolete/old-whitespace.el (whitespace-faces): Remove group.
1662 (whitespace-highlight): Move to whitespace group.
1663
1664 * comint.el (comint-source):
1665 * pcmpl-linux.el (pcmpl-linux):
1666 * shell.el (shell-faces):
1667 * eshell/esh-opt.el (eshell-opt):
1668 * international/ccl.el (ccl): Remove empty custom groups.
1669
1670 * completion.el (dynamic-completion-mode):
1671 * jit-lock.el (jit-lock-debug-mode):
1672 * minibuffer.el (completion-in-region-mode):
1673 * type-break.el (type-break-mode-line-message-mode)
1674 (type-break-query-mode):
1675 * emulation/tpu-edt.el (tpu-edt-mode):
1676 * progmodes/subword.el (global-subword-mode, global-superword-mode):
1677 * progmodes/vhdl-mode.el (vhdl-electric-mode, vhdl-stutter-mode):
1678 * term/vt100.el (vt100-wide-mode): Specify explicit :group.
1679
1680 * term/xterm.el (xterm): Change parent group to terminals.
1681
1682 * master.el (master): Remove empty custom group.
1683 (master-mode): Remove unused :group argument.
1684 * textmodes/refill.el (refill): Remove empty custom group.
1685 (refill-mode): Remove unused :group argument.
1686
1687 * textmodes/rst.el (rst-compile-toolsets): Use rst-compile group.
1688
1689 * cus-dep.el: Provide a feature.
1690 (custom-make-dependencies): Ignore dotfiles (dir-locals).
1691 Don't mistakenly ignore files whose basenames match a basename
1692 from preloaded-file-list (eg cedet/ede/simple.el).
1693 Add a fallback method for getting :group.
1694
1695 2013-05-15 Juri Linkov <juri@jurta.org>
1696
1697 * isearch.el (isearch-char-by-name): Rename from
1698 `isearch-insert-char-by-name'. Doc fix.
1699 (isearch-forward): Mention `isearch-char-by-name' in
1700 the docstring. (Bug#13348)
1701
1702 * isearch.el (minibuffer-local-isearch-map): Bind "\r" to
1703 `exit-minibuffer' instead of
1704 `isearch-nonincremental-exit-minibuffer'.
1705 (isearch-edit-string): Remove mention of
1706 `isearch-nonincremental-exit-minibuffer' from docstring.
1707 (isearch-nonincremental-exit-minibuffer): Mark as obsolete.
1708 (isearch-forward-exit-minibuffer)
1709 (isearch-reverse-exit-minibuffer): Add docstring. (Bug#13348)
1710
1711 2013-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
1712
1713 * loadup.el: Just use unversioned DOC.
1714
1715 * nxml/nxml-mode.el: Treat unclosed <[[, <?, comment, and other
1716 literals as extending to EOB.
1717 (nxml-last-fontify-end): Remove unused variable.
1718 (nxml-after-change1): Use with-silent-modifications.
1719 (nxml-extend-after-change-region): Simplify.
1720 (nxml-extend-after-change-region1): Remove function.
1721 (nxml-after-change1): Don't adjust for dependent regions.
1722 (nxml-fontify-matcher): Simplify.
1723 * nxml/xmltok.el (xmltok-dependent-regions): Remove variable.
1724 (xmltok-add-dependent): Remove function.
1725 (xmltok-scan-after-lt, xmltok-scan-after-processing-instruction-open)
1726 (xmltok-scan-after-comment-open, xmltok-scan-prolog-literal)
1727 (xmltok-scan-prolog-after-processing-instruction-open): Treat
1728 unclosed <[[, <?, comment, and other literals as extending to EOB.
1729 * nxml/rng-valid.el (rng-mark-xmltok-dependent-regions)
1730 (rng-mark-xmltok-dependent-region, rng-dependent-region-changed):
1731 Remove functions.
1732 (rng-do-some-validation-1): Don't mark dependent regions.
1733 * nxml/nxml-rap.el (nxml-adjust-start-for-dependent-regions)
1734 (nxml-mark-parse-dependent-regions, nxml-mark-parse-dependent-region)
1735 (nxml-clear-dependent-regions): Remove functions.
1736 (nxml-scan-after-change, nxml-scan-prolog, nxml-tokenize-forward)
1737 (nxml-ensure-scan-up-to-date):
1738 Don't clear&mark dependent regions.
1739
1740 2013-05-15 Leo Liu <sdl.web@gmail.com>
1741
1742 * progmodes/octave.el (octave-goto-function-definition):
1743 Improve and fix callers.
1744
1745 2013-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
1746
1747 * emacs-lisp/cl-extra.el (cl-getf): Return the proper value in
1748 the setter (bug#14387).
1749
1750 * progmodes/f90.el (f90-blocks-re): Include the terminating \> in the
1751 surrounding group (bug#14402).
1752
1753 2013-05-14 Juri Linkov <juri@jurta.org>
1754
1755 * subr.el (find-tag-default-as-regexp): Return nil if `tag' is nil.
1756 (Bug#14390)
1757
1758 2013-05-14 Glenn Morris <rgm@gnu.org>
1759
1760 * progmodes/f90.el (f90-imenu-generic-expression):
1761 Fix typo in 2013-05-08 change. (Bug#14402)
1762
1763 2013-05-14 Jean-Philippe Gravel <jpgravel@gmail.com>
1764
1765 * progmodes/gdb-mi.el (gdb-running, gdb-starting):
1766 Remove signals for which replies are never received.
1767
1768 2013-05-14 Jean-Philippe Gravel <jpgravel@gmail.com>
1769
1770 * progmodes/gdb-mi.el: Fix non-responsive gud commands (bug#13845)
1771 (gdb-handler-alist, gdb-handler-number): Remove variables.
1772 (gdb-handler-list): New variable.
1773 (gdb-add-handler, gdb-delete-handler, gdb-get-handler-function)
1774 (gdb-pending-handler-p, gdb-handle-reply)
1775 (gdb-remove-all-pending-triggers): New functions.
1776 (gdb-discard-unordered-replies): New defcustom.
1777 (gdb-handler): New defstruct.
1778 (gdb-wait-for-pending): Fix invalid backquote. Use gdb-handler-list.
1779 instead of gdb-pending-triggers. Update docstring.
1780 (gdb-init-1): Remove dead variables. Initialize gdb-handler-list.
1781 (gdb-speedbar-update, gdb-speedbar-timer-fn, gdb-var-update)
1782 (gdb-var-update-handler, def-gdb-auto-update-trigger)
1783 (def-gdb-auto-update-handler, gdb-get-changed-registers)
1784 (gdb-changed-registers-handler, gdb-get-main-selected-frame)
1785 (gdb-frame-handler): Pending triggers are now automatically managed.
1786 (def-gdb-trigger-and-handler, def-gdb-auto-update-handler):
1787 Remove argument.
1788 (gdb-input): Automatically handles pending triggers. Update docstring.
1789 (gdb-resync): Replace gdb-pending-triggers by gdb-handler-list.
1790 (gdb-thread-exited, gdb-thread-selected, gdb-register-names-handler):
1791 Update comments.
1792 (gdb-done-or-error): Now use gdb-handle-reply.
1793
1794 2013-05-14 Jean-Philippe Gravel <jpgravel@gmail.com>
1795
1796 * progmodes/gdb-mi.el (gdb-input): Include token numbers in
1797 gdb-debug-log.
1798
1799 2013-05-14 Glenn Morris <rgm@gnu.org>
1800
1801 * subr.el (user-emacs-directory-warning): New option.
1802 (locate-user-emacs-file): Handle non-accessible .emacs.d. (Bug#13930)
1803
1804 2013-05-14 Leo Liu <sdl.web@gmail.com>
1805
1806 * progmodes/octave.el (octave-font-lock-keywords): Fix error
1807 during redisplay.
1808 (octave-goto-function-definition, octave-find-definition): Minor tweaks.
1809 (octave-font-lock-texinfo-comment): Fix invalid search bound
1810 error: wrong side of point.
1811
1812 2013-05-14 Glenn Morris <rgm@gnu.org>
1813
1814 * progmodes/flymake.el (flymake-xml-program): New option.
1815 (flymake-xml-init): Use it.
1816
1817 * term/xterm.el: Provide a feature.
1818
1819 * term/sup-mouse.el: Move to obsolete/. Provide a feature.
1820
1821 2013-05-13 Glenn Morris <rgm@gnu.org>
1822
1823 * cus-dep.el (defcustom-mh, defgroup-mh, defface-mh):
1824 Add compat aliases as a hack workaround. (Bug#14384)
1825
1826 2013-05-13 Leo Liu <sdl.web@gmail.com>
1827
1828 * progmodes/octave.el (octave-indent-comment): Fix indentation for
1829 ###, and %!.
1830 (octave-mode-map): Bind octave-indent-defun to C-c C-q instead of
1831 C-M-q.
1832 (octave-comment-start-skip): Include %!.
1833 (octave-mode): Set comment-start-skip to octave-comment-start-skip.
1834
1835 2013-05-12 Leo Liu <sdl.web@gmail.com>
1836
1837 * progmodes/octave.el (inferior-octave-startup): Store the value
1838 of __octave_srcdir__ for octave-source-directories.
1839 (inferior-octave-check-process): New function refactored out of
1840 inferior-octave-send-list-and-digest.
1841 (octave-source-directories)
1842 (octave-find-definition-filename-function): New variables.
1843 (octave-source-directories)
1844 (octave-find-definition-default-filename): New functions.
1845 (octave-find-definition): Improve to find functions implemented in C++.
1846
1847 2013-05-12 Glenn Morris <rgm@gnu.org>
1848
1849 * calendar/diary-lib.el (diary-outlook-format-1):
1850 Don't include dayname in the output. (Bug#14349)
1851
1852 2013-05-11 Glenn Morris <rgm@gnu.org>
1853
1854 * emacs-lisp/autoload.el (generated-autoload-load-name): Doc fix.
1855
1856 * cus-dep.el (custom-make-dependencies): Only use safe local variables.
1857 Treat cc-provide like provide.
1858
1859 2013-05-11 Kevin Ryde <user42@zip.com.au>
1860
1861 * cus-dep.el (custom-make-dependencies):
1862 Use generated-autoload-load-name for the sake of files such
1863 such cedet/semantic/bovine/c.el, where the base file name
1864 is not in load-path. (Bug#5277)
1865
1866 2013-05-11 Glenn Morris <rgm@gnu.org>
1867
1868 * dos-vars.el, emacs-lisp/cl-indent.el, emulation/tpu-extras.el:
1869 Provide features.
1870
1871 2013-05-11 Leo Liu <sdl.web@gmail.com>
1872
1873 * progmodes/octave.el (octave-indent-comment): Improve.
1874 (octave-eldoc-message-style, octave-eldoc-cache): New variables.
1875 (octave-eldoc-function-signatures, octave-eldoc-function):
1876 New functions.
1877 (octave-mode, inferior-octave-mode): Add eldoc support.
1878
1879 2013-05-11 Richard Stallman <rms@gnu.org>
1880
1881 * epa.el (epa-decrypt-file): Take output file name as argument
1882 and read it using `interactive'.
1883
1884 2013-05-11 Leo Liu <sdl.web@gmail.com>
1885
1886 * progmodes/octave.el (octave-beginning-of-line)
1887 (octave-end-of-line): Check before using up-list because it jumps
1888 out of more syntactic contructs since moving to smie.
1889 (octave-indent-comment): New function.
1890 (octave-mode): Use it in smie-indent-functions. (Bug#14350)
1891 (octave-begin-keywords, octave-end-keywords)
1892 (octave-reserved-words, octave-smie-bnf-table)
1893 (octave-smie-rules): Add new keywords from Octave 3.6.4.
1894
1895 2013-05-11 Glenn Morris <rgm@gnu.org>
1896
1897 * faces.el (internal-face-x-get-resource):
1898 * frame.el (ns-display-monitor-attributes-list):
1899 * calc/calc-aent.el (math-to-radians-2): Fix declarations.
1900
1901 * emacs-lisp/package.el (tar-header-name, tar-header-link-type):
1902
1903 * calc/calc-menu.el: Make it loadable in isolation.
1904
1905 * net/eudcb-bbdb.el: Make it loadable without bbdb.
1906 (eudc-bbdb-filter-non-matching-record, eudc-bbdb-extract-phones)
1907 (eudc-bbdb-extract-addresses, eudc-bbdb-format-record-as-result)
1908 (eudc-bbdb-query-internal): Require 'bbdb.
1909
1910 * lpr.el (lpr-headers-switches):
1911 * emacs-lisp/testcover.el (testcover-compose-functions): Fix :type.
1912
1913 * progmodes/sql.el (sql-login-params): Fix and improve :type.
1914
1915 * emulation/edt-mapper.el: In batch mode, error rather than hang.
1916
1917 * term.el (term-set-escape-char): Make it idempotent.
1918
1919 2013-05-10 Leo Liu <sdl.web@gmail.com>
1920
1921 * progmodes/octave.el (inferior-octave-completion-table):
1922 No longer a function and all uses changed. Use cache to speed up
1923 completion due to bug#11906.
1924 (octave-beginning-of-defun): Re-write to be more general.
1925
1926 2013-05-10 Glenn Morris <rgm@gnu.org>
1927
1928 * emacs-lisp/cl-macs.el (cl-loop): Doc fix.
1929
1930 2013-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
1931
1932 * comint.el (comint-redirect-send-command-to-process): Use :around
1933 rather than :override for comint-redirect-filter.
1934 (comint-redirect-filter): Add the corresponding `orig-filter' argument.
1935 Call it instead of comint-redirect-original-filter-function (which
1936 is gone). Reported by Juanma Barranquero <lekktu@gmail.com>.
1937
1938 2013-05-09 Jan Djärv <jan.h.d@swipnet.se>
1939
1940 * frame.el (display-monitor-attributes-list): Add NS case.
1941 (ns-display-monitor-attributes-list): Declare.
1942
1943 2013-05-09 Ulrich Mueller <ulm@gentoo.org>
1944
1945 * descr-text.el (describe-char): Fix %d/%x typo. (Bug#14360)
1946
1947 2013-05-09 Glenn Morris <rgm@gnu.org>
1948
1949 * international/fontset.el (vertical-centering-font-regexp):
1950 Set standard-value.
1951
1952 * tar-mode.el (tar-superior-buffer, tar-superior-descriptor): Add doc.
1953
1954 * bookmark.el (bookmark-search-delay):
1955 * cus-start.el (vertical-centering-font-regexp):
1956 * ps-mule.el (ps-mule-font-info-database-default):
1957 * ps-print.el (ps-default-fg, ps-default-bg):
1958 * type-break.el (type-break-good-break-interval):
1959 * whitespace.el (whitespace-indentation-regexp)
1960 (whitespace-space-after-tab-regexp):
1961 * emacs-lisp/testcover.el (testcover-1value-functions)
1962 (testcover-noreturn-functions, testcover-progn-functions)
1963 (testcover-prog1-functions):
1964 * emulation/viper-init.el (viper-emacs-state-cursor-color):
1965 * eshell/em-glob.el (eshell-glob-translate-alist):
1966 * play/tetris.el (tetris-tty-colors):
1967 * progmodes/cpp.el (cpp-face-default-list):
1968 * progmodes/flymake.el (flymake-allowed-file-name-masks):
1969 * progmodes/idlw-help.el (idlwave-help-browser-generic-program)
1970 (idlwave-help-browser-generic-args):
1971 * progmodes/make-mode.el (makefile-special-targets-list):
1972 * progmodes/python.el (python-shell-virtualenv-path):
1973 * progmodes/verilog-mode.el (verilog-active-low-regexp)
1974 (verilog-auto-input-ignore-regexp, verilog-auto-inout-ignore-regexp)
1975 (verilog-auto-output-ignore-regexp, verilog-auto-tieoff-ignore-regexp)
1976 (verilog-auto-unused-ignore-regexp, verilog-typedef-regexp):
1977 * textmodes/reftex-vars.el (reftex-format-label-function):
1978 * textmodes/remember.el (remember-diary-file): Fix custom types.
1979
1980 * jka-cmpr-hook.el (jka-compr-mode-alist-additions): Fix typo.
1981 Add :version.
1982
1983 2013-05-09 Leo Liu <sdl.web@gmail.com>
1984
1985 * progmodes/octave.el (inferior-octave-completion-at-point):
1986 Restore file completion. (Bug#14300)
1987 (inferior-octave-startup): Fix incorrect highlighting for the
1988 first prompt.
1989
1990 2013-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
1991
1992 * progmodes/ruby-mode.el: First cut at SMIE support.
1993 (ruby-use-smie): New var.
1994 (ruby-smie-grammar): New constant.
1995 (ruby-smie--bosp, ruby-smie--implicit-semi-p)
1996 (ruby-smie--forward-token, ruby-smie--backward-token)
1997 (ruby-smie-rules): New functions.
1998 (ruby-mode-variables): Setup SMIE if applicable.
1999
2000 2013-05-08 Eli Zaretskii <eliz@gnu.org>
2001
2002 * simple.el (line-move-visual): Signal beginning/end of buffer
2003 only if vertical-motion moved less than it was requested. Avoids
2004 silly incorrect error messages when there are display strings with
2005 multiple newlines at EOL.
2006
2007 2013-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
2008
2009 * progmodes/vera-mode.el (vera-underscore-is-part-of-word):
2010 * progmodes/prolog.el (prolog-underscore-wordchar-flag)
2011 (prolog-char-quote-workaround):
2012 * progmodes/cperl-mode.el (cperl-under-as-char):
2013 * progmodes/vhdl-mode.el (vhdl-underscore-is-part-of-word):
2014 Mark as obsolete.
2015 (vhdl-mode-syntax-table, vhdl-mode-ext-syntax-table): Initialize in
2016 their declaration.
2017 (vhdl-mode-syntax-table-init): Remove.
2018
2019 * progmodes/m4-mode.el (m4-mode-syntax-table): Add comment on
2020 last change.
2021
2022 * progmodes/ld-script.el (ld-script-mode-syntax-table): Use symbol
2023 syntax for "_".
2024 (ld-script-font-lock-keywords):
2025 Change regexps to use things like \_< and \_>.
2026
2027 * progmodes/f90.el (f90-mode-syntax-table): Use symbol syntax for "_".
2028 Change all regexps to use things like \_< and \_>.
2029
2030 * progmodes/autoconf.el (autoconf-definition-regexp)
2031 (autoconf-font-lock-keywords, autoconf-current-defun-function):
2032 Handle a _ with symbol syntax.
2033 (autoconf-mode): Don't change the syntax-table for imenu and font-lock.
2034
2035 * progmodes/ada-mode.el (ada-mode-abbrev-table):
2036 Consolidate declaration.
2037 (ada-mode-syntax-table, ada-mode-symbol-syntax-table): Initialize in
2038 the declaration.
2039 (ada-create-syntax-table): Remove.
2040 (ada-capitalize-word): Don't mess with the syntax of "_" since it
2041 already has the right syntax nowadays.
2042 (ada-goto-next-word): Don't change the syntax of "_".
2043
2044 * font-lock.el (lisp-font-lock-keywords-2): Don't highlight obsolete
2045 with-wrapper-hook.
2046
2047 2013-05-08 Sam Steingold <sds@gnu.org>
2048
2049 * thingatpt.el (thing-at-point): Accept optional second argument
2050 NO-PROPERTIES to strip the text properties from the return value.
2051 * net/browse-url.el (browse-url-url-at-point): Pass NO-PROPERTIES
2052 to `thing-at-point' instead of stripping the properties ourselves.
2053 Also, when `thing-at-point' fails to find a url, prepend "http://"
2054 to the filename at point on the assumption that the user is
2055 pointing at something like gnu.org/gnu.
2056
2057 2013-05-08 Juanma Barranquero <lekktu@gmail.com>
2058
2059 * emacs-lisp/bytecomp.el (byte-compile-insert-header):
2060 * faces.el (crm-separator):
2061 Silence byte-compiler.
2062
2063 * progmodes/gud.el (gdb-speedbar-auto-raise, gud-tooltip-mode)
2064 (tool-bar-map): Remove unneeded defvars.
2065
2066 2013-05-08 Leo Liu <sdl.web@gmail.com>
2067
2068 Re-work a fix for bug#10994 based on Le Wang's patch.
2069 * ido.el (ido-remove-consecutive-dups): New helper.
2070 (ido-completing-read): Use it.
2071 (ido-chop): Revert fix for bug#10994.
2072
2073 2013-05-08 Adam Spiers <emacs@adamspiers.org>
2074
2075 * cus-edit.el (custom-save-variables):
2076 Pretty-print long values. (Bug#14187)
2077
2078 2013-05-08 Glenn Morris <rgm@gnu.org>
2079
2080 * progmodes/m4-mode.el (m4-program): Assume it is in PATH.
2081 (m4-mode-syntax-table): Init in the defvar.
2082 (m4-mode-abbrev-table): Let define-derived-mode define it.
2083
2084 2013-05-08 Tom Tromey <tromey@redhat.com>
2085
2086 * progmodes/m4-mode.el (m4-mode-syntax-table):
2087 Do not treat "_" as word constituent. (Bug#14167)
2088
2089 2013-05-07 Glenn Morris <rgm@gnu.org>
2090
2091 * eshell/em-hist.el (eshell-isearch-map): Initialize in the defvar.
2092 Remove explicit eshell-isearch-cancel-map.
2093
2094 * progmodes/f90.el (f90-smart-end-names): New option.
2095 (f90-smart-end): Doc fix.
2096 (f90-end-block-optional-name): New constant.
2097 (f90-block-match): Respect f90-smart-end-names.
2098
2099 2013-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
2100
2101 * progmodes/octave.el (octave-smie-forward-token): Be more careful
2102 about implicit semi-colons (bug#14218).
2103
2104 2013-05-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2105
2106 * frame.el (display-monitor-attributes-list)
2107 (frame-monitor-attributes): New functions.
2108
2109 2013-05-06 Leo Liu <sdl.web@gmail.com>
2110
2111 * progmodes/octave.el (octave-syntax-propertize-function): Change
2112 \'s syntax to escape when inside double-quoted strings. (Bug#14332)
2113 (octave-font-lock-keywords): Use octave-operator-regexp.
2114 (octave-completion-at-point): Rename from
2115 octave-completion-at-point-function.
2116 (inferior-octave-directory-tracker): Robustify.
2117 (octave-text-functions): Remove and fix its uses. No such things
2118 any more.
2119
2120 2013-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
2121
2122 * emacs-lisp/trace.el (trace--display-buffer): New function.
2123 (trace-make-advice): Use it.
2124
2125 2013-05-06 Juri Linkov <juri@jurta.org>
2126
2127 * emacs-lisp/lisp-mode.el (eval-defun-2): Doc fix. (Bug#14344)
2128 (eval-defun-2, eval-defun, eval-last-sexp, eval-last-sexp-1):
2129 Doc fix.
2130 (emacs-lisp-mode-map): Replace "minibuffer" with "echo area"
2131 in the help string. (Bug#12985)
2132
2133 2013-05-06 Kelly Dean <kellydeanch@yahoo.com> (tiny change)
2134
2135 * simple.el (shell-command-on-region): Doc fix. (Bug#14279)
2136
2137 2013-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
2138
2139 * progmodes/perl-mode.el: Add support for here documents.
2140 (perl-syntax-propertize-function): Match here-doc markers.
2141 (perl-syntax-propertize-special-constructs): Find their end.
2142 (perl-imenu-generic-expression): Use [:alnum:].
2143
2144 * emacs-lisp/nadvice.el (advice--member-p): Return the advice if found.
2145 (advice--add-function): Refresh the advice if already present
2146 (bug#14317).
2147
2148 2013-05-06 Ivan Andrus <darthandrus@gmail.com>
2149
2150 * find-file.el (cc-other-file-alist): Add ".m" for ObjC. (Bug#14339)
2151
2152 2013-05-06 Glenn Morris <rgm@gnu.org>
2153
2154 * w32-fns.el (w32-charset-info-alist): Declare.
2155
2156 * eshell/em-cmpl.el: Simply require pcomplete; eg we use a bunch
2157 of its defcustom properties.
2158 (eshell-cmpl-initialize): No need to load pcomplete.
2159
2160 * generic-x.el: No need to require comint when compiling.
2161
2162 * net/eudc-export.el: Make it loadable without bbdb.
2163 (top-level): Use require rather than load-library.
2164 (eudc-create-bbdb-record, eudc-bbdbify-phone)
2165 (eudc-batch-export-records-to-bbdb)
2166 (eudc-insert-record-at-point-into-bbdb, eudc-try-bbdb-insert):
2167 Require bbdb.
2168
2169 2013-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
2170
2171 * progmodes/octave.el (octave-texinfo-font-lock-keywords): Remove.
2172 (octave-font-lock-texinfo-comment): Use texinfo-font-lock-keywords with
2173 some tweaks, instead.
2174
2175 2013-05-05 Leo Liu <sdl.web@gmail.com>
2176
2177 * progmodes/octave.el (octave-font-lock-keywords)
2178 (octave-font-lock-texinfo-comment): Adjust for the byte-compiler.
2179 (inferior-octave-send-list-and-digest): Improve error message.
2180 (octave-mode, inferior-octave-mode): Use setq-local.
2181 (octave-help): Set info-lookup-mode.
2182
2183 2013-05-05 Richard Stallman <rms@gnu.org>
2184
2185 * vc/compare-w.el (compare-windows-whitespace):
2186 Treat no-break space as whitespace.
2187
2188 * mail/rmailsum.el (rmail-summary-rmail-update):
2189 Detect empty summary and don't change selected message.
2190 (rmail-summary-goto-msg): Likewise.
2191
2192 * mail/rmailsum.el (rmail-new-summary, rmail-new-summary-1):
2193 Doc fixes, rename args.
2194
2195 2013-05-05 Alan Mackenzie <acm@muc.de>
2196
2197 * progmodes/cc-defs.el (c-version): Increment to 5.32.5.
2198
2199 2013-05-05 Juri Linkov <juri@jurta.org>
2200
2201 * info.el (Info-read-subfile): Use (point-min) instead of (point)
2202 to not add the length of the summary segment to the return value.
2203 (Bug#14125)
2204
2205 2013-05-05 Leo Liu <sdl.web@gmail.com>
2206
2207 * progmodes/octave.el (inferior-octave-strip-ctrl-g)
2208 (inferior-octave-output-filter): Remove.
2209 (octave-send-region, inferior-octave-startup): Fix callers.
2210 (inferior-octave-mode-map): Don't use comint-dynamic-complete.
2211 (octave-binary-file-extensions): New user variable.
2212 (octave-find-definition): Confirm if opening binary files.
2213 (octave-help-file): Use octave-find-definition to get the binary
2214 confirmation.
2215 (octave-help): Adjust for octave-help-file change.
2216
2217 2013-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
2218
2219 * progmodes/pascal.el (pascal-font-lock-keywords): Use backquotes.
2220 Merge the two entries that handle function definitions.
2221 (pascal--syntax-propertize): New const.
2222 (pascal-mode): Use it. Use setq-local.
2223
2224 2013-05-04 Glenn Morris <rgm@gnu.org>
2225
2226 * calendar/diary-lib.el (diary-from-outlook-function): New variable.
2227 (diary-from-outlook): Respect diary-from-outlook-function.
2228
2229 2013-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
2230
2231 * simple.el (read-expression-map): Use completion-at-point (bug#14255).
2232 Move the declaration from C.
2233 (read-minibuffer, eval-minibuffer): Move from C.
2234 (completion-setup-function): Avoid minibuffer-completion-contents.
2235
2236 2013-05-03 Leo Liu <sdl.web@gmail.com>
2237
2238 * progmodes/octave.el (octave-font-lock-keywords): Do not
2239 dehighlight 'end' in comments or strings.
2240 (octave-completing-read, octave-goto-function-definition):
2241 New helpers.
2242 (octave-help-buffer): New user variable.
2243 (octave-help-file, octave-help-function): New button types.
2244 (octave-help): New command and bind it to C-h ;.
2245 (octave-find-definition): New command and bind it to M-.
2246 (user-error): Alias to error if not defined.
2247
2248 2013-05-02 Leo Liu <sdl.web@gmail.com>
2249
2250 * progmodes/octave.el (octave-mode-syntax-table): Correct syntax
2251 for \. (bug#14332)
2252 (octave-font-lock-keywords): Include [ and {.
2253
2254 2013-05-02 Leo Liu <sdl.web@gmail.com>
2255
2256 * progmodes/octave.el (inferior-octave-startup-file): Change default.
2257 (inferior-octave): Remove calling comint-mode and return the buffer.
2258 (inferior-octave-startup): Cosmetic changes.
2259
2260 2013-05-02 Leo Liu <sdl.web@gmail.com>
2261
2262 * progmodes/octave.el (octave-syntax-propertize-function):
2263 Include the case when ' is at line beginning. (Bug#14336)
2264
2265 2013-05-02 Glenn Morris <rgm@gnu.org>
2266
2267 * vc/vc-dir.el (vc-dir-mode): Don't autoload it for everyone.
2268 * desktop.el (vc-dir-mode): Just autoload it here.
2269
2270 2013-05-02 Alan Mackenzie <acm@muc.de>
2271
2272 Eliminate variable c-standard-font-lock-fontify-region-function.
2273 * progmodes/cc-mode.el
2274 (c-standard-font-lock-fontify-region-function): Remove.
2275 (c-font-lock-fontify-region, c-after-font-lock-init): Adapt.
2276
2277 2013-05-01 Leo Liu <sdl.web@gmail.com>
2278
2279 * progmodes/octave.el: Compatible with older emacs-24 releases.
2280 (inferior-octave-has-built-in-variables): Remove. Built-in
2281 variables were removed from Octave in 2007.
2282 (inferior-octave-startup): Fix uses.
2283 (comint-line-beginning-position): Remove compatibility code for
2284 emacs 21.
2285
2286 2013-05-01 Juri Linkov <juri@jurta.org>
2287
2288 * isearch.el (isearch-forward, isearch-mode): Doc fix. (Bug#13923)
2289
2290 2013-05-01 Juri Linkov <juri@jurta.org>
2291
2292 * comint.el (comint-previous-matching-input): Don't print message
2293 "History item: %d" when `isearch-mode' is active.
2294 (comint-history-isearch-message): Print message "History item: %d"
2295 when `comint-input-ring-index' is not empty and this function is
2296 called from `isearch-update' with a nil `ellipsis'. (Bug#13223)
2297
2298 2013-05-01 Leo Liu <sdl.web@gmail.com>
2299
2300 * progmodes/octave.el (octave-abbrev-table): Remove abbrev
2301 definitions. Use completion-at-point to insert keywords.
2302 (octave-abbrev-start): Remove.
2303 (inferior-octave-mode, octave-mode): Use :abbrev-table instead.
2304
2305 2013-04-30 Leo Liu <sdl.web@gmail.com>
2306
2307 * progmodes/octave.el (inferior-octave-prompt-read-only): Fix last
2308 change.
2309
2310 2013-04-30 Alan Mackenzie <acm@muc.de>
2311
2312 Handle arbitrarily long C++ member initialisation lists.
2313 * progmodes/cc-engine.el (c-back-over-member-initializers):
2314 new function.
2315 (c-guess-basic-syntax): New CASE 5R (extracted from 5B) to handle
2316 (most) member init lists.
2317
2318 2013-04-30 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
2319
2320 * progmodes/octave.el (inferior-octave-prompt-read-only): New user
2321 variable.
2322
2323 2013-04-30 Leo Liu <sdl.web@gmail.com>
2324
2325 * progmodes/octave.el (octave-variables): Remove. No builtin
2326 variables any more. All converted to functions.
2327 (octave-font-lock-keywords, octave-completion-at-point-function):
2328 Fix uses.
2329 (octave-font-lock-texinfo-comment): New user variable.
2330 (octave-texinfo-font-lock-keywords): New variable for texinfo
2331 comment block.
2332 (octave-function-comment-block): New face.
2333 (octave-font-lock-texinfo-comment): New function.
2334 (octave-mode): Font lock texinfo comment block.
2335
2336 2013-04-29 Leo Liu <sdl.web@gmail.com>
2337
2338 * progmodes/octave.el (octave-font-lock-keywords): Handle 'end' in
2339 indexing expression.
2340 (octave-continuation-string): Do not use \.
2341 (inferior-octave-complete-impossible): Remove.
2342 (inferior-octave-completion-table)
2343 (inferior-octave-completion-at-point): Remove its uses.
2344 (inferior-octave-startup): completion_matches was introduced to
2345 Octave in 1996 so safe to assume it.
2346 (octave-function-file-comment): Improve to follow how Octave does it.
2347 (octave-update-function-file-comment): Tweak.
2348
2349 2013-04-29 Leo Liu <sdl.web@gmail.com>
2350
2351 * progmodes/octave.el (inferior-octave-startup-hook): Obsolete.
2352 (inferior-octave-startup): Remove inferior-octave-startup-hook.
2353 (octave-function-file-comment): Fix typo.
2354 (octave-sync-function-file-names): Use read-char-choice.
2355
2356 2013-04-28 Jay Belanger <jay.p.belanger@gmail.com>
2357
2358 * calc/calc.el (math-normalize): Don't set `math-normalize-error'
2359 to t for the less important warnings.
2360
2361 2013-04-27 Darren Hoo <darren.hoo@gmail.com> (tiny change)
2362
2363 * isearch.el (isearch-fail-pos): Check for empty `cmds'. (Bug#14268)
2364
2365 2013-04-27 Glenn Morris <rgm@gnu.org>
2366
2367 * vc/log-view.el (log-view-current-entry):
2368 Treat "---" separator lines as part of the following rev. (Bug#14169)
2369
2370 2013-04-27 Juri Linkov <juri@jurta.org>
2371
2372 * subr.el (read-number): Doc fix about using it by interactive
2373 code letter `n'. (Bug#14254)
2374
2375 2013-04-27 Juri Linkov <juri@jurta.org>
2376
2377 * desktop.el (desktop-auto-save-timeout): New option.
2378 (desktop-file-checksum): New variable.
2379 (desktop-save): Add optional arg `auto-save' and don't auto-save
2380 if nothing changed.
2381 (desktop-auto-save-timer): New variable.
2382 (desktop-auto-save, desktop-auto-save-set-timer): New functions.
2383 (after-init-hook): Call `desktop-auto-save-set-timer'.
2384 Suggested by Reuben Thomas <rrt@sc3d.org> in
2385 <http://lists.gnu.org/archive/html/emacs-devel/2013-04/msg00327.html>.
2386
2387 2013-04-27 Leo Liu <sdl.web@gmail.com>
2388
2389 * progmodes/octave.el (octave-function-file-p)
2390 (octave-skip-comment-forward, octave-function-file-comment)
2391 (octave-update-function-file-comment): New functions.
2392 (octave-mode-map): Bind C-c ; to
2393 octave-update-function-file-comment.
2394 (octave-mode-menu): Add octave-update-function-file-comment.
2395 (octave-mode, inferior-octave-mode): Fix doc-string.
2396 (octave-insert-defun): Conform to Octave's coding convention.
2397 (Bug#14285)
2398
2399 * files.el (basic-save-buffer): Don't let errors in
2400 before-save-hook prevent saving buffer.
2401
2402 2013-04-20 Roland Winkler <winkler@gnu.org>
2403
2404 * faces.el (read-face-name): Use completing-read if arg multiple
2405 is nil.
2406
2407 2013-04-27 Ingo Lohmar <i.lohmar@gmail.com> (tiny change)
2408
2409 * ls-lisp.el (ls-lisp-insert-directory): If no files are
2410 displayed, move point to after the totals line.
2411 See http://lists.gnu.org/archive/html/emacs-devel/2013-04/msg00677.html
2412 for the details.
2413
2414 2013-04-27 Stefan Monnier <monnier@iro.umontreal.ca>
2415
2416 * emacs-lisp/package.el (package-autoload-ensure-default-file):
2417 Add current dir to the load-path.
2418 (package-generate-autoloads): Don't rely on
2419 autoload-ensure-default-file.
2420
2421 2013-04-26 Reuben Thomas <rrt@sc3d.org>
2422
2423 * textmodes/remember.el (remember-store-in-files): Document that
2424 the file name format is passed to `format-time-string'.
2425
2426 2013-04-26 Leo Liu <sdl.web@gmail.com>
2427
2428 * progmodes/octave.el (octave-sync-function-file-names): New function.
2429 (octave-mode): Use it in before-save-hook.
2430
2431 2013-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
2432
2433 * emacs-lisp/tabulated-list.el (tabulated-list-mode): Disable undo
2434 (bug#14274).
2435
2436 * progmodes/octave.el (octave-smie-forward-token): Properly skip
2437 \n and comment, even if it's not an implicit ; (bug#14218).
2438
2439 2013-04-26 Glenn Morris <rgm@gnu.org>
2440
2441 * subr.el (read-number): Once more use `read' rather than
2442 `string-to-number', to trap non-numeric input. (Bug#14254)
2443
2444 2013-04-26 Erik Charlebois <erikcharlebois@gmail.com>
2445
2446 * emacs-lisp/syntax.el (syntax-propertize-multiline):
2447 Use `syntax-multiline' text property consistently instead of
2448 `font-lock-multiline'. (Bug#14237)
2449
2450 2013-04-26 Glenn Morris <rgm@gnu.org>
2451
2452 * emacs-lisp/shadow.el (list-load-path-shadows):
2453 No longer necessary to check for duplicate simple.el, since
2454 2012-07-07 change to init_lread to not include installation lisp
2455 directories in load-path when running uninstalled. (Bug#14270)
2456
2457 2013-04-26 Leo Liu <sdl.web@gmail.com>
2458
2459 * progmodes/octave.el (octave-submit-bug-report): Obsolete.
2460 (octave-mode, inferior-octave-mode): Use setq-local.
2461 (octave-not-in-string-or-comment-p): Rename to
2462 octave-in-string-or-comment-p.
2463 (octave-in-comment-p, octave-in-string-p)
2464 (octave-in-string-or-comment-p): Replace defsubst with defun.
2465
2466 2013-04-25 Paul Eggert <eggert@cs.ucla.edu>
2467
2468 * Makefile.in (distclean): Remove $(lisp)/loaddefs.el~.
2469
2470 2013-04-25 Bastien Guerry <bzg@gnu.org>
2471
2472 * textmodes/remember.el (remember-data-directory)
2473 (remember-directory-file-name-format): Fix custom types.
2474
2475 2013-04-25 Leo Liu <sdl.web@gmail.com>
2476
2477 * progmodes/octave.el (octave-completion-at-point-function):
2478 Make use of inferior octave process.
2479 (octave-initialize-completions): Remove.
2480 (inferior-octave-completion-table): New function.
2481 (inferior-octave-completion-at-point): Use it.
2482 (octave-completion-alist): Remove.
2483
2484 2013-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
2485
2486 * progmodes/opascal.el: Use font-lock and syntax-propertize.
2487 (opascal-mode-syntax-table): New var.
2488 (opascal-literal-kind, opascal-is-literal-end)
2489 (opascal-literal-token-at): Rewrite.
2490 (opascal--literal-start-re, opascal-font-lock-keywords)
2491 (opascal--syntax-propertize): New constants.
2492 (opascal-font-lock-defaults): Adjust.
2493 (opascal-mode): Use them. Set comment-<foo> variables as well.
2494 (delphi-comment-face, opascal-comment-face, delphi-string-face)
2495 (opascal-string-face, delphi-keyword-face, opascal-keyword-face)
2496 (delphi-other-face, opascal-other-face): Remove face variables.
2497 (opascal-save-state): Remove macro.
2498 (opascal-fontifying-progress-step): Remove constant.
2499 (opascal--ignore-changes): Remove var.
2500 (opascal-set-token-property, opascal-parse-next-literal)
2501 (opascal-is-stable-literal, opascal-complete-literal)
2502 (opascal-is-literal-start, opascal-face-of)
2503 (opascal-parse-region, opascal-parse-region-until-stable)
2504 (opascal-fontify-region, opascal-after-change)
2505 (opascal-debug-show-is-stable, opascal-debug-unparse-buffer)
2506 (opascal-debug-parse-region, opascal-debug-parse-window)
2507 (opascal-debug-parse-buffer, opascal-debug-fontify-window)
2508 (opascal-debug-fontify-buffer): Remove.
2509 (opascal-debug-mode-map): Adjust accordingly.
2510
2511 2013-04-25 Leo Liu <sdl.web@gmail.com>
2512
2513 Merge octave-mod.el and octave-inf.el into octave.el with some
2514 cleanups.
2515 * progmodes/octave.el: New file renamed from octave-mod.el.
2516 * progmodes/octave-inf.el: Merged into octave.el.
2517 * progmodes/octave-mod.el: Renamed to octave.el.
2518
2519 2013-04-25 Tassilo Horn <tsdh@gnu.org>
2520
2521 * textmodes/reftex-vars.el
2522 (reftex-label-ignored-macros-and-environments): New defcustom.
2523
2524 * textmodes/reftex-parse.el (reftex-parse-from-file): Use it.
2525
2526 2013-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
2527
2528 * emacs-lisp/smie.el (smie-indent--hanging-p): Don't burp at EOB.
2529 (smie-indent-keyword): Improve the check to ensure that the next
2530 comment is really on the same line.
2531 (smie-indent-comment): Don't align with a subsequent closer (or eob).
2532
2533 * progmodes/octave-mod.el (octave-smie-forward-token): Only emit
2534 semi-colons if the line is not otherwise empty (bug#14218).
2535
2536 2013-04-25 Glenn Morris <rgm@gnu.org>
2537
2538 * vc/vc-bzr.el (vc-bzr-print-log): Tweak LIMIT = 1 case.
2539
2540 2013-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
2541
2542 * progmodes/opascal.el (opascal-set-token-property): Rename from
2543 opascal-set-text-properties and only set `token' (bug#14134).
2544 Suggested by Erik Knowles <eknowles@geosystemsoftware.com>.
2545 (opascal-literal-text-properties): Remove.
2546 (opascal-parse-next-literal, opascal-debug-unparse-buffer):
2547 Adjust callers.
2548
2549 2013-04-24 Reuben Thomas <rrt@sc3d.org>
2550
2551 * textmodes/remember.el (remember-handler-functions): Add an
2552 option for a new handler `remember-store-in-files'.
2553 (remember-data-directory, remember-directory-file-name-format):
2554 New options.
2555 (remember-store-in-files): New function to store remember notes
2556 as separate files within a directory.
2557
2558 2013-04-24 Magnus Henoch <magnus.henoch@gmail.com>
2559
2560 * progmodes/compile.el (compilation-next-error-function):
2561 Pass "formats" to compilation-find-file (bug#11777).
2562
2563 2013-04-24 Glenn Morris <rgm@gnu.org>
2564
2565 * vc/vc-bzr.el (vc-bzr-print-log):
2566 * vc/vc-hg.el (vc-hg-print-log):
2567 * vc/vc-svn.el (vc-svn-print-log):
2568 Fix START-REVISION with LIMIT != 1. (Bug#14168)
2569
2570 * vc/vc-bzr.el (vc-bzr-print-log):
2571 * vc/vc-cvs.el (vc-cvs-print-log):
2572 * vc/vc-git.el (vc-git-print-log):
2573 * vc/vc-hg.el (vc-hg-print-log):
2574 * vc/vc-mtn.el (vc-mtn-print-log):
2575 * vc/vc-rcs.el (vc-rcs-print-log):
2576 * vc/vc-sccs.el (vc-sccs-print-log):
2577 * vc/vc-svn.el (vc-svn-print-log):
2578 * vc/vc.el (vc-print-log-internal): Doc fixes.
2579
2580 2013-04-23 Glenn Morris <rgm@gnu.org>
2581
2582 * startup.el (normal-no-mouse-startup-screen, normal-about-screen):
2583 Remove venerable code attempting to avoid substitute-command-keys.
2584
2585 2013-04-23 Tassilo Horn <tsdh@gnu.org>
2586
2587 * textmodes/reftex-vars.el (reftex-label-regexps):
2588 Call `reftex-compile-variables' after changes to this variable.
2589
2590 2013-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
2591
2592 * jit-lock.el: Fix signals in jit-lock-force-redisplay (bug#13542).
2593 Use lexical-binding.
2594 (jit-lock-force-redisplay): Use markers, check buffer's continued
2595 existence and beware narrowed buffers.
2596 (jit-lock-fontify-now): Adjust call accordingly.
2597
2598 2013-04-22 Stefan Monnier <monnier@iro.umontreal.ca>
2599
2600 * minibuffer.el (minibuffer-completion-contents): Fix obsolescence info
2601 to avoid misleading the user.
2602
2603 2013-04-22 Leo Liu <sdl.web@gmail.com>
2604
2605 * info-look.el: Prefer latex2e.info. (Bug#14240)
2606
2607 2013-04-22 Michael Albinus <michael.albinus@gmx.de>
2608
2609 Fix pack/unpack coding. Reported by David Smith <davidsmith@acm.org>.
2610
2611 * net/tramp-compat.el (tramp-compat-call-process): Move function ...
2612 * net/tramp.el (tramp-call-process): ... here
2613 (tramp-set-completion-function, tramp-parse-putty):
2614 * net/tramp-adb.el (tramp-adb-execute-adb-command):
2615 * net/tramp-gvfs.el (tramp-gvfs-send-command):
2616 * net/tramp-sh.el (tramp-sh-handle-set-file-times)
2617 (tramp-set-file-uid-gid, tramp-sh-handle-write-region)
2618 (tramp-call-local-coding-command): Use `tramp-call-process'
2619 instead of `tramp-compat-call-process'.
2620
2621 * net/tramp-sh.el (tramp-perl-pack, tramp-perl-unpack): New defconst.
2622 (tramp-local-coding-commands, tramp-remote-coding-commands): Use them.
2623 (tramp-sh-handle-file-local-copy, tramp-sh-handle-write-region):
2624 (tramp-find-inline-compress): Improve traces.
2625 (tramp-maybe-send-script): Check for Perl binary.
2626 (tramp-get-inline-coding): Do not redirect STDOUT for local decoding.
2627
2628 2013-04-22 Daiki Ueno <ueno@gnu.org>
2629
2630 * epg.el (epg-context-pinentry-mode): New function.
2631 (epg-context-set-pinentry-mode): New function.
2632 (epg--start): Pass --pinentry-mode option to gpg command.
2633
2634 2013-04-21 Xue Fuqiao <xfq.free@gmail.com>
2635
2636 * comint.el (comint-dynamic-complete-functions, comint-mode-map):
2637 `comint-dynamic-complete' is obsolete since 24.1, replaced by
2638 `completion-at-point'. (Bug#13774)
2639
2640 * startup.el (normal-no-mouse-startup-screen): Bug fix, the
2641 default key binding for `describe-distribution' has been moved to
2642 `C-h C-o'. (Bug#13970)
2643
2644 2013-04-21 Glenn Morris <rgm@gnu.org>
2645
2646 * vc/vc.el (vc-print-log-setup-buttons, vc-print-log-internal):
2647 Add doc strings.
2648 (vc-print-log): Clarify interactive prompt.
2649
2650 2013-04-20 Glenn Morris <rgm@gnu.org>
2651
2652 * emacs-lisp/bytecomp.el (byte-compile-insert-header):
2653 No longer include timestamp etc information.
2654
2655 2013-04-20 Roland Winkler <winkler@gnu.org>
2656
2657 * faces.el (read-face-name): Bug fix, return just one face if arg
2658 multiple is nil. (Bug#14209)
2659
2660 2013-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
2661
2662 * emacs-lisp/nadvice.el (advice--where-alist): Add :override.
2663 (remove-function): Autoload.
2664
2665 * comint.el (comint-redirect-original-filter-function): Remove.
2666 (comint-redirect-cleanup, comint-redirect-send-command-to-process):
2667 * vc/vc-cvs.el (vc-cvs-annotate-process-filter)
2668 (vc-cvs-annotate-command):
2669 * progmodes/octave-inf.el (inferior-octave-send-list-and-digest):
2670 * progmodes/prolog.el (prolog-consult-compile):
2671 * progmodes/gdb-mi.el (gdb, gdb--check-interpreter):
2672 Use add/remove-function instead.
2673 * progmodes/gud.el (gud-tooltip-original-filter): Remove.
2674 (gud-tooltip-process-output, gud-tooltip-tips):
2675 Use add/remove-function instead.
2676 * progmodes/xscheme.el (xscheme-previous-process-state): Remove.
2677 (scheme-interaction-mode, exit-scheme-interaction-mode):
2678 Use add/remove-function instead.
2679
2680 * vc/vc-dispatcher.el: Use lexical-binding.
2681 (vc--process-sentinel): Rename from vc-process-sentinel.
2682 Change last arg to be the code to run. Don't use vc-previous-sentinel
2683 and vc-sentinel-commands any more.
2684 (vc-exec-after): Allow code to be a function. Use add/remove-function.
2685 (compilation-error-regexp-alist, view-old-buffer-read-only): Declare.
2686
2687 2013-04-19 Masatake YAMATO <yamato@redhat.com>
2688
2689 * progmodes/sh-script.el (sh-imenu-generic-expression):
2690 Handle function names with a single character. (Bug#14111)
2691
2692 2013-04-19 Dima Kogan <dima@secretsauce.net> (tiny change)
2693
2694 * progmodes/gud.el (gud-perldb-marker-filter): Understand position info
2695 for subroutines defined in an eval (bug#14182).
2696
2697 2013-04-19 Thierry Volpiatto <thierry.volpiatto@gmail.com>
2698
2699 * bookmark.el (bookmark-completing-read): Improve handling of empty
2700 string (bug#14176).
2701
2702 2013-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
2703
2704 * vc/vc-dispatcher.el (vc-do-command): Get rid of default sentinel msg.
2705
2706 2013-04-19 Fabián Ezequiel Gallina <fgallina@gnu.org>
2707
2708 New faster Imenu implementation (bug#14058).
2709 * progmodes/python.el:
2710 (python-imenu-prev-index-position):
2711 (python-imenu-format-item-label-function)
2712 (python-imenu-format-parent-item-label-function)
2713 (python-imenu-format-parent-item-jump-label-function):
2714 New vars.
2715 (python-imenu-format-item-label)
2716 (python-imenu-format-parent-item-label)
2717 (python-imenu-format-parent-item-jump-label)
2718 (python-imenu--put-parent, python-imenu--build-tree)
2719 (python-imenu-create-index, python-imenu-create-flat-index)
2720 (python-util-popn): New functions.
2721 (python-mode): Set imenu-create-index-function to
2722 python-imenu-create-index.
2723
2724 2013-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
2725
2726 * winner.el (winner-active-region): Use region-active-p, activate-mark
2727 and deactivate-mark (bug#14225).
2728
2729 * simple.el (deactivate-mark): Don't inline it.
2730
2731 2013-04-18 Michael Albinus <michael.albinus@gmx.de>
2732
2733 * net/tramp-sh.el (tramp-remote-process-environment): Add "TMOUT=0".
2734
2735 2013-04-18 Tassilo Horn <tsdh@gnu.org>
2736
2737 * files.el (auto-mode-alist): Delete OpenDocument and StarOffice
2738 file extensions from the archive-mode entry in order to prefer
2739 doc-view-mode-maybe with archive-mode as fallback (bug#14188).
2740
2741 2013-04-18 Leo Liu <sdl.web@gmail.com>
2742
2743 * bindings.el (help-event-list): Add ?\?.
2744
2745 2013-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
2746
2747 * subr.el (with-wrapper-hook): Declare obsolete.
2748 * simple.el (filter-buffer-substring-function): New hook.
2749 (filter-buffer-substring): Use it.
2750 (filter-buffer-substring-functions): Mark obsolete.
2751 * minibuffer.el (completion-in-region-function): New hook.
2752 (completion-in-region): Use it.
2753 (completion-in-region-functions): Mark obsolete.
2754 * mail/mailabbrev.el (mail-abbrevs-setup): Use abbrev-expand-function.
2755 * abbrev.el (abbrev-expand-function): New hook.
2756 (expand-abbrev): Use it.
2757 (abbrev-expand-functions): Mark obsolete.
2758 * emacs-lisp/nadvice.el (advice--where-alist): Add :filter-args
2759 and :filter-return.
2760
2761 2013-04-17 Fabián Ezequiel Gallina <fgallina@gnu.org>
2762
2763 * progmodes/python.el (python-nav--syntactically): Fix cornercases
2764 and do not care about match data.
2765
2766 2013-04-17 Stefan Monnier <monnier@iro.umontreal.ca>
2767
2768 * emacs-lisp/lisp.el (lisp-completion-at-point): Provide specialized
2769 completion tables when completing error conditions and
2770 `declare' arguments.
2771 (lisp-complete-symbol, field-complete): Mark as obsolete.
2772 (check-parens): Unmatched parens are user errors.
2773 * minibuffer.el (minibuffer-completion-contents): Mark as obsolete.
2774
2775 2013-04-17 Michal Nazarewicz <mina86@mina86.com>
2776
2777 * textmodes/flyspell.el (flyspell-check-pre-word-p): Return nil if
2778 command changed buffer (ie. `flyspell-pre-buffer' is not current
2779 buffer), which prevents making decisions based on invalid value of
2780 `flyspell-pre-point' in the wrong buffer. Most notably, this used to
2781 cause an error when `flyspell-pre-point' was nil after switching
2782 buffers.
2783 (flyspell-post-command-hook): No longer needs to change buffers when
2784 checking pre-word. While at it remove unnecessary progn.
2785
2786 2013-04-17 Nicolas Richard <theonewiththeevillook@yahoo.fr> (tiny change)
2787
2788 * textmodes/ispell.el (ispell-add-per-file-word-list):
2789 Fix `flyspell-correct-word-before-point' error when accepting
2790 words and `coment-padding' is an integer by using
2791 `comment-normalize-vars' (Bug #14214).
2792
2793 2013-04-17 Fabián Ezequiel Gallina <fgallina@gnu.org>
2794
2795 New defun movement commands.
2796 * progmodes/python.el (python-nav--syntactically)
2797 (python-nav--forward-defun, python-nav-backward-defun)
2798 (python-nav-forward-defun): New functions.
2799
2800 2013-04-17 Fabián Ezequiel Gallina <fgallina@gnu.org>
2801
2802 * progmodes/python.el (python-syntax--context-compiler-macro): New defun.
2803 (python-syntax-context): Use named compiler-macro for backwards
2804 compatibility with Emacs 24.x.
2805
2806 2013-04-17 Leo Liu <sdl.web@gmail.com>
2807
2808 * progmodes/octave-mod.el (octave-mode-map): Fix key binding to
2809 octave-hide-process-buffer.
2810
2811 2013-04-17 Stefan Monnier <monnier@iro.umontreal.ca>
2812
2813 * vc/vc-hg.el (vc-hg-annotate-re): Disallow ": " in file names
2814 (bug#14216).
2815
2816 2013-04-17 Jean-Philippe Gravel <jpgravel@gmail.com>
2817
2818 * progmodes/gdb-mi.el (gdbmi-bnf-incomplete-record-result):
2819 Fix adjustment of offset when receiving incomplete responses from GDB
2820 (bug#14129).
2821
2822 2013-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
2823
2824 * progmodes/python.el (python-mode-skeleton-abbrev-table): Rename from
2825 python-mode-abbrev-table.
2826 (python-skeleton-define): Adjust accordingly.
2827 (python-mode-abbrev-table): New table that inherits from it so that
2828 python-skeleton-autoinsert does not affect non-skeleton abbrevs.
2829
2830 * abbrev.el (abbrev--symbol): New function, extracted from abbrev-symbol.
2831 (abbrev-symbol): Use it.
2832 (abbrev--before-point): Use it since we already handle inheritance.
2833
2834 2013-04-16 Leo Liu <sdl.web@gmail.com>
2835
2836 * progmodes/octave-mod.el (octave-mode-map): Remove redundant key
2837 binding to info-lookup-symbol.
2838
2839 2013-04-16 Juanma Barranquero <lekktu@gmail.com>
2840
2841 * minibuffer.el (completion--twq-all):
2842 * term/ns-win.el (ns-initialize-window-system):
2843 * term/w32-win.el (w32-initialize-window-system): Silence byte-compiler.
2844
2845 2013-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
2846
2847 * emacs-lisp/nadvice.el (add-function): Default simple vars to their
2848 global bindings.
2849
2850 * doc-view.el (doc-view-start-process): Handle url-handler directories.
2851
2852 2013-04-15 Dmitry Gutov <dgutov@yandex.ru>
2853
2854 * progmodes/ruby-mode.el (ruby-beginning-of-defun)
2855 (ruby-end-of-defun, ruby-move-to-block): Bind `case-fold-search'
2856 to nil.
2857 (ruby-end-of-defun): Remove the unused arg, change the docstring
2858 to reflect that this function is only used as the value of
2859 `end-of-defun-function'.
2860 (ruby-beginning-of-defun): Remove "top-level" from the docstring,
2861 to reflect an earlier change that beginning/end-of-defun functions
2862 jump between methods in a class definition, as well as top-level
2863 functions.
2864
2865 2013-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
2866
2867 * minibuffer.el (minibuffer-complete): Don't just scroll
2868 a *Completions* that's been iconified.
2869 (minibuffer-force-complete): Make sure repetitions do cycle when going
2870 through completion-in-region -> minibuffer-complete.
2871
2872 2013-04-15 Alan Mackenzie <acm@muc.de>
2873
2874 Correct the placement of c-cpp-delimiters when there're #s not at
2875 col 0.
2876
2877 * progmodes/cc-langs.el (c-anchored-cpp-prefix): Reformulate and
2878 place a submatch around the #.
2879 * progmodes/cc-mode.el(c-neutralize-syntax-in-and-mark-CPP):
2880 Start a search at BOL. Put the c-cpp-delimiter category text propertiy
2881 on the #, not BOL.
2882
2883 2013-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
2884
2885 * emacs-lisp/nadvice.el: Properly test names when adding advice.
2886 (advice--member-p): New arg `name'.
2887 (advice--add-function, advice-member-p): Use it (bug#14202).
2888
2889 2013-04-15 Filipp Gunbin <fgunbin@fastmail.fm>
2890
2891 Reformulate java imenu-generic-expression.
2892 The old expression contained ill formed regexps.
2893
2894 * progmodes/cc-menus.el (cc-imenu-java-ellipsis-regexp)
2895 (cc-imenu-java-type-spec-regexp, cc-imenu-java-comment-regexp)
2896 (cc-imenu-java-method-arg-regexp): New defconsts.
2897 (cc-imenu-java-build-type-args-regex): New defun.
2898 (cc-imenu-java-generic-expression): Fix, to remove "ambiguous"
2899 handling of spaces in the regexp.
2900
2901 2013-03-15 Agustín Martín Domingo <agustin.martin@hispalinux.es>
2902
2903 * textmodes/ispell.el (ispell-command-loop): Remove
2904 flyspell highlight of a word when ispell accepts it (bug #14178).
2905
2906 2013-04-15 Michael Albinus <michael.albinus@gmx.de>
2907
2908 * net/ange-ftp.el (ange-ftp-run-real-handler-orig): New defun,
2909 uses code from the previous `ange-ftp-run-real-handler'.
2910 (ange-ftp-run-real-handler): Set it to `tramp-run-real-handler'
2911 only in case that function exist. This is needed for proper
2912 unloading of Tramp.
2913
2914 2013-04-15 Tassilo Horn <tsdh@gnu.org>
2915
2916 * textmodes/reftex-vars.el (reftex-label-regexps): New defcustom.
2917
2918 * textmodes/reftex.el (reftex-compile-variables): Use it.
2919
2920 2013-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
2921
2922 * files.el (normal-mode): Only use default major-mode if no other mode
2923 was specified.
2924
2925 * emacs-lisp/trace.el (trace-values): New function.
2926
2927 * files.el: Allow : in local variables (bug#14089).
2928 (hack-local-variable-regexp): New var.
2929 (hack-local-variables-prop-line, hack-local-variables): Use it.
2930
2931 2013-04-13 Roland Winkler <winkler@gnu.org>
2932
2933 * textmodes/bibtex.el (bibtex-search-entries): Bug fix. Use match
2934 data before it gets modified by bibtex-beginning-of-entry.
2935
2936 2013-04-13 Roland Winkler <winkler@gnu.org>
2937
2938 * textmodes/bibtex.el (bibtex-url): Doc fix.
2939
2940 2013-04-13 Roland Winkler <winkler@gnu.org>
2941
2942 * textmodes/bibtex.el (bibtex-initialize): If the current buffer
2943 does not visit a BibTeX file, exclude it from the list of buffers
2944 returned by bibtex-initialize.
2945
2946 2013-04-13 Stephen Berman <stephen.berman@gmx.net>
2947
2948 * window.el (split-window): Remove interactive form, since as a
2949 command this function is a special case of split-window-below.
2950 Correct doc string.
2951
2952 2013-04-12 Roland Winkler <winkler@gnu.org>
2953
2954 * faces.el (read-face-name): Do not override value of arg default.
2955 Allow single faces and strings as default values. Remove those
2956 elements from return value that are not faces.
2957 (describe-face): Simplify.
2958 (face-at-point): New optional args thing and multiple so that this
2959 function can provide the same functionality previously provided by
2960 read-face-name.
2961 (make-face-bold, make-face-unbold, make-face-italic)
2962 (make-face-unitalic, make-face-bold-italic, invert-face)
2963 (modify-face, read-face-and-attribute): Use face-at-point.
2964
2965 * cus-edit.el (customize-face, customize-face-other-window)
2966 * cus-theme.el (custom-theme-add-face)
2967 * face-remap.el (buffer-face-set)
2968 * facemenu.el (facemenu-set-face): Use face-at-point.
2969
2970 2013-04-12 Michael Albinus <michael.albinus@gmx.de>
2971
2972 * info.el (Info-file-list-for-emacs): Add "tramp" and "dbus".
2973
2974 2013-04-10 Tassilo Horn <tsdh@gnu.org>
2975
2976 * textmodes/reftex-cite.el (reftex-parse-bibtex-entry): Don't cut
2977 off leading { and trailing } from field values.
2978
2979 2013-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
2980
2981 * emacs-lisp/timer.el (timer--check): New function.
2982 (timer--time, timer-set-function, timer-event-handler): Use it.
2983 (timer-set-idle-time): Simplify.
2984 (timer--activate): CSE.
2985 (timer-event-handler): Give more info in error message.
2986 (internal-timer-start-idle): New function, moved from C.
2987
2988 * mpc.el (mpc-proc): Add `restart' argument.
2989 (mpc-proc-cmd): Use it.
2990 (mpc--status-timer-run): Also catch signals from `mpc-proc'.
2991 (mpc-status-buffer-show, mpc-tagbrowser-dir-toggle): Call `mpc-proc'
2992 less often.
2993
2994 2013-04-10 Masatake YAMATO <yamato@redhat.com>
2995
2996 * progmodes/sh-script.el: Implement `sh-mode' own
2997 `add-log-current-defun-function' (bug#14112).
2998 (sh-current-defun-name): New function.
2999 (sh-mode): Use the function.
3000
3001 2013-04-09 Bastien Guerry <bzg@gnu.org>
3002
3003 * simple.el (choose-completion-string): Fix docstring (bug#14163).
3004
3005 2013-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
3006
3007 * emacs-lisp/edebug.el (edebug-mode): Fix typo (bug#14144).
3008
3009 * emacs-lisp/timer.el (timer-event-handler): Don't retrigger a canceled
3010 timer (bug#14156).
3011
3012 2013-04-07 Nic Ferrier <nferrier@ferrier.me.uk>
3013
3014 * emacs-lisp/ert.el (should, should-not, should-error): Add edebug
3015 declaration.
3016
3017 2013-04-07 Leo Liu <sdl.web@gmail.com>
3018
3019 * pcmpl-x.el: New file.
3020
3021 2013-04-06 Dmitry Antipov <dmantipov@yandex.ru>
3022
3023 Do not set x-display-name until X connection is established.
3024 This is needed to prevent from weird situation described at
3025 <http://lists.gnu.org/archive/html/emacs-devel/2013-04/msg00212.html>.
3026 * frame.el (make-frame): Set x-display-name after call to
3027 window system initialization function, not before.
3028 * term/x-win.el (x-initialize-window-system): Add optional
3029 display argument and use it.
3030 * term/w32-win.el (w32-initialize-window-system):
3031 * term/ns-win.el (ns-initialize-window-system):
3032 * term/pc-win.el (msdos-initialize-window-system):
3033 Add compatible optional display argument.
3034
3035 2013-04-06 Eli Zaretskii <eliz@gnu.org>
3036
3037 * files.el (normal-backup-enable-predicate): On MS-Windows and
3038 MS-DOS compare truenames of temporary-file-directory and of the
3039 file, so that 8+3 aliases (usually found in $TEMP on Windows)
3040 don't fail comparison by compare-strings. Also, compare file
3041 names case-insensitively on MS-Windows and MS-DOS.
3042
3043 2013-04-05 Stefan Monnier <monnier@iro.umontreal.ca>
3044
3045 * emacs-lisp/package.el (package-compute-transaction): Fix last fix.
3046 Suggested by Donald Curtis <dcurtis@coe.edu> (bug#14082).
3047
3048 2013-04-05 Dmitry Gutov <dgutov@yandex.ru>
3049
3050 * whitespace.el (whitespace-color-on, whitespace-color-off):
3051 Only call `font-lock-fontify-buffer' when `font-lock-mode' is on.
3052
3053 2013-04-05 Jacek Chrząszcz <chrzaszcz@mimuw.edu.pl> (tiny change)
3054
3055 * ispell.el (ispell-set-spellchecker-params):
3056 Really set `ispell-args' for all equivs.
3057
3058 2013-04-05 Stefan Monnier <monnier@iro.umontreal.ca>
3059
3060 * ido.el (ido-completions): Use extra elements of ido-decorations
3061 (bug#14143).
3062 (ido-decorations): Update docstring.
3063
3064 2013-04-05 Michael Albinus <michael.albinus@gmx.de>
3065
3066 * autorevert.el (auto-revert-mode, auto-revert-tail-mode)
3067 (global-auto-revert-mode): Let-bind `auto-revert-use-notify' to
3068 nil during initialization, in order not to miss changes since the
3069 file was opened. (Bug#14140)
3070
3071 2013-04-05 Leo Liu <sdl.web@gmail.com>
3072
3073 * kmacro.el (kmacro-call-macro): Fix bug#14135.
3074
3075 2013-04-05 Jay Belanger <jay.p.belanger@gmail.com>
3076
3077 * calc/calc-units.el (calc-convert-units): Rewrite conditional.
3078
3079 2013-04-04 Glenn Morris <rgm@gnu.org>
3080
3081 * electric.el (electric-pair-inhibit-predicate): Add :version.
3082
3083 2013-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
3084
3085 * emacs-lisp/package.el (package-compute-transaction): Fix ordering
3086 when a package is required several times (bug#14082).
3087
3088 2013-04-04 Roland Winkler <winkler@gnu.org>
3089
3090 * faces.el (read-face-name): Behave as promised by the docstring.
3091 Assume that arg default is a list of faces.
3092 (describe-face): Call read-face-name with list of default faces.
3093
3094 2013-04-04 Thierry Volpiatto <thierry.volpiatto@gmail.com>
3095
3096 * bookmark.el: Fix deletion of bookmarks (bug#13972).
3097 (bookmark-bmenu-list): Don't toggle filenames if alist is empty.
3098 (bookmark-bmenu-execute-deletions): Only skip first line if it's
3099 the header.
3100 (bookmark-exit-hook-internal): Save even if list is empty.
3101
3102 2013-04-04 Yann Hodique <yann.hodique@gmail.com> (tiny change)
3103
3104 * emacs-lisp/package.el (package-pinned-packages): New var.
3105 (package--add-to-archive-contents): Obey it (bug#14118).
3106
3107 2013-04-03 Alan Mackenzie <acm@muc.de>
3108
3109 Handle `parse-partial-sexp' landing inside a comment opener (Bug#13244).
3110 Also adapt to the new values of element 7 of a parse state.
3111
3112 * progmodes/cc-engine.el (c-state-pp-to-literal): New optional
3113 parameter `not-in-delimiter'. Handle being inside comment opener.
3114 (c-invalidate-state-cache-1): Reckon with an extra "invalid"
3115 character in case we're typing a '*' after a '/'.
3116 (c-literal-limits): Handle the awkward "not-in-delimiter" cond arm
3117 instead by passing the parameter to c-state-pp-to-literal.
3118
3119 * progmodes/cc-fonts.el (c-font-lock-doc-comments): New handling
3120 for elt. 7 of a parse state.
3121
3122 2013-04-01 Paul Eggert <eggert@cs.ucla.edu>
3123
3124 Use UTF-8 for most files with non-ASCII characters (Bug#13936).
3125 * international/latin1-disp.el, international/mule-util.el:
3126 * language/cyril-util.el, language/european.el, language/ind-util.el:
3127 * language/lao-util.el, language/thai.el, language/tibet-util.el:
3128 * language/tibetan.el, language/viet-util.el:
3129 Switch from iso-2022-7bit to utf-8 or (if needed) utf-8-emacs.
3130
3131 2013-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
3132
3133 * electric.el (electric-pair-inhibit-predicate): New var (bug#14000).
3134 (electric-pair-post-self-insert-function): Use it.
3135 (electric-pair-default-inhibit): New function, extracted from
3136 electric-pair-post-self-insert-function.
3137
3138 2013-03-31 Roland Winkler <winkler@gnu.org>
3139
3140 * emacs-lisp/crm.el (completing-read-multiple): Doc fix.
3141
3142 2013-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
3143
3144 * hi-lock.el (hi-lock-mode): Cleanup after revert-buffer (bug#13891).
3145
3146 2013-03-30 Fabián Ezequiel Gallina <fabian@anue.biz>
3147
3148 Un-indent after "pass" and "return" statements (Bug#13888)
3149 * progmodes/python.el (python-indent-block-enders): New var.
3150 (python-indent-calculate-indentation): Use it.
3151
3152 2013-03-30 Michael Albinus <michael.albinus@gmx.de>
3153
3154 * net/tramp.el (tramp-drop-volume-letter): Make it an ordinary
3155 defun. Defining it as defalias could introduce too eager
3156 byte-compiler optimization. (Bug#14030)
3157
3158 2013-03-30 Chong Yidong <cyd@gnu.org>
3159
3160 * iswitchb.el (iswitchb-read-buffer): Fix typo.
3161
3162 2013-03-30 Leo Liu <sdl.web@gmail.com>
3163
3164 * kmacro.el (kmacro-call-macro): Add optional arg MACRO.
3165 (kmacro-execute-from-register): Pass the keyboard macro to
3166 kmacro-call-macro or repeating won't work correctly.
3167
3168 2013-03-30 Teodor Zlatanov <tzz@lifelogs.com>
3169
3170 * progmodes/subword.el: Back to using `forward-symbol'.
3171
3172 * subr.el (forward-whitespace, forward-symbol)
3173 (forward-same-syntax): Move from thingatpt.el.
3174
3175 2013-03-29 Leo Liu <sdl.web@gmail.com>
3176
3177 * kmacro.el (kmacro-to-register): New command.
3178 (kmacro-execute-from-register): New function.
3179 (kmacro-keymap): Bind to 'x'. (Bug#14071)
3180
3181 2013-03-29 Stefan Monnier <monnier@iro.umontreal.ca>
3182
3183 * mpc.el: Use defvar-local and setq-local.
3184 (mpc--proc-connect): Connection failures are not bugs.
3185 (mpc-mode-map): `follow-link' only applies to the buffer's content.
3186 (mpc-volume-map): Bind to the up-events.
3187
3188 2013-03-29 Teodor Zlatanov <tzz@lifelogs.com>
3189
3190 * progmodes/subword.el (superword-mode): Use `forward-sexp'
3191 instead of `forward-symbol'.
3192
3193 2013-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
3194
3195 * emacs-lisp/edebug.el (edebug-mode): Make it a minor mode.
3196 (edebug--recursive-edit): Use it.
3197 (edebug-kill-buffer): Don't let-bind kill-buffer-hook.
3198 (edebug-temp-display-freq-count): Don't let-bind buffer-read-only.
3199
3200 2013-03-28 Leo Liu <sdl.web@gmail.com>
3201
3202 * vc/vc-bzr.el (vc-bzr-revert): Don't backup. (Bug#14066)
3203
3204 2013-03-27 Eli Zaretskii <eliz@gnu.org>
3205
3206 * facemenu.el (list-colors-callback): New defvar.
3207 (list-colors-redisplay): New function.
3208 (list-colors-display): Install list-colors-redisplay as the
3209 revert-buffer-function. (Bug#14063)
3210
3211 2013-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
3212
3213 * minibuffer.el (completion-pcm--merge-completions): Make sure prefixes
3214 and suffixes don't overlap (bug#14061).
3215
3216 * case-table.el: Use lexical-binding.
3217 (case-table-get-table): New function.
3218 (get-upcase-table): Use it. Mark as obsolete. Adjust callers.
3219
3220 2013-03-27 Teodor Zlatanov <tzz@lifelogs.com>
3221
3222 * progmodes/subword.el: Add `superword-mode' to do word motion
3223 over symbol_words (parallels and leverages `subword-mode' which
3224 does word motion inside MixedCaseWords).
3225
3226 2013-03-27 Aidan Gauland <aidalgol@no8wireless.co.nz>
3227
3228 * eshell/em-unix.el: Move su and sudo to...
3229 * eshell/em-tramp.el: ...Eshell tramp module.
3230
3231 2013-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
3232
3233 * desktop.el (desktop--v2s): Rename from desktop-internal-v2s.
3234 Change return value to be a sexp. Delay `get-buffer' to after
3235 restoring the desktop (bug#13951).
3236
3237 2013-03-26 Leo Liu <sdl.web@gmail.com>
3238
3239 * register.el: Move semantic tag handling back to
3240 cedet/semantic/senator.el. (Bug#14052)
3241
3242 2013-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
3243
3244 * eshell/em-prompt.el (eshell-emit-prompt): Make sure we can't insert
3245 into the prompt either (bug#13963).
3246
3247 2013-03-25 Stefan Monnier <monnier@iro.umontreal.ca>
3248
3249 * font-lock.el (lisp-font-lock-keywords-2): Don't highlight the "error"
3250 part of "(error-foo)".
3251
3252 2013-03-24 Juri Linkov <juri@jurta.org>
3253
3254 * replace.el (list-matching-lines-prefix-face): New defcustom.
3255 (occur-1): Pass `list-matching-lines-prefix-face' to the function
3256 `occur-engine' if `face-differs-from-default-p' returns t.
3257 (occur-engine): Add `,' inside backquote construct to evaluate
3258 `prefix-face'. Propertize the prefix with the `prefix-face' face.
3259 Pass `prefix-face' to the functions `occur-context-lines' and
3260 `occur-engine-add-prefix'.
3261 (occur-engine-add-prefix, occur-context-lines): Add optional arg
3262 `prefix-face' and propertize the prefix with `prefix-face'.
3263 (Bug#14017)
3264
3265 2013-03-24 Leo Liu <sdl.web@gmail.com>
3266
3267 * nxml/rng-valid.el (rng-validate-while-idle)
3268 (rng-validate-quick-while-idle): Guard against deleted buffer.
3269 (Bug#13999)
3270
3271 * emacs-lisp/edebug.el (edebug-mode): Make sure edebug-kill-buffer
3272 is the last entry in kill-buffer-hook.
3273
3274 * files.el (kill-buffer-hook): Doc fix.
3275
3276 2013-03-23 Dmitry Gutov <dgutov@yandex.ru>
3277
3278 * emacs-lisp/lisp-mode.el (emacs-lisp-docstring-fill-column):
3279 Make it safe-local.
3280
3281 * vc/diff-mode.el (diff-mode-shared-map): Unbind "/" (Bug#14034).
3282
3283 2013-03-23 Leo Liu <sdl.web@gmail.com>
3284
3285 * nxml/nxml-util.el (nxml-with-unmodifying-text-property-changes):
3286 Remove.
3287
3288 * nxml/rng-valid.el (rng-validate-mode)
3289 (rng-after-change-function, rng-do-some-validation):
3290 * nxml/rng-maint.el (rng-validate-buffer):
3291 * nxml/nxml-rap.el (nxml-tokenize-forward, nxml-ensure-scan-up-to-date):
3292 * nxml/nxml-outln.el (nxml-show-all, nxml-set-outline-state):
3293 * nxml/nxml-mode.el (nxml-mode, nxml-degrade, nxml-after-change)
3294 (nxml-extend-after-change-region): Use with-silent-modifications.
3295
3296 * nxml/rng-nxml.el (rng-set-state-after): Do not let-bind
3297 timer-idle-list.
3298
3299 * nxml/rng-valid.el (rng-validate-while-idle-continue-p)
3300 (rng-next-error-1, rng-previous-error-1): Do not let-bind
3301 timer-idle-list. (Bug#13999)
3302
3303 2013-03-23 Juri Linkov <juri@jurta.org>
3304
3305 * info.el (info-index-match): New face.
3306 (Info-index, Info-apropos-matches): Add a nested subgroup to the
3307 main pattern and add text properties with the new face to matches
3308 in index entries relative to the beginning of the index entry.
3309 (Bug#14015)
3310
3311 2013-03-21 Eric Ludlam <zappo@gnu.org>
3312
3313 * eieio/eieio-datadebug.el (data-debug/eieio-insert-slots):
3314 Inhibit read only while inserting objects.
3315
3316 2013-03-22 Teodor Zlatanov <tzz@lifelogs.com>
3317
3318 * progmodes/cfengine.el: Update docs to mention
3319 `cfengine-auto-mode'. Use \_> and \_< instead of \> and \< for
3320 symbol motion. Remove "_" from the word syntax.
3321
3322 2013-03-21 Teodor Zlatanov <tzz@lifelogs.com>
3323
3324 * progmodes/cfengine.el (cfengine-common-syntax): Add "_" to word
3325 syntax for both `cfengine2-mode' and `cfengine3-mode'.
3326
3327 2013-03-20 Juri Linkov <juri@jurta.org>
3328
3329 * info.el (Info-next-reference-or-link)
3330 (Info-prev-reference-or-link): New functions.
3331 (Info-next-reference, Info-prev-reference): Use them.
3332 (Info-try-follow-nearest-node): Handle footnote navigation.
3333 (Info-fontify-node): Fontify footnotes. (Bug#13989)
3334
3335 2013-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
3336
3337 * subr.el (posn-point, posn-string): Fix it here instead (bug#13979).
3338 * mouse.el (mouse-on-link-p): Undo scroll-bar fix.
3339
3340 2013-03-20 Paul Eggert <eggert@cs.ucla.edu>
3341
3342 Suppress unnecessary non-ASCII chatter during build process.
3343 * international/ja-dic-cnv.el (skkdic-collect-okuri-nasi)
3344 (batch-skkdic-convert): Suppress most of the chatter.
3345 It's not needed so much now that machines are faster,
3346 and its non-ASCII component was confusing; see Dmitry Gutov in
3347 <http://lists.gnu.org/archive/html/emacs-devel/2013-03/msg00508.html>.
3348
3349 2013-03-20 Leo Liu <sdl.web@gmail.com>
3350
3351 * ido.el (ido-chop): Fix bug#10994.
3352
3353 2013-03-19 Dmitry Gutov <dgutov@yandex.ru>
3354
3355 * whitespace.el (whitespace-font-lock, whitespace-font-lock-mode):
3356 Remove vars.
3357 (whitespace-color-on, whitespace-color-off):
3358 Use `font-lock-fontify-buffer' (Bug#13817).
3359
3360 2013-03-19 Stefan Monnier <monnier@iro.umontreal.ca>
3361
3362 * mouse.el (mouse--down-1-maybe-follows-link): Fix follow-link
3363 remapping in mode-line.
3364 (mouse-on-link-p): Also check [mode-line follow-link] bindings.
3365
3366 2013-03-19 Dmitry Gutov <dgutov@yandex.ru>
3367
3368 * whitespace.el (whitespace-color-on): Use `prepend' OVERRIDE
3369 value for `whitespace-line' face (Bug#13875).
3370 (whitespace-font-lock-keywords): Change description.
3371 (whitespace-color-on): Don't save `font-lock-keywords' value, save
3372 the constructed keywords instead.
3373 (whitespace-color-off): Use `font-lock-remove-keywords' (Bug#13817).
3374
3375 2013-03-19 Leo Liu <sdl.web@gmail.com>
3376
3377 * progmodes/compile.el (compilation-display-error): New command.
3378 (compilation-mode-map, compilation-minor-mode-map): Bind it to
3379 C-o. (Bug#13992)
3380
3381 2013-03-18 Paul Eggert <eggert@cs.ucla.edu>
3382
3383 * term/x-win.el (x-keysym-pair): Add a Fixme (Bug#13936).
3384
3385 2013-03-18 Jan Djärv <jan.h.d@swipnet.se>
3386
3387 * mouse.el (mouse-on-link-p): Check for scroll bar (Bug#13979).
3388
3389 2013-03-18 Michael Albinus <michael.albinus@gmx.de>
3390
3391 * net/tramp-compat.el (tramp-compat-user-error): New defun.
3392
3393 * net/tramp-adb.el (tramp-adb-handle-shell-command):
3394 * net/tramp-gvfs.el (top):
3395 * net/tramp.el (tramp-find-method, tramp-dissect-file-name)
3396 (tramp-handle-shell-command): Use it.
3397 (tramp-dissect-file-name): Raise an error when hostname is a
3398 method name, and neither method nor user is specified.
3399
3400 * net/trampver.el: Update release number.
3401
3402 2013-03-18 Leo Liu <sdl.web@gmail.com>
3403
3404 Make sure eldoc can be turned off properly.
3405 * emacs-lisp/eldoc.el (eldoc-schedule-timer): Conditionalize on
3406 eldoc-mode.
3407 (eldoc-display-message-p): Revert last change.
3408 (eldoc-display-message-no-interference-p)
3409 (eldoc-print-current-symbol-info): Tweak.
3410
3411 2013-03-18 Tassilo Horn <tsdh@gnu.org>
3412
3413 * doc-view.el (doc-view-new-window-function): Check the new window
3414 overlay's display property instead the char property of the
3415 buffer's first char. Use `with-selected-window' instead of
3416 `save-window-excursion' with `select-window'.
3417 (doc-view-document->bitmap): Check the current doc-view overlay's
3418 display property instead the char property of the buffer's first char.
3419
3420 2013-03-18 Paul Eggert <eggert@cs.ucla.edu>
3421
3422 Automate the build of ja-dic.el (Bug#13984).
3423 * international/ja-dic-cnv.el (skkdic-convert): Remove the annotations
3424 from the input, rather than assume that it's been done for us by the
3425 SKK script unannotate.awk. Switch ja-dic.el to UTF-8. Don't put
3426 the current date into a ja-dic.el comment, as that complicates
3427 regression testing.
3428
3429 2013-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
3430
3431 * whitespace.el: Fix double evaluation.
3432 (whitespace-space, whitespace-hspace, whitespace-tab)
3433 (whitespace-newline, whitespace-trailing, whitespace-line)
3434 (whitespace-space-before-tab, whitespace-indentation)
3435 (whitespace-empty, whitespace-space-after-tab): Turn defcustoms into
3436 obsolete defvars.
3437 (whitespace-hspace-regexp): Fix regexp for emacs-unicode.
3438 (whitespace-color-on): Use a single font-lock-add-keywords call.
3439 Fix double-evaluation of face variables.
3440
3441 2013-03-17 Michael Albinus <michael.albinus@gmx.de>
3442
3443 * net/tramp-adb.el (tramp-adb-parse-device-names):
3444 Use `start-process' instead of `call-process'. Otherwise, the
3445 function might be blocked under MS Windows. (Bug#13299)
3446
3447 2013-03-17 Leo Liu <sdl.web@gmail.com>
3448
3449 Extend eldoc to display info in the mode-line. (Bug#13978)
3450 * emacs-lisp/eldoc.el (eldoc-post-insert-mode): New minor mode.
3451 (eldoc-mode-line-string): New variable.
3452 (eldoc-minibuffer-message): New function.
3453 (eldoc-message-function): New variable.
3454 (eldoc-message): Use it.
3455 (eldoc-display-message-p)
3456 (eldoc-display-message-no-interference-p):
3457 Support eldoc-post-insert-mode.
3458
3459 * simple.el (eval-expression-minibuffer-setup-hook): New hook.
3460 (eval-expression): Run it.
3461
3462 2013-03-17 Roland Winkler <winkler@gnu.org>
3463
3464 * emacs-lisp/crm.el (completing-read-multiple): Ignore empty
3465 strings in the list of return values.
3466
3467 2013-03-17 Jay Belanger <jay.p.belanger@gmail.com>
3468
3469 * calc/calc-ext.el (math-read-number-fancy): Check for an explicit
3470 radix before checking for HMS forms.
3471
3472 2013-03-16 Leo Liu <sdl.web@gmail.com>
3473
3474 * progmodes/scheme.el: Add indentation and font-locking for λ.
3475 (Bug#13975)
3476
3477 2013-03-16 Stefan Monnier <monnier@iro.umontreal.ca>
3478
3479 * emacs-lisp/smie.el (smie-auto-fill): Don't inf-loop if there's no
3480 token before point (bug#13942).
3481
3482 2013-03-16 Leo Liu <sdl.web@gmail.com>
3483
3484 * thingatpt.el (end-of-sexp): Fix bug#13952. Use syntax-after.
3485
3486 2013-03-16 Eli Zaretskii <eliz@gnu.org>
3487
3488 * startup.el (command-line-normalize-file-name): Fix handling of
3489 backslashes in DOS and Windows file names. Reported by Xue Fuqiao
3490 <xfq.free@gmail.com> in
3491 http://lists.gnu.org/archive/html/help-gnu-emacs/2013-03/msg00245.html.
3492
3493 2013-03-15 Michael Albinus <michael.albinus@gmx.de>
3494
3495 Sync with Tramp 2.2.7.
3496
3497 * net/trampver.el: Update release number.
3498
3499 2013-03-14 Tassilo Horn <tsdh@gnu.org>
3500
3501 * doc-view.el Fix bug#13887.
3502 (doc-view-insert-image): Don't modify overlay associated to
3503 non-live windows, and implement horizontal centering of image in
3504 case it's smaller than the window.
3505 (doc-view-new-window-function): Force redisplay of new windows on
3506 doc-view buffers.
3507
3508 2013-03-13 Karl Fogel <kfogel@red-bean.com>
3509
3510 * saveplace.el (save-place-alist-to-file): Don't sort
3511 `save-place-alist', just pretty-print it (bug#13882).
3512
3513 2013-03-13 Michael Albinus <michael.albinus@gmx.de>
3514
3515 * net/tramp-sh.el (tramp-sh-handle-insert-directory): Check,
3516 whether `default-file-name-coding-system' is bound. It isn't in
3517 XEmacs.
3518
3519 2013-03-13 Stefan Monnier <monnier@iro.umontreal.ca>
3520
3521 * emacs-lisp/byte-run.el (defun-declarations-alist): Don't use
3522 backquotes for `obsolete' (bug#13929).
3523
3524 * international/mule.el (find-auto-coding): Include file name in
3525 obsolescence warning (bug#13922).
3526
3527 2013-03-12 Teodor Zlatanov <tzz@lifelogs.com>
3528
3529 * progmodes/cfengine.el (cfengine-parameters-indent): New variable
3530 for CFEngine 3-specific indentation.
3531 (cfengine3-indent-line): Use it. Fix up category regex.
3532 (cfengine3-font-lock-keywords): Add bundle and namespace characters.
3533
3534 2013-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
3535
3536 * type-break.el (type-break-file-name):
3537 * textmodes/remember.el (remember-data-file):
3538 * strokes.el (strokes-file):
3539 * shadowfile.el (shadow-initialize):
3540 * saveplace.el (save-place-file):
3541 * ps-bdf.el (bdf-cache-file):
3542 * progmodes/idlwave.el (idlwave-config-directory):
3543 * net/quickurl.el (quickurl-url-file):
3544 * international/kkc.el (kkc-init-file-name):
3545 * ido.el (ido-save-directory-list-file):
3546 * emulation/viper.el (viper-custom-file-name):
3547 * emulation/vip.el (vip-startup-file):
3548 * calendar/todo-mode.el (todo-file-do, todo-file-done, todo-file-top):
3549 * calendar/timeclock.el (timeclock-file): Use locate-user-emacs-file.
3550
3551 2013-03-12 Paul Eggert <eggert@cs.ucla.edu>
3552
3553 Switch encodings of tutorials, thai-word to UTF-8 (Bug#13880).
3554 * language/thai-word.el: Switch to UTF-8.
3555
3556 2013-03-11 Stefan Monnier <monnier@iro.umontreal.ca>
3557
3558 * recentf.el (recentf-save-file): Use locate-user-emacs-file (bug#13870).
3559
3560 2013-03-11 Thierry Volpiatto <thierry.volpiatto@gmail.com>
3561
3562 * net/net-utils.el (net-utils-remove-ctrl-m-filter):
3563 Use with-current-buffer and don't move point.
3564 (net-utils-run-simple): Remove useless code.
3565 (net-utils-remove-ctl-m): Remove unused custom.
3566
3567 2013-03-11 Per Starbäck <starback@stp.lingfil.uu.se>
3568
3569 * international/characters.el (glyphless-set-char-table-range): New fun.
3570 (update-glyphless-char-display): Use it (bug#13744).
3571
3572 2013-03-11 Teodor Zlatanov <tzz@lifelogs.com>
3573
3574 * progmodes/cfengine.el: Update for CFEngine 3.4.2 and higher:
3575 namespaces in the syntax, indent closer for hanging brace
3576 correctly, allow single-quote delimited 'strings', and make
3577 `cfengine3-mode' the default.
3578
3579 2013-03-11 Jean-Philippe Gravel <jpgravel@gmail.com>
3580
3581 * progmodes/gdb-mi.el: Speed up initialization (bug#10580).
3582 Use lexical-binding. Fix up docstring according to conventions.
3583 (gdbmi-debug-mode): New var.
3584 (gdbmi-start-with, gdbmi-same-start, gdbmi-is-number, gdbmi-bnf-init)
3585 (gdbmi-bnf-output, gdbmi-bnf-skip-unrecognized, gdbmi-bnf-gdb-prompt)
3586 (gdbmi-bnf-result-record, gdbmi-bnf-out-of-band-record)
3587 (gdbmi-bnf-async-record, gdbmi-bnf-stream-record)
3588 (gdbmi-bnf-console-stream-output, gdbmi-bnf-target-stream-output)
3589 (gdbmi-bnf-log-stream-output, gdbmi-bnf-result-and-async-record-impl)
3590 (gdbmi-bnf-incomplete-record-result): New functions.
3591 (gdb-car<): Remove function.
3592 (gdbmi-record-list): Remove variable.
3593 (gdbmi-bnf-state, gdbmi-bnf-offset): New vars.
3594 (gdbmi-bnf-result-state-configs): New const.
3595 (gud-gdbmi-marker-filter): Rewrite.
3596 (gdb-ignored-notification, gdb-thread-created, gdb-thread-exited)
3597 (gdb-thread-selected, gdb-running, gdb-starting, gdb-stopped):
3598 Add `token' argument.
3599 (gdb-done, gdb-error): New functions.
3600 (gdb-done-or-error): Add `is-complete' argument. Change arg order.
3601
3602 2013-03-11 Stefan Monnier <monnier@iro.umontreal.ca>
3603
3604 * term/xterm.el (xterm--report-background-handler): Don't burp
3605 upon timeout.
3606 (xterm--version-handler): Extract from terminal-init-xterm.
3607 (xterm--query): Don't mishandle timeout. Remove debugging messages.
3608 Allow multiple handlers.
3609 (terminal-init-xterm): Handle OSX's Terminal.app's incorrect answer.
3610
3611 * term/xterm.el: Don't discard input (bug#6758). Use lexical-binding.
3612 (xterm--report-background-handler, xterm--query): New functions.
3613 (terminal-init-xterm): Use them.
3614
3615 2013-03-11 Michael R. Mauger <michael@mauger.com>
3616
3617 * progmodes/sql.el Version 3.2
3618 Please note that my address changed to <michael@mauger.com>;
3619 the <mmaug@yahoo.com> address remains active.
3620 (sql-connection-alist): Updates documentation to fix bug#13715.
3621 (sql-connect): Handle missing `sql-connection-alist' correctly.
3622 (sql-mode-oracle-font-lock-keywords): Add missing keywords.
3623 (sql-magic-go, sql-magic-semicolon): Mark with `delete-selection'
3624 property.
3625 (sql-default-value): New function.
3626 (sql-get-login-ext, sql-get-login): Fixes bug where buffer-local
3627 values were not used.
3628 (sql-rename-buffer): Make sure alternate buffer name has no text
3629 properties.
3630 (sql-input-sender, sql-execute-feature): Fetch variable with
3631 `buffer-local-value' rather than `with-current-buffer'.
3632 (sql-*): Use #' function syntax consistently.
3633 (sql-*): Use message/error/user-error consistently.
3634
3635 2013-03-11 Stefan Monnier <monnier@iro.umontreal.ca>
3636
3637 * xt-mouse.el (xterm-mouse-event-read): Remove.
3638 (xterm-mouse--read-event-sequence-1000)
3639 (xterm-mouse--read-event-sequence-1006): Use read-event instead.
3640
3641 2013-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
3642
3643 * term/xterm.el (xterm-function-map): Support format used with
3644 formatOtherKeys=1 (bug#13839).
3645
3646 * emacs-lisp/byte-run.el (dont-compile): Declare obsolete.
3647 (with-no-warnings): Use `declare'.
3648
3649 * whitespace.el (whitespace-enable-predicate): New variable.
3650 (whitespace-enable-predicate): Use it.
3651
3652 * comint.el (comint-send-input, comint-snapshot-last-prompt)
3653 (comint-output-filter, comint-update-fence):
3654 Use with-silent-modifications.
3655
3656 2013-03-10 Jambunathan K <kjambunathan@gmail.com>
3657
3658 * replace.el (occur-read-regexp-defaults-function): New var.
3659 (occur-read-regexp-defaults): New defun.
3660 (occur-read-primary-args): Propagate above change (bug#13892).
3661
3662 2013-03-09 Stefan Monnier <monnier@iro.umontreal.ca>
3663
3664 * mouse.el (mouse-drag-track): Remove left-over debugging code.
3665
3666 2013-03-09 Michael Albinus <michael.albinus@gmx.de>
3667
3668 Major rewrite due to changed D-Bus interface of GVFS 1.14.
3669
3670 * net/tramp-gvfs.el (top): Extend check for gvfs availability.
3671 (tramp-gvfs-methods-mounttracker, tramp-gvfs-listmounts)
3672 (tramp-gvfs-mountlocation, tramp-gvfs-mountlocation-signature):
3673 New defconst.
3674 (tramp-gvfs-file-name-handler-alist) [directory-files]
3675 [directory-files-and-attributes, file-exists-p, file-modes]:
3676 Use Tramp default handler.
3677 [file-acl, file-selinux-context, process-file, set-file-acl]:
3678 [set-file-modes, set-file-selinux-context, shell-command]:
3679 [start-file-process]: Remove handler.
3680 [verify-visited-file-modtime]: New handler.
3681 (tramp-gvfs-dbus-string-to-byte-array)
3682 (tramp-gvfs-dbus-byte-array-to-string): New defuns. Replace all
3683 calls of `dbus-string-to-byte-array' and
3684 `tramp-gvfs-dbus-byte-array-to-string'.
3685 (tramp-gvfs-handle-copy-file)
3686 (tramp-gvfs-handle-delete-directory)
3687 (tramp-gvfs-handle-delete-file, tramp-gvfs-handle-file-attributes)
3688 (tramp-gvfs-handle-file-directory-p)
3689 (tramp-gvfs-handle-file-executable-p)
3690 (tramp-gvfs-handle-file-name-all-completions)
3691 (tramp-gvfs-handle-file-readable-p)
3692 (tramp-gvfs-handle-file-writable-p)
3693 (tramp-gvfs-handle-insert-directory)
3694 (tramp-gvfs-handle-insert-file-contents)
3695 (tramp-gvfs-handle-make-directory, tramp-gvfs-handle-rename-file)
3696 (tramp-gvfs-handle-set-visited-file-modtime)
3697 (tramp-gvfs-handle-write-region): Rewrite.
3698 (tramp-gvfs-handle-file-acl)
3699 (tramp-gvfs-handle-file-selinux-context)
3700 (tramp-gvfs-handle-process-file, tramp-gvfs-handle-set-file-acl)
3701 (tramp-gvfs-handle-set-file-modes)
3702 (tramp-gvfs-handle-set-file-selinux-context)
3703 (tramp-gvfs-handle-shell-command)
3704 (tramp-gvfs-handle-start-file-process)
3705 (tramp-gvfs-handle-verify-visited-file-modtime): Remove defuns.
3706 (tramp-gvfs-url-file-name): Do not use `file-truename', we work
3707 over the symlinks. Fix user handling.
3708 (top, tramp-gvfs-handler-mounted-unmounted): Handle different names
3709 of the D-Bus signals.
3710 (tramp-gvfs-connection-mounted-p): Handle different names of the
3711 D-Bus methods.
3712 (tramp-gvfs-mount-spec-entry): New defun.
3713 (tramp-gvfs-mount-spec): Use it.
3714 (tramp-gvfs-maybe-open-connection): Check, that in case of "smb"
3715 there is a share name. Handle different names of the D-Bus
3716 signals and methods. Set connection properties needed for
3717 `tramp-check-cached-permissions'.
3718 (tramp-gvfs-send-command): Apply `tramp-gvfs-maybe-open-connection'.
3719 Return t or nil.
3720
3721 * net/tramp.el (tramp-backtrace): Move up.
3722 (tramp-error): Dump a backtrace into the debug buffer when
3723 `tramp-verbose > 9.
3724 (tramp-file-mode-type-map, tramp-file-mode-from-int)
3725 (tramp-file-mode-permissions, tramp-get-local-uid)
3726 (tramp-get-local-gid, tramp-check-cached-permissions): Move from
3727 tramp-sh.el.
3728
3729 * net/tramp-sh.el (tramp-file-mode-type-map)
3730 (tramp-check-cached-permissions, tramp-file-mode-from-int)
3731 (tramp-file-mode-permissions, tramp-get-local-uid)
3732 (tramp-get-local-gid): Move to tramp.el.
3733
3734 2013-03-09 Stefan Monnier <monnier@iro.umontreal.ca>
3735
3736 Separate mouse-1-click-follows-link from mouse-drag-region.
3737 * mouse.el (mouse--down-1-maybe-follows-link): New function.
3738 (key-translation-map): Use it to implement mouse-1-click-follows-link.
3739 (mouse-drag-line, mouse-drag-track):
3740 Remove mouse-1-click-follows-link code.
3741 (mouse--remap-link-click-p): Remove.
3742
3743 2013-03-08 Jambunathan K <kjambunathan@gmail.com>
3744
3745 * hi-lock.el (hi-lock-read-regexp-defaults-function): New var.
3746 (hi-lock-read-regexp-defaults): New defun.
3747 (hi-lock-line-face-buffer, hi-lock-face-buffer)
3748 (hi-lock-face-phrase-buffer): Propagate above change.
3749 Update docstring (bug#13892).
3750
3751 * subr.el (find-tag-default-as-regexp): New defun.
3752 * replace.el (read-regexp): Propagate above change.
3753
3754 2013-03-08 Jay Belanger <jay.p.belanger@gmail.com>
3755
3756 * calc/calc-units.el (calc-convert-units): Fix the way that default
3757 new units are stored.
3758
3759 2013-03-07 Matthias Meulien <orontee@gmail.com>
3760
3761 * bookmark.el: Define a face to highlight bookmark names in
3762 bookmark menu buffers, where the default is a bold face similarly
3763 to buffer names in buffer menu buffers.
3764 (bookmark-menu-bookmark): New face to highlight bookmark names.
3765 (bookmark-insert-location): Remove duplicated text property to
3766 conform to buffer list (see `list-buffers').
3767 (bookmark-bmenu-list, bookmark-bmenu-hide-filenames): Apply face
3768 `bookmark-menu-bookmark' to bookmark names.
3769
3770 2013-03-07 Matthias Meulien <orontee@gmail.com>
3771 Karl Fogel <kfogel@red-bean.com>
3772
3773 * bookmark.el: Display the bookmark list header similarly to the
3774 buffer list header (see `list-buffers'), where the default is now
3775 an immovable/immutable header line.
3776 (bookmark-bmenu-use-header-line): New variable.
3777 (bookmark-bmenu-inline-header-height): New name for
3778 `bookmark-bmenu-header-height', to avoid confusion with the code
3779 for the new immovable header. All references changed.
3780 (bookmark-bmenu-set-header): New function.
3781 (bookmark-bmenu-list, bookmark-bmenu-toggle-filenames):
3782 Conditionalize header construction accordingly.
3783 (bookmark-bmenu-ensure-position): Conditionalize the skipping of
3784 the inline header height.
3785 (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames):
3786 Conditionalize the skipping of the inline header height.
3787
3788 2013-03-07 Dmitry Gutov <dgutov@yandex.ru>
3789
3790 * progmodes/js.el (js--multi-line-declaration-indentation):
3791 Merge from js2-mode (https://github.com/mooz/js2-mode/issues/89).
3792
3793 2013-03-06 Dmitry Gutov <dgutov@yandex.ru>
3794
3795 * progmodes/ruby-mode.el (ruby-syntax-propertize-function):
3796 Only propertize regexp when not inside a string (Bug#13885).
3797
3798 2013-03-06 Alan Mackenzie <acm@muc.de>
3799
3800 Correct the position of point in some line-up functions.
3801 * progmodes/cc-align.el (c-lineup-whitesmith-in-block)
3802 (c-lineup-assignments, c-lineup-gcc-asm-reg ): Take position of
3803 point at column 0 rather than at a random place in the line.
3804
3805 2013-03-05 Michael Albinus <michael.albinus@gmx.de>
3806
3807 * net/tramp-compat.el (tramp-compat-delete-directory):
3808 Implement TRASH argument.
3809
3810 2013-03-05 Dmitry Gutov <dgutov@yandex.ru>
3811
3812 Keep pre-existing highlighting in completion candidates (Bug#13250).
3813 * minibuffer.el (completions-first-difference): State that the
3814 face is "added" in the docstring.
3815 (completions-common-part): Same. And don't inherit from default.
3816 (completion-hilit-commonality): Prepend 'completions-common-part
3817 and 'completion-first-difference faces to the 'face property,
3818 instead of replacing the value(s).
3819 (completion--insert-strings): Same with 'completions-annotations face.
3820 (completion-hilit-commonality): Use 'face instead of
3821 'font-lock-face, because it gets priority if the completion
3822 strings already have 'face set.
3823
3824 2013-03-04 Alan Mackenzie <acm@muc.de>
3825
3826 Replace `last-command-event' by `last-command-char' in XEmacs.
3827 * progmodes/cc-defs.el (c-last-command-char): New macro.
3828 * progmodes/cc-align.el (c-semi&comma-inside-parenlist)
3829 (c-semi&comma-no-newlines-before-nonblanks)
3830 (c-semi&comma-no-newlines-for-oneline-inliners): Use the new macro
3831 in place of `last-command-event'.
3832 * progmodes/cc-cmds.el (c-electric-pound, c-electric-brace)
3833 (c-electric-slash, c-electric-semi&comma, c-electric-lt-gt)
3834 (c-electric-paren, c-electric-continued-statement): Use the new
3835 macro in place of `last-command-event'.
3836
3837 2013-03-04 Glenn Morris <rgm@gnu.org>
3838
3839 * files.el (inhibit-local-variables-regexps):
3840 Add .diff and .patch. (Bug#13862)
3841
3842 2013-03-03 Michael Albinus <michael.albinus@gmx.de>
3843
3844 * net/tramp-adb.el (tramp-adb-maybe-open-connection): Cache,
3845 whether the "su" command is available on the device.
3846
3847 2013-03-01 Michael Albinus <michael.albinus@gmx.de>
3848
3849 * net/tramp-adb.el (tramp-adb-prompt): Extend regexp.
3850 (tramp-adb-handle-process-file): Remove superfluous setting.
3851 (tramp-adb-command-exit-status): Handle case that COMMAND is nil.
3852 (tramp-adb-barf-unless-okay): Use `tramp-adb-command-exit-status'.
3853 (tramp-adb-maybe-open-connection): Apply "su" if user is defined.
3854
3855 2013-03-01 Stefan Monnier <monnier@iro.umontreal.ca>
3856
3857 * textmodes/ispell.el: Fix nitpicks and byte-compiler warnings.
3858 (ispell-print-if-debug): Build `format' in. Avoid end-of-buffer.
3859 (ispell-parse-hunspell-affix-file): Avoid beginning-of-buffer.
3860 Use dict-key rather than dict-name for the error message.
3861
3862 2013-03-01 Thierry Volpiatto <thierry.volpiatto@gmail.com>
3863
3864 * net/net-utils.el (net-utils-run-simple): Don't display-buffer
3865 when reverting (bug#13831).
3866
3867 2013-03-01 Agustín Martín Domingo <agustin.martin@hispalinux.es>
3868
3869 * textmodes/ispell.el (ispell-find-hunspell-dictionaries):
3870 Always expand affix-file before storing to protect against changed
3871 `default-directory'.
3872 (ispell-print-if-debug): Make sure message is printed at the end
3873 of the debug buffer.
3874
3875 2013-03-01 Michael Albinus <michael.albinus@gmx.de>
3876
3877 * net/tramp.el (tramp-obsolete-methods): New defconst.
3878 (tramp-warned-obsolete-methods): New defvar.
3879 (tramp-find-method): Check for obsolete methods. Map them to a
3880 replacement method if appropriate.
3881
3882 * net/tramp-sh.el (tramp-methods) [scp1, scp2, ssh1, ssh2, plink1]:
3883 Remove methods.
3884 (top): Remove completion functions for "scp1", "scp2", "ssh1",
3885 "ssh2" and "plink1".
3886
3887 2013-02-28 Dale Sedivec <dale@codefu.org>
3888
3889 * textmodes/sgml-mode.el (sgml-syntax-propertize-function):
3890 Return valid syntax-table property value when converting
3891 quotes within text from string syntax to punctuation syntax (bug#13844).
3892
3893 2013-02-28 Juri Linkov <juri@jurta.org>
3894
3895 * dired-aux.el (dired-diff): If file at point is a backup file,
3896 use its original as the default value, and reverse the order
3897 of arguments to the `diff' call. Doc fix. (Bug#13772)
3898
3899 2013-02-28 Michael Albinus <michael.albinus@gmx.de>
3900
3901 * net/tramp-adb.el (tramp-adb-sdk-dir): Remove. Replaced by ...
3902 (tramp-adb-program): New defcustom. Remove function. Adapt calls.
3903
3904 2013-02-28 Agustín Martín Domingo <agustin.martin@hispalinux.es>
3905
3906 Initial support for hunspell dictionaries auto-detection (Bug#13639)
3907
3908 * textmodes/ispell.el (ispell-find-hunspell-dictionaries):
3909 Ask hunspell about available and default dictionaries.
3910 (ispell-parse-hunspell-affix-file): Extract relevant info from
3911 hunspell affix file.
3912 (ispell-hunspell-fill-dictionary-entry): Fill non-initialized
3913 `ispell-dictionary-alist' entry for given dictionary after info
3914 provided by `ispell-parse-hunspell-affix-file'.
3915 (ispell-hunspell-dict-paths-alist): New defvar to contain an alist
3916 of parsed hunspell dicts and associated affix files.
3917 (ispell-hunspell-dictionary-alist): New defvar to contain an alist
3918 of parsed hunspell dicts and associated parameters.
3919 (ispell-set-spellchecker-params):
3920 Call `ispell-find-hunspell-dictionaries' if hunspell and not
3921 previously done.
3922 (ispell-start-process):
3923 Call `ispell-hunspell-fill-dictionary-entry' for current
3924 dictionary if it is not initialized.
3925
3926 2013-02-28 Stefan Monnier <monnier@iro.umontreal.ca>
3927
3928 * imenu.el: Comment nitpicks.
3929
3930 2013-02-28 Sam Steingold <sds@gnu.org>
3931
3932 * vc/diff-mode.el (diff-hunk-file-names): Handle filenames with spaces.
3933 See <http://stackoverflow.com/questions/14720205>.
3934
3935 2013-02-28 Thierry Volpiatto <thierry.volpiatto@gmail.com>
3936
3937 * net/net-utils.el (net-utils--revert-function): New fun (bug#13831).
3938 (net-utils-mode): Use it.
3939 (net-utils--revert-cmd): New var.
3940 (net-utils-run-simple): Set it, and remove bogus interactive spec.
3941 (traceroute): Use net-utils-run-simple.
3942
3943 2013-02-28 Glenn Morris <rgm@gnu.org>
3944
3945 * textmodes/paragraphs.el (mark-paragraph): Doc fix.
3946
3947 2013-02-28 Stefan Monnier <monnier@iro.umontreal.ca>
3948
3949 * doc-view.el: Preserve h&v scroll across C-c C-c C-c C-c.
3950 (doc-view-fallback-mode): Remove overlays here.
3951 (doc-view-toggle-display): Instead of here. Don't throw away
3952 image-mode-winprops-alist.
3953 (doc-view-goto-page): Don't mess with hscroll.
3954
3955 2013-02-27 Thierry Volpiatto <thierry.volpiatto@gmail.com>
3956
3957 * font-lock.el (lisp-font-lock-keywords-2): Fix highlighting of
3958 &optional (bug#13819).
3959
3960 2013-02-27 Michael Albinus <michael.albinus@gmx.de>
3961
3962 * net/tramp-adb.el (tramp-adb-parse-device-names)
3963 (tramp-adb-maybe-open-connection): Add timeouts. (Bug#13299)
3964
3965 2013-02-26 Michael Albinus <michael.albinus@gmx.de>
3966
3967 * net/tramp-sh.el (tramp-sh-handle-insert-directory):
3968 Add "2>/dev/null" to the ls command, in case "en_US.utf8" is not
3969 defined. POSIX environments fall back to the "C" locale then and
3970 emit a warning, which shall be suppressed.
3971
3972 2013-02-26 Stefan Monnier <monnier@iro.umontreal.ca>
3973
3974 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode): Tweak logic.
3975 (easy-mmode-set-keymap-parents): Use make-composed-keymap.
3976
3977 2013-02-25 Stefan Monnier <monnier@iro.umontreal.ca>
3978
3979 * emacs-lisp/bytecomp.el (byte-compile-file): Use let.
3980
3981 2013-02-25 Juri Linkov <juri@jurta.org>
3982
3983 * replace.el (read-regexp): Let-bind `default' to the first
3984 element of `defaults' if it's a list, otherwise it should be
3985 a string or nil. Let-bind `suggestions' to `defaults' if it's
3986 a list, otherwise make a list with the string value. Doc fix.
3987 (Bug#13805)
3988
3989 2013-02-25 Eli Zaretskii <eliz@gnu.org>
3990
3991 * emacs-lisp/bytecomp.el (byte-recompile-directory): Reject files
3992 that match "\`\.#", to avoid compiling lock files, even if they
3993 are readable (as they are on MS-Windows).
3994
3995 2013-02-25 Stefan Monnier <monnier@iro.umontreal.ca>
3996
3997 * files.el (basic-save-buffer): Remove redundant directory-creation.
3998
3999 2013-02-24 Jay Belanger <jay.p.belanger@gmail.com>
4000
4001 * calc/calc-ext.el (math-to-radians-2, math-from-radians-2):
4002 Add option to force `pi' to remain symbolic.
4003 * calc/calcalg2.el (calcFunc-sin, calcFunc-cos, calcFunc-tan)
4004 (calcFunc-cot, calcFunc-csc, calcFunc-sec, calcFunc-arcsin)
4005 (calcFunc-arccos, calcFunc-arctan): Use symbolic `pi' in the
4006 derivatives, when necessary.
4007
4008 2013-02-23 Peter Kleiweg <p.c.j.kleiweg@rug.nl>
4009
4010 * progmodes/ps-mode.el (ps-mode-version): Bump to 1.1i.
4011 (ps-mode-octal-region): Use string-make-unibyte.
4012
4013 2013-02-23 Glenn Morris <rgm@gnu.org>
4014
4015 * emulation/viper-cmd.el (viper-submit-report):
4016 * progmodes/ps-mode.el (ps-mode-maintainer-address):
4017 * progmodes/vera-mode.el (vera-mode-help-address):
4018 * textmodes/artist.el (artist-maintainer-address):
4019 * textmodes/reftex.el (reftex-report-bug):
4020 * vc/ediff-util.el (ediff-submit-report):
4021 Add bug-gnu-emacs to bug report address.
4022
4023 * progmodes/simula.el (simula-mode-menu, simula-mode-map):
4024 Remove bug report entries.
4025 (simula-mode-help-address, simula-submit-bug-report): Make obsolete.
4026
4027 * emacs-lisp/bytecomp.el (byte-compile-level): New.
4028 (byte-compile-file, byte-compile-from-buffer):
4029 Use separate input/output buffers for each level of recursive
4030 byte-compile-file calls. (Bug#13787)
4031
4032 2013-02-23 Michael Albinus <michael.albinus@gmx.de>
4033
4034 * net/tramp.el (tramp-methods): Fix docstring.
4035 (tramp-ssh-controlmaster-options): Rename it from
4036 `tramp-ssh-controlmaster-template'. Return a string.
4037 (tramp-default-method): Adapt check for
4038 `tramp-ssh-controlmaster-options'.
4039
4040 * net/tramp-sh.el (tramp-methods):
4041 Replace `tramp-ssh-controlmaster-template' by "%c".
4042 (tramp-do-copy-or-rename-file-out-of-band)
4043 (tramp-maybe-open-connection): Use it in format spec. Ensure,
4044 that it is applied for the first hop only.
4045
4046 2013-02-22 Juri Linkov <juri@jurta.org>
4047
4048 * isearch.el (isearch-lazy-highlight-new-loop):
4049 Set `isearch-lazy-highlight-start' and `isearch-lazy-highlight-end'
4050 to `isearch-other-end' if it is not nil. (Bug#13402)
4051
4052 * replace.el (replace-highlight): Let-bind `isearch-other-end'
4053 to `match-beg'.
4054
4055 * textmodes/ispell.el (ispell-highlight-spelling-error-overlay):
4056 Let-bind `isearch-other-end' to `start', `isearch-forward' to t
4057 and `isearch-error' to nil.
4058
4059 2013-03-16 Fabián Ezequiel Gallina <fgallina@cuca>
4060
4061 * progmodes/python.el (python-info-current-defun):
4062 Enhance match-data cluttering prevention.
4063
4064 2013-02-22 Michael Albinus <michael.albinus@gmx.de>
4065
4066 * net/tramp.el (tramp-tramp-file-p): Fix docstring.
4067
4068 * net/tramp-sh.el (tramp-sh-handle-insert-directory):
4069 Handle multibyte file names.
4070
4071 2013-02-22 Glenn Morris <rgm@gnu.org>
4072
4073 * textmodes/sgml-mode.el (sgml-xml-mode): Move before use.
4074 (sgml-transformation-function): Give it a :set function.
4075 (sgml-tag): Doc fix.
4076
4077 * cmuscheme.el (scheme-buffer):
4078 * progmodes/inf-lisp.el (inferior-lisp-buffer):
4079 * progmodes/tcl.el (inferior-tcl-buffer):
4080 * textmodes/tex-mode.el (tex-command): Doc fixes.
4081
4082 * image-mode.el (image-mode): Add mouse bindings for mode-line-process.
4083
4084 * htmlfontify.el (hfy-default-header): Encode title string. (Bug#7457)
4085
4086 2013-02-21 Bastien Guerry <bzg@gnu.org>
4087
4088 * cmuscheme.el (scheme-buffer): Fix docstring. (Bug#13778)
4089
4090 2013-02-21 Fabián Ezequiel Gallina <fgallina@cuca>
4091
4092 * progmodes/python.el (python-info-current-defun):
4093 Enhance match-data cluttering prevention.
4094
4095 2013-02-21 Glenn Morris <rgm@gnu.org>
4096
4097 * net/tramp.el (tramp-get-debug-buffer): Ensure outline.el is not
4098 loaded while outline-regexp is let bound. (Bug#9584)
4099
4100 2013-02-21 Fabián Ezequiel Gallina <fgallina@cuca>
4101
4102 * progmodes/python.el (python-info-current-defun): Fix failed
4103 defun name retrieval because of unwanted match-data cluttering.
4104
4105 2013-02-21 Michael Albinus <michael.albinus@gmx.de>
4106
4107 * net/tramp.el (tramp-ssh-controlmaster-template): Make it a
4108 defconst. Apply independent check for ControlPersist.
4109
4110 * net/tramp-sh.el (tramp-sh-handle-set-file-times): Set $UTC only
4111 temporarily, via "env".
4112
4113 2013-02-21 Glenn Morris <rgm@gnu.org>
4114
4115 * info.el (Info-enable-edit): Remove.
4116 (Info-edit): Disable it rather than using Info-enable.
4117 (Info-edit-mode-hook, Info-edit-map, Info-edit-mode, Info-edit)
4118 (Info-cease-edit): Make editing of Info files obsolete.
4119
4120 * informat.el (Info-tagify):
4121 Handle buffers not visiting files. (Bug#13763)
4122
4123 2013-02-21 Juanma Barranquero <lekktu@gmail.com>
4124
4125 * calc/calc-graph.el (calc-graph-show-dumb): Fix typo.
4126
4127 2013-02-21 Glenn Morris <rgm@gnu.org>
4128
4129 * files.el (basic-save-buffer): Move check for existing parent
4130 directory after hooks. (Bug#13773)
4131
4132 2013-02-20 Stefan Monnier <monnier@iro.umontreal.ca>
4133
4134 * simple.el (command-execute): Move from C. Add obsolete check.
4135 (extended-command-history): Move from C.
4136
4137 2013-02-20 Ulrich Müller <ulm@gentoo.org>
4138
4139 * jka-cmpr-hook.el (jka-compr-compression-info-list)
4140 (jka-compr-mode-alist-additions): Handle .txz suffix for
4141 XZ-compressed tar archives (bug#13770).
4142
4143 2013-02-20 Bastien Guerry <bzg@gnu.org>
4144
4145 * outline.el (outline-regexp, outline-heading-end-regexp):
4146 Make variables, not options (bug#13731).
4147
4148 2013-02-20 Glenn Morris <rgm@gnu.org>
4149
4150 * image.el (image-current-frame): Change from variable to function.
4151 (image-show-frame): Rename from image-nth-frame. Update callers.
4152 * image-mode.el (image-multi-frame): New variable.
4153 (image-mode-map, image-mode, image-goto-frame):
4154 Use image-multi-frame rather than image-current-frame.
4155 (image-mode, image-goto-frame): Use image-current-frame as
4156 function rather than as variable.
4157
4158 * emacs-lisp/cl-lib.el (cl-floatp-safe): Make it an alias for floatp.
4159 * emacs-lisp/cl-macs.el (cl--make-type-test)
4160 (cl--compiler-macro-assoc): Use floatp rather than cl-floatp-safe.
4161
4162 2013-02-19 Michael Albinus <michael.albinus@gmx.de>
4163
4164 * net/tramp-cache.el (tramp-get-hash-table): New defun.
4165 (tramp-get-file-property, tramp-set-file-property)
4166 (tramp-get-connection-property, tramp-set-connection-property): Use it.
4167 (tramp-flush-file-property, tramp-flush-directory-property):
4168 Rename argument to KEY.
4169 (tramp-flush-connection-property): Simplify a little bit.
4170 (tramp-connection-property-p): New defun.
4171 (top): Reapply saved values only if there isn't a corresponding
4172 entry in `tramp-connection-properties'.
4173
4174 2013-02-19 Fabián Ezequiel Gallina <fgallina@cuca>
4175
4176 * progmodes/python.el (python-indent-context):
4177 Fix python-info-line-ends-backslash-p call.
4178 (python-info-line-ends-backslash-p)
4179 (python-info-beginning-of-backslash): Respect line-number argument.
4180 (python-info-current-line-comment-p):
4181 Fix behavior when not at beginning-of-line.
4182 (python-util-position): Remove function.
4183 (python-util-goto-line): New function.
4184
4185 2013-02-19 Michael Albinus <michael.albinus@gmx.de>
4186
4187 * eshell/em-unix.el (eshell/su): Require tramp.
4188 (eshell/sudo): Require tramp. Remove now unnecessary check.
4189
4190 * net/tramp-sh.el (tramp-sh-handle-start-file-process): Let-bind
4191 `tramp-current-connection' in order to avoid an error when several
4192 commands are invoked in a short time in eshell and friends.
4193
4194 2013-02-19 Stefan Monnier <monnier@iro.umontreal.ca>
4195
4196 Cleanup some of EIEIO's namespace.
4197 * emacs-lisp/eieio.el (eieio--define-field-accessors): New macro.
4198 Use it to define all the class-* and object-* field accessors (renamed
4199 to eieio--class-* and eieio--object-*). Update all uses.
4200 (eieio--class-num-slots, eieio--object-num-slots): Rename from
4201 class-num-slots and object-num-slots.
4202 (eieio--check-type): New macro.
4203 (eieio-defclass, eieio-oref, eieio-oref-default, same-class-p)
4204 (object-of-class-p, child-of-class-p, object-slots, class-slot-initarg)
4205 (eieio-oset, eieio-oset-default, object-assoc, object-assoc-list)
4206 (object-assoc-list-safe): Use it.
4207 (eieio-defclass): Tighten regexp.
4208 (eieio--defmethod): Use `memq'. Signal an error for unknown method kind.
4209 Remove unreachable code.
4210 (object-class-fast): Declare obsolete.
4211 (eieio-class-name, eieio-object-name, eieio-object-set-name-string)
4212 (eieio-object-class, eieio-object-class-name, eieio-class-parents)
4213 (eieio-class-children, eieio-class-precedence-list, eieio-class-parent):
4214 Rename from class-name, object-name, object-set-name-string,
4215 object-class, object-class-name, class-parents, class-children,
4216 class-precedence-list, class-parent; with obsolete alias.
4217 (class-of, class-direct-superclasses, class-direct-subclasses):
4218 Declare obsolete.
4219 (eieio-defmethod): Use `memq'; remove unreachable code.
4220 * emacs-lisp/eieio-base.el (eieio-persistent-read):
4221 * emacs-lisp/eieio-opt.el (eieio-class-button, eieio-describe-generic)
4222 (eieio-browse-tree, eieio-browse): Use eieio--check-type.
4223
4224 2013-02-18 Aidan Gauland <aidalgol@no8wireless.co.nz>
4225
4226 * eshell/em-cmpl.el: Correct "context-related help" keybinding in
4227 commentary.
4228
4229 2013-02-18 Michael Heerdegen <michael_heerdegen@web.de>
4230
4231 * emacs-lisp/eldoc.el (eldoc-highlight-function-argument):
4232 Use font-lock-keyword-face for macros and special forms (bug#8345).
4233
4234 2013-02-17 Didier Verna <didier@didierverna.net>
4235
4236 * net/network-stream.el (network-stream-open-starttls):
4237 Check that response to the starttls-command is non-nil. (Bug#13706)
4238
4239 2013-02-17 Stefan Monnier <monnier@iro.umontreal.ca>
4240
4241 * font-lock.el (lisp-font-lock-keywords-1, lisp-font-lock-keywords-2):
4242 Don't assume all identifier chars have syntax word.
4243 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
4244 Remove bar-not-symbol. Adjust callers.
4245 (lisp-mode-variables): Don't set a font-lock-syntax-table.
4246
4247 2013-02-17 Leo Liu <sdl.web@gmail.com>
4248
4249 * net/rcirc.el (rcirc-keepalive): Fix invalid timer error.
4250
4251 2013-02-17 Glenn Morris <rgm@gnu.org>
4252
4253 * menu-bar.el (menu-bar-tools-menu): Fix case of EDE entry.
4254
4255 * image-mode.el (image-mode-map): Add image-dired menu entry.
4256
4257 * image-dired.el (tumme): Make this alias obsolete.
4258
4259 2013-02-16 Glenn Morris <rgm@gnu.org>
4260
4261 * image.el (image-animated-types): Remove.
4262 (image-multi-frame-p): Rename from image-animated-p, and generalize.
4263 (image-animated-p): Make obsolete alias.
4264 (image-animate, image-nth-frame, image-animate-timeout):
4265 Use image-multi-frame-p.
4266 (image-animate-timeout): If no delay, use image-default-frame-delay.
4267 * image-mode.el (image-mode, image-toggle-animation):
4268 Use image-multi-frame-p. (Bug#763, bug#10739)
4269 (image-mode): Adjust startup message for a multi-frame image.
4270
4271 * image-mode.el (image-mode-map): Give it a menu.
4272
4273 2013-02-16 Michael Albinus <michael.albinus@gmx.de>
4274
4275 * net/tramp-cache.el (tramp-connection-properties): New customer
4276 option.
4277 (tramp-get-connection-property): Use it.
4278
4279 * net/tramp-compat.el (top): Require 'trampver.
4280
4281 * net/tramp-sh.el (tramp-remote-process-environment):
4282 Set tramp-autoload cookie.
4283
4284 2013-02-16 Kevin Ryde <user42@zip.com.au>
4285
4286 * info-look.el (info-lookup-select-mode): If major-mode has no
4287 info-lookup-alist entry then search up derived-mode-parent (bug#8660).
4288
4289 2013-02-16 Jambunathan K <kjambunathan@gmail.com>
4290
4291 * replace.el (read-regexp): Tighten the regexp that matches tag.
4292 When tag is retrieved with `find-tag-default', use regexp that
4293 matches tag at point. Also update docstring (Bug#13687).
4294
4295 2013-02-16 Eli Zaretskii <eliz@gnu.org>
4296
4297 * autorevert.el (auto-revert-notify-add-watch): With 'w32notify',
4298 add watch for the file, not its parent directory, since w32notify
4299 sets up the watch for the directory internally. (Bug#13725)
4300
4301 2013-02-16 Glenn Morris <rgm@gnu.org>
4302
4303 * image.el (image-default-frame-delay): New variable.
4304 (image-animated-p): Use image-default-frame-delay.
4305 (image-minimum-frame-delay): New constant.
4306 (image-animate-timeout): Use image-minimum-frame-delay.
4307
4308 * image.el (image-nth-frame): New, split from image-animate-timeout.
4309 (image-animate-timeout): Use image-nth-frame.
4310 * image-mode.el (image-goto-frame, image-next-frame)
4311 (image-previous-frame): New commands.
4312 (image-mode-map): Add new frame commands.
4313
4314 2013-02-16 Jonas Bernoulli <jonas@bernoul.li>
4315
4316 * emacs-lisp/tabulated-list.el (tabulated-list-print-col):
4317 If col-desc already has help-echo, use it. (Bug#13563)
4318
4319 2013-02-16 Glenn Morris <rgm@gnu.org>
4320
4321 * image.el (image-current-frame): New variable.
4322 (image-animate-timeout): Set image-current-frame.
4323 * image-mode.el (image-mode): For animated images,
4324 display a frame counter via mode-line-process.
4325
4326 * font-lock.el (lisp-font-lock-keywords-1): Add defvar-local.
4327
4328 2013-02-15 Stefan Monnier <monnier@iro.umontreal.ca>
4329
4330 * simple.el (eval-expression): Let `exp' set the mark (bug#13724).
4331
4332 2013-02-15 Alan Mackenzie <acm@muc.de>
4333
4334 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode): When a
4335 global minor mode has been enabled, call the minor mode function
4336 for a new buffer once only, after the major mode hook, whilst
4337 allowing that hook explicitly to disable the minor mode.
4338 (MODE-disable-in-buffer): New (generated) function.
4339 (disable-MODE): New (generated) buffer local variable.
4340
4341 2013-02-15 Jambunathan K <kjambunathan@gmail.com>
4342
4343 * iswitchb.el (iswitchb-read-buffer): Bind `C-.' and `C-,' to
4344 `iswitchb-next-match' and `iswitchb-prev-match' resply.
4345 * ido.el (ido-init-completion-maps): Bind `C-.' and `C-,' to
4346 `ido-next-match' and `ido-prev-match' resply.
4347 * icomplete.el (icomplete-minibuffer-map): Unbind `C-s' and `C-r'.
4348 Bind `C-.' and `C-,' to `icomplete-forward-completions' and
4349 `icomplete-backward-completions' (Bug#13708).
4350
4351 2013-02-15 Glenn Morris <rgm@gnu.org>
4352
4353 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix.
4354
4355 2013-02-15 Stefan Monnier <monnier@iro.umontreal.ca>
4356
4357 * net/goto-addr.el (goto-address-fontify): Add start and end args.
4358 (goto-address-fontify-region): Use them instead of narrowing, so
4359 syntax-ppss has access to the whole buffer.
4360
4361 2013-02-15 Fabián Ezequiel Gallina <fgallina@cuca>
4362
4363 * progmodes/python.el: Explain how to restore "cc-mode"-like
4364 forward-sexp movement in header documentation (Bug#13642).
4365 (python-nav--forward-sexp): Behave like emacs-lisp-mode in
4366 comments and strings (GH bug 114).
4367
4368 2013-02-15 Fabián Ezequiel Gallina <fgallina@cuca>
4369
4370 * progmodes/python.el (python-info-current-defun): Fix current
4371 defun detection (Bug#13618).
4372
4373 2013-02-15 Chong Yidong <cyd@gnu.org>
4374
4375 * xml.el (xml-parse-string): Fix typo in handling of bad character
4376 references.
4377
4378 2013-02-15 Glenn Morris <rgm@gnu.org>
4379
4380 * play/fortune.el (fortune-compile): Simplify and fix previous change.
4381
4382 2013-02-14 Michael Albinus <michael.albinus@gmx.de>
4383
4384 * net/tramp.el (tramp-debug-message):
4385 Add `tramp-condition-case-unless-debug'.
4386 (tramp-debug-on-error): New defvar.
4387 (tramp-condition-case-unless-debug): New defun.
4388 (tramp-file-name-handler): Use it.
4389
4390 2013-02-14 Juri Linkov <juri@jurta.org>
4391
4392 * info.el (Info-isearch-filter): Treat non-nil values of
4393 `search-invisible' including its default value `open'
4394 like the value `t' to match hidden text. (Bug#13402)
4395
4396 2013-02-14 Glenn Morris <rgm@gnu.org>
4397
4398 * help-fns.el (find-lisp-object-file-name): Give special treatment
4399 to all ~/.foo.elc files, not just ~/.emacs. (Bug#9007)
4400
4401 2013-02-14 David Biesack <sasdjb@d72933.na.sas.com> (tiny change)
4402
4403 * net/quickurl.el (quickurl-save-urls):
4404 Ensure quickurl-urls is not truncated on printing. (Bug#9276)
4405
4406 2013-02-14 Dmitry Gutov <dgutov@yandex.ru>
4407
4408 * progmodes/ruby-mode.el (ruby-parse-partial): Don't increase
4409 depth for unfinished percent literal. Not using it in the caller.
4410 (ruby-move-to-block): Jump over multiline literals of all types,
4411 ignoring code-looking contents inside them.
4412 (ruby-add-log-current-method): Improve performance at the expense
4413 of accuracy. `ruby-block-contains-point' is relatively slow, so
4414 only use it for method and singleton class blocks.
4415
4416 2013-02-13 Michael Albinus <michael.albinus@gmx.de>
4417
4418 Use ControlMaster where applicable. (Bug#13677)
4419
4420 * net/tramp.el (tramp-ssh-controlmaster-template): New defvar,
4421 replacing `tramp-detect-ssh-controlmaster'.
4422 (tramp-default-method): Use it.
4423
4424 * net/tramp-sh.el (tramp-methods) [scp, scp1, scp2, scpx, sftp]:
4425 [rsync, ssh, ssh1, ssh2, sshx]: Add ControlPath and ControlMaster
4426 arguments.
4427 [scpc, rsyncc]: Remove methods.
4428 (top): Remove completion functions for "scpc", "rsyncc", "ssh1_old"
4429 and "ssh2_old".
4430 (tramp-do-copy-or-rename-file-out-of-band): Change trace level.
4431 (tramp-maybe-open-connection): Reuse tmpfile for ControlPath.
4432
4433 2013-02-13 Stefan Monnier <monnier@iro.umontreal.ca>
4434
4435 * emacs-lisp/package.el (package--initialized): Move before first use.
4436
4437 2013-02-13 Jambunathan K <kjambunathan@gmail.com>
4438
4439 * icomplete.el (icomplete-hide-common-prefix): New user option.
4440 (icomplete-first-match): New face.
4441 (icomplete-completions): Correct handling of "complete but not
4442 unique" (Bug#12638).
4443
4444 2013-02-13 YE Qianchuan <stool.ye@gmail.com> (tiny change)
4445
4446 * descr-text.el (describe-char): Display the script (bug#13698).
4447
4448 2013-02-13 Stefan Monnier <monnier@iro.umontreal.ca>
4449
4450 * tmm.el: Use lexical-binding and current-active-maps.
4451 (tmm-menubar): Use map-keymap and pcase.
4452 (tmm--completion-table): New function.
4453 (tmm-prompt): Use it to fix the menu order.
4454 (tmm-get-keybind): Use current-active-maps.
4455
4456 2013-02-12 Christopher Schmidt <christopher@ch.ristopher.com>
4457
4458 Add dired-hide-details-mode. (Bug#6799)
4459
4460 * locate.el (locate-mode): Set parent mode property to dired-mode.
4461
4462 * find-dired.el (find-dired): Call dired-insert-set-properties on
4463 initial information line. Set process mark on end of buffer.
4464 (find-dired-sentinel):
4465 Call dired-insert-set-properties on summary.
4466
4467 * dired.el (dired-hide-details-hide-symlink-targets)
4468 (dired-hide-details-hide-information-lines): New options.
4469 (dired-insert-directory):
4470 Set properties after final treatment of output.
4471 (dired-insert-set-properties):
4472 Set dired-hide-details-* properties.
4473 (dired-mode-map): Bind dired-hide-details-mode.
4474 (dired-mode): Set buffer-invisibility-spec to a list.
4475 (dired-next-line): Skip hidden lines.
4476 (dired-previous-line): Use dired-next-line.
4477 (dired-hide-details-mode): New minor mode.
4478 (dired-hide-details-update-invisibility-spec): New function.
4479
4480 2013-02-13 Glenn Morris <rgm@gnu.org>
4481
4482 * play/yow.el: Move to obsolete/. (Bug#9384)
4483
4484 2013-02-13 Juri Linkov <juri@jurta.org>
4485
4486 * vc/ediff-util.el (ediff-recenter): Use `select-frame-set-input-focus'
4487 to select `ediff-control-frame' and set input focus correctly on Xfce.
4488 (Bug#12218)
4489
4490 2013-02-13 Juri Linkov <juri@jurta.org>
4491
4492 * image-mode.el (image-mode-map):
4493 * doc-view.el (doc-view-mode-map):
4494 * vc/ediff-util.el (ediff-setup-keymap):
4495 Make S-SPC scroll in the opposite sense to SPC. (Bug#2145)
4496
4497 2013-02-13 Dmitry Gutov <dgutov@yandex.ru>
4498
4499 * progmodes/ruby-mode.el (ruby-move-to-block): Improve
4500 performance. Instead of recalculating indentation fully for each
4501 line, sum up indentation depth based only on visited lines.
4502 (ruby-parse-partial): Increase the depth after "do" even when END
4503 is right after it.
4504 (ruby-parse-partial): When END is in the middle of a percent
4505 literal, increase the depth if the delimiter chars belong to the
4506 paren syntax class.
4507
4508 2013-02-13 Kirill A. Korinskiy <catap@catap.ru>
4509
4510 * play/fortune.el (fortune-compile): Also make the compiled file
4511 if it does not exist at all, not just if it is old. (Bug#5338)
4512
4513 2013-02-13 Glenn Morris <rgm@gnu.org>
4514
4515 * emacs-lisp/package.el (package-menu-execute): Doc fix.
4516
4517 2013-02-13 Yves Baumes <ybaumes@gmail.com> (tiny change)
4518
4519 * lisp/emacs-lisp/package.el (package-menu-execute):
4520 Add optional noquery argument. (Bug#13625)
4521
4522 2013-02-13 Michael Albinus <michael.albinus@gmx.de>
4523
4524 * net/ange-ftp.el (ange-ftp-make-directory): Don't raise an error,
4525 if DIR exists and PARENTS is non-nil.
4526
4527 2013-02-13 Juanma Barranquero <lekktu@gmail.com>
4528
4529 * progmodes/js.el (js--multi-line-declaration-indentation):
4530 Silence byte-compiler warning.
4531
4532 2013-02-12 Michael Albinus <michael.albinus@gmx.de>
4533
4534 * net/tramp-adb.el (tramp-adb-handle-start-file-process): Rewrite.
4535
4536 * net/tramp-compat.el (top): Declare `remote-file-name-inhibit-cache'
4537 only if it doesn't exist.
4538
4539 * net/tramp-sh.el (tramp-sh-handle-start-file-process):
4540 Set process marker.
4541
4542 2013-02-12 Tassilo Horn <tsdh@gnu.org>
4543
4544 * doc-view.el (doc-view-odf->pdf-converter-soffice): Use separate
4545 UserInstallation when calling soffice to work around LibreOffice
4546 bug 37531.
4547
4548 2013-02-12 Glenn Morris <rgm@gnu.org>
4549
4550 * files.el (basic-save-buffer):
4551 Offer to create a non-existing directory. (Bug#3016)
4552
4553 * calc/calc-graph.el (calc-graph-show-dumb):
4554 * calendar/calendar.el (calendar-mode-map):
4555 * cus-edit.el (custom-mode-map):
4556 * ehelp.el (electric-help-map):
4557 * emulation/vip.el (vip-mode-map):
4558 * epa.el (epa-key-list-mode-map):
4559 * info.el (Info-mode-map):
4560 * mail/rmail.el (rmail-mode-map):
4561 * mail/rmailsum.el (rmail-summary-mode-map):
4562 * man.el (Man-mode-map):
4563 * net/newst-plainview.el (newsticker-mode-map):
4564 * progmodes/cpp.el (cpp-edit-mode-map):
4565 * progmodes/grep.el (grep-mode-map):
4566 * progmodes/idlw-help.el (idlwave-help-mode-map):
4567 * simple.el (special-mode-map):
4568 * startup.el (splash-screen-keymap):
4569 * view.el (view-mode-map):
4570 Make S-SPC scroll in the opposite sense to SPC. (Bug#2145)
4571
4572 2013-02-11 Elias Pipping <pipping@lavabit.com>
4573
4574 * doc-view.el (doc-view-current-cache-dir): Beware % escapes
4575 (bug#13679).
4576
4577 2013-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
4578
4579 * cus-start.el (all): Remove inhibit-local-menu-bar-menus.
4580
4581 2013-02-11 Glenn Morris <rgm@gnu.org>
4582
4583 * vc/diff.el (diff-use-labels): New variable.
4584 (diff-no-select): Use --label rather than -L, and first
4585 check that it is supported. (Bug#11067)
4586
4587 * files.el (enable-dir-local-variables): New variable.
4588 (hack-dir-local-variables): Respect enable-dir-local-variables.
4589 * tutorial.el (help-with-tutorial):
4590 Ignore directory-local variables. (Bug#11127)
4591
4592 * vc/vc-svn.el (vc-svn-command): Move --non-interactive from here...
4593 (vc-svn-global-switches): ... to here. (Bug#13513)
4594
4595 2013-02-10 Christopher Schmidt <christopher@ch.ristopher.com>
4596
4597 * minibuf-eldef.el (minibuffer-default--in-prompt-regexps):
4598 Handle "foo (bar, default: xxx): " prompts.
4599
4600 2013-02-10 Chong Yidong <cyd@gnu.org>
4601
4602 * files.el (basic-save-buffer-1): Do not set
4603 buffer-file-coding-system-explicit (Bug#4533).
4604
4605 * mail/emacsbug.el (report-emacs-bug): Change binding of
4606 report-emacs-bug-insert-to-mailer to C-c M-i (Bug#13510).
4607
4608 2013-02-09 Jay Belanger <jay.p.belanger@gmail.com>
4609
4610 * calc/calc.el (calc-allow-units-as-numbers): New variable.
4611 * calc/calc-units.el (calc-convert-units): Use new variable.
4612
4613 2013-02-09 Eli Zaretskii <eliz@gnu.org>
4614
4615 * subr.el (buffer-file-type, default-buffer-file-type): Remove.
4616
4617 * net/ange-ftp.el (ange-ftp-insert-file-contents): Don't reference
4618 buffer-file-type.
4619
4620 * mail/feedmail.el (feedmail-force-binary-write): Doc fix.
4621 (feedmail-run-the-queue, feedmail-dump-message-to-queue)
4622 (feedmail-send-it-immediately): Don't bind buffer-file-type, bind
4623 coding-system-for-write instead.
4624
4625 * jka-compr.el (jka-compr-write-region): Don't bind
4626 buffer-file-type.
4627
4628 * emacs-lisp/bytecomp.el (byte-compile-file): Don't bind
4629 buffer-file-type.
4630
4631 * files.el (file-name-buffer-file-type-alist): Remove defvar.
4632 (insert-file-contents-literally): Remove reference to
4633 file-name-buffer-file-type-alist.
4634
4635 * dos-w32.el (file-name-buffer-file-type-alist): Deprecate and
4636 make-obsolete.
4637 (find-buffer-file-type-match, find-buffer-file-type): Remove.
4638 (find-buffer-file-type-coding-system): Remove references to
4639 find-buffer-file-type-match, find-buffer-file-type, and
4640 buffer-file-type.
4641 Don't put find-buffer-file-type-coding-system into
4642 file-coding-system-alist.
4643 (find-file-binary, find-file-text): Bind coding-system-for-read
4644 instead of file-name-buffer-file-type-alist.
4645
4646 2013-02-09 Jambunathan K <kjambunathan@gmail.com>
4647
4648 * doc-view.el: Use (and prefer) soffice as default ODF->PDF
4649 converter (Bug#13622).
4650 (doc-view-unoconv-program): Make obsolete alias.
4651 (doc-view-odf->pdf-converter-program): New variable.
4652 (doc-view-odf->pdf-converter-function): New variable.
4653 (doc-view-mode-p): Use it.
4654 (doc-view-odf->pdf-converter-unoconv):
4655 Rename from `doc-view-odf->pdf-converter-unoconv'.
4656 (doc-view-odf->pdf-converter-soffice): New function.
4657 (doc-view-convert-current-doc):
4658 Use `doc-view-odf->pdf-converter-function'.
4659
4660 2013-02-09 Chong Yidong <cyd@gnu.org>
4661
4662 * minibuffer.el (minibuffer-inactive-mode-map): Bind mouse-1 to
4663 view-echo-area-messages (Bug#13340).
4664
4665 * help.el (view-echo-area-messages): Use display-buffer.
4666
4667 * dired-x.el (dired-do-run-mail): Prompt for confirmation
4668 (Bug#13561).
4669
4670 2013-02-08 Stefan Monnier <monnier@iro.umontreal.ca>
4671
4672 * emacs-lisp/byte-run.el (eval-when-compile, eval-and-compile):
4673 Eval body right away, now that we do eager macroexpansion (bug#13605).
4674
4675 * simple.el (end-of-buffer): Don't touch unrelated windows (bug#13466).
4676 (fundamental-mode): Use run-mode-hooks.
4677
4678 * eshell/esh-proc.el (eshell/kill): Fix last change.
4679 * eshell/em-ls.el (eshell-ls-dir): Fix use of CL in last change.
4680
4681 2013-02-08 Aidan Gauland <aidalgol@no8wireless.co.nz>
4682
4683 * eshell/esh-proc.el (eshell/kill): Rewrite.
4684
4685 * eshell/em-ls.el (show-almost-all): Declare.
4686 (eshell-do-ls): Add support for -A argument.
4687
4688 2013-02-08 Jambunathan K <kjambunathan@gmail.com>
4689
4690 * icomplete.el (icomplete-forward-completions)
4691 (icomplete-backward-completions): Handle corner case (bug#13602).
4692
4693 2013-02-07 Michael Albinus <michael.albinus@gmx.de>
4694
4695 * vc/vc-hooks.el (vc-find-file-hook): `buffer-file-truename' can
4696 be nil. Handle this. (Bug#13636)
4697
4698 2013-02-07 Richard Stallman <rms@gnu.org>
4699
4700 * mail/rmail.el (rmail-variables): Specify `no-conversion' for
4701 `save-buffer-coding-system'.
4702
4703 2013-02-07 Alan Mackenzie <acm@muc.de>
4704
4705 Fix bug in state cache mechanism. Remove 'BOD "strategy". Refactor.
4706 * progmodes/cc-engine.el (c-get-fallback-scan-pos): Remove.
4707 (c-parse-state-get-strategy): Don't return 'BOD any more.
4708 (c-append-lower-brace-pair-to-state-cache):
4709 Extra parameter HERE instead of narrowing.
4710 Widen to top of buffer before searching backwards for a brace pair.
4711 (c-state-push-any-brace-pair): Add HERE parameter to function call.
4712 (c-append-to-state-cache): Extra parameter HERE in place of narrowing.
4713 Narrow to parameter HERE, in place of being called narrowed.
4714 (c-remove-stale-state-cache): Extra parameter HERE in place of
4715 narrowing. Check there's an open brace in the cache before
4716 searching for its match.
4717 (c-invalidate-state-cache-1): Add HERE parameter to function call.
4718 (c-parse-state-1): Don't narrow here for 'forward strategy,
4719 instead passing extra parameter HERE to several functions.
4720 Remove 'BOD strategy.
4721
4722 2013-02-06 Nicolas Richard <theonewiththeevillook@yahoo.fr> (tiny change)
4723
4724 * emacs-lisp/package.el (describe-package-1): Tell what archive is
4725 used to install the package.
4726
4727 2013-02-06 Glenn Morris <rgm@gnu.org>
4728
4729 * vc/vc-hooks.el (vc-find-file-hook): Don't ask about following links
4730 if we can't get user input. (Bug#6567)
4731
4732 * startup.el (command-line): If simple.el is missing,
4733 test and warn about for some possible causes.
4734
4735 2013-02-05 Jan Djärv <jan.h.d@swipnet.se>
4736
4737 * cus-start.el (all): Add ns-use-native-fullscreen.
4738
4739 2013-02-05 Glenn Morris <rgm@gnu.org>
4740
4741 * profiler.el (profiler-report-mode-map): Add a restart menu entry.
4742
4743 * play/gamegrid.el (gamegrid-add-score-with-update-game-score):
4744 Fix directory creation in fallback case.
4745
4746 2013-02-04 Thierry Volpiatto <thierry.volpiatto@gmail.com>
4747
4748 * vc/vc.el (vc-next-action): Fix inf-loop (bug#13610).
4749 (vc-update-change-log): Use dolist.
4750
4751 2013-02-04 Chong Yidong <cyd@gnu.org>
4752
4753 * thingatpt.el: Rewrite the URL detection routines, absorbing some
4754 code from ffap.el.
4755 (thing-at-point-beginning-of-url-regexp): New var.
4756 (thing-at-point-uri-schemes): Update list of URI schemes.
4757 (thing-at-point-url-regexp): Variable deleted.
4758 (thing-at-point-markedup-url-regexp): Disallow newlines.
4759 (thing-at-point-newsgroup-regexp)
4760 (thing-at-point-newsgroup-heads)
4761 (thing-at-point-default-mail-uri-scheme): New variables.
4762 (thing-at-point-bounds-of-url-at-point): Rewrite. Use ffap's
4763 method to find the possible bounds of the URI at point.
4764 New optional argument to find ill-formed URIs.
4765 (thing-at-point-url-at-point): Rewrite. New arguments for finding
4766 ill-formed URIs. Use thing-at-point-bounds-of-url-at-point, and
4767 the scheme-adding heuristics from ffap-url-at-point.
4768 (thing-at-point--bounds-of-well-formed-url): New function.
4769 Do parens matching to decide whether to include parens in the URI
4770 (Bug#9153).
4771
4772 * ffap.el: Require thingatpt.
4773 (ffap-url-at-point): Delegate URI detection to thing-at-point.
4774 All URI-valid characters are now recognized (Bug#5673).
4775 (ffap-string-at-point): Use use-region-p.
4776 (ffap-url-regexp): Extra character is handled by thing-at-point.
4777 (ffap-string-at-point-mode-alist): Allow parentheses.
4778 (ffap-newsgroup-regexp, ffap-newsgroup-heads, ffap-newsgroup-p):
4779 Convert to aliases; code moved to thingatpt.el.
4780 (ffap-gnus-hook): Use setq-local.
4781
4782 2013-02-04 Glenn Morris <rgm@gnu.org>
4783
4784 * emacs-lisp/ert.el (ert--explain-format-atom):
4785 Don't try to print non-characters as characters. (Bug#13543)
4786
4787 2013-02-03 Michael Albinus <michael.albinus@gmx.de>
4788
4789 * net/tramp.el (tramp-debug-message): Extend function exclude list.
4790 (tramp-backtrace): New defun.
4791 (tramp-handle-insert-file-contents): Use `visit' when inserting
4792 the local copy.
4793
4794 * net/tramp-sh.el (tramp-sh-handle-set-visited-file-modtime):
4795 Use `remote-file-name-inhibit-cache'.
4796
4797 2013-02-03 Stefan Monnier <monnier@iro.umontreal.ca>
4798
4799 * progmodes/cperl-mode.el (cperl-mode): Avoid byte-compile warning
4800 (bug#13614).
4801
4802 * subr.el (internal--called-interactively-p--get-frame): Avoid filling
4803 current-load-list (bug#13366).
4804
4805 2013-02-02 Christopher Schmidt <christopher@ch.ristopher.com>
4806
4807 * progmodes/compile.el (compilation-error-regexp-alist-alist):
4808 Identify g++ template instantiation trace. (Bug#12287)
4809 (compilation-mode-hook, compilation-start-hook)
4810 (compilation-window-height): Simplify docstrings. (Bug#13379)
4811
4812 2013-02-02 Stefan Monnier <monnier@iro.umontreal.ca>
4813
4814 * mouse.el (mouse-drag-track): Always deactivate the mark before
4815 running the final event's command since that command is in charge of
4816 activating the mark if needed (bug#13523).
4817
4818 2013-02-02 Juri Linkov <juri@jurta.org>
4819
4820 * replace.el (perform-replace): Move let-bindings of isearch-*
4821 variables deeper to the loop that searches for the next match.
4822 Add bindings for `isearch-nonincremental' and `isearch-adjusted'.
4823 Use `isearch-search-fun-default' instead of `isearch-search-fun'.
4824 (Bug#13579)
4825
4826 * isearch.el (isearch-search-fun-default): Check for null
4827 first element of isearch-cmds as a precaution when it's used
4828 with inactive isearch.
4829
4830 2013-02-02 Andrew W. Nosenko <andrew.w.nosenko@gmail.com> (tiny change)
4831
4832 * net/tramp.el (tramp-check-for-regexp): Avoid "Args out of range"
4833 error when buffer in question is narrowed so position 1 is out of
4834 visible part.
4835
4836 2013-02-02 Glenn Morris <rgm@gnu.org>
4837
4838 * textmodes/remember.el (remember-clipboard): Doc fix.
4839
4840 2013-02-02 Stefan Monnier <monnier@iro.umontreal.ca>
4841
4842 * progmodes/make-mode.el (makefile-fill-paragraph): Reset syntax-table
4843 properties (bug#13179).
4844
4845 2013-02-02 Juri Linkov <juri@jurta.org>
4846
4847 * progmodes/grep.el (grep-regexp-alist): Use variable grep-match-face
4848 instead of hard-coded default face `match'. (Bug#9438)
4849
4850 2013-02-01 Christopher Schmidt <christopher@ch.ristopher.com>
4851
4852 * vc/vc-arch.el (vc-arch-registered):
4853 * vc/vc-bzr.el (vc-bzr-registered):
4854 * vc/vc-cvs.el (vc-cvs-registered):
4855 * vc/vc-git.el (vc-git-registered):
4856 * vc/vc-hg.el (vc-hg-registered):
4857 * vc/vc-mtn.el (vc-mtn-registered):
4858 * vc/vc-svn.el (vc-svn-registered): Suppress load messages.
4859 (Bug#13139)
4860
4861 * info.el (Info-next-reference, Info-prev-reference): Add numeric
4862 prefix argument. (Bug#11656)
4863
4864 2013-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
4865
4866 * help-fns.el (help-split-fundoc): Don't insert byte-compiled body.
4867
4868 2013-02-01 Glenn Morris <rgm@gnu.org>
4869
4870 * vc/vc-hooks.el (vc-menu-map): Disable vc-rollback menu item
4871 if the backend is known not to support it.
4872
4873 * imenu.el (imenu-default-create-index-function):
4874 Tweak infinite loop test to check for forward motion as well as none.
4875
4876 2013-02-01 Alex Harsanyi <AlexHarsanyi@gmail.com>
4877
4878 * net/soap-client.el (soap-invoke): Encode the string for
4879 `url-request-data' as UTF-8.
4880 Fixes <http://code.google.com/p/emacs-soap-client/issues/detail?id=16>.
4881
4882 2013-02-01 Glenn Morris <rgm@gnu.org>
4883
4884 * calc/calc-help.el (calc-view-news): Use view-emacs-news.
4885
4886 * calc/README, calc/README.prev: Rename/merge to etc/CALC-NEWS.
4887
4888 2013-01-31 Michael Albinus <michael.albinus@gmx.de>
4889
4890 * net/tramp.el (tramp-tramp-file-p): Comment check for
4891 `string-as-unibyte'. The function does not exist on XEmacs, and
4892 likely we need another approach.
4893
4894 * net/tramp-sh.el (tramp-compute-multi-hops): Check, whether
4895 `tramp-gw-*' variables are bound.
4896
4897 2013-01-31 Glenn Morris <rgm@gnu.org>
4898
4899 * files.el (basic-save-buffer-2): Choose coding system for
4900 writing the file before backing it up, to reduce delay between
4901 backing up and writing the new version. (Bug#13522)
4902
4903 2013-01-31 Michal Nazarewicz <mina86@mina86.com>
4904
4905 * simple.el (cycle-spacing): New command.
4906 (just-one-space): Use it.
4907
4908 2013-01-31 Stefan Monnier <monnier@iro.umontreal.ca>
4909
4910 * progmodes/opascal.el: Rename from delphi.el. Use lexical-binding.
4911 (opascal-newline-always-indents): Remove custom.
4912 (opascal-tab, opascal-newline): Remove commands.
4913 (opascal-new-comment-line): Insert "\n" instead of calling newline.
4914 (opascal-mode-map): Keep default bindings for RET and TAB and DEL.
4915 (opascal-save-match-data): Remove, use save-match-data instead.
4916 (opascal-save-state): Use with-silent-modifications.
4917
4918 * progmodes/pascal.el (pascal-mode-syntax-table): Accept //..\n comments
4919 (bug#13585).
4920
4921 2013-01-30 Juri Linkov <juri@jurta.org>
4922
4923 * frame.el (toggle-frame-maximized, toggle-frame-fullscreen):
4924 Use fullboth as an alias for fullscreen. Suggested by Jan Djärv in
4925 <http://lists.gnu.org/archive/html/emacs-devel/2013-01/msg00203.html>.
4926
4927 2013-01-30 Stefan Monnier <monnier@iro.umontreal.ca>
4928
4929 * progmodes/make-mode.el (makefile-backslash-region): Don't compute
4930 column if we're just deleting the backslashes.
4931 (makefile-fill-paragraph): Use eolp.
4932
4933 2013-01-30 Michael Albinus <michael.albinus@gmx.de>
4934
4935 * autorevert.el (auto-revert-use-notify): Fix docstring.
4936
4937 2013-01-30 Leo Liu <sdl.web@gmail.com>
4938
4939 * imenu.el (imenu--truncate-items): Fix subalist checking (bug#13576).
4940
4941 2013-01-30 Glenn Morris <rgm@gnu.org>
4942
4943 * mouse.el (mouse-drag-line): Avoid pushing same event onto
4944 unread-command-events twice in some cases. This tries to implement
4945 the 2012-07-26 changes in a different way. (Bug#13560)
4946
4947 2013-01-30 Fabián Ezequiel Gallina <fgallina@cuca>
4948
4949 * progmodes/python.el
4950 (python-pdbtrack-comint-output-filter-function): Enhancements on
4951 stacktrace detection. (thanks @gnovak)
4952
4953 2013-01-30 Stefan Monnier <monnier@iro.umontreal.ca>
4954
4955 * jit-lock.el (jit-lock-stealth-chunk-start): Don't widen (bug#13542).
4956 (jit-lock-mode, jit-lock-functions, jit-lock-context-unfontify-pos):
4957 Use defvar-local.
4958 (jit-lock-register): Use setq-local.
4959
4960 2013-01-30 Jay Belanger <jay.p.belanger@gmail.com>
4961
4962 * calc-units.el (math-default-units-table): Remove initial value.
4963 (calc-convert-units): Treat expressions where all the units cancel as
4964 if they didn't have units.
4965
4966 2013-01-30 Michael Albinus <michael.albinus@gmx.de>
4967
4968 * net/tramp.el (tramp-process-connection-type): Fix docstring.
4969 (tramp-completion-reread-directory-timeout): Fix type.
4970 (tramp-connection-min-time-diff): New defcustom.
4971
4972 * net/tramp-sh.el (tramp-maybe-open-connection): Use it.
4973
4974 2013-01-30 Glenn Morris <rgm@gnu.org>
4975
4976 * imenu.el (imenu-default-create-index-function):
4977 Put back a version of the infinite loop test removed 2013-01-23.
4978
4979 2013-01-30 Fabián Ezequiel Gallina <fgallina@cuca>
4980
4981 * progmodes/python.el (python-shell-parse-command):
4982 Find python-shell-interpreter with modified environment.
4983
4984 2013-01-30 Stefan Monnier <monnier@iro.umontreal.ca>
4985
4986 * emacs-lisp/cl.el (cl-set-getf): Add compatibility alias.
4987
4988 2013-01-29 Alan Mackenzie <acm@muc.de>
4989
4990 Amend to fontify /regexp/s in actions correctly.
4991 * cc-awk.el (c-awk-harmless-char-re, c-awk-harmless-string*-re):
4992 (c-awk-harmless-string*-here-re): Braces, parens and semicolons
4993 are no longer included.
4994 (c-awk-harmless-line-char-re, c-awk-harmless-line-string*-re):
4995 What used to be these variables without "-line" in the name.
4996 (c-awk-neutral-re): { is no longer neutral. Escaped newlines now are.
4997 (c-awk-non-arith-op-bra-re): Now also matches {.
4998 (c-awk-pre-exp-alphanum-kwd-re): New regexp to match "print",
4999 "return", and "case".
5000 (c-awk-kwd-regexp-sign-re): New, to match "print", etc., followed
5001 by /.
5002 (c-awk-syntax-tablify-/): Check special cases "print /re/", etc.
5003 (c-awk-set-syntax-table-properties): Extend FSM to handle {,},(,),;.
5004
5005 2013-01-29 Michael Albinus <michael.albinus@gmx.de>
5006
5007 * autorevert.el (auto-revert-use-notify):
5008 Use `custom-initialize-default' for initialization. (Bug#13583)
5009
5010 * net/ange-ftp.el (ange-ftp-skip-msgs): Add another message.
5011
5012 * net/tramp-sh.el (tramp-sh-handle-start-file-process):
5013 Catch `suppress'. Otherwise, `tramp-run-real-handler' might be called
5014 in `tramp-file-name-handler'.
5015 (tramp-gw-tunnel-method, tramp-gw-socks-method): Declare for
5016 compatibility.
5017 (tramp-compute-multi-hops): Check, whether
5018 `tramp-gw-tunnel-method' and `tramp-gw-socks-method' are non-nil.
5019
5020 2013-01-28 Stefan Monnier <monnier@iro.umontreal.ca>
5021
5022 * hi-lock.el (hi-lock-unface-buffer): Don't assume `face' is a symbol
5023 (bug#13297).
5024
5025 2013-01-27 Dmitry Gutov <dgutov@yandex.ru>
5026
5027 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Remove some
5028 checks made superfluous by the \_< operator.
5029 * progmodes/ruby-mode.el (ruby-move-to-block): Work with (maybe
5030 temporarily) broken indentation.
5031 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
5032 Highlight nested constants, too. \_< broke that.
5033
5034 2013-01-27 Nobuyoshi Nakada <nobu@ruby-lang.org>
5035
5036 * progmodes/ruby-mode.el (ruby-font-lock-keywords): Use "\\_<"
5037 instead of "\\b".
5038
5039 2013-01-27 Michael Albinus <michael.albinus@gmx.de>
5040
5041 * autorevert.el (auto-revert-handler): Notifications which result
5042 from a saved file shall not be taken into account. (Bug#13557)
5043
5044 2013-01-26 Andreas Schwab <schwab@linux-m68k.org>
5045
5046 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Add optional
5047 parameter BAR-NOT-SYMBOL to control syntax of | for font-lock.
5048 (lisp-mode): Pass t for it. (Bug#13556)
5049
5050 2013-01-25 Alan Mackenzie <acm@muc.de>
5051
5052 AWK Mode: Fix indentation bug at top level. Bug #12274.
5053
5054 * progmodes/cc-engine.el (c-guess-basic-syntax): Move CASE 5P to
5055 just before CASE 5D.
5056
5057 2013-01-25 Dmitry Antipov <dmantipov@yandex.ru>
5058
5059 * net/socks.el (socks-nslookup-host): Use string-to-number.
5060
5061 2013-01-25 Michael Albinus <michael.albinus@gmx.de>
5062
5063 * autorevert.el (auto-revert-remote-files)
5064 (auto-revert-notify-exclude-dir-regexp): New defcustoms.
5065 (auto-revert-notify-enabled, auto-revert-use-notify)
5066 (auto-revert-notify-watch-descriptor-hash-list)
5067 (auto-revert-notify-modified-p, auto-revert-notify-event-p)
5068 (auto-revert-notify-event-descriptor)
5069 (auto-revert-notify-event-action)
5070 (auto-revert-notify-event-file-name): Doc fix.
5071 (global-auto-revert-mode): Reorder checks.
5072 (auto-revert-notify-rm-watch): Respect changed values of
5073 `auto-revert-notify-watch-descriptor-hash-list'.
5074 (auto-revert-notify-add-watch): Check for
5075 `auto-revert-notify-exclude-dir-regexp'. Adapt filters for
5076 `inotify-add-watch'. Watch `default-directory' instead of
5077 `buffer-file-name'. `auto-revert-notify-watch-descriptor-hash-list'
5078 has a changed meaning now. (Bug#13540)
5079 (auto-revert-notify-handler): Change implementation wrt events
5080 returning from a directory.
5081 (auto-revert-handler): Reorder implementation for checks of remote
5082 files.
5083 (auto-revert-buffers): Fix parentheses error.
5084
5085 2013-01-25 Fabián Ezequiel Gallina <fgallina@cuca>
5086
5087 * progmodes/python.el: Enhancements to header documentation about
5088 skeletons. (Bug#5716)
5089
5090 * imenu.el (imenu-default-create-index-function): Remove useless
5091 infinite loop check. (Bug#13438)
5092
5093 2013-01-25 Alan Mackenzie <acm@muc.de>
5094
5095 Fix a bug in the state cache mechanism. Refactor this a bit.
5096
5097 * progmodes/cc-engine.el (c-parse-state-get-strategy): Remove the
5098 `cache-pos' element from the return value.
5099 (c-append-lower-brace-pair-to-state-cache): "Narrow" to end of
5100 buffer to enable proper searching from beyond HERE. Amend the
5101 test for detecting the sought brace pair. Amend the value written
5102 to the "brace desert cache" when the brace isn't found.
5103 (c-remove-stale-state-cache): Rename `good-pos' to `start-point',
5104 and several other variables analogously.
5105 (c-remove-stale-state-cache-backwards): Change `cache-pos' from a
5106 parameter to a locally calculated variable.
5107 (c-parse-state-1): Change the calling conventions to the two
5108 defuns involving `cache-pos'.
5109
5110 2013-01-25 Chong Yidong <cyd@gnu.org>
5111
5112 * xml.el (xml-entity-or-char-ref-re): Fix regexp.
5113
5114 2013-01-24 Aaron Ecay <aaronecay@gmail.com> (tiny change)
5115
5116 * paren.el (show-paren-function): Make sure to set 'priority and
5117 'face only if the overlay does exist.
5118
5119 2013-01-24 Michael Albinus <michael.albinus@gmx.de>
5120
5121 * net/tramp.el (tramp-tramp-file-p): Check, whether NAME is unibyte.
5122
5123 * net/tramp-sh.el (tramp-sh-handle-set-file-acl): Do not suppress
5124 basic attributes.
5125 (tramp-sh-handle-set-file-acl): Improve error checking.
5126
5127 2013-01-24 Dmitry Antipov <dmantipov@yandex.ru>
5128
5129 * doc-view.el (doc-view-display): Force mode line update until all
5130 document is converted. Suggested by Stefan Monnier (Bug#13164).
5131
5132 2013-01-23 Bastien Guerry <bzg@gnu.org>
5133
5134 * paren.el (show-paren-function): Make sure an overlay exists
5135 before trying to delete it. Also use `pos' as a position only
5136 when it is an integer.
5137
5138 2013-01-23 Dmitry Antipov <dmantipov@yandex.ru>
5139
5140 * play/gametree.el (gametree-break-line-here): Use point-marker.
5141
5142 2013-01-22 Michael Albinus <michael.albinus@gmx.de>
5143
5144 * net/tramp-cmds.el (tramp-bug, tramp-append-tramp-buffers):
5145 Mark descriptive parts with `display' property.
5146
5147 2013-01-21 Agustín Martín Domingo <agustin.martin@hispalinux.es>
5148
5149 * textmodes/ispell.el (ispell-hunspell-dictionary-equivs-alist):
5150 New variable to map standard dict names to hunspell ones.
5151 (ispell-set-spellchecker-params): Make sure specific dict names
5152 are used for standard dicts with hunspell.
5153
5154 2013-01-21 Tassilo Horn <tsdh@gnu.org>
5155
5156 * textmodes/reftex-cite.el (reftex-format-citation): Add format
5157 chars for note (%N) and url (%U).
5158 * textmodes/reftex-vars.el (reftex-cite-format): Document them.
5159
5160 2013-01-21 Juri Linkov <juri@jurta.org>
5161
5162 * frame.el: Bind `f10' in `esc-map' to `toggle-frame-maximized'
5163 in addition to existing separate binding `meta f10' in `global-map'.
5164 (Bug#13484)
5165
5166 2013-01-21 Michael Albinus <michael.albinus@gmx.de>
5167
5168 Improve XEmacs compatibility.
5169
5170 * net/tramp.el (tramp-replace-environment-variables): Make it a defun.
5171
5172 * net/tramp-adb.el (top): Require `time-date'.
5173 (tramp-adb-ls-output-time-less-p): Use `tramp-time-less-p'.
5174 (tramp-adb-handle-copy-file, tramp-adb-handle-rename-file):
5175 Use `tramp-file-name-handler'.
5176 (tramp-adb-maybe-open-connection):
5177 Use `tramp-compat-set-process-query-on-exit-flag'.
5178
5179 * net/tramp-sh.el (tramp-sh-handle-file-acl):
5180 Use `tramp-compat-funcall'.
5181
5182 * net/tramp-smb.el (tramp-smb-handle-file-acl): Use `looking-at' and
5183 `tramp-compat-funcall'.
5184
5185 2013-01-21 Jürgen Hötzel <juergen@archlinux.org>
5186
5187 * net/tramp-adb.el (tramp-adb-handle-start-file-process): Complete
5188 reimplementation using "adb shell command ..." instead of running
5189 remote shell interactively.
5190
5191 2013-01-20 Glenn Morris <rgm@gnu.org>
5192
5193 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map):
5194 Add native profiler menu entries.
5195
5196 * profiler.el (profiler-running-p): New function.
5197 (profiler-cpu-profile): Use profiler-running-p.
5198 (profiler-report-mode-map): Add some more menu entries.
5199
5200 2013-01-19 Glenn Morris <rgm@gnu.org>
5201
5202 * mail/unrmail.el (unrmail): Do not mangle the mbox From line;
5203 fixes 2012-12-07 change. (Bug#13499)
5204
5205 2013-01-19 Leo Liu <sdl.web@gmail.com>
5206
5207 * dired.el (dired-get-marked-files): Prune erroneous values due to
5208 last change. (Bug#13152)
5209
5210 2013-01-19 Glenn Morris <rgm@gnu.org>
5211
5212 * progmodes/etags.el (tags-table-check-computed-list):
5213 Preserve point in tags buffer. (Bug#13412)
5214
5215 * emacs-lisp/lisp-mode.el (lisp-indent-function): Doc fix.
5216
5217 2013-01-19 Christian Wittern <cwittern@gmail.com> (tiny change)
5218 Chong Yidong <cyd@gnu.org>
5219
5220 * image-mode.el (image-next-file, image-previous-file):
5221 New commands (Bug#8453).
5222 (image-mode-map): Bind them to n and p.
5223 (image-mode--images-in-directory): New helper function.
5224
5225 2013-01-19 Chong Yidong <cyd@gnu.org>
5226
5227 * image-mode.el (image-mode-fit-frame): Add a frame argument.
5228 Suggested by Drew Adams (Bug#7730). Handle window decorations;
5229 save and restore the old window configuration.
5230
5231 2013-01-18 Leo Liu <sdl.web@gmail.com>
5232
5233 * progmodes/js.el: Tweak autoload cookie for alias.
5234
5235 2013-01-17 Michael Albinus <michael.albinus@gmx.de>
5236
5237 * autorevert.el (auto-revert-notify-watch-descriptor): Make it
5238 buffer local, again. This was lost with the fix on 2013-01-12.
5239
5240 2013-01-17 Jürgen Hötzel <juergen@archlinux.org>
5241
5242 * eshell/esh-util.el (eshell-path-env): Make it buffer local, in
5243 order to support several eshell buffers in parallel.
5244
5245 2013-01-17 Michael Albinus <michael.albinus@gmx.de>
5246
5247 * autorevert.el (auto-revert-use-notify): In the :set function, do
5248 not modify `kill-buffer-hook'.
5249 (auto-revert-notify-rm-watch):
5250 Remove `auto-revert-notify-rm-watch' from `kill-buffer-hook'.
5251 (auto-revert-notify-add-watch): Do not call
5252 `auto-revert-notify-rm-watch', but add it to a buffer local
5253 `kill-buffer-hook'.
5254
5255 2013-01-16 Stefan Monnier <monnier@iro.umontreal.ca>
5256
5257 * emacs-lisp/trace.el (trace--read-args): Use a closure and an honest
5258 call to `eval' rather than a backquoted lambda.
5259
5260 2013-01-15 Stefan Monnier <monnier@iro.umontreal.ca>
5261
5262 * emacs-lisp/nadvice.el (advice--tweak): Make it possible for `tweak'
5263 to return an explicit nil.
5264 (advice--remove-function): Change accordingly.
5265
5266 * emacs-lisp/advice.el (ad-preactivate-advice): Adjust the cleanup to
5267 the use of nadvice.el.
5268
5269 * progmodes/which-func.el (which-function): Silence imenu errors
5270 (bug#13433).
5271
5272 2013-01-15 Michael R. Mauger <mmaug@yahoo.com>
5273
5274 * progmodes/sql.el (sql-imenu-generic-expression):
5275 (sql-mode-font-lock-object-name): Match schema qualified names.
5276 (sql-connect): Use string keys.
5277 (sql-product-interactive): Wait for interpreter prompt.
5278 (sql-comint-oracle): Set process coding based on NLS_LANG.
5279
5280 2013-01-15 Michael R. Mauger <mmaug@yahoo.com>
5281
5282 * progmodes/sql.el (sql-output-to-send): Remove, unused.
5283 (sql-interactive-remove-continuation-prompt):
5284 (sql-send-magic-terminator, sql-interactive-mode): Remove references.
5285
5286 2013-01-14 Leo Liu <sdl.web@gmail.com>
5287
5288 * calendar/calendar.el (calendar-redraw): Sync window-point and point.
5289 (Bug#13420)
5290
5291 2013-01-14 Glenn Morris <rgm@gnu.org>
5292
5293 * progmodes/compile.el (compilation-error-regexp-alist-alist):
5294 Fix interpretation of gnu line.col1-col2 format. (Bug#13335)
5295
5296 2013-01-13 Fabián Ezequiel Gallina <fgallina@cuca>
5297
5298 * progmodes/python.el (python-nav-end-of-statement):
5299 Fix cornercase when handling multiline strings.
5300
5301 2013-01-13 Richard Stallman <rms@gnu.org>
5302
5303 * mail/sendmail.el (mail-position-on-field): Add doc string.
5304
5305 * mail/rmailmm.el (rmail-insert-mime-forwarded-message):
5306 Get current message boundaries and pass them to
5307 message-forward-make-body-mime. Minor style changes.
5308
5309 2013-01-13 Eli Zaretskii <eliz@gnu.org>
5310
5311 * cus-start.el (all): Avoid warnings about
5312 scroll-bar-adjust-thumb-portion on platforms where it is not defined.
5313
5314 2013-01-11 Jan Djärv <jan.h.d@swipnet.se>
5315
5316 * cus-start.el (all): Add scroll-bar-adjust-thumb-portion.
5317
5318 2013-01-13 Stefan Monnier <monnier@iro.umontreal.ca>
5319
5320 * jit-lock.el (jit-lock-debug-mode): New minor mode.
5321 (jit-lock--debug-fontifying): New var.
5322 (jit-lock--debug-fontify): New function.
5323 * subr.el (condition-case-unless-debug): Don't prevent catching the
5324 error, just let the debbugger run.
5325 * emacs-lisp/timer.el (timer-event-handler): Don't prevent debugging
5326 timer code and don't drop errors silently.
5327
5328 2013-01-12 Michael Albinus <michael.albinus@gmx.de>
5329
5330 * autorevert.el (auto-revert-notify-watch-descriptor): Give it
5331 `permanent-local' property.
5332 (auto-revert-notify-handler): Use `file-equal-p'.
5333
5334 2013-01-12 Eli Zaretskii <eliz@gnu.org>
5335
5336 * autorevert.el (auto-revert-notify-handler): Fix filtering of
5337 file notification by ACTION. For filtering by file name, compare
5338 only the non-directory part of the file name.
5339
5340 2013-01-12 Stefan Monnier <monnier@iro.umontreal.ca>
5341
5342 * autorevert.el: Use cl-lib instead of cl.
5343
5344 * vc/vc-bzr.el (vc-bzr--sanitize-header): New function (bug#13307).
5345 (vc-bzr-checkin): Use it.
5346 * vc/log-edit.el (log-edit-extract-headers): Don't presume FUNCTION
5347 will preserve match-data.
5348
5349 2013-01-11 Felix H. Dahlke <fhd@ubercode.de>
5350
5351 * progmodes/js.el: Fix multiline declarations's indentation (bug#8576).
5352 (js--declaration-keyword-re): New var.
5353 (js--multi-line-declaration-indentation): New function.
5354 (js--proper-indentation): Use it.
5355
5356 2013-01-11 Aaron S. Hawley <Aaron.Hawley@vtinfo.com>
5357
5358 * calc/calc.el (calc-highlight-selections-with-faces)
5359 (calc-dispatch):
5360 * comint.el (comint-history-isearch-message):
5361 * emacs-lisp/edebug.el (edebug-read, edebug-eval-defun):
5362 * ffap.el (ffap-string-at-point-region, ffap-next)
5363 (ffap-string-at-point, ffap-string-around)
5364 (ffap-copy-string-as-kill, ffap-highlight-overlay)
5365 (ffap-literally):
5366 * font-lock.el (font-lock-keywords-alist)
5367 (font-lock-removed-keywords-alist):
5368 * help-mode.el (help-xref-symbol-regexp):
5369 * info.el (Info-find-emacs-command-nodes):
5370 * international/mule.el (add-to-coding-system-list):
5371 * isearch.el (isearch-message-function, isearch-fail-pos):
5372 * misearch.el (multi-isearch-next-buffer-function):
5373 * newcomment.el (comment-box):
5374 * printing.el (pr-txt-printer-alist, pr-ps-printer-alist)
5375 (pr-setting-database):
5376 * progmodes/cc-fonts.el (c-font-lock-keywords-3)
5377 (c++-font-lock-keywords-3, objc-font-lock-keywords-3)
5378 (java-font-lock-keywords-3, idl-font-lock-keywords-3)
5379 (pike-font-lock-keywords-3):
5380 * progmodes/compile.el (compile):
5381 * progmodes/etags.el (tags-table-files)
5382 (tags-table-files-function, tags-included-tables-function):
5383 * progmodes/gdb-mi.el (gdb, gdb-setup-windows)
5384 (gdb-restore-windows):
5385 * ps-print.el (ps-even-or-odd-pages, ps-spool-buffer-with-faces)
5386 (ps-n-up-filling-database):
5387 * server.el (server-buffer, server-log):
5388 * simple.el (newline, delete-backward-char, delete-forward-char)
5389 (minibuffer-history-isearch-message, kill-line, track-eol)
5390 (temporary-goal-column):
5391 * textmodes/flyspell.el (flyspell-mark-duplications-flag)
5392 (flyspell-default-deplacement-commands):
5393 * textmodes/ispell.el (ispell-accept-output):
5394 * textmodes/sgml-mode.el (html-tag-help):
5395 * vc/compare-w.el (compare-ignore-whitespace)
5396 (compare-ignore-case, compare-windows-dehighlight):
5397 * vc/diff.el (diff):
5398 * whitespace.el (whitespace-point)
5399 (whitespace-font-lock-refontify, whitespace-bob-marker)
5400 (whitespace-eob-marker): Fix ambiguous doc string cross-reference(s).
5401
5402 2013-01-11 Michael Albinus <michael.albinus@gmx.de>
5403
5404 * autorevert.el (top): Require 'cl in order to pacify byte compiler.
5405 (auto-revert-notify-rm-watch): Ignore errors.
5406 (auto-revert-notify-add-watch): Ignore errors. Use '(modify) for
5407 inotify, and '(size last-write-time) for w32notify.
5408 Set buffer-local `auto-revert-use-notify' to nil when adding a file
5409 watch fails - this is a fallback to the file modification check.
5410 (auto-revert-notify-event-p, auto-revert-notify-event-descriptor)
5411 (auto-revert-notify-event-action)
5412 (auto-revert-notify-event-file-name): New defuns.
5413 (auto-revert-notify-handler): Use them. Implement first
5414 plausibility checks.
5415 (auto-revert-handler): Handle also `auto-revert-tail-mode'.
5416
5417 2013-01-11 Julien Danjou <julien@danjou.info>
5418
5419 * color.el (color-rgb-to-hsv): Fix conversion computing in case min and
5420 max are almost equal. Also return the correct value for V which is
5421 already between 0 and 1.
5422
5423 2013-01-11 Dmitry Antipov <dmantipov@yandex.ru>
5424
5425 * emacs-lisp/ert.el (ert-run-test): Use point-max-marker.
5426
5427 2013-01-11 Eli Zaretskii <eliz@gnu.org>
5428
5429 * autorevert.el (auto-revert-notify-rm-watch)
5430 (auto-revert-notify-add-watch): Fix typos in w32notify function
5431 names.
5432
5433 2013-01-10 Michael Albinus <michael.albinus@gmx.de>
5434
5435 * autorevert.el (auto-revert-notify-enabled): Move up.
5436 (auto-revert-use-notify): New defcustom.
5437 (auto-revert-mode, global-auto-revert-mode)
5438 (auto-revert-notify-add-watch, auto-revert-handler)
5439 (auto-revert-buffers): Use `auto-revert-use-notify' instead of
5440 `auto-revert-notify-enabled'.
5441
5442 2013-01-10 Elias Pipping <pipping@exherbo.org>
5443
5444 * files.el (auto-mode-alist): Use doc-view for djvu files (bug#13164).
5445 * doc-view.el (doc-view-document->bitmap):
5446 Use doc-view-single-page-converter-function instead of
5447 single-page-converter arg; adjust callers.
5448
5449 2013-01-10 Feng Li <fengli@gmail.com> (tiny change)
5450
5451 * progmodes/which-func.el (which-function): Understand Semantic's use
5452 of overlays in imenu--index-alist.
5453
5454 2013-01-10 Wolfgang Jenkner <wjenkner@inode.at>
5455
5456 * man.el: Handle different "man -k" behaviors (bug#13160). Use utf-8.
5457 (Man-man-k-use-anchor): New var.
5458 (Man-parse-man-k): New function.
5459 (Man-completion-table): Use it.
5460 (man): Flush the completion cache between uses.
5461
5462 2013-01-10 Michael Albinus <michael.albinus@gmx.de>
5463
5464 * autorevert.el: Add file watch support.
5465 (auto-revert-notify-enabled): New defconst.
5466 (auto-revert-notify-watch-descriptor-hash-list)
5467 (auto-revert-notify-watch-descriptor)
5468 (auto-revert-notify-modified-p): New defvars.
5469 (auto-revert-notify-rm-watch, auto-revert-notify-add-watch)
5470 (auto-revert-notify-handler): New defuns.
5471 (auto-revert-mode, global-auto-revert-mode): Remove file watches
5472 when mode is disabled.
5473 (auto-revert-handler): Check for `auto-revert-notify-modified-p'.
5474 (auto-revert-buffers): Add file watches for active buffers.
5475
5476 2013-01-10 Dmitry Antipov <dmantipov@yandex.ru>
5477
5478 * cus-start.el (toplevel): Only allow float values for
5479 scroll-up-aggressively and scroll-down-aggressively.
5480 Allow any number for line-spacing.
5481
5482 2013-01-10 Stefan Monnier <monnier@iro.umontreal.ca>
5483
5484 * doc-view.el (doc-view-pdfdraw-program): Allow "pdfdraw" name.
5485 (doc-view-pdf->png-converter-function): Use mupdf if available.
5486 (doc-view-djvu->png-converter-function)
5487 (doc-view-ps->png-converter-function): Remove.
5488 (doc-view--image-file-pattern): Replace doc-view--image-file-extension.
5489 (doc-view-goto-page, doc-view-convert-current-doc, doc-view-display)
5490 (doc-view-already-converted-p): Adjust accordingly.
5491 (doc-view-mode-p): Simplify.
5492 (doc-view-enlarge): Use setq-local.
5493 (doc-view-pdf->png-converter-ghostscript)
5494 (doc-view-djvu->png-converter-ddjvu)
5495 (doc-view-pdf->png-converter-mupdf): Rework to call
5496 doc-view-start-process directly.
5497 (doc-view-pdf/ps->png): Simplify accordingly.
5498 (doc-view-pdf->png-1, doc-view-djvu->png-1): Remove.
5499 (doc-view-document->bitmap): Rename from doc-view-document->png.
5500 (doc-view-convert-current-doc): Merge pdf and djvu cases.
5501 (doc-view-set-slice-from-bounding-box): Fix completion table.
5502 (doc-view-mode): Use add-hook for after-revert-hook.
5503
5504 2013-01-10 Glenn Morris <rgm@gnu.org>
5505
5506 * emacs-lisp/authors.el (authors-ignored-files)
5507 (authors-valid-file-names, authors-renamed-files-alist):
5508 Add some more entries.
5509
5510 2013-01-10 Stefan Monnier <monnier@iro.umontreal.ca>
5511
5512 * image-mode.el (image-mode-winprops): Don't throw away the fallback
5513 `t' pseudo-window entry.
5514
5515 2013-01-10 Alan Mackenzie <acm@muc.de>
5516
5517 Fix bugs in the c-parse-state mechanism. Reuse some markers
5518 instead of continually generating new ones.
5519
5520 * progmodes/cc-engine.el (c-state-old-cpp-beg-marker)
5521 (c-state-old-cpp-end-marker): New variables.
5522 (c-append-lower-brace-pair-to-state-cache): Start a backward
5523 search for "}" definitively outside CPP constructs.
5524 (c-remove-stale-state-cache): Inform the caller of a need to
5525 search back for a brace pair in certain circumstances.
5526 (c-state-maybe-marker): New macro.
5527 (c-parse-state): Reuse markers when appropriate.
5528
5529 2013-01-10 Glenn Morris <rgm@gnu.org>
5530
5531 * simple.el (execute-extended-command): Doc fix.
5532 Bind prefix-arg around read-extended-command, for prompt. (Bug#13395)
5533
5534 2013-01-10 Chong Yidong <cyd@gnu.org>
5535
5536 * faces.el (read-face-name): Doc fix.
5537
5538 2013-01-10 Roland Winkler <winkler@gnu.org>
5539
5540 * emacs-lisp/crm.el: Allow any regexp for separators.
5541 (crm-default-separator): All spaces around the default comma separator.
5542 (crm--completion-command): New macro.
5543 (crm-completion-help, crm-complete, crm-complete-word): Use it.
5544 (crm-complete-and-exit): Handle non-single-char separators.
5545
5546 2013-01-09 Elias Pipping <pipping@lavabit.com>
5547
5548 * doc-view.el: Add support for DjVu (bug#13164).
5549 (doc-view-djvu->png-converter-function): New config var.
5550 (doc-view-single-page-converter-function, doc-view--image-type)
5551 (doc-view--image-file-extension): New vars.
5552 (doc-view-mode): Initialize them.
5553 (doc-view-goto-page): Use them.
5554 (doc-view-mode-p): Add support for ddjvu.
5555 (doc-view-djvu->png-converter-ddjvu, doc-view-djvu->png-1)
5556 (doc-view-set-up-single-converter): New funs.
5557 (doc-view-pdf/ps->png): Extend for djvu.
5558 (doc-view-document->png): Rename from doc-view-pdf->png.
5559 (doc-view-convert-current-doc): Handle djvu.
5560 (doc-view-insert-image, doc-view-display)
5561 (doc-view-already-converted-p): Don't hardcode png.
5562 (doc-view-set-doc-type): Recognize djvu docs.
5563
5564 2013-01-09 Elias Pipping <pipping@lavabit.com>
5565
5566 * doc-view.el: Add support for mupdf converter (bug#13164).
5567 (doc-view-pdfdraw-program, doc-view-pdf->png-converter-function)
5568 (doc-view-ps->png-converter-function): New config vars.
5569 (doc-view-pdf->png-converter-ghostscript)
5570 (doc-view-ps->png-converter-ghostscript)
5571 (doc-view-pdf->png-converter-mupdf): New functions.
5572 (doc-view-pdf/ps->png, doc-view-pdf->png-1): Use them.
5573
5574 2013-01-09 Jürgen Hötzel <juergen@archlinux.org>
5575
5576 * net/tramp.el (tramp-eshell-directory-change): Check remote-path
5577 first in session cache: When `tramp-own-remote-path' is in
5578 `tramp-remote-path', the remote path is only set in the session
5579 cache.
5580
5581 2013-01-09 Glenn Morris <rgm@gnu.org>
5582
5583 * emacs-lisp/trace.el (trace-function-foreground)
5584 (trace-function-background): Doc fix.
5585
5586 2013-01-09 Juri Linkov <juri@jurta.org>
5587
5588 * international/mule-cmds.el (read-char-by-name): Move let-binding
5589 of completion-ignore-case around completing-read to fix regression
5590 exhibited by the test case `C-x 8 RET *acc TAB' and caused by
5591 `string-match-p' using the nil value of `case-fold-search' and
5592 `completion-ignore-case' in `completion-pcm--all-completions'.
5593 (Bug#12615).
5594
5595 2013-01-09 Glenn Morris <rgm@gnu.org>
5596
5597 * progmodes/compile.el (compilation-parse-errors):
5598 Fix typo. (Bug#13369)
5599
5600 2013-01-09 Vitalie Spinu <spinuvit@gmail.com> (tiny change)
5601
5602 * comint.el (comint-send-input): Check size of buffer before
5603 waiting for process output, in case already accepted. (Bug#13290)
5604
5605 2013-01-09 Paul Eggert <eggert@cs.ucla.edu>
5606
5607 Spelling fixes.
5608 * net/tramp-adb.el (tramp-adb-get-toolbox):
5609 Fix misspelling of 'unknown'.
5610
5611 2013-01-08 Juri Linkov <juri@jurta.org>
5612
5613 * textmodes/flyspell.el (flyspell-incorrect, flyspell-duplicate):
5614 * progmodes/flymake.el (flymake-errline, flymake-warnline):
5615 Use underline style wave on terminals that support it. (Bug#13000)
5616
5617 2013-01-08 Stefan Monnier <monnier@iro.umontreal.ca>
5618
5619 * emacs-lisp/pcase.el (pcase--split-equal): Also take advantage if
5620 the predicate returns nil.
5621
5622 * simple.el: Use lexical-binding.
5623 (primitive-undo): Use pcase.
5624 (minibuffer-history-isearch-push-state): Use a closure.
5625
5626 2013-01-08 Aaron S. Hawley <aaron.s.hawley@gmail.com>
5627
5628 * simple.el (primitive-undo): Move from undo.c.
5629
5630 2013-01-08 Stefan Monnier <monnier@iro.umontreal.ca>
5631
5632 * vc/pcvs.el (cvs-cleanup-collection): Extend meaning of `rm-handled'.
5633 (cvs-mode-remove-handled): Use it (bug#13380).
5634
5635 * emacs-lisp/nadvice.el (advice--tweak): New function.
5636 (advice--remove-function, advice--subst-main): Use it.
5637
5638 * emacs-lisp/advice.el: Update commentary.
5639
5640 2013-01-08 Michael Albinus <michael.albinus@gmx.de>
5641
5642 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
5643 Remove spurious entry.
5644
5645 2013-01-08 Glenn Morris <rgm@gnu.org>
5646
5647 * net/tramp.el (tramp-default-host-alist): Add :version.
5648
5649 2013-01-08 Juri Linkov <juri@jurta.org>
5650
5651 * info.el (Info-read-node-name-2): Don't duplicate suffixes for
5652 single completion. (Bug#12456)
5653 (info--manual-names): Expand node completions into an explicit list
5654 before appending it to another list. Filter out internal buffers
5655 with the leading space in the buffer name. (Bug#10771)
5656
5657 2013-01-08 Juri Linkov <juri@jurta.org>
5658
5659 * info.el (Info-read-node-name-1): Allow empty node name in (FILENAME)
5660 that defaults to the Top node.
5661 (Info-goto-node, Info-read-node-name): Doc fix to mention that
5662 the short format (FILENAME) goes to the Top node.
5663 (Info-build-node-completions): Rename arg `file' to `filename'.
5664 (Bug#13365)
5665
5666 2013-01-07 Bastien Guerry <bzg@gnu.org>
5667
5668 * menu-bar.el (menu-bar-search-documentation-menu):
5669 Use `apropos-user-option' and fix the help message.
5670
5671 2013-01-07 Bastien Guerry <bzg@gnu.org>
5672
5673 * apropos.el (apropos-do-all): Update docstring.
5674 (apropos-user-option-button): New face.
5675 (apropos-user-option): Rename from `apropos-variable' and update
5676 docstring.
5677 (apropos-variable): Rewrite, now show all variables by default.
5678 (apropos-print): Mention "User option" instead of "Variable" when
5679 printing doc for user options. (Bug#13276)
5680
5681 2013-01-07 Jürgen Hötzel <juergen@archlinux.org>
5682
5683 * net/tramp-adb.el (tramp-do-parse-file-attributes-with-ls):
5684 Handle filename correctly, when parsing "source -> target" symlink
5685 output.
5686 (tramp-adb-handle-set-file-times): New defun.
5687
5688 2013-01-07 Stefan Monnier <monnier@iro.umontreal.ca>
5689
5690 * emacs-lisp/advice.el (ad-activate-advised-definition): Refresh the
5691 advice list when the interactive-spec of ad-Advice-* changes.
5692
5693 2013-01-07 Katsumi Yamaoka <yamaoka@jpl.org>
5694
5695 * wid-edit.el (widget-default-get): Work for inlined elements.
5696 (Bug#12670)
5697
5698 2013-01-07 Michael Albinus <michael.albinus@gmx.de>
5699
5700 * net/tramp.el (tramp-default-host-alist): New defcustom.
5701 (tramp-find-host): Use it.
5702 (tramp-eshell-directory-change): Move from tramp-sh.el. Add to
5703 `eshell-directory-change-hook'.
5704
5705 * net/tramp-adb.el (top): Add adb specific entry in
5706 `tramp-default-host-alist'.
5707 (tramp-adb-file-name-host): Remove function.
5708 (tramp-adb-execute-adb-command, tramp-adb-maybe-open-connection):
5709 Use `tramp-file-name-host' instead of `tramp-adb-file-name-host'.
5710
5711 * net/tramp-sh.el: Move eshell integration code to tramp.el.
5712
5713 2013-01-06 Jürgen Hötzel <juergen@archlinux.org>
5714
5715 * net/tramp-adb.el (tramp-methods): Add `tramp-tmpdir' entry.
5716
5717 2013-01-06 Michael Albinus <michael.albinus@gmx.de>
5718
5719 * net/tramp-adb.el (tramp-adb-ls-toolbox-regexp): The file size can
5720 consist of more than one digit.
5721 (tramp-adb-file-name-handler-alist):
5722 Use `tramp-handle-file-exists-p' consistently.
5723 (tramp-adb-file-name-handler): Don't tweak `tramp-default-host'.
5724 (tramp-adb-handle-file-exists-p): Remove function.
5725 (tramp-adb-file-name-host): New defun.
5726 (tramp-adb-execute-adb-command, tramp-adb-maybe-open-connection):
5727 Use it.
5728 (tramp-adb-maybe-open-connection): Set "remote-path" property.
5729
5730 2013-01-06 Chong Yidong <cyd@gnu.org>
5731
5732 * vc/vc.el (vc-next-action): Detect buffer modifications
5733 conflicting with locking VCS operation (Bug#11490).
5734
5735 * vc/vc-hooks.el (vc-after-save): DTRT for locking VCSes.
5736
5737 2013-01-05 Michael Albinus <michael.albinus@gmx.de>
5738
5739 * net/tramp-adb.el (tramp-do-parse-file-attributes-with-ls):
5740 (tramp-adb-handle-directory-files-and-attributes): Fix typos.
5741
5742 2013-01-05 Jürgen Hötzel <juergen@archlinux.org>
5743
5744 * net/tramp-adb.el (tramp-adb-handle-file-attributes): More robust
5745 parsing of ls output using regular expression (handle filenames
5746 with spaces). Use virtual device number.
5747 (tramp-do-parse-file-attributes-with-ls): New defun (Code
5748 cleanup).
5749
5750 2013-01-04 Daiki Ueno <ueno@gnu.org>
5751
5752 * epg.el: Silence byte-compiler warnings.
5753 (epg--start): Use delete-char instead of delete-backward-char.
5754 (epg-wait-for-completion): Pass FRAME arg to redraw-frame.
5755
5756 2013-01-04 Daiki Ueno <ueno@gnu.org>
5757
5758 * epg.el (epg--start): Don't call "tty" program on W32 platforms.
5759 Suggested by Eli Zaretskii <eliz@gnu.org>.
5760
5761 2013-01-04 Michael Albinus <michael.albinus@gmx.de>
5762
5763 * net/tramp-sh.el (tramp-set-file-uid-gid): UID and GID must be
5764 non-negative integers. Otherwise, the default values are used.
5765 (tramp-convert-file-attributes): Convert uid and gid to integers.
5766
5767 2013-01-04 Glenn Morris <rgm@gnu.org>
5768
5769 * term.el (term-handle-colors-array): Ensure face attributes
5770 are fully specified, not nil. (Bug#13337)
5771
5772 * term.el (term-default-fg-color, term-default-bg-color):
5773 Fix custom type.
5774
5775 * progmodes/etags.el (tags-compression-info-list): Doc fix.
5776 (tag-find-file-of-tag-noselect): Check auto-compression-mode
5777 rather than 'jka-compr being loaded. (Bug#13338)
5778
5779 2013-01-04 Wesley Dawson <whd@lavabit.com> (tiny change)
5780
5781 * icomplete.el (icomplete-completions):
5782 Honor icomplete-prospects-height once more following
5783 2012-11-29 changes. (Bug#13224)
5784
5785 2013-01-04 Stefan Monnier <monnier@iro.umontreal.ca>
5786
5787 * subr.el (internal--called-interactively-p--get-frame): Find aliases
5788 of called-interactively-p as well (bug#13237).
5789
5790 * view.el (view--enable, view--disable): Rename from view-mode-enable
5791 and view-mode-disable and assume it's called from view-mode.
5792 (view-mode-enable, view-mode-disable): Redefine as obsolete
5793 compatibility layer above view-mode.
5794 (view-mode-enter): Call `view-mode'.
5795
5796 * files.el (after-find-file): Call `view-mode'.
5797
5798 * doc-view.el (doc-view-scale-internally): New var.
5799 (doc-view-enlarge, doc-view-insert-image): Obey it.
5800
5801 2013-01-03 Daiki Ueno <ueno@gnu.org>
5802
5803 * epg.el (epg--start): Ignore errors when /dev/fd/0 does not
5804 exist. (Bug#13344)
5805
5806 2013-01-03 Glenn Morris <rgm@gnu.org>
5807
5808 * mail/rmail.el (rmail-set-header-1): Ignore case.
5809 Handle multi-line headers. (Bug#13330)
5810
5811 * progmodes/make-mode.el (makefile-fill-paragraph): Add doc.
5812 Handle paragraph starting at beginning of buffer.
5813
5814 * subr.el (eval-after-load): Don't purecopy the form, so that it
5815 can be nconc'd later on; reverts 2009-11-11 change. (Bug#13331)
5816
5817 * emacs-lisp/byte-run.el (defun): Place cl declarations
5818 after any interactive spec. (Bug#13265)
5819
5820 2013-01-02 Andreas Schwab <schwab@linux-m68k.org>
5821
5822 * emacs-lisp/byte-run.el (defmacro): Use same argument parsing as
5823 defun. Don't check for DECL if DOCSTRING isn't a string.
5824 (defun): Likewise.
5825
5826 2013-01-02 Glenn Morris <rgm@gnu.org>
5827
5828 * eshell/em-cmpl.el (eshell-pcomplete):
5829 More thoroughly imitate pcomplete. (Bug#13293)
5830
5831 * files.el (parse-colon-path): Doc fix. (Bug#12351)
5832 Return nil for empty path elements. (Bug#13296)
5833
5834 2013-01-02 Fabián Ezequiel Gallina <fgallina@cuca>
5835
5836 * progmodes/python.el (python-nav-end-of-statement): Rewrite in
5837 order to improve efficiency (Based on Daniel Colascione's
5838 <dancol@dancol.org> patch). (Bug#13182)
5839
5840 2013-01-02 Glenn Morris <rgm@gnu.org>
5841
5842 * vc/log-edit.el (log-edit-header-contents-regexp): Add doc string.
5843
5844 2013-01-02 Andreas Schwab <schwab@linux-m68k.org>
5845
5846 * emacs-lisp/byte-run.el (defmacro): Don't lose final nil if
5847 neither DOCSTRING nor DECL was given. (Bug#13316)
5848
5849 2013-01-02 Michael Albinus <michael.albinus@gmx.de>
5850
5851 * net/tramp-sh.el (tramp-sh-handle-set-file-acl): Add argument to
5852 `error' call.
5853 (tramp-do-copy-or-rename-file): Ignore errors when calling
5854 `set-file-extended-attributes'.
5855
5856 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
5857 Add handler for `file-acl'.
5858 (tramp-smb-handle-file-acl): New defun.
5859
5860 2013-01-02 Jay Belanger <jay.p.belanger@gmail.com>
5861
5862 * calc/README: Mention ISO 8601 week-numbering dates.
5863
5864 2013-01-01 Martin Rudalics <rudalics@gmx.at>
5865
5866 * view.el (view-mode-enable): New argument run-view-mode-hook.
5867 Run view-mode-hook only when it's non-nil (Bug#13315).
5868 (view-mode-enter): Call view-mode-enable with run-view-mode-hook
5869 argument t.
5870
5871 2012-12-31 Jürgen Hötzel <juergen@archlinux.org>
5872
5873 * net/tramp-adb.el (tramp-adb-maybe-open-connection): Handle errors
5874 (No device connected, invalid device name). (Bug #13299)
5875
5876 2012-12-31 Martin Rudalics <rudalics@gmx.at>
5877
5878 * window.el (window-resizable--p): Rename to window-resizable-p.
5879 (window-resize-no-error): New function.
5880
5881 * mail/rmail.el (rmail-maybe-display-summary): Restore behavior
5882 broken in fix from 2012-12-28.
5883
5884 2012-12-31 Stefan Monnier <monnier@iro.umontreal.ca>
5885
5886 * subr.el (special-form-p): Don't signal errors on undef aliases.
5887
5888 2012-12-31 Jay Belanger <jay.p.belanger@gmail.com>
5889
5890 * calc/calc-forms.el (math-parse-date): Try using
5891 `math-parse-iso-date' when it looks like it might be needed.
5892 Allow times of 24:00.
5893 (math-parse-date-validate, math-parse-iso-date-validate): Allow times
5894 of 24:00.
5895
5896 2012-12-30 Glenn Morris <rgm@gnu.org>
5897
5898 * net/mairix.el (rmail, rmail-summary-displayed, rmail-summary):
5899 Remove unnecessary/buggy autoloads (missing interactive). (Bug#13294)
5900 (rmail-summary-displayed, rmail-summary): Declare.
5901 (mairix-rmail-display): Just require rmail.
5902
5903 2012-12-30 Chong Yidong <cyd@gnu.org>
5904
5905 * emacs-lisp/package.el (package-untar-buffer): Improve integrity
5906 check for the tarball contents.
5907
5908 2012-12-30 Matt Fidler <matt.fidler@alcon.com> (tiny change)
5909
5910 * emacs-lisp/package.el (package-untar-buffer): Handle problematic
5911 tarfile content listings (Bug#13136).
5912
5913 2012-12-30 Mark Lillibridge <mark.lillibridge@hp.com>
5914
5915 * mail/rmailmm.el (rmail-insert-mime-forwarded-message):
5916 Insert the undecoded text of the message being forwarded. (Bug#9521)
5917
5918 2012-12-30 Michael Albinus <michael.albinus@gmx.de>
5919
5920 * net/tramp-sh.el (tramp-set-file-uid-gid): Convert UID and GID to
5921 integers, if they are real numbers. (Bug#13282)
5922
5923 * net/tramp-sh.el (tramp-sh-handle-set-file-selinux-context):
5924 Return `t' on success.
5925
5926 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
5927 Add handler for `set-file-selinux-context'.
5928
5929 2012-12-29 Michael Albinus <michael.albinus@gmx.de>
5930
5931 * net/tramp-sh.el (tramp-sh-handle-file-acl): Suppress basic attributes.
5932 (tramp-sh-handle-set-file-acl): Return `t' on success.
5933
5934 2012-12-29 Eli Zaretskii <eliz@gnu.org>
5935
5936 * files.el (backup-buffer-copy, basic-save-buffer-2):
5937 If set-file-extended-attributes fails, fall back on set-file-modes
5938 instead of signaling an error. (Bug#13298)
5939 (basic-save-buffer): Likewise.
5940
5941 2012-12-29 Fabián Ezequiel Gallina <fgallina@cuca>
5942
5943 * progmodes/python.el: Support other commands triggering
5944 python-indent-line so indentation cycling continues to work.
5945 (python-indent-trigger-commands): New defcustom.
5946 (python-indent-line): Use it.
5947
5948 2012-12-29 Fabián Ezequiel Gallina <fgallina@cuca>
5949
5950 * progmodes/python.el (python-shell-send-region): Add blank lines
5951 for non sent code so backtraces remain correct.
5952
5953 2012-12-29 Fabián Ezequiel Gallina <fgallina@cuca>
5954
5955 * progmodes/python.el: Remove cl dependency.
5956 (python-syntax-count-quotes): Replace incf call.
5957 (python-fill-string): Replace setf call.
5958
5959 2012-12-29 Damien Cassou <damien.cassou@gmail.com>
5960
5961 * info.el (info-other-window): New arg, for consistency with info.
5962
5963 2012-12-28 Martin Rudalics <rudalics@gmx.at>
5964
5965 * mail/rmail.el (rmail-maybe-display-summary):
5966 Rewrite (Bug#13066).
5967
5968 2012-12-28 Andreas Schwab <schwab@linux-m68k.org>
5969
5970 * epg.el (epg--start): Modify process-environment locally.
5971
5972 2012-12-28 Daiki Ueno <ueno@gnu.org>
5973
5974 * epg.el: Support pinentry-curses.
5975 Suggested by Werner Koch in
5976 <http://lists.gnu.org/archive/html/emacs-devel/2007-02/msg00755.html>.
5977 (epg-agent-file, epg-agent-mtime): New variable.
5978 (epg--start): Record the modified time of gpg-agent socket file,
5979 to restore Emacs frame after pinentry-curses termination.
5980 (epg-wait-for-completion): Restore Emacs frame here.
5981
5982 2012-12-27 Juri Linkov <juri@jurta.org>
5983
5984 * info.el (Info-file-completions): New variable.
5985 (Info-read-node-name-1): Complete node names in the Info file
5986 when a file name is given. Call `Info-build-node-completions'
5987 with a file name.
5988 (Info-build-node-completions): Add new arg `file'. When it is
5989 non-nil, visit it in a temporary buffer and cache its completions in
5990 `Info-current-file-completions'. Move most of the function body to
5991 `Info-build-node-completions-1'.
5992 (Info-build-node-completions-1): New function with the body from
5993 `Info-build-node-completions'. (Bug#12456)
5994
5995 2012-12-27 Juri Linkov <juri@jurta.org>
5996
5997 * frame.el (frame-maximization-style): Remove user option.
5998 (cycle-frame-maximized): Remove function.
5999 (toggle-frame-maximized): Rewrite and bind to M-<f10>.
6000 (toggle-frame-fullscreen): New command bound to <f11> instead of
6001 `toggle-frame-maximized'.
6002 http://lists.gnu.org/archive/html/emacs-devel/2012-12/msg00703.html
6003
6004 2012-12-27 Michael Albinus <michael.albinus@gmx.de>
6005
6006 * net/tramp.el (tramp-handle-file-accessible-directory-p): New defun.
6007
6008 * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
6009 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
6010 * net/tramp-sh.el (tramp-sh-file-name-handler-alist): Add handler
6011 for `file-accessible-directory-p'. (Bug#13275)
6012
6013 2012-12-27 Sam Steingold <sds@gnu.org>
6014
6015 * progmodes/cperl-mode.el (cperl-calculate-indent): Do not stagger
6016 continuations, see <http://stackoverflow.com/questions/3582436>.
6017
6018 2012-12-27 Dmitry Gutov <dgutov@yandex.ru>
6019
6020 * progmodes/ruby-mode.el (ruby-indent-beg-re): Only allow "class",
6021 "module" and "def" to have indentation before them.
6022 Regression from 2012-09-07T04:15:56Z!dgutov@yandex.ru (see the new test).
6023
6024 * progmodes/ruby-mode.el: Bump the version to 1.2 (Bug#13200).
6025
6026 2012-12-27 Alan Mackenzie <acm@muc.de>
6027
6028 Speed up fontification where there's large brace blocks.
6029 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls): Add a limit
6030 to a call of c-beginning-of-decl-1.
6031
6032 2012-12-27 Vitalie Spinu <spinuvit@gmail.com> (tiny change)
6033
6034 * comint.el (comint-adjust-window-point): New function.
6035 (comint-postoutput-scroll-to-bottom):
6036 Call comint-adjust-window-point (Bug#13248).
6037
6038 2012-12-26 Dmitry Gutov <dgutov@yandex.ru>
6039
6040 * progmodes/ruby-mode.el (auto-mode-alist): `purecopy' the
6041 Rakefile regexp.
6042 (auto-mode-alist): Associate .gemspec files with ruby-mode
6043 (https://bugs.ruby-lang.org/issues/5453).
6044
6045 2012-12-26 Jürgen Hötzel <juergen@archlinux.org>
6046
6047 * net/tramp-adb.el (tramp-adb-get-ls-command): New defun.
6048 Suppress coloring, if possible (required for BusyBox based systems like
6049 CyanogenMod).
6050 (tramp-adb-handle-file-attributes)
6051 (tramp-adb-handle-insert-directory)
6052 (tramp-adb-handle-file-name-all-completions): Use it.
6053 (tramp-adb-get-toolbox): New defun. Check for remote shell
6054 implementation (BusyBox or Toolbox).
6055
6056 2012-12-24 Constantin Kulikov <zxnotdead@gmail.com> (tiny change)
6057
6058 * startup.el (initial-buffer-choice): Allow function as value
6059 (Bug#13251).
6060 (command-line-1): Handle case where initial-buffer-choice
6061 specifies a function.
6062 * server.el (server-execute): Handle case where
6063 initial-buffer-choice specifies a function.
6064
6065 2012-12-24 Lars Ingebrigtsen <larsi@gnus.org>
6066
6067 * mail/smtpmail.el (smtpmail-try-auth-method): Refactored out into
6068 its own function.
6069 (smtpmail-try-auth-methods): Forget the user name/password if the
6070 login is unsuccessful (bug#12424).
6071
6072 2012-12-22 Michael Albinus <michael.albinus@gmx.de>
6073
6074 * notifications.el (notifications-notify): Protect body with
6075 `with-demoted-errors'.
6076
6077 * net/tramp-adb.el (tramp-adb-maybe-open-connection):
6078 Check properties of remote device. Restart connection, if there is a
6079 change.
6080
6081 2012-12-21 Chong Yidong <cyd@gnu.org>
6082
6083 * sort.el (sort-subr): Doc fix (Bug#13056).
6084
6085 2012-12-21 Bastien Guerry <bzg@gnu.org>
6086
6087 * progmodes/etags.el (tags-search): Fix typo. Bug #13232.
6088
6089 2012-12-21 Michael Albinus <michael.albinus@gmx.de>
6090
6091 * simple.el (process-file): Overwrite stderr file, if exists.
6092
6093 2012-12-21 Daiki Ueno <ueno@gnu.org>
6094
6095 * epg.el (epg--start): Print GPG_AGENT_INFO in the debug buffer.
6096 (epg-error): Set `error-message' property.
6097
6098 2012-12-21 Chong Yidong <cyd@gnu.org>
6099
6100 * international/mule-cmds.el (read-char-by-name): Signal an error
6101 if the user does not supply a valid character (Bug#13177).
6102
6103 * simple.el (transpose-subr-1): Preserve marker positions by
6104 changing the insertion sequence (Bug#13122).
6105
6106 2012-12-21 Kelly Dean <kellydeanch@yahoo.com> (tiny change)
6107
6108 * simple.el (kill-region): Deactivate mark even for empty regions
6109 (Bug#13169).
6110
6111 2012-12-21 Chong Yidong <cyd@gnu.org>
6112
6113 * help-fns.el (describe-variable): Make sure we get the right
6114 buffer name (Bug#13105). Suggested by Kelly Dean.
6115
6116 2012-12-20 Michael R. Mauger <mmaug@yahoo.com>
6117
6118 * comint.el (comint-redirect-previous-input-string): New variable.
6119 (comint-redirect-setup, comint-redirect-cleanup)
6120 (comint-redirect-preoutput-filter): Use it. Fixes redirection bug.
6121 (comint-redirect-preoutput-filter): Fix verbose message.
6122
6123 2012-12-20 Michael Albinus <michael.albinus@gmx.de>
6124
6125 * progmodes/grep.el (rgrep): Escape command line. Sometimes, it
6126 is too long for Tramp. See discussion in
6127 <http://thread.gmane.org/gmane.emacs.tramp/8233/focus=8244>.
6128
6129 * progmodes/compile.el (compilation-start): Remove line escape
6130 template.
6131
6132 2012-12-20 Dmitry Antipov <dmantipov@yandex.ru>
6133
6134 * vc/ediff-ptch.el (ediff-map-patch-buffer): Use `point-min-marker'.
6135 Adjust comment.
6136
6137 2012-12-19 Jonas Bernoulli <jonas@bernoul.li>
6138
6139 * emacs-lisp/lisp-mnt.el (lm-section-end): Always end before the
6140 following non-comment text (bug#13207).
6141 (lm-header-multiline): Continuation lines need to be indented more than
6142 the first line.
6143 (lm-homepage): New function.
6144 (lm-with-file): Don't be confused if narrowing is in effect.
6145
6146 2012-12-19 Stefan Monnier <monnier@iro.umontreal.ca>
6147
6148 * vc/diff-mode.el (diff-post-command-hook): Don't ignore changes at the
6149 very beginning of a hunk (e.g. killing the first line).
6150
6151 2012-12-19 Michael Albinus <michael.albinus@gmx.de>
6152
6153 * net/tramp-sh.el (tramp-sh-handle-file-acl): Delete empty lines
6154 and text properties from returned ACL string.
6155 (tramp-sh-handle-set-file-acl): Do not use additional parentheses
6156 for "setfacl" command.
6157
6158 2012-12-18 Michael Albinus <michael.albinus@gmx.de>
6159
6160 * net/tramp.el (tramp-error-with-buffer): Give a hint to use
6161 `tramp-cleanup-this-connection', when the process has died.
6162 (Bug#13151)
6163
6164 2012-12-17 Stefan Monnier <monnier@iro.umontreal.ca>
6165
6166 * icomplete.el (icomplete-completions): Also use … to truncate prefix.
6167
6168 2012-12-17 Kevin Ryde <user42@zip.com.au>
6169
6170 * files.el (auto-save-file-name-p): Use \` and \' (bug#13186).
6171
6172 2012-12-17 Michael Albinus <michael.albinus@gmx.de>
6173
6174 Add support for preserving ACL entries of files.
6175
6176 * net/tramp.el (tramp-file-name-for-operation): Add `file-acl' and
6177 `set-file-acl' handlers.
6178
6179 * net/tramp-adb.el (tramp-adb-handle-copy-file):
6180 Handle PRESERVE-EXTENDED-ATTRIBUTES.
6181
6182 * net/tramp-compat.el (tramp-compat-copy-file):
6183 Handle PRESERVE-EXTENDED-ATTRIBUTES.
6184
6185 * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
6186 Add `file-acl' and `set-file-acl' handlers.
6187 (tramp-gvfs-handle-copy-file):
6188 Handle PRESERVE-EXTENDED-ATTRIBUTES.
6189 (tramp-gvfs-handle-file-acl, tramp-gvfs-handle-set-file-acl):
6190 New defuns.
6191
6192 * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
6193 Add `file-acl' and `set-file-acl' handlers.
6194 (tramp-remote-acl-p, tramp-sh-handle-file-acl)
6195 (tramp-sh-handle-set-file-acl): New defuns.
6196 (tramp-sh-handle-copy-file, tramp-do-copy-or-rename-file):
6197 Handle PRESERVE-EXTENDED-ATTRIBUTES.
6198
6199 * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
6200 Add `file-acl' and `set-file-acl' handlers.
6201 (tramp-smb-handle-copy-file): Handle PRESERVE-EXTENDED-ATTRIBUTES.
6202
6203 2012-12-17 Kelly Dean <kellydeanch@yahoo.com> (tiny change)
6204
6205 * help-macro.el (make-help-screen): Instead of switch-to-buffer
6206 use pop-to-buffer with NORECORD argument t. As buffer name, use
6207 *Metahelp* with a leading space (Bug#13190).
6208
6209 2012-12-16 Romain Francoise <romain@orebokech.com>
6210
6211 * files.el (file-extended-attributes)
6212 (set-file-extended-attributes): New functions.
6213 (backup-buffer): Use them to handle both SELinux context and ACL
6214 entries.
6215 (backup-buffer-copy): Work with an alist of extended attributes,
6216 rather than an SELinux context.
6217 (basic-save-buffer-2): Ditto.
6218
6219 2012-12-16 Timo Myyrä <timo.myyra@gmail.com>
6220
6221 * battery.el (battery-bsd-apm): New function.
6222
6223 2012-12-16 Jay Belanger <jay.p.belanger@gmail.com>
6224
6225 * calc/calc.el (calc-standard-date-formats): Adjust one of the
6226 standard date formats.
6227
6228 2012-12-15 Juri Linkov <juri@jurta.org>
6229
6230 * isearch.el (isearch-mode-map): Bind `C-x 8 RET' to
6231 `isearch-insert-char-by-name'.
6232 (with-isearch-suspended): New defmacro with body mostly from
6233 `isearch-edit-string' except the part that sets
6234 `isearch-new-string' and `isearch-new-message'.
6235 (isearch-edit-string): Use new macro `with-isearch-suspended' with
6236 body that sets `isearch-new-string' and `isearch-new-message'.
6237 (isearch-insert-char-by-name): New command.
6238 * international/mule-cmds.el (read-char-by-name): Let-bind
6239 `enable-recursive-minibuffers' to t.
6240 http://lists.gnu.org/archive/html/emacs-devel/2012-12/msg00234.html
6241
6242 2012-12-15 Juri Linkov <juri@jurta.org>
6243
6244 * isearch.el (isearch-delete-char, isearch-del-char): Doc fix.
6245 (Bug#13175)
6246
6247 2012-12-15 Christopher Schmidt <christopher@ch.ristopher.com>
6248
6249 * dired-x.el (dired-guess-shell-command): Put colon at the end of
6250 the prompt. (Bug#13045)
6251
6252 2012-12-14 Glenn Morris <rgm@gnu.org>
6253
6254 * emacs-lisp/macroexp.el (macroexp--warn-and-return):
6255 Try to include filename in non-bytecomp warning. (Bug#13132)
6256
6257 2012-12-14 Paul Eggert <eggert@cs.ucla.edu>
6258
6259 Fix permissions bugs with setgid directories etc. (Bug#13125)
6260 * files.el (backup-buffer): Don't rely on 9th output of
6261 file-attributes, as it's now a placeholder. Instead, use the new
6262 optional arg of file-ownership-preserved-p.
6263 (file-ownership-preserved-p): New optional arg GROUP.
6264 Fix mishandling of setuid directories that would cause this
6265 function to return t when it should have returned nil.
6266 Document what happens if the file does not exist, and when
6267 it's not known whether the ownership will be preserved.
6268 * net/tramp-sh.el (tramp-sh-handle-file-ownership-preserved-p):
6269 Likewise.
6270 (tramp-get-local-gid): Use group-gid for integer, as that's
6271 faster and more reliable.
6272
6273 2012-12-14 Julien Danjou <julien@danjou.info>
6274
6275 * progmodes/sql.el (sql-mode-postgres-font-lock-keywords):
6276 Update keywords list, data type and PL/pgSQL.
6277
6278 2012-12-14 Dave Abrahams <dave@boostpro.com>
6279
6280 * vc/ediff-util.el (ediff-buffer-type): New function.
6281 (ediff-clone-buffer-for-current-diff-comparison): Compute the buf-type
6282 rather than taking it as as argument.
6283 (ediff-inferior-compare-regions): Adjust calls accordingly (bug#11319).
6284
6285 2012-12-14 Ryan Crum <ryan.crum@eleostech.com>
6286
6287 * json.el: Add pretty-print option (bug#12634).
6288 (json-encoding-separator, json-encoding-default-indentation)
6289 (json--encoding-current-indentation, json-encoding-pretty-print)
6290 (json-encoding-lisp-style-closings): New vars.
6291 (json--with-indentation): New macro.
6292 (json-encode-hash-table, json-encode-alist, json-encode-plist)
6293 (json-encode-array): Use it to obey json-encoding-pretty-print.
6294 (json-pretty-print-buffer, json-pretty-print): New commands.
6295
6296 2012-12-14 Dmitry Gutov <dgutov@yandex.ru>
6297
6298 * progmodes/ruby-mode.el (ruby-syntax-propertize-function):
6299 Extract `ruby-syntax-propertize-expansions'.
6300 (ruby-syntax-propertize-expansions): Only change syntax on
6301 certain string delimiters, to punctuation. This way the common
6302 functions like forward-word and thing-at-point still work.
6303 (ruby-match-expression-expansion): Improve readability.
6304 (ruby-block-contains-point): New function.
6305 (ruby-add-log-current-method): Handle several edge cases.
6306
6307 2012-12-13 Juanma Barranquero <lekktu@gmail.com>
6308
6309 * emacs-lisp/edebug.el (edebug-unload-function): Make sure that
6310 unload-feature finishes even when aborting an ongoing edebug session.
6311 Also, do not worry about edebug-mode, unload-feature takes care of it.
6312
6313 2012-12-13 Andreas Schwab <schwab@suse.de>
6314
6315 * net/tls.el (tls-program): Update customize type.
6316
6317 2012-12-13 Juanma Barranquero <lekktu@gmail.com>
6318
6319 * emacs-lisp/edebug.el (edebug--require-cl-read): New function.
6320 (edebug-setup-hook, cl-read-load-hooks): Use it.
6321 (edebug-unload-function): New function. (Bug#13163)
6322
6323 2012-12-13 Michael Albinus <michael.albinus@gmx.de>
6324
6325 * net/tramp-adb.el (tramp-adb-file-name-p): Make it a defsubst.
6326 Otherwise, there could be errors in autoloading. (Bug#13151)
6327
6328 2012-12-13 Jürgen Hötzel <juergen@archlinux.org>
6329
6330 * net/tramp-adb.el (tramp-adb-wait-for-output): Remove spurious " ^H"
6331 sequences.
6332
6333 2012-12-13 Alan Mackenzie <acm@muc.de>
6334
6335 Make CC Mode not hang when _some_ lines end in CRLF. Bug #11841.
6336 * progmodes/cc-engine.el (c-backward-comments): Add code to work
6337 around `forward-comment' not recognizing ^M as whitespace.
6338
6339 2012-12-13 Fabián Ezequiel Gallina <fgallina@cuca>
6340
6341 * progmodes/python.el (python-skeleton-class)
6342 (python-skeleton-def): Do not add space after defun name.
6343
6344 2012-12-13 Stefan Monnier <monnier@iro.umontreal.ca>
6345
6346 * emacs-lisp/cl.el (letf): Make it an alias of cl-letf.
6347 (cl--symbol-function): Remove (now that funbound is like nil).
6348
6349 2012-12-12 Glenn Morris <rgm@gnu.org>
6350
6351 * button.el (button--area-button-p): Fix typo.
6352
6353 2012-12-12 Sam Steingold <sds@gnu.org>
6354
6355 * frame.el (frame-maximization-style): New user option.
6356 (toggle-frame-maximized): Toggle frame maximization according to
6357 `frame-maximization-style', bound to <f11>.
6358 (cycle-frame-maximized): Cycle between all maximization styles and
6359 non-maximized frame, bound to shift-<f11>.
6360
6361 2012-12-12 David Cadé <codename68@gmail.com>
6362
6363 * mpc.el (mpc-format): Use truncate-string-to-width (bug#13143).
6364
6365 2012-12-12 Jonas Bernoulli <jonas@bernoul.li>
6366
6367 * lisp/emacs-lisp/eieio.el: Prettier object pretty-printing (bug#13115).
6368 (eieio-override-prin1): Don't quote kewords and booleans.
6369 (object-write) <eieio-default-superclass>: Don't put closing parens
6370 on new line, avoid needless empty lines, align values that are objects
6371 with the slot keyword (instead of beginning on the same line).
6372 (eieio-list-prin1): Align value with slot keyword; increase
6373 eieio-print-depth before printing members of the list.
6374
6375 2012-12-11 Stefan Monnier <monnier@iro.umontreal.ca>
6376
6377 * mail/emacsbug.el (report-emacs-bug): Move the intangible text to
6378 a display text-property.
6379 (report-emacs-bug-hook): Don't bother deleting it any more.
6380
6381 * hilit-chg.el (highlight-save-buffer-state): Delete.
6382 Use with-silent-modifications instead.
6383 (hilit-chg-set-face-on-change): Only fixup the text that's modified.
6384
6385 * button.el: Handle buttons in display text-properties.
6386 (button--area-button-p, button--area-button-string):
6387 Use (STRING . STRING-POS) representation instead of just STRING.
6388
6389 2012-12-11 Eli Zaretskii <eliz@gnu.org>
6390
6391 * makefile.w32-in (compile4-SH): Fix a typo that caused term
6392 subdirectory be skipped.
6393
6394 2012-12-11 Glenn Morris <rgm@gnu.org>
6395
6396 * net/rcirc.el (rcirc-urls, rcirc-condition-filter): Doc fixes.
6397
6398 * progmodes/f90.el (f90-line-continued, f90-indent-region):
6399 Treat preprocessor lines embedded in continuations like comments.
6400 (f90-indent-line): Special-case preprocessor lines. (Bug#13138)
6401
6402 2012-12-11 Jay Belanger <jay.p.belanger@gmail.com>
6403
6404 * calc/calc.el (calc-standard-date-formats): Add more date
6405 formats.
6406 * calc/calc-forms.el (math-parse-iso-date): New function.
6407 (math-parse-date): Use `math-parse-iso-date' when appropriate.
6408 (math-parse-iso-date-validate): Add extra error checking.
6409 (calc-date-notation): Add ability to access new date formats.
6410
6411 2012-12-10 Stefan Monnier <monnier@iro.umontreal.ca>
6412
6413 * hi-lock.el (hi-lock--regexps-at-point): Fix boundary case for
6414 font-lock as well as when there's no text-property.
6415
6416 2012-12-10 Jambunathan K <kjambunathan@gmail.com>
6417
6418 * hi-lock.el: Refine the choice of default face.
6419 (hi-lock-keyword->face): New function. Use it wherever we used
6420 cadadadr instead.
6421 (hi-lock--regexps-at-point): Ignore faces that can't come from hi-lock.
6422 (hi-lock--last-face): Remove var.
6423 (hi-lock--unused-faces): New var to replace it.
6424 (hi-lock-read-face-name): Use/maintain it.
6425 (hi-lock-unface-buffer): Maintain it. Fix error for the C-u case.
6426 (hi-lock-set-pattern): Ignore new rule if it has the same regexp even
6427 if it has another face.
6428
6429 2012-12-10 Eli Zaretskii <eliz@gnu.org>
6430
6431 * subr.el (w32notify-handle-event): New function.
6432 (inotify-handle-event): Doc fix.
6433
6434 2012-12-10 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
6435
6436 * subr.el (inotify-event-p, inotify-handle-event): New functions.
6437
6438 2012-12-10 Dani Moncayo <dmoncayo@gmail.com>
6439
6440 * simple.el (just-one-space): Doc fix.
6441
6442 2012-12-10 Eli Zaretskii <eliz@gnu.org>
6443
6444 * textmodes/texinfo.el (texinfo-enable-quote-envs): Add "smallexample".
6445
6446 2012-12-10 Le Wang <l26wang@gmail.com>
6447
6448 * hilit-chg.el (hilit-chg-set-face-on-change): Don't burp in
6449 narrowed buffer (bug#12361).
6450
6451 2012-12-10 Juanma Barranquero <lekktu@gmail.com>
6452
6453 * vc/vc-hooks.el (vc-state): Doc fix.
6454
6455 2012-12-10 Glenn Morris <rgm@gnu.org>
6456
6457 * mail/rmail.el (rmail-maybe-display-summary):
6458 Preserve buffer, in case select-window changes it. (Bug#13066)
6459
6460 2012-12-10 Stefan Monnier <monnier@iro.umontreal.ca>
6461
6462 * emacs-lisp/cl.el, emacs-lisp/cl-lib.el: Move cl-unload-function and
6463 cl-load-hook where they belong.
6464
6465 2012-12-10 Stefan Monnier <monnier@iro.umontreal.ca>
6466
6467 * emacs-lisp/cl-lib.el (cl-declaim): Paren typo.
6468
6469 2012-12-09 Eli Zaretskii <eliz@gnu.org>
6470
6471 Parallelize byte compilation on MS-Windows.
6472 * makefile.w32-in (WINS_BASIC1, WINS_BASIC2, WINS_BASIC3)
6473 (WINS_BASIC4): New variables, subdivide subdirectories into 4 parts.
6474 (WINS_BASIC): Define as concatenation of the above.
6475 (compile): Subdivide into 4 separate and independent jobs that can
6476 be run in parallel.
6477 (compile0-CMD, compile0-SH): New targets for compiling
6478 COMPILE_FIRST files, which are prerequisites for the rest of the
6479 byte-compilation.
6480 (compile1-CMD, compile2-CMD, compile3-CMD, compile4-CMD):
6481 New targets for parallel compilation with cmd.exe.
6482 (compile1-SH, compile2-SH, compile3-SH, compile4-SH): Ditto for
6483 compiling under a Unixy shell.
6484
6485 2012-12-09 Chong Yidong <cyd@gnu.org>
6486
6487 * simple.el (set-mark-default-inactive): Delete this
6488 accidentally-introduced option.
6489 (set-mark-command, exchange-point-and-mark): Remove calls.
6490
6491 2012-12-09 Glenn Morris <rgm@gnu.org>
6492
6493 * emacs-lisp/lisp-mode.el (eval-defun-1): Doc fix.
6494 Respect a defcustom's :set function, if appropriate. (Bug#109)
6495 (eval-defun): Doc fix.
6496
6497 2012-12-08 Juri Linkov <juri@jurta.org>
6498
6499 * info.el (Info-copy-current-node-name, Info-breadcrumbs)
6500 (Info-fontify-node, Info-bookmark-make-record): Remove the
6501 file extension from Info-current-file (Bug#13016).
6502
6503 2012-12-07 Stefan Monnier <monnier@iro.umontreal.ca>
6504
6505 * hi-lock.el (hi-lock-unface-buffer): If there's no matching regexp at
6506 point, still provide some default.
6507 (hi-lock--regexps-at-point): Don't enforce a "hi-lock-" prefix on face
6508 names, since we don't use it right now. Actually return the list.
6509 (hi-lock-file-patterns, hi-lock-interactive-patterns): Use defvar-local.
6510
6511 2012-12-07 Chong Yidong <cyd@gnu.org>
6512
6513 * novice.el (disabled-command-function): Remove a spurious help
6514 xref (Bug#13043). Suggested by Kelly Dean.
6515
6516 * subr.el (text-clone-maintain): Fix clone overlay deletion when a
6517 syntax is specified (Bug#13025).
6518
6519 * info.el (Info-set-mode-line): Remove the file extension from
6520 Info-current-file if there is one (Bug#13016).
6521
6522 2012-12-07 Glenn Morris <rgm@gnu.org>
6523
6524 * mail/rmail.el (rmail-mime-decoded): New permanent local.
6525 (rmail-show-message-1): Set rmail-mime-decoded when appropriate.
6526 * mail/rmailedit.el (rmail-cease-edit): Respect rmail-mbox-format
6527 and rmail-mime-decoded. (Bug#9841)
6528
6529 * mail/unrmail.el (unrmail-mbox-format): New option. (Bug#6574)
6530 (batch-unrmail, unrmail): Doc fixes.
6531 (unrmail): Respect unrmail-mbox-format.
6532 * mail/rmail.el (rmail-mbox-format): New option.
6533 (rmail-show-message-1): Respect rmail-mbox-format.
6534
6535 2012-12-07 Stefan Monnier <monnier@iro.umontreal.ca>
6536
6537 * emacs-lisp/cl-macs.el (cl-tagbody): New macro.
6538
6539 2012-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
6540
6541 Further cleanup of the "cl-" namespace. Fit CL in 80 columns.
6542 * emacs-lisp/cl-macs.el (cl--pop2, cl--optimize-safety)
6543 (cl--optimize-speed, cl--not-toplevel, cl--parse-loop-clause)
6544 (cl--expand-do-loop, cl--proclaim-history, cl--declare-stack)
6545 (cl--do-proclaim, cl--proclaims-deferred): Rename from the "cl-" prefix.
6546 (cl-progv): Don't rely on dynamic scoping to find the body.
6547 * emacs-lisp/cl-lib.el (cl--optimize-speed, cl--optimize-safety)
6548 (cl--proclaims-deferred): Rename from the "cl-" prefix.
6549 (cl-declaim): Use backquotes.
6550 * emacs-lisp/cl-extra.el (cl-make-random-state, cl-random-state-p):
6551 Use "cl--" prefix for the object's tag.
6552
6553 * ses.el: Use advice-add/remove.
6554 (ses--advice-copy-region-as-kill, ses--advice-yank): New functions.
6555 (copy-region-as-kill, yank): Use advice-add.
6556 (ses-unload-function): Use advice-remove.
6557
6558 2012-12-06 Jonas Bernoulli <jonas@bernoul.li>
6559
6560 * button.el: Make them work in header-lines (bug#12817).
6561 (button-map): Add bindings for header-line and mode-line use.
6562 (button-get, button-put, button-label): `button' may now be a string.
6563 (button-activate): Don't make it a defsubst.
6564 (button--area-button-p, button--area-button-string): New functions.
6565 (make-text-button): Fix the return value when `beg' was a string.
6566 (push-button): Handle the mode-line case.
6567
6568 2012-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
6569
6570 * progmodes/sql.el: Use cl-lib and lexical-binding; various cleanup.
6571 (sql-signum): Remove. Use `cl-signum' instead.
6572 (sql-read-passwd): Remove; use read-passwd instread.
6573 (sql-get-login-ext): Use read-string.
6574 (sql-get-login): Use dolist and pcase.
6575 (sql--completion-table): Rename from sql-try-completion.
6576 Use complete-with-action.
6577 (sql-mode): Don't change abbrev-all-caps globally.
6578 (sql-connect): Don't rely on dynamic scoping for `new-name'.
6579 (sql-postgres-completion-object): Initialize vars in their `let'.
6580 (sql-comint-sybase, sql-comint-sqlite, sql-comint-mysql)
6581 (sql-comint-solid, sql-comint-ms, sql-comint-postgres)
6582 (sql-comint-interbase): Use a single append, without setq.
6583 (sql-comint-linter): Same, and unwind-protect the LINTER_MBX var.
6584
6585 * hi-lock.el: Rework the default face and the serialize regexp code.
6586 (hi-lock--auto-select-face-defaults): Remove.
6587 (hi-lock-string-serialize-serial): Remove.
6588 (hi-lock--hashcons-hash): Rename from hi-lock-string-serialize-hash;
6589 make weak.
6590 (hi-lock--hashcons): Rename from hi-lock-string-serialize, return an
6591 equal string.
6592 (hi-lock-set-pattern): Adjust accordingly.
6593 (hi-lock--regexps-at-point): Simplify accordingly.
6594 (hi-lock--auto-select-face-defaults): Remove.
6595 (hi-lock--last-face): New var to replace it.
6596 (hi-lock-read-face-name): Rewrite (bug#11095).
6597 (hi-lock-unface-buffer): Arrange for the face to be the next default.
6598
6599 2012-12-06 Michael Albinus <michael.albinus@gmx.de>
6600
6601 * net/tramp.el (tramp-replace-environment-variables):
6602 Hide compiler warning.
6603 (tramp-file-name-for-operation): Remove `executable-find',
6604 `start-process', `call-process' and `call-process-region'.
6605
6606 * net/tramp-compat.el (top): Don't require 'tramp-util and 'tramp-vc.
6607
6608 * net/tramp-gvfs.el (tramp-gvfs-dbus-event-error): Ensure backward
6609 compatibility.
6610
6611 * net/tramp-sh.el (top): Remove `tramp-sh-handle-call-process-region'.
6612
6613 2012-12-06 Chong Yidong <cyd@gnu.org>
6614
6615 * ffap.el (ffap-replace-file-component): Fix typo.
6616
6617 2012-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
6618
6619 * progmodes/octave-mod.el (octave-mark-block): Move out of tokens and
6620 fix open-paren-like token test (bug#12785).
6621
6622 2012-12-06 Glenn Morris <rgm@gnu.org>
6623
6624 * mail/rmailsum.el (rmail-new-summary): Tweak for
6625 rmail-maybe-display-summary changing buffer. (Bug#13066)
6626
6627 2012-12-06 Juri Linkov <juri@jurta.org>
6628
6629 * info.el (Info-fontify-node): Don't hide the last newline.
6630 (Bug#12272)
6631
6632 2012-12-06 Katsumi Yamaoka <yamaoka@jpl.org>
6633
6634 * mail/mailabbrev.el (mail-abbrev-expand-wrapper): Work in minibuffer
6635 so as to enable message-read-from-minibuffer to expand mail aliases.
6636
6637 2012-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
6638
6639 * minibuf-eldef.el (minibuf-eldef-update-minibuffer): Don't mess with
6640 the `intangible' property.
6641 Suggested by Christopher Schmidt <christopher@ch.ristopher.com>
6642
6643 2012-12-05 Deniz Dogan <deniz@dogan.se>
6644
6645 * net/rcirc.el (rcirc-urls): Update documentation.
6646 (rcirc-condition-filter): New function.
6647 (rcirc-browse-url, rcirc-markup-urls): Use only URLs before point
6648 and exclude consecutive duplicate URLs (Bug#6082).
6649
6650 2012-12-05 Michael Albinus <michael.albinus@gmx.de>
6651
6652 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
6653 Check return code of copy command.
6654
6655 * net/tramp-adb.el (tramp-adb-sdk-dir, tramp-adb-prompt):
6656 Use group `tramp'. Add version.
6657
6658 2012-12-05 Chong Yidong <cyd@gnu.org>
6659
6660 * ffap.el (ffap-url-regexp): Don't require matching at front of
6661 string (Bug#4952).
6662 (ffap-url-p): If only a substring matches, return that.
6663 (ffap-url-at-point): Use the return value of ffap-url-p.
6664 (ffap-read-file-or-url, ffap-read-file-or-url-internal)
6665 (find-file-at-point, dired-at-point, dired-at-point-prompter)
6666 (ffap-guess-file-name-at-point): Likewise.
6667 (ffap-replace-file-component): Fix typo.
6668
6669 * info.el (info-display-manual): Add existing Info buffers, whose
6670 files may not be in Info-directory-list, to the completion.
6671 (info--manual-names): New helper function.
6672
6673 2012-12-05 Glenn Morris <rgm@gnu.org>
6674
6675 * vc/vc-hg.el (vc-hg-resolve-when-done, vc-hg-find-file-hook):
6676 New functions, for detecting and resolving conflicts. (Bug#10709)
6677
6678 2012-12-04 Jambunathan K <kjambunathan@gmail.com>
6679
6680 * hi-lock.el (hi-lock-auto-select-face): New user variable.
6681 (hi-lock-auto-select-face-defaults): New buffer local variable.
6682 (hi-lock-read-face-name): Honor `hi-lock-auto-select-face'.
6683 (hi-lock-unface-buffer): Prompt user with useful defaults.
6684 With prefix arg, unhighlight all hi-lock patterns in buffer.
6685
6686 2012-12-04 Stefan Monnier <monnier@iro.umontreal.ca>
6687
6688 * obsolete/terminal.el, obsolete/longlines.el: Add obsolecence info.
6689
6690 2012-12-04 Michael Albinus <michael.albinus@gmx.de>
6691
6692 * Makefile.in (TRAMP_SRC):
6693 * makefile.w32-in (TRAMP_SRC): Add tramp-adb.el.
6694
6695 2012-12-04 Juergen Hoetzel <juergen@archlinux.org>
6696
6697 * net/tramp-adb.el: New package.
6698
6699 2012-12-04 Chong Yidong <cyd@gnu.org>
6700
6701 * terminal.el: Move to obsolete/.
6702
6703 * longlines.el: Move to obsolete/.
6704
6705 * vc/ediff-diff.el (ediff-extract-diffs, ediff-extract-diffs3):
6706 Remove code referring to longlines mode.
6707
6708 2012-12-03 Juri Linkov <juri@jurta.org>
6709
6710 * sort.el (delete-duplicate-lines): New command. (Bug#13032)
6711
6712 2012-12-03 Agustín Martín Domingo <agustin.martin@hispalinux.es>
6713
6714 * textmodes/ispell.el (ispell-init-process)
6715 (ispell-start-process, ispell-internal-change-dictionary):
6716 Make sure personal dictionary name is expanded after initial
6717 `default-directory' value. Use expanded strings for
6718 keep/restart checks and for value (Bug#13019).
6719
6720 2012-12-03 Jay Belanger <jay.p.belanger@gmail.com>
6721
6722 * calc/calc-forms.el (math-date-to-iso-dt): Fix weekday number.
6723
6724 2012-12-03 Leo Liu <sdl.web@gmail.com>
6725
6726 * files.el (dir-locals-read-from-file): Check file non-empty
6727 before reading. (Bug#13038)
6728
6729 2012-12-03 Glenn Morris <rgm@gnu.org>
6730
6731 * jka-cmpr-hook.el (jka-compr-get-compression-info):
6732 Remove any version extension before checking filename. (Bug#13006)
6733 (jka-compr-compression-info-list): Belated :version bump.
6734
6735 2012-12-03 Chong Yidong <cyd@gnu.org>
6736
6737 * simple.el (transient-mark-mode): Doc fix (Bug#11523).
6738
6739 * buff-menu.el (Buffer-menu-delete-backwards, Buffer-menu-mode)
6740 (buffer-menu): Doc fix (Bug#12294).
6741
6742 2012-12-03 Roland Winkler <winkler@gnu.org>
6743
6744 * calendar/diary-lib.el (diary-header-line-format): Use keybinding
6745 of diary-show-all-entries in the diary buffer (Bug#12994).
6746
6747 2012-12-03 Michael Albinus <michael.albinus@gmx.de>
6748
6749 * net/tramp-sh.el (tramp-perl-encode): Use "read STDIN" instead of
6750 "<STDIN>". This is binary safe.
6751
6752 2012-12-03 Jay Belanger <jay.p.belanger@gmail.com>
6753
6754 * calc/calc-forms.el (math-absolute-from-iso-dt)
6755 (math-date-to-iso-dt, math-parse-iso-date-validate)
6756 (math-iso-dt-to-date): New functions.
6757 (math-fd-iso-dt, math-fd-isoyear, math-fd-isoweek)
6758 (math-fd-isoweekday): New variables.
6759 (calc-date-notation, math-parse-standard-date, math-format-date)
6760 (math-format-date-part): Add support for more formatting codes.
6761
6762 2012-12-02 Dmitry Gutov <dgutov@yandex.ru>
6763
6764 * vc/vc.el (vc-delete-file, vc-rename-file): Default to the
6765 current buffer's file name when called interactively (Bug#12488).
6766
6767 2012-12-02 Juri Linkov <juri@jurta.org>
6768
6769 * info.el (info-display-manual): Don't clobber an existing Info
6770 buffer (Bug#10770). Add completion (Bug#10771).
6771
6772 2012-12-01 Yuya Nishihara <yuya@tcha.org> (tiny change)
6773
6774 * vc/vc-hooks.el (vc-find-file-hook): Expand buffer-file-truename
6775 before using it for comparison (Bug#5297).
6776
6777 2012-12-01 Jari Aalto <jari.aalto@cante.net>
6778
6779 * textmodes/css-mode.el (css-current-defun-name): New function.
6780 (css-mode): Use it.
6781
6782 * textmodes/sgml-mode.el (html-current-defun-name): New function.
6783 (html-mode): Use it.
6784
6785 2012-12-01 Chong Yidong <cyd@gnu.org>
6786
6787 Modularize add-log-current-defun (Bug#2224).
6788 Suggested by Jari Aalto.
6789
6790 * vc/add-log.el (add-log-current-defun-function): Doc fix.
6791 (add-log-current-defun): Move mode-specific code to other files.
6792 (add-log-lisp-like-modes, add-log-c-like-modes)
6793 (add-log-tex-like-modes): Variables deleted.
6794
6795 * emacs-lisp/lisp-mode.el (lisp-current-defun-name): New.
6796 (lisp-mode-variables): Use it.
6797
6798 * progmodes/cc-mode.el (c-common-init):
6799 * progmodes/cperl-mode.el (cperl-mode): Set a value for
6800 add-log-current-defun-function.
6801
6802 * progmodes/m4-mode.el (m4-current-defun-name): New function.
6803 (m4-mode): Use it.
6804
6805 * progmodes/perl-mode.el (perl-current-defun-name): New.
6806 (perl-mode): Use it.
6807
6808 * progmodes/scheme.el (scheme-mode-variables, dsssl-mode):
6809 Use lisp-current-defun-name.
6810
6811 * textmodes/tex-mode.el (tex-current-defun-name): New.
6812 (tex-common-initialization): Use it.
6813
6814 * textmodes/texinfo.el (texinfo-current-defun-name): New.
6815 (texinfo-mode): Use it.
6816
6817 2012-12-01 Chong Yidong <cyd@gnu.org>
6818
6819 * emacs-lisp/lisp-mode.el (lisp-mode-variables, lisp-mode):
6820 * progmodes/autoconf.el (autoconf-mode):
6821 * progmodes/js.el (js-mode):
6822 * progmodes/make-mode.el (makefile-mode, makefile-makepp-mode)
6823 (makefile-bsdmake-mode, makefile-imake-mode, makefile-browse):
6824 * progmodes/perl-mode.el (perl-mode):
6825 * progmodes/sh-script.el (sh-mode, sh-set-shell):
6826 * textmodes/css-mode.el (css-mode):
6827 * textmodes/sgml-mode.el (html-mode, sgml-mode)
6828 (sgml-tags-invisible, sgml-guess-indent):
6829 * textmodes/tex-mode.el (tex-common-initialization)
6830 (latex-complete-bibtex-keys, tex-shell, tex-main-file)
6831 (doctex-mode, plain-tex-mode, latex-mode):
6832 * textmodes/texinfo.el (texinfo-mode): Use setq-local.
6833
6834 2012-12-01 Kirk Kelsey <kirk.kelsey@0x4b.net>
6835
6836 * vc/vc-hg.el (vc-hg-next-revision):
6837 Ensure use of default "tip" output format. (Bug#6968)
6838
6839 2012-12-01 Kim F. Storm <storm@cua.dk>
6840
6841 * startup.el (fancy-startup-tail): Add a clickable link
6842 (Bug#2176).
6843
6844 2012-12-01 Chong Yidong <cyd@gnu.org>
6845
6846 * startup.el (fancy-startup-tail): Improve the message about
6847 auto-save files (Bug#2176).
6848
6849 * files.el (recover-session): Improve the descriptive message, and
6850 use substitute-command-keys.
6851
6852 2012-12-01 Glenn Morris <rgm@gnu.org>
6853
6854 * ido.el (ido-file-internal):
6855 Handle other-window, other-frame for dired. (Bug#13036)
6856
6857 2012-11-30 Glenn Morris <rgm@gnu.org>
6858
6859 * icomplete.el (icomplete-separator): Fix :version.
6860
6861 2012-11-30 Chong Yidong <cyd@gnu.org>
6862
6863 * shell.el (shell): For C-u M-x shell, use an inactive shell
6864 buffer as the default (Bug#1975).
6865 (shell-apply-ansi-color, shell-reapply-ansi-color): New functions.
6866 (shell-mode): Use them to reapply ansi colorization if Shell mode
6867 is re-enabled.
6868
6869 2012-11-30 Yuriy Vostrikov <delamonpansie@gmail.com> (tiny change)
6870
6871 * vc/vc-git.el (vc-git-command): Disable the pager (Bug#6137).
6872
6873 2012-11-30 Samuel Bronson <naesten@gmail.com>
6874
6875 * progmodes/grep.el (grep-compute-defaults): Do not pass the -e
6876 flag to xargs, for compatibility with BSD xargs (Bug#11703).
6877
6878 2012-11-30 Toru TSUNEYOSHI <t_tuneyosi@hotmail.com>
6879
6880 * textmodes/fill.el (fill-region-as-paragraph): Handle overshoot
6881 by move-to-column (Bug#3234).
6882
6883 2012-11-30 Chong Yidong <cyd@gnu.org>
6884
6885 * longlines.el (longlines-wrap-line, longlines-encode-region):
6886 Preserve text properties (Bug#1425).
6887
6888 2012-11-30 OKAZAKI Tetsurou <okazaki.tetsurou@gmail.com> (tiny change)
6889
6890 * vc/vc.el (vc-register): Allow registering a file which is
6891 already registered with a different backend (Bug#10589).
6892
6893 2012-11-29 Jambunathan K <kjambunathan@gmail.com>
6894 Stefan Monnier <monnier@iro.umontreal.ca>
6895
6896 * icomplete.el: Change separator; add ido-style commands.
6897 (icomplete-show-key-bindings): Remove custom var.
6898 (icomplete-get-keys): Remove function.
6899 (icomplete-forward-completions, icomplete-backward-completions):
6900 New commands.
6901 (icomplete-minibuffer-map): New var.
6902 (icomplete-minibuffer-setup): Use it.
6903 (icomplete-exhibit): Don't delay if the list of completions is known.
6904 (icomplete-separator): New custom.
6905 (icomplete-completions): Use it.
6906 * minibuffer.el (completion-all-sorted-completions): Delete duplicates.
6907 (minibuffer-force-complete-and-exit): New command.
6908 (minibuffer--complete-and-exit): New function extracted from
6909 minibuffer-complete-and-exit.
6910 (minibuffer-complete-and-exit): Use it.
6911
6912 * progmodes/etags.el (visit-tags-table-buffer): Give a more precise
6913 error message when the file doesn't exist (bug#12974).
6914
6915 2012-11-29 Kelly Dean <kellydeanch@yahoo.com> (tiny change)
6916
6917 * simple.el (activate-mark): Run activate-mark-hook (bug#13027).
6918
6919 2012-11-29 Glenn Morris <rgm@gnu.org>
6920
6921 * files.el (hack-dir-local-variables): Warn if try to set
6922 coding via dir-locals, since it doesn't work. (Bug#7169)
6923
6924 Add desktop support for restoring vc-dir buffers. (Bug#10606)
6925 * vc/vc-dir.el (vc-dir-mode): Autoload it (for desktop restore).
6926 Set buffer-local value of desktop-save-buffer.
6927 (vc-dir-desktop-buffer-misc-data, vc-dir-restore-desktop-buffer):
6928 New functions.
6929 (desktop-buffer-mode-handlers): Add vc-dir-mode entry.
6930 * desktop.el (desktop-save-buffer-p): Treat vc-dir like dired.
6931
6932 * files.el (inhibit-local-variables-ignore-case): New. (Bug#10610)
6933 (inhibit-local-variables-p): Use inhibit-local-variables-ignore-case.
6934 Doc fix.
6935 (inhibit-local-variables-regexps, inhibit-local-variables-suffixes):
6936 Doc fixes.
6937
6938 2012-11-28 Jay Belanger <jay.p.belanger@gmail.com>
6939
6940 * calc/calc-forms.el (calc-date-notation): Fix regexp
6941 used to find time codes. Fix symbol for seconds.
6942
6943 2012-11-27 Glenn Morris <rgm@gnu.org>
6944
6945 * emacs-lisp/derived.el (derived-mode-make-docstring):
6946 Don't mention "abbrev" or "syntax" if nil. (Bug#11277)
6947
6948 2012-11-27 Stefan Monnier <monnier@iro.umontreal.ca>
6949
6950 * textmodes/table.el (table-insert): Don't use `symbol-name' on
6951 lexically scoped variables (bug#13005).
6952
6953 2012-11-27 Glenn Morris <rgm@gnu.org>
6954
6955 * vc/vc-hooks.el (vc-mistrust-permissions):
6956 Default to t, to avoid data-loss. (Bug#11490)
6957
6958 2012-11-27 Fabián Ezequiel Gallina <fgallina@cuca>
6959
6960 * progmodes/python.el (python-indent-guess-indent-offset):
6961 If indentation is guessed make python-indent-offset buffer-local.
6962
6963 Fix Imenu regression.
6964 * progmodes/python.el (python-nav-beginning-of-defun):
6965 Fix forward movement when statement(s) separates point from defun.
6966 (python-imenu-prev-index-position): New function.
6967
6968 2012-11-27 Eli Zaretskii <eliz@gnu.org>
6969
6970 * subr.el (buffer-file-type): Declare with defvar-local. Doc fix.
6971
6972 * dos-w32.el (find-file-not-found-set-buffer-file-coding-system):
6973 Don't set buffer-file-type. Return nil. (Bug#12989)
6974
6975 2012-11-27 Glenn Morris <rgm@gnu.org>
6976
6977 * hippie-exp.el (hippie-expand-try-functions-list):
6978 Re-autoload it. (Bug#12982)
6979
6980 2012-11-27 Eli Zaretskii <eliz@gnu.org>
6981
6982 * descr-text.el (describe-char-padded-string):
6983 Call internal-char-font only on GUI frames. (Bug#11964)
6984
6985 2012-11-27 Andreas Schwab <schwab@linux-m68k.org>
6986
6987 * buff-menu.el (Buffer-menu-buffer+size-width): Fix customize type
6988 and obsoletion message.
6989
6990 2012-11-27 Stefan Monnier <monnier@iro.umontreal.ca>
6991
6992 * emacs-lisp/cl-macs.el (cl--transform-lambda): Add back `declare' in
6993 the constructs to keep outside of the `cl-block' (bug#12977).
6994
6995 2012-11-27 Chong Yidong <cyd@gnu.org>
6996
6997 * mouse.el (mouse-drag-line): Even if the line is not draggable,
6998 keep reading until we get the up-event anyway, in order to process
6999 the up-event for mouse-1-click-follows-link (Bug#12971).
7000
7001 2012-11-26 Stefan Monnier <monnier@iro.umontreal.ca>
7002
7003 * emacs-lisp/advice.el (ad-should-compile): Don't compile advice if the
7004 base function is not yet defined (bug#12965).
7005 (ad-activate-advised-definition): Use ad-compile-function.
7006 (ad-activate): Use cond.
7007
7008 2012-11-25 Leo Liu <sdl.web@gmail.com>
7009
7010 * textmodes/sgml-mode.el (sgml-tag): Fix indentation for closing tag.
7011 (Bug#12979)
7012
7013 2012-11-24 Vincent Belaïche <vincentb1@users.sourceforge.net>
7014
7015 * textmodes/reftex-parse.el (reftex-parse-from-file): Use variable
7016 reftex-section-info-function in order to be compatible with
7017 Texinfo integration.
7018
7019 * textmodes/reftex.el (reftex-section-pre-regexp)
7020 (reftex-section-post-regexp, reftex-section-info-function):
7021 New variable.
7022 (reftex-compile-variables): Use variables reftex-section-pre-regexp,
7023 reftex-section-post-regexp, and reftex-section-info-function in order
7024 to be compatible with Texinfo integration.
7025
7026 * textmodes/reftex-toc.el (reftex-toc-promote-action):
7027 use reftex-section-pre-regexp variable in order to be compatible with
7028 Texinfo integration.
7029
7030 2012-11-25 Chong Yidong <cyd@gnu.org>
7031
7032 * faces.el: Make face-spec-set more analogous to setq.
7033 (face-spec-set): Change the third arg to specify whether this
7034 function is being called via defface, customize, or a third party.
7035 Set the appropriate symbol properties. Clear the override spec if
7036 setting via Custom. Initialize face if necessary. (Bug#4988)
7037 (face-spec-recalc): Allow theme faces to completely replace the
7038 defface spec, in the same way as custom faces (Bug#8454).
7039
7040 * cus-face.el (custom-declare-face): Move face initialization to
7041 face-spec-set.
7042 (custom-theme-set-faces): Don't initialize the face name here, as
7043 that is now done in face-spec-set.
7044
7045 * cus-edit.el (custom-face-set, custom-face-mark-to-save)
7046 (custom-face-reset-saved, custom-face-mark-to-reset-standard):
7047 Simplify by using the new arg to face-spec-set.
7048
7049 * emacs-lisp/lisp-mode.el (eval-defun-1): When evaluating defface,
7050 reset face-override-spec too, and use custom-declare-face.
7051
7052 2012-11-24 Jan Djärv <jan.h.d@swipnet.se>
7053
7054 * term/ns-win.el (ns-initialize-window-system): Move creation of
7055 fontsets here (Bug#11964).
7056
7057 2012-11-24 Vincent Belaïche <vincentb1@users.sourceforge.net>
7058
7059 * ses.el (ses-rename-cell): Correct bug on mode-line update after
7060 cell renaming.
7061
7062 2012-11-24 Chong Yidong <cyd@gnu.org>
7063
7064 * woman.el (woman-default-faces, woman-monochrome-faces): Mark as
7065 obsolete.
7066
7067 * custom.el (custom-theme-set-variables): Use a topological sort
7068 for ordering by custom dependencies (Bug#12952).
7069 (custom--sort-vars, custom--sort-vars-1): New functions.
7070
7071 2012-11-24 Stefan Monnier <monnier@iro.umontreal.ca>
7072
7073 * emacs-lisp/bytecomp.el (byte-compile-file): Setup default value for
7074 lexical-binding (bug#12938).
7075
7076 2012-11-24 Wolfgang Jenkner <wjenkner@inode.at>
7077
7078 * image-mode.el (image-transform-check-size): Use assertions only
7079 for images of type imagemagick.
7080
7081 Otherwise no error, image-transform-fit-to-{width,height} is
7082 silently ignored, as before. Doc fix.
7083
7084 2012-11-24 Chong Yidong <cyd@gnu.org>
7085
7086 * faces.el (color-defined-p): Doc fix (Bug#12853).
7087
7088 2012-11-24 Juri Linkov <juri@jurta.org>
7089
7090 * dired.el (dired-mark): Add optional arg `interactive'.
7091 Check for `use-region-p' if `interactive' is non-nil.
7092 (dired-unmark, dired-flag-file-deletion): Add optional arg
7093 `interactive'. Call `dired-mark' with the arg `interactive'.
7094 (Bug#10624)
7095
7096 * wdired.el: Revert 2012-10-17 change partly and replace it with
7097 Patch by Christopher Schmidt <christopher@ch.ristopher.com>.
7098 (wdired-finish-edit): Add marks for new file names to
7099 `wdired-old-marks'. Restore marks using `dired-mark-remembered'
7100 after `revert-buffer'.
7101 (wdired-do-renames): Remove calls to `dired-remove-file',
7102 `dired-add-file', `dired-add-entry'. (Bug#11795)
7103
7104 2012-11-24 Alan Mackenzie <acm@muc.de>
7105
7106 * progmodes/cc-defs.el (c-version): Bump to 5.32.4.
7107
7108 Fix bugs in the state cache. Enhance a debugging mechanism.
7109 * progmodes/cc-engine.el (c-parse-state-get-strategy): Don't use
7110 "brace at column zero" strategy for C++.
7111 (c-append-lower-brace-pair-to-state-cache): Repair algorithm.
7112 (c-parse-state-point): New variable.
7113 (c-record-parse-state-state): Record old parse state with
7114 `copy-tree'. Record previous value of point.
7115 (c-debug-parse-state-double-cons): New debugging function.
7116 (c-debug-parse-state): Call the above new function.
7117 (c-toggle-parse-state-debug): Output a confirmatory message.
7118
7119 * progmodes/cc-mode.el (c-before-change, c-after-change):
7120 Call c-invalidate-state-cache from `c-before-change' instead of
7121 `c-after-change'.
7122
7123 2012-11-23 Chong Yidong <cyd@gnu.org>
7124
7125 * find-cmd.el (find-constituents): Add executable, ipath,
7126 readable, samefile, writable, daystart, regextype (Bug#12856).
7127
7128 2012-11-23 Stefan Monnier <monnier@iro.umontreal.ca>
7129
7130 * emacs-lisp/ert.el, emacs-lisp/ert-x.el: Use cl-lib and lexical-binding.
7131
7132 2012-11-22 Paul Eggert <eggert@cs.ucla.edu>
7133
7134 * calc/calc.el (calc-gregorian-switch): Move to after calc-refresh
7135 definition. This fixes a bootstrap failure.
7136 (calc-gregorian-switch): In menu, put dates before regions.
7137 This is easier to follow, lines up better in the menu, and lets us
7138 coalesce regions that switch at the same time. Give country
7139 names, not "Vatican", as that's better for non-expert users.
7140 Use names that are stable between the date of switch and now, e.g.,
7141 Bohemia and Moravia (which existed then and now) and not
7142 Czechoslovakia (which didn't exist then and doesn't exist now).
7143 What is now the U.S. mostly did not switch at the same time as
7144 Britain, so omit the U.S. Correct spelling of "Britain".
7145 Catholic Switzerland was too much of a mess, so omit it.
7146
7147 2012-11-22 Jay Belanger <jay.p.belanger@gmail.com>
7148
7149 * calc/calc.el (calc-gregorian-switch): Refresh the Calc buffer
7150 after the variable is changed.
7151
7152 2012-11-21 Daniel Colascione <dancol@dancol.org>
7153
7154 * progmodes/sql.el (sql-mode-font-lock-object-name): Support IF NOT EXISTS
7155 in SQL declarations for font-lock.
7156 (sql-imenu-generic-expression): Teach imenu about IF NOT EXISTS.
7157
7158 2012-11-21 Glenn Morris <rgm@gnu.org>
7159
7160 * faces.el (face-underline-p, face-inverse-video-p, face-bold-p)
7161 (face-italic-p): Add optional argument "inherit".
7162
7163 * faces.el (set-face-inverse-video, set-face-bold, set-face-italic):
7164 Remove -p suffix from names, for consistency with other set-face-*.
7165 (set-face-inverse-video): Fix interactive spec.
7166 * play/gamegrid.el (gamegrid-make-mono-tty-face):
7167 * textmodes/table.el (table--update-cell-face):
7168 Use set-face-inverse-video rather than now obsolete alias.
7169
7170 2012-11-21 Eli Zaretskii <eliz@gnu.org>
7171
7172 * simple.el (line-move): Don't call line-move-partial if
7173 scroll-conservatively is in effect. (Bug#12927)
7174
7175 2012-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
7176
7177 * eshell/em-cmpl.el (eshell-pcomplete): Refine fix for bug#12838:
7178 Fallback on completion-at-point rather than
7179 pcomplete-expand-and-complete, and only if pcomplete actually failed.
7180 (eshell-cmpl-initialize): Setup completion-at-point.
7181
7182 * pcomplete.el (pcomplete--entries): Obey pcomplete-ignore-case.
7183
7184 * emacs-lisp/ert.el (ert--expand-should-1): Adapt to cl-lib.
7185
7186 2012-11-21 Michael Albinus <michael.albinus@gmx.de>
7187
7188 * net/tramp-sh.el (tramp-do-copy-or-rename-file): If both files
7189 are remote, check out-of-band property for both.
7190
7191 2012-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
7192
7193 * window.el (switch-to-buffer): Re-add the warning that was lost in the
7194 code rewrite.
7195
7196 2012-11-21 Paul Eggert <eggert@cs.ucla.edu>
7197
7198 More minor time fixes.
7199 * calendar/time-date.el: Commentary fix.
7200 * net/tramp-sh.el (tramp-do-file-attributes-with-ls): Undo last change;
7201 too much other code depends on (0 0) time stamps.
7202 * net/tramp.el (tramp-time-less-p, tramp-time-subtract):
7203 Add a couple of FIXME comments.
7204
7205 Minor cleanup for times as lists of four integers.
7206 * files.el (dir-locals-directory-cache):
7207 * ps-bdf.el (bdf-file-mod-time, bdf-read-font-info):
7208 Doc fixes.
7209 * net/tramp-sh.el (tramp-do-file-attributes-with-ls):
7210 * ps-bdf.el (bdf-file-newer-than-time):
7211 Process four-integers time stamps, not two. Doc fixes.
7212
7213 2012-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
7214
7215 * uniquify.el (uniquify-managed): Use defvar-local.
7216 (rename-buffer, create-file-buffer): Advise with advice-add.
7217 (uniquify-unload-function): Unadvise accordingly.
7218
7219 * emacs-lisp/trace.el: Rewrite, use nadvice and lexical-binding.
7220 (trace-buffer): Don't purecopy.
7221 (trace-entry-message, trace-exit-message): Add `context' arg.
7222 (trace--timer): New var.
7223 (trace-make-advice): Adjust for use in nadvice.
7224 Add `context' argument. Delay `display-buffer' via a timer.
7225 (trace-function-internal): Use advice-add.
7226 (trace--read-args): New function.
7227 (trace-function-foreground, trace-function-background): Use it.
7228 (trace-function): Rename to trace-function-foreground and redefine as
7229 an alias to that new name.
7230 (untrace-function, untrace-all): Adjust to the use of nadvice.
7231
7232 * emacs-lisp/bytecomp.el (byte-compile): Fix handling of closures.
7233
7234 * emacs-lisp/byte-run.el (defun-declarations-alist): Fix last change.
7235
7236 * subr.el (called-interactively-p-functions): New var.
7237 (internal--called-interactively-p--get-frame): New macro.
7238 (called-interactively-p, interactive-p): Rewrite in Lisp.
7239 * emacs-lisp/nadvice.el (advice--called-interactively-skip): New fun.
7240 (called-interactively-p-functions): Use it.
7241 * emacs-lisp/edebug.el (edebug--called-interactively-skip): New fun.
7242 (called-interactively-p-functions): Use it.
7243 * allout.el (allout-called-interactively-p): Don't assume
7244 called-interactively-p is a subr.
7245
7246 2012-11-20 Glenn Morris <rgm@gnu.org>
7247
7248 * profiler.el (profiler-report-mode-map): Add a menu.
7249 No need to bind `q' because we derive from special-mode.
7250 (profiler-report-find-entry): Handle calls from the menu-bar.
7251
7252 2012-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
7253
7254 * emacs-lisp/byte-run.el (defun-declarations-alist):
7255 Allow a compiler-macro to be a lambda expression.
7256
7257 * progmodes/python.el: Use cl-lib. Move var declarations outside of
7258 eval-when-compile.
7259 (python-syntax-context): Add compiler-macro.
7260 (python-font-lock-keywords): Simplify with De Morgan.
7261
7262 * vc/diff-mode.el (diff-hunk): Don't make useless timers.
7263
7264 * files.el (load-file): Require match in minibuffer selection, as was
7265 the case in Emacs-20 before we changed the spec to allow .elc files
7266 (bug#12935).
7267
7268 * json.el: Don't require cl since we don't use it.
7269 * color.el: Don't require cl.
7270 (color-complement): `caddr' -> `nth 2'.
7271
7272 * calendar/time-date.el (time-to-seconds): De-obsolete.
7273
7274 2012-11-19 Jay Belanger <jay.p.belanger@gmail.com>
7275
7276 * calc/calc-forms.el (math-leap-year-p): Fix formula for negative
7277 year numbers.
7278 (math-date-to-julian-dt): Adjust the initial approximation for the
7279 year to deal with the new definition of the DATE.
7280
7281 2012-11-19 Daniel Colascione <dancol@dancol.org>
7282
7283 * term/w32-win.el (cygwin-convert-path-from-windows):
7284 Accomodate rename of cygwin_convert_path* to cygwin_convert_file_name*.
7285
7286 2012-11-18 Chong Yidong <cyd@gnu.org>
7287
7288 * filecache.el (file-cache--read-list): New function.
7289 (file-cache-add-directory-list, file-cache-add-file-list)
7290 (file-cache-delete-file-list, file-cache-delete-directory-list):
7291 Use it to read a list of files or directories (Bug#12846).
7292 (file-cache-add-file, file-cache-add-directory)
7293 (file-cache-delete-file-list, file-cache-delete-file-regexp)
7294 (file-cache-delete-directory): Print an message.
7295
7296 2012-11-18 Jay Belanger <jay.p.belanger@gmail.com>
7297
7298 * calc/calc-forms.el (math-date-to-dt): Use integer date when
7299 calling `math-date-to-julian-dt' and 'math-date-to-gregorian-dt'.
7300
7301 2012-11-18 Glenn Morris <rgm@gnu.org>
7302
7303 * image.el (insert-image, insert-sliced-image): Doc fix.
7304
7305 2012-11-18 Chong Yidong <cyd@gnu.org>
7306
7307 * emacs-lisp/syntax.el (syntax-propertize-function): Doc fix
7308 (Bug#12810).
7309
7310 2012-11-18 OKAZAKI Tetsurou <okazaki.tetsurou@gmail.com> (tiny change)
7311
7312 * vc/vc-svn.el (vc-svn-merge-news): Properly parse the merge
7313 response when the target file is in a subdirectory (Bug#12757).
7314
7315 2012-11-18 Chong Yidong <cyd@gnu.org>
7316
7317 * filecache.el (file-cache-add-file-list): Doc fix (Bug#12694).
7318
7319 2012-11-18 Glenn Morris <rgm@gnu.org>
7320
7321 * emacs-lisp/cl-lib.el (face-underline-p):
7322 Use set-face-underline rather than the alias set-face-underline-p.
7323
7324 * window.el (with-temp-buffer-window): Doc fix.
7325 * subr.el (with-output-to-temp-buffer):
7326 Add doc xref to with-temp-buffer-window.
7327
7328 2012-11-18 Juanma Barranquero <lekktu@gmail.com>
7329
7330 * woman.el (woman-non-underline-faces): Use `set-face-underline'.
7331 * calc/calc.el (math-format-date-cache): Declare.
7332
7333 2012-11-17 Paul Eggert <eggert@cs.ucla.edu>
7334
7335 Calc by default uses the Gregorian calendar for all dates (Bug#12633).
7336 It also uses January 1, 1 AD as its day number 1.
7337 * calc/calc-forms.el (math-julian-date-beginning)
7338 (math-julian-date-beginning-int): Implement this.
7339
7340 2012-11-17 Juanma Barranquero <lekktu@gmail.com>
7341
7342 * descr-text.el (quail-find-key):
7343 * dired.el (desktop-file-name):
7344 * dirtrack.el (shell-prefixed-directory-name, shell-process-cd):
7345 * generic-x.el (comint-mode, comint-exec):
7346 * image-dired.el (widget-forward):
7347 * info.el (speedbar-add-expansion-list, speedbar-center-buffer-smartly)
7348 (speedbar-change-expand-button-char)
7349 (speedbar-change-initial-expansion-list, speedbar-delete-subblock)
7350 (speedbar-make-specialized-keymap, speedbar-make-tag-line):
7351 * printing.el (easy-menu-add-item, easy-menu-remove-item)
7352 (widget-field-action, widget-value-set):
7353 * speedbar.el (imenu--make-index-alist):
7354 * term.el (ring-empty-p, ring-ref, ring-insert-at-beginning)
7355 (ring-length, ring-insert):
7356 * vcursor.el (compare-windows-skip-whitespace):
7357 * woman.el (dired-get-filename):
7358 Declare functions.
7359
7360 * term/w32-win.el (cygwin-convert-path-from-windows): Fix declaration.
7361
7362 2012-11-17 Jay Belanger <jay.p.belanger@gmail.com>
7363
7364 * calc/calc.el (calc-gregorian-switch): New variable.
7365
7366 * calc/calc-forms.el (math-day-in-year, math-dt-before-p)
7367 (math-absolute-from-gregorian-dt, math-absolute-from-julian-dt)
7368 (math-date-to-julian-dt, math-date-to-gregorian-dt): New functions.
7369 (math-leap-year-p): Add option to distinguish between Julian
7370 and Gregorian calendars.
7371 (math-day-number): Use `math-day-in-year' to do the computations.
7372 (math-absolute-from-dt): Rename from `math-absolute-from-date'.
7373 Use `math-absolute-from-gregorian' and `math-absolute-from-julian'
7374 to do the computations.
7375 (math-date-to-dt): Use `math-date-to-julian-dt' and
7376 `math-date-to-gregorian-dt' to do the computations.
7377 (calcFunc-weekday, math-format-date-part): Use the new version of
7378 the DATE to determine the weekday.
7379 (calcFunc-newmonth, calcFunc-newyear): Use `calc-gregorian-switch'
7380 when necessary.
7381
7382 2012-11-17 Eli Zaretskii <eliz@gnu.org>
7383
7384 * term/w32-win.el (w32-handle-dropped-file): Use 'file://' only on
7385 Cygwin; otherwise use 'file:'. (Bug#12914)
7386 (cygwin-convert-path-from-windows): Declare, to avoid
7387 byte-compiler warnings.
7388
7389 2012-11-17 Andreas Politz <politza@fh-trier.de>
7390
7391 * ibuffer.el (ibuffer-mark-forward, ibuffer-unmark-forward)
7392 (ibuffer-unmark-backward, ibuffer-mark-interactive): Support plain
7393 prefix and negative numeric prefix args (Bug#12795).
7394
7395 2012-11-17 Stephen Berman <stephen.berman@gmx.net>
7396
7397 * play/gamegrid.el (gamegrid-add-score-with-update-game-score-1):
7398 Don't signal an error with a score that is too low to add to the
7399 list of top scores. (Bug#12779)
7400
7401 2012-11-17 Chong Yidong <cyd@gnu.org>
7402
7403 * help-mode.el (help-xref-interned): End on point-min (Bug#12737).
7404
7405 * filecache.el (file-cache-add-file): Handle relative file name in
7406 the argument (Bug#12694).
7407
7408 2012-11-16 Jürgen Hötzel <juergen@archlinux.org> (tiny change)
7409
7410 * eshell/em-unix.el (eshell/mkdir): Handle "--parents" (bug#12897).
7411
7412 2012-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
7413
7414 * emacs-lisp/advice.el (ad-make-advised-definition): Improve last fix.
7415
7416 * emacs-lisp/cl-lib.el: Set more meaningful version number.
7417
7418 2012-11-16 Martin Rudalics <rudalics@gmx.at>
7419
7420 * window.el (enlarge-window, shrink-window): Don't mention return
7421 value in doc-string (Bug#12896).
7422 (window--display-buffer): Don't resize frames - it won't work
7423 with all window managers and defeat pop-up-frame-alist.
7424 (display-buffer-alist): In doc-string explain that CONDITION can
7425 be a function and which arguments are passed to it (Bug#12854).
7426 (display-buffer-assq-regexp): New argument ACTION. Handle lambda
7427 expressions (Bug#12854).
7428 (display-buffer): Pass ACTION argument to
7429 display-buffer-assq-regexp.
7430
7431 2012-11-16 Glenn Morris <rgm@gnu.org>
7432
7433 * window.el (fit-frame-to-buffer-bottom-margin)
7434 (fit-frame-to-buffer, fit-window-to-buffer): Doc fixes.
7435
7436 * faces.el (face-underline-p): Use face-attribute-specified-or.
7437
7438 2012-11-16 Juanma Barranquero <lekktu@gmail.com>
7439
7440 * emacs-lisp/cl-macs.el (cl-loop, cl-do, cl-do*): Doc fixes.
7441
7442 2012-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
7443
7444 * emacs-lisp/cl-macs.el (cl-flet, cl-flet*): Fix docstring (bug#12895).
7445
7446 2012-11-16 Glenn Morris <rgm@gnu.org>
7447
7448 * eshell/em-cmpl.el (eshell-pcomplete): New command. (Bug#12838)
7449 (eshell-cmpl-initialize): Bind eshell-pcomplete to TAB, C-i.
7450
7451 * faces.el (face-underline-p): Doc fix. Handle :underline being
7452 things other than `t' (a string, a list).
7453 (face-inverse-video-p): Doc fix.
7454 (set-face-underline): Rename it back from set-face-underline-p.
7455 Doc fix. Allow interactive input of values other than t.
7456 (read-face-attribute): Apply formatting to :underline,
7457 since like :box and :stipple it can take list values.
7458
7459 * term.el (ansi-term): Don't let C-x escape-char binding
7460 clobber the more standard C-c binding. (Bug#12842)
7461
7462 * subr.el (set-temporary-overlay-map): Doc fix.
7463
7464 2012-11-16 Martin Rudalics <rudalics@gmx.at>
7465
7466 * window.el (record-window-buffer)
7467 (display-buffer-record-window): When copying the markers to
7468 window-point preserve window-point-insertion-type. (Bug#12588)
7469
7470 2012-11-16 Glenn Morris <rgm@gnu.org>
7471
7472 * emacs-lisp/eieio-datadebug.el (eieio-debug-methodinvoke):
7473 * net/tramp-gvfs.el (tramp-gvfs-dbus-event-error):
7474 Use new names for hooks rather than obsolete aliases.
7475
7476 2012-11-15 Daniel Colascione <dancol@dancol.org>
7477
7478 * term/w32-win.el (w32-handle-dropped-file): Use a "file://"
7479 prefix instead of "file:" so that when FILE-NAME begins with "//",
7480 as it does when the target file is on a network share, url-handler
7481 isn't confused.
7482
7483 2012-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
7484
7485 * emacs-lisp/advice.el (ad-definition-type): Make sure we don't use
7486 a preactivated advice from an old advice.el; they're not compatible!
7487
7488 2012-11-15 Katsumi Yamaoka <yamaoka@jpl.org>
7489
7490 * emacs-lisp/nadvice.el (advice--make-interactive-form):
7491 Fix string-spec case.
7492
7493 * emacs-lisp/advice.el (ad-make-advised-definition): Fix undefined case.
7494
7495 2012-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
7496
7497 * emacs-lisp/nadvice.el: Add buffer-local support to add-function.
7498 (advice--buffer-local-function-sample): New var.
7499 (advice--set-buffer-local, advice--buffer-local): New functions.
7500 (add-function, remove-function): Use them.
7501
7502 2012-11-15 Drew Adams <drew.adams@oracle.com>
7503
7504 * imenu.el (imenu--split-submenus): Use imenu--subalist-p (bug#12717).
7505
7506 2012-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
7507
7508 * emacs-lisp/cl-macs.el (cl--transform-lambda): Defend against
7509 potential binding of print-gensym to t, and prettify (back)quotes in
7510 case they appear in args's default values (bug#12884).
7511
7512 2012-11-14 Stefan Monnier <monnier@iro.umontreal.ca>
7513
7514 * emacs-lisp/nadvice.el: Add around advice for interactive specs.
7515 (advice-eval-interactive-spec): New function.
7516 (advice--make-interactive-form): Support around advice (bug#12844).
7517
7518 2012-11-14 Dmitry Gutov <dgutov@yandex.ru>
7519
7520 * progmodes/ruby-mode.el (ruby-expr-beg): Make heredoc detection
7521 more strict. Add docstring.
7522 (ruby-expression-expansion-re): Extract from
7523 `ruby-match-expression-expansion'.
7524 (ruby-syntax-propertize-function): After everything else, search
7525 for expansions in string literals, mark their insides as
7526 whitespace syntax and save match data for font-lock.
7527 (ruby-font-lock-keywords): Use the 2nd group from expression
7528 expansion matches.
7529 (ruby-match-expression-expansion): Use the match data saved to the
7530 text property in ruby-syntax-propertize-function.
7531
7532 2012-11-14 Stefan Monnier <monnier@iro.umontreal.ca>
7533
7534 * emacs-lisp/gv.el (setf): Fix debug spec for multiple assignments
7535 (bug#12879).
7536
7537 2012-11-13 Dmitry Gutov <dgutov@yandex.ru>
7538
7539 * progmodes/ruby-mode.el (ruby-move-to-block): Looks for a block
7540 start/end keyword a bit harder. Works with different values of N.
7541 Add more comments.
7542 (ruby-end-of-block): Update accordingly.
7543
7544 2012-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
7545
7546 * woman.el (woman-file-name): Don't mess with unread-command-events
7547 (bug#12861).
7548
7549 * emacs-lisp/advice.el: Layer on top of nadvice.el.
7550 Remove out of date self-require hack.
7551 (ad-do-advised-functions): Use simple `dolist'.
7552 (ad-advice-name, ad-advice-protected, ad-advice-enabled)
7553 (ad-advice-definition): Redefine as functions.
7554 (ad-advice-classes): Move before first use.
7555 (ad-make-origname, ad-set-orig-definition, ad-clear-orig-definition)
7556 (ad-make-mapped-call, ad-make-advised-docstring)
7557 (ad-make-plain-docstring, ad--defalias-fset): Remove functions.
7558 (ad-make-advicefunname, ad-clear-advicefunname-definition): New funs.
7559 (ad-get-orig-definition): Rewrite.
7560 (ad-make-advised-definition-docstring): Change base docstring.
7561 (ad-real-orig-definition): Rewrite.
7562 (ad-map-arglists): Change name of called function.
7563 (ad--make-advised-docstring): Redirect `function' from ad-Advice-...
7564 (ad-make-advised-definition): Simplify.
7565 (ad-assemble-advised-definition): Tweak for new calling context.
7566 (ad-activate-advised-definition): Setup ad-Advice-* i.s.o ad-Orig-*.
7567 (ad--defalias-fset): Rename from ad-handle-definition. Make it set the
7568 function and call ad-activate if needed.
7569 (ad-activate, ad-deactivate): Don't call ad-handle-definition any more.
7570 (ad-recover): Clear ad-Advice-* instead of ad-Orig-*.
7571 (ad-compile-function): Compile ad-Advice-*.
7572 (ad-activate-on-top-level, ad-with-auto-activation-disabled): Remove.
7573 (ad-start-advice, ad-stop-advice): Remove.
7574
7575 2012-11-13 Dmitry Gutov <dgutov@yandex.ru>
7576
7577 * progmodes/ruby-mode.el (ruby-add-log-current-method): Print the
7578 period before class method names, not after. Remove handling of
7579 one impossible case. Add comments.
7580
7581 2012-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
7582
7583 * emacs-lisp/advice.el: Remove support for freezing.
7584 (ad-make-freeze-docstring, ad-make-freeze-definition): Remove functions.
7585 (ad-make-single-advice-docstring, ad-defadvice-flags, defadvice):
7586 Remove support for `freeze'.
7587
7588 * emacs-lisp/cl.el (dolist, dotimes, declare): Use advice-add to
7589 override the default.
7590 * emacs-lisp/cl-macs.el (cl-dolist, cl-dotimes): Rewrite without using
7591 cl--dotimes/dolist.
7592 * subr.el (dolist, dotimes, declare): Redefine them normally, even when
7593 `cl' is loaded.
7594
7595 * emacs-lisp/nadvice.el (advice--normalize): New function, extracted
7596 from add-advice.
7597 (advice--strip-macro): New function.
7598 (advice--defalias-fset): Use them to handle macros.
7599 (advice-add): Use them.
7600 (advice-member-p): Correctly handle macros.
7601
7602 2012-11-13 Dmitry Gutov <dgutov@yandex.ru>
7603
7604 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
7605 Never font-lock the beginning of singleton class as heredoc.
7606
7607 2012-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
7608
7609 * emacs-lisp/gv.el (gv-define-simple-setter): One more fix (bug#12871).
7610
7611 2012-11-13 Wolfgang Jenkner <wjenkner@inode.at>
7612
7613 * ansi-color.el (ansi-color-apply-sequence): Implement SGR codes
7614 39 and 49 (bug#12792). Also, treat unimplemented parameters as 0,
7615 thereby restoring the behavior of revisions prior to 2012-08-15T03:33:55Z!monnier@iro.umontreal.ca.
7616
7617 2012-11-13 Fabián Ezequiel Gallina <fgallina@cuca>
7618
7619 Fix end-of-defun misbehavior.
7620 * progmodes/python.el (python-nav-beginning-of-defun): Rename from
7621 python-beginning-of-defun-function. Handle nested defuns
7622 correctly.
7623 (python-nav-end-of-defun): Rename from
7624 python-end-of-defun-function. Ensure forward movement.
7625 (python-info-current-defun): Reimplement to work as intended
7626 with new fixed python-nav-{end,beginning}-of-defun. Stop scanning
7627 parent defuns as soon as possible.
7628
7629 2012-11-13 Glenn Morris <rgm@gnu.org>
7630
7631 * progmodes/flymake.el (flymake-error-bitmap)
7632 (flymake-warning-bitmap, flymake-fringe-indicator-position): Doc fixes.
7633 (flymake-error-bitmap, flymake-warning-bitmap): Fix :types.
7634
7635 2012-11-13 Dmitry Gutov <dgutov@yandex.ru>
7636
7637 * progmodes/ruby-mode.el (ruby-move-to-block): When moving
7638 backward, always stop at indentation. Reverts the change from
7639 2012-08-12T22:06:56Z!monnier@iro.umontreal.ca (Bug#12851).
7640
7641 2012-11-13 Glenn Morris <rgm@gnu.org>
7642
7643 * ibuffer.el (ibuffer-mode-map, ibuffer-mode):
7644 Add ibuffer-filter-by-derived-mode.
7645
7646 * ibuffer.el (ibuffer-mode-map): Don't have two menu items with
7647 the same name shadowing each other.
7648
7649 * window.el (with-temp-buffer-window): Doc tweak.
7650
7651 * emacs-lisp/debug.el (debugger-bury-or-kill): Doc tweak.
7652
7653 * help.el (temp-buffer-max-height):
7654 * window.el (fit-frame-to-buffer, fit-frame-to-buffer-bottom-margin):
7655 * emacs-lisp/debug.el (debugger-bury-or-kill): Fix :version.
7656
7657 2012-11-12 Stefan Monnier <monnier@iro.umontreal.ca>
7658
7659 * emacs-lisp/nadvice.el: New package.
7660 * subr.el (special-form-p): New function.
7661 * emacs-lisp/elp.el: Use lexical-binding and advice-add.
7662 (elp-all-instrumented-list): Remove var.
7663 (elp-not-profilable): Remove elp-wrapper.
7664 (elp-profilable-p): Use autoloadp and special-form-p.
7665 (elp--advice-name): New const.
7666 (elp-instrument-function): Use advice-add.
7667 (elp--instrumented-p): New predicate.
7668 (elp-restore-function): Use advice-remove.
7669 (elp-restore-all, elp-reset-all): Use mapatoms.
7670 (elp-set-master): Use elp--instrumented-p.
7671 (elp--make-wrapper): Rename from elp-wrapper, return a function
7672 suitable for advice-add. Use cl-inf.
7673 (elp-results): Use mapatoms+elp--instrumented-p.
7674 * emacs-lisp/debug.el: Use lexical-binding and advice-add.
7675 (debug-function-list): Remove var.
7676 (debug): Rename arg, and then let-bind it explicitly inside.
7677 (debugger-setup-buffer): Rename arg.
7678 (debugger-setup-buffer): Adjust counts to new debug-on-entry setup.
7679 (debugger-frame-number): Adjust to new debug-on-entry setup.
7680 (debug--implement-debug-on-entry): Rename from
7681 implement-debug-on-entry, add argument.
7682 (debugger-special-form-p): Remove, use special-form-p instead.
7683 (debug-on-entry): Use advice-add.
7684 (debug--function-list): New function.
7685 (cancel-debug-on-entry): Use it, along with advice-remove.
7686 (debug-arglist, debug-convert-byte-code, debug-on-entry-1): Remove.
7687 (debugger-list-functions): Use debug--function-list instead of
7688 debug-function-list.
7689 * emacs-lisp/advice.el (ad-save-real-definition): Remove, unused.
7690 (ad-special-form-p): Remove, use special-form-p instead.
7691 (ad-set-advice-info): Use add-function and remove-function.
7692 (ad--defalias-fset): Adjust accordingly.
7693
7694 2012-11-10 Glenn Morris <rgm@gnu.org>
7695
7696 * mail/emacsbug.el (report-emacs-bug-tracker-url)
7697 (report-emacs-bug-bug-alist, report-emacs-bug-choice-widget)
7698 (report-emacs-bug-create-existing-bugs-buffer)
7699 (report-emacs-bug-parse-query-results)
7700 (report-emacs-bug-query-existing-bugs): Remove. (Bug#7449)
7701
7702 * term.el (term-default-fg-color, term-default-bg-color):
7703 Make obsolete, rather than just saying "deprecated" in the doc.
7704
7705 * term.el (term): Rename from `term-face'.
7706 (term-current-face, ansi-term-color-vector)
7707 (term-default-fg-color, term-default-bg-color, term-ansi-reset):
7708 Update all users.
7709
7710 2012-11-10 Jan Djärv <jan.h.d@swipnet.se>
7711
7712 * server.el (server-create-window-system-frame): Handle Nextstep
7713 specially (Bug#12780).
7714
7715 2012-11-10 Glenn Morris <rgm@gnu.org>
7716
7717 * mail/emacsbug.el (report-emacs-bug-query-existing-bugs):
7718 Unautoload, and make obsolete. (Bug#7449)
7719
7720 2012-11-10 Chong Yidong <cyd@gnu.org>
7721
7722 * vc/diff-mode.el (diff-delete-trailing-whitespace): Rewrite, and
7723 rename from diff-remove-trailing-whitespace (Bug#12831).
7724
7725 2012-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
7726
7727 * emacs-lisp/advice.el: Require `cl-lib' at run-time to fix
7728 miscompilation of trace.el.
7729
7730 2012-11-10 Glenn Morris <rgm@gnu.org>
7731
7732 * vc/diff-mode.el (diff-remove-trailing-whitespace): Doc fix.
7733
7734 2012-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
7735
7736 * emacs-lisp/gv.el (gv-define-simple-setter): Fix last change
7737 (bug#12812).
7738
7739 2012-11-10 Chong Yidong <cyd@gnu.org>
7740
7741 * minibuf-eldef.el (minibuffer-eldef-shorten-default): Convert to
7742 a defcustom with an appropriate :set function.
7743 (minibuffer-default--in-prompt-regexps): New function.
7744
7745 2012-11-10 Glenn Morris <rgm@gnu.org>
7746
7747 * emacs-lisp/cl.el (define-setf-expander, defsetf)
7748 (define-modify-macro): Doc fixes.
7749
7750 * emacs-lisp/gv.el (gv-letplace): Fix doc typo.
7751 (gv-define-simple-setter): Update doc of `fix-return'.
7752
7753 2012-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
7754
7755 * emacs-lisp/gv.el (gv-define-simple-setter): Don't evaluate `val'
7756 twice when `fix-return' is set (bug#12813).
7757
7758 * emacs-lisp/cl.el (defsetf): Pass the third arg to
7759 gv-define-simple-setter (bug#12812).
7760
7761 * woman.el (woman-decode-region): Disable adaptive-fill when rendering
7762 (bug#12756).
7763
7764 2012-11-10 Glenn Morris <rgm@gnu.org>
7765
7766 * emacs-lisp/gv.el (gv-define-setter): Fix doc typo.
7767
7768 * emacs-lisp/cl-extra.el (cl-prettyexpand):
7769 * emacs-lisp/cl-lib.el (cl-proclaim, cl-declaim):
7770 * emacs-lisp/cl-macs.el (cl-destructuring-bind, cl-locally)
7771 (cl-the, cl-compiler-macroexpand): Add basic doc strings.
7772
7773 * emacs-lisp/cl-extra.el (cl-maplist, cl-mapcan): Doc fix.
7774
7775 2012-11-10 Leo Liu <sdl.web@gmail.com>
7776
7777 * ido.el (ido-set-matches-1): Improve flex matching performance by
7778 removing backtracking in the regexp (suggested by Stefan). (Bug#12796)
7779
7780 2012-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
7781
7782 * emacs-lisp/advice.el (ad-set-advice-info): Set defalias-fset-function.
7783 (ad--defalias-fset): New function.
7784 (ad-safe-fset): Remove.
7785 (ad-make-freeze-definition): Use cl-letf*.
7786
7787 2012-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
7788
7789 * subr.el (dolist): Don't bind VAR in RESULT.
7790
7791 * emacs-lisp/advice.el: Miscellaneous cleanup. Use lexical-binding.
7792 (fset, documentation): Don't save real def since we don't advise.
7793 (ad-do-advised-functions): Remove problematic `result-form'.
7794 (ad-safe-fset): `ad-real-fset' => `fset'.
7795 (ad-read-advised-function): Don't assume that ad-do-advised-functions
7796 uses CL's dolist internally.
7797 (ad-arglist): Remove unused arg `name'.
7798 (ad-docstring, ad-make-advised-docstring):
7799 `ad-real-documentation' => `documentation'.
7800 (warning-suppress-types): Declare.
7801 (ad-set-arguments): Simple CSE.
7802 (ad-recover-normality): Sanity check.
7803
7804 * emacs-lisp/bytecomp.el (byte-compile-out-toplevel): Don't turn
7805 (funcall '(lambda ..) ..) into ((lambda ..) ..).
7806
7807 2012-11-09 Vincent Belaïche <vincentb1@users.sourceforge.net>
7808
7809 * ses.el: Symbol to coordinate mapping is made by symbol property
7810 `ses-cell'. This means that the same mapping is done for all SES
7811 sheets. That is good enough for cells with standard A1 names, but
7812 not for named cell. So a hash map is added for the latter.
7813 (defconst ses-localvars): Add local variable ses--named-cell-hashmap
7814 (ses-sym-rowcol): Use hashmap for named cell.
7815 (ses-is-cell-sym-p): New defun.
7816 (ses-decode-cell-symbol): New defun.
7817 (ses-create-cell-variable): Add cell to hashmap when name is not
7818 A1-like.
7819 (ses-rename-cell): Check that cell new name is not already in
7820 spreadsheet with the use of ses-is-cell-sym-p
7821 (ses-rename-cell): Use hash map for named cells, but accept also
7822 renaming back to A1-like.
7823
7824 2012-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
7825
7826 * emacs-lisp/advice.el: Use new dynamic docstrings.
7827 (ad-make-advised-definition-docstring, ad-advised-definition-p):
7828 Use dynamic-docstring-function instead of ad-advice-info.
7829 (ad--make-advised-docstring): New function extracted from
7830 ad-make-advised-docstring.
7831 (ad-make-advised-docstring): Use it.
7832 * progmodes/sql.el (sql--make-help-docstring): New function, extracted
7833 from sql-help.
7834 (sql-help): Use it with dynamic-docstring-function.
7835
7836 * env.el (env--substitute-vars-regexp): Don't use rx (for bootstrap).
7837
7838 2012-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
7839
7840 * files.el (hack-one-local-variable--obsolete): New function.
7841 (hack-one-local-variable): Use it for obsolete settings.
7842
7843 * subr.el (locate-user-emacs-file): If both old and new name exist, use
7844 the new name.
7845
7846 * progmodes/js.el (js--filling-paragraph): New var.
7847 (c-forward-sws, c-backward-sws, c-beginning-of-macro): Advise.
7848 (js-c-fill-paragraph): Prefer advice to cl-letf so the rebinding is
7849 less sneaky.
7850
7851 2012-11-08 Julien Danjou <julien@danjou.info>
7852
7853 * progmodes/ruby-mode.el (auto-mode-alist): Add Rakefile in
7854 `auto-mode-alist' (Bug#12835).
7855
7856 2012-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
7857
7858 * progmodes/perl-mode.el (perl-prettify-symbols): New defcustom.
7859 (perl--prettify-symbols-alist): New const.
7860 (perl--font-lock-compose-symbol, perl--font-lock-symbols-keywords):
7861 New functions.
7862 (perl-font-lock-keywords-2): Use them.
7863 (perl-electric-noindent-p): New function.
7864 (perl-mode): Use it to set up electric-indent-mode.
7865 (perl-electric-terminator, perl-indent-command): Mark obsolete.
7866 (perl-mode-map): Remove bindings for them.
7867 (perl-imenu-generic-expression, perl-outline-level):
7868 Match functions&packages in column>0.
7869
7870 * env.el (env--substitute-vars-regexp): New const.
7871 (substitute-env-vars): Use it. Add `only-defined' arg.
7872 * net/tramp.el (tramp-replace-environment-variables): Use it.
7873
7874 * emacs-lisp/bytecomp.el (byte-compile-initial-macro-environment):
7875 Byte-compile *before* eval in eval-and-compile.
7876 (byte-compile-log-warning): Remove redundant inhibit-read-only.
7877 (byte-compile-file-form-autoload): Don't hide actual definition.
7878 (byte-compile-maybe-guarded): Accept `functionp' as well.
7879
7880 * emacs-lisp/gv.el (gv-ref, gv-deref): New function and macro.
7881
7882 2012-11-07 Michael Albinus <michael.albinus@gmx.de>
7883
7884 * notifications.el (notifications-get-server-information-method):
7885 New defconst.
7886 (notifications-get-capabilities): Fix docstring.
7887 (notifications-get-server-information): New defun.
7888
7889 2012-11-06 Agustín Martín Domingo <agustin.martin@hispalinux.es>
7890
7891 * textmodes/ispell.el (ispell-region): Standard re-indent for better
7892 readability.
7893
7894 * textmodes/ispell.el: Experimental support for support debugging.
7895 (ispell-create-debug-buffer): Create a `ispell-debug-buffer' debug
7896 buffer for ispell.
7897 (ispell-print-if-debug): New function to print stuff to
7898 `ispell-debug-buffer' if debugging is enabled.
7899 (ispell-region, ispell-process-line): Use `ispell-print-if-debug' to
7900 show some debugging info.
7901 (ispell-buffer-with-debug): New function that creates a debugging
7902 buffer and calls `ispell-buffer' with debugging enabled.
7903
7904 * textmodes/ispell.el (ispell-region): Do not prefix sent string by
7905 comment in autoconf mode. (Bug#12768)
7906
7907 2012-11-06 Dmitry Antipov <dmantipov@yandex.ru>
7908
7909 * emacs-lisp/byte-opt.el (toplevel): Add compare-window-configurations,
7910 frame-first-window, frame-root-window, frame-selected-window,
7911 minibuffer-selected-window, minibuffer-window,
7912 window-absolute-pixel-edges, window-at, window-body-height,
7913 window-body-width, window-display-table, window-combination-limit,
7914 window-frame, window-fringes, window-inside-absolute-pixel-edges,
7915 window-inside-edges, window-inside-pixel-edges, window-left-child,
7916 window-left-column, window-margins, window-next-buffers,
7917 window-next-sibling, window-new-normal, window-new-total,
7918 window-normal-size, window-parameter, window-parameters, window-parent,
7919 window-pixel-edges, window-point, window-prev-buffers,
7920 window-prev-sibling, window-redisplay-end-trigger, window-scroll-bars,
7921 window-start, window-text-height, window-top-child, window-top-line,
7922 window-total-height, window-total-width and window-use-time to the list
7923 of functions without side-effects.
7924 (toplevel): Add window-valid-p to the list of error-free functions
7925 without side-effects.
7926
7927 2012-11-05 Agustín Martín Domingo <agustin.martin@hispalinux.es>
7928
7929 * textmodes/ispell.el (ispell-program-name):
7930 Update spellchecker parameters when customized.
7931
7932 2012-11-04 Glenn Morris <rgm@gnu.org>
7933
7934 * vc/vc-svn.el (vc-svn-state-heuristic): Avoid calling svn. (Bug#7850)
7935
7936 2012-11-04 Chong Yidong <cyd@gnu.org>
7937
7938 * bookmark.el (bookmark-bmenu-switch-other-window): Avoid binding
7939 same-window-* variables.
7940
7941 2012-11-04 Juri Linkov <juri@jurta.org>
7942
7943 * isearch.el (isearch-help-for-help, isearch-describe-bindings)
7944 (isearch-describe-key, isearch-describe-mode): Use a display
7945 action instead of binding same-window-* variables (Bug#10040).
7946
7947 2012-11-03 Glenn Morris <rgm@gnu.org>
7948
7949 * emacs-lisp/cl-macs.el (cl-parse-loop-clause):
7950 Rename handler properties back from cl-- to cl-. (Bug#12788)
7951
7952 * emacs-lisp/cl-macs.el (cl-do-all-symbols): Add doc string.
7953
7954 2012-11-03 Eli Zaretskii <eliz@gnu.org>
7955
7956 * term/pc-win.el: Don't load term/internal from here.
7957
7958 * loadup.el: Load term/internal from here.
7959
7960 2012-11-03 Fabián Ezequiel Gallina <fgallina@cuca>
7961
7962 * progmodes/python.el (inferior-python-mode): Fix hang in
7963 jit-lock (Bug#12645).
7964
7965 2012-11-03 Martin Rudalics <rudalics@gmx.at>
7966
7967 * window.el (switch-to-visible-buffer)
7968 (switch-to-buffer-preserve-window-point): Fix doc-strings.
7969
7970 2012-11-03 Glenn Morris <rgm@gnu.org>
7971
7972 * emacs-lisp/cl-lib.el (cl--random-time):
7973 Rename from cl-random-time. (Bug#12773)
7974 (cl--gensym-counter, cl--random-state): Update callers.
7975 * emacs-lisp/cl-extra.el (cl-make-random-state): Update callers.
7976
7977 2012-11-03 Chong Yidong <cyd@gnu.org>
7978
7979 * cus-start.el: Make cursor-type customizable (Bug#11633).
7980
7981 2012-11-02 Glenn Morris <rgm@gnu.org>
7982
7983 * filecache.el: No need to load find-lisp when compiling.
7984 (find-lisp-find-files): Autoload it.
7985 (file-cache-add-directory-recursively): Don't require find-lisp.
7986
7987 * image.el (image-type-from-file-name): Trivial simplification.
7988
7989 * emacs-lisp/bytecomp.el (byte-compile-eval):
7990 Decouple "noruntime" and "cl-functions" warnings.
7991
7992 2012-11-01 Stephen Berman <stephen.berman@gmx.net>
7993
7994 * play/gomoku.el (gomoku-display-statistics): Update mode line
7995 only if in Gomoku buffer; don't capitalize "won" (Bug#12771).
7996
7997 2012-10-31 Martin Rudalics <rudalics@gmx.at>
7998
7999 * window.el (quit-restore-window): If the window has been
8000 created on an existing frame and ended up as the sole window on
8001 that frame, do not delete it (Bug#12764).
8002
8003 2012-10-31 Stefan Monnier <monnier@iro.umontreal.ca>
8004
8005 * progmodes/sh-script.el (sh--inside-noncommand-expression):
8006 Rename from sh--inside-arithmetic-expression, handle more cases
8007 (bug#11263).
8008
8009 * progmodes/sh-script.el (sh--inside-arithmetic-expression): New func.
8010 (sh-font-lock-open-heredoc): Use it (bug#12770).
8011
8012 2012-10-30 Glenn Morris <rgm@gnu.org>
8013
8014 * emacs-lisp/cl-extra.el (cl-mapc): Add autoload cookie. Doc fix.
8015
8016 * emacs-lisp/cl.el (letf): Doc fix. (Bug#12760)
8017
8018 2012-10-29 Chong Yidong <cyd@gnu.org>
8019
8020 * isearch.el (isearch-other-meta-char): Ensure that a reprocessed
8021 function key is stored in a keyboard macro (Bug#4894).
8022
8023 * thingatpt.el (number-at-point): Apply a thing-at-point property.
8024
8025 2012-10-29 Stefan Monnier <monnier@iro.umontreal.ca>
8026
8027 * vc/diff-mode.el (diff-context->unified): Don't get confused by "hunk
8028 header comments".
8029 (diff-unified->context, diff-context->unified)
8030 (diff-reverse-direction, diff-fixup-modifs): Use `use-region-p'.
8031
8032 * emacs-lisp/cl.el (letf): Add missing indent rules (bug#12759).
8033
8034 * files.el (find-alternate-file): Only ask one question (bug#12487).
8035
8036 2012-10-29 Chong Yidong <cyd@gnu.org>
8037
8038 * vc/vc-hooks.el (vc-file-clearprops): Kill vc-parent-buffer.
8039 Suggested by Dan Nicolaescu (Bug#6326).
8040
8041 * info.el (Info-complete-menu-item): Avoid duplicates (Bug#12705).
8042
8043 * startup.el (fancy-about-screen): Don't message (Bug#12680).
8044
8045 * thingatpt.el (thing-at-point): Doc fix (Bug#12691).
8046
8047 * imenu.el (imenu): Inhibit push-mark message (Bug#12726).
8048
8049 * face-remap.el (face-remap-add-relative): Handle the case where a
8050 face-remapping-alist entry is a cons cell (Bug#12762).
8051
8052 2012-10-29 Kevin Ryde <user42@zip.com.au>
8053
8054 * woman.el (woman-parse-numeric-value): Handle picas correctly
8055 (Bug#12639).
8056
8057 2012-10-29 Glenn Morris <rgm@gnu.org>
8058
8059 * emacs-lisp/cl.el (defsetf): Doc fix.
8060
8061 2012-10-29 Stefan Monnier <monnier@iro.umontreal.ca>
8062
8063 * progmodes/sh-script.el (sh-font-lock-paren): Also put punctuation
8064 syntax to the matching opener, if any (bug#12547).
8065 (sh-smie-sh-forward-token, sh-smie-sh-backward-token): Recognize this
8066 matching open as a "case-(".
8067 (sh-smie-rc-grammar): Add a corresponding rule for it.
8068
8069 2012-10-28 Daniel Hackney <dan@haxney.org>
8070
8071 * emacs-lisp/package.el (package-generate-autoloads): Kill buffer
8072 "PKGNAME-autoloads.el" in case we created it.
8073
8074 2012-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
8075
8076 * minibuffer.el (completion--sifn-requote): Rewrite to handle things
8077 like Tramp's "/foo:~bar//baz" -> "/scpc:foo:/baz" mapping (bug#11714).
8078 (completion--twq-all): Disable too-strict assertions.
8079
8080 * tmm.el (tmm-prompt): Use map-keymap (bug#12744).
8081
8082 2012-10-27 Eli Zaretskii <eliz@gnu.org>
8083
8084 * profiler.el (profiler-report-make-entry-part): Fix help-echo
8085 text to match the real keybindings.
8086
8087 2012-10-27 Juri Linkov <juri@jurta.org>
8088
8089 * wdired.el (wdired-keep-marker-rename): New defcustom.
8090 (wdired-do-renames): Use it instead of `dired-keep-marker-rename'.
8091 (Bug#11795)
8092
8093 * dired.el (dired-keep-marker-rename): Add reference to
8094 `wdired-keep-marker-rename' in the docstring.
8095 Add default character value ?R to display initially in
8096 Customization UI instead of ?@.
8097
8098 2012-10-27 Martin Rudalics <rudalics@gmx.at>
8099
8100 * window.el (display-buffer): In doc-string describe
8101 window-height and window-width alist entries.
8102
8103 * time.el (display-time-world): Restore fit-window-to-buffer
8104 behavior.
8105
8106 2012-10-27 Chong Yidong <cyd@gnu.org>
8107
8108 * subr.el (insert-buffer-substring-as-yank): Doc fix.
8109
8110 2012-10-26 Jambunathan K <kjambunathan@gmail.com>
8111
8112 * minibuffer.el (completion-category-overrides): New completion
8113 category `bookmark' (bug#11131).
8114
8115 2012-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
8116
8117 * emacs-lisp/advice.el (ad-assemble-advised-definition):
8118 Silence bogus compiler warnings for ad-do-it.
8119
8120 * bookmark.el (bookmark-completing-read): Set the completion category
8121 to `bookmark' (bug#11131).
8122
8123 2012-10-26 Bastien <bzg@altern.org>
8124 Stefan Monnier <monnier@iro.umontreal.ca>
8125
8126 * face-remap.el: Use lexical-binding.
8127 (text-scale-adjust): Improve docstring. Use itself for the temporary
8128 overlay-map bindings, so as to repeat the "Use..." message each time.
8129
8130 2012-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
8131
8132 * emacs-lisp/macroexp.el (macroexp--expand-all):
8133 Obey byte-compile-warning-enabled-p (bug#12486).
8134
8135 * vc/diff-mode.el (diff-end-of-hunk): Also skip potential "no LF at eol".
8136 (diff-refine-hunk): Similarly, handle the "no LF at eol" (bug#12584).
8137
8138 2012-10-26 Martin Rudalics <rudalics@gmx.at>
8139
8140 * mouse.el (mouse-drag-line): Move last form into preceding when
8141 clause (Bug#12731).
8142
8143 * help.el (resize-temp-buffer-window): Fix doc-string.
8144
8145 2012-10-25 David Engster <deng@randomsample.de>
8146
8147 * emacs-lisp/eieio.el (eieio-update-lisp-imenu-expression):
8148 Remove. This feature is already integrated in imenu.
8149
8150 * emacs-lisp/eieio-opt.el: Remove require for `button' since it is
8151 always loaded. Require `speedbar' unconditionally.
8152
8153 2012-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
8154
8155 * dired.el (dired-get-marked-files): Allow ! on . and .. (bug#12725).
8156
8157 * minibuffer.el (minibuffer-force-complete): Fix thinko.
8158
8159 * net/ldap.el (ldap-search-internal): The official ldif format starts
8160 with a "version: 1" header (bug#12724).
8161
8162 * emacs-lisp/package.el (package-installed-p): Warn if not ready
8163 (bug#12721).
8164
8165 2012-10-25 Glenn Morris <rgm@gnu.org>
8166
8167 * emacs-lisp/cl-macs.el (cl-progv): Doc fix.
8168
8169 2012-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
8170
8171 * minibuffer.el (minibuffer-force-complete): Use one more marker
8172 for the temporary-overlay-map command (bug#12619).
8173
8174 2012-10-24 Chong Yidong <cyd@gnu.org>
8175
8176 * time.el (display-time-world-mode): Derive from special-mode.
8177 (display-time-world): Use display-buffer (Bug#12708).
8178 (display-time-world-mode-map): Variable deleted.
8179 (display-time-world-display): Wrap the final delete-char inside
8180 inhibit-read-only.
8181
8182 2012-10-24 Chong Yidong <cyd@gnu.org>
8183
8184 * dired.el (dired-mark, dired-unmark, dired-flag-file-deletion):
8185 Doc fix.
8186
8187 * emacs-lisp/easymenu.el (easy-menu-define): Doc fix (Bug#12628).
8188
8189 2012-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
8190
8191 * minibuffer.el (completion--all-sorted-completions-location): New var.
8192 (completion--cache-all-sorted-completions)
8193 (completion--flush-all-sorted-completions): Use it.
8194 (completion-in-region, completion-in-region--postch)
8195 (completion-at-point, completion-help-at-point): Use markers in
8196 completion-in-region--data (bug#12619).
8197
8198 2012-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
8199
8200 * progmodes/compile.el (compilation-start): Try to handle common
8201 quoting of `cd' argument (bug#12640).
8202
8203 * vc/diff-mode.el (diff-hunk): `save-excursion' while refining
8204 (bug#12671).
8205
8206 2012-10-23 Glenn Morris <rgm@gnu.org>
8207
8208 * progmodes/gud.el (gud-menu-map):
8209 Check gdb-active-process is bound. (Bug#12358)
8210
8211 2012-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
8212
8213 * repeat.el (repeat): Set real-this-command (bug#12232).
8214
8215 * htmlfontify.el (hfy-post-html-hook):
8216 * filesets.el (filesets-cache-fill-content-hook):
8217 * arc-mode.el (archive-extract-hook):
8218 * progmodes/cc-mode.el (c-prepare-bug-report-hook):
8219 * net/rcirc.el (rcirc-sentinel-functions)
8220 (rcirc-receive-message-functions, rcirc-activity-functions)
8221 (rcirc-print-functions):
8222 * net/dbus.el (dbus-event-error-functions):
8223 * emacs-lisp/eieio.el (eieio-pre-method-execution-functions):
8224 * emacs-lisp/checkdoc.el (checkdoc-style-functions)
8225 (checkdoc-comment-style-functions): Don't use "-hooks" suffix.
8226 * term/sun.el (sun-raw-prefix-hooks):
8227 * mail/sendmail.el (mail-yank-hooks): Use make-obsolete-variable.
8228
8229 2012-10-23 Michael Albinus <michael.albinus@gmx.de>
8230
8231 * net/tramp-smb.el (tramp-smb-maybe-open-connection):
8232 Set `tramp-chunksize' to 1. This improves the performance.
8233 (tramp-smb-wait-for-output): Add timeout to
8234 `tramp-accept-process-output' calls.
8235
8236 2012-10-23 Chong Yidong <cyd@gnu.org>
8237
8238 * faces.el (font-list-limit): Define as an obsolete variable.
8239
8240 * startup.el (command-line):
8241 * cus-start.el: Don't refer to font-list-limit.
8242
8243 * newcomment.el (comment-normalize-vars): Doc fix (Bug#12583).
8244
8245 2012-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
8246
8247 * subr.el (internal-temp-output-buffer-show): Rename from
8248 temp-output-buffer-show, since previously compiled files expect this name.
8249
8250 2012-10-23 Glenn Morris <rgm@gnu.org>
8251
8252 * image.el (image-type-from-file-name): If multiple types match,
8253 return the first one that is supported. (Bug#9045)
8254
8255 2012-10-22 Glenn Morris <rgm@gnu.org>
8256
8257 * image.el (imagemagick-enabled-types): Doc fix.
8258
8259 2012-10-22 Takafumi Arakaki <aka.tkf@gmail.com> (tiny change)
8260
8261 * progmodes/which-func.el (which-func-current): The hash-table may have
8262 an explicit nil (bug#12338).
8263
8264 2012-10-22 Stefan Monnier <monnier@iro.umontreal.ca>
8265
8266 * electric.el (electric-pair-delete-selection-self-insert-function):
8267 Rename to electric-pair-will-use-region, return a boolean.
8268 (electric-pair-mode): Adjust accordingly. Don't require delsel.
8269
8270 * delsel.el (delete-selection-helper): Use a function instead of a hook.
8271 (delete-selection-pre-hook): Use use-region-p.
8272 (delete-selection-self-insert-function): Remove.
8273 (self-insert-command): Obey self-insert-uses-region-functions.
8274 (self-insert-iso): Revert to previous setting, since we don't actually
8275 know what that command does.
8276 (delete-selection-self-insert-hooks): Remove.
8277
8278 2012-10-22 Simon Law <sfllaw@sfllaw.ca> (tiny change)
8279
8280 * delsel.el (delete-selection-helper): New function, extracted from
8281 delete-selection-pre-hook.
8282 (delete-selection-pre-hook): Use it.
8283 (delete-selection-self-insert-function): New function.
8284 (delete-selection-self-insert-hooks): New hook.
8285 (self-insert-command, self-insert-iso): Use it.
8286 * electric.el (electric-pair-syntax): New function, extracted from
8287 electric-pair-post-self-insert-function.
8288 (electric-pair-post-self-insert-function): Use it.
8289 (electric-pair-delete-selection-self-insert-function): New function.
8290 (electric-pair-mode): Require delsel and setup
8291 delete-selection-self-insert-hooks (bug#11520).
8292
8293 2012-10-20 Chong Yidong <cyd@gnu.org>
8294
8295 * vc/vc.el (vc-diff-internal): Set up Diff mode even if there are
8296 no changes to show (Bug#12586).
8297
8298 * eshell/esh-cmd.el (eshell-rewrite-for-command): Copy the body
8299 list explicitly (Bug#12571).
8300
8301 2012-10-20 Arne Jørgensen <arne@arnested.dk>
8302
8303 * progmodes/flymake.el (flymake-create-temp-inplace):
8304 Use file-truename.
8305
8306 2012-10-20 Eli Zaretskii <eliz@gnu.org>
8307
8308 * loadup.el: Update comment about uncompiled Lisp files. (Bug#12395)
8309
8310 2012-10-20 Jay Belanger <jay.p.belanger@gmail.com>
8311
8312 * calc/calc-units.el (math-extract-units): Properly extract powers
8313 of units.
8314
8315 2012-10-20 Daniel Colascione <dancol@dancol.org>
8316
8317 * frame.el (make-frame): Set x-display-name as we used to in order
8318 to unbreak creating an X11 frame from an Emacs daemon started
8319 without a display.
8320
8321 2012-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
8322
8323 * minibuffer.el (minibuffer-force-complete): Make the next completion use
8324 the same completion-field (bug#12221).
8325
8326 2012-10-19 Martin Rudalics <rudalics@gmx.at>
8327
8328 * emacs-lisp/debug.el (debug): Record height of debugger window
8329 also when debugger will be back (Bug#8789).
8330
8331 2012-10-18 Chong Yidong <cyd@gnu.org>
8332
8333 * progmodes/gdb-mi.el (gdb-display-buffer-other-frame-action):
8334 Convert to defcustom.
8335 (gdb-get-source-file): Don't bind pop-up-windows.
8336
8337 * progmodes/gud.el (gud-display-line): Don't specially re-use
8338 other frames for the gdb-mi case (Bug#12648).
8339
8340 2012-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
8341
8342 * emacs-lisp/advice.el: Clean up commentary a bit.
8343 (ad-do-advised-functions, ad-with-originals): Use `declare'.
8344 (byte-code-function-p): Never redefine.
8345
8346 * emacs-lisp/gv.el (cond): Same fix as before for `if'.
8347
8348 2012-10-18 Glenn Morris <rgm@gnu.org>
8349
8350 * dired.el (dired-sort-toggle): Some ls implementations only allow
8351 a single option string. (Bug#12666)
8352
8353 * minibuffer.el (completion-cycle-threshold): Doc fix.
8354
8355 2012-10-17 Kenichi Handa <handa@gnu.org>
8356
8357 * international/mule.el (set-keyboard-coding-system):
8358 Recover input meta mode when the new coding system doesn not use 8-bit.
8359 Supply TERMINAL arg to set-input-meta-mode.
8360
8361 2012-10-17 Michael Heerdegen <michael_heerdegen@web.de>
8362
8363 * wdired.el (wdired-old-marks): New variable.
8364 (wdired-change-to-wdired-mode): Locally set wdired-old-marks.
8365 (wdired-do-renames): Move point with renamed file and don't lose
8366 mark status (Bug#11795).
8367
8368 2012-10-16 Juri Linkov <juri@jurta.org>
8369
8370 * replace.el (query-replace-help): Mention multi-buffer replacement
8371 keys in the Help message. (Bug#12655)
8372
8373 2012-10-15 Chong Yidong <cyd@gnu.org>
8374
8375 * emacs-lisp/byte-run.el (defsubst): Doc fix.
8376
8377 2012-10-14 Eli Zaretskii <eliz@gnu.org>
8378
8379 * window.el (display-buffer): Doc fix.
8380
8381 * progmodes/compile.el (compilation-error-regexp-alist-alist):
8382 Adjust the msft regexp to the output of Studio 2010, and move msft
8383 before edg-1. See the discussion on emacs-devel,
8384 http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00579.html,
8385 for the details.
8386
8387 2012-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
8388
8389 * emacs-lisp/eieio.el (eieio-oset-default, eieio-oset, oset-default)
8390 (oset): Move uses of object-class-fast macro after its definition.
8391
8392 * emacs-lisp/gv.el (if): Don't use closures in non-lexical-binding code.
8393
8394 2012-10-13 Chong Yidong <cyd@gnu.org>
8395
8396 * textmodes/ispell.el (ispell-pdict-save): If flyspell-mode is
8397 enabled, re-enable it (Bug#11963).
8398
8399 2012-10-13 Martin Rudalics <rudalics@gmx.at>
8400
8401 * emacs-lisp/debug.el (debug): When debugger-will-be-back is
8402 non-nil, restore window configuration (Bug#12623).
8403
8404 2012-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
8405
8406 * help-fns.el (describe-variable, describe-function-1):
8407 * help-mode.el (help-make-xrefs): Remove error handler, made unneeded.
8408
8409 * emacs-lisp/eieio.el (lisp-imenu-generic-expression): Fix typo.
8410
8411 2012-10-12 Glenn Morris <rgm@gnu.org>
8412
8413 * mail/rmailsum.el (rmail-header-summary):
8414 Fix 2010-11-26 test for multiline Subject: field. (Bug#12625)
8415
8416 2012-10-12 Fabián Ezequiel Gallina <fgallina@cuca>
8417
8418 * progmodes/python.el (python-mode-map):
8419 Replace subtitute-key-definition with proper command remapping.
8420 (python-nav--up-list): Fix behavior for blocks on the same level.
8421
8422 2012-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
8423
8424 * help-fns.el (describe-function-1): Handle autoloads w/o docstrings.
8425
8426 * emacs-lisp/bytecomp.el (byte-compile-eval): Adjust to long-ago
8427 changes to the format of load-history.
8428
8429 * international/mule-cmds.el (read-char-by-name): Move let-binding of
8430 completion-ignore-case in case that var is buffer-local (bug#12615).
8431
8432 2012-10-11 Kenichi Handa <handa@gnu.org>
8433
8434 * international/eucjp-ms.el: Re-generated.
8435
8436 2012-10-10 Kenichi Handa <handa@gnu.org>
8437
8438 * select.el (xselect--encode-string): If a coding is specified for
8439 selection, and that is compatible with COMPOUND_TEXT, use it.
8440
8441 2012-10-10 Martin Rudalics <rudalics@gmx.at>
8442
8443 * window.el (switch-to-buffer-preserve-window-point): New option.
8444 (switch-to-buffer):
8445 Obey `switch-to-buffer-preserve-window-point' (Bug#4041).
8446
8447 2012-10-09 Stefan Monnier <monnier@iro.umontreal.ca>
8448
8449 * newcomment.el (comment-start-skip, comment-end-skip, comment-end):
8450 Don't document nil as a useful value (bug#12583).
8451
8452 2012-10-09 Michael Albinus <michael.albinus@gmx.de>
8453
8454 * net/tramp.el (tramp-debug-message):
8455 Remove "tramp-with-progress-reporter" from regexp of ignored functions.
8456 (with-tramp-progress-reporter): Rename from
8457 `tramp-with-progress-reporter'.
8458 (with-tramp-file-property, with-tramp-connection-property):
8459 Move from tramp-cache.el, rename from `with-file-property' and
8460 `with-connection-property', respectively.
8461
8462 * net/tramp-cache.el: Remove `with-file-property' and
8463 `with-connection-property'.
8464
8465 * net/tramp.el:
8466 * net/tramp-gvfs.el:
8467 * net/tramp-sh.el:
8468 * net/tramp-smb.el: Adapt callees.
8469
8470 * net/trampver.el: Update release number.
8471
8472 2012-10-09 Glenn Morris <rgm@gnu.org>
8473
8474 * w32-fns.el (set-message-beep):
8475 * term/w32-win.el (set-message-beep): Update declarations.
8476
8477 2012-10-09 Stefan Monnier <monnier@iro.umontreal.ca>
8478
8479 * bindings.el (mode-line-toggle-read-only, mode-line-toggle-modified)
8480 (mode-line-widen, mode-line-input-method-map)
8481 (mode-line-coding-system-map, mode-line-remote)
8482 (mode-line-unbury-buffer, mode-line-bury-buffer)
8483 (mode-line-next-buffer, mode-line-previous-buffer):
8484 Replace save-selected-window+select-window => with-selected-window.
8485
8486 * progmodes/cc-bytecomp.el (cc-bytecomp-defmacro): Remove, unused.
8487 * progmodes/cc-vars.el (bq-process): Remove, unused.
8488
8489 * emacs-lisp/cl-macs.el (cl-defstruct): Obey the :read-only property.
8490
8491 2012-10-09 Fabián Ezequiel Gallina <fgallina@cuca>
8492
8493 Implemented `backward-up-list'-like navigation.
8494 * progmodes/python.el (python-nav-up-list)
8495 (python-nav-backward-up-list): New functions.
8496 (python-mode-map): Define substitute key for backward-up-list to
8497 python-nav-backward-up-list.
8498
8499 2012-10-08 Fabián Ezequiel Gallina <fgallina@cuca>
8500
8501 * progmodes/python.el (python-fill-paragraph): Rename from
8502 python-fill-paragraph-function. Fixed fill-paragraph for
8503 decorators (Bug#12605).
8504
8505 2012-10-08 Fabián Ezequiel Gallina <fgallina@cuca>
8506
8507 * progmodes/python.el (python-shell-output-filter): Handle extra
8508 carriage return in OSX (Bug#12409).
8509
8510 2012-10-08 Fabián Ezequiel Gallina <fgallina@cuca>
8511
8512 Fix shell handling of unbalanced quotes and parens in output.
8513 * progmodes/python.el (python-rx-constituents): Add string-delimiter.
8514 (python-syntax-propertize-function): Use it.
8515 (python-shell-output-syntax-table): New var.
8516 (inferior-python-mode): Prevent unbalanced parens/quotes from
8517 previous output mess with current input context.
8518
8519 2012-10-08 Juanma Barranquero <lekktu@gmail.com>
8520
8521 * generic-x.el (javascript-generic-mode, javascript-generic-mode-hook):
8522 Make obsolete aliases of js-mode and js-mode-hook (from js.el).
8523
8524 2012-10-08 Michael Albinus <michael.albinus@gmx.de>
8525
8526 * ffap.el (ffap-replace-file-component): Support Tramp file name
8527 syntax, not only ange-ftp's one.
8528
8529 2012-10-08 Glenn Morris <rgm@gnu.org>
8530
8531 * cus-start.el (message-log-max): Set :version.
8532
8533 * calendar/calendar.el (calendar-intermonth-header): Doc fix.
8534
8535 2012-10-08 Martin Rudalics <rudalics@gmx.at>
8536
8537 * emacs-lisp/edebug.el (edebug-pop-to-buffer): Don't try to split
8538 the minibuffer window (Bug#10851).
8539
8540 2012-10-08 Fabián Ezequiel Gallina <fgallina@cuca>
8541
8542 Enhancements on forward-sexp movement.
8543 * progmodes/python.el (python-nav-beginning-of-statement)
8544 (python-nav-end-of-statement): Return point-marker.
8545 (python-nav-forward-sexp): lisp-like forward-sexp behavior.
8546 (python-info-current-symbol)
8547 (python-info-statement-starts-block-p): Rename from
8548 python-info-beginning-of-block-p.
8549 (python-info-statement-ends-block-p): Rename from
8550 python-info-end-of-block-p.
8551 (python-info-beginning-of-statement-p)
8552 (python-info-end-of-statement-p)
8553 (python-info-beginning-of-block-p, python-info-end-of-block-p):
8554 New functions.
8555
8556 2012-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
8557
8558 * comint.el (comint-preinput-scroll-to-bottom): Preserve the
8559 frame-selected-windows.
8560
8561 2012-10-08 Daniel Colascione <dancol@dancol.org>
8562
8563 * battery.el (battery-status-function): Check for
8564 w32-battery-status itself, not system-time windows-nt.
8565
8566 * frame.el: Require cl-lib.
8567 (display-format-alist): New variable mapping frame types to
8568 functions that initialize them.
8569 (window-system-for-display): New function: interprets
8570 display-format-alist.
8571 (make-frame-on-display): Remove existing display-selection logic
8572 and just forward to make-frame, which will now DTRT.
8573 (make-frame): Restructure to use window-system-for-display to
8574 figure out how to create a frame on a given display.
8575 (display-mouse-p): Look for frame-type w32, not a particular
8576 system-type.
8577
8578 * loadup.el: Load w32 lisp code when we have the w32 feature.
8579
8580 * mouse.el (mouse-yank-primarY): Look for frame-type w32, not
8581 system-type windows-nt.
8582
8583 * server.el (server-create-window-system-frame): Look for window
8584 type.
8585 (server-proces-filter): Only force a window system when windows-nt
8586 _and_ w32. Explain why.
8587
8588 * simple.el (normal-erase-is-backspace-mode): Add w32 to the list
8589 of window systems we configure for the mode.
8590
8591 * startup.el (command-line): Mark window system is initialized
8592 after we've done it.
8593
8594 * common-win.el (x-select-text): Look for w32, not windows-nt.
8595
8596 * ns-win.el: Require cl-lib. Add ourselves to
8597 display-format-alist.
8598 (ns-initialize-window-system): Assert we're not initialized twice.
8599
8600 * w32-win.el: Enable lexical binding; require cl-lib; add
8601 ourselves to display-format-alist.
8602 (w32-handle-dropped-file): Convert incoming dropped files from
8603 Windows paths to Cygwin ones before passing them on to the rest of
8604 Emacs.
8605 (w32-drag-n-drop): New paramter new-frame. Simplify logic.
8606 (w32-initialize-window-system): Assert we're not initialized twice.
8607
8608 * x-win.el: Require cl-lib; add ourselves to display-format-alist.
8609 (x-initialize-window-system): Assert we're not initialized twice.
8610
8611 * w32-common-fns.el: New File.
8612 (w32-version, w32-using-nt, w32-get-clipboard-data)
8613 (w32-set-clipboard-data, x-set-selection, x-get-selection)
8614 (w32-charset-info-alist, x-last-selected, text)
8615 (x-get-selection-value, x-selection-value): Move here.
8616
8617 * w32-fns.el: Require w32-common-fns.
8618 (w32-version, w32-using-nt, w32-get-clipboard-data)
8619 (w32-set-clipboard-data, x-set-selection, x-get-selection)
8620 (w32-charset-info-alist, x-last-selected, text)
8621 (x-get-selection-value, x-selection-value): Move to
8622 w32-common-fns.
8623
8624 * w32-vars.el:
8625 (w32-allow-system-shell, w32-system-shells): Define only in
8626 non-cygwin case.
8627
8628 2012-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
8629
8630 * subr.el (read-passwd-map): Don't use `defconst' (bug#12597).
8631 (read-passwd): Remove a few more potential sources of leaks.
8632
8633 2012-10-07 Fabián Ezequiel Gallina <fgallina@cuca>
8634
8635 * progmodes/python.el (inferior-python-mode)
8636 (python-shell-make-comint): Fix initialization of local
8637 variables copied from parent buffer.
8638
8639 2012-10-07 Jan Djärv <jan.h.d@swipnet.se>
8640
8641 * term/ns-win.el (ns-read-file-name): Update declaration to match
8642 nsfns.m.
8643 (ns-respond-to-change-font): Change fontsize separately so we are sure
8644 it is set when font is acted upon.
8645
8646 2012-10-07 Fabián Ezequiel Gallina <fgallina@cuca>
8647
8648 Enhancements to indentation.
8649 * progmodes/python.el (python-indent-context): Give priority to
8650 inside-string context. Make comments indentation markers.
8651 (python-indent-region): Do not mess with strings, unless it's the
8652 enclosing set of quotes.
8653
8654 2012-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
8655
8656 * window.el (internal--before-save-selected-window)
8657 (internal--after-save-selected-window): New functions extracted from
8658 save-selected-window. Make sure we return the `alist' we construct.
8659 (save-selected-window): Use them.
8660
8661 * textmodes/tex-mode.el (tex-recenter-output-buffer):
8662 Use with-selected-window.
8663
8664 * emacs-lisp/autoload.el (make-autoload): Add `cl-defmacro' to the
8665 forms that define macros (bug#12593).
8666
8667 2012-10-07 Kenichi Handa <handa@gnu.org>
8668
8669 * international/mule-conf.el (compound-text-with-extensions):
8670 Add :mime-charset property as x-ctext.
8671
8672 2012-10-07 Stefan Merten <smerten@oekonux.de>
8673
8674 * textmodes/rst.el (rst-new-adornment-down, rst-indent-field)
8675 (rst-indent-literal-normal, rst-indent-literal-minimized)
8676 (rst-indent-comment): Correct :version tag.
8677 (rst-official-cvs-rev): Correct version string.
8678
8679 2012-10-07 Glenn Morris <rgm@gnu.org>
8680
8681 * mail/rmailmm.el (rmail-mime-process-multipart):
8682 Do not confuse a multipart message with an epilogue
8683 with a "truncated" one; fixes 2011-06-27 change. (Bug#10101)
8684
8685 2012-10-07 Fabián Ezequiel Gallina <fgallina@cuca>
8686
8687 Fix shell output retrieval and comint-prompt-regexp init.
8688 * progmodes/python.el (inferior-python-mode):
8689 (python-shell-make-comint): Fix initialization of
8690 comint-prompt-regexp from copied file local variables.
8691 (python-shell-fetched-lines): Remove var.
8692 (python-shell-output-filter-in-progress): Rename from
8693 python-shell-fetch-lines-in-progress.
8694 (python-shell-output-filter-buffer): Rename from
8695 python-shell-fetch-lines-string.
8696 (python-shell-fetch-lines-filter): Delete function.
8697 (python-shell-output-filter): New function.
8698 (python-shell-send-string-no-output): Use them.
8699
8700 2012-10-07 Glenn Morris <rgm@gnu.org>
8701
8702 * hi-lock.el (hi-lock-process-phrase):
8703 Try to make it less fragile. (Bug#7161)
8704
8705 * hi-lock.el (hi-lock-face-phrase-buffer): Doc fix.
8706
8707 2012-10-06 Glenn Morris <rgm@gnu.org>
8708
8709 * ehelp.el (electric-help-mode): Use help-mode rather than
8710 non-existent mode `help'.
8711 (electric-help-map): Use button-buffer-map. (Bug#10917)
8712
8713 * textmodes/reftex-vars.el (reftex-create-bibtex-header)
8714 (reftex-create-bibtex-footer): Fix custom types.
8715
8716 * progmodes/sh-script.el (sh-indent-after-continuation):
8717 Add explicit :group.
8718
8719 * textmodes/rst.el (rst-preferred-decorations)
8720 (rst-shift-basic-offset): Clarify obsolescence versions.
8721
8722 * profiler.el (profiler): Add missing group :version tag.
8723 * avoid.el (mouse-avoidance-banish-position):
8724 * proced.el (proced-renice-command):
8725 * calc/calc.el (calc-ensure-consistent-units):
8726 * calendar/icalendar.el (icalendar-import-format-uid):
8727 * net/tramp.el (tramp-save-ad-hoc-proxies):
8728 * progmodes/bug-reference.el (bug-reference-bug-regexp):
8729 * progmodes/flymake.el (flymake-error-bitmap)
8730 (flymake-warning-bitmap, flymake-fringe-indicator-position):
8731 * progmodes/sh-script.el (sh-indent-after-continuation):
8732 * progmodes/verilog-mode.el (verilog-auto-template-warn-unused)
8733 (verilog-before-save-font-hook, verilog-after-save-font-hook):
8734 * progmodes/vhdl-mode.el (vhdl-makefile-default-targets)
8735 (vhdl-array-index-record-field-in-sensitivity-list)
8736 (vhdl-indent-comment-like-next-code-line):
8737 * textmodes/reftex-vars.el (reftex-ref-style-alist)
8738 (reftex-ref-macro-prompt, reftex-ref-style-default-list)
8739 (reftex-cite-key-separator, reftex-create-bibtex-header)
8740 (reftex-create-bibtex-footer):
8741 * textmodes/rst.el (rst-new-adornment-down, rst-indent-field)
8742 (rst-indent-literal-normal, rst-indent-literal-minimized)
8743 (rst-indent-comment): Add missing custom :version tags.
8744
8745 * calendar/timeclock.el (timeclock-modeline-display):
8746 Add missing obsolete alias for renamed user option.
8747
8748 * strokes.el (strokes-modeline-string):
8749 * emulation/crisp.el (crisp-mode-modeline-string):
8750 * eshell/esh-mode.el (eshell-status-in-modeline):
8751 Aliases to defcustoms must come before the defcustom.
8752
8753 * calendar/cal-tex.el (cal-tex-diary, cal-tex-cursor-week)
8754 (cal-tex-cursor-week2, cal-tex-cursor-week-iso)
8755 (cal-tex-cursor-week-monday): Doc fixes.
8756 (cal-tex-cursor-week2-summary): Doc fix.
8757 Rename from cal-tex-cursor-week-at-a-glance.
8758
8759 * calendar/cal-menu.el (cal-menu-context-mouse-menu):
8760 Tweak week descriptions. Add cal-tex-cursor-week2-summary.
8761
8762 * calendar/calendar.el (calendar-mode-map):
8763 Add cal-tex-cursor-week2-summary.
8764
8765 2012-10-06 Stefan Monnier <monnier@iro.umontreal.ca>
8766
8767 * emacs-lisp/cl-macs.el (cl-defstruct): Improve docstring.
8768
8769 * subr.el (read-passwd-map): New var.
8770 (read-passwd): Use `read-string' again.
8771 * minibuffer.el (delete-minibuffer-contents): Make it interactive.
8772
8773 2012-10-06 Jambunathan K <kjambunathan@gmail.com>
8774
8775 * register.el (append-to-register, prepend-to-register):
8776 Deactivate mark, as does `copy-to-register' (bug#12389).
8777
8778 2012-10-06 Chong Yidong <cyd@gnu.org>
8779
8780 * files.el (auto-mode-alist): Add .by and .wy (Semantic grammars).
8781
8782 2012-10-06 Ikumi Keita <ikumi@ikumi.que.jp> (tiny change)
8783
8784 * international/characters.el: Fix simple mistake ((car chars) ->
8785 elt), delete duplicated code.
8786
8787 2012-10-06 Glenn Morris <rgm@gnu.org>
8788
8789 * subr.el (read-passwd): Allow C-u to erase entry. (Bug#12570)
8790
8791 2012-10-06 Julian Scheid <julians37@gmail.com> (tiny change)
8792
8793 * color.el (color-hsl-to-rgb): Fix incorrect results for
8794 small and large hue values. (Bug#12559)
8795
8796 2012-10-05 Fabián Ezequiel Gallina <fgallina@cuca>
8797
8798 Enhancements to docstring formatting when filling paragraphs.
8799 * progmodes/python.el (python-fill-docstring-style): Rename from
8800 python-fill-string-style. Added new style.
8801 (python-fill-string): Use new style. Better checks for
8802 docstrings.
8803
8804 2012-10-05 Glenn Morris <rgm@gnu.org>
8805
8806 * net/newst-treeview.el (newsticker-group-move-feed): Doc fix.
8807
8808 * color.el (color-name-to-rgb, color-rgb-to-hex)
8809 (color-hue-to-rgb, color-hsl-to-rgb, color-rgb-to-hsv)
8810 (color-rgb-to-hsl, color-srgb-to-xyz, color-saturate-hsl)
8811 (color-desaturate-hsl, color-desaturate-name, color-lighten-hsl)
8812 (color-lighten-name, color-darken-hsl, color-darken-name): Doc fixes.
8813
8814 * emacs-lisp/timer.el (with-timeout): Add missing progn. (Bug#12577)
8815
8816 2012-10-05 Juanma Barranquero <lekktu@gmail.com>
8817
8818 * ido.el (ido-directory-too-big-p): Pass dir through file-truename
8819 to get the correct size across symlinks.
8820
8821 * ido.el (ido-buffer-disable-smart-matches): Fix typo in docstring.
8822
8823 2012-10-04 Juri Linkov <juri@jurta.org>
8824
8825 * replace.el (query-replace-interactive): Declare obsolete.
8826 (query-replace-read-from): Add the last incremental search string
8827 to the list of default values accessible via M-n.
8828 (map-query-replace-regexp): Use `read-regexp'.
8829 (query-replace, query-replace-regexp, query-replace-regexp-eval)
8830 (map-query-replace-regexp, replace-string, replace-regexp):
8831 Fix docstrings to replace mentions of `query-replace-interactive'
8832 with alternatives. (Bug#12526)
8833
8834 2012-10-04 Juri Linkov <juri@jurta.org>
8835
8836 * dired.el (dired-shrink-to-fit): Declare obsolete. (Bug#1806)
8837 (dired-pop-to-buffer): Declare obsolete.
8838 (dired-mark-pop-up): Doc fix.
8839
8840 2012-10-04 Fabián Ezequiel Gallina <fgallina@cuca>
8841
8842 Allow user to set docstring style for fill-paragraph.
8843 * progmodes/python.el
8844 (python-fill-comment-function, python-fill-string-function)
8845 (python-fill-decorator-function, python-fill-paren-function):
8846 Remove :safe for defcustoms.
8847 (python-fill-string-style): New defcustom
8848 (python-fill-paragraph-function): Enhance context detection.
8849 (python-fill-string): Honor python-fill-string-style settings.
8850
8851 2012-10-04 Martin Rudalics <rudalics@gmx.at>
8852
8853 * emacs-lisp/edebug.el (edebug-pop-to-buffer): Select window
8854 after setting its buffer (Bug#10805).
8855
8856 2012-10-03 Fabián Ezequiel Gallina <fgallina@cuca>
8857
8858 Fix cornercase for string syntax.
8859 * progmodes/python.el (python-syntax-propertize-function):
8860 Simplify and enhance the regexp for unescaped quotes. Now it also
8861 matches quotes in weird situations like the single quote in
8862 "something\"'".
8863 (python-syntax-stringify): Simplify num-quotes detecting code.
8864
8865 2012-10-03 Glenn Morris <rgm@gnu.org>
8866
8867 * help-macro.el (three-step-help):
8868 Revert 2012-09-29 change. (Bug#12567)
8869
8870 2012-10-03 Martin Rudalics <rudalics@gmx.at>
8871
8872 * menu-bar.el (kill-this-buffer): Don't do anything when
8873 `menu-frame' is not alive or visible (Bug#8184).
8874
8875 * emacs-lisp/debug.el (debug): When quitting the debugger window
8876 restore current buffer (Bug#12502).
8877
8878 2012-10-02 Chong Yidong <cyd@gnu.org>
8879
8880 * progmodes/hideif.el (hif-lookup, hif-defined):
8881 Handle semantic-c-takeover-hideif.
8882
8883 2012-10-02 Paul Eggert <eggert@cs.ucla.edu>
8884
8885 Change sampling interval units from ms to ns.
8886 * profiler.el (profiler-sampling-interval): Change units
8887 from ms to ns, multiplying the default by 1000000 so that
8888 it remains 1 ms.
8889 (profiler-report-cpu-line-format): Give enough room for
8890 the maximum counters on 64-bit hosts.
8891 (profiler-report-render-calltree-1): Call them "CPU samples",
8892 not "Time (ms)", since they are not milliseconds now (and
8893 never really were).
8894
8895 2012-10-02 Sergio Durigan Junior <sergiodj@riseup.net> (tiny change)
8896
8897 * net/eudcb-bbdb.el (eudc-bbdb-format-record-as-result):
8898 Fix querying BBDB for entries without a last name (Bug#11580).
8899
8900 2012-10-02 Chong Yidong <cyd@gnu.org>
8901
8902 * emacs-lisp/eieio.el: Restore Version header.
8903
8904 2012-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
8905
8906 * vc/diff-mode.el (diff--auto-refine-data): New var.
8907 (diff-hunk): Use it to delay refinement.
8908 (diff-mode): Remove overlays when we turn off font-lock.
8909
8910 * textmodes/table.el: Use lexical-binding, dolist, define-minor-mode.
8911 (table-initialize-table-fixed-width-mode)
8912 (table-set-table-fixed-width-mode): Remove functions.
8913 (table-command-list): Move initialization into declaration.
8914 (table--tweak-menu-for-xemacs): Move defun outside mapcar.
8915 (table-with-cache-buffer): Use `declare'.
8916 (table-span-cell): Simplify via CSE.
8917 (table-fixed-width-mode): Use define-minor-mode.
8918 (table-call-interactively, table-funcall, table-apply): Remove.
8919 (table-function): New function, to replace them.
8920
8921 * bookmark.el (bookmark-search-pattern): Remove var.
8922 (bookmark-read-search-input): Remove function.
8923 (bookmark-bmenu-search): Reimplement using a minibuffer.
8924
8925 * faces.el (modeline): Remove obsolete face name.
8926
8927 * vc/add-log.el (add-log-buffer-file-name-function): Demote to defvar
8928 and give a non-nil default value.
8929 (add-change-log-entry): Simplify accordingly.
8930
8931 2012-10-01 Dmitry Gutov <dgutov@yandex.ru>
8932
8933 * vc/vc-git.el (vc-git-log-edit-toggle-signoff): New function.
8934 (vc-git-log-edit-toggle-amend): New function.
8935 (vc-git-log-edit-toggle-signoff): New function.
8936 (vc-git-log-edit-mode): New major mode.
8937 (vc-git-log-edit-mode-map): Keymap for it.
8938 (vc-git-checkin): Handle "Amend" and "Sign-Off" headers.
8939
8940 * vc/log-edit.el (log-edit-font-lock-keywords): Allow hyphens in
8941 header names.
8942 (log-edit-toggle-header): New function.
8943 (log-edit-extract-headers): Accept function values in HEADERS alist.
8944
8945 2012-10-01 David Engster <deng@randomsample.de>
8946
8947 * emacs-lisp/eieio-opt.el (eieio-describe-class): Add filename
8948 from symbol property and change message to be more consistent with
8949 Emacs proper.
8950 (eieio-describe-generic): Add filename for each implementation.
8951 Fix indices for generic and normal methods.
8952 (eieio-method-def, eieio-class-def): New buttons.
8953 (eieio-help-find-method-definition)
8954 (eieio-help-find-class-definition): New functions.
8955 (eieio-help-mode-augmentation-maybee): Add buttons to filenames of
8956 class, constructor and method definitions.
8957
8958 * emacs-lisp/eieio.el (eieiomt-add, eieio-defclass): Save file
8959 information in symbol property.
8960 (scoped-class): Remove.
8961 (eieio-slot-name-index, call-next-method): Check if it is bound.
8962
8963 2012-10-01 Leo P. White <lpw25@cam.ac.uk>
8964
8965 * emacs-lisp/eieio-custom.el (eieio-custom-mode-map): New option.
8966 (eieio-custom-mode): New major mode.
8967 (eieio-customize-object): Use it.
8968
8969 2012-10-01 Eric Ludlam <zappo@gnu.org>
8970
8971 * emacs-lisp/eieio-base.el (eieio-persistent-read): New input args
8972 specifying the expected class, and whether subclassing is allowed.
8973 (eieio-persistent-convert-list-to-object):
8974 (eieio-persistent-validate/fix-slot-value)
8975 (eieio-persistent-slot-type-is-class-p): New functions.
8976 (eieio-named::slot-missing): Doc fix.
8977
8978 * emacs-lisp/eieio-datadebug.el (data-debug/eieio-insert-slots):
8979 Stop using unused publd variable.
8980
8981 * emacs-lisp/eieio-speedbar.el (eieio-speedbar-handle-click):
8982 (eieio-speedbar-description, eieio-speedbar-derive-line-path)
8983 (eieio-speedbar-object-buttonname, eieio-speedbar-make-tag-line)
8984 (eieio-speedbar-handle-click): Do not specify a class for the
8985 method. Fixes method invocation order problems with EDE.
8986
8987 2012-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
8988
8989 * emacs-lisp/bytecomp.el (byte-compiler-abbreviate-file): New function.
8990 (byte-compile-warning-prefix, byte-compile-file): Use it (bug#12508).
8991
8992 2012-10-01 Karl Fogel <kfogel@red-bean.com>
8993
8994 * bookmark.el (bookmark-version-control): Give tags in the
8995 :type choices (Bug#12309), and improve doc string.
8996 (bookmark-write-file): Bind `print-circle' to `t' to allow
8997 circular custom bookmark types. (Bug#12503)
8998
8999 2012-10-01 Paul Eggert <eggert@cs.ucla.edu>
9000
9001 Revert the FOLLOW-SYMLINKS change for file-attributes.
9002 * files.el (remote-file-name-inhibit-cache, after-find-file):
9003 * time.el (display-time-file-nonempty-p): Undo last change.
9004
9005 * profiler.el (profiler-sampling-interval): Change default back to 1.
9006 See Stefan Monnier in
9007 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00863.html>.
9008
9009 2012-10-01 Fabián Ezequiel Gallina <fgallina@cuca>
9010
9011 Shell output catching a la gud-gdb.
9012 * progmodes/python.el (python-shell-fetch-lines-in-progress)
9013 (python-shell-fetch-lines-string, python-shell-fetched-lines):
9014 New Vars.
9015 (python-shell-fetch-lines-filter): New function.
9016 (python-shell-send-string-no-output): Use them.
9017
9018 2012-09-30 Tomohiro Matsuyama <tomo@cx4a.org>
9019
9020 * profiler.el (profiler-sampling-interval): Rename from
9021 profiler-sample-interval.
9022 (profiler-sampling-interval): Default to 10.
9023 (profiler-find-profile): New command (was profiler-find-log).
9024 (profiler-find-profile-other-window): New command.
9025 (profiler-find-profile-other-frame): New command.
9026 (profiler-profile): Introduce API-level data structure.
9027
9028 2012-09-30 Paul Eggert <eggert@cs.ucla.edu>
9029
9030 file-attributes has a new optional arg FOLLOW-SYMLINKS.
9031 * files.el (remote-file-name-inhibit-cache):
9032 * time.el (display-time-file-nonempty-p): Use it.
9033 * files.el (after-find-file): Don't chase links before calling
9034 file-exists-p, as file-exists-p already does the right thing.
9035
9036 2012-09-30 Ralf Angeli <angeli@caeruleus.net>
9037
9038 Merge from standalone RefTeX repository.
9039
9040 The following ChangeLog entries are shortened versions of the
9041 original ones with file paths adapted. A not so strongly edited
9042 version of the original ChangeLog can be found in the commit log.
9043
9044 * textmodes/reftex-auc.el: Move `provide' call to bottom of file.
9045 (reftex-arg-cite): Use `reftex-cite-key-separator'.
9046 Correctly handle new value type returned by `reftex-citation'.
9047
9048 * textmodes/reftex-cite.el (reftex-create-bibtex-file): Make sure
9049 that entries with whitespace at various places are found.
9050 Doc fix. Include entries that are cross-referenced from cited entries.
9051 Include @String definitions in the resulting bib file. Add header
9052 and footer defined in `reftex-create-bibtex-header' and
9053 `reftex-create-bibtex-footer'.
9054 (reftex-do-citation): Make it possible again to insert
9055 non-existent entries. Save match data when asking for optional
9056 arguments. Return all keys, not just the first one.
9057 (reftex-all-used-citation-keys): Fix regexp to correctly extract
9058 all citations in the same line.
9059 (reftex-parse-bibtex-entry): Accept additional optional argument
9060 `raw' and keep quotes or braces if it is non-nil. Match fields
9061 containing hyphens besides word constituents.
9062 (reftex-get-string-refs): New function.
9063 (reftex-extract-bib-entries): Check if BibTeX file changed on disk
9064 and ask if it should be reread in case it did.
9065 (reftex-pop-to-bibtex-entry)
9066 (reftex-extract-bib-entries-from-thebibliography): Match \bibitem
9067 entries with spaces or tabs in front of arguments.
9068 (reftex-pop-to-bibtex-entry, reftex-extract-bib-entries)
9069 (reftex-parse-bibtex-entry, reftex-create-bibtex-file):
9070 Match entries containing numbers and symbol constituents.
9071 (reftex-do-citation, reftex-figure-out-cite-format):
9072 Use `reftex-cite-key-separator'.
9073
9074 * textmodes/reftex-dcr.el: Move provide statement to end of file.
9075 (reftex-mouse-view-crossref): Explain why point is set.
9076
9077 * textmodes/reftex-global.el: Whitespace changes.
9078
9079 * textmodes/reftex-index.el: Move provide statement to end of
9080 file.
9081 (reftex-index-selection-or-word): Use `reftex-region-active-p'.
9082 (reftex-index-visit-phrases-buffer): Set marker when visiting
9083 buffer. This allows for returning from the phrases file to the
9084 file one was just editing instead of the file where the last
9085 phrases was added from.
9086 (reftex-index-phrases-syntax-table): New variable. Give ?\"
9087 punctuation syntax as it usually is not used as string quote in
9088 TeX-related modes and may occur unmatched. The change also
9089 prevents fontification of quoted content.
9090 (reftex-index-phrases-mode): Use it.
9091
9092 * textmodes/reftex-parse.el (reftex-parse-from-file):
9093 Move backward one char if a `\' was matched after a section macro.
9094 (reftex-parse-from-file): Use beginning of match instead of end as
9095 bound.
9096
9097 * textmodes/reftex-ref.el: Adapt creation of
9098 `reftex-<package>-<macro>' functions to new structure of
9099 `reftex-ref-style-alist'.
9100 (reftex-reference): Use `reftex-ref-style-list' function.
9101 Adapt to new structure of `reftex-ref-style-alist'. Prompt for a
9102 reference macro if `reftex-ref-macro-prompt' is non-nil.
9103 (reftex-reference): Pass refstyle to `reftex-format-special'.
9104 Determine reference macro by looking at
9105 `reftex-ref-style-default-list' and `reftex-ref-style-alist'.
9106 Use only one special format function.
9107 (reftex-varioref-vref, reftex-fancyref-fref)
9108 (reftex-fancyref-Fref): Remove definitions. The functions are now
9109 generated from `reftex-ref-style-alist'.
9110 (reftex-format-vref, reftex-format-Fref, reftex-format-fref):
9111 Remove.
9112 (reftex-format-special): New function.
9113
9114 * textmodes/reftex-sel.el
9115 (reftex-select-cycle-ref-style-internal): Adapt to new structure
9116 of `reftex-ref-style-alist'. Remove code for testing macro type.
9117 (reftex-select-toggle-varioref)
9118 (reftex-select-toggle-fancyref): Remove.
9119 (reftex-select-cycle-ref-style-internal)
9120 (reftex-select-cycle-ref-style-forward)
9121 (reftex-select-cycle-ref-style-backward): New functions.
9122 (reftex-select-label-map): Use `v' and `V' for general cycling
9123 through reference styles. Add `p' for switching between number
9124 and page reference types.
9125
9126 * textmodes/reftex-toc.el (reftex-re-enlarge):
9127 Call `enlarge-window' only if there is something to do because in Emacs
9128 the horizontal version throws an error even if the parameter is 0.
9129
9130 * textmodes/reftex-vars.el (reftex-label-alist): Doc fix.
9131 (reftex-plug-into-AUCTeX): Doc fix.
9132 (reftex-vref-is-default, reftex-fref-is-default): Adapt doc
9133 string. Adapt to new name.
9134 (reftex-ref-style-alist): Change structure so that it is not
9135 possible to use multiple different package names within a style.
9136 Remove the symbols for symbols for macro type distinction.
9137 Add characters for macro selection.
9138 (reftex-ref-macro-prompt, reftex-create-bibtex-header)
9139 (reftex-create-bibtex-footer): New variables.
9140 (reftex-format-ref-function): Mention third argument of special
9141 format function.
9142 (reftex-ref-style-alist, reftex-ref-style-default-list):
9143 New variables.
9144 (reftex-vref-is-default, reftex-fref-is-default): Adapt doc string
9145 to new implementation. Mark as obsolete. Add compatibility code
9146 for honoring the variable values in case they are set.
9147 (reftex-cite-format-builtin, reftex-bibliography-commands):
9148 Add support for ConTeXt.
9149 (reftex-format-ref-function, reftex-format-cite-function):
9150 Fix custom type.
9151 (reftex-cite-key-separator): New variable.
9152
9153 * textmodes/reftex.el (reftex-syntax-table-for-bib)
9154 (reftex-mode): Do not derive `reftex-syntax-table-for-bib' from
9155 `reftex-syntax-table' because parens have to retain their paren
9156 syntax in order for parsing of BibTeX entries like @book(...) to
9157 work.
9158 (reftex-in-comment): Do not error out if `comment-start-skip' is
9159 not set. Deal correctly with escaped comment characters.
9160 (reftex-tie-multifile-symbols): Add doc string.
9161 Initialize `reftex-ref-style-list'.
9162 (reftex-untie-multifile-symbols): Add doc string.
9163 (reftex-add-index-macros): Doc fix.
9164 (reftex-ref-style-activate, reftex-ref-style-toggle)
9165 (reftex-ref-style-list): New functions.
9166 (reftex-mode-menu): Use them. Adapt to new structure of
9167 `reftex-ref-style-alist'.
9168 (reftex-select-with-char): Kill the RefTeX Select buffer when
9169 done.
9170 (reftex-remove-if): New function.
9171 (reftex-erase-all-selection-and-index-buffers)
9172 (reftex-mode-menu): Reference styles are now computed from
9173 `reftex-ref-style-alist'. Fix typo.
9174 (reftex-report-bug): New function.
9175 (reftex-uniquify, reftex-uniquify-by-car): Replace O(n^2)
9176 algorithms with O(n log n). Introduce optional argument SORT (not
9177 yet used).
9178
9179 2012-09-30 Fabián Ezequiel Gallina <fgallina@cuca>
9180
9181 Enhancements for triple-quote string syntax.
9182 * progmodes/python.el (python-syntax-propertize-function):
9183 Match both quote cases in one regexp.
9184 (python-syntax-stringify): Handle matches properly.
9185
9186 2012-09-30 Juri Linkov <juri@jurta.org>
9187
9188 * arc-mode.el (archive-summarize): Let-bind `buffer-file-truename'
9189 to nil around the call to `insert' to prevent
9190 directory time modification by lock_file. (Bug#2295)
9191 * tar-mode.el (tar-summarize-buffer): Idem.
9192
9193 2012-09-30 Juri Linkov <juri@jurta.org>
9194
9195 * facemenu.el (list-colors-sort): Add option "Luminance".
9196 (list-colors-sort-key): Implement it.
9197
9198 * vc/diff-mode.el (diff-refine-removed):
9199 * vc/ediff-init.el (ediff-fine-diff-A):
9200 * vc/smerge-mode.el (smerge-refined-removed):
9201 Change background color "#ffaaaa" to "#ffbbbb". (Bug#10181)
9202
9203 2012-09-30 Jan Djärv <jan.h.d@swipnet.se>
9204
9205 * term/ns-win.el (x-file-dialog): New function.
9206
9207 2012-09-30 Juanma Barranquero <lekktu@gmail.com>
9208
9209 * ido.el (ido-max-directory-size): Default to nil; the current
9210 default is small for POSIX systems, and impractical on Windows 7
9211 now that lstat returns directory sizes for NTFS.
9212
9213 2012-09-30 Martin Rudalics <rudalics@gmx.at>
9214
9215 In buffer display functions handle window-height/window-width
9216 alist entries. Suggested by Juri Linkov as fix for Bug#1806.
9217 * window.el (window--display-buffer): New argument ALIST.
9218 Obey window-height and window-width alist entries.
9219 (window--try-to-split-window): New argument ALIST.
9220 Bind window-combination-limit to t when the window's size shall be
9221 changed and window-combination-limit equals `window-size'.
9222 (display-buffer-in-atom-window)
9223 (display-buffer-in-major-side-window)
9224 (display-buffer-in-side-window, display-buffer-same-window)
9225 (display-buffer-reuse-window, display-buffer-pop-up-frame)
9226 (display-buffer-pop-up-window, display-buffer-below-selected)
9227 (display-buffer-at-bottom, display-buffer-in-previous-window)
9228 (display-buffer-use-some-window): Adjust all callers of
9229 window--display-buffer and window--try-to-split-window.
9230 (fit-frame-to-buffer): New option.
9231 (fit-window-to-buffer): Can resize frames if fit-frame-to-buffer
9232 is non-nil.
9233 (display-buffer-in-major-side-window): Evaluate window-height /
9234 window-width alist entries.
9235
9236 * help.el (temp-buffer-resize-frames)
9237 (temp-buffer-resize-regexps): Remove options.
9238 (temp-buffer-resize-mode): Adjust doc-string.
9239 (resize-temp-buffer-window): Don't consult
9240 temp-buffer-resize-regexps. Use fit-frame-to-buffer instead of
9241 temp-buffer-resize-frames.
9242
9243 * dired.el (dired-mark-pop-up):
9244 Call display-buffer-below-selected with a fit-window-to-buffer alist
9245 entry.
9246
9247 2012-09-30 Chong Yidong <cyd@gnu.org>
9248
9249 * server.el (server-host): Document the security implications.
9250 (server-auth-key): Doc fix.
9251
9252 * startup.el (initial-buffer-choice): Doc fix.
9253
9254 * minibuffer.el (minibuffer-local-filename-syntax): Doc fix.
9255
9256 * simple.el (delete-trailing-whitespace): Avoid an unnecessary
9257 restriction change.
9258
9259 * bindings.el (goto-map): Bind M-g TAB to move-to-column.
9260
9261 * help-fns.el (help-fns--obsolete): Fix last change.
9262
9263 2012-09-30 Stefan Monnier <monnier@iro.umontreal.ca>
9264
9265 * winner.el (winner-mode-map): Obey winner-dont-bind-my-keys here.
9266 (minor-mode-map-alist): Remove redundant code.
9267
9268 * vc/pcvs.el (cvs-cleanup-collection): Keep entries that are currently
9269 visited in a buffer.
9270 (cvs-insert-visited-file): New function.
9271 (find-file-hook): Use it.
9272
9273 * vc/pcvs-info.el (cvs-fileinfo-pp): Don't use non-existent faces.
9274
9275 * vc/log-edit.el (log-edit-font-lock-keywords): Ignore case to
9276 chose face.
9277 (log-edit-empty-buffer-p): Don't require a space after a header.
9278
9279 * vc/ediff-util.el (ediff-diff-at-point): Don't assume point-min==1.
9280
9281 * tutorial.el (help-with-tutorial): Use minibuffer-with-setup-hook.
9282
9283 * textmodes/text-mode.el (paragraph-indent-minor-mode): Make it
9284 a proper minor-mode.
9285
9286 * textmodes/tex-mode.el (tex-mode-map): Don't bind paren keys.
9287
9288 2012-09-29 Glenn Morris <rgm@gnu.org>
9289
9290 * winner.el (winner-mode): Remove variable (let define-minor-mode
9291 handle it).
9292 (winner-dont-bind-my-keys, winner-boring-buffers, winner-mode-hook):
9293 Doc fixes.
9294 (winner-mode-leave-hook): Rename to winner-mode-off-hook.
9295 (winner-mode): Use define-minor-mode.
9296
9297 * vc/vc-sccs.el (vc-sccs-registered): Use the progn trick to get
9298 the full definition in loaddefs, rather than duplicating it.
9299
9300 * help-macro.el (three-step-help): No need to autoload defcustom.
9301
9302 * progmodes/inf-lisp.el (inferior-lisp-filter-regexp)
9303 (inferior-lisp-program, inferior-lisp-load-command)
9304 (inferior-lisp-prompt, inferior-lisp-mode-hook):
9305 No need to autoload defcustoms.
9306
9307 * hippie-exp.el (hippie-expand-try-functions-list)
9308 (hippie-expand-verbose, hippie-expand-dabbrev-skip-space)
9309 (hippie-expand-dabbrev-as-symbol, hippie-expand-no-restriction)
9310 (hippie-expand-max-buffers, hippie-expand-ignore-buffers)
9311 (hippie-expand-only-buffers): No need to autoload defcustoms.
9312 * progmodes/vhdl-mode.el (vhdl-line-expand):
9313 Explicitly load hippie-exp, so it does not get autoloaded
9314 while hippie-expand-try-functions-list is let-bound.
9315
9316 2012-09-28 Glenn Morris <rgm@gnu.org>
9317
9318 * emacs-lisp/cl.el (flet): Fix case of obsolescence message.
9319
9320 * emacs-lisp/bytecomp.el (byte-compile-cl-file-p):
9321 Only "cl.el" counts as cl these days.
9322
9323 2012-09-28 Juri Linkov <juri@jurta.org>
9324
9325 Display archive errors in the echo area instead of inserting
9326 to the file buffer.
9327
9328 * arc-mode.el (archive-extract-by-stdout): Change arg STDERR-FILE
9329 to STDERR-TEST that can be a regexp matching a successful output.
9330 Create a temporary file and redirect stderr to it. Search for
9331 STDERR-TEST in the stderr output and display it in the echo area
9332 if no match is found.
9333 (archive-extract-by-file): New function like
9334 `archive-extract-by-stdout' but extracting archives to files
9335 and looking for successful matches in stdout. Function body is
9336 mostly copied from `archive-rar-extract'.
9337 (archive-rar-extract): Use `archive-extract-by-file'.
9338 (archive-7z-extract): Use `archive-extract-by-stdout'. (Bug#10347)
9339
9340 2012-09-28 Leo Liu <sdl.web@gmail.com>
9341
9342 * pcomplete.el (pcomplete-show-completions):
9343 Use minibuffer-message to make pcomplete usable in minibuffer.
9344
9345 * ido.el (ido-set-matches-1): Fix 2012-09-11 change.
9346
9347 2012-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
9348
9349 * type-break.el: Use lexical-binding.
9350 (type-break-mode): Use define-minor-mode.
9351
9352 * emacs-lisp/pcase.el (pcase--mark-used): New.
9353 (pcase--u1): Use it (bug#12512).
9354
9355 * custom.el (load-theme): Set buffer-file-name so the load is recorded
9356 in load-history with the right file name.
9357
9358 2012-09-28 Tassilo Horn <tsdh@gnu.org>
9359
9360 * doc-view.el (doc-view-current-cache-doc-pdf): New function.
9361 (doc-view-doc->txt, doc-view-convert-current-doc): Use it.
9362 (doc-view-get-bounding-box): Make bounding box slicing work for
9363 ODF and DVI documents.
9364
9365 2012-09-28 Glenn Morris <rgm@gnu.org>
9366
9367 * type-break.el (type-break-mode, type-break-interval)
9368 (type-break-good-rest-interval, type-break-keystroke-threshold):
9369 No need to autoload.
9370 (type-break-good-rest-interval, type-break-keystroke-threshold):
9371 Add :set-after.
9372
9373 2012-09-28 Chong Yidong <cyd@gnu.org>
9374
9375 * progmodes/verilog-mode.el (verilog-auto-inst-interfaced-ports):
9376 Add :version tag.
9377
9378 2012-09-27 Stefan Monnier <monnier@iro.umontreal.ca>
9379
9380 * json.el (json-encode-char): Codes 127-160 aren't "ASCII printable".
9381
9382 2012-09-27 Glenn Morris <rgm@gnu.org>
9383
9384 * faces.el (x-display-name): Declare (for without-x builds).
9385
9386 * linum.el (linum-format): Don't autoload it. Improve :type.
9387
9388 * progmodes/tcl.el: Don't require outline when compiling.
9389 (outline-regexp, outline-level): Declare.
9390 * textmodes/sgml-mode.el: Don't require outline when compiling.
9391 (outline-regexp, outline-heading-end-regexp, outline-level): Declare.
9392
9393 * term.el (term-ansi-reset):
9394 Try setting term-ansi-face-already-done to nil. (Bug#11785)
9395
9396 * vc/vc.el (vc-next-action): Only gripe about committing read-only
9397 files for RCS and SCCS. (Bug#9781)
9398
9399 2012-09-27 Chong Yidong <cyd@gnu.org>
9400
9401 * progmodes/verilog-mode.el (verilog-mode-release-emacs): Fix last
9402 change; value should be t.
9403
9404 2012-09-27 Stefan Monnier <monnier@iro.umontreal.ca>
9405
9406 * image-mode.el: Use lexical-binding.
9407 (image-mode-winprops): Use t to stand for the window of
9408 a buffer that's not displayed.
9409 * doc-view.el (doc-view-new-window-function): Handle the new
9410 t in winprops.
9411 (doc-view-enlarge): Make it a real nop if the size is not changed.
9412 (doc-view-display): Handle the case where the buffer is not (yet?)
9413 displayed in any window.
9414 (doc-view-saved-settings): New var.
9415 (doc-view-mode): Use it.
9416 (doc-view-fallback-mode): Set it.
9417
9418 * minibuf-eldef.el: Make it possible to replace (default ...) with [...].
9419 Set lexical-binding.
9420 (minibuffer-eldef-shorten-default): New var.
9421 (minibuffer-default-in-prompt-regexps): Use it for new default.
9422 (minibuf-eldef-setup-minibuffer): Add replacement functionality.
9423
9424 2012-09-26 Juanma Barranquero <lekktu@gmail.com>
9425
9426 * international/uni-bidi.el:
9427 * international/uni-category.el:
9428 * international/uni-name.el:
9429 * international/uni-numeric.el: Regenerate.
9430
9431 2012-09-26 Tomohiro Matsuyama <tomo@cx4a.org>
9432 Stefan Monnier <monnier@iro.umontreal.ca>
9433
9434 * profiler.el: New file.
9435
9436 2012-09-26 Stefan Monnier <monnier@iro.umontreal.ca>
9437
9438 * emacs-lisp/testcover.el (testcover-after): Add gv-expander.
9439 (testcover-reinstrument): Simplify with CSE.
9440
9441 2012-09-26 Juanma Barranquero <lekktu@gmail.com>
9442
9443 * window.el (temp-buffer-window-setup): Fix typo in docstring.
9444
9445 2012-09-25 Wilson Snyder <wsnyder@wsnyder.org>
9446
9447 * verilog-mode.el (verilog-auto-ascii-enum, verilog-auto-inout)
9448 (verilog-auto-input, verilog-auto-insert-lisp)
9449 (verilog-auto-output, verilog-auto-output-every, verilog-auto-reg)
9450 (verilog-auto-reg-input, verilog-auto-tieoff, verilog-auto-undef)
9451 (verilog-auto-unused, verilog-auto-wire)
9452 (verilog-forward-or-insert-line): Fix AUTOs with no trailing
9453 newline. Reported by Andrew Jones.
9454 (verilog-auto-inst) Support expanding $clog2 in AUTOINST.
9455 Reported by Brad Dobbie.
9456 (verilog-batch-delete-trailing-whitespace):
9457 Create verilog-batch-delete-trailing-whitespace.
9458 Reported by Brad Dobbie.
9459 (verilog-auto-inout-param): Support AUTOINOUTPARAM for copying
9460 parameters from another module. Reported by Dan Katz.
9461 (verilog-auto, verilog-auto-assign-modport)
9462 (verilog-auto-inout-modport): Add AUTOASSIGNMODPORT and
9463 AUTOINOUTMODPORT for UVM interface module shell generation.
9464 Reported by Brad Dobbie.
9465 (verilog-auto-inst-interfaced-ports): Make default nil, as more
9466 standard behavior.
9467 (verilog-auto): Fix AUTO parameters with parenthesis arguments.
9468 Reported by Matt Martin.
9469
9470 2012-09-25 Martin Rudalics <rudalics@gmx.at>
9471
9472 * window.el (window--resize-child-windows): When resizing child
9473 windows proportionally, process them in reverse order to
9474 preserve the "when splitting a window the new one gets the odd
9475 line" behavior.
9476 (window--resize-root-window-vertically): When resizing the
9477 minibuffer window try to affect only windows at the bottom of the
9478 frame. (Bug#12419)
9479
9480 2012-09-25 Chong Yidong <cyd@gnu.org>
9481
9482 * subr.el (declare): Doc fix.
9483
9484 * help-fns.el (help-fns--obsolete): Handle macros properly.
9485
9486 2012-09-25 Chong Yidong <cyd@gnu.org>
9487
9488 * bookmark.el (bookmark-jump-noselect): Use a declare form to mark
9489 this function obsolete.
9490
9491 * calendar/cal-x.el (calendar-two-frame-setup)
9492 (calendar-only-one-frame-setup, calendar-one-frame-setup):
9493 * calendar/calendar.el (american-calendar, european-calendar)
9494 (calendar-for-loop):
9495 * comint.el (comint-dynamic-simple-complete)
9496 (comint-dynamic-complete-as-filename, comint-unquote-filename):
9497 * desktop.el (desktop-load-default):
9498 * dired-x.el (dired-omit-here-always)
9499 (dired-hack-local-variables, dired-default-directory):
9500 * emacs-lisp/derived.el (derived-mode-class):
9501 * emacs-lisp/timer.el (timer-set-time-with-usecs):
9502 * emacs-lock.el (toggle-emacs-lock):
9503 * epa.el (epa-display-verify-result):
9504 * epg.el (epg-sign-keys, epg-start-sign-keys)
9505 (epg-passphrase-callback-function):
9506 * eshell/esh-util.el (eshell-for):
9507 * eshell/eshell.el (eshell-remove-from-window-buffer-names)
9508 (eshell-add-to-window-buffer-names):
9509 * files.el (locate-file-completion):
9510 * imenu.el (imenu-example--create-c-index)
9511 (imenu-example--create-lisp-index)
9512 (imenu-example--lisp-extract-index-name)
9513 (imenu-example--name-and-position):
9514 * international/mule-cmds.el (princ-list):
9515 * international/mule-diag.el (decode-codepage-char):
9516 * international/mule-util.el (detect-coding-with-priority):
9517 * iswitchb.el (iswitchb-read-buffer):
9518 * mail/mailalias.el (mail-complete):
9519 * mail/sendmail.el (mail-sent-via):
9520 * mouse.el (mouse-popup-menubar-stuff, mouse-popup-menubar)
9521 (mouse-major-mode-menu):
9522 * password-cache.el (password-read-and-add):
9523 * pcomplete.el (pcomplete-parse-comint-arguments):
9524 * progmodes/sh-script.el (sh-maybe-here-document):
9525 * replace.el (query-replace-regexp-eval):
9526 * savehist.el (savehist-load):
9527 * simple.el (choose-completion-delete-max-match):
9528 * term.el (term-dynamic-simple-complete):
9529 * vc/ediff-init.el (ediff-check-version):
9530 * vc/ediff-wind.el (ediff-choose-window-setup-function-automatically):
9531 * vc/vc.el (vc-diff-switches-list):
9532 * view.el (view-return-to-alist-update): Likewise.
9533
9534 * subr.el (eval-next-after-load, makehash, insert-string)
9535 (assoc-ignore-representation, assoc-ignore-case): Use declare to
9536 mark obsolete.
9537 (mode-line-inverse-video): Variable deleted.
9538
9539 * international/mule-util.el (string-to-sequence): Remove.
9540
9541 * calendar/calendar.el (calendar-version):
9542 * calendar/icalendar.el (icalendar-extract-ical-from-buffer)
9543 (icalendar-convert-diary-to-ical):
9544 * cus-edit.el (custom-mode):
9545 * ansi-color.el (ansi-color-unfontify-region):
9546 * international/latin1-disp.el (latin1-char-displayable-p):
9547 * progmodes/cwarn.el (turn-on-cwarn-mode):
9548 * progmodes/which-func.el (which-func-update-1):
9549 Use define-obsolete-function-alias.
9550
9551 * net/newst-backend.el (newsticker-cache-filename):
9552 * net/newst-treeview.el (newsticker-groups-filename):
9553 Fix incorrect obsolescence declaration.
9554
9555 * allout.el (allout-passphrase-hint-string): Likewise.
9556 (allout-init): Use a declare form to mark obsolete.
9557
9558 * emacs-lisp/byte-run.el (make-obsolete): Doc fix; emphasize that
9559 this applies to functions.
9560
9561 * iswitchb.el (iswitchb-read-buffer): Move code of
9562 iswitchb-define-mode-map here, and delete that obsolete function.
9563
9564 * net/snmp-mode.el (snmp-font-lock-keywords-3): Don't use obsolete
9565 font-lock-reference-face.
9566
9567 2012-09-25 Glenn Morris <rgm@gnu.org>
9568
9569 * buff-menu.el (Buffer-menu-name-width, Buffer-menu-size-width):
9570 Doc fixes.
9571
9572 * eshell/em-term.el (eshell-term-name):
9573 Default to term-term-name. (Bug#12485)
9574
9575 2012-09-24 Fabián Ezequiel Gallina <fgallina@cuca>
9576
9577 * progmodes/python.el (python-shell-send-buffer): Better handling
9578 of "if __name__ == '__main__':" conditionals when sending the buffer.
9579
9580 2012-09-24 Glenn Morris <rgm@gnu.org>
9581
9582 * eshell/esh-cmd.el (eshell-find-alias-function):
9583 Tighten up file-name regexp. (Bug#12499)
9584
9585 2012-09-24 Fabián Ezequiel Gallina <fgallina@cuca>
9586
9587 Enhancements for triple-quote string syntax.
9588 * progmodes/python.el (python-quote-syntax): Remove.
9589 (python-syntax-propertize-function): New value.
9590 (python-syntax-count-quotes, python-syntax-stringify):
9591 New functions.
9592
9593 2012-09-24 Chong Yidong <cyd@gnu.org>
9594
9595 * mail/supercite.el (sc-version): Remove obsolete function.
9596 (sc-describe): Don't mark as obsolete, since it is bound.
9597 (sc-submit-bug-report): Remove.
9598
9599 * vc/log-edit.el (cvs-changelog-full-paragraphs)
9600 (cvs-commit-buffer-require-final-newline): Remove.
9601 (log-edit-require-final-newline)
9602 (log-edit-changelog-full-paragraphs): Default to t.
9603
9604 * vc/pcvs-defs.el (cvs-diff-buffer-name, cvs-diff-ignore-marks)
9605 * vc/vc-hooks.el (vc-ignore-vc-files, vc-master-templates)
9606 * vc/vc.el (vc-checkout-carefully): Likewise.
9607
9608 * vc/emerge.el (emerge-mode): Make it an obsolete alias.
9609 (emerge-version): Remove.
9610
9611 * progmodes/compile.el (compile-internal): Remove.
9612 (compilation-parse-errors-function): Fix typo.
9613
9614 * international/mule.el (set-char-table-default): Remove.
9615 (set-coding-priority, make-coding-system, generic-char-p)
9616 (charset-list, charset-bytes, charset-id): Use declare to mark
9617 functions as obsolete.
9618
9619 * vc/pcvs-defs.el (cvs-buffer-name-alist)
9620 (cvs-invert-ignore-marks): Remove references to obsolete vars.
9621 * vc/vc-hooks.el (vc-default-registered): Don't use
9622 vc-master-templates.
9623
9624 * font-lock.el (font-lock-reference-face):
9625 Use define-obsolete-variable-alias.
9626
9627 * generic-x.el (rul-generic-mode): Use font-lock-constant-face.
9628 * calendar/calendar.el (calendar-font-lock-keywords):
9629 * calendar/diary-lib.el (diary-font-lock-keywords)
9630 (diary-fancy-font-lock-keywords):
9631 * textmodes/reftex-sel.el (reftex-insert-docstruct):
9632 * textmodes/reftex-index.el (reftex-insert-index):
9633 * textmodes/reftex-cite.el (reftex-format-bib-entry):
9634 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
9635 * progmodes/ps-mode.el (ps-mode-font-lock-keywords-1):
9636 * progmodes/prolog.el (prolog-font-lock-keywords):
9637 * progmodes/idlwave.el (idlwave-idl-keywords):
9638 * progmodes/ada-mode.el (ada-font-lock-keywords):
9639 * net/snmp-mode.el (snmp-font-lock-keywords-3): Likewise.
9640
9641 2012-09-24 Glenn Morris <rgm@gnu.org>
9642
9643 * mail/emacsbug.el (report-emacs-bug): Include `lsb_release -d'.
9644
9645 2012-09-23 Fabián Ezequiel Gallina <fgallina@cuca>
9646
9647 * progmodes/python.el (python-indent-line): More consistent cursor
9648 movement behavior.
9649
9650 2012-09-23 Stefan Merten <smerten@oekonux.de>
9651
9652 * textmodes/rst.el: Fix compiler warning.
9653
9654 2012-09-23 Roland Winkler <winkler@gnu.org>
9655
9656 * textmodes/bibtex.el (bibtex-autokey-transcriptions):
9657 Transcribe also LaTeX hyphenation.
9658 (bibtex-reformat): Bug fix. Do not quote twice the elements of
9659 bibtex-reformat-previous-options.
9660
9661 2012-09-23 Roland Winkler <winkler@gnu.org>
9662
9663 * proced.el (proced-renice-command): New variable.
9664 (proced-marked-processes): New function.
9665 (proced-with-processes-buffer): New macro.
9666 (proced-send-signal): Use them.
9667 (proced-renice): New command bound to r.
9668
9669 2012-09-23 Roland Winkler <winkler@gnu.org>
9670
9671 * ibuf-ext.el (ibuffer-switch-to-saved-filter-groups): If list
9672 ibuffer-saved-filter-groups has one element, shortcut the call of
9673 completing-read. (Bug#12331)
9674
9675 2012-09-23 Chong Yidong <cyd@gnu.org>
9676
9677 * bindings.el (mode-line-toggle-read-only):
9678 * bs.el (bs-toggle-readonly):
9679 * buff-menu.el (Buffer-menu-toggle-read-only):
9680 * dired.el (dired-toggle-read-only):
9681 * ibuffer.el (ibuffer-do-toggle-read-only): Use read-only-mode.
9682
9683 2012-09-23 Chong Yidong <cyd@gnu.org>
9684
9685 * image.el (image-type-available-p): Adapt to init-image-library
9686 argument changes.
9687
9688 2012-09-22 Juri Linkov <juri@jurta.org>
9689
9690 * dired.el (dired-mode-map): Add [remap read-only-mode] for
9691 `dired-toggle-read-only'. (Bug#12462)
9692
9693 2012-09-22 Martin Rudalics <rudalics@gmx.at>
9694
9695 * subr.el (temp-output-buffer-show): New function.
9696 (with-output-to-temp-buffer): Call temp-output-buffer-show
9697 instead of internal-temp-output-buffer-show.
9698
9699 2012-09-22 Chong Yidong <cyd@gnu.org>
9700
9701 * files.el (ctl-x-map): Bind C-x C-q to read-only-mode
9702 (Bug#12462).
9703
9704 * repeat.el (repeat): Doc fix (Bug#12348).
9705
9706 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix
9707 (Bug#10909).
9708
9709 * simple.el (shell-command-on-region): Doc fix.
9710 (read-only-mode): Doc fix.
9711
9712 2012-09-22 Eli Zaretskii <eliz@gnu.org>
9713
9714 * emacs-lisp/timer.el (run-with-idle-timer)
9715 (timer-activate-when-idle): Warn against reinvoking an idle timer
9716 from within its own timer action. (Bug#12447)
9717
9718 2012-09-22 Martin Rudalics <rudalics@gmx.at>
9719
9720 * cus-start.el (window-combination-limit): Add new optional
9721 values.
9722 * window.el (temp-buffer-window-show)
9723 (window--try-to-split-window): Handle new values of
9724 window-combination-limit (Bug#1806).
9725 (split-window): Test window-combination-limit for t instead of
9726 non-nil.
9727 (display-buffer-at-bottom): New buffer display action function.
9728 * help.el (temp-buffer-resize-regexps): New option.
9729 (temp-buffer-resize-mode): Rewrite doc-string.
9730 (resize-temp-buffer-window): Obey temp-buffer-resize-regexps.
9731 Don't resize reused window. Suggested by Glenn Morris.
9732
9733 2012-09-22 Stefan Merten <smerten@oekonux.de>
9734
9735 * textmodes/rst.el: Revamp section title faces.
9736 (rst-official-version)
9737 (rst-package-emacs-version-alist): Sync with official version
9738 V1.4.0.
9739 (rst-faces-defaults, rst-set-level-default)
9740 (rst-level-face-max, rst-level-face-base-color)
9741 (rst-level-face-base-light, rst-level-face-format-light)
9742 (rst-level-face-step-light, rst-define-level-faces): Obsolete.
9743 (rst-adornment-faces-alist): Match new setup.
9744 (rst-level-1, rst-level-2, rst-level-3, rst-level-4)
9745 (rst-level-5, rst-level-6): New faces.
9746
9747 2012-09-22 Chong Yidong <cyd@gnu.org>
9748
9749 * simple.el (undo): Handle indirect buffers (Bug#8207).
9750
9751 2012-09-21 Leo Liu <sdl.web@gmail.com>
9752
9753 IDO: Disable match re-ordering for buffer switching.
9754 * ido.el (ido-buffer-disable-smart-matches): New variable.
9755 (ido-set-matches-1): Use it. (Bug#2042)
9756
9757 2012-09-21 Jose Marino <marinoj@nso.edu> (tiny change)
9758
9759 * progmodes/idlw-shell.el (idlwave-shell-complete-filename):
9760 Fix 2011-05-17 change. (Bug#12418)
9761
9762 2012-09-21 Leo Liu <sdl.web@gmail.com>
9763
9764 * subr.el (ignore-errors): Mention with-demoted-errors in doc-string.
9765
9766 2012-09-21 Glenn Morris <rgm@gnu.org>
9767
9768 * emacs-lisp/shadow.el (load-path-shadows-font-lock-keywords):
9769 Be more robust about locating simple.el.
9770
9771 2012-09-21 Glenn Morris <rgm@gnu.org>
9772
9773 * mail/emacsbug.el (report-emacs-bug): Trap load-path-shadows errors.
9774
9775 2012-09-21 Joel Bion <jpbion@westvi.com> (tiny change)
9776
9777 * pcmpl-gnu.el (pcmpl-gnu-tarfile-regexp): Add tar.xz. (Bug#12382)
9778
9779 2012-09-20 Juri Linkov <juri@jurta.org>
9780
9781 * replace.el (query-replace-read-from): Use `read-regexp' instead
9782 of `read-from-minibuffer' when `regexp-flag' is non-nil.
9783 (occur-read-primary-args): Use `read-regexp' instead of
9784 `read-string'.
9785 (multi-occur-in-matching-buffers): Use `read-regexp' instead of
9786 `read-from-minibuffer'.
9787 * isearch.el (isearch-occur): Use `read-regexp' instead of
9788 `read-string'.
9789 * dired.el (dired-read-regexp): Use `read-regexp' instead of
9790 `read-from-minibuffer'.
9791 * progmodes/grep.el (grep-read-regexp): Use `read-regexp' instead
9792 of `read-string'. (Bug#7567)
9793
9794 * replace.el (read-regexp): Rename DEFAULT-VALUE arg to DEFAULTS
9795 and allow accepting a list of strings prepended to a list of
9796 standard default values. Doc fix. (Bug#12321)
9797
9798 * replace.el (read-regexp): Add HISTORY arg. (Bug#7567)
9799
9800 * replace.el (read-regexp): Don't add ": " when PROMPT already
9801 ends with a colon and space. (Bug#12321)
9802
9803 2012-09-20 Tassilo Horn <tsdh@gnu.org>
9804
9805 * doc-view.el (doc-view-display): Better fix for the cl-assertion
9806 error.
9807
9808 2012-09-20 Stefan Merten <smerten@oekonux.de>
9809
9810 * textmodes/rst.el: Integrate support for `imenu' and `which-function'.
9811 Fixes feature request bug#11711.
9812 (rst-mode): Create `imenu-create-index-function'.
9813 (rst-get-stripped-line): Delete after refactoring.
9814 (rst-section-tree, rst-section-tree-rec)
9815 (rst-section-tree-point): Refactor and document properly.
9816 (rst-imenu-find-adornments-for-position)
9817 (rst-imenu-convert-cell, rst-imenu-create-index):
9818 New function.
9819
9820 2012-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
9821
9822 * emacs-lisp/macroexp.el (macroexp--obsolete-warning): New function.
9823 (macroexp--expand-all): Use it.
9824 (macroexp--funcall-and-return): Remove by folding it into its sole
9825 caller (macroexp--warn-and-return).
9826 * emacs-lisp/bytecomp.el (byte-compile-warn-obsolete):
9827 Use macroexp--obsolete-warning.
9828
9829 * calc/calc.el: Fix last change by removing the whole chunk, since it
9830 was only needed back when Calc was not bundled.
9831
9832 2012-09-20 Martin Rudalics <rudalics@gmx.at>
9833
9834 * emacs-lisp/debug.el (debug): Restore assignment to
9835 debugger-old-buffer removed on 2012-09-08.
9836
9837 2012-09-20 Juri Linkov <juri@jurta.org>
9838
9839 * dired-aux.el (dired-diff): Remove (require 'diff) since
9840 `diff-latest-backup-file' is now autoloaded.
9841
9842 2012-09-20 Chong Yidong <cyd@gnu.org>
9843
9844 * vc/diff.el (diff-latest-backup-file): Autoload.
9845
9846 2012-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
9847
9848 * calc/calc.el: Remove redundant autoload shape check.
9849 (sel-mode): Don't defvar.
9850 (calc-get-stack-element): Add `sel-mode' arg instead.
9851 (calc-top, calc-top-list): Pass it this additional argument.
9852 * calc/calc-store.el (calc-store-map):
9853 * calc/calc-map.el (calc-apply, calc-reduce, calc-map)
9854 (calc-map-equation, calc-outer-product, calc-inner-product):
9855 * calc/calc-aent.el (calc-alg-entry): Don't bind sel-mode.
9856
9857 * emacs-lisp/macroexp.el (macroexp--expand-all): Fix last change.
9858
9859 2012-09-19 Juri Linkov <juri@jurta.org>
9860
9861 * dired-aux.el (dired-diff): Add (require 'diff) because
9862 `diff-latest-backup-file' is not autoloaded.
9863 (dired-do-chxxx, dired-do-chmod): Set `no-error-if-not-filep' arg
9864 of `dired-get-filename' to t to not report error when there is
9865 no default file on the current line.
9866
9867 2012-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
9868
9869 * emacs-lisp/macroexp.el (macroexp--funcall-if-compiled): Rename from
9870 macroexp--eval-if-compile.
9871 (macroexp--funcall-and-return, macroexp--warn-and-return): New funs.
9872 (macroexp--expand-all): Use them (bug#12371).
9873
9874 * doc-view.el (doc-view-guess-paper-size)
9875 (doc-view-scale-bounding-box): Fix unbound `caddr'.
9876
9877 2012-09-19 Tassilo Horn <tsdh@gnu.org>
9878
9879 New feature: set optimal slice from BoundingBox information.
9880 * doc-view.el (doc-view-mode-map): Add keybinding.
9881 (doc-view-menu): Add menu entry.
9882 (doc-view-set-slice): Adapt docstring.
9883 (doc-view-get-bounding-box, doc-view-guess-paper-size)
9884 (doc-view-scale-bounding-box)
9885 (doc-view-set-slice-from-bounding-box): New functions.
9886 (doc-view-paper-sizes): New defvar.
9887
9888 2012-09-19 Glenn Morris <rgm@gnu.org>
9889
9890 * emacs-lisp/macroexp.el (byte-compile-warn-obsolete)
9891 (byte-compile-log-warning): Autoload. (Bug#12371)
9892
9893 * calendar/calendar.el (calendar-american-month-header)
9894 (calendar-european-month-header, calendar-iso-month-header)
9895 (calendar-month-header): New options.
9896 (calendar-set-date-style): Set calendar-month-header. Redraw calendar.
9897 (calendar-generate-month): Use calendar-month-header. (Bug#9510)
9898
9899 2012-09-19 Jan Djärv <jan.h.d@swipnet.se>
9900
9901 * startup.el (command-line-ns-option-alist): Add -g and --geometry.
9902
9903 2012-09-18 Juri Linkov <juri@jurta.org>
9904
9905 * dired-aux.el (dired-diff): Restore original functionality of
9906 getting the default value, but keep new feature of using the
9907 latest existing backup file (`diff-latest-backup-file').
9908
9909 2012-09-18 Juri Linkov <juri@jurta.org>
9910
9911 * dired.el (dired-mark): If the region is active in Transient Mark
9912 mode, mark all files in the active region. Doc fix.
9913 (dired-unmark, dired-flag-file-deletion, dired-unmark-backward):
9914 Doc fix. (Bug#10624)
9915
9916 2012-09-18 Juri Linkov <juri@jurta.org>
9917
9918 * dired-aux.el (dired-do-chxxx, dired-do-chmod): Default file
9919 attributes for M-n are pulled from the file at point.
9920 (dired-do-chgrp, dired-do-chown, dired-do-touch): Doc fix.
9921 Suggested by Drew Adams. (Bug#10624)
9922
9923 2012-09-18 Dmitry Gutov <dgutov@yandex.ru>
9924
9925 * progmodes/ruby-mode.el (ruby-brace-to-do-end): Don't add extra
9926 whitespace after "end".
9927 (ruby-do-end-to-brace): Collapse block to one line if it fits
9928 within fill-column.
9929
9930 2012-09-18 Martin Rudalics <rudalics@gmx.at>
9931
9932 * emacs-lisp/debug.el (debugger-bury-or-kill): Fix customization
9933 value.
9934 (debug): Don't remove debugger window when debugger is expected
9935 to be back.
9936
9937 2012-09-18 Chong Yidong <cyd@gnu.org>
9938
9939 * custom.el (defface): Doc fix.
9940
9941 * cus-edit.el (custom-unlispify-remove-prefixes): Add warning.
9942
9943 2012-09-18 Martin Blais <blais@furius.ca> (tiny change)
9944
9945 * progmodes/compile.el (compilation-start): Use compilation-always-kill
9946 to initialize query-on-exit; then test that instead (bug#12288).
9947
9948 2012-09-17 Stefan Merten <smerten@oekonux.de>
9949
9950 * textmodes/rst.el: Add support for `testcover'.
9951 (rst-defcustom-testcover, rst-testcover-add-compose)
9952 (rst-testcover-add-1value): New functions.
9953 (rst-portable-mark-active-p): Replace by `use-region-p'.
9954 (rst-update-section, rst-classify-adornment)
9955 (rst-find-title-line): Mark `1value' forms.
9956 (rst-classify-adornment): Remove superfluous form.
9957 (rst-update-section, rst-get-adornments-around)
9958 (rst-adornment-complete-p, rst-get-next-adornment)
9959 (rst-adjust, rst-promote-region)
9960 (rst-display-adornments-hierarchy, rst-straighten-adornments)
9961 (rst-find-pfx-in-region, rst-section-tree-rec)
9962 (rst-section-tree-point, rst-toc-insert, rst-toc-insert-node)
9963 (rst-toc-node, rst-toc, rst-forward-section)
9964 (rst-iterate-leftmost-paragraphs)
9965 (rst-iterate-leftmost-paragraphs-2, rst-enumerate-region)
9966 (rst-bullet-list-region)
9967 (rst-convert-bullets-to-enumeration, rst-font-lock-keywords)
9968 (rst-compile-find-conf, rst-compile)
9969 (rst-repeat-last-character): Fix style.
9970
9971 2012-09-17 Chong Yidong <cyd@gnu.org>
9972
9973 * comint.el (comint--complete-file-name-data): Don't add a space
9974 if the status is `sole'; that adds a gratuitous space in the
9975 completion-cycling case (Bug#12092).
9976
9977 * pcomplete.el (pcomplete-completions-at-point): Likewise.
9978
9979 2012-09-17 Richard Stallman <rms@gnu.org>
9980
9981 * mail/rmailmm.el (rmail-mime-toggle-raw): Do rmail-mime-insert
9982 only in the mime-shown mode, not in raw mode.
9983 (rmail-mime): Toggle off mime by displaying the message without
9984 mime processing. (Bug#12305)
9985
9986 * mail/rmail.el (rmail-retry-failure):
9987 Turn off mime processing first. (Bug#12037)
9988
9989 * epa-mail.el (epa-mail-encrypt): Fix bug when a name has no key.
9990
9991 2012-09-17 Chong Yidong <cyd@gnu.org>
9992
9993 * shell.el (shell-file-name-chars, shell-file-name-quote-list)
9994 (shell-dynamic-complete-functions): Convert to defcustom.
9995 (shell-prompt-pattern, shell-completion-fignore): Doc fix.
9996
9997 * bookmark.el (bookmark-bmenu-toggle-filenames): Doc fixes.
9998 * comint.el (comint-prompt-read-only):
9999 * custom.el (defcustom):
10000 * hi-lock.el (hi-lock-mode):
10001 * ibuffer.el (ibuffer-formats):
10002 * ielm.el (ielm-prompt-read-only):
10003 * novice.el (disable-command):
10004 * saveplace.el (toggle-save-place):
10005 * speedbar.el (speedbar-supported-extension-expressions):
10006 * startup.el (auto-save-list-file-prefix, init-file-user)
10007 (after-init-hook, inhibit-startup-echo-area-message):
10008 * strokes.el (strokes-help):
10009 * time-stamp.el (time-stamp):
10010 * calendar/calendar.el (calendar, diary-file):
10011 * calendar/diary-lib.el (diary-mail-entries, diary)
10012 (diary-list-entries-hook):
10013 * calendar/holidays.el (holidays, calendar-holidays):
10014 * calendar/lunar.el (lunar-phases):
10015 * calendar/solar.el (sunrise-sunset):
10016 * emulation/edt.el (edt-load-keys):
10017 * emulation/viper.el (viper-mode):
10018 * eshell/em-alias.el (eshell-command-aliases-list):
10019 * eshell/esh-util.el (eshell-convert-numeric-arguments):
10020 * international/ogonek.el (ogonek-information):
10021 * net/tramp-cmds.el (tramp-bug):
10022 * net/quickurl.el (quickurl-reread-hook-postfix):
10023 * play/decipher.el (decipher-font-lock-keywords):
10024 * progmodes/cc-styles.el (c-set-style):
10025 * progmodes/idlw-shell.el (idlwave-shell-prompt-pattern):
10026 * progmodes/inf-lisp.el (inferior-lisp-prompt):
10027 * progmodes/octave-mod.el (octave-mode):
10028 * progmodes/sql.el (sql-mode, sql-interactive-mode, sql-password):
10029 * progmodes/verilog-mode.el (verilog-read-defines):
10030 * textmodes/two-column.el (2C-mode): Likewise.
10031
10032 2012-09-16 Katsumi Yamaoka <yamaoka@jpl.org>
10033
10034 * mail/mailabbrev.el (mail-abbrev-expand-hook): Work for a mail aliasee
10035 that holds many addresses.
10036
10037 2012-09-16 Chong Yidong <cyd@gnu.org>
10038
10039 * align.el (align-areas): Call the indication function with
10040 positions instead of markers for arguments (Bug#12343).
10041
10042 * files.el (parse-colon-path): Use split-string (Bug#12351).
10043
10044 * window.el (special-display-popup-frame): Doc fix (Bug#8853).
10045 (display-buffer-function): Mark as obsolete.
10046
10047 * progmodes/compile.el (compilation-parse-errors): Accept list
10048 values similar to font-lock-keywords (Bug#12136).
10049 Suggested by Oleksandr Manzyuk.
10050 (compilation-error-regexp-alist): Doc fix.
10051
10052 2012-09-15 Glenn Morris <rgm@gnu.org>
10053
10054 * version.el (emacs-bzr-version-bzr): New function.
10055 (emacs-bzr-get-version): Add optional EXTERNAL argument.
10056
10057 * vc/vc-bzr.el (vc-bzr-working-revision): For lightweight local
10058 checkouts, check the parent dirstate matches the branch.
10059 Add "--tree" to "bzr revno" arguments. Don't try to shorten the
10060 empty string.
10061
10062 * version.el (emacs-bzr-version): Doc fix.
10063 (emacs-bzr-version-dirstate): New function.
10064 (emacs-bzr-get-version): For lightweight checkouts, if the parent
10065 is local try and check that it matches the branch. If not, just
10066 use dirstate information. (Bug#12441)
10067
10068 2012-09-14 Juri Linkov <juri@jurta.org>
10069
10070 * dired-aux.el (dired-do-chmod): Use `eq' to detect empty input.
10071 (Bug#12399)
10072
10073 2012-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
10074
10075 * emacs-lisp/advice.el (ad-prognify): Remove, use macroexp-progn.
10076
10077 * emacs-lisp/edebug.el: Miscellaneous cleanup.
10078 Remove obsolete byte-compiler hack that tried to silence some warnings.
10079 (edebug-submit-bug-report): Remove.
10080 (edebug-get-buffer-window, edebug-sit-for, edebug-input-pending-p):
10081 Remove aliases, use the un-prefixed name instead.
10082 (edebug-pop-to-buffer): Consider other frames.
10083 (edebug-original-read):: Make it more obvious that it's always defined.
10084 (edebug--make-form-data-entry, edebug--form-data-name)
10085 (edebug--form-data-begin, edebug--form-data-end): Rename from the
10086 single-dashed name, and implement with cl-defstruct.
10087 (edebug-set-form-data-entry): Use the standard accessors.
10088 (edebug-make-top-form-data-entry): Use push.
10089 (edebug-no-match): Drop useless `funcall'.
10090 (mapcar, mapconcat, mapatoms, apply, funcall): Don't add debug specs
10091 to functions.
10092 (defsubst, dont-compile, eval-when-compile, eval-and-compile)
10093 (delay-mode-hooks, with-temp-file, with-temp-message, ad-dolist)
10094 (with-syntax-table, push, pop, 1value, noreturn, defadvice)
10095 (easy-menu-define, with-custom-print): Remove redundant specs.
10096 (edebug-outside-overriding-local-map)
10097 (edebug-outside-overriding-terminal-local-map): Remove, unused.
10098 (edebug--display): Bind unread-command-events directly to nil rather
10099 than binding it to unread-command-events and later setting it to nil.
10100 (edebug--display): Kill edebug-eval-buffer here...
10101 (edebug--recursive-edit): ...rather than here.
10102 Bind standard-output and standard-input.
10103 (edebug-eval): Check cl-macroexpand-all is fboundp.
10104 (edebug-temp-display-freq-count): Fix last change.
10105
10106 * emacs-lisp/easymenu.el (easy-menu-define): Add `debug' spec.
10107 * subr.el (noreturn, 1value): Add `debug' spec.
10108 * emacs-lisp/advice.el: Require cl-lib.
10109 (ad-copy-tree): Remove, use copy-tree instead.
10110 (ad-dolist): Remove use dolist or cl-dolist instead.
10111 (ad-do-return): Remove, use cl-return instead.
10112 (defadvice): Add `debug' spec.
10113
10114 2012-09-13 Juri Linkov <juri@jurta.org>
10115
10116 * dired-aux.el (dired-do-chxxx): Use `eq' to detect empty input.
10117 (Bug#12399)
10118
10119 2012-09-13 Glenn Morris <rgm@gnu.org>
10120
10121 * calc/calc.el (math-compose-expr):
10122 * calc/calc-ext.el (math-compose-expr):
10123 * progmodes/cc-defs.el (cl-macroexpand-all):
10124 * progmodes/cc-langs.el (delete-duplicates, mapcan)
10125 (cl-macroexpand-all): Update declarations.
10126
10127 * vc/vc.el: No need to require ediff.
10128 (ediff-load-version-control): Declare.
10129 (ediff-vc-internal): Fix declaration.
10130 (vc-version-ediff): Require ediff.
10131
10132 2012-09-13 Paul Eggert <eggert@cs.ucla.edu>
10133
10134 Use a more backwards-compatible timer format (Bug#12430).
10135 * emacs-lisp/timer.el (timer): PSECS is now at the end, rather than
10136 being right after USECS, as that better supports old code that
10137 inadvisedly looked directly at the timer vector.
10138
10139 2012-09-13 Kenichi Handa <handa@gnu.org>
10140
10141 * language/chinese.el ("Chinese-GB", "Chinese-BIG5")
10142 ("Chinese-CNS", "Chinese-EUC-TW"): Add chinese-gbk to
10143 `coding-priority' property of these language environment.
10144
10145 2012-09-13 Paul Eggert <eggert@cs.ucla.edu>
10146
10147 Fix glitches caused by addition of psec to timers (Bug#12430).
10148 * image.el (image-animate-timer):
10149 * time.el (display-time-world-timer):
10150 Use timer--function and timer--args rather than raw access to
10151 timer vector.
10152
10153 2012-09-13 Glenn Morris <rgm@gnu.org>
10154
10155 * emacs-lisp/bytecomp.el (byte-compile-warning-prefix):
10156 If not compiling a file, try using load-file-name.
10157
10158 2012-09-13 Stefan Monnier <monnier@iro.umontreal.ca>
10159
10160 * emacs-lisp/edebug.el (edebug-outside-unread-command-events):
10161 Fix last change.
10162 (edebug-update-eval-list): Use `push'.
10163
10164 * emacs-lisp/edebug.el: Use lexical-binding.
10165 Remove the "edebug-" prefix from non-dynamically-scoped variables.
10166 Mark unused args with underscore.
10167 (edebug-save-restriction, edebug-outside-excursion): Use `declare'.
10168 (edebug-form-data): Use defvar-local.
10169 (edebug-make-before-and-after-form, edebug-make-after-form):
10170 Use backquote.
10171 (edebug-args, edebug-value, edebug-after-index, edebug-arg-mode):
10172 Not dynamically scoped any more.
10173 (edebug--enter-trace): Add arguments `function' and `args'.
10174 Rename from edebug-enter-trace.
10175 (edebug-enter): Call it accordingly. Bind edebug-function explicitly.
10176 (edebug--update-coverage): Add `after-index' and `value' args.
10177 Rename from edebug-update-coverage.
10178 (edebug-slow-after): Call it accordingly.
10179 (edebug--recursive-edit): Add arg `arg-mode'. Rename from
10180 edebug-recursive-edit.
10181 (edebug--display): Call it accordingly. Add args `value',
10182 `offset-index', and `arg-mode'. Rename from edebug-display.
10183 (edebug-debugger, edebug): Call it accordingly.
10184 (edebug-eval-display-list): Use dolist.
10185
10186 2012-09-12 Juri Linkov <juri@jurta.org>
10187
10188 * info.el (Info-search): Don't check for isearch-mode and
10189 isearch-regexp before let-binding search-spaces-regexp to
10190 Info-search-whitespace-regexp.
10191 (Info-isearch-search): Let-bind Info-search-whitespace-regexp to
10192 search-whitespace-regexp if isearch-lax-whitespace or
10193 isearch-regexp-lax-whitespace is non-nil.
10194 (Info-mode): Don't set local variable search-whitespace-regexp.
10195 http://lists.gnu.org/archive/html/emacs-devel/2012-08/msg00811.html
10196
10197 2012-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
10198
10199 * emacs-lisp/debug.el (debugger-outer-unread-command-char, debug)
10200 (debugger-env-macro): Remove support for unread-command-char.
10201
10202 * subr.el (set-temporary-overlay-map): Minimize slightly the impact of
10203 the temporary map re-appearing on emulation-mode-map-alists.
10204
10205 * emacs-lisp/edebug.el (def-edebug-form-spec): Remove, it's been broken
10206 since 22.1.
10207
10208 * ehelp.el (with-electric-help): Accept functions in
10209 electric-help-form-to-execute.
10210 (electric-help-execute-extended, electric-help-ctrl-x-prefix): Use it.
10211 And replace unread-command-char -> unread-command-events.
10212
10213 2012-09-12 Michael Albinus <michael.albinus@gmx.de>
10214
10215 Sync with Tramp 2.2.6.
10216
10217 * net/tramp.el (tramp-accept-process-output): Don't use
10218 JUST-THIS-ONE in the XEmacs case.
10219
10220 * net/trampver.el: Update release number.
10221
10222 2012-09-12 Martin Rudalics <rudalics@gmx.at>
10223
10224 * emacs-lisp/debug.el (debugger-previous-window-height):
10225 New variable.
10226 (debug): When debugger-jumping-flag is non-nil try to restore
10227 height of debugger window. (Bug#8789)
10228
10229 2012-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
10230
10231 * emacs-lisp/edebug.el (edebug-enter): Don't mess with
10232 overriding-local-map and pre/post-command-hook here.
10233 (edebug-recursive-edit): Do it here instead (bug#12345).
10234 (edebug-outside-unread-command-char): Remove all uses of
10235 unread-command-char.
10236
10237 * emacs-lisp/debug.el (debug): Don't bind debug-on-error since
10238 inhibit-debugger is bound instead.
10239
10240 2012-09-11 Bastien Guerry <bzg@gnu.org>
10241
10242 * subr.el (set-temporary-overlay-map): Add a docstring.
10243 (Bug#12346)
10244
10245 2012-09-11 Bastien Guerry <bzg@gnu.org>
10246
10247 * minibuffer.el (completion-table-subvert): Fix docstring.
10248 (Bug#12347)
10249
10250 2012-09-11 Bastien Guerry <bzg@gnu.org>
10251
10252 * help-fns.el (describe-variable): Fix typo. (Bug#12346)
10253
10254 2012-09-10 Michael R. Mauger <mmaug@yahoo.com>
10255
10256 * progmodes/sql.el: Version 3.1
10257 (sql-db2-escape-newlines): New variable.
10258 (sql-escape-newlines-filter): Use it.
10259
10260 2012-09-10 Juanma Barranquero <lekktu@gmail.com>
10261
10262 * custom.el (custom-theme-load-confirm): Remove unneeded assignment.
10263
10264 2012-09-10 Dan Nicolaescu <dann@gnu.org>
10265
10266 * vc/diff-mode.el (diff-mode-menu):
10267 Bind diff-remove-trailing-whitespace.
10268
10269 2012-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
10270
10271 * emacs-lisp/lisp-mode.el (emacs-list-byte-code-comment-re): New var.
10272 (emacs-lisp-byte-code-comment, emacs-lisp-byte-code-syntax-propertize)
10273 (emacs-lisp-byte-code-mode): New functions.
10274 (eval-sexp-add-defvars): Don't skip defvars in column >0.
10275 (eval-defun-2): Remove bogus interactive spec.
10276 (lisp-indent-line): Remove redundant whole-exp code, now done in
10277 indent-according-to-mode.
10278 (save-match-data): Remove redundant indent data.
10279
10280 * emacs-lisp/benchmark.el (benchmark-run, benchmark-run-compiled):
10281 Use `declare'.
10282
10283 2012-09-09 Juri Linkov <juri@jurta.org>
10284
10285 * replace.el (replace-regexp-lax-whitespace): New defcustom.
10286 (replace-lax-whitespace, query-replace-regexp)
10287 (query-replace-regexp-eval, replace-regexp): Doc fix.
10288 (perform-replace, replace-highlight): Let-bind
10289 isearch-lax-whitespace to replace-lax-whitespace and
10290 isearch-regexp-lax-whitespace to replace-regexp-lax-whitespace.
10291
10292 * isearch.el (isearch-query-replace): Let-bind
10293 replace-lax-whitespace to isearch-lax-whitespace and
10294 replace-regexp-lax-whitespace to
10295 isearch-regexp-lax-whitespace. (Bug#10885)
10296
10297 2012-09-09 Stefan Monnier <monnier@iro.umontreal.ca>
10298
10299 * eshell/em-unix.el (eshell/sudo): Explicitly drop return value.
10300
10301 2012-09-09 Alan Mackenzie <acm@muc.de>
10302
10303 * progmodes/cc-engine.el (c-state-cache-init):
10304 Initialise c-state-semi-nonlit-pos-cache\(-limit\)? properly.
10305 (c-record-parse-state-state):
10306 Record c-state-semi-nonlit-pos-cache\(-limit\)?.
10307
10308 2012-09-09 Andreas Schwab <schwab@linux-m68k.org>
10309
10310 * register.el (register-separator): Rename from
10311 separator-register. All uses changed. Doc fix.
10312 (register): Fix version.
10313
10314 2012-09-09 Chong Yidong <cyd@gnu.org>
10315
10316 * replace.el (query-replace-map): Bind four new symbols for
10317 requesting window scrolling.
10318
10319 * subr.el (y-or-n-p): Handle the window-scrolling bindings in
10320 query-replace-map (Bug#8948).
10321
10322 * custom.el (custom-theme-load-confirm): Use y-or-n-p.
10323
10324 * emacs-lisp/map-ynp.el (map-y-or-n-p): Don't bind scrolling keys
10325 since they are now in query-replace-map.
10326
10327 * window.el (scroll-other-window-down): Make the arg optional.
10328
10329 2012-09-09 Chong Yidong <cyd@gnu.org>
10330
10331 * files.el (hack-local-variables-confirm): Use quit-window to kill
10332 the *Local Variables* buffer.
10333
10334 2012-09-08 Dmitry Gutov <dgutov@yandex.ru>
10335
10336 * progmodes/ruby-mode.el (ruby-toggle-block): Guess the current block,
10337 not just expect to be at its beginning. Adjust callees.
10338 Succeed when do-end block has no space before the pipe character.
10339 (ruby-brace-to-do-end): When the original block is one-liner,
10340 convert to multiline. Reindent the result.
10341
10342 2012-09-08 Jambunathan K <kjambunathan@gmail.com>
10343
10344 * register.el (register): New group.
10345 (separator-register): New user option.
10346 (increment-register): Route it to `append-to-register', if
10347 register contains text. Implication is that `C-x r +' can now be
10348 used for appending to a text register (bug#12217).
10349 (append-to-register, prepend-to-register): Add separator based on
10350 `separator-register'.
10351
10352 2012-09-08 Alan Mackenzie <acm@muc.de>
10353
10354 AWK Mode: make auto-newline work when there's "==" in the pattern.
10355 * progmodes/cc-cmds.el (c-point-syntax): Handle virtual semicolons
10356 correctly.
10357 * progmodes/cc-engine.el (c-guess-basic-syntax CASE 5A.3):
10358 Test more rigorously for "=" token.
10359
10360 2012-09-08 Dmitry Gutov <dgutov@yandex.ru>
10361
10362 * progmodes/ruby-mode.el (ruby-match-expression-expansion):
10363 Only fail when reached LIMIT.
10364
10365 2012-09-08 Chong Yidong <cyd@gnu.org>
10366
10367 * dired.el (dired-mode-map): Don't bind M-=.
10368
10369 * dired-aux.el (dired-diff): Use backup file as default.
10370
10371 2012-09-08 Drew Adams <drew.adams@oracle.com>
10372
10373 * subr.el (add-to-history): Fix delete usage (Bug#12314).
10374
10375 2012-09-08 Chong Yidong <cyd@gnu.org>
10376
10377 * subr.el (syntax-after, syntax-class): Doc fix.
10378
10379 2012-09-08 Martin Rudalics <rudalics@gmx.at>
10380
10381 * window.el (display-buffer-in-previous-window): New buffer
10382 display action function.
10383
10384 * emacs-lisp/debug.el (debugger-bury-or-kill): New option.
10385 (debugger-previous-window): New variable.
10386 (debug): Rewrite using display-buffer-in-previous-window,
10387 quit-restore-window and debugger-bury-or-kill. (Bug#8789)
10388
10389 2012-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
10390
10391 * emacs-lisp/byte-run.el (defun): Tweak message. Simplify code.
10392
10393 2012-09-07 Matt McClure <mlm@aya.yale.edu> (tiny change)
10394
10395 * progmodes/python.el (python-shell-send-string):
10396 When default-directory is remote, create temp file on remote
10397 filesystem.
10398 (python-shell-send-file): When file is remote, pass local view of
10399 file paths to remote Python interpreter. (Bug#12340)
10400
10401 2012-09-07 Chong Yidong <cyd@gnu.org>
10402
10403 * window.el (switch-to-buffer): Doc fix (Bug#12181).
10404
10405 * files.el (after-find-file): Don't fail on a read-only buffer if
10406 require-final-newline is `visit' or `visit-save' (Bug#11156).
10407
10408 * subr.el (read-char-choice): Allow quitting via ESC ESC.
10409
10410 * userlock.el (ask-user-about-supersession-threat):
10411 Use read-char-choice (Bug#12093).
10412
10413 2012-09-07 Chong Yidong <cyd@gnu.org>
10414
10415 * subr.el (buffer-narrowed-p): New function.
10416
10417 * ses.el (ses-widen):
10418 * simple.el (count-words--buffer-message):
10419 * net/browse-url.el (browse-url-of-buffer): Use it.
10420
10421 * simple.el (count-words-region): Don't signal an error if there
10422 is a non-nil prefix arg and the mark is not set.
10423
10424 * help.el (describe-key-briefly): Allow the message to be seen
10425 when invoked from the minibuffer (Bug#7014).
10426
10427 2012-09-07 Dmitry Gutov <dgutov@yandex.ru>
10428
10429 * progmodes/ruby-mode.el (ruby-end-of-defun)
10430 (ruby-beginning-of-defun): Simplify, allow indentation before
10431 block beginning and end keywords.
10432 (ruby-beginning-of-defun): Only consider 3 keywords defun beginners.
10433 (ruby-end-of-defun): Expect that the point is at the beginning of
10434 the defun.
10435
10436 2012-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
10437
10438 * emacs-lisp/cl-macs.el (cl--do-arglist): Understand _ on &key args
10439 (bug#12367).
10440 (cl--make-usage-args): Strip _ from argument names.
10441
10442 2012-09-06 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
10443
10444 * progmodes/vhdl-mode.el (vhdl-speedbar-initialize): Don't use
10445 obsolete alias speedbar-key-map.
10446 (vhdl-doc-variable, vhdl-doc-mode): Use called-interactively-p.
10447 (vhdl-index-menu-init): Don't use obsolete variable
10448 font-lock-maximum-size.
10449
10450 2012-09-06 Chong Yidong <cyd@gnu.org>
10451
10452 * frame.el (window-system-version): Mark as obsolete.
10453
10454 * speedbar.el (speedbar-update-flag, speedbar-mode): Remove uses
10455 of obsolete variable speedbar-key-map.
10456
10457 2012-09-06 Juri Linkov <juri@jurta.org>
10458
10459 * replace.el (replace-lax-whitespace): New defcustom.
10460 (query-replace, query-replace-regexp, query-replace-regexp-eval)
10461 (replace-string, replace-regexp): Mention it in docstrings.
10462 (perform-replace, replace-highlight): Let-bind
10463 isearch-lax-whitespace and isearch-regexp-lax-whitespace according
10464 to the values of replace-lax-whitespace and regexp-flag.
10465 Don't let-bind search-whitespace-regexp. (Bug#10885)
10466
10467 * isearch.el (isearch-query-replace): Let-bind
10468 replace-lax-whitespace instead of let-binding
10469 replace-search-function and replace-re-search-function.
10470 (isearch-lazy-highlight-search): Let-bind isearch-lax-whitespace
10471 and isearch-regexp-lax-whitespace to lazy-highlight variables.
10472 (isearch-toggle-symbol): Set isearch-regexp to nil
10473 in isearch-word mode (like in isearch-toggle-word).
10474
10475 2012-09-06 Juri Linkov <juri@jurta.org>
10476
10477 * replace.el (replace-search-function)
10478 (replace-re-search-function): Set default values to nil.
10479 (perform-replace): Let-bind isearch-related variables based on
10480 replace-related values, call `isearch-search-fun' and let-bind
10481 the result to `search-function'. Remove code that sets
10482 `search-function' and `search-string' separately for
10483 `delimited-flag'.
10484 (replace-highlight): Add new argument `delimited-flag' and
10485 rename other arguments to the names used in `perform-replace'.
10486 Let-bind `isearch-word' to the argument `delimited-flag'.
10487 (Bug#10885, bug#10887)
10488
10489 2012-09-07 Dmitry Gutov <dgutov@yandex.ru>
10490
10491 * progmodes/ruby-mode.el (ruby-indent-beg-re): Add pieces from
10492 ruby-beginning-of-indent, simplify, allow all keywords to have
10493 indentation before them.
10494 (ruby-beginning-of-indent): Adjust for above. Search until the
10495 found point is not inside a string or comment.
10496 (ruby-font-lock-keywords): Allow symbols to start with "@"
10497 character, give them higher priority than variables.
10498 (ruby-syntax-propertize-function)
10499 (ruby-font-lock-syntactic-keywords): Remove the "not comments"
10500 matchers. Expression expansions are not comments when inside a
10501 string, and there comment syntax status is irrelevant.
10502 (ruby-match-expression-expansion): New function. Check that
10503 expression expansion is inside a string, and it's not escaped.
10504 (ruby-font-lock-keywords): Use it.
10505
10506 2012-09-05 Martin Rudalics <rudalics@gmx.at>
10507
10508 * help.el (temp-buffer-max-height): New default value.
10509 (temp-buffer-resize-frames): New option.
10510 (resize-temp-buffer-window): Optionally resize frame.
10511
10512 * window.el (fit-frame-to-buffer-bottom-margin): New option.
10513 (fit-frame-to-buffer): New function.
10514
10515 2012-09-05 Glenn Morris <rgm@gnu.org>
10516
10517 * emulation/cua-rect.el (cua--init-rectangles):
10518 * textmodes/picture.el (picture-mode-map):
10519 * play/blackbox.el (blackbox-mode-map): Remap right-char and left-char
10520 like forward-char and backward-char. (Bug#12317)
10521
10522 2012-09-05 Leo Liu <sdl.web@gmail.com>
10523
10524 * progmodes/flymake.el (flymake-warning-re): New variable.
10525 (flymake-parse-line): Use it.
10526
10527 2012-09-05 Glenn Morris <rgm@gnu.org>
10528
10529 * calendar/holidays.el (holiday-christian-holidays):
10530 Rename an entry. (Bug#12289)
10531
10532 2012-09-05 Stefan Monnier <monnier@iro.umontreal.ca>
10533
10534 * progmodes/sh-script.el (sh-font-lock-paren): Don't burp at BOB
10535 (bug#12222).
10536
10537 2012-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
10538
10539 * loadup.el: Load macroexp. Remove hack.
10540 * emacs-lisp/macroexp.el (macroexp--eval-if-compile): New function.
10541 (macroexp--expand-all): Use it to get better warnings.
10542 (macroexp--backtrace, macroexp--trim-backtrace-frame)
10543 (internal-macroexpand-for-load): New functions.
10544 (macroexp--pending-eager-loads): New var.
10545 (emacs-startup-hook): New hack to replace one in loadup.el.
10546 * emacs-lisp/cl-macs.el (cl--compiler-macro-list*)
10547 (cl--compiler-macro-cXXr): Move to top, before they can be used.
10548 (cl-psetf): Simplify.
10549 (cl-defstruct): Add indent rule.
10550
10551 2012-09-04 Lars Ingebrigtsen <larsi@gnus.org>
10552
10553 * mail/smtpmail.el (smtpmail-send-it): Prefer the From: header
10554 over `user-mail-address' for the SMTP MAIL FROM envelope.
10555 (smtpmail-via-smtp): Ditto.
10556
10557 2012-09-04 Dmitry Gutov <dgutov@yandex.ru>
10558
10559 * progmodes/ruby-mode.el: Clean up keybindings.
10560 (ruby-mode-map): Don't bind ruby-electric-brace,
10561 ruby-beginning-of-defun, ruby-end-of-defun, ruby-mark-defun,
10562 backward-kill-word, reindent-then-newline-and-indent.
10563 (ruby-mark-defun): Remove.
10564 (ruby-electric-brace): Remove. Obsoleted by electric-indent-chars.
10565 (ruby-mode): Set local beginning-of-defun-function and
10566 end-of-defun-function values.
10567
10568 2012-09-03 Martin Rudalics <rudalics@gmx.at>
10569
10570 * window.el (temp-buffer-window-setup-hook)
10571 (temp-buffer-window-show-hook): New hooks.
10572 (temp-buffer-window-setup, temp-buffer-window-show)
10573 (with-temp-buffer-window): New functions.
10574 (fit-window-to-buffer): Remove unused optional argument OVERRIDE.
10575 (special-display-popup-frame): Make sure the window used shows BUFFER.
10576
10577 * help.el (temp-buffer-resize-mode): Fix doc-string.
10578 (resize-temp-buffer-window): New optional argument WINDOW.
10579
10580 * files.el (recover-file, save-buffers-kill-emacs):
10581 * dired.el (dired-mark-pop-up): Use with-temp-buffer-window.
10582
10583 2012-09-02 Michael Albinus <michael.albinus@gmx.de>
10584
10585 * eshell/em-unix.el (eshell/sudo): When we have an ad-hoc
10586 remote definition of `default-directory', ensure we can connect.
10587
10588 2012-09-02 Juri Linkov <juri@jurta.org>
10589
10590 Toggle whitespace matching mode with M-s SPC.
10591 http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00008.html
10592
10593 * isearch.el (search-whitespace-regexp): Doc fix.
10594 Remove cons cell customization.
10595 (isearch-mode-map): Bind "\M-s " to isearch-toggle-lax-whitespace.
10596 (isearch-lax-whitespace, isearch-regexp-lax-whitespace):
10597 New variables.
10598 (isearch-forward, isearch-forward-regexp): Doc fix.
10599 (isearch-toggle-lax-whitespace): New command.
10600 (search-forward-lax-whitespace, search-backward-lax-whitespace)
10601 (re-search-forward-lax-whitespace)
10602 (re-search-backward-lax-whitespace): New functions.
10603 (isearch-whitespace-regexp): Remove function.
10604 (isearch-query-replace): Let-bind replace-search-function and
10605 replace-re-search-function.
10606 (isearch-occur): Let-bind search-spaces-regexp according to the
10607 value of isearch-lax-whitespace and isearch-regexp-lax-whitespace.
10608 (isearch-quote-char): Check isearch-regexp-lax-whitespace in the
10609 condition for C-q SPC.
10610 (isearch-search-fun-default): Use new functions mentioned above.
10611 (isearch-search-forward, isearch-search-backward): Remove functions.
10612 (isearch-search): Don't let-bind search-spaces-regexp.
10613 (isearch-lazy-highlight-space-regexp): Remove variable.
10614 (isearch-lazy-highlight-lax-whitespace)
10615 (isearch-lazy-highlight-regexp-lax-whitespace): New variables.
10616 (isearch-lazy-highlight-new-loop): Use them.
10617 (isearch-lazy-highlight-search): Don't let-bind search-spaces-regexp.
10618
10619 2012-09-02 Chong Yidong <cyd@gnu.org>
10620
10621 * dired.el (dired-mode-map): Menu string fixes (Bug#11616).
10622
10623 2012-09-02 Glenn Morris <rgm@gnu.org>
10624
10625 * simple.el (undo): Tweak message in undo-only case. (Bug#12283)
10626
10627 2012-09-01 Glenn Morris <rgm@gnu.org>
10628
10629 * term.el: Tidy up menu definitions.
10630 (term-mode-map): Use easymenu for In/Out, Complete menus.
10631 (term-pager-break-map): Initialize in the defvar.
10632 (term-terminal-menu, term-signals-menu): Define with easymenu.
10633 (term-terminal-menu): Also show it in line-mode. (Bug#11957)
10634 (term-pager-menu): New, extracted from term-process-pager.
10635 (term-mode, term-char-mode, term-process-pager): Use easymenu-add.
10636 (term-update-mode-line): Propertize line/char and page items.
10637 (term-process-pager): Move keymap initialization elsewhere.
10638
10639 2012-09-01 Martin Rudalics <rudalics@gmx.at>
10640
10641 * window.el (switch-to-prev-buffer): Handle additional values of
10642 BURY-OR-KILL argument. Don't switch in minibuffer window.
10643 (switch-to-next-buffer): Don't switch in minibuffer window.
10644 (quit-restore-window): New function based on quit-window.
10645 Handle additional values of former KILL argument.
10646 (quit-window): Call quit-restore-window with appropriate
10647 interpretation of KILL argument.
10648 (display-buffer-below-selected): New buffer display action
10649 function.
10650
10651 2012-09-01 Stefan Monnier <monnier@iro.umontreal.ca>
10652
10653 * minibuffer.el (completion-at-point-functions): Complete docstring
10654 (bug#12254).
10655
10656 2012-09-01 Paul Eggert <eggert@cs.ucla.edu>
10657
10658 Better seed support for (random).
10659 * play/5x5.el, play/animate.el, play/cookie1.el, play/dissociate.el:
10660 * play/doctor.el, play/dunnet.el, play/gomoku.el, play/landmark.el:
10661 * play/mpuz.el, play/tetris.el, play/zone.el:
10662 * calc/calc-comb.el (math-init-random-base):
10663 * play/blackbox.el (bb-init-board):
10664 * play/life.el (life):
10665 * server.el (server-use-tcp):
10666 * type-break.el (type-break):
10667 Remove unnecessary call to (random t).
10668 * net/sasl.el (sasl-unique-id-function):
10669 Change (random t) to (random), now that the latter is more random.
10670 * play/life.el (life-initialized): Remove no-longer-needed var.
10671
10672 2012-08-31 Alp Aker <alp.tekin.aker@gmail.com>
10673
10674 * window.el (switch-to-prev-buffer, switch-to-next-buffer):
10675 Consider frame's buffer predicate when choosing the buffer.
10676 (Bug#12081)
10677
10678 2012-08-30 Richard Stallman <rms@gnu.org>
10679
10680 * simple.el (special-mode-map): Delete binding for `z'.
10681
10682 2012-08-30 Andreas Schwab <schwab@linux-m68k.org>
10683
10684 * progmodes/compile.el (compilation-always-kill): Doc fix.
10685
10686 2012-08-30 Chong Yidong <cyd@gnu.org>
10687
10688 * window.el (display-buffer-reuse-frames): Make the obsolescence
10689 message more informative.
10690
10691 2012-08-30 Glenn Morris <rgm@gnu.org>
10692
10693 * paren.el (show-paren-delay):
10694 Add a :set function. Doc fix. (Bug#12297)
10695
10696 2012-08-29 Martin Blais <blais@furius.ca> (tiny change)
10697
10698 * progmodes/compile.el (compilation-always-kill): New var.
10699 (compilation-start): Use it.
10700
10701 2012-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
10702
10703 * simple.el (read-only-mode): Move from files.el for bootstrapping.
10704 * files.el (read-only-mode): Move to simple.el.
10705
10706 * files.el (read-only-mode): New minor mode.
10707 (toggle-read-only): Use it and mark obsolete.
10708 (find-file--read-only):
10709 * vc/vc.el (vc-next-action, vc-checkout):
10710 * vc/vc-cvs.el (vc-cvs-checkout):
10711 * obsolete/vc-mcvs.el (vc-mcvs-update):
10712 * ffap.el (ffap--toggle-read-only): Update callers.
10713
10714 2012-08-29 Michael Albinus <michael.albinus@gmx.de>
10715
10716 * eshell/esh-ext.el (eshell-external-command): Do not examine
10717 remote shell scripts.
10718 See <https://bugs.launchpad.net/ubuntu/+source/emacs23/+bug/1035790>.
10719
10720 * net/tramp-sh.el (tramp-remote-path): Add "/sbin" and
10721 "/usr/local/sbin".
10722
10723 2012-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
10724
10725 * emacs-lisp/cl-lib.el (buffer-string): Fix setter macro (bug#12293).
10726
10727 2012-08-28 Leo Liu <sdl.web@gmail.com>
10728
10729 * progmodes/sh-script.el (sh-dynamic-complete-functions): Adapt to
10730 completion-at-point. (Bug#12220)
10731
10732 * skeleton.el (skeleton-untabify): Change to nil (bug#12223).
10733
10734 * progmodes/sh-script.el (sh-indent-comment): Change to t (bug#12267).
10735
10736 2012-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
10737
10738 * files.el (safe-local-eval-forms): Fix before-save-hook entry to
10739 be buffer-local; add delete-trailing-whitespace (bug#12259).
10740
10741 2012-08-28 Jeremy Moore <jmoore@ieee.org> (tiny change)
10742
10743 * progmodes/hideif.el (hif-compress-define-list):
10744 Fix typo. (Bug#11951)
10745
10746 2012-08-28 Dan Nicolaescu <dann@gnu.org>
10747
10748 * progmodes/hideshow.el (hs-block-end-regexp): Restore lost
10749 buffer local setting.
10750
10751 * net/rcirc.el (rcirc-split-message): Fix for buffer-local
10752 rcirc-encode-coding-system.
10753
10754 2012-08-28 Leo Liu <sdl.web@gmail.com>
10755
10756 * net/rcirc.el (rcirc-split-message): New function.
10757 (rcirc-send-message): Use it. (Bug#12051)
10758
10759 2012-08-28 Juri Linkov <juri@jurta.org>
10760
10761 * info.el (Info-fontify-node): Hide empty lines at the end of
10762 the node. (Bug#12272)
10763
10764 2012-08-27 Drew Adams <drew.adams@oracle.com>
10765
10766 * dired.el (dired-pop-to-buffer): Make window start at beginning
10767 of buffer (Bug#12281).
10768
10769 2012-08-26 Chong Yidong <cyd@gnu.org>
10770
10771 * window.el (special-display-regexps, special-display-frame-alist)
10772 (special-display-buffer-names, special-display-function)
10773 (display-buffer-reuse-frames): Mark as obsolete.
10774
10775 * progmodes/compile.el: Don't use display-buffer-reuse-frames.
10776
10777 * help.el (help-print-return-message): Don't treat
10778 display-buffer-reuse-frames specially.
10779
10780 2012-08-26 Chong Yidong <cyd@gnu.org>
10781
10782 * progmodes/gdb-mi.el (gdb-display-buffer-other-frame-action):
10783 New variable, replacing gdb-frame-parameters.
10784 (gdb-frame-io-buffer, gdb-frame-breakpoints-buffer)
10785 (gdb-frame-threads-buffer, gdb-frame-memory-buffer)
10786 (gdb-frame-disassembly-buffer, gdb-frame-stack-buffer)
10787 (gdb-frame-locals-buffer, gdb-frame-registers-buffer): Use it.
10788 (def-gdb-frame-for-buffer): Macro deleted. It is easier to define
10789 the functions directly with gdb-display-buffer-other-frame-action.
10790 (gdb-display-breakpoints-buffer, gdb-display-threads-buffer)
10791 (gdb-display-memory-buffer, gdb-display-disassembly-buffer)
10792 (gdb-display-stack-buffer, gdb-display-locals-buffer)
10793 (gdb-display-registers-buffer): Define directly.
10794 (def-gdb-display-buffer): Macro deleted.
10795 (gdb-display-buffer): Remove second and third args, callers don't
10796 use them. Defer to the default display-buffer behavior, apart
10797 from making windows dedicated.
10798 (gdb-setup-windows): Don't call display-buffer unnecessarily.
10799
10800 * progmodes/gud.el (gud-display-line): Just use display-buffer.
10801
10802 * window.el (display-buffer-pop-up-frame): Handle a
10803 pop-up-frame-parameters alist entry.
10804 (display-buffer): Document it.
10805
10806 2012-08-26 Chong Yidong <cyd@gnu.org>
10807
10808 * isearch.el (search-whitespace-regexp): Make string and nil
10809 values apply to both ordinary and regexp search. Allow a cons
10810 cell value to distinguish between the two.
10811 (isearch-whitespace-regexp, isearch-search-forward)
10812 (isearch-search-backward): New functions.
10813 (isearch-occur, isearch-search-fun-default, isearch-search)
10814 (isearch-lazy-highlight-new-loop): Use them.
10815 (isearch-forward, isearch-forward-regexp): Doc fix.
10816
10817 2012-08-26 Chong Yidong <cyd@gnu.org>
10818
10819 * faces.el (help-argument-name): Always inherit from italic
10820 (Bug#12213).
10821
10822 2012-08-25 Martin Rudalics <rudalics@gmx.at>
10823
10824 * window.el (window--even-window-heights): Even heights when
10825 WINDOW and the selected window form a vertical combination.
10826 (display-buffer-use-some-window): Provide that window used gets
10827 sized back by quit-window. (Bug#11880) and (Bug#12091)
10828
10829 2012-08-24 Paul Eggert <eggert@cs.ucla.edu>
10830
10831 Fix file time stamp problem with bzr and CVS (Bug#12001).
10832 * vc/vc-cvs.el (vc-cvs-parse-entry): Ignore subsecond information
10833 in the file's time stamp, since the version control system loses
10834 that information.
10835
10836 2012-08-22 Juri Linkov <juri@jurta.org>
10837
10838 * info.el (Info-fontify-node): Hide the suffix of the
10839 Info file name in the header line. (Bug#12187)
10840
10841 2012-08-22 Glenn Morris <rgm@gnu.org>
10842
10843 * calendar/cal-tex.el (cal-tex-weekly-common):
10844 Restore leading blank page.
10845
10846 2012-08-22 Le Wang <l26wang@gmail.com>
10847
10848 * misc.el (forward-to-word, backward-to-word): Activate or extend
10849 the region under `shift-select-mode'. (Bug#12231)
10850
10851 2012-08-22 Bastien Guerry <bzg@gnu.org>
10852
10853 * progmodes/executable.el (executable-prefix): Set to "#!" instead
10854 of "#! ". http://www.in-ulm.de/~mascheck/various/shebang/#details
10855 gives details on why the space is never needed.
10856
10857 2012-08-22 Martin Rudalics <rudalics@gmx.at>
10858
10859 * window.el (walk-window-tree, window-with-parameter):
10860 New optional argument MINIBUF to control whether these functions
10861 should run on the minibuffer window.
10862 (window-at-side-list): Don't operate on minibuffer window.
10863 (window-in-direction): Simplify and rewrite doc-string.
10864 (window--size-ignore): Rename to window--size-ignore-p.
10865 Update callers.
10866 (display-buffer-in-atom-window, window--major-non-side-window)
10867 (window--major-side-window, display-buffer-in-major-side-window)
10868 (delete-side-window, display-buffer-in-side-window):
10869 New functions.
10870 (window--side-check, window-deletable-p, delete-window)
10871 (delete-other-windows, split-window): Handle side windows and
10872 atomic windows appropriately.
10873 (window--display-buffer): Call display-buffer-record-window also
10874 when the window buffer did not change.
10875
10876 2012-08-22 Christopher Schmidt <christopher@ch.ristopher.com>
10877
10878 * help-fns.el (help-fns--key-bindings):
10879 Abbreviate non-symbol remap targets. (Bug#12174)
10880
10881 2012-08-22 Martin Rudalics <rudalics@gmx.at>
10882
10883 * dired.el (dired-mark-remembered): Don't clobber point.
10884 (Bug#11795)
10885
10886 2012-08-22 Glenn Morris <rgm@gnu.org>
10887
10888 * progmodes/bug-reference.el (bug-reference): New custom group.
10889 (bug-reference-bug-regexp): Make it a defcustom.
10890
10891 2012-08-22 Daiki Ueno <ueno@unixuser.org>
10892
10893 * progmodes/js.el (js-indent-level, js-expr-indent-offset)
10894 (js-paren-indent-offset, js-square-indent-offset)
10895 (js-curly-indent-offset): Add :safe (Bug#12257).
10896
10897 2012-08-22 Edward O'Connor <hober0@gmail.com>
10898
10899 * json.el (json-key-format): Add error properties.
10900 (json-encode-key): New function.
10901 (json-encode-hash-table, json-encode-alist, json-encode-plist):
10902 Use json-encode-key.
10903
10904 2012-08-22 Glenn Morris <rgm@gnu.org>
10905
10906 * calendar/cal-tex.el (cal-tex-longday): New function, replacing...
10907 (cal-tex-leftday, cal-tex-rightday): Remove functions.
10908 (cal-tex-weekly-common, cal-tex-cursor-filofax-2week):
10909 Update for above change.
10910
10911 2012-08-21 Andreas Schwab <schwab@linux-m68k.org>
10912
10913 * cus-face.el (custom-face-attributes): Fix customize type for the
10914 :underline attribute. (Bug#11805)
10915
10916 2012-08-21 Martin Rudalics <rudalics@gmx.at>
10917
10918 * window.el (window-point-1, set-window-point-1): Remove.
10919 (window-in-direction, record-window-buffer)
10920 (set-window-buffer-start-and-point, split-window-below)
10921 (window--state-get-1, display-buffer-record-window):
10922 Replace calls to window-point-1 and set-window-point-1 by calls to
10923 window-point and set-window-point respectively.
10924
10925 2012-08-21 Glenn Morris <rgm@gnu.org>
10926
10927 * calendar/cal-tex.el (cal-tex-weekly-common): New function.
10928 (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-week):
10929 Use it.
10930
10931 * calendar/cal-tex.el (cal-tex-rightday): Add optional funcname arg.
10932 (cal-tex-shortday): New function.
10933 (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-week)
10934 (cal-tex-cursor-filofax-daily): Use the above.
10935
10936 * calendar/cal-tex.el (cal-tex-leftday, cal-tex-rightday):
10937 New functions.
10938 (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-2week)
10939 (cal-tex-cursor-filofax-week): Use them.
10940
10941 * calendar/cal-tex.el (cal-tex-lefthead, cal-tex-righthead):
10942 New constants.
10943 (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-2week)
10944 (cal-tex-cursor-filofax-week, cal-tex-cursor-filofax-daily): Use them.
10945
10946 * calendar/cal-tex.el (cal-tex-preamble): Generate new buffers.
10947 (cal-tex-end-document): Don't rely on buffer name.
10948
10949 * calendar/cal-tex.el (cal-tex-cursor-filofax-year):
10950 Use cal-tex-vspace.
10951 (cal-tex-vspace, cal-tex-hspace, cal-tex-em, cal-tex-bf)
10952 (cal-tex-Huge-bf, cal-tex-large-bf): Use cal-tex-cmd.
10953 (cal-tex-scriptsize, cal-tex-huge, cal-tex-Huge, cal-tex-large):
10954 Use cal-tex-arg.
10955
10956 * calendar/cal-tex.el (cal-tex-cursor-filofax-year)
10957 (cal-tex-cursor-week, cal-tex-cursor-week2)
10958 (cal-tex-cursor-week-iso, cal-tex-cursor-week-at-a-glance)
10959 (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
10960 (cal-tex-cursor-filofax-daily, cal-tex-cursor-day)
10961 (cal-tex-insert-preamble, cal-tex-b-document)
10962 (cal-tex-e-document, cal-tex-b-center, cal-tex-e-center):
10963 Improve cal-tex-cmd usage.
10964
10965 * calendar/cal-tex.el (cal-tex-filofax-paper): New function.
10966 (cal-tex-cursor-filofax-year, cal-tex-cursor-filofax-2week)
10967 (cal-tex-cursor-filofax-week, cal-tex-cursor-filofax-daily): Use it.
10968 (cal-tex-weekly-paper): New function.
10969 (cal-tex-cursor-week, cal-tex-cursor-week2)
10970 (cal-tex-cursor-week-iso, cal-tex-cursor-week-monday)
10971 (cal-tex-cursor-day): Use it.
10972
10973 * calendar/cal-tex.el (cal-tex-cursor-week-at-a-glance)
10974 (cal-tex-cursor-filofax-week): Remove leading blank page.
10975
10976 * calendar/cal-tex.el (cal-tex-cursor-week-at-a-glance):
10977 Add autoload cookie. For now at least, don't use color, since
10978 no other cal-tex function does.
10979
10980 * calendar/cal-tex.el (cal-tex-cursor-week-iso)
10981 (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
10982 (cal-tex-cursor-filofax-daily): Correct start date for diary entries.
10983
10984 2012-08-21 Juri Linkov <juri@jurta.org>
10985
10986 * info.el (Info-file-attributes): New variable.
10987 (info-insert-file-contents): Add file attributes to
10988 `Info-file-attributes'. Clear the caches `Info-index-nodes' and
10989 `Info-toc-nodes' when previous modtime of the Info file is less
10990 than new modtime.
10991 (Info-toc-nodes, Info-index-nodes): Move definitions up to the top
10992 of info.el. (Bug#12230)
10993
10994 2012-08-20 Glenn Morris <rgm@gnu.org>
10995
10996 * calendar/diary-lib.el (diary-include-files, diary-sexp-entry):
10997 * calendar/holidays.el (calendar-holiday-list):
10998 Report errors with display-warning rather than beep'n'sleep.
10999
11000 2012-08-20 Michael Albinus <michael.albinus@gmx.de>
11001
11002 * net/tramp.el (tramp-accept-process-output): Accept only output
11003 from PROC. Otherwise, process filters and sentinels might be
11004 confused. (Bug#12145)
11005
11006 2012-08-20 Chong Yidong <cyd@gnu.org>
11007
11008 * descr-text.el (describe-text-properties-1): Use overlays-in to
11009 report on empty overlays (Bug#3322).
11010
11011 2012-08-20 Glenn Morris <rgm@gnu.org>
11012
11013 * mail/rmailout.el (rmail-output-read-file-name):
11014 Trap and report errors in rmail-output-file-alist elements.
11015
11016 * font-lock.el (font-lock-add-keywords): Doc fix (quote face names
11017 since most non-font-lock faces are not also variables).
11018
11019 2012-08-20 Edward Reingold <reingold@iit.edu>
11020
11021 * calendar/cal-tex.el (cal-tex-cursor-week-at-a-glance):
11022 New function. (Bug12160)
11023
11024 2012-08-19 Glenn Morris <rgm@gnu.org>
11025
11026 * mail/rmailout.el (rmail-output-read-file-name):
11027 Fix previous change (when the alist is nil or does not match).
11028
11029 2012-08-19 Chong Yidong <cyd@gnu.org>
11030
11031 * xml.el (xml-escape-string): Don't refer to xml-entity-alist
11032 (Bug#12228).
11033
11034 2012-08-18 Chong Yidong <cyd@gnu.org>
11035
11036 * simple.el (yank-handled-properties): New defcustom.
11037 (yank-excluded-properties): Add font-lock-face and category.
11038 (yank): Doc fix.
11039
11040 * subr.el (remove-yank-excluded-properties):
11041 Obey yank-handled-properties. The special handling of font-lock-face
11042 and category is now done this way, instead of being hard-coded.
11043 (insert-for-yank-1): Remove font-lock-face handling.
11044 (yank-handle-font-lock-face-property)
11045 (yank-handle-category-property): New function.
11046
11047 2012-08-17 Glenn Morris <rgm@gnu.org>
11048
11049 * mail/rmailout.el (rmail-output-read-file-name):
11050 Check rmail-output-file-alist against the full message body
11051 in the correct rmail buffer. (Bug#12214)
11052
11053 2012-08-17 Michael Albinus <michael.albinus@gmx.de>
11054
11055 * net/tramp-sh.el (tramp-sh-handle-start-file-process):
11056 Eliminate superfluous prompt. (Bug#12203)
11057
11058 2012-08-17 Chong Yidong <cyd@gnu.org>
11059
11060 * mouse.el (mouse-appearance-menu): If x-select-font returns a
11061 font spec, set the font directly (Bug#3228).
11062
11063 2012-08-17 Martin Rudalics <rudalics@gmx.at>
11064
11065 * window.el (delete-window): Fix last fix.
11066
11067 2012-08-16 Martin Rudalics <rudalics@gmx.at>
11068
11069 * window.el (window-valid-p): Move to window.c.
11070 (window-child, window-child-count, window-last-child)
11071 (window-normalize-window, window-combined-p)
11072 (window-combinations, window-atom-root, window-min-size)
11073 (window-sizable, window-sizable-p, window-size-fixed-p)
11074 (window-min-delta, window-max-delta, window--resizable)
11075 (window--resizable-p, window-resizable, window-total-size)
11076 (window-full-height-p, window-full-width-p, window-body-size)
11077 (window-at-side-p, adjust-window-trailing-edge, maximize-window)
11078 (minimize-window, window-deletable-p, delete-window)
11079 (delete-other-windows, set-window-buffer-start-and-point)
11080 (next-buffer, previous-buffer, split-window, balance-windows-2)
11081 (set-window-text-height, window-buffer-height)
11082 (fit-window-to-buffer, shrink-window-if-larger-than-buffer)
11083 (truncated-partial-width-window-p): Minor code adjustments.
11084 In doc-strings state whether the argument window has to denote a
11085 live, valid or any window.
11086
11087 2012-08-16 Phil Sainty <psainty@orcon.net.nz> (tiny change)
11088
11089 * progmodes/subword.el (subword-forward-function)
11090 (subword-backward-function, subword-forward-regexp)
11091 (subword-backward-regexp): New variables.
11092 (subword-forward, subword-forward-internal, subword-backward-internal):
11093 Use new variables, eg so that different "word" definitions
11094 can be easily used. (Bug#11411)
11095
11096 2012-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
11097
11098 * vc/vc-mtn.el (vc-mtn-revision-completion-table): Handle completion
11099 for composite selectors.
11100 * vc/vc.el (vc-diff-build-argument-list-internal): Don't prevent
11101 operation just because we can't find a previous revision.
11102
11103 2012-08-15 Chong Yidong <cyd@gnu.org>
11104
11105 * frame.el (set-frame-font): Accept font objects.
11106
11107 2012-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
11108
11109 * textmodes/tex-mode.el (tex-insert-quote): ~ is a space (bug#12137).
11110
11111 2012-08-15 Wolfgang Jenkner <wjenkner@inode.at>
11112
11113 * man.el (Man-overstrike-face, Man-underline-face)
11114 (Man-reverse-face): Remove variables.
11115 (Man-overstrike, Man-underline, Man-reverse): New faces.
11116 (Man-fontify-manpage): Use them instead of the variables.
11117 (Man-cleanup-manpage): Comment change.
11118 (Man-ansi-color-map): New variable.
11119 (Man-fontify-manpage): Use it.
11120 Call ansi-color-apply-on-region to replace ad hoc code (bug#12147).
11121
11122 Implement ANSI SGR parameters 22-27 (bug#12146).
11123 * ansi-color.el (ansi-colors): Doc fix.
11124 (ansi-color-context, ansi-color-context-region): Doc fix.
11125 (ansi-color--find-face): New function.
11126 (ansi-color-apply, ansi-color-apply-on-region): Use it.
11127 Rename the local variable `face' to `codes' since it is now a list of
11128 ansi codes. Doc fix.
11129 (ansi-color-get-face): Remove.
11130 (ansi-color-parse-sequence): New function, derived from
11131 ansi-color-get-face.
11132 (ansi-color-apply-sequence): Use it. Rewrite, and support ansi
11133 codes 22-27.
11134
11135 2012-08-14 Stefan Monnier <monnier@iro.umontreal.ca>
11136
11137 * subr.el (read-passwd): Allow use from a minibuffer.
11138
11139 2012-08-14 Eli Zaretskii <eliz@gnu.org>
11140
11141 * tooltip.el (tooltip-identifier-from-point): Don't treat tokens
11142 inside comments and strings as identifiers.
11143
11144 * progmodes/gud.el (gud-tooltip-print-command): Quote the
11145 expression to evaluate. This allows to evaluate expressions with
11146 embedded whitespace.
11147 (gud-tooltip-tips): Add a blank before the newline in the
11148 message-box text, for the benefit of message-box emulation on
11149 MS-Windows.
11150
11151 * progmodes/gdb-mi.el (gdb-tooltip-print): Don't ignore error
11152 messages from GDB, pop them up in a tooltip to give feedback to
11153 user.
11154 (gdb-tooltip-print-1): Quote the expression to evaluate.
11155 This allows to evaluate expressions with embedded whitespace.
11156 (gdb-inferior-io--init-proc): Don't send "-inferior-tty" command
11157 if the TTY name is nil or empty (which happens when communicating
11158 with the inferior via pipes, e.g. on MS-Windows).
11159 (gdb-internals): If GDB sends a "&\n" empty debugging message,
11160 don't send that to the GUD buffer.
11161
11162 2012-08-14 Glenn Morris <rgm@gnu.org>
11163
11164 * emacs-lisp/bytecomp.el (byte-compile-setq-default):
11165 Optimize away setq-default with no args, as for setq. (Bug#12195)
11166
11167 2012-08-14 Chong Yidong <cyd@gnu.org>
11168
11169 * minibuffer.el (read-file-name): Doc fix (Bug#10881).
11170
11171 * emacs-lisp/regexp-opt.el (regexp-opt-charset): Doc fix
11172 (Bug#12085).
11173
11174 2012-08-14 Glenn Morris <rgm@gnu.org>
11175
11176 * emacs-lisp/bytecomp.el (byte-recompile-file): Doc fix.
11177
11178 2012-08-14 Michael Albinus <michael.albinus@gmx.de>
11179
11180 * net/tramp-sh.el (tramp-open-shell): Cache the shell name.
11181 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
11182 Use cached shell name.
11183
11184 2012-08-14 Fabián Ezequiel Gallina <fgallina@cuca>
11185
11186 * progmodes/python.el (python-shell-send-string):
11187 (python-shell-send-setup-code): Do not use `format' with `message'.
11188
11189 2012-08-14 Dmitry Gutov <dgutov@yandex.ru>
11190
11191 * progmodes/ruby-mode.el: Improve percent literals (bug#6286).
11192 (ruby-percent-literal-beg-re): New constant.
11193 (ruby-syntax-general-delimiters-goto-beg): Rename to
11194 `ruby-syntax-enclosing-percent-literal', improve literal type check.
11195 (ruby-syntax-propertize-general-delimiters): Rename to
11196 `ruby-syntax-propertize-percent-literal', it's a shorter and more
11197 popular term. Adjust comments everywhere.
11198 (ruby-syntax-propertize-percent-literal): Only propertize when not
11199 inside a simple string or comment. When the literal is unclosed,
11200 leave the text after it unpropertized.
11201 (ruby-syntax-methods-before-regexp): New constant.
11202 (ruby-syntax-propertize-function): Use it to recognize regexps.
11203 Don't look at the text after regexp, just use the whitelist.
11204
11205 2012-08-14 Andreas Schwab <schwab@linux-m68k.org>
11206
11207 * emacs-lisp/bytecomp.el (byte-recompile-file): When LOAD is
11208 non-nil always load the compiled file if it exists. (Bug#12197)
11209
11210 2012-08-14 Chong Yidong <cyd@gnu.org>
11211
11212 * hi-lock.el (hi-lock-mode): Do not unilaterally enable font lock.
11213 (hi-lock-set-pattern): When deciding whether to use font lock or
11214 overlays, look at font-lock-mode instead of font-lock-fontified
11215 (Bug#12168).
11216 (hi-lock-mode, hi-lock-line-face-buffer, hi-lock-unface-buffer)
11217 (hi-lock-face-buffer, hi-lock-face-phrase-buffer): Doc fix.
11218
11219 2012-08-14 Daiki Ueno <ueno@unixuser.org>
11220
11221 * subr.el (internal--after-with-selected-window): Fix typo
11222 (Bug#12193).
11223
11224 2012-08-14 Fabián Ezequiel Gallina <fgallina@cuca>
11225
11226 Use `completion-table-dynamic' for completion functions.
11227 * progmodes/python.el
11228 (python-shell-completion--do-completion-at-point)
11229 (python-shell-completion--get-completions):
11230 Remove functions.
11231 (python-shell-completion-complete-at-point): New function.
11232 (python-completion-complete-at-point): Use it.
11233
11234 2012-08-13 Jambunathan K <kjambunathan@gmail.com>
11235
11236 * vc/vc-dir.el (vc-dir-hide-state): New command (bug#12159).
11237 (vc-dir-hide-up-to-date): Route it to `vc-dir-hide-state'.
11238
11239 2012-08-13 Stefan Monnier <monnier@iro.umontreal.ca>
11240
11241 * subr.el (function-get): Refine `autoload' arg so it can also
11242 autoload functions for gv.el (bug#12191).
11243 * emacs-lisp/edebug.el (get-edebug-spec): Adjust so it only
11244 autoloads macros.
11245
11246 * color.el (color-xyz-to-lab, color-lab-to-xyz, color-cie-de2000):
11247 Prefer pcase-let over destructuring-bind.
11248 * vc/diff-mode.el (diff-remove-trailing-whitespace): Same.
11249 Also, remove whitespace as we go, rather than after accumulating the
11250 various places.
11251
11252 * subr.el (internal--before-with-selected-window)
11253 (internal--after-with-selected-window): Fix typo seleted->selected.
11254 (with-selected-window): Adjust callers.
11255 Reported by Dmitry Gutov <dgutov@yandex.ru>.
11256
11257 2012-08-13 Bastien Guerry <bzg@gnu.org>
11258
11259 * window.el (special-display-popup-frame): Minor docstring
11260 enhancement. (Bug#12172)
11261
11262 2012-08-13 Andreas Schwab <schwab@linux-m68k.org>
11263
11264 * tar-mode.el (tar-header-data-end): Only ignore size for files of
11265 type 1-6.
11266 (tar-header-block-summarize, tar-get-descriptor): Handle pax
11267 extended headers.
11268
11269 * files.el (hack-local-variables-filter): Remove useless eval.
11270
11271 2012-08-13 Martin Rudalics <rudalics@gmx.at>
11272
11273 * subr.el (with-selected-window): Fix last change.
11274
11275 2012-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
11276
11277 * subr.el (internal--before-with-seleted-window)
11278 (internal--after-with-seleted-window): New functions.
11279 (with-selected-window): Use them, to replace dependency on
11280 tty-top-frame.
11281
11282 2012-08-12 Nobuyoshi Nakada <nobu@ruby-lang.org>
11283
11284 * progmodes/ruby-mode.el (ruby-mode-map): Remove unnecessary
11285 binding for `newline'.
11286 (ruby-move-to-block): When moving backward, stop at block opening,
11287 not indentation.
11288 * progmodes/ruby-mode.el (ruby-brace-to-do-end)
11289 (ruby-do-end-to-brace, ruby-toggle-block): New functions.
11290 * progmodes/ruby-mode.el (ruby-mode-map): Add binding for
11291 `ruby-toggle-block'.
11292
11293 2012-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
11294
11295 * ibuffer.el (ibuffer-do-toggle-read-only):
11296 * dired.el (dired-toggle-read-only):
11297 * buff-menu.el (Buffer-menu-toggle-read-only):
11298 * bindings.el (mode-line-toggle-read-only):
11299 * bs.el (bs-toggle-readonly): Call toggle-read-only interactively.
11300
11301 2012-08-12 Andreas Schwab <schwab@linux-m68k.org>
11302
11303 * descr-text.el (describe-char): Put the overlays over the
11304 "displayed as" character.
11305
11306 2012-08-12 Jay Belanger <jay.p.belanger@gmail.com>
11307
11308 * calc/calc-units.el (math-default-units-table): Give an
11309 initial value.
11310 (math-put-default-units): Add options to put composite units and
11311 unit systems in the default units table.
11312 (calc-convert-units): Send composite units to
11313 `math-put-default-units' when appropriate.
11314
11315 2012-08-11 Glenn Morris <rgm@gnu.org>
11316
11317 * emacs-lisp/copyright.el (copyright-update-directory): Logic fix.
11318
11319 * tutorial.el (help-with-tutorial):
11320 * emacs-lisp/copyright.el (copyright-update-directory):
11321 * emacs-lisp/autoload.el (autoload-find-generated-file)
11322 (autoload-find-file): Disable local eval: (for insurance).
11323
11324 * files.el (hack-local-variables-filter): If an eval: form is not
11325 known to be safe, and enable-local-variables is :safe, then ignore
11326 the form totally, as is done for non-eval forms. (Bug#12155)
11327 This is CVE-2012-3479.
11328
11329 2012-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
11330
11331 * emacs-lisp/rx.el (rx-constituents): Don't define as constant.
11332 (rx-form): Simplify.
11333
11334 2012-08-09 Dmitry Gutov <dgutov@yandex.ru>
11335
11336 * progmodes/ruby-mode.el (ruby-expr-beg, ruby-parse-partial):
11337 ?, _, and : are symbol constituents, ! is not (but kinda should be).
11338 (ruby-syntax-propertize-heredoc): Use ruby-singleton-class-p.
11339 (ruby-syntax-propertize-function): Adjust for changes in
11340 `ruby-syntax-propertize-heredoc'.
11341
11342 2012-08-09 Nobuyoshi Nakada <nobu@ruby-lang.org>
11343
11344 * progmodes/ruby-mode.el (ruby-mode-map): Remove deprecated
11345 binding (use `M-;' instead).
11346 (ruby-singleton-class-p): New function.
11347 (ruby-expr-beg, ruby-in-here-doc-p) Use it.
11348
11349 2012-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
11350
11351 * emacs-lisp/cl-macs.el (cl-loop): Improve debug spec.
11352
11353 2012-08-10 Chong Yidong <cyd@gnu.org>
11354
11355 * progmodes/python.el (python-shell-get-process-name): Don't mess
11356 with same-window-buffer-names.
11357
11358 * eshell/eshell.el (eshell-add-to-window-buffer-names)
11359 (eshell-remove-from-window-buffer-names): Make obsolete.
11360 (eshell-buffer-name, eshell-unload-hook): Don't use them.
11361 (eshell): Just use pop-to-buffer-same-window instead.
11362
11363 2012-08-10 Chong Yidong <cyd@gnu.org>
11364
11365 * bindings.el: Bind M-= back to count-words-region.
11366
11367 * simple.el (count-words-region): Accept a prefix arg for acting
11368 on the entire buffer.
11369 (count-words--buffer-message): New helper function.
11370
11371 2012-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
11372
11373 * term/x-win.el (x-menu-bar-open): Always pass last-nonmenu-event.
11374 * subr.el (eventp): `nil' is not an event, and eventp is not hot.
11375 (event-start, event-end): Use posn-at-point to return a more
11376 informative posn.
11377 (posnp): New function.
11378 * mouse.el (popup-menu-normalize-position): Use it.
11379
11380 2012-08-10 Masatake YAMATO <yamato@redhat.com>
11381
11382 * mouse.el (popup-menu-normalize-position): New function.
11383 (popup-menu): Use `popup-menu-normalize-position' to normalize
11384 the form for POSITION argument.
11385
11386 * term/x-win.el (x-menu-bar-open):
11387 Use the value returend from (posn-at-point) as position
11388 passed to `popup-menu'.
11389
11390 2012-08-09 Jay Belanger <jay.p.belanger@gmail.com>
11391
11392 * calc/calccomp.el (math-compose-expr): Add extra argument
11393 indicating that parentheses should be put around products in
11394 denominators. Give multiplication precedence over division during
11395 composition.
11396
11397 2012-08-09 Chong Yidong <cyd@gnu.org>
11398
11399 * man.el (Man-switches, Man-sed-command, Man-awk-command)
11400 (Man-mode-hook, Man-cooked-hook, Man-untabify-command-args)
11401 (Man-untabify-command, manual-program): Convert to defcustom
11402 (Bug#10429).
11403
11404 * vc/add-log.el (change-log-mode): Bind comment-start to nil.
11405
11406 * descr-text.el (describe-char): Don't insert extra newlines
11407 (Bug#10127).
11408
11409 * vc/log-view.el (log-view-diff): Use use-region-p (Bug#10133).
11410 (log-view-diff-changeset, log-view-minor-wrap): Likewise.
11411
11412 * align.el (align-region): Delete temporary markers (Bug#10047).
11413 Plus some code cleanups.
11414
11415 2012-08-09 Fabián Ezequiel Gallina <fgallina@cuca>
11416
11417 * progmodes/python.el (python-pdbtrack-tracked-buffer)
11418 (python-pdbtrack-buffers-to-kill, python-shell-internal-buffer)
11419 (python-shell-internal-last-output): Use make-local-variable
11420 instead of make-variable-buffer-local.
11421
11422 2012-08-09 Fabián Ezequiel Gallina <fgallina@cuca>
11423
11424 * progmodes/python.el: Enhancements to forward-sexp.
11425 (python-nav-forward-sexp): Rename from
11426 python-nav-forward-sexp-function.
11427 (python-nav--forward-sexp, python-nav--backward-sexp):
11428 New functions.
11429
11430 2012-08-09 Jay Belanger <jay.p.belanger@gmail.com>
11431
11432 * calc/calc-menu.el (calc-modes-menu): Add entries for matrix
11433 modes and simplification modes.
11434
11435 2012-08-09 Stefan Monnier <monnier@iro.umontreal.ca>
11436
11437 * delsel.el (delete-selection-pre-hook): Don't propagate the
11438 file-supersession signals (bug#12161).
11439
11440 2012-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
11441
11442 * emacs-lisp/cl.el (cl-map-keymap-recursively, cl-map-intervals)
11443 (cl-map-extents): Add compatibility aliases (bug#12135).
11444
11445 2012-08-08 Michael Albinus <michael.albinus@gmx.de>
11446
11447 * net/tramp-sh.el (tramp-find-file-exists-command): Protect the
11448 tests by `ignore-error'.
11449 (tramp-find-shell): Open also a new shell, when cache is already
11450 set. Reported by Carsten Bormann <cabo@tzi.org>. (Bug#12148)
11451
11452 2012-08-08 Juri Linkov <juri@jurta.org>
11453
11454 * bookmark.el: Add `defaults' property to the bookmark record.
11455 (bookmark-current-buffer): Doc fix.
11456 (bookmark-make-record): Add `defaults' property with default values
11457 to the bookmark record.
11458 (bookmark-minibuffer-read-name-map): Remove key binding "\C-u"
11459 with `bookmark-insert-current-bookmark'.
11460 (bookmark-set): Get `defaults' property from the bookmark record
11461 and use it in `read-from-minibuffer'.
11462 (bookmark-insert-current-bookmark): Remove function.
11463
11464 * info.el (Info-bookmark-make-record): Add `defaults' property
11465 with values of canonical Info node name, the current Info file
11466 name and the current Info node name. (Bug#12107)
11467
11468 2012-08-08 Juri Linkov <juri@jurta.org>
11469
11470 * files.el (basic-save-buffer): Use `buffer-name' as the default
11471 of `read-file-name' when buffer is not visiting a file (bug#12128).
11472
11473 2012-08-08 Juri Linkov <juri@jurta.org>
11474
11475 * info.el (Info-isearch-search): Doc fix.
11476 (Info-search): Change search-failed message from "initial node" to
11477 "end of node" (bug#12078).
11478 (Info-isearch-search): Change `isearch-string-state' to
11479 `isearch--state-string'.
11480
11481 2012-08-08 Glenn Morris <rgm@gnu.org>
11482
11483 * language/persian.el: Remove file.
11484 * language/misc-lang.el: Move unique part of persian.el here.
11485 * loadup.el: Remove language/persian.
11486
11487 2012-08-08 Óscar Fuentes <ofv@wanadoo.es>
11488
11489 * vc/diff-mode.el (diff-remove-trailing-whitespace): New function.
11490
11491 2012-08-08 Fabián Ezequiel Gallina <fgallina@cuca>
11492
11493 * progmodes/python.el: Fix defsubst warning.
11494 (python-syntax-context) Rename from python-info-ppss-context.
11495 (python-syntax-context-type): Rename from
11496 python-info-ppss-context-type.
11497 (python-syntax-comment-or-string-p): Rename from
11498 python-info-ppss-comment-or-string-p.
11499
11500 2012-08-08 Jay Belanger <jay.p.belanger@gmail.com>
11501
11502 * calc/calc-misc.el (calc-record-why): Don't record a message twice.
11503
11504 2012-08-07 Andreas Schwab <schwab@linux-m68k.org>
11505
11506 * emacs-lisp/lisp-mode.el (eval-defun-1): Handle standard value of
11507 a defcustom that is quoted with backquote.
11508
11509 * calc/calc-prog.el (math-do-defmath): Use backquote forms.
11510 Fix handling of interactive spec when the body uses return.
11511 (math-do-arg-check, math-define-function-body): Use backquote forms.
11512 * calc/calc-ext.el (math-defcache): Likewise.
11513 * calc/calc-rewr.el (math-rwfail, math-rweval): Likewise.
11514 * allout.el (allout-new-exposure): Likewise.
11515 * calc/calcalg2.el (math-tracing-integral): Likewise.
11516 * info.el (Info-last-menu-item): Likewise.
11517 * emulation/vip.el (vip-loop): Likewise.
11518 * textmodes/artist.el (artist-funcall): Likewise.
11519 * menu-bar.el (menu-bar-make-mm-toggle, menu-bar-make-toggle):
11520 Construct menu-item directly.
11521
11522 * progmodes/autoconf.el (font-lock-syntactic-keywords):
11523 Don't declare.
11524
11525 2012-08-07 Chong Yidong <cyd@gnu.org>
11526
11527 * simple.el (deactivate-mark): Preserve text properties when
11528 saving the primary selection (Bug#8384).
11529
11530 2012-08-07 Kevin Ryde <user42@zip.com.au>
11531
11532 * woman.el (woman0-if): Quietly treat ".if v" as false (Bug#12109).
11533 (woman-parse-numeric-value): On a bad .IP line, issue a warning
11534 and continue processing (Bug#12110).
11535
11536 2012-08-06 Stefan Monnier <monnier@iro.umontreal.ca>
11537
11538 * progmodes/cperl-mode.el (cperl-mode): Yet another fix for
11539 syntax-propertize-function (bug#10095).
11540
11541 2012-08-06 Stefan Monnier <monnier@iro.umontreal.ca>
11542
11543 * help-fns.el (help-fns--key-bindings, help-fns--signature)
11544 (help-fns--parent-mode, help-fns--obsolete): New funs, extracted from
11545 describe-function-1.
11546 (describe-function-1): Use them. Move compiler macro after sig.
11547 (help-fns--compiler-macro): Use function-get. Assume we're already in
11548 standard-output. Adjust layout to new call order.
11549
11550 * emacs-lisp/cl-macs.el (cl--sm-macroexpand): Fix handling of
11551 re-binding a symbol that has a symbol-macro (bug#12119).
11552
11553 2012-08-06 Mohsen BANAN <libre@mohsen.1.banan.byname.net>
11554
11555 * language/persian.el: New file. (Bug#11812)
11556 * loadup.el: Add language/persian.el.
11557
11558 2012-08-06 Chong Yidong <cyd@gnu.org>
11559
11560 * window.el (window--maybe-raise-frame): New function.
11561 (window--display-buffer): Split off from here.
11562 (display-buffer-reuse-window, display-buffer-pop-up-frame)
11563 (display-buffer-pop-up-window, display-buffer-use-some-window):
11564 Obey an inhibit-switch-frame action alist entry.
11565 (display-buffer): Update doc.
11566
11567 * replace.el (occur-after-change-function): Avoid losing focus by
11568 using the inhibit-switch-frame display parameter (Bug#12139).
11569
11570 2012-08-06 Fabián Ezequiel Gallina <fgallina@cuca>
11571
11572 Make internal shell process buffer names start with space.
11573 * progmodes/python.el (python-shell-make-comint): Add optional
11574 argument INTERNAL.
11575 (run-python-internal): Use it.
11576 (python-shell-internal-get-or-create-process): Check for new
11577 internal buffer names.
11578
11579 2012-08-06 Glenn Morris <rgm@gnu.org>
11580
11581 * eshell/esh-ext.el (eshell/addpath): Use dolist and mapconcat.
11582 Do less getting and setting of environment variables.
11583
11584 2012-08-05 Chong Yidong <cyd@gnu.org>
11585
11586 * proced.el (proced): Add substitution string to docstring to
11587 trigger autoloading of the proced library on C-h f (Bug#1768).
11588
11589 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
11590 Don't show defvars which have no second argument (Bug#8638).
11591
11592 * imenu.el (imenu-generic-expression): Move documentation here
11593 from imenu--generic-function.
11594 (imenu--generic-function): Refer to imenu-generic-expression.
11595
11596 2012-08-05 Vegard Øye <vegard_oye@hotmail.com> (tiny change)
11597
11598 * emulation/viper-init.el (viper-deflocalvar): Add docstring and
11599 indentation declaration.
11600 (viper-loop): Add indentation declaration (Bug#7025).
11601
11602 2012-08-05 Chong Yidong <cyd@gnu.org>
11603
11604 * help-fns.el (describe-variable): Add hyperlink for
11605 directory-local variables files. Improve buffer-local and
11606 permanent-local reporting; suggested by MON KEY (Bug#6644).
11607
11608 * help-mode.el (help-dir-local-var-def): New button type.
11609
11610 * files.el (kill-buffer-hook): Provide a defvar.
11611
11612 2012-08-05 Glenn Morris <rgm@gnu.org>
11613
11614 * eshell/esh-ext.el (eshell/addpath):
11615 Also update eshell-path-env. (Bug#12013)
11616
11617 2012-08-05 Chong Yidong <cyd@gnu.org>
11618
11619 * wdired.el (wdired-mode, wdired-change-to-wdired-mode): Doc fixes.
11620
11621 * fringe.el (fringe-styles): Add docstring.
11622 (fringe--check-mode): New function.
11623 (set-fringe-mode, set-fringe-style): Use it.
11624 (fringe-mode, set-fringe-style): Doc fixes (Bug#6480).
11625
11626 * files.el (set-auto-mode): Fix invalid setq call.
11627
11628 2012-08-04 Stefan Monnier <monnier@iro.umontreal.ca>
11629
11630 * isearch.el: Misc simplification; use defstruct.
11631 (isearch-mode-map): Dense maps now work like sparse ones.
11632 (isearch--state): New defstruct.
11633 (isearch-string-state, isearch-message-state, isearch-point-state)
11634 (isearch-success-state, isearch-forward-state)
11635 (isearch-other-end-state, isearch-word-state, isearch-error-state)
11636 (isearch-wrapped-state, isearch-barrier-state)
11637 (isearch-case-fold-search-state, isearch-pop-fun-state): Remove,
11638 replaced by defstruct's accessors.
11639 (isearch--set-state): Rename from isearch-top-state and change
11640 calling convention.
11641 (isearch-push-state): Use new isearch--get-state.
11642 (isearch-toggle-word): Disable regexp when enabling word.
11643 (isearch-message-prefix): Remove unused arg _c-q-hack.
11644 (isearch-message-suffix): Remove unused arg _ellipsis.
11645
11646 2012-08-04 Andreas Schwab <schwab@linux-m68k.org>
11647
11648 * simple.el (list-processes--refresh): For a server use :host or
11649 :local as the address.
11650 (list-processes): Doc fix.
11651
11652 2012-08-04 Michal Nazarewicz <mina86@mina86.com>
11653
11654 * lisp/mpc.el: Support password in host argument.
11655 (mpc--proc-connect): Parse and use new password element.
11656 Set mpc-proc variable instead of returning process.
11657 (mpc-proc): Adjust accordingly.
11658
11659 2012-08-03 Eli Zaretskii <eliz@gnu.org>
11660
11661 * whitespace.el (whitespace-display-mappings): Use Unicode
11662 codepoints, instead of emacs-mule codepoints. See
11663 http://lists.gnu.org/archive/html/help-gnu-emacs/2012-07/msg00366.html
11664 for the details.
11665
11666 * files.el (file-truename): Don't skip symlink-chasing part on
11667 windows-nt. Incorporate the resolution of 8+3 short aliases on
11668 Windows into the loop that recursively chases symlinks.
11669 Compare directory and its parent case-insensitively on MS-Windows and
11670 MS-DOS.
11671
11672 2012-08-03 Chong Yidong <cyd@gnu.org>
11673
11674 * menu-bar.el (menu-bar-tools-menu): Remove PCL-CVS.
11675
11676 * sort.el (sort-regexp-fields): Doc fix.
11677
11678 2012-08-03 Tassilo Horn <tsdh@gnu.org>
11679
11680 * textmodes/reftex.el (reftex-compile-variables): Make keyvals
11681 labels regex position point at the expected place.
11682
11683 2012-08-03 MON KEY <monkey@sandpframing.com>
11684
11685 * net/imap.el (imap-interactive-login, imap-authenticate)
11686 (imap-mailbox-lsub, imap-mailbox-list)
11687 (imap-mailbox-status-asynch, imap-mailbox-acl-delete)
11688 (imap-fetch, imap-message-flag-permanent-p, imap-envelope-from)
11689 (imap-parse-response): Doc fix.
11690
11691 2012-08-03 João Távora <joaotavora@gmail.com>
11692
11693 * textmodes/tex-mode.el (latex-forward-sexp): Terminate the loop
11694 if sexp scanning does not move point (Bug#5734).
11695
11696 2012-08-02 Tassilo Horn <tsdh@gnu.org>
11697
11698 * textmodes/reftex-vars.el (reftex-default-label-alist-entries):
11699 Add listings, minted, and ctable packages.
11700 (reftex-label-alist-builtin): Move listings, minted, and ctable
11701 entries before LaTeX.
11702 (reftex-label-alist): Docfix.
11703
11704 2012-08-02 Bastien Guerry <bzg@gnu.org>
11705
11706 * replace.el (occur): Fix docstring (bug#12122).
11707
11708 2012-08-02 Glenn Morris <rgm@gnu.org>
11709
11710 * emacs-lisp/authors.el (authors-renamed-files-alist): Add ms-w32.h.
11711
11712 2012-08-02 Paul Eggert <eggert@cs.ucla.edu>
11713
11714 Obsolete alias inactivate-current-input-method-function (Bug#10150).
11715 * international/mule-cmds.el: Create
11716 inactivate-current-input-method-function as an obsolete alias for
11717 deactivate-current-input-method-function. See Katsumi Yamaoka in
11718 <http://bugs.gnu.org/10150#46>.
11719
11720 2012-08-01 Jay Belanger <jay.p.belanger@gmail.com>
11721
11722 * calc/calc-mode.el (calc-set-simplify-mode): Use `cond' instead
11723 of nested `if's.
11724
11725 2012-08-01 Glenn Morris <rgm@gnu.org>
11726
11727 * progmodes/autoconf.el (autoconf-definition-regexp):
11728 Add AH_TEMPLATE, adjust submatch numbering.
11729 (autoconf-font-lock-keywords, autoconf-imenu-generic-expression)
11730 (autoconf-current-defun-function): Update for above change.
11731 (autoconf-current-defun-function): First skip to end of current word.
11732
11733 2012-08-01 Rupert Swarbrick <rswarbrick@gmail.com> (tiny change)
11734
11735 * calendar/cal-html.el (cal-html-insert-agenda-days):
11736 Fix typo. (Bug#12018)
11737
11738 2012-07-31 Fabián Ezequiel Gallina <fgallina@cuca>
11739
11740 Shell processes: enhancements to startup and CEDET compatibility.
11741 * progmodes/python.el (python-shell-send-setup-max-wait): Delete var.
11742 (python-shell-make-comint): accept-process-output at startup.
11743 (run-python-internal): Set inferior-python-mode-hook to nil.
11744 (python-shell-internal-get-or-create-process): Call sit-for.
11745 (python-preoutput-result): Add obsolete alias.
11746 (python-shell-internal-send-string): Use it.
11747 (python-shell-send-setup-code): Remove call to
11748 accept-process-output.
11749
11750 2012-07-31 Andreas Schwab <schwab@linux-m68k.org>
11751
11752 * buff-menu.el (list-buffers-noselect): Use prefix-numeric-value.
11753 (Bug#12108)
11754
11755 2012-07-31 Jay Belanger <jay.p.belanger@gmail.com>
11756
11757 * calc-mode.el (calc-basic-simplification-mode): Rename from
11758 `calc-limited-simplification-mode'.
11759 (calc-alg-simplification-mode): New function.
11760 (calc-set-simplify-mode): Adjust message.
11761
11762 * calc.el (calc-set-mode-line): Adjust mode line display for
11763 basic simplification mode.
11764
11765 * calc-help.el (calc-m-prefix-help): Update help message.
11766
11767 * calc-ext.el (calc-init-extensions): Add bindings and autoloads
11768 for `calc-basic-simplify-mode' and `calc-alg-simplify-mode'.
11769
11770 2012-07-31 Bastien Guerry <bzg@gnu.org>
11771
11772 * man.el (man): Fix comment. (bug#12101)
11773
11774 2012-07-31 Martin Rudalics <rudalics@gmx.at>
11775
11776 * window.el (switch-to-prev-buffer, switch-to-next-buffer):
11777 Don't return a non-nil value when no suitable buffer was found.
11778
11779 2012-07-31 Fabián Ezequiel Gallina <fgallina@cuca>
11780
11781 * progmodes/python.el (run-python-internal): Disable font lock for
11782 internal shells.
11783
11784 2012-07-30 Stefan Merten <smerten@oekonux.de>
11785
11786 * textmodes/rst.el: Silence `checkdoc-ispell'.
11787 (rst-cvs-header, rst-svn-rev, rst-svn-timestamp)
11788 (rst-official-version, rst-official-cvs-rev)
11789 (rst-package-emacs-version-alist): Update to upstream V1.3.1.
11790 (rst-mode-map): New key binding.
11791
11792 2012-07-30 Paul Eggert <eggert@cs.ucla.edu>
11793
11794 Update .PHONY listings in makefiles.
11795 * Makefile.in (.PHONY): Add all, doit, custom-deps, finder-data,
11796 autoloads, update-subdirs, updates, bzr-update, update-authors,
11797 compile-onefile, compile-calc, backup-compiled-files,
11798 compile-after-backup, compile-one-process, mh-autoloads,
11799 bootstrap-clean, distclean, maintainer-clean.
11800
11801 2012-07-29 Jay Belanger <jay.p.belanger@gmail.com>
11802
11803 * calc/calc.el (calc-simplify-mode): Make 'alg the default value.
11804 (calc-set-mode-line): Don't display "AlgSimp ".
11805
11806 * calc/calc-mode.el (calc-alg-simplify-mode): Remove function.
11807 (calc-lim-simplify-mode): New function.
11808 (calc-set-simplify-mode): Default to 'alg.
11809 (calc-default-simplify-mode): Make algebraic simplifications
11810 the default.
11811
11812 * calc/calc-ext.el (calc-init-extensions): Remove binding for
11813 `calc-alg-simplify-mode'. Add binding for `calc-lim-simplify-mode'.
11814
11815 * calc/calc-help.el (calc-m-prefix-help): Change messages to
11816 indicate new simplification modes.
11817
11818 * calc/README: Mention new default simplification mode.
11819
11820 * calc/calc.el (math-normalize-error): New variable.
11821 (math-normalize): Set `math-normalize-error' to t
11822 when there's an error.
11823
11824 * calc/calc-alg.el (math-simplify): Don't simplify when
11825 `math-normalize' returns an error.
11826
11827 2012-07-29 Eli Zaretskii <eliz@gnu.org>
11828
11829 * international/mule-cmds.el (set-locale-environment): Revert last
11830 change, since display-graphic-p returns nil when this function is
11831 called during startup. Instead...
11832
11833 * term/w32console.el (terminal-init-w32console): ...setup the
11834 keyboard and terminal encoding for TTY sessions here. (Bug#12082)
11835
11836 2012-07-29 Juri Linkov <juri@jurta.org>
11837
11838 * simple.el (goto-line): Don't display default line number in the
11839 prompt because it should be displayed by `read-number' (bug#9952).
11840 Add the current line number to the defaults of `goto-line' to
11841 allow its easier modification by users with `M-n' (bug#9201).
11842
11843 * subr.el (read-number): Support multiple default values like in
11844 other minibuffer reading functions. Replace `read' with
11845 `string-to-number' for consistency with `number-to-string'.
11846
11847 2012-07-29 Paul Eggert <eggert@cs.ucla.edu>
11848
11849 deactive->inactive, inactivate->deactivate spelling fixes (Bug#10150)
11850 * emulation/viper-init.el (viper-deactivate-input-method-action):
11851 Rename from viper-inactivate-input-method-action.
11852 (viper-deactivate-input-method):
11853 Rename from viper-inactivate-input-method.
11854 * follow.el (follow-inactive-menu): Rename from follow-deactive-menu.
11855 * international/mule-cmds.el (deactivate-input-method):
11856 Rename from inactivate-input-method.
11857 Also run input-method-deactivate-hook.
11858 (deactivate-current-input-method-function):
11859 Rename from inactivate-current-input-method-function.
11860 (input-method-deactivate-hook): New hook.
11861 (input-method-inactivate-hook): Mark obsolete.
11862 (inactivate-input-method): Mark obsolete.
11863
11864 * international/quail.el (quail-activate):
11865 Also run quail-deactivate-hook.
11866 (quail-deactivate): Rename from quail-inactivate.
11867 * international/robin.el (robin-activate):
11868 Also run robin-deactivate-hook.
11869 (robin-deactivate): Rename from robin-inactivate.
11870
11871 2012-07-29 Chong Yidong <cyd@gnu.org>
11872
11873 * simple.el (indicate-copied-region): New function.
11874 (kill-ring-save): Split off from here.
11875
11876 * rect.el (copy-rectangle-as-kill): Call indicate-copied-region.
11877 (kill-rectangle): Set deactivate-mark to t on read-only error.
11878
11879 * register.el (copy-to-register, copy-rectangle-to-register):
11880 Deactivate the mark, and use indicate-copied-region (Bug#10056).
11881 (append-to-register, prepend-to-register): Call indicate-copied-region.
11882
11883 2012-07-29 Juri Linkov <juri@jurta.org>
11884
11885 * simple.el (async-shell-command-buffer): New defcustom.
11886 (shell-command): Use it. (Bug#4719)
11887
11888 2012-07-28 Eli Zaretskii <eliz@gnu.org>
11889
11890 * international/mule-cmds.el (set-locale-environment): In a
11891 console session on MS-Windows, set up keyboard and terminal
11892 encoding from the OEM codepage, not the ANSI codepage.
11893 (Bug#12055)
11894
11895 2012-07-28 Chong Yidong <cyd@gnu.org>
11896
11897 * progmodes/gdb-mi.el (gdb-place-breakpoints): Fix the call to
11898 gdb-get-location.
11899
11900 2012-07-28 Leo Liu <sdl.web@gmail.com>
11901
11902 * progmodes/cc-menus.el (cc-imenu-objc-function): Avoid leaving nil in
11903 the alist (bug#12029).
11904
11905 2012-07-28 Eli Zaretskii <eliz@gnu.org>
11906
11907 * makefile.w32-in (custom-deps, finder-data, updates, compile)
11908 (compile-always, compile-first)
11909 ($(lisp)/calendar/cal-loaddefs.el)
11910 ($(lisp)/calendar/diary-loaddefs.el)
11911 ($(lisp)/calendar/hol-loaddefs.el, $(lisp)/mh-e/mh-loaddefs.el)
11912 ($(lisp)/net/tramp-loaddefs.el, bootstrap)
11913 ($(lisp)/progmodes/cc-mode.elc): Depend on $(lisp)subdirs.el,
11914 instead of on update-subdirs.
11915 (bootstrap-clean): Delete $(lisp)/subdirs.el.
11916
11917 2012-07-28 Chong Yidong <cyd@gnu.org>
11918
11919 * vc/vc.el (vc-root-diff, vc-print-root-log): Prompt for a
11920 directory if vc-deduce-backend returns nil (Bug#7350).
11921
11922 * simple.el (delete-trailing-lines): New option.
11923 (delete-trailing-whitespace): Obey it (Bug#11879).
11924
11925 2012-07-28 David Engster <deng@randomsample.de>
11926
11927 * xml.el (xml-node-name, xml-parse-file, xml-parse-region):
11928 Explanation of new 'symbol-qnames feature in doc-strings.
11929 (xml-maybe-do-ns): Return expanded names as plain symbols if
11930 'symbol-qnames was provided in XML-NS argument (Bug#11916).
11931 (xml-parse-tag-1): Deal with new definition of PARSE-NS argument.
11932
11933 2012-07-27 Fabián Ezequiel Gallina <fgallina@cuca>
11934
11935 Consistent completion in inferior python with emacs -nw.
11936 * progmodes/python.el (inferior-python-mode): Replace "<tab>"
11937 binding in inferior-python-mode-map with "\t".
11938 (python-shell-completion-complete-at-point)
11939 (python-completion-complete-at-point): Remove interactive spec.
11940
11941 2012-07-27 Jay Belanger <jay.p.belanger@gmail.com>
11942
11943 * calc/calccomp.el (math-compose-expr): Undo previous change.
11944
11945 2012-07-27 Fabián Ezequiel Gallina <fgallina@cuca>
11946
11947 * progmodes/python.el (python-mode-map): Add keybinding for
11948 run-python.
11949 (python-shell-make-comint): Fix pop-to-buffer call.
11950 (run-python): Autoload. New arg SHOW.
11951 (python-shell-get-or-create-process): Do not pop python process
11952 buffer.
11953
11954 2012-07-27 Michael Albinus <michael.albinus@gmx.de>
11955
11956 * notifications.el (notifications-on-action-signal)
11957 (notifications-on-closed-signal): Use also the bus address for the map.
11958 (notifications-notify, notifications-close-notification)
11959 (notifications-get-capabilities): Add optional argument BUS.
11960
11961 2012-07-27 Tassilo Horn <tsdh@gnu.org>
11962
11963 * textmodes/reftex-vars.el (reftex-label-alist-builtin):
11964 Add support for the lstlisting and minted environments, and for the
11965 ctable macro.
11966 * textmodes/reftex.el (reftex-compile-variables): Also recognize
11967 labels written in keyvals syntax.
11968
11969 2012-07-27 Jay Belanger <jay.p.belanger@gmail.com>
11970
11971 * calc/calccomp.el (math-compose-expr): Use parentheses when
11972 there is a product in the denominator of a fraction.
11973
11974 2012-07-26 Eli Zaretskii <eliz@gnu.org>
11975
11976 * makefile.w32-in ($(lisp)/calendar/cal-loaddefs.el)
11977 ($(lisp)/calendar/diary-loaddefs.el)
11978 ($(lisp)/calendar/hol-loaddefs.el, $(lisp)/mh-e/mh-loaddefs.el)
11979 ($(lisp)/net/tramp-loaddefs.el): Depend on update-subdirs.
11980 Fixes failures in parallel bootstrap because subdirs.el is being
11981 rewritten while the autoload files are built at the same time,
11982 which needs to load subdirs.el.
11983
11984 2012-07-26 Martin Rudalics <rudalics@gmx.at>
11985
11986 * mouse.el (popup-menu): Fix doc-string and re-indent code.
11987 (mouse-drag-line): Don't exit tracking when a switch-frame or
11988 switch-window event occurs (Bug#12006).
11989
11990 2012-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
11991
11992 * mouse.el (popup-menu): Fix last change.
11993
11994 2012-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
11995
11996 Autoload from Lisp with more care. Follow aliases when looking for
11997 function properties.
11998 * subr.el (autoloadp): New function.
11999 (symbol-file): Use it.
12000 (function-get): New function.
12001 * emacs-lisp/macroexp.el (macroexp--expand-all): Use function-get and
12002 autoload-do-load.
12003 * emacs-lisp/lisp-mode.el (lisp-font-lock-syntactic-face-function)
12004 (lisp-indent-function):
12005 * emacs-lisp/gv.el (gv-get):
12006 * emacs-lisp/edebug.el (get-edebug-spec, edebug-basic-spec):
12007 * emacs-lisp/byte-opt.el (byte-optimize-form):
12008 * emacs-lisp/bytecomp.el (byte-compile-arglist-warn):
12009 * emacs-lisp/autoload.el (make-autoload, autoload-print-form):
12010 Use function-get.
12011 * emacs-lisp/cl.el: Don't propagate function properties any more.
12012
12013 * speedbar.el (speedbar-add-localized-speedbar-support):
12014 * emacs-lisp/disass.el (disassemble-internal):
12015 * desktop.el (desktop-load-file):
12016 * help-fns.el (help-function-arglist, find-lisp-object-file-name)
12017 (describe-function-1):
12018 * emacs-lisp/find-func.el (find-function-noselect):
12019 * emacs-lisp/elp.el (elp-instrument-function):
12020 * emacs-lisp/advice.el (ad-has-proper-definition):
12021 * apropos.el (apropos-safe-documentation, apropos-macrop):
12022 * emacs-lisp/debug.el (debug-on-entry):
12023 * emacs-lisp/cl-macs.el (cl-compiler-macroexpand):
12024 * emacs-lisp/byte-opt.el (byte-compile-inline-expand):
12025 * calc/calc.el (name): Use autoloadp & autoload-do-load.
12026
12027 2012-07-25 Alp Aker <alp.tekin.aker@gmail.com>
12028
12029 * international/mule-cmds.el (ucs-insert): Mark it as an obsolete
12030 function, not an obsolete variable (Bug#12046).
12031
12032 2012-07-25 Andreas Schwab <schwab@linux-m68k.org>
12033
12034 * faces.el (face-spec-reset-face): Fix last change. (Bug#12042)
12035
12036 2012-07-25 Christopher Schmidt <christopher@ch.ristopher.com>
12037
12038 * emacs-lisp/pp.el (pp-display-expression): Select old selected
12039 window only if it is still live (Bug#12034).
12040
12041 2012-07-25 Martin Rudalics <rudalics@gmx.at>
12042
12043 * subr.el (redirect-frame-focus): Add advertised calling
12044 convention (Bug#12030).
12045
12046 2012-07-25 Paul Eggert <eggert@cs.ucla.edu>
12047
12048 Prefer typical American spelling for "acknowledgment".
12049 * vc/add-log.el (change-log-acknowledgment): Rename from
12050 change-log-acknowledgement, with an alias for the old name.
12051
12052 2012-07-25 Jay Belanger <jay.p.belanger@gmail.com>
12053
12054 * calc-alg.el (math-simplify-divide): Don't cross multiply
12055 in an equation when the lhs is a variable.
12056
12057 2012-07-24 Julien Danjou <julien@danjou.info>
12058
12059 * net/netrc.el (netrc-find-service-number, netrc-store-data):
12060 Remove, unused.
12061
12062 2012-07-23 Eli Zaretskii <eliz@gnu.org>
12063
12064 * startup.el (command-line): Don't display an empty user name in
12065 the error message about non-existent home directory, when
12066 init-file-user was set to an empty string. See
12067 http://lists.gnu.org/archive/html/bug-gnu-emacs/2012-07/msg00835.html
12068 for the details and context.
12069
12070 2012-07-22 Vincent Belaïche <vincentb1@users.sourceforge.net>
12071
12072 * ses.el (ses-cell-formula-aset): New macro.
12073 (ses-cell-references-aset): New macro.
12074 (ses-cell-p): New function.
12075 (ses-rename-cell): Do no longer rely on complex operations like
12076 ses-cell-set-formula or ses-set-cell to change the cell and handle
12077 the undo at the same time, but rather use lower level new macros
12078 `ses-cell-formula-aset' and `ses-cell-references-aset' and handle
12079 the undo directly. Refresh the mode line.
12080
12081 2012-07-21 Leo Liu <sdl.web@gmail.com>
12082
12083 * progmodes/cc-cmds.el (c-defun-name):
12084 Use match-string-no-properties instead for consistency.
12085
12086 2012-07-20 Leo Liu <sdl.web@gmail.com>
12087
12088 * progmodes/cc-cmds.el (c-defun-name): Handle objc selectors properly.
12089 (Bug#7879)
12090
12091 * progmodes/cc-langs.el (c-symbol-start): Include char _ (bug#11986).
12092
12093 2012-07-20 Stefan Monnier <monnier@iro.umontreal.ca>
12094
12095 * userlock.el, emacs-lisp/map-ynp.el: Declare part of `emacs' package.
12096 * progmodes/bug-reference.el, misearch.el: Provide themselves
12097 (bug#11915).
12098
12099 * progmodes/cperl-mode.el (cperl-unwind-to-safe): Don't inf-loop at end
12100 of narrowed buffer (bug#11966).
12101
12102 2012-07-20 Vincent Belaïche <vincentb1@users.sourceforge.net>
12103
12104 * ses.el (ses-rename-cell): Set new name also in reference list of
12105 cells of which the renamed cell depends.
12106
12107 2012-07-20 Masatake YAMATO <yamato@redhat.com>
12108
12109 * term/x-win.el (x-menu-bar-open): Use `frame-parameter'
12110 to check whether menu-bar is shown or not. If not shown,
12111 show the menu-bar as a popup menu instead of using tmm.
12112 * mouse.el (popup-menu): Accept `point' as `position' argument.
12113
12114 2012-07-20 Dmitry Gutov <dgutov@yandex.ru>
12115
12116 * progmodes/ruby-mode.el (ruby-parse-partial): No error when end
12117 up inside string symbol literal (bug#11923).
12118
12119 2012-07-20 Eli Zaretskii <eliz@gnu.org>
12120
12121 * startup.el (fancy-startup-text): Read the whole tutorial, not
12122 just its first 256 bytes. Prevents gibberish in display of the
12123 tutorial title.
12124
12125 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
12126
12127 Drop idle buffer compaction due to an absence of the
12128 proved efficiency.
12129 * compact.el: Remove.
12130
12131 2012-07-19 Sam Steingold <sds@gnu.org>
12132
12133 * vc/vc-dispatcher.el (vc-compilation-mode): Add, based on
12134 vc-bzr-pull & vc-bzr-merge-branch.
12135 * vc/vc-bzr.el (vc-bzr-pull, vc-bzr-merge-branch): Use it.
12136 (vc-bzr-error-regexp-alist): Rename from vc-bzr-error-regex-alist
12137 for consistency with compilation-error-regexp-alist.
12138 * vc/vc-git.el (vc-git-error-regexp-alist): Add.
12139 (vc-git-pull, vc-git-merge-branch): Call vc-compilation-mode.
12140 * vc/vc-hg.el (vc-hg-error-regexp-alist): Add.
12141 (vc-hg-pull, vc-hg-merge-branch): Call vc-compilation-mode.
12142
12143 2012-07-19 Stefan Monnier <monnier@iro.umontreal.ca>
12144
12145 * emacs-lisp/chart.el: Use lexical-binding.
12146 (chart-emacs-storage): Don't hardcode the list of entries.
12147
12148 2012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
12149
12150 Next round of tweaks caused by Fgarbage_collect changes.
12151 * emacs-lisp/chart.el (chart-emacs-storage): Adjust again.
12152
12153 2012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
12154
12155 Compact buffers when idle.
12156 * compact.el: New file.
12157
12158 2012-07-19 Stefan Monnier <monnier@iro.umontreal.ca>
12159
12160 * subr.el (eventp): Presume that if it looks vaguely like an event,
12161 it's an event (bug#10190).
12162
12163 2012-07-19 Fabián Ezequiel Gallina <fgallina@cuca>
12164
12165 Enhancements to ppss related code (thanks Stefan).
12166 * progmodes/python.el (python-indent-context)
12167 (python-indent-calculate-indentation, python-indent-dedent-line)
12168 (python-indent-electric-colon, python-nav-forward-block)
12169 (python-mode-abbrev-table)
12170 (python-info-assignment-continuation-line-p): Simplify checks
12171 for ppss context.
12172 (python-info-continuation-line-p): Cleanup.
12173 (python-info-ppss-context): Do not catch 'quote.
12174 (python-info-ppss-context-type)
12175 (python-info-ppss-comment-or-string-p): Simplify.
12176
12177 2012-07-18 Fabián Ezequiel Gallina <fgallina@cuca>
12178
12179 * progmodes/python.el: Enhancements to eldoc support.
12180 (python-info-current-symbol): New function.
12181 (python-eldoc-at-point): Use python-info-current-symbol.
12182 (python-info-current-defun): Fix cornercase on first defun scan.
12183 (python-eldoc--get-doc-at-point): Use python-info-current-symbol
12184 and signal error when no inferior python process is available.
12185
12186 2012-07-18 Dmitry Gutov <dgutov@yandex.ru>
12187
12188 * vc/vc-git.el (vc-git-state): Don't call `vc-git-registered',
12189 assume it's always t.
12190 (vc-git-registered): Remove caching, the function is only called
12191 once.
12192 (vc-git-branches): Use `vc-git--call' instead of `call-process'.
12193
12194 2012-07-18 Chong Yidong <cyd@gnu.org>
12195
12196 * subr.el (last-input-char, last-command-char): Remove (Bug#9195).
12197
12198 * simple.el (count-words): Report on narrowing (Bug#9959).
12199
12200 * bindings.el: Bind M-= to count-words.
12201
12202 * faces.el (face-spec-reset-face): Handle reverse video (Bug#4238).
12203
12204 2012-07-18 Masatake YAMATO <yamato@redhat.com>
12205
12206 * progmodes/sh-script.el (sh-imenu-generic-expression):
12207 Capture a function with `function' keyword and without parentheses
12208 like "function FOO" (bug#11856).
12209
12210 2012-07-18 Tassilo Horn <tassilo@member.fsf.org>
12211
12212 * window.el (split-window-sensibly): Make WINDOW argument
12213 optional.
12214
12215 2012-07-18 Chong Yidong <cyd@gnu.org>
12216
12217 * subr.el (keyboard-translate): Doc fix (Bug#7261).
12218
12219 * isearch.el (isearch-mode-map): Handle C-x 8 key translations,
12220 and make C-x 8 RET exit isearch (Bug#11439).
12221
12222 * international/iso-transl.el: Move isearch-mode-map key
12223 definitions to isearch.el.
12224
12225 2012-07-18 Stefan Monnier <monnier@iro.umontreal.ca>
12226
12227 * emacs-lisp/eieio.el: Adapt further to gv.el (bug#11970).
12228 (eieio-defclass): Use gv-define-setter when possible.
12229
12230 2012-07-18 Dmitry Antipov <dmantipov@yandex.ru>
12231
12232 Reflect recent changes in Fgarbage_collect.
12233 * emacs-lisp/chart.el (chart-emacs-storage): Change to
12234 reflect new format of data returned by Fgarbage_collect.
12235
12236 2012-07-17 Fabián Ezequiel Gallina <fgallina@cuca>
12237
12238 New utility functions + python-info-ppss-context fix (Bug#11910).
12239 * progmodes/python.el (python-info-beginning-of-block-statement-p)
12240 (python-info-ppss-comment-or-string-p): New functions.
12241 (python-info-ppss-context): Small fix for string check.
12242
12243 2012-07-17 Juri Linkov <juri@jurta.org>
12244
12245 * dired-aux.el (dired-do-async-shell-command): Doc fix.
12246 (dired-do-async-shell-command): Don't add `*' at the end of the
12247 command (Bug#11815).
12248 (dired-do-shell-command): Doc fix.
12249 (dired-shell-stuff-it): Strip the trailing "&" and ";" if any.
12250 Join the individual commands using either "&" or ";" as the
12251 separator depending on the values of these trailing characters.
12252 At the end re-add the trailing "&". (Bug#10598)
12253
12254 * simple.el (async-shell-command): Sync the interactive spec with
12255 `shell-command'. Doc fix.
12256 (shell-command): Doc fix.
12257
12258 2012-07-17 Juri Linkov <juri@jurta.org>
12259
12260 * descr-text.el (describe-char): Fix format args. (Bug#10129)
12261
12262 2012-07-17 Fabián Ezequiel Gallina <fgallina@cuca>
12263
12264 Final renames and doc fixes for movement commands (bug#11899).
12265 * progmodes/python.el (python-nav-beginning-of-statement):
12266 Rename from python-nav-statement-start.
12267 (python-nav-end-of-statement): Rename from
12268 python-nav-statement-end.
12269 (python-nav-beginning-of-block): Rename from
12270 python-nav-block-start.
12271 (python-nav-end-of-block): Rename from python-nav-block-end.
12272
12273 2012-07-17 Fabián Ezequiel Gallina <fgallina@cuca>
12274
12275 * progmodes/python.el (python-shell-send-string-no-output):
12276 Allow accept-process-output to quit, keeping shell process ready for
12277 future interactions (Bug#11868).
12278
12279 2012-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
12280
12281 * emacs-lisp/cl-macs.el (cl-progv): Use a properly prefixed var name.
12282
12283 * emacs-lisp/elint.el (elint-find-args-in-code):
12284 Use help-function-arglist, so as to handle lexical byte-code.
12285
12286 * progmodes/sh-script.el (sh-syntax-propertize-function): Fix last
12287 change (bug#11826).
12288
12289 2012-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
12290
12291 * progmodes/cc-engine.el (c-forward-sws, c-backward-sws):
12292 Avoid spuriously marking the buffer as modified because of c-is-sws.
12293
12294 * progmodes/sh-script.el (sh-syntax-propertize-function): Mark "${#VAR"
12295 as not-a-comment (bug#11946).
12296
12297 * emacs-lisp/macroexp.el (macroexp-let2): Use more informative names
12298 for uninterned vars.
12299
12300 * xt-mouse.el (xterm-mouse-translate-1, xterm-mouse-event-read):
12301 Use read-event since we don't really want to read chars but bytes.
12302
12303 * textmodes/tex-mode.el (tex-font-lock-keywords-1): Highlight not only
12304 $$..$$ but also $..$ using regexps (bug#11953).
12305 Use tex-verbatim for \url and \path.
12306 (tex-font-lock-keywords): Define as defconst like the others.
12307 (tex-common-initialization): Don't use font-lock-syntax-table any more.
12308
12309 2012-07-16 René Kyllingstad <Rene@Kyllingstad.com> (tiny change)
12310
12311 * international/mule-cmds.el (ucs-insert): Make it an obsolete
12312 alias for insert-char.
12313
12314 2012-07-16 Fabián Ezequiel Gallina <fgallina@cuca>
12315
12316 * progmodes/python.el: Simplified imenu implementation.
12317 (python-nav-jump-to-defun): Remove command.
12318 (python-mode-map): Use `imenu' instead.
12319 (python-nav-list-defun-positions-cache)
12320 (python-imenu-include-defun-type, python-imenu-make-tree)
12321 (python-imenu-subtree-root-label, python-imenu-index-alist):
12322 Remove vars.
12323 (python-nav-list-defun-positions, python-nav-read-defun)
12324 (python-imenu-tree-assoc, python-imenu-make-element-tree)
12325 (python-imenu-make-tree, python-imenu-create-index):
12326 Remove functions.
12327 (python-mode): Update to interact with imenu by setting
12328 `imenu-extract-index-name-function' only.
12329
12330 2012-07-16 Fabián Ezequiel Gallina <fgallina@cuca>
12331
12332 * progmodes/python.el: Enhancements to navigation commands.
12333 (python-nav-backward-sentence)
12334 (python-nav-forward-sentence): Remove.
12335 (python-nav-backward-statement, python-nav-forward-statement)
12336 (python-nav-statement-start, python-nav-statement-end)
12337 (python-nav-backward-block, python-nav-forward-block)
12338 (python-nav-block-start, python-nav-block-end)
12339 (python-nav-forward-sexp-function)
12340 (python-info-current-line-comment-p)
12341 (python-info-current-line-empty-p): New functions.
12342 (python-indent-context): Use `python-nav-statement-start'.
12343
12344 2012-07-16 Michael Albinus <michael.albinus@gmx.de>
12345
12346 * eshell/em-ls.el (eshell/ls): Use `apply'.
12347
12348 * eshell/em-unix.el (eshell/su, eshell/sudo): Apply Tramp's ad-hoc
12349 multi-hops, instead of Tramp internals.
12350
12351 * vc/ediff.el (ediff-directories): Add trailing space to prompts.
12352
12353 * vc/ediff-diff.el (ediff-same-file-contents): Handle the case,
12354 when F1 and F2 are located on different hosts.
12355
12356 2012-07-14 Chong Yidong <cyd@gnu.org>
12357
12358 * xt-mouse.el: Implement extended mouse coordinates (Bug#10642).
12359 (xterm-mouse-translate): Move code into xterm-mouse-translate-1.
12360 (xterm-mouse-translate-extended, xterm-mouse-translate-1)
12361 (xterm-mouse--read-event-sequence-1000)
12362 (xterm-mouse--read-event-sequence-1006): New functions. For old
12363 mouse protocol, handle M-mouse-X events correctly.
12364 (xterm-mouse-event): New arg specifying mouse protocol.
12365 (turn-on-xterm-mouse-tracking-on-terminal)
12366 (turn-off-xterm-mouse-tracking-on-terminal): Send DEC 1006
12367 sequence to toggle extended coordinates on newer XTerms.
12368 This appears to be harmless on terminals which do not support this.
12369
12370 2012-07-14 Leo Liu <sdl.web@gmail.com>
12371
12372 Add fringe bitmap indicators for flymake. (Bug#11253)
12373 * progmodes/flymake.el (flymake-highlight-line): Use fringe bitmaps.
12374 (flymake-make-overlay): New arg BITMAP.
12375 (flymake-error-bitmap, flymake-warning-bitmap)
12376 (flymake-fringe-indicator-position): New user variables.
12377
12378 * fringe.el: New bitmap exclamation-mark.
12379
12380 2012-07-14 Jan Djärv <jan.h.d@swipnet.se>
12381
12382 * progmodes/cc-cmds.el (c-defun-name): Recognize Objective-C methods
12383 also (Bug#7879).
12384
12385 2012-07-14 Chong Yidong <cyd@gnu.org>
12386
12387 * electric.el (electric-pair-post-self-insert-function): Fix pair
12388 insertion in empty-region case (Bug#11520).
12389
12390 2012-07-14 Chong Yidong <cyd@gnu.org>
12391
12392 * bindings.el: Consolidate ctl-x-r-map bindings.
12393 Bind copy-rectangle-as-kill to C-x r w.
12394
12395 * rect.el, register.el: Move bindings to bindings.el.
12396
12397 2012-07-14 Reuben Thomas <rrt@sc3d.org>
12398
12399 * rect.el (copy-rectangle-as-kill): New command (Bug#739).
12400
12401 2012-07-13 Andreas Schwab <schwab@linux-m68k.org>
12402
12403 * emacs-lisp/cl.el (labels): Remove spurious quote. (Bug#11938)
12404
12405 2012-07-13 Juanma Barranquero <lekktu@gmail.com>
12406
12407 * bindings.el (top): Use `mapc' instead of `mapcar'.
12408
12409 * loadup.el (top): Remove bogus `if' choice (brought by 2008-06-21T01:38:39Z!monnier@iro.umontreal.ca).
12410
12411 2012-07-13 Michael Albinus <michael.albinus@gmx.de>
12412
12413 * progmodes/sql.el (sql-comint): Suppress the check for program on
12414 remote hosts. Reported by Francis Devereux <francis@devrx.org>.
12415 (Bug#11908)
12416
12417 2012-07-13 Chong Yidong <cyd@gnu.org>
12418
12419 * bindings.el: Assign a non-nil permanent-local property to
12420 per-buffer variables which lack a default value (Bug#11930).
12421
12422 * help-fns.el (describe-variable): In the "automatically becomes
12423 local" notice, take note of permanent-local variables.
12424
12425 2012-07-13 Chong Yidong <cyd@gnu.org>
12426
12427 * files.el (toggle-read-only): Doc fix and code cleanup. New arg
12428 to allow printing the message when called from Lisp.
12429
12430 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
12431 Remove toggle-read-only.
12432
12433 * bs.el (bs-toggle-readonly):
12434 * buff-menu.el (Buffer-menu-toggle-read-only):
12435 Remove with-no-warnings around toggle-read-only.
12436
12437 * ffap.el (ffap--toggle-read-only): Accept a list of buffers.
12438 Remove with-no-warnings around toggle-read-only.
12439 (ffap-read-only, ffap-read-only-other-window)
12440 (ffap-read-only-other-frame): Callers changed.
12441
12442 * help-mode.el: Don't require view package.
12443 (help-mode-finish): Set buffer-read-only instead of calling
12444 toggle-read-only.
12445
12446 * bindings.el (mode-line-toggle-read-only):
12447 * dired.el (dired-toggle-read-only):
12448 * ibuffer.el (ibuffer-do-toggle-read-only): Call toggle-read-only
12449 with non-nil second arg.
12450
12451 * emacs-lisp/eieio-custom.el (eieio-customize-object):
12452 * vc/ediff.el (ediff-set-read-only-in-buf-A): Set buffer-read-only
12453 directly.
12454
12455 2012-07-12 Eli Zaretskii <eliz@gnu.org>
12456
12457 * emacs-lisp/bytecomp.el (byte-recompile-directory): Use cl-incf,
12458 not incf.
12459
12460 2012-07-11 Stefan Monnier <monnier@iro.umontreal.ca>
12461
12462 More CL cleanups and reduction of use of cl.el.
12463 * woman.el, winner.el, vc/vc-rcs.el, vc/vc-hooks.el, vc/vc-hg.el:
12464 * vc/vc-git.el, vc/vc-dir.el, vc/vc-bzr.el, vc/vc-annotate.el:
12465 * textmodes/tex-mode.el, textmodes/sgml-mode.el, tar-mode.el:
12466 * strokes.el, ses.el, server.el, progmodes/js.el, progmodes/gdb-mi.el:
12467 * progmodes/flymake.el, progmodes/ebrowse.el, progmodes/compile.el:
12468 * play/tetris.el, play/snake.el, play/pong.el, play/landmark.el:
12469 * play/hanoi.el, play/decipher.el, play/5x5.el, nxml/nxml-mode.el:
12470 * net/secrets.el, net/quickurl.el, midnight.el, mail/footnote.el:
12471 * image-dired.el, ibuffer.el, ibuf-macs.el, ibuf-ext.el, hexl.el:
12472 * eshell/eshell.el, eshell/esh-io.el, eshell/esh-ext.el:
12473 * eshell/esh-cmd.el, eshell/em-ls.el, eshell/em-hist.el:
12474 * eshell/em-cmpl.el, eshell/em-banner.el:
12475 * calendar/parse-time.el: Use cl-lib.
12476 * wid-browse.el, wdired.el, vc/vc.el, vc/vc-mtn.el, vc/vc-cvs.el:
12477 * vc/vc-arch.el, tree-widget.el, textmodes/texinfo.el:
12478 * textmodes/refill.el, textmodes/css-mode.el, term/tvi970.el:
12479 * term/ns-win.el, term.el, shell.el, ps-samp.el:
12480 * progmodes/perl-mode.el, progmodes/pascal.el, progmodes/gud.el:
12481 * progmodes/glasses.el, progmodes/etags.el, progmodes/cwarn.el:
12482 * play/gamegrid.el, play/bubbles.el, novice.el, notifications.el:
12483 * net/zeroconf.el, net/xesam.el, net/snmp-mode.el, net/mairix.el:
12484 * net/ldap.el, net/eudc.el, net/browse-url.el, man.el:
12485 * mail/mailheader.el, mail/feedmail.el: Don't use CL.
12486 * ibuf-ext.el (ibuffer-mark-old-buffers): Use float-time.
12487 * eshell/esh-opt.el (eshell-eval-using-options): Quote code with
12488 `lambda' rather than with `quote'.
12489 (eshell-do-opt): Adjust accordingly.
12490 (eshell-process-option): Simplify.
12491 * eshell/esh-var.el:
12492 * eshell/em-script.el: Require `esh-opt' for eshell-eval-using-options.
12493 * emacs-lisp/pcase.el (pcase--dontcare-upats, pcase--let*)
12494 (pcase--expand, pcase--u1): Rename pcase's internal `dontcare' pattern
12495 to `pcase--dontcare'.
12496 * emacs-lisp/cl.el (labels): Mark obsolete.
12497 (cl--letf, letf): Move to cl-lib.
12498 (cl--letf*, letf*): Remove.
12499 * emacs-lisp/cl-lib.el (cl-nth-value): Use defalias.
12500 * emacs-lisp/cl-macs.el (cl-dolist, cl-dotimes): Add indent rule.
12501 (cl-progv): Rewrite.
12502 (cl--letf, cl-letf): Move from cl.el.
12503 (cl-letf*): New macro.
12504 * emacs-lisp/cl-extra.el (cl--progv-before, cl--progv-after): Remove.
12505
12506 2012-07-11 Michael Albinus <michael.albinus@gmx.de>
12507
12508 * net/ange-ftp.el (ange-ftp-cf1): Update the files cache.
12509
12510 2012-07-11 Chong Yidong <cyd@gnu.org>
12511
12512 * vc/log-edit.el (log-edit-vc-backend): New variable.
12513 (log-edit): Doc fix.
12514
12515 * vc/vc-dispatcher.el (vc-log-edit): New args. Use PARAMS
12516 argument of log-edit to set up all local variables.
12517 (vc-start-logentry): New optional arg specifying VC backend.
12518
12519 * vc/vc.el (vc-checkin): Use it.
12520 (vc-deduce-fileset): Handle Log Edit buffers.
12521 (vc-diff): Make first argument optional too.
12522
12523 * vc/log-view.el (log-view-vc-fileset, log-view-vc-backend): Doc fix.
12524
12525 2012-07-10 Michael Albinus <michael.albinus@gmx.de>
12526
12527 * eshell/esh-ext.el (eshell-remote-command): Remove remote part of
12528 command, just in case. The function is not needed anymore.
12529 (eshell-external-command): Do not call `eshell-remote-command'.
12530
12531 2012-07-10 Stefan Monnier <monnier@iro.umontreal.ca>
12532
12533 Reduce use of (require 'cl).
12534 * vc/smerge-mode.el, vc/pcvs.el, vc/pcvs-util.el, vc/pcvs-info.el:
12535 * vc/diff-mode.el, vc/cvs-status.el, uniquify.el, scroll-bar.el:
12536 * register.el, progmodes/sh-script.el, net/gnutls.el, net/dbus.el:
12537 * msb.el, mpc.el, minibuffer.el, international/ucs-normalize.el:
12538 * international/quail.el, info-xref.el, imenu.el, image-mode.el:
12539 * font-lock.el, filesets.el, edmacro.el, doc-view.el, bookmark.el:
12540 * battery.el, avoid.el, abbrev.el: Use cl-lib.
12541 * vc/pcvs-parse.el, vc/pcvs-defs.el, vc/log-view.el, vc/log-edit.el:
12542 * vc/diff.el, simple.el, pcomplete.el, lpr.el, comint.el, loadhist.el:
12543 * jit-lock.el, international/iso-ascii.el, info.el, frame.el, bs.el:
12544 * emulation/crisp.el, electric.el, dired.el, cus-dep.el, composite.el:
12545 * calculator.el, autorevert.el, apropos.el: Don't require CL.
12546 * emacs-lisp/bytecomp.el (byte-recompile-directory, display-call-tree)
12547 (byte-compile-unfold-bcf, byte-compile-check-variable):
12548 * emacs-lisp/byte-opt.el (byte-compile-trueconstp)
12549 (byte-compile-nilconstp):
12550 * emacs-lisp/autoload.el (make-autoload): Use pcase.
12551 * face-remap.el (text-scale-adjust): Simplify pcase patterns.
12552
12553 * emacs-lisp/gv.el (cond): Make it a valid place.
12554 (if): Simplify slightly.
12555
12556 * emacs-lisp/pcase.el (pcase): Accept self-quoting exps as "upatterns".
12557 (pcase--self-quoting-p): New function.
12558 (pcase--u1): Use it.
12559
12560 2012-07-10 Glenn Morris <rgm@gnu.org>
12561
12562 * emacs-lisp/authors.el (authors-fixed-entries):
12563 (authors-renamed-files-alist): Update for configure.in -> configure.ac.
12564
12565 2012-07-09 Paul Eggert <eggert@cs.ucla.edu>
12566
12567 Rename configure.in to configure.ac (Bug#11603).
12568 * emacs-lisp/authors.el (authors-canonical-file-name):
12569 * progmodes/autoconf.el (autoconf-mode):
12570 Prefer configure.ac to configure.in.
12571
12572 2012-07-08 Chong Yidong <cyd@gnu.org>
12573
12574 * mouse.el (mouse-drag-line): Rewrite the track-mouse loop.
12575 Implement the mouse-1-click-follows-link handling properly.
12576
12577 * info.el (Info-link-keymap): Use follow-link mechanism for
12578 header-line links (Bug#374).
12579
12580 * simple.el (deactivate-mark): Do not set the primary selection
12581 if another program has acquired it (Bug#11772).
12582
12583 2012-07-07 Kevin Ryde <user42@zip.com.au>
12584
12585 * woman.el (woman-strings): Fix double-quote handling (Bug#1151).
12586 (woman-decode-region): Replace escaped-escapes without destroying
12587 bold or underline (Bug#11552).
12588 (woman2-process-escapes): Handle nofill regions (Bug#11591).
12589
12590 2012-07-07 Chong Yidong <cyd@gnu.org>
12591
12592 * simple.el (yank-pop-change-selection): Doc fix (Bug#11361).
12593 (interprogram-cut-function, interprogram-paste-function):
12594 Mention that we typically mean the clipboard.
12595
12596 2012-07-06 Glenn Morris <rgm@gnu.org>
12597
12598 * kmacro.el (kmacro-call-macro): Restore repeat message. (Bug#11817)
12599
12600 * files.el (toggle-read-only): Restrict message to interactive use.
12601
12602 2012-07-06 Michael Albinus <michael.albinus@gmx.de>
12603
12604 * net/tramp.el (tramp-restricted-shell-hosts-alist): New defcustom.
12605
12606 * net/tramp-sh.el (tramp-maybe-open-connection): Handle it.
12607
12608 2012-07-06 Glenn Morris <rgm@gnu.org>
12609
12610 * Makefile.in (compile-one-process): Rename from "recompile".
12611
12612 * Makefile.in (bzr-update): "compile" is the same as "recompile
12613 autoloads", but parallelizable, so use that instead.
12614
12615 2012-07-06 Dmitry Gutov <dgutov@yandex.ru>
12616
12617 * window.el (quit-window): Always restore window height when
12618 it's saved in quit-restore parameter (Bug#11810).
12619
12620 2012-07-06 Glenn Morris <rgm@gnu.org>
12621
12622 * simple.el (kill-whole-line): Doc tweak.
12623
12624 2012-07-06 Eli Zaretskii <eliz@gnu.org>
12625
12626 * files.el (file-relative-name): Compare file names
12627 case-insensitively if on MS-Windows or MS-DOS, or if
12628 read-file-name-completion-ignore-case is non-nil. Don't use
12629 case-fold-search for this purpose. (Bug#11827)
12630
12631 2012-07-17 Andreas Schwab <schwab@linux-m68k.org>
12632
12633 * calendar/cal-dst.el (calendar-current-time-zone):
12634 Return calendar-current-time-zone-cache if non-nil.
12635
12636 2012-07-17 Masatake YAMATO <yamato@redhat.com>
12637 2012-07-06 Andreas Schwab <schwab@linux-m68k.org>
12638
12639 * calendar/cal-dst.el (calendar-current-time-zone):
12640 Return calendar-current-time-zone-cache if non-nil.
12641
12642 2012-07-06 Glenn Morris <rgm@gnu.org>
12643
12644 * Makefile.in (cvs-update): Remove old alias.
12645
12646 2012-07-05 Michael Albinus <michael.albinus@gmx.de>
12647
12648 Sync with Tramp 2.2.6-pre.
12649
12650 * net/tramp.el (tramp-drop-volume-letter): Provide an XEmacs
12651 compatible declaration.
12652
12653 * net/tramp-cmds.el (tramp-append-tramp-buffers):
12654 Protect `list-load-path-shadows' call.
12655
12656 * net/tramp-compat.el (top): Require packages, which aren't
12657 autoloaded anymore for XEmacs. Protect call of
12658 `tramp-file-name-handler' by `tramp-compat-funcall', pacifying the
12659 compiler. Do not require tramp-util.el and tramp-vc.el anymore,
12660 it hurts at least for SXEmacs.
12661 (tramp-compat-temporary-file-directory): In XEmacs, there is no
12662 standard-value for `temporary-file-directory'.
12663
12664 * net/tramp-sh.el (tramp-do-directory-files-and-attributes-with-stat):
12665 Redirect stderr to /dev/null.
12666 (tramp-sh-handle-write-region): uid and gid can be floats.
12667 Reported by Russell Sim <russell.sim@gmail.com>.
12668 (tramp-sh-handle-vc-registered): Hide errors.
12669 (tramp-vc-file-name-handler): Use dummy results for `process-file'
12670 and `start-file-process'.
12671 (tramp-maybe-open-connection): Check also whether `non-essential'
12672 is bound.
12673
12674 2012-07-04 Chong Yidong <cyd@gnu.org>
12675
12676 * xml.el (xml--parse-buffer): Use xml-syntax-table.
12677 (xml-parse-tag): Likewise, and avoid changing entity tables.
12678 (xml-syntax-table): Define from scratch, making sure not to give
12679 x2000 and other Unicode spaces whitespace syntax, since those are
12680 not spaces in XML.
12681 (xml-parse-fragment): Delete unused function.
12682 (xml-name-start-char-re, xml-name-char-re, xml-name-re)
12683 (xml-names-re, xml-nmtoken-re, xml-nmtokens-re, xml-char-ref-re)
12684 (xml-entity-ref, xml-pe-reference-re)
12685 (xml-reference-re, xml-att-value-re, xml-tokenized-type-re)
12686 (xml-notation-type-re, xml-enumeration-re, xml-enumerated-type-re)
12687 (xml-att-type-re, xml-default-decl-re, xml-att-def-re)
12688 (xml-entity-value-re): Use syntax references in regexps where
12689 possible; no need to define inside a let-binding.
12690 (xml-parse-dtd): Use xml-pe-reference-re.
12691 (xml-entity-or-char-ref-re): New defconst.
12692 (xml-parse-string, xml-substitute-special): Use it.
12693
12694 2012-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
12695
12696 * files.el (locate-dominating-file): Allow `name' to be a predicate.
12697 (find-file--read-only): New function.
12698 (find-file-read-only, find-file-read-only-other-window)
12699 (find-file-read-only-other-frame): Use it.
12700 (insert-file-contents-literally): Don't `fset'.
12701 (get-free-disk-space): Use locate-dominating-file.
12702
12703 * emacs-lisp/bytecomp.el (byte-compile): Don't signal an error if the
12704 function is already compiled.
12705
12706 * xml.el (xml-name-regexp): Remove, redundant. Use xml-name-re.
12707
12708 2012-07-03 Michael Albinus <michael.albinus@gmx.de>
12709
12710 * vc/ediff-diff.el (ediff-same-file-contents): Fix it for remote
12711 files on the same host.
12712
12713 2012-07-03 Andreas Schwab <schwab@linux-m68k.org>
12714
12715 * help-fns.el (describe-function-1): Only call
12716 help-fns--autoloaded-p when we have a file name. (Bug#11848)
12717
12718 2012-07-03 Chong Yidong <cyd@gnu.org>
12719
12720 * xml.el: Protect parser against XML bombs.
12721 (xml-entity-expansion-limit): New variable.
12722 (xml-parse-string, xml-substitute-special): Use it.
12723 (xml-parse-dtd): Avoid infloop if the DTD is not terminated.
12724
12725 2012-07-03 Glenn Morris <rgm@gnu.org>
12726
12727 * progmodes/bug-reference.el (bug-reference-bug-regexp):
12728 Allow linking to specific messages in debbugs reports (eg 123#5).
12729
12730 2012-07-02 Chong Yidong <cyd@gnu.org>
12731
12732 * xml.el: Fix entity and character reference expansion, allowing
12733 them to expand into markup as per XML spec.
12734 (xml-default-ns): New variable.
12735 (xml-entity-alist): Use XML spec definitions for lt and amp.
12736 (xml-parse-region): Make first two arguments optional.
12737 Discard text properties.
12738 (xml-parse-tag-1): New function, spun off from xml-parse-tag.
12739 All callers changed.
12740 (xml-parse-tag): Call xml-parse-tag-1. For backward
12741 compatibility, this function should not modify buffer contents.
12742 (xml-parse-tag-1): Fix opening-tag regexp.
12743 (xml-parse-string): Rewrite, handling entity and character
12744 references properly.
12745 (xml--entity-replacement-text): Signal an error if a parameter
12746 entity is undefined.
12747
12748 2012-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
12749
12750 * comint.el (comint-output-filter): Filter out repeated prompts.
12751
12752 * net/ange-ftp.el (ange-ftp-expand-file-name): Use ange-ftp-ftp-name
12753 and file-name-absolute-p.
12754 (ange-ftp-file-exists-p): Use ange-ftp-file-exists-p for
12755 internal calls.
12756
12757 2012-07-02 Paul Eggert <eggert@cs.ucla.edu>
12758
12759 Spelling fixes.
12760 * emacs-lisp/bytecomp.el (byte-compile--reify-function):
12761 Rename from byte-compile--refiy-function. All uses changed.
12762
12763 2012-07-01 Chong Yidong <cyd@gnu.org>
12764
12765 * xml.el (xml--parse-buffer): New function. Move most of
12766 xml-parse-region here.
12767 (xml-parse-region): Copy region into a temporary buffer, since
12768 parameter entity substitution requires changing buffer contents.
12769 Use xml--parse-buffer.
12770 (xml-parse-file): Use xml--parse-buffer.
12771 (xml-parse-dtd): Make parameter entity substitution work right.
12772 Use proper regexps for ELEMENT declarations (Bug#7172).
12773
12774 2012-06-30 Glenn Morris <rgm@gnu.org>
12775
12776 * comint.el (follow-comint-scroll-to-bottom): Fix declaration.
12777
12778 * net/secrets.el, net/tramp-gvfs.el, net/xesam.el, net/zeroconf.el:
12779 Remove outdated and unnecessary dbus declarations.
12780
12781 2012-06-30 Eli Zaretskii <eliz@gnu.org>
12782
12783 * emacs-lisp/timer.el (timer-until): Subtract results of
12784 float-time, instead of taking float-time of the result of
12785 time-subtract, since float-time signals an error for negative time
12786 arguments.
12787
12788 2012-06-30 Chong Yidong <cyd@gnu.org>
12789
12790 * xml.el (xml-*-re): Convert defvars into defconsts, and
12791 eval-and-compile them so eval-and-compile works on derivatives.
12792 (xml--entity-replacement-text): Use eval-and-comple.
12793
12794 2012-06-30 Michael Albinus <michael.albinus@gmx.de>
12795
12796 * vc/vc-git.el (vc-git-registered): Use cache property
12797 `git-registered'.
12798 (vc-git-mode-line-string): Call `vc-working-revision' instead of
12799 `vc-git-working-revision' in order to benefit from the cache.
12800 (vc-git-root): Use cache property `git-root'. (Bug#11757)
12801
12802 2012-06-30 Dmitry Gutov <dgutov@yandex.ru>
12803
12804 * vc/vc-hooks.el (vc-before-save): Clear cache if file has been
12805 removed (likely outside Emacs). (Bug#11757)
12806
12807 2012-06-30 Stefan Monnier <monnier@iro.umontreal.ca>
12808
12809 * emacs-lisp/cl-lib.el: Require macroexp.
12810
12811 2012-06-30 Chong Yidong <cyd@gnu.org>
12812
12813 * xml.el: Implement XML parameter entities.
12814 (xml-parameter-entity-alist): New variable.
12815 (xml-parse-region, xml-parse-fragment): Preserve previous values
12816 of xml-entity-alist and xml-parameter-entity-alist, so that
12817 repeated calls on different documents do not change them.
12818 (xml-parse-tag): Fix doctype regexp.
12819 (xml--entity-replacement-text): New function.
12820 (xml-parse-dtd): Use it. Don't handle system entities; doing that
12821 properly requires url retrieval which is unimplemented.
12822 (xml-escape-string): Doc fix.
12823
12824 2012-06-30 Stefan Monnier <monnier@iro.umontreal.ca>
12825
12826 * emacs-lisp/cl-lib.el (cl-pushnew): Use macroexp-let2.
12827
12828 2012-06-29 Dmitry Antipov <dmantipov@yandex.ru>
12829
12830 * fringe.el (fringe-mode): Doc fix.
12831
12832 2012-06-29 Michael Albinus <michael.albinus@gmx.de>
12833
12834 * net/ange-ftp.el (ange-ftp-get-passwd): Throw if `non-essential'
12835 is non-nil.
12836 (ange-ftp-ignore-errors-if-non-essential): New defmacro.
12837 (ange-ftp-file-name-all-completions): Use it. (Bug#11808)
12838
12839 2012-06-29 Andreas Schwab <schwab@linux-m68k.org>
12840
12841 * calendar/cal-dst.el (calendar-current-time-zone):
12842 Return calendar-current-time-zone-cache if non-nil.
12843
12844 2012-06-29 Masatake YAMATO <yamato@redhat.com>
12845
12846 * progmodes/which-func.el (which-func-format):
12847 Add mouse-face. (Bug#11698)
12848
12849 2012-06-29 Leo Liu <sdl.web@gmail.com>
12850
12851 * textmodes/enriched.el (enriched-next-annotation): Use eq (Bug#11528).
12852
12853 2012-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
12854
12855 * minibuffer.el (minibuffer-confirm-exit-commands):
12856 Add completion-at-point (bug#11725).
12857
12858 2012-06-29 Glenn Morris <rgm@gnu.org>
12859
12860 * progmodes/f90.el (f90-font-lock-keywords-2):
12861 Add some preprocessor elements. (Bug#10499)
12862
12863 2012-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
12864
12865 * progmodes/cperl-mode.el (cperl-update-syntaxification):
12866 Use syntax-propertize (bug#11739).
12867
12868 2012-06-28 Juanma Barranquero <lekktu@gmail.com>
12869
12870 * emacs-lisp/cl-lib.el (cl-pushnew): Don't capture X (bug#11811).
12871
12872 2012-06-28 Julien Danjou <julien@danjou.info>
12873
12874 * term.el (term-handle-colors-array): Use a set of new faces to
12875 color the terminal. Also uses :inverse-video property.
12876 (term-default-fg-color): Set to nil by default, deprecate in favor
12877 of `term-face'.
12878 (term-default-bg-color): Set to nil by default, deprecate in favor
12879 of `term-face'.
12880 (term-current-face): Use `term-face' by default.
12881 (term-bold-attribute): Variable deleted.
12882
12883 2012-06-28 Glenn Morris <rgm@gnu.org>
12884
12885 * simple.el (completion-list-mode-finish):
12886 Don't use toggle-read-only. (Since completion-list-mode has
12887 a special mode-class, it wasn't doing anything extra anyway.)
12888
12889 2012-06-28 Stefan Monnier <monnier@iro.umontreal.ca>
12890
12891 Make inlining of other-mode interpreted functions work (bug#11799).
12892 * emacs-lisp/bytecomp.el (byte-compile--refiy-function): New fun.
12893 (byte-compile): Use it to fix compilation of lexical-binding closures.
12894 * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Compile the
12895 function, if needed.
12896
12897 2012-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
12898
12899 * help-mode.el (help-make-xrefs): Don't just withstand
12900 cyclic-variable-indirection but any error in documentation-property.
12901
12902 * loadup.el (purify-flag): Pre-grow the hash-table to reduce the
12903 memory use.
12904 * bindings.el (bindings--define-key): New function.
12905 * vc/vc-hooks.el, replace.el, menu-bar.el, international/mule-cmds.el:
12906 * emacs-lisp/lisp-mode.el, buff-menu.el, bookmark.el:
12907 * bindings.el: Use it to purecopy define-key bindings.
12908
12909 * textmodes/rst.el (rst-adornment-faces-alist): Avoid copy-list.
12910
12911 * emacs-lisp/cl.el (flet): Mark obsolete.
12912 * emacs-lisp/cl-macs.el (cl-flet*): New macro.
12913 * vc/vc-rcs.el (vc-rcs-annotate-command, vc-rcs-parse):
12914 * progmodes/js.el (js-c-fill-paragraph):
12915 * progmodes/ebrowse.el (ebrowse-switch-member-buffer-to-sibling-class)
12916 (ebrowse-switch-member-buffer-to-derived-class):
12917 * play/5x5.el (5x5-solver): Use cl-flet.
12918
12919 * emacs-lisp/cl.el: Use lexical-binding. Fix flet (bug#11780).
12920 (cl--symbol-function): New macro.
12921 (cl--letf, cl--letf*): Use it.
12922
12923 * emacs-lisp/easy-mmode.el (easy-mmode-pretty-mode-name):
12924 Strip "toggle-" if any.
12925
12926 2012-06-27 Glenn Morris <rgm@gnu.org>
12927
12928 * info.el (Info-default-directory-list): Move here from paths.el.
12929 * paths.el: Remove file, which is now empty.
12930 * loadup.el: No longer load "paths".
12931
12932 * custom.el (custom-initialize-delay): Doc fix.
12933
12934 * eshell/em-alias.el, eshell/em-banner.el, eshell/em-basic.el:
12935 * eshell/em-cmpl.el, eshell/em-dirs.el, eshell/em-glob.el:
12936 * eshell/em-hist.el, eshell/em-ls.el, eshell/em-pred.el:
12937 * eshell/em-prompt.el, eshell/em-rebind.el, eshell/em-script.el:
12938 * eshell/em-smart.el, eshell/em-term.el, eshell/em-unix.el:
12939 * eshell/em-xtra.el: Replace eshell-defgroup with "(progn (defgroup".
12940 * eshell/eshell.el (eshell-defgroup): Remove alias.
12941
12942 2012-06-27 Chong Yidong <cyd@gnu.org>
12943
12944 * help.el (help-enable-auto-load): New variable.
12945
12946 * help-fns.el (help-fns--autoloaded-p): New function.
12947 (describe-function-1): Refer to a function as "autoloaded" if it
12948 was autoloaded at any time in the past. Perform autoloading if
12949 help-enable-auto-load is non-nil.
12950
12951 2012-06-26 Eli Zaretskii <eliz@gnu.org>
12952
12953 * makefile.w32-in (compile, compile-always): Depend on
12954 update-subdirs, not on subdirs.el. Otherwise, several different
12955 sub-targets of 'bootstrap' running in parallel could
12956 simultaneously write to subdirs.el, producing a garbled file.
12957
12958 2012-06-26 Sam Steingold <sds@gnu.org>
12959
12960 * files.el (file-name-base): New convenience function.
12961 * autoinsert.el, cus-dep.el, doc-view.el, image-dired.el:
12962 * woman.el, eshell/esh-cmd.el, progmodes/ada-xref.el:
12963 * progmodes/cc-defs.el, progmodes/cperl-mode.el:
12964 * progmodes/flymake.el, progmodes/gud.el, progmodes/idlwave.el:
12965 * textmodes/ispell.el, textmodes/reftex-ref.el:
12966 * textmodes/tex-mode.el: Use it.
12967 Did not touch cedet and org because they are maintained elsewhere.
12968
12969 2012-06-26 Martin Rudalics <rudalics@gmx.at>
12970
12971 * calendar/calendar.el (calendar-exit): Don't try to delete or
12972 iconify last frame. See:
12973 http://lists.gnu.org/archive/html/emacs-devel/2012-06/msg00372.html
12974
12975 2012-06-25 Jim Diamond <Jim.Diamond@AcadiaU.ca> (tiny change)
12976
12977 * server.el (server-process-filter): Remember dir in the
12978 process's `server-client-directory' properties.
12979
12980 2012-06-24 Chong Yidong <cyd@gnu.org>
12981
12982 * xml.el (xml-parse-tag): Correctly handle comment embedded in
12983 non-tag text.
12984
12985 2012-06-23 Juanma Barranquero <lekktu@gmail.com>
12986
12987 * makefile.w32-in (COMPILE_FIRST): Synch with changes in 2012-06-22T21:24:54Z!monnier@iro.umontreal.ca.
12988
12989 2012-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
12990
12991 * help-fns.el (describe-variable): Don't croak when doc is not found.
12992 * vc/pcvs.el (cvs-retrieve-revision): Avoid toggle-read-only.
12993 * menu-bar.el (menu-bar-line-wrapping-menu): Purecopy a tiny bit more.
12994 * emacs-lisp/syntax.el (syntax-ppss): Simplify with new `if' place.
12995 * emacs-lisp/smie.el (smie-next-sexp): CSE.
12996 * emacs-lisp/macroexp.el (macroexp-let2): Fix edebug spec and avoid
12997 ((lambda ..) ..).
12998 * emacs-lisp/eieio.el (eieio-oref, slot-value): Use simpler defsetf.
12999
13000 2012-06-23 Chong Yidong <cyd@gnu.org>
13001
13002 * info.el (Info-mouse-follow-link): Accept symbol values of
13003 link-args. Select window; suggested by Gerhard Kahl (Bug#11672).
13004 (Info-fontify-node): Use Info-link-keymap for all navigation
13005 buttons, with link-args property to perform the desired action.
13006 (Info-link-keymap): Doc fix.
13007 (Info-next-link-keymap, Info-prev-link-keymap)
13008 (Info-up-link-keymap): Delete now-unused keymaps.
13009
13010 2012-06-23 Chong Yidong <cyd@gnu.org>
13011
13012 * mouse.el (mouse-drag-track): Deactivate the mark before popping.
13013
13014 * progmodes/python.el (python-skeleton-define): Mark abbrevs as
13015 system abbrevs.
13016
13017 * ansi-color.el (ansi-color-apply-on-region): Doc fix.
13018
13019 2012-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
13020
13021 * emacs-lisp/cl-macs.el (cl--make-usage-args): Handle improper lists
13022 (bug#11719).
13023
13024 * minibuffer.el (completion--twq-try): Try to fail more gracefully when
13025 the requote function doesn't work properly (bug#11714).
13026
13027 2012-06-23 Glenn Morris <rgm@gnu.org>
13028
13029 * pcmpl-rpm.el (pcmpl-rpm-packages): Give status messages.
13030
13031 2012-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
13032
13033 Further GV/CL cleanups.
13034 * emacs-lisp/gv.el (gv-get): Autoload functions to find their
13035 gv-expander.
13036 (gv--defun-declaration): New function.
13037 (defun-declarations-alist): Use it.
13038 (gv-define-modify-macro, gv-pushnew!, gv-inc!, gv-dec!): Remove.
13039 (gv-place): Autoload.
13040 * emacs-lisp/cl.el (cl--dotimes, cl--dolist): Remember subr.el's
13041 original definition of dotimes and dolist.
13042 * emacs-lisp/cl-macs.el (cl-expr-access-order): Remove unused.
13043 (cl-dolist, cl-dotimes): Use `dolist' and `dotimes'.
13044 * emacs-lisp/cl-lib.el: Move gv handlers from cl-macs to here.
13045 (cl-fifth, cl-sixth, cl-seventh, cl-eighth)
13046 (cl-ninth, cl-tenth): Move gv handler to the function's definition.
13047 * emacs-lisp/cl-extra.el (cl-subseq, cl-get, cl-getf): Move gv handler
13048 to the function's definition.
13049 * Makefile.in (COMPILE_FIRST): Re-order to speed it up by about 50%.
13050 * window.el:
13051 * files.el:
13052 * faces.el:
13053 * env.el: Don't use CL.
13054
13055 2012-06-22 Paul Eggert <eggert@cs.ucla.edu>
13056
13057 Support higher-resolution time stamps (Bug#9000).
13058
13059 * calendar/time-date.el (with-decoded-time-value): New arg
13060 PICO-SYMBOL in VARLIST. It's optional, for backward compatibility.
13061 (encode-time-value): New optional arg PICO. New type 3.
13062 (time-to-seconds) [!float-time]: Support the new picoseconds
13063 component if it's used.
13064 (seconds-to-time, time-subtract, time-add):
13065 Support ps-resolution time stamps as well.
13066
13067 * emacs-lisp/timer.el (timer): New component psecs. All uses changed.
13068 (timerp): Timer vectors now have length 9, not 8.
13069 (timer--time): Support new-style (4-part) time stamps.
13070 (timer-next-integral-multiple-of-time): Time stamps now have
13071 picosecond resolution, so take a bit more care about rounding.
13072 (timer-relative-time, timer-inc-time): New optional arg psecs.
13073 (timer-set-time-with-usecs): Set psecs to 0.
13074 (timer--activate): Check psecs component, too.
13075
13076 * proced.el (proced-time-lessp): Support ps-resolution stamps.
13077
13078 2012-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
13079
13080 * icomplete.el (icomplete-minibuffer-setup, icomplete-completions):
13081 Move the non-essential binding to the post/pre-command-hook where it is
13082 more obviously correct.
13083
13084 * subr.el (read-passwd): Don't use a history at all.
13085 * savehist.el (savehist-save): Remove password saved accidentally
13086 because of the above bug.
13087
13088 2012-06-22 Bastien Guerry <bzg@gnu.org>
13089
13090 * files.el (toggle-read-only): Display a message telling whether
13091 the buffer is read-only or not (bug#11726).
13092
13093 2012-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
13094
13095 * emacs-lisp/gv.el: New file.
13096 * subr.el (push, pop): Extend to generalized variables.
13097 * loadup.el (macroexp): Unload if preloaded and uncompiled (bug#11657).
13098 * emacs-lisp/cl-lib.el (cl-pop, cl-push, cl--set-nthcdr): Remove.
13099 * emacs-lisp/cl-macs.el: Require gv. Use gv-define-setter,
13100 gv-define-simple-setter, and gv-define-expander.
13101 Remove setf-methods defined in gv. Rename cl-setf -> setf.
13102 (cl-setf, cl-do-pop, cl-get-setf-method): Remove.
13103 (cl-letf, cl-letf*, cl-define-modify-macro, cl-defsetf)
13104 (cl-define-setf-expander, cl-struct-setf-expander): Move to cl.el.
13105 (cl-remf, cl-shiftf, cl-rotatef, cl-callf, cl-callf2): Rewrite with
13106 gv-letplace.
13107 (cl-defstruct): Don't define setf-method any more.
13108 * emacs-lisp/cl.el (flet): Don't autoload.
13109 (cl--letf, letf, cl--letf*, letf*, cl--gv-adapt)
13110 (define-setf-expander, defsetf, define-modify-macro)
13111 (cl-struct-setf-expander): Move from cl-lib.el.
13112 * emacs-lisp/syntax.el:
13113 * emacs-lisp/ewoc.el:
13114 * emacs-lisp/smie.el:
13115 * emacs-lisp/cconv.el:
13116 * emacs-lisp/timer.el: Rename cl-setf -> setf, cl-push -> push.
13117 (timer--time): Use gv-define-simple-setter.
13118 * emacs-lisp/macroexp.el (macroexp-let2): Rename from macroexp-let²
13119 to avoid coding-system problems in subr.el. Adjust all users.
13120 (macroexp--maxsize, macroexp-small-p): New functions.
13121 * emacs-lisp/bytecomp.el (byte-compile-file): Don't use cl-letf.
13122 * scroll-bar.el (scroll-bar-mode):
13123 * simple.el (auto-fill-mode, overwrite-mode, binary-overwrite-mode)
13124 (normal-erase-is-backspace-mode): Don't use the `eq' place.
13125 * winner.el (winner-configuration, winner-make-point-alist)
13126 (winner-set-conf, winner-get-point, winner-set): Don't abuse letf.
13127 * files.el (locate-file-completion-table): Avoid list*.
13128
13129 2012-06-22 Chong Yidong <cyd@gnu.org>
13130
13131 * dired-aux.el (dired-do-create-files): Doc fix (Bug#11327).
13132 (dired-create-files): Doc fix (Bug#11329).
13133 (dired-do-copy): Doc fix (Bug#11334).
13134 (dired-mark-read-string): Doc fix (Bug#11553).
13135
13136 * dired.el (dired-recursive-copies, dired-recursive-deletes):
13137 Doc fix (Bug#11326).
13138 (dired-make-relative): Doc fix (Bug#11332). Remove unused arg.
13139 (dired-dwim-target): Doc fix.
13140
13141 * wdired.el (wdired-mode): Doc fix.
13142
13143 2012-06-22 Glenn Morris <rgm@gnu.org>
13144
13145 * pcmpl-rpm.el (pcmpl-rpm-cache): New option.
13146 (pcmpl-rpm-cache-stamp-file): New constant.
13147 (pcmpl-rpm-cache-time, pcmpl-rpm-packages): New variables.
13148 (pcmpl-rpm-packages): Optionally cache list of packages.
13149
13150 * pcmpl-rpm.el (pcmpl-rpm): New group.
13151 (pcmpl-rpm-query-options): New option.
13152 (pcmpl-rpm-packages): No need to inline it.
13153 Use pcmpl-rpm-query-options.
13154
13155 * calendar/calendar.el (calendar-in-read-only-buffer):
13156 Avoid some needless mode changes.
13157
13158 2012-06-21 Chong Yidong <cyd@gnu.org>
13159
13160 * desktop.el (desktop-read): Don't prompt if daemon (Bug#11674).
13161 (desktop-path): Remove . from the default value (Bug#10977).
13162 (desktop-read): Use user-emacs-directory if desktop-path is nil.
13163
13164 2012-06-20 Chong Yidong <cyd@gnu.org>
13165
13166 * term.el (term-send-raw-meta): Make C-M-<char> keys work (Bug#8172).
13167
13168 2012-06-20 David Röthlisberger <david@rothlis.net> (tiny change)
13169
13170 * ido.el (ido-switch-buffer, ido-find-file): Fix up doc of C-j
13171 (bug#11201).
13172
13173 2012-06-20 Chong Yidong <cyd@gnu.org>
13174
13175 * term.el (term-window-width): Handle the case of a missing right
13176 fringe (Bug#8837).
13177 (term-check-size): Use window-text-height (Bug#5445).
13178 (term-mode): Use define-derived-mode. Minor cleanups.
13179 Set font-lock-defaults (Bug#7692).
13180 (term-move-columns, term-insert-char, term-emulate-terminal)
13181 (term-erase-in-line, term-insert-spaces): Use font-lock-face.
13182
13183 2012-06-20 Michael Albinus <michael.albinus@gmx.de>
13184
13185 * net/ange-ftp.el (ange-ftp-get-passwd):
13186 Bind `enable-recursive-minibuffers'.
13187 (ange-ftp-get-process): Throw if `non-essential' is non-nil.
13188
13189 2012-06-19 David Röthlisberger <david@rothlis.net> (tiny change)
13190
13191 * ido.el (ido-find-file): Mention C-d binding in docstring (bug#11244).
13192
13193 2012-06-19 Glenn Morris <rgm@gnu.org>
13194
13195 * progmodes/python.el (python-mode): Derive from prog-mode.
13196
13197 2012-06-19 Kevin Gallagher <Kevin.Gallagher@boeing.com>
13198
13199 * emulation/edt.el (edt-default-menu-bar-update-buffers)
13200 (edt-user-menu-bar-update-buffers): New functions.
13201 (edt-default-emulation-setup, edt-user-emulation-setup): Use them.
13202
13203 2012-06-19 Chong Yidong <cyd@gnu.org>
13204
13205 * subr.el (with-selected-window): Preserve the selected window's
13206 terminal's top-frame (Bug#4702).
13207
13208 * window.el (save-selected-window): Likewise.
13209
13210 2012-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
13211
13212 * progmodes/python.el (python-rx-constituents): Move backquote.
13213 (python-skeleton-define, python-define-auxiliary-skeleton):
13214 Use `declare'.
13215
13216 2012-06-18 Michael Albinus <michael.albinus@gmx.de>
13217
13218 * minibuffer.el (read-file-name-default): Revert the patch from
13219 2012-06-17.
13220
13221 2012-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
13222
13223 * emacs-lisp/pcase.el (pcase--expand): Warn for unused pattern.
13224 (pcase--u1, pcase--q1): Don't use apply-partially.
13225
13226 2012-06-18 Glenn Morris <rgm@gnu.org>
13227
13228 * progmodes/python.el (python-proc, python-buffer)
13229 (python-send-receive, python-send-string): Fix obsolete versions.
13230
13231 2012-06-18 Martin Rudalics <rudalics@gmx.at>
13232
13233 * window.el (special-display-p): Completely remove stringp
13234 check. Suggested by Andreas Schwab <schwab@linux-m68k.org>.
13235
13236 2012-06-17 Michael Albinus <michael.albinus@gmx.de>
13237
13238 * minibuffer.el (read-file-name-default): Bind `non-essential' to `t'.
13239
13240 * net/tramp.el (tramp-file-name-handler): Catch 'non-essential.
13241
13242 * net/ange-ftp.el (ange-ftp-gwp-start, ange-ftp-start-process):
13243 * net/tramp-sh.el (tramp-maybe-open-connection):
13244 Throw if `non-essential' is non-nil.
13245
13246 2012-06-17 Martin Rudalics <rudalics@gmx.at>
13247
13248 * window.el (special-display-p): Signal an error if BUFFER-NAME
13249 is not a string (Bug#11713).
13250
13251 2012-06-17 Paul Eggert <eggert@cs.ucla.edu>
13252
13253 * progmodes/python.el (python-info-beginning-of-backslash):
13254 Rename from python-info-beginning-of-backlash, as a spelling fix.
13255
13256 2012-06-17 Chong Yidong <cyd@gnu.org>
13257
13258 * term.el (term-emulate-terminal): If term-check-size is called,
13259 move point to the process mark without resetting point (Bug#4635).
13260
13261 2012-06-17 Glenn Morris <rgm@gnu.org>
13262
13263 * international/mule-cmds.el (mule-menu-keymap)
13264 (set-language-environment, set-locale-environment): Doc tweaks.
13265
13266 2012-06-16 Aurelien Aptel <aurelien.aptel@gmail.com>
13267
13268 * cus-face.el (custom-face-attributes): Add wave-style underline
13269 attribute.
13270 * faces.el (set-face-attribute): Update docstring to describe
13271 wave-style underline attribute.
13272
13273 2012-06-16 Chong Yidong <cyd@gnu.org>
13274
13275 * term/xterm.el (terminal-init-xterm): Discard input before
13276 querying background mode (Bug#10959).
13277
13278 2012-06-16 Stefan Merten <smerten@oekonux.de>
13279
13280 * textmodes/rst.el: Added and corrected some comments.
13281 (rst-re-alist-def): Improve symbol syntax.
13282 (rst-mode-syntax-table): Correct syntax entries.
13283 (rst-cvs-header, rst-svn-rev, rst-svn-timestamp)
13284 (rst-official-version, rst-official-cvs-rev): Update version
13285 information.
13286
13287 2012-06-15 Juanma Barranquero <lekktu@gmail.com>
13288
13289 * makefile.w32-in (COMPILE_FIRST): Synch with makefile.in changes
13290 in 2008-06-22T13:57:28Z!monnier@iro.umontreal.ca.
13291
13292 2012-06-15 Fabián Ezequiel Gallina <fgallina@cuca>
13293
13294 * progmodes/python.el: New python.el merge.
13295 (python-guess-indent): Obsolete var.
13296 (python-indent-guess-indent-offset): New defcustom.
13297 (python-indent): Obsolete var.
13298 (python-indent-offset): New defcustom.
13299 (python-python-command, python-jython-command): Delete var.
13300 (python-shell-interpreter): New defcustom.
13301 (python-pdbtrack-do-tracking-p): Delete var.
13302 (python-pdbtrack-activate): New defcustom.
13303 (python-use-skeletons): Obsolete var.
13304 (python-skeleton-autoinsert): New defcustom.
13305 (inferior-python-filter-regexp, python-continuation-offset)
13306 (python-honour-comment-indentation, python-indent-string-contents)
13307 (python-jython-packages, python-mode-hook)
13308 (python-pdbtrack-minor-mode-string, python-remove-cwd-from-path)
13309 (python-shell-prompt-alist)
13310 (python-source-modes): Delete defcustoms.
13311 (python-check-buffer-name, python-eldoc-setup-code)
13312 (python-eldoc-string-code, python-ffap-setup-code)
13313 (python-ffap-string-code, python-fill-comment-function)
13314 (python-fill-decorator-function, python-fill-paren-function)
13315 (python-fill-string-function, python-imenu-include-defun-type)
13316 (python-imenu-make-tree, python-imenu-subtree-root-label)
13317 (python-pdbtrack-stacktrace-info-regexp, python-shell-buffer-name)
13318 (python-shell-compilation-regexp-alist)
13319 (python-shell-completion-module-string-code)
13320 (python-shell-completion-pdb-string-code)
13321 (python-shell-completion-setup-code)
13322 (python-shell-completion-string-code)
13323 (python-shell-enable-font-lock, python-shell-exec-path)
13324 (python-shell-extra-pythonpaths)
13325 (python-shell-internal-buffer-name, python-shell-interpreter-args)
13326 (python-shell-process-environment)
13327 (python-shell-prompt-block-regexp)
13328 (python-shell-prompt-output-regexp)
13329 (python-shell-prompt-pdb-regexp, python-shell-prompt-regexp)
13330 (python-shell-send-setup-max-wait, python-shell-setup-codes)
13331 (python-shell-virtualenv-path): New defcustoms.
13332 (brm-menu, eldoc-documentation-function, inferior-python-mode-map)
13333 (inferior-python-mode-syntax-table, python--prompt-regexp)
13334 (python-buffer, python-command python-python-command)
13335 (python-default-template, python-imports, python-indent-index)
13336 (python-indent-list, python-indent-list-length)
13337 (python-mode-running, python-pdbtrack-is-tracking-p)
13338 (python-preoutput-continuation, python-preoutput-leftover)
13339 (python-preoutput-result, python-preoutput-skip-next-prompt)
13340 (python-prev-dir/file, python-recursing)
13341 (python-saved-check-command, python-version-checked)
13342 (python-which-func-length-limit)
13343 (view-return-to-alist): Delete vars.
13344 (python-check-custom-command, python-dotty-syntax-table)
13345 (python-imenu-index-alist, python-indent-current-level)
13346 (python-indent-dedenters, python-indent-levels)
13347 (python-nav-beginning-of-defun-regexp)
13348 (python-nav-list-defun-positions-cache)
13349 (python-pdbtrack-buffers-to-kill, python-pdbtrack-tracked-buffer)
13350 (python-shell-internal-buffer)
13351 (python-skeleton-available): New vars.
13352 (def-python-skeleton): Delete macro.
13353 (python-skeleton-define): New macro.
13354 (python-define-auxiliary-skeleton, python-rx): New macros.
13355 (python-insert-class): Delete command.
13356 (python-skeleton-class): New command.
13357 (python-insert-def): Delete command.
13358 (python-skeleton-def): New command.
13359 (python-insert-for): Delete command.
13360 (python-skeleton-for): New command.
13361 (python-insert-if): Delete command.
13362 (python-skeleton-if): New command.
13363 (python-insert-try/except, python-insert-try/finally): Delete commands.
13364 (python-skeleton-try): New command.
13365 (python-insert-while): Delete command.
13366 (python-skeleton-while): New command.
13367 (python-backspace): Delete command.
13368 (python-indent-dedent-line-backspace): New command.
13369 (python-electric-colon): Delete command.
13370 (python-indent-electric-colon): New command.
13371 (python-guess-indent): Delete command.
13372 (python-indent-guess-indent-offset): New command.
13373 (python-shift-left): Delete command.
13374 (python-indent-shift-left): New command.
13375 (python-shift-right): Delete command.
13376 (python-indent-shift-right): New command.
13377 (python-find-function): Delete command.
13378 (python-nav-jump-to-defun): New command.
13379 (python-next-statement): Delete command.
13380 (python-nav-forward-sentence): New command.
13381 (python-previous-statement): Delete command.
13382 (python-nav-backward-sentence): New command.
13383 (python-fill-paragraph): Delete command.
13384 (python-fill-paragraph-function): New command.
13385 (python-send-buffer): Delete command.
13386 (python-shell-send-buffer): New command.
13387 (python-send-defun): Delete command.
13388 (python-shell-send-defun): New command.
13389 (python-send-region, python-send-region-and-go): Delete commands.
13390 (python-shell-send-region)
13391 (python-shell-switch-to-shell): New commands.
13392 (python-send-string): Delete command.
13393 (python-shell-send-string): New command.
13394 (python-switch-to-python): Delete command.
13395 (python-shell-switch-to-shell): New command.
13396 (python-describe-symbol): Delete command.
13397 (python-eldoc-at-point): New command.
13398 (python--set-prompt-regexp, python-args-to-list)
13399 (python-after-info-look, python-check-version)
13400 (python-check-comint-prompt, python-find-imports)
13401 (python-execute-file, turn-off-pdbtrack, turn-on-pdbtrack)
13402 (python-unload-function, python-expand-template)
13403 (python-maybe-jython, python-preoutput-filter)
13404 (python-pdbtrack-get-source-buffer)
13405 (python-pdbtrack-grub-for-buffer, python-pdbtrack-overlay-arrow)
13406 (python-pdbtrack-toggle-stack-tracking)
13407 (python-pdbtrack-track-stack-file, python-initial-text)
13408 (python-first-word, python-comment-line-p, python-send-command)
13409 (python-setup-brm, python-sentinel, python-set-proc)
13410 (python-skip-out, python-input-filter, python-outdent-p)
13411 (python-outline-level, python-backslash-continuation-line-p)
13412 (python-end-of-block, python-end-of-statement, python-mark-block)
13413 (python-beginning-of-block, python-beginning-of-statement)
13414 (python-blank-line-p, python-beginning-of-string)
13415 (python-open-block-statement-p): Delete functions.
13416 (python-indent-line, python-indent-line-1): Delete functions.
13417 (python-indent-line): New function.
13418 (python-indentation-levels): Delete function.
13419 (python-indent-calculate-levels): New function.
13420 (python-proc): Delete function.
13421 (python-shell-get-process): New function.
13422 (python-send-receive): Delete function.
13423 (python-shell-send-string-no-output): New function.
13424 (python-module-path): Delete function.
13425 (python-ffap-module-path): New function.
13426 (python-completion-at-point)
13427 (python-symbol-completions): Delete functions.
13428 (python-completion-complete-at-point): New function.
13429 (python-load-file): Delete function.
13430 (python-shell-send-file): New function.
13431 (python-calculate-indentation): Delete function.
13432 (python-indent-calculate-indentation): New function.
13433 (python-skip-comments/blanks): Delete function.
13434 (python-util-forward-comment): New function.
13435 (python-continuation-line-p): Delete function.
13436 (python-info-continuation-line-p): New function.
13437 (python-which-func, python-current-defun): Delete function.
13438 (python-info-current-defun): New function.
13439 (python-beginning-of-defun): Delete function.
13440 (python-nav-beginning-of-defun): New function.
13441 (python-close-block-statement-p)
13442 (python-block-end-p): Delete function.
13443 (python-info-closing-block): New function.
13444 (python-comint-output-filter-function)
13445 (python-eldoc--get-doc-at-point, python-end-of-defun-function)
13446 (python-fill-comment, python-fill-decorator, python-fill-paren)
13447 (python-fill-string, python-imenu-make-element-tree)
13448 (python-imenu-make-tree, python-imenu-tree-assoc)
13449 (python-indent-context, python-indent-dedent-line)
13450 (python-indent-line-function)
13451 (python-indent-post-self-insert-function)
13452 (python-indent-toggle-levels)
13453 (python-info-assignment-continuation-line-p)
13454 (python-info-beginning-of-backlash)
13455 (python-info-block-continuation-line-p)
13456 (python-info-closing-block-message)
13457 (python-info-line-ends-backslash-p)
13458 (python-info-looking-at-beginning-of-defun)
13459 (python-info-ppss-context, python-info-ppss-context-type)
13460 (python-nav-list-defun-positions, python-nav-read-defun)
13461 (python-nav-sentence-end, python-nav-sentence-start)
13462 (python-pdbtrack-comint-output-filter-function)
13463 (python-pdbtrack-set-tracked-buffer)
13464 (python-shell-calculate-exec-path)
13465 (python-shell-calculate-process-environment)
13466 (python-shell-completion--do-completion-at-point)
13467 (python-shell-completion--get-completions)
13468 (python-shell-completion-complete-at-point)
13469 (python-shell-completion-complete-or-indent)
13470 (python-shell-get-or-create-process)
13471 (python-shell-get-process-name)
13472 (python-shell-internal-get-or-create-process)
13473 (python-shell-internal-get-process-name)
13474 (python-shell-internal-send-string, python-shell-make-comint)
13475 (python-shell-parse-command, python-shell-send-setup-code)
13476 (python-skeleton-add-menu-items)
13477 (python-util-clone-local-variables, python-util-position)
13478 (run-python-internal, python-indentation-levels)
13479 (python-nav-beginning-of-defun)
13480 (python-completion-complete-at-point): New functions.
13481 (run-python): Change arguments. New API requirements.
13482
13483 2012-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
13484
13485 * emacs-lisp/cl-lib.el (cl--defsubst-expand): Autoload inliner
13486 (bug#11649).
13487
13488 * emacs-lisp/macroexp.el (macroexp--compiler-macro): New function.
13489 (macroexp--expand-all): Use it.
13490
13491 * emacs-lisp/cl-macs.el (cl--transform-function-property): Remove.
13492 (cl-define-setf-expander, cl-deftype, cl-define-compiler-macro):
13493 Use `cl-function' instead.
13494
13495 2012-06-14 Juanma Barranquero <lekktu@gmail.com>
13496
13497 * makefile.w32-in (COMPILE_FIRST): Remove subr.el.
13498 Suggested by Stefan Monnier while discussing bug#11657.
13499
13500 2012-06-14 Sam Steingold <sds@gnu.org>
13501
13502 * files.el (abort-if-file-too-large): Use `file-size-human-readable'.
13503
13504 2012-06-14 Andreas Schwab <schwab@linux-m68k.org>
13505
13506 * play/doctor.el (doctor-doc): Remove parameter and use
13507 doctor-sent instead of sent.
13508 (doctor-read-print): Use doctor-sent instead of sent. (Bug#11708)
13509
13510 2012-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
13511
13512 * files.el: Require cl-lib.
13513 (file-name-non-special): Replace case -> cl-case.
13514
13515 * emacs-lisp/cl-macs.el (cl-defstruct): Don't add print-func.
13516
13517 * emacs-lisp/edebug.el (edebug-read-function): Remove old incorrect
13518 mapping from #' to function*.
13519
13520 2012-06-13 Chong Yidong <cyd@gnu.org>
13521
13522 * mouse.el (mouse-drag-track): Do not set the mark if the user
13523 releases the mouse without selecting anything (Bug#11588).
13524
13525 2012-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
13526
13527 * textmodes/tex-mode.el (latex-indent): Recognize tex-verbatim at EOB
13528 as well (bug#11646).
13529
13530 * loadup.el: Count byte-code functions as well.
13531
13532 * emacs-lisp/byte-opt.el (featurep): Move compiler-macro...
13533 * emacs-lisp/bytecomp.el (featurep): ...here (bug#11692).
13534
13535 * emacs-lisp/autoload.el (make-autoload): Accept nil doc-string-elt
13536 (bug#11649). Add cl-defun and cl-defmacro.
13537
13538 2012-06-13 Drew Adams <drew.adams@oracle.com>
13539
13540 * help-mode.el (help-bookmark-make-record, help-bookmark-jump):
13541 Fix last change.
13542
13543 2012-06-13 Michael Albinus <michael.albinus@gmx.de>
13544
13545 * net/dbus.el (dbus-call-method): Use timeout for `read-event'.
13546 Otherwise, it blocks in batch mode.
13547
13548 2012-06-13 Juanma Barranquero <lekktu@gmail.com>
13549
13550 * help-mode.el (bookmark-make-record-default): Declare.
13551
13552 2012-06-13 Chong Yidong <cyd@gnu.org>
13553
13554 * emacs-lisp/package.el (list-packages): Compute a list of
13555 packages that are newly-available since the last list-packages
13556 invocation.
13557 (package-menu--new-package-list): New var.
13558 (package-menu--generate, package-menu--print-info)
13559 (package-menu--status-predicate, package-menu-mark-install):
13560 Handle new status label "new".
13561
13562 2012-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
13563
13564 * emacs-lisp/cl-macs.el (cl-remf): Fix error in recent
13565 conversion to backquotes.
13566
13567 2012-06-12 Chong Yidong <cyd@gnu.org>
13568
13569 * emacs-lisp/edebug.el (edebug-inhibit-emacs-lisp-mode-bindings):
13570 Rename from gud-inhibit-global-bindings.
13571
13572 * emacs-lisp/eieio.el (eieio-pre-method-execution-hooks): Doc fix.
13573
13574 * nxml/nxml-glyph.el (nxml-glyph-set-functions): Rename abnormal
13575 hook from nxml-glyph-set-hook.
13576
13577 * progmodes/cwarn.el (cwarn-mode): Remove redundant variable
13578 declaration.
13579
13580 * progmodes/pascal.el (pascal-toggle-completions): Doc fix.
13581
13582 * textmodes/bibtex.el (bibtex-string-file-path, bibtex-file-path):
13583 Convert to defcustom.
13584
13585 2012-06-12 Drew Adams <drew.adams@oracle.com>
13586
13587 * help-mode.el (help-bookmark-make-record, help-bookmark-jump):
13588 New functions.
13589 (help-mode): Use them.
13590
13591 2012-06-11 Glenn Morris <rgm@gnu.org>
13592
13593 * progmodes/fortran.el (fortran-font-lock-keywords-3):
13594 Use preprocessor face for directives.
13595 (fortran-directive-re): Doc fix.
13596
13597 2012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
13598
13599 * emacs-lisp/cl-macs.el (cl-parse-loop-clause): Fix error in recent
13600 conversion to backquotes (bug#11652).
13601
13602 Fix compiler-expansion of CL's cXXr functions (bug#11673).
13603 * emacs-lisp/cl-lib.el (cl--defalias): New function.
13604 (cl-values, cl-values-list, cl-copy-seq, cl-svref, cl-first)
13605 (cl-second, cl-rest, cl-endp, cl-third, cl-fourth): Use it.
13606 (cl-plusp, cl-minusp, cl-fifth, cl-sixth, cl-seventh, cl-eighth)
13607 (cl-ninth, cl-tenth): Mark them as inlinable.
13608 (cl-caaar, cl-caadr, cl-cadar, cl-caddr, cl-cdaar, cl-cdadr)
13609 (cl-cddar, cl-cdddr, cl-caaaar, cl-caaadr, cl-caadar, cl-caaddr)
13610 (cl-cadaar, cl-cadadr, cl-caddar, cl-cadddr, cl-cdaaar, cl-cdaadr)
13611 (cl-cdadar, cl-cdaddr, cl-cddaar, cl-cddadr, cl-cdddar, cl-cddddr):
13612 Add a compiler-macro declaration to use cl--compiler-macro-cXXr.
13613 (cl-list*, cl-adjoin): Don't put an autoload manually.
13614 * emacs-lisp/cl-macs.el (cl--compiler-macro-adjoin)
13615 (cl--compiler-macro-list*): Add autoload cookie.
13616 (cl--compiler-macro-cXXr): New function.
13617
13618 * help-fns.el (help-fns--compiler-macro): New function extracted from
13619 describe-function-1; follow aliases and use `compiler-macro' property.
13620 (describe-function-1): Use it.
13621
13622 2012-06-11 Chong Yidong <cyd@gnu.org>
13623
13624 * startup.el (fancy-splash-head): Use splash.svg even if librsvg
13625 is uninstalled, if imagemagick is installed.
13626
13627 2012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
13628
13629 * emacs-lisp/cl-lib.el: Use lexical-binding.
13630 (cl-map-extents, cl-maclisp-member): Remove.
13631 (cl--set-elt, cl--set-nthcdr, cl--set-buffer-substring)
13632 (cl--set-substring, cl--block-wrapper, cl--block-throw)
13633 (cl--compiling-file, cl--mapcar-many, cl--do-subst): Use "cl--" prefix.
13634 * emacs-lisp/cl-extra.el: Use lexical-binding.
13635 (cl--mapcar-many, cl--map-keymap-recursively, cl--map-intervals)
13636 (cl--map-overlays, cl--set-frame-visible-p, cl--progv-save)
13637 (cl--progv-before, cl--progv-after, cl--finite-do, cl--set-getf)
13638 (cl--do-remf, cl--do-prettyprint): Use "cl--" prefix.
13639 * emacs-lisp/cl-seq.el: Use lexical-binding.
13640 (cl--parsing-keywords, cl--check-key, cl--check-test-nokey)
13641 (cl--check-test, cl--check-match): Use "cl--" prefix and backquotes.
13642 (cl--alist, cl--sublis-rec, cl--nsublis-rec, cl--tree-equal-rec):
13643 * emacs-lisp/cl-macs.el (cl--lambda-list-keywords): Use "cl--" prefix.
13644 * edmacro.el (edmacro-mismatch): Simplify to remove dependence on
13645 CL's internals.
13646
13647 2012-06-11 Michael Albinus <michael.albinus@gmx.de>
13648
13649 Sync with Tramp 2.2.6-pre.
13650
13651 * net/tramp-cache.el (tramp-dump-connection-properties): Let-bind
13652 `print-length' and `print-level' to nil, in order to avoid
13653 truncation. Reported by Christopher Schmidt
13654 <christopher@ristopher.com>.
13655
13656 * net/tramp-cmds.el (tramp-cleanup-connection): Delete also process.
13657
13658 * net/tramp-compat.el (tramp-compat-condition-case-unless-debug):
13659 New defmacro.
13660 (tramp-compat-copy-directory): Add optional argument
13661 COPY-CONTENTS. It is not handled yet.
13662
13663 * net/tramp-ftp.el (tramp-disable-ange-ftp): Fix docstring.
13664 (tramp-ftp-file-name-p): Simplify.
13665
13666 * net/tramp-gvfs.el (tramp-gvfs-handle-expand-file-name):
13667 * net/tramp-gw.el (tramp-gw-open-connection): Add hop to
13668 connection vector.
13669
13670 * net/tramp-sh.el (tramp-copy-size-limit): Fix docstring.
13671 (tramp-methods): Do not use `tramp-password-end-of-line'.
13672 (tramp-completion-function-alist-putty): Handle UNIX case.
13673 (tramp-remote-path): Add "/opt/bin", "/opt/sbin" and "/opt/local/bin".
13674 (tramp-do-file-attributes-with-stat)
13675 (tramp-do-directory-files-and-attributes-with-stat) Return uid and
13676 gid as real numbers. They could run out of integer range on cygwin.
13677 (tramp-do-copy-or-rename-file-out-of-band): Better trace format.
13678 (tramp-sh-handle-expand-file-name): Handle hops.
13679 (tramp-open-connection-setup-interactive-shell):
13680 Use `tramp-cleanup'. Move check for busyboxes ...
13681 (tramp-find-shell): ... here. Simplify implementation.
13682 Set "remote-shell" property also for alternative shells.
13683 (tramp-remote-coding-commands): Check "test -c /dev/stdout".
13684 If failing, a regular file would be written otherwise.
13685 Reported by Dmitry Kurochkin <dmitry.kurochkin@gmail.com>.
13686 (tramp-find-inline-encoding): Cache the coding commands in the
13687 process cache. Apply test command on the remote side, if defined.
13688 (tramp-find-inline-compress): Cache the compress commands in the
13689 process cache.
13690 (tramp-compute-multi-hops): Save `tramp-default-proxies-alist'
13691 when requested. Handle hops.
13692 (tramp-current-connection): New defvar.
13693 (tramp-maybe-open-connection): Use `tramp-cleanup'.
13694 Throw `suppress', if there was a failed connection shortly before.
13695 Handle user interrupt. (Bug#10187)
13696 (tramp-get-inline-compress, tramp-get-inline-coding):
13697 Read connection properties from the process cache.
13698
13699 * net/tramp-smb.el (tramp-smb-server-version)
13700 (tramp-smb-wrong-passwd-regexp, tramp-smb-actions-with-tar):
13701 New defconsts.
13702 (tramp-smb-prompt): Extend for powershell prompt.
13703 (tramp-smb-file-name-handler-alist): Add handlers for
13704 `process-file', `shell-command' and `start-file-process'.
13705 (tramp-smb-winexe-program, tramp-smb-winexe-shell-command)
13706 (tramp-smb-winexe-shell-command-switch): New defcustoms.
13707 (tramp-smb-file-name-p): Simplify.
13708 (tramp-smb-action-with-tar, tramp-smb-handle-process-file)
13709 (tramp-smb-kill-winexe-function, tramp-smb-call-winexe)
13710 (tramp-smb-shell-quote-argument): New defuns.
13711 (tramp-smb-handle-copy-directory): Add COPY-CONTENTS argument.
13712 Implement using "tar". By this, time-stamps are preserved.
13713 (tramp-smb-handle-copy-file): Handle also the case of directories.
13714 (tramp-smb-do-file-attributes-with-stat)
13715 (tramp-smb-get-file-entries, tramp-smb-get-cifs-capabilities):
13716 Use `tramp-get-connection-buffer').
13717 (tramp-smb-handle-rename-file): Use "rename", when source and
13718 target are on the same share.
13719 (tramp-smb-maybe-open-connection): Handle wrong passwords.
13720 Use `tramp-smb-server-version'.
13721 (tramp-smb-wait-for-output): Remove prompt.
13722
13723 * net/tramp.el (top): Require 'cl.
13724 (tramp-methods, tramp-rsh-end-of-line):
13725 Remove `tramp-password-end-of-line' from docstring.
13726 (tramp-save-ad-hoc-proxies): New defcustom.
13727 (tramp-completion-function-alist): Adapt docstring.
13728 (tramp-default-password-end-of-line): Remove defcustom.
13729 (tramp-shell-prompt-pattern): Allow "[]" style prompts. (Bug#11065)
13730 (tramp-user-regexp, tramp-file-name-regexp-unified)
13731 (tramp-file-name-regexp-url): Extend regexp by hop separator.
13732 (tramp-postfix-hop-format, tramp-postfix-hop-regexp)
13733 (tramp-remote-file-name-spec-regexp): New defconst.
13734 (tramp-file-name-structure): Extend structure for hops.
13735 (tramp-get-method-parameter): Move up.
13736 (tramp-file-name-p, tramp-dissect-file-name)
13737 (with-parsed-tramp-file-name): Handle hops.
13738 (tramp-file-name-hop): New defun.
13739 (tramp-make-tramp-file-name): New optional arg HOP.
13740 (tramp-message-show-progress-reporter-message): New defvar.
13741 (tramp-with-progress-reporter): Use it. We cannot use
13742 `tramp-message-show-message' here, because this suppresses also
13743 error buffers.
13744 (tramp-error-with-buffer): Suppress buffer view, if
13745 `tramp-message-show-message' is nil.
13746 Use `tramp-get-connection-buffer'.
13747 (tramp-cleanup): New defun.
13748 (tramp-rfn-eshadow-update-overlay): Let-bind `non-essential' to `t'.
13749 (tramp-file-name-handler): If `debug-on-error' is set, propagate
13750 an error unchanged.
13751 (tramp-completion-handle-file-name-all-completions): Handle hops.
13752 Fix an error when called from ido.
13753 (tramp-completion-dissect-file-name): Use better local variable
13754 name. Add hop to the vector.
13755 (tramp-handle-insert-file-contents): Use progress-reporter for the
13756 whole scenario.
13757 (tramp-action-password): Let-bind `enable-recursive-minibuffers'
13758 to `t'.
13759 (tramp-check-for-regexp): Simplify search.
13760 (tramp-enter-password): Remove it. Move implementation ...
13761 (tramp-action-password): ... here.
13762 (tramp-mode-string-to-int, tramp-local-host-p)
13763 (tramp-make-tramp-temp-file, tramp-read-passwd)
13764 (tramp-clear-passwd, tramp-time-less-p, tramp-time-diff):
13765 Set tramp-autoload cookie.
13766
13767 * net/trampver.el: Update release number.
13768
13769 2012-06-11 Thierry Volpiatto <thierry.volpiatto@gmail.com>
13770 Michael Albinus <michael.albinus@gmx.de>
13771
13772 * net/tramp.el (tramp-set-completion-function): Fix docstring.
13773 (tramp-parse-group, tramp-parse-file)
13774 (tramp-parse-shostkeys-sknownhosts): New defuns.
13775 (tramp-parse-rhosts, tramp-parse-rhosts-group, tramp-parse-shosts)
13776 (tramp-parse-shosts-group, tramp-parse-sconfig)
13777 (tramp-parse-sconfig-group, tramp-parse-shostkeys)
13778 (tramp-parse-sknownhosts, tramp-parse-hosts)
13779 (tramp-parse-hosts-group, tramp-parse-passwd, tramp-parse-netrc):
13780 Use them.
13781 (tramp-parse-passwd-group, tramp-parse-netrc-group)
13782 (tramp-parse-putty-group): Don't narrow.
13783 (tramp-parse-putty): Make a loop.
13784 (tramp-file-name-handler): Catch the `suppress' signal.
13785
13786 2012-06-11 Chong Yidong <cyd@gnu.org>
13787
13788 * image.el (imagemagick-register-types): Put the ImageMagick entry
13789 at the end of image-type-file-name-regexps.
13790
13791 2012-06-11 Johan Bockgård <bojohan@gnu.org>
13792
13793 * emacs-lisp/pcase.el (pcase-UPAT, pcase-QPAT): New edebug specs.
13794 (pcase, pcase-let*, pcase-dolist): Use them.
13795
13796 2012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
13797
13798 * emacs-lisp/pcase.el (pcase--let*): New function.
13799 (pcase-let*): Use it. Use pcase--memoize to avoid repeated expansions.
13800 (pcase--expand): Use macroexp-let².
13801
13802 2012-06-10 Stefan Monnier <monnier@iro.umontreal.ca>
13803
13804 * emacs-lisp/timer.el, emacs-lisp/syntax.el, emacs-lisp/smie.el:
13805 * emacs-lisp/ewoc.el, emacs-lisp/cconv.el, emacs-lisp/bytecomp.el:
13806 * emacs-lisp/byte-opt.el, emacs-lisp/autoload.el: Convert to cl-lib.
13807 * emacs-lisp/easymenu.el, emacs-lisp/easy-mmode.el:
13808 * emacs-lisp/derived.el: Use pcase instead of `cl'.
13809 * emacs-lisp/cl-lib.el: Get rid of special cl-macs auto load.
13810
13811 2012-06-10 Glenn Morris <rgm@gnu.org>
13812
13813 * mail/rmail.el (rmail-yank-current-message): Leave point at
13814 correct position. (Bug#11660)
13815
13816 2012-06-10 Chong Yidong <cyd@gnu.org>
13817
13818 * allout-widgets.el: Fix code header.
13819
13820 2012-06-10 Chong Yidong <cyd@gnu.org>
13821
13822 * cus-edit.el (customize-changed-options-previous-release):
13823 Bump to 24.1.
13824
13825 2012-06-09 Andreas Schwab <schwab@linux-m68k.org>
13826
13827 * Makefile.in (BIG_STACK_DEPTH): Enlarge to 2200.
13828
13829 2012-06-09 Chong Yidong <cyd@gnu.org>
13830
13831 * ebuff-menu.el (electric-buffer-list): Preserve header line.
13832
13833 2012-06-09 Martin Rudalics <rudalics@gmx.at>
13834
13835 * window.el (special-display-popup-frame): Don't use
13836 window--display-buffer (Bug#11651).
13837
13838 2012-06-09 Eli Zaretskii <eliz@gnu.org>
13839
13840 Fix parallel builds: make sure loaddefs.el is not being written
13841 while Lisp files are compiled.
13842 (compile): Don't depend on 'mh-autoloads'.
13843 (compile-CMD, compile-SH): Depend on 'autoloads'.
13844 (bootstrap): Don't depend on 'autoloads' and 'mh-autoloads'.
13845
13846 * makefile.w32-in (BIG_STACK_DEPTH): Enlarge to 2200. (Bug#11649)
13847
13848 2012-06-09 Chong Yidong <cyd@gnu.org>
13849
13850 * face-remap.el (face-remap-add-relative, face-remap-set-base)
13851 (buffer-face-set, buffer-face-toggle, buffer-face-mode-invoke):
13852 Doc fixes (Bug#11225).
13853
13854 2012-06-09 Stefan Monnier <monnier@iro.umontreal.ca>
13855
13856 * emacs-lisp/macroexp.el (macroexp--expand-all): Only autoload
13857 a function if there's a clear indication that it has a compiler-macro.
13858 * emacs-lisp/byte-run.el (defun-declarations-alist, defmacro, defun)
13859 (macro-declarations-alist): Add arglist to declaration functions.
13860 (defun-declarations-alist): Add `obsolete' and `compiler-macro'.
13861 * emacs-lisp/cl-seq.el (cl-member, cl-assoc):
13862 * emacs-lisp/cl-lib.el (cl-list*, cl-adjoin):
13863 * emacs-lisp/cl-extra.el (cl-get): Use the new `declare' statement.
13864 Also add autoload to find the compiler macro.
13865 * emacs-lisp/cl-macs.el (eql) [compiler-macro]: Remove.
13866 (cl--compiler-macro-member, cl--compiler-macro-assoc)
13867 (cl--compiler-macro-adjoin, cl--compiler-macro-list*)
13868 (cl--compiler-macro-get): New functions, replacing calls to
13869 cl-define-compiler-macro.
13870 (cl-typep) [compiler-macro]: Use macroexp-let².
13871
13872 2012-06-08 Nick Dokos <nicholas.dokos@hp.com> (tiny change)
13873
13874 * calendar/icalendar.el (icalendar--parse-vtimezone): Import TZID
13875 string properly, fixes Bug#11473.
13876
13877 2012-06-08 Chong Yidong <cyd@gnu.org>
13878
13879 * faces.el (set-face-attribute): Doc fix.
13880 (modify-face): Don't use :bold and :italic.
13881 (error, warning, success): Tweak definitions.
13882
13883 * cus-edit.el (custom-modified, custom-invalid, custom-rogue)
13884 (custom-modified, custom-set, custom-changed, custom-themed)
13885 (custom-saved, custom-button, custom-button-mouse)
13886 (custom-button-pressed, custom-state, custom-comment-tag)
13887 (custom-variable-tag, custom-group-tag-1, custom-group-tag)
13888 (custom-group-subtitle): Use new-style face specs.
13889 (custom-invalid-face, custom-rogue-face, custom-modified-face)
13890 (custom-set-face, custom-changed-face, custom-saved-face)
13891 (custom-button-face, custom-button-pressed-face)
13892 (custom-documentation-face, custom-state-face)
13893 (custom-comment-face, custom-comment-tag-face)
13894 (custom-variable-tag-face, custom-variable-button-face)
13895 (custom-face-tag-face, custom-group-tag-face-1)
13896 (custom-group-tag-face): Remove obsolete face alias.
13897
13898 * epa.el (epa-validity-high, epa-validity-medium)
13899 (epa-validity-low, epa-mark, epa-field-name, epa-string)
13900 (epa-field-name, epa-field-body):
13901 * font-lock.el (font-lock-comment-face, font-lock-string-face)
13902 (font-lock-keyword-face, font-lock-builtin-face)
13903 (font-lock-function-name-face, font-lock-variable-name-face)
13904 (font-lock-type-face, font-lock-constant-face):
13905 * ido.el (ido-first-match, ido-only-match, ido-subdir)
13906 (ido-virtual, ido-indicator, ido-incomplete-regexp):
13907 * speedbar.el (speedbar-button-face, speedbar-file-face)
13908 (speedbar-directory-face, speedbar-tag-face)
13909 (speedbar-selected-face, speedbar-highlight-face)
13910 (speedbar-separator-face):
13911 * whitespace.el (whitespace-newline, whitespace-space)
13912 (whitespace-hspace, whitespace-tab, whitespace-trailing)
13913 (whitespace-line, whitespace-space-before-tab)
13914 (whitespace-space-after-tab, whitespace-indentation)
13915 (whitespace-empty):
13916 * emulation/cua-base.el (cua-global-mark):
13917 * eshell/em-prompt.el (eshell-prompt):
13918 * net/newst-plainview.el (newsticker-new-item-face)
13919 (newsticker-old-item-face, newsticker-immortal-item-face)
13920 (newsticker-obsolete-item-face, newsticker-date-face)
13921 (newsticker-statistics-face, newsticker-default-face):
13922 * net/newst-reader.el (newsticker-feed-face)
13923 (newsticker-extra-face, newsticker-enclosure-face):
13924 * net/newst-treeview.el (newsticker-treeview-face)
13925 (newsticker-treeview-new-face, newsticker-treeview-old-face)
13926 (newsticker-treeview-immortal-face)
13927 (newsticker-treeview-obsolete-face)
13928 (newsticker-treeview-selection-face):
13929 * net/rcirc.el (rcirc-my-nick, rcirc-other-nick)
13930 (rcirc-bright-nick, rcirc-server, rcirc-timestamp)
13931 (rcirc-nick-in-message, rcirc-nick-in-message-full-line)
13932 (rcirc-prompt, rcirc-track-keyword, rcirc-url, rcirc-keyword):
13933 * nxml/nxml-outln.el (nxml-heading, nxml-outline-indicator)
13934 (nxml-outline-active-indicator, nxml-outline-ellipsis):
13935 * play/mpuz.el (mpuz-unsolved, mpuz-solved, mpuz-trivial)
13936 (mpuz-text):
13937 * progmodes/vera-mode.el (vera-font-lock-number)
13938 (vera-font-lock-function, vera-font-lock-interface):
13939 * textmodes/table.el (table-cell): Use new-style face specs, and
13940 don't use the old :bold and :italic attributes.
13941
13942 * progmodes/ebrowse.el (ebrowse-tree-mark, ebrowse-root-class)
13943 (ebrowse-member-attribute, ebrowse-default, ebrowse-file-name)
13944 (ebrowse-member-class, ebrowse-progress): Likewise.
13945 (ebrowse-tree-mark-face, ebrowse-root-class-face)
13946 (ebrowse-file-name-face, ebrowse-default-face)
13947 (ebrowse-member-attribute-face, ebrowse-member-class-face)
13948 (ebrowse-progress-face): Remove obsolete faces.
13949
13950 * progmodes/flymake.el (flymake-errline, flymake-warnline):
13951 Inherit from error and warning faces respectively.
13952
13953 * textmodes/flyspell.el (flyspell-incorrect, flyspell-duplicate):
13954 Likewise.
13955 (flyspell-incorrect-face, flyspell-duplicate-face):
13956 Remove obsolete aliases.
13957
13958 2012-06-08 Michael Albinus <michael.albinus@gmx.de>
13959
13960 * net/tramp-compat.el (tramp-compat-temporary-file-directory):
13961 Avoid infloop.
13962
13963 2012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
13964
13965 * startup.el (argv, argi): Make lexically scoped.
13966 * emacs-lisp/float-sup.el (pi): Use internal-make-var-non-special.
13967 * emacs-lisp/cl-macs.el: Use lexical-binding.
13968 Rename cl-bind-* to cl--bind-*.
13969 * files.el: Don't require `cl' since it doesn't use it.
13970 * emacs-lisp/pcase.el, emacs-lisp/macroexp.el: Add coding cookie.
13971
13972 2012-06-08 Juanma Barranquero <lekktu@gmail.com>
13973
13974 * textmodes/texinfmt.el: Fix bug#11640 (reverts part of 2008-07-31T05:33:56Z!dann@ics.uci.edu).
13975 (texinfo-format-printindex): Use `texinfo-sort-region' in all platforms,
13976 instead of calling external sort utility.
13977 (texinfo-sort-region, texinfo-sort-startkeyfun): Restore functions.
13978
13979 2012-06-08 Eli Zaretskii <eliz@gnu.org>
13980
13981 * descr-text.el (describe-char): Mention how to insert the
13982 character, if the current input method doesn't support it.
13983 See the discussion in this thread for the details:
13984 http://lists.gnu.org/archive/html/emacs-devel/2012-05/msg00533.html.
13985
13986 2012-06-08 Sam Steingold <sds@gnu.org>
13987
13988 * bindings.el (global-map): Bind XF86Forward to next-buffer and
13989 XF86Back to previous-buffer.
13990 (minibuffer-local-map): Bind them to next-history-element and
13991 previous-history-element respectively.
13992 * help-mode.el (help-mode-map): Bind them to help-go-forward and
13993 help-go-back respectively.
13994 * info.el (Info-mode-map): Bind them to Info-history-forward and
13995 Info-history-back respectively.
13996 These are the keys next to Up on the ThinkPad keyboard.
13997
13998 2012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
13999
14000 Get rid of cl-lexical-let, keeping only lexical-let for compatibility.
14001 * emacs-lisp/cl-macs.el: Provide itself.
14002 (cl--labels-convert-cache): New var.
14003 (cl--labels-convert): New function.
14004 (cl-flet, cl-labels): New implementation with new semantics, relying on
14005 lexical-binding.
14006 * emacs-lisp/cl.el: Mark compatibility aliases as obsolete.
14007 (cl-closure-vars, cl--function-convert-cache)
14008 (cl--function-convert): Move from cl-macs.el.
14009 (lexical-let, lexical-let*, flet, labels): Move from cl-macs.el and
14010 rename by removing the "cl-" prefix.
14011 * emacs-lisp/macroexp.el (macroexp-unprogn): New function.
14012
14013 2012-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
14014
14015 * emacs-lisp/cl.el (cl-macroexpand, cl-macro-environment)
14016 (cl-macroexpand-all, cl-not-hash-table, cl-builtin-gethash)
14017 (cl-builtin-remhash, cl-builtin-clrhash, cl-builtin-maphash)
14018 (cl-map-keymap, cl-copy-tree, cl-gethash, cl-puthash, cl-remhash)
14019 (cl-clrhash, cl-maphash, cl-make-hash-table, cl-hash-table-p)
14020 (cl-hash-table-count): Add old compatibility aliases.
14021
14022 * emacs-lisp/cl-macs.el (cl-macro-environment): Remove var.
14023 Use macroexpand-all-environment instead.
14024 (cl--old-macroexpand): New var.
14025 (cl--sm-macroexpand): New function.
14026 (cl-symbol-macrolet): Use it during macro expansion.
14027 (cl--function-convert-cache): New var.
14028 (cl--function-convert): New function, extracted from
14029 cl-macroexpand-all.
14030 (cl-lexical-let): Use it.
14031
14032 * emacs-lisp/cl-lib.el (cl-macro-environment): Remove decl.
14033 (cl-macroexpand): Move to cl-macs.el and rename to cl--sm-macroexpand.
14034 (cl-member): Remove old alias.
14035
14036 * emacs-lisp/cl-extra.el (cl-map-keymap, cl-copy-tree)
14037 (cl-not-hash-table, cl-builtin-gethash, cl-builtin-remhash)
14038 (cl-builtin-clrhash, cl-builtin-maphash, cl-gethash, cl-puthash)
14039 (cl-remhash, cl-clrhash, cl-maphash, cl-make-hash-table)
14040 (cl-hash-table-p, cl-hash-table-count): Move to cl.el.
14041 (cl-macroexpand-cmacs): Remove var.
14042 (cl-macroexpand-all, cl-macroexpand-body): Remove funs.
14043 Use macroexpand-all instead.
14044
14045 2012-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
14046
14047 * emacs-lisp/macroexp.el (macroexp-progn, macroexp-let*, macroexp-if)
14048 (macroexp-let², macroexp--const-symbol-p, macroexp-const-p)
14049 (macroexp-copyable-p): New functions and macros.
14050 * emacs-lisp/edebug.el (edebug-unwrap):
14051 * emacs-lisp/disass.el (disassemble-internal): Use macroexp-progn.
14052 * emacs-lisp/pcase.el: Use macroexp-let*, macroexp-if, ...
14053 (pcase--let*): Remove.
14054 * emacs-lisp/bytecomp.el (byte-compile-const-symbol-p)
14055 (byte-compile-constp): Remove. Use macroexp--const-symbol-p and
14056 macroexp-const-p instead.
14057 * emacs-lisp/byte-opt.el: Use macroexp-const-p and macroexp-progn.
14058
14059 * emacs-lisp/cl-macs.el: Clean up the name space by using "cl--"
14060 instead of "cl-" for internal definitions. Use macroexp-const-p.
14061 (cl-old-bc-file-form): Remove var.
14062 (cl-const-exprs-p): Remove fun.
14063 (cl-labels, cl-macrolet): Use backquote.
14064 (cl-lexical-let): Use cl-symbol-macrolet. Don't use cl-defun-expander.
14065 (cl-defun-expander, cl-byte-compile-compiler-macro): Remove fun.
14066 (cl-define-setf-expander): Rename from cl-define-setf-method.
14067 * emacs-lisp/cl.el: Adjust alias for define-setf-method.
14068
14069 * international/mule-cmds.el: Don't require CL.
14070 (view-hello-file): Don't use `letf'.
14071
14072 2012-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
14073
14074 * tmm.el (tmm-prompt): Use string-prefix-p.
14075 (tmm-completion-delete-prompt): Don't affect current-buffer outside.
14076 (tmm-add-prompt): Use minibuffer-completion-help.
14077 (tmm-delete-map): Remove.
14078
14079 * subr.el (kbd): Make it its own function.
14080
14081 2012-06-07 Stefan Merten <smerten@oekonux.de>
14082
14083 * textmodes/rst.el: Use `eval-when-compile' for requiring `cl.el'.
14084 Silence compiler warnings. Fix versions.
14085 (rst-position-if, rst-position, rst-some, rst-signum): New functions.
14086 (rst-shift-region, rst-adornment-level, rst-compute-tabs)
14087 (rst-indent-line, rst-shift-region, rst-forward-line): Use them.
14088 (rst-package-emacs-version-alist): Correct Emacs version to
14089 represent major merge with upstream.
14090 (rst-transition, rst-adornment, rst-compile-toolsets): Fix versions.
14091
14092 2012-06-06 Glenn Morris <rgm@gnu.org>
14093
14094 * mail/emacsbug.el (report-emacs-bug): Add relevant EMACS env-vars.
14095 Only print environment variables if set.
14096
14097 2012-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
14098
14099 * emacs-lisp/macroexp.el: Don't require CL since we don't use it.
14100 (macroexp--cons): Rename from maybe-cons.
14101 (macroexp--accumulate): Rename from macroexp-accumulate.
14102 (macroexp--all-forms): Rename from macroexpand-all-forms.
14103 (macroexp--all-clauses): Rename from macroexpand-all-clauses.
14104 (macroexp--expand-all): Rename from macroexpand-all-1.
14105
14106 2012-06-06 Sam Steingold <sds@gnu.org>
14107
14108 * calendar/calendar.el (calendar-in-read-only-buffer):
14109 Call `special-mode' to enable the standard read-only keybindings.
14110
14111 2012-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
14112
14113 * emacs-lisp/macroexp.el (macroexpand-all-1): Don't spam the output
14114 with "loading" messages (bug#11635).
14115
14116 2012-06-06 Michael Albinus <michael.albinus@gmx.de>
14117
14118 * files.el (enable-remote-dir-locals): New option.
14119 (hack-dir-local-variables): Use it. (Bug#1933, Bug#6731)
14120
14121 * net/tramp-compat.el (tramp-compat-temporary-file-directory):
14122 Ensure, that the temp directory is local.
14123
14124 * net/tramp-sh.el (tramp-sh-handle-write-region): Let-bind
14125 `temporary-file-directory'.
14126
14127 * progmodes/python.el (python-send-region): Ensure, that the
14128 temporary file is created also in the remote case.
14129
14130 2012-06-06 Glenn Morris <rgm@gnu.org>
14131
14132 * vc/vc-rcs.el (vc-rcs-rcs2log-program): New.
14133 (vc-rcs-update-changelog): Use it.
14134
14135 * emacs-lisp/authors.el (authors-fixed-entries): Remove vcdiff.
14136
14137 * vc/vc-sccs.el (vc-sccs-write-revision): New function.
14138 (vc-sccs-workfile-unchanged-p): Use vc-sccs-write-revision.
14139 (vc-sccs-diff): Replace use of the external vcdiff script.
14140
14141 2012-06-05 Glenn Morris <rgm@gnu.org>
14142
14143 * ledit.el: Move to obsolete/.
14144
14145 2012-06-05 Sam Steingold <sds@gnu.org>
14146
14147 * calendar/calendar.el (calendar-exit): Reinstate the 2012-03-28
14148 patch (Bug#11140).
14149
14150 2012-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
14151
14152 * emacs-lisp/cust-print.el: Move to obsolete.
14153
14154 * emacs-lisp/macroexp.el (macroexpand-all-1): Tolerate errors during
14155 compiler-macro expansion.
14156
14157 Add native compiler-macro support.
14158 * emacs-lisp/macroexp.el (macroexpand-all-1):
14159 Support compiler-macros directly. Properly follow aliases and apply
14160 the compiler macros more thoroughly.
14161 * emacs-lisp/cl.el: Don't copy compiler-macro properties any more since
14162 macroexpand now properly follows aliases.
14163 * emacs-lisp/cl-macs.el (toplevel, cl-define-compiler-macro)
14164 (cl-compiler-macroexpand): Use new prop.
14165 * emacs-lisp/byte-opt.el (featurep): Optimize earlier.
14166
14167 * emacs-lisp/cl-lib.el (custom-print-functions): Add alias.
14168
14169 2012-06-05 Martin Rudalics <rudalics@gmx.at>
14170
14171 * window.el (get-lru-window, get-mru-window, get-largest-window):
14172 New argument NOT-SELECTED to avoid picking the selected window.
14173 (window--display-buffer-1, window--display-buffer-2): Replace by
14174 new function window--display-buffer
14175 (display-buffer-same-window, display-buffer-reuse-window)
14176 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
14177 Use window--display-buffer.
14178 (display-buffer-use-some-window): Remove temporary dedication
14179 hack by calling get-lru-window and get-largest-window with
14180 NOT-SELECTED argument non-nil. Call window--display-buffer.
14181
14182 2012-06-05 Glenn Morris <rgm@gnu.org>
14183
14184 * vc/vc-sccs.el (vc-sccs-workfile-unchanged-p):
14185 Replace external vcdiff script.
14186
14187 2012-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
14188
14189 * emacs-lisp/cl-lib.el (cl-values, cl-values-list): Fix up last change.
14190
14191 2012-06-04 Chong Yidong <cyd@gnu.org>
14192
14193 * image.el (imagemagick-types-inhibit): Revert last change.
14194 Add INFO and M.
14195 (imagemagick-enabled-types): Remove CIN and EPS*.
14196
14197 2012-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
14198
14199 * emacs-lisp/cl-lib.el: Rename from cl.el.
14200 * emacs-lisp/cl.el: New compatibility file.
14201 * emacs-lisp/cl-lib.el, emacs-lisp/cl-seq.el, emacs-lisp/cl-macs.el:
14202 * emacs-lisp/cl-extra.el: Rename all top-level functions and variables
14203 to obey the "cl-" prefix.
14204 * emacs-lisp/macroexp.el (macroexpand-all-1): Adjust to new name.
14205
14206 2012-06-03 Glenn Morris <rgm@gnu.org>
14207
14208 * emacs-lisp/authors.el (authors-aliases): Addition.
14209
14210 * cus-start.el (tool-bar-style, tool-bar-max-label-size):
14211 Fix :version.
14212
14213 2012-06-03 Stefan Merten <smerten@oekonux.de>
14214
14215 * textmodes/rst.el: Add comments.
14216 (rst-transition, rst-adornment): New faces.
14217 (rst-adornment-faces-alist): Make default safe to reevaluate.
14218 Fixes
14219 http://sourceforge.net/tracker/?func=detail&atid=422030&aid=3479603&group_id=38414.
14220 Improve customization tags.
14221 (rst-define-level-faces): Clarify meaning.
14222
14223 2012-06-03 Chong Yidong <cyd@gnu.org>
14224
14225 * progmodes/compile.el (compilation-mode-line-fail)
14226 (compilation-mode-line-run, compilation-mode-line-exit):
14227 New faces.
14228 (compilation-start, compilation-handle-exit): Use them (Bug#11032).
14229
14230 2012-06-03 Jack Duthen <duthen.mac.01@gmail.com> (tiny change)
14231
14232 * progmodes/which-func.el (which-func-update-ediff-windows):
14233 New function. Use it in ediff-select-hook (Bug#11478).
14234
14235 2012-06-03 Chong Yidong <cyd@gnu.org>
14236
14237 * bindings.el: Remove explicit help text from format-mode-line.
14238 It is now supplied by mode-line-default-help-echo.
14239 (mode-line-front-space, mode-line-end-spaces)
14240 (mode-line-misc-info): New variables.
14241 (mode-line-modes, mode-line-position): Move the default value to
14242 the variable definition.
14243 (mode-line-default-help-echo): New defcustom.
14244 (mode-line-mule-info-help-echo, mode-line-read-only-help-echo)
14245 (mode-line-modified-help-echo): New functions.
14246 (mode-line-mule-info, mode-line-modified): Use them.
14247 (mode-line-eol-desc, propertized-buffer-identification):
14248 Consistency fixes for help text.
14249 (mode-line-coding-system-map): Allow using mouse-3 to invoke
14250 set-buffer-file-coding-system (Bug#289).
14251 (mode-line-mule-info-help-echo): Update help text.
14252
14253 2012-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
14254
14255 * simple.el (execute-extended-command): Set real-this-command
14256 (bug#11506).
14257
14258 2012-06-02 Chong Yidong <cyd@gnu.org>
14259
14260 Remove incorrect uses of "modeline" in comments, docstrings, and
14261 function/variable names (Bug#10329).
14262
14263 * cus-edit.el (mode-line):
14264 * dframe.el (dframe-mouse-hscroll):
14265 * emacs-lisp/re-builder.el:
14266 * emacs-lisp/easy-mmode.el (define-minor-mode):
14267 * frame.el (set-frame-name):
14268 * help.el (lookup-minor-mode-from-indicator):
14269 * net/rcirc.el (rcirc-activity-string, rcirc-short-buffer-name):
14270 * progmodes/cc-cmds.el (c-toggle-auto-newline)
14271 (c-toggle-hungry-state):
14272 * progmodes/antlr-mode.el (antlr-language-alist):
14273 * progmodes/idlw-shell.el (idlwave-shell-electric-stop-line-face):
14274 * progmodes/vhdl-mode.el (vhdl-mode):
14275 * progmodes/which-func.el (which-func, which-func-cleanup-function):
14276 * term/ns-win.el (ns-face-at-pos):
14277 * term/sup-mouse.el (sup-mouse-report):
14278 * textmodes/flyspell.el (flyspell-mode-line-string):
14279 * textmodes/ispell.el (ispell-highlight-face):
14280 * textmodes/reftex-global.el:
14281 * vc/vc-arch.el (vc-arch-mode-line-string):
14282 * vc/vc-cvs.el (vc-cvs-mode-line-string):
14283 * vc/vc-git.el (vc-git-mode-line-string):
14284 * vc/vc-hooks.el (vc-display-status)
14285 (vc-default-mode-line-string):
14286 * vc/vc-mtn.el (vc-mtn-mode-line-string): Doc fixes.
14287
14288 * ansi-color.el (ansi-color-faces-vector): Change default faces.
14289
14290 * dired.el (dired-sort-set-mode-line): Rename from
14291 dired-sort-set-modeline. All callers changed.
14292
14293 * eshell/esh-mode.el (eshell-status-in-mode-line): Rename from
14294 eshell-status-in-modeline.
14295
14296 * foldout.el (foldout-mode-line-string): Rename from
14297 foldout-modeline-string. All callers changed.
14298 (foldout-update-mode-line): Rename from foldout-update-modeline.
14299
14300 * subr.el (redraw-modeline): Make into obsolete alias.
14301
14302 * calendar/timeclock.el (timeclock-mode-line-display): Rename from
14303 timeclock-modeline-display. Make old name an alias.
14304 (timeclock-update-mode-line): Likewise. All callers changed.
14305 (timeclock-mode-line-display): No need to check before using
14306 add-hook.
14307 (timeclock-relative, timeclock-day-over-hook)
14308 (timeclock-use-elapsed, timeclock-mode-string)
14309 (timeclock-mode-line-display): Doc fix, "modeline" -> "mode line".
14310
14311 * emulation/crisp.el (crisp-mode-mode-line-string): Rename from
14312 crisp-mode-modeline-string.
14313
14314 * play/solitaire.el (solitaire-build-mode-line): Rename from
14315 solitaire-build-modeline. All callers changed.
14316
14317 * play/zone.el (zone-hiding-mode-line): Rename from
14318 zone-hiding-modeline. All callers changed.
14319 (zone): Remove unusued `modeline-hidden-level' property.
14320
14321 * progmodes/xscheme.el (xscheme-mode-line-initialize): Rename from
14322 xscheme-modeline-initialize. All callers changed.
14323
14324 * strokes.el (strokes-lighter): Rename from
14325 strokes-modeline-string.
14326
14327 * textmodes/sgml-mode.el (html-face-tag-alist)
14328 (html-tag-face-alist): Use mode-line face instead of obsolete
14329 alias modeline.
14330
14331 2012-06-02 Stefan Merten <smerten@oekonux.de>
14332
14333 * textmodes/rst.el: Always require `cl'.
14334 (rst-mode-map): Fix meaning of C-M-a / C-M-e.
14335
14336 2012-06-02 Chong Yidong <cyd@gnu.org>
14337
14338 * image.el (imagemagick-enabled-types): Rename from
14339 imagemagick-types-enable. Add many more types.
14340 (imagemagick-types-inhibit): Change default to nil.
14341 (imagemagick-filter-types): Caller changed.
14342
14343 2012-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
14344
14345 * emacs-lisp/cl-macs.el: Use backquotes.
14346 (cl-transform-function-property): Use eval-and-compile rather than
14347 abusing `require'.
14348 (defstruct): Use declare-function instead of with-no-warnings.
14349
14350 * emacs-lisp/bytecomp.el: Fix last change (bug#11594).
14351 (byte-compile-output-docform): Re-add the print-circle bindings.
14352 (byte-compile-fix-header): Use #$ just because it's shorter.
14353 (byte-compile-output-file-form): Remove defun/defmacro.
14354
14355 2012-06-01 Martin Rudalics <rudalics@gmx.at>
14356
14357 * simple.el (choose-completion): Remove now obsolete binding for
14358 owindow.
14359
14360 2012-06-01 Michael Albinus <michael.albinus@gmx.de>
14361
14362 * net/tramp.el (tramp-check-for-regexp): Search from buffer end,
14363 in order to avoid "Stack overflow in regexp matcher".
14364
14365 2012-05-31 Glenn Morris <rgm@gnu.org>
14366
14367 * image.el: For clarity, call imagemagick-register-types at
14368 top-level, rather than relying on a custom :initialize.
14369 (imagemagick-types-enable): New option. (Bug#11557)
14370 (imagemagick-filter-types): New function. (Bug#7406)
14371 (imagemagick-register-types): Use imagemagick-filter-types.
14372 If disabling support, remove elements altogether rather
14373 than using an impossible regexp.
14374 (imagemagick-types-inhibit): Give it the default init function.
14375
14376 2012-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
14377
14378 * emacs-lisp/bytecomp.el (byte-compile-fix-header):
14379 Handle arbitrary file name lengths (Bug#11585).
14380
14381 2012-05-31 Martin Rudalics <rudalics@gmx.at>
14382
14383 * desktop.el (desktop-read): Clear previous and next buffers for
14384 all windows and bury *Messages* buffer (bug#11556).
14385
14386 2012-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
14387
14388 Add `declare' for `defun'. Align `defmacro's with it.
14389 * emacs-lisp/easy-mmode.el (define-minor-mode)
14390 (define-globalized-minor-mode): Don't autoload the var definitions.
14391 * emacs-lisp/byte-run.el: Use lexical-binding.
14392 (defun-declarations-alist, macro-declarations-alist): New vars.
14393 (defmacro, defun): Use them.
14394 (make-obsolete, define-obsolete-function-alias)
14395 (make-obsolete-variable, define-obsolete-variable-alias):
14396 Use `declare'.
14397 (macro-declaration-function): Mark obsolete.
14398 * emacs-lisp/autoload.el: Use lexical-binding.
14399 (make-autoload): Add `expansion' arg. Rely more on macro expansion.
14400
14401 2012-05-30 Agustín Martín Domingo <agustin.martin@hispalinux.es>
14402
14403 * textmodes/ispell.el (ispell-with-no-warnings):
14404 Define as a macro.
14405 (ispell-kill-ispell, ispell-change-dictionary):
14406 Use `called-interactively-p' for Emacs instead of obsolete
14407 `interactive-p'.
14408
14409 2012-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
14410
14411 * emacs-lisp/byte-run.el (defmacro, defun): Move from C.
14412 (macro-declaration-function): Move var from C code.
14413 (macro-declaration-function): Define function with defalias.
14414 * emacs-lisp/macroexp.el (macroexpand-all-1):
14415 * emacs-lisp/cconv.el (cconv-convert, cconv-analyse-form):
14416 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker): Don't handle
14417 defun/defmacro any more.
14418 * emacs-lisp/bytecomp.el (byte-compile-arglist-signature):
14419 Provide fallback for unknown arglist.
14420 (byte-compile-arglist-warn): Change calling convention.
14421 (byte-compile-output-file-form): Move print-vars binding.
14422 (byte-compile-output-docform): Simplify accordingly.
14423 (byte-compile-file-form-defun, byte-compile-file-form-defmacro)
14424 (byte-compile-defmacro-declaration): Remove.
14425 (byte-compile-file-form-defmumble): Generalize to defalias.
14426 (byte-compile-output-as-comment): Return byte-positions.
14427 Simplify callers accordingly.
14428 (byte-compile-lambda): Use `assert'.
14429 (byte-compile-defun, byte-compile-defmacro): Remove.
14430 (byte-compile-file-form-defalias):
14431 Use byte-compile-file-form-defmumble.
14432 (byte-compile-defalias-warn): Remove.
14433
14434 2012-05-29 Stefan Merten <smerten@oekonux.de>
14435
14436 * textmodes/rst.el: Silence `checkdoc-ispell' errors where
14437 possible. Fix authors. Improve comments. Improve loading of `cl'.
14438
14439 (rst-mode-abbrev-table): Merge definition.
14440 (rst-mode): Make sure `font-lock-defaults' is buffer local.
14441 (rst-define-key, rst-deprecated-keys, rst-call-deprecated): Refactor.
14442
14443 2012-05-29 Ulf Jasper <ulf.jasper@web.de>
14444
14445 * calendar/icalendar.el
14446 (icalendar-export-region): Export UID properly.
14447
14448 2012-05-29 Leo Liu <sdl.web@gmail.com>
14449 * calendar/icalendar.el (icalendar-import-format):
14450 Add `icalendar-import-format-uid' (Bug#11525).
14451 (icalendar-import-format-uid): New.
14452 (icalendar--parse-summary-and-rest, icalendar--format-ical-event):
14453 Export UID.
14454
14455 2012-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
14456
14457 * emacs-lisp/pcase.el (pcase--expand): Accept different sets of vars in
14458 different alternative patterns.
14459 (pcase-codegen): Be more careful to preserve identity.
14460 (pcase--u1): Don't forget to mark vars as used.
14461
14462 * emacs-lisp/bytecomp.el (byte-compile-constp): Treat #'v as a constant.
14463 (byte-compile-close-variables): Bind byte-compile--outbuffer here...
14464 (byte-compile-from-buffer): ...rather than here.
14465
14466 * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Don't re-preprocess
14467 functions from byte-compile-function-environment.
14468
14469 2012-05-29 Troels Nielsen <bn.troels@gmail.com>
14470
14471 * window.el (window-deletable-p): Avoid deleting the root window
14472 of a frame with an active minibuffer.
14473
14474 2012-05-29 Martin Rudalics <rudalics@gmx.at>
14475
14476 * simple.el (choose-completion): Use quit-window (Bug#11567).
14477
14478 2012-05-29 Chong Yidong <cyd@gnu.org>
14479
14480 * whitespace.el (whitespace-cleanup): Fix usage of
14481 whitespace-empty-at-bob-regexp (Bug#11492).
14482
14483 2012-05-29 Aaron S. Hawley <aaron.s.hawley@gmail.com>
14484
14485 * vc/vc.el (vc-revert, vc-rollback): Dont kill vc-diff buffer on
14486 revert (Bug#11488).
14487
14488 2012-05-29 Juri Linkov <juri@jurta.org>
14489
14490 * isearch.el (isearch-mode-map): Bind `M-s _' to
14491 `isearch-toggle-symbol'. Bind `M-s c' to
14492 `isearch-toggle-case-fold'.
14493 (search-map): Bind `M-s _' to `isearch-forward-symbol'.
14494 (isearch-forward): Add `M-s _' to the docstring.
14495 (isearch-forward-symbol, isearch-toggle-case-fold)
14496 (isearch-symbol-regexp): New functions. (Bug#11381)
14497
14498 2012-05-29 Juri Linkov <juri@jurta.org>
14499
14500 * isearch.el (isearch-word): Add docstring. (Bug#11381)
14501 (isearch-occur, isearch-search-and-update): If `isearch-word' is
14502 a function, call it to get the regexp.
14503 (isearch-message-prefix): If `isearch-word' holds a symbol, use its
14504 property `isearch-message-prefix' instead of the string "word ".
14505 (isearch-search-fun-default): For the case of `isearch-word',
14506 return a lambda that calls re-search-forward/re-search-backward
14507 with a regexp returned by `word-search-regexp' or by the function
14508 in `isearch-word'.
14509
14510 2012-05-29 Juri Linkov <juri@jurta.org>
14511
14512 * isearch.el (isearch-search-fun-default): New function.
14513 (isearch-search-fun): Move default part to the new function
14514 `isearch-search-fun-default'.
14515 (isearch-search-fun-function): Set the default value to
14516 `isearch-search-fun-default'. (Bug#11381)
14517
14518 * comint.el (comint-history-isearch-end):
14519 Use `isearch-search-fun-default'.
14520 (comint-history-isearch-search): Use `isearch-search-fun-default'
14521 and remove spacial case for `isearch-word'.
14522 (comint-history-isearch-wrap): Remove spacial case for
14523 `isearch-word'.
14524
14525 * hexl.el (hexl-isearch-search-function):
14526 Use `isearch-search-fun-default'.
14527
14528 * info.el (Info-isearch-search): Use `isearch-search-fun-default'.
14529 Use `word-search-regexp' for `isearch-word'.
14530
14531 * misearch.el (multi-isearch-search-fun):
14532 Use `isearch-search-fun-default'.
14533
14534 * simple.el (minibuffer-history-isearch-search):
14535 Use `isearch-search-fun-default' and remove spacial case for
14536 `isearch-word'.
14537 (minibuffer-history-isearch-wrap): Remove spacial case for
14538 `isearch-word'.
14539
14540 * textmodes/reftex-global.el (reftex-isearch-wrap-function):
14541 Remove spacial case for `isearch-word'.
14542 (reftex-isearch-isearch-search): Use `isearch-search-fun-default'.
14543
14544 2012-05-28 Agustín Martín Domingo <agustin.martin@hispalinux.es>
14545
14546 Decrease XEmacs incompatibilities.
14547 * textmodes/flyspell.el (flyspell-check-pre-word-p):
14548 Use `string-match'.
14549 (flyspell-delete-region-overlays): Use alternative definition for
14550 XEmacs.
14551 (flyspell-delete-all-overlays): Use `flyspell-delete-region-overlays'.
14552 (flyspell-word): Use `process-kill-without-query' if XEmacs.
14553 (flyspell-mode-on): Use `interactive-p' if XEmacs.
14554 (flyspell-incorrect-face, flyspell-duplicate-face): Do not use
14555 `define-obsolete-face-alias' under XEmacs, but old method.
14556
14557 * textmodes/ispell.el (ispell-with-no-warnings): XEmacs alternative
14558 `with-no-warnings' definition or Emacs alias.
14559 (ispell-command-loop, ispell-message): Use `ispell-with-no-warnings'.
14560 (ispell-word): Do not use `region-p' if XEmacs.
14561
14562 2012-05-28 Agustín Martín Domingo <agustin.martin@hispalinux.es>
14563
14564 * textmodes/ispell.el (ispell-find-aspell-dictionaries):
14565 Check for `ispell-dictionary-base-alist' instead of full
14566 `ispell-dictionary-alist'.
14567 (ispell-init-process): Show spellchecker when starting new Ispell
14568 process.
14569
14570 2012-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
14571
14572 * progmodes/vhdl-mode.el: Sync with upstream 3.33.28.
14573 http://www.iis.ee.ethz.ch/~zimmi/emacs/vhdl-mode.html#release-notes-3.33
14574
14575 2012-05-27 Juanma Barranquero <lekktu@gmail.com>
14576
14577 * version.el (motif-version-string, gtk-version-string)
14578 (ns-version-string): Declare.
14579
14580 2012-05-27 Juri Linkov <juri@jurta.org>
14581
14582 * emacs-lisp/lisp-mode.el (eval-defun-2): Use `eval-sexp-add-defvars'
14583 after the `eval-defun-1' specialcaseing
14584 like in `edebug-eval-defun' (bug#10181).
14585
14586 * emacs-lisp/edebug.el (edebug-eval-defun): Set `face-documentation'
14587 like in `eval-defun-1'.
14588
14589 2012-05-27 Eli Zaretskii <eliz@gnu.org>
14590
14591 * mail/sendmail.el (mail-yank-region):
14592 Recognize rmail-yank-current-message in addition to insert-buffer.
14593 Fixes mail-mode's "C-c C-r" that otherwise does nothing when invoked in
14594 a *mail* buffer created through rmail-start-mail with sendmail as
14595 mail-user-agent.
14596
14597 2012-05-27 Chong Yidong <cyd@gnu.org>
14598
14599 * net/gnutls.el (gnutls-min-prime-bits): Improve docstring.
14600 Default to 256 (Bug#11267).
14601
14602 * help.el (describe-mode): Doc fix.
14603
14604 2012-05-26 Glenn Morris <rgm@gnu.org>
14605
14606 * w32-fns.el (w32-init-info): Remove.
14607 * paths.el (Info-default-directory-list): Add w32-init-info equivalent.
14608
14609 * info.el (info-initialize): For self-contained NS builds, put the
14610 included info/ directory at the front. (Bug#2791)
14611
14612 * paths.el (Info-default-directory-list): Make it a defcustom,
14613 mainly so that we can use custom-initialize-delay.
14614
14615 2012-05-26 Stefan Monnier <monnier@iro.umontreal.ca>
14616
14617 * subr.el (buffer-has-markers-at): Mark obsolete.
14618
14619 * subr.el (lambda): Use declare.
14620
14621 * emacs-lisp/lisp-mode.el (lambda):
14622 * emacs-lisp/edebug.el (lambda): Move properties to its definition.
14623
14624 2012-05-26 Aaron S. Hawley <aaron.s.hawley@gmail.com>
14625
14626 * thingatpt.el (forward-same-syntax): Handle no ARG case. (Bug#11560)
14627
14628 2012-05-26 Glenn Morris <rgm@gnu.org>
14629
14630 * progmodes/cc-mode.el (auto-mode-alist): Fix typo.
14631
14632 2012-05-25 Glenn Morris <rgm@gnu.org>
14633
14634 * paths.el: Remove no-byte-compile.
14635 * loadup.el: No need to load paths.el uncompiled.
14636
14637 * image.el (imagemagick-types-inhibit): Doc fix.
14638
14639 * version.el: Remove no-byte-compile and associated formatting.
14640 * loadup.el: No need to load version.el uncompiled. AFAICS, this
14641 is ancient code from when there was an "inc-vers.el".
14642
14643 2012-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
14644
14645 * progmodes/gdb-mi.el: Minor style changes.
14646 (gdb-enable-debug, gdb-speedbar-auto-raise, gdb-many-windows):
14647 Turn into minor modes.
14648 (gdb--if-arrow): Rename from gdb-if-arrow, make it hygienic.
14649 (gdb-mouse-until, gdb-mouse-jump): Adjust uses accordingly.
14650 (gdb-shell): Remove unneeded let-binding.
14651 (gdb-get-many-fields): Eliminate O(n²) behavior.
14652
14653 2012-05-25 Eli Zaretskii <eliz@gnu.org>
14654
14655 * cus-start.el <vertical-centering-font-regexp>: Avoid warning on
14656 platforms that don't link in fontset.c.
14657
14658 2012-05-25 Juri Linkov <juri@jurta.org>
14659
14660 Use the same diff color scheme as in modern VCSes (bug#10181).
14661
14662 * vc/diff-mode.el (diff-header, diff-file-header): Remove "green"
14663 to avoid confusion with `diff-added' that now uses green colors.
14664 (diff-removed): Use shades of red.
14665 (diff-added): Use shades of green.
14666 (diff-changed): Leave just the yellow color.
14667 (diff-use-changed-face): New variable.
14668 (diff-font-lock-keywords): Use `diff-use-changed-face' to decide
14669 how to highlight context diff changes.
14670 (diff-refine-change): Use shades of yellow.
14671 (diff-refine-removed): New face that uses shades of red.
14672 (diff-refine-added): New face that uses shades of green.
14673 (diff-refine-hunk): Use `diff-refine-change', `diff-refine-added',
14674 `diff-refine-removed' in the call to `smerge-refine-subst'
14675 depending on the value of `diff-use-changed-face'.
14676
14677 * vc/smerge-mode.el (smerge-mine): Use shades of red.
14678 (smerge-other): Use shades of green.
14679 (smerge-base): Use shades of yellow.
14680 (smerge-refined-change): Empty face.
14681 (smerge-refined-removed): New face that uses shades of red.
14682 (smerge-refined-added): New face that uses shades of green.
14683 (smerge-refine-subst): Rename arg `props' to `props-c'. Add new
14684 args `props-r' and `props-a', and use them. Doc fix.
14685 (smerge-refine): Evaluate `smerge-use-changed-face' and depending
14686 on its value use different faces `smerge-refined-change',
14687 `smerge-refined-removed', `smerge-refined-added' in the call to
14688 `smerge-refine-subst'.
14689
14690 * vc/ediff-init.el (ediff-current-diff-A, ediff-fine-diff-A):
14691 Add face condition `min-colors 88' with shades of red.
14692 (ediff-current-diff-B, ediff-fine-diff-B): Add face condition
14693 `min-colors 88' with shades of green.
14694 (ediff-current-diff-C, ediff-fine-diff-C): Add face condition
14695 `min-colors 88' with shades of yellow.
14696
14697 2012-05-24 Glenn Morris <rgm@gnu.org>
14698
14699 * paths.el (prune-directory-list, remote-shell-program): Move to...
14700 * files.el (prune-directory-list, remote-shell-program): ...here.
14701 For the latter, delay initialization, prefer ssh, just search PATH.
14702
14703 * paths.el (term-file-prefix): Move to faces.el (the only user).
14704 * faces.el (term-file-prefix): Move here, make it a defcustom.
14705
14706 * paths.el (news-directory, news-path, news-inews-program):
14707 Move to gnus/nnspool.el.
14708
14709 * paths.el (gnus-default-nntp-server): Remove (gnus.el defines it).
14710
14711 * paths.el (rmail-file-name, rmail-spool-directory): Move from here...
14712 * mail/rmail.el (rmail-file-name, rmail-spool-directory): ... to here.
14713 Make the latter a defcustom, with a delayed initialization.
14714
14715 * paths.el (gnus-nntp-service, gnus-local-organization): Remove.
14716 These were deleted from Gnus itself late 2010.
14717
14718 2012-05-22 Juanma Barranquero <lekktu@gmail.com>
14719
14720 * progmodes/which-func.el (which-func-ff-hook):
14721 Check against user-error, not error.
14722
14723 * emacs-lisp/edebug.el (top): Do not load or set up loading of
14724 cl-specs.el, which no longer exists.
14725
14726 2012-05-22 Glenn Morris <rgm@gnu.org>
14727
14728 * info.el (info-emacs-bug): New command.
14729 * menu-bar.el (menu-bar-help-menu): Add "How to Report a Bug" to Help.
14730 * mail/emacsbug.el (report-emacs-bug): Replace with info-emacs-bug.
14731
14732 2012-05-21 Glenn Morris <rgm@gnu.org>
14733
14734 * makefile.w32-in (update-subdirs-SH):
14735 * Makefile.in (update-subdirs): Update for moved update-subdirs.
14736
14737 2012-05-21 Stefan Monnier <monnier@iro.umontreal.ca>
14738
14739 * hi-lock.el (hi-lock-face-defaults): Move obsolete before definition.
14740
14741 * progmodes/compile.el (compilation-error-regexp-alist-alist):
14742 Simplify Maven regexp, and make sure the file can't start with a space
14743 (bug#11517).
14744
14745 2012-05-21 Glenn Morris <rgm@gnu.org>
14746
14747 * Makefile.in (setwins, setwins_almost, setwins_for_subdirs):
14748 Scrap superfluous subshells.
14749
14750 2012-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
14751
14752 * emacs-lisp/bytecomp.el (byte-compile-root-dir): New var.
14753 (byte-compile-warning-prefix, batch-byte-compile-file): Use it.
14754
14755 2012-05-19 Jay Belanger <jay.p.belanger@gmail.com>
14756
14757 * calc/calc.el (calc-ensure-consistent-units): New variable.
14758
14759 * calc/calc-units.el (math-consistent-units-p)
14760 (math-check-unit-consistency): New functions.
14761 (calc-quick-units, calc-convert-units):
14762 Use `math-check-unit-consistency' when `calc-ensure-consistent-units'
14763 is non-nil.
14764 (calc-extract-units): Fix typo.
14765
14766 2012-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
14767
14768 * vc/vc-bzr.el (vc-bzr-state-heuristic): Save match-data around sha1.
14769
14770 * textmodes/flyspell.el: Commenting style, plus code simplifications.
14771 (flyspell-default-deplacement-commands): Don't spell check after
14772 repeated window/frame switches (e.g. triggered by mouse-movement).
14773 (flyspell-delay-commands, flyspell-deplacement-commands): Use mapc.
14774 (flyspell-debug-signal-word-checked): Simplify and fit in 80 cols.
14775 (flyspell-casechars-cache, flyspell-ispell-casechars-cache)
14776 (flyspell-not-casechars-cache, flyspell-ispell-not-casechars-cache):
14777 Remove unused vars.
14778 (flyspell-get-casechars, flyspell-get-not-casechars):
14779 Simplify; Don't bother removing a ] just to add it back.
14780 * textmodes/ispell.el (ispell-program-name): Use executable-find.
14781
14782 2012-05-18 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
14783
14784 * calc/calc-lang.el (math-C-parse-bess, math-C-parse-fma):
14785 New functions.
14786 (math-function-table): Add support for more C functions.
14787
14788 2012-05-18 Agustín Martín Domingo <agustin.martin@hispalinux.es>
14789
14790 * textmodes/flyspell.el (flyspell-check-pre-word-p)
14791 (flyspell-check-word-p, flyspell-debug-signal-word-checked):
14792 Protect delay handling for otherchars against empty otherchars.
14793
14794 2012-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
14795
14796 * emacs-lisp/lisp-mode.el (doc-string-elt): Move those properties to
14797 their respective macro declarations.
14798 * skeleton.el (define-skeleton):
14799 * progmodes/compile.el (define-compilation-mode):
14800 * ibuf-macs.el (define-ibuffer-sorter, define-ibuffer-op)
14801 (define-ibuffer-filter):
14802 * emacs-lisp/generic.el (define-generic-mode):
14803 * emacs-lisp/easy-mmode.el (define-minor-mode)
14804 (define-globalized-minor-mode):
14805 * emacs-lisp/cl-macs.el (defun*, defmacro*, defstruct, deftype):
14806 * emacs-lisp/byte-run.el (defsubst):
14807 * custom.el (deftheme): Add doc-string metadata.
14808
14809 2012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
14810
14811 * emacs-lisp/cl-macs.el, emacs-lisp/cl.el: Move indent info.
14812
14813 2012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
14814
14815 * emacs-lisp/pcase.el (pcase--u1): Avoid ((lambda ...) ...).
14816
14817 * emacs-lisp/cl.el: Add edebug specs from cl-specs.el.
14818 * emacs-lisp/cl-macs.el: Idem.
14819 * emacs-lisp/cl-specs.el: Remove.
14820
14821 2012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
14822
14823 Minor renaming of internal CL functions and variables.
14824 * emacs-lisp/cl-seq.el (cl--adjoin): Rename from cl-adjoin.
14825 (cl--position): Rename from cl-position.
14826 (cl--delete-duplicates): Rename from cl-delete-duplicates.
14827 * emacs-lisp/cl.el (cl--gensym-counter): Rename from *gensym-counter*.
14828 (cl--random-state): Rename from *random-state*.
14829
14830 2012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
14831
14832 * emacs-lisp/cl-macs.el (cl-transform-lambda): Don't add spurious
14833 parens around the arg list (bug#11499).
14834
14835 2012-05-17 Juri Linkov <juri@jurta.org>
14836
14837 * isearch.el (word-search-regexp, word-search-backward)
14838 (word-search-forward, word-search-backward-lax)
14839 (word-search-forward-lax): Move functions from search.c
14840 (bug#10145, bug#11381).
14841
14842 2012-05-16 Agustín Martín Domingo <agustin.martin@hispalinux.es>
14843
14844 * textmodes/flyspell.el (flyspell-check-pre-word-p)
14845 (flyspell-check-word-p, flyspell-debug-signal-word-checked):
14846 Delay for otherchars as for normal word components.
14847
14848 2012-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
14849
14850 * minibuffer.el (completion--sifn-requote): Fix last change.
14851 (minibuffer-local-must-match-filename-map):
14852 Move define-obsolete-variable-alias before its var.
14853
14854 2012-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
14855
14856 * emacs-lisp/pcase.el (pcase-let*, pcase-let): Fix edebug spec.
14857
14858 * minibuffer.el (completion--sifn-requote): Handle sifn's truncation
14859 behavior.
14860 (completion--string-equal-p): New function.
14861 (completion--twq-all): Use it to get better assertion failure data.
14862
14863 Only handle ".." and '..' quoting in shell-mode (bug#11466).
14864 * shell.el (shell--unquote&requote-argument, shell--unquote-argument)
14865 (shell--requote-argument): New functions.
14866 (shell-completion-vars): Use them.
14867 (shell--parse-pcomplete-arguments): Rename from
14868 shell-parse-pcomplete-arguments.
14869 * comint.el (comint-word): Obey comint-file-name-quote-list. Simplify.
14870 (comint--unquote&requote-argument): Don't handle ".." and '..' quoting.
14871 Obey comint-file-name-quote-list.
14872
14873 * emacs-lisp/smie.el (smie-indent--bolp-1): New function.
14874 (smie-indent-keyword): Use it.
14875
14876 2012-05-14 Stefan Merten <smerten@oekonux.de>
14877
14878 * textmodes/rst.el (rst-re-alist): Fix loading (bug#11462).
14879
14880 2012-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
14881
14882 * net/rlogin.el (rlogin-mode-map): Fix last change.
14883
14884 2012-05-14 Jason L. Wright <jason.wright@inl.gov> (tiny change)
14885
14886 * mail/smtpmail.el (smtpmail-send-command): Send the command and
14887 the following \r\n using a single `process-send-string', since the
14888 Lotus SMTP server refuses to accept any commands if they are sent
14889 with two `process-send-string's (Bug#11444).
14890
14891 2012-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
14892
14893 * shell.el (shell-parse-pcomplete-arguments):
14894 Obey pcomplete-arg-quote-list inside double-quoted args (Bug#11348).
14895
14896 2012-05-14 Wolfgang Jenkner <wjenkner@inode.at>
14897
14898 * image-mode.el: Fit to width/height for rotated images (Bug#11431).
14899 (image-transform-scale, image-transform-right-angle-fudge): New vars.
14900 (image-transform-width, image-transform-fit-width): New functions.
14901 (image-transform-properties): Use them.
14902 (image-transform-check-size): New function.
14903 (image-toggle-display-image): Use it (for testing).
14904 (image-transform-set-rotation): Reduce angle mod 360.
14905 Delete obsolete comment.
14906
14907 2012-05-14 Wolfgang Jenkner <wjenkner@inode.at>
14908
14909 * image-mode.el: Fix scaling (bug#11399).
14910 (image-transform-resize): Doc fix.
14911 (image-transform-properties): Default scale is 1 and height should
14912 be an integer.
14913
14914 2012-05-13 Johan Bockgård <bojohan@gnu.org>
14915
14916 * emacs-lisp/smie.el (smie-next-sexp): Use accessor `op-forw' rather
14917 than hard-coding `car', to fix misbehavior when moving forward.
14918
14919 2012-05-13 Chong Yidong <cyd@gnu.org>
14920
14921 * emacs-lisp/tabulated-list.el (tabulated-list-format)
14922 (tabulated-list-entries, tabulated-list-padding)
14923 (tabulated-list-sort-key): Make permanent-local.
14924
14925 * ebuff-menu.el: Adapt to Buffer Menu changes (Bug#11455).
14926 (electric-buffer-list): Put electric buffer menu
14927 command descriptions in this docstring, instead of the docstring
14928 of electric-buffer-menu-mode. Code cleanups.
14929 (electric-buffer-menu-mode): Use define-derived-mode. Rename from
14930 Electric-buffer-menu-mode.
14931 (electric-buffer-update-highlight): Minor code cleanup.
14932
14933 2012-05-13 Michael Albinus <michael.albinus@gmx.de>
14934
14935 * net/dbus.el (dbus-call-method): Restore events not from D-Bus.
14936 (Bug#11447)
14937
14938 2012-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
14939
14940 Move define-obsolete-variable-alias before the var's definition.
14941 * vc/log-edit.el (vc-comment-ring, vc-comment-ring-index):
14942 * tooltip.el (tooltip-hook):
14943 * textmodes/reftex-toc.el (reftex-toc-map):
14944 * textmodes/reftex-sel.el (reftex-select-label-map)
14945 (reftex-select-bib-map):
14946 * textmodes/reftex-index.el (reftex-index-map)
14947 (reftex-index-phrases-map):
14948 * speedbar.el (speedbar-syntax-table, speedbar-key-map):
14949 * progmodes/meta-mode.el (meta-mode-map):
14950 * novice.el (disabled-command-hook):
14951 * loadhist.el (unload-hook-features-list):
14952 * frame.el (blink-cursor):
14953 * files.el (find-file-not-found-hooks, write-file-hooks)
14954 (write-contents-hooks):
14955 * emulation/tpu-edt.el (GOLD-map):
14956 * emacs-lock.el (emacs-lock-from-exiting):
14957 * emacs-lisp/generic.el (generic-font-lock-defaults):
14958 * emacs-lisp/chart.el (chart-map):
14959 * dos-fns.el (register-name-alist):
14960 * dired-x.el (dired-omit-files-p):
14961 * desktop.el (desktop-enable):
14962 * cus-edit.el (custom-mode-hook):
14963 * buff-menu.el (buffer-menu-mode-hook):
14964 * bookmark.el (bookmark-read-annotation-text-func)
14965 (bookmark-exit-hooks):
14966 * allout.el (allout-mode-deactivate-hook)
14967 (allout-exposure-change-hook, allout-structure-added-hook)
14968 (allout-structure-deleted-hook, allout-structure-shifted-hook):
14969 * dirtrack.el (dirtrack-toggle, dirtrackp, dirtrack-debug-toggle)
14970 (dirtrack-debug): Move call to define-obsolete-variable-alias so it
14971 comes before the corresponding variable's definition.
14972
14973 2012-05-12 Chong Yidong <cyd@gnu.org>
14974
14975 * buff-menu.el (Buffer-menu-buffer+size-width): Doc fix (Bug#11454).
14976 (Buffer-menu-mouse-select): Restore function (Bug#11459).
14977 (Buffer-menu-mode-map): Bind it.
14978 (Buffer-menu--pretty-name): Add a mouse-face property.
14979
14980 2012-05-11 Stefan Monnier <monnier@iro.umontreal.ca>
14981
14982 * progmodes/prolog.el: Use SMIE. Cleanup regexp setup.
14983 (prolog-upper-case-string, prolog-lower-case-string)
14984 (prolog-atom-char-regexp, prolog-atom-regexp): Initialize in defconst.
14985 (prolog-use-smie, prolog-smie-grammar): New vars.
14986 (prolog-smie-forward-token, prolog-smie-backward-token)
14987 (prolog-smie-rules): New funs.
14988 (prolog-comment-indent): Remove.
14989 (prolog-mode-variables): Use default comment indentation instead.
14990 Setup SMIE.
14991 (prolog-build-case-strings, prolog-set-atom-regexps): Remove.
14992 (prolog-mode): Don't call them any more.
14993 (prolog-electric-colon, prolog-electric-dash)
14994 (prolog-edit-menu-insert-move): Use indent-according-to-mode.
14995
14996 * dabbrev.el (dabbrev-expand): Make "no expansion found" a user-error.
14997
14998 * minibuffer.el (completion--twq-all): Again, allow case differences.
14999
15000 * term.el: Move keymap initialization code to be more idiomatic.
15001 (term-signals-menu, term-mode-map, term-raw-map, term-raw-escape-map)
15002 (term-terminal-menu): Move initialization into declaration.
15003 (term-escape-char): Let the user set it in her .emacs.
15004
15005 * progmodes/sh-script.el: Use post-self-insert-hook&electric-pair-mode.
15006 Provide SMIE-based indentation (not enabled by default yet).
15007 (sh-mode-map): Don't bind electric keys.
15008 Use electric-pair-mode instead of skeleton-pair.
15009 (sh-assignment-regexp): Fit within 80 columns.
15010 (sh-indent-supported): Specify actual shell name instead of boolean.
15011 (sh--maybe-here-document): New fun, from sh-maybe-here-document.
15012 (sh-maybe-here-document): Use it. Make obsolete.
15013 (sh-electric-here-document-mode) New minor mode.
15014 (sh-mode): Use it. Don't set sh-indent-supported-here here.
15015 (sh-smie-sh-grammar, sh-smie--sh-operators, sh-smie--sh-operators-re)
15016 (sh-smie--sh-operators-back-re, sh-indent-after-continuation)
15017 (sh-smie-rc-grammar, sh-use-smie): New vars.
15018 (sh-smie--keyword-p, sh-smie--newline-semi-p, sh-smie--sh-keyword-p)
15019 (sh-smie-sh-forward-token, sh-smie--looking-back-at-continuation-p)
15020 (sh-smie-sh-backward-token, sh-smie--continuation-start-indent)
15021 (sh-smie-sh-rules, sh-smie-rc-rules, sh-smie--sh-keyword-in-p)
15022 (sh-smie--rc-after-special-arg-p, sh-smie-rc-backward-token)
15023 (sh-smie-sh-rules, sh-smie--rc-newline-semi-p): New functions.
15024 (sh-set-shell): Use smie-setup if requested.
15025
15026 * term.el (term-set-escape-char): Properly set term-escape-char.
15027 See http://stackoverflow.com/questions/10524656.
15028
15029 2012-05-10 Chong Yidong <cyd@gnu.org>
15030
15031 * ffap.el (ffap-url-unwrap-local): Make it work right (Bug#9131).
15032 Use url-generic-parse-url, and handle host names and Windows
15033 filenames properly.
15034 (ffap-url-unwrap-remote): Use url-generic-parse-url.
15035 (ffap-url-unwrap-remote): Accept list values, specifying a list of
15036 URL schemes to work on.
15037 (ffap--toggle-read-only): New function.
15038 (ffap-read-only, ffap-read-only-other-window)
15039 (ffap-read-only-other-frame): Use it.
15040 (ffap-fixup-url): Don't check ffap-ftp-regexp, since it is not
15041 necessary for ffap-url-unwrap-remote.
15042
15043 2012-05-10 Dave Abrahams <dave@boostpro.com>
15044
15045 * cus-start.el (create-lockfiles): Add it.
15046
15047 2012-05-09 Chong Yidong <cyd@gnu.org>
15048
15049 * net/browse-url.el (browse-url-url-encode-chars): Use upper-case.
15050 (browse-url-encode-url): Encode spaces and quotes (Bug#6300).
15051
15052 2012-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
15053
15054 * shell.el (shell-completion-vars): Fix last change (bug#11348).
15055
15056 2012-05-09 Chong Yidong <cyd@gnu.org>
15057
15058 * ansi-color.el (ansi-color-process-output): Check for validity of
15059 comint-last-output-start before using it. This avoids a bad
15060 interaction with gdb-mi's input/output buffer.
15061
15062 2012-05-09 Glenn Morris <rgm@gnu.org>
15063
15064 * files.el (dir-locals-read-from-file):
15065 Mention dir-locals in any error message.
15066
15067 2012-05-09 Chong Yidong <cyd@gnu.org>
15068
15069 * emacs-lisp/package.el (package-built-in-p): Handle the `emacs'
15070 package (Bug#11410).
15071
15072 * emacs-lisp/package.el (package-buffer-info): Avoid putting local
15073 variables into description.
15074
15075 2012-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
15076
15077 * shell.el (shell-completion-vars): Set pcomplete-arg-quote-list like
15078 shell-delimiter-argument-list (bug#11348).
15079 (shell-parse-pcomplete-arguments): Obey pcomplete-arg-quote-list.
15080
15081 2012-05-09 Juanma Barranquero <lekktu@gmail.com>
15082
15083 * textmodes/rst.el: Silence byte-compiler warnings.
15084 (rst-re-alist, rst-reset-section-caches): Move around.
15085 (rst-re): Use `characterp', not `char-valid-p'.
15086 (font-lock-beg, font-lock-end): Declare.
15087
15088 * progmodes/idlw-shell.el (specs): Remove reference to deleted
15089 variable `idlwave-shell-activate-alt-keybindings' and simplify.
15090
15091 * eshell/esh-cmd.el (eshell-debug-command): Fix typo in previous change.
15092
15093 2012-05-08 Glenn Morris <rgm@gnu.org>
15094
15095 * files.el (auto-mode-alist): Treat ".make" like ".mk".
15096
15097 2012-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
15098
15099 * vc/log-edit.el: Add GNU coding standards highlighting.
15100 (log-edit-font-lock-gnu-style)
15101 (log-edit-font-lock-gnu-keywords): New vars.
15102 (log-edit-font-lock-keywords): New fun.
15103 (log-edit-mode): Don't fold case in font-lock.
15104 (log-edit-font-lock-keywords): Do not assume case-folding.
15105
15106 * imenu.el: Misc cleanup. Make docstrings out of comments.
15107 Use lexical-binding.
15108 (imenu--index-alist, imenu--last-menubar-index-alist)
15109 (imenu-menubar-modified-tick): Use defvar-local.
15110 (imenu--split-menu): Remove unused var.
15111 (imenu--cleanup-seen): Declare as global.
15112 (imenu--cleanup): Use dolist.
15113
15114 * subr.el (defvar-local): Add debug spec and doc-string position.
15115
15116 2012-05-08 Glenn Morris <rgm@gnu.org>
15117
15118 * language/burmese.el, language/cham.el, language/czech.el:
15119 * language/english.el, language/georgian.el, language/greek.el:
15120 * language/japanese.el, language/khmer.el, language/korean.el:
15121 * language/lao.el, language/misc-lang.el, language/romanian.el:
15122 * language/sinhala.el, language/slovak.el, language/tai-viet.el:
15123 * language/thai.el, language/utf-8-lang.el:
15124 Remove no-byte-compile setting.
15125
15126 * play/zone.el (zone-pgm-stress): Don't pollute kill-ring. (Bug#11388)
15127
15128 2012-05-08 Aaron S. Hawley <aaron.s.hawley@gmail.com>
15129
15130 * progmodes/make-mode.el (makefile-browse):
15131 Remove unnecessary interactive. (Bug#11324)
15132
15133 2012-05-07 Glenn Morris <rgm@gnu.org>
15134
15135 * forms-d2.el, forms-pass.el: Move to ../etc/forms directory.
15136
15137 * international/mule.el (find-auto-coding): Make "unibyte: t" obsolete.
15138
15139 2012-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
15140
15141 * loadup.el: Preload newcomment.el.
15142 * newcomment.el: Move autoload-only code to toplevel.
15143
15144 * buff-menu.el (list-buffers--refresh): Mark `size' as right-align.
15145 * emacs-lisp/tabulated-list.el (tabulated-list-init-header):
15146 Handle new :right-align column property.
15147 (tabulated-list-print-col): Idem, plus use `display' text-property to
15148 try and preserve alignment for variable pitch fonts.
15149
15150 2012-05-07 Chong Yidong <cyd@gnu.org>
15151
15152 * emacs-lisp/tabulated-list.el: Add no-header-line alternative.
15153 (tabulated-list-use-header-line): New var.
15154 (tabulated-list-init-header): Use it.
15155 (tabulated-list-print-fake-header): New function.
15156 (tabulated-list-print): Use it.
15157 (tabulated-list-sort-button-map): Add non-header-line commands.
15158 (tabulated-list-init-header): Add column name property to basic
15159 labels as well.
15160 (tabulated-list-col-sort): Handle non-header-line button case.
15161 (tabulated-list--sort-by-column-name): Fix a corner case.
15162
15163 * buff-menu.el (list-buffers--refresh):
15164 Handle Buffer-menu-use-header-line.
15165
15166 2012-05-06 Chong Yidong <cyd@gnu.org>
15167
15168 * buff-menu.el: Convert to Tabulated List mode.
15169 (Buffer-menu-buffer+size-width): Make obsolete.
15170 (Buffer-menu-name-width, Buffer-menu-size-width): New variables.
15171 (Buffer-menu-mode-map): Inherit from tabulated-list-mode-map.
15172 (Buffer-menu-mode): Derive from tabulated-list-mode. Move command
15173 documentation into docstring of buffer-menu.
15174 (Buffer-menu-toggle-files-only): Add an informative message.
15175 (Buffer-menu-sort): Convert to alias for tabulated-list-sort.
15176 (Buffer-menu-buffer, Buffer-menu-beginning, Buffer-menu-mark)
15177 (Buffer-menu-unmark, Buffer-menu-backup-unmark)
15178 (Buffer-menu-delete, Buffer-menu-save, Buffer-menu-not-modified)
15179 (Buffer-menu-execute, Buffer-menu-select)
15180 (Buffer-menu-marked-buffers, Buffer-menu-toggle-read-only)
15181 (Buffer-menu-bury): Use Tabulated List machinery.
15182 (Buffer-menu-mouse-select, Buffer-menu-sort-by-column)
15183 (Buffer-menu-sort-button-map, Buffer-menu-make-sort-button):
15184 Delete.
15185 (list-buffers--refresh): New function.
15186 (list-buffers-noselect): Use it.
15187 (tabulated-list-entry-size->, Buffer-menu--pretty-name)
15188 (Buffer-menu--pretty-file-name): New helper functions.
15189
15190 * loadup.el: Preload tabulated-list.
15191
15192 * emacs-lisp/tabulated-list.el (tabulated-list-sort): Rename from
15193 tabulated-list-sort-column.
15194 (tabulated-list-init-header): Add the initial aligning space even
15195 if tabulated-list-padding is zero.
15196
15197 2012-05-06 Christopher Schmidt <christopher@ch.ristopher.com>
15198
15199 * emacs-lisp/cl-macs.el (cl-expr-contains): Handle cons cells
15200 whose cdr is not a cons cell correctly (bug#11038).
15201
15202 2012-05-06 Chong Yidong <cyd@gnu.org>
15203
15204 * emacs-lisp/tabulated-list.el (tabulated-list-format):
15205 Accept additional plist in column descriptors.
15206 (tabulated-list-init-header): Obey it.
15207 (tabulated-list-get-entry): New function.
15208 (tabulated-list-put-tag): Use it. Use string-width instead of
15209 length.
15210 (tabulated-list--column-number): New function.
15211 (tabulated-list-print): Use it.
15212 (tabulated-list-print-col): New function.
15213 Set `tabulated-list-column-name' property on each column's text.
15214 (tabulated-list-print-entry): Use it.
15215 (tabulated-list-delete-entry, tabulated-list-set-col):
15216 New functions.
15217 (tabulated-list-sort-column): New command (Bug#11337).
15218
15219 * buff-menu.el (list-buffers): Move C-x C-b binding from
15220 buff-menu.el to bindings.el.
15221
15222 * ebuff-menu.el (Electric-buffer-menu-undefined): Use the
15223 :advertised-binding feature.
15224
15225 2012-05-06 Troels Nielsen <bn.troels@gmail.com> (tiny change)
15226
15227 * progmodes/compile.el (compilation-internal-error-properties):
15228 Calculate start position correctly when end-col is set but
15229 end-line is not (Bug#11382).
15230
15231 2012-05-06 Wolfgang Jenkner <wjenkner@inode.at>
15232
15233 * man.el (Man-unindent): Use text-property-default-nonsticky to
15234 prevent untabify from inheriting face properties (Bug#11408).
15235
15236 2012-05-05 Stefan Merten <smerten@oekonux.de>
15237
15238 * textmodes/rst.el: Major merge with upstream development up to
15239 Docutils SVN r7399 / rst.el V1.2.1.
15240
15241 Clarify maintainership and authors.
15242
15243 (rst-extract-version, rst-cvs-header, rst-cvs-rev)
15244 (rst-cvs-timestamp, rst-svn-rev, rst-svn-timestamp)
15245 (rst-official-version, rst-official-cvs-rev, rst-version)
15246 (rst-package-emacs-version-alist): New functions and variables
15247 for version information.
15248
15249 (rst-bullets, rst-uri-schemes, rst-adornment-chars)
15250 (rst-max-inline-length, rst-re-alist-def, rst-re-alist)
15251 (rst-mode-syntax-table, rst-mode): New and corrected functions
15252 and variables representing reStructuredText features.
15253
15254 (rst-re): New function for reStructuredText regexes. Use in
15255 many places.
15256
15257 (rst-deprecated-keys, rst-call-deprecated, rst-define-key)
15258 (rst-mode-map): Rebind keys.
15259
15260 (rst-mode-lazy, rst-font-lock-keywords)
15261 (rst-font-lock-extend-region)
15262 (rst-font-lock-extend-region-internal)
15263 (rst-font-lock-extend-region-extend)
15264 (rst-font-lock-find-unindented-line-limit)
15265 (rst-font-lock-find-unindented-line-match)
15266 (rst-adornment-level, rst-font-lock-adornment-level)
15267 (rst-font-lock-adornment-match)
15268 (rst-font-lock-handle-adornment-pre-match-form)
15269 (rst-font-lock-handle-adornment-matcher): Major revision of
15270 font-locking. Integrate with other code. Use `jit-lock-mode'.
15271
15272 (rst-preferred-adornments, rst-adjust-hook)
15273 (rst-new-adornment-down, rst-preferred-bullets)
15274 (rst-preferred-bullets, rst-indent, rst-indent-width)
15275 (rst-indent-field, rst-indent-literal-normal)
15276 (rst-indent-literal-minimized, rst-indent-comment): Change,
15277 extend and improve customization.
15278
15279 (rst-line-homogeneous-p, rst-line-homogeneous-nodent-p)
15280 (rst-normalize-cursor-position, rst-get-decoration)
15281 (rst-straighten-deco-spacing, rst-re-bullets, rst-re-items)
15282 (rst-rstrip, rst-toc-insert-find-delete-contents)
15283 (rst-shift-fill-region, rst-compute-bullet-tabs)
15284 (rst-debug-print-tabs, rst-debug-mark-found)
15285 (rst-shift-region-guts, rst-shift-region-right)
15286 (rst-shift-region-left, rst-use-char-classes)
15287 (rst-font-lock-keywords-function)
15288 (rst-font-lock-indentation-point)
15289 (rst-font-lock-find-unindented-line-begin)
15290 (rst-font-lock-find-unindented-line-end)
15291 (rst-font-lock-find-unindented-line)
15292 (rst-font-lock-adornment-point, rst-font-lock-level)
15293 (rst-adornment-level-alist): Remove functions and variables.
15294
15295 (rst-compare-adornments, rst-get-adornment-match)
15296 (rst-suggest-new-adornment, rst-get-adornments-around)
15297 (rst-adornment-complete-p, rst-get-next-adornment)
15298 (rst-adjust-adornment, rst-display-adornments-hierarchy)
15299 (rst-straighten-adornments): Standardize function names to
15300 use "adornment" instead of "decoration". Correct callers.
15301 Similar standardizing in many places.
15302
15303 (rst-update-section, rst-adjust, rst-promote-region)
15304 (rst-enumerate-region, rst-bullet-list-region)
15305 (rst-repeat-last-character): Correct use of `interactive'.
15306
15307 (rst-classify-adornment, rst-find-all-adornments)
15308 (rst-get-hierarchy, rst-adjust-adornment, rst-toc-update)
15309 (rst-find-leftmost-column, rst-repeat-last-character):
15310 Refactor functions.
15311
15312 (rst-find-title-line, rst-reset-section-caches)
15313 (rst-get-adornments-around, rst-adjust-adornment-work)
15314 (rst-arabic-to-roman, rst-roman-to-arabic)
15315 (rst-insert-list-pos, rst-insert-list-new-item)
15316 (rst-insert-list-continue, rst-insert-list, rst-forward-line):
15317 New functions.
15318
15319 (rst-all-sections, rst-section-hierarchy)
15320 (rst-arabic-to-roman, rst-initial-enums, rst-initial-items):
15321 New variables.
15322
15323 (rst-toc-return-wincfg, rst-toc-quit-window): Use window
15324 configuration instead of only buffer. Change where necessary.
15325
15326 (rst-line-tabs, rst-compute-tabs, rst-indent-line)
15327 (rst-shift-region, rst-adaptive-fill): New functions for
15328 indentation and filling.
15329
15330 (rst-comment-line-break, rst-comment-indent)
15331 (rst-comment-insert-comment, rst-comment-region)
15332 (rst-uncomment-region): New functions for handling comments.
15333
15334 (rst-compile): Quote shell arguments.
15335
15336 (rst-compile-pdf-preview, rst-compile-slides-preview):
15337 Delete temporary files after use.
15338
15339 2012-05-05 Glenn Morris <rgm@gnu.org>
15340
15341 * calendar/cal-html.el: Optionally include holidays in the output.
15342 Suggested by Ed Reingold <reingold@emr.cs.iit.edu>.
15343 (cal-html-holidays): New option.
15344 (cal-html-css-default): Add holiday entry.
15345 (holiday-in-range): Autoload it.
15346 (cal-html-htmlify-entry): Add optional class argument.
15347 (cal-html-htmlify-list): Add optional holidays argument.
15348 (cal-html-insert-agenda-days): Include holidays in the output.
15349 (cal-html-one-month): Maybe include holidays.
15350
15351 * calendar/holidays.el (holiday-in-range):
15352 Move here from cal-tex-list-holidays.
15353 * calendar/cal-tex.el (cal-tex-list-holidays):
15354 Make it an obsolete alias for holiday-in-range. Update all callers.
15355
15356 2012-05-05 Chong Yidong <cyd@gnu.org>
15357
15358 * select.el (xselect--encode-string): Always use utf-8 for TEXT on
15359 Nextstep.
15360
15361 2012-05-05 Ransom Williams <auvergnerw@gmail.com> (tiny change)
15362
15363 * files.el (file-auto-mode-skip): New var.
15364 (set-auto-mode-1): Use it.
15365
15366 2012-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
15367
15368 * repeat.el: Use lexical-binding.
15369 (repeat-last-self-insert, repeat-num-input-keys-at-self-insert)
15370 (repeat-undo-count): Remove.
15371 (repeat):
15372 * progmodes/octave-mod.el (octave-abbrev-start):
15373 * progmodes/f90.el (f90-abbrev-start):
15374 * face-remap.el (text-scale-adjust):
15375 * kmacro.el (kmacro-call-macro): Use set-temporary-overlay-map.
15376
15377 * emacs-lisp/pcase.el (pcase--let*): New function.
15378 (pcase--expand, pcase-codegen, pcase--q1): Use it to reduce nesting
15379 a bit more.
15380 (pcase--split-pred): Be more clever about ruling out overlap between
15381 a predicate and some constant pattern.
15382 (pcase--q1): Use `null' instead of (eq foo nil).
15383
15384 * subr.el (setq-local, defvar-local): New macros.
15385 (kbd): Redefine as an alias.
15386 (with-selected-window): Leave unrelated frames alone.
15387 (set-temporary-overlay-map): New function.
15388
15389 2012-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
15390
15391 * subr.el (user-error): New function.
15392 * window.el (switch-to-buffer):
15393 * vc/smerge-mode.el (smerge-resolve-function, smerge-resolve)
15394 (smerge-match-conflict):
15395 * simple.el (previous-matching-history-element)
15396 (next-matching-history-element, goto-history-element, undo-more)
15397 (undo-start):
15398 * progmodes/etags.el (visit-tags-table-buffer, find-tag-tag)
15399 (find-tag-noselect, find-tag-in-order, etags-goto-tag-location)
15400 (next-file, tags-loop-scan, list-tags, complete-tag):
15401 * progmodes/compile.el (compilation-loop):
15402 * mouse.el (mouse-minibuffer-check):
15403 * man.el (Man-bgproc-sentinel, Man-goto-page):
15404 * info.el (Info-find-node-2, Info-extract-pointer, Info-history-back)
15405 (Info-history-forward, Info-follow-reference, Info-menu)
15406 (Info-extract-menu-item, Info-extract-menu-counting)
15407 (Info-forward-node, Info-backward-node, Info-next-menu-item)
15408 (Info-last-menu-item, Info-next-preorder, Info-last-preorder)
15409 (Info-next-reference, Info-prev-reference, Info-index)
15410 (Info-index-next, Info-follow-nearest-node)
15411 (Info-copy-current-node-name):
15412 * imenu.el (imenu--make-index-alist)
15413 (imenu-default-create-index-function, imenu-add-to-menubar):
15414 * files.el (basic-save-buffer, recover-file):
15415 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
15416 * emacs-lisp/checkdoc.el (checkdoc-continue, checkdoc-comments)
15417 (checkdoc-message-text, checkdoc-defun):
15418 * dabbrev.el (dabbrev-completion, dabbrev--abbrev-at-point):
15419 * cus-edit.el (customize-changed-options, customize-rogue)
15420 (customize-saved, custom-variable-set, custom-variable-mark-to-save)
15421 (custom-variable-mark-to-reset-standard)
15422 (custom-variable-reset-backup, custom-face-mark-to-reset-standard)
15423 (custom-file):
15424 * completion.el (check-completion-length):
15425 * comint.el (comint-search-arg)
15426 (comint-previous-matching-input-string-position)
15427 (comint-previous-matching-input)
15428 (comint-replace-by-expanded-history-before-point, comint-send-input)
15429 (comint-copy-old-input, comint-backward-matching-input)
15430 (comint-goto-process-mark, comint-set-process-mark):
15431 * calendar/calendar.el (calendar-cursor-to-date): Use it.
15432 * bindings.el (debug-ignored-errors): Remove regexps, add `user-error'.
15433
15434 2012-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
15435
15436 * dabbrev.el (dabbrev--ignore-case-p): New function.
15437 (dabbrev-completion, dabbrev-expand, dabbrev--substitute-expansion):
15438 Use it.
15439
15440 * files.el (automount-dir-prefix): Mark as obsolete.
15441
15442 2012-05-04 Glenn Morris <rgm@gnu.org>
15443
15444 * patcomp.el, play/bruce.el: Move to obsolete/.
15445
15446 2012-05-04 Paul Eggert <eggert@cs.ucla.edu>
15447
15448 Fix minor Y10k bugs.
15449 * arc-mode.el (archive-unixdate):
15450 * autoinsert.el (auto-insert-alist):
15451 * calc/calc-forms.el (math-this-year):
15452 * emacs-lisp/copyright.el (copyright-current-year)
15453 (copyright-update-year, copyright):
15454 * tar-mode.el (tar-clip-time-string):
15455 * time.el (display-time-update):
15456 Don't assume years have 4 digits.
15457
15458 2012-05-04 Chong Yidong <cyd@gnu.org>
15459
15460 * dos-w32.el (file-name-buffer-file-type-alist)
15461 (direct-print-region-use-command-dot-com):
15462 * ffap.el (ffap-menu-regexp):
15463 * find-file.el (ff-special-constructs):
15464 * follow.el (follow-debug):
15465 * forms.el (forms--debug):
15466 * iswitchb.el (iswitchb-all-frames):
15467 * ido.el (ido-all-frames):
15468 * emacs-lisp/timer.el (timer-max-repeats):
15469 * mail/feedmail.el (feedmail-mail-send-hook)
15470 (feedmail-mail-send-hook-queued):
15471 * mail/footnote.el (footnote-signature-separator):
15472 * mail/mailabbrev.el (mail-alias-separator-string)
15473 (mail-abbrev-mode-regexp):
15474 * mail/rmail.el (rmail-speedbar-match-folder-regexp):
15475 * progmodes/idlwave.el (idlwave-libinfo-file)
15476 (idlwave-default-completion-case-is-down)
15477 (idlwave-library-routines): Convert defvars to defcustoms.
15478
15479 * mail/rmail.el (rmail-decode-mime-charset):
15480 * progmodes/idlw-shell.el (idlwave-shell-print-expression-function)
15481 (idlwave-shell-fix-inserted-breaks)
15482 (idlwave-shell-activate-alt-keybindings)
15483 (idlwave-shell-use-breakpoint-glyph):
15484 * facemenu.el (facemenu-unlisted-faces): Delete obsolete vars.
15485
15486 2012-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
15487
15488 * minibuffer.el (completion--twq-all): Beware completion-ignore-case.
15489
15490 2012-05-03 Wilson Snyder <wsnyder@wsnyder.org>
15491
15492 * progmodes/verilog-mode.el (font-lock-keywords):
15493 Fix mis-highligting auto. Reported by Craig Barner.
15494 (verilog-auto, verilog-auto-undef): Add AUTOUNDEF to remove
15495 defines from global name space. Reported by Dan Dever.
15496 (verilog-auto-reset, verilog-auto-reset-widths)
15497 (verilog-auto-tieoff): Support using unbased numbers for
15498 AUTORESET and AUTOTIEOFF.
15499 (verilog-submit-bug-report): Update variable list.
15500 (verilog-read-auto-params): Fix AUTOINPUT regexps containing
15501 parenthesis from not matching. Reported by Michael Rytting.
15502 (verilog-auto-template-lint): Fix hash error when linting modules
15503 with no used templates.
15504 (verilog-warn, verilog-warn-error)
15505 (verilog-warn-fatal): When non-interactive report multiple
15506 warnings before exiting. Suggested by Brad Dobbie.
15507 (verilog-auto-template-lint, verilog-auto-template-warn-unused)
15508 (verilog-read-auto-template): Add `verilog-auto-template-warn-unused'
15509 to report unused template errors. Reported by Brad Dobbie.
15510 (verilog-read-decls): Fix AUTOWIRE etc on supply0, supply1 type
15511 nets, bug438. Reported by Vns Blore.
15512 (verilog-auto-inout-module, verilog-auto-reg)
15513 (verilog-read-decls, verilog-read-sub-decls-sig)
15514 (verilog-signals-edit-wire-reg, verilog-signals-with):
15515 Fix passing of Verilog data types in ANSI input/output ports
15516 such as "output logic" into the AUTOs. Special case "wire" and
15517 "reg" for backwards compatibility presuming Verilog 2001.
15518 (verilog-auto-ascii-enum): Add "auto enum" as alias.
15519 (verilog-preprocess): Fix replication of preprocess output.
15520 Reported by Brad Dobbie.
15521 (verilog-auto-inst-interfaced-ports):
15522 Create verilog-auto-inst-interfaced-ports, bug429.
15523 Reported by Julian Gorfajn.
15524 (verilog-after-save-font-hook)
15525 (verilog-before-save-font-hook): New variable.
15526 (verilog-modi-cache-results, verilog-save-font-mod-hooked)
15527 (verilog-save-font-mods): Wrap disabling fontification, reported
15528 by David Rogoff.
15529 (verilog-do-indent, verilog-pretty-declarations-auto)
15530 (verilog-sk-def-reg): Fix obeying `verilog-auto-lineup', bug305.
15531 Reported by Pierre-David Pfister.
15532 (verilog-set-auto-endcomments): Fix endtask auto comments outside
15533 of class declarations, bug292. Reported by Kevin Heilman.
15534 (verilog-read-decls): Fix 'parameter type' not appearing in
15535 AUTOINSTPARAM, bug340. Reported by Jonathan Greenlaw.
15536 (verilog-auto-logic): Fix when AUTOLOGIC present to properly do
15537 AUTOINPUTs, bug411. Reported by Jonathan Greenlaw.
15538 (verilog-read-auto-lisp): Avoid syntax-ppss warning on AUTOLISP.
15539 Reported by David Kravitz.
15540
15541 2012-05-03 Michael McNamara <mac@mail.brushroad.com>
15542
15543 * progmodes/verilog-mode.el (verilog-pretty-expr): Don't line up
15544 assignment with tests in ifs and for loops.
15545 (verilog-extended-complete-re, verilog-complete-reg): Change so
15546 that DPI inport functions don't look like fuction declarations.
15547 (verilog-pretty-expr): Don't line up assignment
15548 operations to the test and increment in if and for loops
15549 (verilog-extended-complete-re, verilog-complete-reg): Change so
15550 that DPI inport functions don't look like fuction declarations.
15551
15552 2012-05-03 Kenichi Handa <handa@m17n.org>
15553
15554 * mail/rmailmm.el (rmail-show-mime): Catch an error caused by text
15555 decoding, and show a warning message without signaling an error
15556 (Bug#11282).
15557
15558 2012-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
15559
15560 * emacs-lisp/bytecomp.el
15561 (byte-compile-file-form-custom-declare-variable): Compile all elements,
15562 since cconv.el might have introduced :fun-body, internal-make-closure,
15563 and friends for bytecomp to handle (bug#11391).
15564 * custom.el (defcustom): Avoid ((λ ..) ..).
15565
15566 2012-05-02 Stefan Monnier <monnier@iro.umontreal.ca>
15567
15568 * subr.el (read-passwd): Better clean after ourselves (bug#11392).
15569
15570 2012-05-02 Juanma Barranquero <lekktu@gmail.com>
15571
15572 * notifications.el (dbus-debug):
15573 * term/linux.el (gpm-mouse-enable):
15574 * term/screen.el (xterm-register-default-colors): Declare.
15575
15576 2012-05-02 Chong Yidong <cyd@gnu.org>
15577
15578 * cus-start.el (gc-cons-percentage, exec-suffixes)
15579 (dos-display-scancodes, dos-hyper-key, dos-super-key)
15580 (dos-keypad-mode, debug-on-signal, vertical-centering-font-regexp)
15581 (make-cursor-line-fully-visible, void-text-area-pointer)
15582 (font-list-limit): Add customization data.
15583
15584 * allout.el (allout-exposure-change-functions)
15585 (allout-structure-added-functions)
15586 (allout-structure-deleted-functions)
15587 (allout-structure-shifted-functions): Rename abnormal hooks from
15588 *-hook, and convert to defcustoms.
15589 (allout-after-copy-or-kill-hook, allout-post-undo-hook):
15590 Convert to defcustoms.
15591 (allout-mode-hook, allout-mode-deactivate-hook): Doc fix.
15592
15593 * allout-widgets.el: Hook callers changed.
15594
15595 2012-05-02 Eli Zaretskii <eliz@gnu.org>
15596
15597 * mail/rmail.el (rmail-yank-current-message): Use the encoding of
15598 the yanked message in preference to the default value of
15599 buffer-file-coding-system.
15600
15601 2012-05-02 Martin Rudalics <rudalics@gmx.at>
15602
15603 * window.el (display-buffer--action-function-custom-type):
15604 Fix entry.
15605
15606 2012-05-02 Alan Mackenzie <acm@muc.de>
15607
15608 * progmodes/cc-defs.el (c-version): Update to 5.32.3.
15609
15610 2012-05-01 Glenn Morris <rgm@gnu.org>
15611
15612 * cus-start.el (suggest-key-bindings): Remove, now it is in Lisp.
15613
15614 * eshell/esh-cmd.el (eshell-debug-command): Doc fix. Add :set.
15615
15616 * cus-edit.el (custom-variable-documentation): Simplify with format.
15617
15618 2012-05-01 Aaron S. Hawley <aaron.s.hawley@gmail.com>
15619 Stefan Monnier <monnier@iro.umontreal.ca>
15620
15621 * simple.el (suggest-key-bindings, execute-extended-command):
15622 Move from keyboard.c.
15623
15624 2012-05-01 Chong Yidong <cyd@gnu.org>
15625
15626 * follow.el: Eliminate advice.
15627 (set-process-filter, process-filter, sit-for): Advice deleted.
15628 (follow-mode-off-hook): Obsolete hook removed.
15629 (follow-avoid-tail-recenter-p, follow-process-filter-alist):
15630 Vars deleted.
15631 (follow-auto): Use a :set function.
15632 (follow-mode): Rewritten. Don't advise process filters.
15633 (follow-switch-to-current-buffer-all, follow-scroll-up)
15634 (follow-scroll-down): Assume follow-mode is bound.
15635 (follow-comint-scroll-to-bottom)
15636 (follow-align-compilation-windows): New functions.
15637 (follow--window-sorter): New function.
15638 (follow-all-followers): Use it to explicitly sort windows by their
15639 positions; don't make assumptions about next-window order.
15640 (follow-windows-start-end, follow-delete-other-windows-and-split)
15641 (follow-calc-win-start): Doc fix.
15642 (follow-windows-aligned-p, follow-select-if-visible): Don't call
15643 vertical-motion unnecessarily.
15644 (follow-adjust-window): New function.
15645 (follow-post-command-hook): Use it.
15646 (follow-call-set-process-filter, follow-call-process-filter)
15647 (follow-intercept-process-output, follow-tidy-process-filter-alist)
15648 (follow-stop-intercept-process-output, follow-generic-filter):
15649 Functions deleted.
15650 (follow-scroll-bar-toolkit-scroll, follow-scroll-bar-drag)
15651 (follow-scroll-bar-scroll-up, follow-scroll-bar-scroll-down):
15652 New functions, replacing advice on scroll-bar-* commands.
15653 (follow-mwheel-scroll): New function (Bug#4112).
15654
15655 * comint.el (comint-adjust-point): New function.
15656 (comint-postoutput-scroll-to-bottom): Use it.
15657 Call follow-comint-scroll-to-bottom for Follow mode buffers.
15658
15659 2012-05-01 Glenn Morris <rgm@gnu.org>
15660
15661 * term/AT386.el, term/apollo.el, term/bobcat.el, term/cygwin.el:
15662 * term/iris-ansi.el, term/linux.el, term/lk201.el, term/news.el:
15663 * term/screen.el, term/vt102.el, term/vt125.el, term/vt200.el:
15664 * term/vt201.el, term/vt220.el, term/vt240.el, term/vt300.el:
15665 * term/vt320.el, term/vt400.el, term/vt420.el, term/wyse50.el:
15666 Remove no-byte-compile setting.
15667
15668 2012-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
15669
15670 * minibuffer.el (completion-table-with-quoting): Fix compatibility
15671 all-completions code to not return a number in the last cdr.
15672
15673 2012-04-30 Leo Liu <sdl.web@gmail.com>
15674
15675 * ibuf-ext.el (ibuffer-diff-buffer-with-file-1): Avoid buffer
15676 read-only error.
15677
15678 2012-04-29 Chong Yidong <cyd@gnu.org>
15679
15680 * follow.el (follow-calc-win-end): Rewrite to handle partial
15681 screen lines correctly (Bug#8390).
15682 (follow-avoid-tail-recenter): Minor cleanup.
15683
15684 2012-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
15685
15686 Avoid the obsolete `assoc' package.
15687 * speedbar.el (speedbar-refresh): Avoid adelete.
15688 (speedbar-file-lists): Simplify and avoid aput.
15689 * man.el (Man--sections, Man--refpages): New vars, replacing
15690 Man-sections-alist and Man-refpages-alist.
15691 (Man-build-section-alist, Man-build-references-alist):
15692 Use them; avoid aput.
15693 (Man--last-section, Man--last-refpage): New vars.
15694 (Man-follow-manual-reference): Use them.
15695 Use the `default' arg of completing-read.
15696 (Man-goto-section): Idem. Move prompt to the `interactive' spec.
15697
15698 2012-04-27 Chong Yidong <cyd@gnu.org>
15699
15700 * vc/diff.el (diff-sentinel): Go to bob (Bug#10259).
15701
15702 * startup.el (x-apply-session-resources): New function.
15703
15704 * term/ns-win.el (ns-initialize-window-system):
15705 * term/w32-win.el (w32-initialize-window-system):
15706 * term/x-win.el (x-initialize-window-system): Use it to properly
15707 set menu-bar-mode and other vars from X resources, even if the
15708 initial frame is not a window-system frame (Bug#2299).
15709
15710 * subr.el (read-key): Avoid running filter function when setting
15711 up temporary tool bar entries (Bug#9922).
15712
15713 2012-04-27 Andreas Schwab <schwab@linux-m68k.org>
15714
15715 * vc/vc-git.el (vc-git-state): Fix regexp matching diff output.
15716 (Bug#11344)
15717
15718 2012-04-27 Chong Yidong <cyd@gnu.org>
15719
15720 * select.el (xselect--encode-string): New function, split from
15721 xselect-convert-to-string.
15722 (xselect-convert-to-string): Use it.
15723 (xselect-convert-to-filename, xselect-convert-to-os)
15724 (xselect-convert-to-host, xselect-convert-to-user): Ensure that
15725 returned strings are properly encoded (Bug#11315).
15726
15727 2012-04-27 Chong Yidong <cyd@gnu.org>
15728
15729 * simple.el (delete-active-region): Move to killing custom group.
15730
15731 2012-04-27 Andreas Schwab <schwab@linux-m68k.org>
15732
15733 * progmodes/which-func.el (which-func-current): Quote %
15734 characters for mode-line processing.
15735
15736 2012-04-27 Chong Yidong <cyd@gnu.org>
15737
15738 * xml.el (xml-parse-region, xml-parse-tag): Avoid errors due to
15739 reaching eob (Bug#11286).
15740
15741 2012-04-27 Eli Zaretskii <eliz@gnu.org>
15742
15743 * progmodes/gdb-mi.el (gdb-control-level): New variable.
15744 (gdb): Make it buffer-local and init to zero.
15745 (gdb-control-commands-regexp): New variable.
15746 (gdb-send): Don't wrap in "-interpreter-exec console" if
15747 gdb-control-level is positive. Increment gdb-control-level
15748 whenever the command matches gdb-control-commands-regexp, and
15749 decrement it each time the command is "end". (Bug#11279)
15750
15751 2012-04-27 Martin Rudalics <rudalics@gmx.at>
15752
15753 * window.el (adjust-window-trailing-edge, enlarge-window)
15754 (shrink-window, window-resize):
15755 * mouse.el (mouse-drag-line): Fix resizing of minibuffer
15756 windows (Bug#11276).
15757
15758 2012-04-27 Chong Yidong <cyd@gnu.org>
15759
15760 * progmodes/pascal.el (pascal--extra-indent): Rename from ind, to
15761 fix "missing prefix" warning. All callers changed.
15762
15763 2012-04-27 Stefan Monnier <monnier@iro.umontreal.ca>
15764
15765 * emacs-lisp/assoc.el: Move to obsolete/.
15766
15767 2012-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
15768
15769 * emacs-lisp/assoc.el (aget): Fix dynamic-scoping issue (bug#11352).
15770
15771 * term/ns-win.el (ns-define-service):
15772 * progmodes/pascal.el (pascal-goto-defun):
15773 * progmodes/js.el (js--read-tab):
15774 * progmodes/etags.el (tags-lazy-completion-table):
15775 * emacs-lisp/syntax.el (syntax-propertize-via-font-lock):
15776 * emacs-lisp/ewoc.el (ewoc--wrap):
15777 * emacs-lisp/assoc.el (aput, adelete, amake):
15778 * doc-view.el (doc-view-convert-current-doc):
15779 * vc/diff.el (diff-no-select): Replace lexical-let by lexical-binding.
15780
15781 2012-04-26 Chong Yidong <cyd@gnu.org>
15782
15783 * image.el (image-type-from-buffer): Only return supported image
15784 type (Bug#9045).
15785
15786 * vc/diff-mode.el (diff-beginning-of-hunk): Return a meaningful
15787 value, for symmetry with diff-end-of-hunk.
15788 (diff-split-hunk, diff-find-source-location)
15789 (diff-ignore-whitespace-hunk, diff-refine-hunk): Use it.
15790 (diff-bounds-of-hunk, diff-bounds-of-file): New functions.
15791 (diff-restrict-view, diff-hunk-kill, diff-file-kill): Use them to
15792 compute the relevant hunk or file properly (Bug#6005).
15793 (diff-file-junk-re): Add bzr's "modified file" tag (Bug#6041).
15794
15795 2012-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
15796
15797 * vc/vc-mtn.el:
15798 * vc/vc-hg.el:
15799 * vc/vc-git.el:
15800 * vc/vc-dir.el:
15801 * vc/vc-cvs.el:
15802 * vc/vc-bzr.el:
15803 * vc/vc-arch.el:
15804 * vc/vc.el: Replace lexical-let by lexical-binding.
15805 * minibuffer.el (lazy-completion-table): Avoid ((λ ...) ...).
15806 * emacs-lisp/cl-macs.el (lexical-let): Fix use in lexical-binding.
15807 * emacs-lisp/cconv.el (cconv-analyse-form): Warn use of ((λ ...) ...).
15808
15809 2012-04-26 Chong Yidong <cyd@gnu.org>
15810
15811 * vc/diff-mode.el (diff-undo): New command (Bug#5302).
15812 (diff-mode-shared-map): Bind it to / and [remap undo].
15813
15814 * vc/ediff-wind.el (ediff-setup-windows-default): New function.
15815 (ediff-window-setup-function): Use it as the default, to set up
15816 windows based on whether the current frame is graphical (Bug#2138).
15817 (ediff-choose-window-setup-function-automatically): Make obsolete.
15818
15819 * vc/ediff-init.el: Always define ediff-pixel-width/height.
15820
15821 2012-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
15822
15823 * ffap.el: Remove old code for obsolete package.
15824 (ffap-complete-as-file-p): Remove.
15825
15826 Use completion-table-with-quoting for comint and pcomplete.
15827 * comint.el (comint--unquote&requote-argument)
15828 (comint--unquote-argument, comint--requote-argument): New functions.
15829 (comint--unquote&expand-filename, comint-unquote-filename): Obsolete.
15830 (comint-quote-filename): Use regexp-opt-charset.
15831 (comint--common-suffix, comint--common-quoted-suffix)
15832 (comint--table-subvert): Remove.
15833 (comint-unquote-function, comint-requote-function): New vars.
15834 (comint--complete-file-name-data): Use them with
15835 completion-table-with-quoting.
15836 * pcmpl-unix.el (pcomplete/scp): Use completion-table-subvert.
15837 * pcomplete.el (pcomplete-arg-quote-list)
15838 (pcomplete-quote-arg-hook, pcomplete-quote-argument): Obsolete.
15839 (pcomplete-unquote-argument-function): Default to non-nil.
15840 (pcomplete-unquote-argument): Simplify.
15841 (pcomplete--common-quoted-suffix): Remove.
15842 (pcomplete-requote-argument-function): New var.
15843 (pcomplete--common-suffix): New function.
15844 (pcomplete-completions-at-point): Use completion-table-with-quoting
15845 and completion-table-subvert.
15846
15847 * minibuffer.el: Use completion-table-with-quoting for read-file-name.
15848 (minibuffer--double-dollars): Preserve properties.
15849 (completion--sifn-requote): New function.
15850 (completion--file-name-table): Rewrite using it and c-t-with-quoting.
15851
15852 * minibuffer.el: Add support for completion of quoted/escaped data.
15853 (completion-table-with-quoting, completion-table-subvert): New funs.
15854 (completion--twq-try, completion--twq-all): New functions.
15855 (completion--nth-completion): New function.
15856 (completion-try-completion, completion-all-completions): Use it.
15857
15858 2012-04-25 Leo Liu <sdl.web@gmail.com>
15859
15860 * progmodes/python.el (python-pdbtrack-get-source-buffer):
15861 Use compilation-message if available to find real filename.
15862
15863 2012-04-25 Chong Yidong <cyd@gnu.org>
15864
15865 * vc/diff-mode.el (diff-setup-whitespace): New function.
15866 (diff-mode): Use it.
15867
15868 * vc/diff.el (diff-sentinel):
15869 * vc/vc.el (vc-diff-finish): Call diff-setup-whitespace to assign
15870 Whitespace mode variables based on diff style (Bug#8612).
15871
15872 2012-04-25 Leo Liu <sdl.web@gmail.com>
15873
15874 * progmodes/python.el (python-send-region): Add suffix .py to the
15875 temp file.
15876
15877 * files.el (auto-mode-alist): Use javascript-mode instead.
15878
15879 2012-04-25 Alex Harsanyi <AlexHarsanyi@gmail.com>
15880
15881 Sync with soap-client repository. Support SOAP simpleType (Bug#10331).
15882
15883 * net/soap-client.el (soap-resolve-references-for-sequence-type)
15884 (soap-resolve-references-for-array-type): Hack to prevent self
15885 references, see Bug#9.
15886 (soap-parse-envelope): Report the contents of the 'detail' node
15887 when receiving a fault reply.
15888 (soap-parse-envelope): Report the contents of the entire 'detail' node.
15889
15890 * net/soap-inspect.el (soap-sample-value-for-simple-type)
15891 (soap-inspect-simple-type): New function.
15892
15893 * net/soap-client.el (soap-simple-type): New struct.
15894 (soap-default-xsd-types, soap-default-soapenc-types)
15895 (soap-decode-basic-type, soap-encode-basic-type):
15896 support unsignedInt and double basic types.
15897 (soap-resolve-references-for-simple-type)
15898 (soap-parse-simple-type, soap-encode-simple-type): New function.
15899 (soap-parse-schema): Parse xsd:simpleType declarations.
15900
15901 * net/soap-client.el (soap-default-xsd-types)
15902 (soap-default-soapenc-types): Add integer, byte and anyURI types.
15903 (soap-parse-complex-type-complex-content): Use `soap-wk2l' to find
15904 the local name of "soapenc:Array".
15905 (soap-decode-basic-type, soap-encode-basic-type): Support encoding
15906 decoding integer, byte and anyURI xsd types.
15907
15908 2012-04-25 Chong Yidong <cyd@gnu.org>
15909
15910 * cus-edit.el (custom-buffer-create-internal): Update header text.
15911
15912 2012-04-25 Eli Zaretskii <eliz@gnu.org>
15913
15914 * progmodes/gdb-mi.el (gdb-init-1): Condition Windows-specific
15915 settings on 'system-type', not on 'window-system'. On MS-Windows,
15916 set interactive-mode on in GDB.
15917
15918 2012-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
15919
15920 * progmodes/ruby-mode.el: Simplify last change, and cleanup code.
15921 (ruby-syntax-propertize-regexp): Remove.
15922 (ruby-syntax-propertize-function): Split regexp into chunks.
15923 Match following code directly.
15924
15925 2012-04-24 Dmitry Gutov <dgutov@yandex.ru>
15926
15927 * progmodes/ruby-mode.el: Handle Cucumber defs (bug#6286).
15928 (ruby-syntax-propertize-regexp): New function.
15929 (ruby-syntax-propertize-function): Use it to handle regexp not preceded
15930 by a special keyword.
15931
15932 * progmodes/ruby-mode.el: Handle general delimited literals (bug#6286).
15933 (ruby-syntax-general-delimiters-goto-beg)
15934 (ruby-syntax-propertize-general-delimiters): New functions.
15935 (ruby-syntax-propertize-function): Use them to handle GDL.
15936 (ruby-font-lock-keywords): Move old handling of GDL...
15937 (ruby-font-lock-syntactic-keywords): .. to here.
15938 (ruby-calculate-indent): Adjust indentation for GDL.
15939
15940 2012-04-24 Michael Albinus <michael.albinus@gmx.de>
15941
15942 * notifications.el (top): Remove unneeded declarations.
15943 (notifications-specification-version): Change to "1.2".
15944 (notifications-interface, notifications-notify-method)
15945 (notifications-close-notification-method): Fix docstring.
15946 (notifications-get-capabilities-method): New defconst.
15947 (notifications-notify): Add :action-items, :resident and
15948 :transient hints. Change "image_data" to "image-data" and
15949 "image_path" to "image-path".
15950 (notifications-get-capabilities): New defun.
15951
15952 2012-04-24 Leo Liu <sdl.web@gmail.com>
15953
15954 * progmodes/python.el: Move hideshow setup to the end.
15955
15956 2012-04-24 Martin Rudalics <rudalics@gmx.at>
15957
15958 * window.el (handle-select-window): Clear echo area since this is
15959 no more done by read_char (Bug#11304).
15960
15961 2012-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
15962
15963 * ibuffer.el (ibuffer-mode-map): Bind `/ m' to filter-used-mode
15964 and `/ M' to filter-derived-mode.
15965 * ibuf-ext.el (ibuffer-list-buffer-modes): Simplify; avoid add-to-list.
15966 (ibuffer-filter-by-mode, ibuffer-filter-by-used-mode)
15967 (ibuffer-mark-by-mode): Use default rather than initial-input.
15968 (ibuffer-filter-by-derived-mode): Autoload and require-match.
15969
15970 2012-04-24 Ivan Andrus <darthandrus@gmail.com> (tiny change)
15971
15972 * ibuf-ext.el (ibuffer-list-buffer-modes): Add `include-parents' arg.
15973 (ibuffer-filter-by-derived-mode): New filter.
15974 * ibuffer.el (ibuffer-mode-map): Bind to `/ w'.
15975
15976 2012-04-23 Andreas Politz <politza@fh-trier.de>
15977
15978 * subr.el (accept-change-group): Fix arg usage (Bug#6095).
15979
15980 2012-04-23 Chong Yidong <cyd@gnu.org>
15981
15982 * cus-edit.el (customize-apropos, customize-apropos-options):
15983 Disable matching of non-option variables (Bug#11176).
15984 (customize-option, customize-option-other-window)
15985 (customize-changed-options): Doc fix.
15986 (customize-apropos-options, customize-apropos-faces)
15987 (customize-apropos-groups): Use apropos-read-pattern (Bug#11124).
15988
15989 * apropos.el (apropos-read-pattern): Make prompt less cryptic.
15990 Fix word list splitting (Bug#11132).
15991 (apropos-symbol, apropos-keybinding, apropos-label)
15992 (apropos-property, apropos-function-button)
15993 (apropos-variable-button, apropos-misc-button): New faces.
15994 (apropos-symbol-face, apropos-keybinding-face)
15995 (apropos-label-face, apropos-property-face, apropos-match-face):
15996 Variables removed (Bug#8396).
15997 (apropos-library-button, apropos-format-plist, apropos-print)
15998 (apropos-print-doc, apropos-describe-plist): Callers changed.
15999
16000 2012-04-23 Michael Albinus <michael.albinus@gmx.de>
16001
16002 * net/xesam.el (xesam-mode-map): Use let-bound map in
16003 initialization. (Bug#11292)
16004
16005 2012-04-23 Agustín Martín Domingo <agustin.martin@hispalinux.es>
16006
16007 Preserve ispell session localwords when switching back to
16008 original buffer.
16009
16010 * textmodes/ispell.el (ispell-buffer-session-localwords):
16011 New buffer-local variable to hold buffer session localwords.
16012 (ispell-kill-ispell): Add option 'clear to delete session
16013 localwords.
16014 (ispell-command-loop, ispell-change-dictionary)
16015 (ispell-buffer-local-words): Preserve session localwords when
16016 needed.
16017
16018 * textmodes/flyspell.el (flyspell-process-localwords)
16019 (flyspell-do-correct): Preserve session localwords when needed.
16020
16021 2012-04-23 Agustín Martín Domingo <agustin.martin@hispalinux.es>
16022
16023 * textmodes/ispell.el (ispell-insert-word) Remove unneeded function
16024 using obsolete `translation-table-for-input'.
16025 (ispell-word, ispell-process-line, ispell-complete-word):
16026 Use plain `insert' instead of removed `ispell-insert-word'.
16027
16028 2012-04-22 Chong Yidong <cyd@gnu.org>
16029
16030 * cus-edit.el (custom-variable-menu)
16031 (custom-variable-reset-saved, custom-face-menu)
16032 (custom-face-reset-saved): If there is no saved value, make the
16033 "reset-saved" operation bring back the default (Bug#9509).
16034 (custom-face-state): Properly detect themed faces.
16035
16036 * faces.el (face-spec-set): Stop supporting deprecated form of
16037 third arg.
16038
16039 2012-04-22 Michael Albinus <michael.albinus@gmx.de>
16040
16041 Move functions from C to Lisp. Make non-blocking method calls
16042 the default. Implement further D-Bus standard interfaces.
16043
16044 * net/dbus.el (dbus-message-internal): Declare function.
16045 Remove unneeded function declarations.
16046 (defvar dbus-message-type-invalid, dbus-message-type-method-call)
16047 (dbus-message-type-method-return, dbus-message-type-error)
16048 (dbus-message-type-signal): Declare variables. Remove local
16049 definitions.
16050 (dbus-interface-dbus, dbus-interface-peer)
16051 (dbus-interface-introspectable, dbus-interface-properties)
16052 (dbus-path-emacs, dbus-interface-emacs, dbus-return-values-table):
16053 Adapt docstring.
16054 (dbus-interface-objectmanager): New defconst.
16055 (dbus-call-method, dbus-call-method-asynchronously)
16056 (dbus-send-signal, dbus-method-return-internal)
16057 (dbus-method-error-internal, dbus-register-service)
16058 (dbus-register-signal, dbus-register-method): New defuns, moved
16059 from dbusbind.c
16060 (dbus-call-method-handler, dbus-setenv)
16061 (dbus-get-all-managed-objects, dbus-managed-objects-handler):
16062 New defuns.
16063 (dbus-call-method-non-blocking): Make it an obsolete function.
16064 (dbus-unregister-object, dbus-unregister-service)
16065 (dbus-handle-event, dbus-register-property)
16066 (dbus-property-handler): Obey the new structure of
16067 `bus-registered-objects'.
16068 (dbus-introspect): Use `dbus-call-method'. Use a timeout.
16069 (dbus-get-property, dbus-set-property, dbus-get-all-properties):
16070 Use `dbus-call-method'.
16071
16072 2012-04-22 Chong Yidong <cyd@gnu.org>
16073
16074 * cus-edit.el (custom-commands, custom-reset-menu)
16075 (Custom-reset-standard): Tweak labels.
16076 (custom-reset-button-menu): Change default to t.
16077 (custom-buffer-create-internal): For the custom-reset-button-menu
16078 case, put the revert button first.
16079 (custom-group-subtitle): New face.
16080 (custom-group-value-create): Align docstring to a specific column.
16081
16082 * wid-edit.el (widget-documentation-link-add): Don't handle
16083 indentation in this function.
16084 (widget-documentation-string-indent-to): New function.
16085 (widget-documentation-string-value-create): Use it.
16086
16087 * autorevert.el (auto-revert):
16088 * epg-config.el (epg):
16089 * ibuffer.el (ibuffer):
16090 * mpc.el (mpc):
16091 * ses.el (ses):
16092 * eshell/eshell.el (eshell):
16093 * net/ange-ftp.el (ange-ftp):
16094 * progmodes/ebnf2ps.el (postscript):
16095 * progmodes/flymake.el (flymake):
16096 * progmodes/prolog.el (prolog):
16097 * progmodes/verilog-mode.el (verilog-mode):
16098 * progmodes/which-func.el (which-func):
16099 * term/xterm.el (xterm):
16100 * textmodes/picture.el (picture):
16101 * textmodes/tildify.el (tildify):
16102 * vc/ediff.el (ediff): Tweak defgroups to improve presentation in
16103 customization buffers.
16104
16105 2012-04-22 Alan Mackenzie <acm@muc.de>
16106
16107 * progmodes/cc-engine.el (c-append-lower-brace-pair-to-state-cache):
16108 Adding a ) can hide the resulting (..) from searches. Fix it.
16109 Bound the backward search to the position of the existing (.
16110
16111 2012-04-21 Juanma Barranquero <lekktu@gmail.com>
16112
16113 * progmodes/verilog-mode.el (verilog-mode): Check whether
16114 which-func-modes is t before adding verilog-mode.
16115 Reported by Andy Moreton <andrewjmoreton@gmail.com>.
16116
16117 2012-04-21 Leo Liu <sdl.web@gmail.com>
16118
16119 * net/rcirc.el (rcirc): Avoid error when process-contact returns t.
16120
16121 2012-04-21 Michael Vehrs <Michael.Burschik@gmx.de>
16122
16123 * woman.el: Add support for "T{ T}" tbl syntax, and fix the
16124 filling of the last column of a table (Bug#5635).
16125 (woman-find-next-control-line): New arg, specifying an additional
16126 regexp component for the control line.
16127 (woman2-roff-buffer): Use it.
16128 (woman-break-table): New function.
16129 (woman2-TS): Use it.
16130
16131 2012-04-21 Chong Yidong <cyd@gnu.org>
16132
16133 * woman.el (woman-set-buffer-display-table, woman-decode-region)
16134 (woman-horizontal-escapes, woman-negative-vertical-space)
16135 (woman-tab-to-tab-stop, woman2-fc, woman2-TS)
16136 (WoMan-warn-ignored): Use ?\s instead of ?\ .
16137
16138 2012-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
16139
16140 * minibuffer.el (completion-file-name-table): Complete user names.
16141
16142 2012-04-20 Leo Liu <sdl.web@gmail.com>
16143
16144 * font-lock.el (lisp-font-lock-keywords-2): Add pcase, pcase-let
16145 and pcase-let*.
16146
16147 2012-04-20 Chong Yidong <cyd@gnu.org>
16148
16149 * server.el (server-execute): Respect initial-buffer-choice if it
16150 is a string and there are no files to open (Bug#2825).
16151 (server-create-window-system-frame, server-create-tty-frame):
16152 Don't switch buffers here.
16153 (server-process-filter): Only try to open a window system frame if
16154 compiled with graphical support (Bug#8314).
16155
16156 2012-04-20 Dan Nicolaescu <dann@gnu.org>
16157
16158 * battery.el (battery-echo-area-format): Display remaining time
16159 for sysfs backend too (Bug#11269).
16160 (battery-linux-sysfs): Fix conditional for the charge.
16161
16162 2012-04-20 Chong Yidong <cyd@gnu.org>
16163
16164 * progmodes/gdb-mi.el (gdb): Revert previous change.
16165 (gdb-inferior-io--init-proc): New function.
16166 (gdb-init-1): Use it.
16167 (gdb-inferior-io-sentinel): New sentinel for the gdb-inferior pty,
16168 responsible for allocating a new pty and hooking it to gdb when
16169 the old pty gets an EIO due to process exit.
16170 (gdb-delchar-or-quit): New command. Bind it in gdb-mi buffers.
16171 (gdb-tooltip-print): Don't use obsolete tooltip-use-echo-area.
16172 (gdb-inferior-io--maybe-delete-pty): Move into gdb-reset.
16173
16174 2012-04-20 Eli Zaretskii <eliz@gnu.org>
16175
16176 * window.el (window-min-size, window-sizable, window-min-delta)
16177 (window-max-delta, window--resizable, window-resizable)
16178 (window-total-size, window-full-height-p, window-full-width-p)
16179 (window-in-direction, window--resize-mini-window, window-resize)
16180 (window--resize-child-windows-normal)
16181 (window--resize-child-windows, window--resize-siblings)
16182 (window--resize-this-window, adjust-window-trailing-edge)
16183 (enlarge-window, shrink-window): Doc fixes.
16184
16185 2012-04-20 Chong Yidong <cyd@gnu.org>
16186
16187 * progmodes/gdb-mi.el (gdb-inferior-io--maybe-delete-pty):
16188 New function to call delete-process on the gdb-inferior buffer's pty.
16189 (gdb-reset): Use it, instead of relying on kill-buffer to kill the
16190 pty process (Bug#11273).
16191 (gdb-update): New arg to suppress talking to the gdb process.
16192 (gdb-done-or-error): Use it.
16193 (gdb-stopped-functions): Rename from gdb-stopped-hooks.
16194 (gdb): Call gdb-inferior-io--maybe-delete-pty as a workaround for
16195 sentinel not being called.
16196
16197 * comint.el (make-comint-in-buffer, comint-exec): Doc fix.
16198
16199 * progmodes/grep.el (grep, rgrep): Doc fix (Bug#11268).
16200
16201 2012-04-20 Glenn Morris <rgm@gnu.org>
16202
16203 * net/network-stream.el (open-network-stream): Doc fix.
16204
16205 2012-04-20 Chong Yidong <cyd@gnu.org>
16206
16207 * emacs-lisp/tabulated-list.el (tabulated-list-print): Fix typos.
16208
16209 2012-04-20 Alan Mackenzie <acm@muc.de>
16210
16211 Ensure searching for keywords is case sensitive.
16212
16213 * progmodes/cc-cmds.el (c-electric-brace, c-electric-lt-gt)
16214 (c-electric-paren, c-beginning-of-defun, c-end-of-defun)
16215 (c-defun-name, c-mark-function, c-cpp-define-name)
16216 (c-comment-indent, c-scan-conditionals, c-indent-defun)
16217 (c-context-line-break): Bind case-fold-search to nil.
16218
16219 * progmodes/cc-mode.el (c-font-lock-fontify-region):
16220 Bind case-fold-search to nil.
16221
16222 2012-04-20 Chong Yidong <cyd@gnu.org>
16223
16224 * mail/sendmail.el (mail-bury): Call return action with the right
16225 Rmail buffer (Bug#11242).
16226
16227 * server.el (server-process-filter): Handle corner case where both
16228 tty and nowait options are present (Bug#11102).
16229
16230 2012-04-20 Eli Zaretskii <eliz@gnu.org>
16231
16232 * version.el (emacs-bzr-version, emacs-bzr-get-version): Doc fixes.
16233 (top level): Put into the executable the ident-style '$Id:' tag on
16234 windows-nt as well.
16235
16236 2012-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
16237
16238 * electric.el (electric-indent-post-self-insert-function): Check that
16239 electric-indent-mode is enabled in current buffer.
16240
16241 2012-04-19 Juanma Barranquero <lekktu@gmail.com>
16242
16243 * imenu.el (imenu-progress-message): Restore; it is "used" in
16244 erc/erc-imenu.el and net/snmp-mode.el.
16245
16246 2012-04-19 Juanma Barranquero <lekktu@gmail.com>
16247
16248 * avoid.el (mouse-avoidance-mode): Mark unused arg.
16249 (mouse-avoidance-nudge-mouse): Remove unused binding.
16250
16251 * bs.el (bs-toggle-readonly): Call `toggle-read-only' interactively.
16252
16253 * descr-text.el (describe-char):
16254 * progmodes/python.el (python-describe-symbol):
16255 Don't call `toggle-read-only', set `buffer-read-only'.
16256
16257 * imenu.el (imenu-default-goto-function): Mark unused args.
16258 (imenu-progress-message): Remove obsolete macro; all callers changed.
16259
16260 * subr.el (keymap-canonicalize): Remove unused binding.
16261 (read-passwd): Mark unused arg.
16262
16263 * tutorial.el (tutorial--display-changes): Remove unused binding.
16264 (tutorial--save-tutorial-to): Remove unused variable.
16265
16266 * emacs-lisp/package.el (define-package, package-menu-mark-delete)
16267 (package-menu-mark-install, package-menu-mark-unmark): Mark unused args.
16268 (package-generate-autoloads, package-menu--generate)
16269 (package-menu--find-upgrades): Remove unused bindings.
16270
16271 * emulation/cua-rect.el (cua-restrict-regexp-rectangle)
16272 (cua-restrict-prefix-rectangle): Doc fixes. Remove unused bindings.
16273 (cua--mouse-ignore, cua--delete-rectangle, cua--extract-rectangle)
16274 (cua--indent-rectangle, cua-open-rectangle, cua-close-rectangle)
16275 (cua-blank-rectangle, cua-string-rectangle, cua-replace-in-rectangle)
16276 (cua-incr-rectangle, cua-sequence-rectangle, cua--convert-rectangle-as)
16277 (cua--rectangle-aux-replace, cua--left-fill-rectangle)
16278 (cua-scroll-rectangle-up, cua-scroll-rectangle-down)
16279 (cua-delete-char-rectangle): Mark unused args.
16280 (cua-align-rectangle): Remove unused binding.
16281
16282 * mail/rmail.el (compilation--message->loc)
16283 (epa--find-coding-system-for-mime-charset): Declare.
16284
16285 * net/dbus.el (dbus-register-service): Declare.
16286 (dbus-name-owner-changed-handler): Remove unused binding.
16287
16288 * nxml/nxml-mode.el (nxml-electric-slash, nxml-in-mixed-content-p)
16289 (nxml-compute-indent-from-matching-start-tag): Remove unused variables.
16290 (nxml-scan-backward-within): Mark unused arg.
16291 (nxml-dynamic-markup-word): Remove unused binding.
16292
16293 * mouse.el (mouse-menu-major-mode-map):
16294 * emacs-lisp/authors.el (authors-scan-change-log)
16295 (authors-add-to-author-list):
16296 * emacs-lisp/avl-tree.el (avl-tree--enter-balance):
16297 * emacs-lisp/smie.el (smie-auto-fill):
16298 * mail/sendmail.el (mail-bury):
16299 * mail/unrmail.el (unrmail):
16300 * net/tls.el (open-tls-stream):
16301 * textmodes/picture.el (picture-mouse-set-point):
16302 Remove unused bindings.
16303
16304 2012-04-19 Michael Albinus <michael.albinus@gmx.de>
16305
16306 * net/tramp.el (tramp-action-password): Let-bind
16307 `enable-recursive-minibuffers' to t.
16308
16309 2012-04-18 Sam Steingold <sds@gnu.org>
16310
16311 * progmodes/gud.el (gud-key-prefix): Use :type 'key-sequence
16312 instead of 'string to accommodate values like [f11].
16313 Always use `vconcat' instead of `concat' on it, like in `gud-def'.
16314 * progmodes/gdb-mi.el: Likewise.
16315
16316 2012-04-18 Leo Liu <sdl.web@gmail.com>
16317
16318 * abbrev.el (edit-abbrevs): Move point to the abbrev table of
16319 current buffer.
16320 (prepare-abbrev-list-buffer): Enter edit-abbrevs-mode only if
16321 LOCAL is nil.
16322
16323 2012-04-18 Chong Yidong <cyd@gnu.org>
16324
16325 * simple.el (line-move): Use forward-line if in batch mode
16326 (Bug#11053).
16327
16328 2012-04-18 Christopher Schmidt <christopher@ch.ristopher.com>
16329
16330 * files.el (after-find-file): Do not try to add a final newline if
16331 the buffer is read-only (Bug#11156).
16332
16333 2012-04-17 Richard Stallman <rms@gnu.org>
16334
16335 * mail/rmail.el (rmail-start-mail):
16336 Pass (rmail-mail-return...) for the return-action.
16337 Pass (rmail-yank-current-message...) for the yank-action.
16338 (rmail-yank-current-message): New function.
16339 (rmail-mail): Pass the Rmail buffer, not view buffer, for replybuffer.
16340 (rmail-reply): Likewise.
16341 (rmail-forward): Pass the Rmail buffer, not nil, for replybuffer.
16342
16343 * mail/sendmail.el (mail-bury): Choose the first rmail-mode
16344 buffer, not the last. Reject temp buffers. Use the rmail-mode
16345 buffer, not newbuf.
16346
16347 2012-04-17 Juanma Barranquero <lekktu@gmail.com>
16348
16349 * server.el (server-ensure-safe-dir): Simplify.
16350
16351 2012-04-17 Stefan Monnier <monnier@iro.umontreal.ca>
16352
16353 * emacs-lisp/smie.el: Provide smarter auto-filling.
16354 (smie-auto-fill): New function.
16355 (smie-setup): Use it.
16356
16357 * newcomment.el (comment-choose-indent): Obey comment-inline-offset.
16358
16359 2012-04-17 Philipp Haselwarter <philipp.haselwarter@gmx.de> (tiny change)
16360
16361 * newcomment.el (comment-inline-offset): New custom var (bug#11090).
16362 (comment-indent): Use it.
16363
16364 2012-04-17 Vincent Belaïche <vincentb1@users.sourceforge.net>
16365
16366 * ses.el: The overall change is to add cell renaming, that is
16367 setting fancy names for cell symbols other than name matching
16368 "\\`[A-Z]+[0-9]+\\'" regexp .
16369 (ses-localvars): Add ses--renamed-cell-symb-list.
16370 (ses-create-cell-variable): New defun.
16371 (ses-destroy-cell-variable-range): Respect ses--numrows, ses--numcols.
16372 (ses-relocate-formula): Relocate formulas only for cells the
16373 symbols of which are not renamed, i.e. symbols whose names do not
16374 match regexp "\\`[A-Z]+[0-9]+\\'".
16375 (ses-relocate-all): Relocate values only for cells the symbols of
16376 which are not renamed.
16377 (ses-load): Create cells variables as the (ses-cell ...) are read,
16378 in order to check row col consistency with cell symbol name only
16379 for cells that are not renamed.
16380 (ses-replace-name-in-formula): New defun.
16381 (ses-rename-cell): New defun.
16382
16383 2012-04-17 Peter Oliver <bzr@mavit.org.uk> (tiny change)
16384
16385 * progmodes/perl-mode.el (perl-indent-parens-as-block):
16386 New option (bug#11118).
16387 (perl-calculate-indent): Respect it.
16388
16389 2012-04-17 Glenn Morris <rgm@gnu.org>
16390
16391 * dired-aux.el (dired-mark-read-string): Doc fix.
16392
16393 2012-04-17 Dmitry Antipov <dmantipov@yandex.ru>
16394
16395 * dired-aux.el (dired-mark-read-string): Offer optional completion.
16396 (dired-do-chxxx): Complete chown, chgrp over users, groups. (Bug#7900)
16397
16398 2012-04-17 Glenn Morris <rgm@gnu.org>
16399
16400 * mouse.el (mouse-drag-track):
16401 * speedbar.el (speedbar-frame-mode):
16402 Use auto-hscroll-mode rather than the alias automatic-hscrolling.
16403
16404 2012-04-16 Leo Liu <sdl.web@gmail.com>
16405
16406 * progmodes/python.el: Trivial cleanup.
16407
16408 2012-04-16 Glenn Morris <rgm@gnu.org>
16409
16410 * vc/vc.el (vc-string-prefix-p):
16411 * vc/pcvs-util.el (cvs-string-prefix-p):
16412 * textmodes/tex-mode.el (latex-string-prefix-p, tex-string-prefix-p):
16413 * mpc.el (mpc-string-prefix-p):
16414 Make all of these into obsolete aliases for string-prefix-p.
16415 Update callers.
16416 * vc/pcvs.el, vc/vc-dispatcher.el, vc/vc-dir.el: Update callers.
16417
16418 * textmodes/two-column.el: Move custom options to the start.
16419 (frame-width): Remove compat definition.
16420 (2C-associate-buffer, 2C-dissociate):
16421 Use with-current-buffer rather than save-excursion.
16422 (2C-dissociate): Force a mode-line update.
16423 (2C-autoscroll): Use ignore-errors.
16424
16425 * emacs-lisp/eieio-opt.el (describe-class, describe-generic):
16426 Autoload trivia.
16427
16428 * emacs-lisp/cl-extra.el (*random-state*):
16429 Remove unnecessary declaration.
16430
16431 * calendar/cal-tex.el (cal-tex-end-document): Trivial clarification.
16432
16433 * play/cookie1.el (cookie-snarf):
16434 Give an explicit error if input file cannot be read.
16435
16436 * play/yow.el (yow-file): Use expand-file-name rather than concat.
16437
16438 * progmodes/perl-mode.el (c-macro-expand):
16439 Remove unnecessary autoload (it is in loaddefs.el).
16440
16441 * textmodes/picture.el (picture-desired-column)
16442 (picture-update-desired-column): Convert comments to doc-strings.
16443 (picture-substitute): Remove function.
16444 (picture-mode-map): Initialize in the defvar.
16445
16446 * woman.el: Remove eval-after-load for tar-mode.
16447 * tar-mode.el (tar-mode-map): Add woman binding and menu entry.
16448 (woman-tar-extract-file): Autoload it.
16449
16450 * frame.el (automatic-hscrolling): Make this alias obsolete.
16451
16452 2012-04-12 Agustín Martín Domingo <agustin.martin@hispalinux.es>
16453
16454 * textmodes/ispell.el (ispell-set-spellchecker-params): Post-process
16455 `ispell-dictionary-alist' to use [:alpha:] and utf-8 if possible.
16456 (ispell-dictionary-base-alist): Revert to original XEmacs
16457 friendly version for default. [:alpha:] will be added in
16458 `ispell-set-spellchecker-params' if needed.
16459
16460 2012-04-16 Chong Yidong <cyd@gnu.org>
16461
16462 * image.el (imagemagick--file-regexp): New variable.
16463 (imagemagick-register-types): Use it.
16464 (imagemagick-types-inhibit): Add :set function. Allow new value
16465 of t to inhibit all types.
16466
16467 * emacs-lisp/regexp-opt.el (regexp-opt-charset): Avoid cl macros,
16468 so we can preload it.
16469
16470 * loadup.el (fboundp): Preload regexp-opt, needed by
16471 imagemagick-register-types.
16472
16473 2012-04-15 Chong Yidong <cyd@gnu.org>
16474
16475 * frame.el (scrolling): Remove nearly unused customization group.
16476
16477 * scroll-all.el (scroll-all-mode): Move to windows group.
16478
16479 2012-04-15 Chong Yidong <cyd@gnu.org>
16480
16481 * bindings.el (goto-map): Bind goto-char to M-g c (Bug#11240).
16482
16483 2012-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
16484
16485 Avoid the use of ((lambda ...) ...) in lexical-binding code.
16486 * emacs-lisp/easy-mmode.el (define-minor-mode): Use funcall (bug#11241).
16487
16488 2012-04-15 Glenn Morris <rgm@gnu.org>
16489
16490 * simple.el (process-file-side-effects): Doc fix.
16491
16492 2012-04-15 Glenn Morris <rgm@gnu.org>
16493
16494 * international/mule-cmds.el (set-language-environment): Doc fix.
16495
16496 2012-04-14 Juanma Barranquero <lekktu@gmail.com>
16497
16498 * server.el (server-auth-key, server-generate-key): Doc fixes.
16499 (server-get-auth-key): Doc fix. Use `string-match-p'.
16500 (server-start): Reflow docstring.
16501
16502 2012-04-14 Lars Ingebrigtsen <larsi@gnus.org>
16503
16504 * server.el (server-generate-key): `called-interactively-p'
16505 requires a parameter.
16506
16507 2012-04-14 Michal Nazarewicz <mina86@mina86.com>
16508
16509 * server.el (server-auth-key): New variable.
16510 (server-generate-key, server-get-auth-key): New function.
16511 (server-start): Use the new variable and functions to allow
16512 setting a permanent server key (bug#9423).
16513
16514 2012-04-14 Leo Liu <sdl.web@gmail.com>
16515
16516 * vc/diff-mode.el (diff-file-prev/next): Fix typo.
16517
16518 2012-04-14 Paul Eggert <eggert@cs.ucla.edu>
16519
16520 Spelling fixes.
16521 * hexl.el (hexl-rulerize): Rename from hexl-rulerise, since
16522 Emacs uses American spelling.
16523
16524 2012-04-14 Juanma Barranquero <lekktu@gmail.com>
16525
16526 * emacs-lock.el (emacs-lock-locked-buffer-functions): New hook.
16527 (emacs-lock--exit-locked-buffer): Return the locked buffer. Doc fix.
16528 (emacs-lock--kill-emacs-hook, emacs-lock--kill-emacs-query-functions)
16529 (emacs-lock--kill-buffer-query-functions): Run new hook. (Bug#11017)
16530
16531 2012-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
16532
16533 * progmodes/which-func.el (which-func-modes): Change default.
16534
16535 2012-04-14 Kim F. Storm <storm@cua.dk>
16536
16537 * emulation/cua-base.el (cua-exchange-point-and-mark): Just call
16538 exchange-point-and-mark if cua-enable-cua-keys is nil (Bug#11191).
16539
16540 2012-04-14 Chong Yidong <cyd@gnu.org>
16541
16542 * custom.el (custom-theme-set-variables): Doc fix.
16543
16544 2012-04-14 Glenn Morris <rgm@gnu.org>
16545
16546 * international/mule.el (set-auto-coding-for-load): Doc fix.
16547
16548 2012-04-14 Alan Mackenzie <acm@muc.de>
16549
16550 * progmodes/cc-menus.el (cc-imenu-objc-generic-expression): Make
16551 imenu work again for Objective C Mode. Correct the *-index values,
16552 these having been disturbed by a previous change in 2011-08.
16553
16554 * progmodes/cc-engine.el (c-before-change-check-<>-operators):
16555 Correct two search limits.
16556
16557 2012-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
16558
16559 * startup.el (command-line-1): Inhibit splash from daemon (bug#10996).
16560
16561 2012-04-14 Andreas Schwab <schwab@linux-m68k.org>
16562
16563 * international/characters.el: Fix sorting.
16564
16565 2012-04-14 Eli Zaretskii <eliz@gnu.org>
16566
16567 * international/characters.el: Add more missing Latin case pairs.
16568
16569 2012-04-14 Glenn Morris <rgm@gnu.org>
16570
16571 * files.el (dir-locals-set-class-variables): Doc fix.
16572
16573 2012-04-14 Eli Zaretskii <eliz@gnu.org>
16574
16575 * international/characters.el: Add set-case-syntax-pair call for
16576 LATIN CAPITAL LETTER Y WITH DIAERESIS RET and its lower-case
16577 counterpart. (Bug#11209)
16578
16579 * simple.el (shell-command-on-region): Doc fix. (Bug#11208)
16580
16581 2012-04-14 Glenn Morris <rgm@gnu.org>
16582
16583 * calendar/holidays.el (calendar-check-holidays): Doc fix.
16584
16585 2012-04-14 Eli Zaretskii <eliz@gnu.org>
16586
16587 * textmodes/ispell.el (ispell-dictionary-base-alist):
16588 Add data for Hebrew.
16589
16590 2012-04-14 Chong Yidong <cyd@gnu.org>
16591
16592 * net/rcirc.el (rcirc-cmd-quit):
16593 Revert 2012-03-18 change (Bug#11192).
16594
16595 2012-04-14 Glenn Morris <rgm@gnu.org>
16596
16597 * pcmpl-rpm.el (pcomplete/rpm): Handle -qf.
16598
16599 2012-04-14 Eli Zaretskii <eliz@gnu.org>
16600
16601 * minibuffer.el (completion-in-region-mode-map):
16602 Bind completion-help-at-point to M-? rather than ?. (Bug#11182)
16603
16604 2012-04-13 Vivek Dasmohapatra <vivek@etla.org>
16605
16606 * hexl.el (hexl-insert-char): Make display sizes other than 16 work.
16607
16608 2012-04-13 Masatake YAMATO <yamato@redhat.com>
16609
16610 * minibuffer.el (minibuffer-local-filename-syntax): New variable
16611 to allow `C-M-f' and `C-M-b' to move to the nearest path
16612 separator (bug#9511).
16613
16614 2012-04-13 Lars Ingebrigtsen <larsi@gnus.org>
16615
16616 * avoid.el: Require cl when compiling. And also move the
16617 `provide' to the end.
16618
16619 2012-04-13 Thierry Volpiatto <thierry.volpiatto@gmail.com>
16620
16621 * avoid.el (mouse-avoidance-banish-position): New variable.
16622 (mouse-avoidance-banish-destination): Use it (bug#10165).
16623
16624 2012-04-13 Leo Liu <sdl.web@gmail.com>
16625
16626 * progmodes/which-func.el (which-func-modes): Add objc-mode.
16627
16628 2012-04-13 Ken Brown <kbrown@cornell.edu>
16629
16630 * net/browse-url.el (browse-url-file-url): Remove Cygwin hack;
16631 this is no longer needed now that cygstart understands file:// URLs.
16632 (browse-url-filename-alist): For the same reason, don't modify
16633 file:// URLs on Cygwin.
16634
16635 2012-04-13 Stefan Monnier <monnier@iro.umontreal.ca>
16636
16637 * emulation/cua-base.el (cua--pre-command-handler-1): Don't activate
16638 the region on shift if the binding is already shifted (bug#11221).
16639
16640 2012-04-12 Glenn Morris <rgm@gnu.org>
16641
16642 * mail/mailpost.el: Move to obsolete/.
16643
16644 2012-04-12 Drew Adams <drew.adams@oracle.com>
16645
16646 * imenu.el (imenu--generic-function): Ignore invisible definitions
16647 (bug#10123).
16648
16649 2012-04-12 Vivek Dasmohapatra <vivek@etla.org>
16650
16651 * hexl.el (hexl-bits): New variable.
16652 (hexl-options): Mention the variable in the doc string.
16653 (hexl-rulerise, hexl-line-displen): New functions.
16654 (hexl-mode): Mention the new variable.
16655 (hexl-mode, hexl-current-address, hexl-current-address):
16656 Use the displen.
16657 (hexl-ascii-start-column): New function.
16658 (hexl-address-to-marker, hexl-beginning-of-line, hexl-options)
16659 (hexl-insert-char, hexl-mode-ruler): Use the displen (bug#4941).
16660
16661 2012-04-12 Agustín Martín Domingo <agustin.martin@hispalinux.es>
16662
16663 * textmodes/flyspell.el (flyspell-large-region): For hunspell, use
16664 '("-i" ENCODING), in 2 separate command-line arguments, to specify
16665 the encoding, as expected by hunspell.
16666
16667 2012-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
16668
16669 * battery.el (battery--linux-sysfs-regexp): New const.
16670 (battery-status-function): Use it. Remove yeeloong special case.
16671 (battery-yeeloong-sysfs): Remove.
16672 (battery-echo-area-format): Remove yeeloong special case.
16673
16674 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
16675
16676 * imenu.el (imenu-add-to-menubar): `current-local-map' can be nil.
16677 Reported by Noah Friedman.
16678
16679 * subr.el (read-passwd): Use read-string.
16680
16681 2012-04-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
16682
16683 * vcursor.el (vcursor-move): Increase the priority of the overlay
16684 (bug#9663).
16685
16686 2012-04-11 Deniz Dogan <deniz.a.m.dogan@gmail.com>
16687
16688 * net/rcirc.el (rcirc-kill-channel-buffers): New variable.
16689 (rcirc-kill-buffer-hook): Use it to kill channel buffers (bug#5128).
16690
16691 2012-04-11 William Stevenson <yhvh2000@gmail.com>
16692
16693 * textmodes/artist.el (artist-mode): Convert artist-mode to use
16694 define-minor-mode (bug#10760).
16695
16696 2012-04-11 Wolfgang Jenkner <wjenkner@inode.at> (tiny change)
16697
16698 * progmodes/grep.el (rgrep): Tweak the find command line so
16699 that directories matching `grep-find-ignored-files' won't be
16700 pruned (bug#10351).
16701
16702 2012-04-11 Chong Yidong <cyd@gnu.org>
16703
16704 * startup.el (command-line): Remove support for long-obsolete
16705 variable font-lock-face-attributes.
16706
16707 2012-04-11 Glenn Morris <rgm@gnu.org>
16708
16709 * vc/vc-bzr.el (vc-bzr-status): Avoid condition-case-unless-debug.
16710
16711 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
16712
16713 * window.el (window--state-get-1): Obey window-point-insertion-type.
16714
16715 2012-04-11 Lennart Borgman <lennart.borgman@gmail.com>
16716
16717 * emacs-lisp/lisp.el (narrow-to-defun): `beginning-of-defun' goes
16718 to previous function when point is on the first character of a
16719 function. Take care of that in `narrow-to-defun' (bug#6157).
16720
16721 2012-04-11 Glenn Morris <rgm@gnu.org>
16722
16723 * vc/vc-bzr.el (vc-bzr-status): Handle all errors,
16724 not just file-errors.
16725
16726 * vc/vc-bzr.el (vc-bzr-sha1-program, sha1-program): Remove.
16727 (vc-bzr-sha1): Use internal sha1.
16728
16729 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
16730
16731 * progmodes/flymake.el (flymake-mode): Beware read-only dirs (bug#8954).
16732
16733 2012-04-10 Sébastien Gross <seb@chezwam.org> (tiny change)
16734
16735 * progmodes/hideshow.el (hs-hide-all): Don't infloop on comments
16736 that start in the middle of the line (bug#10496).
16737
16738 2012-04-10 Dan Nicolaescu <dann@gnu.org>
16739
16740 * battery.el (battery-linux-proc-acpi): Only one battery is
16741 discharged at a time, but that seems to confuse battery.el when
16742 computing `rate-type' for the battery not being discharged
16743 (bug#10332).
16744
16745 2012-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
16746
16747 * emacs-lisp/autoload.el (autoload-make-program): Remove, unused.
16748
16749 * international/quail.el: Use dolist and simplify.
16750 (quail-define-package, quail-update-keyboard-layout)
16751 (quail-define-rules): Use dolist.
16752 (quail-insert-kbd-layout, quail-get-translation): CSE.
16753
16754 * tmm.el: Use dolist, remove left over hook.
16755 (tmm-prompt, tmm-define-keys, tmm-shortcut, tmm-get-keybind):
16756 Use dolist.
16757 (calendar-load-hook): Don't mess with it.
16758
16759 * vc/vc-annotate.el (vc-annotate-show-diff-revision-at-line-internal):
16760 Use derived-mode-p. Run the diff asynchronously.
16761
16762 2012-04-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
16763
16764 * obsolete/mouse-sel.el: Add an Obsolete-since header.
16765
16766 2012-04-10 Juanma Barranquero <lekktu@gmail.com>
16767
16768 * misc.el: Display absolute path of loaded DLLs (bug#10424).
16769 (list-dynamic-libraries--loaded): New function.
16770 (list-dynamic-libraries--refresh): Use it.
16771
16772 2012-04-10 Nathan Weizenbaum <nweiz@google.com>
16773
16774 * progmodes/python.el (python-fill-paragraph):
16775 Make python-fill-region in a multiline string work when font-lock is
16776 disabled (bug#7018).
16777
16778 2012-04-10 Laimonas Vėbra <laimonas.vebra@gmail.com> (tiny change)
16779
16780 * language/european.el (cp775): Add oem/legacy (en)coding on
16781 DOS/MS Windows for the Baltic languages. There are still plenty
16782 of texts written in this encoding/codepage (bug#6519).
16783
16784 2012-04-10 Glenn Morris <rgm@gnu.org>
16785
16786 * cus-start.el (eol-mnemonic-unix, eol-mnemonic-dos, eol-mnemonic-mac):
16787 Add :standard values, reducing "rogue" customs in emacs -Q a bit more.
16788
16789 2012-04-10 Florian Adamsky <florian@adamsky.it> (tiny change)
16790
16791 * recentf.el (recentf-dialog-mode-map): Add two keybindings for
16792 next-line "n" and previous-line "p" in order to make recentf more
16793 consistent with ibuffer, dired or org-mode (bug#9387).
16794
16795 2012-04-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
16796
16797 * image.el (put-image): Return the overlay created instead of the
16798 optional input string (bug#7834). Note that this may break code
16799 that is (for some reason or other) depending on `put-image'
16800 returning the string.
16801
16802 * mouse-sel.el (mouse-sel-mode): Mark as obsolete (bug#6174).
16803
16804 * simple.el (zap-to-char): Allow zapping using input methods
16805 (bug#1580).
16806
16807 * textmodes/fill.el (fill-region): Leave point and mark where they
16808 were before filling (bug#5399).
16809
16810 2012-04-09 Glenn Morris <rgm@gnu.org>
16811
16812 * version.el (emacs-bzr-get-version):
16813 Handle lightweight checkouts of local branches.
16814
16815 2012-04-09 Andreas Schwab <schwab@linux-m68k.org>
16816
16817 * international/characters.el: Recover lost case pairs. (Bug#11209)
16818
16819 2012-04-09 Chong Yidong <cyd@gnu.org>
16820
16821 * custom.el (custom-variable-p): Return nil for non-symbol
16822 arguments instead of signaling an error.
16823 (user-variable-p): Obsolete alias for custom-variable-p.
16824
16825 * apropos.el (apropos-variable):
16826 * files-x.el (read-file-local-variable):
16827 * simple.el (set-variable):
16828 * woman.el (woman-mini-help):
16829 * emacs-lisp/byte-opt.el (side-effect-free-fns): Callers changed.
16830
16831 2012-04-09 Glenn Morris <rgm@gnu.org>
16832
16833 * startup.el (normal-top-level): Don't look for leim-list.el
16834 in places where it will not be found. (Bug#910)
16835
16836 * international/mule-cmds.el (set-default-coding-systems):
16837 * files.el (normal-mode):
16838 Remove guarded calls to ucs-set-table-for-input. (Bug#9821)
16839 This function was removed with ucs-tables.el in 2008.
16840
16841 2012-04-08 Eli Zaretskii <eliz@gnu.org>
16842
16843 * textmodes/ispell.el (ispell-check-version): For hunspell, set
16844 ispell-encoding8-command to "-i", without a trailing space.
16845 (ispell-start-process): For hunspell, use '("-i" ENCODING), in 2
16846 separate command-line arguments, to specify the encoding, since
16847 that's how hunspell expects it.
16848
16849 2012-04-08 Glenn Morris <rgm@gnu.org>
16850
16851 * loadup.el: Load bindings before cus-start.
16852 This reduces somewhat the number of "rogue" settings in emacs -Q.
16853
16854 2012-04-07 Glenn Morris <rgm@gnu.org>
16855
16856 * version.el (emacs-bzr-get-version): New function.
16857 (emacs-bzr-version): New variable.
16858 * loadup.el (emacs-bzr-version): Set it. (Bug#8054)
16859 * mail/emacsbug.el (report-emacs-bug): Include bzr version.
16860
16861 2012-04-07 Eli Zaretskii <eliz@gnu.org>
16862
16863 * international/uni-bidi.el, international/uni-category.el:
16864 * international/uni-combining.el, international/uni-decimal.el:
16865 * international/uni-decomposition.el, international/uni-digit.el:
16866 * international/uni-lowercase.el, international/uni-mirrored.el:
16867 * international/uni-name.el, international/uni-numeric.el:
16868 * international/uni-titlecase.el, international/uni-uppercase.el:
16869 Update for Unicode 6.1.
16870
16871 2012-04-07 Eli Zaretskii <eliz@gnu.org>
16872
16873 * term/w32-win.el (dynamic-library-alist): Add libxml2 DLLs.
16874
16875 2012-04-05 Lars Magne Ingebrigtsen <larsi@gnus.org>
16876
16877 * window.el (shrink-window): Mention the `window-min-height'
16878 variable in the doc string.
16879
16880 2012-04-05 Bastien Guerry <bzg@altern.org>
16881
16882 * color.el (color-lighten-name): Fix typo.
16883
16884 2012-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
16885
16886 * server.el (server--on-display-p): New function.
16887 (server--on-display-p): Use it.
16888
16889 2012-04-04 Gábor Vida <vidagabor@gmail.com> (tiny change)
16890
16891 * ido.el (ido-wide-find-dirs-or-files): Use file-name-absolute-p
16892 (bug#11145).
16893
16894 2012-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
16895
16896 * comint.el (comint--common-quoted-suffix): Check string boundary
16897 before comparing (bug#11158).
16898 * pcomplete.el (pcomplete--common-quoted-suffix): Idem.
16899
16900 2012-04-04 Chong Yidong <cyd@gnu.org>
16901
16902 * minibuffer.el (completion-extra-properties): Doc fix.
16903
16904 * subr.el (delayed-warnings-hook): Doc fix.
16905
16906 2012-04-04 Daiki Ueno <ueno@unixuser.org>
16907
16908 * epa.el (epa--select-keys): Bind C-c C-c to finish the key
16909 selection (Bug#11159).
16910 (epa-insert-keys): Inform that the default public key will be
16911 exported if no key is selected.
16912
16913 2012-04-04 Richard Stallman <rms@gnu.org>
16914
16915 * mail/emacsbug.el (report-emacs-bug): Bind inhibit-read-only.
16916
16917 2012-04-03 Chong Yidong <cyd@gnu.org>
16918
16919 * mail/sendmail.el (mail-mode-map): Bind C-c C-i to
16920 mail-insert-file, not its obsolete alias mail-attach-file.
16921
16922 2012-04-03 Michael Albinus <michael.albinus@gmx.de>
16923
16924 * notifications.el (notifications-notify): Fix docstring.
16925
16926 2012-04-02 Glenn Morris <rgm@gnu.org>
16927
16928 * emacs-lisp/authors.el (authors-aliases): Another addition.
16929
16930 2012-04-02 Michael Albinus <michael.albinus@gmx.de>
16931
16932 * net/tramp-gvfs.el (tramp-gvfs-send-command): Apply
16933 `tramp-compat-call-process' instead of `tramp-local-call-process'.
16934 Reported by Magnus Henoch <magnus.henoch@gmail.com>.
16935
16936 2012-04-01 Chong Yidong <cyd@gnu.org>
16937
16938 * files.el (file-in-directory-p): Rename from file-subdir-of-p.
16939 Handle root directory properly.
16940 (copy-directory): Caller changed.
16941
16942 * dired-aux.el (dired-copy-file-recursive, dired-create-files):
16943 * net/tramp.el (tramp-file-name-for-operation): Callers changed.
16944
16945 2012-03-31 Glenn Morris <rgm@gnu.org>
16946
16947 * term/xterm.el (xterm-extra-capabilities): Doc fix.
16948
16949 * language/indian.el ("Devanagari"): Fix typo. (Bug#11103)
16950
16951 * calendar/calendar.el (calendar-window-list)
16952 (calendar-hide-window): Restore. (Bug#11140)
16953 (calendar-exit): Use calendar-window-list, calendar-hide-window again.
16954
16955 * emacs-lisp/edebug.el (edebug-unwrap-results): Doc fix.
16956
16957 2012-03-30 Thierry Volpiatto <thierry.volpiatto@gmail.com>
16958
16959 * dired-aux.el (dired-copy-file-recursive, dired-create-files):
16960 Check if file is a symlink (Bug#10489).
16961
16962 * files.el (copy-directory): Likewise.
16963
16964 2012-03-30 Chong Yidong <cyd@gnu.org>
16965
16966 * image.el (imagemagick-types-inhibit)
16967 (imagemagick-register-types): Doc fix.
16968
16969 2012-03-30 Agustín Martín Domingo <agustin.martin@hispalinux.es>
16970
16971 * textmodes/ispell.el (ispell-get-extended-character-mode):
16972 Disable extended-char-mode for hunspell. hunspell does not support it
16973 and treats ~word as ordinary words in pipe mode.
16974
16975 2012-03-30 Glenn Morris <rgm@gnu.org>
16976
16977 * tutorial.el (help-with-tutorial): Ensure local variables don't
16978 happen to make the buffer read-only. (Bug#11127)
16979
16980 2012-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
16981
16982 * progmodes/perl-mode.el (perl-indent-line): Use `noindent' in strings.
16983 (perl-calculate-indent): Return `noindent' in strings.
16984
16985 2012-03-28 Sam Steingold <sds@gnu.org>
16986
16987 * calendar/calendar.el (calendar-exit): Use `quit-windows-on'
16988 instead of the broken adhockery which does not prevent calendar
16989 buffers from being displayed at random after exit.
16990 (calendar-window-list, calendar-hide-window): Remove the broken
16991 adhockery.
16992
16993 2012-03-28 Glenn Morris <rgm@gnu.org>
16994
16995 * replace.el (query-replace-map): Doc fix.
16996
16997 2012-03-28 Andreas Schwab <schwab@linux-m68k.org>
16998
16999 * vc/vc-git.el (vc-git-state): Don't try to match all of the diff
17000 contents. (Bug#11109)
17001
17002 2012-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
17003
17004 * emacs-lisp/avl-tree.el (avl-tree--enter-balance): Fix paren typo
17005 (bug#11077).
17006 (avl-tree--check, avl-tree--check-node): New funs.
17007
17008 2012-03-27 Martin Rudalics <rudalics@gmx.at>
17009
17010 * window.el (switch-to-visible-buffer): New option.
17011 (switch-to-prev-buffer, switch-to-next-buffer):
17012 Observe switch-to-visible-buffer. Make sure that checking for a window
17013 showing a buffer already is done on the same frame.
17014
17015 2012-03-27 Glenn Morris <rgm@gnu.org>
17016
17017 * startup.el (mail-host-address): Doc fix.
17018
17019 2012-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
17020
17021 * emacs-lisp/bytecomp.el (byte-compile-constants-vector): Allow more
17022 than 197 variables.
17023
17024 2012-03-26 Ami Fischman <ami@fischman.org>
17025
17026 * vc/vc-git.el (vc-git-state): Avoid unnecessarily locking.
17027
17028 2012-03-26 Glenn Morris <rgm@gnu.org>
17029
17030 * files.el (save-buffers-kill-emacs): Doc fix.
17031
17032 * startup.el (normal-top-level, command-line, command-line-1):
17033 Give them doc strings.
17034
17035 2012-03-25 Eli Zaretskii <eliz@gnu.org>
17036
17037 * makefile.w32-in (install): Use $(DIRNAME)_same-dir.tst instead
17038 of same-dir.tst, to avoid stepping on other (parallel) Make job's toes.
17039
17040 2012-03-25 Chong Yidong <cyd@gnu.org>
17041
17042 * custom.el (load-theme): Even if NO-ENABLE arg is t, reenable the
17043 theme if it was previously enabled before (Bug#11031).
17044
17045 * cus-theme.el (custom-theme-write-faces): Retrieve current face
17046 spec with custom-face-get-current-spec if its :shown-value is not
17047 determined yet (Bug#9337).
17048 (customize-create-theme, custom-theme-revert): Doc fixes.
17049
17050 * button.el (button-at): Minor addition to docstring.
17051
17052 2012-03-24 Simon Leinen <simon.leinen@gmail.com>
17053
17054 * vc/vc.el (vc-merge): Fix a prompt.
17055
17056 2012-03-24 Chong Yidong <cyd@gnu.org>
17057
17058 * mwheel.el (mwheel-scroll): Call deactivate-mark at the right
17059 point (Bug#9623).
17060
17061 * button.el (button-at): Minor addition to docstring.
17062
17063 2012-03-23 Stefan Monnier <monnier@iro.umontreal.ca>
17064
17065 * newcomment.el (comment-choose-indent): No space after BOL.
17066
17067 2012-03-22 Sam Steingold <sds@gnu.org>
17068
17069 * window.el (switch-to-prev-buffer): Revert last patch because the
17070 bug turned out to be an advertised feature (Elisp manual 28.14).
17071
17072 2012-03-22 Glenn Morris <rgm@gnu.org>
17073
17074 * vc/vc-bzr.el (vc-bzr-status-switches): New option. (Bug#6724)
17075 (vc-bzr-command): If running "status", pass vc-bzr-status-switches.
17076
17077 2012-03-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
17078
17079 * net/network-stream.el (network-stream-open-starttls): Make error
17080 message under Windows be less misleading.
17081
17082 2012-03-22 Liang Wang <netcasper@gmail.com> (tiny change)
17083
17084 * progmodes/etags.el (etags-list-tags): Only use tags which goto-func
17085 understands (bug#9942).
17086
17087 2012-03-22 Chong Yidong <cyd@gnu.org>
17088
17089 * simple.el (end-of-visible-line): Handle return value of
17090 next-single-property-change properly (Bug#9371).
17091
17092 2012-03-22 Kenichi Handa <handa@m17n.org>
17093
17094 * international/quail.el (quail-insert-kbd-layout): Fix previous
17095 change. To avoid unwanted bidi reordering, use
17096 bidi-string-mark-left-to-right instead of inserting LRO and PDF.
17097
17098 2012-03-21 Dmitry Gutov <dgutov@yandex.ru>
17099
17100 * progmodes/ruby-mode.el: Don't confuse "end:" for "end" (bug#10786).
17101 (ruby-block-end-re, ruby-delimiter, ruby-parse-partial)
17102 (ruby-beginning-of-indent): Be more careful with the difference
17103 between word-boundary and symbol boundary.
17104 (ruby-mode-syntax-table): Make : a symbol constituent.
17105
17106 2012-03-21 Andreas Politz <politza@fh-trier.de>
17107
17108 * outline.el (outline-flag-region): Evaporate overlays (bug#10789).
17109
17110 2012-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
17111
17112 * progmodes/etags.el (tags-completion-at-point-function):
17113 Improve last fix.
17114
17115 * files.el (move-file-to-trash): Files aren't regexps (bug#11055).
17116
17117 2012-03-21 Sam Steingold <sds@gnu.org>
17118
17119 * progmodes/etags.el (tags-completion-at-point-function):
17120 Avoid the error when point is inside the pattern.
17121
17122 2012-03-21 John Yates <john@yates-sheets.org> (tiny change)
17123
17124 * progmodes/hideshow.el (hs-inside-comment-p): Fix hiding of first
17125 line (Bug#10855).
17126
17127 2012-03-21 Drew Adams <drew.adams@oracle.com>
17128
17129 * info.el (Info-menu): Handle string value of FORK arg (Bug#10858).
17130
17131 2012-03-21 Anmol Khirbat <anmol@khirbat.net> (tiny change)
17132
17133 * ido.el (ido-set-current-directory, ido-read-internal)
17134 (ido-choose-completion-string, ido-completion-help): Handle nil
17135 value of ido-completion-buffer (Bug#11008).
17136
17137 2012-03-21 Sam Steingold <sds@gnu.org>
17138
17139 * window.el (switch-to-prev-buffer): Do not switch to a visible
17140 window previous buffer, just like with the frame previous buffers.
17141
17142 2012-03-21 Chong Yidong <cyd@gnu.org>
17143
17144 * faces.el (make-face, make-empty-face, copy-face):
17145 * face-remap.el (face-remap-add-relative, face-remap-set-base):
17146 Doc fixes.
17147
17148 2012-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
17149
17150 * wid-edit.el (widget-complete-field): Remove (bug#11051).
17151 (widget-complete): Remove broken use of it.
17152
17153 2012-03-20 Chong Yidong <cyd@gnu.org>
17154
17155 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
17156 Use string-width and truncate-string-width to handle arbitrary
17157 characters.
17158
17159 2012-03-20 Tassilo Horn <tassilo@member.fsf.org>
17160
17161 * textmodes/artist.el (artist-menu-map): Bind Rectangle menu item
17162 to draw rectangles, not squares. (Regression introduced by revno
17163 2011-03-02T03:48:01Z!cyd@stupidchicken.com)
17164
17165 2012-03-18 Chong Yidong <cyd@gnu.org>
17166
17167 * faces.el (face-spec-reset-face): Don't call display-graphic-p if
17168 it is not yet defined (for temacs).
17169
17170 2012-03-18 Leo Liu <sdl.web@gmail.com>
17171
17172 * net/rcirc.el (rcirc-cmd-quit): Allow quitting all servers with
17173 prefix.
17174
17175 2012-03-17 Eli Zaretskii <eliz@gnu.org>
17176
17177 * textmodes/ispell.el (ispell-skip-tib, ispell-keep-choices-win)
17178 (ispell-choices-win-default-height, ispell-silently-savep)
17179 (ispell-dictionary-alist, ispell-encoding8-command)
17180 (ispell-check-version, ispell-aspell-find-dictionary)
17181 (ispell-valid-dictionary-list, ispell-words-keyword)
17182 (ispell-get-word, ispell-internal-change-dictionary)
17183 (ispell-region, ispell-skip-region-list)
17184 (ispell-begin-skip-region-regexp, ispell-ignore-fcc)
17185 (ispell-process-line, ispell-minor-mode, ispell-minor-check)
17186 (ispell-message-text-end, ispell-message)
17187 (ispell-buffer-local-parsing): Doc fix.
17188
17189 2012-03-13 Jambunathan K <kjambunathan@gmail.com>
17190
17191 * htmlfontify.el: Add support for code block fontification for ODT
17192 export (Bug #9914).
17193 (hfy-optimisations): Define new option
17194 `body-text-only'
17195 (hfy-fontify-buffer): Honor above setting.
17196 (hfy-begin-span, hfy-end-span): New routines factored out form
17197 `hfy-fontify-buffer'.
17198 (hfy-begin-span-handler, hfy-end-span-handler): New variables
17199 that permit insertion of custom tags.
17200 (hfy-fontify-buffer): Use above handlers.
17201 (hfy-face-to-css-default): Same as the earlier `hfy-face-to-css'.
17202 (hfy-face-to-css): Re-defined to be a variable.
17203 (hfy-compile-stylesheet): Modify. Allow stylesheet to be built
17204 over multiple runs. This is made possible by having the caller let
17205 bind a special variable `hfy-user-sheet-assoc'.
17206 (htmlfontify-string): New defun.
17207 (hfy-compile-face-map): Make sure that the last char in the
17208 buffer is correctly fontified.
17209 (hfy-face-resolve-face): Whitespace only change.
17210
17211 2012-03-17 Eli Zaretskii <eliz@gnu.org>
17212
17213 * textmodes/ispell.el (ispell-get-decoded-string): Make the error
17214 message more clear.
17215
17216 2012-03-16 Leo Liu <sdl.web@gmail.com>
17217
17218 * emacs-lisp/copyright.el (copyright-year-ranges): Fix typo.
17219
17220 2012-03-16 Alan Mackenzie <acm@muc.de>
17221
17222 Further optimize the handling of large macros.
17223
17224 * progmodes/cc-engine.el (c-crosses-statement-barrier-p): Use a
17225 limit to a call of `c-literal-limits'.
17226 (c-determine-+ve-limit): New function.
17227 (c-at-macro-vsemi-p): Move `c-in-literal' to the bottom of an `and'.
17228 (c-guess-basic-syntax): In macros, restrict a search limit to 2000.
17229 In CASE 5B, restrict a search limit to 500.
17230 (c-just-after-func-arglist-p): Obviouly wrong `or' -> `and'.
17231
17232 * progmodes/cc-mode.el (c-neutralize-syntax-in-and-mark-CPP):
17233 Restrict macro bounds to +-500 from after-change's BEG END.
17234
17235 2012-03-16 Leo Liu <sdl.web@gmail.com>
17236
17237 * font-lock.el (lisp-font-lock-keywords-2): Add letrec.
17238
17239 2012-03-16 Aaron S. Hawley <Aaron.S.Hawley@gmail.com>
17240
17241 * tar-mode.el (tar-mode): Fix saving by conditionally undoing
17242 `special-mode' setting of `buffer-read-only'. (Bug#11010)
17243
17244 2012-03-16 Glenn Morris <rgm@gnu.org>
17245
17246 * view.el (view-buffer, view-buffer-other-window)
17247 (view-buffer-other-frame): Doc fixes re special mode-class.
17248
17249 * subr.el (eval-after-load): If named feature is provided not from
17250 a file, run after-load forms. (Bug#10946)
17251
17252 * calendar/calendar.el (calendar-insert-at-column):
17253 Handle non-unit-width characters a bit better. (Bug#10978)
17254
17255 2012-03-15 Chong Yidong <cyd@gnu.org>
17256
17257 * emacs-lisp/ring.el (ring-extend): New function.
17258 (ring-insert+extend): Extend the ring correctly (Bug#11019).
17259
17260 * comint.el (comint-read-input-ring)
17261 (comint-add-to-input-history): Grow comint-input-ring lazily.
17262
17263 2012-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
17264
17265 * progmodes/perl-mode.el (perl-syntax-propertize-special-constructs):
17266 Fix up parsing of multiline twoarg non-paired elements (bug#11014).
17267
17268 * imenu.el: Fix multiple inheritance breakage (bug#9199).
17269 (imenu-add-to-menubar): Don't add a redundant index.
17270 (imenu-update-menubar): Handle a dynamically composed keymap.
17271
17272 2012-03-13 Katsumi Yamaoka <yamaoka@jpl.org>
17273
17274 * mail/sendmail.el (mail-encode-header):
17275 Bind rfc2047-encode-encoded-words to nil.
17276
17277 2012-03-13 Glenn Morris <rgm@gnu.org>
17278
17279 * calendar/calendar.el (calendar-string-spread):
17280 Handle non-unit-width characters a bit better. (Bug#10978)
17281
17282 2012-03-13 Leo Liu <sdl.web@gmail.com>
17283
17284 * vc/vc-hg.el (vc-hg-working-revision): Rework to work with both
17285 directory and file as argument (Bug#10822).
17286
17287 2012-03-13 Kaushik Srenevasan <ksrenevasan@gmail.com> (tiny change)
17288
17289 * progmodes/gdb-mi.el (gdb-invalidate-disassembly):
17290 For dynamically generated code, follow $PC.
17291 (gdb-disassembly-handler-custom): Handle no function name case.
17292
17293 2012-03-13 Tim Landscheidt <tim@tim-landscheidt.de> (tiny change)
17294
17295 * calendar/icalendar.el (icalendar-export-file, icalendar-import-file):
17296 * emulation/ws-mode.el (ws-query-replace):
17297 * sort.el (sort-regexp-fields):
17298 Fix missing trailing whitespace in interactive prompts. (Bug#11002)
17299
17300 2012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
17301
17302 * dabbrev.el: Fix cycle completion order (bug#10963).
17303 (dabbrev--last-obarray, dabbrev--last-completion-buffer): Remove.
17304 (dabbrev-completion): Don't use an obarray; provide
17305 a cycle-sort-function.
17306
17307 2012-03-12 Leo Liu <sdl.web@gmail.com>
17308
17309 * simple.el (kill-new): Use equal-including-properties for comparison.
17310 (kill-do-not-save-duplicates): Doc fix.
17311
17312 2012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
17313
17314 * dabbrev.el: Fix cycle completion (bug#10963).
17315 Use lexical binding and wrap to 80 columns.
17316 (dabbrev-completion): Delay computing the list of completions.
17317
17318 2012-03-12 Kenichi Handa <handa@m17n.org>
17319
17320 * international/quail.el (quail-insert-kbd-layout): Surround each
17321 row by LRO and PDF instead of inserting many LRMs. Pad the left
17322 and right of each non-spacing marks. Insert invisible space
17323 between lower and upper characters to prevent composition.
17324
17325 2012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
17326
17327 * minibuffer.el (minibuffer-complete): Don't get confused when the
17328 function is run twice via different commands (bug#10958).
17329 (complete-with-action): Fix docstring.
17330
17331 2012-03-12 Chong Yidong <cyd@gnu.org>
17332
17333 * nxml/nxml-mode.el (nxml-mode-map): Do not bind C-RET (Bug#6776).
17334 (nxml-completion-at-point-function): New function.
17335 (nxml-mode): Use it.
17336 (nxml-bind-meta-tab-to-complete-flag): Default to t.
17337
17338 * emacs-lisp/package.el (package-unpack, package-unpack-single):
17339 Load generated autoloads file before byte compiling (Bug#10970).
17340 (package--make-autoloads-and-compile): New helper fun.
17341
17342 2012-03-12 Christopher Schmidt <christopher@ch.ristopher.com>
17343
17344 * ibuffer.el (ibuffer-redisplay): Remove another gratuitous error.
17345
17346 2012-03-11 Michael Albinus <michael.albinus@gmx.de>
17347
17348 * autorevert.el (auto-revert-handler): Ensure, that
17349 file-readable-p is applied only for local files or in
17350 auto-revert-tail-mode.
17351
17352 2012-03-11 Andreas Schwab <schwab@linux-m68k.org>
17353
17354 * server.el (server-eval-at): Handle non-tcp connections.
17355 Decode result string.
17356
17357 * server.el (server-msg-size): New constant.
17358 (server-reply-print): New function.
17359 (server-eval-and-print): Use it.
17360 (server-eval-at): Use server-quote-arg and server-unquote-arg.
17361 Handle -print-nonl.
17362
17363 2012-03-11 Christopher Schmidt <christopher@ch.ristopher.com>
17364
17365 * ibuffer.el (ibuffer-redisplay): Remove gratuitous error
17366 (Bug#10987).
17367
17368 2012-03-11 Chong Yidong <cyd@gnu.org>
17369
17370 * simple.el (goto-line): Doc fix (Bug#9938).
17371
17372 * subr.el (save-window-excursion): Doc fix (Bug#9979).
17373
17374 * dabbrev.el (dabbrev--find-expansion): Update progress reporter
17375 when finished (Bug#10963).
17376
17377 2012-03-11 Martin Rudalics <rudalics@gmx.at>
17378
17379 * window.el (split-window-below): Fix bug in case where
17380 split-window-keep-point is nil (Bug#10971).
17381
17382 2012-03-11 Juri Linkov <juri@jurta.org>
17383
17384 * replace.el (replace-highlight): Set isearch-word to nil
17385 unconditionally. (Bug#10887)
17386
17387 2012-03-10 Eli Zaretskii <eliz@gnu.org>
17388
17389 * net/mairix.el (mairix-replace-invalid-chars): Rename from
17390 mairix-replace-illegal-chars; all callers changed. Don't remove
17391 ^, ~, and = characters: they are meaningful in mairix search specs.
17392 (mairix-widget-create-query): Add usage information about mairix
17393 search forms: negating words, searching for substrings, etc.
17394
17395 2012-03-10 Jae-hyeon Park <jae-hyeon.park@desy.de> (tiny change)
17396
17397 * international/fontset.el (font-encoding-alist): Add an entry for
17398 ksx1001 (Bug#5667).
17399
17400 2012-03-10 Richard Stallman <rms@gnu.org>
17401
17402 * mail/sendmail.el (mail-encode-header):
17403 Set rfc2047-encode-encoded-words.
17404
17405 * mail/mail-utils.el (mail-quote-printable): Quote multibyte chars.
17406
17407 * mail/rmail.el (rmail-buffers-swapped-p): Don't assume dead
17408 view buffer means not swapped.
17409 (rmail-view-buffer-kill-buffer-hook): Give buf name in error msg.
17410 (rmail-write-region-annotate): Error if real text has disappeared.
17411
17412 * epa-mail.el (epa-mail-encrypt): Bind inhibit-read-only.
17413
17414 2012-03-10 Chong Yidong <cyd@gnu.org>
17415
17416 * emulation/cua-rect.el (cua--init-rectangles):
17417 * emulation/cua-base.el (cua--init-keymaps):
17418 Add delete-forward-char to remappings (Bug#9666).
17419
17420 2012-03-10 Martin Rudalics <rudalics@gmx.at>
17421
17422 * speedbar.el (speedbar-unhighlight-one-tag-line):
17423 Avoid unhighlighting due to frame switching (Bug#10275).
17424
17425 2012-03-10 Chong Yidong <cyd@gnu.org>
17426
17427 * minibuffer.el (completion-in-region, completion-help-at-point):
17428 Give the completion field overlay a high priority (Bug#6830).
17429
17430 * dired.el (dired-goto-file): Recognize absolute file name
17431 listings (Bug#7126).
17432 (dired-goto-file-1): New helper function.
17433 (dired-toggle-read-only): Inhibit warnings.
17434
17435 2012-03-09 Michael Albinus <michael.albinus@gmx.de>
17436
17437 * net/dbus.el (dbus-property-handler): Return empty array if
17438 there are no properties.
17439
17440 2012-03-09 Leo Liu <sdl.web@gmail.com>
17441
17442 * savehist.el (savehist-printable): Stricter check for string
17443 value (Bug#10937).
17444
17445 2012-03-09 Eli Zaretskii <eliz@gnu.org>
17446
17447 * mail/smtpmail.el (smtpmail-send-it):
17448 Bind coding-system-for-write to *-unix, so that FCC files are kept in
17449 valid mbox format.
17450
17451 2012-03-09 Glenn Morris <rgm@gnu.org>
17452
17453 * files.el (dir-locals-find-file):
17454 Don't check result is regular, readable.
17455 (dir-locals-read-from-file): Demote errors.
17456
17457 2012-03-08 Eli Zaretskii <eliz@gnu.org>
17458
17459 * international/quail.el (quail-insert-kbd-layout):
17460 Insert invisible LRM characters before each character in a keyboard
17461 layout cell, to prevent their reordering by bidi display engine.
17462 For details, see the discussion in
17463 http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00085.html.
17464
17465 2012-03-08 Alan Mackenzie <acm@muc.de>
17466
17467 * progmodes/cc-cmds.el (c-mark-function): Make it leave a mark at
17468 the starting position; make it extend the marked region when
17469 invoked repeatedly - all under appropriate circumstances.
17470 Fixes bugs #5525, #10906.
17471
17472 2012-03-08 Glenn Morris <rgm@gnu.org>
17473
17474 * files.el (locate-dominating-file, dir-locals-find-file):
17475 Undo 2012-03-06 change.
17476
17477 2012-03-07 Eli Zaretskii <eliz@gnu.org>
17478
17479 * international/quail.el (quail-help):
17480 Force bidi-paragraph-direction be left-to-right. See discussion in
17481 http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00062.html
17482 for the reason.
17483
17484 2012-03-07 Michael Albinus <michael.albinus@gmx.de>
17485
17486 Avoid superfluous registering of signals. (Bug#10807)
17487
17488 * notifications.el (notifications-on-action-object)
17489 (notifications-on-close-object): New defvars.
17490 (notifications-on-action-signal, notifications-on-closed-signal):
17491 Unregister the signal if not needed any longer.
17492 (notifications-notify): Register `notifications-action-signal' or
17493 `notifications-closed-signal', if :on-action or :on-close has been
17494 passed as argument.
17495
17496 2012-03-07 Chong Yidong <cyd@gnu.org>
17497
17498 * cus-start.el: Avoid x-select-enable-clipboard-manager warning on
17499 non-X platforms.
17500
17501 2012-03-06 Glenn Morris <rgm@gnu.org>
17502
17503 * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
17504 (x-disown-selection-internal, x-get-selection-internal):
17505 Doc fix (add arglist signatures). (Bug#10783)
17506
17507 2012-03-06 Kaushik Srenevasan <ksrenevasan@gmail.com> (tiny change)
17508
17509 * progmodes/gdb-mi.el (gdb-breakpoints-list-handler-custom):
17510 Handle breakpoints with no "type".
17511
17512 2012-03-06 Glenn Morris <rgm@gnu.org>
17513
17514 * files.el (locate-dominating-file): Add optional predicate argument.
17515 (dir-locals-find-file): Make use of above change.
17516
17517 2012-03-06 Thien-Thi Nguyen <ttn@gnuvola.org>
17518
17519 * info.el (Info-insert-dir): Also try "dir.gz".
17520
17521 2012-03-06 Glenn Morris <rgm@gnu.org>
17522
17523 * files.el (dir-locals-find-file):
17524 Ignore non-readable or non-regular files. (Bug#10928)
17525
17526 * files.el (locate-dominating-file): Doc fix.
17527
17528 2012-03-06 Adam Spiers <emacs@adamspiers.org> (tiny change)
17529
17530 * calendar/calendar.el (calendar-set-mode-line):
17531 `getenv' returns a string. (Bug#10951)
17532
17533 2012-03-05 Leo Liu <sdl.web@gmail.com>
17534
17535 * simple.el (backward-delete-char-untabify): Constrain point to
17536 field (Bug#10939).
17537
17538 * eshell/em-cmpl.el (eshell-cmpl-initialize): Fix shift-tab key.
17539
17540 2012-03-05 Chong Yidong <cyd@gnu.org>
17541
17542 * simple.el (count-words): If called from Lisp, return the word
17543 count, for symmetry with `count-lines'. Arglist changed.
17544 (count-words--message): Args changed. Consolidate counting code
17545 from count-words and count-words-region.
17546 (count-words-region): Caller changed.
17547 (count-lines-region): Make it an obsolete alias.
17548
17549 2012-03-04 Tassilo Horn <tassilo@member.fsf.org>
17550
17551 * saveplace.el (save-place-to-alist)
17552 (save-place-ignore-files-regexp): Allow value nil to disable this
17553 feature.
17554
17555 2012-03-04 Chong Yidong <cyd@gnu.org>
17556
17557 * faces.el (face-spec-reset-face): For the default face, reset the
17558 attributes to default values (Bug#10748).
17559
17560 2012-03-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
17561
17562 * mail/emacsbug.el (report-emacs-bug-hook): Fix up thinko in
17563 previous patch: Check `message-send-mail-function', and not the
17564 default function (bug#10897).
17565
17566 2012-03-04 Michael Albinus <michael.albinus@gmx.de>
17567
17568 * notifications.el (notifications-on-action-signal)
17569 (notifications-on-closed-signal): Check for unique service name of
17570 incoming event. Fix error in removing entry.
17571 (top): Register for signals with wildcard service name.
17572 (notifications-notify): Use daemon unique service name for map entries.
17573
17574 2012-03-04 Chong Yidong <cyd@gnu.org>
17575
17576 * cus-start.el: Make x-select-enable-clipboard-manager customizable.
17577
17578 2012-03-04 Glenn Morris <rgm@gnu.org>
17579
17580 * abbrev.el (copy-abbrev-table, abbrev-table-p)
17581 (abbrev-minor-mode-table-alist, define-abbrev, abbrev-insert)
17582 (expand-abbrev, define-abbrev-table): Doc fixes.
17583
17584 2012-03-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
17585
17586 * mail/emacsbug.el (report-emacs-bug-hook): Look at the value of
17587 `message-default-send-mail-function' and not `send-mail-function'
17588 when doing the prompting for `sendmail-query-once' before sending
17589 in Message buffers (bug#10897).
17590
17591 * net/tls.el (open-tls-stream): Don't set the dont-query-on-exit flag.
17592 This is inconsistent with all the other stream functions, which leave
17593 the setting up to the higher levels (if so wanted) (bug#10931).
17594
17595 2012-03-02 Alan Mackenzie <acm@muc.de>
17596
17597 Depessimize the handling of very large macros.
17598
17599 * progmodes/cc-engine.el (c-macro-cache, c-macro-cache-start-pos):
17600 (c-macro-cache-syntactic): New variables to implement a one
17601 element macro cache.
17602 (c-invalidate-macro-cache): New function.
17603 (c-beginning-of-macro, c-end-of-macro, c-syntactic-end-of-macro):
17604 Adapt to use the new cache.
17605 (c-state-safe-place): Use better the cache of safe positions.
17606 (c-state-semi-nonlit-pos-cache)
17607 (c-state-semi-nonlit-pos-cache-limit):
17608 New variables for...
17609 (c-state-semi-safe-place): New function. Here, in a macro is "safe".
17610 (c-invalidate-state-cache-1): New stuff for c-state-semi-safe-place.
17611 (c-in-literal, c-literal-limits, c-determine-limit-get-base):
17612 Use c-state-semi-safe-place.
17613
17614 * progmodes/cc-langs.el (c-get-state-before-change-functions):
17615 Add c-invalidate-macro-cache to the C, C++, Obj entries.
17616
17617 2012-03-02 Michael Albinus <michael.albinus@gmx.de>
17618
17619 * jka-compr.el (jka-compr-call-process):
17620 Apply `file-accessible-directory-p' only when the default directory is
17621 not remote.
17622
17623 2012-03-01 Michael Albinus <michael.albinus@gmx.de>
17624
17625 * files.el (file-equal-p): Fix docstring. Avoid unnecessary
17626 access of FILE2, if FILE1 does not exist.
17627
17628 * net/tramp-sh.el (tramp-remote-process-environment): Add "PAGER=\"\"".
17629 Reported by Robert Lupton the Good <rhl@astro.princeton.edu>.
17630
17631 * vc/vc-git.el (vc-git--call): Enable `inhibit-null-byte-detection'.
17632 Add "PAGER=" to `process-environment'.
17633
17634 2012-03-01 Michael R. Mauger <mmaug@yahoo.com>
17635
17636 * progmodes/sql.el: Bug fix
17637 (sql-get-login-ext): Save login values in globals.
17638 (sql-get-login): Use new version of `sql-get-login-ext'.
17639 (sql-interactive-mode): Set global `sql-connection' to nil.
17640 (sql-connect): Set global values for connection.
17641 (sql-product-interactive): Save global values as buffer local.
17642
17643 2012-02-29 Leo Liu <sdl.web@gmail.com>
17644
17645 * abbrev.el (define-abbrevs): Reset sys to nil.
17646
17647 2012-02-28 Thierry Volpiatto <thierry.volpiatto@gmail.com>
17648
17649 * files.el (file-equal-p): Rename from `files-equal-p'.
17650 Return nil when one or both files don't exist.
17651 (file-subdir-of-p): Now only top directory must exists,
17652 return nil if it doesn't.
17653 (copy-directory): No need to test with `file-subdir-of-p' after
17654 creating dir.
17655 * net/tramp.el (tramp-file-name-for-operation): Rename `files-equal-p'
17656 to `file-equal-p'.
17657
17658 2012-02-28 Glenn Morris <rgm@gnu.org>
17659
17660 * shell.el (shell-mode):
17661 * progmodes/vhdl-mode.el (wildcard-to-regexp, file-expand-wildcards):
17662 * play/landmark.el (landmark-font-lock-face-O):
17663 * play/handwrite.el (handwrite):
17664 * play/gomoku.el (gomoku-O):
17665 * net/browse-url.el (browse-url-browser-display):
17666 * international/mule.el (define-charset):
17667 * htmlfontify.el (hfy-etags-cmd, hfy-face-attr-for-class):
17668 * filesets.el (filesets-find-file-delay):
17669 * eshell/em-xtra.el (eshell-xtra):
17670 * eshell/em-unix.el (eshell-grep):
17671 * emulation/viper.el (viper-mode):
17672 * emacs-lisp/regexp-opt.el (regexp-opt-group):
17673 * emacs-lisp/easymenu.el (easy-menu-define):
17674 * calendar/timeclock.el (timeclock-use-display-time):
17675 * bs.el (bs-mode):
17676 * bookmark.el (bookmark-save-flag):
17677 Doc fix (standardize possessive apostrophe usage).
17678
17679 2012-02-27 Chong Yidong <cyd@gnu.org>
17680
17681 * emulation/viper-cmd.el (viper-intercept-ESC-key):
17682 Fix key-binding lookup for ESC key (Bug#9146).
17683
17684 * font-lock.el (font-lock-specified-p): Rename from
17685 font-lock-spec-present. Callers changed.
17686
17687 2012-02-27 Daniel Hackney <dan@haxney.org>
17688
17689 * emacs-lisp/package.el (package-compute-transaction):
17690 Handle holding a package version to t in package-load-list.
17691
17692 2012-02-26 Michael Albinus <michael.albinus@gmx.de>
17693
17694 * net/tramp.el (tramp-inodes, tramp-devices): Initialize with 0.
17695 (tramp-get-inode, tramp-get-device): Use cached values.
17696
17697 2012-02-26 Alan Mackenzie <acm@muc.de>
17698
17699 Check there is a font-lock specification before doing initial
17700 fontification.
17701
17702 * font-core.el (font-lock-mode): Move the conditional from
17703 :after-hook to font-lock-initial-fontify.
17704 (font-lock-default-function): Move the check for a specification
17705 to font-lock-spec-present.
17706
17707 * font-lock.el (font-lock-initial-fontify): Call ...
17708 (font-lock-spec-present): New function.
17709
17710 2012-02-26 Jim Blandy <jimb@red-bean.com>
17711
17712 * progmodes/gdb-mi.el (gdb-mi-quote): New function.
17713 (gdb-send): Apply it to the operand of the '-interpreter-exec
17714 console' command, so that we can pass arguments with (say) quotes
17715 in them. Store exact string sent in gdb-debug-log (Bug#10765).
17716
17717 2012-02-26 Chong Yidong <cyd@gnu.org>
17718
17719 * help-fns.el (describe-function-1): Clarify description of
17720 remapping (Bug#10844).
17721
17722 * files.el (files-equal-p): Doc fix.
17723 (file-subdir-of-p): Doc fix. Convert loop macro to plain Lisp,
17724 and quit the loop once a mismatch is found.
17725
17726 2012-02-25 Juanma Barranquero <lekktu@gmail.com>
17727
17728 * bs.el (bs--show-with-configuration): Don't throw an error
17729 if the window cannot be split; otherwise, subsequent calls to
17730 bs-show fail, restoring a stale window config. (Bug#10882)
17731
17732 2012-02-25 Jan Djärv <jan.h.d@swipnet.se>
17733
17734 * term/ns-win.el (global-map): Bind ns-drag-file to
17735 ns-find-file (Bug#5855, Bug#10050).
17736
17737 2012-02-25 Andreas Schwab <schwab@linux-m68k.org>
17738
17739 * calendar/parse-time.el (parse-time-string): Allow extractor to
17740 return nil.
17741
17742 2012-02-25 Michael Albinus <michael.albinus@gmx.de>
17743
17744 * net/tramp.el (tramp-file-name-for-operation):
17745 Add `files-equal-p' and `file-subdir-of-p'.
17746
17747 * net/tramp-sh.el (tramp-sh-handle-copy-directory):
17748 * net/tramp-smb.el (tramp-smb-handle-copy-directory):
17749 Add COPY-CONTENTS argument.
17750
17751 2012-02-25 Chong Yidong <cyd@gnu.org>
17752
17753 Add custom groups for VC backends, for consistency with vc-bzr.
17754
17755 * vc/vc-arch.el (vc-arch):
17756 * vc/vc-cvs.el (vc-cvs):
17757 * vc/vc-git.el (vc-git):
17758 * vc/vc-hg.el (vc-hg):
17759 * vc/vc-mtn.el (vc-mtn):
17760 * vc/vc-rcs.el (vc-rcs):
17761 * vc/vc-sccs.el (vc-sccs):
17762 * vc/vc-svn.el (vc-svn): New customization group (Bug#10871).
17763 All relevant defcustoms reassigned.
17764
17765 2012-02-25 Chong Yidong <cyd@gnu.org>
17766
17767 * newcomment.el (comment-styles): Add autoload (Bug#10868).
17768
17769 * term/x-win.el (x-initialize-window-system): Reduce default for
17770 x-selection-timeout to 5 seconds (Bug#8869).
17771
17772 2012-02-24 Thierry Volpiatto <thierry.volpiatto@gmail.com>
17773
17774 * files.el (files-equal-p, file-subdir-of-p): New functions.
17775 (copy-directory): Error when trying to copy a directory on itself.
17776 Add missing copy-contents arg to tramp handler.
17777 * dired-aux.el (dired-copy-file-recursive): Same.
17778 (dired-create-files): Modify destination when source is equal to
17779 dest when copying files.
17780 Return also when dest is a subdir of source. (Bug#10489)
17781
17782 2012-02-24 Michael Albinus <michael.albinus@gmx.de>
17783
17784 * net/ange-ftp.el (ange-ftp-parse-netrc): Suppress comment lines.
17785 (Bug#10874)
17786
17787 2012-02-23 Alan Mackenzie <acm@muc.de>
17788
17789 * emacs-lisp/easy-mmode.el (define-minor-mode): Add extra
17790 parameter "after-hook:" to allow the expansion to run code after
17791 the execution of the mode hooks.
17792
17793 * font-lock.el (font-lock-initial-fontify): New function extracted
17794 from font-lock-mode-internal.
17795
17796 * font-core.el (font-lock-mode): Call font-lock-initial-fontify in
17797 :after-hook.
17798
17799 2012-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
17800
17801 * minibuffer.el: Make sure cycling is reset upon edit with icomplete.el.
17802 (completion--cache-all-sorted-completions): New function.
17803 (completion-all-sorted-completions): Use it.
17804 (completion--do-completion, minibuffer-force-complete):
17805 Use it to re-instate the flush hook.
17806
17807 * icomplete.el (icomplete-completions): Replace last fix with a better
17808 one (bug#10850).
17809
17810 2012-02-23 Dmitry Gutov <dgutov@yandex.ru>
17811
17812 * emacs-lisp/lisp.el (beginning-of-defun-raw): Don't call end-of-defun
17813 when it might call us back infinitely (bug#10797).
17814
17815 2012-02-23 Glenn Morris <rgm@gnu.org>
17816
17817 * minibuffer.el (completion-category-overrides): Doc fix.
17818
17819 2012-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
17820
17821 * minibuffer.el (completion-table-with-context): Fix inf-loop.
17822 Reported by Aaron S. Hawley <aaron.s.hawley@gmail.com>.
17823
17824 2012-02-23 Glenn Morris <rgm@gnu.org>
17825
17826 * emacs-lisp/authors.el (authors-aliases, authors-fixed-case)
17827 (authors-obsolete-files-regexps, authors-ignored-files)
17828 (authors-ambiguous-files, authors-renamed-files-alist):
17829 Add more entries.
17830
17831 2012-02-23 Juri Linkov <juri@jurta.org>
17832
17833 * isearch.el (isearch-occur): Sync interactive spec with occur's
17834 new feature in `occur-read-primary-args'. Doc fix. (Bug#10705)
17835
17836 * replace.el (occur-menu-map): Add menu item for `occur-edit-mode'.
17837
17838 2012-02-22 Juri Linkov <juri@jurta.org>
17839
17840 * international/mule-cmds.el (read-char-by-name): Use \` and \'.
17841 (ucs-insert): Doc fix. Check for hex digits in the string.
17842 Don't display `nil' in the error message. (Bug#10857)
17843
17844 2012-02-22 Alan Mackenzie <acm@muc.de>
17845
17846 * progmodes/cc-mode.el: Revert change #2012-02-06T22:08:41Z!larsi@gnus.org from 2012-02-06.
17847
17848 2012-02-22 Glenn Morris <rgm@gnu.org>
17849
17850 * ffap.el (ffap-c-path):
17851 * man.el (Man-header-file-path): Handle multiarch. (Bug#10702)
17852
17853 2012-02-22 Chong Yidong <cyd@gnu.org>
17854
17855 * custom.el (load-theme): Doc fix.
17856
17857 2012-02-22 Glenn Morris <rgm@gnu.org>
17858
17859 * dired-x.el (dired-guess-shell-alist-default):
17860 Remove escape sequences from nroff output. (Bug#172)
17861
17862 2012-02-21 Glenn Morris <rgm@gnu.org>
17863
17864 * vc/emerge.el (emerge-defvar-local):
17865 Set `permanent-local' property rather than unused `preserved'.
17866
17867 * textmodes/picture.el (picture-delete-char): New alias.
17868 (picture-mode-map): Use it. (Bug#10860)
17869 (picture-mode): Doc fix.
17870
17871 2012-02-21 Juanma Barranquero <lekktu@gmail.com>
17872
17873 * newcomment.el (uncomment-region-default): Remove unused binding.
17874
17875 2012-02-21 Glenn Morris <rgm@gnu.org>
17876
17877 * textmodes/picture.el (picture-motion, picture-motion-reverse)
17878 (picture-self-insert, picture-tab-chars): Doc fix.
17879 (picture-mode-map): Fix C-a, C-e.
17880
17881 2012-02-20 Glenn Morris <rgm@gnu.org>
17882
17883 * emacs-lisp/authors.el (authors-aliases): Add another entry.
17884
17885 2012-02-20 Leo Liu <sdl.web@gmail.com>
17886
17887 * icomplete.el (icomplete-completions): Check FROM arg before
17888 passing to substring (Bug#10850).
17889
17890 2012-02-19 Chong Yidong <cyd@gnu.org>
17891
17892 * comint.el: Require ansi-color.
17893 (comint-output-filter-functions): Add ansi-color-process-output.
17894
17895 * ansi-color.el: Don't set comint-output-filter-functions; it is
17896 now in the initial value defined in comint.el.
17897 (ansi-color-apply-face-function): New variable.
17898 (ansi-color-apply-on-region): Use it.
17899 (ansi-color-apply-overlay-face): New function.
17900
17901 * shell.el (shell): No need to require ansi-color.
17902 (shell-mode): Use ansi-color-apply-face-function to highlight
17903 color escapes using font-lock-face property (Bug#10835).
17904
17905 2012-02-19 Chong Yidong <cyd@gnu.org>
17906
17907 * vc/ediff-init.el (ediff-strip-mode-line-format): Handle non-list
17908 mode-line formats (Bug#10839).
17909
17910 2012-02-18 Glenn Morris <rgm@gnu.org>
17911
17912 * mail/rmail.el (rmail-dont-reply-to-names): Mark as obsolete.
17913
17914 * mail/undigest.el (unforward-rmail-message): Doc fix.
17915
17916 * saveplace.el (save-place-ignore-files-regexp): Add :version.
17917
17918 2012-02-18 Eli Zaretskii <eliz@gnu.org>
17919
17920 * international/characters.el (script-list): Sync with the latest
17921 Unicode Character Database.
17922
17923 2012-02-18 Andreas Schwab <schwab@linux-m68k.org>
17924
17925 * international/titdic-cnv.el: Remove duplicate coding tag.
17926 * language/cham.el: Likewise.
17927 * language/tai-viet.el: Likewise.
17928
17929 2012-02-18 Glenn Morris <rgm@gnu.org>
17930
17931 * calendar/cal-menu.el (cal-menu-diary-menu, cal-menu-goto-menu):
17932 * calendar/calendar.el (diary-file, diary-bahai-entry-symbol)
17933 (calendar-bahai-all-holidays-flag, calendar-other-dates):
17934 * calendar/diary-lib.el (diary-abbreviated-year-flag):
17935 * calendar/holidays.el (holiday-bahai-holidays)
17936 (calendar-holidays, list-holidays):
17937 Use utf-8 Bahá'í in doc-strings, menus, etc.
17938
17939 2012-02-17 Tassilo Horn <tassilo@member.fsf.org>
17940
17941 * saveplace.el (save-place-ignore-files-regexp): New variable
17942 allowing for excluding files from saving their location of point.
17943 The default value matches the temporary commit message editing
17944 files from Git, SVN, Bazaar, and Mercurial.
17945 (save-place-to-alist): Use it.
17946
17947 2012-02-17 Lawrence Mitchell <wence@gmx.li>
17948 Stefan Monnier <monnier@iro.umontreal.ca>
17949
17950 * newcomment.el (uncomment-region-default): Don't leave extra space
17951 when an arg is provided (bug#8150).
17952
17953 2012-02-17 Teodor Zlatanov <tzz@lifelogs.com>
17954
17955 * net/gnutls.el (gnutls-trustfiles): Fix Cygwin bundle location.
17956
17957 2012-02-17 Glenn Morris <rgm@gnu.org>
17958
17959 * net/socks.el: Require network-stream. (Bug#10599)
17960
17961 2012-02-17 Kenichi Handa <handa@m17n.org>
17962
17963 * international/charprop.el:
17964 * international/uni-name.el:
17965 * international/uni-old-name.el:
17966 * international/uni-comment.el: Regenerate.
17967
17968 2012-02-16 Glenn Morris <rgm@gnu.org>
17969
17970 * calendar/cal-hebrew.el (calendar-hebrew-list-yahrzeits):
17971 Interactively in calendar buffer, give an error if not on a date.
17972
17973 2012-02-15 Glenn Morris <rgm@gnu.org>
17974
17975 * shell.el (shell-delimiter-argument-list):
17976 Revert 2011-02-17 change. (Bug#8027)
17977
17978 2012-02-15 Chong Yidong <cyd@gnu.org>
17979
17980 * minibuffer.el (completion-at-point-functions): Doc fix.
17981
17982 * custom.el (defcustom): Doc fix; note use of defvar.
17983
17984 2012-02-15 Glenn Morris <rgm@gnu.org>
17985
17986 * mail/smtpmail.el (smtpmail-smtp-user, smtpmail-stream-type):
17987 Doc fixes.
17988
17989 2012-02-14 Glenn Morris <rgm@gnu.org>
17990
17991 * mail/smtpmail.el (smtpmail-query-smtp-server): Give it a doc.
17992
17993 2012-02-14 Lars Ingebrigtsen <larsi@gnus.org>
17994
17995 * mail/smtpmail.el (smtpmail-query-smtp-server): Fix typo in the
17996 way the ports list is computed.
17997 (smtpmail-query-smtp-server): Prompt the user for a port number if
17998 we can't connect to any of the standard ports (bug#10810).
17999
18000 2012-02-14 Teodor Zlatanov <tzz@lifelogs.com>
18001
18002 * net/gnutls.el (gnutls-trustfiles): Add Cygwin location.
18003
18004 2012-02-13 Glenn Morris <rgm@gnu.org>
18005
18006 * minibuffer.el (read-file-name): Doc fix. (Bug#10798)
18007
18008 2012-02-13 Teodor Zlatanov <tzz@lifelogs.com>
18009
18010 * net/gnutls.el (gnutls-trustfiles): New variable.
18011 (gnutls-negotiate): Use it.
18012
18013 2012-02-13 Lars Ingebrigtsen <larsi@gnus.org>
18014
18015 * simple.el (mail-user-agent): Mention that `gnus-user-agent' only
18016 does its stuff if Gnus is running.
18017
18018 2012-02-13 Alan Mackenzie <acm@muc.de>
18019
18020 Fix a loop in c-set-fl-decl-start.
18021
18022 * progmodes/cc-engine.el (c-set-fl-decl-start): Add a check that
18023 c-backward-syntactic-ws actually moves backwards.
18024
18025 2012-02-13 Leo Liu <sdl.web@gmail.com>
18026
18027 * net/rcirc.el (rcirc-markup-attributes): Move point to the
18028 beginning so that all \C-o chars are removed.
18029
18030 2012-02-12 Teodor Zlatanov <tzz@lifelogs.com>
18031
18032 * net/gnutls.el (gnutls-algorithm-priority): Add missing :group tag.
18033
18034 2012-02-12 Alan Mackenzie <acm@muc.de>
18035
18036 Fix infinite loop with long macros.
18037 * progmodes/cc-engine.el (c-state-safe-place): Handle macros properly.
18038
18039 2012-02-12 Chong Yidong <cyd@gnu.org>
18040
18041 * window.el (display-buffer): Doc fix (Bug#10785).
18042
18043 2012-02-12 Glenn Morris <rgm@gnu.org>
18044
18045 * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
18046 (x-disown-selection-internal, x-get-selection-internal):
18047 Sync docs with the xselect.c versions.
18048
18049 * allout-widgets.el: Add missing license notice.
18050
18051 2012-02-11 Glenn Morris <rgm@gnu.org>
18052
18053 * select.el (x-get-selection-internal, x-own-selection-internal)
18054 (x-disown-selection-internal):
18055 * x-dnd.el (x-get-selection-internal): Update declarations.
18056
18057 * vc/log-view.el (vc-diff-internal): Remove unneeded declaration.
18058
18059 * window.el (window-sides-slots):
18060 * tool-bar.el (tool-bar-position):
18061 * term/xterm.el (xterm-extra-capabilities):
18062 * ses.el (ses-self-reference-early-detection):
18063 * progmodes/verilog-mode.el (verilog-auto-declare-nettype)
18064 (verilog-auto-wire-type)
18065 (verilog-auto-delete-trailing-whitespace)
18066 (verilog-auto-reset-blocking-in-non, verilog-auto-inst-sort)
18067 (verilog-auto-tieoff-declaration):
18068 * progmodes/sql.el (sql-login-hook, sql-ansi-statement-starters)
18069 (sql-oracle-statement-starters, sql-oracle-scan-on):
18070 * progmodes/prolog.el (prolog-align-comments-flag)
18071 (prolog-indent-mline-comments-flag, prolog-object-end-to-0-flag)
18072 (prolog-left-indent-regexp, prolog-paren-indent-p)
18073 (prolog-paren-indent, prolog-parse-mode, prolog-keywords)
18074 (prolog-types, prolog-mode-specificators)
18075 (prolog-determinism-specificators, prolog-directives)
18076 (prolog-electric-newline-flag, prolog-hungry-delete-key-flag)
18077 (prolog-electric-dot-flag)
18078 (prolog-electric-dot-full-predicate-template)
18079 (prolog-electric-underscore-flag, prolog-electric-tab-flag)
18080 (prolog-electric-if-then-else-flag, prolog-electric-colon-flag)
18081 (prolog-electric-dash-flag, prolog-old-sicstus-keys-flag)
18082 (prolog-program-switches, prolog-prompt-regexp)
18083 (prolog-debug-on-string, prolog-debug-off-string)
18084 (prolog-trace-on-string, prolog-trace-off-string)
18085 (prolog-zip-on-string, prolog-zip-off-string)
18086 (prolog-use-standard-consult-compile-method-flag)
18087 (prolog-use-prolog-tokenizer-flag, prolog-imenu-flag)
18088 (prolog-imenu-max-lines, prolog-info-predicate-index)
18089 (prolog-underscore-wordchar-flag, prolog-use-sicstus-sd)
18090 (prolog-char-quote-workaround):
18091 * progmodes/cc-vars.el (c-defun-tactic):
18092 * net/tramp.el (tramp-encoding-command-interactive)
18093 (tramp-local-end-of-line):
18094 * net/soap-client.el (soap-client):
18095 * net/netrc.el (netrc-file):
18096 * net/gnutls.el (gnutls):
18097 * minibuffer.el (completion-category-overrides)
18098 (completion-cycle-threshold)
18099 (completion-pcm-complete-word-inserts-delimiters):
18100 * man.el (Man-name-local-regexp):
18101 * mail/feedmail.el (feedmail-display-full-frame):
18102 * international/characters.el (glyphless-char-display-control):
18103 * eshell/em-ls.el (eshell-ls-date-format):
18104 * emacs-lisp/cl-indent.el (lisp-lambda-list-keyword-alignment)
18105 (lisp-lambda-list-keyword-parameter-indentation)
18106 (lisp-lambda-list-keyword-parameter-alignment):
18107 * doc-view.el (doc-view-image-width, doc-view-unoconv-program):
18108 * dired-x.el (dired-omit-verbose):
18109 * cus-theme.el (custom-theme-allow-multiple-selections):
18110 * calc/calc.el (calc-highlight-selections-with-faces)
18111 (calc-lu-field-reference, calc-lu-power-reference)
18112 (calc-note-threshold):
18113 * battery.el (battery-mode-line-limit):
18114 * arc-mode.el (archive-7z-extract, archive-7z-expunge)
18115 (archive-7z-update):
18116 * allout.el (allout-prefixed-keybindings)
18117 (allout-unprefixed-keybindings)
18118 (allout-inhibit-auto-fill-on-headline)
18119 (allout-flattened-numbering-abbreviation):
18120 * allout-widgets.el (allout-widgets-auto-activation)
18121 (allout-widgets-icons-dark-subdir)
18122 (allout-widgets-icons-light-subdir, allout-widgets-icon-types)
18123 (allout-widgets-theme-dark-background)
18124 (allout-widgets-theme-light-background)
18125 (allout-widgets-item-image-properties-emacs)
18126 (allout-widgets-item-image-properties-xemacs)
18127 (allout-widgets-run-unit-tests-on-load)
18128 (allout-widgets-time-decoration-activity)
18129 (allout-widgets-hook-error-post-time)
18130 (allout-widgets-track-decoration):
18131 Add missing :version tags to new defcustoms and defgroups.
18132
18133 * progmodes/sql.el (sql-ansi-statement-starters)
18134 (sql-oracle-statement-starters): Add custom type.
18135
18136 * progmodes/prolog.el: Remove leading '*' from defcustom docs.
18137 (prolog-system-version): Give it a type.
18138
18139 2012-02-11 Eli Zaretskii <eliz@gnu.org>
18140
18141 * term/pc-win.el (x-select-text, x-selection-owner-p)
18142 (x-own-selection-internal, x-disown-selection-internal)
18143 (x-get-selection-internal): Sync doc strings and argument lists
18144 with xselect.c, common-win.el and x-win.el. (Bug#10783)
18145
18146 2012-02-11 Leo Liu <sdl.web@gmail.com>
18147
18148 * progmodes/python.el (python-end-of-statement): Fix infinite
18149 loop. (Bug#10788)
18150
18151 2012-02-10 Glenn Morris <rgm@gnu.org>
18152
18153 * international/mule-cmds.el (unify-8859-on-encoding-mode)
18154 (unify-8859-on-decoding-mode): Properly mark as obsolete.
18155
18156 2012-02-10 Lars Ingebrigtsen <larsi@gnus.org>
18157
18158 * mail/emacsbug.el (report-emacs-bug-hook): Query the user first
18159 about SMTP before checking the From header.
18160
18161 * mail/sendmail.el (sendmail-query-user-about-smtp): Refactor out
18162 into own function for reuse by emacsbug.el.
18163
18164 2012-02-10 Leo Liu <sdl.web@gmail.com>
18165
18166 * subr.el (condition-case-unless-debug): Rename from
18167 condition-case-no-debug. All callers changed.
18168 (with-demoted-errors): Fix caller.
18169
18170 * vc/diff-mode.el (diff-auto-refine-mode, diff-hunk):
18171 * nxml/rng-valid.el (rng-do-some-validation):
18172 * emacs-lisp/package.el (package-refresh-contents)
18173 (package-menu-execute):
18174 * desktop.el (desktop-create-buffer):
18175 * font-lock.el (lisp-font-lock-keywords-2): Caller changed.
18176
18177 2012-02-10 Glenn Morris <rgm@gnu.org>
18178
18179 * textmodes/bibtex.el:
18180 Add missing :version tags for new/changed defcustoms.
18181
18182 * files.el (remote-file-name-inhibit-cache): Doc fixes.
18183
18184 2012-02-09 Lars Ingebrigtsen <larsi@rusty>
18185
18186 * mail/smtpmail.el (smtpmail-user-mail-address): New function.
18187 (smtpmail-via-smtp): Use it, or fall back on the From address.
18188 (smtpmail-send-it): Ditto.
18189
18190 2012-02-09 Stefan Monnier <monnier@iro.umontreal.ca>
18191
18192 * emacs-lisp/bytecomp.el (byte-compile-file-form-defvar):
18193 Don't fallback on byte-compile-defvar. Optimize (defvar foo) away.
18194 (byte-compile-tmp-var): New const.
18195 (byte-compile-defvar): Use it to minimize .elc size.
18196 Just use `defvar' rather than simulate it (bug#10761).
18197
18198 2012-02-09 Glenn Morris <rgm@gnu.org>
18199
18200 * files.el (rename-uniquely): Doc fix. (Bug#3806)
18201
18202 * progmodes/cc-guess.el (c-guess-offset-threshold, c-guess-region-max):
18203 Add :version tags.
18204
18205 * progmodes/compile.el (compilation-error-screen-columns)
18206 (compilation-first-column, compilation-filter-start): Doc fixes.
18207
18208 * vc/log-view.el (log-view-toggle-entry-display):
18209 * vc/vc.el (vc-merge, vc-pull): Doc fixes.
18210
18211 * mail/emacsbug.el (report-emacs-bug-can-use-osx-open)
18212 (report-emacs-bug-can-use-xdg-email):
18213 (report-emacs-bug-insert-to-mailer): Doc fixes.
18214 (report-emacs-bug): Message fix.
18215
18216 * net/browse-url.el (browse-url-can-use-xdg-open)
18217 (browse-url-xdg-open): Doc fixes.
18218
18219 * electric.el (electric-indent-mode, electric-pair-mode)
18220 (electric-layout-rules, electric-layout-mode): Doc fixes.
18221 (electric-pair-pairs, electric-pair-skip-self): Add :version tags.
18222
18223 2012-02-08 Martin Rudalics <rudalics@gmx.at>
18224
18225 * server.el (server-unselect-display): Don't inadvertently kill
18226 the current buffer. (Bug#10729)
18227
18228 2012-02-08 Glenn Morris <rgm@gnu.org>
18229
18230 * progmodes/sql.el (sql-port, sql-connection-alist, sql-list-all)
18231 (sql-list-table): Doc fixes.
18232
18233 * image-mode.el (image-transform-minor-mode-map, image-transform-mode):
18234 Comment out (does nothing).
18235
18236 * completion.el (dynamic-completion-mode):
18237 * dirtrack.el (dirtrack-debug-mode):
18238 * electric.el (electric-layout-mode):
18239 * epa-mail.el (epa-mail-mode, epa-global-mail-mode):
18240 * face-remap.el (text-scale-mode, buffer-face-mode):
18241 * iimage.el (iimage-mode):
18242 * image-mode.el (image-transform-mode):
18243 * minibuffer.el (completion-in-region-mode):
18244 * scroll-lock.el (scroll-lock-mode):
18245 * simple.el (next-error-follow-minor-mode):
18246 * tar-mode.el (tar-subfile-mode):
18247 * tooltip.el (tooltip-mode):
18248 * vcursor.el (vcursor-use-vcursor-map):
18249 * wid-browse.el (widget-minor-mode):
18250 * emulation/tpu-edt.el (tpu-edt-mode):
18251 * emulation/tpu-extras.el (tpu-cursor-free-mode):
18252 * international/iso-ascii.el (iso-ascii-mode):
18253 * language/thai-util.el (thai-word-mode):
18254 * mail/supercite.el (sc-minor-mode):
18255 * net/goto-addr.el (goto-address-mode):
18256 * net/rcirc.el (rcirc-multiline-minor-mode, rcirc-track-minor-mode):
18257 * progmodes/cwarn.el (cwarn-mode):
18258 * progmodes/flymake.el (flymake-mode):
18259 * progmodes/glasses.el (glasses-mode):
18260 * progmodes/hideshow.el (hs-minor-mode):
18261 * progmodes/pascal.el (pascal-outline-mode):
18262 * textmodes/enriched.el (enriched-mode):
18263 * vc/smerge-mode.el (smerge-mode):
18264 Doc fixes (minor mode argument).
18265
18266 2012-02-07 Eli Zaretskii <eliz@gnu.org>
18267
18268 * ls-lisp.el (ls-lisp-sanitize): New function.
18269 (ls-lisp-insert-directory): Use it to fix or remove any elements
18270 in file-alist with missing attributes. (Bug#4673)
18271
18272 2012-02-07 Alan Mackenzie <acm@muc.de>
18273
18274 Fix spurious recognition of c-in-knr-argdecl.
18275
18276 * progmodes/cc-engine.el (c-in-knr-argdecl): Check for '=' in a
18277 putative K&R region.
18278
18279 2012-02-07 Alan Mackenzie <acm@muc.de>
18280
18281 * progmodes/cc-engine.el (c-forward-objc-directive):
18282 Prevent looping in "#pragma mark @implementation".
18283
18284 2012-02-07 Michael Albinus <michael.albinus@gmx.de>
18285
18286 * notifications.el (notifications-on-closed-signal): Make `reason'
18287 optional. (Bug#10744)
18288
18289 2012-02-07 Glenn Morris <rgm@gnu.org>
18290
18291 * emacs-lisp/easy-mmode.el (define-minor-mode):
18292 Doc fixes for the macro and the mode it defines.
18293
18294 * image.el (imagemagick-types-inhibit): Doc fix.
18295
18296 * cus-start.el (imagemagick-render-type): Add it.
18297
18298 2012-02-06 Lars Ingebrigtsen <larsi@gnus.org>
18299
18300 * progmodes/cc-mode.el (c-standard-font-lock-fontify-region-function):
18301 Set the default at load time, too, so that `font-lock-fontify-buffer'
18302 can be called without setting up the entire mode first. This fixes
18303 a bug in `mm-inline-text' with C MIME parts.
18304
18305 2012-02-06 Chong Yidong <cyd@gnu.org>
18306
18307 * simple.el (list-processes--refresh): Delete exited processes
18308 (Bug#8094).
18309
18310 * comint.el (comint-next-prompt): next-single-char-property-change
18311 and prev-single-char-property-change never return nil (Bug#8657).
18312
18313 * custom.el (defcustom): Doc fix (Bug#9711).
18314
18315 2012-02-05 Chong Yidong <cyd@gnu.org>
18316
18317 * cus-edit.el (custom-variable-reset-backup): Quote the value
18318 before storing it in the customized-value property (Bug#6712).
18319 (custom-display): Add a customization type tag.
18320 (custom-buffer-create-internal): Improve tooltip message.
18321
18322 * wid-edit.el (widget-field-value-get): New optional arg to
18323 suppress trailing whitespace truncation.
18324 (character): Use it (Bug#2689).
18325
18326 2012-02-05 Andreas Schwab <schwab@linux-m68k.org>
18327
18328 * progmodes/gud.el (gud-pv): Use pv instead of pv1.
18329 * progmodes/gdb-mi.el (gud-pp): Use pp instead of pp1.
18330
18331 2012-02-05 Chong Yidong <cyd@gnu.org>
18332
18333 * cus-edit.el (custom-variable-value-create): For mismatched
18334 types, show the current value (Bug#7600).
18335
18336 * custom.el (defcustom): Doc fix.
18337
18338 2012-02-05 Glenn Morris <rgm@gnu.org>
18339
18340 * font-lock.el (lisp-font-lock-keywords-2): Add with-wrapper-hook.
18341
18342 2012-02-05 Juanma Barranquero <lekktu@gmail.com>
18343
18344 * emacs-lisp/pp.el (pp-to-string): Use `with-temp-buffer'.
18345 (pp-buffer): Use `ignore-errors', `looking-at-p'.
18346 (pp-last-sexp): Use `looking-at-p'.
18347
18348 2012-02-04 Glenn Morris <rgm@gnu.org>
18349
18350 * files.el (revert-buffer):
18351 Doc fix (mention revert-buffer-in-progress-p).
18352
18353 * emacs-lisp/ert-x.el (ert-simulate-command):
18354 Check deferred-action-list (which is obsolete) is bound.
18355
18356 * subr.el (with-wrapper-hook): Doc fixes.
18357
18358 * simple.el (filter-buffer-substring-functions)
18359 (buffer-substring-filters, filter-buffer-substring): Doc fixes.
18360
18361 2012-02-04 Lars Ljung <lars@matholka.se> (tiny change)
18362
18363 * eshell/esh-ext.el (eshell-windows-shell-file): Match "cmdproxy"
18364 anywhere in shell-file-name, not just at the beginning. (Bug#10523)
18365
18366 2012-02-04 Leo Liu <sdl.web@gmail.com>
18367
18368 * emacs-lisp/smie.el: Fix dead link (Bug#10711).
18369
18370 2012-02-04 Glenn Morris <rgm@gnu.org>
18371
18372 * image.el (image-extension-data): Add obsolete alias.
18373
18374 * isearch.el (isearch-update): Doc fix.
18375
18376 * facemenu.el (list-colors-display): Doc fix (minor rephrasing).
18377
18378 * ido.el (ido-find-file): Doc fix (ido-toggle-vc not on any key).
18379
18380 2012-02-03 Glenn Morris <rgm@gnu.org>
18381
18382 * image.el (image-animated-p): Doc fix. Use image-animated-types.
18383 (image-animate-timeout): Doc fix.
18384
18385 * image-mode.el (image-animate-loop, image-toggle-animation): Doc fixes.
18386
18387 2012-02-02 Glenn Morris <rgm@gnu.org>
18388
18389 * server.el (server-auth-dir): Doc fix.
18390 (server-eval-at): Doc fix. Give an explicit error if !server-use-tcp.
18391
18392 * subr.el (run-mode-hooks): Doc fix.
18393
18394 2012-02-02 Juri Linkov <juri@jurta.org>
18395
18396 * image-mode.el (image-toggle-display-image): Remove tautological
18397 `major-mode' from the `derived-mode-p' test.
18398
18399 2012-02-02 Kenichi Handa <handa@m17n.org>
18400
18401 * composite.el (compose-region): Cancel previous change.
18402
18403 2012-02-02 Kenichi Handa <handa@m17n.org>
18404
18405 * composite.el (compose-region, compose-string): Signal error for
18406 a null string component (Bug#6988).
18407
18408 2012-02-01 Chong Yidong <cyd@gnu.org>
18409
18410 * view.el (view-buffer-other-window, view-buffer-other-frame):
18411 Handle special modes like view-buffer (Bug#10650).
18412 (view-buffer): Simplify.
18413
18414 * frame.el (set-frame-font): Tweak meaning of third argument.
18415
18416 * dynamic-setting.el (font-setting-change-default-font):
18417 Use set-frame-font (Bug#9982).
18418
18419 2012-02-01 Glenn Morris <rgm@gnu.org>
18420
18421 * progmodes/compile.el (compilation-internal-error-properties):
18422 Respect compilation-first-column in the "*compilation*" buffer.
18423
18424 * emacs-lisp/easy-mmode.el (define-minor-mode):
18425 Relax :variable's test for a named function.
18426
18427 2012-01-31 Alan Mackenzie <acm@muc.de>
18428
18429 * progmodes/cc-engine.el (c-guess-basic-syntax): CASE 5B.1: Fix an
18430 off by one error.
18431
18432 2012-01-31 Chong Yidong <cyd@gnu.org>
18433
18434 * frame.el (set-frame-font): New arg ALL-FRAMES.
18435
18436 * menu-bar.el (menu-set-font): Use set-frame-font.
18437
18438 * faces.el (face-spec-reset-face): Don't apply unspecified
18439 attribute values to the default face.
18440
18441 2012-01-31 Juanma Barranquero <lekktu@gmail.com>
18442
18443 * progmodes/cwarn.el (cwarn): Remove dead link.
18444 (cwarn-configuration, cwarn-verbose, cwarn-mode-text, cwarn-load-hook):
18445 Remove * from defcustom docstrings.
18446 (turn-on-cwarn-mode): Make obsolete.
18447 (c-at-toplevel-p): Remove compatibility code for Emacs 20.3 and older.
18448 (turn-on-cwarn-mode-if-enabled): Call `cwarn-mode'.
18449
18450 2012-01-31 Glenn Morris <rgm@gnu.org>
18451
18452 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix.
18453 Fix :variable handling of mode a symbol not equal to modefun.
18454 Allow named functions to be used as the cdr of :variable.
18455
18456 2012-01-30 Glenn Morris <rgm@gnu.org>
18457
18458 * emacs-lisp/authors.el (authors-fixed-entries):
18459 Remove reference to deleted file rnewspost.el.
18460
18461 2012-01-29 Juanma Barranquero <lekktu@gmail.com>
18462
18463 * window.el (window-with-parameter): Remove unused variable `windows'.
18464 (window--side-check): Remove unused variable `code'.
18465 (window--resize-siblings): Remove unused variable `first'.
18466 (adjust-window-trailing-edge): Remove unused variable `failed'.
18467 (window-deletable-p, window--delete): Remove unused variable `buffer'.
18468 Use `let', not `let*'.
18469 (balance-windows-2): Remove unused variable `found'.
18470 (window--state-put-2): Remove unused variable `splits'.
18471 (window-state-put): Remove unused variable `selected'.
18472 (same-window-p): Use `string-match-p'.
18473 (display-buffer-assq-regexp): Remove unused variable `value'.
18474 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
18475 Mark argument ALIST as ignored.
18476 (pop-to-buffer): Remove unused variable `old-window'.
18477
18478 2012-01-29 Eli Zaretskii <eliz@gnu.org>
18479
18480 * jka-cmpr-hook.el (jka-compr-compression-info-list): Support .lz
18481 and .lzma compressed files.
18482
18483 2012-01-29 Chong Yidong <cyd@gnu.org>
18484
18485 * frame.el (window-system-default-frame-alist): Doc fix.
18486
18487 * dynamic-setting.el (font-setting-change-default-font): Don't
18488 change the default face if SET-FONT argument is non-nil (Bug#9982).
18489
18490 2012-01-29 Samuel Bronson <naesten@gmail.com>
18491
18492 * custom.el (defcustom): Add doc link to Lisp manual (Bug#10635).
18493
18494 2012-01-29 Syver Enstad <syver.enstad@cisco.com> (tiny change)
18495
18496 * progmodes/gud.el (pdb): Give pdb full paths, to allow setting
18497 breakpoints in files outside current directory (Bug#6098).
18498
18499 2012-01-29 Chong Yidong <cyd@gnu.org>
18500
18501 * progmodes/python.el: Require ansi-color at top-level.
18502
18503 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-abbrev-table):
18504 Define and use in Emacs Lisp mode (Bug#9360).
18505 (lisp-mode-abbrev-table): Add doc.
18506 (lisp-mode-variables): Don't set local-abbrev-table.
18507 (lisp-interaction-mode): Use emacs-lisp-mode-abbrev-table.
18508
18509 2012-01-28 Roland Winkler <winkler@gnu.org>
18510
18511 * textmodes/bibtex.el (bibtex-vec-incr): Fix docstring.
18512
18513 2012-01-28 Roland Winkler <winkler@gnu.org>
18514
18515 * textmodes/bibtex.el (bibtex-entry-alist): New function.
18516 (bibtex-set-dialect): Use it. Either set global values of
18517 dialect-dependent variables or bind these variables buffer-locally
18518 (Bug#10254).
18519 (bibtex-mode): Call bibtex-set-dialect via
18520 hack-local-variables-hook.
18521 (bibtex-dialect): Update docstring.
18522 Add safe-local-variable predicate.
18523 (bibtex-entry-alist, bibtex-field-alist): Initialize via
18524 bibtex-set-dialect.
18525 (bibtex-mode-map): Define menu for each dialect.
18526 (bibtex-entry): Fix docstring.
18527
18528 2012-01-28 Chong Yidong <cyd@gnu.org>
18529
18530 * eshell/esh-arg.el (eshell-quote-argument): New function.
18531
18532 * eshell/esh-ext.el (eshell-invoke-batch-file):
18533 * eshell/em-unix.el (eshell/cat, eshell/du): Use it to quote the
18534 first arg to eshell-parse-command (Bug#10523).
18535
18536 2012-01-28 Drew Adams <drew.adams@oracle.com>
18537
18538 * net/ange-ftp.el (ange-ftp-canonize-filename): Check, that
18539 `default-directory' is non-nil.
18540
18541 2012-01-28 Eli Zaretskii <eliz@gnu.org>
18542
18543 * mail/emacsbug.el (report-emacs-bug): Fill the potentially long
18544 line that displays system-configuration-options. (Bug#9924)
18545
18546 2012-01-28 Drew Adams <drew.adams@oracle.com>
18547
18548 * descr-text.el (describe-char): Show information about POS, in
18549 addition to information about the character at POS. Improve and
18550 update the doc string. Change "code point" to "code point in
18551 charset", to avoid confusion with the character's Unicode code
18552 point shown above that. (Bug#10129)
18553
18554 2012-01-28 Eli Zaretskii <eliz@gnu.org>
18555
18556 * descr-text.el (describe-char): Show the raw character, not only
18557 its display form at POS. Suggested by Kenichi Handa <handa@m17n.org>.
18558 See http://lists.gnu.org/archive/html/emacs-devel/2012-01/msg00760.html
18559 for the reasons.
18560
18561 2012-01-28 Phil Hagelberg <phil@hagelb.org>
18562
18563 * emacs-lisp/package.el (package-install):
18564 Run package-refresh-contents if there is no archive yet (Bug#9798).
18565
18566 2012-01-28 Chong Yidong <cyd@gnu.org>
18567
18568 * emacs-lisp/package.el (package-maybe-load-descriptor):
18569 New function, split from package-maybe-load-descriptor.
18570 (package-maybe-load-descriptor): Use it.
18571 (package-download-transaction): Fully load required packages
18572 inside the loop, so that `require' calls work (Bug#10593).
18573 (package-install): No need to call package-initialize now.
18574
18575 2012-01-28 Chong Yidong <cyd@gnu.org>
18576
18577 * simple.el (deactivate-mark): Doc fix (Bug#8614).
18578
18579 * tooltip.el (tooltip-mode): Doc fix.
18580 (tooltip-use-echo-area): Mark as obsolete (Bug#6595).
18581
18582 * frame.el (set-cursor-color): Doc fix (Bug#352).
18583
18584 * mail/rmail.el (rmail-start-mail): Add send-action again (Bug#10625).
18585 (rmail-mail-return): Switch to NEWBUF only if it is non-nil.
18586
18587 * cus-edit.el (custom-buffer-create-internal): Fix search button
18588 action (Bug#10542).
18589 (customize-unsaved, customize-saved): Doc fix (Bug#10541).
18590
18591 2012-01-27 Eduard Wiebe <usenet@pusto.de>
18592
18593 * dired.el (dired-mark-files-regexp):
18594 Include any subdirectory components. (Bug#10445)
18595
18596 2012-01-27 Mike Lamb <mrlamb@gmail.com> (tiny change)
18597
18598 * pcmpl-unix.el (pcmpl-ssh-known-hosts):
18599 Handle [host]:port syntax. (Bug#10533)
18600
18601 2012-01-27 Alex Harsanyi <harsanyi@mac.com>
18602
18603 * xml.el (xml-parse-tag): Fix parsing of comments (Bug#10405).
18604
18605 2012-01-26 Glenn Morris <rgm@gnu.org>
18606
18607 * dired-x.el (dired-bind-jump): Use ctl-x-map and ctl-x-4-map.
18608 * term.el (term-raw-escape-map): Use Control-X-prefix.
18609 * vc/vc-hooks.el (vc-prefix-map): Use ctl-x-map. (Bug#10566)
18610
18611 2012-01-25 Martin Rudalics <rudalics@gmx.at>
18612
18613 * window.el (window-state-get, window--state-get-1): Don't deal
18614 with fixed-sizeness of windows. Simplify code.
18615
18616 2012-01-25 Jérémy Compostella <jeremy.compostella@gmail.com>
18617
18618 * window.el (window--state-get-1, window--state-put-2):
18619 Don't save and restore the mark.
18620
18621 2012-01-25 Chong Yidong <cyd@gnu.org>
18622
18623 * custom.el (custom-variable-p): Doc fix.
18624
18625 2012-01-25 Glenn Morris <rgm@gnu.org>
18626
18627 * dired.el (dired-goto-file): Handle some of the more common
18628 characters that `ls -b' escapes. (Bug#10596)
18629
18630 * progmodes/compile.el (compilation-next-error-function):
18631 Respect compilation-first-column in the "*compilation*" buffer.
18632 * progmodes/grep.el (grep-first-column): New variable. (Bug#10594)
18633
18634 * vc/vc.el (vc-modify-change-comment): Scoping fix. (Bug#10513)
18635
18636 2012-01-24 Glenn Morris <rgm@gnu.org>
18637
18638 * pcmpl-gnu.el (pcomplete/tar): Handle " - ". (Bug#10457)
18639
18640 2012-01-24 Julien Danjou <julien@danjou.info>
18641
18642 * color.el (color-rgb-to-hsl): Fix value computing.
18643 (color-hue-to-rgb): New function.
18644 (color-hsl-to-rgb): New function.
18645 (color-clamp, color-saturate-hsl, color-saturate-name)
18646 (color-desaturate-hsl, color-desaturate-name, color-lighten-hsl)
18647 (color-lighten-name, color-darken-hsl, color-darken-name): New function.
18648
18649 2012-01-24 Glenn Morris <rgm@gnu.org>
18650
18651 * vc/vc-rcs.el (vc-rcs-create-tag):
18652 * vc/vc-sccs.el (vc-sccs-create-tag):
18653 Fix argument spec to be what vc-create-tag expects. (Bug#10515)
18654
18655 2012-01-23 Mike Lamb <mrlamb@gmail.com> (tiny change)
18656
18657 * eshell/esh-util.el (eshell-read-hosts-file):
18658 Skip comment lines. (Bug#10549)
18659
18660 * eshell/em-unix.el (pcomplete/ssh): Remove. (Bug#10548)
18661
18662 2012-01-23 Juanma Barranquero <lekktu@gmail.com>
18663
18664 * subr.el (display-delayed-warnings): Doc fix.
18665 (collapse-delayed-warnings): New function to collapse identical
18666 adjacent warnings.
18667 (delayed-warnings-hook): Add it.
18668
18669 2012-01-22 Michael Albinus <michael.albinus@gmx.de>
18670
18671 * net/tramp.el (tramp-action-login): Set connection property "login-as".
18672
18673 * net/tramp-sh.el (tramp-methods): Add user spec to "pscp" and "psftp".
18674 (tramp-default-user-alist): Don't add "pscp".
18675 (tramp-do-copy-or-rename-file-out-of-band): Use connection
18676 property "login-as", if set. (Bug#10530)
18677
18678 2012-01-21 Michael Albinus <michael.albinus@gmx.de>
18679
18680 * net/tramp-sh.el (tramp-default-user-alist): Don't add "plink",
18681 "plink1" and "psftp". (Bug#10530)
18682
18683 2012-01-21 Kenichi Handa <handa@m17n.org>
18684
18685 * international/mule-cmds.el (prefer-coding-system): Show a
18686 warning message if the default value of file-name-coding-system
18687 was not changed.
18688
18689 2012-01-21 Jérémy Compostella <jeremy.compostella@gmail.com>
18690
18691 * windmove.el (windmove-reference-loc):
18692 Fix windmove-reference-loc miscalculation.
18693
18694 2012-01-21 Jay Belanger <jay.p.belanger@gmail.com>
18695
18696 * calc/calc-units.el (math-put-default-units): Don't use "1" as a
18697 default unit.
18698
18699 2012-01-21 Glenn Morris <rgm@gnu.org>
18700
18701 * international/mule.el (auto-coding-alist): Add .tbz.
18702
18703 * files.el (local-enable-local-variables): Doc fix.
18704 (inhibit-local-variables-regexps): Rename from
18705 inhibit-first-line-modes-regexps. Keep old name as obsolete alias.
18706 Doc fix. Add some extensions from auto-coding-alist.
18707 (inhibit-local-variables-suffixes):
18708 Rename from inhibit-first-line-modes-suffixes. Doc fix.
18709 (inhibit-local-variables-p):
18710 New function, extracted from set-auto-mode-1.
18711 (set-auto-mode): Doc fix. Respect inhibit-local-variables-regexps.
18712 (set-auto-mode-1): Doc fix. Use inhibit-local-variables-p.
18713 (hack-local-variables): Doc fix. Make the mode-only case
18714 respect enable-local-variables and friends.
18715 Respect inhibit-local-variables-regexps for file-locals, but
18716 not for directory-locals.
18717 (set-visited-file-name):
18718 Take account of inhibit-local-variables-regexps.
18719 Whether it applies may change as the file name is changed.
18720 * jka-cmpr-hook.el (jka-compr-install):
18721 * jka-compr.el (jka-compr-uninstall):
18722 Update for inhibit-first-line-modes-suffixes name change.
18723
18724 2012-01-20 Martin Rudalics <rudalics@gmx.at>
18725
18726 * help-macro.el (make-help-screen): Temporarily restore original
18727 binding for minor-mode-map-alist (Bug#10454).
18728
18729 2012-01-19 Julien Danjou <julien@danjou.info>
18730
18731 * color.el (color-name-to-rgb): Use the white color to find the max
18732 color component value and return correctly computed values.
18733 (color-name-to-rgb): Add missing float conversion for max value.
18734
18735 2012-01-19 Martin Rudalics <rudalics@gmx.at>
18736
18737 * window.el (window--state-get-1, window-state-get): Do not use
18738 special state value for window-persistent-parameters.
18739 Rename argument IGNORE to WRITABLE. Rewrite doc-string.
18740 (window--state-put-2): Reset all window parameters to nil before
18741 assigning values of persistent parameters.
18742
18743 2012-01-18 Alan Mackenzie <acm@muc.de>
18744
18745 Eliminate sluggishness and hangs in fontification of "semicolon
18746 deserts".
18747
18748 * progmodes/cc-engine.el (c-state-nonlit-pos-interval):
18749 Change value 10000 -> 3000.
18750 (c-state-safe-place): Reformulate so it doesn't stack up an
18751 infinite number of wrong entries in c-state-nonlit-pos-cache.
18752 (c-determine-limit-get-base, c-determine-limit): New functions to
18753 determine backward search limits disregarding literals.
18754 (c-find-decl-spots): Amend commenting.
18755 (c-cheap-inside-bracelist-p): New function which detects "={".
18756
18757 * progmodes/cc-fonts.el
18758 (c-make-font-lock-BO-decl-search-function): Give a limit to a
18759 backward search.
18760 (c-font-lock-declarations): Fix an occurrence of point being
18761 undefined. Check additionally for point being in a bracelist or
18762 near a macro invocation without a semicolon so as to avoid a
18763 fruitless time consuming search for a declarator. Give a more
18764 precise search limit for declarators using the new
18765 c-determine-limit.
18766
18767 2012-01-18 Glenn Morris <rgm@gnu.org>
18768
18769 * files.el (auto-mode-alist, inhibit-first-line-modes-regexps)
18770 (set-auto-mode): Doc fixes.
18771
18772 2012-01-17 Glenn Morris <rgm@gnu.org>
18773
18774 * isearch.el (search-nonincremental-instead): Fix doc typo.
18775
18776 * dired.el (dired-insert-directory): Handle newlines in directory name.
18777 (dired-build-subdir-alist): Unescape newlines in directory name.
18778
18779 2012-01-17 Michael Albinus <michael.albinus@gmx.de>
18780
18781 * net/tramp.el (tramp-local-end-of-line): New defcustom.
18782 (tramp-action-login, tramp-action-yesno, tramp-action-yn)
18783 (tramp-action-terminal): Use it. (Bug#10530)
18784
18785 2012-01-16 Stefan Monnier <monnier@iro.umontreal.ca>
18786
18787 * minibuffer.el (completion--replace): Strip properties (bug#10062).
18788
18789 2012-01-16 Martin Rudalics <rudalics@gmx.at>
18790
18791 * window.el (window-state-ignored-parameters): Remove variable.
18792 (window--state-get-1): Rename argument MARKERS to IGNORE.
18793 Handle persistent window parameters. Make copy of clone-of
18794 parameter only if requested. (Bug#10348)
18795 (window--state-put-2): Install a window parameter only if it has
18796 a non-nil value or an existing parameter shall be overwritten.
18797
18798 2012-01-15 Michael Albinus <michael.albinus@gmx.de>
18799
18800 * net/tramp-sh.el (tramp-remote-path): Set tramp-autoload cookie.
18801
18802 2012-01-14 Eli Zaretskii <eliz@gnu.org>
18803
18804 * info.el (Info-toc-build): If the Info file has no "Up" pointer,
18805 don't pass the (nil) value of `upnode' to string-match.
18806
18807 2012-01-14 Chong Yidong <cyd@gnu.org>
18808
18809 * startup.el (command-line): Fix X resource class for cursorColor.
18810 Fix values recognized by the cursorBlink resource.
18811
18812 2012-01-14 Paul Eggert <eggert@cs.ucla.edu>
18813
18814 * epg.el (epg--make-temp-file): Avoid permission race condition
18815 when running on old Emacs versions (bug#10403).
18816
18817 2012-01-14 Glenn Morris <rgm@gnu.org>
18818
18819 * dired.el (dired-get-filename): Fix 'verbatim case of previous change.
18820
18821 2012-01-13 Alan Mackenzie <acm@muc.de>
18822
18823 Fix filling for when filladapt mode is enabled.
18824
18825 * progmodes/cc-cmds.el (c-fill-paragraph): In the invocation of
18826 c-mask-paragraph, pass in `fill-paragraph' rather than
18827 `fill-region-as-paragraph'. (This is a reversion of a previous
18828 change.)
18829 * progmodes/cc-mode.el (c-basic-common-init):
18830 Make fill-paragraph-handle-comment buffer local and set it to nil.
18831
18832 2012-01-13 Glenn Morris <rgm@gnu.org>
18833
18834 * dired.el (dired-switches-escape-p): New function.
18835 (dired-insert-directory): Use dired-switches-escape-p.
18836 (dired-get-filename): Undo "\ " quoting if needed. (Bug#10469)
18837
18838 * find-dired.el (find-ls-option): Doc fix. (Bug#10262)
18839
18840 2012-01-12 Glenn Morris <rgm@gnu.org>
18841
18842 * mail/sendmail.el (mail-mode): Update paragraph-separate for
18843 changes in adaptive-fill-regexp. (Bug#10276)
18844
18845 2012-01-11 Alan Mackenzie <acm@muc.de>
18846
18847 Fix Emacs bug #10463 - put `widen's around the critical spots.
18848
18849 * progmodes/cc-engine.el (c-in-literal, c-literal-limits): Put a
18850 widen around each invocation of c-state-pp-to-literal. Remove an
18851 unused let variable.
18852
18853 2012-01-11 Glenn Morris <rgm@gnu.org>
18854
18855 * dired-aux.el (dired-do-shell-command): Fix */? logic. (Bug#6561)
18856 Doc fix.
18857
18858 2012-01-10 Chong Yidong <cyd@gnu.org>
18859
18860 * net/network-stream.el (network-stream-open-starttls):
18861 Avoid emitting a confusing error message when the server gives a bad
18862 response to the capability command.
18863
18864 2012-01-10 Glenn Morris <rgm@gnu.org>
18865
18866 * mail/unrmail.el (unrmail): Tweak previous change.
18867
18868 2012-01-09 Chong Yidong <cyd@gnu.org>
18869
18870 * custom.el (custom-safe-themes): Use SHA-256 for hashing.
18871
18872 2012-01-08 Alan Mackenzie <acm@muc.de>
18873
18874 Optimize font locking in long enum definitions.
18875
18876 * progmodes/cc-fonts.el (c-font-lock-declarations): Add an extra
18877 arm to a cond form to handle enums.
18878 * progmodes/cc-langs.el (c-enums-contain-decls): New lang variable.
18879 * progmodes/cc-mode.el (c-font-lock-fontify-region): Correct a typo.
18880
18881 2012-01-07 Paul Eggert <eggert@cs.ucla.edu>
18882
18883 * files.el (move-file-to-trash): Preserve default file modes on error.
18884 (Bug#10401)
18885
18886 2012-01-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
18887
18888 * faces.el (set-face-attribute): Clarify the meaning of the nil
18889 frame (bug#10294).
18890
18891 * subr.el (with-selected-frame): Mention that the selected frame
18892 is restored (bug#9980).
18893
18894 * ibuffer.el (ibuffer-mode): List the bindings in the corrent map
18895 (bug#9759).
18896
18897 * mail/smtpmail.el (password-cache-add): Remove unused declaration.
18898 (password-read): Don't autoload unused function.
18899
18900 2012-01-07 Juanma Barranquero <lekktu@gmail.com>
18901
18902 * progmodes/which-func.el (which-func-mode): Turn into a
18903 non-interactive function and mark as obsolete (bug#10428).
18904
18905 2012-01-06 Chong Yidong <cyd@gnu.org>
18906
18907 * files.el (hack-dir-local-variables-non-file-buffer): Add doc.
18908 (hack-one-local-variable-eval-safep): Allow 0 arg for minor mode
18909 functions, along with 1 and -1.
18910
18911 2012-01-06 Eli Zaretskii <eliz@gnu.org>
18912
18913 * time.el (display-time-load-average)
18914 (display-time-default-load-average): Doc fixes. See the thread
18915 starting at
18916 http://lists.gnu.org/archive/html/help-gnu-emacs/2012-01/msg00059.html
18917 for the details.
18918
18919 2012-01-06 Glenn Morris <rgm@gnu.org>
18920
18921 * mail/unrmail.el (unrmail): Give an explicit error if the input file
18922 has no messages. (Bug#10377)
18923
18924 * info.el (Info-mode-map): Bind e to end-of-buffer, rather
18925 than Info-edit. (Bug#10385)
18926
18927 * time.el (display-time-load-average, display-time-next-load-average):
18928 Doc fixes.
18929
18930 * emacs-lisp/bytecomp.el (byte-compile-file): Do not propagate a file
18931 local setting of buffer-read-only to the input buffer. (Bug#10419)
18932
18933 * calendar/calendar.el (calendar-mode):
18934 Locally set scroll-margin to 0. (Bug#10379)
18935
18936 2012-01-06 Ulrich Mueller <ulm@gentoo.org>
18937
18938 * play/doctor.el (doctor-death): Escape "," characters. (Bug#10370)
18939
18940 2012-01-05 Glenn Morris <rgm@gnu.org>
18941
18942 * eshell/em-unix.el (diff-no-select): Autoload it.
18943 (eshell/diff): Use diff-no-select. (Bug#10420)
18944
18945 2012-01-05 Chong Yidong <cyd@gnu.org>
18946
18947 * shell.el (shell-dynamic-complete-functions): Revert last change.
18948 (shell-command-completion-function): New function.
18949 (shell-completion-vars): Use it to implement
18950 shell-completion-execonly (Bug#10417).
18951
18952 * custom.el (enable-theme): Don't set custom-safe-themes.
18953
18954 * cus-theme.el (custom-theme-merge-theme):
18955 Ignore custom-enabled-themes and custom-safe-themes.
18956
18957 2012-01-05 Michael R. Mauger <mmaug@yahoo.com>
18958
18959 * progmodes/sql.el (sql-login-hook): Add hook to respond to the
18960 first prompt in `sql-interacive-mode'.
18961 (sql-mode-oracle-font-lock-keywords): Add CONNECT_BY_* builtin
18962 keywords.
18963 (sql-mode-mysql-font-lock-keywords): Add ELSEIF keyword.
18964 (sql-product-interactive): Bug fix: Set `sql-buffer' in
18965 context of original buffer. Invoke `sql-login-hook'.
18966
18967 2012-01-04 Eli Zaretskii <eliz@gnu.org>
18968
18969 * mail/rmail.el (rmail-font-lock-keywords): Accept non-ASCII
18970 letters in cite-prefix.
18971
18972 2012-01-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
18973
18974 * mail/smtpmail.el (smtpmail-stream-type): Mention the `ssl' value.
18975
18976 2012-01-03 Chong Yidong <cyd@gnu.org>
18977
18978 * shell.el (shell-dynamic-complete-functions):
18979 Put pcomplete-completions-at-point, so as to try
18980 comint-filename-completion first (Bug#10417).
18981
18982 2012-01-02 Richard Stallman <rms@gnu.org>
18983
18984 * battery.el (battery-status-function):
18985 Detect when to use battery-yeeloong-sysfs.
18986 (battery-echo-area-format): Add string for Yeeloong.
18987 (battery-linux-proc-apm, battery-linux-proc-acpi): Doc fixes.
18988 (battery-yeeloong-sysfs): New function.
18989
18990 2012-01-02 Chong Yidong <cyd@gnu.org>
18991
18992 * dirtrack.el (dirtrack-list): Eliminate unused third element.
18993 (dirtrack): Merge code for handling relative filenames in prompt
18994 from shell-dir-cookie-watcher.
18995 (dirtrack-debug-message): New arg to avoid excess format calls.
18996
18997 * shell.el (shell-dir-cookie-re): Variable deleted.
18998 (shell-dir-cookie-watcher): Function deleted.
18999 (shell-mode): Don't use shell-dir-cookie-re, since it is redundant
19000 with dirtrack-mode.
19001
19002 2012-01-01 Eli Zaretskii <eliz@gnu.org>
19003
19004 * term/w32-win.el (dynamic-library-alist) <gnutls>:
19005 Load libgnutls-28.dll, from GnuTLS version 3.x, in preference to
19006 libgnutls-26.dll.
19007
19008 2011-12-31 Andreas Schwab <schwab@linux-m68k.org>
19009
19010 * emacs-lisp/bytecomp.el (byte-compile-file): Fix indentation.
19011
19012 2011-12-31 Eli Zaretskii <eliz@gnu.org>
19013
19014 * mail/rmail.el (rmail-show-message-1): Decode any RFC2047 encoded
19015 headers of non-MIME messages, when rmail-enable-mime is non-nil.
19016
19017 2011-12-29 Michael Albinus <michael.albinus@gmx.de>
19018
19019 * net/tramp-sh.el (tramp-find-shell): Set "remote-shell" property
19020 also for alternative shells.
19021 (tramp-open-connection-setup-interactive-shell): Check, whether
19022 the shell is a busybox.
19023 (tramp-send-command): Don't suppress multiple prompts for
19024 busyboxes, it hurts.
19025
19026 2011-12-28 Chong Yidong <cyd@gnu.org>
19027
19028 * progmodes/gdb-mi.el (gdb-get-source-file-list)
19029 (gdb-get-source-file): Move mode line update to
19030 gdb-get-source-file (Bug#10087).
19031
19032 2011-12-25 Chong Yidong <cyd@gnu.org>
19033
19034 * progmodes/gud.el (gud-gdb-fetch-lines-filter): Just use
19035 gud-gdb-marker-filter without taking it as an argument.
19036 (gud-gdb-run-command-fetch-lines): Caller changed.
19037 (gud-gdb-completion-function): New variable.
19038 (gud-gdb-completion-at-point): Use it.
19039 (gud-gdb-completions-1): Split from gud-gdb-completions.
19040
19041 * progmodes/gdb-mi.el (gdb-input): Accept command and handler
19042 function as separate arguments.
19043 (gdb-init-1, gdb-non-stop-handler, gdb-check-target-async)
19044 (gdb-tooltip-print-1, gud-watch, gdb-speedbar-update)
19045 (gdb-var-list-children, gdb-var-set-format, gdb-var-delete-1)
19046 (gdb-var-delete-children, gdb-edit-value, gdb-var-update)
19047 (gdb-stopped, def-gdb-auto-update-trigger)
19048 (gdb-place-breakpoints, gdb-select-thread, gdb-select-frame)
19049 (gdb-get-changed-registers, gdb-get-main-selected-frame):
19050 Callers changed.
19051 (gud-gdbmi-completions): New function.
19052 (gdb): Use it for generating the completion table.
19053
19054 2011-12-24 Alan Mackenzie <acm@muc.de>
19055
19056 Introduce a mechanism to widen the region used in context font
19057 locking. Use this to protect declarations from losing their contexts.
19058
19059 * progmodes/cc-langs.el (c-before-font-lock-functions):
19060 Replace c-set-fl-decl-start with c-change-set-fl-decl-start (Renaming).
19061 (c-before-context-fontification-functions): New defvar, a list of
19062 functions to be run just before context (etc.) font locking.
19063
19064 * progmodes/cc-mode.el (c-extend-font-lock-region-for-macros):
19065 New, functionality extracted from
19066 c-neutralize-syntax-in-and-mark-CPP.
19067 (c-in-after-change-fontification): New variable.
19068 (c-after-change): Set c-in-after-change-fontification.
19069 (c-set-fl-decl-start): Rejig its interface, so it can be called
19070 from both after-change and context fontifying.
19071 (c-change-set-fl-decl-start, c-context-set-fl-decl-start):
19072 New functions.
19073 (c-standard-font-lock-fontify-region-function): New variable.
19074 (c-font-lock-fontify-region): New function.
19075
19076 2011-12-24 Juri Linkov <juri@jurta.org>
19077
19078 * window.el (window--state-get-1): Set `FORCE' arg of `mark' to t.
19079 (Bug#10348)
19080
19081 2011-12-23 Michael Albinus <michael.albinus@gmx.de>
19082
19083 * net/ange-ftp.el (ange-ftp-copy-file-internal): Check for
19084 existence of source file. (Bug#10325)
19085
19086 2011-12-23 Alan Mackenzie <acm@muc.de>
19087
19088 Fix unstable fontification inside templates.
19089
19090 * progmodes/cc-langs.el (c-before-font-lock-functions):
19091 Newly created from the singular version. The (c c++ objc) entry now
19092 additionally has c-set-fl-decl-start. The other languages (apart
19093 from AWK) have that as a single entry.
19094
19095 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
19096 The functionality for "local" declarations has been extracted to
19097 c-set-fl-decl-start.
19098
19099 * progmodes/cc-mode.el (c-common-init, c-after-change):
19100 Changes due to pluralisation of c-before-font-lock-functions.
19101 (c-set-fl-decl-start): New function, extracted from
19102 c-font-lock-enclosing-decls and enhanced.
19103
19104 2011-12-23 Juanma Barranquero <lekktu@gmail.com>
19105
19106 * desktop.el (desktop-internal-v2s): Fix typos in docstring (bug#10353).
19107
19108 2011-12-22 Juri Linkov <juri@jurta.org>
19109
19110 * progmodes/grep.el (rgrep): Fix docstring. (Bug#10185)
19111
19112 2011-12-22 Chong Yidong <cyd@gnu.org>
19113
19114 * vc/vc-hooks.el (vc-keep-workfiles): Doc fix.
19115
19116 2011-12-21 Drew Adams <drew.adams@oracle.com>
19117
19118 * files.el (file-remote-p): Fix docstring. (Bug#10319)
19119
19120 2011-12-21 Jérémy Compostella <jeremy.compostella@gmail.com>
19121
19122 * battery.el (battery-linux-sysfs): Add missing parameters from acpi.
19123
19124 2011-12-21 Teodor Zlatanov <tzz@lifelogs.com>
19125
19126 * progmodes/cfengine.el: Add Version. Improve CFEngine 3.x syntax
19127 highlighting and support. Fix up comments for capitalization.
19128 (cfengine-mode-debug): New var.
19129 (cfengine3-mode): Change the modeline indicator to "CFE3".
19130 (cfengine3-font-lock-keywords): Improve defun highlighting.
19131 (cfengine2-actions): Rename from `cfengine-actions'.
19132 (cfengine2-font-lock-keywords): Rename from
19133 `cfengine-font-lock-keywords'.
19134 (cfengine2-imenu-expression): Rename from
19135 `cfengine-imenu-expression'.
19136 (cfengine2-outline-level): Rename from `cfengine-outline-level'.
19137 (cfengine2-beginning-of-defun): Rename from
19138 `cfengine-beginning-of-defun'.
19139 (cfengine2-end-of-defun): Rename from `cfengine-end-of-defun'.
19140 (cfengine2-indent-line): Rename from `cfengine-indent-line'.
19141 (cfengine2-mode): Rename from `cfengine-mode'. Change the
19142 modeline indicator to "CFE2".
19143 (cfengine-mode): Defalias to `cfengine-auto-mode'.
19144 (cfengine-mode-abbrevs): Mark obsolete.
19145
19146 2011-12-21 Chong Yidong <cyd@gnu.org>
19147
19148 * vc/vc-bzr.el (vc-bzr-rename-file): Don't pass ~ to Bzr in
19149 filename argument.
19150
19151 2011-12-20 Martin Rudalics <rudalics@gmx.at>
19152
19153 * window.el (window-normalize-buffer-to-display): Remove.
19154 (display-buffer): Handle buffer-or-name argument as in Emacs 23.
19155
19156 2011-12-19 Chong Yidong <cyd@gnu.org>
19157
19158 * vc/vc-dir.el (vc-dir-parent-marked-p, vc-dir-children-marked-p):
19159 Don't signal an error in a predicate function; return non-nil.
19160 (vc-dir-mark-file): Move the error here.
19161 (vc-dir-mark-unmark): If acting on the region, keep going if one
19162 of the entries cannot be marked/unmarked.
19163 (vc-dir-mark-all-files): If current entry is a directory, mark
19164 only child files, as documented.
19165
19166 2011-12-19 Vincent Belaïche <vincentb1@users.sourceforge.net>
19167
19168 * ses.el: Ooops... undo changes of 2011-12-11T14:49:48Z!vincentb1@users.sourceforge.net, as trunk
19169 branch is feature frozen, and 2011-12-11T14:49:48Z!vincentb1@users.sourceforge.net was a feature
19170 addition.
19171
19172 2011-12-18 Jan Djärv <jan.h.d@swipnet.se>
19173
19174 * term/ns-win.el (ns-get-selection-internal)
19175 (ns-store-selection-internal): Declare.
19176 (ns-store-cut-buffer-internal, ns-get-cut-buffer-internal):
19177 Declare as obsolete.
19178 (ns-get-pasteboard, ns-paste-secondary):
19179 Use ns-get-selection-internal.
19180 (ns-set-pasteboard, ns-copy-including-secondary):
19181 Use ns-store-selection-internal.
19182
19183 2011-12-17 Chong Yidong <cyd@gnu.org>
19184
19185 * vc/vc.el (vc-next-action): Doc fix; remove CVS-isms.
19186 (vc-deduce-fileset): Doc fix.
19187
19188 2011-12-16 Andreas Schwab <schwab@linux-m68k.org>
19189
19190 * calc/calc-misc.el (calc-help): Avoid wrapping help message.
19191
19192 2011-12-13 Sam Steingold <sds@gnu.org>
19193
19194 * man.el (Man-getpage-in-background): When running under a
19195 window-system, ignore $MANWIDTH and $COLUMNS.
19196
19197 2011-12-15 Kenichi Handa <handa@m17n.org>
19198
19199 * language/ethio-util.el: Change coding tag to utf-8-emacs.
19200 (setup-ethiopic-environment-internal): Comment out key-binding for
19201 ethio-toggle-punctuation.
19202
19203 2011-12-13 Alan Mackenzie <acm@muc.de>
19204
19205 Add the switch statement to AWK Mode.
19206
19207 * progmodes/cc-awk.el (awk-font-lock-keywords): Add "switch", "case",
19208 "default" to the keywords regexp.
19209
19210 * progmodes/cc-langs.el (c-label-kwds): Let AWK take the same
19211 expression as the rest.
19212 (c-nonlabel-token-key): Allow string literals for AWK.
19213 Refactor for the other modes.
19214
19215 Large brace-block initialisation makes CC Mode slow: Fix.
19216 Tidy up and accelerate c-in-literal, etc. by using the c-parse-state
19217 routines. Limit backward searching in c-font-lock-enclosing.decl.
19218
19219 * progmodes/cc-engine.el (c-state-pp-to-literal): Return the
19220 pp-state and literal type in addition to the limits.
19221 (c-state-safe-place): New defun, extracted from c-state-literal-at.
19222 (c-state-literal-at): Use the above new defun.
19223 (c-slow-in-literal, c-fast-in-literal): Remove.
19224 (c-in-literal, c-literal-limits): Amend to use c-state-pp-to-literal.
19225
19226 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls): Check for
19227 being in a literal. Add a limit for backward searching.
19228
19229 * progmodes/cc-mode.el (awk-mode): Don't alias c-in-literal to
19230 c-slow-in-literal.
19231
19232 2011-12-13 Stefan Monnier <monnier@iro.umontreal.ca>
19233
19234 * progmodes/pascal.el: Declare `ind' as dyn-bound (bug#10264).
19235
19236 2011-12-13 Martin Rudalics <rudalics@gmx.at>
19237
19238 * window.el (delete-other-windows): Use correct frame in call to
19239 window-with-parameter.
19240
19241 2011-12-12 Daniel Pfeiffer <occitan@t-online.de>
19242
19243 * progmodes/make-mode.el: Bring it up to date with makepp V2.0.
19244 (makefile-make-font-lock-keywords): Extend meaning of `keywords'.
19245 (makefile-gmake-statements, makefile-makepp-statements):
19246 Use it and add new makepp keywords.
19247 (makefile-makepp-font-lock-keywords): Add new patterns.
19248 (makefile-match-function-end): Match new [...] and [[...]].
19249
19250 2011-12-11 Juanma Barranquero <lekktu@gmail.com>
19251
19252 * ses.el (ses-call-printer-return, ses-cell-property-get)
19253 (ses-sym-rowcol, ses-printer-validate, ses-formula-record)
19254 (ses-create-cell-variable, ses-reset-header-string)
19255 (ses-cell-set-formula, ses-repair-cell-reference-all)
19256 (ses-self-reference-early-detection, ses-in-print-area, ses-set-curcell)
19257 (ses-check-curcell, ses-call-printer, ses-adjust-print-width)
19258 (ses-print-cell-new-width, ses-formula-references, ses-relocate-formula)
19259 (ses-aset-with-undo, ses-load, ses-truncate-cell)
19260 (ses-read-column-printer, ses-read-default-printer, ses-insert-row)
19261 (ses-delete-row, ses-delete-column, ses-append-row-jump-first-column)
19262 (ses-kill-override, ses-yank-pop, ses-yank-cells, ses-yank-tsf)
19263 (ses-yank-resize, ses-export-tab, ses-mark-row, ses-mark-column)
19264 (ses-renarrow-buffer, ses-insert-range, ses-insert-ses-range)
19265 (ses-safe-printer, ses-safe-formula, ses-warn-unsafe, ses--clean-!)
19266 (ses--clean-_, ses-range, ses-select, ses-center, ses-center-span)
19267 (ses-dashfill, ses-unsafe): Fix typos and reflow docstrings.
19268
19269 2011-12-11 Vincent Belaïche <vincentb1@users.sourceforge.net>
19270
19271 * ses.el: The overall change is to add cell renaming, that is
19272 setting fancy names for cell symbols other than name matching
19273 "\\`[A-Z]+[0-9]+\\'" regexp .
19274 (ses-create-cell-variable): New defun.
19275 (ses-relocate-formula): Relocate formulas only for cells the
19276 symbols of which are not renamed, i.e. symbols whose names do not
19277 match regexp "\\`[A-Z]+[0-9]+\\'".
19278 (ses-relocate-all): Relocate values only for cells the symbols of
19279 which are not renamed.
19280 (ses-load): Create cells variables as the (ses-cell ...) are read,
19281 in order to check row col consistency with cell symbol name only
19282 for cells that are not renamed.
19283 (ses-replace-name-in-formula): New defun.
19284 (ses-rename-cell): New defun.
19285
19286 2011-12-11 Chong Yidong <cyd@gnu.org>
19287
19288 * progmodes/gdb-mi.el (gdb): Set comint-prompt-regexp, required
19289 for completion via gud-gdb-fetch-lines-filter (Bug#10274).
19290
19291 2011-12-11 Eric Hanchrow <eric.hanchrow@gmail.com>
19292
19293 * window.el (other-window): Fix docstring.
19294
19295 2011-12-10 Eli Zaretskii <eliz@gnu.org>
19296
19297 * mail/rmailsum.el (rmail-header-summary): RFC2047 decode the
19298 `from' or `to' address before taking its substring.
19299 Fixes incorrect display in Rmail summary buffer whereby an RFC2047
19300 encoded name is chopped in the middle of the encoded string, and
19301 thus displayed encoded.
19302
19303 2011-12-10 Juanma Barranquero <lekktu@gmail.com>
19304
19305 * makefile.w32-in (update-subdirs-CMD): Use a Local Variables section.
19306
19307 2011-12-10 Eli Zaretskii <eliz@gnu.org>
19308
19309 * textmodes/texnfo-upd.el: Update commentary. Add a warning not
19310 to use texinfo-update-node and commands that call it if the
19311 Texinfo file uses @node lines without next/prev/up pointers.
19312 Correct outdated description about texinfo-master-menu.
19313 (texinfo-all-menus-update, texinfo-master-menu)
19314 (texinfo-update-node, texinfo-every-node-update)
19315 (texinfo-multiple-files-update): Doc fix. Warn against updating
19316 all the @node lines.
19317 (texinfo-master-menu): Only call texinfo-update-node if the prefix
19318 argument is numeric. Explain better in the doc string what the
19319 function really does.
19320 (texinfo-insert-master-menu-list): Improve the error message
19321 displayed if there's no menu in the Top node.
19322 (Bug#2975) See also this thread:
19323 http://lists.gnu.org/archive/html/emacs-devel/2011-12/msg00156.html.
19324
19325 2011-12-09 Manuel Gómez <mgrojo@gmail.com> (tiny change)
19326
19327 * speedbar.el (speedbar-supported-extension-expressions):
19328 Add .adb and .ads, commonly used for Ada source code (bug#10256).
19329
19330 2011-12-09 Juanma Barranquero <lekktu@gmail.com>
19331
19332 * printing.el (pr-mode-alist):
19333 * simple.el (filter-buffer-substring-functions)
19334 (completion-list-insert-choice-function):
19335 * window.el (window-with-parameter, window-atom-root)
19336 (window-sides-slots, window-size-fixed, window-min-delta)
19337 (window-max-delta, window--resize-mini-window)
19338 (window--resize-child-windows-normal, window-tree)
19339 (delete-other-windows, quit-window, split-window)
19340 (display-buffer-record-window, special-display-buffer-names)
19341 (special-display-regexps, special-display-popup-frame)
19342 (same-window-p, split-window-sensibly)
19343 (display-buffer-overriding-action, display-buffer-alist)
19344 (display-buffer-base-action, display-buffer, switch-to-buffer)
19345 (switch-to-buffer-other-window, switch-to-buffer-other-frame)
19346 (fit-window-to-buffer, recenter-positions)
19347 (mouse-autoselect-window-state, mouse-autoselect-window-select):
19348 * emacs-lisp/syntax.el (syntax-propertize-function): Fix typos
19349 and remove unneeded backslashes in docstrings.
19350
19351 2011-12-08 Stefan Monnier <monnier@iro.umontreal.ca>
19352
19353 * emacs-lisp/lisp-mode.el (defmethod): Add doc-string-elt (bug#10244).
19354
19355 * pcmpl-gnu.el: Don't fail when there is no Makefile nor -f arg.
19356 (pcmpl-gnu-makefile-regexps): Accept "makefile" as well as files that
19357 end in ".mk".
19358 (pcmpl-gnu-make-rule-names): Check "makefile" and ignore errors
19359 when reading the makefile (bug#10116).
19360
19361 2011-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
19362
19363 * pcmpl-gnu.el (pcomplete/make): Also allow filename arguments
19364 (bug#10116).
19365
19366 2011-12-06 Glenn Morris <rgm@gnu.org>
19367
19368 * emacs-lisp/package.el (package-archives): Doc fix re riskiness.
19369
19370 2011-12-06 Chong Yidong <cyd@gnu.org>
19371
19372 * progmodes/cc-fonts.el (c-annotation-face): Use defface.
19373
19374 2011-12-06 Juanma Barranquero <lekktu@gmail.com>
19375
19376 * textmodes/table.el (table-shorten-cell): Fix typo.
19377
19378 2011-12-05 Christopher Genovese <genovese.cr@gmail.com> (tiny change)
19379
19380 * emacs-lisp/assoc.el (aput): Fix return value (bug#10146)
19381
19382 2011-12-05 Eli Zaretskii <eliz@gnu.org>
19383
19384 * descr-text.el (describe-char): Fix display of strong
19385 right-to-left characters and directional embeddings and overrides.
19386
19387 * simple.el (what-cursor-position): Fix display of codepoints of
19388 strong right-to-left characters.
19389
19390 2011-12-05 Chong Yidong <cyd@gnu.org>
19391
19392 * faces.el (read-color): Doc fix.
19393
19394 2011-12-05 Glenn Morris <rgm@gnu.org>
19395
19396 * align.el (align--set-marker): Add doc-string.
19397 Don't try to move something that is not a marker. (Bug#10216)
19398
19399 2011-12-04 Glenn Morris <rgm@gnu.org>
19400
19401 * calendar/appt.el (appt-add): Rewrite the interactive-spec to avoid
19402 overly zealous deletion of trailing whitespace.
19403
19404 2011-12-04 Juanma Barranquero <lekktu@gmail.com>
19405
19406 * server.el (server-delete-client): On Windows, do not try to delete
19407 the only terminal.
19408 (server-process-filter): On Windows, treat requests for a tty frame as
19409 if they were for a GUI frame if the running server is in GUI mode.
19410
19411 2011-12-03 Glenn Morris <rgm@gnu.org>
19412
19413 * textmodes/texinfmt.el (batch-texinfo-format): Doc fix. (Bug#10207)
19414
19415 2011-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
19416
19417 * electric.el: Streamline electric-indent's hook.
19418 (electric-indent-chars): Revert to simple list.
19419 (electric-indent-functions): New var.
19420 (electric-indent-post-self-insert-function): Use it.
19421
19422 * progmodes/prolog.el (prolog-find-value-by-system): Avoid error when
19423 there's no inferior buffer (bug#10196).
19424 (prolog-consult-compile): Don't use toggle-read-only.
19425
19426 2011-12-02 Michael Albinus <michael.albinus@gmx.de>
19427
19428 * net/tramp-sh.el (tramp-maybe-open-connection): Handle user
19429 interrupt. (Bug#10187)
19430
19431 2011-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
19432
19433 * pcmpl-gnu.el (pcomplete/tar): large-file-warn-threshold can be nil
19434 (bug#9160).
19435
19436 * dired-aux.el (dired-query): Don't assume help-char is modifier-free
19437 (bug#10191).
19438
19439 2011-12-02 Juri Linkov <juri@jurta.org>
19440
19441 * info.el (Info-search): Display "end of manual" when Isearch
19442 reaches the end of single-file Info manual. (Bug#9918)
19443
19444 2011-12-02 Eli Zaretskii <eliz@gnu.org>
19445
19446 * isearch.el (isearch-message-prefix): Run the input method part
19447 of the prompt through bidi-string-mark-left-to-right. (Bug#10183)
19448
19449 2011-12-02 Juri Linkov <juri@jurta.org>
19450
19451 * isearch.el (isearch-occur): Use `word-search-regexp' for
19452 `isearch-word'.
19453 (isearch-search-and-update): Add condition for `isearch-word' and
19454 call `word-search-regexp'. (Bug#10145)
19455
19456 2011-12-01 Glenn Morris <rgm@gnu.org>
19457
19458 * eshell/em-hist.el (eshell-hist-initialize):
19459 Handle eshell-history-size nil and HISTSIZE set or unset.
19460 (eshell-history-file-name, eshell-history-size): Fix custom type.
19461
19462 2011-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
19463
19464 * man.el (Man-completion-table): Fix the lambda case (bug#10168).
19465
19466 2011-12-01 Michael McNamara <mac@mail.brushroad.com>
19467
19468 * progmodes/verilog-mode.el (verilog-pretty-expr):
19469 Rework verilog-pretty-expr to handle new assignment operators in system
19470 verilog, such as += *= and the like.
19471 (verilog-assignment-operator-re): Regular expression to find the
19472 assigment operator in a verilog assignment.
19473 (verilog-assignment-operation-re): Regular expression to find an
19474 assignment statement for pretty-expr.
19475 (verilog-in-attribute-p): Query returns true if point is in an
19476 attribute context; used to skip these for expression line up from
19477 pretty-expr.
19478 (verilog-in-parameter-p): Query returns true if point is in an
19479 parameter definition context; used to skip these for expression
19480 line up from pretty-expr.
19481 (verilog-in-parenthesis-p): Query returns true if point is in a
19482 parenthetical expression, specifically ( ) but not [ ] or { };
19483 used by pretty-expr.
19484 (verilog-just-one-space): If there is no space, don't add one.
19485 (verilog-get-lineup-indent-2): Specifically skip just attribute
19486 contexts for expression lineup, rather than skipping all
19487 parenthetical expressions.
19488 (verilog-calculate-indent): Fix comment, and fix indent.
19489 (verilog-do-indent): Indent declarations in lists (suggested by
19490 Joachim Lechner).
19491 (verilog-mode-abbrev-table): Populate abbrev mode with the various
19492 skeleton items.
19493 (verilog-sk-ovm-class): Add skeleton for OVM classes (reported
19494 by Alain Mellan).
19495
19496 2011-12-01 Wilson Snyder <wsnyder@wsnyder.org>
19497
19498 * progmodes/verilog-mode.el (verilog-read-defines): Fix reading
19499 parameters with embedded comments. Reported by Ray Stevens.
19500 (verilog-calc-1, verilog-fork-wait-re, verilog-forward-sexp)
19501 (verilog-wait-fork-re): Fix indentation of "wait fork", bug407.
19502 Reported by Tim Holt.
19503 (verilog-auto): Fix AUTOing a upper module then AUTOing module
19504 instantiated by upper module causing wrong expansion until AUTOed a
19505 second time. Reported by K C Buckenmaier.
19506 (verilog-diff-auto): Fix showing .* as a difference when
19507 `verilog-auto-star-save' off. Reported by Dan Dever.
19508 (verilog-auto-reset, verilog-read-always-signals)
19509 (verilog-auto-reset-blocking-in-non): Fix AUTORESET including
19510 temporary signals in reset list if
19511 verilog-auto-reset-blocking-in-non is nil, and match assignment
19512 style to each signal's assignment type, bug381.
19513 Reported by Thomas Esposito.
19514 (verilog-sk-uvm-class, verilog-uvm-begin-re, verilog-uvm-end-re)
19515 (verilog-uvm-statement-re): Support UVM indentation and
19516 highlighting, with old OVM keywords only.
19517 (verilog-auto-tieoff, verilog-auto-tieoff-declaration):
19518 Support AUTOTIEOFF creating non-wire data types.
19519 Suggested by Jonathan Greenlaw.
19520 (verilog-auto-insert-lisp, verilog-delete-to-paren)
19521 (verilog-forward-sexp-cmt, verilog-forward-sexp-ign-cmt)
19522 (verilog-inject-sense, verilog-read-inst-pins)
19523 (verilog-read-sub-decls, verilog-read-sub-decls-line):
19524 Fix mismatching parenthesis inside commented out code when deleting
19525 AUTOINST, bug383. Reported by Jonathan Greenlaw.
19526 (verilog-auto-ascii-enum): Fix AUTOASCIIENUM one-hot with
19527 non-numeric vector width. Reported by Alex Reed.
19528 (verilog-auto-ascii-enum): Add "onehot" option to work around not
19529 detecting signals with parameter widths. Reported by Alex Reed.
19530 (verilog-auto-delete-trailing-whitespace):
19531 With `verilog-auto-delete-trailing-whitespace' remove trailing
19532 whitespace in auto expansion, bug371. Reported by Brad Dobbie.
19533 (verilog-run-hooks, verilog-scan-cache-flush, verilog-syntax-ppss):
19534 Fix verilog-scan-cache corruption when running user AUTO expansion
19535 hooks that call indentation routines.
19536 (verilog-simplify-range-expression): Fix typo ignoring lower case
19537 identifiers.
19538 (verilog-delete-auto): Fix delete-autos to also remove user created
19539 automatics, as long as they start with AUTO.
19540 (verilog-batch-diff-auto, verilog-diff-auto)
19541 (verilog-diff-function): Add `verilog-diff-auto' and bind to
19542 "C-c?" to report differences in AUTO expansion, ignoring spaces.
19543 (verilog-backward-syntactic-ws-quick, verilog-beg-of-defun-quick)
19544 (verilog-in-paren-quick, verilog-re-search-backward-quick)
19545 (verilog-re-search-forward-quick, verilog-syntax-ppss):
19546 Fix calling `syntax-ppss' when inside auto expansions as the ppss hook
19547 is disabled and its cache will get corrupt, causing AUTOS not to
19548 expand. Instead use only -quick functions.
19549 (verilog-scan-region): Fix scanning over escaped quotes.
19550 (verilog-inside-comment-or-string-p, verilog-inside-comment-p)
19551 (verilog-re-search-backward-quick)
19552 (verilog-re-search-forward-quick, verilog-scan): verilog-scan and
19553 related functions now ignore strings, to fix misparsing of strings
19554 with magic comments embedded in them.
19555 (verilog-read-auto-template):
19556 Fix 'verilog-auto-inst-template-numbers' with extra newline before (.
19557 Reported by Brad Dobbie.
19558 (verilog-read-auto-template):
19559 Fix 'verilog-auto-inst-template-numbers' with comments.
19560 Reported by Brad Dobbie.
19561 (verilog-auto-inst, verilog-auto-inst-param)
19562 (verilog-auto-inst-sort): Add 'verilog-auto-inst-sort' to reduce
19563 merge conflicts with AUTOINST, bug358. Reported by Brad Dobbie.
19564 (verilog-auto-inst-template-numbers): Add 'lhs' policy for
19565 debugging templates without merge conflicts, bug357.
19566 Reported by Brad Dobbie.
19567 (verilog-read-auto-template):
19568 Fix verilog-auto-inst-template-numbers with multiple templates.
19569 Reported by Brad Dobbie.
19570 (verilog-define-abbrev): Fix verilog-mode abbrevs to be system
19571 abbrevs so user won't be asked to save.
19572 (verilog-read-auto-lisp-present): Fix to start at beginning of
19573 buffer in case called outside of verilog-auto.
19574 (verilog-simplify-range-expression): Fix AUTOWIRE expanding "X-1+1"
19575 to "X-2". Reported by Matthew Myers.
19576 (verilog-auto, verilog-auto-inout-in): Add AUTOINOUTIN for creating
19577 all inputs from module templates. Reported by Leith Johnson.
19578 (verilog-module-inside-filename-p): Fix locating programs as with
19579 modules.
19580 (verilog-auto-inst-port): Fix vl-width expressions when using
19581 verilog-auto-inst-param-value, bug331. Reported by Julian Gorfajn.
19582 (verilog-decls-get-regs, verilog-decls-get-signals,
19583 verilog-decls-get-vars, verilog-decls-get-wires, verilog-decls-new,
19584 verilog-modi-cache-add-vars, verilog-modi-cache-add-wires,
19585 verilog-read-decls): Combine reg and wire structures into one var
19586 structure to represent SystemVerilog concepts.
19587 (verilog-auto-ascii-enum, verilog-auto-logic, verilog-auto-reg)
19588 (verilog-auto-reg-input, verilog-auto-tieoff, verilog-auto-wire)
19589 (verilog-auto-wire-type, verilog-insert-definition):
19590 Add verilog-auto-wire-type and AUTOLOGIC to support using
19591 SystemVerilog "logic" keyword instead of "wire"/"reg".
19592 (verilog-auto-reg-input, verilog-decls-get-signals): Fix AUTOWIRE
19593 to declares outputs that also have assignments (presumably in an
19594 ifdef or generate if so there's not a driver conflict).
19595 Reported by Matthew Myers.
19596 (verilog-auto-declare-nettype, verilog-insert-definition):
19597 Add verilog-auto-declare-nettype to fix declarations using
19598 `default_nettype none. Reported by Julian Gorfajn.
19599 (verilog-read-always-signals-recurse, verilog-read-decls)
19600 (verilog-read-sub-decls-gate): Fix infinite loop with (*) and
19601 malformed end statement, bug325. Reported by Joshua Wise and
19602 Andrew Drake.
19603 (verilog-auto-star-safe, verilog-delete-auto-star-implicit)
19604 (verilog-inst-comment-re): Fix not deleting Interfaced comment
19605 when expanding .* in interfaces, bug320.
19606 Reported by Pierre-David Pfister.
19607 (verilog-read-module-name): Fix import statements between module
19608 name and open parenthesis, bug317.
19609 Reported by Pierre-David Pfister.
19610 (verilog-simplify-range-expression): Fix simplification of
19611 multiplications inside AUTOWIRE connections, bug303.
19612 (verilog-auto-inst-port): Support parameter expansion in
19613 multidimensional arrays.
19614 (verilog-read-decls): Fix AUTOREG etc looking for "endproperty"
19615 after "assert property". Reported by Julian Gorfajn.
19616 (verilog-simplify-range-expression): Fix "couldn't merge" errors
19617 with multiplication, bug303.
19618 (verilog-read-decls): Fix parsing of unsigned data types, bug302.
19619 Reported by Jan Frode Lonnum.
19620
19621 2011-11-30 Juanma Barranquero <lekktu@gmail.com>
19622
19623 * htmlfontify.el (hfy-page-header, hfy-post-html-hooks)
19624 (hfy-shell-file-name, hfy-shell):
19625 * international/fontset.el (x-decompose-font-name): Fix typos.
19626
19627 2011-11-29 Ken Brown <kbrown@cornell.edu>
19628
19629 * progmodes/gdb-mi.el: Fix bug#9853, bug#9858, and bug#9878.
19630 (gdb-version): Remove defvar.
19631 (gdb-supports-non-stop): New defvar, replacing `gdb-version'.
19632 (gdb-gud-context-command, gdb-non-stop-handler)
19633 (gdb-current-context-command, gdb-stopped): Use it.
19634 (gdb-init-1): Enable pretty printing here.
19635 (gdb-non-stop-handler): Don't enable pretty-printing here.
19636 Check to see if the target supports non-stop mode; if not, turn off
19637 non-stop mode. Use the following.
19638 (gdb-check-target-async): New defun.
19639 (gud-watch, gdb-stopped): Fix whitespace.
19640 (gdb-get-source-file): Don't try to display the source file if
19641 `gdb-main-file' is nil.
19642
19643 2011-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
19644
19645 * align.el: Try to generate fewer markers (bug#10047).
19646 (align--set-marker): New macro.
19647 (align-region): Use it.
19648
19649 2011-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
19650
19651 * isearch.el (isearch-yank-x-selection): Deactivate mark (bug#10022).
19652
19653 2011-11-29 Chong Yidong <cyd@gnu.org>
19654
19655 * indent.el (indent-for-tab-command, indent-according-to-mode):
19656 Doc fix.
19657 (indent-region): Doc fix. Switch nested ifs to equivalent cond.
19658
19659 2011-11-29 Michael Albinus <michael.albinus@gmx.de>
19660
19661 * vc/diff-mode.el (diff-find-file-name): Make `read-file-name'
19662 aware of remote file names. (Bug#10124)
19663
19664 2011-11-29 Chong Yidong <cyd@gnu.org>
19665
19666 * frame.el (auto-raise-mode, auto-lower-mode): Doc fix.
19667
19668 2011-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
19669
19670 * files.el (find-file): Don't use force-same-window (bug#10144).
19671 * window.el (switch-to-buffer): Better match Emacs-23 behavior and only
19672 use pop-to-buffer if the selected window can't be used.
19673 (pop-to-buffer-same-window): Use display-buffer--same-window-action.
19674
19675 2011-11-28 Eli Zaretskii <eliz@gnu.org>
19676
19677 * vc/diff-mode.el (diff-mode-map): Don't inherit 'z' => 'M-z' from
19678 special-mode-map.
19679
19680 2011-11-28 Chong Yidong <cyd@gnu.org>
19681
19682 * emacs-lisp/easy-mmode.el (define-minor-mode): Fix default doc.
19683
19684 2011-11-27 Nick Roberts <nickrob@snap.net.nz>
19685
19686 * progmodes/gdb-mi.el (gdb-init-1): Condition execution of
19687 gdb-get-source-file-list on gdb-create-source-file-list.
19688
19689 2011-11-26 Eli Zaretskii <eliz@gnu.org>
19690
19691 * whitespace.el (whitespace-newline): Use a different foreground
19692 color for 16-color light-background displays.
19693
19694 2011-11-24 Chong Yidong <cyd@gnu.org>
19695
19696 * window.el (display-buffer--special-action): Doc fix.
19697
19698 2011-11-25 Juanma Barranquero <lekktu@gmail.com>
19699
19700 * emacs-lisp/avl-tree.el (avl-tree--do-copy, avl-tree-create)
19701 (avl-tree-compare-function, avl-tree-empty, avl-tree-enter)
19702 (avl-tree-delete, avl-tree-member, avl-tree-member-p, avl-tree-map)
19703 (avl-tree-mapc, avl-tree-mapf, avl-tree-mapcar, avl-tree-copy)
19704 (avl-tree-clear, avl-tree-stack, avl-tree-stack-pop)
19705 (avl-tree-stack-first):
19706 * emacs-lisp/cconv.el (cconv--analyse-use):
19707 * net/gnutls.el (gnutls-negotiate): Fix typos.
19708
19709 2011-11-24 Glenn Morris <rgm@gnu.org>
19710
19711 * lpr.el (lpr-windows-system, lpr-lp-system):
19712 * mail/binhex.el (binhex-begin-line):
19713 * progmodes/grep.el (grep-history, grep-find-history):
19714 * textmodes/flyspell.el:
19715 * vc/pcvs-defs.el (cvs-global-menu):
19716 * vc/vc-bzr.el (vc-bzr-admin-checkout-format-file):
19717 * vc/vc-mtn.el (vc-mtn-admin-dir, vc-mtn-admin-format):
19718 * vc/vc-cvs.el (vc-cvs-registered): Give them basic doc-strings.
19719
19720 * net/tls.el: Fix case of "GnuTLS".
19721
19722 * paths.el (rmail-file-name): Format doc-string for make-docfile.
19723
19724 * version.el (emacs-build-system): Give it a doc-string.
19725
19726 2011-11-24 Juri Linkov <juri@jurta.org>
19727
19728 * view.el (view-buffer): Revert 2011-07-19T15:01:49Z!larsi@gnus.org from 2011-07-19 (bug#8615).
19729
19730 2011-11-24 Glenn Morris <rgm@gnu.org>
19731
19732 * mail/rmailmm.el (rmail-mime): When rmail-enable-mime is non-nil,
19733 if called on a non-mime message just toggle the headers. (Bug#8006)
19734
19735 2011-11-24 Juanma Barranquero <lekktu@gmail.com>
19736
19737 * allout.el (allout-setup, allout-auto-save-temporarily-disabled)
19738 (allout-lead-with-comment-string, allout-structure-deleted-hook)
19739 (allout-mode, allout-chart-subtree, allout-hotspot-key-handler)
19740 (allout-rebullet-heading, allout-open-sibtopic)
19741 (allout-toggle-current-subtree-encryption)
19742 (allout-toggle-subtree-encryption, allout-encrypt-string)
19743 (allout-next-topic-pending-encryption, allout-adjust-file-variable)
19744 (allout-distinctive-bullets-string, allout-auto-activation):
19745 * window.el (window-normalize-buffer-to-display):
19746 * progmodes/verilog-mode.el (verilog-batch-indent):
19747 * textmodes/bibtex.el (bibtex-field-braces-opt)
19748 (bibtex-field-strings-opt):
19749 * vc/cvs-status.el (cvs-tree-merge):
19750 Fix typos.
19751
19752 2011-11-23 Michael Albinus <michael.albinus@gmx.de>
19753
19754 * rfn-eshadow.el (rfn-eshadow-update-overlay): Let-bind
19755 `non-essential' to t, in order to avoid remote connections.
19756
19757 2011-11-23 Eli Zaretskii <eliz@gnu.org>
19758
19759 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
19760 On MS-DOS and MS-Windows, compare with loaddefs.el
19761 case-insensitively.
19762
19763 2011-11-23 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
19764
19765 * mail/unrmail.el (unrmail): Always add blank line. (Bug#7743)
19766
19767 2011-11-23 Glenn Morris <rgm@gnu.org>
19768
19769 * paths.el (rmail-file-name): Reformat the doc-string so that it
19770 is picked up.
19771
19772 * mail/rmail.el (rmail-message-filter, rmail-auto-file): Doc fixes.
19773 (rmail-auto-file): Ignore case in the "special" field names,
19774 as mail-fetch-field does for all others.
19775
19776 * mail/rmail.el (rmail-forward):
19777 * mail/rmailkwd.el (rmail-set-label):
19778 * mail/rmailout.el (rmail-output, rmail-output-as-seen)
19779 (rmail-output-body-to-file): Give error if no message. (Bug#10082)
19780
19781 * mail/rmail.el (rmail-current-message): Doc fix.
19782
19783 * mail/rmail.el (rmail-message-filter): Mark as obsolete. (Bug#2624)
19784
19785 2011-11-22 Stefan Monnier <monnier@iro.umontreal.ca>
19786
19787 * server.el (server-eval-and-print): Allow C-g (bug#6585).
19788
19789 2011-11-22 Glenn Morris <rgm@gnu.org>
19790
19791 * mail/rmailmm.el (test-rmail-mime-handler)
19792 (test-rmail-mime-bulk-handler)
19793 (test-rmail-mime-multipart-handler): Move tests to test/ directory.
19794
19795 2011-11-21 Juri Linkov <juri@jurta.org>
19796
19797 * calc/calc.el (calc-read-key-sequence):
19798 Let-bind `input-method-function' to nil. (Bug#10018)
19799
19800 2011-11-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
19801
19802 * emacs-lisp/cl-indent.el (common-lisp-loop-part-indentation):
19803 Tell the caller that the next line needs recomputation, even
19804 though it doesn't start a sexp (bug#10094).
19805
19806 2011-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
19807
19808 * emacs-lisp/autoload.el (autoload-generate-file-autoloads): Simplify.
19809
19810 2011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
19811
19812 * vc/pcvs-util.el (cvs-pop-to-buffer-same-frame):
19813 Use force-same-window.
19814
19815 2011-11-20 Juanma Barranquero <lekktu@gmail.com>
19816
19817 * descr-text.el (describe-char-unicode-data):
19818 * json.el (json-string-escape):
19819 * mail/footnote.el (footnote-unicode-string, footnote-unicode-regexp)
19820 (Footnote-unicode, Footnote-style-p):
19821 * net/ntlm.el (ntlm-get-password-hashes): Fix typos.
19822
19823 2011-11-20 Chong Yidong <cyd@gnu.org>
19824
19825 * window.el (replace-buffer-in-windows): Restore interactive spec.
19826
19827 2011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
19828
19829 * electric.el (electric-indent-mode): Fix last change (too optimistic).
19830
19831 * emacs-lisp/bytecomp.el: Silence obsolete warnings more reliably.
19832 (byte-compile-global-not-obsolete-vars): New var.
19833 (byte-compile-check-variable, byte-compile-make-obsolete-variable):
19834 Use it.
19835 (byte-compile-warn-obsolete): Align text with the one in *Help*.
19836
19837 2011-11-20 Juanma Barranquero <lekktu@gmail.com>
19838
19839 * progmodes/cwarn.el (cwarn-is-enabled, cwarn-font-lock-keywords):
19840 * progmodes/pascal.el (electric-pascal-equal):
19841 * textmodes/reftex-dcr.el (reftex-view-crossref-from-bibtex):
19842 * xml.el (xml-substitute-special): Fix typos.
19843
19844 2011-11-20 Glenn Morris <rgm@gnu.org>
19845
19846 * mail/rmail.el (rmail-enable-mime-composing): Make it a defcustom.
19847 (rmail-insert-mime-forwarded-message-function, rmail-mime-feature):
19848 Doc fixes.
19849 (rmail-decode-mime-charset): Mark as obsolete.
19850
19851 * mail/rmailsum.el (rmail-message-regexp-p-1):
19852 * mail/rmail.el (rmail-search-message, rmail-forward, rmail-resend):
19853 Before using mime functions, check they are set. (Bug#10077)
19854
19855 2011-11-19 Juri Linkov <juri@jurta.org>
19856
19857 * info.el (Info-finder-find-node): Use `package--builtins' instead
19858 of `package-alist'. Use node names formed by the pattern "Keyword "
19859 and the keyword name.
19860
19861 2011-11-19 Andreas Schwab <schwab@linux-m68k.org>
19862
19863 * progmodes/sh-script.el (sh-assignment-regexp): Add entry for bash.
19864
19865 2011-11-19 Juri Linkov <juri@jurta.org>
19866
19867 * info.el (Info-hide-note-references): Add `:set' tag to `defcustom'
19868 that calls `revert-buffer' on all Info buffers. (Bug#9915)
19869 (Info-revert-find-node): Remove let-bindings `old-buffer-name',
19870 `old-history', `old-history-forward'. Add let-binding
19871 `window-selected'. Remove calls to `kill-buffer',
19872 `switch-to-buffer' and `Info-mode'. Set `Info-current-file' to nil
19873 before calling `Info-find-node', so `Info-find-node-2' will reread
19874 the Info file. Restore window positions only when `window-selected'
19875 is non-nil.
19876
19877 2011-11-19 Juri Linkov <juri@jurta.org>
19878
19879 * isearch.el (isearch-lazy-highlight-new-loop):
19880 Remove condition `(not isearch-error)'. (Bug#9918)
19881
19882 * misearch.el (multi-isearch-search-fun): Add condition
19883 `(not bound)' to ignore lazy-highlighting search.
19884 Add the search-failed message "end of multi" when the end of
19885 multi-sequence is reached. Uncapitalize the search-failed
19886 message "Repeat for next buffer".
19887
19888 * info.el (Info-search): Add the search-failed message
19889 "end of the manual" when the end of the manual is reached
19890 in Isearch mode.
19891
19892 2011-11-19 Juri Linkov <juri@jurta.org>
19893
19894 * info.el (Info-find-node-2, Info-select-node, Info-history-find-node):
19895 Use non-destructive `remove' instead of `delete' because
19896 `Info-history-list' stored to `Info-isearch-initial-history-list' in
19897 `Info-isearch-start' might need to be restored in `Info-isearch-end'.
19898
19899 2011-11-19 Juri Linkov <juri@jurta.org>
19900
19901 * isearch.el (isearch-edit-string): Let-bind `history-add-new-input'
19902 to nil instead of binding `search-ring' and `regexp-search-ring'.
19903 (Bug#9185)
19904
19905 2011-11-19 Eli Zaretskii <eliz@gnu.org>
19906
19907 * simple.el (line-move): Force movement by logical lines for any
19908 hscrolled window, not only when auto-hscroll-mode is on.
19909 (line-move-visual): Update doc string to that effect. (Bug#10076)
19910
19911 2011-11-19 Andreas Schwab <schwab@linux-m68k.org>
19912
19913 * language/european.el (macintosh): Define as alias for mac-roman.
19914
19915 2011-11-19 Eli Zaretskii <eliz@gnu.org>
19916
19917 * mail/rmailmm.el (rmail-mime-display-header)
19918 (rmail-mime-display-tagline, rmail-mime-display-body): New defsubsts.
19919 (rmail-mime-entity-segment, rmail-mime-toggle-raw)
19920 (rmail-mime-toggle-hidden, rmail-mime-insert-text)
19921 (rmail-mime-insert-bulk, rmail-mime-insert-multipart)
19922 (rmail-mime-insert, rmail-mime-insert-tagline): Use them instead
19923 of a raw aref.
19924 (rmail-mime-entity-segment): To get past the tagline, move forward
19925 2 more lines, to account for the 2 empty lines that precede and
19926 follow the line with the buttons.
19927 (rmail-mime-update-tagline): Move one more line, to get past the
19928 empty line that follows the buttons in the tagline. (Bug#9520)
19929
19930 2011-11-19 Martin Rudalics <rudalics@gmx.at>
19931
19932 * window.el (window-max-delta-1, window-min-delta-1)
19933 (window-min-size-1, window-state-get-1, window-state-put-1)
19934 (window-state-put-2): Use "window--" prefix.
19935
19936 2011-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
19937
19938 * emacs-lisp/smie.el: Improve warnings and conflict detection.
19939 (smie-warning-count): New var.
19940 (smie-set-prec2tab): Use it.
19941 (smie-bnf->prec2): Improve warnings. Add docstring.
19942 (smie-bnf--closer-alist): Rename from smie-bnf-closer-alist.
19943 (smie-bnf--set-class): New function.
19944 (smie-bnf--classify): Rename from smie-bnf-classify. Rewrite to fix
19945 corner case.
19946
19947 * progmodes/compile.el: Obey compilation-first-column in dest buffer.
19948 (compilation-error-properties, compilation-move-to-column):
19949 Handle compilation-first-column while in the target buffer.
19950
19951 * progmodes/cc-engine.el (c-remove-stale-state-cache-backwards):
19952 Don't hardcode point-min==1.
19953
19954 * eshell/esh-cmd.el (eshell-do-eval): Handle `setq' (bug#9907).
19955 (eshell-rewrite-for-command): Remove workaround.
19956 (eshell-do-pipelines, eshell-do-pipelines-synchronously)
19957 (eshell-do-eval, eshell-exec-lisp): Avoid gratuitous setq.
19958 * eshell/esh-util.el (eshell-condition-case, eshell-for): Use declare.
19959
19960 * files-x.el (modify-file-local-variable): Obey commenting conventions.
19961
19962 2011-11-17 Glenn Morris <rgm@gnu.org>
19963
19964 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
19965 Ignore buffer-local generated-autoload-file if it is the same
19966 as the global value. (Bug#10049)
19967
19968 2011-11-17 Juanma Barranquero <lekktu@gmail.com>
19969
19970 * textmodes/reftex-toc.el (reftex-toc-return-marker, reftex-toc-help)
19971 (reftex-toc, reftex-toc, reftex-toc-dframe-p, reftex-toc-next-heading)
19972 (reftex-toc-previous-heading, reftex-toc-max-level)
19973 (reftex-toc-goto-line-and-hide, reftex-toc-show-calling-point)
19974 (reftex-toc-quit, reftex-toc-revert, reftex-toc-jump)
19975 (reftex-toc-do-promote, reftex-toc-promote-prepare)
19976 (reftex-toc-promote-action, reftex-toc-extract-section-number)
19977 (reftex-toc-load-all-files-for-promotion, reftex-toc-rename-label)
19978 (reftex-toc-rename-label, reftex-toc-visit-location)
19979 (reftex-toc-visit-location, reftex-toggle-auto-toc-recenter)
19980 (reftex-toggle-auto-toc-recenter, reftex-toggle-auto-toc-recenter)
19981 (reftex-make-separate-toc-frame): Fix typos, and use TOC consistently,
19982 leaving "*toc*" only for references to the buffer.
19983
19984 2011-11-17 Martin Rudalics <rudalics@gmx.at>
19985
19986 * window.el (window-resize, delete-window, split-window):
19987 Replace window-splits by window-combination-resize.
19988 * cus-start.el (window-splits): Replace by window-combination-resize.
19989
19990 2011-11-17 Glenn Morris <rgm@gnu.org>
19991
19992 * progmodes/sh-script.el (sh-font-lock-keywords-var):
19993 Make bash entry derive from sh entry, not shell entry.
19994
19995 2011-11-16 Michael Albinus <michael.albinus@gmx.de>
19996
19997 * net/tramp-sh.el (tramp-sh-handle-file-truename): Cache only the
19998 local file name.
19999
20000 2011-11-16 Juanma Barranquero <lekktu@gmail.com>
20001
20002 * menu-bar.el (menu-bar-file-menu):
20003 * printing.el (pr-ps-utility):
20004 * calendar/icalendar.el (icalendar, icalendar--convert-tz-offset)
20005 (icalendar--convert-to-ical, icalendar--convert-ordinary-to-ical)
20006 (icalendar--convert-weekly-to-ical, icalendar--convert-yearly-to-ical)
20007 (icalendar--convert-sexp-to-ical, icalendar--convert-block-to-ical)
20008 (icalendar--convert-float-to-ical, icalendar--convert-date-to-ical)
20009 (icalendar--convert-cyclic-to-ical)
20010 (icalendar--convert-anniversary-to-ical, icalendar-import-buffer)
20011 (icalendar--convert-ical-to-diary)
20012 (icalendar--convert-recurring-to-diary)
20013 (icalendar--convert-non-recurring-all-day-to-diary)
20014 (icalendar-import-format-sample):
20015 * progmodes/idlw-shell.el (idlwave-shell-mode):
20016 * progmodes/vhdl-mode.el (vhdl-mode, vhdl-print-two-column)
20017 (vhdl-print-customize-faces, vhdl-mode, vhdl-ps-print-settings)
20018 (vhdl-ps-print-init): Fix typos.
20019
20020 2011-11-16 Ken Manheimer <ken.manheimer@gmail.com>
20021
20022 * allout.el, allout-widgets.el (file metadata): Attribute copyright to
20023 FSF and collapse date sequence, obscure author/maintainer email address
20024 better, remove extra version line, track relocation of author's webpage.
20025
20026 * progmodes/python.el (python-pdbtrack-input-prompt)
20027 (python-pdbtrack-track-stack-file): Adjust to recognize ipdb as well as
20028 regular python pdb prompts. Adjustments shamelessly taken exactly as
20029 suggested in EmacsWiki page (tiny change):
20030 http://www.emacswiki.org/PythonProgrammingInEmacs#toc14
20031
20032 2011-11-16 Juanma Barranquero <lekktu@gmail.com>
20033
20034 * expand.el (expand-pos, expand-index, expand-point):
20035 Remove redundant info from docstring.
20036 (expand-add-abbrevs): Doc fix.
20037 (expand-c-sample-expand-list, expand-sample-lisp-mode-expand-list)
20038 (expand-sample-perl-mode-expand-list): Fix typos.
20039
20040 * net/dbus.el (dbus-event-member-name):
20041 * play/5x5.el (5x5-solve-rotate-left, 5x5-solver-output):
20042 * term/pc-win.el (msdos-create-frame-with-faces):
20043 * textmodes/texinfmt.el (texinfo-format-image): Fix typos.
20044
20045 2011-11-16 Martin Rudalics <rudalics@gmx.at>
20046
20047 * window.el (split-window, window-state-get-1)
20048 (window-state-put-1, window-state-put-2): Rename occurrences of
20049 window-nest to window-combination-limit.
20050 * cus-start.el (window-nest): Rename to window-combination-limit.
20051
20052 2011-11-16 Chong Yidong <cyd@gnu.org>
20053
20054 * progmodes/autoconf.el (autoconf-mode): Fix comment-start-skip
20055 regexp (Bug#10033).
20056
20057 2011-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
20058
20059 * tmm.el (tmm-prompt): Use minibuffer-with-setup-hook (bug#10053).
20060 `completing-read' will remove *Completions* and will preserve
20061 current-buffer for us.
20062 (tmm-add-prompt): Users of *Completions* will always (re)set its
20063 major mode.
20064 (tmm-old-comp-map): Remove.
20065
20066 2011-11-16 Glenn Morris <rgm@gnu.org>
20067
20068 * mail/rmailedit.el: Require rmailmm when compiling.
20069 (rmail-old-mime-state): New declaration.
20070 (rmail-edit-current-message): If editing a mime message,
20071 edit the "raw" message from the mbox buffer.
20072 (rmail-cease-edit): Handle mime messages. (Bug#9840)
20073
20074 2011-11-15 Glenn Morris <rgm@gnu.org>
20075
20076 * mail/rmailmm.el (rmail-mime-toggle-raw): Remove entity arg,
20077 which wasn't being used. Add optional arg to force given state.
20078 (rmail-mime): Add optional arg to force given state.
20079
20080 2011-11-15 Juanma Barranquero <lekktu@gmail.com>
20081
20082 * allout.el (allout-encryption-plaintext-sanitization-regexps):
20083 * frame.el (display-mm-dimensions-alist):
20084 * outline.el (outline-mode-menu-bar-map, outline-move-subtree-up)
20085 (outline-move-subtree-down):
20086 * net/newst-treeview.el (newsticker--treeview-do-get-node-of-feed)
20087 (newsticker--treeview-do-get-node):
20088 * net/quickurl.el (quickurl-list-buffer-name):
20089 * progmodes/dcl-mode.el (dcl-mode):
20090 * progmodes/gdb-mi.el (gdb-mapcar*):
20091 * progmodes/sql.el (sql-mode-oracle-font-lock-keywords): Fix typos.
20092
20093 2011-11-15 Glenn Morris <rgm@gnu.org>
20094
20095 * mail/rmail.el (rmail-file-coding-system): It's only ever used
20096 in a boolean sense, so just make it a boolean, and fix the doc.
20097 (rmail-show-mime-function, rmail-mime-feature)
20098 (rmail-require-mime-maybe): Doc fixes.
20099 (rmail-show-message-1): Check rmail-show-mime-function is non-nil.
20100
20101 * mail/rmailmm.el (rmail-show-mime): Doc fix.
20102
20103 2011-11-15 Juanma Barranquero <lekktu@gmail.com>
20104
20105 * epg.el (epg-start-decrypt, epg-start-verify, epg-start-sign)
20106 (epg-start-encrypt, epg-start-export-keys, epg-start-import-keys)
20107 (epg-start-receive-keys, epg-start-delete-keys, epg-start-sign-keys)
20108 (epg-start-generate-key, epg-context-set-progress-callback): Fix typos.
20109
20110 2011-11-15 Glenn Morris <rgm@gnu.org>
20111
20112 * mail/rmailmm.el (rmail-mime-entity, rmail-mime-entity-segment)
20113 (rmail-mime-shown-mode, rmail-mime-hidden-mode, rmail-mime-raw-mode)
20114 (rmail-mime-toggle-hidden, rmail-mime-insert-tagline)
20115 (rmail-mime-insert-header, rmail-mime-handle, rmail-mime-parse)
20116 (rmail-mime, rmail-show-mime): Doc fixes.
20117
20118 * term/ns-win.el (mode-line-frame-identification):
20119 Leave it alone. (Bug#10051)
20120
20121 * simple.el (mark-whole-buffer): Doc fix. (Bug#10023)
20122
20123 * mail/rmailout.el (rmail-output-to-rmail-buffer):
20124 Handle empty buffers. (Bug#9978)
20125
20126 2011-11-14 Juanma Barranquero <lekktu@gmail.com>
20127
20128 * international/mule.el (define-charset):
20129 * mail/rmailmm.el (rmail-mime-find-header-encoding):
20130 * progmodes/prolog.el (prolog-mode-hook, prolog-inferior-mode-hook):
20131 * progmodes/verilog-mode.el (verilog-backward-token):
20132 * textmodes/ispell.el (lookup-words):
20133 * textmodes/sgml-mode.el (sgml-guess-indent): Fix typos.
20134
20135 2011-11-14 Glenn Morris <rgm@gnu.org>
20136
20137 * progmodes/executable.el
20138 (executable-make-buffer-file-executable-if-script-p):
20139 Handle file-modes returning nil.
20140
20141 * mail/rmailsum.el (rmail-summary): Remove movement to beginning of
20142 message - not necessary, and causes problems. (Bug#9831)
20143
20144 * mail/rmailsum.el (rmail-new-summary): Preserve message number.
20145
20146 * mail/rmail.el (rmail-no-mail-p): Remove mode-line N/M indicator.
20147
20148 * mail/rmailsum.el (rmail-summary, rmail-new-summary)
20149 (rmail-new-summary-1): Allow empty summaries. (Bug#9964)
20150 (rmail-new-summary): Remember that rmail-summary-buffer is buffer-local.
20151
20152 2011-11-12 Martin Rudalics <rudalics@gmx.at>
20153
20154 * window.el (window-resize, delete-window): Use window-splits
20155 variable instead of function.
20156 (window-state-get-1, window-state-put-2, window-state-put):
20157 Don't deal with windows' splits status.
20158
20159 2011-11-12 Glenn Morris <rgm@gnu.org>
20160
20161 * apropos.el (apropos-do-all, apropos-library, apropos-value)
20162 (apropos-documentation): Doc fixes.
20163
20164 2011-11-11 Juanma Barranquero <lekktu@gmail.com>
20165
20166 * progmodes/idlw-shell.el (idlwave-shell-make-new-bp-overlay):
20167 * textmodes/sgml-mode.el (html-tag-help): Fix typos.
20168
20169 2011-11-11 Stefan Monnier <monnier@iro.umontreal.ca>
20170
20171 * electric.el (electric-indent-post-self-insert-function): Make it
20172 possible for a char to only indent in some circumstances.
20173 (electric-indent-mode): Simplify.
20174
20175 2011-11-11 Martin Rudalics <rudalics@gmx.at>
20176
20177 * window.el (windows-with-parameter): Remove unused function.
20178 (windows-at-side): Rename to window-at-side-list.
20179 (window-check, window-atom-check, window-atom-check-1)
20180 (window-side-check, window-size-ignore, window-size-fixed-1)
20181 (window-in-direction-2): Prefix with "window--".
20182 (window-tree-1): Rename to window--subtree, fix doc-string.
20183
20184 2011-11-11 Glenn Morris <rgm@gnu.org>
20185
20186 * subr.el (eval-after-load): If FILE is already loaded,
20187 evaluate FORM before it gets wrapped in more stuff. (Bug#10009)
20188
20189 2011-11-10 Glenn Morris <rgm@gnu.org>
20190
20191 * vc/vc-svn.el (vc-svn-create-repo, vc-svn-modify-change-comment):
20192 Call svn via vc-svn-command rather than vc-do-command.
20193 (vc-svn-command): Add --non-interactive. (Bug#9993)
20194 (vc-svn-update, vc-svn-merge-news): No need for --non-interactive.
20195
20196 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
20197 Add toggle-read-only. (Bug#7292)
20198 * files.el (toggle-read-only): Mention that it should only
20199 be used interactively. (Bug#10006)
20200
20201 2011-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
20202
20203 * progmodes/compile.el (compilation-error-regexp-alist-alist):
20204 Adjust regexp for OCaml warnings.
20205
20206 * electric.el (electric-pair-post-self-insert-function): Let user
20207 turn it off buffer-locally (bug#9932).
20208
20209 * progmodes/python.el (python-beginning-of-statement):
20210 Rewrite (bug#2703).
20211
20212 * progmodes/compile.el: Better handle TABs (bug#9749).
20213 (compilation-internal-error-properties)
20214 (compilation-next-error-function): Obey the target buffer's
20215 compilation-error-screen-columns.
20216
20217 2011-11-09 Juanma Barranquero <lekktu@gmail.com>
20218
20219 * progmodes/meta-mode.el: Remove obsolete comments.
20220 (meta-right-comment-regexp, meta-ignore-comment-regexp):
20221 Fix typos in docstrings.
20222
20223 2011-11-09 Martin Rudalics <rudalics@gmx.at>
20224
20225 * window.el (window-size-fixed-p): Rewrite doc-string.
20226 (window-resizable-p): Rename to window--resizable-p. Update callers.
20227 (window--resizable): New function. Make all callers of
20228 window-resizable call window--resizable instead.
20229 (window-resizable): Rewrite in terms of window--resizable.
20230
20231 2011-11-08 Glenn Morris <rgm@gnu.org>
20232
20233 * progmodes/delphi.el (delphi-mode-syntax-table):
20234 Let define-derived-mode define a proper syntax table. (Bug#9994)
20235
20236 2011-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
20237
20238 * window.el: Stay away from defsubst.
20239 (window-list-no-nils): Remove.
20240 (window-state-get-1, window-state-get): Use backquote instead.
20241
20242 2011-11-08 Thierry Volpiatto <thierry.volpiatto@gmail.com>
20243
20244 * emacs-lisp/find-func.el (find-function-read):
20245 Fix incorrect use of default argument in `completing-read'.
20246
20247 2011-11-08 Martin Rudalics <rudalics@gmx.at>
20248
20249 * window.el (display-buffer-function, special-display-function):
20250 Mention display-buffer-record-window but do not mention
20251 help-setup parameter in doc-strings.
20252 (window-min-delta): Fix doc-string typo.
20253
20254 2011-11-08 Chong Yidong <cyd@gnu.org>
20255
20256 * window.el (window-total-height, window-total-width): Doc fix.
20257 (window-body-size): Move from C.
20258 (window-body-height, window-body-width): Move to C.
20259
20260 2011-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
20261
20262 * window.el: Make special-display like display-buffer-alist (bug#9532).
20263 (display-buffer--special-action): New function, morphed
20264 from display-buffer--special.
20265 (display-buffer): Use it to handle special-display-buffers at higher
20266 priority (just after display-buffer-alist).
20267 (display-buffer-fallback-action, display-buffer--other-frame-action)
20268 (pop-to-buffer-same-window): Remove display-buffer--special.
20269
20270 2011-11-07 Glenn Morris <rgm@gnu.org>
20271
20272 * calendar/cal-menu.el (cal-menu-set-date-title):
20273 Do nothing if not in a calendar. (Bug#9976)
20274
20275 2011-11-07 Stefan Monnier <monnier@iro.umontreal.ca>
20276
20277 * files.el (find-file): Always use selected-window.
20278
20279 2011-11-07 Martin Rudalics <rudalics@gmx.at>
20280
20281 * window.el (window-combinations): Make WINDOW argument
20282 mandatory. Rewrite doc-string.
20283 (walk-window-subtree, window-atom-check, window-min-delta)
20284 (window-max-delta, window--resize-this-window)
20285 (window--resize-root-window-vertically, window-tree)
20286 (balance-windows, window-state-put): Rewrite doc-strings as to
20287 not mention the term "subwindow".
20288 (window--resize-subwindows-skip-p): Rename to
20289 window--resize-child-windows-skip-p.
20290 (window--resize-subwindows-normal): Rename to
20291 window--resize-child-windows-normal.
20292 (window--resize-subwindows): Rename to
20293 window--resize-child-windows.
20294 (window-or-subwindow-p): Rename to window--in-subtree-p.
20295
20296 2011-11-07 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
20297
20298 * mail/rmail.el (rmail-get-new-mail, rmail-insert-inbox-text):
20299 Ensure that mbox format messages end in two newlines (Bug#9974).
20300
20301 2011-11-06 Chong Yidong <cyd@gnu.org>
20302
20303 * window.el (window-combination-p): Function deleted; its
20304 side-effect is not used in any existing code.
20305 (window-combinations, window-combined-p): Call window-*-child
20306 directly.
20307
20308 2011-11-05 Chong Yidong <cyd@gnu.org>
20309
20310 * window.el (window-valid-p): Rename from window-any-p.
20311 (window-size-ignore, window-state-get): Callers changed.
20312 (window-normalize-window): Rename from window-normalize-any-window.
20313 New arg LIVE-ONLY, replacing window-normalize-live-window.
20314 (window-normalize-live-window): Delete.
20315 (window-combination-p, window-combined-p, window-combinations)
20316 (walk-window-subtree, window-atom-root, window-min-size)
20317 (window-sizable, window-sizable-p, window-size-fixed-p)
20318 (window-min-delta, window-max-delta, window-resizable)
20319 (window-resizable-p, window-full-height-p, window-full-width-p)
20320 (window-current-scroll-bars, window-point-1, set-window-point-1)
20321 (window-at-side-p, window-in-direction, window-resize)
20322 (adjust-window-trailing-edge, maximize-window, minimize-window)
20323 (window-deletable-p, delete-window, delete-other-windows)
20324 (record-window-buffer, unrecord-window-buffer)
20325 (switch-to-prev-buffer, switch-to-next-buffer, window--delete)
20326 (quit-window, split-window, window-state-put)
20327 (set-window-text-height, fit-window-to-buffer)
20328 (shrink-window-if-larger-than-buffer): Callers changed.
20329
20330 2011-11-04 Eli Zaretskii <eliz@gnu.org>
20331
20332 * mail/rmail.el (rmail-simplified-subject): Decode subject with
20333 rfc2047-decode-string.
20334 (rmail-mime-toggle-hidden): Declare to avoid byte-compilation
20335 warnings.
20336
20337 * window.el (window-body-height, window-body-width): Mention in
20338 the doc string that the return values are in frame's canonical
20339 units. (Bug#9949)
20340
20341 2011-11-03 Alan Mackenzie <acm@muc.de>
20342
20343 * progmodes/cc-langs.el (c-nonlabel-token-2-key): New variable for
20344 change in cc-engine.el.
20345
20346 2011-11-02 Stefan Monnier <monnier@iro.umontreal.ca>
20347
20348 * window.el (switch-to-buffer): Use `force-same-window' interactively.
20349
20350 2011-11-02 Martin Rudalics <rudalics@gmx.at>
20351
20352 * window.el (quit-window): Call unrecord-window-buffer after
20353 showing another buffer in the window. (Bug#9937)
20354 (bury-buffer): Call switch-to-prev-buffer with second argument `bury'.
20355
20356 2011-11-02 Juanma Barranquero <lekktu@gmail.com>
20357
20358 * vc/vc-bzr.el (vc-bzr-state, vc-bzr-after-dir-status):
20359 Accept status with more than 9 shelves. (Bug#9935)
20360 Reported by Colin D Bennett <colin@gibibit.com>.
20361
20362 2011-11-01 Martin Rudalics <rudalics@gmx.at>
20363
20364 * help.el (with-help-window): Don't reference
20365 temp-buffer-show-specifiers in doc-string.
20366
20367 2011-10-31 Andreas Schwab <schwab@linux-m68k.org>
20368
20369 * subr.el (keymap--menu-item-with-binding): Ignore item if not a
20370 menu-item.
20371
20372 2011-10-30 Vinicius Jose Latorre <viniciusjl@ig.com.br>
20373
20374 * whitespace.el: New version 13.2.2.
20375 (whitespace-newline-mode): Disable properly. Reported by Sarah
20376 <EmacsWiki>.
20377
20378 2011-10-30 Ulf Jasper <ulf.jasper@web.de>
20379
20380 * net/newst-treeview.el: Remove "Time-stamp".
20381 (newsticker--group-manage-orphan-feeds): Do not call
20382 newsticker--treeview-tree-update.
20383 (newsticker-treeview-update, newsticker-treeview):
20384 Call newsticker--treeview-tree-update if necessary.
20385
20386 2011-10-30 Martin Rudalics <rudalics@gmx.at>
20387
20388 * window.el (window-iso-combination-p, window-iso-combined-p)
20389 (window-iso-combinations): Remove "iso-" infix.
20390 Suggested by Chong Yidong.
20391 (window-min-size-1, window-size-fixed-1, window-min-delta-1)
20392 (window-max-delta-1, window-resize, window--resize-siblings)
20393 (window--resize-this-window, adjust-window-trailing-edge)
20394 (split-window, balance-windows-1)
20395 (shrink-window-if-larger-than-buffer):
20396 * calendar/calendar.el (calendar-generate-window):
20397 * help.el (resize-temp-buffer-window): Adjust callers accordingly.
20398
20399 2011-10-30 Stefan Monnier <monnier@iro.umontreal.ca>
20400
20401 * eshell/esh-cmd.el (eshell-rewrite-for-command): Don't modify the list
20402 in place (bug#9907).
20403 (eshell-subcommand-arg-values, eshell-rewrite-named-command)
20404 (eshell-rewrite-if-command, eshell-rewrite-for-command)
20405 (eshell-structure-basic-command, eshell-rewrite-while-command)
20406 (eshell-invokify-arg, eshell-parse-pipeline, eshell-parse-command)
20407 (eshell-parse-subcommand-argument, eshell-parse-lisp-argument)
20408 (eshell-trap-errors, eshell-do-pipelines, eshell-do-eval)
20409 (eshell-do-pipelines-synchronously, eshell-eval-command):
20410 Use backquotes and prefer setq to set.
20411 (eshell-lookup-function, function-p-func, eshell-functionp): Remove.
20412 (eshell-macrop): Use functionp.
20413 (eshell-do-eval): Handle multiple expressions in `while' body.
20414
20415 2011-10-30 Chong Yidong <cyd@gnu.org>
20416
20417 * emulation/viper-cmd.el (viper-exec-change): Use push-mark
20418 instead of set-mark (Bug#9810).
20419
20420 2011-10-30 Chong Yidong <cyd@gnu.org>
20421
20422 * window.el (split-window-below, split-window-right): Rename from
20423 split-window-above-each-other and split-window-side-by-side
20424 respectively. All callers changed.
20425 (split-window-sensibly, split-window-sensibly): Use them.
20426 (split-window-keep-point): Doc fix.
20427
20428 * isearch.el: Add isearch-scroll property to split-window-below
20429 and split-window-right.
20430
20431 * follow.el (follow-mode):
20432 * vc/pcvs-util.el (cvs-pop-to-buffer-same-frame):
20433 * progmodes/ada-xref.el (ada-gdb-application):
20434 * emulation/vip.el (vip-buffer-in-two-windows):
20435 * image-dired.el (image-dired-dired-with-window-configuration):
20436 * dired-x.el (dired-do-find-marked-files):
20437 * dired.el (dired-pop-to-buffer):
20438 * bs.el (bs--show-with-configuration):
20439 * vc/emerge.el (emerge-setup-windows):
20440 * textmodes/two-column.el (2C-two-columns):
20441 * textmodes/reftex-toc.el (reftex-toc):
20442 * progmodes/gdb-mi.el (gdb-setup-windows):
20443 * progmodes/fortran.el (fortran-window-create):
20444 * net/newst-treeview.el (newsticker--treeview-window-init):
20445 * emulation/ws-mode.el (wordstar-C-o-map, wordstar-mode):
20446 * emulation/tpu-edt.el (tpu-gold-map):
20447 * emulation/crisp.el (crisp-mode-map):
20448 * calendar/calendar.el (calendar-basic-setup): Callers changed.
20449
20450 2011-10-29 Chong Yidong <cyd@gnu.org>
20451
20452 * subr.el (y-or-n-p): Add code for batch mode (Bug#9818).
20453
20454 * mouse.el (mouse-yank-primary): Push the mark (Bug#9894).
20455
20456 * textmodes/flyspell.el (flyspell-word): Fix char offset for
20457 forged Ispell output (Bug#7904).
20458
20459 * emacs-lisp/package.el (package-refresh-contents): Add autoload.
20460
20461 2011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
20462
20463 * doc-view.el: Avoid ugly errors about not finding nil.
20464 (doc-view-ghostscript-program, doc-view-dvipdfm-program)
20465 (doc-view-dvipdf-program, doc-view-unoconv-program)
20466 (doc-view-ps2pdf-program, doc-view-pdftotext-program):
20467 Avoid nil or absolute file name as default value.
20468 (doc-view-pdf->txt, doc-view-ps->pdf): Use executable-find here.
20469
20470 2011-10-28 Alan Mackenzie <acm@muc.de>
20471
20472 * progmodes/cc-defs.el (c-version): -> 5.32.2.
20473
20474 2011-10-28 Alan Mackenzie <acm@muc.de>
20475
20476 Amend the handling of c-beginning/end-of-defun in nested declaration
20477 scopes.
20478
20479 * progmodes/cc-vars.el (c-defun-tactic): Move here from
20480 cc-langs.el. Change it to a defcustom.
20481
20482 * progmodes/cc-langs.el (c-defun-tactic): Move this variable to
20483 cc-vars.el.
20484
20485 * progmodes/cc-engine.el (c-beginning-of-statement-1):
20486 Prevent "class foo : bar" being spuriously recognized as a label.
20487
20488 * progmodes/cc-cmds.el (c-narrow-to-most-enclosing-decl-block):
20489 Add parameter `inclusive' (to include enclosing braces in the region).
20490 (c-widen-to-enclosing-decl-scope): New function.
20491 (c-while-widening-to-decl-block): New macro.
20492 (c-beginning-of-defun, c-end-of-defun): Change algorithm to keep going
20493 outward for defun boundaries, and correspondingly change symbol
20494 `respect-enclosure' to `go-outward'.
20495 (c-declaration-limits): Change algorithm to report only the "innermost"
20496 defun's boundaries.
20497
20498 2011-10-28 Deniz Dogan <deniz@dogan.se>
20499
20500 * net/rcirc.el (rcirc-mode): Use hard newlines.
20501
20502 2011-10-28 Alan Mackenzie <acm@muc.de>
20503
20504 Amend to indent and fontify macros "which include their own semicolon"
20505 correctly, using the "virtual semicolon" mechanism.
20506
20507 * progmodes/cc-defs.el: Update "virtual semicolon" comments.
20508
20509 * progmodes/cc-engine.el (c-crosses-statement-barrier-p):
20510 Recode to scan one line at a time rather than having \n and \r
20511 explicitly in c-stmt-delim-chars (for some modes, e.g. AWK).
20512 (c-forward-label): Amend for virtual semicolons.
20513 (c-at-macro-vsemi-p, c-macro-vsemi-status-unknown-p): New functions.
20514
20515 * progmodes/cc-fonts.el (c-font-lock-declarations): Take account
20516 of the new C macros.
20517
20518 * progmodes/cc-langs.el (c-at-vsemi-p-fn):
20519 (c-vsemi-status-unknown-p-fn): Move to earlier in the file.
20520 (c-opt-cpp-symbol, c-line-comment-start-regexp): New language vars.
20521 (c-opt-cpp-macro-define): Make into a full language variable.
20522 (c-stmt-delim-chars, c-stmt-delim-chars-with-comma): Special value for
20523 AWK Mode (including \n, \r) removed, no longer needed.
20524
20525 * progmodes/cc-mode.el (c-mode, c++-mode, objc-mode):
20526 Invoke c-make-macro-with-semi-re.
20527
20528 * progmodes/cc-vars.el (c-macro-with-semi-re):
20529 (c-macro-names-with-semicolon): New variables.
20530 (c-make-macro-with-semi-re): New function.
20531
20532 2011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
20533
20534 * vc/log-edit.el: Fill empty field rather than adding new one.
20535 (log-edit-add-field): New function.
20536 (log-edit-insert-changelog): Use it.
20537
20538 2011-10-28 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
20539
20540 * mail/rmail.el (rmail-mode-map): Add M-C-f as in rmailsum (bug#9802).
20541
20542 2011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
20543
20544 * progmodes/gdb-mi.el: Warn the user when -i=mi is missing.
20545 (gdb--check-interpreter): New function.
20546 (gdb): Use it.
20547
20548 2011-10-27 Glenn Morris <rgm@gnu.org>
20549
20550 * emacs-lisp/cl-extra.el (most-positive-float, most-negative-float)
20551 (least-positive-float, least-negative-float)
20552 (least-positive-normalized-float, least-negative-normalized-float)
20553 (float-epsilon, float-negative-epsilon):
20554 Remove unnecessary declarations.
20555
20556 * emacs-lisp/cl-extra.el (cl-float-limits): Add doc string.
20557 * emacs-lisp/cl.el (most-positive-float, most-negative-float)
20558 (least-positive-float, least-negative-float)
20559 (least-positive-normalized-float, least-negative-normalized-float)
20560 (float-epsilon, float-negative-epsilon): Add doc-strings,
20561 based on those in cl.texi.
20562
20563 * files.el (set-visited-file-name): If the major-mode changed,
20564 reload the local variables. (Bug#9796)
20565
20566 2011-10-27 Chong Yidong <cyd@gnu.org>
20567
20568 * subr.el (change-major-mode-after-body-hook): New hook.
20569 (run-mode-hooks): Run it.
20570
20571 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
20572 Use change-major-mode-before-body-hook.
20573
20574 * simple.el (fundamental-mode):
20575 * emacs-lisp/derived.el (define-derived-mode): Revert 2010-04-28
20576 change introducing fundamental-mode-hook.
20577
20578 2011-10-26 Juanma Barranquero <lekktu@gmail.com>
20579
20580 * term/w32-win.el (w32-default-color-map): Declare obsolete (Bug#9785).
20581
20582 2011-10-26 Michael Albinus <michael.albinus@gmx.de>
20583
20584 * ido.el (ido-file-name-all-completions-1): Do not require
20585 tramp.el explicitly. (Bug#7583)
20586
20587 2011-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
20588
20589 * progmodes/octave-mod.el:
20590 * progmodes/octave-inf.el: Update maintainer.
20591
20592 2011-10-26 Chong Yidong <cyd@gnu.org>
20593
20594 * subr.el (with-wrapper-hook): Rewrite doc.
20595
20596 2011-10-25 Michael Albinus <michael.albinus@gmx.de>
20597
20598 * net/tramp-sh.el (tramp-sh-handle-file-directory-p): Return t for
20599 filenames "/method:foo:". (Bug#9793)
20600
20601 2011-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
20602
20603 * comint.el (comint-get-old-input-default): Fix use-prompt-regexp case
20604 (bug#9865).
20605
20606 2011-10-24 Glenn Morris <rgm@gnu.org>
20607
20608 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix. (Bug#9819)
20609
20610 2011-10-24 Michael Albinus <michael.albinus@gmx.de>
20611
20612 * notifications.el: Add the requirement of a running D-Bus session
20613 bus to the Commentary.
20614
20615 2011-10-24 Juri Linkov <juri@jurta.org>
20616
20617 * isearch.el (isearch-occur): Let-bind `search-spaces-regexp' to
20618 `search-whitespace-regexp' only when `isearch-regexp' is non-nil.
20619 (Bug#9364)
20620
20621 2011-10-24 Juri Linkov <juri@jurta.org>
20622
20623 * info.el (Info-following-node-name-re): Add newline to the list
20624 of allowed characters for leading space. (Bug#9824)
20625
20626 2011-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
20627
20628 * progmodes/octave-inf.el (inferior-octave-mode-map):
20629 Fix C-c C-h binding.
20630 * progmodes/octave-mod.el (octave-help): Remove.
20631
20632 2011-10-23 Michael Albinus <michael.albinus@gmx.de>
20633
20634 Sync with Tramp 2.2.3.
20635
20636 * net/tramp-cache.el (top): Pacify byte-compiler using
20637 `init-file-user' and `site-run-file'.
20638
20639 * net/trampver.el: Update release number.
20640
20641 2011-10-23 Chong Yidong <cyd@gnu.org>
20642
20643 * files.el (toggle-read-only): Remove obsolete comment about
20644 version control.
20645
20646 * vc/vc-hooks.el (vc-toggle-read-only): Make it an obsolete alias
20647 for toggle-read-only. Note that this hasn't called vc-next-action
20648 since 2008-05-02, though it wasn't documented at the time.
20649
20650 * vc/ediff-init.el (ediff-toggle-read-only-function):
20651 Use toggle-read-only.
20652
20653 2011-10-22 Alan Mackenzie <bug-cc-mode@gnu.org>
20654
20655 Fix bug #9560, sporadic wrong indentation; improve instrumentation
20656 of c-parse-state.
20657
20658 * progmodes/cc-engine.el (c-append-lower-brace-pair-to-state-cache):
20659 correct faulty logical expression.
20660 (c-parse-state-state, c-record-parse-state-state):
20661 (c-replay-parse-state-state): New defvar/defuns.
20662 (c-debug-parse-state): Use new functions.
20663
20664 2011-10-22 Martin Rudalics <rudalics@gmx.at>
20665
20666 * mouse.el (mouse-drag-line): Fix minibuffer resizing broken by
20667 last fix. Use window-in-direction correctly.
20668
20669 2011-10-21 Chong Yidong <cyd@gnu.org>
20670
20671 * progmodes/idlwave.el (idlwave-mode):
20672 * progmodes/vera-mode.el (vera-mode): No need to set
20673 require-final-newline; that's done in prog-mode.
20674 Suggested by Stefan Monnier.
20675
20676 2011-10-21 Martin Rudalics <rudalics@gmx.at>
20677
20678 * mouse.el (mouse-drag-window-above)
20679 (mouse-drag-move-window-bottom, mouse-drag-move-window-top)
20680 (mouse-drag-mode-line-1, mouse-drag-header-line)
20681 (mouse-drag-vertical-line-rightward-window): Remove.
20682 (mouse-drag-line): New function.
20683 (mouse-drag-mode-line, mouse-drag-header-line)
20684 (mouse-drag-vertical-line): Call mouse-drag-line.
20685 * window.el (window-at-side-p, windows-at-side): New functions.
20686
20687 2011-10-21 Ulrich Mueller <ulm@gentoo.org>
20688
20689 * tar-mode.el (tar-grind-file-mode):
20690 Fix handling of setuid/setgid, handle sticky bit. (Bug#9817)
20691
20692 2011-10-21 Chong Yidong <cyd@gnu.org>
20693
20694 * progmodes/idlwave.el (idlwave-mode):
20695 * progmodes/vera-mode.el (vera-mode):
20696 Use mode-require-final-newline.
20697
20698 2011-10-20 Glenn Morris <rgm@gnu.org>
20699
20700 * vc/vc.el (vc-next-action): Handle removed directories. (Bug#9781)
20701
20702 2011-10-20 Christoph Scholtes <cschol2112@googlemail.com>
20703
20704 * emulation/cua-base.el (cua-set-mark): Fix case of string.
20705
20706 2011-10-20 Chong Yidong <cyd@gnu.org>
20707
20708 * emulation/cua-base.el (cua-mode):
20709 * mail/footnote.el (footnote-mode):
20710 * mail/mailabbrev.el (mail-abbrevs-mode):
20711 * net/xesam.el (xesam-minor-mode):
20712 * progmodes/bug-reference.el (bug-reference-mode):
20713 * progmodes/cap-words.el (capitalized-words-mode):
20714 * progmodes/compile.el (compilation-minor-mode)
20715 (compilation-shell-minor-mode):
20716 * progmodes/gud.el (gud-tooltip-mode):
20717 * progmodes/hideif.el (hide-ifdef-mode):
20718 * progmodes/idlw-shell.el (idlwave-shell-electric-debug-mode):
20719 * progmodes/subword.el (subword-mode):
20720 * progmodes/vhdl-mode.el (vhdl-electric-mode, vhdl-stutter-mode):
20721 * progmodes/which-func.el (which-function-mode):
20722 * term/tvi970.el (tvi970-set-keypad-mode):
20723 * term/vt100.el (vt100-wide-mode):
20724 * textmodes/flyspell.el (flyspell-mode):
20725 * textmodes/ispell.el (ispell-minor-mode):
20726 * textmodes/nroff-mode.el (nroff-electric-mode):
20727 * textmodes/paragraphs.el (use-hard-newlines):
20728 * textmodes/refill.el (refill-mode):
20729 * textmodes/reftex.el (reftex-mode):
20730 * textmodes/rst.el (rst-minor-mode):
20731 * textmodes/sgml-mode.el (html-autoview-mode)
20732 (sgml-electric-tag-pair-mode):
20733 * textmodes/tex-mode.el (latex-electric-env-pair-mode):
20734 * vc/diff-mode.el (diff-auto-refine-mode, diff-minor-mode):
20735 * emulation/crisp.el (crisp-mode):
20736 * emacs-lisp/eldoc.el (eldoc-mode):
20737 * emacs-lisp/checkdoc.el (checkdoc-minor-mode): Doc fixes for new
20738 minor mode behavior.
20739
20740 2011-10-19 Juri Linkov <juri@jurta.org>
20741
20742 * descr-text.el (describe-char): Add #x2010 and #x2011 to
20743 the list of hard-coded chars with escape-glyph face.
20744
20745 2011-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
20746
20747 * vc/log-edit.el (log-edit-empty-buffer-p): Ignore empty headers.
20748
20749 2011-10-19 Michael Albinus <michael.albinus@gmx.de>
20750
20751 * net/tramp.el (tramp-connectable-p): Make a stronger check on a
20752 running process.
20753
20754 2011-10-19 Glenn Morris <rgm@gnu.org>
20755
20756 * vc/vc-bzr.el (vc-bzr-after-dir-status):
20757 Ignore ignored files. (Bug#9726)
20758
20759 2011-10-19 Chong Yidong <cyd@gnu.org>
20760
20761 Doc fix for minor modes, stating that an omitted argument enables
20762 the mode unconditionally when called from Lisp.
20763
20764 * abbrev.el (abbrev-mode):
20765 * allout.el (allout-mode):
20766 * autoinsert.el (auto-insert-mode):
20767 * autoarg.el (autoarg-mode, autoarg-kp-mode):
20768 * autorevert.el (auto-revert-mode, auto-revert-tail-mode)
20769 (global-auto-revert-mode):
20770 * battery.el (display-battery-mode):
20771 * composite.el (global-auto-composition-mode)
20772 (auto-composition-mode):
20773 * delsel.el (delete-selection-mode):
20774 * desktop.el (desktop-save-mode):
20775 * dired-x.el (dired-omit-mode):
20776 * dirtrack.el (dirtrack-mode):
20777 * doc-view.el (doc-view-minor-mode):
20778 * double.el (double-mode):
20779 * electric.el (electric-indent-mode, electric-pair-mode):
20780 * emacs-lock.el (emacs-lock-mode):
20781 * epa-hook.el (auto-encryption-mode):
20782 * follow.el (follow-mode):
20783 * font-core.el (font-lock-mode):
20784 * frame.el (auto-raise-mode, auto-lower-mode, blink-cursor-mode):
20785 * help.el (temp-buffer-resize-mode):
20786 * hilit-chg.el (highlight-changes-mode)
20787 (highlight-changes-visible-mode):
20788 * hi-lock.el (hi-lock-mode):
20789 * hl-line.el (hl-line-mode, global-hl-line-mode):
20790 * icomplete.el (icomplete-mode):
20791 * ido.el (ido-everywhere):
20792 * image-file.el (auto-image-file-mode):
20793 * image-mode.el (image-minor-mode):
20794 * iswitchb.el (iswitchb-mode):
20795 * jka-cmpr-hook.el (auto-compression-mode):
20796 * linum.el (linum-mode):
20797 * longlines.el (longlines-mode):
20798 * master.el (master-mode):
20799 * mb-depth.el (minibuffer-depth-indicate-mode):
20800 * menu-bar.el (menu-bar-mode):
20801 * minibuf-eldef.el (minibuffer-electric-default-mode):
20802 * mouse-sel.el (mouse-sel-mode):
20803 * msb.el (msb-mode):
20804 * mwheel.el (mouse-wheel-mode):
20805 * outline.el (outline-minor-mode):
20806 * paren.el (show-paren-mode):
20807 * recentf.el (recentf-mode):
20808 * reveal.el (reveal-mode, global-reveal-mode):
20809 * rfn-eshadow.el (file-name-shadow-mode):
20810 * ruler-mode.el (ruler-mode):
20811 * savehist.el (savehist-mode):
20812 * scroll-all.el (scroll-all-mode):
20813 * scroll-bar.el (scroll-bar-mode):
20814 * server.el (server-mode):
20815 * shell.el (shell-dirtrack-mode):
20816 * simple.el (auto-fill-mode, transient-mark-mode)
20817 (visual-line-mode, overwrite-mode, binary-overwrite-mode)
20818 (line-number-mode, column-number-mode, size-indication-mode)
20819 (auto-save-mode, normal-erase-is-backspace-mode, visible-mode):
20820 * strokes.el (strokes-mode):
20821 * time.el (display-time-mode):
20822 * t-mouse.el (gpm-mouse-mode):
20823 * tool-bar.el (tool-bar-mode):
20824 * tooltip.el (tooltip-mode):
20825 * type-break.el (type-break-mode-line-message-mode)
20826 (type-break-query-mode):
20827 * view.el (view-mode):
20828 * whitespace.el (whitespace-mode, whitespace-newline-mode)
20829 (global-whitespace-mode, global-whitespace-newline-mode):
20830 * xt-mouse.el (xterm-mouse-mode): Doc fix.
20831
20832 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
20833 Fix autogenerated docstring.
20834
20835 2011-10-19 Juri Linkov <juri@jurta.org>
20836
20837 * net/browse-url.el (browse-url-can-use-xdg-open): Support LXDE
20838 by checking environment variables "DESKTOP_SESSION" and
20839 "XDG_CURRENT_DESKTOP". (Bug#9779)
20840
20841 2011-10-19 Juri Linkov <juri@jurta.org>
20842
20843 * net/browse-url.el (browse-url-browser-function): Add "Chromium".
20844 (browse-url-chromium-program, browse-url-chromium-arguments):
20845 New defcustoms.
20846 (browse-url-default-browser): Check for `browse-url-chromium' and
20847 call `browse-url-chromium-program'.
20848 (browse-url-chromium): New command. (Bug#9779)
20849
20850 2011-10-18 Juanma Barranquero <lekktu@gmail.com>
20851
20852 * facemenu.el (list-colors-duplicates): On Windows, detect more
20853 duplicates by assuming that only colors matching "^System" are
20854 special "system colors". (Bug#9722)
20855
20856 2011-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
20857
20858 * vc/log-edit.el (log-edit): Add "Author:" header to encourage people
20859 to distinguish the author from the committer.
20860
20861 2011-10-18 Michael Albinus <michael.albinus@gmx.de>
20862
20863 * net/tramp.el (tramp-file-name-handler): Load Tramp packages silently.
20864
20865 2011-10-18 Jirka Kosek <jirka@kosek.cz> (tiny change)
20866
20867 * international/mule.el (sgml-html-meta-auto-coding-function):
20868 Add support for detecting encoding in HTML5 specified only as
20869 <meta charset="UTF-8">. Implementation just makes http-equiv and
20870 content-type parts from HTML4 encoding string optional. (Bug#9716)
20871
20872 2011-10-18 Glenn Morris <rgm@gnu.org>
20873
20874 * vc/vc.el (vc-initial-comment): Mark as obsolete. (Bug#9745)
20875
20876 2011-10-18 Chong Yidong <cyd@gnu.org>
20877
20878 * faces.el (cursor): Doc fix.
20879
20880 2011-10-17 Chong Yidong <cyd@gnu.org>
20881
20882 * font-lock.el (font-lock-maximum-size): Mark as obsolete.
20883
20884 2011-10-17 Ryan Barrett <emacs@ryanb.org> (tiny change)
20885
20886 * dirtrack.el (dirtrack): Support shell buffers with path
20887 prefixes, e.g. tramp-based remote shells. (Bug#9647)
20888
20889 2011-10-17 Teodor Zlatanov <tzz@lifelogs.com>
20890
20891 * json.el: Bump version to 1.3 and note change in History.
20892 (json-alist-p, json-plist-p): Rewrite to avoid recursion.
20893
20894 2011-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
20895
20896 * comint.el (comint-insert-input, comint-send-input)
20897 (comint-get-old-input-default, comint-backward-matching-input)
20898 (comint-next-prompt): Use nil instead of `input' for field property of
20899 past user input (bug#114).
20900
20901 * minibuffer.el (completion--replace): Inherit surrounding properties
20902 (bug#114).
20903 (minibuffer-complete-and-exit): Use it.
20904
20905 * comint.el (comint--table-subvert): Quote the all-completions output
20906 (bug#9160).
20907
20908 2011-10-17 Martin Rudalics <rudalics@gmx.at>
20909
20910 * ido.el (ido-default-buffer-method): Remove redundant :type entry.
20911
20912 * menu-bar.el (menu-bar-file-menu): Add entry for making new
20913 window on right of selected. (Bug#9350) Reword other window
20914 entries and separate them from frame entries.
20915
20916 2011-10-15 Glenn Morris <rgm@gnu.org>
20917
20918 * emacs-lisp/ert.el (ert--explain-equal-rec, ert-select-tests):
20919 Doc fixes.
20920
20921 2011-10-15 Chong Yidong <cyd@stupidchicken.com>
20922
20923 * net/network-stream.el (network-stream-open-starttls):
20924 Improve detection of failure due to lack of TLS support.
20925
20926 * mail/sendmail.el (sendmail-query-once): Tweak prompt message,
20927 putting the input text in front and in bold.
20928
20929 2011-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
20930
20931 * pcmpl-unix.el (pcomplete/ssh): SSH does allow ganging.
20932
20933 * mpc.el (mpc-songs-jump-to): Don't burp if the user clicks in an
20934 empty buffer.
20935
20936 * mouse.el (mouse-drag-mode-line-1): Modify the end-event we pushed on
20937 unread-command-events rather than pushing yet-another event.
20938
20939 2011-10-14 Eli Zaretskii <eliz@gnu.org>
20940
20941 * mail/sendmail.el (sendmail-query-once): Improve the wording of
20942 the explanation of the possible choices. Make the options passed
20943 to completing-read shorter.
20944
20945 2011-10-13 Agustín Martín Domingo <agustin.martin@hispalinux.es>
20946
20947 * textmodes/flyspell.el (flyspell-large-region): Make sure
20948 extended character mode is used if defined (Bug#1339).
20949
20950 2011-10-13 Eli Zaretskii <eliz@gnu.org>
20951
20952 * simple.el (what-cursor-position): Fix the display of the
20953 character info for LRE, LRO, RLE, and RLO characters by appending
20954 an invisible PDF.
20955
20956 2011-10-13 Stefan Monnier <monnier@iro.umontreal.ca>
20957
20958 * emacs-lisp/timer.el (with-timeout): Make sure we cancel the timer
20959 even in case of error; add debug spec; simplify data flow.
20960 (with-timeout-handler): Remove.
20961
20962 2011-10-12 Michael Albinus <michael.albinus@gmx.de>
20963
20964 Fix Bug#6019, Bug#9315.
20965
20966 * files.el (set-auto-mode): Call `file-name-sans-versions' for the
20967 complete `buffer-file-name', the local file name part could look
20968 remotely (for example on VMS).
20969
20970 * net/ange-ftp.el (ange-ftp-run-real-handler): Make it an alias of
20971 `tramp-run-real-handler'.
20972 (ange-ftp-fix-name-for-vms): Handle the case, where `name' is
20973 already quoted by '"'.
20974
20975 * net/tramp.el (tramp-rfn-eshadow-update-overlay): Ignore errors.
20976 Let `file-name-handler-alist' be nil, the local file name part
20977 could look remotely (for example on VMS).
20978
20979 2011-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
20980
20981 * textmodes/flyspell.el (flyspell-word): Move with-local-quit
20982 from here...
20983 (flyspell-post-command-hook): ...to here.
20984
20985 2011-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
20986
20987 * mail/sendmail.el (send-mail-function): Don't use sendmail-query-once
20988 if not needed.
20989 (sendmail-query-once): Remove OS dependencies. Make it a 3-way choice
20990 using completion. Protect against "slow" callers.
20991 Remove the "message hack".
20992
20993 2011-10-11 Juri Linkov <juri@jurta.org>
20994
20995 * isearch.el (isearch-lazy-highlight-word): New variable.
20996 (isearch-lazy-highlight-new-loop, isearch-lazy-highlight-search):
20997 Use it. (Bug#9727)
20998
20999 2011-10-11 Glenn Morris <rgm@gnu.org>
21000
21001 * progmodes/f90.el (f90-next-statement): Ignore preprocessor lines,
21002 like f90-previous-statement does.
21003
21004 2011-10-11 Thierry Volpiatto <thierry.volpiatto@gmail.com>
21005
21006 * eshell/eshell.el (eshell-command): History should be saved
21007 only in interactive use, to avoid error.
21008
21009 2011-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
21010
21011 * minibuffer.el (completion-file-name-table): Fix last change,
21012 i.e. ignore normal errors but not the other ones.
21013
21014 2011-10-10 Martin Rudalics <rudalics@gmx.at>
21015
21016 * window.el (special-display-buffer-names)
21017 (special-display-regexps): Remove some remnants of earlier
21018 changes from doc-strings.
21019 (quit-windows-on): New function.
21020
21021 * vc/vc.el (vc-revert, vc-rollback):
21022 * vc/vc-dispatcher.el (vc-finish-logentry): Call quit-windows-on
21023 instead of deleting windows. (Bug#4557) (Bug#5310) (Bug#5556)
21024 (Bug#6183) (Bug#7074) (Bug#7447)
21025
21026 2011-10-09 Martin Rudalics <rudalics@gmx.at>
21027
21028 * window.el (frame-auto-hide-function): Add version tag.
21029 (Bug#9699)
21030
21031 2011-10-09 Michael Albinus <michael.albinus@gmx.de>
21032
21033 * net/tramp.el (tramp-file-name-handler): Add 'debug to the error
21034 condition.
21035
21036 2011-10-09 Leo Liu <sdl.web@gmail.com>
21037
21038 * mail/smtpmail.el (smtpmail-send-data): Add a missing space.
21039 (Bug#9701)
21040
21041 2011-10-08 Glenn Morris <rgm@gnu.org>
21042
21043 * progmodes/f90.el (f90-calculate-indent): Give preprocessor lines
21044 before the first code statement zero indent. (Bug#9690)
21045
21046 2011-10-08 Chong Yidong <cyd@stupidchicken.com>
21047
21048 * simple.el (count-words-region): Always count in the region.
21049 Report the number of lines and characters too.
21050 (count-words): New command, which counts in the buffer if the
21051 region is inactive, as count-words-region used to.
21052 (count-words--message): New function. Handle plurals.
21053 (count-lines-region): Make it an alias for count-words-region.
21054
21055 * bindings.el (esc-map): Replace count-lines-region with
21056 count-words-region.
21057
21058 2011-10-08 Martin Rudalics <rudalics@gmx.at>
21059
21060 * window.el (window--delete): Delete dedicated frame
21061 unconditionally when argument KILL is non-nil. (Bug#9699)
21062 (switch-to-buffer): Fix doc-string typo.
21063
21064 2011-10-08 Thierry Volpiatto <thierry.volpiatto@gmail.com>
21065
21066 * eshell/eshell.el (eshell-command): Avoid using hooks.
21067
21068 2011-10-07 Chong Yidong <cyd@stupidchicken.com>
21069
21070 * bindings.el ([M-left], [M-right]): Bind to left-word and
21071 right-word respectively.
21072
21073 2011-10-07 Glenn Morris <rgm@gnu.org>
21074
21075 * cus-start.el (debug-on-quit): Fix custom type.
21076
21077 2011-10-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
21078
21079 * subr.el (define-key-after): Clarify that the function is not
21080 useful for non-menu keymaps.
21081
21082 * progmodes/gdb-mi.el (gdb): Fix typo in doc string.
21083
21084 2011-10-06 Thierry Volpiatto <thierry.volpiatto@gmail.com>
21085
21086 * eshell/eshell.el (eshell-command): Enable `eshell-mode' only
21087 in current minibuffer (Fix bug with recursive minibuffers).
21088
21089 2011-10-06 Chong Yidong <cyd@stupidchicken.com>
21090
21091 * progmodes/gdb-mi.el (gdb): Doc fix.
21092
21093 2011-10-05 Martin Rudalics <rudalics@gmx.at>
21094
21095 * window.el (frame-auto-hide-function): New option replacing
21096 frame-auto-delete. Suggested by Stefan Monnier.
21097 (window--delete): Call frame-auto-hide-function instead of
21098 investigating frame-auto-delete.
21099 (window-point-1, set-window-point-1): New functions.
21100 (window-in-direction, record-window-buffer, window-state-get-1)
21101 (display-buffer-record-window): Use window-point-1 instead of
21102 window-point.
21103 (set-window-buffer-start-and-point): Use set-window-point-1.
21104
21105 2011-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
21106
21107 * emacs-lisp/edebug.el: Heed checkdoc recommendations.
21108
21109 2011-10-05 Glenn Morris <rgm@gnu.org>
21110
21111 * progmodes/perl-mode.el (perl-electric-terminator): Doc fix.
21112 (perl-calculate-indent): Suppress scan errors. (Bug#2205)
21113
21114 2011-10-05 Leo Liu <sdl.web@gmail.com>
21115
21116 * subr.el (read-char-choice): Fix argument to buffer-live-p which
21117 works with buffer object.
21118
21119 2011-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
21120
21121 * mpc.el (mpc-tool-bar-map): Add labels.
21122
21123 2011-10-04 Glenn Morris <rgm@gnu.org>
21124
21125 * calendar/holidays.el (calendar-check-holidays): Doc fix.
21126
21127 2011-10-04 Martin Rudalics <rudalics@gmx.at>
21128
21129 * window.el (window--delete): New function.
21130 (frame-auto-delete): Resuscitate option.
21131 (bury-buffer, replace-buffer-in-windows)
21132 (quit-window): Rewrite using window--delete.
21133 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
21134 Pass display-buffer-mark-dedicated to window--display-buffer-2
21135 (Bug#9639).
21136
21137 2011-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
21138
21139 * pcmpl-unix.el (pcomplete/scp): Don't assume pcomplete-all-entries
21140 returns a list (bug#9554). Add remote file name completion.
21141 * comint.el (comint--table-subvert): Curry and get quote&unquote
21142 functions as arguments.
21143 (comint--complete-file-name-data): Adjust call accordingly.
21144 * pcomplete.el (pcomplete--table-subvert): Remove.
21145 (pcomplete-completions-at-point): Use comint--table-subvert instead.
21146
21147 * minibuffer.el (completion-table-case-fold): Use currying.
21148 (completion--styles-type, completion--cycling-threshold-type):
21149 New constants.
21150 (completion-styles, completion-category-overrides)
21151 (completion-cycle-threshold): Use them.
21152 * pcomplete.el (pcomplete-completions-at-point): Adjust call to
21153 completion-table-case-fold.
21154
21155 2011-10-03 Stephen Berman <stephen.berman@gmx.net>
21156
21157 * minibuffer.el (completion-category-overrides): Fix type of styles
21158 and add more user friendly tags (bug#9660).
21159
21160 2011-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
21161
21162 * international/mule-cmds.el: Fix abuses of apply-partially (bug#9661).
21163 (mule-input-method-string): New widget.
21164 (default-input-method, language-info-custom-alist): Use it.
21165
21166 2011-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
21167
21168 * pcomplete.el: Require comint.
21169 (pcomplete--common-suffix): Remove.
21170 (pcomplete--common-quoted-suffix): Use comint--common-suffix instead.
21171 (pcomplete--table-subvert): Sync with comint--table-subvert.
21172 (pcomplete--entries): Use comint-completion-file-name-table.
21173 * comint.el (comint-unquote-filename): Simplify.
21174 (comint-completion-file-name-table): New function (bug#9616).
21175 (comint--complete-file-name-data): Use it.
21176
21177 * pcmpl-gnu.el (pcmpl-gnu-with-file-buffer): New macro (bug#9643).
21178 (pcmpl-gnu-tar-buffer): Remove.
21179 (pcmpl-gnu-with-file-buffer): Use it to avoid leaving the tar's buffer
21180 around. Make sure pcomplete-suffix-list is only changed temporarily.
21181 Don't look inside the tar's file if it's too large.
21182
21183 2011-10-01 Chong Yidong <cyd@stupidchicken.com>
21184
21185 * cus-edit.el (custom-mode-map):
21186 * epa.el (epa-key-list-mode-map):
21187 * man.el (Man-mode-map):
21188 * startup.el (splash-screen-keymap):
21189 * simple.el (special-mode-map): Use scroll-up-command and
21190 scroll-down-command.
21191
21192 * progmodes/idlw-help.el (idlwave-help-mode-map):
21193 * progmodes/ebrowse.el (ebrowse-electric-position-mode-map):
21194 * net/newst-plainview.el (newsticker-mode-map):
21195 * emulation/ws-mode.el (wordstar-mode-map):
21196 * emulation/vi.el (vi-com-map):
21197 * calc/calc-graph.el (calc-graph-show-dumb):
21198 * term/sun.el (terminal-init-sun):
21199 * term/ns-win.el (global-map):
21200 * progmodes/grep.el (grep-mode-map):
21201 * progmodes/ebrowse.el (ebrowse-electric-list-mode-map):
21202 * mail/rmail.el (rmail-mode-map):
21203 * progmodes/cpp.el (cpp-edit-mode-map): Likewise.
21204
21205 * custom.el (custom-safe-themes, load-theme): Treat value of t for
21206 custom-safe-themes as special.
21207
21208 2011-10-01 Julien Danjou <julien@danjou.info>
21209
21210 * notifications.el (notifications-notify): Fix docstring.
21211
21212 2011-10-01 Per Starbäck <per@starback.se>
21213
21214 * pcmpl-gnu.el (pcomplete/tar): Fix tar-header-name call. (Bug#9643)
21215
21216 2011-09-30 Martin Rudalics <rudalics@gmx.at>
21217
21218 * startup.el (command-line-1): Fix last fix by inserting
21219 initial-scratch-message into *scratch* before displaying it.
21220 (Bug#9605) and (Bug#9636)
21221
21222 2011-09-29 Eli Zaretskii <eliz@gnu.org>
21223
21224 * simple.el (line-move): If auto-hscroll-mode is disabled and the
21225 window is hscrolled, move by logical lines. (Bug#9607)
21226 (line-move-visual): Update the doc string to the above effect.
21227
21228 2011-09-29 Martin Rudalics <rudalics@gmx.at>
21229
21230 * window.el (display-buffer-record-window): When WINDOW is the
21231 selected window use `point' instead of `window-point'. (Bug#9626)
21232
21233 * startup.el (command-line-1): Use insert-before-markers when
21234 inserting initial-scratch-message. (Bug#9605)
21235
21236 * help.el (help-window): Remove variable.
21237
21238 2011-09-29 Glenn Morris <rgm@gnu.org>
21239
21240 * pcmpl-cvs.el (pcomplete/cvs): Add "status" handler.
21241
21242 2011-09-29 Juanma Barranquero <lekktu@gmail.com>
21243
21244 * descr-text.el (describe-char-categories): Accept category
21245 descriptions more than one line long.
21246
21247 2011-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
21248
21249 * simple.el (delete-trailing-whitespace): Fix last change.
21250
21251 * progmodes/perl-mode.el (perl-syntax-propertize-function):
21252 Don't confuse "y => 3" as the beginning of a `y' operation.
21253
21254 * emacs-lisp/debug.el (debug-convert-byte-code): Don't assume the
21255 object has more than 4 slots (bug#9613).
21256
21257 2011-09-28 Juanma Barranquero <lekktu@gmail.com>
21258
21259 * subr.el (with-output-to-temp-buffer):
21260 * net/quickurl.el (quickurl, quickurl-browse-url):
21261 Fix typos in docstrings.
21262
21263 2011-09-27 Eli Zaretskii <eliz@gnu.org>
21264
21265 * minibuffer.el (completion-styles)
21266 (completion-category-overrides): Cross reference each other in doc
21267 strings.
21268
21269 2011-09-27 Glenn Morris <rgm@gnu.org>
21270
21271 * pcmpl-cvs.el (pcmpl-cvs-entries): Update for Emacs 22.1 changes
21272 to split-string. (Bug#9606)
21273
21274 2011-09-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
21275
21276 * mail/smtpmail.el (smtpmail-via-smtp): Fix STARTTLS detection
21277 (bug#9615).
21278
21279 2011-09-27 Chong Yidong <cyd@stupidchicken.com>
21280
21281 * emacs-lisp/package.el (list-packages): Fix echo area message.
21282
21283 2011-09-27 Leo Liu <sdl.web@gmail.com>
21284
21285 * ido.el (ido-read-internal): Accept cons cell HIST arg.
21286
21287 2011-09-25 Michael Albinus <michael.albinus@gmx.de>
21288
21289 * net/dbus.el (dbus-unregister-object): Don't release services for
21290 registered signals. (Bug#9581)
21291
21292 2011-09-25 Teodor Zlatanov <tzz@lifelogs.com>
21293
21294 * progmodes/cfengine.el (cfengine-auto-mode): Add convenience
21295 function that picks between cfengine 2 and 3 support
21296 automatically. Update docs accordingly.
21297
21298 2011-09-22 Kenichi Handa <handa@m17n.org>
21299
21300 * language/ind-util.el (indian-tml-base-table): Add TAMIL DIGIT
21301 ZERO.
21302 (indian-itrans-v5-table-for-tamil): New variable.
21303 (indian-tml-itrans-v5-hash): Use the above variable (Bug#9336).
21304
21305 2011-09-22 Ken Manheimer <ken.manheimer@gmail.com>
21306
21307 * allout.el (allout-this-command-hid-stuff): Buffer-local variable
21308 that's true if the current command involved collapsing of text.
21309 It's reset to false at the beginning of the next command.
21310 (allout-post-command-business): Move the cursor to the beginning
21311 of entry if the cursor is hidden and collapsing activity just
21312 happened.
21313
21314 2011-09-24 Chong Yidong <cyd@stupidchicken.com>
21315
21316 * mouse.el (mouse-drag-track): Set scroll-margin to 0 while
21317 tracking (Bug#9541).
21318
21319 2011-09-24 Ulf Jasper <ulf.jasper@web.de>
21320
21321 * net/newst-reader.el (newsticker-html-renderer)
21322 (newsticker-show-news): Automatically load html rendering package
21323 if newsticker-html-renderer is set. Fixes "Warning: defvar ignored
21324 because w3m-fill-column is let-bound" and the error "Symbol's value
21325 as variable is void: w3m-fill-column".
21326
21327 2011-09-24 Michael Albinus <michael.albinus@gmx.de>
21328
21329 * net/dbus.el (dbus-unregister-object): Remove match rule of signals.
21330 Release services only if they are defined. (Bug#9581)
21331
21332 2011-09-23 Richard Stallman <rms@gnu.org>
21333
21334 * textmodes/paragraphs.el (forward-sentence): For backwards case,
21335 distinguish start of paragraph from start of its text.
21336
21337 * mail/emacsbug.el (report-emacs-bug-query-existing-bugs): Autoload.
21338
21339 * mail/rmail.el (rmail-view-buffer-kill-buffer-hook): New function.
21340 (rmail-generate-viewer-buffer): Put that hook on view buffer.
21341 (rmail-mode-kill-buffer-hook): Override that hook, to kill view buffer.
21342
21343 2011-09-23 Andreas Schwab <schwab@linux-m68k.org>
21344
21345 * international/mule-diag.el (mule-diag): Insert a newline after
21346 each fontset description.
21347
21348 2011-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
21349
21350 * simple.el (delete-trailing-whitespace):
21351 Document last change; simplify.
21352
21353 2011-09-23 Peter J. Weisberg <pj@irregularexpressions.net>
21354
21355 * simple.el (delete-trailing-whitespace): Also delete
21356 extra newlines at the end of the buffer.
21357
21358 * textmodes/picture.el: Make motion commands obey shift-select-mode.
21359 (picture-newline): Use forward-line so as to ignore fields.
21360
21361 2011-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
21362
21363 * subr.el (with-wrapper-hook): Fix edebug spec.
21364
21365 2011-09-23 Lars Magne Ingebrigtsen <larsi@gnus.org>
21366
21367 * simple.el (kill-line): Note effect of `show-trailing-whitespace'
21368 (bug#4538).
21369
21370 2011-09-23 Michael Albinus <michael.albinus@gmx.de>
21371
21372 * net/tramp-sh.el (tramp-sh-handle-file-name-all-completions):
21373 Fix nasty bug using wrong cached values.
21374
21375 2011-09-23 Alan Mackenzie <acm@muc.de>
21376
21377 * progmodes/cc-defs.el (c-version): Increase to 5.31.9.
21378
21379 2011-09-23 Chong Yidong <cyd@stupidchicken.com>
21380
21381 * window.el (pop-to-buffer): Ensure right window is selected if we
21382 chose another frame.
21383
21384 2011-09-22 Eli Zaretskii <eliz@gnu.org>
21385
21386 * simple.el (what-cursor-position): Use get-char-property-change
21387 and next-single-char-property-change, to be able to show display
21388 properties that come from overlays as well as text properties.
21389
21390 2011-09-22 Chong Yidong <cyd@stupidchicken.com>
21391
21392 * window.el (pop-to-buffer-same-window): New (reinstated) fun.
21393
21394 * cmuscheme.el (run-scheme, switch-to-scheme):
21395 * cus-edit.el (customize-group, custom-buffer-create)
21396 (customize-browse):
21397 * info.el (info):
21398 * shell.el (shell):
21399 * mail/sendmail.el (mail):
21400 * progmodes/inf-lisp.el (inferior-lisp): Use it (Bug#9532).
21401
21402 2011-09-22 Richard Stallman <rms@gnu.org>
21403
21404 * textmodes/paragraphs.el (forward-sentence): When setting PAR-BEG,
21405 move back only to line beg, don't move back over blank lines.
21406
21407 2011-09-22 Michael Albinus <michael.albinus@gmx.de>
21408
21409 * files.el (copy-directory): Set directory attributes only in case
21410 they could be retrieved from the source directory. (Bug#9565)
21411
21412 2011-09-22 Dima Kogan <dkogan@secretsauce.net> (tiny change)
21413
21414 * progmodes/hideshow.el (hs-looking-at-block-start-p)
21415 (hs-find-block-beginning, hs-hide-level-recursive):
21416 Ignore strings as well as comments. (Bug#9502)
21417
21418 2011-09-22 Andrew Schein <andrew@andrewschein.com> (tiny change)
21419
21420 * progmodes/sql.el (sql-comint-postgres):
21421 Convert port number to a string. (Bug#9566)
21422
21423 2011-09-22 Martin Rudalics <rudalics@gmx.at>
21424
21425 * window.el (quit-window): Undedicate window when switching to
21426 previous buffer. Reported by Thierry Volpiatto
21427 <thierry.volpiatto@gmail.com>.
21428 (special-display-popup-frame): When popping up a new frame reset
21429 its previous buffers to nil. Simplify code.
21430
21431 2011-09-21 Michael Albinus <michael.albinus@gmx.de>
21432
21433 * net/tramp.el (tramp-handle-shell-command): Set process sentinel
21434 and process filter, as done also in `shell-command'.
21435
21436 2011-09-21 Martin Rudalics <rudalics@gmx.at>
21437
21438 * window.el (set-window-buffer-start-and-point):
21439 Call set-window-start with NOFORCE argument t.
21440 Suggested by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
21441 (quit-window): Reword doc-string. Handle new format of
21442 quit-restore parameter. Don't delete window if it has a
21443 previous buffer we can show instead of the present one.
21444 (display-buffer-record-window): Rewrite using a new format for
21445 the quit-restore window parameter
21446 (special-display-popup-frame, display-buffer-same-window)
21447 (display-buffer-reuse-window, display-buffer-pop-up-frame)
21448 (display-buffer-pop-up-window, display-buffer-use-some-window):
21449 Adapt symbol passed to display-buffer-record-window.
21450 * help.el (help-window-setup): Handle new format of quit-restore
21451 parameter.
21452
21453 2011-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
21454
21455 * faces.el (face-list): Fix docstring (bug#9564).
21456
21457 * window.el (display-buffer--action-function-custom-type):
21458 Don't include internal functions in the Custom interface.
21459
21460 2011-09-20 Juri Linkov <juri@jurta.org>
21461
21462 * info.el (Info-history-skip-intermediate-nodes): New defcustom.
21463 (Info-forward-node, Info-backward-node, Info-next-preorder)
21464 (Info-last-preorder): Use it. (Bug#9528)
21465
21466 2011-09-20 Juri Linkov <juri@jurta.org>
21467
21468 * info.el (Info-last-preorder): Visit last menu item only when
21469 `Info-scroll-prefer-subnodes' is non-nil (third test-case of bug#9528).
21470
21471 2011-09-20 Julien Danjou <julien@danjou.info>
21472
21473 * password-cache.el (password-cache-remove): Remove entries even if the
21474 value is nil, so that password with a nil value (negative caching) is
21475 possible to invalidate.
21476
21477 2011-09-20 Lawrence Mitchell <wence@gmx.li>
21478
21479 * progmodes/f90.el (f90-break-line): If breaking inside comment delete
21480 all whitespace around breakpoint. (Bug#9553)
21481 (f90-find-breakpoint): Only break at whitespace inside a comment.
21482
21483 2011-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
21484
21485 * minibuffer.el (completion-file-name-table): Keep track of errors.
21486 (completion-table-with-predicate): Handle the case where pred1 is nil.
21487 * pcomplete.el (pcomplete-completions-at-point): Simplify.
21488
21489 2011-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
21490
21491 * emacs-lisp/debug.el (debugger-args): Give it a docstring.
21492 (debugger-return-value): Signal an error if the debugging context does
21493 not await any return value.
21494
21495 * ps-mule.el (ps-mule-plot-string): Don't inf-loop (bug#5108).
21496 * image-mode.el (image-toggle-display-text)
21497 (image-toggle-display-image): Stay away from evil `intangible'.
21498
21499 2011-09-19 Leo Liu <sdl.web@gmail.com>
21500
21501 * replace.el (occur-revert-arguments): Make it permanent-local.
21502 (occur-mode): Don't call font-lock-defontify.
21503
21504 2011-09-19 Chong Yidong <cyd@stupidchicken.com>
21505
21506 * net/ldap.el (ldap-search-internal): Don't push empty search
21507 result (Bug#9508).
21508
21509 2011-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
21510
21511 * whitespace.el (whitespace-newline-mode): Disable it right (bug#9550).
21512
21513 2011-09-19 Michael Albinus <michael.albinus@gmx.de>
21514
21515 * net/tramp-sh.el (tramp-inline-compress-commands): Add "xz".
21516 Suggested by Liam Stitt <stittl@cuug.ab.ca>.
21517
21518 2011-09-18 Juri Linkov <juri@jurta.org>
21519
21520 * buff-menu.el (Buffer-menu-mode-map):
21521 * dired.el (dired-mode-map):
21522 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map)
21523 (lisp-interaction-mode-map):
21524 * emacs-lisp/package.el (package-menu-mode-map):
21525 * epa.el (epa-key-list-mode-map):
21526 * menu-bar.el (menu-bar-showhide-tool-bar-menu)
21527 (menu-bar-options-menu):
21528 * outline.el (outline-mode-menu-bar-map):
21529 * vc/vc-bzr.el (vc-bzr-shelve-menu-map, vc-bzr-extra-menu-map):
21530 * vc/vc-dir.el (vc-dir-menu-map):
21531 * vc/vc-git.el (vc-git-stash-menu-map, vc-git-extra-menu-map):
21532 Capitalize non-function content words in menu item strings.
21533
21534 * dired.el (dired-mode-map): Add menu item for
21535 `image-dired-dired-toggle-marked-thumbs'.
21536
21537 2011-09-18 Juri Linkov <juri@jurta.org>
21538
21539 * isearch.el (isearch-edit-string): Bind `isearch-new-case-fold'
21540 to `isearch-case-fold-search' and restore its original value
21541 after the `isearch-mode' call.
21542
21543 2011-09-18 Juri Linkov <juri@jurta.org>
21544
21545 * progmodes/grep.el (grep-process-setup): Don't check code for 1
21546 because `zgrep' returns 1 for successful matches (bug#9226).
21547
21548 2011-09-18 Juri Linkov <juri@jurta.org>
21549
21550 * info.el (Info-extract-menu-node-name): Check the second match
21551 for empty string (second test-case of bug#9528).
21552 (Info-last-preorder): Let-bind `Info-history' to nil to not add
21553 intermediate nodes to the history (first test-case of bug#9528).
21554
21555 2011-09-18 Juri Linkov <juri@jurta.org>
21556
21557 * info.el (Info-mode-syntax-table): New variable.
21558 (Info-mode): Set `:syntax-table' to `Info-mode-syntax-table' (bug#3312).
21559
21560 2011-09-18 Juri Linkov <juri@jurta.org>
21561
21562 * info.el (Info-file-supports-index-cookies):
21563 Increment line-beginning-position's arg from 3 to 4 because makeinfo
21564 outputs one more line for long file names (bug#4142).
21565
21566 2011-09-18 Chong Yidong <cyd@stupidchicken.com>
21567
21568 * newcomment.el (comment-normalize-vars): If prompting for
21569 comment-start, set comment-start-skip too (Bug#8424).
21570
21571 2011-09-18 Johan Bockgård <bojohan@gnu.org>
21572
21573 * icomplete.el: Fix previous fix of Bug#5849.
21574 (icomplete-mode): Don't set completion-show-inline-help.
21575 (icomplete-minibuffer-setup): Set completion-show-inline-help
21576 locally during icompletion.
21577
21578 2011-09-18 Chong Yidong <cyd@stupidchicken.com>
21579
21580 * woman.el (woman2-process-escapes): Don't delete unrecognized
21581 escapes (Bug#7843).
21582
21583 * files.el (inhibit-first-line-modes-regexps): Add image files.
21584 (hack-local-variables-prop-line): Return nil for malformed
21585 prop-lines (Bug#9044).
21586
21587 2011-09-18 Michael Albinus <michael.albinus@gmx.de>
21588
21589 * net/tramp.el (top): Don't require 'shell.
21590 (tramp-methods): Fix docstring.
21591 (tramp-get-remote-tmpdir): New defun, moved from tramp-sh.el.
21592 Return complete remote file name. Handle "smb" case.
21593 Use `tramp-tmpdir', if defined for the respective method.
21594 (tramp-make-tramp-temp-file): Adapt call of `tramp-get-remote-tmpdir'.
21595
21596 * net/tramp-compat.el (top): Require 'shell.
21597
21598 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band)
21599 (tramp-maybe-open-connection): Use `tramp-file-name-real-host' for
21600 `tramp-current-host'.
21601 (tramp-get-remote-tmpdir): Remove.
21602
21603 * net/tramp-smb.el (tramp-methods): Add `tramp-remote-shell' and
21604 `tramp-tmpdir' entries.
21605 (tramp-smb-errors): Add "NT_STATUS_IMAGE_ALREADY_LOADED".
21606 (tramp-smb-handle-file-attributes): Ignore errors.
21607 (tramp-smb-wait-for-output): Check also for process end.
21608
21609 2011-09-18 Lars Magne Ingebrigtsen <larsi@gnus.org>
21610
21611 * mail/smtpmail.el (smtpmail-via-smtp): Ignore errors that arise
21612 when sending QUIT (bug#9312).
21613
21614 2011-09-17 Chong Yidong <cyd@stupidchicken.com>
21615
21616 * replace.el (occur-mode-map): Rebind occur-edit-mode to "e" (Bug#8463).
21617 (occur-edit-mode-map): Bind C-c C-c to occur-cease-edit and C-o to
21618 occur-mode-display-occurrence.
21619 (occur-edit-mode): Add usage message.
21620 (occur-cease-edit): New command.
21621 (occur-after-change-function): Use text properties to find the
21622 position of the prefix text.
21623 (occur-engine): Set stickiness of prefix text properties.
21624
21625 2011-09-17 Glenn Morris <rgm@gnu.org>
21626
21627 * progmodes/etags.el (complete-tag):
21628 Fix call to completion-in-region. (Bug#9526)
21629
21630 2011-09-17 Juri Linkov <juri@jurta.org>
21631
21632 * textmodes/ispell.el (ispell-word): Add to the error message
21633 the word, ispell program name and current dictionary (bug#9121).
21634 (ispell-tex-arg-end): Capitalize "error" in the error message.
21635
21636 2011-09-17 Andreas Schwab <schwab@linux-m68k.org>
21637
21638 * emacs-lisp/bytecomp.el (byte-compile-lapcode): Fix overflow
21639 check. (Bug#4251)
21640
21641 2011-09-17 Juri Linkov <juri@jurta.org>
21642
21643 * window.el (window-safe-min-height, window-safe-min-width):
21644 Fix typos (followup to bug#9522).
21645
21646 2011-09-17 Sven Joachim <svenjoac@gmx.de>
21647
21648 * window.el (window-min-width, window-state-put): Fix typos (bug#9522).
21649
21650 2011-09-16 Eli Zaretskii <eliz@gnu.org>
21651
21652 * simple.el (line-move): If goal-column is set, move by logical
21653 lines, not by display lines. (Bug#971)
21654 (next-line, previous-line, goal-column, line-move-visual): Doc fix
21655 to reflect the above change.
21656
21657 2011-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
21658
21659 * image.el (imagemagick-register-types): Use regexp-opt.
21660
21661 2011-09-15 Chong Yidong <cyd@stupidchicken.com>
21662
21663 * window.el (display-buffer-base-action): Rename from
21664 display-buffer-default-action. Make default value empty.
21665 (display-buffer-overriding-action): Convert to defvar.
21666 (display-buffer-fallback-action): New var.
21667
21668 2011-09-15 Chong Yidong <cyd@stupidchicken.com>
21669
21670 * emacs-lisp/package.el (package-alist): Fix risky-local-variable
21671 declaration.
21672 (package--add-to-archive-contents): If there is a duplicate entry
21673 with an older version, remove it.
21674 (package-menu-mark-delete, package-menu-mark-install)
21675 (package-menu-mark-unmark): Make unused args optional.
21676 (package-menu-mark-obsolete-for-deletion):
21677 Use package-menu-get-status instead of a regexp search.
21678 (package-menu-get-status): Use tabulated-list-entry.
21679 (package-menu-mark-upgrades): New command.
21680 (package-menu-mode-map): Bind it to U. Add it to menu bar.
21681 (package-menu-execute): Do installation before deletion.
21682 (package-menu-refresh, package-menu-execute): Use derived-mode-p
21683 instead of checking major-mode.
21684 (package-menu--find-upgrades): New function.
21685
21686 2011-09-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
21687
21688 * mail/smtpmail.el (smtpmail-send-command): Don't include AUTH
21689 passwords in the log buffer.
21690 (smtpmail-process-filter): Update the process marker so that the
21691 "broken by peer" status message is inserted in the right place.
21692
21693 2011-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
21694
21695 * textmodes/bibtex.el (bibtex-complete-string-cleanup)
21696 (bibtex-complete-crossref-cleanup): Adjust to accommodate needs of
21697 bibtex-completion-at-point-function.
21698 (bibtex-completion-at-point-function): Use them.
21699
21700 * newcomment.el (comment-add, comment-valid-prefix-p): Docfix.
21701
21702 * mpc.el (mpc-constraints-tag-lookup): New function.
21703 (mpc-constraints-restore): Use it to make jumping to "album=Foo" apply
21704 also to browser "album|playlist".
21705
21706 2011-09-14 Juri Linkov <juri@jurta.org>
21707
21708 * isearch.el (isearch-fail-pos): Add new arg `msg'. Doc fix.
21709 (isearch-edit-string): Use length of `isearch-string' when
21710 `isearch-fail-pos' returns nil.
21711 (isearch-message): Remove duplicate code and call
21712 `isearch-fail-pos' with arg `t'.
21713
21714 2011-09-14 Chong Yidong <cyd@stupidchicken.com>
21715
21716 * replace.el (occur-mode-goto-occurrence): Don't force using other
21717 window (Bug#9499).
21718
21719 * dired-aux.el (dired-do-chmod): Don't provide initial input.
21720
21721 2011-09-14 Martin Rudalics <rudalics@gmx.at>
21722
21723 * window.el (display-buffer-window): Remove.
21724 (display-buffer-record-window): Use help-setup window parameter
21725 instead of variable display-buffer-window.
21726 (display-buffer-function, special-display-buffer-names)
21727 (special-display-function): Mention help-setup parameter instead
21728 of display-buffer-window in doc-string.
21729 * help.el (help-window-setup): New argument help-window.
21730 Use help-window-setup parameter instead of display-buffer-window.
21731 Reword some messages.
21732 (with-help-window): Pass window used for displaying the buffer
21733 to help-window-setup. Don't set display-buffer-window.
21734
21735 2011-09-13 Glenn Morris <rgm@gnu.org>
21736
21737 * emacs-lisp/debug.el (debugger-make-xrefs):
21738 Preserve point. (Bug#9462)
21739
21740 2011-09-13 Chong Yidong <cyd@stupidchicken.com>
21741
21742 * window.el (window-deletable-p): Use next-frame.
21743
21744 2011-09-13 Martin Rudalics <rudalics@gmx.at>
21745
21746 * window.el (window-auto-delete): Remove.
21747 (window-deletable-p): Remove argument FORCE. Don't deal with
21748 dedication and previous buffers.
21749 (switch-to-prev-buffer): Don't delete window.
21750 (delete-windows-on): Delete a window's frame if and only if the
21751 window is dedicated.
21752 (replace-buffer-in-windows): Delete buffer's window or frame if
21753 and only if window is dedicated.
21754 (quit-window): Handle quit-restore as before last change.
21755 (bury-buffer): Delete window only if window-deletable-p returns t.
21756
21757 2011-09-13 Chong Yidong <cyd@stupidchicken.com>
21758
21759 * window.el (window-deletable-p): Never delete the last frame on a
21760 given terminal.
21761
21762 2011-09-13 Glenn Morris <rgm@gnu.org>
21763
21764 * help.el (describe-key-briefly): Copy previous standard-output change.
21765
21766 2011-09-13 PJ Weisberg <pj@irregularexpressions.net>
21767
21768 * help.el (where-is): Respect non-standard standard-output. (Bug#9030)
21769
21770 2011-09-13 Glenn Morris <rgm@gnu.org>
21771
21772 * emacs-lisp/lisp-mode.el (lisp-indent-function):
21773 * progmodes/scheme.el (scheme-indent-function): Doc fixes.
21774
21775 2011-09-12 Chong Yidong <cyd@stupidchicken.com>
21776
21777 * dired-aux.el (dired-mark-read-string): Don't return default
21778 value on empty input (Bug#9361).
21779 (dired-do-chxxx): Treat empty input for "touch" as no -t option.
21780 Omit initial minibuffer contents.
21781 (dired-do-chmod): Signal an error on empty input.
21782 (dired-mark-read-string): Don't return default on empty input.
21783
21784 * files.el (file-modes-symbolic-to-number): Doc fix.
21785
21786 2011-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
21787
21788 * international/mule-cmds.el (ucs-completions): Remove.
21789 (read-char-by-name): Use complete-with-action instead; add metadata.
21790
21791 2011-09-11 Chong Yidong <cyd@stupidchicken.com>
21792
21793 * window.el (display-buffer--action-function-custom-type)
21794 (display-buffer--action-custom-type): New vars.
21795 (display-buffer-alist, display-buffer-default-action)
21796 (display-buffer-overriding-action): Add defcustom types.
21797
21798 * frame.el (delete-other-frames): Doc fix (Bug#276).
21799
21800 2011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
21801
21802 * play/doctor.el (make-doctor-variables): Define `doctor-sent'.
21803
21804 2011-09-11 Chong Yidong <cyd@stupidchicken.com>
21805
21806 Change modes that used same-window-* vars to use switch-to-buffer.
21807
21808 * progmodes/gdb-mi.el (gdb-restore-windows, gdb-setup-windows):
21809 Use switch-to-buffer.
21810
21811 * cus-edit.el (customize-group, custom-buffer-create)
21812 (customize-browse, custom-buffer-create-other-window):
21813 Use switch-to-buffer or switch-to-buffer-other-window.
21814
21815 * info.el (info, Info-find-node, Info-revert-find-node, Info-next)
21816 (Info-prev, Info-up, Info-speedbar-goto-node)
21817 (info-display-manual): Use switch-to-buffer.
21818 (Info-speedbar-goto-node): Use switch-to-buffer-other-frame.
21819
21820 * mail/sendmail.el (mail): Use switch-to-buffer.
21821 (mail-recover): Use switch-to-buffer-other-window.
21822
21823 * cmuscheme.el (run-scheme, switch-to-scheme):
21824 * ielm.el (ielm):
21825 * shell.el (shell):
21826 * net/rlogin.el (rlogin):
21827 * net/telnet.el (telnet, rsh):
21828 * progmodes/inf-lisp.el (inferior-lisp): Use switch-to-buffer.
21829
21830 2011-09-11 Andreas Schwab <schwab@linux-m68k.org>
21831
21832 * dired.el (dired-sort-toggle-or-edit): Revert last changes.
21833
21834 2011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
21835
21836 * dired.el (dired-sort-toggle-or-edit): -o doesn't exist on *BSD,
21837 so don't mention it (bug#9301).
21838 (dired-sort-toggle-or-edit): Clarify string further.
21839
21840 * faces.el (face-spec-set-match-display): Make `(type graphic)'
21841 match `x', `w32' and `ns', like the manual says (bug#9029).
21842
21843 * subr.el (eval-after-load): Doc string clarification (bug#9125).
21844 (process-kill-buffer-query-function): Mention the buffer name in
21845 the query.
21846
21847 * image-mode.el (image-next-line): The line parameter is mandatory
21848 (bug#9258).
21849
21850 * dired.el (dired-sort-toggle-or-edit): Mention -o and -g, too,
21851 which can be useful (bug#9301).
21852
21853 * textmodes/flyspell.el: Remove obsolete comment (bug#9368).
21854
21855 * subr.el (match-string): Mention that the current buffer should
21856 be the same as the search was done in (bug#9282).
21857
21858 * facemenu.el: Disable the remove-* commands if the mark isn't
21859 active (bug#9162).
21860
21861 2011-09-10 Chong Yidong <cyd@stupidchicken.com>
21862
21863 * buff-menu.el (Buffer-menu-switch-other-window): Use second arg
21864 of display-buffer.
21865 (Buffer-menu-2-window): Use switch-to-buffer-other-window.
21866
21867 * replace.el (occur-mode-goto-occurrence)
21868 (occur-mode-display-occurrence) Use second arg of pop-to-buffer
21869 and display-buffer.
21870
21871 * mail/reporter.el (reporter-submit-bug-report): Use second arg of
21872 display-buffer.
21873
21874 * mail/sendmail.el (sendmail-user-agent-compose): Don't bind the
21875 special-display and same-window variables.
21876 (mail-other-window): Use switch-to-buffer-other-window.
21877 (mail-other-frame): USe switch-to-buffer-other-frame.
21878
21879 * progmodes/gdb-mi.el (gdb-frame-gdb-buffer):
21880 Use display-buffer-other-frame.
21881 (gdb-display-gdb-buffer): Use pop-to-buffer.
21882
21883 * progmodes/gud.el (gud-goto-info): Use info-other-window.
21884
21885 * progmodes/python.el: Don't set same-window-buffer-names.
21886
21887 * textmodes/bibtex.el (bibtex-search-entry): Use switch-to-buffer.
21888
21889 * window.el (display-buffer-alist): Add *Python*.
21890
21891 2011-09-10 Chong Yidong <cyd@stupidchicken.com>
21892
21893 * window.el (display-buffer-alist): Add entry for buffers
21894 previously handled same-window-*.
21895 (display-buffer-alist, display-buffer-default-action)
21896 (display-buffer-overriding-action): Mark as risky.
21897 (display-buffer-alist): Document action function changes.
21898 (display-buffer--same-window-action)
21899 (display-buffer--other-frame-action): New variables.
21900 (switch-to-buffer, display-buffer-other-frame): Use them.
21901 (display-buffer): Rename reuse-frame entry to reusable-frames.
21902 (display-buffer-reuse-selected-window): Function deleted.
21903 (display-buffer-reuse-window): Handle reusable-frames alist entry.
21904 If it's omitted, check pop-up-frames/display-buffer-reuse-frames.
21905 (display-buffer-special): New function.
21906 (display-buffer--maybe-pop-up-frame-or-window): Rename from
21907 display-buffer-reuse-or-pop-window. Split off special-display
21908 part into display-buffer-special.
21909 (display-buffer-use-some-window): Don't perform any special
21910 pop-up-frames handling.
21911 (pop-to-buffer): Use window-normalize-buffer-to-switch-to.
21912 (display-buffer--maybe-same-window): Rename from
21913 display-buffer-maybe-same-window.
21914
21915 * info.el: Don't set same-window-regexps.
21916 (info-setup): New function.
21917 (info-other-window, info): Call it.
21918
21919 * cus-edit.el: Don't set same-window-regexps.
21920 (customize-group): New argument.
21921 (customize-group-other-window): Use it.
21922 (customize-face, customize-face-other-window): Likewise.
21923 (custom-buffer-create-other-window): Use pop-to-buffer directly.
21924
21925 * net/rlogin.el:
21926 * net/telnet.el:
21927 * progmodes/gud.el: Don't set same-window-regexps.
21928
21929 * cmuscheme.el:
21930 * ielm.el:
21931 * shell.el:
21932 * mail/sendmail.el:
21933 * progmodes/inf-lisp.el: Don't set same-window-buffer-names.
21934
21935 2011-09-10 Juri Linkov <juri@jurta.org>
21936
21937 * isearch.el (isearch-edit-string): Remove obsolete mention of
21938 `C-w' (`isearch-yank-word-or-char') from docstring.
21939 (isearch-query-replace): Fix typo in docstring (bug#9466).
21940
21941 2011-09-10 Juri Linkov <juri@jurta.org>
21942
21943 * paren.el (show-paren-function): Don't show escaped parens.
21944 Let-bind `unescaped' to `t' when paren is not escaped. (Bug#9461)
21945
21946 2011-09-10 Eli Zaretskii <eliz@gnu.org>
21947
21948 * mail/sendmail.el (mml-to-mime, mml-attach-file)
21949 (mm-default-file-encoding): Remove autoload forms, they are
21950 replaced with autoload cookies in mml.el and mm-encode.el.
21951 (mail-add-attachment): New command.
21952 (mail-mode-map): Add a menu-bar item for mail-add-attachment.
21953 (mail-mode): Mention mail-insert-file and mail-add-attachment in
21954 the doc string.
21955 (mml-to-mime, mml-attach-file, mm-default-file-encoding): Declare.
21956
21957 2011-09-10 Reuben Thomas <rrt@sc3d.org>
21958
21959 * simple.el (count-words-region): Use buffer if there's no region
21960 (bug#9429).
21961
21962 2011-09-09 Juri Linkov <juri@jurta.org>
21963
21964 * wdired.el (wdired-change-to-wdired-mode): Set buffer-local
21965 `isearch-filter-predicate' to `wdired-isearch-filter-read-only'.
21966 (wdired-isearch-filter-read-only): New function. (Bug#6362)
21967
21968 2011-09-09 Alan Mackenzie <acm@muc.de>
21969
21970 * progmodes/cc-mode.el (awk-mode): Prevent `define-derived-mode'
21971 spuriously generating `awk-mode-syntax-table'. (Bug #9448).
21972
21973 2011-09-09 Eli Zaretskii <eliz@gnu.org>
21974
21975 Fix for Savannah bug#9392.
21976 * simple.el (mail-encode-mml): New defvar.
21977
21978 * mail/rmail.el (mail-encode-mml): Add a defvar.
21979 (rmail-enable-mime-composing): Default to t.
21980 (rmail-forward): Use MIME method of forwarding only if both
21981 rmail-enable-mime-composing and rmail-enable-mime are non-nil.
21982 Set mail-encode-mml non-nil if the MIME method was used.
21983
21984 * mail/sendmail.el (mml-to-mime): Add autoload form.
21985 (mail-encode-mml): Add a defvar.
21986 (mail-mode): Make mail-encode-mml buffer-local and initialize it
21987 to nil.
21988 (mail-send): If mail-encode-mml is non-nil, run the outgoing
21989 message through mml-to-mime, and reset mail-encode-mml to nil.
21990
21991 2011-09-09 Glenn Morris <rgm@gnu.org>
21992
21993 * woman.el (woman-if-body): When processing an .el block,
21994 do not delete the next .el block as well. (Bug#9447)
21995 (woman-special-characters): Add oq, cq, and hy characters.
21996
21997 2011-09-08 Martin Rudalics <rudalics@gmx.at>
21998
21999 * window.el (window-deletable-p): Make sure window is live before
22000 invoking window-prev-buffers.
22001
22002 2011-09-08 Leo Liu <sdl.web@gmail.com>
22003
22004 * net/rcirc.el (rcirc-cmd-invite): New rcirc command. (Bug#9453)
22005
22006 2011-09-08 Juri Linkov <juri@jurta.org>
22007
22008 * progmodes/compile.el (compilation-environment): Make it
22009 a defcustom (bug#8340).
22010
22011 2011-09-08 Martin Rudalics <rudalics@gmx.at>
22012
22013 * window.el (frame-auto-delete): Rename to window-auto-delete.
22014 Make it control auto-deletion of windows and/or frames.
22015 (window-deletable-p): New argument FORCE. Rewrite conditions
22016 for deleting window/frame. (Bug#9419)
22017 (switch-to-prev-buffer, replace-buffer-in-windows, quit-window):
22018 Rewrite handling of case when window/frame can be deleted.
22019 (delete-windows-on): Call window-deletable-p with new FORCE
22020 argument t. (Bug#9456)
22021
22022 2011-09-07 Chong Yidong <cyd@stupidchicken.com>
22023
22024 * help-mode.el (help-mode): Restore autoload.
22025
22026 2011-09-07 Juri Linkov <juri@jurta.org>
22027
22028 * progmodes/compile.el (compilation-start): Let-bind `thisenv' to
22029 `compilation-environment'. Set buffer-local
22030 `compilation-environment' to `thisenv' later after (funcall mode).
22031 (Bug#8340)
22032
22033 * vc/vc-git.el (vc-git-grep): Remove --no-color. (Bug#9408)
22034 (vc-git-grep): Prepend "PAGER=" to `compilation-environment'
22035 instead of replacing its value. (Bug#8340)
22036
22037 2011-09-07 Juri Linkov <juri@jurta.org>
22038
22039 * progmodes/grep.el (grep-regexp-alist): Calculate column positions
22040 based on text properties put by `grep-filter' instead of matching
22041 escape sequences.
22042 (grep-mode): Set buffer-local `compilation-error-screen-columns'
22043 to the value of `grep-error-screen-columns' (bug#9438).
22044
22045 2011-09-07 Juri Linkov <juri@jurta.org>
22046
22047 * simple.el (next-error-highlight, next-error-highlight-no-select):
22048 Doc fix (bug#9432).
22049
22050 2011-09-07 OKAZAKI Tetsurou <okazaki.tetsurou@gmail.com> (tiny change)
22051
22052 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
22053 Check for null c-opt-block-decls-with-vars-key. (Bug#9443)
22054
22055 2011-09-07 Leo Liu <sdl.web@gmail.com>
22056
22057 * net/rcirc.el (rcirc-mode): Conditionally initialize
22058 rcirc-input-ring.
22059
22060 2011-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
22061
22062 * emacs-lisp/find-func.el (find-function-C-source): Only set
22063 find-function-C-source-directory after checking that we found a source
22064 file there (bug#9440).
22065
22066 2011-09-06 Alan Mackenzie <acm@muc.de>
22067
22068 * isearch.el (isearch-other-meta-char): Wherever a key list is
22069 unread, "unread" the prefix arg, too. This fixes bug #8901.
22070
22071 2011-09-05 Oleksandr Gavenko <gavenkoa@gmail.com> (tiny change)
22072
22073 * progmodes/grep.el (rgrep): Add "-type d" (bug#9414).
22074
22075 2011-09-05 Juri Linkov <juri@jurta.org>
22076
22077 * progmodes/grep.el (grep-process-setup): Fix comments (bug#8084).
22078
22079 2011-09-05 Juri Linkov <juri@jurta.org>
22080
22081 * progmodes/grep.el (grep-filter): Avoid incomplete processing by
22082 keeping point where processing of grep matches begins, and
22083 continue to delete remaining escape sequences from the same point.
22084 (grep-filter): Make leading zero optional in "0?1;31m" because
22085 git-grep emits "\033[1;31m" escape sequences unlike expected
22086 "\033[01;31m" as GNU Grep does (bug#9408).
22087 (grep-process-setup): Replace obsolete "ml=" with newer "sl=".
22088
22089 2011-09-05 Juri Linkov <juri@jurta.org>
22090
22091 * subr.el (y-or-n-p): Capitalize "yes".
22092
22093 2011-09-04 Michael Albinus <michael.albinus@gmx.de>
22094
22095 * net/tramp.el (top): Require 'shell. Use `tramp-unload-hook' but
22096 `tramp-cache-unload-hook' where appropriate.
22097 (tramp-methods): Rename `tramp-remote-sh' to
22098 `tramp-remote-shell'. Add `tramp-remote-shell-args'.
22099 (tramp-handle-shell-command): New defun, moved from tramp-sh.el.
22100
22101 * net/tramp-sh.el (top): Don't require 'shell.
22102 (tramp-methods): Add `tramp-remote-shell' and
22103 `tramp-remote-shell-args' entries.
22104 (tramp-sh-file-name-handler-alist): Use `tramp-handle-shell-command'.
22105 (tramp-sh-handle-shell-command): Remove.
22106 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
22107 Use `tramp-remote-shell'.
22108
22109 2011-09-03 Chong Yidong <cyd@stupidchicken.com>
22110
22111 * mail/sendmail.el (sendmail-query-once-function): Delete.
22112 (sendmail-query-once): Save directly to send-mail-function.
22113 Update message-send-mail-function too.
22114
22115 * mail/smtpmail.el (smtpmail-try-auth-methods): Clarify prompt.
22116
22117 2011-09-03 Christoph Scholtes <cschol2112@googlemail.com>
22118
22119 * progmodes/python.el (python-mode-map): Use correct function to
22120 start python interpreter from menu-bar (as reported by Geert
22121 Kloosterman).
22122 (inferior-python-mode-map): Fix typo.
22123 (python-shell-map): Remove.
22124
22125 2011-09-03 Deniz Dogan <deniz@dogan.se>
22126
22127 * net/rcirc.el (rcirc-print): Simplify code for
22128 rcirc-scroll-show-maximum-output. There is no need to walk
22129 through all windows to find the right one.
22130
22131 2011-09-03 Christoph Scholtes <cschol2112@googlemail.com>
22132
22133 * help.el (help-return-method): Doc fix.
22134
22135 2011-09-03 Martin Rudalics <rudalics@gmx.at>
22136
22137 * window.el (window-deletable-p): Don't return a non-nil value
22138 when there's a buffer that was shown in the window before.
22139 (Bug#9419)
22140 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
22141 Set window's previous buffers to nil.
22142
22143 2011-09-03 Eli Zaretskii <eliz@gnu.org>
22144
22145 * mail/rmailmm.el (rmail-mime-insert-tagline): Insert an extra
22146 newline before and after the tag line, so it doesn't interfere
22147 with determining the paragraph direction of bidirectional text.
22148
22149 2011-09-03 Leo Liu <sdl.web@gmail.com>
22150
22151 * files.el (find-file-not-true-dirname-list): Remove. (Bug#9422)
22152
22153 2011-09-02 Chong Yidong <cyd@stupidchicken.com>
22154
22155 * window.el (pop-to-buffer-1, pop-to-buffer-same-window): Delete.
22156 (pop-to-buffer): Change interactive spec. Pass second argument
22157 directly to display-buffer.
22158 (display-buffer): Fix interactive spec. Use functionp to
22159 distinguish between a function and a list of functions.
22160
22161 * abbrev.el (edit-abbrevs):
22162 * arc-mode.el (archive-extract):
22163 * autoinsert.el (auto-insert):
22164 * bookmark.el (bookmark-bmenu-list):
22165 * files.el (find-file):
22166 * view.el (view-buffer):
22167 * progmodes/compile.el (compilation-goto-locus):
22168 * textmodes/bibtex.el (bibtex-initialize): Use switch-to-buffer.
22169
22170 2011-09-02 Chong Yidong <cyd@stupidchicken.com>
22171
22172 * window.el (display-buffer-alist): Doc fix.
22173 (display-buffer): Add docstring. Don't treat
22174 display-buffer-default specially.
22175 (display-buffer-reuse-selected-window)
22176 (display-buffer-same-window, display-buffer-maybe-same-window)
22177 (display-buffer-reuse-window, display-buffer-pop-up-frame)
22178 (display-buffer-pop-up-window)
22179 (display-buffer-reuse-or-pop-window)
22180 (display-buffer-use-some-window): New functions.
22181 (display-buffer-default-action): Use them.
22182 (display-buffer-default): Delete.
22183 (pop-to-buffer-1): Fix choice of actions.
22184
22185 2011-09-02 Stefan Monnier <monnier@iro.umontreal.ca>
22186
22187 * minibuffer.el (completion--insert-strings): Don't get confused by
22188 completion entries that end with an LF char.
22189
22190 2011-09-01 Eli Zaretskii <eliz@gnu.org>
22191
22192 * window.el (frame-auto-delete, window-deletable-p): Doc fix.
22193
22194 2011-09-01 Chong Yidong <cyd@stupidchicken.com>
22195
22196 * window.el (display-buffer): Restore interactive spec.
22197 (display-buffer-same-window, display-buffer-other-window):
22198 New functions.
22199 (pop-to-buffer-1): New function. Use the above.
22200 (pop-to-buffer, pop-to-buffer-same-window): Use it.
22201 (pop-to-buffer-other-window, pop-to-buffer-other-frame): Delete.
22202
22203 * view.el (view-buffer-other-window, view-buffer-other-frame):
22204 Just use pop-to-buffer.
22205
22206 2011-09-01 Thierry Volpiatto <thierry.volpiatto@gmail.com>
22207
22208 * vc/vc-rcs.el (vc-rcs-responsible-p): Handle directories. (Bug#9391)
22209
22210 2011-09-01 Wilfred Hughes <wilfred@potatolondon.com> (tiny change)
22211
22212 * vc/vc-git.el (vc-git-grep): Use --no-color. (Bug#9408)
22213
22214 2011-08-31 Richard Stallman <rms@gnu.org>
22215
22216 * mail/rmail.el (rmail-epa-decrypt): Rewrite to take account
22217 of the separation of rmail-view-buffer from rmail-buffer.
22218 If you say no to "replace original", the decrypt is in the
22219 view buffer. If you say yes, the decrypt goes into the
22220 rmail buffer also.
22221
22222 2011-08-31 Martin Rudalics <rudalics@gmx.at>
22223
22224 * window.el (display-buffer-window): Rewrite doc-string.
22225 (display-buffer-record-window): New function.
22226 (display-buffer-macro-specifiers)
22227 (display-buffer-even-window-sizes, display-buffer-set-height)
22228 (display-buffer-set-width, display-buffer-in-window)
22229 (display-buffer-reuse-window, display-buffer-split-specifiers)
22230 (display-buffer-side-specifiers, display-buffer-split-window-1)
22231 (display-buffer-split-window, display-buffer-split-atom-window)
22232 (display-buffer-pop-up-window, display-buffer-pop-up-frame)
22233 (display-buffer-pop-up-side-window, display-buffer-in-side-window)
22234 (display-buffer-other-window-means-other-frame)
22235 (display-buffer-normalize-special)
22236 (display-buffer-normalize-default)
22237 (display-buffer-normalize-argument)
22238 (display-buffer-normalize-alist-1, display-buffer-normalize-alist)
22239 (display-buffer-normalize-specifiers, display-buffer-frame)
22240 (display-buffer-same-window, display-buffer-same-frame)
22241 (display-buffer-other-window)
22242 (display-buffer-same-frame-other-window)
22243 (display-buffer-other-frame, pop-to-buffer-same-window)
22244 (pop-to-buffer-same-frame, pop-to-buffer-other-window)
22245 (pop-to-buffer-same-frame-other-window, pop-to-buffer-other-frame)
22246 (switch-to-buffer-same-frame)
22247 (switch-to-buffer-other-window-same-frame)
22248 (display-buffer-alist-of-strings-p, display-buffer-alist-add)
22249 (display-buffer-alist-set-1, display-buffer-alist-set-2)
22250 (display-buffer-alist-set): Remove.
22251 (display-buffer-function, special-display-buffer-names)
22252 (special-display-regexps, special-display-function):
22253 In doc-string refer to display-buffer-window and quit-restore
22254 parameter.
22255 (pop-up-frame-alist, pop-up-frame-function, special-display-p)
22256 (special-display-frame-alist, special-display-popup-frame)
22257 (same-window-buffer-names, same-window-regexps, same-window-p)
22258 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
22259 (split-window-preferred-function, split-height-threshold)
22260 (split-width-threshold, window-splittable-p)
22261 (split-window-sensibly, window--try-to-split-window)
22262 (window--frame-usable-p, even-window-heights)
22263 (window--even-window-heights, window--display-buffer-1)
22264 (window--display-buffer-2, display-buffer-other-frame):
22265 Restore old Emacs 23 code, order and doc-strings where applicable.
22266 (display-buffer-default, display-buffer-assq-regexp): New functions.
22267 (display-buffer-alist): Rewrite doc-string.
22268 (display-buffer-default-action)
22269 (display-buffer-overriding-action): New variables.
22270 (display-buffer, switch-to-buffer): Rewrite.
22271 (pop-to-buffer): Restore Emacs 23 behavior but use
22272 window-normalize-buffer-to-display.
22273 (switch-to-buffer-other-window, switch-to-buffer-other-frame):
22274 Restore Emacs 23 behavior but use
22275 window-normalize-buffer-to-switch-to.
22276 (pop-to-buffer-same-window): Rewrite.
22277 (pop-to-buffer-other-window, pop-to-buffer-other-frame):
22278 Rewrite using Emacs 23 options.
22279
22280 2011-08-31 Michael Albinus <michael.albinus@gmx.de>
22281
22282 * net/tramp.el (tramp-root-regexp): Remove.
22283 (tramp-completion-file-name-regexp-unified)
22284 (tramp-completion-file-name-regexp-separate)
22285 (tramp-completion-file-name-regexp-url): Don't use leading volume
22286 letter on w32 systems. (Bug#5303, Bug#9311)
22287 (tramp-drop-volume-letter): Simplify definition.
22288 Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
22289
22290 2011-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
22291
22292 * subr.el (event-modifiers): Fix "missing modifier" part of docstring
22293 (bug#9356).
22294
22295 2011-08-30 Reuben Thomas <rrt@sc3d.org> (tiny change)
22296
22297 * vc/pcvs-defs.el (cvs-find-file-and-jump): Docstring typo (bug#9369).
22298
22299 2011-08-29 Juri Linkov <juri@jurta.org>
22300
22301 * isearch.el (isearch-done): Don't display message "Mark saved"
22302 when arg `edit' is non-nil to prevent its flicker in the echo area.
22303
22304 2011-08-28 Chong Yidong <cyd@stupidchicken.com>
22305
22306 * emacs-lisp/package.el (package-menu-mark-delete): Allow marking
22307 obsolete packages for deletion.
22308
22309 2011-08-28 Christoph Scholtes <cschol2112@googlemail.com>
22310
22311 * help-mode.el (help-mode-map): Add special-mode-map to parent.
22312 (help-mode): Derive help-mode from special-mode. Don't invoke
22313 view-mode from help-mode.
22314 (help-xref-override-view-map): Remove.
22315 (help-make-xrefs): Remove minor-mode-overriding-map-alist since
22316 view-mode is not used anymore.
22317
22318 2011-08-28 Chong Yidong <cyd@stupidchicken.com>
22319
22320 * server.el (server-port): Doc fix.
22321
22322 * cus-theme.el (custom-theme-choose-mode): Inherit from
22323 special-mode (Bug#9124).
22324 (custom-theme-choose-mode-map): Add special-mode to parent.
22325
22326 2011-08-28 Alan Mackenzie <acm@muc.de>
22327
22328 * progmodes/cc-fonts.el
22329 (c-make-font-lock-BO-decl-search-function): New function.
22330 (c-basic-matchers-after - "Fontify the clauses after various
22331 keywords"): Extract the three keyword lists for the 3 erroneous
22332 constructs from the list of four, and use the new function above
22333 in place of an old one.
22334
22335 2011-08-28 Deniz Dogan <deniz@dogan.se>
22336
22337 * net/rcirc.el (rcirc-insert-prev-input)
22338 (rcirc-insert-next-input): Remove unused argument.
22339
22340 2011-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
22341
22342 * shell.el (shell-parse-pcomplete-arguments): Unquote args (bug#9160).
22343
22344 2011-08-27 Alan Mackenzie <acm@muc.de>
22345
22346 * progmodes/cc-menus.el (cc-imenu-c++-generic-expression): Make it
22347 handle function pointer parameters properly.
22348
22349 2011-08-27 Martin Rudalics <rudalics@gmx.at>
22350
22351 * window.el (display-buffer-reuse-window): Fix case where
22352 selected window was reused with non-nil OTHER-WINDOW argument.
22353 (Bug#9381)
22354
22355 2011-08-27 Deniz Dogan <deniz@dogan.se>
22356
22357 * net/rcirc.el (rcirc-check-auth-status): Adding support for
22358 oftc's NickServ messages.
22359
22360 2011-08-27 Glenn Morris <rgm@gnu.org>
22361
22362 * saveplace.el (save-place-limit): Make it finite. (Bug#9352)
22363
22364 2011-08-26 Chong Yidong <cyd@stupidchicken.com>
22365
22366 * emacs-lisp/package.el (package-install): Call package-initialize
22367 if called interactively.
22368
22369 2011-08-26 Leo Liu <sdl.web@gmail.com>
22370
22371 * emacs-lisp/cl-macs.el (defstruct): Fix format. (Bug#9357)
22372
22373 2011-08-25 Juri Linkov <juri@jurta.org>
22374
22375 * isearch.el (isearch-occur): Let-bind `search-spaces-regexp' to
22376 `search-whitespace-regexp' (bug#9364).
22377
22378 2011-08-25 Juri Linkov <juri@jurta.org>
22379
22380 * isearch.el (isearch-edit-string): Let-bind `search-ring' and
22381 `regexp-search-ring' to their global values to protect from
22382 updating by `read-from-minibuffer' (bug#9185).
22383
22384 2011-08-25 Juri Linkov <juri@jurta.org>
22385
22386 * textmodes/ispell.el (ispell-command-loop): Add newline
22387 at the end of the "Use option `i'..." line.
22388
22389 2011-08-25 Juri Linkov <juri@jurta.org>
22390
22391 * battery.el (display-battery-mode): If `battery-status-function'
22392 or `battery-mode-line-format' is nil, display the message and set
22393 `display-battery-mode' to nil (bug#9363).
22394
22395 2011-08-25 Eli Zaretskii <eliz@gnu.org>
22396
22397 * buff-menu.el (Buffer-menu-buffer+size): Remove calls to
22398 bidi-string-mark-left-to-right; they are unnecessary now.
22399
22400 2011-08-25 Deniz Dogan <deniz@dogan.se>
22401
22402 * net/quickurl.el: Documentation typo fixes.
22403
22404 2011-08-25 Chong Yidong <cyd@stupidchicken.com>
22405
22406 * window.el (bury-buffer, quit-window): Use bury-buffer-internal.
22407
22408 2011-08-25 Glenn Morris <rgm@gnu.org>
22409
22410 * emacs-lisp/derived.el (define-derived-mode): Doc fix.
22411
22412 * mail/smtpmail.el (smtpmail-smtp-user): Add version: tag.
22413 (smtpmail-via-smtp): Handle nil response from smtp.
22414
22415 2011-08-24 Juri Linkov <juri@jurta.org>
22416
22417 * proced.el (proced-marked): Inherit from `error' instead of
22418 `font-lock-warning-face'.
22419
22420 * ibuffer.el (ibuffer-marked-face): Change default face from
22421 `font-lock-warning-face' to `warning'.
22422 (ibuffer-deletion-face): Change default face from
22423 `font-lock-type-face' to `error'.
22424
22425 * battery.el (battery-update): Use the face `error' instead of
22426 `font-lock-warning-face' (bug#6117).
22427
22428 2011-08-24 Juri Linkov <juri@jurta.org>
22429
22430 * faces.el (success): Change face color from "Green3" to
22431 "ForestGreen" on light background (bug#9353).
22432
22433 2011-08-24 Chong Yidong <cyd@stupidchicken.com>
22434
22435 * window.el (quit-window): Rename from quit-restore-window.
22436 Use same arglist as old quit-window.
22437 (frame-auto-delete): Doc fix.
22438
22439 * view.el (view-mode-exit): Use quit-window.
22440
22441 2011-08-24 Juri Linkov <juri@jurta.org>
22442
22443 * isearch.el (isearch-ring-adjust1): Start visiting previous
22444 search strings from the index 0 (-1 + 1) instead of 1 (0 + 1).
22445 (isearch-repeat, isearch-edit-string): Call `isearch-ring-adjust1'
22446 for empty search string (when the last search string is reused
22447 automatically) to adjust the isearch ring to the last element and
22448 prepare the correct index for further M-p commands (bug#9185).
22449
22450 2011-08-24 Kenichi Handa <handa@m17n.org>
22451
22452 * international/ucs-normalize.el: If decomposition property of
22453 CHAR is the default one (i.e. a list of CHAR itself), treat it as
22454 nil.
22455 (nfd, nfkd): Likewise.
22456
22457 2011-08-24 Stefan Monnier <monnier@iro.umontreal.ca>
22458
22459 * mpc.el (mpc--proc-filter): Don't signal mpc-proc-error since signals
22460 from process filters aren't reliably transmitted to the surrounding
22461 accept-process-output.
22462 (mpc-proc-check): New function.
22463 (mpc-proc-sync): Use it (bug#8293)
22464
22465 2011-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
22466
22467 * emacs-lisp/eieio.el (eieio-defmethod, eieio-defgeneric):
22468 Add compatibility functions (bug#9313).
22469
22470 2011-08-23 Eli Zaretskii <eliz@gnu.org>
22471
22472 * cus-start.el (all): Add entry for bidi-paragraph-direction.
22473
22474 * international/uni-bidi.el: Regenerate.
22475
22476 2011-08-23 Kenichi Handa <handa@m17n.org>
22477
22478 * international/charprop.el:
22479 * international/uni-bidi.el:
22480 * international/uni-category.el:
22481 * international/uni-combining.el:
22482 * international/uni-comment.el:
22483 * international/uni-decimal.el:
22484 * international/uni-decomposition.el:
22485 * international/uni-digit.el:
22486 * international/uni-lowercase.el:
22487 * international/uni-mirrored.el:
22488 * international/uni-name.el:
22489 * international/uni-numeric.el:
22490 * international/uni-old-name.el:
22491 * international/uni-titlecase.el:
22492 * international/uni-uppercase.el: Regenerate.
22493
22494 2011-08-23 Martin Rudalics <rudalics@gmx.at>
22495
22496 * help.el (help-window-setup): Fix message displayed when other
22497 window is reused. (Bug#9341)
22498
22499 2011-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
22500
22501 * shell.el (shell-completion-vars): Set pcomplete-arg-quote-list.
22502 * pcomplete.el (pcomplete-quote-argument): Fix thinko (bug#9161).
22503
22504 * pcomplete.el (pcomplete-parse-comint-arguments): Fix inf-loop.
22505 Mark obsolete.
22506 * shell.el (shell-parse-pcomplete-arguments): New function.
22507 (shell-completion-vars): Use it instead (bug#9160).
22508
22509 2011-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
22510
22511 * progmodes/sh-script.el (sh-maybe-here-document): Disable magic in
22512 strings and comments (bug#9333).
22513
22514 * emacs-lisp/debug.el (debug-arglist): New function.
22515 (debug-convert-byte-code): Use it. Handle lexical byte-codes.
22516 (debug-on-entry-1): Handle interpreted closures (bug#9120).
22517
22518 2011-08-22 Juri Linkov <juri@jurta.org>
22519
22520 * progmodes/compile.el (compilation-mode-font-lock-keywords):
22521 Revert regexp that highlights output switches to its old
22522 pre-2010-10-28 value and remove one `?' from it (bug#9319).
22523
22524 * progmodes/grep.el (grep-process-setup): Use `buffer-modified-p'
22525 to check for empty output (bug#9226).
22526
22527 2011-08-22 Chong Yidong <cyd@stupidchicken.com>
22528
22529 * progmodes/scheme.el (scheme-mode-syntax-table): Don't use
22530 symbol-constituent as the default, as that stops font-lock from
22531 working properly (Bug#8843).
22532
22533 2011-08-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
22534
22535 * mail/smtpmail.el (smtpmail-via-smtp): Only bind
22536 `coding-system-for-*' around the process open call to avoid
22537 auth-source side effects.
22538 (smtpmail-try-auth-methods): Expand the secret password.
22539 (smtpmail-query-smtp-server): Allow `quit'-ing out in case the
22540 probe hangs.
22541
22542 2011-08-21 Chong Yidong <cyd@stupidchicken.com>
22543
22544 * term.el (term-mouse-paste): Yank primary selection (Bug#6845).
22545
22546 * emacs-lisp/find-func.el (find-function-noselect): New arg
22547 lisp-only.
22548
22549 * emacs-lisp/edebug.el (edebug-instrument-function): Use it to
22550 signal an error for built-in functions (Bug#6664).
22551
22552 2011-08-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
22553
22554 * mail/smtpmail.el (smtpmail-smtp-user): New variable.
22555 (smtpmail-try-auth-methods): Use it.
22556
22557 2011-08-21 Chong Yidong <cyd@stupidchicken.com>
22558
22559 * font-lock.el (font-lock-fontify-region)
22560 (font-lock-unfontify-region, font-lock-default-fontify-buffer)
22561 (font-lock-default-unfontify-buffer)
22562 (font-lock-default-fontify-region)
22563 (font-lock-default-unfontify-region): Add docstrings (Bug#8624).
22564
22565 * progmodes/compile.el (compilation-error-properties):
22566 Fix confusion between file struct and message struct (Bug#9319).
22567 (compilation-error-regexp-alist-alist): Fix 2011-05-09 change to
22568 `ant' regexp.
22569
22570 * net/browse-url.el (browse-url-firefox): Don't call
22571 browse-url-firefox-sentinel unless using -remote (Bug#9328).
22572
22573 2011-08-20 Glenn Morris <rgm@gnu.org>
22574
22575 * tutorial.el (help-with-tutorial): Avoid an error on short screens.
22576
22577 * tutorial.el (tutorial--default-keys): Update some default bindings.
22578
22579 * files.el (hack-local-variables): Fully ignore case for "mode:".
22580
22581 2011-08-20 Alan Mackenzie <acm@muc.de>
22582
22583 Resolve invalid use of a regexp in regexp-opt.
22584
22585 * progmodes/cc-fonts.el (c-complex-decl-matchers): Add in special
22586 detection for a java annotation.
22587
22588 * progmodes/cc-engine.el (c-forward-decl-or-cast-1): Add in special
22589 detection for a java annotation.
22590
22591 * progmodes/cc-langs.el (c-prefix-spec-kwds-re): Remove the special
22592 handling for java.
22593 (c-modifier-kwds): Remove the regexp "@[A-za-z0-9]+".
22594
22595 2011-08-20 Chong Yidong <cyd@stupidchicken.com>
22596
22597 * startup.el (normal-top-level-add-subdirs-to-load-path): Doc fix
22598 (Bug#9274).
22599
22600 2011-08-20 Alan Mackenzie <acm@muc.de>
22601
22602 Fontify CPP expressions correctly when starting in the middle of
22603 such a construct. Mainly for when jit-lock etc. starts a chunk
22604 here.
22605
22606 * progmodes/cc-fonts.el (c-font-lock-context): New buffer local
22607 variable.
22608 (c-make-font-lock-search-form): New function, extracted from
22609 c-make-font-lock-search-function.
22610 (c-make-font-lock-search-function): Use the above function.
22611 (c-make-font-lock-context-search-function): New function.
22612 (c-cpp-matchers): Enhance the preprocessor expression case with
22613 the above function
22614 (c-font-lock-complex-decl-prepare): Test for being in a CPP form
22615 which takes an expression.
22616
22617 * progmodes/cc-langs.el (c-cpp-expr-intro-re): New lang-variable.
22618
22619 2011-08-20 Martin Rudalics <rudalics@gmx.at>
22620
22621 * window.el (display-buffer-reuse-window)
22622 (display-buffer-pop-up-window): Don't reuse or split a side
22623 window.
22624
22625 2011-08-19 Glenn Morris <rgm@gnu.org>
22626
22627 * files.el (hack-local-variables-prop-line, hack-local-variables):
22628 Downcase "Mode:". (Bug#9331)
22629
22630 2011-08-18 Chong Yidong <cyd@stupidchicken.com>
22631
22632 * international/characters.el: Add L and R categories.
22633
22634 * subr.el (bidi-string-mark-left-to-right): Rename from
22635 string-mark-left-to-right. Use category search.
22636
22637 * buff-menu.el (Buffer-menu-buffer+size): Callers changed.
22638
22639 2011-08-18 Juri Linkov <juri@jurta.org>
22640
22641 * faces.el (error, warning, success): New faces with definitions
22642 copied from old default values of `font-lock-warning-face',
22643 `compilation-warning', `compilation-info' (bug#6117).
22644
22645 * font-lock.el (font-lock-warning-face): Inherit from `error'.
22646
22647 * progmodes/compile.el (compilation-error): Inherit from `error'.
22648 (compilation-warning): Inherit from `warning'.
22649 (compilation-info): Inherit from `success'.
22650
22651 * dired.el (dired-marked): Inherit from `warning'.
22652 (dired-flagged): Inherit from `error'.
22653
22654 2011-08-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
22655
22656 * mail/smtpmail.el (auth-source): Require to avoid problems with
22657 binding variables (bug#9298). Also clean up some unused
22658 autoloads.
22659
22660 * net/network-stream.el (network-stream-open-starttls):
22661 Support using starttls.el without using gnutls-cli.
22662
22663 2011-08-17 Juri Linkov <juri@jurta.org>
22664
22665 * progmodes/grep.el (rgrep): Handle the case when
22666 `grep-find-command' is a cons cell (bug#9278).
22667
22668 2011-08-17 Martin Rudalics <rudalics@gmx.at>
22669
22670 * window.el (display-buffer-pop-up-frame): Run frame creation
22671 function with BUFFER current (as special-display-popup-frame
22672 does). Reported by Drew Adams.
22673
22674 2011-08-17 Daiki Ueno <ueno@unixuser.org>
22675
22676 * epa-mail.el: Simplify GnuPG group expansion using
22677 epg-expand-group.
22678 (epa-mail-group-alist, epa-mail-group-modtime)
22679 (epa-mail-gnupg-conf-file, epa-mail-parse-groups)
22680 (epa-mail-sync-groups, epa-mail-expand-recipient-1)
22681 (epa-mail-expand-recipients-2, epa-mail-expand-recipients):
22682 Remove.
22683
22684 2011-08-16 Feng Li <fengli@gmail.com> (tiny change)
22685
22686 * calc/calc-ext.el (math-defintegral-2): Remove nested backquote.
22687
22688 2011-08-16 Alan Mackenzie <acm@muc.de>
22689
22690 * progmodes/cc-engine.el (c-state-cache-non-literal-place):
22691 Correct, to avoid the inside of macros.
22692
22693 2011-08-16 Richard Stallman <rms@gnu.org>
22694
22695 * epa-mail.el: Handle GnuPG group definitions.
22696 (epa-mail-group-alist, epa-mail-group-modtime)
22697 (epa-mail-gnupg-conf-file): New variables.
22698 (epa-mail-parse-groups, epa-mail-sync-groups)
22699 (epa-mail-expand-recipient-1, epa-mail-expand-recipients-2)
22700 (epa-mail-expand-recipients): New functions.
22701 (epa-mail-encrypt): Call epa-mail-expand-recipients.
22702
22703 * mail/rmail.el (rmail-epa-decrypt): New command.
22704
22705 * epa.el (epa-decrypt-region): New arg MAKE-BUFFER-FUNCTION.
22706 Don't bind buffer-read-only, just inhibit-read-only.
22707 (epa--find-coding-system-for-mime-charset): Fix the non-xemacs case.
22708 (epa-decrypt-armor-in-region): Make error message clearer.
22709
22710 2011-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
22711
22712 * minibuffer.el (completion-pcm--merge-completions): Don't merge "a1b"
22713 and "a2b" to "ab" for `prefix'.
22714
22715 2011-08-14 Chong Yidong <cyd@stupidchicken.com>
22716
22717 * ibuf-ext.el (ibuffer-filter-disable): New arg for deleting
22718 filter groups.
22719 (ibuffer-included-in-filter-p-1): Use it. Suggested by Rafaël
22720 Fourquet (Bug#8804).
22721
22722 2011-08-12 Juanma Barranquero <lekktu@gmail.com>
22723
22724 * startup.el (argi): Declare as global variable (bug#9275).
22725
22726 2011-08-12 Chong Yidong <cyd@stupidchicken.com>
22727
22728 * subr.el (string-mark-left-to-right): Search the entire string
22729 for RTL script, not just the terminating character. Doc fix.
22730
22731 2011-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
22732
22733 * progmodes/js.el (js-syntax-propertize, js-syntax-propertize-regexp):
22734 New function.
22735 (js--regexp-literal, js-syntax-propertize-function): Remove.
22736 (js-mode): Use js-syntax-propertize to handle multilines (bug#9183).
22737 (js-mode-map): Don't rebind electric keys.
22738 (js-insert-and-indent): Remove.
22739 (js-mode): Setup electric-layout and electric-indent instead.
22740
22741 * epa-file.el (epa-file-select-keys): Revert to nil default (bug#9280).
22742
22743 2011-08-12 Daiki Ueno <ueno@unixuser.org>
22744
22745 * epa.el (epa-progress-callback-function): Fix the logic of
22746 displaying progress.
22747 * epa-file.el (epa-file-insert-file-contents): Make progress
22748 display more user-friendly.
22749 (epa-file-write-region): Ditto.
22750
22751 2011-08-10 Chong Yidong <cyd@stupidchicken.com>
22752
22753 * subr.el (string-mark-left-to-right): New function.
22754
22755 * buff-menu.el (Buffer-menu-buffer+size): Remove LRM argument.
22756 Use string-mark-left-to-right.
22757 (list-buffers-noselect): Caller changed.
22758
22759 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
22760 Use string-mark-left-to-right.
22761 (tabulated-list-print): Recenter after moving point.
22762
22763 2011-08-10 Juri Linkov <juri@jurta.org>
22764
22765 * progmodes/grep.el (rgrep): Don't bind `process-connection-type'.
22766 This finishes incomplete reversion of 2011-06-30T01:09:13Z!larsi@gnus.org
22767 intended by 2011-07-06T15:49:19Z!larsi@gnus.org.
22768
22769 2011-08-09 Chong Yidong <cyd@stupidchicken.com>
22770
22771 * hi-lock.el (hi-lock-unface-buffer): Fix interactive spec
22772 (Bug#7554).
22773
22774 2011-08-09 Andreas Schwab <schwab@linux-m68k.org>
22775
22776 * xt-mouse.el (xterm-mouse-event-read): Try to recover the raw
22777 character. (Bug#6594)
22778
22779 2011-08-08 Chong Yidong <cyd@stupidchicken.com>
22780
22781 * image-dired.el: Don't use find-file for temporary work (Bug#7895).
22782 (image-dired--with-db-file): New macro.
22783 (image-dired-write-tags, image-dired-remove-tag)
22784 (image-dired-create-gallery-lists, image-dired-write-comments)
22785 (image-dired-get-comment, image-dired-mark-tagged-files)
22786 (image-dired-list-tags, image-dired-gallery-generate): Use it.
22787 (image-dired-gallery-generate): Use insert-file-contents.
22788
22789 * time.el (display-time-world-list, display-time-world-display):
22790 * time-stamp.el (time-stamp-string):
22791 * vc/add-log.el (add-change-log-entry): Use setenv instead of
22792 set-time-zone-rule (Bug#7337).
22793
22794 2011-08-08 Daiki Ueno <ueno@unixuser.org>
22795
22796 * epg.el (epg--status-KEYEXPIRED, epg--status-KEYREVOKED): Fix typo.
22797 (epg-error-to-string, epg-errors-to-string): New function.
22798 (epg-wait-for-completion): Reverse errors list.
22799 (epg--check-error-for-decrypt, epg-sign-file, epg-sign-string)
22800 (epg-encrypt-file, epg-encrypt-string, epg-export-keys-to-file)
22801 (epg--import-keys-1, epg-receive-keys, epg-delete-keys)
22802 (epg-sign-keys, epg-generate-key-from-file)
22803 (epg-generate-key-from-string): Format errors by using
22804 epg-errors-to-string (bug#9255).
22805 (epg--status-INV_SGNR, epg--status-NO_SGNR): New status handler.
22806
22807 2011-08-07 Juri Linkov <juri@jurta.org>
22808
22809 * faces.el (list-faces-display): Remove extra angle bracket
22810 from `help-mode-map'.
22811
22812 * info.el (Info-history-toc-nodes): Doc fix.
22813
22814 * longlines.el (longlines-mode): Doc fix.
22815
22816 2011-08-05 Stefan Monnier <monnier@iro.umontreal.ca>
22817
22818 * progmodes/js.el (js--regexp-literal): Accept regexps at the beginning
22819 of statements and in a few more cases (bug#9183).
22820
22821 * emacs-lisp/cl-macs.el (cl--make-usage-var, cl--make-usage-args):
22822 New functions.
22823 (cl-transform-lambda): Use them (bug#9239).
22824
22825 2011-08-05 Martin Rudalics <rudalics@gmx.at>
22826
22827 * window.el (display-buffer-same-window)
22828 (display-buffer-same-frame, display-buffer-other-window)
22829 (pop-to-buffer-same-window, pop-to-buffer-same-frame)
22830 (pop-to-buffer-other-window)
22831 (pop-to-buffer-same-frame-other-window)
22832 (pop-to-buffer-other-frame): Make them defuns.
22833 (switch-to-buffer): Don't set LABEL argument of pop-to-buffer.
22834
22835 2011-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
22836
22837 * subr.el (make-composed-keymap): Move from C. Change calling
22838 convention, and improve docstring to bring attention to a subtle point.
22839 * minibuffer.el (completing-read-default): Adjust accordingly.
22840
22841 2011-08-03 Michael Albinus <michael.albinus@gmx.de>
22842
22843 * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell)
22844 (tramp-open-shell): Use `tramp-shell-quote-argument'.
22845
22846 * net/trampver.el: Update release number.
22847
22848 2011-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
22849
22850 * progmodes/sh-script.el (sh-font-lock-paren): Don't mistake "main" for
22851 "in" (bug#9190).
22852
22853 2011-08-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
22854
22855 * mail/sendmail.el (sendmail-query-once): Restore the current
22856 buffer after querying (bug#9074).
22857
22858 * dired.el (dired-flagged): Use different faces for marked and
22859 flagged files (bug#6117).
22860
22861 * emacs-lisp/cl-macs.el (dolist): Mention that there's a nil block
22862 (bug#4433).
22863
22864 * ido.el (ido-mode): Switch off the message if called
22865 non-interactively.
22866
22867 * mail/smtpmail.el (smtpmail-query-smtp-server): Try port 25
22868 before 587, since it appears that that's more likely to work for
22869 more people.
22870
22871 * cus-edit.el (custom-file): When running under emacs -q, always
22872 refuse to save the customizations, even if the .emacs file doesn't
22873 exist.
22874
22875 * info.el: Remove the `Info-beginning-of-buffer' function
22876 (bug#8325).
22877
22878 * net/network-stream.el (network-stream-open-starttls):
22879 Use `starttls-available-p' to see whether starttls.el can be used.
22880
22881 2011-08-01 Martin Rudalics <rudalics@gmx.at>
22882
22883 * window.el (display-buffer-in-window): Don't set dedicated status
22884 of window here (Bug#9215).
22885 (display-buffer-pop-up-window, display-buffer-pop-up-frame)
22886 (display-buffer-pop-up-side-window)
22887 (display-buffer-in-side-window): Set dedicated status of window here.
22888
22889 2011-08-01 Stefan Monnier <monnier@iro.umontreal.ca>
22890
22891 * emacs-lisp/package.el (package-generate-autoloads): Load autoloads
22892 before binding generated-autoload-file.
22893
22894 2011-08-01 Deniz Dogan <deniz@dogan.se>
22895
22896 * net/rcirc.el (rcirc-handler-333): Clarify docstring.
22897
22898 2011-07-30 Michael Albinus <michael.albinus@gmx.de>
22899
22900 Sync with Tramp 2.2.2.
22901
22902 * net/trampver.el: Update release number.
22903
22904 2011-07-30 Juri Linkov <juri@jurta.org>
22905
22906 * dired-aux.el (dired-touch-initial): Remove function.
22907 (dired-do-chxxx): For op-symbol `touch', set `initial' to the
22908 current time, and `default' to the last modification time of the
22909 current marked file (bug#6887).
22910
22911 2011-07-28 Jose E. Marchesi <jemarch@gnu.org>
22912
22913 * simple.el (goto-line): Use string-to-number to provide a
22914 numeric argument to read-number (bug#9163).
22915
22916 2011-07-27 Michael Albinus <michael.albinus@gmx.de>
22917
22918 * net/tramp-sh.el (tramp-maybe-send-script): Don't let-bind the
22919 connection process, it could be nil.
22920
22921 2011-07-27 Leo Liu <sdl.web@gmail.com>
22922
22923 Simplify url handling in rcirc-mode.
22924
22925 * net/rcirc.el (rcirc-browse-url-map, rcirc-browse-url-at-point)
22926 (rcirc-browse-url-at-mouse): Remove.
22927 * net/rcirc.el (rcirc-markup-urls): Use `make-button'.
22928
22929 2011-07-26 Alan Mackenzie <acm@muc.de>
22930
22931 Fontify bitfield declarations properly.
22932
22933 * progmodes/cc-langs.el (c-has-bitfields): New lang variable.
22934 (c-symbol-chars): Now exported as a lang variable.
22935 (c-not-primitive-type-keywords): New lang variable.
22936
22937 * progmodes/cc-fonts.el (c-font-lock-declarations): Jump over the
22938 QT keyword "more" to prevent "more slots: ...." being spuriously
22939 parsed as a bitfield declaration.
22940
22941 * progmodes/cc-engine.el (c-beginning-of-statement-1):
22942 Refactor and enhance to handle bitfield declarations.
22943 (c-punctuation-in): New function.
22944 (c-forward-decl-or-cast-1): Enhance CASE 3 to handle bitfield
22945 declarations properly.
22946
22947 2011-07-26 Ulf Jasper <ulf.jasper@web.de>
22948
22949 * calendar/icalendar.el (icalendar--all-events): Take care of
22950 multiple vcalendars in a single file.
22951 (icalendar--convert-float-to-ical): Checkdoc fixes.
22952
22953 2011-07-25 Deniz Dogan <deniz@dogan.se>
22954
22955 * image.el (insert-image): Clarifying docstring.
22956
22957 2011-07-24 Michael Albinus <michael.albinus@gmx.de>
22958
22959 * net/tramp-sh.el (tramp-barf-unless-okay): Return the value of
22960 `tramp-send-command-and-check' if there is no error.
22961 (tramp-send-command-and-read): Suppress *all* errors if NOERROR.
22962
22963 2011-07-22 Alan Mackenzie <acm@muc.de>
22964
22965 Prevent cc-langs.elc being loaded at run time.
22966
22967 * progmodes/cc-mode.el: Remove two autoload forms which loaded
22968 cc-langs.
22969
22970 * progmodes/cc-langs.el (c-make-init-lang-vars-fun): Don't emit
22971 "(require 'cc-langs)". Quote a form so it will evaluate at
22972 (cc-mode's) compilation time.
22973
22974 2011-07-22 Michael Albinus <michael.albinus@gmx.de>
22975
22976 * net/tramp.el (tramp-file-name-handler): Avoid recursive
22977 loading. (Bug#9114)
22978
22979 2011-07-21 Martin Rudalics <rudalics@gmx.at>
22980
22981 * window.el (display-buffer-pop-up-window)
22982 (display-buffer-pop-up-side-window)
22983 (display-buffer-in-side-window): Call display-buffer-set-height
22984 and display-buffer-set-width after setting the new window's
22985 buffer so `fit-window-to-buffer' and friends work on the right buffer.
22986
22987 2011-07-20 Sam Steingold <sds@gnu.org>
22988
22989 * progmodes/etags.el (etags-file-of-tag, etags-tags-table-files)
22990 (etags-tags-included-tables): Call `convert-standard-filename' on
22991 the file names contained in TAGS so that windows Emacs can handle
22992 TAGS files created by cygwin ctags.
22993
22994 2011-07-20 Lars Magne Ingebrigtsen <larsi@gnus.org>
22995
22996 * proced.el (proced-update): Revert yesterday's bug#1779 patch,
22997 which apparently didn't work.
22998
22999 2011-07-19 Roland Winkler <winkler@gnu.org>
23000
23001 * proced.el (proced-send-signal): For *Marked Processes* buffer
23002 put point at beginning of buffer.
23003
23004 2011-07-19 Stephen Berman <stephen.berman@gmx.net>
23005
23006 * proced.el (proced-format): Make header lines align with the text
23007 (bug#1779).
23008
23009 2011-07-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
23010
23011 * view.el (view-buffer): Allow running in `special' modes if we're
23012 visiting a file (bug#8615).
23013
23014 2011-07-19 Martin Rudalics <rudalics@gmx.at>
23015
23016 * window.el (display-buffer-alist-of-strings-p)
23017 (display-buffer-alist-set-1, display-buffer-alist-set-2):
23018 New functions.
23019 (display-buffer-alist-set): Rewrite to handle Emacs 23 options
23020 more accurately.
23021
23022 2011-07-18 Alan Mackenzie <acm@muc.de>
23023
23024 Fontify declarators properly when, e.g., a jit-lock chunk begins
23025 inside a declaration.
23026
23027 * progmodes/cc-langs.el (c-symbol-chars): Correct a typo.
23028
23029 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
23030 New function.
23031 (c-complex-decl-matchers): Insert reference to
23032 c-font-lock-enclosing-decls.
23033
23034 * progmodes/cc-engine.el (c-backward-single-comment):
23035 (c-backward-comments): Bind open-paren-in-column-0-is-defun-start
23036 to nil around calls to (forward-comment -1).
23037
23038 2011-07-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
23039
23040 * image.el (put-image): Doc typo fix.
23041
23042 * progmodes/etags.el (tags-search): Doc typo fix.
23043
23044 * mail/smtpmail.el (smtpmail-via-smtp): Query the user for
23045 password if we get errors 550 to 554.
23046
23047 2011-07-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
23048
23049 * net/gnutls.el (gnutls-log-level): Remove.
23050
23051 * textmodes/fill.el (adaptive-fill-regexp): Include EN DASH as an
23052 indentation character (bug#6380).
23053
23054 * files.el (buffer-offer-save): Made permanently local (bug#6241).
23055
23056 * doc-view.el (doc-view-make-safe-dir): Rewrite the error message
23057 to clarify what the problem is (bug#4291).
23058
23059 * simple.el (current-kill): Clarify what
23060 `interprogram-paste-function' does (bug#7500).
23061 (auto-fill-mode): Document `auto-fill-function' in relation to
23062 `auto-fill-mode' (bug#2470).
23063
23064 2011-07-16 Lawrence Mitchell <wence@gmx.li>
23065
23066 * emacs-lisp/cl-macs.el (defstruct): Ignore argument to setf
23067 method if slot is read-only (bug#9035).
23068
23069 2011-07-16 Martin Rudalics <rudalics@gmx.at>
23070
23071 * frame.el (select-frame-set-input-focus): New argument NORECORD.
23072 * window.el (pop-to-buffer): Select window used even if it was
23073 selected before, see discussion of (Bug#8615), (Bug#6954).
23074 Pass argument NORECORD on to select-frame-set-input-focus.
23075
23076 2011-07-15 Glenn Morris <rgm@gnu.org>
23077
23078 * subr.el (read-char-choice): Allow quitting. (Bug#9001)
23079 Respect help-form.
23080
23081 2011-07-09 Lawrence Mitchell <wence@gmx.li>
23082
23083 * net/gnutls.el (gnutls-min-prime-bits): New variable.
23084 (gnutls-negotiate): Use it.
23085
23086 2011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
23087
23088 * net/gnutls.el (gnutls-negotiate):
23089 Upcase `gnutls-algorithm-priority'.
23090
23091 2011-07-15 Glenn Morris <rgm@gnu.org>
23092
23093 * jka-compr.el (jka-compr-verbose): Move from here...
23094 * jka-cmpr-hook.el (jka-compr-verbose): ... to here. (Bug#9090)
23095 Add missing :version tag.
23096 * info.el: No need to require jka-compr when compiling.
23097
23098 2011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
23099
23100 * net/gnutls.el (gnutls-algorithm-priority): New variable.
23101 (gnutls-negotiate): Use it.
23102
23103 * emacs-lisp/cl-macs.el (declare): Link to the "Declarations" node.
23104
23105 * info.el (Info-beginning-of-buffer): New command.
23106 (Info-mode-map): Use it instead of `beginning-of-buffer' to allow
23107 announcing `b' as the key (bug#8325).
23108 (Info-mode-menu): Use `Info-beginning-of-buffer' for consistency.
23109
23110 * emacs-lisp/cl-macs.el (declare): Doc string fix-up.
23111
23112 * international/mule-cmds.el
23113 (describe-specified-language-support): Make the error message
23114 clearer (bug#8905).
23115
23116 * emacs-lisp/cl-macs.el (declare): Add a doc string (bug#8690).
23117
23118 * isearch.el (isearch-barrier): Add a doc string, since it's
23119 mentioned in a function doc string (bug#8678).
23120
23121 2011-07-15 Martin Rudalics <rudalics@gmx.at>
23122
23123 * window.el (switch-to-buffer): Call pop-to-buffer with normalized
23124 buffer argument (Bug#9083) and self-identifying label argument.
23125
23126 2011-07-15 Glenn Morris <rgm@gnu.org>
23127
23128 * emacs-lisp/debug.el (debug): Doc fix. (Bug#8273)
23129
23130 2011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
23131
23132 * man.el (Man-fontify-manpage): Fix message when formatting the
23133 man page (bug#7929).
23134
23135 2011-07-14 Eli Zaretskii <eliz@gnu.org>
23136
23137 * buff-menu.el (Buffer-menu-buffer+size): Accept an additional
23138 argument LRM; if non-nil, append an invisible LRM character to the
23139 buffer name.
23140 (list-buffers-noselect): Call Buffer-menu-buffer+size with the
23141 last argument non-nil, when formatting buffer names.
23142 (Buffer-menu-mode, list-buffers-noselect): Force left-to-right
23143 paragraph direction.
23144
23145 2011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
23146
23147 * man.el (Man-bgproc-sentinel): Skip any arguments and only output
23148 the man page name (bug#7929).
23149
23150 * image.el (put-image): Mention the `put-image' overlay property
23151 (bug#7834).
23152
23153 * scroll-bar.el (set-scroll-bar-mode): Mention that
23154 `scroll-bar-mode' lists the values (bug#7772).
23155
23156 * image-mode.el (image-mode-fit-frame): Mention that it's a toggle
23157 command (bug#7729).
23158
23159 * rect.el (apply-on-rectangle): Return the point after the last
23160 operation.
23161 (string-rectangle): Go to the point after the last operation
23162 (bug#7522).
23163
23164 * printing.el (pr-toggle-region): Clarify the documentation
23165 slightly (bug#7493).
23166
23167 * time.el (display-time-update):
23168 Allow `display-time-mail-function' to return nil (bug#7158).
23169 Fix suggested by Detlev Zundel.
23170
23171 * vc/diff.el (diff): Clarify the order the file names are read
23172 (bug#7111).
23173
23174 * mouse.el (mouse-set-region): Link to `mouse-drag-copy-region' in
23175 the doc string (bug#7015).
23176
23177 * font-lock.el (font-lock-maximum-decoration): Mention what
23178 numeric levels mean (bug#6935).
23179
23180 * startup.el (initial-buffer-choice): Don't mention the `none'
23181 selection, which is against policy.
23182
23183 2011-07-14 Martin Rudalics <rudalics@gmx.at>
23184
23185 * window.el (display-buffer-normalize-special):
23186 Replace `dedicated' by `dedicate' to dedicate window (Bug#9072).
23187
23188 2011-07-14 Eli Zaretskii <eliz@gnu.org>
23189
23190 * subr.el (version<, version<=, version=): Mention "-CVS" and
23191 "-12345" alpha version numbers.
23192
23193 2011-07-14 Chong Yidong <cyd@stupidchicken.com>
23194
23195 * bindings.el: Add advertised binding for set-mark-command
23196 (Bug#5772).
23197
23198 2011-07-14 Chong Yidong <cyd@stupidchicken.com>
23199
23200 * bindings.el (mode-line-other-buffer):
23201 * bookmark.el (bookmark-bmenu-2-window):
23202 * bs.el (bs-cycle-next, bs-cycle-previous):
23203 * net/tramp-cmds.el (tramp-append-tramp-buffers): Revert to using
23204 switch-to-buffer.
23205
23206 * net/tramp-compat.el (tramp-compat-pop-to-buffer-same-window):
23207 Delete.
23208
23209 2011-07-14 Juanma Barranquero <lekktu@gmail.com>
23210
23211 * follow.el (follow-debug-message, follow-redisplay):
23212 * jka-cmpr-hook.el (with-auto-compression-mode):
23213 Fix typos in docstrings.
23214
23215 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
23216
23217 * subr.el (with-silent-modifications): Clarify somewhat what the
23218 macro inhibits (bug#6525).
23219
23220 * simple.el (eval-expression): Note what it does if called
23221 interactively (bug#6495).
23222
23223 2011-07-13 Chong Yidong <cyd@stupidchicken.com>
23224
23225 * window.el (switch-to-buffer): New arg FORCE-SAME-WINDOW.
23226 Use pop-to-buffer buffer-or-name if it is nil.
23227
23228 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
23229 Remove switch-to-buffer.
23230
23231 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
23232
23233 * files.el (make-directory): Clarify that an error will be raised
23234 if there's an error (bug#6397).
23235
23236 * startup.el (initial-buffer-choice): Add `none' as a choice
23237 (bug#6234).
23238
23239 * subr.el (add-hook): Clarify section about buffer-local hooks
23240 (bug#6218).
23241
23242 * dired.el (dired-flagged): Clarify doc string (bug#6117).
23243
23244 2011-07-13 Juanma Barranquero <lekktu@gmail.com>
23245
23246 * tabify.el (untabify): Preserve the current column so that point
23247 doesn't move (bug#6032).
23248
23249 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
23250
23251 * progmodes/cperl-mode.el (cperl-syntaxify-by-font-lock):
23252 Rewrite to avoid awkward possessive "s" (bug#5986).
23253
23254 2011-07-13 Glenn Morris <rgm@gnu.org>
23255
23256 * dired.el (dired-use-ls-dired): Doc fix. (Bug#9039).
23257 (dired-insert-directory): Give a message the first time
23258 if ls is found not to support --dired.
23259
23260 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
23261
23262 * simple.el (toggle-truncate-lines): Clarify what is toggled
23263 (bug#5580). Text by Drew Adams.
23264
23265 2011-07-13 Chong Yidong <cyd@stupidchicken.com>
23266
23267 * simple.el (blink-matching-open): Make the error message from the
23268 last change less verbose.
23269
23270 2011-07-13 Dan Nicolaescu <dann@ics.uci.edu>
23271
23272 * font-lock.el (font-lock-comment-face): Use the high contrast
23273 "yellow" color for font-lock-comment-face on low color terminals
23274 using a dark background color (bug#4221).
23275
23276 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
23277
23278 * dired.el (dired-insert-set-properties): Make the doc string
23279 reflect what it does now (bug#5325).
23280
23281 * simple.el (blink-matching-open): Say that we were unable to find
23282 the match within the limit, if we're limited (bug#5122).
23283
23284 * international/mule-cmds.el (prefer-coding-system): Add an
23285 example (bug#4869).
23286
23287 * progmodes/etags.el (tags-search): Document `file-list-form'
23288 (bug#4731).
23289
23290 2011-07-13 Lawrence Mitchell <wence@gmx.li>
23291
23292 * net/browse-url.el (browse-url-default-browser)
23293 (browse-url-browser-function): Make the default browser choice a
23294 bit more logical (bug#4300). Also clean up the doc string.
23295
23296 2011-07-13 Juanma Barranquero <lekktu@gmail.com>
23297
23298 * bindings.el (completion-ignored-extensions): Add OpenMCL/Clozure
23299 binary endings (bug#4440).
23300
23301 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
23302
23303 * info.el (info-insert-file-contents): Inhibit jka-compr messages,
23304 which can be pretty annoying (bug#8971).
23305
23306 * jka-compr.el (jka-compr-verbose): New variable, and use
23307 throughout (bug#8971).
23308
23309 * info.el (Info-find-file): Fall back on the installation
23310 directory if we can't find the info node anywhere else.
23311
23312 2011-07-13 Sergei Organov <osv@javad.com> (tiny change)
23313
23314 * vc/vc.el (vc-revert-file):
23315 Don't set file time-stamp in the past. (Bug#5181)
23316
23317 2011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
23318
23319 * files.el (after-find-file): Give a better error message when
23320 trying to find a symlink that points to a file that doesn't exist
23321 (bug#4398).
23322
23323 * progmodes/cc-vars.el: Remove (probably) misleading comment
23324 (bug#4396).
23325
23326 2011-07-12 Johan Bockgård <bojohan@gnu.org>
23327
23328 * mouse-sel.el (mouse-sel-primary-overlay): Use the `region' face.
23329
23330 2011-07-12 Chong Yidong <cyd@stupidchicken.com>
23331
23332 * mouse-sel.el: Hack restoring functionality, while keeping
23333 compatibility with 2010-07-03 changes to mouse selection.
23334 (mouse-sel-primary-overlay): New var.
23335 (mouse-sel-selection-alist): Use it.
23336 (mouse-sel-mode): Doc fix; remove points that are default features
23337 of mouse.el.
23338
23339 2011-07-12 Johan Bockgård <bojohan@gnu.org>
23340
23341 * progmodes/compile.el (compilation-error-regexp-alist-alist):
23342 Fix previous fix (bug#2490).
23343
23344 2011-07-12 Roland Winkler <winkler@gnu.org>
23345
23346 * textmodes/bibtex.el (bibtex-initialize):
23347 Use pop-to-buffer-same-window.
23348 (bibtex-search-entries): Fix interactive call.
23349
23350 2011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
23351
23352 * progmodes/compile.el (compilation-error-regexp-alist-alist):
23353 Fontise bytecomp Error lines more correctly (bug#2490).
23354 Fix suggested by Johan Bockgård.
23355
23356 * subr.el (remove-duplicates): Remove; `delete-dups' is sufficient.
23357
23358 * dired-x.el (dired-guess-default): Use `delete-dups'.
23359
23360 2011-07-12 Chong Yidong <cyd@stupidchicken.com>
23361
23362 * dired.el (dired-mark-prompt):
23363 * dired-aux.el (dired-read-shell-command): Doc fix.
23364
23365 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
23366
23367 * mail/sendmail.el (sendmail-query-once):
23368 Use `customize-save-variable' unconditionally, now that it works under
23369 emacs -Q.
23370
23371 * mail/smtpmail.el (smtpmail-query-smtp-server): Ditto.
23372
23373 * cus-edit.el (custom-file): Take an optional no-error variable.
23374 (customize-save-variable): Set the variable, and give a warning if
23375 running under "emacs -q".
23376
23377 2011-07-11 Juanma Barranquero <lekktu@gmail.com>
23378
23379 * loadhist.el (unload-feature-special-hooks):
23380 Add `auto-coding-functions', `fill-nobreak-predicate' and
23381 `find-directory-functions' (bug#5327).
23382
23383 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
23384
23385 * vc/ediff.el (ediff-patch-file): Clarify doc string (bug#3138).
23386
23387 * cus-edit.el (custom-guess-name-alist): -alist variables should
23388 use the `alist' type (bug#3120). Suggested by Drew Adams.
23389
23390 * printing.el: Add documentation to all the `pr-toggle-' commands.
23391
23392 2011-07-11 Leo Liu <sdl.web@gmail.com>
23393
23394 * files.el (toggle-read-only): Only do the `C-x C-q' warning on VC
23395 backends where it makes sense (bug#2623).
23396
23397 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
23398
23399 * dired-x.el (dired-guess-default): Remove duplicate shell command
23400 entries (bug#2028).
23401 (dired-guess-default): Fix grammar in doc string (bug#2028).
23402 (dired-guess-shell-alist-user): Clarify the example a bit (bug#2030).
23403
23404 * subr.el (remove-duplicates): New conveniency function.
23405
23406 2011-07-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
23407
23408 * tool-bar.el (tool-bar-mode): Clarify positive/negative arguments
23409 (bug#1526).
23410
23411 2011-07-10 Martin Rudalics <rudalics@gmx.at>
23412
23413 * window.el (display-buffer-normalize-default): Don't invert
23414 meaning of even-window-heights. Reported by Eli Zaretskii
23415 <eliz@gnu.org>.
23416
23417 2011-07-10 Bob Rogers <rogers@rgrjr.dyndns.org>
23418
23419 * vc/vc.el (vc-diff-internal): Fix race condition (Bug#1256).
23420
23421 2011-07-10 Chong Yidong <cyd@stupidchicken.com>
23422
23423 * window.el (display-buffer): Fix arguments to
23424 display-buffer-reuse-window in last change.
23425
23426 * faces.el (link): Use a less saturated blue on light backgrounds.
23427
23428 * startup.el (fancy-startup-text, fancy-about-text)
23429 (fancy-startup-tail): Use font-lock faces, for background safety.
23430
23431 2011-07-09 Bob Nnamtrop <bobnnamtrop@gmail.com> (tiny change)
23432
23433 * emulation/viper-cmd.el (viper-change-state-to-vi):
23434 Limit triggering of abbrev expansion (Bug#9038).
23435
23436 2011-07-09 Martin Rudalics <rudalics@gmx.at>
23437
23438 * window.el (display-buffer-default-specifiers): Remove.
23439 (display-buffer-macro-specifiers): Remove default specifiers.
23440 (display-buffer-alist): Default to nil.
23441 (display-buffer-reuse-window): New optional argument other-window.
23442 (display-buffer-pop-up-window): Allow splitting internal
23443 windows. Check whether a live window was created.
23444 (display-buffer-other-window-means-other-frame)
23445 (display-buffer-normalize-arguments): Rename to
23446 display-buffer-normalize-argument and rewrite. Set the
23447 other-window specifier.
23448 (display-buffer-normalize-special): New function.
23449 (display-buffer-normalize-options): Rename to
23450 display-buffer-normalize-default and rewrite.
23451 (display-buffer-normalize-options-inhibit): Remove.
23452 (display-buffer-normalize-specifiers): Rewrite.
23453 (display-buffer): Process other-window specifier and call
23454 display-buffer-reuse-window with it. Emulate Emacs 23 behavior
23455 more faithfully.
23456 (pop-up-windows, even-window-heights): Restore Emacs 23 default values.
23457 (display-buffer-alist-set): Don't handle 'unset default values.
23458 (display-buffer-in-window, display-buffer-alist-set):
23459 Replace symbol "dedicated" by "dedicate". Reported by Tassilo Horn
23460 <tassilo@member.fsf.org>.
23461
23462 2011-07-09 Leo Liu <sdl.web@gmail.com>
23463
23464 * register.el (insert-register): Restore accidental change on
23465 2011-06-26. (Bug#9028)
23466
23467 2011-07-09 Glenn Morris <rgm@gnu.org>
23468
23469 * subr.el (remq): Handle the empty list. (Bug#9024)
23470
23471 2011-07-08 Andreas Schwab <schwab@linux-m68k.org>
23472
23473 * mail/sendmail.el (send-mail-function): No longer delay custom
23474 initialization.
23475 * custom.el (custom-initialize-delay): Doc fix.
23476
23477 2011-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
23478
23479 * abbrev.el (expand-abbrev): Try to preserve point (bug#5805).
23480
23481 2011-07-08 Michael Albinus <michael.albinus@gmx.de>
23482
23483 * net/tramp-sh.el (tramp-sh-handle-start-file-process): Use a
23484 human-friendly prompt.
23485
23486 2011-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
23487
23488 * vc/vc-bzr.el (vc-bzr-revision-keywords): Remove svn, it's only
23489 provided by a particular plugin.
23490
23491 2011-07-08 Lars Magne Ingebrigtsen <larsi@gnus.org>
23492
23493 * mail/sendmail.el (sendmail-query-once): If we aren't allowed to
23494 save customizations (with "emacs -Q"), just set the variable
23495 instead of erroring out.
23496
23497 * mail/smtpmail.el (smtpmail-query-smtp-server): Ditto.
23498
23499 2011-07-08 Juri Linkov <juri@jurta.org>
23500
23501 * arc-mode.el (archive-zip-expunge, archive-zip-update)
23502 (archive-zip-update-case): Use 7z if found by `executable-find'.
23503 The order of searching the available programs is the same as in
23504 `archive-zip-extract' (bug#8968).
23505
23506 2011-07-07 Chong Yidong <cyd@stupidchicken.com>
23507
23508 * menu-bar.el (menu-bar-line-wrapping-menu): Revert last change.
23509 (menu-bar-options-menu): Tweak descriptions.
23510
23511 2011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
23512
23513 * menu-bar.el (menu-bar-line-wrapping-menu): Make all the Options
23514 menu items into verb phrases (bug#1421). Also refill to fit under
23515 80 columns.
23516
23517 2011-07-07 Chong Yidong <cyd@stupidchicken.com>
23518
23519 * info.el (info, Info-read-node-name-2, Info-read-node-name-1)
23520 (Info-read-node-name): Doc fix (Bug#1084).
23521
23522 * thingatpt.el (forward-thing, bounds-of-thing-at-point)
23523 (thing-at-point, beginning-of-thing, end-of-thing, in-string-p)
23524 (end-of-sexp, beginning-of-sexp)
23525 (thing-at-point-bounds-of-list-at-point, forward-whitespace)
23526 (forward-symbol, forward-same-syntax, word-at-point)
23527 (sentence-at-point): Doc fix (Bug#1144).
23528
23529 2011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
23530
23531 * info.el (Info-mode-map): Remove S-TAB binding, since [backtab]
23532 should cover it (bug#1281).
23533
23534 * cus-edit.el (custom-show): Mark as obsolete.
23535
23536 * net/network-stream.el (network-stream-open-starttls): If GnuTLS
23537 negotiation fails, then possibly try again with a non-encrypted
23538 connection (bug#9017).
23539
23540 * mail/smtpmail.el (smtpmail-stream-type): Note that `plain' can
23541 be used.
23542
23543 2011-07-07 Richard Stallman <rms@gnu.org>
23544
23545 * mail/rmail.el (rmail-next-error-move): Use `compilation-message'
23546 property, and handle its changed format.
23547 Look for the correct line number.
23548 Use file's line contents (but not past first =) to find
23549 correct line in message.
23550
23551 2011-07-07 Kenichi Handa <handa@m17n.org>
23552
23553 * international/characters.el (build-unicode-category-table):
23554 Delete it.
23555 (unicode-category-table): Set it by unicode-property-table-internal.
23556
23557 * international/mule-cmds.el (char-code-property-alist): Move to
23558 to src/chartab.c.
23559 (get-char-code-property): Call unicode-property-table-internal to
23560 load a file. Call get-unicode-property-internal where necessary.
23561 (put-char-code-property): Call unicode-property-table-internal to
23562 load a file. Call put-unicode-property-internal where necessary.
23563 put-unicode-property-internal where necessary.
23564 (char-code-property-description):
23565 Call unicode-property-table-internal to load a file.
23566
23567 * international/charprop.el:
23568 * international/uni-bidi.el:
23569 * international/uni-category.el:
23570 * international/uni-combining.el:
23571 * international/uni-comment.el:
23572 * international/uni-decimal.el:
23573 * international/uni-decomposition.el:
23574 * international/uni-digit.el:
23575 * international/uni-lowercase.el:
23576 * international/uni-mirrored.el:
23577 * international/uni-name.el:
23578 * international/uni-numeric.el:
23579 * international/uni-old-name.el:
23580 * international/uni-titlecase.el:
23581 * international/uni-uppercase.el: Regenerate.
23582
23583 * loadup.el: Load international/charprop.el before
23584 international/characters.
23585
23586 2011-07-07 Chong Yidong <cyd@stupidchicken.com>
23587
23588 * window.el (next-buffer, previous-buffer): Signal an error if
23589 called from a minibuffer window.
23590
23591 * bindings.el: Revert 2011-07-04 change.
23592
23593 2011-07-06 Richard Stallman <rms@gnu.org>
23594
23595 * mail/rmailmm.el (rmail-mime-process): Use markers for buf positions.
23596 (rmail-mime-insert-bulk, rmail-mime-insert-text):
23597 Treat markers like ints.
23598 (rmail-mime-entity): Doc fix.
23599
23600 2011-07-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
23601
23602 * mail/smtpmail.el (smtpmail-default-smtp-server): Made into a
23603 defcustom again for backwards compatibility.
23604
23605 * simple.el (shell-command-on-region): Fill.
23606
23607 * dired-aux.el (dired-kill-line): Add a doc string.
23608
23609 * dabbrev.el (dabbrev-abbrev-char-regexp): Note that nil defaults
23610 to "\\sw\\|\\s_" (bug#358).
23611
23612 * dired.el (dired-mode): Clarify "unmark or unflag" (bug#8770).
23613 (dired-unmark-backward): Ditto.
23614 (dired-flag-backup-files): Ditto.
23615
23616 * dired-x.el (dired-mark-sexp): Ditto.
23617
23618 2011-07-06 Richard Stallman <rms@gnu.org>
23619
23620 * mail/rmailmm.el: Give entity a new slot, TRUNCATED.
23621 (rmail-mime-entity): New arg TRUNCATED.
23622 (rmail-mime-entity-truncated, rmail-mime-entity-set-truncated):
23623 New functions.
23624 (rmail-mime-save): Warn if entity is truncated.
23625 (rmail-mime-toggle-hidden): Likewise, for showing.
23626 (rmail-mime-process-multipart): Record when an entity is truncated.
23627
23628 * mail/rmailmm.el (rmail-search-mime-message): Don't get confused
23629 if ENTITY is a string.
23630
23631 2011-07-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
23632
23633 * emacs-lisp/lisp-mode.el (eval-defun-1): Update the documentation
23634 of faces when `M-C-x'-ing their definitions (bug#8378).
23635 Also clean up the code slightly.
23636
23637 * progmodes/grep.el (rgrep): Don't bind `process-connection-type',
23638 because that makes the colors go away.
23639
23640 * mail/sendmail.el (send-mail-function): Change the default to
23641 `sendmail-query-once'.
23642 (sendmail-query-once): Add an autoload cookie.
23643
23644 * net/network-stream.el (network-stream-open-starttls): Try using
23645 a plain connection even if the server offered STARTTLS, and we
23646 kinda wanted to use it, if Emacs doesn't have any STARTTLS
23647 capability. This should make smtpmail.el work in slightly more
23648 configurations.
23649
23650 2011-07-06 Michael Albinus <michael.albinus@gmx.de>
23651
23652 * net/tramp-compat.el (tramp-compat-pop-to-buffer-same-window):
23653 New defun.
23654 * net/tramp-cmds.el (tramp-append-tramp-buffers): Use it.
23655
23656 2011-07-06 Michael R. Mauger <mmaug@yahoo.com>
23657
23658 * progmodes/sql.el: Version 3.0
23659 (sql-product-alist): Add product :completion-object,
23660 :completion-column, and :statement attributes.
23661 (sql-mode-menu, sql-interactive-mode-map): Fix List entries.
23662 (sql-mode-syntax-table): Mark all punctuation.
23663 (sql-font-lock-keywords-builder): Temporarily remove fallback on
23664 ansi keywords.
23665 (sql-regexp-abbrev, sql-regexp-abbrev-list): New functions.
23666 (sql-mode-oracle-font-lock-keywords): Improve.
23667 (sql-oracle-show-reserved-words): New function for development.
23668 (sql-product-font-lock): Simplify for source code buffers.
23669 (sql-product-syntax-table, sql-product-font-lock-syntax-alist):
23670 New functions.
23671 (sql-highlight-product): Set product specific syntax table.
23672 (sql-mode-map): Add statement movement functions.
23673 (sql-ansi-statement-starters, sql-oracle-statement-starters):
23674 New variable.
23675 (sql-statement-regexp, sql-beginning-of-statement)
23676 (sql-end-of-statement, sql-signum): New functions.
23677 (sql-buffer-live-p, sql=find-sqli-buffer): Add CONNECTION parameter.
23678 (sql-show-sqli-buffer): Bug fix.
23679 (sql-interactive-mode): Store connection data as buffer local.
23680 (sql-connect): Add NEW-NAME parameter. Redesign interaction
23681 with sql-interactive-mode.
23682 (sql-save-connection): Save buffer local settings.
23683 (sql-connection-menu-filter): Change menu entry name.
23684 (sql-product-interactive): Bug fix.
23685 (sql-preoutput-hold): New variable.
23686 (sql-interactive-remove-continuation-prompt): Bug fixes.
23687 (sql-debug-redirect): New variable.
23688 (sql-str-literal): New function.
23689 (sql-redirect, sql-redirect-one, sql-redirect-value, sql-execute):
23690 Redesign.
23691 (sql-oracle-save-settings, sql-oracle-restore-settings)
23692 (sql-oracle-list-all, sql-oracle-list-table): New functions.
23693 (sql-completion-object, sql-completion-column)
23694 (sql-completion-sqlbuf): New variables.
23695 (sql-build-completions-1, sql-build-completions)
23696 (sql-try-completion): New functions.
23697 (sql-read-table-name): Use them.
23698 (sql-contains-names): New buffer local variable.
23699 (sql-list-all, sql-list-table): Use it.
23700 (sql-oracle-completion-types): New variable.
23701 (sql-oracle-completion-object, sql-sqlite-completion-object)
23702 (sql-postgres-completion-object): New functions.
23703
23704 2011-07-06 Glenn Morris <rgm@gnu.org>
23705
23706 * window.el (pop-to-buffer): Doc fix.
23707
23708 2011-07-06 Markus Heiser <markus.heiser@darmarit.de> (tiny change)
23709
23710 * progmodes/gud.el (gud-pdb-marker-regexp): Accept \r char (Bug#5653).
23711
23712 2011-07-06 Chong Yidong <cyd@stupidchicken.com>
23713
23714 * window.el (special-display-popup-frame): Doc fix (Bug#8853).
23715
23716 * info.el (Info-directory-toc-nodes): Minor doc fix (Bug#8833).
23717
23718 2011-07-05 Chong Yidong <cyd@stupidchicken.com>
23719
23720 * button.el (button): Inherit from link face. Suggested by Dan
23721 Nicolaescu.
23722
23723 2011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
23724
23725 * progmodes/gdb-mi.el: Fit in 80 columns.
23726 (gdb-setup-windows, gdb-restore-windows): Avoid other-window and
23727 switch-to-buffer.
23728
23729 * progmodes/which-func.el (which-func-ff-hook): Don't output a message
23730 if imenu is simply not configured (bug#8941).
23731
23732 2011-07-05 Ken Manheimer <ken.manheimer@gmail.com>
23733
23734 * allout.el (allout-post-undo-hook): New allout outline-change
23735 event hook to signal undo activity.
23736 (allout-post-command-business): Run allout-post-undo-hook if an
23737 undo just occurred.
23738 (allout-after-copy-or-kill-hook, allout-mode): Minor docstring changes.
23739 * allout-widgets.el (allout-widgets-after-undo-function):
23740 Ensure the integrity of the current item's decoration after it has been
23741 in the vicinity of an undo.
23742 (allout-widgets-mode): Include allout-widgets-after-undo-function
23743 on the new allout-post-undo-hook.
23744
23745 2011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
23746
23747 * emacs-lisp/lisp-mode.el (lisp-interaction-mode-abbrev-table):
23748 Let define-derived-mode define it.
23749 * emacs-lisp/derived.el (define-derived-mode): Try to avoid creating
23750 cycles of abbrev-table inheritance (bug#8998).
23751
23752 2011-07-05 Roland Winkler <winkler@gnu.org>
23753
23754 * textmodes/bibtex.el: Add support for biblatex.
23755 (bibtex-BibTeX-entry-alist, bibtex-biblatex-entry-alist)
23756 (bibtex-BibTeX-field-alist, bibtex-biblatex-field-alist)
23757 (bibtex-dialect-list, bibtex-dialect, bibtex-no-opt-remove-re)
23758 (bibtex-entry-alist, bibtex-field-alist): New variables.
23759 (bibtex-entry-field-alist): Obsolete alias for
23760 bibtex-BibTeX-entry-alist.
23761 (bibtex-entry-alist, bibtex-field-alist): New widgets.
23762 (bibtex-set-dialect): New command.
23763 (bibtex-entry-type, bibtex-entry-head)
23764 (bibtex-entry-maybe-empty-head, bibtex-any-valid-entry-type):
23765 Bind via bibtex-set-dialect.
23766 (bibtex-Article, bibtex-Book, bibtex-Booklet, bibtex-InBook)
23767 (bibtex-InCollection, bibtex-InProceedings, bibtex-Manual)
23768 (bibtex-MastersThesis, bibtex-Misc, bibtex-PhdThesis)
23769 (bibtex-Proceedings, bibtex-TechReport, bibtex-Unpublished):
23770 Define via bibtex-set-dialect.
23771 (bibtex-name-in-field, bibtex-remove-OPT-or-ALT):
23772 Obey bibtex-no-opt-remove-re.
23773 (bibtex-vec-push, bibtex-vec-incr): New functions.
23774 (bibtex-format-entry, bibtex-field-list)
23775 (bibtex-print-help-message, bibtex-validate)
23776 (bibtex-search-entries): Use new format of bibtex-entry-alist.
23777
23778 2011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
23779
23780 * progmodes/compile.el (compilation-goto-locus):
23781 * net/tramp-cmds.el (tramp-append-tramp-buffers):
23782 * bs.el (bs-cycle-next, bs-cycle-previous):
23783 * bookmark.el (bookmark-bmenu-list, bookmark-bmenu-2-window):
23784 * bindings.el (mode-line-other-buffer):
23785 * autoinsert.el (auto-insert):
23786 * arc-mode.el (archive-extract):
23787 * abbrev.el (edit-abbrevs): Fix some uses of switch-to-buffer.
23788
23789 2011-07-05 Juanma Barranquero <lekktu@gmail.com>
23790
23791 * emacs-lock.el (emacs-lock-mode): Fix typo in variable name.
23792 Fix check of `emacs-lock-unlockable-modes'.
23793 Coerce true values of `emacs-lock--try-unlocking' to t.
23794
23795 2011-07-05 Juanma Barranquero <lekktu@gmail.com>
23796
23797 * obsolete/old-emacs-lock.el: Rename from emacs-lock.el.
23798 * emacs-lock.el: New file.
23799
23800 2011-07-05 Julien Danjou <julien@danjou.info>
23801
23802 * textmodes/rst.el (rst-define-level-faces): Use `facep' rather
23803 than `boundp' to check if face is set.
23804
23805 2011-07-05 Juanma Barranquero <lekktu@gmail.com>
23806
23807 * register.el (registerv-make):
23808 * window.el (window-min-height): Fix typos in docstrings.
23809
23810 2011-07-05 Jan Djärv <jan.h.d@swipnet.se>
23811
23812 * dynamic-setting.el (dynamic-setting-handle-config-changed-event):
23813 Update doc string.
23814
23815 2011-07-04 Juanma Barranquero <lekktu@gmail.com>
23816
23817 * server.el (server-execute): Catch quit and call
23818 `server-return-error' to pass the error back to emacsclient and
23819 close the connection (bug#8942).
23820
23821 2011-07-04 Ken Manheimer <ken.manheimer@gmail.com>
23822
23823 * allout.el (allout-encrypt-unencrypted-on-saves): Do not provide
23824 insecure exception for current topic. Also note that auto-saves
23825 are handled differently.
23826
23827 (allout-auto-save-temporarily-disabled, allout-just-did-undo):
23828 State variables for tracking auto-save inhibition situation.
23829
23830 (allout-write-contents-hook-handler): Rename from
23831 'allout-write-file-hook-handler', and describe how it depends on
23832 write-contents-functions sensitivity to non-nil value to prevent
23833 file write.
23834
23835 (allout-auto-save-hook-handler): Remove. auto-save does not check
23836 this in individual buffers, only in the starting buffer, so this
23837 is not the right way for us to inhibit auto-save in a buffer
23838 according to its condition.
23839
23840 (allout-mode): Use new allout-write-contents-hook-handler, and
23841 only with write-contents-functions. Remove auto-save provisions -
23842 they're implemented elsewhere.
23843
23844 (allout-before-change-handler): If undo is in progress, note that
23845 for attention of allout-post-command-business.
23846
23847 (allout-post-command-business): If the command we're following was
23848 an undo, check for change in the status of encrypted items and
23849 adjust auto-save inhibitions accordingly.
23850
23851 (allout-toggle-subtree-encryption): Adjust auto-save inhibition
23852 according to whether there are or aren't any plain-text topics
23853 pending encryption.
23854
23855 (allout-inhibit-auto-save-info-for-decryption):
23856 Adjust buffer-saved-size and some allout state to inhibit auto-saves
23857 if there are plain-text topics pending encryption.
23858
23859 (allout-maybe-resume-auto-save-info-after-encryption): Adjust
23860 buffer-saved-size and some allout state to not inhibit auto-saves
23861 if there are no longer any plain-text topics pending encryption.
23862
23863 (allout-next-topic-pending-encryption, allout-encrypt-decrypted):
23864 No longer provide for exemption of the current topic.
23865
23866 2011-07-04 Juri Linkov <juri@jurta.org>
23867
23868 Add 7z operations to delete and save changed members (bug#8968).
23869 * arc-mode.el (archive-7z-expunge, archive-7z-update):
23870 New defcustoms.
23871 (archive-7z-write-file-member): New function.
23872 (archive-7z-summarize): Fix the number of dashes in the
23873 listing output.
23874
23875 2011-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
23876
23877 * pcmpl-linux.el (pcomplete-pare-list): Re-add, from pcomplete.el
23878 (bug#8958).
23879
23880 2011-07-04 Chong Yidong <cyd@stupidchicken.com>
23881
23882 * bindings.el: Ignore next-buffer and previous-buffer in
23883 minibuffer-local-map.
23884
23885 * font-lock.el (font-lock-builtin-face): Change light background
23886 color to dark slate blue (Bug#6693).
23887
23888 2011-07-04 Wang Diancheng <dcwang@kingbase.com.cn> (tiny change)
23889
23890 * progmodes/gdb-mi.el (gdb): Use completion-at-point.
23891
23892 2011-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
23893
23894 * files.el (find-file): Use pop-to-buffer-same-window (bug#8911).
23895 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
23896 Add switch-to-buffer.
23897
23898 2011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
23899
23900 * isearch.el (isearch-search-fun-function): Clarify further the
23901 meaning of the function returned.
23902
23903 2011-07-04 Michael Albinus <michael.albinus@gmx.de>
23904
23905 * net/tramp-cmds.el (tramp-cleanup-this-connection): New command.
23906
23907 * net/tramp-sh.el (tramp-color-escape-sequence-regexp): New defconst.
23908 (tramp-sh-handle-insert-directory, tramp-convert-file-attributes):
23909 Use it.
23910 (tramp-remote-path): Add "/bin" and "/usr/bin". On busyboxes,
23911 `tramp-default-remote-path' does not exist.
23912 (tramp-send-command-and-read): New optional argument NOERROR.
23913 (tramp-open-connection-setup-interactive-shell)
23914 (tramp-get-remote-path, tramp-get-remote-stat): Use it.
23915 (tramp-get-remote-readlink): Do not mask with `ignore-errors'.
23916 (tramp-process-sentinel): Flush also process' connection property.
23917 (tramp-sh-handle-start-file-process): Do not set process
23918 sentinel. It is done now ...
23919 (tramp-maybe-open-connection): ... here. (Bug#8929)
23920
23921 2011-07-04 MON KEY <monkey@sandpframing.com>
23922
23923 * play/animate.el (animate-string): Doc fixes and allow changing
23924 the buffer name (bug#5417).
23925
23926 2011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
23927
23928 * play/animate.el (animation-buffer-name): Rename from *animate*.
23929
23930 2011-07-04 Paul Eggert <eggert@cs.ucla.edu>
23931
23932 * emacs-lisp/timer.el: Use time-date fns rather than rolling our own.
23933 This is simpler and helps future-proof the code.
23934 (timer-until): Use time-subtract and float-time.
23935 (timer--time-less-p): Use time-less-p.
23936
23937 2011-07-04 Juanma Barranquero <lekktu@gmail.com>
23938
23939 * type-break.el (timep): Use the value of `float-time' to avoid a
23940 byte-compiler warning.
23941
23942 * server.el (server-eval-and-print): Return any result, even nil.
23943
23944 2011-07-03 Paul Eggert <eggert@cs.ucla.edu>
23945
23946 * type-break.el: Accept time formats that the builtins accept.
23947 (timep, type-break-time-difference): Accept any format that
23948 float-time accepts, rather than insisting on (HIGH LOW USECS) format.
23949 This is simpler and helps future-proof the code.
23950 (type-break-time-difference): Round rather than ignoring
23951 subseconds components.
23952
23953 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
23954
23955 * info.el (Info-apropos-matches): Make non-interactive, since it
23956 doesn't seem to do anything useful as a command (bug#8829).
23957
23958 2011-07-03 Chong Yidong <cyd@stupidchicken.com>
23959
23960 * frame.el (frame-background-mode, frame-set-background-mode):
23961 Move from faces.el.
23962 (frame-default-terminal-background): New function.
23963
23964 * custom.el (custom-push-theme): Don't record faces in `changed'
23965 theme; this doesn't work correctly for per-frame face settings.
23966 (disable-theme): Use face-set-after-frame-default to reset faces.
23967 (custom--frame-color-default): New function.
23968
23969 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
23970
23971 * dired.el (dired-flagging-regexp): Remove unused variable
23972 (bug#8769).
23973
23974 2011-03-29 Kevin Ryde <user42@zip.com.au>
23975
23976 * progmodes/compile.el (compilation-error-regexp-alist-alist):
23977 `perl-Test2' extend to match possible "fail #N" rep count
23978 (bug#8377).
23979
23980 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
23981
23982 * mail/feedmail.el (feedmail-buffer-to-smtpmail):
23983 `smtpmail-via-smtp' now returns the error instead of nil.
23984
23985 * isearch.el (isearch-search-fun-function): Clarify the doc string
23986 (bug#8101).
23987
23988 2011-07-03 Richard Kim <emacs18@gmail.com> (tiny change)
23989
23990 * textmodes/texnfo-upd.el (texinfo-insert-menu): Don't insert
23991 unnecessary spaces (bug#8987).
23992
23993 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
23994
23995 * net/network-stream.el (open-network-stream): Use the
23996 :end-of-capability command thoughout.
23997
23998 2011-07-03 Wolfgang Jenkner <wjenkner@inode.at> (tiny change)
23999
24000 * net/network-stream.el (open-network-stream): Add the
24001 :end-of-capability command parameter, used by pop3.el.
24002
24003 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
24004
24005 * dired.el (dired-map-over-marks): Refill the doc string (bug#6814).
24006
24007 * fringe.el (fringe-query-style): Remove redundant text " (type ?
24008 for list)" (bug#6475).
24009
24010 * files.el (file-expand-wildcards): Ignore non-readable
24011 sub-directories while trying to find matches instead of signaling
24012 an error (bug#6297).
24013
24014 * man.el (Man-reference-regexp): Allow matching possible
24015 word-wrapped references (bug#6289).
24016
24017 * vc/vc.el (vc-modify-change-comment): Change *VC-log* to *vc-log*
24018 for consistency with the other vc buffers (bug#6197).
24019 (vc-checkin): Ditto.
24020
24021 * vc/vc-arch.el: Fix comments to match the *VC-log* name change.
24022
24023 * longlines.el (longlines-mode): Document what ARG does (bug#6150).
24024
24025 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
24026
24027 * custom.el (defcustom): Clarify that :set is only used in the
24028 Customize user interface (bug#6089).
24029
24030 * progmodes/flymake.el (flymake-mode): If the buffer isn't
24031 associated with a file, refuse to run instead of erroring out
24032 (bug#6084).
24033
24034 * textmodes/fill.el (fill-region): Remove the "Ordinarily" from
24035 the doc string, since it appears that using `fill-column' always
24036 controls the width (bug#7845).
24037
24038 * simple.el (shell-command-on-region): Say where the error output
24039 went if `shell-command-default-error-buffer' is set (bug#6857).
24040
24041 2011-07-02 Ken Manheimer <ken.manheimer@gmail.com>
24042
24043 * allout.el (allout-yank-processing): Adjust cursor position for
24044 backwards-deleted space.
24045
24046 (allout-rebullet-heading): Register changes with
24047 allout-exposure-changed-hook, so the modified topic is properly
24048 decorated.
24049
24050 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
24051
24052 * minibuffer.el (completion-in-region): Document PREDICATE
24053 (bug#7136).
24054
24055 * info-look.el (info-lookup-add-help): Clarify that ARGS is a list
24056 of keyword/argument pairs (bug#6904).
24057
24058 * replace.el (multi-occur):
24059 Mention `multi-occur-in-matching-buffers' in the doc string (bug#7566).
24060
24061 2011-07-02 Drew Adams <drew.adams@oracle.com>
24062
24063 * dired.el (dired-mark-if): Make the message about whether it's
24064 marking or unmarking clearer (bug#8523).
24065
24066 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
24067
24068 * disp-table.el (display-table-print-array): New function.
24069 (describe-display-table): Use it to print the vectors more pretty
24070 (Bug#8859).
24071
24072 2011-07-02 Martin Rudalics <rudalics@gmx.at>
24073
24074 * window.el (window-state-get-1): Don't assign clone numbers.
24075 Add clone-of item to list of window parameters.
24076 (window-state-put-2): Don't process clone numbers.
24077 (display-buffer-alist): Fix doc-string.
24078
24079 2011-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
24080
24081 * subr.el (remq): Don't allocate if it's not needed.
24082 (keymap--menu-item-binding, keymap--menu-item-with-binding)
24083 (keymap--merge-bindings): New functions.
24084 (keymap-canonicalize): Use them to refine the canonicalization.
24085 * minibuffer.el (minibuffer-local-completion-map)
24086 (minibuffer-local-must-match-map): Move initialization from C.
24087 (minibuffer-local-filename-completion-map): Move initialization from C;
24088 don't inherit from anything here.
24089 (minibuffer-local-filename-must-match-map): Make obsolete.
24090 (completing-read-default): Use make-composed-keymap to combine
24091 minibuffer-local-filename-completion-map with either
24092 minibuffer-local-must-match-map or
24093 minibuffer-local-filename-completion-map.
24094
24095 2011-07-01 Glenn Morris <rgm@gnu.org>
24096
24097 * type-break.el (type-break-time-sum): Use dolist.
24098
24099 * textmodes/flyspell.el (flyspell-word-search-backward):
24100 Replace CL function.
24101
24102 2011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
24103
24104 * mouse.el (mouse--strip-first-event): New function.
24105 (function-key-map): Use it to map fringe clicks to normal clicks
24106 by default.
24107
24108 * vc/vc-bzr.el (vc-bzr-revision-keywords): Update.
24109 (vc-bzr-revision-completion-table): Add support for annotate and date.
24110
24111 * emacs-lisp/derived.el (define-derived-mode): Make abbrev-table
24112 inherit from parent.
24113
24114 2011-07-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
24115
24116 * dired-aux.el (dired-diff): Doc fixup (bug#8816).
24117 (dired-show-file-type): Doc fixup (bug#8818).
24118
24119 * dired.el (dired-mode): Fix up the doc string as suggested by
24120 Drew Adams (bug#8817).
24121
24122 * progmodes/flymake.el (flymake-find-file-hook): Add an `autoload'
24123 cookie, since the manual says that it should be possible to add
24124 this function to `find-file-hook' (bug#8709).
24125
24126 2011-07-01 Teodor Zlatanov <tzz@lifelogs.com>
24127
24128 * progmodes/cfengine.el: Moved all cfengine3.el functionality
24129 here. Noted Ted Zlatanov as the maintainer.
24130 (cfengine-common-settings, cfengine-common-syntax): New functions
24131 to set up common things between `cfengine-mode' and
24132 `cfengine3-mode'.
24133 (cfengine3-mode): New mode.
24134 (cfengine3-defuns cfengine3-defuns-regex
24135 (cfengine3-class-selector-regex cfengine3-category-regex)
24136 (cfengine3-vartypes cfengine3-font-lock-keywords)
24137 (cfengine3-beginning-of-defun, cfengine3-end-of-defun)
24138 (cfengine3-indent-line): Add from cfengine3.el.
24139
24140 2011-07-01 Michael Albinus <michael.albinus@gmx.de>
24141
24142 * net/tramp.el (tramp-encoding-command-interactive): New defcustom.
24143
24144 * net/tramp-sh.el (tramp-maybe-open-connection): Use it.
24145
24146 2011-07-01 Martin Rudalics <rudalics@gmx.at>
24147
24148 * window.el (same-window-buffer-names, same-window-regexps)
24149 (same-window-p, special-display-frame-alist)
24150 (special-display-popup-frame, special-display-function)
24151 (special-display-buffer-names, special-display-regexps)
24152 (special-display-p, pop-up-frame-alist, pop-up-frame-function)
24153 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
24154 (split-window-preferred-function, split-height-threshold)
24155 (split-width-threshold, even-window-heights)
24156 (display-buffer-mark-dedicated, window-splittable-p)
24157 (split-window-sensibly, window-safely-shrinkable-p):
24158 Un-obsolete.
24159 (display-buffer): Don't spread args with function specifier
24160 because special-display-popup-frame won't like it.
24161
24162 2011-07-01 Paul Eggert <eggert@cs.ucla.edu>
24163
24164 Time-stamp simplifications and fixes.
24165 These improve accuracy slightly, and future-proof the code
24166 against some potential changes to current-time format.
24167
24168 * woman.el (woman-decode-buffer, WoMan-log-end): Log fractional secs
24169 by using time-since and float-time.
24170
24171 * vc/ediff-util.el (ediff-calc-command-time): Use time-since
24172 and float-time. Say "NNN.NNN seconds" rather than "NNN seconds
24173 + NNN microseconds".
24174
24175 * type-break.el (type-break-time-sum): Rewrite using time-add.
24176
24177 * play/hanoi.el (hanoi-current-time-float): Remove.
24178 All uses replaced by float-time.
24179
24180 * nxml/rng-maint.el (rng-time-function): Rewrite using time-subtract.
24181 This yields a more-accurate answer.
24182 (rng-time-to-float): Remove; no longer needed.
24183
24184 * emacs-lisp/timer.el (timer-relative-time): Use time-add.
24185
24186 * calendar/timeclock.el (timeclock-seconds-to-time):
24187 Defalias to seconds-to-time, since they're the same thing.
24188
24189 * emacs-lisp/elp.el (elp-elapsed-time):
24190 * emacs-lisp/benchmark.el (benchmark-elapse):
24191 * allout-widgets.el (allout-elapsed-time-seconds): Use float-time.
24192
24193 2011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
24194
24195 * window.el (bury-buffer): Don't iconify the only frame.
24196 (switch-to-buffer): Revert to Emacs<23 behavior, i.e. do not fallback
24197 to pop-to-buffer. Use pop-to-buffer-same-frame if you don't like that.
24198
24199 2011-07-01 Chong Yidong <cyd@stupidchicken.com>
24200
24201 * eshell/em-smart.el (eshell-smart-display-navigate-list):
24202 Add mouse-yank-primary.
24203
24204 2011-07-01 Teodor Zlatanov <tzz@lifelogs.com>
24205
24206 * progmodes/cfengine3.el: New file to support CFEngine 3.x.
24207
24208 2011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
24209
24210 * emacs-lisp/find-func.el (find-library--load-name): New fun.
24211 (find-library-name): Use it to find relative load names when provided
24212 absolute file name (bug#8803).
24213
24214 2011-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
24215
24216 * textmodes/flyspell.el (flyspell-word): Consider words that
24217 differ only in case as potential doublons (bug#5687).
24218
24219 * net/soap-client.el (soap-invoke, soap-wsdl-resolve-references):
24220 Remove two rather uninteresting debugging-like messages to make
24221 debbugs.el more silent.
24222
24223 * comint.el (comint-password-prompt-regexp): Accept "Response" as
24224 a password-like phrase.
24225
24226 2011-06-30 Masatake YAMATO <yamato@redhat.com>
24227
24228 * progmodes/cc-guess.el: New file.
24229
24230 * progmodes/cc-langs.el (c-mode-menu): Add "Style..." submenu.
24231
24232 * progmodes/cc-styles.el (cc-choose-style-for-mode): New function
24233 derived from `c-basic-common-init'.
24234
24235 * progmodes/cc-mode.el (top-level): Require cc-guess.
24236 (c-basic-common-init): Use `cc-choose-style-for-mode'.
24237
24238 2011-06-30 Lawrence Mitchell <wence@gmx.li>
24239
24240 * progmodes/js.el (js-mode): Don't stomp on global settings (bug#8933).
24241
24242 2011-06-30 Alan Mackenzie <acm@muc.de>
24243
24244 * progmodes/cc-engine.el (c-guess-continued-construct):
24245 Correct the handling of template-args-cont, particularly for when font
24246 lock is disabled. Name this case as "CASE G".
24247
24248 2011-06-30 Ken Manheimer <ken.manheimer@gmail.com>
24249
24250 * allout.el (allout-yank-processing): Fix injection of extra space
24251 between bullet and non-whitespace character in first topic when
24252 pasting, ensuring that the actual spacing in the pasted topic
24253 following the bullet char is preserved. This extra space was
24254 causing pasted encrypted topics to get a decrypted status even
24255 when the content was actually still encrypted. Now the decryption
24256 status from before the paste is preserved.
24257
24258 (allout-flag-region): Set all allout overlays so they evaporate
24259 when reduced to zero length (evanescent), to prevent overlay
24260 leakage.
24261
24262 2011-06-30 Glenn Morris <rgm@gnu.org>
24263
24264 * w32-fns.el (w32-charset-info-alist): Declare.
24265
24266 * find-dired.el (find-grep-options): Simplify.
24267
24268 * term/ns-win.el (ns-set-resource): Declare.
24269
24270 * ses.el (row, col): Declare dynamic variables honestly.
24271
24272 * textmodes/reftex-parse.el (index-tags): Declare.
24273
24274 2011-06-30 Chong Yidong <cyd@stupidchicken.com>
24275
24276 * cus-edit.el (customize-push-and-save): New function.
24277
24278 * files.el (hack-local-variables-confirm): Use it.
24279
24280 * custom.el (load-theme): New arg NO-CONFIRM.
24281 Use customize-push-and-save (Bug#8720).
24282 (custom-enabled-themes): Doc fix.
24283
24284 * cus-theme.el (customize-create-theme)
24285 (custom-theme-merge-theme): Callers to load-theme changed.
24286
24287 2011-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
24288
24289 * thingatpt.el (thing-at-point-short-url-regexp): Require that
24290 short URLs have at least one dot in them (bug #7614).
24291
24292 * progmodes/grep.el (rgrep): Bind `process-connection-type' to
24293 nil, because using a pty is apparently too slow (bug #895).
24294
24295 2011-06-29 Lars Magne Ingebrigtsen <larsi@gnus.org>
24296
24297 * mail/sendmail.el (sendmail-query-once): New function.
24298 (sendmail-query-once-function): New variable.
24299
24300 2011-06-29 Glenn Morris <rgm@gnu.org>
24301
24302 * files.el (auto-mode-alist): Add .f03, .f08 for f90-mode.
24303
24304 * ses.el (top-level): Require cl when compiling.
24305 (ses-set-localvars): Fix error statement.
24306 Call it at compile time to silence a storm of warnings.
24307
24308 2011-06-29 Martin Rudalics <rudalics@gmx.at>
24309
24310 * window.el (normalize-live-buffer): Rename to
24311 window-normalize-buffer.
24312 (normalize-live-frame): Rename to window-normalize-frame.
24313 (normalize-any-window): Rename to window-normalize-any-window.
24314 (normalize-live-window): Rename to window-normalize-live-window.
24315 (make-window-atom): Rename to window-make-atom.
24316 (window-resize-reset): Rename to window--resize-reset.
24317 (window-resize-reset-1): Rename to window--resize-reset-1.
24318 (resize-mini-window): Rename to window--resize-mini-window.
24319 (resize-subwindows-skip-p): Rename to
24320 window--resize-subwindows-skip-p.
24321 (resize-subwindows-normal): Rename to
24322 window--resize-subwindows-normal.
24323 (resize-subwindows): Rename to window--resize-subwindows.
24324 (resize-other-windows): Rename to window--resize-siblings.
24325 (resize-this-window): Rename to window--resize-this-window.
24326 (resize-root-window): Rename to window--resize-root-window.
24327 (resize-root-window-vertically): Rename to
24328 window--resize-root-window-vertically.
24329 (normalize-buffer-to-display): Rename to
24330 window-normalize-buffer-to-display.
24331 (normalize-buffer-to-switch-to): Rename to
24332 window-normalize-buffer-to-switch-to.
24333 Correspondingly update all callers of the functions listed
24334 above.
24335 (display-buffer-alist, display-buffer-normalize-arguments)
24336 (display-buffer-normalize-options, display-buffer)
24337 (display-buffer-alist-set): Use "function" instead of
24338 "fun-with-args".
24339
24340 2011-06-28 Chong Yidong <cyd@stupidchicken.com>
24341
24342 * mail/emacsbug.el (report-emacs-bug): Handle non-gnu bug
24343 addresses more clearly. Add hyperlinks for bug-gnu-emacs and
24344 debbugs.gnu.org. Mention acknowledgment email.
24345
24346 2011-06-28 Lars Magne Ingebrigtsen <larsi@gnus.org>
24347
24348 * mail/smtpmail.el (smtpmail-send-it): Leave off changing the
24349 buffer multibyteness, since it shouldn't matter.
24350
24351 2011-06-28 Martin Rudalics <rudalics@gmx.at>
24352
24353 * window.el (display-buffer-in-side-window): Handle dedicated
24354 windows as in display-buffer-reuse-window.
24355 (display-buffer-normalize-alist): Use value of override
24356 specifier.
24357 (display-buffer-normalize-specifiers): Use value of
24358 other-window-means-other-frame specifier.
24359 (display-buffer-alist): Rewrite some texts in widgets.
24360 (display-buffer): Spread arguments when calling function
24361 specified by fun-with-args.
24362
24363 2011-06-28 Deniz Dogan <deniz@dogan.se>
24364
24365 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
24366 Unnest `let'.
24367
24368 * textmodes/css-mode.el (css-font-lock-keywords): Fix grouped
24369 selectors (Bug#5732).
24370 (css-proprietary-nmstart-re): Use `regexp-opt'.
24371
24372 2011-06-27 Jari Aalto <jari.aalto@cante.net>
24373
24374 * eshell/em-ls.el: Display `ls -l' dates in ISO format (Bug#8440).
24375 (eshell-ls-date-format): New defcustom.
24376 (eshell-ls-file): Use it.
24377
24378 2011-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
24379
24380 * help-fns.el (describe-variable): Fix message for terminal-local vars.
24381
24382 2011-06-27 Katsumi Yamaoka <yamaoka@jpl.org>
24383
24384 * net/ange-ftp.el: Allow loading .gz files (Bug#6923).
24385 (ange-ftp-make-tmp-name): New arg.
24386 (ange-ftp-file-local-copy): Use it.
24387
24388 2011-06-27 Jambunathan K <kjambunathan@gmail.com>
24389
24390 * tar-mode.el (tar-untar-buffer): Set coding-system-for-write to
24391 no-conversion (Bug#8870).
24392
24393 2011-06-27 Martin Rudalics <rudalics@gmx.at>
24394
24395 * window.el (window-right, window-left, window-child)
24396 (window-child-count, window-last-child)
24397 (window-iso-combination-p, walk-window-tree-1)
24398 (window-atom-check-1, window-tree-1, delete-window)
24399 (window-state-get-1, display-buffer-even-window-sizes): Adapt to
24400 new naming conventions - window-vchild, window-hchild,
24401 window-next and window-prev are now called window-top-child,
24402 window-left-child, window-next-sibling and window-prev-sibling
24403 respectively.
24404 (resize-window-reset): Rename to window-resize-reset.
24405 (resize-window-reset-1): Rename to window-resize-reset-1.
24406 (resize-window): Rename to window-resize.
24407 (window-min-height, window-min-width)
24408 (resize-mini-window, resize-this-window, resize-root-window)
24409 (resize-root-window-vertically, adjust-window-trailing-edge)
24410 (enlarge-window, shrink-window, maximize-window)
24411 (minimize-window, delete-window, quit-restore-window)
24412 (split-window, balance-windows, balance-windows-area-adjust)
24413 (balance-windows-area, window-state-put-2)
24414 (display-buffer-even-window-sizes, display-buffer-set-height)
24415 (display-buffer-set-width, set-window-text-height)
24416 (fit-window-to-buffer): Rename all "resize-window" prefixed
24417 calls to use the "window-resize" prefix convention.
24418 (display-buffer-alist): Fix symbol for label specifier.
24419 (display-buffer-reuse-window): Set reuse-dedicated to cdr of
24420 corresponding specifier.
24421 Reported by Juanma Barranquero <lekktu@gmail.com>.
24422
24423 2011-06-27 Vincent Belaïche <vincentb1@users.sourceforge.net>
24424
24425 * ses.el (ses-destroy-cell-variable-range): Fix heading comment
24426 convention.
24427 (ses-call-printer): Does not pass an empty string to formatter when the
24428 cell is empty to keep from barking printer Calc math-format-value.
24429
24430 2011-06-27 Richard Stallman <rms@gnu.org>
24431
24432 * battery.el (battery-mode-line-limit): New variable.
24433 (battery-update): Handle it.
24434
24435 * mail/rmailmm.el (rmail-mime-process-multipart):
24436 Handle truncated messages.
24437
24438 2011-06-27 Glenn Morris <rgm@gnu.org>
24439
24440 * progmodes/flymake.el (flymake-err-line-patterns):
24441 Allow for column numbers in the ant/javac pattern. (Bug#8866)
24442
24443 2011-06-27 Vincent Belaïche <vincentb1@users.sourceforge.net>
24444
24445 * ses.el (ses-relocate-range): Keep rest of arguments for ses-range.
24446 (ses--clean-!, ses--clean-_): New functions.
24447 (ses-range): Add configurability of readout order, and conversion
24448 to Calc vector.
24449
24450 * ses.el (ses-repair-cell-reference-all): New function.
24451 (ses-cell-symbol): Set macro as safe, so that it can be used in
24452 formulas.
24453
24454 * ses.el: Update cycle detection algorithm.
24455 (ses-localvars): Add ses--Dijkstra-attempt-nb and
24456 ses--Dijkstra-weight-bound, and initial values thereof when applicable.
24457 (ses-set-localvars): New function.
24458 (ses-make-cell): Add property-list as a cell element.
24459 (ses-cell-property-get-fun, ses-cell-property-get)
24460 (ses-cell-property-delq-fun, ses-cell-property-set-fun)
24461 (ses-cell-property-pop-fun, ses-cell-property-get-handle-fun):
24462 New functions.
24463 (ses-cell-property-set, ses-cell-property-pop)
24464 (ses-cell-property-get-handle): New macro.
24465 (ses-cell-property-handle-car, ses-cell-property-handle-setcar):
24466 New aliases, used for code readability.
24467 (ses-calculate-cell, ses-update-cells): Use Dijkstra algorithm for
24468 cycle detection.
24469 (ses-self-reference-early-detection): New defcustom.
24470 (ses-formula-references): Robustify against self-referring cells.
24471 (ses-mode): Use ses-set-localvars.
24472 (ses-command-hook): Add call to ses-initialize-Dijkstra-attempt
24473 before lauching the update processing.
24474 (ses-initialize-Dijkstra-attempt): New function.
24475 (ses-recalculate-cell): Update for cycle detection based on
24476 Dijkstra algorithm.
24477
24478 * ses.el: Fix commenting and indenting convention.
24479
24480 2011-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
24481
24482 * bs.el (bs-cycle-next): Complete last change.
24483
24484 2011-06-27 Drew Adams <drew.adams@oracle.com>
24485
24486 * faces.el (list-faces-display): Add help-mode-map to output (bug#8939).
24487
24488 2011-06-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
24489
24490 * net/network-stream.el (network-stream-open-starttls):
24491 Don't re-get capabilities unless we've reestablished connection.
24492 (network-stream-open-starttls): Fix stupid typo with gnutls-clii.
24493
24494 * mail/smtpmail.el (smtpmail-via-smtp): Bind coding-system-for-*
24495 to binary to possibly avoid line encoding issues on Windows (among
24496 other things).
24497
24498 2011-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
24499
24500 * net/network-stream.el (open-network-stream): Return an :error
24501 saying what the problem was, if possible.
24502
24503 * mail/smtpmail.el (smtpmail-via-smtp): Report the error from the
24504 server.
24505
24506 * net/network-stream.el (network-stream-open-starttls): If we
24507 wanted to use STARTTLS, and the server offered it, but we weren't
24508 able to because we had no STARTTLS support, then close the connection.
24509 (open-network-stream): Return an :error element, if present.
24510
24511 2011-06-26 Chong Yidong <cyd@stupidchicken.com>
24512
24513 * hl-line.el (hl-line-sticky-flag): Doc fix.
24514 (global-hl-line-sticky-flag): New option (Bug#8323).
24515 (global-hl-line-highlight): Obey it.
24516
24517 * vc/vc.el (vc-revert-show-diff): Default to t.
24518
24519 2011-06-26 Ken Manheimer <ken.manheimer@gmail.com>
24520
24521 * allout-widgets.el (allout-widgets-post-command-business):
24522 Stop decorating intermediate isearch matches. They're not being
24523 undecorated when an isearch is continued past, and isearch
24524 automatically collapses them. This leads to "widget leaks", where
24525 decorated items accumulate in collapsed areas. Lines with lots of
24526 hidden widgets can slow down cursor travel, substantially.
24527 Too much complicated machinery would be needed to ensure undecoration,
24528 so we're doing without this nicety.
24529
24530 (allout-widgets-tally-string): Don't try to do a hash-table-count
24531 of allout-widgets-tally when it's nil. This eliminates spurious "Error
24532 during redisplay: (wrong-type-argument hash-table-p nil)" warnings in
24533 *Messages* when allout-widgets-maintain-tally is t.
24534
24535 2011-06-26 Martin Rudalics <rudalics@gmx.at>
24536
24537 * window.el (display-buffer-normalize-argument): Rename to
24538 display-buffer-normalize-arguments. Handle special meaning of
24539 LABEL argument. Respect special-display-function when popping up
24540 a new frame. Fix code searching for a window showing the buffer
24541 on another frame.
24542 (display-buffer-normalize-specifiers):
24543 Call display-buffer-normalize-arguments.
24544 (display-buffer-in-window): Don't undedicate the window if its
24545 buffer remains the same.
24546 Reported by Drew Adams <drew.adams@oracle.com>.
24547 (display-buffer-alist): Add choice for same-window macro
24548 specfier.
24549 (display-buffer): Mention special meaning of LABEL argument in
24550 doc-string. Fix quoting. Don't pop up a new frame even as
24551 fallback.
24552
24553 2011-06-26 Juanma Barranquero <lekktu@gmail.com>
24554
24555 * bs.el (bs-cycle-next): Pass current buffer to `bury-buffer' to
24556 avoid deleting the current window in some cases (bug#8911).
24557
24558 2011-06-26 Andreas Schwab <schwab@linux-m68k.org>
24559
24560 * emacs-lisp/smie.el (smie-bnf->prec2): Fix last change.
24561 (Bug#8934)
24562
24563 2011-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
24564
24565 * net/network-stream.el (network-stream-open-starttls):
24566 Use built-in TLS support if `gnutls-available-p' is true.
24567 (network-stream-open-tls): Ditto.
24568
24569 2011-06-26 Leo Liu <sdl.web@gmail.com>
24570
24571 * register.el (registerv): New struct.
24572 (registerv-make): New function.
24573 (jump-to-register, describe-register-1, insert-register):
24574 Support the jump-func, print-func and insert-func slot of a registerv
24575 struct. (Bug#8415)
24576
24577 2011-06-26 Chong Yidong <cyd@stupidchicken.com>
24578
24579 * vc/vc.el (vc-revert-show-diff): New defcustom.
24580 (vc-diff-internal): New arg specifying diff buffer.
24581 (vc-revert): Obey vc-revert-show-diff. If we show a diff, don't
24582 reuse an existing *vc-diff* buffer (Bug#8927).
24583
24584 * progmodes/cperl-mode.el (cperl-mode): Derive from prog-mode.
24585
24586 2011-06-26 Glenn Morris <rgm@gnu.org>
24587
24588 * progmodes/f90.el (f90-critical-indent): New option.
24589 (f90-font-lock-keywords-2, f90-blocks-re, f90-end-block-re)
24590 (f90-start-block-re, f90-mode-abbrev-table): Add block, critical.
24591 (f90-mode): Doc fix.
24592 (f90-looking-at-critical, f90-looking-at-end-critical): New funcs.
24593 (f90-no-block-limit, f90-calculate-indent, f90-end-of-block)
24594 (f90-beginning-of-block, f90-next-block, f90-indent-region)
24595 (f90-match-end): Handle block, critical.
24596
24597 2011-06-25 Glenn Morris <rgm@gnu.org>
24598
24599 * calendar/diary-lib.el (diary-included-files): Doc fix.
24600 (diary-include-files): New function, extracted from
24601 diary-include-other-diary-files and diary-mark-included-diary-files.
24602 (diary-include-other-diary-files, diary-mark-included-diary-files):
24603 Just call diary-include-files.
24604 (diary-mark-entries): Reset diary-included-files on first call.
24605
24606 * calendar/diary-lib.el (diary-mark-entries)
24607 (diary-mark-included-diary-files):
24608 Visit included diary-files in temp buffers.
24609
24610 * progmodes/f90.el (f90-keywords-re, f90-font-lock-keywords-1)
24611 (f90-blocks-re, f90-program-block-re, f90-end-block-re)
24612 (f90-start-block-re, f90-imenu-generic-expression)
24613 (f90-looking-at-program-block-start, f90-no-block-limit):
24614 Add support for submodules.
24615
24616 * progmodes/f90.el (f90-keywords-re, f90-keywords-level-3-re)
24617 (f90-procedures-re, f90-constants-re): Add some F2008 stuff.
24618
24619 2011-06-25 Eli Zaretskii <eliz@gnu.org>
24620
24621 * net/ange-ftp.el (ange-ftp-insert-file-contents): Let-bind
24622 buffer-file-type before setting its value, to avoid disastrous
24623 global effects on decoding files for DOS/Windows systems. (Bug#8780)
24624
24625 2011-06-25 Juanma Barranquero <lekktu@gmail.com>
24626
24627 * allout.el (allout-unload-function): Pass -1 to `allout-mode'.
24628
24629 * ses.el (ses-unload-function):
24630 * emacs-lisp/re-builder.el (re-builder-unload-function): Simplify.
24631
24632 * proced.el (proced-unload-function):
24633 * progmodes/cperl-mode.el (cperl-mode-unload-function): Remove.
24634
24635 2011-06-25 Andreas Rottmann <a.rottmann@gmx.at>
24636
24637 * server.el (server-create-window-system-frame): Add parameters arg.
24638 (server-process-filter): Doc fix. Handle frame-parameters.
24639
24640 2011-06-25 Juanma Barranquero <lekktu@gmail.com>
24641
24642 Fix bug#8730, bug#8781.
24643
24644 * loadhist.el (unload--set-major-mode): New function.
24645 (unload-feature): Use it.
24646
24647 * progmodes/python.el (python-after-info-look): Add autoload cookie.
24648 (python-unload-function): New function.
24649
24650 2011-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
24651
24652 * mail/rmail.el (rmail-show-message-1): Use restore-buffer-modified-p.
24653
24654 2011-06-25 Giuseppe Scrivano <gscrivano@gnu.org>
24655
24656 * net/browse-url.el (browse-url-firefox-program): Add icecat to
24657 the candidates list.
24658
24659 2011-06-24 Juanma Barranquero <lekktu@gmail.com>
24660
24661 * progmodes/verilog-mode.el (verilog-mode): Fix test for bound variable.
24662
24663 2011-06-23 Richard Stallman <rms@gnu.org>
24664
24665 * mail/rmail.el: Going to grep hit in Rmail buffer finds the message.
24666 (rmail-variables): Set next-error-move-function.
24667 (rmail-what-message): Take argument POS.
24668 (rmail-next-error-move): New function.
24669
24670 2011-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
24671
24672 * emacs-lisp/smie.el (smie-bnf->prec2): Give more understandable error
24673 messages for adjacent non-terminals.
24674
24675 2011-06-23 Richard Stallman <rms@gnu.org>
24676
24677 * mail/rmail.el (rmail-retry-ignored-headers): Add message-id.
24678 (rmail-show-message-1): Preserve buffer modified flag.
24679 (rmail-start-mail): Don't specify use of rmail-mail-return;
24680 that's done by mail-bury now.
24681 (rmail-mail-return): Handle arg NEWBUF.
24682
24683 2011-06-23 Michael Albinus <michael.albinus@gmx.de>
24684
24685 * net/tramp-sh.el (tramp-method-out-of-band-p): Check, whether
24686 SIZE is a number.
24687
24688 2011-06-23 Martin Rudalics <rudalics@gmx.at>
24689
24690 * window.el (get-lru-window, get-mru-window)
24691 (get-largest-window): Never return a minibuffer window.
24692 (display-buffer-pop-up-window): Fix a bug that could lead to
24693 reusing the minibuffer window.
24694 (display-buffer): Pass original specifier argument to
24695 display-buffer-function instead of the normalized one.
24696 Reported by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
24697
24698 2011-06-22 Leo Liu <sdl.web@gmail.com>
24699
24700 * minibuffer.el (completing-read-function)
24701 (completing-read-default): Move from minibuf.c.
24702
24703 2011-06-22 Richard Stallman <rms@gnu.org>
24704
24705 * mail/sendmail.el (mail-bury): If Rmail is in use, return nicely
24706 to Rmail even if not started by a special Rmail command.
24707
24708 * mail/rmailmm.el (rmail-insert-mime-forwarded-message):
24709 Copy the buffer currently showing just one message.
24710
24711 2011-06-22 Roland Winkler <winkler@gnu.org>
24712
24713 * textmodes/bibtex.el (bibtex-entry-update): Use mapc.
24714 (bibtex-clean-entry): First delete the old key so that a
24715 customized algorithm for generating the new key does not get
24716 confused by the old key.
24717 (bibtex-url): Obey regexp of first step.
24718 (bibtex-search-entries): Do not use add-to-list with local
24719 list-var.
24720
24721 2011-06-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
24722
24723 * mail/smtpmail.el (smtpmail-try-auth-methods): If the user has
24724 stored a user name, then query for the password first, instead of
24725 waiting for SMTP to give an error message and the trying again.
24726
24727 2011-06-22 Lawrence Mitchell <wence@gmx.li>
24728
24729 * net/browse-url.el (browse-url-xdg-open): Use 0, rather than nil
24730 BUFFER in call-process.
24731
24732 2011-06-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
24733
24734 * mail/smtpmail.el (smtpmail-via-smtp): Make sure we don't send
24735 QUIT twice.
24736 (smtpmail-try-auth-methods): Require user name and password from
24737 auth-source.
24738
24739 2011-06-22 Martin Rudalics <rudalics@gmx.at>
24740
24741 * window.el (display-buffer-default-specifiers)
24742 (display-buffer-alist): Remove entries for pop-up-frame-alist.
24743 Suggested by Katsumi Yamaoka <yamaoka@jpl.org>.
24744 (split-window): Normalize SIDE argument (Bug#8916).
24745
24746 * frame.el (pop-up-frame-alist, pop-up-frame-function)
24747 (special-display-frame-alist, special-display-popup-frame):
24748 Remove duplicate declarations. These are now in window.el.
24749
24750 2011-06-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
24751
24752 * mail/smtpmail.el (smtpmail-via-smtp):
24753 Set :use-starttls-if-possible so that we always use STARTTLS if the
24754 server supports it. SMTP servers that support STARTTLS commonly
24755 require it.
24756
24757 * net/network-stream.el (network-stream-open-starttls): Support
24758 upgrading to STARTTLS always, even if we don't have built-in support.
24759 (open-network-stream): Add the :always-query-capabilities keyword.
24760
24761 * mail/smtpmail.el: Rewritten to do opportunistic STARTTLS
24762 upgrades with `open-network-stream', and rely solely on
24763 auth-source for all credentials. Big changes throughout the file,
24764 but in particular:
24765 (smtpmail-auth-credentials): Remove.
24766 (smtpmail-starttls-credentials): Remove.
24767 (smtpmail-via-smtp): Check for servers saying they want AUTH after
24768 MAIL FROM, too.
24769
24770 * net/network-stream.el (network-stream-open-starttls):
24771 Provide support for client certificates both for external and built-in
24772 STARTTLS.
24773 (auth-source): Require.
24774 (open-network-stream): Document the :client-certificate keyword.
24775 (network-stream-certificate): Change cert-cert to cert and
24776 cert-key to key.
24777
24778 2011-06-21 Michael Albinus <michael.albinus@gmx.de>
24779
24780 * net/tramp-cache.el (top): Don't load the persistency file when
24781 "emacs -Q" has been called.
24782
24783 2011-06-21 Tim Harper <timcharper@gmail.com>
24784
24785 * term/ns-win.el (ns-initialize-window-system):
24786 Set application-specific `ApplePressAndHoldEnabled' system
24787 resource to NO as it is not yet supported by the NS port.
24788
24789 2011-06-21 Juanma Barranquero <lekktu@gmail.com>
24790
24791 * misc.el (list-dynamic-libraries--refresh): Compute header here...
24792 (list-dynamic-libraries): ...not here.
24793
24794 2011-06-21 Leo Liu <sdl.web@gmail.com>
24795
24796 * subr.el (sha1): Implement sha1 using secure-hash.
24797
24798 2011-06-21 Martin Rudalics <rudalics@gmx.at>
24799
24800 * window.el (display-buffer-alist): In default value do not
24801 enforce searching a window on any but the selected frame.
24802 Reported by Katsumi Yamaoka <yamaoka@jpl.org>.
24803 (display-buffer-select-window): Remove function.
24804 (display-buffer-in-window): When a window on another frame gets
24805 reused, do not select it any more but just raise its frame if
24806 necessary (Bug#8851) and (Bug#8856).
24807 (display-buffer-normalize-options): Handle pop-up-frames related
24808 options more faithfully.
24809 (pop-to-buffer): Don't rely on `display-buffer' selecting the
24810 window if it is on another frame.
24811 (display-buffer-alist, display-buffer-default-specifiers):
24812 Don't make new frame unsplittable by default.
24813 (display-buffer-normalize-argument): Fix doc-string typo and use
24814 'same-frame-other-window instead of 'other-window when associating
24815 with display-buffer-macro-specifiers.
24816
24817 2011-06-21 Vincent Belaïche <vincent.b.1@hotmail.fr>
24818
24819 * play/5x5.el (5x5-solve-rotate-left, 5x5-solve-rotate-right):
24820 New functions.
24821 (5x5-mode-map, 5x5-mode-menu): Bind them.
24822 (5x5-draw-grid): Tweak the solver's rendering.
24823
24824 2011-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
24825
24826 * progmodes/compile.el (compilation-error-regexp-alist-alist): Rename
24827 `caml' to `python-tracebacks-and-caml'; allow leading tabs (bug#8585).
24828
24829 2011-06-21 Drew Adams <drew.adams@oracle.com>
24830
24831 * menu-bar.el: Use function variable instead of switch-to-buffer.
24832 (menu-bar-select-buffer-function): New variable.
24833 (menu-bar-update-buffers): Use it (bug#8876).
24834
24835 2011-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
24836
24837 * emacs-lisp/bytecomp.el (add-to-list): Add handler to check the
24838 variable's status.
24839
24840 2011-06-20 Jan Djärv <jan.h.d@swipnet.se>
24841
24842 * x-dnd.el (x-dnd-version-from-flags)
24843 (x-dnd-more-than-3-from-flags): New functions that handle long-as-cons
24844 and long as number (Bug#8899).
24845 (x-dnd-handle-xdnd): Call functions above (Bug#8899).
24846
24847 2011-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
24848
24849 * minibuffer.el (completion-metadata): Add `metadata' to the alist.
24850 (completion-try-completion, completion-all-completions): Compute the
24851 metadata argument if it's missing; make it optional (bug#8795).
24852
24853 * wid-edit.el: Use lex-bind and move towards completion-at-point.
24854 (widget-complete): Use new :completion-function property.
24855 (widget-completions-at-point): New function.
24856 (default): Use :completion-function instead of :complete.
24857 (widget-default-completions): Rename from widget-default-complete;
24858 Rewrite.
24859 (widget-string-complete, widget-file-complete, widget-color-complete):
24860 Remove functions.
24861 (file, symbol, function, variable, coding-system, color):
24862 * international/mule-cmds.el (default-input-method, charset)
24863 (language-info-custom-alist):
24864 * cus-edit.el (face): Use new property :completions.
24865
24866 * progmodes/pascal.el (pascal-completions-at-point): New function.
24867 (pascal-mode): Use it.
24868 (pascal-mode-map): Use completion-at-point.
24869 (pascal-toggle-completions): Make obsolete.
24870 (pascal-complete-word, pascal-show-completions):
24871 * progmodes/octave-mod.el (octave-complete-symbol):
24872 Redefine as obsolete alias.
24873 * progmodes/octave-inf.el (inferior-octave-completion-at-point):
24874 Signal absence of completion info for old Octave,
24875 (inferior-octave-complete): Redefine as obsolete alias.
24876 * progmodes/meta-mode.el: Use lexical-binding and completion-at-point.
24877 (meta-completions-at-point): Rename from meta-complete-symbol and
24878 adapt it for use on completion-at-point-functions.
24879 (meta-common-mode): Use it.
24880 (meta-looking-at-backward, meta-match-buffer): Remove.
24881 (meta-complete-symbol): Redefine as obsolete alias.
24882 (meta-common-mode-map): Use completion-at-point.
24883 * progmodes/make-mode.el: Use lexical-binding and completion-at-point.
24884 (makefile-mode-map): Use completion-at-point.
24885 (makefile-completions-at-point): Rename from makefile-complete and
24886 adapt it for use on completion-at-point-functions.
24887 (makefile-mode): Use it.
24888 (makefile-complete): Redefine as obsolete alias.
24889
24890 2011-06-20 Deniz Dogan <deniz@dogan.se>
24891
24892 * net/rcirc.el: Delete trailing whitespaces once and for all.
24893
24894 2011-06-20 Daniel Colascione <dan.colascione@gmail.com>
24895
24896 * emacs-lisp/syntax.el (syntax-ppss): Further improve docstring.
24897
24898 2011-06-19 Chong Yidong <cyd@stupidchicken.com>
24899
24900 * files.el (auto-mode-alist): Entry for m2-mode (Bug#8852).
24901
24902 * info.el (Info-apropos-toc-nodes): Minor doc fix (Bug#8833).
24903
24904 2011-06-19 Martin Rudalics <rudalics@gmx.at>
24905
24906 * window.el (display-buffer-other-window-means-other-frame):
24907 Call display-buffer-normalize-alist.
24908 (display-buffer-normalize-specifiers-1): Rename to
24909 display-buffer-normalize-argument. New argument other-frame.
24910 Rewrite.
24911 (display-buffer-normalize-specifiers-2): Rename to
24912 display-buffer-normalize-options.
24913 (display-buffer-normalize-alist-1): New function.
24914 (display-buffer-normalize-specifiers-3): Rename to
24915 display-buffer-normalize-alist.
24916 Call display-buffer-normalize-alist-1.
24917 (display-buffer-normalize-options-inhibit): New variable.
24918 (display-buffer-normalize-specifiers): Rewrite calling
24919 display-buffer-normalize-alist,
24920 display-buffer-normalize-argument, and
24921 display-buffer-normalize-options. Don't call the latter if
24922 display-buffer-normalize-options-inhibit is non-nil.
24923 (frame-auto-delete): New option.
24924 (window-deletable-p): Use frame-auto-delete.
24925 (window-list-no-nils, window-state-ignored-parameters)
24926 (window-state-get-1, window-state-get, window-state-put-list)
24927 (window-state-put-1, window-state-put-2, window-state-put):
24928 New functions.
24929 (display-buffer-normalize-options): Move special-display-p group
24930 after pop-up-frame group (Bug#8851) and (Bug#8856).
24931
24932 2011-06-18 Chong Yidong <cyd@stupidchicken.com>
24933
24934 * emacs-lisp/rx.el (rx-constituents): Add support for numbered
24935 groups (Bug#8776).
24936 (rx-submatch-n): New function.
24937 (rx): Document it.
24938
24939 * dired-x.el (dired-mark-unmarked-files): Fix interactive spec
24940 (Bug#8768).
24941
24942 * replace.el (occur-mode-map): Set occur-edit-mode binding to "e".
24943
24944 * textmodes/fill.el (default-justification): Add :safe (Bug#8879).
24945
24946 * cus-face.el (custom-declare-face): Call custom-theme-recalc face
24947 anytime existing face settings are present (Bug#8889).
24948
24949 * progmodes/delphi.el (delphi-mode-syntax-table): Use defvar.
24950 (delphi-mode): Use define-derived-mode to inherit from prog-mode.
24951 Remove unused argument.
24952
24953 2011-06-18 Martin Rudalics <rudalics@gmx.at>
24954
24955 * window.el (display-buffer-default-specifiers):
24956 Remove pop-up-frame. Add pop-up-window-min-height,
24957 pop-up-window-min-width, and another reuse-window specifier
24958 (Bug#8882). Reported by Dan Nicolaescu <dann@gnu.org>.
24959 (display-buffer-normalize-specifiers-2):
24960 Handle split-height-threshold and split-width-threshold also when
24961 pop-up-windows is unset. Add a reuse-window specifier for the
24962 case popping up a new window fails.
24963 (special-display-popup-frame): Remove double quoting.
24964 (display-buffer-normalize-specifiers-1): Fix thinko.
24965
24966 2011-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
24967
24968 * shell.el (shell-completion-vars): Set pcomplete-termination-string
24969 according to comint-completion-addsuffix.
24970
24971 * pcomplete.el: Convert to lexical binding and fix bug#8819.
24972 (pcomplete-suffix-list): Mark as obsolete.
24973 (pcomplete-completions-at-point): Capture pcomplete-norm-func and
24974 pcomplete-seen in the closure.
24975 (pcomplete-comint-setup): Setup completion-at-point as well.
24976 (pcomplete--entries): New function.
24977 (pcomplete--env-regexp): New var.
24978 (pcomplete-entries): Rewrite to work with partial-completion and
24979 without relying on pcomplete-suffix-list.
24980 (pcomplete-pare-list): Remove, unused.
24981
24982 2011-06-17 Martin Rudalics <rudalics@gmx.at>
24983
24984 * window.el (display-buffer-alist): Set pop-up-window-min-height
24985 and pop-up-window-min-width in default value. Reported by
24986 Thierry Volpiatto <thierry.volpiatto@gmail.com>. New specifier
24987 other-window-means-other-frame.
24988 (display-buffer-macro-specifiers): Comment out entry for
24989 other-window specifier.
24990 (display-buffer-other-window-means-other-frame): New function.
24991 (display-buffer-normalize-specifiers-1): New arguments
24992 buffer-name and label. Treat other-window case specially.
24993 (display-buffer-normalize-specifiers-2): Treat other-window case
24994 specially.
24995 (display-buffer-normalize-specifiers-3): New function.
24996 (display-buffer-normalize-specifiers):
24997 Call display-buffer-normalize-specifiers-3.
24998
24999 2011-06-17 Martin Rudalics <rudalics@gmx.at>
25000
25001 * window.el (same-window-p): Fix two typos introduced when
25002 adding with-no-warnings.
25003 (display-buffer-normalize-specifiers-1): Don't check
25004 pop-up-frames for 'unset initialization.
25005 (display-buffer-normalize-specifiers-2): Major rewrite using
25006 special-display-p and same-window-p (Bug#8851) and (Bug#8856).
25007 (pop-up-frames, display-buffer-reuse-frames)
25008 (display-buffer-mark-dedicated): Don't initialize to 'unset.
25009 Suggested by David Engster <deng@randomsample.de>.
25010 (even-window-heights): Initialize to 'unset.
25011 (display-buffer-alist-set): Handle new 'unset initializations.
25012 (display-buffer-macro-specifiers): Don't pop up a new frame in the
25013 other window case.
25014
25015 2011-06-16 Martin Rudalics <rudalics@gmx.at>
25016
25017 * window.el (display-buffer-normalize-specifiers-1):
25018 Respect current value of pop-up-frames for most reasonable values of
25019 second argument of display-buffer (Bug#8865).
25020 (switch-to-buffer-same-frame, switch-to-buffer-other-window)
25021 (switch-to-buffer-other-window-same-frame)
25022 (switch-to-buffer-other-frame): Fix doc-strings. Reported by Drew
25023 Adams (Bug#8875).
25024 (display-buffer): Don't check noninteractive when calling
25025 display-buffer-pop-up-frame.
25026 (display-buffer-pop-up-frame): Never pop up a frame in
25027 noninteractive mode (Bug#8857).
25028 (enlarge-window, shrink-window): Don't report an error when the
25029 window can't be resized as requested (Bug#8862).
25030
25031 2011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
25032
25033 * pcmpl-rpm.el (pcomplete/rpm): Minor simplification.
25034
25035 * emacs-lisp/debug.el (debug): Don't leave the buffer in Debugger.
25036
25037 * abbrev.el (define-abbrev-table): Don't add a table multiple times.
25038
25039 2011-06-15 Alan Mackenzie <acm@muc.de>
25040
25041 * progmodes/cc-fonts.el (c-font-lock-declarations): 1: Whilst checking
25042 for declarators, disable knr checking to speed up for normal files.
25043 2: Refactor, replacing a sequence of nested if forms by a cond form.
25044
25045 2011-06-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
25046
25047 * net/network-stream.el (open-network-stream): Add the keyword
25048 :always-query-capabilities for the case where you want to force a
25049 `plain' network connection, but the protocol still requires the
25050 capabilitiy command (i.e., SMTP and EHLO).
25051
25052 * subr.el (process-live-p): Rename from `process-alive-p' for
25053 consistency with other `-live-p' functions.
25054
25055 2011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
25056
25057 * window.el (same-window-buffer-names, same-window-regexps)
25058 (special-display-frame-alist, special-display-popup-frame)
25059 (special-display-function, special-display-buffer-names)
25060 (special-display-regexps, pop-up-frame-alist)
25061 (pop-up-frame-function, pop-up-frames, display-buffer-reuse-frames)
25062 (pop-up-windows, split-window-preferred-function)
25063 (split-height-threshold, split-width-threshold, even-window-heights)
25064 (display-buffer-mark-dedicated): Don't encourage the use of
25065 display-buffer-alist from Elisp code.
25066
25067 2011-06-15 Dan Nicolaescu <dann@ics.uci.edu>
25068
25069 * progmodes/python.el (python-mode): Derive from prog-mode.
25070 * progmodes/ps-mode.el (ps-mode):
25071 * progmodes/mixal-mode.el (mixal-mode):
25072 * progmodes/cfengine.el (cfengine-mode):
25073 * progmodes/ld-script.el (ld-script-mode): Likewise.
25074
25075 2011-06-15 Martin Rudalics <rudalics@gmx.at>
25076
25077 * window.el (display-buffer-alist): Trim default value to avoid
25078 popping up a new frame (Bug#8857) or reusing an arbitrary window
25079 on another frame.
25080 (display-buffer): Do not fall back on popping up a new frame in
25081 batch mode (Bug#8857).
25082
25083 2011-06-14 Chong Yidong <cyd@stupidchicken.com>
25084
25085 * cus-theme.el (describe-theme-1): Use custom-theme-p.
25086 (custom-theme-summary): New function.
25087 (customize-themes): Use it.
25088
25089 2011-06-13 Glenn Morris <rgm@gnu.org>
25090
25091 * cus-dep.el (custom-make-dependencies): Use up command-line-args-left.
25092
25093 2011-06-13 Martin Rudalics <rudalics@gmx.at>
25094
25095 * help.el (help-window): Remove variable.
25096 (help-window-point-marker, temp-buffer-max-height)
25097 (temp-buffer-resize-mode, help-window-select): Rewrite doc-strings.
25098 (help-print-return-message): Don't set help-window.
25099 (resize-temp-buffer-window): Rewrite cod eand doc-string.
25100 (help-window-setup-finish): Remove.
25101 (help-window-display-message, help-window-setup)
25102 (with-help-window): Major rewrite based on new
25103 display-buffer-window variable.
25104
25105 * help-mode.el (help-mode-finish): Remove help-window related
25106 code.
25107
25108 * view.el (view-exits-all-viewing-windows): Remove reference to
25109 view-return-to-alist in doc-string.
25110 (view-return-to-alist): Make obsolete.
25111 (view-buffer): Call pop-to-buffer-same-window and remove
25112 undo-window code.
25113 (view-buffer-other-window): Call pop-to-buffer-other-window and
25114 simplify code. Ignore second argument.
25115 (view-buffer-other-frame): Call pop-to-buffer-other-frame and
25116 simplify code. Ignore second argument.
25117 (view-return-to-alist-update): Make obsolete.
25118 (view-mode-enter): Rename second argument to QUIT-RESTORE.
25119 Rewrite using quit-restore window parameters.
25120 (view-mode-exit): Rename second argument to EXIT-ONLY.
25121 Rewrite using quit-restore-window.
25122 (View-exit, View-exit-and-edit, View-leave, View-quit)
25123 (View-quit-all, View-kill-and-leave): Call view-mode-exit with
25124 appropriate arguments.
25125 (view-end-message): Use quit-restore window parameter.
25126
25127 * window.el (display-buffer-function): Rewrite doc-string.
25128 (display-buffer-window, display-buffer-alist): New variables.
25129 (display-buffer-split-specifiers)
25130 (display-buffer-side-specifiers)
25131 (display-buffer-macro-specifiers): New constants.
25132 (display-buffer-even-window-sizes, display-buffer-set-height)
25133 (display-buffer-set-width, display-buffer-select-window)
25134 (display-buffer-in-window, display-buffer-reuse-window)
25135 (display-buffer-split-window-1, display-buffer-split-window)
25136 (display-buffer-split-atom-window, display-buffer-pop-up-window)
25137 (display-buffer-pop-up-frame, display-buffer-pop-up-side-window)
25138 (display-buffer-in-side-window, normalize-buffer-to-display)
25139 (display-buffer-normalize-specifiers-1)
25140 (display-buffer-normalize-specifiers-2)
25141 (display-buffer-normalize-specifiers, display-buffer-frame):
25142 New functions.
25143 (display-buffer): Major rewrite.
25144 (display-buffer-other-window, display-buffer-other-frame)
25145 (pop-to-buffer, switch-to-buffer-other-window)
25146 (switch-to-buffer-other-frame): Rewrite.
25147 (display-buffer-same-window, display-buffer-same-frame)
25148 (display-buffer-same-frame-other-window)
25149 (pop-to-buffer-same-window, pop-to-buffer-same-frame)
25150 (pop-to-buffer-other-window)
25151 (pop-to-buffer-same-frame-other-window)
25152 (pop-to-buffer-other-frame, switch-to-buffer-same-frame)
25153 (switch-to-buffer-other-window-same-frame): New functions.
25154 (same-window-p, special-display-p): Rewrite disabling warnings.
25155 Make obsolete.
25156 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
25157 (display-buffer-mark-dedicated): Initialize to symbol 'unset.
25158 Make obsolete
25159 (same-window-buffer-names, same-window-regexps)
25160 (special-display-frame-alist, special-display-popup-frame)
25161 (special-display-function, special-display-buffer-names)
25162 (special-display-regexps, pop-up-frame-alist)
25163 (pop-up-frame-function, split-window-preferred-function)
25164 (split-height-threshold, split-width-threshold)
25165 (even-window-heights): Make obsolete.
25166
25167 2011-06-12 Glenn Morris <rgm@gnu.org>
25168
25169 * term/xterm.el (terminal-init-xterm): `version' may be nil. (Bug#8838)
25170 Misc simplifications.
25171
25172 2011-06-12 Martin Rudalics <rudalics@gmx.at>
25173
25174 * window.el (window-safely-shrinkable-p): Restore function which
25175 was inadvertently removed in change from 2011-06-11. Declare as
25176 obsolete.
25177
25178 * calendar/calendar.el (calendar-generate-window):
25179 Use window-iso-combined-p instead of combination of one-window-p and
25180 window-safely-shrinkable-p.
25181
25182 2011-06-12 Glenn Morris <rgm@gnu.org>
25183
25184 * progmodes/fortran.el (fortran-mode-syntax-table):
25185 * progmodes/f90.el (f90-mode-syntax-table):
25186 Set % to punctuation. (Bug#8820)
25187 (f90-find-tag-default): Remove, no longer needed.
25188
25189 2011-06-12 Daniel Colascione <dan.colascione@gmail.com>
25190
25191 * emacs-lisp/syntax.el (syntax-ppss): Clarify which items are invalid.
25192
25193 2011-06-11 Chong Yidong <cyd@stupidchicken.com>
25194
25195 * image.el (image-animated-p): Return animation delay in seconds.
25196 Avoid bit manipulation in Lisp; use `delay' entry in the metadata.
25197 (image-animate-timeout): Remove DELAY argument. Don't assume
25198 every subimage has the same delay; get it from image-animated-p.
25199 (image-animate): Caller changed.
25200
25201 2011-06-11 Michael Albinus <michael.albinus@gmx.de>
25202
25203 * net/tramp.el (tramp-debug-message): Add `tramp-with-progress-reporter'
25204 to ignored backtrace functions.
25205
25206 2011-06-11 Glenn Morris <rgm@gnu.org>
25207
25208 * calendar/appt.el (appt-disp-window-function): Doc fix.
25209 (appt-check): Handle overlapping appointments. (Bug#8337)
25210
25211 2011-06-11 Martin Rudalics <rudalics@gmx.at>
25212
25213 * window.el (window-tree-1, window-tree): New functions, moving
25214 the latter to window.el.
25215 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
25216 (bw-find-tree-sub-1, bw-l, bw-t, bw-r, bw-b, bw-dir, bw-eqdir)
25217 (bw-refresh-edges): Remove.
25218 (balance-windows-1, balance-windows-2): New functions.
25219 (balance-windows): Rewrite in terms of window tree functions,
25220 balance-windows-1 and balance-windows-2.
25221 (bw-adjust-window): Remove.
25222 (balance-windows-area-adjust): New function with functionality of
25223 bw-adjust-window but using resize-window.
25224 (set-window-text-height): Rewrite doc-string.
25225 Use normalize-live-window and resize-window.
25226 (enlarge-window-horizontally, shrink-window-horizontally):
25227 Rename argument to DELTA.
25228 (window-buffer-height): New function.
25229 (fit-window-to-buffer, shrink-window-if-larger-than-buffer):
25230 Rewrite using new window resize routines.
25231 (kill-buffer-and-window, mouse-autoselect-window-select):
25232 Use ignore-errors instead of condition-case.
25233 (quit-window): Call delete-frame instead of delete-windows-on
25234 for the only buffer on frame.
25235
25236 2011-06-10 Martin Rudalics <rudalics@gmx.at>
25237
25238 * loadup.el (top-level): Load window before files for the sake
25239 of replace-buffer-in-windows.
25240
25241 * files.el (read-buffer-to-switch)
25242 (switch-to-buffer-other-window)
25243 (switch-to-buffer-other-frame, display-buffer-other-frame):
25244 Move to window.el.
25245
25246 * simple.el (get-next-valid-buffer, last-buffer, next-buffer)
25247 (previous-buffer): Move to window.el.
25248
25249 * bindings.el (unbury-buffer): Move to window.el.
25250
25251 * window.el (delete-other-windows-vertically): Move after
25252 definition of delete-other-windows.
25253 (other-window, delete-windows-on, replace-buffer-in-windows):
25254 Move here from window.c.
25255 (record-window-buffer, unrecord-window-buffer)
25256 (set-window-buffer-start-and-point, switch-to-prev-buffer)
25257 (switch-to-next-buffer): New functions.
25258 (get-next-valid-buffer, last-buffer, next-buffer): Move here
25259 from simple.el. Call switch-to-next-buffer.
25260 (previous-buffer): Move here from simple.el.
25261 Call switch-to-prev-buffer.
25262 (bury-buffer): Move here from buffer.c. Switch to previous
25263 buffer when window cannot be deleted.
25264 (unbury-buffer): Move here from bindings.el.
25265 (ctl-x-map): Move binding for other-window from window.c to
25266 here.
25267 (read-buffer-to-switch, switch-to-buffer-other-window)
25268 (switch-to-buffer-other-frame): Move here from files.el.
25269 (normalize-buffer-to-switch-to): New functions.
25270 (switch-to-buffer): Move here from buffer.c.
25271 Use read-buffer-to-switch and normalize-buffer-to-switch-to.
25272
25273 2011-06-10 Martin Rudalics <rudalics@gmx.at>
25274
25275 * window.el (window-min-height, window-min-width): Move here
25276 from window.c. Add defcustoms and rewrite doc-strings.
25277 (resize-mini-window, resize-window): New functions.
25278 (adjust-window-trailing-edge, enlarge-window, shrink-window):
25279 Move here from window.c.
25280 (maximize-window, minimize-window): New functions.
25281 (delete-window, delete-other-windows, split-window): Move here
25282 from window.c.
25283 (window-split-min-size): New function.
25284 (split-window-keep-point): Mention split-window-above-each-other
25285 instead of split-window-vertically.
25286 (split-window-above-each-other, split-window-vertically):
25287 Rename split-window-vertically to split-window-above-each-other
25288 and provide defalias for old definition.
25289 (split-window-side-by-side, split-window-horizontally):
25290 Rename split-window-horizontally to split-window-side-by-side
25291 and provide defalias for the old definition.
25292 (ctl-x-map): Move bindings for delete-window,
25293 delete-other-windows and enlarge-window here from window.c.
25294 Replace bindings for split-window-vertically and
25295 split-window-horizontally by bindings for
25296 split-window-above-each-other and split-window-side-by-side.
25297
25298 * cus-start.el (all): Remove entries for window-min-height and
25299 window-min-width. Add entries for window-splits and
25300 window-nest.
25301
25302 2011-06-09 Glenn Morris <rgm@gnu.org>
25303
25304 * calendar/appt.el (appt-mode-line): New function.
25305 (appt-check, appt-disp-window): Use it.
25306
25307 * files.el (hack-one-local-variable-eval-safep):
25308 Allow minor-modes with explicit +/-1 arguments.
25309
25310 2011-06-09 Teodor Zlatanov <tzz@lifelogs.com>
25311
25312 * term/xterm.el (xterm): Add defgroup.
25313 (xterm-extra-capabilities): Add defcustom to supply known xterm
25314 capabilities, skip querying them, or query them (default).
25315 (terminal-init-xterm): Use it.
25316 (terminal-init-xterm-modify-other-keys): New function to set up
25317 modifyOtherKeys support to simplify `terminal-init-xterm'.
25318
25319 2011-06-09 Martin Rudalics <rudalics@gmx.at>
25320
25321 * window.el (resize-window-reset, resize-window-reset-1)
25322 (resize-subwindows-skip-p, resize-subwindows-normal)
25323 (resize-subwindows, resize-other-windows, resize-this-window)
25324 (resize-root-window, resize-root-window-vertically)
25325 (window-deletable-p, window-or-subwindow-p)
25326 (frame-root-window-p): New functions.
25327
25328 2011-06-09 Glenn Morris <rgm@gnu.org>
25329
25330 * net/ange-ftp.el (ange-ftp-switches-ok): New function.
25331 (ange-ftp-get-files): Use it.
25332
25333 2011-06-09 Alexander Klimov <alserkli@inbox.ru> (tiny change)
25334
25335 * mail/sendmail.el (mail-recover-1, mail-recover):
25336 * files.el (recover-file, recover-session):
25337 Handle dired-listing-switches not being just a single short option.
25338
25339 2011-06-09 Glenn Morris <rgm@gnu.org>
25340
25341 * calendar/appt.el (appt-display-message, appt-disp-window):
25342 Handle lists of appointments.
25343
25344 2011-06-08 Martin Rudalics <rudalics@gmx.at>
25345
25346 * window.el (one-window-p): Move down in code.
25347 Rewrite doc-string.
25348 (window-current-scroll-bars): Rewrite doc-string.
25349 Normalize live window argument.
25350 (walk-windows, get-window-with-predicate, count-windows):
25351 Rewrite doc-string. Use window-list-1.
25352 (window-in-direction-2, window-in-direction, get-mru-window):
25353 New functions.
25354
25355 2011-06-08 Reuben Thomas <rrt@sc3d.org>
25356
25357 * progmodes/flymake.el (flymake-compilation-prevents-syntax-check):
25358 Doc fix (Bug#8713).
25359
25360 2011-06-08 Chong Yidong <cyd@stupidchicken.com>
25361
25362 * repeat.el (repeat-on-final-keystroke): Fix type (Bug#8696).
25363
25364 2011-06-08 Juanma Barranquero <lekktu@gmail.com>
25365
25366 * loadhist.el (unload-feature-special-hooks):
25367 Add `comint-output-filter-functions'.
25368
25369 2011-06-08 Ivan Kanis <gnu@kanis.fr>
25370
25371 * calendar/appt.el (appt-check): Move some initializations into the let.
25372
25373 2011-06-08 Martin Rudalics <rudalics@gmx.at>
25374
25375 * window.el (window-height): Defalias to window-total-height.
25376 (window-width): Defalias to window-body-width.
25377
25378 2011-06-07 Chong Yidong <cyd@stupidchicken.com>
25379
25380 * image-mode.el (image-toggle-animation): New command.
25381 (image-mode-map): Bind it to RET.
25382 (image-mode): Update message.
25383 (image-toggle-display-image): Avoid a spurious cache flush.
25384 (image-transform-rotation): Doc fix.
25385 (image-transform-properties): Return quickly in the normal case.
25386 (image-animate-loop): Rename from image-animate-max-time.
25387
25388 * image.el (image-animate-max-time): Move to image-mode.el.
25389 (create-animated-image): Remove unnecessary function.
25390 (image-animate): Rename from image-animate-start. New arg.
25391 (image-animate-stop): Remove; just use image-animate-timer.
25392 (image-animate-timer): Use car-safe.
25393 (image-animate-timeout): Rename argument.
25394
25395 2011-06-07 Martin Rudalics <rudalics@gmx.at>
25396
25397 * window.el (get-lru-window, get-largest-window): Move here from
25398 window.c. Rename first argument to ALL-FRAMES.
25399 Rephrase doc-strings.
25400 (get-buffer-window-list): Rewrite using window-list-1.
25401 Rephrase doc-string.
25402 (window-safe-min-height, window-safe-min-width): New constants.
25403 (window-size-ignore, window-min-size, window-min-size-1)
25404 (window-sizable, window-sizable-p, window-size-fixed-1)
25405 (window-size-fixed-p, window-min-delta-1, window-min-delta)
25406 (window-max-delta-1, window-max-delta, window-resizable)
25407 (window-resizable-p, window-total-height, window-total-width)
25408 (window-body-width): New functions.
25409 (window-full-height-p, window-full-width-p): Rewrite using
25410 window-total-size.
25411 (window-body-height): Rewrite using window-body-size.
25412
25413 2011-06-06 Martin Rudalics <rudalics@gmx.at>
25414
25415 * window.el (window-right, window-left, window-child)
25416 (window-child-count, window-last-child, window-any-p)
25417 (normalize-live-buffer, normalize-live-frame)
25418 (normalize-any-window, normalize-live-window)
25419 (window-iso-combination-p, window-iso-combined-p)
25420 (window-iso-combinations)
25421 (walk-window-tree-1, walk-window-tree, walk-window-subtree)
25422 (windows-with-parameter, window-with-parameter)
25423 (window-atom-root, make-window-atom, window-atom-check-1)
25424 (window-atom-check, window-side-check, window-check):
25425 New functions.
25426 (ignore-window-parameters, window-sides, window-sides-vertical)
25427 (window-sides-slots): New variables.
25428 (window-size-fixed): Move down in code. Minor doc-string fix.
25429
25430 2011-06-05 Andreas Schwab <schwab@linux-m68k.org>
25431
25432 * comint.el (comint-dynamic-complete-as-filename)
25433 (comint-dynamic-complete-filename): Correctly call
25434 completion-in-region.
25435
25436 2011-06-05 Deniz Dogan <deniz@dogan.se>
25437
25438 * net/rcirc.el (rcirc-prompt-for-encryption): Fix bug introduced
25439 in last change.
25440
25441 2011-06-05 Deniz Dogan <deniz@dogan.se>
25442
25443 * net/rcirc.el (rcirc-prompt-for-encryption): New function.
25444 (rcirc): Use it to prompt for encryption.
25445
25446 2011-06-05 Roland Winkler <winkler@gnu.org>
25447
25448 * textmodes/bibtex.el (bibtex-search-buffer): New variable.
25449 (bibtex-search-entries): New command bound to C-c C-a.
25450 (bibtex-display-entries): New function.
25451
25452 2011-06-05 Roland Winkler <winkler@gnu.org>
25453
25454 * textmodes/bibtex.el (bibtex-generate-url-list): Fix docstring.
25455 (bibtex-insert-kill): After yanking insert newline if necessary.
25456 (bibtex-initialize): Call bibtex-string-files-init only once.
25457 (bibtex-mode): Do not call easy-menu-add.
25458 (bibtex-validate-globally): Use save-excursion in bibtex buffers.
25459 (bibtex-yank): Set arg properly if nil.
25460
25461 2011-06-05 Roland Winkler <winkler@gnu.org>
25462
25463 * textmodes/bibtex.el (bibtex-search-entry-globally):
25464 New variable.
25465 (bibtex-search-entry): Use it.
25466
25467 2011-06-05 Roland Winkler <winkler@gnu.org>
25468
25469 * textmodes/bibtex.el (bibtex-entry-format): New option
25470 sort-fields.
25471 (bibtex-format-entry, bibtex-reformat): Honor this option.
25472 (bibtex-parse-entry): Return fields in proper order.
25473
25474 2011-06-05 Juanma Barranquero <lekktu@gmail.com>
25475
25476 * doc-view.el (doc-view-remove-if): Move computation of result out
25477 of `dolist' to silence misleading lexical-binding warning.
25478
25479 2011-06-04 Chong Yidong <cyd@stupidchicken.com>
25480
25481 * emacs-lisp/timer.el (timer-activate): Remove unused arg.
25482 (timer-activate, timer-activate-when-idle): Doc fix (Bug#8793).
25483
25484 2011-06-04 Michael Albinus <michael.albinus@gmx.de>
25485
25486 * net/tramp-sh.el (tramp-find-shell): Apply workaround also for
25487 "SunOS 5.10".
25488
25489 2011-06-04 Michael Albinus <michael.albinus@gmx.de>
25490
25491 * net/tramp.el (tramp-set-completion-function, tramp-parse-rhosts)
25492 (tramp-parse-shosts, tramp-parse-sconfig, tramp-parse-shostkeys)
25493 (tramp-parse-hosts, tramp-parse-passwd, tramp-parse-netrc)
25494 (tramp-parse-putty):
25495 * net/tramp-sh.el (tramp-completion-function-alist-rsh)
25496 (tramp-completion-function-alist-ssh)
25497 (tramp-completion-function-alist-telnet)
25498 (tramp-completion-function-alist-su)
25499 (tramp-completion-function-alist-putty): Set `tramp-autoload'
25500 cookie.
25501
25502 * net/tramp-ftp.el:
25503 * net/tramp-sh.el:
25504 * net/tramp-smb.el: Set `tramp-autoload' cookie, and eval after
25505 load "tramp.el" `tramp-set-completion-function'.
25506
25507 2011-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
25508
25509 * shell.el: Require and use pcomplete.
25510 (shell-dynamic-complete-functions): Add pcomplete-completions-at-point.
25511 (shell-completion-vars): Set pcomplete-default-completion-function.
25512
25513 2011-06-04 Deniz Dogan <deniz@dogan.se>
25514
25515 * iswitchb.el (iswitchb-window-buffer-p): Use `member' instead of
25516 `memq' (Bug#8799).
25517
25518 2011-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
25519
25520 * subr.el (make-progress-reporter): Add "..." by default (bug#8785).
25521
25522 2011-06-02 Juanma Barranquero <lekktu@gmail.com>
25523
25524 * bs.el (bs--mark-unmark, bs--nth-wrapper):
25525 * mpc.el (mpc-select-extend, mpc-songpointer-context):
25526 * vc/log-view.el (log-view-beginning-of-defun):
25527 * vc/smerge-mode.el (smerge-apply-resolution-patch)
25528 (smerge-refine-forward, smerge-refine-chopup-region):
25529 Silence warning for unused `dotimes' counter variables.
25530
25531 2011-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
25532
25533 * net/tramp.el (tramp-with-progress-reporter): Rename from
25534 with-progress-reporter. Use `declare'.
25535 * net/tramp-smb.el:
25536 * net/tramp-sh.el:
25537 * net/tramp-gvfs.el: Update all uses.
25538
25539 2011-06-02 Jay Belanger <jay.p.belanger@gmail.com>
25540
25541 * calc/calc.el (calc-kill-stack-buffer): Make sure that the trail
25542 buffer isn't killed before making it current.
25543
25544 2011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
25545
25546 Silence various byte-compiler warnings.
25547 * emacs-lisp/byte-run.el (make-obsolete-variable): New argument
25548 `access-type' and new obsolescence format.
25549 * emacs-lisp/bytecomp.el (byte-compile-warn-obsolete): Adjust to
25550 new format.
25551 (byte-compile-check-variable): New `access-type' argument.
25552 Only warn if the access-type is obsolete.
25553 (byte-compile-dynamic-variable-bind, byte-compile-variable-ref)
25554 (byte-compile-variable-set): Adjust callers.
25555 * help-fns.el (describe-variable): Adjust to new obsolescence format.
25556 * mail/sendmail.el (mail-mailer-swallows-blank-line): Only mark
25557 setting it as obsolete.
25558 * simple.el (minibuffer-completing-symbol):
25559 * font-lock.el (font-lock-beginning-of-syntax-function): Only mark read
25560 access as obsolete.
25561 * minibuffer.el (minibuffer-completing-file-name): Don't make it
25562 obsolete yet.
25563 * international/quail.el (quail-mouse-choose-completion): Remove unused
25564 code referring to obsolete var.
25565 (quail-choose-completion-string): Remove.
25566 * server.el (server-clients-with, server-kill-buffer-query-function)
25567 (server-kill-emacs-query-function): Silence "unused `proc'" warnings.
25568 * proced.el (proced-send-signal):
25569 * emacs-lisp/lisp.el (lisp-complete-symbol):
25570 Replace completion-annotate-function with completion-extra-properties.
25571
25572 2011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
25573
25574 * simple.el (goto-line): Use read-number.
25575 (overriding-map-is-bound): Remove.
25576 (saved-overriding-map): Change default.
25577 (save&set-overriding-map): Rename from ensure-overriding-map-is-bound;
25578 Take the map as argument.
25579 (universal-argument, negative-argument, digit-argument): Use it.
25580 (restore-overriding-map): Adjust.
25581 (do-auto-fill): Use fill-forward-paragraph.
25582 (keyboard-quit): Don't signal an error when debug-on-quit is non-nil.
25583
25584 * minibuffer.el (minibuffer-inactive-mode-map): New var.
25585 (minibuffer-inactive-mode): New major mode.
25586 * mouse.el (mouse-drag-region): Remove the "mouse-1 pops up
25587 the *Messages* buffer" hack.
25588 (mouse-popup-menubar): Don't burp if the event is a normal key.
25589
25590 Miscellaneous tweaks.
25591 * emacs-lisp/cl-macs.el (dolist, dotimes): Use the same strategy for
25592 lexical scoping as in subr.el's dolist and dotimes.
25593 * emacs-lisp/bytecomp.el (byte-compile-unfold-bcf):
25594 Silence compiler warning.
25595 * thingatpt.el (forward-whitespace): Trivial coding style fix.
25596 * subr.el (with-output-to-temp-buffer): Provide an edebug spec.
25597 * international/ccl.el (ccl-compile): Trivial simplification.
25598 * help-fns.el (help-do-arg-highlight): Silence compiler warning.
25599 * emacs-lisp/testcover.el (testcover-end): Remove spurious
25600 `printflag' argument.
25601 * emacs-lisp/byte-run.el (make-obsolete, make-obsolete-variable):
25602 Purecopy the whole obsolescence data.
25603
25604 2011-06-01 Leo Liu <sdl.web@gmail.com>
25605
25606 * net/rcirc.el (rcirc-decode-coding-system): Revert last change;
25607 improve doc-string as suggested by Marco Pessotto
25608 <melmothx@gmail.com>.
25609 (rcirc-print): Fix last change.
25610
25611 2011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
25612
25613 * minibuffer.el (complete-with-action): Return nil for the metadata and
25614 boundaries of non-functional tables.
25615 (completion-table-dynamic): Return nil for the metadata.
25616 (completion-table-with-terminator): Add default case, using
25617 complete-with-action.
25618 (completion--metadata): New function.
25619 (completion-all-sorted-completions, minibuffer-completion-help): Use it
25620 to try and avoid pathological performance problems.
25621 (completion--embedded-envvar-table): Return `category' metadata.
25622
25623 2011-05-31 Lars Magne Ingebrigtsen <larsi@gnus.org>
25624
25625 * subr.el (process-alive-p): New tiny convenience function.
25626
25627 2011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
25628
25629 * emacs-lisp/debug.el (debug): Save&restore not just the buffer's
25630 content but also its previous major mode.
25631
25632 2011-05-31 Helmut Eller <eller.helmut@gmail.com>
25633
25634 * emacs-lisp/debug.el (debug): Restore the previous content of the
25635 *Backtrace* buffer when we exit with C-M-c.
25636
25637 2011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
25638
25639 * minibuffer.el: Add metadata method to completion tables.
25640 (completion-category-overrides): New defcustom.
25641 (completion-metadata, completion--field-metadata)
25642 (completion-metadata-get, completion--styles)
25643 (completion--cycle-threshold): New functions.
25644 (completion-try-completion, completion-all-completions):
25645 Add `metadata' argument to choose completion-styles.
25646 (completion--do-completion): Use metadata to choose cycling.
25647 (completion-all-sorted-completions): Use metadata for sorting.
25648 Remove :completion-cycle-penalty which is not needed any more.
25649 (completion--try-word-completion): Add `metadata' argument.
25650 (minibuffer-completion-help): Check metadata for annotation function
25651 and sorting.
25652 (completion-file-name-table): Return `category' metadata.
25653 (minibuffer-completing-file-name): Make obsolete.
25654 * simple.el (minibuffer-completing-symbol): Make obsolete.
25655 * icomplete.el (icomplete-completions): Pass new `metadata' param to
25656 completion-try-completion.
25657
25658 2011-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
25659
25660 * mail/smtpmail.el (smtpmail-send-data): Add progress reporter.
25661
25662 2011-05-30 Leo Liu <sdl.web@gmail.com>
25663
25664 * net/rcirc.el (rcirc-debug-buffer): Use visible buffer name.
25665 (rcirc-print): Decode all incoming messages (bug#8744).
25666 (rcirc-decode-coding-system): Allow value nil for automatic coding
25667 system detection.
25668
25669 2011-06-01 Glenn Morris <rgm@gnu.org>
25670
25671 * mail/emacsbug.el (report-emacs-bug-hook): Mailclient ignores From.
25672
25673 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
25674
25675 * image.el (image-animate-max-time): Allow nil and t values.
25676 Default to nil.
25677 (create-animated-image): Doc fix.
25678 (image-animate-start): Remove second arg; just use
25679 image-animate-max-time.
25680 (image-animate-timeout): Doc fix. Args changed.
25681
25682 * image-mode.el (image-toggle-display-image): Ensure that the
25683 image spec passed to the animate timer is the same object as in
25684 the buffer's display property (Bug#6981).
25685 (image-transform-properties): Doc fix.
25686
25687 * image.el (image-animate-max-time): Default to nil.
25688
25689 2011-05-29 Martin Rudalics <rudalics@gmx.at>
25690
25691 * menu-bar.el (kill-this-buffer-enabled-p): Avoid looping over
25692 entire buffer list (Bug#8184).
25693
25694 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
25695
25696 * image.el (imagemagick-types-inhibit)
25697 (imagemagick-register-types): Doc fix.
25698
25699 2011-05-29 Deniz Dogan <deniz@dogan.se>
25700
25701 * net/rcirc.el (rcirc): Use the user's stored encryption method by
25702 default.
25703
25704 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
25705
25706 * select.el: Don't perform clipboard-manager saving in hooks;
25707 leave the hooks empty.
25708
25709 2011-05-28 Leo Liu <sdl.web@gmail.com>
25710
25711 * replace.el (occur-menu-map, occur-edit-mode-map): New vars.
25712 (occur-mode-map): Bind occur-edit-mode. Use occur-menu-map.
25713 (occur-edit-mode): New major mode (Bug#8463).
25714 (occur-after-change-function): New function.
25715 (occur-engine): Give Occur tags a read-only property.
25716
25717 2011-05-28 Kevin Ryde <user42@zip.com.au>
25718
25719 * subr.el (def-edebug-spec): Doc fix (Bug#8430).
25720
25721 2011-05-28 Chong Yidong <cyd@stupidchicken.com>
25722
25723 * bindings.el (help-echo): Make the initial non-indicator dash
25724 empty on graphical terminals (Bug#7295).
25725
25726 * files.el (auto-mode-alist): Move config rule after the
25727 in-stripping one (Bug#8547).
25728
25729 * newcomment.el (comment-end-skip): Doc fix (Bug#8659).
25730
25731 * startup.el (normal-splash-screen): Remove gratuitous mode-line
25732 setting (Bug#8740).
25733
25734 2011-05-28 Alp Aker <aker@pitt.edu> (tiny change)
25735
25736 * buff-menu.el (Buffer-menu-revert-function, Buffer-menu-sort)
25737 (Buffer-menu-buffer+size): Use Buffer-menu-buffer-column
25738 (Bug#8539).
25739
25740 2011-05-28 Chong Yidong <cyd@stupidchicken.com>
25741
25742 * emacs-lisp/re-builder.el (re-builder): Improve doc (Bug#8286).
25743
25744 2011-05-28 Dima Kogan <dkogan@cds.caltech.edu> (tiny change)
25745
25746 * progmodes/hideshow.el (hs-looking-at-block-start-p): New fun.
25747 (hs-hide-block-at-point, hs-find-block-beginning)
25748 (hs-already-hidden-p, hs-hide-block, hs-show-block): Use it
25749 (Bug#8279).
25750
25751 2011-05-28 Glenn Morris <rgm@gnu.org>
25752
25753 * startup.el (fancy-about-screen): Use standard mode line. (Bug#8740)
25754
25755 2011-05-28 Chong Yidong <cyd@stupidchicken.com>
25756
25757 * help-fns.el (describe-function-1): If the function is a derived
25758 major mode, print the parent mode.
25759
25760 * progmodes/cc-mode.el (c-mode, c++-mode, objc-mode, java-mode)
25761 (idl-mode, pike-mode, awk-mode): Inherit from prog-mode.
25762
25763 2011-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
25764
25765 * minibuffer.el (completion--capf-wrapper): Check applicability before
25766 returning non-nil for non-exclusive completion data.
25767 * progmodes/etags.el (tags-completion-at-point-function):
25768 * info-look.el (info-lookup-completions-at-point): Mark as
25769 non-exclusive.
25770 (info-complete): Adjust accordingly.
25771
25772 * info-look.el: Convert to lexical-binding and completion-at-point.
25773 (info-lookup-completions-at-point): New function.
25774 (info-complete): Use it and completion-in-region.
25775
25776 2011-05-28 Drew Adams <drew.adams@oracle.com>
25777
25778 * isearch.el: Let M-e start with point at the first mismatched char.
25779 (isearch-fail-pos): New function.
25780 (isearch-edit-string): Use it.
25781
25782 2011-05-28 Dmitry Kurochkin <dmitry.kurochkin@gmail.com> (tiny change)
25783
25784 * isearch.el (isearch-range-invisible): Use invisible-p (bug#8721).
25785
25786 2011-05-27 Toby Cubitt <toby-predictive@dr-qubit.org>
25787
25788 * emacs-lisp/avl-tree.el: New avl-tree-stack datatype. Add new
25789 traversal functions for avl-trees.
25790 (avl-tree--stack): New struct.
25791 (avl-tree-stack-p, avl-tree--stack-repopulate): New funs.
25792 (avl-tree-enter): Add optional `updatefun' arg.
25793 (avl-tree--do-enter): Add optional `updatefun' arg.
25794 Change return value.
25795 (avl-tree-delete): Add optional `test' and `nilflag' args.
25796 (avl-tree--do-delete): Add `test' and `nilflag' args.
25797 Change return value.
25798 (avl-tree-member): Add optional `nilflag'
25799 (avl-tree-member-p): New function.
25800 (avl-tree-mapc, avl-tree-mapf, avl-tree-mapcar): New functions.
25801 (avl-tree-stack, avl-tree-stack-pop, avl-tree-stack-first)
25802 (avl-tree-stack-empty-p): New functions.
25803
25804 * emacs-lisp/avl-tree.el (avl-tree--del-balance): Rename from
25805 avl-tree--del-balance1 and make it work both ways.
25806 (avl-tree--del-balance2): Remove.
25807 (avl-tree--enter-balance): Rename from avl-tree--enter-balance1 and
25808 make it work both ways.
25809 (avl-tree--enter-balance2): Remove.
25810 (avl-tree--switch-dir, avl-tree--dir-to-sign, avl-tree--sign-to-dir):
25811 New macros.
25812 (avl-tree--mapc, avl-tree-map): Add direction argument.
25813
25814 2011-05-27 David Michael <fedora.dm0@gmail.com> (tiny change)
25815
25816 * files.el (interpreter-mode-alist): Add rbash (bug#8745).
25817
25818 2011-05-27 Chong Yidong <cyd@stupidchicken.com>
25819
25820 * select.el: Support clipboard managers with built-in function
25821 x-clipboard-manager-save, via delete-frame-functions and
25822 kill-emacs-hook.
25823 (xselect-convert-to-targets): Add MULTIPLE target to list.
25824 (xselect-convert-to-save-targets): New function.
25825
25826 2011-05-27 Kenichi Handa <handa@m17n.org>
25827
25828 * mail/sendmail.el (mail-encode-header): Avoid double encoding by
25829 let-binding rfc2047-encode-encoded-words to nil.
25830
25831 2011-05-27 Glenn Morris <rgm@gnu.org>
25832
25833 * mail/emacsbug.el: Don't require url-util.
25834
25835 * shell.el (shell-directory-tracker): Case matters. (Bug#8735)
25836
25837 * files.el (set-auto-mode):
25838 Also respect mode: entries at the end of the file. (Bug#8586)
25839
25840 2011-05-26 Glenn Morris <rgm@gnu.org>
25841
25842 * files.el (hack-local-variables-prop-line, hack-local-variables):
25843 Downcase mode names, as seems to be traditional.
25844 (hack-local-variables, hack-local-variables-apply): Doc fixes.
25845
25846 * mail/emacsbug.el (report-emacs-bug): Mention checking From address.
25847 (report-emacs-bug-hook): Try to validate the From address. (Bug#8038)
25848
25849 2011-05-25 Julien Danjou <julien@danjou.info>
25850
25851 * textmodes/rst.el (rst-define-level-faces): Do not define face
25852 symbol if it is already defined.
25853
25854 2011-05-24 Vincent Belaïche <vincentb1@users.sourceforge.net>
25855
25856 * play/5x5.el (5x5-new-game, 5x5-randomize):
25857 Reset 5x5-solver-output to nil when a new grid is cast.
25858 (5x5-log-init, 5x5-log): Use defsubst instead of defmacro to shunt
25859 these debugging traces, as defmacro breaks the compiled code.
25860
25861 2011-05-24 Dmitry Kurochkin <dmitry.kurochkin@gmail.com> (tiny change)
25862
25863 * isearch.el (isearch-range-invisible): Use invisible-p (bug#8721).
25864
25865 2011-05-24 Leo Liu <sdl.web@gmail.com>
25866
25867 * vc/vc-bzr.el (vc-bzr-sha1-program): Rename from sha1-program.
25868 (vc-bzr-sha1): Adapt.
25869
25870 * sha1.el: Remove. Function `sha1' is now builtin.
25871
25872 * bindings.el: Provide sha1 feature.
25873
25874 2011-05-24 Kenichi Handa <handa@m17n.org>
25875
25876 * mail/sendmail.el: Require `rfc2047'.
25877 (mail-insert-from-field): Do not perform RFC2047 encoding.
25878 (mail-encode-header): New function.
25879 (sendmail-send-it): Set buffer-file-coding-system of the work
25880 buffer to the return value of select-message-coding-system.
25881 Call mail-encode-header.
25882
25883 * mail/smtpmail.el (smtpmail-send-it): Call mail-encode-header.
25884
25885 2011-05-24 Sean Neakums <sneakums@zork.net> (tiny change)
25886
25887 * mail/supercite.el (sc-default-cite-frame):
25888 Handle sc-nested-citation-p when sc-cite-blank-lines-p is non-nil.
25889
25890 2011-05-24 Glenn Morris <rgm@gnu.org>
25891
25892 * progmodes/python.el (brm-menu): Declare.
25893
25894 * emulation/viper.el (viper-set-hooks): Declare.
25895
25896 * play/5x5.el (5x5-log-init, 5x5-log): Evaluate when compiling.
25897 (5x5-log-init, 5x5-log, 5x5-solver): Doc fixes.
25898 (math-map-vec, math-sub, math-mul, math-make-intv, math-reduce-vec)
25899 (math-format-number, math-pow, calcFunc-arrange, calcFunc-cvec)
25900 (calcFunc-diag, calcFunc-trn, calcFunc-inv, calcFunc-mrow)
25901 (calcFunc-mcol, calcFunc-vconcat, calcFunc-index): Declare.
25902
25903 2011-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
25904
25905 Add an :exit-function for completion-at-point.
25906
25907 * minibuffer.el (completion--done): New fun.
25908 (completion--do-completion): Use it. New arg `expect-exact'.
25909 (minibuffer-complete, minibuffer-complete-word): Don't output message,
25910 since completion--do-completion does it for us now.
25911 (minibuffer-force-complete): Use completion--done and
25912 completion--replace. Handle sole-completion case with more care.
25913 (minibuffer-complete-and-exit): Use new `expect-exact' arg.
25914 (completion-extra-properties): New var.
25915 (completion-annotate-function): Make obsolete.
25916 (minibuffer-completion-help): Adjust accordingly.
25917 Use completion-list-insert-choice-function.
25918 (completion-at-point, completion-help-at-point):
25919 Bind completion-extra-properties.
25920 (completion-pcm-word-delimiters): Add | (for uniquify, for example).
25921 * simple.el (completion-list-insert-choice-function): New var.
25922 (completion-setup-function): Preserve it.
25923 (choose-completion): Pay attention to it, shuffle the code a bit.
25924 (choose-completion-string): New arg `insert-function'.
25925
25926 * textmodes/bibtex.el: Convert to lexical binding.
25927 (bibtex-mode-map): Use completion-at-point.
25928 (bibtex-mode): Use define-derived-mode&completion-at-point-functions.
25929 (bibtex-completion-at-point-function): New fun, from bibtex-complete.
25930 (bibtex-complete): Define as obsolete alias.
25931 (bibtex-complete-internal): Remove.
25932 (bibtex-format-entry): Remove unused sub-group in regexp.
25933 * shell.el (shell--command-completion-data)
25934 (shell-environment-variable-completion):
25935 * pcomplete.el (pcomplete-completions-at-point):
25936 * comint.el (comint--complete-file-name-data): Use :exit-function
25937 instead of completion-table-with-terminator so it also works for
25938 choose-completion.
25939
25940 2011-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
25941
25942 * <lots-of-files>.el: Don't quote lambda expressions with `quote'.
25943
25944 * vc/smerge-mode.el (smerge-refine-subst): Don't deactivate the mark
25945 (bug#8710).
25946
25947 * emacs-lisp/lisp.el (up-list): Fix forward movement (bug#8708).
25948
25949 2011-05-23 Ken Manheimer <ken.manheimer@gmail.com>
25950
25951 * allout.el (allout-inhibit-auto-fill-on-headline): Create new
25952 customization variable and implement: If non-nil, auto-fill will
25953 be inhibited while on topic's header line.
25954
25955 2011-05-23 Vincent Belaïche <vincentb1@users.sourceforge.net>
25956
25957 * play/5x5.el: I/ Add an arithmetic solver to suggest positions to
25958 click on. II/ Make 5x5 multisession. III/ Ensure that random grids
25959 always have a solution in grid size = 5 cases.
25960 (5x5-mode-map): Add keybinding to function `5x5-solve-suggest'.
25961 (5x5-solver-output, 5x5-log-buffer): New vars.
25962 (5x5-grid, 5x5-x-pos, 5x5-y-pos, 5x5-moves, 5x5-cracking):
25963 Make these variables buffer local to achieve 5x5 multi-session-ness.
25964 (5x5): Set 5x5-grid-size only if SIZE is non-negative.
25965 (5x5-grid-to-vec, 5x5-vec-to-grid, 5x5-log-init, 5x5-log, 5x5-solver)
25966 (5x5-solve-suggest): New funs.
25967 (5x5-randomize): Use 5x5-make-move instead of 5x5-flip-cell to
25968 randomize a grid so that we ensure that there is always a solution.
25969 (5x5-make-random-grid): Allow other movement than flipping.
25970
25971 2011-05-23 Kevin Ryde <user42@zip.com.au>
25972
25973 * emacs-lisp/advice.el (ad-read-advised-function):
25974 Use `function-called-at-point' as the default, if it has
25975 advice and passes PREDICATE.
25976
25977 2011-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
25978
25979 * emacs-lisp/bytecomp.el (byte-compile-function-form): Only call
25980 byte-compile-lambda if it's actually a lambda.
25981
25982 * emacs-lisp/eieio.el (eieio-defgeneric-form-primary-only-one):
25983 Fix function quoting. Use backquote better.
25984
25985 2011-05-22 Yuanle Song <sylecn@gmail.com>
25986
25987 * nxml/rng-xsd.el (rng-xsd-check-pattern): Use case-sensitive
25988 matching (Bug#8516).
25989
25990 2011-05-22 Jari Aalto <jari.aalto@cante.net>
25991
25992 * vc/vc-dir.el (vc-default-dir-printer): Give edited tag a
25993 different face (Bug#8178).
25994
25995 2011-05-22 Chong Yidong <cyd@stupidchicken.com>
25996
25997 * vc/diff-mode.el (diff-changed): Don't use terminal specs for
25998 defface (Bug#8144).
25999
26000 2011-05-22 Stefan Monnier <monnier@iro.umontreal.ca>
26001
26002 * emacs-lisp/macroexp.el (macroexpand-all-1): Convert ' to #' for
26003 funcall as well (bug#8712). Warn when performing those conversions.
26004 * emacs-lisp/bytecomp.el (byte-compile-form): Fix error report.
26005
26006 * progmodes/grep.el (grep-mode): Fix it for good (bug#8684)!
26007
26008 2011-05-22 Glenn Morris <rgm@gnu.org>
26009
26010 * files.el (hack-local-variables-prop-line): Small simplifications.
26011 (hack-local-variables, hack-local-variables-prop-line):
26012 If MODE-ONLY, return the mode, rather than just `t'.
26013
26014 2011-05-21 Stefan Monnier <monnier@iro.umontreal.ca>
26015
26016 * progmodes/grep.el (grep-mode): Fix last change (bug#8684).
26017
26018 2011-05-21 Glenn Morris <rgm@gnu.org>
26019
26020 * files.el (hack-local-variables-prop-line, hack-local-variables):
26021 If only interested in the mode, don't bother doing the other stuff.
26022
26023 * image-mode.el (image-after-revert-hook):
26024 Redraw all frames on which the image is visible. (Bug#8567)
26025
26026 * dired-aux.el (dired-touch-initial): Just use current-time. (Bug#6887)
26027
26028 * wid-edit.el (widget-checklist-match-inline):
26029 Fix 2011-04-19 change. (Bug#8649)
26030
26031 2011-05-20 Stefan Monnier <monnier@iro.umontreal.ca>
26032
26033 * emacs-lisp/checkdoc.el (checkdoc-sentencespace-region-engine):
26034 Also allow singlespace after single-letter capitals followed by a dot.
26035
26036 * nxml/nxml-mode.el (nxml-electric-slash): Reindent when completion is
26037 enabled. Suggested by James Ahlborn <jahlborn@gmail.com> (bug#8704).
26038
26039 2011-05-20 Nix <nix@esperi.org.uk>
26040
26041 * files.el (basic-save-buffer-2):
26042 Fix handling of break-hardlink-on-save with non-existent files.
26043
26044 2011-05-19 Deniz Dogan <deniz@dogan.se>
26045
26046 * net/rcirc.el (rcirc-mode): Initialize rcirc-urls to nil.
26047 (rcirc-markup-urls): Check if rcirc-url-regexp is nil.
26048
26049 2011-05-19 Glenn Morris <rgm@gnu.org>
26050
26051 * progmodes/f90.el (f90-type-def-re):
26052 Handle "type, bind(c)". (Bug#8691)
26053
26054 * emacs-lisp/autoload.el (batch-update-autoloads):
26055 Set autoload-excludes by parsing loadup.el rather than Makefiles.
26056
26057 2011-05-18 Michael Albinus <michael.albinus@gmx.de>
26058
26059 * net/tramp.el (tramp-process-actions): Set "first-password-request"
26060 property for the correct connection in case of multihops.
26061
26062 2011-05-18 Glenn Morris <rgm@gnu.org>
26063
26064 * emacs-lisp/authors.el (authors-fixed-entries): Remove fakemail.c.
26065 * mail/sendmail.el (sendmail-program): Fall back to just "sendmail".
26066
26067 Rationalize calendar handling of day and month abbrev-arrays.
26068 * calendar/calendar.el (calendar-customized-p): New function.
26069 (calendar-abbrev-construct, calendar-make-alist): Change what it does.
26070 (calendar-day-name-array, calendar-month-name-array): Doc fix.
26071 Add :set function.
26072 (calendar-abbrev-length, calendar-day-abbrev-array)
26073 (calendar-month-abbrev-array): Make defcustoms, with appropriate :set.
26074 (calendar-day-abbrev-array, calendar-month-abbrev-array):
26075 Elements may no longer be nil.
26076 (calendar-day-name, calendar-month-name):
26077 Update for changed nature of abbrev arrays.
26078 * calendar/diary-lib.el (diary-name-pattern):
26079 Update for changed nature of abbrev arrays.
26080 (diary-mark-entries-1): Update calendar-make-alist calls.
26081 (diary-font-lock-date-forms): Doc fix for changed abbrev arrays.
26082 * calendar/cal-html.el (cal-html-day-abbrev-array):
26083 Simply inherit from calendar-day-abbrev-array.
26084
26085 2011-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
26086
26087 * progmodes/grep.el (grep-mode): Disable default
26088 compilation-directory-matcher setting (bug#8684).
26089
26090 2011-05-17 Michael Albinus <michael.albinus@gmx.de>
26091
26092 * net/tramp.el (tramp-handle-insert-file-contents): Use "dd"
26093 instead of "head" and "tail". There were problems with SunOS 5.9,
26094 and it performs better.
26095
26096 2011-05-17 Glenn Morris <rgm@gnu.org>
26097
26098 * mail/mail-utils.el (mail-dont-reply-to): Silence compiler.
26099
26100 * progmodes/idlw-shell.el (idlwave-shell-complete-filename):
26101 Replace obsolete function.
26102
26103 * shell.el (pcomplete-parse-arguments-function): Declare.
26104
26105 * calendar/appt.el (appt-message-warning-time, appt-display-mode-line)
26106 (appt-display-diary, appt-display-interval, appt-prev-comp-time)
26107 (appt-check): Doc fixes.
26108 (appt-disp-window-function, appt-delete-window-function):
26109 Remove needless special case in custom :type.
26110 (appt-display-count): Default to 0, not nil.
26111 (appt-check): Reset appt-display-count to 0, not nil.
26112
26113 2011-05-17 Juanma Barranquero <lekktu@gmail.com>
26114
26115 * progmodes/python.el (python-font-lock-keywords):
26116 Add the Python 3.X keyword "nonlocal" (bug#8639).
26117
26118 2011-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
26119
26120 * emacs-lisp/eieio.el (defmethod): Fix quoting of code (bug#8677).
26121
26122 2011-05-16 Kevin Ryde <user42@zip.com.au>
26123
26124 * info-look.el (makefile-automake-mode): New setups, looking in
26125 automake manual, then makefile-mode.
26126 (makefile-mode): Remove automake manual, have it just in
26127 makefile-automake-mode since there's various things different or
26128 not relevant to plain make.
26129 (makefile-mode): Remove "other-modes" non-existent automake-mode,
26130 believe a hypothetical automake-mode would go to makefile-mode,
26131 not the other way around.
26132
26133 2011-05-15 Chong Yidong <cyd@stupidchicken.com>
26134
26135 * vc/diff-mode.el (diff-fixup-modifs): Locate correct position for
26136 hunk-end tags (Bug#8672).
26137
26138 * vc/vc-annotate.el (vc-annotate-mode-map): Bind = to
26139 vc-annotate-show-diff-revision-at-line (Bug#8671).
26140
26141 2011-05-14 Glenn Morris <rgm@gnu.org>
26142
26143 * vc/add-log.el (add-change-log-entry): Don't start adding a new entry
26144 in the middle of an existing one with multiple authors. (Bug#8645)
26145 (change-log-font-lock-keywords): Also handle multiple author lines
26146 with leading tabs. (Bug#8644)
26147
26148 * calendar/appt.el (appt-check): Rename some local variables.
26149 Some simplification/reordering.
26150
26151 * mail/feedmail.el (feedmail-confirm-outgoing-timeout)
26152 (feedmail-sendmail-f-doesnt-sell-me-out)
26153 (feedmail-queue-slug-suspect-regexp, feedmail-debug)
26154 (feedmail-debug-sit-for, feedmail-queue-express-hook)
26155 (feedmail-queue-runner-message-sender): Set :version.
26156 (bbdb-search, bbdb-records, smtp-via-smtp, smtp-server)
26157 (bbdb-dwim-net-address, vm-mail): Declare.
26158 (feedmail-binmail-gnulinuxish-template):
26159 Rename from feedmail-binmail-linuxish-template.
26160 (feedmail-buffer-to-smtp, feedmail-vm-mail-mode):
26161 Use insert-buffer-substring.
26162
26163 2011-05-14 Bill Carpenter <bill@carpenter.org>
26164
26165 * mail/feedmail.el (feedmail-patch-level): Increase.
26166 (feedmail-debug): New custom group.
26167 (feedmail-confirm-outgoing-timeout)
26168 (feedmail-sendmail-f-doesnt-sell-me-out)
26169 (feedmail-queue-slug-suspect-regexp, feedmail-debug)
26170 (feedmail-debug-sit-for, feedmail-queue-express-hook): New options.
26171 (feedmail-sender-line, feedmail-from-line)
26172 (feedmail-fiddle-headers-upwardly, feedmail-enable-spray)
26173 (feedmail-spray-this-address)
26174 (feedmail-spray-address-fiddle-plex-list)
26175 (feedmail-queue-use-send-time-for-date)
26176 (feedmail-queue-use-send-time-for-message-id)
26177 (feedmail-last-chance-hook, feedmail-queue-runner-mode-setter)
26178 (feedmail-buffer-eating-function):
26179 Doc fixes.
26180 (feedmail-spray-via-bbdb, feedmail-buffer-to-smtp)
26181 (feedmail-vm-mail-mode, feedmail-message-action-scroll-up)
26182 (feedmail-message-action-scroll-down): New functions.
26183 (feedmail-queue-directory, feedmail-queue-draft-directory):
26184 Use expand-file-name.
26185 (feedmail-prompt-before-queue-standard-alist): Add scroll entries.
26186 Remove C-v help entry.
26187 (feedmail-queue-buffer-file-name): New variable.
26188 (feedmail-mail-send-hook-splitter, feedmail-buffer-to-binmail)
26189 (feedmail-buffer-to-smtpmail, feedmail-queue-express-to-draft)
26190 (feedmail-message-action-send-strong, feedmail-message-action-edit)
26191 (feedmail-message-action-draft, feedmail-message-action-draft-strong)
26192 (feedmail-message-action-queue, feedmail-message-action-queue-strong)
26193 (feedmail-message-action-toggle-spray)
26194 (feedmail-run-the-queue-no-prompts)
26195 (feedmail-run-the-queue-global-prompt, feedmail-queue-reminder)
26196 (feedmail-look-at-queue-directory, feedmail-queue-subject-slug-maker)
26197 (feedmail-create-queue-filename, feedmail-rfc822-time-zone):
26198 (feedmail-fiddle-header, feedmail-give-it-to-buffer-eater)
26199 (feedmail-envelope-deducer, feedmail-fiddle-from)
26200 (feedmail-fiddle-sender, feedmail-default-date-generator)
26201 (feedmail-fiddle-date, feedmail-fiddle-message-id)
26202 (feedmail-fiddle-spray-address)
26203 (feedmail-fiddle-list-of-spray-fiddle-plexes)
26204 (feedmail-fiddle-list-of-fiddle-plexes)
26205 (feedmail-fill-to-cc-function, feedmail-fill-this-one)
26206 (feedmail-one-last-look, feedmail-fqm-p): Add debug calls.
26207 (feedmail-queue-runner-message-sender, feedmail-binmail-template):
26208 Change default. Doc fix.
26209 (feedmail-queue-runner-cleaner-upper): Use feedmail-say-chatter.
26210 (feedmail-binmail-linuxish-template): New constant.
26211 (feedmail-buffer-to-sendmail): Doc fix. Add debug call.
26212 Respect feedmail-sendmail-f-doesnt-sell-me-out.
26213 (feedmail-send-it): Add debug call.
26214 Use feedmail-queue-buffer-file-name, and
26215 feedmail-send-it-immediately-wrapper.
26216 (feedmail-message-action-send): Add debug call.
26217 Use feedmail-send-it-immediately-wrapper.
26218 (feedmail-queue-express-to-queue): Add debug call.
26219 Run feedmail-queue-express-hook.
26220 (feedmail-message-action-help): Add debug call. Use feedmail-p-h-b-n.
26221 (feedmail-message-action-help-blat):
26222 Rename from feedmail-queue-send-edit-prompt-help-first.
26223 (feedmail-run-the-queue): Add debug call. Set buffer-file-type.
26224 Check line-endings. Handle errors better.
26225 (feedmail-queue-reminder-brief, feedmail-queue-reminder-medium):
26226 Doc fix. Add debug call.
26227 (feedmail-queue-send-edit-prompt): Doc fix. Add debug call.
26228 Use feedmail-queue-send-edit-prompt-inner.
26229 (feedmail-queue-runner-prompt, feedmail-scroll-buffer): New functions.
26230 (feedmail-queue-send-edit-prompt-inner): New function, extracted
26231 from feedmail-queue-send-edit-prompt.
26232 (feedmail-queue-send-edit-prompt-help)
26233 (feedmail-queue-send-edit-prompt-help-later): Remove functions.
26234 (feedmail-tidy-up-slug): Add debug call.
26235 Respect feedmail-queue-slug-suspect-regexp.
26236 (feedmail-queue-subject-slug-maker): Use buffer-substring-no-properties.
26237 (feedmail-dump-message-to-queue): Add debug call.
26238 Expand queue-directory.
26239 (feedmail-dump-message-to-queue): Change message slightly.
26240 Use feedmail-say-chatter.
26241 (feedmail-rfc822-date): Add debug call. Bind system-time-locale.
26242 (feedmail-send-it-immediately-wrapper): New function.
26243 (feedmail-send-it-immediately): Add debug calls. Use let not let*.
26244 Insert empty string rather than newline. Handle full-frame case.
26245 Use catch/throw. Use feedmail-say-chatter.
26246 (feedmail-fiddle-from): Try mail-host-address.
26247 (feedmail-default-message-id-generator): Doc fix.
26248 Bind system-time-locale. Handle missing end.
26249 (feedmail-fiddle-x-mailer): Add debug call.
26250 Handle feedmail-x-mailer-line being nil.
26251 (feedmail-accume-n-nuke-header, feedmail-deduce-address-list):
26252 Add debug call. Use buffer-substring-no-properties.
26253 (feedmail-say-debug, feedmail-say-chatter): New functions.
26254 (feedmail-find-eoh): Give an explicit error.
26255
26256 2011-05-13 Ulf Jasper <ulf.jasper@web.de>
26257
26258 * net/newst-treeview.el (newsticker-treeview-face): Change default
26259 family from helvetica to sans.
26260 (newsticker-treeview-tool-bar-map): Move tool-bar icons to
26261 etc/images/newsticker.
26262
26263 * net/newst-reader.el (newsticker-feed-face): Change default
26264 family from helvetica to sans.
26265
26266 * net/newst-plainview.el (newsticker-new-item-face)
26267 (newsticker-old-item-face, newsticker-immortal-item-face)
26268 (newsticker-obsolete-item-face, newsticker-date-face)
26269 (newsticker-statistics-face): Change default family from
26270 helvetica to sans.
26271 (newsticker--plainview-tool-bar-map): Move tool-bar icons to
26272 etc/images/newsticker.
26273
26274 * net/newst-backend.el (newsticker--do-run-auto-mark-filter)
26275 (newsticker--process-auto-mark-filter-match): Tell user about
26276 auto-marking.
26277
26278 2011-05-13 Didier Verna <didier@xemacs.org>
26279
26280 Common Lisp indentation improvements on defmethod and lambda-lists.
26281 * emacs-lisp/cl-indent.el: Advertise the changes and remove obsolete
26282 TODO entries.
26283 (lisp-lambda-list-keyword-parameter-indentation)
26284 (lisp-lambda-list-keyword-parameter-alignment)
26285 (lisp-lambda-list-keyword-alignment): New customizable user options.
26286 (lisp-indent-defun-method): Improve docstring.
26287 (extended-loop-p): Fix comment.
26288 (lisp-indent-lambda-list-keywords-regexp): New variable.
26289 (lisp-indent-lambda-list): New function.
26290 (lisp-indent-259): Use it.
26291 (lisp-indent-defmethod): Support for more than one
26292 method qualifier and properly indent methods lambda-lists.
26293 (defgeneric): Provide a missing common-lisp-indent-function property.
26294
26295 2011-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
26296
26297 * thingatpt.el (bounds-of-thing-at-point): Return nil rather than
26298 bounds for the empty string (bug#8667).
26299
26300 2011-05-13 Glenn Morris <rgm@gnu.org>
26301
26302 * mail/feedmail.el (feedmail-buffer-to-sendmail): Require sendmail.
26303
26304 * mail/sendmail.el (sendmail-program): Try executable-find first.
26305 (sendmail-send-it): `sendmail-program' cannot be unbound.
26306
26307 * calendar/appt.el (appt-make-list): Simplify.
26308 (appt-time-msg-list): Doc fix.
26309 (appt-check): Change mode-line message at the time of the appointment.
26310
26311 2011-05-12 Andreas Schwab <schwab@linux-m68k.org>
26312
26313 * progmodes/ld-script.el (ld-script-keywords)
26314 (ld-script-builtins): Update keywords list.
26315
26316 2011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
26317
26318 * progmodes/grep.el (grep-filter): Don't trip on partial lines.
26319
26320 * shell.el (shell-completion-vars): New function.
26321 (shell-mode):
26322 * simple.el (read-shell-command): Use it.
26323 (blink-matching-open): No need for " [...]" in minibuffer-message.
26324
26325 2011-05-12 Glenn Morris <rgm@gnu.org>
26326
26327 * calendar/appt.el (appt-now-displayed): Remove pointless variable.
26328 (appt-check): Simplify.
26329
26330 2011-05-12 Eli Zaretskii <eliz@gnu.org>
26331
26332 * vc/smerge-mode.el (smerge-resolve): Use null-device rather than a
26333 literal "/dev/null".
26334
26335 2011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
26336
26337 * emacs-lisp/lisp.el (lisp-complete-symbol, lisp-completion-at-point):
26338 Fix typo.
26339
26340 2011-05-12 Ralph Schleicher <rs@ralph-schleicher.de>
26341
26342 * progmodes/which-func.el (which-function):
26343 Use add-log-current-defun instead of add-log-current-defun-function,
26344 which might not be defined (Bug#8260).
26345
26346 2011-05-12 Glenn Morris <rgm@gnu.org>
26347
26348 * emacs-lisp/bytecomp.el (byte-compile-file-form-defmumble):
26349 Let byte-compile-initial-macro-environment always take precedence.
26350
26351 2011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
26352
26353 * net/rcirc.el: Add support for SSL/TLS connections.
26354 (rcirc-server-alist): New field `encryption'.
26355 (rcirc): Check `encryption' settings.
26356 (rcirc-connect): New arg `encryption'. Use open-network-stream.
26357 Merge make-local-variable into `set'.
26358 (rcirc--connection-open-p): New function.
26359 (rcirc-send-string, rcirc-clean-up-buffer): Use it to handle case where
26360 the process is not a network process (e.g. running gnutls-cli).
26361 (set-rcirc-decode-coding-system, set-rcirc-encode-coding-system):
26362 Make rcirc-(en|de)code-coding-system local here.
26363 (rcirc-mode): Merge make-local-variable into `set'.
26364 (rcirc-parent-buffer): Make permanent buffer-local.
26365 (rcirc-multiline-minor-mode): Don't do it here.
26366 (rcirc-switch-to-server-buffer): Don't switch to a random buffer if
26367 there's no server buffer.
26368
26369 2011-05-11 Glenn Morris <rgm@gnu.org>
26370
26371 * newcomment.el (comment-kill): Prefix "unused" local.
26372
26373 * term/w32console.el (get-screen-color): Declare.
26374
26375 * emacs-lisp/bytecomp.el (byte-compile-arglist-warn):
26376 Handle symbol elements of byte-compile-initial-macro-environment.
26377
26378 2011-05-10 Leo Liu <sdl.web@gmail.com>
26379
26380 * bookmark.el (bookmark-bmenu-mode-map):
26381 Bind bookmark-bmenu-search to `/'.
26382
26383 * mail/footnote.el: Convert to utf-8 encoding.
26384 (footnote-unicode-string, footnote-unicode-regexp): New variable.
26385 (Footnote-unicode): New function.
26386 (footnote-style-alist): Add unicode style to the list.
26387 (footnote-style): Doc fix.
26388
26389 2011-05-10 Jim Meyering <meyering@redhat.com>
26390
26391 Fix doubled-word typos.
26392 * international/quail.el (quail-insert-kbd-layout): and and -> and.
26393 * kermit.el: and and -> and.
26394 * net/ldap.el (ldap-search-internal): to to -> to.
26395 * progmodes/vhdl-mode.el (vhdl-offsets-alist): Likewise.
26396 * progmodes/js.el (js-mode): and and -> and.
26397 * textmodes/artist.el (artist-move-to-xy): at at -> at.
26398 (artist-draw-region-trim-line-endings): if if -> if.
26399 And Safetyc -> Safety.
26400 * textmodes/reftex-dcr.el (reftex-view-crossref): at at -> at a.
26401
26402 2011-05-10 Glenn Morris <rgm@gnu.org>
26403 Stefan Monnier <monnier@iro.umontreal.ca>
26404
26405 * files.el (hack-one-local-variable-eval-safep):
26406 Consider "eval: (foo-mode)" to be safe. (Bug#8613)
26407
26408 2011-05-10 Glenn Morris <rgm@gnu.org>
26409
26410 * calendar/diary-lib.el (diary-list-entries-hook)
26411 (diary-mark-entries-hook, diary-nongregorian-listing-hook)
26412 (diary-nongregorian-marking-hook, diary-list-entries)
26413 (diary-include-other-diary-files, diary-mark-entries)
26414 (diary-mark-included-diary-files): Doc fixes.
26415
26416 2011-05-09 Juanma Barranquero <lekktu@gmail.com>
26417
26418 * misc.el: Require tabulated-list.el during compilation.
26419
26420 2011-05-09 Chong Yidong <cyd@stupidchicken.com>
26421
26422 * progmodes/compile.el (compilation-start):
26423 Run compilation-filter-hook for the async case too.
26424 (compilation-filter-hook): Doc fix.
26425
26426 2011-05-09 Deniz Dogan <deniz@dogan.se>
26427
26428 * wdired.el: Remove outdated installation comment. Fix usage
26429 comment.
26430
26431 2011-05-09 Juanma Barranquero <lekktu@gmail.com>
26432
26433 * misc.el: Implement new command `list-dynamic-libraries'.
26434 (list-dynamic-libraries--loaded-only-p): New variable.
26435 (list-dynamic-libraries--refresh): New function.
26436 (list-dynamic-libraries): New command.
26437
26438 2011-05-09 Chong Yidong <cyd@stupidchicken.com>
26439
26440 * progmodes/compile.el (compilation-error-regexp-alist-alist):
26441 Fix the ant regexp to handle end-line and end-column info from jikes.
26442 Re-introduce maven regexp. Give the ruby-Test::Unit regexp a
26443 higher priority to avoid clobbering by gnu.
26444
26445 2011-05-08 Chong Yidong <cyd@stupidchicken.com>
26446
26447 * cus-face.el (custom-declare-face): Call custom-theme-recalc-face
26448 if the face has existing theme settings (Bug#8454).
26449
26450 2011-05-08 Ralph Schleicher <rs@ralph-schleicher.de>
26451
26452 * progmodes/perl-mode.el (perl-imenu-generic-expression):
26453 Only match variables declared via `my' or `our' (Bug#8261).
26454
26455 * net/browse-url.el (browse-url-of-dired-file): Allow browsing of
26456 special file names `.' and `..' (Bug#8259).
26457
26458 2011-05-08 Chong Yidong <cyd@stupidchicken.com>
26459
26460 * progmodes/grep.el (grep-mode-font-lock-keywords):
26461 Remove buffer-changing entries.
26462 (grep-filter): New function.
26463 (grep-mode): Add it to compilation-filter-hook.
26464
26465 * progmodes/compile.el (compilation-filter-hook)
26466 (compilation-filter-start): New defvars.
26467 (compilation-filter): Call compilation-filter-hook prior to
26468 updating the process mark.
26469
26470 2011-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
26471
26472 * emacs-lisp/eieio.el (defmethod): Fix typo in last change.
26473
26474 2011-05-07 Eli Zaretskii <eliz@gnu.org>
26475
26476 * mail/sendmail.el (send-mail-function): On MS-Windows, default to
26477 mailclient-send-it even if window-system is nil. (Bug#8595)
26478
26479 * term/w32console.el (terminal-init-w32console):
26480 Call get-screen-color and use its output to set the frame
26481 background-mode. (Bug#8597)
26482
26483 2011-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
26484
26485 Make bytecomp.el understand that defmethod defines funs (bug#8631).
26486 * emacs-lisp/eieio.el (eieio--defalias, eieio--defgeneric-init-form):
26487 New functions.
26488 (defgeneric, eieio--defmethod): Use them.
26489 (eieio-defgeneric): Remove.
26490 (defmethod): Call defgeneric in a way visible to the byte-compiler.
26491
26492 2011-05-07 Glenn Morris <rgm@gnu.org>
26493
26494 * calendar/timeclock.el (timeclock-log-data): Remove unused local.
26495 Use let rather than let*.
26496 (timeclock-find-discrep): Remove unused local.
26497
26498 * calendar/diary-lib.el (diary-comment-start): Doc fix.
26499
26500 * calendar/appt.el (appt-time-msg-list): Doc fix.
26501
26502 2011-05-06 Noah Friedman <friedman@splode.com>
26503
26504 * apropos.el (apropos-print-doc): Only use
26505 emacs-lisp-docstring-fill-column when it is bound to an integer,
26506 per that variable's documentation.
26507
26508 2011-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
26509
26510 * lpr.el (print-region-1): Echo lpr-program's output, so error messages
26511 and warnings are not silently discarded (e.g. use -d instead of -P).
26512
26513 2011-05-06 Glenn Morris <rgm@gnu.org>
26514
26515 * calendar/appt.el (appt-message-warning-time): Doc fix.
26516 (appt-warning-time-regexp): New option.
26517 (appt-make-list): Respect appt-message-warning-time.
26518
26519 * calendar/diary-lib.el (diary-comment-start, diary-comment-end):
26520 New options.
26521 (diary-add-to-list): Strip comments from the displayed string.
26522 (diary-mode): Set comment-start and comment-end.
26523
26524 * vc/diff-mode.el (smerge-refine-subst): Declare.
26525 (diff-refine-hunk): Don't require smerge-mode when compiling.
26526
26527 2011-05-06 Juanma Barranquero <lekktu@gmail.com>
26528
26529 * simple.el (list-processes): Return nil as the docstring says.
26530
26531 2011-05-05 Michael Albinus <michael.albinus@gmx.de>
26532
26533 * net/ange-ftp.el (ange-ftp-binary-file-name-regexp): Set default
26534 to "".
26535 (ange-ftp-write-region, ange-ftp-insert-file-contents)
26536 (ange-ftp-copy-file-internal): Use only `ange-ftp-binary-file' for
26537 determining of binary transfer. (Bug#7383)
26538
26539 2011-05-05 Michael Albinus <michael.albinus@gmx.de>
26540
26541 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
26542 Fix port computation bug. (Bug#8618)
26543
26544 2011-05-05 Glenn Morris <rgm@gnu.org>
26545
26546 * allout-widgets.el (allout-widgets-mode-inhibit): Declare before use.
26547
26548 * simple.el (shell-dynamic-complete-functions)
26549 (comint-dynamic-complete-functions): Declare.
26550
26551 * net/network-stream.el (gnutls-negotiate):
26552 * simple.el (tabulated-list-print): Fix declarations.
26553
26554 * progmodes/gud.el (syntax-symbol, syntax-point):
26555 Remove unnecessary and incorrect declarations.
26556
26557 * emacs-lisp/check-declare.el (check-declare-scan):
26558 Handle byte-compile-initial-macro-environment in bytecomp.el.
26559
26560 2011-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
26561
26562 Fix earlier half-done eieio-defmethod change (bug#8338).
26563 * emacs-lisp/eieio.el (eieio--defmethod): Rename from eieio-defmethod.
26564 Streamline and change calling convention.
26565 (defmethod): Adjust accordingly and simplify.
26566 (eieio-defclass): Fix broken calls to eieio-defmethod and redirect to
26567 new eieio--defmethod.
26568 (slot-boundp): Minor CSE simplification.
26569
26570 2011-05-05 Milan Zamazal <pdm@zamazal.org>
26571
26572 * progmodes/glasses.el (glasses-separate-capital-groups): New option.
26573 (glasses-make-readable): Use glasses-separate-capital-groups.
26574
26575 2011-05-05 Juanma Barranquero <lekktu@gmail.com>
26576
26577 * emacs-lisp/warnings.el (warning-level-aliases): Reflow docstring.
26578 (warning-series): Doc fix.
26579 (display-warning): Don't try to create the buffer if we just found it.
26580
26581 2011-05-04 Chong Yidong <cyd@stupidchicken.com>
26582
26583 * emacs-lisp/autoload.el (generated-autoload-file): Set to nil.
26584 (autoload-find-generated-file): New function.
26585 (generate-file-autoloads): Bind generated-autoload-file to
26586 buffer-file-name.
26587 (update-file-autoloads, update-directory-autoloads):
26588 Use autoload-find-generated-file. If called interactively, prompt for
26589 output file (Bug#7989).
26590 (batch-update-autoloads): Doc fix.
26591
26592 2011-05-04 Juanma Barranquero <lekktu@gmail.com>
26593
26594 * term/w32-win.el (dynamic-library-alist): Add `gnutls'.
26595
26596 2011-05-04 Glenn Morris <rgm@gnu.org>
26597
26598 * calendar/diary-lib.el (diary-fancy-date-pattern): Turn it into a
26599 function, so it follows changes in calendar-date-style.
26600 (diary-fancy-date-matcher): New function.
26601 (diary-fancy-font-lock-keywords): Use diary-fancy-date-matcher.
26602 (diary-fancy-font-lock-fontify-region-function):
26603 Use diary-fancy-date-pattern as a function.
26604
26605 * calendar/diary-lib.el (diary-fancy-date-pattern): Do not use
26606 non-numbers for `year' etc pseudo-variables. (Bug#8583)
26607
26608 2011-05-04 Teodor Zlatanov <tzz@lifelogs.com>
26609
26610 * net/gnutls.el (gnutls-negotiate): Use CL-style keyword arguments
26611 instead of positional arguments. Allow :keylist and :crlfiles
26612 arguments.
26613 (open-gnutls-stream): Call it.
26614
26615 * net/network-stream.el (network-stream-open-starttls): Adjust to
26616 call `gnutls-negotiate' with :process and :hostname arguments.
26617
26618 2011-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
26619
26620 * minibuffer.el (completion--message): New function.
26621 (completion--do-completion, minibuffer-complete)
26622 (minibuffer-force-complete, minibuffer-complete-word): Use it.
26623 (completion--do-completion): Don't ignore completion-auto-help when in
26624 icomplete-mode.
26625
26626 * whitespace.el (whitespace-trailing-regexp): Don't rely on the
26627 internal encoding (e.g. tibetan zero is not whitespace).
26628 (global-whitespace-mode): Prefer save-current-buffer.
26629 (whitespace-trailing-regexp): Remove useless save-match-data.
26630 (whitespace-empty-at-bob-regexp): Minor simplification.
26631
26632 2011-05-03 Chong Yidong <cyd@stupidchicken.com>
26633
26634 * emacs-lisp/autoload.el (generated-autoload-file): Doc fix (Bug#7989).
26635
26636 2011-05-03 Agustín Martín Domingo <agustin.martin@hispalinux.es>
26637
26638 * textmodes/ispell.el (ispell-add-per-file-word-list):
26639 Use `concat' to create string for insertion.
26640
26641 2011-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
26642
26643 * textmodes/bibtex.el (bibtex-fill-field-bounds, bibtex-fill-entry):
26644 Avoid open-line which runs post-self-insert-hook.
26645 (bibtex-fill-entry): Remove unused `end' var.
26646
26647 2011-05-03 Dirk Ullrich <dirk.ullrich@googlemail.com> (tiny change)
26648
26649 * textmodes/ispell.el (ispell-add-per-file-word-list):
26650 Protect against `nil' value of `comment-start' (Bug#8579).
26651
26652 2011-05-03 Leo Liu <sdl.web@gmail.com>
26653
26654 * isearch.el (isearch-yank-pop): New command.
26655 (isearch-mode-map): Bind it to `M-y'.
26656 (isearch-forward): Mention it.
26657
26658 2011-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
26659
26660 * simple.el (minibuffer-complete-shell-command): Remove.
26661 (minibuffer-local-shell-command-map): Use completion-at-point.
26662 (read-shell-command): Setup completion vars here instead.
26663 (read-expression-map): Bind TAB to symbol completion.
26664
26665 * textmodes/ispell.el (lookup-words): Use with-temp-buffer; signal
26666 error directly rather via storing it into `results'.
26667
26668 2011-05-02 Leo Liu <sdl.web@gmail.com>
26669
26670 * vc/diff.el: Fix description.
26671
26672 2011-05-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
26673
26674 * server.el (server-eval-at): New function.
26675
26676 2011-05-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
26677
26678 * net/network-stream.el (open-network-stream): Take a :nowait
26679 parameter and pass it on to `make-network-process'.
26680 (network-stream-open-plain): Ditto.
26681
26682 2011-04-30 Andreas Schwab <schwab@linux-m68k.org>
26683
26684 * faces.el (face-spec-set-match-display): Don't match toolkit
26685 options on terminal frames.
26686
26687 2011-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
26688
26689 * progmodes/pascal.el: Use lexical binding.
26690 (pascal-mode-map): Remove author preferences.
26691
26692 * pcomplete.el (pcomplete-std-complete): Don't abuse
26693 completion-at-point.
26694
26695 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
26696
26697 * calc/calccomp.el (math-comp-to-string-flat-term): Simplify by
26698 removing code that has been dead since 1991 or so.
26699
26700 * startup.el (command-line): When warning about "_emacs", use a
26701 delayed warning to allow the user to filter it out.
26702
26703 2011-04-28 Deniz Dogan <deniz@dogan.se>
26704
26705 * net/rcirc.el (rcirc-handler-353): Fix bug for channels which the
26706 user has not joined.
26707
26708 2011-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
26709
26710 * pcomplete.el (pcomplete-completions-at-point): Return nil if there
26711 aren't any completions at point.
26712
26713 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
26714
26715 * subr.el (display-delayed-warnings): New function.
26716 (delayed-warnings-hook): New variable.
26717
26718 2011-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
26719
26720 * minibuffer.el (completion-at-point, completion-help-at-point):
26721 Don't presume that a given completion-at-point-function will always
26722 use the same calling convention.
26723
26724 * pcomplete.el (pcomplete-completions-at-point):
26725 Obey pcomplete-ignore-case. Don't call pcomplete-norm-func unless
26726 pcomplete-seen is non-nil.
26727 (pcomplete-comint-setup): Also recognize the new comint/shell
26728 completion functions.
26729 (pcomplete-do-complete): Don't call pcomplete-norm-func unless
26730 pcomplete-seen is non-nil.
26731
26732 2011-04-27 Niels Giesen <niels.giesen@gmail.com>
26733
26734 * calendar/icalendar.el (diary-lib): Add require statement.
26735 (icalendar--create-uid): Read out a uid from a text-property on
26736 the first character in the entry. This allows for code to add its
26737 own uid to the entry.
26738 (icalendar--convert-float-to-ical): Add export of
26739 `diary-float'-entries save for those with the optional DAY
26740 argument.
26741
26742 2011-04-27 Daniel Colascione <dan.colascione@gmail.com>
26743
26744 * subr.el (shell-quote-argument): Use alternate escaping strategy
26745 when we spot a variable reference in a string.
26746
26747 2011-04-26 Daniel Colascione <dan.colascione@gmail.com>
26748
26749 * cus-start.el (all): Define customization for debug-on-event.
26750
26751 2011-04-26 Daniel Colascione <dan.colascione@gmail.com>
26752
26753 * subr.el (shell-quote-argument): Escape correctly under Windows.
26754
26755 2011-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
26756
26757 * emulation/cua-base.el (cua-selection-mode): Make it toggle again.
26758
26759 2011-04-25 Michael Albinus <michael.albinus@gmx.de>
26760
26761 * net/tramp.el (tramp-process-actions): Add POS argument.
26762 Delete region between POS and (pos).
26763
26764 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
26765 Use `nil' position in `tramp-process-actions' call.
26766 (tramp-maybe-open-connection): Call `tramp-process-actions' with pos.
26767
26768 * net/tramp-smb.el (tramp-smb-maybe-open-connection): Use `nil'
26769 position in `tramp-process-actions' call.
26770
26771 * net/trampver.el: Update release number.
26772
26773 2011-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
26774
26775 * custom.el (defcustom): Obey lexical-binding.
26776
26777 Fix octave-inf completion problems reported by Alexander Klimov.
26778 * progmodes/octave-inf.el (inferior-octave-mode-syntax-table):
26779 Inherit from octave-mode-syntax-table.
26780 (inferior-octave-mode): Set info-lookup-mode.
26781 (inferior-octave-completion-at-point): New function.
26782 (inferior-octave-complete): Use it and completion-in-region.
26783 (inferior-octave-dynamic-complete-functions): Use it as well, and use
26784 comint-filename-completion.
26785 * progmodes/octave-mod.el (octave-mode-syntax-table): Use _ syntax for
26786 symbol elements which shouldn't be word elements.
26787 (octave-font-lock-keywords, octave-beginning-of-defun)
26788 (octave-function-header-regexp): Adjust regexps accordingly.
26789 (octave-mode-map): Also use info-lookup-symbol for C-c C-h.
26790
26791 2011-04-25 Juanma Barranquero <lekktu@gmail.com>
26792
26793 * net/gnutls.el (gnutls-errorp): Declare before first use.
26794
26795 2011-04-24 Teodor Zlatanov <tzz@lifelogs.com>
26796
26797 * net/gnutls.el (gnutls-negotiate): Add hostname, verify-flags,
26798 verify-error, and verify-hostname-error parameters. Check whether
26799 default trustfile exists before going to use it. Add missing
26800 argument to gnutls-message-maybe call. Return value.
26801 Reported by Claudio Bley <claudio.bley@gmail.com>.
26802 (open-gnutls-stream): Add usage example.
26803
26804 * net/network-stream.el (network-stream-open-starttls): Give host
26805 parameter to `gnutls-negotiate'.
26806 (gnutls-negotiate): Adjust `gnutls-negotiate' declaration.
26807 * subr.el (shell-quote-argument): Escape correctly under Windows.
26808
26809 2011-04-24 Daniel Colascione <dan.colascione@gmail.com>
26810
26811 * progmodes/cc-engine.el (c-forward-decl-or-cast-1):
26812 Use correct match group (bug#8438).
26813
26814 2011-04-24 Chong Yidong <cyd@stupidchicken.com>
26815
26816 * emacs-lisp/package.el (package-built-in-p): Fix typo.
26817 (package-menu--generate): New arg specifying packages to show.
26818 (package-menu-refresh, package-menu-execute, list-packages):
26819 Callers changed.
26820 (package-show-package-list): New function, replacing deleted
26821 package--list-packages (renamed because it is non-internal).
26822
26823 * finder.el (finder-list-matches): Use package-show-package-list
26824 instead of deleted package--list-packages.
26825
26826 * vc/vc-annotate.el (vc-annotate-goto-line): New command.
26827 Based on a previous implementation by Juanma Barranquero (Bug#8366).
26828 (vc-annotate-mode-map): Bind it to RET.
26829
26830 2011-04-24 Uday S Reddy <u.s.reddy@cs.bham.ac.uk> (tiny change)
26831
26832 * progmodes/etags.el (next-file): Don't use set-buffer to change
26833 buffers (Bug#8478).
26834
26835 2011-04-24 Chong Yidong <cyd@stupidchicken.com>
26836
26837 * files.el (auto-mode-alist): Use js-mode for .json (Bug#8529).
26838
26839 * apropos.el (apropos-label-face): Avoid variable-pitch face.
26840 (apropos-accumulator): Doc fix.
26841 (apropos-function, apropos-macro, apropos-command)
26842 (apropos-variable, apropos-face, apropos-group, apropos-widget)
26843 (apropos-plist): Add face property.
26844 (apropos-symbols-internal): Fix indentation.
26845 (apropos-print): Simplify help, and recognize apropos-multi-type.
26846 (apropos-print-doc): Use button-type-get to extract the button's
26847 face property. Fill docstring (Bug#8352).
26848
26849 2011-04-23 Juanma Barranquero <lekktu@gmail.com>
26850
26851 * buff-menu.el (Buffer-menu--buffers): Fix typo in docstring (bug#8535).
26852
26853 * play/mpuz.el (mpuz-silent): Doc fix.
26854 (mpuz-mode-map): Use mapc.
26855 (mpuz-put-number-on-board): Rename parameter L to COLUMNS.
26856 (mpuz-letter-to-digit, mpuz-check-all-solved, mpuz-create-buffer):
26857 Fix typos in docstrings.
26858
26859 * play/doctor.el (doc$, doctor-$, doctor-read-print, doctor-read-token)
26860 (doctor-nounp, doctor-pronounp): Fix typos in docstrings.
26861
26862 * mouse-drag.el (mouse-drag-throw): Fix typo in docstring.
26863
26864 2011-04-23 Chong Yidong <cyd@stupidchicken.com>
26865
26866 * minibuffer.el (completion--do-completion): Avoid the "Next char
26867 not unique" prompt if icomplete-mode is enabled (Bug#5849).
26868
26869 * mouse.el (mouse-drag-mode-line-1): Make sure that if we push
26870 mouse-2 into unread-command-events, it is interpreted correctly.
26871
26872 * image-mode.el (image-type, image-mode-map, image-minor-mode-map)
26873 (image-toggle-display): Doc fix.
26874
26875 2011-04-23 Stephen Berman <stephen.berman@gmx.net>
26876
26877 * textmodes/page.el (what-page): Use line-number-at-pos to
26878 calculate line number (Bug#6825).
26879
26880 2011-04-22 Juanma Barranquero <lekktu@gmail.com>
26881
26882 * eshell/esh-mode.el (find-tag-interactive): Declare function.
26883 (eshell-find-tag): Remove `with-no-warnings', unneeded now.
26884 Pass argument NO-DEFAULT to `find-tag-interactive'.
26885
26886 2011-04-22 Juanma Barranquero <lekktu@gmail.com>
26887
26888 Lexical-binding cleanup.
26889
26890 * progmodes/ada-mode.el (ada-after-change-function, ada-loose-case-word)
26891 (ada-no-auto-case, ada-capitalize-word, ada-untab, ada-narrow-to-defun):
26892 * progmodes/ada-prj.el (ada-prj-initialize-values)
26893 (ada-prj-display-page, ada-prj-field-modified, ada-prj-display-help)
26894 (ada-prj-show-value):
26895 * progmodes/ada-xref.el (ada-find-any-references, ada-gdb-application):
26896 * progmodes/antlr-mode.el (antlr-with-displaying-help-buffer)
26897 (antlr-invalidate-context-cache, antlr-options-menu-filter)
26898 (antlr-language-option-extra, antlr-c++-mode-extra, antlr-run-tool):
26899 * progmodes/bug-reference.el (bug-reference-push-button):
26900 * progmodes/fortran.el (fortran-line-length):
26901 * progmodes/glasses.el (glasses-change):
26902 * progmodes/octave-mod.el (octave-fill-paragraph):
26903 * progmodes/python.el (python-mode, python-pdbtrack-track-stack-file)
26904 (python-pdbtrack-grub-for-buffer, python-sentinel):
26905 * progmodes/sql.el (sql-save-connection):
26906 * progmodes/tcl.el (tcl-indent-command, tcl-popup-menu):
26907 * progmodes/xscheme.el (xscheme-enter-debugger-mode):
26908 Mark unused parameters.
26909
26910 * progmodes/compile.el (compilation--flush-directory-cache)
26911 (compilation--flush-parse, compile-internal): Mark unused parameters.
26912 (compilation-buffer-name): Rename parameter MODE-NAME to NAME-OF-MODE.
26913 (compilation-next-error-function): Remove unused variable `timestamp'.
26914
26915 * progmodes/cpp.el (cpp-parse-close): Remove unused variable `begin'.
26916 (cpp-signal-read-only, cpp-grow-overlay): Mark unused parameters.
26917
26918 * progmodes/dcl-mode.el (dcl-end-of-command):
26919 Remove unused variable `start'.
26920 (dcl-calc-command-indent-multiple, dcl-calc-cont-indent-relative)
26921 (dcl-option-value-basic, dcl-option-value-offset)
26922 (dcl-option-value-margin-offset, dcl-option-value-comment-line):
26923 Mark unused parameters.
26924 (dcl-save-local-variable): Remove unused variable `val'.
26925 (mode): Declare.
26926
26927 * progmodes/delphi.el (delphi-save-state, delphi-after-change):
26928 Mark unused parameters.
26929 (delphi-ignore-changes): Move before first use.
26930 (delphi-charset-token-at): Remove unused variable `start'.
26931 (delphi-else-start): Remove unused variable `if-count'.
26932 (delphi-comment-block-start, delphi-comment-block-end):
26933 Remove unused variable `kind'.
26934 (delphi-indent-line): Remove unused variable `new-point'.
26935
26936 * progmodes/ebrowse.el (ebrowse-files-list)
26937 (ebrowse-list-of-matching-members, ebrowse-tags-list-members-in-file):
26938 Mark unused parameters. Don't quote `lambda'.
26939 (ebrowse-sort-tree-list, ebrowse-same-tree-member-buffer-list):
26940 Don't quote `lambda'.
26941 (ebrowse-revert-tree-buffer-from-file, ebrowse-tags-choose-class)
26942 (ebrowse-goto-visible-member/all-member-lists): Mark unused parameters.
26943 (ebrowse-create-tree-buffer): Rename parameter OBARRAY to CLASSES.
26944 (ebrowse-toggle-mark-at-point): Remove unused variable `pnt'.
26945 Use `ignore-errors'.
26946 (ebrowse-frozen-tree-buffer-name, ebrowse-find-source-file)
26947 (ebrowse-view/find-file-and-search-pattern)
26948 (ebrowse-view/find-member-declaration/definition):
26949 Rename parameter TAGS-FILE-NAME to TAGS-FILE.
26950 (ebrowse-find-class-declaration, ebrowse-view-class-declaration):
26951 Rename parameter PREFIX-ARG to PREFIX.
26952 (ebrowse-tags-read-name): Remove unused variables `start' and
26953 `member-info'.
26954 (ebrowse-display-member-buffer): Rename variable `tags-file-name'
26955 to `tags-file'.
26956
26957 * progmodes/etags.el (local-find-tag-hook): Declare.
26958 (tag-partial-file-name-match-p, tag-any-match-p, list-tags):
26959 Mark unused parameters.
26960
26961 * progmodes/executable.el (compilation-error-regexp-alist): Declare.
26962 (executable-interpret): Mark unused parameter.
26963
26964 * progmodes/flymake.el (flymake-process-sentinel)
26965 (flymake-after-change-function)
26966 (flymake-create-temp-with-folder-structure)
26967 (flymake-get-include-dirs-dot): Mark unused parameters.
26968 (flymake-safe-delete-directory): Remove unused variable `err'.
26969
26970 * progmodes/gdb-mi.el (speedbar-change-initial-expansion-list)
26971 (speedbar-timer-fn, speedbar-line-text)
26972 (speedbar-change-expand-button-char, speedbar-delete-subblock)
26973 (speedbar-center-buffer-smartly): Declare functions.
26974 (gdb-find-watch-expression): Remove unused variable `array'.
26975 (gdb-edit-value, gdb-gdb, gdb-ignored-notification, gdb-thread-created)
26976 (gdb-starting): Mark unused parameters.
26977 (gud-gdbmi-marker-filter): Remove unused variable `output-record'.
26978 (gdb-table-string): Remove unused variable `res'.
26979 (gdb-place-breakpoints): Remove unused variables `flag' and `bptno'.
26980 (gdb-disassembly-handler-custom): Remove unused variable `pos'.
26981 (gdb-display-buffer): Remove unused variable `cur-size'.
26982
26983 * progmodes/gud.el (gud-def): Use `defalias' instead of `defun' to
26984 allow lexical-binding compilation.
26985 (gud-expansion-speedbar-buttons, gud-gdb-goto-stackframe)
26986 (gud-dbx-massage-args, gud-xdb-massage-args, gud-perldb-massage-args)
26987 (gud-jdb-massage-args, gud-jdb-find-source, gud-find-class):
26988 Mark unused parameters.
26989 (gud-gdb-marker-filter): Remove unused variable `match'.
26990 (gud-find-class): Bind `syntax-symbol' and `syntax-point' to suitable
26991 lambda expressions and funcall them, instead of using `fset'.
26992
26993 * progmodes/hideif.el (hif-parse-if-exp): Rename parameter
26994 HIF-TOKEN-LIST to TOKEN-LIST and let-bind `hif-token-list'.
26995
26996 * progmodes/hideshow.el (hs-hide-block-at-point): Remove unused
26997 variable `header-beg'; use `let'.
26998
26999 * progmodes/icon.el (indent-icon-exp): Remove unused variables
27000 `restart', `last-sexp' and `at-do'.
27001
27002 * progmodes/js.el (js--debug): Mark unused parameter.
27003 (js--parse-state-at-point): Remove unused variable `bound'; use `let'.
27004 (js--splice-into-items): Remove unused variable `item'.
27005 (js--read-symbol, js--read-tab): Pass 1/-1 to `ido-mode', not t/nil.
27006
27007 * progmodes/make-mode.el (makefile-make-font-lock-keywords):
27008 Rename parameter FONT-LOCK-KEYWORDS to FL-KEYWORDS.
27009 (makefile-complete): Remove unused variable `try'.
27010 (makefile-fill-paragraph, makefile-match-function-end):
27011 Mark unused parameters.
27012
27013 * progmodes/octave-inf.el (inferior-octave-complete):
27014 Remove unused variable `proc'.
27015 (inferior-octave-output-digest): Mark unused parameter.
27016
27017 * progmodes/perl-mode.el (perl-calculate-indent):
27018 Remove unused variable `err'.
27019
27020 * progmodes/prolog.el (prolog-mode-keybindings-inferior)
27021 (prolog-indent-line): Mark unused parameters.
27022 (prolog-indent-line): Remove unused variable `beg'.
27023
27024 * progmodes/ps-mode.el (reporter-prompt-for-summary-p)
27025 (reporter-dont-compact-list): Declare.
27026
27027 * progmodes/sh-script.el (sh-font-lock-quoted-subshell):
27028 Remove unused variable `char'.
27029 (sh-debug): Mark unused parameter.
27030 (sh-get-indent-info): Remove unused variable `start'.
27031 (sh-calculate-indent): Remove unused variable `var'.
27032
27033 * progmodes/simula.el (simula-popup-menu): Mark unused parameter.
27034 (simula-electric-keyword): Remove unused variable `null'.
27035 (simula-search-backward, simula-search-forward): Remove unused
27036 variables `begin' and `end'.
27037
27038 * progmodes/vera-mode.el (vera-guess-basic-syntax):
27039 Remove unused variable `pos'.
27040 (vera-electric-tab, vera-comment-uncomment-region):
27041 Mark unused parameters.
27042 (vera-electric-tab): Rename parameter PREFIX-ARG to PREFIX.
27043
27044 2011-04-22 Chong Yidong <cyd@stupidchicken.com>
27045
27046 * emacs-lisp/package.el (package--builtins, package-alist)
27047 (package-load-descriptor, package-built-in-p, package-activate)
27048 (define-package, package-installed-p)
27049 (package-compute-transaction, package-buffer-info)
27050 (package--push): Doc fix. Distinguish more clearly between
27051 version strings and version lists.
27052
27053 2011-04-21 Juanma Barranquero <lekktu@gmail.com>
27054
27055 Lexical-binding cleanup.
27056
27057 * play/5x5.el (5x5-make-random-solution, 5x5-make-mutate-current)
27058 (5x5-make-mutate-best):
27059 * play/fortune.el (fortune-in-buffer):
27060 * play/gomoku.el (gomoku-init-display):
27061 * play/solitaire.el (solitaire, solitaire-do-check):
27062 * play/tetris.el (tetris-default-update-speed-function):
27063 Mark unused parameters.
27064
27065 * play/bubbles.el (bubbles-mode): Set `show-trailing-whitespace'.
27066 (bubbles--shift): Remove unused variable `char-org'.
27067 (bubbles--set-faces): Remove unused variable `fg-col'. Simplify.
27068 (bubbles--show-images): Remove unused variable `char'.
27069
27070 * play/decipher.el (decipher-keypress, decipher-alphabet-keypress)
27071 (decipher-get-undo, decipher-set-map, decipher-complete-alphabet)
27072 (decipher-resync, decipher-loop-with-breaks, decipher--analyze)
27073 (decipher-analyze-buffer): Use ?\s.
27074 (decipher-make-checkpoint): Remove unused variable `mapping'.
27075
27076 * play/doctor.el (doctor-doc): Rename parameter DOCTOR-SENT to SENT.
27077
27078 * play/gamegrid.el (gamegrid-add-score-with-update-game-score):
27079 Remove unused variable `result'; use `let'.
27080
27081 * play/gametree.el (gametree-current-layout, gametree-apply-layout):
27082 Rename parameter TOP-LEVEL to FROM-TOP-LEVEL; use `ignore-errors'.
27083 (gametree-children-shown-p, gametree-compute-reduced-score):
27084 Use `ignore-errors'.
27085
27086 * play/handwrite.el (ps-lpr-switches): Declare.
27087 (handwrite): Remove unused variables `pmin' and `lastp'.
27088
27089 * play/hanoi.el (hanoi-move-ring): Remove unused variable `total-steps'.
27090
27091 * play/landmark.el (landmark-init-display)
27092 (landmark-update-naught-weights): Mark unused parameters.
27093 (landmark-y): Remove unused variable `noise'. Simplify.
27094 (landmark-human-plays): Remove unused variable `score'.
27095
27096 * play/mpuz.el (mpuz-try-letter): Remove unused variable `message'.
27097 (mpuz-try-proposal): Remove unused variable `game'.
27098
27099 * play/zone.el (life-patterns): Declare.
27100
27101 2011-04-20 Juanma Barranquero <lekktu@gmail.com>
27102
27103 * vc/vc.el (ediff-vc-internal): Declare function.
27104
27105 2011-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
27106
27107 * shell.el: Use lexical-binding and std completion UI.
27108 (shell-filter-ctrl-a-ctrl-b): Work as a preoutput filter.
27109 (shell-mode): Put shell-filter-ctrl-a-ctrl-b on
27110 comint-preoutput-filter-functions rather than on
27111 comint-output-filter-functions.
27112 (shell-command-completion, shell--command-completion-data)
27113 (shell-filename-completion, shell-environment-variable-completion)
27114 (shell-c-a-p-replace-by-expanded-directory): New functions.
27115 (shell-dynamic-complete-functions, shell-dynamic-complete-command)
27116 (shell-dynamic-complete-filename, shell-replace-by-expanded-directory)
27117 (shell-dynamic-complete-environment-variable): Use them.
27118 (shell-dynamic-complete-as-environment-variable)
27119 (shell-dynamic-complete-as-command): Remove.
27120 (shell-match-partial-variable): Match past point.
27121 * comint.el: Clean up use of completion-at-point-functions.
27122 (comint-completion-at-point): New function.
27123 (comint-mode): Use it completion-at-point-functions.
27124 (comint-dynamic-complete): Make it obsolete.
27125 (comint-replace-by-expanded-history-before-point): Add dry-run arg.
27126 (comint-c-a-p-replace-by-expanded-history): New function.
27127 (comint-dynamic-complete-functions)
27128 (comint-replace-by-expanded-history): Use it.
27129 * minibuffer.el (completion-table-with-terminator): Allow dynamic
27130 termination strings. Try harder to avoid second try-completion.
27131 (completion-in-region-mode-map): Disable bindings that don't work yet.
27132
27133 * comint.el: Use lexical-binding. Require CL.
27134 (comint-dynamic-complete-functions): Use comint-filename-completion.
27135 (comint-completion-addsuffix): Tweak custom type.
27136 (comint-filename-completion, comint--common-suffix)
27137 (comint--common-quoted-suffix, comint--table-subvert)
27138 (comint--complete-file-name-data): New functions.
27139 (comint-dynamic-complete-as-filename, comint-dynamic-complete-filename)
27140 (comint-dynamic-list-filename-completions): Use them.
27141 (comint-dynamic-simple-complete): Make obsolete.
27142
27143 * minibuffer.el (completion-in-region-mode):
27144 Keep completion-in-region-mode--predicate global.
27145 (completion-in-region--postch):
27146 Assume completion-in-region-mode--predicate is not null.
27147
27148 * progmodes/flymake.el (flymake-start-syntax-check-process):
27149 Obey `dir'. Simplify.
27150
27151 * vc/vc.el (vc-version-ediff): Call ediff-vc-internal directly, since
27152 we're in VC after all.
27153
27154 2011-04-20 Christoph Scholtes <cschol2112@googlemail.com>
27155
27156 * vc/vc.el (vc-diff-build-argument-list-internal)
27157 (vc-version-ediff, vc-ediff): New commands.
27158 (vc-version-diff): Use vc-diff-build-argument-list-internal.
27159
27160 2011-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
27161
27162 * emacs-lisp/byte-opt.el (byte-decompile-bytecode-1): Remove dead code,
27163 add sanity check.
27164
27165 * obsolete/erc-hecomplete.el: Make obsolete.
27166 * obsolete/: Standardize obsolescence info in the header.
27167
27168 2011-04-20 Glenn Morris <rgm@gnu.org>
27169
27170 * calendar/solar.el (solar-horizontal-coordinates):
27171 Use the longitude argument rather than `calendar-longitude'.
27172 (solar-date-next-longitude): Remove unused locals.
27173
27174 2011-04-20 Vinicius Jose Latorre <viniciusjl@ig.com.br>
27175
27176 * whitespace.el: New version 13.2.1.
27177
27178 2011-04-20 felix <EmacsWiki> (tiny change)
27179
27180 * whitespace.el (global-whitespace-mode): Keep highlight when
27181 switching between major modes on a file.
27182
27183 2011-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
27184
27185 * progmodes/octave-mod.el (octave-in-comment-p, octave-in-string-p)
27186 (octave-not-in-string-or-comment-p): Use syntax-ppss so it works with
27187 multi-line comments as well.
27188
27189 2011-04-19 Juanma Barranquero <lekktu@gmail.com>
27190
27191 Lexical-binding cleanup.
27192
27193 * arc-mode.el (archive-mode-revert):
27194 * cmuscheme.el (scheme-interactively-start-process):
27195 * custom.el (custom-initialize-delay):
27196 * dnd.el (dnd-open-local-file, dnd-open-remote-url):
27197 * dos-w32.el (direct-print-region-helper, direct-print-region-function):
27198 * emacs-lock.el (emacs-lock-clear-sentinel):
27199 * ezimage.el (defezimage):
27200 * follow.el (follow-avoid-tail-recenter):
27201 * fringe.el (set-fringe-mode-1):
27202 * generic-x.el (bat-generic-mode-compile):
27203 * help-mode.el (help-info-variable, help-do-xref)
27204 (help-mode-revert-buffer):
27205 * help.el (view-emacs-todo):
27206 * iswitchb.el (iswitchb-completion-help):
27207 * jka-compr.el (jka-compr-make-temp-name, jka-compr-load):
27208 * kmacro.el (kmacro-cycle-ring-next, kmacro-cycle-ring-previous)
27209 (kmacro-delete-ring-head, kmacro-bind-to-key, kmacro-view-macro):
27210 * locate.el (locate-update):
27211 * longlines.el (longlines-encode-region)
27212 (longlines-after-change-function):
27213 * outline.el (outline-isearch-open-invisible):
27214 * ps-def.el (declare-function, charset-dimension, char-width)
27215 (encode-char):
27216 * ps-mule.el (ps-mule-plot-string):
27217 * recentf.el (recentf-make-menu-items, recentf-cancel-dialog)
27218 (recentf-edit-list-select, recentf-edit-list-validate)
27219 (recentf-open-files-action):
27220 * rect.el (delete-whitespace-rectangle-line)
27221 (rectangle-number-line-callback):
27222 * register.el (window-configuration-to-register)
27223 (frame-configuration-to-register):
27224 * scroll-bar.el (scroll-bar-mode, toggle-horizontal-scroll-bar):
27225 * select.el (xselect-convert-to-string, xselect-convert-to-length)
27226 (xselect-convert-to-targets, xselect-convert-to-delete)
27227 (xselect-convert-to-filename, xselect-convert-to-charpos)
27228 (xselect-convert-to-lineno, xselect-convert-to-colno)
27229 (xselect-convert-to-os, xselect-convert-to-host)
27230 (xselect-convert-to-user, xselect-convert-to-class)
27231 (xselect-convert-to-name, xselect-convert-to-integer)
27232 (xselect-convert-to-atom, xselect-convert-to-identity):
27233 * subr.el (declare, ignore, process-kill-without-query)
27234 (text-clone-maintain):
27235 * terminal.el (te-get-char, te-tic-sentinel):
27236 * tool-bar.el (tool-bar-make-keymap):
27237 * tooltip.el (tooltip-timeout, tooltip-hide, tooltip-help-tips):
27238 * type-break.el (type-break-mode, type-break-noninteractive-query):
27239 * view.el (View-back-to-mark):
27240 * wid-browse.el (widget-browse-action, widget-browse-widget)
27241 (widget-browse-widgets, widget-browse-sexp):
27242 * widget.el (define-widget-keywords):
27243 * xt-mouse.el (xterm-mouse-translate, turn-off-xterm-mouse-tracking):
27244 Mark unused parameters.
27245
27246 * align.el (align-adjust-col-for-rule): Mark unused parameter.
27247 (align-areas): Remove unused variable `look'.
27248 (align-region): Remove unused variables `real-end' and `pos-list'.
27249
27250 * apropos.el (apropos-score-doc): Remove unused variable `i'.
27251
27252 * bindings.el (mode-line-modified, mode-line-remote):
27253 Mark unused parameters.
27254 (mode-line-mule-info): Mark unused parameter; don't quote `lambda'.
27255
27256 * buff-menu.el (Buffer-menu-revert-function): Mark unused parameters.
27257 (Buffer-menu-mode): Mark unused parameter; don't quote `lambda'.
27258
27259 * comint.el (comint-history-isearch-pop-state)
27260 (comint-postoutput-scroll-to-bottom, comint-truncate-buffer)
27261 (comint-strip-ctrl-m, comint-read-noecho): Mark unused parameters.
27262 (comint-substitute-in-file-name): Doc fix.
27263
27264 * completion.el (cmpl-statistics-block): Mark unused parameter.
27265 (add-completions-from-tags-table, add-completions-from-lisp-buffer)
27266 (save-completions-to-file, load-completions-from-file):
27267 Remove unused local variable `e'.
27268
27269 * composite.el (compose-chars): Remove unused variable `len'.
27270 (lgstring-insert-glyph): Remove unused variable `g'.
27271 (compose-glyph-string): Remove unused variables `ascent',
27272 `descent', `lbearing' and `rbearing'.
27273 (compose-glyph-string-relative): Remove unused variables
27274 `lbearing', `rbearing' and `wadjust'.
27275 (compose-gstring-for-graphic): Remove unused variables `header',
27276 `wadjust', `xoff' and `yoff'. Use `let', not `let*'.
27277 (compose-gstring-for-terminal): Remove unused variables `header'
27278 and `nchars'. Use `let', not `let*'.
27279
27280 * cus-edit.el (Custom-set, Custom-save, custom-reset)
27281 (Custom-reset-current, Custom-reset-saved, Custom-reset-standard)
27282 (Custom-buffer-done, custom-buffer-create-internal)
27283 (custom-browse-visibility-action, custom-browse-group-tag-action)
27284 (custom-browse-variable-tag-action, custom-browse-face-tag-action)
27285 (widget-magic-mouse-down-action, custom-toggle-parent)
27286 (custom-add-parent-links, custom-toggle-hide-variable)
27287 (custom-face-edit-value-visibility-action, custom-face-edit-fix-value)
27288 (custom-toggle-hide-face, face, hook, custom-group-link-action)
27289 (custom-face-menu-create, custom-variable-menu-create, get)
27290 (custom-group-menu-create, Custom-no-edit): Mark unused parameters.
27291 (custom-reset-standard-save-and-update): Remove unused variable `value'.
27292 (customize-apropos): Remove unused variable `tests'.
27293 (custom-group-value-create): Remove unused variable `hidden-p'.
27294 (sort-fold-case): Declare.
27295
27296 * cus-theme.el (custom-reset-standard-faces-list)
27297 (custom-reset-standard-variables-list): Declare.
27298 (customize-create-theme, custom-theme-revert, custom-theme-write)
27299 (custom-theme-choose-mode, customize-themes, custom-theme-save):
27300 Mark unused parameters.
27301
27302 * dabbrev.el (dabbrev-completion): Remove unused variable `init'.
27303
27304 * delim-col.el (delimit-columns-max): Move defvar before first use.
27305
27306 * descr-text.el (describe-char-categories): Don't quote `lambda'.
27307 (describe-char): Don't quote `lambda'. Mark unused parameter.
27308
27309 * desktop.el (desktop-save-buffer-p): Mark unused parameter.
27310 (auto-insert): Declare.
27311 (desktop-restore-file-buffer): Rename desktop-* parameters;
27312 mark unused ones.
27313 (desktop-create-buffer): Rename desktop-* parameters and bind them.
27314 (desktop-buffer): Rename desktop-* parameters.
27315
27316 * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape): Declare.
27317 (dframe-reposition-frame-xemacs, dframe-help-echo)
27318 (dframe-hack-buffer-menu, dframe-set-timer, dframe-set-timer-internal):
27319 Mark unused parameters.
27320
27321 * dired-aux.el (backup-extract-version-start, overwrite-query)
27322 (overwrite-backup-query, rename-regexp-query)
27323 (rename-non-directory-query): Declare.
27324 (dired-shell-stuff-it, dired-do-create-files): Mark unused parameters.
27325 (dired-add-entry): Remove unused variable `orig-file-name'.
27326 (dired-copy-file-recursive): Remove unused variable `dirfailed'.
27327 Use parameter PRESERVE-TIME instead of accessing dynamic variable
27328 `dired-copy-preserve-time' directly.
27329 (dired-do-create-files-regexp): Remove unused variable `fn-count'.
27330 (dired-insert-subdir-newpos): Rename unused variable `pos'.
27331
27332 * dired-x.el (dired-omit-size-limit): Move defcustom before first use.
27333 (dired-virtual-revert, dired-make-relative-symlink):
27334 Mark unused parameters.
27335 (manual-program): Declare.
27336 (dired-x-hands-off-my-keys): Rename parameters of lambda expression.
27337 (inode, s, mode, nlink, uid, gid, size, time, name, sym): Declare them,
27338 wrapped in `with-no-warnings' to avoid replacing one warning by another.
27339
27340 * dirtrack.el (dirtrack): Remove unused variable `multi-line'.
27341
27342 * dos-fns.el (dos-8+3-filename): Remove unused variable `i'.
27343
27344 * echistory.el (electric-history-in-progress, Helper-return-blurb):
27345 Declare.
27346
27347 * edmacro.el (edmacro-finish-edit): Remove unused variable `kmacro'.
27348
27349 * electric.el (Electric-command-loop): Rename parameter
27350 INHIBIT-QUIT to INHIBIT-QUITTING and bind `inhibit-quit'.
27351
27352 * expand.el (expand-in-literal): Remove unused variable `here'.
27353
27354 * facemenu.el (facemenu-add-new-color):
27355 Remove unused variable `docstring'.
27356
27357 * faces.el (face-id, make-face-bold, make-face-unbold, make-face-italic)
27358 (make-face-unitalic, make-face-bold-italic): Mark unused parameters.
27359 (face-attr-construct): Mark unused parameter. Doc fix.
27360 (read-color): Remove unused variable `hex-string'.
27361
27362 * files.el (parse-colon-path): Rename argument CD-PATH to SEARCH-PATH.
27363 (locate-dominating-file): Remove unused vars `prev-file' and `user'.
27364 (remote-file-name-inhibit-cache, revert-buffer): Clean up docstrings.
27365 (display-buffer-other-frame): Remove unused variable `old-window'.
27366 (kill-buffer-hook): Declare.
27367 (insert-file-contents-literally, set-auto-mode, risky-local-variable-p):
27368 Mark unused parameters.
27369 (after-find-file): Pass 1 to `auto-save-mode', not t.
27370
27371 * files-x.el (auto-insert): Declare.
27372 (modify-file-local-variable-prop-line): Remove unused variable `val'.
27373
27374 * find-lisp.el (find-lisp-find-dired-internal): Remove unused
27375 variable `buf'. Mark unused parameter.
27376 (find-lisp-insert-directory): Mark unused parameter.
27377
27378 * format.el (format-decode-run-method): Mark unused parameter; doc fix.
27379 (format-encode-region): Remove unused variables `cur-buf' and `result'.
27380 (format-common-tail): Remove, unused.
27381 (format-deannotate-region): Remove unused variable `loc'.
27382 (format-annotate-region): Remove unused variable `p'.
27383 (format-annotate-single-property-change): Remove unused variables
27384 `default' and `tail'.
27385
27386 * forms.el (read-file-filter): Declare.
27387 (forms--iif-hook, forms--revert-buffer): Mark unused parameters.
27388
27389 * frame.el (frame-creation-function-alist): Mark unused parameter.
27390 (frame-geom-spec-cons): Pass FRAME to `frame-geom-value-cons'.
27391
27392 * hilit-chg.el (hilit-chg-cust-fix-changes-face-list, hilit-chg-clear):
27393 Remove unused parameters.
27394 (hilit-chg-set-face-on-change): Remove unused variable `beg-decr'.
27395 (highlight-compare-with-file): Remove unused variable `buf-b-read-only'.
27396
27397 * htmlfontify.el (hfy-default-footer, hfy-decor, hfy-invisible)
27398 (hfy-parse-tags-buffer, hfy-prepare-index-i, hfy-prepare-index)
27399 (hfy-prepare-tag-map): Mark unused parameters.
27400 (htmlfontify-buffer): Use `called-interactively-p'.
27401
27402 * ibuf-ext.el (ibuffer-do-kill-lines, ibuffer-jump-to-buffer)
27403 (ibuffer-copy-filename-as-kill, ibuffer-mark-on-buffer)
27404 (ibuffer-do-occur): Mark unused parameters.
27405 (ibuffer-forward-next-marked): Remove unused variable `curmark'.
27406 (ibuffer-diff-buffer-with-file-1): Remove unused variable `proc'.
27407
27408 * ibuffer.el: Don't quote `lambda'.
27409 (ibuffer-count-marked-lines, ibuffer-count-deletion-lines)
27410 (ibuffer-unmark-all, ibuffer-toggle-marks, ibuffer-redisplay-engine):
27411 Mark unused parameters.
27412
27413 * ido.el (ido-mode, ido-wide-find-dir-or-delete-dir)
27414 (ido-completing-read): Mark unused parameters.
27415 (ido-copy-current-word): Mark unused parameters;
27416 remove unused variable `name'.
27417 (ido-sort-merged-list): Remove unused parameter `dirs'.
27418
27419 * ielm.el (ielm-input-sender): Mark unused parameter.
27420 (ielm-string, ielm-form, ielm-pos, ielm-result, ielm-error-type)
27421 (ielm-output, ielm-wbuf, ielm-pmark): Declare.
27422 (ielm-eval-input): Rename argument IELM-STRING to INPUT-STRING to keep
27423 `ielm-string' as a dynamic variable accessible from the IELM prompt.
27424 Bind `ielm-string' to INPUT-STRING. Remove unused variable `err'.
27425
27426 * image-dired.el (image-dired-display-thumbs): Remove unused
27427 variables `curr-file' and `count'.
27428 (image-dired-remove-tag): Remove unused variable `start'.
27429 (image-dired-tag-files, image-dired-create-thumbs): Remove unused
27430 variable `curr-file'
27431 (image-dired-rotate-original): Remove unused variable `temp-file'.
27432 (image-dired-mouse-select-thumbnail, image-dired-mouse-toggle-mark):
27433 Remove unused variable `file'.
27434 (image-dired-gallery-generate): Remove unused variable `curr'.
27435 (image-dired-dired-edit-comment-and-tags): Mark unused parameters.
27436
27437 * indent.el (tab-to-tab-stop): Remove unused variable `opoint'.
27438
27439 * info-xref.el (info-xref-goto-node-p): Remove unused variable `err'.
27440
27441 * informat.el (texinfo-command-start, texinfo-command-end): Declare.
27442
27443 * isearch.el (minibuffer-history-symbol): Declare.
27444 (isearch-edit-string): Remove unused variable `err'.
27445 (isearch-message-prefix, isearch-message-suffix):
27446 Mark unused parameters.
27447
27448 * ls-lisp.el (ls-lisp-insert-directory): Remove unused variable `fil'.
27449
27450 * macros.el (insert-kbd-macro): Remove unused variable `mods'.
27451
27452 * makesum.el (double-column): Remove unused variable `cnt'.
27453
27454 * misearch.el (multi-isearch-pop-state): Mark unused parameter.
27455 (ido-ignore-item-temp-list): Declare.
27456
27457 * mouse-drag.el (mouse-drag-throw): Remove unused variables
27458 `mouse-delta', `window-last-row', `mouse-col-delta', `window-last-col',
27459 `adjusted-mouse-col-delta' and `adjusted-mouse-delta'.
27460 (mouse-drag-drag): Remove unused variables `mouse-delta' and
27461 `mouse-col-delta'.
27462
27463 * mouse-sel.el (mouse-extend-internal):
27464 Remove unused variable `orig-window-frame'.
27465
27466 * pcomplete.el (pcomplete-args, pcomplete-begins, pcomplete-last)
27467 (pcomplete-index, pcomplete-stub, pcomplete-seen, pcomplete-norm-func):
27468 Move declarations before first use.
27469 (pcomplete-opt): Mark unused parameters; doc fix.
27470
27471 * proced.el (proced-revert): Mark unused parameter.
27472 (proced-send-signal): Remove unused variable `err'.
27473
27474 * ps-print.el (ps-print-preprint-region, ps-print-preprint):
27475 Rename parameter PREFIX-ARG to ARG.
27476 (ps-basic-plot-string, ps-basic-plot-whitespace):
27477 Mark unused parameters.
27478
27479 * replace.el (replace-count): Define.
27480 (occur-revert-function): Mark unused parameters.
27481 (ido-ignore-item-temp-list, isearch-error, isearch-forward)
27482 (isearch-case-fold-search, isearch-string): Declare.
27483 (occur-engine): Rename parameter CASE-FOLD-SEARCH to CASE-FOLD and
27484 bind `case-fold-search'. Remove unused variables `beg' and `end',
27485 and simplify.
27486 (replace-eval-replacement): Rename parameter REPLACE-COUNT to
27487 COUNT and bind `replace-count'.
27488 (replace-loop-through-replacements): Rename parameter REPLACE-COUNT
27489 to COUNT.
27490
27491 * savehist.el (print-readably, print-string-length): Declare.
27492
27493 * shadowfile.el (shadow-expand-cluster-in-file-name):
27494 Remove unused variable `cluster'.
27495 (shadow-copy-file): Remove unused variable `i'.
27496 (shadow-noquery, shadow-clusters, shadow-site-cluster)
27497 (shadow-parse-fullname, shadow-parse-name, shadow-define-cluster)
27498 (shadow-define-literal-group, shadow-define-regexp-group)
27499 (shadow-make-group, shadow-shadows-of): Clean up docstrings.
27500
27501 * shell.el (shell-filter-ctrl-a-ctrl-b): Mark unused parameter.
27502 (shell): Use `called-interactively-p'.
27503 (shell-directory-tracker): Remove unused variable `chdir-failure'.
27504
27505 * simple.el (compilation-context-lines, comint-file-name-quote-list)
27506 (comint-file-name-chars, comint-delimiter-argument-list): Declare.
27507 (delete-backward-char): Remove unused variable `ocol'.
27508 (minibuffer-avoid-prompt, minibuffer-history-isearch-pop-state)
27509 (line-move-1, event-apply-alt-modifier, event-apply-super-modifier)
27510 (event-apply-hyper-modifier, event-apply-shift-modifier)
27511 (event-apply-control-modifier, event-apply-meta-modifier):
27512 Mark unused parameters.
27513 (undo-make-selective-list): Remove duplicate variable `undo-elt'.
27514 (normal-erase-is-backspace-mode): Remove unused variable `old-state'.
27515
27516 * speedbar.el (speedbar-ignored-directory-expressions)
27517 (speedbar-supported-extension-expressions, speedbar-directory-buttons)
27518 (speedbar-find-file, speedbar-dir-follow)
27519 (speedbar-directory-buttons-follow, speedbar-tag-find)
27520 (speedbar-buffer-buttons, speedbar-buffer-buttons-temp)
27521 (speedbar-buffers-line-directory, speedbar-buffer-click):
27522 Mark unused parameters.
27523 (speedbar-tag-file): Remove unused variable `mode'.
27524 (speedbar-buffers-tail-notes): Remove unused variable `mod'; simplify.
27525
27526 * strokes.el (strokes-decode-buffer): Remove unused variable `ext'.
27527
27528 * talk.el (talk): Remove unused variable `display'.
27529
27530 * tar-mode.el (tar-subfile-save-buffer): Remove unused variable `name'.
27531 (tar-write-region-annotate): Mark unused parameter.
27532
27533 * time.el (now, time, load, mail, 24-hours, hour, 12-hours, am-pm)
27534 (minutes, seconds, time-zone, day, year, monthname, month, dayname):
27535 Declare them, wrapped in `with-no-warnings' to avoid replacing one
27536 warning by another.
27537
27538 * time-stamp.el (time-stamp-string-preprocess):
27539 Remove unused variable `require-padding'.
27540
27541 * tree-widget.el (widget-glyph-enable): Declare.
27542 (tree-widget-action): Mark unused parameter.
27543
27544 * w32-fns.el (x-get-selection): Mark unused parameter.
27545 (autoload-make-program, generated-autoload-file): Declare.
27546
27547 * wdired.el (wdired-revert): Mark unused parameters.
27548 (wdired-xcase-word): Remove unused variable `err'.
27549
27550 * whitespace.el (whitespace-buffer-changed): Mark unused parameters.
27551 (whitespace-help-scroll): Remove unused variable `data-help'.
27552
27553 * wid-edit.el (widget-mouse-help, widget-overlay-inactive)
27554 (widget-image-insert, widget-after-change, default)
27555 (widget-default-format-handler, widget-default-notify)
27556 (widget-default-prompt-value, widget-info-link-action)
27557 (widget-url-link-action, widget-function-link-action)
27558 (widget-variable-link-action, widget-file-link-action)
27559 (widget-emacs-library-link-action, widget-emacs-commentary-link-action)
27560 (widget-field-prompt-internal, widget-field-action, widget-field-match)
27561 (widget-choice-mouse-down-action, toggle, widget-radio-button-notify)
27562 (widget-insert-button-action, widget-delete-button-action, visibility)
27563 (widget-documentation-link-action, widget-documentation-string-action)
27564 (widget-const-prompt-value, widget-regexp-match, symbol)
27565 (widget-coding-system-prompt-value)
27566 (widget-key-sequence-value-to-external, sexp)
27567 (widget-sexp-value-to-internal, character, vector, cons)
27568 (widget-choice-prompt-value, widget-boolean-prompt-value)
27569 (widget-color--choose-action): Mark unused parameters.
27570 (widget-item-match-inline, widget-choice-match-inline)
27571 (widget-checklist-match, widget-checklist-match-inline)
27572 (widget-group-match): Rename parameter VALUES to VALS.
27573 (widget-field-value-set): Remove unused variable `size'.
27574 (widget-color-action): Remove unused variables `value' and `start'.
27575
27576 * windmove.el (windmove-wrap-loc-for-movement): Remove unused
27577 variable `dir'. Doc fix.
27578 (windmove-find-other-window): Don't pass it.
27579
27580 * window.el (count-windows): Mark unused parameter.
27581 (bw-adjust-window): Remove unused variable `err'.
27582
27583 * woman.el (woman-file-name): Remove unused variable `default'.
27584 (woman-expand-directory-path): Rename parameters WOMAN-MANPATH and
27585 WOMAN-PATH to PATH-DIRS and PATH-REGEXPS, respectively.
27586 (global-font-lock-mode): Declare.
27587 (woman-decode-region): Mark unused parameter.
27588 (woman-get-tab-stop): Rename parameter TAB-STOP-LIST to TAB-STOPS.
27589
27590 * x-dnd.el (x-dnd-default-test-function, x-dnd-handle-old-kde)
27591 (x-dnd-handle-xdnd, x-dnd-handle-motif): Mark unused parameters.
27592 (x-dnd-handle-moz-url): Remove unused variable `title'.
27593 (x-dnd-handle-xdnd): Remove unused variables `x', `y' and `ret-action'.
27594
27595 * xml.el (xml-parse-tag, xml-parse-attlist):
27596 Remove unused variable `pos'.
27597
27598 2011-04-19 Glenn Morris <rgm@gnu.org>
27599
27600 * calendar/cal-tex.el (cal-tex-list-holidays, cal-tex-cursor-month)
27601 (cal-tex-cursor-week, cal-tex-cursor-week2, cal-tex-cursor-week-iso)
27602 (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
27603 (cal-tex-cursor-filofax-daily, cal-tex-mini-calendar)
27604 * calendar/cal-html.el (cal-html-insert-minical):
27605 * calendar/diary-lib.el (diary-list-entries-1, diary-list-entries)
27606 (calendar-mark-date-pattern):
27607 Prefix "unused" locals.
27608
27609 * calendar/cal-dst.el (dst-adjust-time): Remove never-implemented
27610 optional argument `style'.
27611
27612 * calendar/appt.el (appt-make-list):
27613 * calendar/cal-china.el (calendar-chinese-date-string):
27614 * calendar/cal-hebrew.el (calendar-hebrew-list-yahrzeits)
27615 (diary-hebrew-yahrzeit):
27616 * calendar/cal-tex.el (cal-tex-last-blank-p, cal-tex-cursor-week2):
27617 * calendar/calendar.el (calendar-generate-window):
27618 * calendar/time-date.el (time-to-days):
27619 Remove unused local variables.
27620
27621 2011-04-18 Chong Yidong <cyd@stupidchicken.com>
27622
27623 * emacs-lisp/tabulated-list.el (tabulated-list-mode): Use a custom
27624 glyphless-char-display table.
27625 (tabulated-list-glyphless-char-display): New var.
27626
27627 2011-04-18 Sam Steingold <sds@gnu.org>
27628
27629 * vc/add-log.el (change-log-font-lock-keywords): Add "Thanks to"
27630 to acknowledgments.
27631
27632 2011-04-17 Glenn Morris <rgm@gnu.org>
27633
27634 * calendar/diary-lib.el (diary-sexp-entry):
27635 * calendar/holidays.el (holiday-sexp):
27636 Set debug-on-error rather than the removed stack-trace-on-error.
27637
27638 2011-04-16 Glenn Morris <rgm@gnu.org>
27639
27640 * progmodes/f90.el: Use lexical-binding.
27641 (f90-get-correct-indent): Remove unnecessary local variable `cont'.
27642
27643 2011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
27644
27645 * mail/sendmail.el (mail-mode-map): Use completion-at-point.
27646 (mail-mode): Setup mailalias completion here instead.
27647 * mail/mailalias.el: Use lexical-binding.
27648 (pattern, mailalias-done): Declare dynamic.
27649 (mail-completion-at-point-function): New function, from mail-complete.
27650 (mail-complete): Use it.
27651 (mail-completion-expand): New function.
27652 (mail-get-names): Use it.
27653 (mail-directory, mail-directory-process, mail-directory-stream):
27654 Don't use `pattern' for lexically bound arg.
27655
27656 * emacs-lisp/lisp-mode.el (eval-defun-2): Use eval-sexp-add-defvars.
27657
27658 * htmlfontify.el (hfy-etags-cmd): Remove inoperant eval-and-compile.
27659 (hfy-e2x-etags-cmd, hfy-etags-cmd-alist-default)
27660 (hfy-etags-cmd-alist): Don't eval-and-compile any more.
27661
27662 * emacs-lisp/bytecomp.el (byte-temp-output-buffer-show)
27663 (byte-save-window-excursion, byte-temp-output-buffer-setup)
27664 (byte-interactive-p): Define them again, for use when inlining
27665 old code.
27666
27667 2011-04-15 Juanma Barranquero <lekktu@gmail.com>
27668
27669 * loadup.el: Use `string-to-number', not `string-to-int'.
27670
27671 2011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
27672
27673 * progmodes/gud.el (gud-gdb): Use completion-at-point instead of
27674 gud-gdb-complete-command.
27675 (gud-gdb-completions): New function, from gud-gdb-complete-command.
27676 (gud-gdb-completion-at-point): New function.
27677 (gud-gdb-completions): Remove.
27678
27679 2011-04-14 Michael Albinus <michael.albinus@gmx.de>
27680
27681 * net/tramp-sh.el (tramp-sh-handle-file-attributes): Handle the case
27682 when the scripts fail. Use `tramp-do-file-attributes-with-ls' then.
27683 (tramp-do-copy-or-rename-file-out-of-band): Do not check any longer
27684 whether `executable-find' is bound.
27685
27686 * net/tramp-smb.el (tramp-smb-handle-copy-file): Fix docstring.
27687
27688 2011-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
27689
27690 * minibuffer.el (completion-in-region-mode-predicate)
27691 (completion-in-region-mode--predicate): New vars.
27692 (completion-in-region, completion-in-region--postch)
27693 (completion-in-region-mode): Use them.
27694 (completion--capf-wrapper): Also return the hook function.
27695 (completion-at-point, completion-help-at-point):
27696 Adjust and provide a predicate.
27697
27698 Preserve arg names for advice of subr and lexical functions (bug#8457).
27699 * help-fns.el (help-function-arglist): Consolidate the subr and
27700 new-byte-code cases. Add argument `preserve-names' to extract names
27701 from the docstring when needed.
27702 * emacs-lisp/advice.el (ad-define-subr-args, ad-undefine-subr-args)
27703 (ad-subr-args-defined-p, ad-get-subr-args, ad-subr-arglist): Remove.
27704 (ad-arglist): Use help-function-arglist's new arg.
27705 (ad-definition-type): Use cond.
27706
27707 2011-04-13 Juanma Barranquero <lekktu@gmail.com>
27708
27709 * autorevert.el (auto-revert-handler):
27710 Bind `remote-file-name-inhibit-cache', not `tramp-cache-inhibit-cache',
27711 which was removed in 2010-10-02T13:21:43Z!michael.albinus@gmx.de.
27712 Don't quote lambda.
27713
27714 * image-mode.el (image-transform-set-scale):
27715 Fix change in 2011-04-09T20:28:01Z!cyd@stupidchicken.com.
27716
27717 2011-04-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
27718
27719 * net/network-stream.el (network-stream-open-starttls): Only do
27720 opportunistic STARTTLS upgrades if we have built-in GnuTLS support.
27721 Upgrades via gnutls-cli are too slow to be done opportunistically.
27722
27723 2011-04-12 Juanma Barranquero <lekktu@gmail.com>
27724
27725 * dframe.el (dframe-current-frame): Remove spurious quote.
27726
27727 2011-04-12 Glenn Morris <rgm@gnu.org>
27728
27729 * calendar/cal-tex.el (cal-tex-end-document):
27730 Try to automatically use latin1 input if needed.
27731
27732 * calendar/cal-hebrew.el (diary-hebrew-rosh-hodesh):
27733 Don't try to cons a mark onto an empty element.
27734
27735 2011-04-11 Leo Liu <sdl.web@gmail.com>
27736
27737 * ido.el (ido-buffer-internal): Allow method 'kill for virtual
27738 buffers.
27739 (ido-kill-buffer-at-head): Support killing virtual buffers.
27740
27741 2011-04-10 Chong Yidong <cyd@stupidchicken.com>
27742
27743 * minibuffer.el (completion-show-inline-help): New var.
27744 (completion--do-completion, minibuffer-complete)
27745 (minibuffer-force-complete, minibuffer-complete-word):
27746 Inhibit minibuffer messages if completion-show-inline-help is nil.
27747
27748 * icomplete.el (icomplete-mode): Bind completion-show-inline-help
27749 to avoid interference from inline help (Bug#5849).
27750
27751 2011-04-10 Leo Liu <sdl.web@gmail.com>
27752
27753 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
27754 Fix typo.
27755
27756 2011-04-09 Chong Yidong <cyd@stupidchicken.com>
27757
27758 * image-mode.el (image-toggle-display-image): Signal an error if
27759 not in Image mode.
27760 (image-transform-mode, image-transform-resize)
27761 (image-transform-set-rotation): Doc fix.
27762 (image-transform-set-resize): Delete.
27763 (image-transform-set-scale, image-transform-fit-to-height)
27764 (image-transform-fit-to-width): Handle image-toggle-display-image
27765 and image-transform-resize directly.
27766
27767 2011-04-08 Sho Nakatani <lay.sakura@gmail.com>
27768
27769 * doc-view.el (doc-view-fit-width-to-window)
27770 (doc-view-fit-height-to-window, doc-view-fit-page-to-window):
27771 New functions for fitting the shown image to the Emacs window size.
27772 (doc-view-mode-map): Add bindings for the new functions.
27773
27774 2011-04-08 Juanma Barranquero <lekktu@gmail.com>
27775
27776 * vc/vc-annotate.el (vc-annotate-show-log-revision-at-line):
27777 Fix typo in docstring.
27778
27779 2011-04-08 Eli Zaretskii <eliz@gnu.org>
27780
27781 * files.el (file-size-human-readable): Produce one digit after
27782 decimal, like "ls -lh" does.
27783
27784 * ls-lisp.el (ls-lisp-format-file-size): Allow for 7 characters in
27785 the file size representation.
27786
27787 * simple.el (list-processes): If async subprocesses are not
27788 available, error out with a clear error message.
27789
27790 2011-04-08 Chong Yidong <cyd@stupidchicken.com>
27791
27792 * help.el (help-form-show): New function, to be called from C.
27793 Put help-form output in a buffer named differently than *Help*.
27794
27795 2011-04-08 Eli Zaretskii <eliz@gnu.org>
27796
27797 * files.el (file-size-human-readable): New function.
27798
27799 * ls-lisp.el (ls-lisp-format-file-size): Use it, instead of
27800 computing the representation inline. Don't require `cl'.
27801
27802 2011-04-08 Glenn Morris <rgm@gnu.org>
27803
27804 * man.el (Man-page-header-regexp): Solaris < 2.6 no longer supported.
27805
27806 * net/browse-url.el (browse-url-firefox):
27807 Test system-type, not system-configuration.
27808
27809 * vc/log-edit.el (log-edit-empty-buffer-p): New function.
27810 (log-edit-insert-cvs-template, log-edit-insert-cvs-rcstemplate):
27811 Use log-edit-empty-buffer-p. (Bug#7598)
27812
27813 * net/rlogin.el (rlogin-process-connection-type): Simplify.
27814 (rlogin-mode-map): Initialize in the defvar.
27815 (rlogin): Use ignore-errors.
27816
27817 * replace.el (occur-mode-map): Some fixes for menu items.
27818
27819 2011-04-07 Aaron S. Hawley <aaron.s.hawley@gmail.com>
27820
27821 * play/morse.el (denato-region): Handle varying case. (Bug#8386)
27822
27823 2011-04-06 Chong Yidong <cyd@stupidchicken.com>
27824
27825 * emacs-lisp/cconv.el (cconv--analyse-use): Ignore "ignored" when
27826 issuing unused warnings.
27827
27828 * emacs-lisp/tabulated-list.el (tabulated-list-print): Use lambda
27829 macro directly.
27830
27831 * simple.el: Lisp reimplement of list-processes. Based on an
27832 earlier reimplementation by Leo Liu, but using tabulated-list.el.
27833 (process-menu-mode): New major mode.
27834 (list-processes--refresh, list-processes):
27835 (process-menu-visit-buffer): New functions.
27836
27837 * files.el (save-buffers-kill-emacs): Don't assume any return
27838 value of list-processes, which is undocumented anyway.
27839
27840 2011-04-06 Chong Yidong <cyd@stupidchicken.com>
27841
27842 * emacs-lisp/tabulated-list.el: New file.
27843
27844 * emacs-lisp/package.el: Use Tabulated List mode.
27845 (package-menu-mode-map): Inherit from tabulated-list-mode-map.
27846 (package-menu-mode): Derive from tabulated-list-mode. Set up the
27847 table format using Tabulated List mode variables.
27848 (package--push): New macro, replacing package-list-maybe-add.
27849 (package-menu--generate): Use package--push. Renamed from
27850 package--generate-package-list.
27851 (package-menu-refresh, list-packages): Use it.
27852 (package-menu--print-info): Rename from package-print-package.
27853 Return insertion data instead of inserting it directly.
27854 (package-menu-describe-package, package-menu-execute):
27855 Use tabulated-list-get-id.
27856 (package-menu-mark-delete, package-menu-mark-install)
27857 (package-menu-mark-unmark, package-menu-backup-unmark)
27858 (package-menu-mark-obsolete-for-deletion):
27859 Use tabulated-list-put-tag.
27860 (package--list-packages, package-menu-revert)
27861 (package-menu-get-package, package-menu-get-version)
27862 (package-menu-sort-by-column): Functions deleted.
27863 (package-menu-package-list, package-menu-sort-key): Vars deleted.
27864 (package-menu--status-predicate, package-menu--version-predicate)
27865 (package-menu--name-predicate)
27866 (package-menu--description-predicate): Handle arguments in the
27867 Tabulated List format.
27868 (package-list-packages-no-fetch): Call list-packages.
27869
27870 2011-04-06 Juanma Barranquero <lekktu@gmail.com>
27871
27872 * files.el (after-find-file-from-revert-buffer): Remove variable.
27873 (after-find-file): Don't bind it.
27874 (revert-buffer-in-progress-p): New variable.
27875 (revert-buffer): Bind it.
27876 Pass nil for `after-find-file-from-revert-buffer'.
27877
27878 * saveplace.el (save-place-find-file-hook): Use new variable
27879 `rever-buffer-in-progress-p', not `after-find-file-from-revert-buffer'.
27880
27881 2011-04-06 Glenn Morris <rgm@gnu.org>
27882
27883 * Makefile.in (AUTOGEN_VCS): New variable.
27884 (autoloads): Use $AUTOGEN_VCS.
27885
27886 * calendar/cal-move.el (calendar-scroll-toolkit-scroll): New function.
27887 * calendar/calendar.el (calendar-mode-map):
27888 Check for toolkit scroll bars. (Bug#8305)
27889
27890 2011-04-05 Chong Yidong <cyd@stupidchicken.com>
27891
27892 * minibuffer.el (completion-in-region--postch)
27893 (completion-in-region-mode): Remove unnecessary messages.
27894
27895 2011-04-05 Juanma Barranquero <lekktu@gmail.com>
27896
27897 * font-lock.el (font-lock-refresh-defaults):
27898 Don't bind `hi-lock--inhibit-font-lock-hook', removed in
27899 2010-10-09T04:09:19Z!cyd@stupidchicken.com and 2010-10-11T23:57:49Z!lekktu@gmail.com (2010-10-12).
27900
27901 * info.el (Info-directory-list, Info-read-node-name-2)
27902 (Info-split-parameter-string): Doc fixes.
27903 (Info-virtual-nodes): Reflow docstring.
27904 (Info-find-file, Info-directory-toc-nodes, Info-history-toc-nodes)
27905 (Info-apropos-toc-nodes, info-finder, Info-get-token)
27906 (Info-find-emacs-command-nodes, Info-speedbar-key-map):
27907 Fix typos in docstrings.
27908 (Info-revert-buffer-function, Info-search, Info-isearch-pop-state)
27909 (Info-speedbar-hierarchy-buttons, Info-speedbar-goto-node)
27910 (Info-speedbar-buttons, Info-desktop-buffer-misc-data)
27911 (Info-restore-desktop-buffer): Mark unused parameters.
27912 (Info-directory-find-file, Info-directory-find-node)
27913 (Info-history-find-file, Info-history-find-node, Info-toc-find-node)
27914 (Info-virtual-index-find-node, Info-apropos-find-file)
27915 (Info-apropos-find-node, Info-finder-find-file, Info-finder-find-node):
27916 Mark unused parameters; fix typos in docstrings.
27917 (Info-virtual-index): Remove unused local variable `nodename'.
27918
27919 2011-04-05 Deniz Dogan <deniz@dogan.se>
27920
27921 * net/rcirc.el: Update my e-mail address.
27922 (rcirc-mode-map): Remove M-o binding.
27923
27924 2011-04-05 Chong Yidong <cyd@stupidchicken.com>
27925
27926 * startup.el (command-line): Save the cursor's theme-face
27927 directly, instead of using face-override-spec.
27928
27929 * custom.el (load-theme): Minor optimization in assigning faces.
27930
27931 2011-04-04 Juanma Barranquero <lekktu@gmail.com>
27932
27933 * help-fns.el (describe-variable): Complete all variables having
27934 documentation, including keywords.
27935 http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00112.html
27936
27937 2011-04-04 Juanma Barranquero <lekktu@gmail.com>
27938
27939 Convert to lexical-binding.
27940
27941 * bs.el (bs-refresh, bs-sort-buffer-interns-are-last)
27942 (bs--get-marked-string, bs--get-modified-string)
27943 (bs--get-readonly-string, bs--get-size-string, bs--get-name)
27944 (bs--get-mode-name, bs--get-file-name): Mark unused arguments.
27945 (bs--configuration-name-for-prefix-arg): Rename argument PREFIX-ARG.
27946
27947 * ehelp.el (electric-help-execute-extended)
27948 (electric-help-ctrl-x-prefix):
27949 * hexl.el (hexl-revert-buffer-function):
27950 * linum.el (linum-after-change, linum-after-scroll):
27951 * emacs-lisp/re-builder.el (reb-auto-update): Mark unused arguments.
27952
27953 * help-fns.el (help-describe-category-set): Remove unused ERR variable.
27954
27955 2011-04-04 Daiki Ueno <ueno@unixuser.org>
27956
27957 * epa-dired.el:
27958 * epa-mail.el:
27959 * epa-hook.el:
27960 * epa-file.el:
27961 * epa.el:
27962 * epg.el: Use lexical binding.
27963
27964 2011-04-03 Chong Yidong <cyd@stupidchicken.com>
27965
27966 * dired-aux.el (dired-create-files): Add docstring (Bug#7970).
27967
27968 * textmodes/flyspell.el (flyspell-word): Recognize default
27969 dictionary case for flyspell-mark-duplications-exceptions.
27970 Use regexp matching for languages.
27971 (flyspell-mark-duplications-exceptions): Add "that" and "had" for
27972 default dictionary (Bug#7926).
27973
27974 2011-04-02 Chong Yidong <cyd@stupidchicken.com>
27975
27976 * emacs-lisp/package.el (package--with-work-buffer):
27977 Recognize https URLs.
27978
27979 * net/network-stream.el: Move from gnus/proto-stream.el.
27980 Change prefix to network-stream throughout.
27981 (open-protocol-stream): Merge into open-network-stream, leaving
27982 open-protocol-stream as an alias. Handle nil BUFFER args.
27983
27984 * subr.el (open-network-stream): Move to net/network-stream.el.
27985
27986 2011-04-02 Glenn Morris <rgm@gnu.org>
27987
27988 * find-dired.el (find-exec-terminator): New option.
27989 (find-ls-option): Test for -ls support.
27990 (find-ls-subdir-switches): Test for -b in find-ls-option.
27991 (find-dired, find-grep-dired): Doc fixes.
27992 (find-dired): Use find-exec-terminator.
27993
27994 * find-dired.el (find-ls-option, find-ls-subdir-switches)
27995 (find-grep-options): Do not autoload these defcustoms, remove purecopy.
27996 (find-name-arg): Remove purecopy.
27997
27998 * progmodes/grep.el (grep-find-use-xargs): Doc fix.
27999 (grep-compute-defaults): Check for `-exec COMMAND +' support.
28000 Set grep-find-use-xargs, grep-find-command, and grep-find-template
28001 accordingly. Don't add the null-device if not needed.
28002
28003 * files.el (save-some-buffers): Doc fix.
28004
28005 2011-04-02 Eli Zaretskii <eliz@gnu.org>
28006
28007 * makefile.w32-in (EMACS): Default to ../src/$(BLD)/emacs.exe.
28008
28009 2011-04-01 Juanma Barranquero <lekktu@gmail.com>
28010
28011 * progmodes/idlwave.el (idlwave-one-key-select, idlwave-list-abbrevs):
28012 Use `dolist' rather than `mapcar'.
28013
28014 2011-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
28015
28016 Add lexical binding.
28017
28018 * subr.el (apply-partially): Use new closures rather than CL.
28019 (--dolist-tail--, --dotimes-limit--): Don't declare dynamic.
28020 (dolist, dotimes): Use slightly different expansion for lexical code.
28021 (functionp): Move to C.
28022 (letrec): New macro.
28023 (with-wrapper-hook): Use it and apply-partially instead of CL.
28024 (eval-after-load): Preserve lexical-binding.
28025 (save-window-excursion, with-output-to-temp-buffer): Turn them
28026 into macros.
28027
28028 * simple.el (with-wrapper-hook, apply-partially): Move to subr.el.
28029
28030 * help-fns.el (help-split-fundoc): Return nil if there's nothing else
28031 than the arglist.
28032 (help-add-fundoc-usage): Don't add `Not documented'.
28033 (help-function-arglist): Handle closures, subroutines, and new
28034 byte-code-functions.
28035 (help-make-usage): Remove leading underscores.
28036 (describe-function-1): Handle closures.
28037 (describe-variable): Use special-variable-p for completion.
28038
28039 * files.el (lexical-binding): Declare safe.
28040
28041 * emacs-lisp/pcase.el: Don't use destructuring-bind.
28042 (pcase--memoize): Rename from pcase-memoize. Change weakness.
28043 (pcase): Add `let' pattern.
28044 Change memoization so it actually works.
28045 (pcase-mutually-exclusive-predicates): Add byte-code-function-p.
28046 (pcase--u1) <guard, pred>: Fix possible shadowing problem.
28047 <let>: New case.
28048
28049 * emacs-lisp/macroexp.el: Use lexical binding.
28050 (macroexpand-all-1): Check obsolete macros. Expand compiler-macros.
28051 Don't convert ' to #' without checking that it's indeed quoting
28052 a lambda.
28053
28054 * emacs-lisp/lisp-mode.el (eval-last-sexp-1):
28055 Use eval-sexp-add-defvars.
28056 (eval-sexp-add-defvars): New fun.
28057
28058 * emacs-lisp/float-sup.el (pi): Don't declare as dynamically bound.
28059
28060 * emacs-lisp/eieio.el (byte-compile-file-form-defmethod):
28061 Don't autoload.
28062 (eieio-defgeneric-form-primary-only-one): Use `byte-compile' rather
28063 than the internal `byte-compile-lambda'.
28064 (defmethod): Don't hide code under quotes.
28065 (eieio-defmethod): New `code' argument.
28066
28067 * emacs-lisp/eieio-comp.el: Remove.
28068
28069 * emacs-lisp/edebug.el (edebug-eval-defun)
28070 (edebug-eval-top-level-form): Use eval-sexp-add-defvars.
28071 (edebug-toggle): Avoid `eval'.
28072
28073 * emacs-lisp/disass.el (disassemble-internal): Handle new
28074 `closure' objects.
28075 (disassemble-1): Handle new byte codes.
28076
28077 * emacs-lisp/cl.el (pushnew): Silence warning.
28078
28079 * emacs-lisp/cl-macs.el (cl-byte-compile-block)
28080 (cl-byte-compile-throw): Remove.
28081 (cl-block-wrapper, cl-block-throw): Use compiler-macros instead.
28082
28083 * emacs-lisp/cl-extra.el (cl-macroexpand-all): Properly quote CL
28084 closures.
28085
28086 * emacs-lisp/cconv.el: New file.
28087
28088 * emacs-lisp/bytecomp.el: Use lexical binding instead of
28089 a "bytecomp-" prefix. Macroexpand everything as a separate phase.
28090 (byte-compile-initial-macro-environment):
28091 Handle declare-function here.
28092 (byte-compile--lexical-environment): New var.
28093 (byte-stack-ref, byte-stack-set, byte-discardN)
28094 (byte-discardN-preserve-tos): New lap codes.
28095 (byte-interactive-p): Don't use any more.
28096 (byte-compile-push-bytecodes, byte-compile-push-bytecode-const2):
28097 New macros.
28098 (byte-compile-lapcode): Use them and handle new lap codes.
28099 (byte-compile-obsolete): Remove.
28100 (byte-compile-arglist-signature): Handle new byte-code arg"lists".
28101 (byte-compile-arglist-warn): Check late def of inlinable funs.
28102 (byte-compile-cl-warn): Don't silence warnings for compiler-macros
28103 since they should have been expanded by now.
28104 (byte-compile--outbuffer): Rename from bytecomp-outbuffer.
28105 (byte-compile-from-buffer): Remove unused second arg.
28106 (byte-compile-preprocess): New function.
28107 (byte-compile-toplevel-file-form): New function to distinguish
28108 file-form calls from outside from file-form calls from hunk-handlers.
28109 (byte-compile-file-form): Simplify.
28110 (byte-compile-file-form-defsubst): Remove.
28111 (byte-compile-file-form-defmumble): Simplify now that
28112 byte-compile-lambda always returns a byte-code-function.
28113 (byte-compile): Preprocess.
28114 (byte-compile-byte-code-maker, byte-compile-byte-code-unmake):
28115 Remove, not used any more.
28116 (byte-compile-arglist-vars, byte-compile-make-lambda-lexenv)
28117 (byte-compile-make-args-desc): New funs.
28118 (byte-compile-lambda): Handle lexical functions. Always return
28119 a byte-code-function.
28120 (byte-compile-reserved-constants): New var, to make up room for
28121 closed-over variables.
28122 (byte-compile-constants-vector): Obey it.
28123 (byte-compile-top-level): New args `lexenv' and `reserved-csts'.
28124 (byte-compile-macroexpand-declare-function): New function.
28125 (byte-compile-form): Call byte-compile-unfold-bcf to inline immediate
28126 byte-code-functions.
28127 (byte-compile-form): Check obsolescence here.
28128 (byte-compile-inline-lapcode, byte-compile-unfold-bcf): New functions.
28129 (byte-compile-variable-ref): Remove.
28130 (byte-compile-dynamic-variable-op): New fun.
28131 (byte-compile-dynamic-variable-bind, byte-compile-variable-ref)
28132 (byte-compile-variable-set): New funs.
28133 (byte-compile-discard): Add 2 args.
28134 (byte-compile-stack-ref, byte-compile-stack-set)
28135 (byte-compile-make-closure, byte-compile-get-closed-var): New funs.
28136 (byte-compile-funarg, byte-compile-funarg-2): Remove, handled in
28137 macroexpand-all instead.
28138 (byte-compile-quote-form): Remove.
28139 (byte-compile-push-binding-init, byte-compile-not-lexical-var-p)
28140 (byte-compile-bind, byte-compile-unbind): New funs.
28141 (byte-compile-let): Handle let* and lexical binding.
28142 (byte-compile-let*): Remove.
28143 (byte-compile-catch, byte-compile-unwind-protect)
28144 (byte-compile-track-mouse, byte-compile-condition-case):
28145 Handle a new :fun-body form, used for lexical scoping.
28146 (byte-compile-save-window-excursion)
28147 (byte-compile-with-output-to-temp-buffer): Remove.
28148 (byte-compile-defun): Simplify.
28149 (byte-compile-stack-adjustment): New fun.
28150 (byte-compile-out): Use it.
28151 (byte-compile-refresh-preloaded): Don't reload byte-compiler files.
28152
28153 * emacs-lisp/byte-run.el (make-obsolete): Don't set the `byte-compile'
28154 handler any more.
28155
28156 * emacs-lisp/byte-opt.el: Use lexical binding.
28157 (byte-inline-lapcode): Remove (to bytecomp).
28158 (byte-compile-inline-expand): Pay attention to inlining to/from
28159 lexically bound code.
28160 (byte-compile-unfold-lambda): Don't handle byte-code-functions
28161 any more.
28162 (byte-optimize-form-code-walker): Don't handle save-window-excursion
28163 any more and don't call compiler-macros.
28164 (byte-compile-splice-in-already-compiled-code): Remove.
28165 (byte-code): Don't inline any more.
28166 (disassemble-offset): Receive `bytes' as argument rather than via
28167 dynamic scoping.
28168 (byte-compile-tag-number): Declare before first use.
28169 (byte-decompile-bytecode-1): Handle new byte-codes, don't change
28170 `return' even if make-spliceable.
28171 (byte-compile-side-effect-and-error-free-ops): Add stack-ref, remove
28172 obsolete interactive-p.
28173 (byte-optimize-lapcode): Optimize new lap-codes.
28174 Don't trip up on new form of `byte-constant' lap code.
28175
28176 * emacs-lisp/autoload.el (make-autoload): Don't burp on trivial macros.
28177
28178 * emacs-lisp/advice.el (ad-arglist): Use help-function-arglist.
28179
28180 * custom.el (custom-initialize-default, custom-declare-variable):
28181 Use `defvar'.
28182
28183 * Makefile.in (BIG_STACK_DEPTH, BIG_STACK_OPTS, BYTE_COMPILE_FLAGS):
28184 New variables.
28185 (compile-onefile, .el.elc, compile-calc, recompile): Use them.
28186 (COMPILE_FIRST): Add macroexp and cconv.
28187 * makefile.w32-in: Mirror changes in Makefile.in.
28188
28189 * vc/cvs-status.el:
28190 * vc/diff-mode.el:
28191 * vc/log-edit.el:
28192 * vc/log-view.el:
28193 * vc/smerge-mode.el:
28194 * textmodes/bibtex-style.el:
28195 * textmodes/css-mode.el:
28196 * startup.el:
28197 * uniquify.el:
28198 * minibuffer.el:
28199 * newcomment.el:
28200 * reveal.el:
28201 * server.el:
28202 * mpc.el:
28203 * emacs-lisp/smie.el:
28204 * doc-view.el:
28205 * dired.el:
28206 * abbrev.el: Use lexical binding.
28207
28208 2011-04-01 Eli Zaretskii <eliz@gnu.org>
28209
28210 * info.el (info-display-manual): New function.
28211
28212 2011-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
28213
28214 * loadup.el: Load minibuffer after loaddefs, to use define-minor-mode.
28215
28216 2011-03-31 Tassilo Horn <tassilo@member.fsf.org>
28217
28218 * net/rcirc.el (rcirc-handler-001): Only authenticate, if there's
28219 an entry for that server in rcirc-authinfo. (Bug#8385)
28220
28221 2011-03-31 Glenn Morris <rgm@gnu.org>
28222
28223 * progmodes/f90.el (f90-find-tag-default): Handle multiple `%'.
28224
28225 * generic-x.el (etc-fstab-generic-mode): Add ext4, sysfs keywords.
28226
28227 2011-03-30 Christoph Scholtes <cschol2112@googlemail.com>
28228
28229 * progmodes/python.el (python-default-interpreter)
28230 (python-python-command-args, python-jython-command-args)
28231 (python-which-shell, python-which-args, python-which-bufname)
28232 (python-file-queue, python-comint-output-filter-function)
28233 (python-toggle-shells, python-shell): Remove obsolete defcustoms,
28234 variables and functions.
28235
28236 2011-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
28237
28238 * minibuffer.el (completion-table-dynamic): Optimize `boundaries'.
28239 (completion-in-region-mode): New minor mode.
28240 (completion-in-region): Use it.
28241 (completion-in-region--data, completion-in-region-mode-map): New vars.
28242 (completion-in-region--postch): New function.
28243 (completion--capf-misbehave-funs, completion--capf-safe-funs):
28244 New vars.
28245 (completion--capf-wrapper): New function.
28246 (completion-at-point): Use it to track well-behavedness of
28247 hook functions.
28248 (completion-help-at-point): New command.
28249
28250 2011-03-30 Jason Merrill <jason@redhat.com> (tiny change)
28251
28252 * vc/add-log.el (add-change-log-entry): Don't use whitespace
28253 syntax class to search for whitespace on a single line
28254 (Message-ID: <4D938140.4030905@redhat.com>).
28255
28256 2011-03-30 Leo Liu <sdl.web@gmail.com>
28257
28258 * abbrev.el (abbrev-edit-save-to-file, abbrev-edit-save-buffer):
28259 New commands.
28260 (edit-abbrevs-map): Bind them here.
28261 (write-abbrev-file): New optinal arg VERBOSE. (Bug#5937)
28262
28263 2011-03-29 Ken Manheimer <ken.manheimer@gmail.com>
28264
28265 * allout.el (allout-hide-by-annotation, allout-flag-region):
28266 Reduce possibility of overlay leakage by making them volatile.
28267
28268 * allout-widgets.el (allout-widgets-tally): Define as nil so the
28269 hash is not shared between buffers. Mode initialization is
28270 responsible for giving it a useful starting value.
28271 (allout-item-span): Reduce possibility of overlay leakage by
28272 making them volatile.
28273 (allout-widgets-count-buttons-in-region): Add diagnostic function
28274 for tracking down button overlay leaks.
28275
28276 2011-03-29 Leo Liu <sdl.web@gmail.com>
28277
28278 * ido.el (ido-read-internal): Use the default history var
28279 minibuffer-history if no HISTORY is specified.
28280
28281 2011-03-28 Brian T. Sniffen <bsniffen@akamai.com> (tiny change)
28282
28283 * net/imap.el (imap-shell-open, imap-process-connection-type):
28284 Use imap-process-connection-type for 'shell' streams as well as
28285 Kerberos, SSL, other subprocesses.
28286
28287 2011-03-28 Leo Liu <sdl.web@gmail.com>
28288
28289 * abbrev.el (abbrev-table-empty-p): New function.
28290 (prepare-abbrev-list-buffer): Place empty abbrev tables after
28291 nonempty ones. (Bug#5937)
28292
28293 2011-03-27 Jan Djärv <jan.h.d@swipnet.se>
28294
28295 * cus-start.el (all): Add boolean ns-auto-hide-menu-bar.
28296
28297 2011-03-27 Leo Liu <sdl.web@gmail.com>
28298
28299 * ansi-color.el (ansi-color-names-vector): Allow cons cell value
28300 for foreground and background colors.
28301 (ansi-color-make-color-map): Adapt.
28302
28303 2011-03-25 Leo Liu <sdl.web@gmail.com>
28304
28305 * midnight.el (midnight-time-float): Remove. Note it calculates
28306 the microsecond component incorrectly and seconds-to-time does the
28307 same job.
28308 Remove redundant (require 'timer).
28309
28310 * ido.el (ido-read-internal): Simplify with read-from-minibuffer.
28311 (ido-completions): Remove unused arguments. (Bug#8329)
28312
28313 2011-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
28314
28315 * minibuffer.el (completion--flush-all-sorted-completions):
28316 Remove itself from hook.
28317 (completion-at-point): Let the functions perform the completion
28318 immediately and return nil or t.
28319 * comint.el (comint-dynamic-complete-functions): Now identical to
28320 completion-at-point-functions.
28321 (comint-dynamic-list-input-ring): Remove unused var `index'.
28322 (comint--match-partial-filename, comint--unquote&expand-filename):
28323 New funs, split from comint-match-partial-filename.
28324 (comint-dynamic-complete): Use completion-at-point.
28325 (comint-dynamic-complete-filename): Use comint--match-partial-filename.
28326
28327 2011-03-24 Drew Adams <drew.adams@oracle.com>
28328
28329 * thingatpt.el: Support `defun'.
28330
28331 2011-03-23 Leo Liu <sdl.web@gmail.com>
28332
28333 * abbrevlist.el: Move to obsolete/abbrevlist.el.
28334
28335 * help-mode.el (help-mode-finish): Tweak regexp.
28336
28337 2011-03-23 Glenn Morris <rgm@gnu.org>
28338
28339 * eshell/esh-opt.el (eshell-eval-using-options):
28340 Do not bind unused local variable `eshell-option-stub'.
28341
28342 * progmodes/gdb-mi.el (gdb): Fix typo in previous change.
28343
28344 2011-03-22 Juanma Barranquero <lekktu@gmail.com>
28345
28346 * emacs-lisp/derived.el (define-derived-mode): Wrap declaration of
28347 keymap variable in `with-no-warnings' to avoid a warning when the
28348 keymap has been already `defconst'ed.
28349
28350 2011-03-22 Leo Liu <sdl.web@gmail.com>
28351
28352 * abbrev.el (write-abbrev-file): Use utf-8 for writing if it can
28353 encode all chars in abbrevs; otherwise use emacs-mule or
28354 utf-8-emacs. (Bug#8308)
28355
28356 2011-03-22 Juanma Barranquero <lekktu@gmail.com>
28357
28358 * simple.el (backward-delete-char-untabify):
28359 Avoid warning about using `delete-backward-char'.
28360
28361 * image.el (image-type-file-name-regexps): Make it variable.
28362 `imagemagick-register-types' modifies it, and the user may want
28363 to add new extensions for known image types.
28364 (imagemagick-register-types): Throw error if not using ImageMagick.
28365
28366 2011-03-22 Leo Liu <sdl.web@gmail.com>
28367
28368 * net/rcirc.el (rcirc-completion-at-point): Return nil if point is
28369 located before rcirc-prompt-end-marker.
28370 (rcirc-complete): Error if point is not after rcirc prompt.
28371 Handle the case when table is nil.
28372 (rcirc-user-authenticated): Define to fix compiler warning.
28373
28374 2011-03-22 Chong Yidong <cyd@stupidchicken.com>
28375
28376 * custom.el (custom--inhibit-theme-enable): Make it affect only
28377 custom-theme-set-variables and custom-theme-set-faces.
28378 (provide-theme): Ignore custom--inhibit-theme-enable.
28379 (load-theme): Enable the theme explicitly if NO-ENABLE is non-nil.
28380 (custom-enabling-themes): Delete variable.
28381 (enable-theme): Accept only loaded themes as arguments.
28382 Ignore the special custom-enabled-themes variable.
28383 (custom-enabled-themes): Forbid themes from setting this.
28384 Eliminate use of custom-enabling-themes.
28385 (custom-push-theme): Quote "changed" custom var entry.
28386
28387 2011-03-21 Leo Liu <sdl.web@gmail.com>
28388
28389 * ido.el (ido-read-internal): Add ido-selected to history instead
28390 of user input.
28391
28392 2011-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
28393
28394 * subr.el (deferred-action-list, deferred-action-function):
28395 Mark obsolete.
28396
28397 2011-03-21 Leo Liu <sdl.web@gmail.com>
28398
28399 * vc/log-view.el: Remove (require 'wid-edit), not needed after the
28400 change on 2011-02-13 (bug#8309).
28401
28402 * minibuffer.el (read-file-name-function): Change default value.
28403 (read-file-name--defaults): Rename from read-file-name-defaults.
28404 (read-file-name-default): Rename from read-file-name.
28405 (read-file-name): Call read-file-name-function.
28406
28407 2011-03-21 Glenn Morris <rgm@gnu.org>
28408
28409 * eshell/esh-opt.el (eshell-eval-using-options, eshell-process-args):
28410 Doc fixes.
28411
28412 2011-03-21 Chong Yidong <cyd@stupidchicken.com>
28413
28414 * cus-theme.el: Add missing provide statement.
28415 (customize-create-theme): Extract theme value correctly.
28416 (custom-theme-visit-theme): Autoload.
28417 (customize-create-theme): Prompt before inserting default faces.
28418
28419 2011-03-20 Jay Belanger <jay.p.belanger@gmail.com>
28420
28421 * calc/calc-menu.el (calc-units-menu): Add entries for logarithmic
28422 units and musical notes.
28423
28424 2011-03-20 Leo Liu <sdl.web@gmail.com>
28425
28426 * ido.el (ido-read-internal): Use completing-read-default.
28427 (ido-completing-read): Fix compatibility with completing-read.
28428
28429 2011-03-20 Christian Ohler <ohler@gnu.org>
28430
28431 * emacs-lisp/ert.el (ert-run-tests-batch): Remove unused variable.
28432 (ert-delete-all-tests): Use `called-interactively-p' rather than
28433 `interactive-p'.
28434 (ert--make-xrefs-region): Respect END.
28435
28436 2011-03-19 Chong Yidong <cyd@stupidchicken.com>
28437
28438 * dired-aux.el (dired-create-directory): Signal an error if the
28439 directory already exists (Bug#8246).
28440
28441 * facemenu.el (list-colors-display): Call list-faces-display
28442 inside with-help-window.
28443 (list-colors-print): Use display property to align the final
28444 column, instead of checking window-width.
28445
28446 2011-03-19 Eli Zaretskii <eliz@gnu.org>
28447
28448 * vc/emerge.el (emerge-metachars): Separate value for ms-dos and
28449 windows-nt systems.
28450 (emerge-protect-metachars): Quote correctly for ms-dos and
28451 windows-nt systems.
28452
28453 2011-03-19 Ralph Schleicher <rs@ralph-schleicher.de>
28454
28455 * info.el (info-initialize): Replace all uses of `:' with
28456 path-separator for compatibility with non-Unix systems.
28457 Cache quoting of path-separator. (Bug#8258)
28458
28459 2011-03-19 Juanma Barranquero <lekktu@gmail.com>
28460
28461 * avoid.el (mouse-avoidance-mode, mouse-avoidance-nudge-dist)
28462 (mouse-avoidance-threshold, mouse-avoidance-banish-destination)
28463 (mouse-avoidance-mode): Fix typos in docstrings.
28464
28465 2011-03-19 Chong Yidong <cyd@stupidchicken.com>
28466
28467 * startup.el (package-subdirectory-regexp): Move from package.el.
28468 Omit \\` and \\', and let callers add them.
28469
28470 * emacs-lisp/package.el (package-strip-version)
28471 (package-load-all-descriptors): Add \\` and \\' to
28472 package-subdirectory-regexp before using it.
28473 (package-untar-buffer): New arg DIR; ensure that file untars only
28474 into this expected directory. Remove superfluous delete-region.
28475 (package-unpack): Caller changed.
28476 (package-tar-file-info): Use package-subdirectory-regexp.
28477
28478 2011-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
28479
28480 * vc/diff-mode.el (diff-mode-map): Shadow problematic bindings from
28481 diff-mode-shared-map (bug#8284).
28482 (diff-mode-shared-map): Re-introduce some bindings that were problematic.
28483
28484 2011-03-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
28485
28486 * calendar/time-date.el (format-seconds): Use assoc instead of
28487 assoc-string, since assoc-string doesn't exist in XEmacs.
28488
28489 2011-03-17 Juanma Barranquero <lekktu@gmail.com>
28490
28491 * custom.el (custom-known-themes): Reflow docstring.
28492 (custom-theme-load-path): Fix typo in docstring.
28493 (load-theme): Fix typo in error message.
28494 (custom-available-themes, custom-variable-theme-value):
28495 Use `let', not `let*'.
28496
28497 2011-03-17 Jay Belanger <jay.p.belanger@gmail.com>
28498
28499 * calc/README: Mention inclusion of musical notes.
28500
28501 * calc/calc-units.el (calc-lu-quant): Rename from
28502 `calc-logunits-quantity'.
28503 (calcFunc-lupquant): Rename from `calcFunc-powerquant'.
28504 (calcFunc-lufquant): Rename from `calcFunc-fieldquant'.
28505 (calc-db): Rename from `calc-dblevel'.
28506 (calcFunc-dbpower): Rename from `calcFunc-dbpowerlevel'.
28507 (calcFunc-dbfield): Rename from `calcFunc-dbfieldlevel'.
28508 (calc-np): Rename from `calc-nplevel'.
28509 (calcFunc-nppower): Rename from `calcFunc-nppowerlevel'.
28510 (calcFunc-npfield): Rename from `calcFunc-npfieldlevel'.
28511 (calc-lu-plus): Rename from `calc-logunits-add'.
28512 (calcFunc-lupadd): Rename from `calcFunc-lupoweradd'.
28513 (calcFunc-lufadd): Rename from `calcFunc-lufieldadd'.
28514 (calc-lu-minus): Rename from `calc-logunits-sub'.
28515 (calcFunc-lupsub): Rename from `calcFunc-lupowersub'.
28516 (calcFunc-lufsub): Rename from `calcFunc-lufieldsub'.
28517 (calc-lu-times): Rename from `calc-logunits-mul'.
28518 (calcFunc-lupmul): Rename from `calcFunc-lupowermul'.
28519 (calcFunc-lufmul): Rename from `calcFunc-lufieldmul'.
28520 (calc-lu-divide): Rename from `calc-logunits-div'.
28521 (calcFunc-lupdiv): Rename from `calcFunc-lupowerdiv'.
28522 (calcFunc-lufdiv): Rename from `calcFunc-lufielddiv'.
28523
28524 * calc/calc-ext.el (calc-init-extensions): Update the names of the
28525 functions being autoloaded.
28526
28527 * calc/calc.el (calc-lu-power-reference): Rename from
28528 `calc-logunits-power-reference'.
28529 (calc-lu-field-reference): Rename from
28530 `calc-logunits-field-reference'.
28531
28532 * calc/calc-help.el (calc-l-prefix-help):
28533 Mention musical note functions.
28534
28535 2011-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
28536
28537 * minibuffer.el (completion-all-sorted-completions):
28538 Use :completion-cycle-penalty text property if present.
28539
28540 2011-03-16 Ken Manheimer <ken.manheimer@gmail.com>
28541
28542 * allout.el (allout-yank-processing): Adjust for new rebulleting
28543 regime so bullet being yanked is used without prompting the user
28544 for a choice.
28545
28546 2011-03-16 Juanma Barranquero <lekktu@gmail.com>
28547
28548 * startup.el (command-line): Warn the user that _emacs is deprecated.
28549
28550 2011-03-16 Juanma Barranquero <lekktu@gmail.com>
28551
28552 * progmodes/delphi.el (delphi-search-path, delphi-indent-level)
28553 (delphi-verbose, delphi-comment-face, delphi-string-face)
28554 (delphi-keyword-face, delphi-ignore-changes, delphi-indent-line)
28555 (delphi-mode-abbrev-table, delphi-debug-buffer, delphi-tab)
28556 (delphi-find-unit, delphi-find-current-xdef, delphi-fill-comment)
28557 (delphi-new-comment-line, delphi-font-lock-defaults)
28558 (delphi-debug-mode-map, delphi-mode-syntax-table, delphi-mode):
28559 Fix typos in docstrings.
28560
28561 2011-03-15 Ken Manheimer <ken.manheimer@gmail.com>
28562
28563 * allout.el (allout-make-topic-prefix, allout-rebullet-heading):
28564 Invert the roles of character and string values for INSTEAD, so a
28565 string is used for the more common case of a defaulting prompt.
28566
28567 2011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
28568
28569 * progmodes/ruby-mode.el (ruby-backward-sexp):
28570 * progmodes/ebrowse.el (ebrowse-draw-file-member-info):
28571 * play/gamegrid.el (gamegrid-make-face):
28572 * play/bubbles.el (bubbles--grid-width, bubbles--grid-height)
28573 (bubbles--colors, bubbles--shift-mode, bubbles--initialize-images):
28574 * notifications.el (notifications-notify):
28575 * net/xesam.el (xesam-search-engines):
28576 * net/quickurl.el (quickurl-list-insert):
28577 * vc/vc-hg.el (vc-hg-dir-printer): Fix use of case.
28578
28579 2011-03-15 Chong Yidong <cyd@stupidchicken.com>
28580
28581 * startup.el (command-line): Update package subdirectory regexp.
28582
28583 2011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
28584
28585 * allout.el (allout-abbreviate-flattened-numbering)
28586 (allout-mode-deactivate-hook): Fix up obsolescence "date".
28587
28588 * subr.el (read-char-choice): Only show the cursor after the prompt,
28589 not after the answer.
28590
28591 2011-03-15 Kevin Ryde <user42@zip.com.au>
28592
28593 * help-fns.el (variable-at-point): Skip leading quotes, if any
28594 (bug#8253).
28595
28596 2011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
28597
28598 * emacs-lisp/bytecomp.el (byte-compile-save-excursion): Change the
28599 warning message.
28600
28601 2011-03-14 Michael Albinus <michael.albinus@gmx.de>
28602
28603 * shell.el (shell): When called interactively, offer to change the
28604 shell file name on remote hosts.
28605
28606 2011-03-13 Teodor Zlatanov <tzz@lifelogs.com>
28607
28608 * net/ldap.el (ldap-search-internal): Add `auth-source-search'
28609 integration for LDAP parameters. The host, base, user or binddn,
28610 and secret tokens can be specified in a netrc file, for instance.
28611 This is optional because an `auth-source' parameter must be
28612 specified in the search attributes.
28613
28614 2011-03-13 Juanma Barranquero <lekktu@gmail.com>
28615
28616 * help.el (describe-mode): Link to the mode's definition (bug#8185).
28617
28618 2011-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
28619
28620 * ebuff-menu.el (electric-buffer-menu-mode-map): Move initialization
28621 into declaration. Remove redundant and harmful binding.
28622
28623 2011-03-12 Eli Zaretskii <eliz@gnu.org>
28624
28625 * files.el (file-ownership-preserved-p): Pass `integer' as an
28626 explicit 2nd argument to `file-attributes'. If the file's owner
28627 is the Administrators group on Windows, and the current user is
28628 Administrator, consider that a match.
28629
28630 * server.el (server-ensure-safe-dir): Consider server directory
28631 safe on MS-Windows if its owner is the Administrators group while
28632 the current Emacs user is Administrator. Use `=' to compare
28633 numerical UIDs, since they could be integers or floats.
28634
28635 2011-03-12 Juanma Barranquero <lekktu@gmail.com>
28636
28637 * vc/vc-bzr.el (vc-bzr-state): Handle bzr 2.3.0 (follow-up to bug#8170).
28638
28639 2011-03-12 Michael Albinus <michael.albinus@gmx.de>
28640
28641 Sync with Tramp 2.2.1.
28642
28643 * net/tramp-sh.el (tramp-methods): Exchange "%k" marker with options.
28644
28645 * net/trampver.el: Update release number.
28646
28647 2011-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
28648
28649 * progmodes/compile.el (compilation--previous-directory): Fix up
28650 various nil/dead-marker mismatches (bug#8014).
28651 (compilation-directory-properties, compilation-error-properties):
28652 Don't call it at a position past the one we're about to change.
28653
28654 * emacs-lisp/bytecomp.el (byte-compile-make-obsolete-variable):
28655 Disable obsolescence warnings in the file that declares it.
28656
28657 2011-03-11 Ken Manheimer <ken.manheimer@gmail.com>
28658
28659 * allout-widgets.el (allout-widgets-tally):
28660 Initialize allout-widgets-tally as a hash table rather than nil to
28661 prevent mode-line redisplay warnings. Also, clarify the module
28662 description and fix a comment typo.
28663
28664 2011-03-11 Juanma Barranquero <lekktu@gmail.com>
28665
28666 * help-fns.el (describe-variable): Don't complete keywords.
28667 Suggested by Teodor Zlatanov <tzz@lifelogs.com>.
28668
28669 2011-03-10 Chong Yidong <cyd@stupidchicken.com>
28670
28671 * emacs-lisp/package.el (package-version-join): Impose a standard
28672 string representation for pre/alpha/beta version lists.
28673 (package-unpack-single): Standardize the directory name by passing
28674 it through package-version-join.
28675 (package-strip-rcs-id): Accept any version string that does not
28676 signal an error in version-to-list.
28677
28678 2011-03-10 Michael Albinus <michael.albinus@gmx.de>
28679
28680 * simple.el (delete-trailing-whitespace): Return nil for the
28681 benefit of `write-file-functions'.
28682
28683 2011-03-10 Glenn Morris <rgm@gnu.org>
28684
28685 * vc/vc-hg.el (vc-hg-pull, vc-hg-merge-branch): Use vc-hg-program.
28686
28687 * vc/vc-git.el (vc-git-program): New option.
28688 (vc-git-branches, vc-git-pull, vc-git-merge-branch, vc-git-command)
28689 (vc-git--call): Use it.
28690
28691 * eshell/esh-util.el (eshell-condition-case): Doc fix.
28692
28693 * cus-edit.el (Custom-newline): If no button at point, look
28694 for a subgroup button at start-of-line. (Bug#2298)
28695
28696 * mail/rmail.el (rmail-msgend, rmail-msgbeg): Doc fixes.
28697
28698 2011-03-10 Julien Danjou <julien@danjou.info>
28699
28700 * avoid.el (mouse-avoidance-ignore-p): Do not move the cursor if
28701 `cursor-type' is nil.
28702
28703 2011-03-09 Jay Belanger <jay.p.belanger@gmail.com>
28704
28705 * calc/calc.el (calc-mode-map): Don't bind "C-_" to `calc-missing-key'.
28706
28707 2011-03-09 Ken Manheimer <ken.manheimer@gmail.com>
28708
28709 * allout.el: Change so yank of distinctive-bullet items
28710 preserves the existing header prefix, rebulleting it if necessary,
28711 rather than replacing it. This is necessary for proper operation
28712 of cooperative addons like allout-widgets.
28713 (allout-make-topic-prefix, allout-rebullet-heading):
28714 Change SOLICIT arg to INSTEAD, and interpret additionally a string
28715 value as alternate bullet to be used, instead of prompting the user
28716 for a bullet character.
28717
28718 2011-03-09 Michael Albinus <michael.albinus@gmx.de>
28719
28720 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
28721 Do not use `tramp-file-name-port', because this returns also
28722 `tramp-default-port'.
28723
28724 2011-03-09 Deniz Dogan <deniz.a.m.dogan@gmail.com>
28725
28726 * net/rcirc.el (rcirc-handler-001): Remove useless
28727 with-rcirc-process-buffer.
28728 (rcirc-check-auth-status): Swap arguments to string-match.
28729
28730 2011-03-09 Glenn Morris <rgm@gnu.org>
28731
28732 * shell.el (shell-mode):
28733 Set comint-input-ring-size from HISTSIZE. (Bug#7889)
28734
28735 * progmodes/gdb-mi.el (gdb): Improve 2010-12-08 change.
28736 Check for GDBHISTFILE, HISTSIZE, etc. (Bug#7889)
28737
28738 2011-03-08 Chong Yidong <cyd@stupidchicken.com>
28739
28740 * emacs-lisp/package.el (package-refresh-contents)
28741 (package-menu-execute): Use condition-case-no-debug.
28742
28743 2011-03-08 Michael Albinus <michael.albinus@gmx.de>
28744
28745 * simple.el (shell-command-to-string): Use `process-file'.
28746
28747 * emacs-lisp/package.el (package-tar-file-info): Handle also
28748 remote files.
28749
28750 * emacs-lisp/package-x.el (package-upload-buffer-internal):
28751 Use `equal' for upload base check.
28752
28753 2011-03-08 Arni Magnusson <arnima@hafro.is> (tiny change)
28754
28755 * textmodes/texinfo.el (texinfo-environments):
28756 Add deftypecv, deftypeivar, deftypemethod, deftypeop, html. (Bug#2783)
28757
28758 2011-03-08 Glenn Morris <rgm@gnu.org>
28759
28760 * cus-start.el (cursor-in-non-selected-windows):
28761 Fix :set quoting oddness. (Bug#8192)
28762
28763 * font-lock.el (lisp-font-lock-keywords-1): Don't highlight `)'
28764 in some setf expressions. (Bug#2159)
28765
28766 2011-03-08 Chong Yidong <cyd@stupidchicken.com>
28767
28768 * custom.el (custom-available-themes): Return themes in
28769 alphabetical order.
28770
28771 See ChangeLog.15 for earlier changes.
28772
28773 ;; Local Variables:
28774 ;; coding: utf-8
28775 ;; End:
28776
28777 Copyright (C) 2011-2013 Free Software Foundation, Inc.
28778
28779 This file is part of GNU Emacs.
28780
28781 GNU Emacs is free software: you can redistribute it and/or modify
28782 it under the terms of the GNU General Public License as published by
28783 the Free Software Foundation, either version 3 of the License, or
28784 (at your option) any later version.
28785
28786 GNU Emacs is distributed in the hope that it will be useful,
28787 but WITHOUT ANY WARRANTY; without even the implied warranty of
28788 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
28789 GNU General Public License for more details.
28790
28791 You should have received a copy of the GNU General Public License
28792 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.