* lisp/emacs-lisp/smie.el (smie-auto-fill): Don't inf-loop if there's no
[bpt/emacs.git] / lisp / ChangeLog
1 2013-03-14 Stefan Monnier <monnier@iro.umontreal.ca>
2
3 * emacs-lisp/smie.el (smie-auto-fill): Don't inf-loop if there's no
4 token before point (bug#13942).
5
6 2013-03-14 Leo Liu <sdl.web@gmail.com>
7
8 * thingatpt.el (end-of-sexp): Fix bug#13952. Use syntax-after.
9
10 2013-03-11 Glenn Morris <rgm@gnu.org>
11
12 * Version 24.3 released.
13
14 2013-02-25 Glenn Morris <rgm@gnu.org>
15
16 * textmodes/paragraphs.el (mark-paragraph): Doc fix.
17
18 2013-02-21 Juri Linkov <juri@jurta.org>
19
20 * isearch.el (isearch-lazy-highlight-new-loop):
21 Set `isearch-lazy-highlight-start' and `isearch-lazy-highlight-end'
22 to `isearch-other-end' if it is not nil. (Bug#13402)
23
24 * replace.el (replace-highlight): Let-bind `isearch-other-end'
25 to `match-beg'.
26
27 * textmodes/ispell.el (ispell-highlight-spelling-error-overlay):
28 Let-bind `isearch-other-end' to `start', `isearch-forward' to t
29 and `isearch-error' to nil.
30
31 2013-02-20 Fabián Ezequiel Gallina <fgallina@cuca>
32
33 * progmodes/python.el (python-info-current-defun):
34 Enhance match-data cluttering prevention.
35
36 2013-02-19 Glenn Morris <rgm@gnu.org>
37
38 * net/tramp.el (tramp-get-debug-buffer): Ensure outline.el is not
39 loaded while outline-regexp is let bound. (Bug#9584)
40
41 2013-02-19 Fabián Ezequiel Gallina <fgallina@cuca>
42
43 * progmodes/python.el (python-info-current-defun): Fix failed
44 defun name retrieval because of unwanted match-data cluttering.
45
46 2013-02-19 Fabián Ezequiel Gallina <fgallina@cuca>
47
48 * progmodes/python.el (python-indent-context):
49 Fix python-info-line-ends-backslash-p call.
50 (python-info-line-ends-backslash-p)
51 (python-info-beginning-of-backslash): Respect line-number
52 argument.
53 (python-info-current-line-comment-p): Fix behavior when not at
54 beginning-of-line.
55 (python-util-position): Remove function.
56 (python-util-goto-line): New function.
57
58 2013-02-18 Michael Albinus <michael.albinus@gmx.de>
59
60 * eshell/em-unix.el (eshell/su): Require tramp.
61 (eshell/sudo): Require tramp. Remove now unnecessary check.
62
63 * net/tramp-sh.el (tramp-sh-handle-start-file-process): Let-bind
64 `tramp-current-connection' in order to avoid an error when several
65 commands are invoked in a short time in eshell and friends.
66
67 2013-02-16 Didier Verna <didier@didierverna.net>
68
69 * net/network-stream.el (network-stream-open-starttls):
70 Check that response to the starttls-command is non-nil. (Bug#13706)
71
72 2013-02-14 Glenn Morris <rgm@gnu.org>
73
74 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix.
75
76 2013-02-14 Stefan Monnier <monnier@iro.umontreal.ca>
77
78 * net/goto-addr.el (goto-address-fontify): Add start and end args.
79 (goto-address-fontify-region): Use them instead of narrowing, so
80 syntax-ppss has access to the whole buffer.
81
82 2013-02-14 Fabián Ezequiel Gallina <fgallina@cuca>
83
84 * progmodes/python.el: Explain how to restore "cc-mode"-like
85 forward-sexp movement in header documentation (Bug#13642).
86 (python-nav--forward-sexp): Behave like emacs-lisp-mode in
87 comments and strings (GH bug 114).
88
89 2013-02-13 Fabián Ezequiel Gallina <fgallina@cuca>
90
91 * progmodes/python.el (python-info-current-defun): Fix current
92 defun detection (Bug#13618).
93
94 2013-02-13 Chong Yidong <cyd@gnu.org>
95
96 * xml.el (xml-parse-string): Fix typo in handling of bad character
97 references.
98
99 2013-02-10 Michael Albinus <michael.albinus@gmx.de>
100
101 * net/ange-ftp.el (ange-ftp-make-directory): Don't raise an error,
102 if DIR exists and PARENTS is non-nil.
103
104 2013-02-09 Chong Yidong <cyd@gnu.org>
105
106 * mail/emacsbug.el (report-emacs-bug): Change binding of
107 report-emacs-bug-insert-to-mailer to C-c M-i (Bug#13510).
108
109 2013-02-02 Alan Mackenzie <acm@muc.de>
110
111 Fix bug in the state cache mechanism. Remove 'BOD "strategy". Refactor.
112 * progmodes/cc-engine.el (c-get-fallback-scan-pos): Remove.
113 (c-parse-state-get-strategy): Don't return 'BOD any more.
114 (c-append-lower-brace-pair-to-state-cache): Extra parameter HERE
115 instead of narrowing. Widen to top of buffer before searching
116 backwards for a brace pair.
117 (c-state-push-any-brace-pair): Add HERE parameter to function
118 call.
119 (c-append-to-state-cache): Extra parameter HERE in place of
120 narrowing. Narrow to parameter HERE, in place of being called
121 narrowed.
122 (c-remove-stale-state-cache): Extra parameter HERE in place of
123 narrowing. Check there's an open brace in the cache before
124 searching for its match.
125 (c-invalidate-state-cache-1): Add HERE parameter to function call.
126 (c-parse-state-1): Don't narrow here for 'forward strategy,
127 instead passing extra parameter HERE to several functions.
128 Remove 'BOD strategy.
129
130 2013-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
131
132 * mouse.el (mouse-drag-track): Always deactivate the mark before
133 running the final event's command since that command is in charge of
134 activating the mark if needed (bug#13523).
135
136 2013-02-01 Juri Linkov <juri@jurta.org>
137
138 * replace.el (perform-replace): Move let-bindings of isearch-*
139 variables deeper to the loop that searches for the next match.
140 Add bindings for `isearch-nonincremental' and `isearch-adjusted'.
141 Use `isearch-search-fun-default' instead of `isearch-search-fun'.
142 (Bug#13579)
143
144 * isearch.el (isearch-search-fun-default): Check for null
145 first element of isearch-cmds as a precaution when it's used
146 with inactive isearch.
147
148 2013-02-01 Andrew W. Nosenko <andrew.w.nosenko@gmail.com> (tiny change)
149
150 * net/tramp.el (tramp-check-for-regexp): Avoid "Args out of range"
151 error when buffer in question is narrowed so position 1 is out of
152 visible part.
153
154 2013-01-31 Glenn Morris <rgm@gnu.org>
155
156 * textmodes/remember.el (remember-clipboard): Doc fix.
157
158 2013-01-30 Stefan Monnier <monnier@iro.umontreal.ca>
159
160 * progmodes/make-mode.el (makefile-fill-paragraph): Reset syntax-table
161 properties (bug#13179).
162
163 2013-01-30 Glenn Morris <rgm@gnu.org>
164
165 * mouse.el (mouse-drag-line): Avoid pushing same event onto
166 unread-command-events twice in some cases. This tries to implement
167 the 2012-07-26 changes in a different way. (Bug#13560)
168
169 2013-01-30 Fabián Ezequiel Gallina <fgallina@cuca>
170
171 * progmodes/python.el
172 (python-pdbtrack-comint-output-filter-function): Enhancements on
173 stacktrace detection. (thanks @gnovak)
174
175 2013-01-30 Glenn Morris <rgm@gnu.org>
176
177 * imenu.el (imenu-default-create-index-function):
178 Put back a version of the infinite loop test removed 2013-01-23.
179
180 2013-01-28 Fabián Ezequiel Gallina <fgallina@cuca>
181
182 * progmodes/python.el (python-shell-parse-command):
183 Find python-shell-interpreter with modified environment.
184
185 2013-01-26 Stefan Monnier <monnier@iro.umontreal.ca>
186
187 * emacs-lisp/cl.el (cl-set-getf): Add compatibility alias.
188
189 2013-01-24 Fabián Ezequiel Gallina <fgallina@cuca>
190
191 * progmodes/python.el: Enhancements to header documentation about
192 skeletons. (Bug#5716)
193
194 2013-01-23 Fabián Ezequiel Gallina <fgallina@cuca>
195
196 * imenu.el (imenu-default-create-index-function): Remove useless
197 infinite loop check. (Bug#13438)
198
199 2013-01-23 Alan Mackenzie <acm@muc.de>
200
201 Fix a bug in the state cache mechanism. Refactor this a bit.
202
203 * progmodes/cc-engine.el (c-parse-state-get-strategy): Remove the
204 `cache-pos' element from the return value.
205 (c-append-lower-brace-pair-to-state-cache): "Narrow" to end of
206 buffer to enable proper searching from beyond HERE. Amend the
207 test for detecting the sought brace pair. Amend the value written
208 to the "brace desert cache" when the brace isn't found.
209 (c-remove-stale-state-cache): Rename `good-pos' to `start-point',
210 and several other variables analogously.
211 (c-remove-stale-state-cache-backwards): Change `cache-pos' from a
212 parameter to a locally calculated variable.
213 (c-parse-state-1): Change the calling conventions to the two
214 defuns involving `cache-pos'.
215
216 2013-01-23 Chong Yidong <cyd@gnu.org>
217
218 * xml.el (xml-entity-or-char-ref-re): Fix regexp.
219
220 2013-01-18 Leo Liu <sdl.web@gmail.com>
221
222 * dired.el (dired-get-marked-files): Prune erroneous values due to
223 last change. (Bug#13152)
224
225 2013-01-17 Glenn Morris <rgm@gnu.org>
226
227 * progmodes/etags.el (tags-table-check-computed-list):
228 Preserve point in tags buffer. (Bug#13412)
229
230 2013-01-16 Glenn Morris <rgm@gnu.org>
231
232 * emacs-lisp/lisp-mode.el (lisp-indent-function): Doc fix.
233
234 * mail/rmailmm.el (rmail-insert-mime-forwarded-message):
235 Revert 2012-12-29 change. Ref:
236 <http://lists.gnu.org/archive/html/emacs-devel/2013-01/msg00360.html>
237
238 2013-01-10 Fabián Ezequiel Gallina <fgallina@cuca>
239
240 * progmodes/python.el (python-nav-end-of-statement):
241 Fix cornercase when handling multiline strings.
242
243 2013-01-10 Glenn Morris <rgm@gnu.org>
244
245 * emacs-lisp/authors.el (authors-ignored-files)
246 (authors-valid-file-names, authors-renamed-files-alist):
247 Add some more entries.
248
249 2013-01-09 Stefan Monnier <monnier@iro.umontreal.ca>
250
251 * image-mode.el (image-mode-winprops): Don't throw away the fallback
252 `t' pseudo-window entry.
253
254 2013-01-09 Alan Mackenzie <acm@muc.de>
255
256 Fix bugs in the c-parse-state mechanism. Reuse some markers
257 instead of continually generating new ones.
258
259 * progmodes/cc-engine.el (c-state-old-cpp-beg-marker)
260 (c-state-old-cpp-end-marker): New variables.
261 (c-append-lower-brace-pair-to-state-cache): Start a backward
262 search for "}" definitively outside CPP constructs.
263 (c-remove-stale-state-cache): Inform the caller of a need to
264 search back for a brace pair in certain circumstances.
265 (c-state-maybe-marker): New macro.
266 (c-parse-state): Reuse markers when appropriate.
267
268 2013-01-09 Glenn Morris <rgm@gnu.org>
269
270 * simple.el (execute-extended-command): Doc fix.
271 Bind prefix-arg around read-extended-command, for prompt. (Bug#13395)
272
273 2013-01-09 Chong Yidong <cyd@gnu.org>
274
275 * faces.el (read-face-name): Doc fix.
276
277 2013-01-09 Glenn Morris <rgm@gnu.org>
278
279 * emacs-lisp/trace.el (trace-function, trace-function-background):
280 Doc fix.
281
282 2013-01-09 Juri Linkov <juri@jurta.org>
283
284 * international/mule-cmds.el (read-char-by-name): Move let-binding
285 of completion-ignore-case around completing-read to fix regression
286 exhibited by the test case `C-x 8 RET *acc TAB' and caused by
287 `string-match-p' using the nil value of `case-fold-search' and
288 `completion-ignore-case' in `completion-pcm--all-completions'.
289 (Bug#12615).
290
291 2013-01-07 Glenn Morris <rgm@gnu.org>
292
293 * progmodes/compile.el (compilation-parse-errors):
294 Fix typo. (Bug#13369)
295
296 2013-01-07 Vitalie Spinu <spinuvit@gmail.com> (tiny change)
297
298 * comint.el (comint-send-input): Check size of buffer before
299 waiting for process output, in case already accepted. (Bug#13290)
300
301 2013-01-04 Michael Albinus <michael.albinus@gmx.de>
302
303 * net/tramp-sh.el (tramp-set-file-uid-gid): UID and GID must be
304 non-negative integers. Otherwise, the default values are used.
305 (tramp-convert-file-attributes): Convert uid and gid to integers.
306
307 2013-01-03 Glenn Morris <rgm@gnu.org>
308
309 * term.el (term-handle-colors-array): Ensure face attributes
310 are fully specified, not nil. (Bug#13337)
311
312 * term.el (term-default-fg-color, term-default-bg-color):
313 Fix custom type.
314
315 * progmodes/etags.el (tags-compression-info-list): Doc fix.
316 (tag-find-file-of-tag-noselect): Check auto-compression-mode
317 rather than 'jka-compr being loaded. (Bug#13338)
318
319 * subr.el (eval-after-load): Don't purecopy the form, so that it
320 can be nconc'd later on; reverts 2009-11-11 change. (Bug#13331)
321
322 * emacs-lisp/byte-run.el (defun): Place cl declarations
323 after any interactive spec. (Bug#13265)
324
325 2012-12-31 Andreas Schwab <schwab@linux-m68k.org>
326
327 * emacs-lisp/byte-run.el (defmacro): Use same argument parsing as
328 defun. Don't check for DECL if DOCSTRING isn't a string.
329 (defun): Likewise.
330
331 2012-12-31 Glenn Morris <rgm@gnu.org>
332
333 * eshell/em-cmpl.el (eshell-pcomplete):
334 More thoroughly imitate pcomplete. (Bug#13293)
335
336 * files.el (parse-colon-path): Doc fix. (Bug#12351)
337 Return nil for empty path elements. (Bug#13296)
338
339 2012-12-31 Fabián Ezequiel Gallina <fgallina@cuca>
340
341 * progmodes/python.el (python-nav-end-of-statement): Rewrite in
342 order to improve efficiency (Based on Daniel Colascione's
343 <dancol@dancol.org> patch). (Bug#13182)
344
345 2012-12-31 Glenn Morris <rgm@gnu.org>
346
347 * vc/log-edit.el (log-edit-header-contents-regexp): Add doc string.
348
349 2012-12-31 Fabián Ezequiel Gallina <fgallina@cuca>
350
351 * progmodes/python.el: Support other commands triggering
352 python-indent-line so indentation cycling continues to work.
353 (python-indent-trigger-commands): New defcustom.
354 (python-indent-line): Use it.
355
356 2012-12-31 Fabián Ezequiel Gallina <fgallina@cuca>
357
358 * progmodes/python.el (python-shell-send-region): Add blank lines
359 for non sent code so backtraces remain correct.
360
361 2012-12-31 Andreas Schwab <schwab@linux-m68k.org>
362
363 * emacs-lisp/byte-run.el (defmacro): Don't lose final nil if
364 neither DOCSTRING nor DECL was given. (Bug#13316)
365
366 2012-12-30 Glenn Morris <rgm@gnu.org>
367
368 * net/mairix.el (rmail, rmail-summary-displayed, rmail-summary):
369 Remove unnecessary/buggy autoloads (missing interactive). (Bug#13294)
370 (rmail-summary-displayed, rmail-summary): Declare.
371 (mairix-rmail-display): Just require rmail.
372
373 2012-12-29 Chong Yidong <cyd@gnu.org>
374
375 * emacs-lisp/package.el (package-untar-buffer): Improve integrity
376 check for the tarball contents.
377
378 2012-12-29 Matt Fidler <matt.fidler@alcon.com> (tiny change)
379
380 * emacs-lisp/package.el (package-untar-buffer): Handle problematic
381 tarfile content listings (Bug#13136).
382
383 2012-12-29 Mark Lillibridge <mark.lillibridge@hp.com>
384
385 * mail/rmailmm.el (rmail-insert-mime-forwarded-message):
386 Insert the undecoded text of the message being forwarded. (Bug#9521)
387
388 2012-12-28 Michael Albinus <michael.albinus@gmx.de>
389
390 * net/tramp-sh.el (tramp-set-file-uid-gid): Convert UID and GID to
391 integers, if they are real numbers. (Bug#13282)
392
393 2012-12-26 Dmitry Gutov <dgutov@yandex.ru>
394
395 * progmodes/ruby-mode.el (ruby-indent-beg-re): Only allow "class",
396 "module" and "def" to have indentation before them.
397 Regression from 109911 (see the new test).
398
399 2012-12-24 Dmitry Gutov <dgutov@yandex.ru>
400
401 * progmodes/ruby-mode.el: Bump the version to 1.2 (Bug#13200).
402
403 2012-12-23 Alan Mackenzie <acm@muc.de>
404
405 Speed up fontification where there's large brace blocks.
406 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls): Add a limit
407 to a call of c-beginning-of-decl-1.
408
409 2012-12-21 Chong Yidong <cyd@gnu.org>
410
411 * sort.el (sort-subr): Doc fix (Bug#13056).
412
413 2012-12-20 Bastien Guerry <bzg@gnu.org>
414
415 * progmodes/etags.el (tags-search): Fix typo. Bug #13232.
416
417 2012-12-11 Alan Mackenzie <acm@muc.de>
418
419 Make CC Mode not hang when _some_ lines end in CRLF. Bug #11841.
420 * progmodes/cc-engine.el (c-backward-comments): Add code to work
421 around `forward-comment' not recognizing ^M as whitespace.
422
423 2012-12-11 Fabián Ezequiel Gallina <fgallina@cuca>
424
425 * progmodes/python.el (python-skeleton-class)
426 (python-skeleton-def): Do not add space after defun name.
427
428 2012-12-09 Chong Yidong <cyd@gnu.org>
429
430 * simple.el (set-mark-default-inactive): Mark as obsolete, for
431 removal after 24.3.
432
433 2012-12-08 Dani Moncayo <dmoncayo@gmail.com>
434
435 * simple.el (just-one-space): Doc fix.
436
437 2012-12-07 Eli Zaretskii <eliz@gnu.org>
438
439 * textmodes/texinfo.el (texinfo-enable-quote-envs):
440 Add "smallexample".
441
442 2012-12-07 Le Wang <l26wang@gmail.com>
443
444 * hilit-chg.el (hilit-chg-set-face-on-change): Don't burp in
445 narrowed buffer (bug#12361).
446
447 2012-12-07 Michael Heerdegen <michael_heerdegen@web.de>
448
449 * emacs-lisp/debug.el (debug): Fix hard-coded frame counts (bug#10025).
450 Virtually backported from trunk.
451
452 2012-12-07 Juanma Barranquero <lekktu@gmail.com>
453
454 * vc/vc-hooks.el (vc-state): Doc fix.
455
456 2012-12-06 Glenn Morris <rgm@gnu.org>
457
458 * mail/rmail.el (rmail-maybe-display-summary):
459 Preserve buffer, in case select-window changes it. (Bug#13066)
460
461 2012-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
462
463 * emacs-lisp/cl.el, emacs-lisp/cl-lib.el: Move cl-unload-function and
464 cl-load-hook where they belong.
465
466 2012-12-06 Chong Yidong <cyd@gnu.org>
467
468 * ffap.el (ffap-replace-file-component): Fix typo.
469
470 2012-12-05 Stefan Monnier <monnier@iro.umontreal.ca>
471
472 * progmodes/octave-mod.el (octave-mark-block): Move out of tokens and
473 fix open-paren-like token test (bug#12785).
474
475 2012-12-04 Glenn Morris <rgm@gnu.org>
476
477 * mail/rmailsum.el (rmail-new-summary): Tweak for
478 rmail-maybe-display-summary changing buffer. (Bug#13066)
479
480 2012-12-03 Juri Linkov <juri@jurta.org>
481
482 * info.el (Info-fontify-node): Don't hide the last newline.
483 (Bug#12272)
484
485 2012-12-01 Leo Liu <sdl.web@gmail.com>
486
487 * files.el (dir-locals-read-from-file): Check file non-empty
488 before reading. (Bug#13038)
489
490 2012-11-28 Glenn Morris <rgm@gnu.org>
491
492 * jka-cmpr-hook.el (jka-compr-get-compression-info):
493 Remove any version extension before checking filename. (Bug#13006)
494 (jka-compr-compression-info-list): Belated :version bump.
495
496 2012-11-28 Chong Yidong <cyd@gnu.org>
497
498 * simple.el (transient-mark-mode): Doc fix (Bug#11523).
499
500 * buff-menu.el (Buffer-menu-delete-backwards, Buffer-menu-mode)
501 (buffer-menu): Doc fix (Bug#12294).
502
503 2012-11-27 Roland Winkler <winkler@gnu.org>
504
505 * calendar/diary-lib.el (diary-header-line-format): Use keybinding
506 of diary-show-all-entries in the diary buffer (Bug#12994).
507
508 2012-11-27 Michael Albinus <michael.albinus@gmx.de>
509
510 * net/tramp-sh.el (tramp-perl-encode): Use "read STDIN" instead of
511 "<STDIN>". This is binary safe.
512
513 2012-11-27 Stefan Monnier <monnier@iro.umontreal.ca>
514
515 * textmodes/table.el (table-insert): Don't use `symbol-name' on
516 lexically scoped variables (bug#13005).
517
518 2012-11-26 Glenn Morris <rgm@gnu.org>
519
520 * vc/vc-hooks.el (vc-mistrust-permissions):
521 Default to t, to avoid data-loss. (Bug#11490)
522
523 2012-11-26 Fabián Ezequiel Gallina <fgallina@cuca>
524
525 * progmodes/python.el (python-indent-guess-indent-offset):
526 If indentation is guessed make python-indent-offset buffer-local.
527
528 Fix Imenu regression.
529 * progmodes/python.el (python-nav-beginning-of-defun):
530 Fix forward movement when statement(s) separates point from defun.
531 (python-imenu-prev-index-position): New function.
532
533 2012-11-26 Eli Zaretskii <eliz@gnu.org>
534
535 * subr.el (buffer-file-type): Declare with defvar-local. Doc fix.
536
537 * dos-w32.el (find-file-not-found-set-buffer-file-coding-system):
538 Don't set buffer-file-type. Return nil. (Bug#12989)
539
540 2012-11-26 Glenn Morris <rgm@gnu.org>
541
542 * hippie-exp.el (hippie-expand-try-functions-list):
543 Re-autoload it. (Bug#12982)
544
545 2012-11-25 Eli Zaretskii <eliz@gnu.org>
546
547 * descr-text.el (describe-char-padded-string):
548 Call internal-char-font only on GUI frames. (Bug#11964)
549
550 2012-11-24 Andreas Schwab <schwab@linux-m68k.org>
551
552 * buff-menu.el (Buffer-menu-buffer+size-width): Fix customize type
553 and obsoletion message.
554
555 2012-11-24 Stefan Monnier <monnier@iro.umontreal.ca>
556
557 * emacs-lisp/cl-macs.el (cl--transform-lambda): Add back `declare' in
558 the constructs to keep outside of the `cl-block' (bug#12977).
559
560 2012-11-24 Chong Yidong <cyd@gnu.org>
561
562 * mouse.el (mouse-drag-line): Even if the line is not draggable,
563 keep reading until we get the up-event anyway, in order to process
564 the up-event for mouse-1-click-follows-link (Bug#12971).
565
566 2012-11-23 Stefan Monnier <monnier@iro.umontreal.ca>
567
568 * emacs-lisp/bytecomp.el (byte-compile-file): Setup default value for
569 lexical-binding (bug#12938).
570
571 2012-11-23 Wolfgang Jenkner <wjenkner@inode.at>
572
573 * image-mode.el (image-transform-check-size): Use assertions only
574 for images of type imagemagick.
575
576 Otherwise no error, image-transform-fit-to-{width,height} is
577 silently ignored, as before. Doc fix.
578
579 2012-11-23 Chong Yidong <cyd@gnu.org>
580
581 * faces.el (color-defined-p): Doc fix (Bug#12853).
582
583 2012-11-23 Juri Linkov <juri@jurta.org>
584
585 * dired.el (dired-mark): Add optional arg `interactive'.
586 Check for `use-region-p' if `interactive' is non-nil.
587 (dired-unmark, dired-flag-file-deletion): Add optional arg
588 `interactive'. Call `dired-mark' with the arg `interactive'.
589 (Bug#10624)
590
591 2012-11-23 Juri Linkov <juri@jurta.org>
592
593 * wdired.el: Revert 2012-10-17 change partly and replace it with
594 Patch by Christopher Schmidt <christopher@ch.ristopher.com>.
595 (wdired-finish-edit): Add marks for new file names to
596 `wdired-old-marks'. Restore marks using `dired-mark-remembered'
597 after `revert-buffer'.
598 (wdired-do-renames): Remove calls to `dired-remove-file',
599 `dired-add-file', `dired-add-entry'. (Bug#11795)
600
601 2012-11-21 Alan Mackenzie <acm@muc.de>
602
603 * progmodes/cc-defs.el (c-version): Bump to 5.32.4.
604
605 Fix bugs in the state cache. Enhance a debugging mechanism.
606 * progmodes/cc-engine.el (c-parse-state-get-strategy): Don't use
607 "brace at column zero" strategy for C++.
608 (c-append-lower-brace-pair-to-state-cache): Repair algorithm.
609 (c-parse-state-point): New variable.
610 (c-record-parse-state-state): Record old parse state with
611 `copy-tree'. Record previous value of point.
612 (c-debug-parse-state-double-cons): New debugging function.
613 (c-debug-parse-state): Call the above new function.
614 (c-toggle-parse-state-debug): Output a confirmatory message.
615
616 * progmodes/cc-mode.el (c-before-change, c-after-change):
617 Call c-invalidate-state-cache from `c-before-change' instead of
618 `c-after-change'.
619
620 2012-11-20 Daniel Colascione <dancol@dancol.org>
621
622 * term/w32-win.el (cygwin-convert-path-from-windows):
623 Accomodate rename of cygwin_convert_path* to cygwin_convert_file_name*.
624 This change is a backport from trunk.
625
626 2012-11-20 Eli Zaretskii <eliz@gnu.org>
627
628 * simple.el (line-move): Don't call line-move-partial if
629 scroll-conservatively is in effect. (Bug#12927)
630
631 2012-11-20 Michael Albinus <michael.albinus@gmx.de>
632
633 * net/trampver.el (tramp-version): Downgrade to 2.2.6-24.3, in
634 order to distinguish from trunk.
635
636 2012-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
637
638 * emacs-lisp/byte-run.el (defun-declarations-alist): Don't accept
639 non-symbols for compiler macros (yet).
640
641 * eshell/em-cmpl.el (eshell-pcomplete): Refine fix for bug#12838:
642 Fallback on completion-at-point rather than
643 pcomplete-expand-and-complete, and only if pcomplete actually failed.
644 (eshell-cmpl-initialize): Setup completion-at-point.
645
646 * pcomplete.el (pcomplete--entries): Obey pcomplete-ignore-case.
647
648 * emacs-lisp/ert.el (ert--expand-should-1): Adapt to cl-lib.
649
650 2012-11-19 Michael Albinus <michael.albinus@gmx.de>
651
652 * net/tramp-sh.el (tramp-do-copy-or-rename-file): If both files
653 are remote, check out-of-band property for both.
654
655 2012-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
656
657 * window.el (switch-to-buffer): Re-add the warning that was lost in the
658 code rewrite.
659
660 2012-11-18 Paul Eggert <eggert@cs.ucla.edu>
661
662 More minor time fixes.
663 * calendar/time-date.el: Commentary fix.
664 * net/tramp-sh.el (tramp-do-file-attributes-with-ls): Undo last change;
665 too much other code depends on (0 0) time stamps.
666 * net/tramp.el (tramp-time-less-p, tramp-time-subtract):
667 Add a couple of FIXME comments.
668
669 Minor cleanup for times as lists of four integers.
670 * files.el (dir-locals-directory-cache):
671 * ps-bdf.el (bdf-file-mod-time, bdf-read-font-info):
672 Doc fixes.
673 * net/tramp-sh.el (tramp-do-file-attributes-with-ls):
674 * ps-bdf.el (bdf-file-newer-than-time):
675 Process four-integers time stamps, not two. Doc fixes.
676
677 2012-11-18 Glenn Morris <rgm@gnu.org>
678
679 * image.el (insert-image, insert-sliced-image): Doc fix.
680
681 2012-11-17 Chong Yidong <cyd@gnu.org>
682
683 * emacs-lisp/syntax.el (syntax-propertize-function): Doc fix
684 (Bug#12810).
685
686 2012-11-17 OKAZAKI Tetsurou <okazaki.tetsurou@gmail.com> (tiny change)
687
688 * vc/vc-svn.el (vc-svn-merge-news): Properly parse the merge
689 response when the target file is in a subdirectory (Bug#12757).
690
691 2012-11-17 Chong Yidong <cyd@gnu.org>
692
693 * filecache.el (file-cache-add-file-list): Doc fix (Bug#12694).
694
695 2012-11-17 Glenn Morris <rgm@gnu.org>
696
697 * woman.el (woman-non-underline-faces):
698 * emacs-lisp/cl-lib.el (face-underline-p):
699 Use set-face-underline rather than the alias set-face-underline-p.
700
701 * window.el (with-temp-buffer-window): Doc fix.
702 * subr.el (with-output-to-temp-buffer):
703 Add doc xref to with-temp-buffer-window.
704
705 2012-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
706
707 * emacs-lisp/cl-lib.el: Set more meaningful version number.
708
709 2012-11-16 Martin Rudalics <rudalics@gmx.at>
710
711 * window.el (enlarge-window, shrink-window): Don't mention return
712 value in doc-string (Bug#12896).
713 (window--display-buffer): Don't resize frames - it won't work
714 with all window managers and defeat pop-up-frame-alist.
715 (display-buffer-alist): In doc-string explain that CONDITION can
716 be a function and which arguments are passed to it (Bug#12854).
717 (display-buffer-assq-regexp): New argument ACTION. Handle lambda
718 expressions (Bug#12854).
719 (display-buffer): Pass ACTION argument to
720 display-buffer-assq-regexp.
721
722 2012-11-16 Glenn Morris <rgm@gnu.org>
723
724 * window.el (fit-frame-to-buffer-bottom-margin)
725 (fit-frame-to-buffer, fit-window-to-buffer): Doc fixes.
726
727 * faces.el (face-underline-p): Use face-attribute-specified-or.
728
729 2012-11-15 Juanma Barranquero <lekktu@gmail.com>
730
731 * emacs-lisp/cl-macs.el (cl-loop, cl-do, cl-do*): Doc fixes.
732
733 2012-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
734
735 * emacs-lisp/cl-macs.el (cl-flet, cl-flet*): Fix docstring (bug#12895).
736
737 2012-11-15 Glenn Morris <rgm@gnu.org>
738
739 * eshell/em-cmpl.el (eshell-pcomplete): New command. (Bug#12838)
740 (eshell-cmpl-initialize): Bind eshell-pcomplete to TAB, C-i.
741
742 * faces.el (face-underline-p): Doc fix. Handle :underline being
743 things other than `t' (a string, a list).
744 (face-inverse-video-p): Doc fix.
745 (set-face-underline): Rename it back from set-face-underline-p.
746 Doc fix. Allow interactive input of values other than t.
747 (read-face-attribute): Apply formatting to :underline,
748 since like :box and :stipple it can take list values.
749
750 * term.el (ansi-term): Don't let C-x escape-char binding
751 clobber the more standard C-c binding. (Bug#12842)
752
753 2012-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
754
755 * emacs-lisp/gv.el (setf): Fix debug spec for multiple assignments
756 (bug#12879).
757
758 2012-11-14 Glenn Morris <rgm@gnu.org>
759
760 * subr.el (set-temporary-overlay-map): Doc fix.
761
762 2012-11-13 Martin Rudalics <rudalics@gmx.at>
763
764 * window.el (record-window-buffer)
765 (display-buffer-record-window): When copying the markers to
766 window-point preserve window-point-insertion-type. (Bug#12588)
767
768 2012-11-13 Glenn Morris <rgm@gnu.org>
769
770 * emacs-lisp/eieio-datadebug.el (eieio-debug-methodinvoke):
771 * net/tramp-gvfs.el (tramp-gvfs-dbus-event-error):
772 Use new names for hooks rather than obsolete aliases.
773
774 2012-11-12 Stefan Monnier <monnier@iro.umontreal.ca>
775
776 * emacs-lisp/gv.el (gv-define-simple-setter): One more fix (bug#12871).
777
778 2012-11-12 Wolfgang Jenkner <wjenkner@inode.at>
779
780 * ansi-color.el (ansi-color-apply-sequence): Implement SGR codes
781 39 and 49. This fixes bug#12792. Also, treat unimplemented
782 parameters as 0, thereby restoring the behavior of revisions prior
783 to 2012-08-15T03:33:55Z!monnier@iro.umontreal.ca.
784
785 2012-11-12 Fabián Ezequiel Gallina <fgallina@cuca>
786
787 Fix end-of-defun misbehavior.
788 * progmodes/python.el (python-nav-beginning-of-defun): Rename from
789 python-beginning-of-defun-function. Handle nested defuns
790 correctly.
791 (python-nav-end-of-defun): Rename from
792 python-end-of-defun-function. Ensure forward movement.
793 (python-info-current-defun): Reimplement to work as intended
794 with new fixed python-nav-{end,beginning}-of-defun. Stop scanning
795 parent defuns as soon as possible.
796
797 2012-11-12 Glenn Morris <rgm@gnu.org>
798
799 * progmodes/flymake.el (flymake-error-bitmap)
800 (flymake-warning-bitmap, flymake-fringe-indicator-position): Doc fixes.
801 (flymake-error-bitmap, flymake-warning-bitmap): Fix :types.
802
803 2012-11-12 Dmitry Gutov <dgutov@yandex.ru>
804
805 * progmodes/ruby-mode.el (ruby-move-to-block): When moving
806 backward, always stop at indentation. Reverts the change from
807 2012-08-12T22:06:56Z!monnier@iro.umontreal.ca (Bug#12851).
808
809 2012-11-11 Glenn Morris <rgm@gnu.org>
810
811 * ibuffer.el (ibuffer-mode-map, ibuffer-mode):
812 Add ibuffer-filter-by-derived-mode.
813
814 * ibuffer.el (ibuffer-mode-map): Don't have two menu items with
815 the same name shadowing each other.
816
817 * window.el (with-temp-buffer-window): Doc tweak.
818
819 * emacs-lisp/debug.el (debugger-bury-or-kill): Doc tweak.
820
821 * help.el (temp-buffer-max-height):
822 * window.el (fit-frame-to-buffer, fit-frame-to-buffer-bottom-margin):
823 * emacs-lisp/debug.el (debugger-bury-or-kill): Fix :version.
824
825 2012-11-10 Leo Liu <sdl.web@gmail.com>
826
827 * ido.el (ido-set-matches-1): Fix split-string args to avoid
828 performance issue. (Bug#12796)
829
830 2012-11-10 Glenn Morris <rgm@gnu.org>
831
832 * term.el (term-default-fg-color, term-default-bg-color):
833 Make obsolete, rather than just saying "deprecated" in the doc.
834
835 * term.el (term): Rename from `term-face'.
836 (term-current-face, ansi-term-color-vector)
837 (term-default-fg-color, term-default-bg-color, term-ansi-reset):
838 Update all users.
839
840 2012-11-09 Jan Djärv <jan.h.d@swipnet.se>
841
842 * server.el (server-create-window-system-frame): Improve comment.
843
844 2012-11-08 Jan Djärv <jan.h.d@swipnet.se>
845
846 * server.el (server-create-window-system-frame): Handle Nextstep
847 specially (Bug#12780).
848
849 2012-11-08 Glenn Morris <rgm@gnu.org>
850
851 * mail/emacsbug.el (report-emacs-bug-query-existing-bugs):
852 Unautoload, and make obsolete. (Bug#7449)
853
854 2012-11-08 Chong Yidong <cyd@gnu.org>
855
856 * vc/diff-mode.el (diff-delete-trailing-whitespace): Rewrite, and
857 rename from diff-remove-trailing-whitespace (Bug#12831).
858
859 2012-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
860
861 * emacs-lisp/advice.el: Require `cl-lib' at run-time to fix
862 miscompilation of trace.el.
863
864 2012-11-08 Glenn Morris <rgm@gnu.org>
865
866 * vc/diff-mode.el (diff-remove-trailing-whitespace): Doc fix.
867
868 2012-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
869
870 * emacs-lisp/gv.el (gv-define-simple-setter): Fix last change
871 (bug#12812).
872
873 2012-11-07 Chong Yidong <cyd@gnu.org>
874
875 * minibuf-eldef.el (minibuffer-eldef-shorten-default): Convert to
876 a defcustom with an appropriate :set function.
877 (minibuffer-default--in-prompt-regexps): New function.
878
879 2012-11-07 Glenn Morris <rgm@gnu.org>
880
881 * emacs-lisp/cl.el (define-setf-expander, defsetf)
882 (define-modify-macro): Doc fixes.
883
884 * emacs-lisp/gv.el (gv-letplace): Fix doc typo.
885 (gv-define-simple-setter): Update doc of `fix-return'.
886
887 2012-11-07 Stefan Monnier <monnier@iro.umontreal.ca>
888
889 * emacs-lisp/gv.el (gv-define-simple-setter): Don't evaluate `val'
890 twice when `fix-return' is set (bug#12813).
891
892 * emacs-lisp/cl.el (defsetf): Pass the third arg to
893 gv-define-simple-setter (bug#12812).
894
895 2012-11-06 Stefan Monnier <monnier@iro.umontreal.ca>
896
897 * woman.el (woman-decode-region): Disable adaptive-fill when rendering
898 (bug#12756).
899
900 2012-11-06 Glenn Morris <rgm@gnu.org>
901
902 * emacs-lisp/gv.el (gv-define-setter): Fix doc typo.
903
904 2012-11-05 Glenn Morris <rgm@gnu.org>
905
906 * emacs-lisp/cl-extra.el (cl-prettyexpand):
907 * emacs-lisp/cl-lib.el (cl-proclaim, cl-declaim):
908 * emacs-lisp/cl-macs.el (cl-destructuring-bind, cl-locally)
909 (cl-the, cl-compiler-macroexpand): Add basic doc strings.
910
911 * emacs-lisp/cl-extra.el (cl-maplist, cl-mapcan): Doc fix.
912
913 2012-11-03 Glenn Morris <rgm@gnu.org>
914
915 * emacs-lisp/cl-macs.el (cl-parse-loop-clause):
916 Rename handler properties back from cl-- to cl-. (Bug#12788)
917
918 * emacs-lisp/cl-macs.el (cl-do-all-symbols): Add doc string.
919
920 2012-11-03 Eli Zaretskii <eliz@gnu.org>
921
922 * term/pc-win.el: Don't load term/internal from here.
923
924 * loadup.el: Load term/internal from here.
925
926 2012-11-03 Fabián Ezequiel Gallina <fgallina@cuca>
927
928 * progmodes/python.el (inferior-python-mode): Fix hang in
929 jit-lock (Bug#12645).
930
931 2012-11-03 Martin Rudalics <rudalics@gmx.at>
932
933 * window.el (switch-to-visible-buffer)
934 (switch-to-buffer-preserve-window-point): Fix doc-strings.
935
936 2012-11-01 Stephen Berman <stephen.berman@gmx.net>
937
938 * play/gomoku.el (gomoku-display-statistics): Update mode line
939 only if in Gomoku buffer; don't capitalize "won" (Bug#12771).
940
941 2012-10-31 Martin Rudalics <rudalics@gmx.at>
942
943 * window.el (quit-restore-window): If the window has been
944 created on an existing frame and ended up as the sole window on
945 that frame, do not delete it (Bug#12764).
946
947 2012-10-31 Stefan Monnier <monnier@iro.umontreal.ca>
948
949 * progmodes/sh-script.el (sh--inside-noncommand-expression):
950 Rename from sh--inside-arithmetic-expression, handle more cases
951 (bug#11263).
952
953 * progmodes/sh-script.el (sh--inside-arithmetic-expression): New func.
954 (sh-font-lock-open-heredoc): Use it (bug#12770).
955
956 2012-10-30 Glenn Morris <rgm@gnu.org>
957
958 * emacs-lisp/cl-extra.el (cl-mapc): Add autoload cookie. Doc fix.
959
960 * emacs-lisp/cl.el (letf): Doc fix. (Bug#12760)
961
962 2012-10-29 Chong Yidong <cyd@gnu.org>
963
964 * isearch.el (isearch-other-meta-char): Ensure that a reprocessed
965 function key is stored in a keyboard macro (Bug#4894).
966
967 * thingatpt.el (number-at-point): Apply a thing-at-point property.
968
969 2012-10-29 Stefan Monnier <monnier@iro.umontreal.ca>
970
971 * vc/diff-mode.el (diff-context->unified): Don't get confused by "hunk
972 header comments".
973 (diff-unified->context, diff-context->unified)
974 (diff-reverse-direction, diff-fixup-modifs): Use `use-region-p'.
975
976 * emacs-lisp/cl.el (letf): Add missing indent rules (bug#12759).
977
978 * files.el (find-alternate-file): Only ask one question (bug#12487).
979
980 2012-10-29 Chong Yidong <cyd@gnu.org>
981
982 * vc/vc-hooks.el (vc-file-clearprops): Kill vc-parent-buffer.
983 Suggested by Dan Nicolaescu (Bug#6326).
984
985 * info.el (Info-complete-menu-item): Avoid duplicates (Bug#12705).
986
987 * startup.el (fancy-about-screen): Don't message (Bug#12680).
988
989 * thingatpt.el (thing-at-point): Doc fix (Bug#12691).
990
991 * imenu.el (imenu): Inhibit push-mark message (Bug#12726).
992
993 * face-remap.el (face-remap-add-relative): Handle the case where a
994 face-remapping-alist entry is a cons cell (Bug#12762).
995
996 2012-10-29 Kevin Ryde <user42@zip.com.au>
997
998 * woman.el (woman-parse-numeric-value): Handle picas correctly
999 (Bug#12639).
1000
1001 2012-10-29 Glenn Morris <rgm@gnu.org>
1002
1003 * emacs-lisp/cl.el (defsetf): Doc fix.
1004
1005 2012-10-29 Stefan Monnier <monnier@iro.umontreal.ca>
1006
1007 * progmodes/sh-script.el (sh-font-lock-paren): Also put punctuation
1008 syntax to the matching opener, if any (bug#12547).
1009 (sh-smie-sh-forward-token, sh-smie-sh-backward-token): Recognize this
1010 matching open as a "case-(".
1011 (sh-smie-rc-grammar): Add a corresponding rule for it.
1012
1013 2012-10-28 Daniel Hackney <dan@haxney.org>
1014
1015 * emacs-lisp/package.el (package-generate-autoloads): Kill buffer
1016 "PKGNAME-autoloads.el" in case we created it.
1017
1018 2012-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
1019
1020 * minibuffer.el (completion--sifn-requote): Rewrite to handle things
1021 like Tramp's "/foo:~bar//baz" -> "/scpc:foo:/baz" mapping (bug#11714).
1022 (completion--twq-all): Disable too-strict assertions.
1023
1024 * tmm.el (tmm-prompt): Use map-keymap (bug#12744).
1025
1026 2012-10-27 Eli Zaretskii <eliz@gnu.org>
1027
1028 * profiler.el (profiler-report-make-entry-part): Fix help-echo
1029 text to match the real keybindings.
1030
1031 2012-10-27 Juri Linkov <juri@jurta.org>
1032
1033 * wdired.el (wdired-keep-marker-rename): New defcustom.
1034 (wdired-do-renames): Use it instead of `dired-keep-marker-rename'.
1035 (Bug#11795)
1036
1037 * dired.el (dired-keep-marker-rename): Add reference to
1038 `wdired-keep-marker-rename' in the docstring.
1039 Add default character value ?R to display initially in
1040 Customization UI instead of ?@.
1041
1042 2012-10-27 Martin Rudalics <rudalics@gmx.at>
1043
1044 * window.el (display-buffer): In doc-string describe
1045 window-height and window-width alist entries.
1046
1047 * time.el (display-time-world): Restore fit-window-to-buffer
1048 behavior.
1049
1050 2012-10-27 Chong Yidong <cyd@gnu.org>
1051
1052 * subr.el (insert-buffer-substring-as-yank): Doc fix.
1053
1054 2012-10-26 Jambunathan K <kjambunathan@gmail.com>
1055
1056 * minibuffer.el (completion-category-overrides): New completion
1057 category `bookmark' (bug#11131).
1058
1059 2012-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
1060
1061 * emacs-lisp/advice.el (ad-assemble-advised-definition):
1062 Silence bogus compiler warnings for ad-do-it.
1063
1064 * bookmark.el (bookmark-completing-read): Set the completion category
1065 to `bookmark' (bug#11131).
1066
1067 2012-10-26 Bastien <bzg@altern.org>
1068 Stefan Monnier <monnier@iro.umontreal.ca>
1069
1070 * face-remap.el: Use lexical-binding.
1071 (text-scale-adjust): Improve docstring. Use itself for the temporary
1072 overlay-map bindings, so as to repeat the "Use..." message each time.
1073
1074 2012-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
1075
1076 * emacs-lisp/macroexp.el (macroexp--expand-all):
1077 Obey byte-compile-warning-enabled-p (bug#12486).
1078
1079 * vc/diff-mode.el (diff-end-of-hunk): Also skip potential "no LF at eol".
1080 (diff-refine-hunk): Similarly, handle the "no LF at eol" (bug#12584).
1081
1082 2012-10-26 Martin Rudalics <rudalics@gmx.at>
1083
1084 * mouse.el (mouse-drag-line): Move last form into preceding when
1085 clause (Bug#12731).
1086
1087 * help.el (resize-temp-buffer-window): Fix doc-string.
1088
1089 2012-10-25 David Engster <deng@randomsample.de>
1090
1091 * emacs-lisp/eieio.el (eieio-update-lisp-imenu-expression):
1092 Remove. This feature is already integrated in imenu.
1093
1094 * emacs-lisp/eieio-opt.el: Remove require for `button' since it is
1095 always loaded. Require `speedbar' unconditionally.
1096
1097 2012-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
1098
1099 * dired.el (dired-get-marked-files): Allow ! on . and .. (bug#12725).
1100
1101 * minibuffer.el (minibuffer-force-complete): Fix thinko.
1102
1103 * net/ldap.el (ldap-search-internal): The official ldif format starts
1104 with a "version: 1" header (bug#12724).
1105
1106 * emacs-lisp/package.el (package-installed-p): Warn if not ready
1107 (bug#12721).
1108
1109 2012-10-25 Glenn Morris <rgm@gnu.org>
1110
1111 * emacs-lisp/cl-macs.el (cl-progv): Doc fix.
1112
1113 2012-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
1114
1115 * minibuffer.el (minibuffer-force-complete): Use one more marker
1116 for the temporary-overlay-map command (bug#12619).
1117
1118 2012-10-24 Chong Yidong <cyd@gnu.org>
1119
1120 * time.el (display-time-world-mode): Derive from special-mode.
1121 (display-time-world): Use display-buffer (Bug#12708).
1122 (display-time-world-mode-map): Variable deleted.
1123 (display-time-world-display): Wrap the final delete-char inside
1124 inhibit-read-only.
1125
1126 2012-10-24 Chong Yidong <cyd@gnu.org>
1127
1128 * dired.el (dired-mark, dired-unmark, dired-flag-file-deletion):
1129 Doc fix.
1130
1131 * emacs-lisp/easymenu.el (easy-menu-define): Doc fix (Bug#12628).
1132
1133 2012-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
1134
1135 * minibuffer.el (completion--all-sorted-completions-location): New var.
1136 (completion--cache-all-sorted-completions)
1137 (completion--flush-all-sorted-completions): Use it.
1138 (completion-in-region, completion-in-region--postch)
1139 (completion-at-point, completion-help-at-point): Use markers in
1140 completion-in-region--data (bug#12619).
1141
1142 2012-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
1143
1144 * progmodes/compile.el (compilation-start): Try to handle common
1145 quoting of `cd' argument (bug#12640).
1146
1147 * vc/diff-mode.el (diff-hunk): `save-excursion' while refining
1148 (bug#12671).
1149
1150 2012-10-23 Glenn Morris <rgm@gnu.org>
1151
1152 * progmodes/gud.el (gud-menu-map):
1153 Check gdb-active-process is bound. (Bug#12358)
1154
1155 2012-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
1156
1157 * repeat.el (repeat): Set real-this-command (bug#12232).
1158
1159 * htmlfontify.el (hfy-post-html-hook):
1160 * filesets.el (filesets-cache-fill-content-hook):
1161 * arc-mode.el (archive-extract-hook):
1162 * progmodes/cc-mode.el (c-prepare-bug-report-hook):
1163 * net/rcirc.el (rcirc-sentinel-functions)
1164 (rcirc-receive-message-functions, rcirc-activity-functions)
1165 (rcirc-print-functions):
1166 * net/dbus.el (dbus-event-error-functions):
1167 * emacs-lisp/eieio.el (eieio-pre-method-execution-functions):
1168 * emacs-lisp/checkdoc.el (checkdoc-style-functions)
1169 (checkdoc-comment-style-functions): Don't use "-hooks" suffix.
1170 * term/sun.el (sun-raw-prefix-hooks):
1171 * mail/sendmail.el (mail-yank-hooks): Use make-obsolete-variable.
1172
1173 2012-10-23 Michael Albinus <michael.albinus@gmx.de>
1174
1175 * net/tramp-smb.el (tramp-smb-maybe-open-connection):
1176 Set `tramp-chunksize' to 1. This improves the performance.
1177 (tramp-smb-wait-for-output): Add timeout to
1178 `tramp-accept-process-output' calls.
1179
1180 2012-10-23 Chong Yidong <cyd@gnu.org>
1181
1182 * faces.el (font-list-limit): Define as an obsolete variable.
1183
1184 * startup.el (command-line):
1185 * cus-start.el: Don't refer to font-list-limit.
1186
1187 * newcomment.el (comment-normalize-vars): Doc fix (Bug#12583).
1188
1189 2012-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
1190
1191 * subr.el (internal-temp-output-buffer-show): Rename from
1192 temp-output-buffer-show, since previously compiled files expect this name.
1193
1194 2012-10-23 Glenn Morris <rgm@gnu.org>
1195
1196 * image.el (image-type-from-file-name): If multiple types match,
1197 return the first one that is supported. (Bug#9045)
1198
1199 2012-10-22 Glenn Morris <rgm@gnu.org>
1200
1201 * image.el (imagemagick-enabled-types): Doc fix.
1202
1203 2012-10-22 Takafumi Arakaki <aka.tkf@gmail.com> (tiny change)
1204
1205 * progmodes/which-func.el (which-func-current): The hash-table may have
1206 an explicit nil (bug#12338).
1207
1208 2012-10-22 Stefan Monnier <monnier@iro.umontreal.ca>
1209
1210 * electric.el (electric-pair-delete-selection-self-insert-function):
1211 Rename to electric-pair-will-use-region, return a boolean.
1212 (electric-pair-mode): Adjust accordingly. Don't require delsel.
1213
1214 * delsel.el (delete-selection-helper): Use a function instead of a hook.
1215 (delete-selection-pre-hook): Use use-region-p.
1216 (delete-selection-self-insert-function): Remove.
1217 (self-insert-command): Obey self-insert-uses-region-functions.
1218 (self-insert-iso): Revert to previous setting, since we don't actually
1219 know what that command does.
1220 (delete-selection-self-insert-hooks): Remove.
1221
1222 2012-10-22 Simon Law <sfllaw@sfllaw.ca> (tiny change)
1223
1224 * delsel.el (delete-selection-helper): New function, extracted from
1225 delete-selection-pre-hook.
1226 (delete-selection-pre-hook): Use it.
1227 (delete-selection-self-insert-function): New function.
1228 (delete-selection-self-insert-hooks): New hook.
1229 (self-insert-command, self-insert-iso): Use it.
1230 * electric.el (electric-pair-syntax): New function, extracted from
1231 electric-pair-post-self-insert-function.
1232 (electric-pair-post-self-insert-function): Use it.
1233 (electric-pair-delete-selection-self-insert-function): New function.
1234 (electric-pair-mode): Require delsel and setup
1235 delete-selection-self-insert-hooks (bug#11520).
1236
1237 2012-10-20 Chong Yidong <cyd@gnu.org>
1238
1239 * vc/vc.el (vc-diff-internal): Set up Diff mode even if there are
1240 no changes to show (Bug#12586).
1241
1242 * eshell/esh-cmd.el (eshell-rewrite-for-command): Copy the body
1243 list explicitly (Bug#12571).
1244
1245 2012-10-20 Arne Jørgensen <arne@arnested.dk>
1246
1247 * progmodes/flymake.el (flymake-create-temp-inplace):
1248 Use file-truename.
1249
1250 2012-10-20 Eli Zaretskii <eliz@gnu.org>
1251
1252 * loadup.el: Update comment about uncompiled Lisp files. (Bug#12395)
1253
1254 2012-10-20 Jay Belanger <jay.p.belanger@gmail.com>
1255
1256 * calc/calc-units.el (math-extract-units): Properly extract powers
1257 of units.
1258
1259 2012-10-20 Daniel Colascione <dancol@dancol.org>
1260
1261 * frame.el (make-frame): Set x-display-name as we used to in order
1262 to unbreak creating an X11 frame from an Emacs daemon started
1263 without a display.
1264
1265 2012-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
1266
1267 * minibuffer.el (minibuffer-force-complete): Make the next completion use
1268 the same completion-field (bug@12221).
1269
1270 2012-10-19 Martin Rudalics <rudalics@gmx.at>
1271
1272 * emacs-lisp/debug.el (debug): Record height of debugger window
1273 also when debugger will be back (Bug#8789).
1274
1275 2012-10-18 Chong Yidong <cyd@gnu.org>
1276
1277 * progmodes/gdb-mi.el (gdb-display-buffer-other-frame-action):
1278 Convert to defcustom.
1279 (gdb-get-source-file): Don't bind pop-up-windows.
1280
1281 * progmodes/gud.el (gud-display-line): Don't specially re-use
1282 other frames for the gdb-mi case (Bug#12648).
1283
1284 2012-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
1285
1286 * emacs-lisp/advice.el: Clean up commentary a bit.
1287 (ad-do-advised-functions, ad-with-originals): Use `declare'.
1288 (byte-code-function-p): Never redefine.
1289
1290 * emacs-lisp/gv.el (cond): Same fix as before for `if'.
1291
1292 2012-10-18 Glenn Morris <rgm@gnu.org>
1293
1294 * dired.el (dired-sort-toggle): Some ls implementations only allow
1295 a single option string. (Bug#12666)
1296
1297 * minibuffer.el (completion-cycle-threshold): Doc fix.
1298
1299 2012-10-17 Kenichi Handa <handa@gnu.org>
1300
1301 * international/mule.el (set-keyboard-coding-system):
1302 Recover input meta mode when the new coding system doesn not use 8-bit.
1303 Supply TERMINAL arg to set-input-meta-mode.
1304
1305 2012-10-17 Michael Heerdegen <michael_heerdegen@web.de>
1306
1307 * wdired.el (wdired-old-marks): New variable.
1308 (wdired-change-to-wdired-mode): Locally set wdired-old-marks.
1309 (wdired-do-renames): Move point with renamed file and don't lose
1310 mark status (Bug#11795).
1311
1312 2012-10-16 Juri Linkov <juri@jurta.org>
1313
1314 * replace.el (query-replace-help): Mention multi-buffer replacement
1315 keys in the Help message. (Bug#12655)
1316
1317 2012-10-15 Chong Yidong <cyd@gnu.org>
1318
1319 * emacs-lisp/byte-run.el (defsubst): Doc fix.
1320
1321 2012-10-14 Eli Zaretskii <eliz@gnu.org>
1322
1323 * window.el (display-buffer): Doc fix.
1324
1325 * progmodes/compile.el (compilation-error-regexp-alist-alist):
1326 Adjust the msft regexp to the output of Studio 2010, and move msft
1327 before edg-1. See the discussion on emacs-devel,
1328 http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00579.html,
1329 for the details.
1330
1331 2012-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
1332
1333 * emacs-lisp/eieio.el (eieio-oset-default, eieio-oset, oset-default)
1334 (oset): Move uses of object-class-fast macro after its definition.
1335
1336 * emacs-lisp/gv.el (if): Don't use closures in non-lexical-binding code.
1337
1338 2012-10-13 Chong Yidong <cyd@gnu.org>
1339
1340 * textmodes/ispell.el (ispell-pdict-save): If flyspell-mode is
1341 enabled, re-enable it (Bug#11963).
1342
1343 2012-10-13 Martin Rudalics <rudalics@gmx.at>
1344
1345 * emacs-lisp/debug.el (debug): When debugger-will-be-back is
1346 non-nil, restore window configuration (Bug#12623).
1347
1348 2012-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
1349
1350 * help-fns.el (describe-variable, describe-function-1):
1351 * help-mode.el (help-make-xrefs): Remove error handler, made unneeded.
1352
1353 * emacs-lisp/eieio.el (lisp-imenu-generic-expression): Fix typo.
1354
1355 2012-10-12 Glenn Morris <rgm@gnu.org>
1356
1357 * mail/rmailsum.el (rmail-header-summary):
1358 Fix 2010-11-26 test for multiline Subject: field. (Bug#12625)
1359
1360 2012-10-12 Fabián Ezequiel Gallina <fgallina@cuca>
1361
1362 * progmodes/python.el (python-mode-map):
1363 Replace subtitute-key-definition with proper command remapping.
1364 (python-nav--up-list): Fix behavior for blocks on the same level.
1365
1366 2012-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
1367
1368 * help-fns.el (describe-function-1): Handle autoloads w/o docstrings.
1369
1370 * emacs-lisp/bytecomp.el (byte-compile-eval): Adjust to long-ago
1371 changes to the format of load-history.
1372
1373 * international/mule-cmds.el (read-char-by-name): Move let-binding of
1374 completion-ignore-case in case that var is buffer-local (bug#12615).
1375
1376 2012-10-11 Kenichi Handa <handa@gnu.org>
1377
1378 * international/eucjp-ms.el: Re-generated.
1379
1380 2012-10-10 Kenichi Handa <handa@gnu.org>
1381
1382 * select.el (xselect--encode-string): If a coding is specified for
1383 selection, and that is compatible with COMPOUND_TEXT, use it.
1384
1385 2012-10-10 Martin Rudalics <rudalics@gmx.at>
1386
1387 * window.el (switch-to-buffer-preserve-window-point): New option.
1388 (switch-to-buffer):
1389 Obey `switch-to-buffer-preserve-window-point' (Bug#4041).
1390
1391 2012-10-09 Stefan Monnier <monnier@iro.umontreal.ca>
1392
1393 * newcomment.el (comment-start-skip, comment-end-skip, comment-end):
1394 Don't document nil as a useful value (bug#12583).
1395
1396 2012-10-09 Michael Albinus <michael.albinus@gmx.de>
1397
1398 * net/tramp.el (tramp-debug-message):
1399 Remove "tramp-with-progress-reporter" from regexp of ignored functions.
1400 (with-tramp-progress-reporter): Rename from
1401 `tramp-with-progress-reporter'.
1402 (with-tramp-file-property, with-tramp-connection-property):
1403 Move from tramp-cache.el, rename from `with-file-property' and
1404 `with-connection-property', respectively.
1405
1406 * net/tramp-cache.el: Remove `with-file-property' and
1407 `with-connection-property'.
1408
1409 * net/tramp.el:
1410 * net/tramp-gvfs.el:
1411 * net/tramp-sh.el:
1412 * net/tramp-smb.el: Adapt callees.
1413
1414 * net/trampver.el: Update release number.
1415
1416 2012-10-09 Glenn Morris <rgm@gnu.org>
1417
1418 * w32-fns.el (set-message-beep):
1419 * term/w32-win.el (set-message-beep): Update declarations.
1420
1421 2012-10-09 Stefan Monnier <monnier@iro.umontreal.ca>
1422
1423 * bindings.el (mode-line-toggle-read-only, mode-line-toggle-modified)
1424 (mode-line-widen, mode-line-input-method-map)
1425 (mode-line-coding-system-map, mode-line-remote)
1426 (mode-line-unbury-buffer, mode-line-bury-buffer)
1427 (mode-line-next-buffer, mode-line-previous-buffer):
1428 Replace save-selected-window+select-window => with-selected-window.
1429
1430 * progmodes/cc-bytecomp.el (cc-bytecomp-defmacro): Remove, unused.
1431 * progmodes/cc-vars.el (bq-process): Remove, unused.
1432
1433 * emacs-lisp/cl-macs.el (cl-defstruct): Obey the :read-only property.
1434
1435 2012-10-09 Fabián Ezequiel Gallina <fgallina@cuca>
1436
1437 Implemented `backward-up-list'-like navigation.
1438 * progmodes/python.el (python-nav-up-list)
1439 (python-nav-backward-up-list): New functions.
1440 (python-mode-map): Define substitute key for backward-up-list to
1441 python-nav-backward-up-list.
1442
1443 2012-10-08 Fabián Ezequiel Gallina <fgallina@cuca>
1444
1445 * progmodes/python.el (python-fill-paragraph): Rename from
1446 python-fill-paragraph-function. Fixed fill-paragraph for
1447 decorators (Bug#12605).
1448
1449 2012-10-08 Fabián Ezequiel Gallina <fgallina@cuca>
1450
1451 * progmodes/python.el (python-shell-output-filter): Handle extra
1452 carriage return in OSX (Bug#12409).
1453
1454 2012-10-08 Fabián Ezequiel Gallina <fgallina@cuca>
1455
1456 Fix shell handling of unbalanced quotes and parens in output.
1457 * progmodes/python.el (python-rx-constituents): Add string-delimiter.
1458 (python-syntax-propertize-function): Use it.
1459 (python-shell-output-syntax-table): New var.
1460 (inferior-python-mode): Prevent unbalanced parens/quotes from
1461 previous output mess with current input context.
1462
1463 2012-10-08 Juanma Barranquero <lekktu@gmail.com>
1464
1465 * generic-x.el (javascript-generic-mode, javascript-generic-mode-hook):
1466 Make obsolete aliases of js-mode and js-mode-hook (from js.el).
1467
1468 2012-10-08 Michael Albinus <michael.albinus@gmx.de>
1469
1470 * ffap.el (ffap-replace-file-component): Support Tramp file name
1471 syntax, not only ange-ftp's one.
1472
1473 2012-10-08 Glenn Morris <rgm@gnu.org>
1474
1475 * cus-start.el (message-log-max): Set :version.
1476
1477 * calendar/calendar.el (calendar-intermonth-header): Doc fix.
1478
1479 2012-10-08 Martin Rudalics <rudalics@gmx.at>
1480
1481 * emacs-lisp/edebug.el (edebug-pop-to-buffer): Don't try to split
1482 the minibuffer window (Bug#10851).
1483
1484 2012-10-08 Fabián Ezequiel Gallina <fgallina@cuca>
1485
1486 Enhancements on forward-sexp movement.
1487 * progmodes/python.el (python-nav-beginning-of-statement)
1488 (python-nav-end-of-statement): Return point-marker.
1489 (python-nav-forward-sexp): lisp-like forward-sexp behavior.
1490 (python-info-current-symbol)
1491 (python-info-statement-starts-block-p): Rename from
1492 python-info-beginning-of-block-p.
1493 (python-info-statement-ends-block-p): Rename from
1494 python-info-end-of-block-p.
1495 (python-info-beginning-of-statement-p)
1496 (python-info-end-of-statement-p)
1497 (python-info-beginning-of-block-p, python-info-end-of-block-p):
1498 New functions.
1499
1500 2012-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
1501
1502 * comint.el (comint-preinput-scroll-to-bottom): Preserve the
1503 frame-selected-windows.
1504
1505 2012-10-08 Daniel Colascione <dancol@dancol.org>
1506
1507 * battery.el (battery-status-function): Check for
1508 w32-battery-status itself, not system-time windows-nt.
1509
1510 * frame.el: Require cl-lib.
1511 (display-format-alist): New variable mapping frame types to
1512 functions that initialize them.
1513 (window-system-for-display): New function: interprets
1514 display-format-alist.
1515 (make-frame-on-display): Remove existing display-selection logic
1516 and just forward to make-frame, which will now DTRT.
1517 (make-frame): Restructure to use window-system-for-display to
1518 figure out how to create a frame on a given display.
1519 (display-mouse-p): Look for frame-type w32, not a particular
1520 system-type.
1521
1522 * loadup.el: Load w32 lisp code when we have the w32 feature.
1523
1524 * mouse.el (mouse-yank-primarY): Look for frame-type w32, not
1525 system-type windows-nt.
1526
1527 * server.el (server-create-window-system-frame): Look for window
1528 type.
1529 (server-proces-filter): Only force a window system when windows-nt
1530 _and_ w32. Explain why.
1531
1532 * simple.el (normal-erase-is-backspace-mode): Add w32 to the list
1533 of window systems we configure for the mode.
1534
1535 * startup.el (command-line): Mark window system is initialized
1536 after we've done it.
1537
1538 * common-win.el (x-select-text): Look for w32, not windows-nt.
1539
1540 * ns-win.el: Require cl-lib. Add ourselves to
1541 display-format-alist.
1542 (ns-initialize-window-system): Assert we're not initialized twice.
1543
1544 * w32-win.el: Enable lexical binding; require cl-lib; add
1545 ourselves to display-format-alist.
1546 (w32-handle-dropped-file): Convert incoming dropped files from
1547 Windows paths to Cygwin ones before passing them on to the rest of
1548 Emacs.
1549 (w32-drag-n-drop): New paramter new-frame. Simplify logic.
1550 (w32-initialize-window-system): Assert we're not initialized twice.
1551
1552 * x-win.el: Require cl-lib; add ourselves to display-format-alist.
1553 (x-initialize-window-system): Assert we're not initialized twice.
1554
1555 * w32-common-fns.el: New File.
1556 (w32-version, w32-using-nt, w32-get-clipboard-data)
1557 (w32-set-clipboard-data, x-set-selection, x-get-selection)
1558 (w32-charset-info-alist, x-last-selected, text)
1559 (x-get-selection-value, x-selection-value): Move here.
1560
1561 * w32-fns.el: Require w32-common-fns.
1562 (w32-version, w32-using-nt, w32-get-clipboard-data)
1563 (w32-set-clipboard-data, x-set-selection, x-get-selection)
1564 (w32-charset-info-alist, x-last-selected, text)
1565 (x-get-selection-value, x-selection-value): Move to
1566 w32-common-fns.
1567
1568 * w32-vars.el:
1569 (w32-allow-system-shell, w32-system-shells): Define only in
1570 non-cygwin case.
1571
1572 2012-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
1573
1574 * subr.el (read-passwd-map): Don't use `defconst' (bug#12597).
1575 (read-passwd): Remove a few more potential sources of leaks.
1576
1577 2012-10-07 Fabián Ezequiel Gallina <fgallina@cuca>
1578
1579 * progmodes/python.el (inferior-python-mode)
1580 (python-shell-make-comint): Fix initialization of local
1581 variables copied from parent buffer.
1582
1583 2012-10-07 Jan Djärv <jan.h.d@swipnet.se>
1584
1585 * term/ns-win.el (ns-read-file-name): Update declaration to match
1586 nsfns.m.
1587 (ns-respond-to-change-font): Change fontsize separatly so we are sure
1588 it is set when font is acted upon.
1589
1590 2012-10-07 Fabián Ezequiel Gallina <fgallina@cuca>
1591
1592 Enhancements to indentation.
1593 * progmodes/python.el (python-indent-context): Give priority to
1594 inside-string context. Make comments indentation markers.
1595 (python-indent-region): Do not mess with strings, unless it's the
1596 enclosing set of quotes.
1597
1598 2012-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
1599
1600 * window.el (internal--before-save-selected-window)
1601 (internal--after-save-selected-window): New functions extracted from
1602 save-selected-window. Make sure we return the `alist' we construct.
1603 (save-selected-window): Use them.
1604
1605 * textmodes/tex-mode.el (tex-recenter-output-buffer):
1606 Use with-selected-window.
1607
1608 * emacs-lisp/autoload.el (make-autoload): Add `cl-defmacro' to the
1609 forms that define macros (bug#12593).
1610
1611 2012-10-07 Kenichi Handa <handa@gnu.org>
1612
1613 * international/mule-conf.el (compound-text-with-extensions):
1614 Add :mime-charset property as x-ctext.
1615
1616 2012-10-07 Stefan Merten <smerten@oekonux.de>
1617
1618 * textmodes/rst.el (rst-new-adornment-down, rst-indent-field)
1619 (rst-indent-literal-normal, rst-indent-literal-minimized)
1620 (rst-indent-comment): Correct :version tag.
1621 (rst-official-cvs-rev): Correct version string.
1622
1623 2012-10-07 Glenn Morris <rgm@gnu.org>
1624
1625 * mail/rmailmm.el (rmail-mime-process-multipart):
1626 Do not confuse a multipart message with an epilogue
1627 with a "truncated" one; fixes 2011-06-27 change. (Bug#10101)
1628
1629 2012-10-07 Fabián Ezequiel Gallina <fgallina@cuca>
1630
1631 Fix shell output retrieval and comint-prompt-regexp init.
1632 * progmodes/python.el (inferior-python-mode):
1633 (python-shell-make-comint): Fix initialization of
1634 comint-prompt-regexp from copied file local variables.
1635 (python-shell-fetched-lines): Remove var.
1636 (python-shell-output-filter-in-progress): Rename from
1637 python-shell-fetch-lines-in-progress.
1638 (python-shell-output-filter-buffer): Rename from
1639 python-shell-fetch-lines-string.
1640 (python-shell-fetch-lines-filter): Delete function.
1641 (python-shell-output-filter): New function.
1642 (python-shell-send-string-no-output): Use them.
1643
1644 2012-10-07 Glenn Morris <rgm@gnu.org>
1645
1646 * hi-lock.el (hi-lock-process-phrase):
1647 Try to make it less fragile. (Bug#7161)
1648
1649 * hi-lock.el (hi-lock-face-phrase-buffer): Doc fix.
1650
1651 2012-10-06 Glenn Morris <rgm@gnu.org>
1652
1653 * ehelp.el (electric-help-mode): Use help-mode rather than
1654 non-existent mode `help'.
1655 (electric-help-map): Use button-buffer-map. (Bug#10917)
1656
1657 * textmodes/reftex-vars.el (reftex-create-bibtex-header)
1658 (reftex-create-bibtex-footer): Fix custom types.
1659
1660 * progmodes/sh-script.el (sh-indent-after-continuation):
1661 Add explicit :group.
1662
1663 * textmodes/rst.el (rst-preferred-decorations)
1664 (rst-shift-basic-offset): Clarify obsolescence versions.
1665
1666 * profiler.el (profiler): Add missing group :version tag.
1667 * avoid.el (mouse-avoidance-banish-position):
1668 * proced.el (proced-renice-command):
1669 * calc/calc.el (calc-ensure-consistent-units):
1670 * calendar/icalendar.el (icalendar-import-format-uid):
1671 * net/tramp.el (tramp-save-ad-hoc-proxies):
1672 * progmodes/bug-reference.el (bug-reference-bug-regexp):
1673 * progmodes/flymake.el (flymake-error-bitmap)
1674 (flymake-warning-bitmap, flymake-fringe-indicator-position):
1675 * progmodes/sh-script.el (sh-indent-after-continuation):
1676 * progmodes/verilog-mode.el (verilog-auto-template-warn-unused)
1677 (verilog-before-save-font-hook, verilog-after-save-font-hook):
1678 * progmodes/vhdl-mode.el (vhdl-makefile-default-targets)
1679 (vhdl-array-index-record-field-in-sensitivity-list)
1680 (vhdl-indent-comment-like-next-code-line):
1681 * textmodes/reftex-vars.el (reftex-ref-style-alist)
1682 (reftex-ref-macro-prompt, reftex-ref-style-default-list)
1683 (reftex-cite-key-separator, reftex-create-bibtex-header)
1684 (reftex-create-bibtex-footer):
1685 * textmodes/rst.el (rst-new-adornment-down, rst-indent-field)
1686 (rst-indent-literal-normal, rst-indent-literal-minimized)
1687 (rst-indent-comment): Add missing custom :version tags.
1688
1689 * calendar/timeclock.el (timeclock-modeline-display):
1690 Add missing obsolete alias for renamed user option.
1691
1692 * strokes.el (strokes-modeline-string):
1693 * emulation/crisp.el (crisp-mode-modeline-string):
1694 * eshell/esh-mode.el (eshell-status-in-modeline):
1695 Aliases to defcustoms must come before the defcustom.
1696
1697 * calendar/cal-tex.el (cal-tex-diary, cal-tex-cursor-week)
1698 (cal-tex-cursor-week2, cal-tex-cursor-week-iso)
1699 (cal-tex-cursor-week-monday): Doc fixes.
1700 (cal-tex-cursor-week2-summary): Doc fix.
1701 Rename from cal-tex-cursor-week-at-a-glance.
1702
1703 * calendar/cal-menu.el (cal-menu-context-mouse-menu):
1704 Tweak week descriptions. Add cal-tex-cursor-week2-summary.
1705
1706 * calendar/calendar.el (calendar-mode-map):
1707 Add cal-tex-cursor-week2-summary.
1708
1709 2012-10-06 Stefan Monnier <monnier@iro.umontreal.ca>
1710
1711 * emacs-lisp/cl-macs.el (cl-defstruct): Improve docstring.
1712
1713 * subr.el (read-passwd-map): New var.
1714 (read-passwd): Use `read-string' again.
1715 * minibuffer.el (delete-minibuffer-contents): Make it interactive.
1716
1717 2012-10-06 Jambunathan K <kjambunathan@gmail.com>
1718
1719 * register.el (append-to-register, prepend-to-register):
1720 Deactivate mark, as does `copy-to-register' (bug#12389).
1721
1722 2012-10-06 Chong Yidong <cyd@gnu.org>
1723
1724 * files.el (auto-mode-alist): Add .by and .wy (Semantic grammars).
1725
1726 2012-10-06 Ikumi Keita <ikumi@ikumi.que.jp> (tiny change)
1727
1728 * international/characters.el: Fix simple mistake ((car chars) ->
1729 elt), delete duplicated code.
1730
1731 2012-10-06 Glenn Morris <rgm@gnu.org>
1732
1733 * subr.el (read-passwd): Allow C-u to erase entry. (Bug#12570)
1734
1735 2012-10-06 Julian Scheid <julians37@gmail.com> (tiny change)
1736
1737 * color.el (color-hsl-to-rgb): Fix incorrect results for
1738 small and large hue values. (Bug#12559)
1739
1740 2012-10-05 Fabián Ezequiel Gallina <fgallina@cuca>
1741
1742 Enhancements to docstring formatting when filling paragraphs.
1743 * progmodes/python.el (python-fill-docstring-style): Rename from
1744 python-fill-string-style. Added new style.
1745 (python-fill-string): Use new style. Better checks for
1746 docstrings.
1747
1748 2012-10-05 Glenn Morris <rgm@gnu.org>
1749
1750 * net/newst-treeview.el (newsticker-group-move-feed): Doc fix.
1751
1752 * color.el (color-name-to-rgb, color-rgb-to-hex)
1753 (color-hue-to-rgb, color-hsl-to-rgb, color-rgb-to-hsv)
1754 (color-rgb-to-hsl, color-srgb-to-xyz, color-saturate-hsl)
1755 (color-desaturate-hsl, color-desaturate-name, color-lighten-hsl)
1756 (color-lighten-name, color-darken-hsl, color-darken-name): Doc fixes.
1757
1758 * emacs-lisp/timer.el (with-timeout): Add missing progn. (Bug#12577)
1759
1760 2012-10-05 Juanma Barranquero <lekktu@gmail.com>
1761
1762 * ido.el (ido-directory-too-big-p): Pass dir through file-truename
1763 to get the correct size across symlinks.
1764
1765 * ido.el (ido-buffer-disable-smart-matches): Fix typo in docstring.
1766
1767 2012-10-04 Juri Linkov <juri@jurta.org>
1768
1769 * replace.el (query-replace-interactive): Declare obsolete.
1770 (query-replace-read-from): Add the last incremental search string
1771 to the list of default values accessible via M-n.
1772 (map-query-replace-regexp): Use `read-regexp'.
1773 (query-replace, query-replace-regexp, query-replace-regexp-eval)
1774 (map-query-replace-regexp, replace-string, replace-regexp):
1775 Fix docstrings to replace mentions of `query-replace-interactive'
1776 with alternatives. (Bug#12526)
1777
1778 2012-10-04 Juri Linkov <juri@jurta.org>
1779
1780 * dired.el (dired-shrink-to-fit): Declare obsolete. (Bug#1806)
1781 (dired-pop-to-buffer): Declare obsolete.
1782 (dired-mark-pop-up): Doc fix.
1783
1784 2012-10-04 Fabián Ezequiel Gallina <fgallina@cuca>
1785
1786 Allow user to set docstring style for fill-paragraph.
1787 * progmodes/python.el
1788 (python-fill-comment-function, python-fill-string-function)
1789 (python-fill-decorator-function, python-fill-paren-function):
1790 Remove :safe for defcustoms.
1791 (python-fill-string-style): New defcustom
1792 (python-fill-paragraph-function): Enhance context detection.
1793 (python-fill-string): Honor python-fill-string-style settings.
1794
1795 2012-10-04 Martin Rudalics <rudalics@gmx.at>
1796
1797 * emacs-lisp/edebug.el (edebug-pop-to-buffer): Select window
1798 after setting its buffer (Bug#10805).
1799
1800 2012-10-03 Fabián Ezequiel Gallina <fgallina@cuca>
1801
1802 Fix cornercase for string syntax.
1803 * progmodes/python.el (python-syntax-propertize-function):
1804 Simplify and enhance the regexp for unescaped quotes. Now it also
1805 matches quotes in weird situations like the single quote in
1806 "something\"'".
1807 (python-syntax-stringify): Simplify num-quotes detecting code.
1808
1809 2012-10-03 Glenn Morris <rgm@gnu.org>
1810
1811 * help-macro.el (three-step-help):
1812 Revert 2012-09-29 change. (Bug#12567)
1813
1814 2012-10-03 Martin Rudalics <rudalics@gmx.at>
1815
1816 * menu-bar.el (kill-this-buffer): Don't do anything when
1817 `menu-frame' is not alive or visible (Bug#8184).
1818
1819 * emacs-lisp/debug.el (debug): When quitting the debugger window
1820 restore current buffer (Bug#12502).
1821
1822 2012-10-02 Chong Yidong <cyd@gnu.org>
1823
1824 * progmodes/hideif.el (hif-lookup, hif-defined):
1825 Handle semantic-c-takeover-hideif.
1826
1827 2012-10-02 Paul Eggert <eggert@cs.ucla.edu>
1828
1829 Change sampling interval units from ms to ns.
1830 * profiler.el (profiler-sampling-interval): Change units
1831 from ms to ns, multiplying the default by 1000000 so that
1832 it remains 1 ms.
1833 (profiler-report-cpu-line-format): Give enough room for
1834 the maximum counters on 64-bit hosts.
1835 (profiler-report-render-calltree-1): Call them "CPU samples",
1836 not "Time (ms)", since they are not milliseconds now (and
1837 never really were).
1838
1839 2012-10-02 Sergio Durigan Junior <sergiodj@riseup.net> (tiny change)
1840
1841 * net/eudcb-bbdb.el (eudc-bbdb-format-record-as-result):
1842 Fix querying BBDB for entries without a last name (Bug#11580).
1843
1844 2012-10-02 Chong Yidong <cyd@gnu.org>
1845
1846 * emacs-lisp/eieio.el: Restore Version header.
1847
1848 2012-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
1849
1850 * vc/diff-mode.el (diff--auto-refine-data): New var.
1851 (diff-hunk): Use it to delay refinement.
1852 (diff-mode): Remove overlays when we turn off font-lock.
1853
1854 * textmodes/table.el: Use lexical-binding, dolist, define-minor-mode.
1855 (table-initialize-table-fixed-width-mode)
1856 (table-set-table-fixed-width-mode): Remove functions.
1857 (table-command-list): Move initialization into declaration.
1858 (table--tweak-menu-for-xemacs): Move defun outside mapcar.
1859 (table-with-cache-buffer): Use `declare'.
1860 (table-span-cell): Simplify via CSE.
1861 (table-fixed-width-mode): Use define-minor-mode.
1862 (table-call-interactively, table-funcall, table-apply): Remove.
1863 (table-function): New function, to replace them.
1864
1865 * bookmark.el (bookmark-search-pattern): Remove var.
1866 (bookmark-read-search-input): Remove function.
1867 (bookmark-bmenu-search): Reimplement using a minibuffer.
1868
1869 * faces.el (modeline): Remove obsolete face name.
1870
1871 * vc/add-log.el (add-log-buffer-file-name-function): Demote to defvar
1872 and give a non-nil default value.
1873 (add-change-log-entry): Simplify accordingly.
1874
1875 2012-10-01 Dmitry Gutov <dgutov@yandex.ru>
1876
1877 * vc/vc-git.el (vc-git-log-edit-toggle-signoff): New function.
1878 (vc-git-log-edit-toggle-amend): New function.
1879 (vc-git-log-edit-toggle-signoff): New function.
1880 (vc-git-log-edit-mode): New major mode.
1881 (vc-git-log-edit-mode-map): Keymap for it.
1882 (vc-git-checkin): Handle "Amend" and "Sign-Off" headers.
1883
1884 * vc/log-edit.el (log-edit-font-lock-keywords): Allow hyphens in
1885 header names.
1886 (log-edit-toggle-header): New function.
1887 (log-edit-extract-headers): Accept function values in HEADERS alist.
1888
1889 2012-10-01 David Engster <deng@randomsample.de>
1890
1891 * emacs-lisp/eieio-opt.el (eieio-describe-class): Add filename
1892 from symbol property and change message to be more consistent with
1893 Emacs proper.
1894 (eieio-describe-generic): Add filename for each implementation.
1895 Fix indices for generic and normal methods.
1896 (eieio-method-def, eieio-class-def): New buttons.
1897 (eieio-help-find-method-definition)
1898 (eieio-help-find-class-definition): New functions.
1899 (eieio-help-mode-augmentation-maybee): Add buttons to filenames of
1900 class, constructor and method definitions.
1901
1902 * emacs-lisp/eieio.el (eieiomt-add, eieio-defclass): Save file
1903 information in symbol property.
1904 (scoped-class): Remove.
1905 (eieio-slot-name-index, call-next-method): Check if it is bound.
1906
1907 2012-10-01 Leo P. White <lpw25@cam.ac.uk>
1908
1909 * emacs-lisp/eieio-custom.el (eieio-custom-mode-map): New option.
1910 (eieio-custom-mode): New major mode.
1911 (eieio-customize-object): Use it.
1912
1913 2012-10-01 Eric Ludlam <zappo@gnu.org>
1914
1915 * emacs-lisp/eieio-base.el (eieio-persistent-read): New input args
1916 specifying the expected class, and whether subclassing is allowed.
1917 (eieio-persistent-convert-list-to-object):
1918 (eieio-persistent-validate/fix-slot-value)
1919 (eieio-persistent-slot-type-is-class-p): New functions.
1920 (eieio-named::slot-missing): Doc fix.
1921
1922 * emacs-lisp/eieio-datadebug.el (data-debug/eieio-insert-slots):
1923 Stop using unused publd variable.
1924
1925 * emacs-lisp/eieio-speedbar.el (eieio-speedbar-handle-click):
1926 (eieio-speedbar-description, eieio-speedbar-derive-line-path)
1927 (eieio-speedbar-object-buttonname, eieio-speedbar-make-tag-line)
1928 (eieio-speedbar-handle-click): Do not specify a class for the
1929 method. Fixes method invocation order problems with EDE.
1930
1931 2012-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
1932
1933 * emacs-lisp/bytecomp.el (byte-compiler-abbreviate-file): New function.
1934 (byte-compile-warning-prefix, byte-compile-file): Use it (bug#12508).
1935
1936 2012-10-01 Karl Fogel <kfogel@red-bean.com>
1937
1938 * bookmark.el (bookmark-version-control): Give tags in the
1939 :type choices (Bug#12309), and improve doc string.
1940 (bookmark-write-file): Bind `print-circle' to `t' to allow
1941 circular custom bookmark types. (Bug#12503)
1942
1943 2012-10-01 Paul Eggert <eggert@cs.ucla.edu>
1944
1945 Revert the FOLLOW-SYMLINKS change for file-attributes.
1946 * files.el (remote-file-name-inhibit-cache, after-find-file):
1947 * time.el (display-time-file-nonempty-p): Undo last change.
1948
1949 * profiler.el (profiler-sampling-interval): Change default back to 1.
1950 See Stefan Monnier in
1951 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00863.html>.
1952
1953 2012-10-01 Fabián Ezequiel Gallina <fgallina@cuca>
1954
1955 Shell output catching a la gud-gdb.
1956 * progmodes/python.el (python-shell-fetch-lines-in-progress)
1957 (python-shell-fetch-lines-string, python-shell-fetched-lines):
1958 New Vars.
1959 (python-shell-fetch-lines-filter): New function.
1960 (python-shell-send-string-no-output): Use them.
1961
1962 2012-09-30 Tomohiro Matsuyama <tomo@cx4a.org>
1963
1964 * profiler.el (profiler-sampling-interval): Rename from
1965 profiler-sample-interval.
1966 (profiler-sampling-interval): Default to 10.
1967 (profiler-find-profile): New command (was profiler-find-log).
1968 (profiler-find-profile-other-window): New command.
1969 (profiler-find-profile-other-frame): New command.
1970 (profiler-profile): Introduce API-level data structure.
1971
1972 2012-09-30 Paul Eggert <eggert@cs.ucla.edu>
1973
1974 file-attributes has a new optional arg FOLLOW-SYMLINKS.
1975 * files.el (remote-file-name-inhibit-cache):
1976 * time.el (display-time-file-nonempty-p): Use it.
1977 * files.el (after-find-file): Don't chase links before calling
1978 file-exists-p, as file-exists-p already does the right thing.
1979
1980 2012-09-30 Ralf Angeli <angeli@caeruleus.net>
1981
1982 Merge from standalone RefTeX repository.
1983
1984 The following ChangeLog entries are shortened versions of the
1985 original ones with file paths adapted. A not so strongly edited
1986 version of the original ChangeLog can be found in the commit log.
1987
1988 * textmodes/reftex-auc.el: Move `provide' call to bottom of file.
1989 (reftex-arg-cite): Use `reftex-cite-key-separator'.
1990 Correctly handle new value type returned by `reftex-citation'.
1991
1992 * textmodes/reftex-cite.el (reftex-create-bibtex-file): Make sure
1993 that entries with whitespace at various places are found.
1994 Doc fix. Include entries that are cross-referenced from cited entries.
1995 Include @String definitions in the resulting bib file. Add header
1996 and footer defined in `reftex-create-bibtex-header' and
1997 `reftex-create-bibtex-footer'.
1998 (reftex-do-citation): Make it possible again to insert
1999 non-existent entries. Save match data when asking for optional
2000 arguments. Return all keys, not just the first one.
2001 (reftex-all-used-citation-keys): Fix regexp to correctly extract
2002 all citations in the same line.
2003 (reftex-parse-bibtex-entry): Accept additional optional argument
2004 `raw' and keep quotes or braces if it is non-nil. Match fields
2005 containing hyphens besides word constituents.
2006 (reftex-get-string-refs): New function.
2007 (reftex-extract-bib-entries): Check if BibTeX file changed on disk
2008 and ask if it should be reread in case it did.
2009 (reftex-pop-to-bibtex-entry)
2010 (reftex-extract-bib-entries-from-thebibliography): Match \bibitem
2011 entries with spaces or tabs in front of arguments.
2012 (reftex-pop-to-bibtex-entry, reftex-extract-bib-entries)
2013 (reftex-parse-bibtex-entry, reftex-create-bibtex-file):
2014 Match entries containing numbers and symbol constituents.
2015 (reftex-do-citation, reftex-figure-out-cite-format):
2016 Use `reftex-cite-key-separator'.
2017
2018 * textmodes/reftex-dcr.el: Move provide statement to end of file.
2019 (reftex-mouse-view-crossref): Explain why point is set.
2020
2021 * textmodes/reftex-global.el: Whitespace changes.
2022
2023 * textmodes/reftex-index.el: Move provide statement to end of
2024 file.
2025 (reftex-index-selection-or-word): Use `reftex-region-active-p'.
2026 (reftex-index-visit-phrases-buffer): Set marker when visiting
2027 buffer. This allows for returning from the phrases file to the
2028 file one was just editing instead of the file where the last
2029 phrases was added from.
2030 (reftex-index-phrases-syntax-table): New variable. Give ?\"
2031 punctuation syntax as it usually is not used as string quote in
2032 TeX-related modes and may occur unmatched. The change also
2033 prevents fontification of quoted content.
2034 (reftex-index-phrases-mode): Use it.
2035
2036 * textmodes/reftex-parse.el (reftex-parse-from-file):
2037 Move backward one char if a `\' was matched after a section macro.
2038 (reftex-parse-from-file): Use beginning of match instead of end as
2039 bound.
2040
2041 * textmodes/reftex-ref.el: Adapt creation of
2042 `reftex-<package>-<macro>' functions to new structure of
2043 `reftex-ref-style-alist'.
2044 (reftex-reference): Use `reftex-ref-style-list' function.
2045 Adapt to new structure of `reftex-ref-style-alist'. Prompt for a
2046 reference macro if `reftex-ref-macro-prompt' is non-nil.
2047 (reftex-reference): Pass refstyle to `reftex-format-special'.
2048 Determine reference macro by looking at
2049 `reftex-ref-style-default-list' and `reftex-ref-style-alist'.
2050 Use only one special format function.
2051 (reftex-varioref-vref, reftex-fancyref-fref)
2052 (reftex-fancyref-Fref): Remove definitions. The functions are now
2053 generated from `reftex-ref-style-alist'.
2054 (reftex-format-vref, reftex-format-Fref, reftex-format-fref):
2055 Remove.
2056 (reftex-format-special): New function.
2057
2058 * textmodes/reftex-sel.el
2059 (reftex-select-cycle-ref-style-internal): Adapt to new structure
2060 of `reftex-ref-style-alist'. Remove code for testing macro type.
2061 (reftex-select-toggle-varioref)
2062 (reftex-select-toggle-fancyref): Remove.
2063 (reftex-select-cycle-ref-style-internal)
2064 (reftex-select-cycle-ref-style-forward)
2065 (reftex-select-cycle-ref-style-backward): New functions.
2066 (reftex-select-label-map): Use `v' and `V' for general cycling
2067 through reference styles. Add `p' for switching between number
2068 and page reference types.
2069
2070 * textmodes/reftex-toc.el (reftex-re-enlarge):
2071 Call `enlarge-window' only if there is something to do because in Emacs
2072 the horizontal version throws an error even if the parameter is 0.
2073
2074 * textmodes/reftex-vars.el (reftex-label-alist): Doc fix.
2075 (reftex-plug-into-AUCTeX): Doc fix.
2076 (reftex-vref-is-default, reftex-fref-is-default): Adapt doc
2077 string. Adapt to new name.
2078 (reftex-ref-style-alist): Change structure so that it is not
2079 possible to use multiple different package names within a style.
2080 Remove the symbols for symbols for macro type distinction.
2081 Add characters for macro selection.
2082 (reftex-ref-macro-prompt, reftex-create-bibtex-header)
2083 (reftex-create-bibtex-footer): New variables.
2084 (reftex-format-ref-function): Mention third argument of special
2085 format function.
2086 (reftex-ref-style-alist, reftex-ref-style-default-list):
2087 New variables.
2088 (reftex-vref-is-default, reftex-fref-is-default): Adapt doc string
2089 to new implementation. Mark as obsolete. Add compatibility code
2090 for honoring the variable values in case they are set.
2091 (reftex-cite-format-builtin, reftex-bibliography-commands):
2092 Add support for ConTeXt.
2093 (reftex-format-ref-function, reftex-format-cite-function):
2094 Fix custom type.
2095 (reftex-cite-key-separator): New variable.
2096
2097 * textmodes/reftex.el (reftex-syntax-table-for-bib)
2098 (reftex-mode): Do not derive `reftex-syntax-table-for-bib' from
2099 `reftex-syntax-table' because parens have to retain their paren
2100 syntax in order for parsing of BibTeX entries like @book(...) to
2101 work.
2102 (reftex-in-comment): Do not error out if `comment-start-skip' is
2103 not set. Deal correctly with escaped comment characters.
2104 (reftex-tie-multifile-symbols): Add doc string.
2105 Initialize `reftex-ref-style-list'.
2106 (reftex-untie-multifile-symbols): Add doc string.
2107 (reftex-add-index-macros): Doc fix.
2108 (reftex-ref-style-activate, reftex-ref-style-toggle)
2109 (reftex-ref-style-list): New functions.
2110 (reftex-mode-menu): Use them. Adapt to new structure of
2111 `reftex-ref-style-alist'.
2112 (reftex-select-with-char): Kill the RefTeX Select buffer when
2113 done.
2114 (reftex-remove-if): New function.
2115 (reftex-erase-all-selection-and-index-buffers)
2116 (reftex-mode-menu): Reference styles are now computed from
2117 `reftex-ref-style-alist'. Fix typo.
2118 (reftex-report-bug): New function.
2119 (reftex-uniquify, reftex-uniquify-by-car): Replace O(n^2)
2120 algorithms with O(n log n). Introduce optional argument SORT (not
2121 yet used).
2122
2123 2012-09-30 Fabián Ezequiel Gallina <fgallina@cuca>
2124
2125 Enhancements for triple-quote string syntax.
2126 * progmodes/python.el (python-syntax-propertize-function):
2127 Match both quote cases in one regexp.
2128 (python-syntax-stringify): Handle matches properly.
2129
2130 2012-09-30 Juri Linkov <juri@jurta.org>
2131
2132 * arc-mode.el (archive-summarize): Let-bind `buffer-file-truename'
2133 to nil around the call to `insert' to prevent
2134 directory time modification by lock_file. (Bug#2295)
2135 * tar-mode.el (tar-summarize-buffer): Idem.
2136
2137 2012-09-30 Juri Linkov <juri@jurta.org>
2138
2139 * facemenu.el (list-colors-sort): Add option "Luminance".
2140 (list-colors-sort-key): Implement it.
2141
2142 * vc/diff-mode.el (diff-refine-removed):
2143 * vc/ediff-init.el (ediff-fine-diff-A):
2144 * vc/smerge-mode.el (smerge-refined-removed):
2145 Change background color "#ffaaaa" to "#ffbbbb". (Bug#10181)
2146
2147 2012-09-30 Jan Djärv <jan.h.d@swipnet.se>
2148
2149 * term/ns-win.el (x-file-dialog): New function.
2150
2151 2012-09-30 Juanma Barranquero <lekktu@gmail.com>
2152
2153 * ido.el (ido-max-directory-size): Default to nil; the current
2154 default is small for POSIX systems, and impractical on Windows 7
2155 now that lstat returns directory sizes for NTFS.
2156
2157 2012-09-30 Martin Rudalics <rudalics@gmx.at>
2158
2159 In buffer display functions handle window-height/window-width
2160 alist entries. Suggested by Juri Linkov as fix for Bug#1806.
2161 * window.el (window--display-buffer): New argument ALIST.
2162 Obey window-height and window-width alist entries.
2163 (window--try-to-split-window): New argument ALIST.
2164 Bind window-combination-limit to t when the window's size shall be
2165 changed and window-combination-limit equals `window-size'.
2166 (display-buffer-in-atom-window)
2167 (display-buffer-in-major-side-window)
2168 (display-buffer-in-side-window, display-buffer-same-window)
2169 (display-buffer-reuse-window, display-buffer-pop-up-frame)
2170 (display-buffer-pop-up-window, display-buffer-below-selected)
2171 (display-buffer-at-bottom, display-buffer-in-previous-window)
2172 (display-buffer-use-some-window): Adjust all callers of
2173 window--display-buffer and window--try-to-split-window.
2174 (fit-frame-to-buffer): New option.
2175 (fit-window-to-buffer): Can resize frames if fit-frame-to-buffer
2176 is non-nil.
2177 (display-buffer-in-major-side-window): Evaluate window-height /
2178 window-width alist entries.
2179
2180 * help.el (temp-buffer-resize-frames)
2181 (temp-buffer-resize-regexps): Remove options.
2182 (temp-buffer-resize-mode): Adjust doc-string.
2183 (resize-temp-buffer-window): Don't consult
2184 temp-buffer-resize-regexps. Use fit-frame-to-buffer instead of
2185 temp-buffer-resize-frames.
2186
2187 * dired.el (dired-mark-pop-up):
2188 Call display-buffer-below-selected with a fit-window-to-buffer alist
2189 entry.
2190
2191 2012-09-30 Chong Yidong <cyd@gnu.org>
2192
2193 * server.el (server-host): Document the security implications.
2194 (server-auth-key): Doc fix.
2195
2196 * startup.el (initial-buffer-choice): Doc fix.
2197
2198 * minibuffer.el (minibuffer-local-filename-syntax): Doc fix.
2199
2200 * simple.el (delete-trailing-whitespace): Avoid an unnecessary
2201 restriction change.
2202
2203 * bindings.el (goto-map): Bind M-g TAB to move-to-column.
2204
2205 * help-fns.el (help-fns--obsolete): Fix last change.
2206
2207 2012-09-30 Stefan Monnier <monnier@iro.umontreal.ca>
2208
2209 * winner.el (winner-mode-map): Obey winner-dont-bind-my-keys here.
2210 (minor-mode-map-alist): Remove redundant code.
2211
2212 * vc/pcvs.el (cvs-cleanup-collection): Keep entries that are currently
2213 visited in a buffer.
2214 (cvs-insert-visited-file): New function.
2215 (find-file-hook): Use it.
2216
2217 * vc/pcvs-info.el (cvs-fileinfo-pp): Don't use non-existent faces.
2218
2219 * vc/log-edit.el (log-edit-font-lock-keywords): Ignore case to
2220 chose face.
2221 (log-edit-empty-buffer-p): Don't require a space after a header.
2222
2223 * vc/ediff-util.el (ediff-diff-at-point): Don't assume point-min==1.
2224
2225 * tutorial.el (help-with-tutorial): Use minibuffer-with-setup-hook.
2226
2227 * textmodes/text-mode.el (paragraph-indent-minor-mode): Make it
2228 a proper minor-mode.
2229
2230 * textmodes/tex-mode.el (tex-mode-map): Don't bind paren keys.
2231
2232 2012-09-29 Glenn Morris <rgm@gnu.org>
2233
2234 * winner.el (winner-mode): Remove variable (let define-minor-mode
2235 handle it).
2236 (winner-dont-bind-my-keys, winner-boring-buffers, winner-mode-hook):
2237 Doc fixes.
2238 (winner-mode-leave-hook): Rename to winner-mode-off-hook.
2239 (winner-mode): Use define-minor-mode.
2240
2241 * vc/vc-sccs.el (vc-sccs-registered): Use the progn trick to get
2242 the full definition in loaddefs, rather than duplicating it.
2243
2244 * help-macro.el (three-step-help): No need to autoload defcustom.
2245
2246 * progmodes/inf-lisp.el (inferior-lisp-filter-regexp)
2247 (inferior-lisp-program, inferior-lisp-load-command)
2248 (inferior-lisp-prompt, inferior-lisp-mode-hook):
2249 No need to autoload defcustoms.
2250
2251 * hippie-exp.el (hippie-expand-try-functions-list)
2252 (hippie-expand-verbose, hippie-expand-dabbrev-skip-space)
2253 (hippie-expand-dabbrev-as-symbol, hippie-expand-no-restriction)
2254 (hippie-expand-max-buffers, hippie-expand-ignore-buffers)
2255 (hippie-expand-only-buffers): No need to autoload defcustoms.
2256 * progmodes/vhdl-mode.el (vhdl-line-expand):
2257 Explicitly load hippie-exp, so it does not get autoloaded
2258 while hippie-expand-try-functions-list is let-bound.
2259
2260 2012-09-28 Glenn Morris <rgm@gnu.org>
2261
2262 * emacs-lisp/cl.el (flet): Fix case of obsolescence message.
2263
2264 * emacs-lisp/bytecomp.el (byte-compile-cl-file-p):
2265 Only "cl.el" counts as cl these days.
2266
2267 2012-09-28 Juri Linkov <juri@jurta.org>
2268
2269 Display archive errors in the echo area instead of inserting
2270 to the file buffer.
2271
2272 * arc-mode.el (archive-extract-by-stdout): Change arg STDERR-FILE
2273 to STDERR-TEST that can be a regexp matching a successful output.
2274 Create a temporary file and redirect stderr to it. Search for
2275 STDERR-TEST in the stderr output and display it in the echo area
2276 if no match is found.
2277 (archive-extract-by-file): New function like
2278 `archive-extract-by-stdout' but extracting archives to files
2279 and looking for successful matches in stdout. Function body is
2280 mostly copied from `archive-rar-extract'.
2281 (archive-rar-extract): Use `archive-extract-by-file'.
2282 (archive-7z-extract): Use `archive-extract-by-stdout'. (Bug#10347)
2283
2284 2012-09-28 Leo Liu <sdl.web@gmail.com>
2285
2286 * pcomplete.el (pcomplete-show-completions):
2287 Use minibuffer-message to make pcomplete usable in minibuffer.
2288
2289 * ido.el (ido-set-matches-1): Fix 2012-09-11 change.
2290
2291 2012-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
2292
2293 * type-break.el: Use lexical-binding.
2294 (type-break-mode): Use define-minor-mode.
2295
2296 * emacs-lisp/pcase.el (pcase--mark-used): New.
2297 (pcase--u1): Use it (bug#12512).
2298
2299 * custom.el (load-theme): Set buffer-file-name so the load is recorded
2300 in load-history with the right file name.
2301
2302 2012-09-28 Tassilo Horn <tsdh@gnu.org>
2303
2304 * doc-view.el (doc-view-current-cache-doc-pdf): New function.
2305 (doc-view-doc->txt, doc-view-convert-current-doc): Use it.
2306 (doc-view-get-bounding-box): Make bounding box slicing work for
2307 ODF and DVI documents.
2308
2309 2012-09-28 Glenn Morris <rgm@gnu.org>
2310
2311 * type-break.el (type-break-mode, type-break-interval)
2312 (type-break-good-rest-interval, type-break-keystroke-threshold):
2313 No need to autoload.
2314 (type-break-good-rest-interval, type-break-keystroke-threshold):
2315 Add :set-after.
2316
2317 2012-09-28 Chong Yidong <cyd@gnu.org>
2318
2319 * progmodes/verilog-mode.el (verilog-auto-inst-interfaced-ports):
2320 Add :version tag.
2321
2322 2012-09-27 Stefan Monnier <monnier@iro.umontreal.ca>
2323
2324 * json.el (json-encode-char): Codes 127-160 aren't "ASCII printable".
2325
2326 2012-09-27 Glenn Morris <rgm@gnu.org>
2327
2328 * faces.el (x-display-name): Declare (for without-x builds).
2329
2330 * linum.el (linum-format): Don't autoload it. Improve :type.
2331
2332 * progmodes/tcl.el: Don't require outline when compiling.
2333 (outline-regexp, outline-level): Declare.
2334 * textmodes/sgml-mode.el: Don't require outline when compiling.
2335 (outline-regexp, outline-heading-end-regexp, outline-level): Declare.
2336
2337 * term.el (term-ansi-reset):
2338 Try setting term-ansi-face-already-done to nil. (Bug#11785)
2339
2340 * vc/vc.el (vc-next-action): Only gripe about committing read-only
2341 files for RCS and SCCS. (Bug#9781)
2342
2343 2012-09-27 Chong Yidong <cyd@gnu.org>
2344
2345 * progmodes/verilog-mode.el (verilog-mode-release-emacs): Fix last
2346 change; value should be t.
2347
2348 2012-09-27 Stefan Monnier <monnier@iro.umontreal.ca>
2349
2350 * image-mode.el: Use lexical-binding.
2351 (image-mode-winprops): Use t to stand for the window of
2352 a buffer that's not displayed.
2353 * doc-view.el (doc-view-new-window-function): Handle the new
2354 t in winprops.
2355 (doc-view-enlarge): Make it a real nop if the size is not changed.
2356 (doc-view-display): Handle the case where the buffer is not (yet?)
2357 displayed in any window.
2358 (doc-view-saved-settings): New var.
2359 (doc-view-mode): Use it.
2360 (doc-view-fallback-mode): Set it.
2361
2362 * minibuf-eldef.el: Make it possible to replace (default ...) with [...].
2363 Set lexical-binding.
2364 (minibuffer-eldef-shorten-default): New var.
2365 (minibuffer-default-in-prompt-regexps): Use it for new default.
2366 (minibuf-eldef-setup-minibuffer): Add replacement functionality.
2367
2368 2012-09-26 Juanma Barranquero <lekktu@gmail.com>
2369
2370 * international/uni-bidi.el:
2371 * international/uni-category.el:
2372 * international/uni-name.el:
2373 * international/uni-numeric.el: Regenerate.
2374
2375 2012-09-26 Tomohiro Matsuyama <tomo@cx4a.org>
2376 Stefan Monnier <monnier@iro.umontreal.ca>
2377
2378 * profiler.el: New file.
2379
2380 2012-09-26 Stefan Monnier <monnier@iro.umontreal.ca>
2381
2382 * emacs-lisp/testcover.el (testcover-after): Add gv-expander.
2383 (testcover-reinstrument): Simplify with CSE.
2384
2385 2012-09-26 Juanma Barranquero <lekktu@gmail.com>
2386
2387 * window.el (temp-buffer-window-setup): Fix typo in docstring.
2388
2389 2012-09-25 Wilson Snyder <wsnyder@wsnyder.org>
2390
2391 * verilog-mode.el (verilog-auto-ascii-enum, verilog-auto-inout)
2392 (verilog-auto-input, verilog-auto-insert-lisp)
2393 (verilog-auto-output, verilog-auto-output-every, verilog-auto-reg)
2394 (verilog-auto-reg-input, verilog-auto-tieoff, verilog-auto-undef)
2395 (verilog-auto-unused, verilog-auto-wire)
2396 (verilog-forward-or-insert-line): Fix AUTOs with no trailing
2397 newline. Reported by Andrew Jones.
2398 (verilog-auto-inst) Support expanding $clog2 in AUTOINST.
2399 Reported by Brad Dobbie.
2400 (verilog-batch-delete-trailing-whitespace):
2401 Create verilog-batch-delete-trailing-whitespace.
2402 Reported by Brad Dobbie.
2403 (verilog-auto-inout-param): Support AUTOINOUTPARAM for copying
2404 parameters from another module. Reported by Dan Katz.
2405 (verilog-auto, verilog-auto-assign-modport)
2406 (verilog-auto-inout-modport): Add AUTOASSIGNMODPORT and
2407 AUTOINOUTMODPORT for UVM interface module shell generation.
2408 Reported by Brad Dobbie.
2409 (verilog-auto-inst-interfaced-ports): Make default nil, as more
2410 standard behavior.
2411 (verilog-auto): Fix AUTO parameters with parenthesis arguments.
2412 Reported by Matt Martin.
2413
2414 2012-09-25 Martin Rudalics <rudalics@gmx.at>
2415
2416 * window.el (window--resize-child-windows): When resizing child
2417 windows proportionally, process them in reverse order to
2418 preserve the "when splitting a window the new one gets the odd
2419 line" behavior.
2420 (window--resize-root-window-vertically): When resizing the
2421 minibuffer window try to affect only windows at the bottom of the
2422 frame. (Bug#12419)
2423
2424 2012-09-25 Chong Yidong <cyd@gnu.org>
2425
2426 * subr.el (declare): Doc fix.
2427
2428 * help-fns.el (help-fns--obsolete): Handle macros properly.
2429
2430 2012-09-25 Chong Yidong <cyd@gnu.org>
2431
2432 * bookmark.el (bookmark-jump-noselect): Use a declare form to mark
2433 this function obsolete.
2434
2435 * calendar/cal-x.el (calendar-two-frame-setup)
2436 (calendar-only-one-frame-setup, calendar-one-frame-setup):
2437 * calendar/calendar.el (american-calendar, european-calendar)
2438 (calendar-for-loop):
2439 * comint.el (comint-dynamic-simple-complete)
2440 (comint-dynamic-complete-as-filename, comint-unquote-filename):
2441 * desktop.el (desktop-load-default):
2442 * dired-x.el (dired-omit-here-always)
2443 (dired-hack-local-variables, dired-default-directory):
2444 * emacs-lisp/derived.el (derived-mode-class):
2445 * emacs-lisp/timer.el (timer-set-time-with-usecs):
2446 * emacs-lock.el (toggle-emacs-lock):
2447 * epa.el (epa-display-verify-result):
2448 * epg.el (epg-sign-keys, epg-start-sign-keys)
2449 (epg-passphrase-callback-function):
2450 * eshell/esh-util.el (eshell-for):
2451 * eshell/eshell.el (eshell-remove-from-window-buffer-names)
2452 (eshell-add-to-window-buffer-names):
2453 * files.el (locate-file-completion):
2454 * imenu.el (imenu-example--create-c-index)
2455 (imenu-example--create-lisp-index)
2456 (imenu-example--lisp-extract-index-name)
2457 (imenu-example--name-and-position):
2458 * international/mule-cmds.el (princ-list):
2459 * international/mule-diag.el (decode-codepage-char):
2460 * international/mule-util.el (detect-coding-with-priority):
2461 * iswitchb.el (iswitchb-read-buffer):
2462 * mail/mailalias.el (mail-complete):
2463 * mail/sendmail.el (mail-sent-via):
2464 * mouse.el (mouse-popup-menubar-stuff, mouse-popup-menubar)
2465 (mouse-major-mode-menu):
2466 * password-cache.el (password-read-and-add):
2467 * pcomplete.el (pcomplete-parse-comint-arguments):
2468 * progmodes/sh-script.el (sh-maybe-here-document):
2469 * replace.el (query-replace-regexp-eval):
2470 * savehist.el (savehist-load):
2471 * simple.el (choose-completion-delete-max-match):
2472 * term.el (term-dynamic-simple-complete):
2473 * vc/ediff-init.el (ediff-check-version):
2474 * vc/ediff-wind.el (ediff-choose-window-setup-function-automatically):
2475 * vc/vc.el (vc-diff-switches-list):
2476 * view.el (view-return-to-alist-update): Likewise.
2477
2478 * subr.el (eval-next-after-load, makehash, insert-string)
2479 (assoc-ignore-representation, assoc-ignore-case): Use declare to
2480 mark obsolete.
2481 (mode-line-inverse-video): Variable deleted.
2482
2483 * international/mule-util.el (string-to-sequence): Remove.
2484
2485 * calendar/calendar.el (calendar-version):
2486 * calendar/icalendar.el (icalendar-extract-ical-from-buffer)
2487 (icalendar-convert-diary-to-ical):
2488 * cus-edit.el (custom-mode):
2489 * ansi-color.el (ansi-color-unfontify-region):
2490 * international/latin1-disp.el (latin1-char-displayable-p):
2491 * progmodes/cwarn.el (turn-on-cwarn-mode):
2492 * progmodes/which-func.el (which-func-update-1):
2493 Use define-obsolete-function-alias.
2494
2495 * net/newst-backend.el (newsticker-cache-filename):
2496 * net/newst-treeview.el (newsticker-groups-filename):
2497 Fix incorrect obsolescence declaration.
2498
2499 * allout.el (allout-passphrase-hint-string): Likewise.
2500 (allout-init): Use a declare form to mark obsolete.
2501
2502 * emacs-lisp/byte-run.el (make-obsolete): Doc fix; emphasize that
2503 this applies to functions.
2504
2505 * iswitchb.el (iswitchb-read-buffer): Move code of
2506 iswitchb-define-mode-map here, and delete that obsolete function.
2507
2508 * net/snmp-mode.el (snmp-font-lock-keywords-3): Don't use obsolete
2509 font-lock-reference-face.
2510
2511 2012-09-25 Glenn Morris <rgm@gnu.org>
2512
2513 * buff-menu.el (Buffer-menu-name-width, Buffer-menu-size-width):
2514 Doc fixes.
2515
2516 * eshell/em-term.el (eshell-term-name):
2517 Default to term-term-name. (Bug#12485)
2518
2519 2012-09-24 Fabián Ezequiel Gallina <fgallina@cuca>
2520
2521 * progmodes/python.el (python-shell-send-buffer): Better handling
2522 of "if __name__ == '__main__':" conditionals when sending the buffer.
2523
2524 2012-09-24 Glenn Morris <rgm@gnu.org>
2525
2526 * eshell/esh-cmd.el (eshell-find-alias-function):
2527 Tighten up file-name regexp. (Bug#12499)
2528
2529 2012-09-24 Fabián Ezequiel Gallina <fgallina@cuca>
2530
2531 Enhancements for triple-quote string syntax.
2532 * progmodes/python.el (python-quote-syntax): Remove.
2533 (python-syntax-propertize-function): New value.
2534 (python-syntax-count-quotes, python-syntax-stringify):
2535 New functions.
2536
2537 2012-09-24 Chong Yidong <cyd@gnu.org>
2538
2539 * mail/supercite.el (sc-version): Remove obsolete function.
2540 (sc-describe): Don't mark as obsolete, since it is bound.
2541 (sc-submit-bug-report): Remove.
2542
2543 * vc/log-edit.el (cvs-changelog-full-paragraphs)
2544 (cvs-commit-buffer-require-final-newline): Remove.
2545 (log-edit-require-final-newline)
2546 (log-edit-changelog-full-paragraphs): Default to t.
2547
2548 * vc/pcvs-defs.el (cvs-diff-buffer-name, cvs-diff-ignore-marks)
2549 * vc/vc-hooks.el (vc-ignore-vc-files, vc-master-templates)
2550 * vc/vc.el (vc-checkout-carefully): Likewise.
2551
2552 * vc/emerge.el (emerge-mode): Make it an obsolete alias.
2553 (emerge-version): Remove.
2554
2555 * progmodes/compile.el (compile-internal): Remove.
2556 (compilation-parse-errors-function): Fix typo.
2557
2558 * international/mule.el (set-char-table-default): Remove.
2559 (set-coding-priority, make-coding-system, generic-char-p)
2560 (charset-list, charset-bytes, charset-id): Use declare to mark
2561 functions as obsolete.
2562
2563 * vc/pcvs-defs.el (cvs-buffer-name-alist)
2564 (cvs-invert-ignore-marks): Remove references to obsolete vars.
2565 * vc/vc-hooks.el (vc-default-registered): Don't use
2566 vc-master-templates.
2567
2568 * font-lock.el (font-lock-reference-face):
2569 Use define-obsolete-variable-alias.
2570
2571 * generic-x.el (rul-generic-mode): Use font-lock-constant-face.
2572 * calendar/calendar.el (calendar-font-lock-keywords):
2573 * calendar/diary-lib.el (diary-font-lock-keywords)
2574 (diary-fancy-font-lock-keywords):
2575 * textmodes/reftex-sel.el (reftex-insert-docstruct):
2576 * textmodes/reftex-index.el (reftex-insert-index):
2577 * textmodes/reftex-cite.el (reftex-format-bib-entry):
2578 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
2579 * progmodes/ps-mode.el (ps-mode-font-lock-keywords-1):
2580 * progmodes/prolog.el (prolog-font-lock-keywords):
2581 * progmodes/idlwave.el (idlwave-idl-keywords):
2582 * progmodes/ada-mode.el (ada-font-lock-keywords):
2583 * net/snmp-mode.el (snmp-font-lock-keywords-3): Likewise.
2584
2585 2012-09-24 Glenn Morris <rgm@gnu.org>
2586
2587 * mail/emacsbug.el (report-emacs-bug): Include `lsb_release -d'.
2588
2589 2012-09-23 Fabián Ezequiel Gallina <fgallina@cuca>
2590
2591 * progmodes/python.el (python-indent-line): More consistent cursor
2592 movement behavior.
2593
2594 2012-09-23 Stefan Merten <smerten@oekonux.de>
2595
2596 * textmodes/rst.el: Fix compiler warning.
2597
2598 2012-09-23 Roland Winkler <winkler@gnu.org>
2599
2600 * textmodes/bibtex.el (bibtex-autokey-transcriptions):
2601 Transcribe also LaTeX hyphenation.
2602 (bibtex-reformat): Bug fix. Do not quote twice the elements of
2603 bibtex-reformat-previous-options.
2604
2605 2012-09-23 Roland Winkler <winkler@gnu.org>
2606
2607 * proced.el (proced-renice-command): New variable.
2608 (proced-marked-processes): New function.
2609 (proced-with-processes-buffer): New macro.
2610 (proced-send-signal): Use them.
2611 (proced-renice): New command bound to r.
2612
2613 2012-09-23 Roland Winkler <winkler@gnu.org>
2614
2615 * ibuf-ext.el (ibuffer-switch-to-saved-filter-groups): If list
2616 ibuffer-saved-filter-groups has one element, shortcut the call of
2617 completing-read. (Bug#12331)
2618
2619 2012-09-23 Chong Yidong <cyd@gnu.org>
2620
2621 * bindings.el (mode-line-toggle-read-only):
2622 * bs.el (bs-toggle-readonly):
2623 * buff-menu.el (Buffer-menu-toggle-read-only):
2624 * dired.el (dired-toggle-read-only):
2625 * ibuffer.el (ibuffer-do-toggle-read-only): Use read-only-mode.
2626
2627 2012-09-23 Chong Yidong <cyd@gnu.org>
2628
2629 * image.el (image-type-available-p): Adapt to init-image-library
2630 argument changes.
2631
2632 2012-09-22 Juri Linkov <juri@jurta.org>
2633
2634 * dired.el (dired-mode-map): Add [remap read-only-mode] for
2635 `dired-toggle-read-only'. (Bug#12462)
2636
2637 2012-09-22 Martin Rudalics <rudalics@gmx.at>
2638
2639 * subr.el (temp-output-buffer-show): New function.
2640 (with-output-to-temp-buffer): Call temp-output-buffer-show
2641 instead of internal-temp-output-buffer-show.
2642
2643 2012-09-22 Chong Yidong <cyd@gnu.org>
2644
2645 * files.el (ctl-x-map): Bind C-x C-q to read-only-mode
2646 (Bug#12462).
2647
2648 * repeat.el (repeat): Doc fix (Bug#12348).
2649
2650 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix
2651 (Bug#10909).
2652
2653 * simple.el (shell-command-on-region): Doc fix.
2654 (read-only-mode): Doc fix.
2655
2656 2012-09-22 Eli Zaretskii <eliz@gnu.org>
2657
2658 * emacs-lisp/timer.el (run-with-idle-timer)
2659 (timer-activate-when-idle): Warn against reinvoking an idle timer
2660 from within its own timer action. (Bug#12447)
2661
2662 2012-09-22 Martin Rudalics <rudalics@gmx.at>
2663
2664 * cus-start.el (window-combination-limit): Add new optional
2665 values.
2666 * window.el (temp-buffer-window-show)
2667 (window--try-to-split-window): Handle new values of
2668 window-combination-limit (Bug#1806).
2669 (split-window): Test window-combination-limit for t instead of
2670 non-nil.
2671 (display-buffer-at-bottom): New buffer display action function.
2672 * help.el (temp-buffer-resize-regexps): New option.
2673 (temp-buffer-resize-mode): Rewrite doc-string.
2674 (resize-temp-buffer-window): Obey temp-buffer-resize-regexps.
2675 Don't resize reused window. Suggested by Glenn Morris.
2676
2677 2012-09-22 Stefan Merten <smerten@oekonux.de>
2678
2679 * textmodes/rst.el: Revamp section title faces.
2680 (rst-official-version)
2681 (rst-package-emacs-version-alist): Sync with official version
2682 V1.4.0.
2683 (rst-faces-defaults, rst-set-level-default)
2684 (rst-level-face-max, rst-level-face-base-color)
2685 (rst-level-face-base-light, rst-level-face-format-light)
2686 (rst-level-face-step-light, rst-define-level-faces): Obsolete.
2687 (rst-adornment-faces-alist): Match new setup.
2688 (rst-level-1, rst-level-2, rst-level-3, rst-level-4)
2689 (rst-level-5, rst-level-6): New faces.
2690
2691 2012-09-22 Chong Yidong <cyd@gnu.org>
2692
2693 * simple.el (undo): Handle indirect buffers (Bug#8207).
2694
2695 2012-09-21 Leo Liu <sdl.web@gmail.com>
2696
2697 IDO: Disable match re-ordering for buffer switching.
2698 * ido.el (ido-buffer-disable-smart-matches): New variable.
2699 (ido-set-matches-1): Use it. (Bug#2042)
2700
2701 2012-09-21 Jose Marino <marinoj@nso.edu> (tiny change)
2702
2703 * progmodes/idlw-shell.el (idlwave-shell-complete-filename):
2704 Fix 2011-05-17 change. (Bug#12418)
2705
2706 2012-09-21 Leo Liu <sdl.web@gmail.com>
2707
2708 * subr.el (ignore-errors): Mention with-demoted-errors in doc-string.
2709
2710 2012-09-21 Glenn Morris <rgm@gnu.org>
2711
2712 * emacs-lisp/shadow.el (load-path-shadows-font-lock-keywords):
2713 Be more robust about locating simple.el.
2714
2715 2012-09-21 Glenn Morris <rgm@gnu.org>
2716
2717 * mail/emacsbug.el (report-emacs-bug): Trap load-path-shadows errors.
2718
2719 2012-09-21 Joel Bion <jpbion@westvi.com> (tiny change)
2720
2721 * pcmpl-gnu.el (pcmpl-gnu-tarfile-regexp): Add tar.xz. (Bug#12382)
2722
2723 2012-09-20 Juri Linkov <juri@jurta.org>
2724
2725 * replace.el (query-replace-read-from): Use `read-regexp' instead
2726 of `read-from-minibuffer' when `regexp-flag' is non-nil.
2727 (occur-read-primary-args): Use `read-regexp' instead of
2728 `read-string'.
2729 (multi-occur-in-matching-buffers): Use `read-regexp' instead of
2730 `read-from-minibuffer'.
2731 * isearch.el (isearch-occur): Use `read-regexp' instead of
2732 `read-string'.
2733 * dired.el (dired-read-regexp): Use `read-regexp' instead of
2734 `read-from-minibuffer'.
2735 * progmodes/grep.el (grep-read-regexp): Use `read-regexp' instead
2736 of `read-string'. (Bug#7567)
2737
2738 * replace.el (read-regexp): Rename DEFAULT-VALUE arg to DEFAULTS
2739 and allow accepting a list of strings prepended to a list of
2740 standard default values. Doc fix. (Bug#12321)
2741
2742 * replace.el (read-regexp): Add HISTORY arg. (Bug#7567)
2743
2744 * replace.el (read-regexp): Don't add ": " when PROMPT already
2745 ends with a colon and space. (Bug#12321)
2746
2747 2012-09-20 Tassilo Horn <tsdh@gnu.org>
2748
2749 * doc-view.el (doc-view-display): Better fix for the cl-assertion
2750 error.
2751
2752 2012-09-20 Stefan Merten <smerten@oekonux.de>
2753
2754 * textmodes/rst.el: Integrate support for `imenu' and `which-function'.
2755 Fixes feature request bug#11711.
2756 (rst-mode): Create `imenu-create-index-function'.
2757 (rst-get-stripped-line): Delete after refactoring.
2758 (rst-section-tree, rst-section-tree-rec)
2759 (rst-section-tree-point): Refactor and document properly.
2760 (rst-imenu-find-adornments-for-position)
2761 (rst-imenu-convert-cell, rst-imenu-create-index):
2762 New function.
2763
2764 2012-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
2765
2766 * emacs-lisp/macroexp.el (macroexp--obsolete-warning): New function.
2767 (macroexp--expand-all): Use it.
2768 (macroexp--funcall-and-return): Remove by folding it into its sole
2769 caller (macroexp--warn-and-return).
2770 * emacs-lisp/bytecomp.el (byte-compile-warn-obsolete):
2771 Use macroexp--obsolete-warning.
2772
2773 * calc/calc.el: Fix last change by removing the whole chunk, since it
2774 was only needed back when Calc was not bundled.
2775
2776 2012-09-20 Martin Rudalics <rudalics@gmx.at>
2777
2778 * emacs-lisp/debug.el (debug): Restore assignment to
2779 debugger-old-buffer removed on 2012-09-08.
2780
2781 2012-09-20 Juri Linkov <juri@jurta.org>
2782
2783 * dired-aux.el (dired-diff): Remove (require 'diff) since
2784 `diff-latest-backup-file' is now autoloaded.
2785
2786 2012-09-20 Chong Yidong <cyd@gnu.org>
2787
2788 * vc/diff.el (diff-latest-backup-file): Autoload.
2789
2790 2012-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
2791
2792 * calc/calc.el: Remove redundant autoload shape check.
2793 (sel-mode): Don't defvar.
2794 (calc-get-stack-element): Add `sel-mode' arg instead.
2795 (calc-top, calc-top-list): Pass it this additional argument.
2796 * calc/calc-store.el (calc-store-map):
2797 * calc/calc-map.el (calc-apply, calc-reduce, calc-map)
2798 (calc-map-equation, calc-outer-product, calc-inner-product):
2799 * calc/calc-aent.el (calc-alg-entry): Don't bind sel-mode.
2800
2801 * emacs-lisp/macroexp.el (macroexp--expand-all): Fix last change.
2802
2803 2012-09-19 Juri Linkov <juri@jurta.org>
2804
2805 * dired-aux.el (dired-diff): Add (require 'diff) because
2806 `diff-latest-backup-file' is not autoloaded.
2807 (dired-do-chxxx, dired-do-chmod): Set `no-error-if-not-filep' arg
2808 of `dired-get-filename' to t to not report error when there is
2809 no default file on the current line.
2810
2811 2012-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
2812
2813 * emacs-lisp/macroexp.el (macroexp--funcall-if-compiled): Rename from
2814 macroexp--eval-if-compile.
2815 (macroexp--funcall-and-return, macroexp--warn-and-return): New funs.
2816 (macroexp--expand-all): Use them (bug#12371).
2817
2818 * doc-view.el (doc-view-guess-paper-size)
2819 (doc-view-scale-bounding-box): Fix unbound `caddr'.
2820
2821 2012-09-19 Tassilo Horn <tsdh@gnu.org>
2822
2823 New feature: set optimal slice from BoundingBox information.
2824 * doc-view.el (doc-view-mode-map): Add keybinding.
2825 (doc-view-menu): Add menu entry.
2826 (doc-view-set-slice): Adapt docstring.
2827 (doc-view-get-bounding-box, doc-view-guess-paper-size)
2828 (doc-view-scale-bounding-box)
2829 (doc-view-set-slice-from-bounding-box): New functions.
2830 (doc-view-paper-sizes): New defvar.
2831
2832 2012-09-19 Glenn Morris <rgm@gnu.org>
2833
2834 * emacs-lisp/macroexp.el (byte-compile-warn-obsolete)
2835 (byte-compile-log-warning): Autoload. (Bug#12371)
2836
2837 * calendar/calendar.el (calendar-american-month-header)
2838 (calendar-european-month-header, calendar-iso-month-header)
2839 (calendar-month-header): New options.
2840 (calendar-set-date-style): Set calendar-month-header. Redraw calendar.
2841 (calendar-generate-month): Use calendar-month-header. (Bug#9510)
2842
2843 2012-09-19 Jan Djärv <jan.h.d@swipnet.se>
2844
2845 * startup.el (command-line-ns-option-alist): Add -g and --geometry.
2846
2847 2012-09-18 Juri Linkov <juri@jurta.org>
2848
2849 * dired-aux.el (dired-diff): Restore original functionality of
2850 getting the default value, but keep new feature of using the
2851 latest existing backup file (`diff-latest-backup-file').
2852
2853 2012-09-18 Juri Linkov <juri@jurta.org>
2854
2855 * dired.el (dired-mark): If the region is active in Transient Mark
2856 mode, mark all files in the active region. Doc fix.
2857 (dired-unmark, dired-flag-file-deletion, dired-unmark-backward):
2858 Doc fix. (Bug#10624)
2859
2860 2012-09-18 Juri Linkov <juri@jurta.org>
2861
2862 * dired-aux.el (dired-do-chxxx, dired-do-chmod): Default file
2863 attributes for M-n are pulled from the file at point.
2864 (dired-do-chgrp, dired-do-chown, dired-do-touch): Doc fix.
2865 Suggested by Drew Adams. (Bug#10624)
2866
2867 2012-09-18 Dmitry Gutov <dgutov@yandex.ru>
2868
2869 * progmodes/ruby-mode.el (ruby-brace-to-do-end): Don't add extra
2870 whitespace after "end".
2871 (ruby-do-end-to-brace): Collapse block to one line if it fits
2872 within fill-column.
2873
2874 2012-09-18 Martin Rudalics <rudalics@gmx.at>
2875
2876 * emacs-lisp/debug.el (debugger-bury-or-kill): Fix customization
2877 value.
2878 (debug): Don't remove debugger window when debugger is expected
2879 to be back.
2880
2881 2012-09-18 Chong Yidong <cyd@gnu.org>
2882
2883 * custom.el (defface): Doc fix.
2884
2885 * cus-edit.el (custom-unlispify-remove-prefixes): Add warning.
2886
2887 2012-09-18 Martin Blais <blais@furius.ca> (tiny change)
2888
2889 * progmodes/compile.el (compilation-start): Use compilation-always-kill
2890 to initialize query-on-exit; then test that instead (bug#12288).
2891
2892 2012-09-17 Stefan Merten <smerten@oekonux.de>
2893
2894 * textmodes/rst.el: Add support for `testcover'.
2895 (rst-defcustom-testcover, rst-testcover-add-compose)
2896 (rst-testcover-add-1value): New functions.
2897 (rst-portable-mark-active-p): Replace by `use-region-p'.
2898 (rst-update-section, rst-classify-adornment)
2899 (rst-find-title-line): Mark `1value' forms.
2900 (rst-classify-adornment): Remove superfluous form.
2901 (rst-update-section, rst-get-adornments-around)
2902 (rst-adornment-complete-p, rst-get-next-adornment)
2903 (rst-adjust, rst-promote-region)
2904 (rst-display-adornments-hierarchy, rst-straighten-adornments)
2905 (rst-find-pfx-in-region, rst-section-tree-rec)
2906 (rst-section-tree-point, rst-toc-insert, rst-toc-insert-node)
2907 (rst-toc-node, rst-toc, rst-forward-section)
2908 (rst-iterate-leftmost-paragraphs)
2909 (rst-iterate-leftmost-paragraphs-2, rst-enumerate-region)
2910 (rst-bullet-list-region)
2911 (rst-convert-bullets-to-enumeration, rst-font-lock-keywords)
2912 (rst-compile-find-conf, rst-compile)
2913 (rst-repeat-last-character): Fix style.
2914
2915 2012-09-17 Chong Yidong <cyd@gnu.org>
2916
2917 * comint.el (comint--complete-file-name-data): Don't add a space
2918 if the status is `sole'; that adds a gratuitous space in the
2919 completion-cycling case (Bug#12092).
2920
2921 * pcomplete.el (pcomplete-completions-at-point): Likewise.
2922
2923 2012-09-17 Richard Stallman <rms@gnu.org>
2924
2925 * mail/rmailmm.el (rmail-mime-toggle-raw): Do rmail-mime-insert
2926 only in the mime-shown mode, not in raw mode.
2927 (rmail-mime): Toggle off mime by displaying the message without
2928 mime processing. (Bug#12305)
2929
2930 * mail/rmail.el (rmail-retry-failure):
2931 Turn off mime processing first. (Bug#12037)
2932
2933 * epa-mail.el (epa-mail-encrypt): Fix bug when a name has no key.
2934
2935 2012-09-17 Chong Yidong <cyd@gnu.org>
2936
2937 * shell.el (shell-file-name-chars, shell-file-name-quote-list)
2938 (shell-dynamic-complete-functions): Convert to defcustom.
2939 (shell-prompt-pattern, shell-completion-fignore): Doc fix.
2940
2941 * bookmark.el (bookmark-bmenu-toggle-filenames): Doc fixes.
2942 * comint.el (comint-prompt-read-only):
2943 * custom.el (defcustom):
2944 * hi-lock.el (hi-lock-mode):
2945 * ibuffer.el (ibuffer-formats):
2946 * ielm.el (ielm-prompt-read-only):
2947 * novice.el (disable-command):
2948 * saveplace.el (toggle-save-place):
2949 * speedbar.el (speedbar-supported-extension-expressions):
2950 * startup.el (auto-save-list-file-prefix, init-file-user)
2951 (after-init-hook, inhibit-startup-echo-area-message):
2952 * strokes.el (strokes-help):
2953 * time-stamp.el (time-stamp):
2954 * calendar/calendar.el (calendar, diary-file):
2955 * calendar/diary-lib.el (diary-mail-entries, diary)
2956 (diary-list-entries-hook):
2957 * calendar/holidays.el (holidays, calendar-holidays):
2958 * calendar/lunar.el (lunar-phases):
2959 * calendar/solar.el (sunrise-sunset):
2960 * emulation/edt.el (edt-load-keys):
2961 * emulation/viper.el (viper-mode):
2962 * eshell/em-alias.el (eshell-command-aliases-list):
2963 * eshell/esh-util.el (eshell-convert-numeric-arguments):
2964 * international/ogonek.el (ogonek-information):
2965 * net/tramp-cmds.el (tramp-bug):
2966 * net/quickurl.el (quickurl-reread-hook-postfix):
2967 * play/decipher.el (decipher-font-lock-keywords):
2968 * progmodes/cc-styles.el (c-set-style):
2969 * progmodes/idlw-shell.el (idlwave-shell-prompt-pattern):
2970 * progmodes/inf-lisp.el (inferior-lisp-prompt):
2971 * progmodes/octave-mod.el (octave-mode):
2972 * progmodes/sql.el (sql-mode, sql-interactive-mode, sql-password):
2973 * progmodes/verilog-mode.el (verilog-read-defines):
2974 * textmodes/two-column.el (2C-mode): Likewise.
2975
2976 2012-09-16 Katsumi Yamaoka <yamaoka@jpl.org>
2977
2978 * mail/mailabbrev.el (mail-abbrev-expand-hook): Work for a mail aliasee
2979 that holds many addresses.
2980
2981 2012-09-16 Chong Yidong <cyd@gnu.org>
2982
2983 * align.el (align-areas): Call the indication function with
2984 positions instead of markers for arguments (Bug#12343).
2985
2986 * files.el (parse-colon-path): Use split-string (Bug#12351).
2987
2988 * window.el (special-display-popup-frame): Doc fix (Bug#8853).
2989 (display-buffer-function): Mark as obsolete.
2990
2991 * progmodes/compile.el (compilation-parse-errors): Accept list
2992 values similar to font-lock-keywords (Bug#12136).
2993 Suggested by Oleksandr Manzyuk.
2994 (compilation-error-regexp-alist): Doc fix.
2995
2996 2012-09-15 Glenn Morris <rgm@gnu.org>
2997
2998 * version.el (emacs-bzr-version-bzr): New function.
2999 (emacs-bzr-get-version): Add optional EXTERNAL argument.
3000
3001 * vc/vc-bzr.el (vc-bzr-working-revision): For lightweight local
3002 checkouts, check the parent dirstate matches the branch.
3003 Add "--tree" to "bzr revno" arguments. Don't try to shorten the
3004 empty string.
3005
3006 * version.el (emacs-bzr-version): Doc fix.
3007 (emacs-bzr-version-dirstate): New function.
3008 (emacs-bzr-get-version): For lightweight checkouts, if the parent
3009 is local try and check that it matches the branch. If not, just
3010 use dirstate information. (Bug#12441)
3011
3012 2012-09-14 Juri Linkov <juri@jurta.org>
3013
3014 * dired-aux.el (dired-do-chmod): Use `eq' to detect empty input.
3015 (Bug#12399)
3016
3017 2012-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
3018
3019 * emacs-lisp/advice.el (ad-prognify): Remove, use macroexp-progn.
3020
3021 * emacs-lisp/edebug.el: Miscellaneous cleanup.
3022 Remove obsolete byte-compiler hack that tried to silence some warnings.
3023 (edebug-submit-bug-report): Remove.
3024 (edebug-get-buffer-window, edebug-sit-for, edebug-input-pending-p):
3025 Remove aliases, use the un-prefixed name instead.
3026 (edebug-pop-to-buffer): Consider other frames.
3027 (edebug-original-read):: Make it more obvious that it's always defined.
3028 (edebug--make-form-data-entry, edebug--form-data-name)
3029 (edebug--form-data-begin, edebug--form-data-end): Rename from the
3030 single-dashed name, and implement with cl-defstruct.
3031 (edebug-set-form-data-entry): Use the standard accessors.
3032 (edebug-make-top-form-data-entry): Use push.
3033 (edebug-no-match): Drop useless `funcall'.
3034 (mapcar, mapconcat, mapatoms, apply, funcall): Don't add debug specs
3035 to functions.
3036 (defsubst, dont-compile, eval-when-compile, eval-and-compile)
3037 (delay-mode-hooks, with-temp-file, with-temp-message, ad-dolist)
3038 (with-syntax-table, push, pop, 1value, noreturn, defadvice)
3039 (easy-menu-define, with-custom-print): Remove redundant specs.
3040 (edebug-outside-overriding-local-map)
3041 (edebug-outside-overriding-terminal-local-map): Remove, unused.
3042 (edebug--display): Bind unread-command-events directly to nil rather
3043 than binding it to unread-command-events and later setting it to nil.
3044 (edebug--display): Kill edebug-eval-buffer here...
3045 (edebug--recursive-edit): ...rather than here.
3046 Bind standard-output and standard-input.
3047 (edebug-eval): Check cl-macroexpand-all is fboundp.
3048 (edebug-temp-display-freq-count): Fix last change.
3049
3050 * emacs-lisp/easymenu.el (easy-menu-define): Add `debug' spec.
3051 * subr.el (noreturn, 1value): Add `debug' spec.
3052 * emacs-lisp/advice.el: Require cl-lib.
3053 (ad-copy-tree): Remove, use copy-tree instead.
3054 (ad-dolist): Remove use dolist or cl-dolist instead.
3055 (ad-do-return): Remove, use cl-return instead.
3056 (defadvice): Add `debug' spec.
3057
3058 2012-09-13 Juri Linkov <juri@jurta.org>
3059
3060 * dired-aux.el (dired-do-chxxx): Use `eq' to detect empty input.
3061 (Bug#12399)
3062
3063 2012-09-13 Glenn Morris <rgm@gnu.org>
3064
3065 * calc/calc.el (math-compose-expr):
3066 * calc/calc-ext.el (math-compose-expr):
3067 * progmodes/cc-defs.el (cl-macroexpand-all):
3068 * progmodes/cc-langs.el (delete-duplicates, mapcan)
3069 (cl-macroexpand-all): Update declarations.
3070
3071 * vc/vc.el: No need to require ediff.
3072 (ediff-load-version-control): Declare.
3073 (ediff-vc-internal): Fix declaration.
3074 (vc-version-ediff): Require ediff.
3075
3076 2012-09-13 Paul Eggert <eggert@cs.ucla.edu>
3077
3078 Use a more backwards-compatible timer format (Bug#12430).
3079 * emacs-lisp/timer.el (timer): PSECS is now at the end, rather than
3080 being right after USECS, as that better supports old code that
3081 inadvisedly looked directly at the timer vector.
3082
3083 2012-09-13 Kenichi Handa <handa@gnu.org>
3084
3085 * language/chinese.el ("Chinese-GB", "Chinese-BIG5")
3086 ("Chinese-CNS", "Chinese-EUC-TW"): Add chinese-gbk to
3087 `coding-priority' property of these language environment.
3088
3089 2012-09-13 Paul Eggert <eggert@cs.ucla.edu>
3090
3091 Fix glitches caused by addition of psec to timers (Bug#12430).
3092 * image.el (image-animate-timer):
3093 * time.el (display-time-world-timer):
3094 Use timer--function and timer--args rather than raw access to
3095 timer vector.
3096
3097 2012-09-13 Glenn Morris <rgm@gnu.org>
3098
3099 * emacs-lisp/bytecomp.el (byte-compile-warning-prefix):
3100 If not compiling a file, try using load-file-name.
3101
3102 2012-09-13 Stefan Monnier <monnier@iro.umontreal.ca>
3103
3104 * emacs-lisp/edebug.el (edebug-outside-unread-command-events):
3105 Fix last change.
3106 (edebug-update-eval-list): Use `push'.
3107
3108 * emacs-lisp/edebug.el: Use lexical-binding.
3109 Remove the "edebug-" prefix from non-dynamically-scoped variables.
3110 Mark unused args with underscore.
3111 (edebug-save-restriction, edebug-outside-excursion): Use `declare'.
3112 (edebug-form-data): Use defvar-local.
3113 (edebug-make-before-and-after-form, edebug-make-after-form):
3114 Use backquote.
3115 (edebug-args, edebug-value, edebug-after-index, edebug-arg-mode):
3116 Not dynamically scoped any more.
3117 (edebug--enter-trace): Add arguments `function' and `args'.
3118 Rename from edebug-enter-trace.
3119 (edebug-enter): Call it accordingly. Bind edebug-function explicitly.
3120 (edebug--update-coverage): Add `after-index' and `value' args.
3121 Rename from edebug-update-coverage.
3122 (edebug-slow-after): Call it accordingly.
3123 (edebug--recursive-edit): Add arg `arg-mode'. Rename from
3124 edebug-recursive-edit.
3125 (edebug--display): Call it accordingly. Add args `value',
3126 `offset-index', and `arg-mode'. Rename from edebug-display.
3127 (edebug-debugger, edebug): Call it accordingly.
3128 (edebug-eval-display-list): Use dolist.
3129
3130 2012-09-12 Juri Linkov <juri@jurta.org>
3131
3132 * info.el (Info-search): Don't check for isearch-mode and
3133 isearch-regexp before let-binding search-spaces-regexp to
3134 Info-search-whitespace-regexp.
3135 (Info-isearch-search): Let-bind Info-search-whitespace-regexp to
3136 search-whitespace-regexp if isearch-lax-whitespace or
3137 isearch-regexp-lax-whitespace is non-nil.
3138 (Info-mode): Don't set local variable search-whitespace-regexp.
3139 http://lists.gnu.org/archive/html/emacs-devel/2012-08/msg00811.html
3140
3141 2012-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
3142
3143 * emacs-lisp/debug.el (debugger-outer-unread-command-char, debug)
3144 (debugger-env-macro): Remove support for unread-command-char.
3145
3146 * subr.el (set-temporary-overlay-map): Minimize slightly the impact of
3147 the temporary map re-appearing on emulation-mode-map-alists.
3148
3149 * emacs-lisp/edebug.el (def-edebug-form-spec): Remove, it's been broken
3150 since 22.1.
3151
3152 * ehelp.el (with-electric-help): Accept functions in
3153 electric-help-form-to-execute.
3154 (electric-help-execute-extended, electric-help-ctrl-x-prefix): Use it.
3155 And replace unread-command-char -> unread-command-events.
3156
3157 2012-09-12 Michael Albinus <michael.albinus@gmx.de>
3158
3159 Sync with Tramp 2.2.6.
3160
3161 * net/tramp.el (tramp-accept-process-output): Don't use
3162 JUST-THIS-ONE in the XEmacs case.
3163
3164 * net/trampver.el: Update release number.
3165
3166 2012-09-12 Martin Rudalics <rudalics@gmx.at>
3167
3168 * emacs-lisp/debug.el (debugger-previous-window-height):
3169 New variable.
3170 (debug): When debugger-jumping-flag is non-nil try to restore
3171 height of debugger window. (Bug#8789)
3172
3173 2012-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
3174
3175 * emacs-lisp/edebug.el (edebug-enter): Don't mess with
3176 overriding-local-map and pre/post-command-hook here.
3177 (edebug-recursive-edit): Do it here instead (bug#12345).
3178 (edebug-outside-unread-command-char): Remove all uses of
3179 unread-command-char.
3180
3181 * emacs-lisp/debug.el (debug): Don't bind debug-on-error since
3182 inhibit-debugger is bound instead.
3183
3184 2012-09-11 Bastien Guerry <bzg@gnu.org>
3185
3186 * subr.el (set-temporary-overlay-map): Add a docstring.
3187 (Bug#12346)
3188
3189 2012-09-11 Bastien Guerry <bzg@gnu.org>
3190
3191 * minibuffer.el (completion-table-subvert): Fix docstring.
3192 (Bug#12347)
3193
3194 2012-09-11 Bastien Guerry <bzg@gnu.org>
3195
3196 * help-fns.el (describe-variable): Fix typo. (Bug#12346)
3197
3198 2012-09-10 Michael R. Mauger <mmaug@yahoo.com>
3199
3200 * progmodes/sql.el: Version 3.1
3201 (sql-db2-escape-newlines): New variable.
3202 (sql-escape-newlines-filter): Use it.
3203
3204 2012-09-10 Juanma Barranquero <lekktu@gmail.com>
3205
3206 * custom.el (custom-theme-load-confirm): Remove unneeded assignment.
3207
3208 2012-09-10 Dan Nicolaescu <dann@gnu.org>
3209
3210 * vc/diff-mode.el (diff-mode-menu):
3211 Bind diff-remove-trailing-whitespace.
3212
3213 2012-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
3214
3215 * emacs-lisp/lisp-mode.el (emacs-list-byte-code-comment-re): New var.
3216 (emacs-lisp-byte-code-comment, emacs-lisp-byte-code-syntax-propertize)
3217 (emacs-lisp-byte-code-mode): New functions.
3218 (eval-sexp-add-defvars): Don't skip defvars in column >0.
3219 (eval-defun-2): Remove bogus interactive spec.
3220 (lisp-indent-line): Remove redundant whole-exp code, now done in
3221 indent-according-to-mode.
3222 (save-match-data): Remove redundant indent data.
3223
3224 * emacs-lisp/benchmark.el (benchmark-run, benchmark-run-compiled):
3225 Use `declare'.
3226
3227 2012-09-09 Juri Linkov <juri@jurta.org>
3228
3229 * replace.el (replace-regexp-lax-whitespace): New defcustom.
3230 (replace-lax-whitespace, query-replace-regexp)
3231 (query-replace-regexp-eval, replace-regexp): Doc fix.
3232 (perform-replace, replace-highlight): Let-bind
3233 isearch-lax-whitespace to replace-lax-whitespace and
3234 isearch-regexp-lax-whitespace to replace-regexp-lax-whitespace.
3235
3236 * isearch.el (isearch-query-replace): Let-bind
3237 replace-lax-whitespace to isearch-lax-whitespace and
3238 replace-regexp-lax-whitespace to
3239 isearch-regexp-lax-whitespace. (Bug#10885)
3240
3241 2012-09-09 Stefan Monnier <monnier@iro.umontreal.ca>
3242
3243 * eshell/em-unix.el (eshell/sudo): Explicitly drop return value.
3244
3245 2012-09-09 Alan Mackenzie <acm@muc.de>
3246
3247 * progmodes/cc-engine.el (c-state-cache-init):
3248 Initialise c-state-semi-nonlit-pos-cache\(-limit\)? properly.
3249 (c-record-parse-state-state):
3250 Record c-state-semi-nonlit-pos-cache\(-limit\)?.
3251
3252 2012-09-09 Andreas Schwab <schwab@linux-m68k.org>
3253
3254 * register.el (register-separator): Rename from
3255 separator-register. All uses changed. Doc fix.
3256 (register): Fix version.
3257
3258 2012-09-09 Chong Yidong <cyd@gnu.org>
3259
3260 * replace.el (query-replace-map): Bind four new symbols for
3261 requesting window scrolling.
3262
3263 * subr.el (y-or-n-p): Handle the window-scrolling bindings in
3264 query-replace-map (Bug#8948).
3265
3266 * custom.el (custom-theme-load-confirm): Use y-or-n-p.
3267
3268 * emacs-lisp/map-ynp.el (map-y-or-n-p): Don't bind scrolling keys
3269 since they are now in query-replace-map.
3270
3271 * window.el (scroll-other-window-down): Make the arg optional.
3272
3273 2012-09-09 Chong Yidong <cyd@gnu.org>
3274
3275 * files.el (hack-local-variables-confirm): Use quit-window to kill
3276 the *Local Variables* buffer.
3277
3278 2012-09-08 Dmitry Gutov <dgutov@yandex.ru>
3279
3280 * progmodes/ruby-mode.el (ruby-toggle-block): Guess the current block,
3281 not just expect to be at its beginning. Adjust callees.
3282 Succeed when do-end block has no space before the pipe character.
3283 (ruby-brace-to-do-end): When the original block is one-liner,
3284 convert to multiline. Reindent the result.
3285
3286 2012-09-08 Jambunathan K <kjambunathan@gmail.com>
3287
3288 * register.el (register): New group.
3289 (separator-register): New user option.
3290 (increment-register): Route it to `append-to-register', if
3291 register contains text. Implication is that `C-x r +' can now be
3292 used for appending to a text register (bug#12217).
3293 (append-to-register, prepend-to-register): Add separator based on
3294 `separator-register'.
3295
3296 2012-09-08 Alan Mackenzie <acm@muc.de>
3297
3298 AWK Mode: make auto-newline work when there's "==" in the pattern.
3299 * progmodes/cc-cmds.el (c-point-syntax): Handle virtual semicolons
3300 correctly.
3301 * progmodes/cc-engine.el (c-guess-basic-syntax CASE 5A.3):
3302 Test more rigorously for "=" token.
3303
3304 2012-09-08 Dmitry Gutov <dgutov@yandex.ru>
3305
3306 * progmodes/ruby-mode.el (ruby-match-expression-expansion):
3307 Only fail when reached LIMIT.
3308
3309 2012-09-08 Chong Yidong <cyd@gnu.org>
3310
3311 * dired.el (dired-mode-map): Don't bind M-=.
3312
3313 * dired-aux.el (dired-diff): Use backup file as default.
3314
3315 2012-09-08 Drew Adams <drew.adams@oracle.com>
3316
3317 * subr.el (add-to-history): Fix delete usage (Bug#12314).
3318
3319 2012-09-08 Chong Yidong <cyd@gnu.org>
3320
3321 * subr.el (syntax-after, syntax-class): Doc fix.
3322
3323 2012-09-08 Martin Rudalics <rudalics@gmx.at>
3324
3325 * window.el (display-buffer-in-previous-window): New buffer
3326 display action function.
3327
3328 * emacs-lisp/debug.el (debugger-bury-or-kill): New option.
3329 (debugger-previous-window): New variable.
3330 (debug): Rewrite using display-buffer-in-previous-window,
3331 quit-restore-window and debugger-bury-or-kill. (Bug#8789)
3332
3333 2012-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
3334
3335 * emacs-lisp/byte-run.el (defun): Tweak message. Simplify code.
3336
3337 2012-09-07 Matt McClure <mlm@aya.yale.edu> (tiny change)
3338
3339 * progmodes/python.el (python-shell-send-string):
3340 When default-directory is remote, create temp file on remote
3341 filesystem.
3342 (python-shell-send-file): When file is remote, pass local view of
3343 file paths to remote Python interpreter. (Bug#12340)
3344
3345 2012-09-07 Chong Yidong <cyd@gnu.org>
3346
3347 * window.el (switch-to-buffer): Doc fix (Bug#12181).
3348
3349 * files.el (after-find-file): Don't fail on a read-only buffer if
3350 require-final-newline is `visit' or `visit-save' (Bug#11156).
3351
3352 * subr.el (read-char-choice): Allow quitting via ESC ESC.
3353
3354 * userlock.el (ask-user-about-supersession-threat):
3355 Use read-char-choice (Bug#12093).
3356
3357 2012-09-07 Chong Yidong <cyd@gnu.org>
3358
3359 * subr.el (buffer-narrowed-p): New function.
3360
3361 * ses.el (ses-widen):
3362 * simple.el (count-words--buffer-message):
3363 * net/browse-url.el (browse-url-of-buffer): Use it.
3364
3365 * simple.el (count-words-region): Don't signal an error if there
3366 is a non-nil prefix arg and the mark is not set.
3367
3368 * help.el (describe-key-briefly): Allow the message to be seen
3369 when invoked from the minibuffer (Bug#7014).
3370
3371 2012-09-07 Dmitry Gutov <dgutov@yandex.ru>
3372
3373 * progmodes/ruby-mode.el (ruby-end-of-defun)
3374 (ruby-beginning-of-defun): Simplify, allow indentation before
3375 block beginning and end keywords.
3376 (ruby-beginning-of-defun): Only consider 3 keywords defun beginners.
3377 (ruby-end-of-defun): Expect that the point is at the beginning of
3378 the defun.
3379
3380 2012-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
3381
3382 * emacs-lisp/cl-macs.el (cl--do-arglist): Understand _ on &key args
3383 (bug#12367).
3384 (cl--make-usage-args): Strip _ from argument names.
3385
3386 2012-09-06 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
3387
3388 * progmodes/vhdl-mode.el (vhdl-speedbar-initialize): Don't use
3389 obsolete alias speedbar-key-map.
3390 (vhdl-doc-variable, vhdl-doc-mode): Use called-interactively-p.
3391 (vhdl-index-menu-init): Don't use obsolete variable
3392 font-lock-maximum-size.
3393
3394 2012-09-06 Chong Yidong <cyd@gnu.org>
3395
3396 * frame.el (window-system-version): Mark as obsolete.
3397
3398 * speedbar.el (speedbar-update-flag, speedbar-mode): Remove uses
3399 of obsolete variable speedbar-key-map.
3400
3401 2012-09-06 Juri Linkov <juri@jurta.org>
3402
3403 * replace.el (replace-lax-whitespace): New defcustom.
3404 (query-replace, query-replace-regexp, query-replace-regexp-eval)
3405 (replace-string, replace-regexp): Mention it in docstrings.
3406 (perform-replace, replace-highlight): Let-bind
3407 isearch-lax-whitespace and isearch-regexp-lax-whitespace according
3408 to the values of replace-lax-whitespace and regexp-flag.
3409 Don't let-bind search-whitespace-regexp. (Bug#10885)
3410
3411 * isearch.el (isearch-query-replace): Let-bind
3412 replace-lax-whitespace instead of let-binding
3413 replace-search-function and replace-re-search-function.
3414 (isearch-lazy-highlight-search): Let-bind isearch-lax-whitespace
3415 and isearch-regexp-lax-whitespace to lazy-highlight variables.
3416 (isearch-toggle-symbol): Set isearch-regexp to nil
3417 in isearch-word mode (like in isearch-toggle-word).
3418
3419 2012-09-06 Juri Linkov <juri@jurta.org>
3420
3421 * replace.el (replace-search-function)
3422 (replace-re-search-function): Set default values to nil.
3423 (perform-replace): Let-bind isearch-related variables based on
3424 replace-related values, call `isearch-search-fun' and let-bind
3425 the result to `search-function'. Remove code that sets
3426 `search-function' and `search-string' separately for
3427 `delimited-flag'.
3428 (replace-highlight): Add new argument `delimited-flag' and
3429 rename other arguments to the names used in `perform-replace'.
3430 Let-bind `isearch-word' to the argument `delimited-flag'.
3431 (Bug#10885, bug#10887)
3432
3433 2012-09-07 Dmitry Gutov <dgutov@yandex.ru>
3434
3435 * progmodes/ruby-mode.el (ruby-indent-beg-re): Add pieces from
3436 ruby-beginning-of-indent, simplify, allow all keywords to have
3437 indentation before them.
3438 (ruby-beginning-of-indent): Adjust for above. Search until the
3439 found point is not inside a string or comment.
3440 (ruby-font-lock-keywords): Allow symbols to start with "@"
3441 character, give them higher priority than variables.
3442 (ruby-syntax-propertize-function)
3443 (ruby-font-lock-syntactic-keywords): Remove the "not comments"
3444 matchers. Expression expansions are not comments when inside a
3445 string, and there comment syntax status is irrelevant.
3446 (ruby-match-expression-expansion): New function. Check that
3447 expression expansion is inside a string, and it's not escaped.
3448 (ruby-font-lock-keywords): Use it.
3449
3450 2012-09-05 Martin Rudalics <rudalics@gmx.at>
3451
3452 * help.el (temp-buffer-max-height): New default value.
3453 (temp-buffer-resize-frames): New option.
3454 (resize-temp-buffer-window): Optionally resize frame.
3455
3456 * window.el (fit-frame-to-buffer-bottom-margin): New option.
3457 (fit-frame-to-buffer): New function.
3458
3459 2012-09-05 Glenn Morris <rgm@gnu.org>
3460
3461 * emulation/cua-rect.el (cua--init-rectangles):
3462 * textmodes/picture.el (picture-mode-map):
3463 * play/blackbox.el (blackbox-mode-map): Remap right-char and left-char
3464 like forward-char and backward-char. (Bug#12317)
3465
3466 2012-09-05 Leo Liu <sdl.web@gmail.com>
3467
3468 * progmodes/flymake.el (flymake-warning-re): New variable.
3469 (flymake-parse-line): Use it.
3470
3471 2012-09-05 Glenn Morris <rgm@gnu.org>
3472
3473 * calendar/holidays.el (holiday-christian-holidays):
3474 Rename an entry. (Bug#12289)
3475
3476 2012-09-05 Stefan Monnier <monnier@iro.umontreal.ca>
3477
3478 * progmodes/sh-script.el (sh-font-lock-paren): Don't burp at BOB
3479 (bug#12222).
3480
3481 2012-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
3482
3483 * loadup.el: Load macroexp. Remove hack.
3484 * emacs-lisp/macroexp.el (macroexp--eval-if-compile): New function.
3485 (macroexp--expand-all): Use it to get better warnings.
3486 (macroexp--backtrace, macroexp--trim-backtrace-frame)
3487 (internal-macroexpand-for-load): New functions.
3488 (macroexp--pending-eager-loads): New var.
3489 (emacs-startup-hook): New hack to replace one in loadup.el.
3490 * emacs-lisp/cl-macs.el (cl--compiler-macro-list*)
3491 (cl--compiler-macro-cXXr): Move to top, before they can be used.
3492 (cl-psetf): Simplify.
3493 (cl-defstruct): Add indent rule.
3494
3495 2012-09-04 Lars Ingebrigtsen <larsi@gnus.org>
3496
3497 * mail/smtpmail.el (smtpmail-send-it): Prefer the From: header
3498 over `user-mail-address' for the SMTP MAIL FROM envelope.
3499 (smtpmail-via-smtp): Ditto.
3500
3501 2012-09-04 Dmitry Gutov <dgutov@yandex.ru>
3502
3503 * progmodes/ruby-mode.el: Clean up keybindings.
3504 (ruby-mode-map): Don't bind ruby-electric-brace,
3505 ruby-beginning-of-defun, ruby-end-of-defun, ruby-mark-defun,
3506 backward-kill-word, reindent-then-newline-and-indent.
3507 (ruby-mark-defun): Remove.
3508 (ruby-electric-brace): Remove. Obsoleted by electric-indent-chars.
3509 (ruby-mode): Set local beginning-of-defun-function and
3510 end-of-defun-function values.
3511
3512 2012-09-03 Martin Rudalics <rudalics@gmx.at>
3513
3514 * window.el (temp-buffer-window-setup-hook)
3515 (temp-buffer-window-show-hook): New hooks.
3516 (temp-buffer-window-setup, temp-buffer-window-show)
3517 (with-temp-buffer-window): New functions.
3518 (fit-window-to-buffer): Remove unused optional argument OVERRIDE.
3519 (special-display-popup-frame): Make sure the window used shows BUFFER.
3520
3521 * help.el (temp-buffer-resize-mode): Fix doc-string.
3522 (resize-temp-buffer-window): New optional argument WINDOW.
3523
3524 * files.el (recover-file, save-buffers-kill-emacs):
3525 * dired.el (dired-mark-pop-up): Use with-temp-buffer-window.
3526
3527 2012-09-02 Michael Albinus <michael.albinus@gmx.de>
3528
3529 * eshell/em-unix.el (eshell/sudo): When we have an ad-hoc
3530 remote definition of `default-directory', ensure we can connect.
3531
3532 2012-09-02 Juri Linkov <juri@jurta.org>
3533
3534 Toggle whitespace matching mode with M-s SPC.
3535 http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00008.html
3536
3537 * isearch.el (search-whitespace-regexp): Doc fix.
3538 Remove cons cell customization.
3539 (isearch-mode-map): Bind "\M-s " to isearch-toggle-lax-whitespace.
3540 (isearch-lax-whitespace, isearch-regexp-lax-whitespace):
3541 New variables.
3542 (isearch-forward, isearch-forward-regexp): Doc fix.
3543 (isearch-toggle-lax-whitespace): New command.
3544 (search-forward-lax-whitespace, search-backward-lax-whitespace)
3545 (re-search-forward-lax-whitespace)
3546 (re-search-backward-lax-whitespace): New functions.
3547 (isearch-whitespace-regexp): Remove function.
3548 (isearch-query-replace): Let-bind replace-search-function and
3549 replace-re-search-function.
3550 (isearch-occur): Let-bind search-spaces-regexp according to the
3551 value of isearch-lax-whitespace and isearch-regexp-lax-whitespace.
3552 (isearch-quote-char): Check isearch-regexp-lax-whitespace in the
3553 condition for C-q SPC.
3554 (isearch-search-fun-default): Use new functions mentioned above.
3555 (isearch-search-forward, isearch-search-backward): Remove functions.
3556 (isearch-search): Don't let-bind search-spaces-regexp.
3557 (isearch-lazy-highlight-space-regexp): Remove variable.
3558 (isearch-lazy-highlight-lax-whitespace)
3559 (isearch-lazy-highlight-regexp-lax-whitespace): New variables.
3560 (isearch-lazy-highlight-new-loop): Use them.
3561 (isearch-lazy-highlight-search): Don't let-bind search-spaces-regexp.
3562
3563 2012-09-02 Chong Yidong <cyd@gnu.org>
3564
3565 * dired.el (dired-mode-map): Menu string fixes (Bug#11616).
3566
3567 2012-09-02 Glenn Morris <rgm@gnu.org>
3568
3569 * simple.el (undo): Tweak message in undo-only case. (Bug#12283)
3570
3571 2012-09-01 Glenn Morris <rgm@gnu.org>
3572
3573 * term.el: Tidy up menu definitions.
3574 (term-mode-map): Use easymenu for In/Out, Complete menus.
3575 (term-pager-break-map): Initialize in the defvar.
3576 (term-terminal-menu, term-signals-menu): Define with easymenu.
3577 (term-terminal-menu): Also show it in line-mode. (Bug#11957)
3578 (term-pager-menu): New, extracted from term-process-pager.
3579 (term-mode, term-char-mode, term-process-pager): Use easymenu-add.
3580 (term-update-mode-line): Propertize line/char and page items.
3581 (term-process-pager): Move keymap initialization elsewhere.
3582
3583 2012-09-01 Martin Rudalics <rudalics@gmx.at>
3584
3585 * window.el (switch-to-prev-buffer): Handle additional values of
3586 BURY-OR-KILL argument. Don't switch in minibuffer window.
3587 (switch-to-next-buffer): Don't switch in minibuffer window.
3588 (quit-restore-window): New function based on quit-window.
3589 Handle additional values of former KILL argument.
3590 (quit-window): Call quit-restore-window with appropriate
3591 interpretation of KILL argument.
3592 (display-buffer-below-selected): New buffer display action
3593 function.
3594
3595 2012-09-01 Stefan Monnier <monnier@iro.umontreal.ca>
3596
3597 * minibuffer.el (completion-at-point-functions): Complete docstring
3598 (bug#12254).
3599
3600 2012-09-01 Paul Eggert <eggert@cs.ucla.edu>
3601
3602 Better seed support for (random).
3603 * play/5x5.el, play/animate.el, play/cookie1.el, play/dissociate.el:
3604 * play/doctor.el, play/dunnet.el, play/gomoku.el, play/landmark.el:
3605 * play/mpuz.el, play/tetris.el, play/zone.el:
3606 * calc/calc-comb.el (math-init-random-base):
3607 * play/blackbox.el (bb-init-board):
3608 * play/life.el (life):
3609 * server.el (server-use-tcp):
3610 * type-break.el (type-break):
3611 Remove unnecessary call to (random t).
3612 * net/sasl.el (sasl-unique-id-function):
3613 Change (random t) to (random), now that the latter is more random.
3614 * play/life.el (life-initialized): Remove no-longer-needed var.
3615
3616 2012-08-31 Alp Aker <alp.tekin.aker@gmail.com>
3617
3618 * window.el (switch-to-prev-buffer, switch-to-next-buffer):
3619 Consider frame's buffer predicate when choosing the buffer.
3620 (Bug#12081)
3621
3622 2012-08-30 Richard Stallman <rms@gnu.org>
3623
3624 * simple.el (special-mode-map): Delete binding for `z'.
3625
3626 2012-08-30 Andreas Schwab <schwab@linux-m68k.org>
3627
3628 * progmodes/compile.el (compilation-always-kill): Doc fix.
3629
3630 2012-08-30 Chong Yidong <cyd@gnu.org>
3631
3632 * window.el (display-buffer-reuse-frames): Make the obsolescence
3633 message more informative.
3634
3635 2012-08-30 Glenn Morris <rgm@gnu.org>
3636
3637 * paren.el (show-paren-delay):
3638 Add a :set function. Doc fix. (Bug#12297)
3639
3640 2012-08-29 Martin Blais <blais@furius.ca> (tiny change)
3641
3642 * progmodes/compile.el (compilation-always-kill): New var.
3643 (compilation-start): Use it.
3644
3645 2012-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
3646
3647 * simple.el (read-only-mode): Move from files.el for bootstrapping.
3648 * files.el (read-only-mode): Move to simple.el.
3649
3650 * files.el (read-only-mode): New minor mode.
3651 (toggle-read-only): Use it and mark obsolete.
3652 (find-file--read-only):
3653 * vc/vc.el (vc-next-action, vc-checkout):
3654 * vc/vc-cvs.el (vc-cvs-checkout):
3655 * obsolete/vc-mcvs.el (vc-mcvs-update):
3656 * ffap.el (ffap--toggle-read-only): Update callers.
3657
3658 2012-08-29 Michael Albinus <michael.albinus@gmx.de>
3659
3660 * eshell/esh-ext.el (eshell-external-command): Do not examine
3661 remote shell scripts.
3662 See <https://bugs.launchpad.net/ubuntu/+source/emacs23/+bug/1035790>.
3663
3664 * net/tramp-sh.el (tramp-remote-path): Add "/sbin" and
3665 "/usr/local/sbin".
3666
3667 2012-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
3668
3669 * emacs-lisp/cl-lib.el (buffer-string): Fix setter macro (bug#12293).
3670
3671 2012-08-28 Leo Liu <sdl.web@gmail.com>
3672
3673 * progmodes/sh-script.el (sh-dynamic-complete-functions): Adapt to
3674 completion-at-point. (Bug#12220)
3675
3676 * skeleton.el (skeleton-untabify): Change to nil (bug#12223).
3677
3678 * progmodes/sh-script.el (sh-indent-comment): Change to t (bug#12267).
3679
3680 2012-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
3681
3682 * files.el (safe-local-eval-forms): Fix before-save-hook entry to
3683 be buffer-local; add delete-trailing-whitespace (bug#12259).
3684
3685 2012-08-28 Jeremy Moore <jmoore@ieee.org> (tiny change)
3686
3687 * progmodes/hideif.el (hif-compress-define-list):
3688 Fix typo. (Bug#11951)
3689
3690 2012-08-28 Dan Nicolaescu <dann@gnu.org>
3691
3692 * progmodes/hideshow.el (hs-block-end-regexp): Restore lost
3693 buffer local setting.
3694
3695 * net/rcirc.el (rcirc-split-message): Fix for buffer-local
3696 rcirc-encode-coding-system.
3697
3698 2012-08-28 Leo Liu <sdl.web@gmail.com>
3699
3700 * net/rcirc.el (rcirc-split-message): New function.
3701 (rcirc-send-message): Use it. (Bug#12051)
3702
3703 2012-08-28 Juri Linkov <juri@jurta.org>
3704
3705 * info.el (Info-fontify-node): Hide empty lines at the end of
3706 the node. (Bug#12272)
3707
3708 2012-08-27 Drew Adams <drew.adams@oracle.com>
3709
3710 * dired.el (dired-pop-to-buffer): Make window start at beginning
3711 of buffer (Bug#12281).
3712
3713 2012-08-26 Chong Yidong <cyd@gnu.org>
3714
3715 * window.el (special-display-regexps, special-display-frame-alist)
3716 (special-display-buffer-names, special-display-function)
3717 (display-buffer-reuse-frames): Mark as obsolete.
3718
3719 * progmodes/compile.el: Don't use display-buffer-reuse-frames.
3720
3721 * help.el (help-print-return-message): Don't treat
3722 display-buffer-reuse-frames specially.
3723
3724 2012-08-26 Chong Yidong <cyd@gnu.org>
3725
3726 * progmodes/gdb-mi.el (gdb-display-buffer-other-frame-action):
3727 New variable, replacing gdb-frame-parameters.
3728 (gdb-frame-io-buffer, gdb-frame-breakpoints-buffer)
3729 (gdb-frame-threads-buffer, gdb-frame-memory-buffer)
3730 (gdb-frame-disassembly-buffer, gdb-frame-stack-buffer)
3731 (gdb-frame-locals-buffer, gdb-frame-registers-buffer): Use it.
3732 (def-gdb-frame-for-buffer): Macro deleted. It is easier to define
3733 the functions directly with gdb-display-buffer-other-frame-action.
3734 (gdb-display-breakpoints-buffer, gdb-display-threads-buffer)
3735 (gdb-display-memory-buffer, gdb-display-disassembly-buffer)
3736 (gdb-display-stack-buffer, gdb-display-locals-buffer)
3737 (gdb-display-registers-buffer): Define directly.
3738 (def-gdb-display-buffer): Macro deleted.
3739 (gdb-display-buffer): Remove second and third args, callers don't
3740 use them. Defer to the default display-buffer behavior, apart
3741 from making windows dedicated.
3742 (gdb-setup-windows): Don't call display-buffer unnecessarily.
3743
3744 * progmodes/gud.el (gud-display-line): Just use display-buffer.
3745
3746 * window.el (display-buffer-pop-up-frame): Handle a
3747 pop-up-frame-parameters alist entry.
3748 (display-buffer): Document it.
3749
3750 2012-08-26 Chong Yidong <cyd@gnu.org>
3751
3752 * isearch.el (search-whitespace-regexp): Make string and nil
3753 values apply to both ordinary and regexp search. Allow a cons
3754 cell value to distinguish between the two.
3755 (isearch-whitespace-regexp, isearch-search-forward)
3756 (isearch-search-backward): New functions.
3757 (isearch-occur, isearch-search-fun-default, isearch-search)
3758 (isearch-lazy-highlight-new-loop): Use them.
3759 (isearch-forward, isearch-forward-regexp): Doc fix.
3760
3761 2012-08-26 Chong Yidong <cyd@gnu.org>
3762
3763 * faces.el (help-argument-name): Always inherit from italic
3764 (Bug#12213).
3765
3766 2012-08-25 Martin Rudalics <rudalics@gmx.at>
3767
3768 * window.el (window--even-window-heights): Even heights when
3769 WINDOW and the selected window form a vertical combination.
3770 (display-buffer-use-some-window): Provide that window used gets
3771 sized back by quit-window. (Bug#11880) and (Bug#12091)
3772
3773 2012-08-24 Paul Eggert <eggert@cs.ucla.edu>
3774
3775 Fix file time stamp problem with bzr and CVS (Bug#12001).
3776 * vc/vc-cvs.el (vc-cvs-parse-entry): Ignore subsecond information
3777 in the file's time stamp, since the version control system loses
3778 that information.
3779
3780 2012-08-22 Juri Linkov <juri@jurta.org>
3781
3782 * info.el (Info-fontify-node): Hide the suffix of the
3783 Info file name in the header line. (Bug#12187)
3784
3785 2012-08-22 Glenn Morris <rgm@gnu.org>
3786
3787 * calendar/cal-tex.el (cal-tex-weekly-common):
3788 Restore leading blank page.
3789
3790 2012-08-22 Le Wang <l26wang@gmail.com>
3791
3792 * misc.el (forward-to-word, backward-to-word): Activate or extend
3793 the region under `shift-select-mode'. (Bug#12231)
3794
3795 2012-08-22 Bastien Guerry <bzg@gnu.org>
3796
3797 * progmodes/executable.el (executable-prefix): Set to "#!" instead
3798 of "#! ". http://www.in-ulm.de/~mascheck/various/shebang/#details
3799 gives details on why the space is never needed.
3800
3801 2012-08-22 Martin Rudalics <rudalics@gmx.at>
3802
3803 * window.el (walk-window-tree, window-with-parameter):
3804 New optional argument MINIBUF to control whether these functions
3805 should run on the minibuffer window.
3806 (window-at-side-list): Don't operate on minibuffer window.
3807 (window-in-direction): Simplify and rewrite doc-string.
3808 (window--size-ignore): Rename to window--size-ignore-p.
3809 Update callers.
3810 (display-buffer-in-atom-window, window--major-non-side-window)
3811 (window--major-side-window, display-buffer-in-major-side-window)
3812 (delete-side-window, display-buffer-in-side-window):
3813 New functions.
3814 (window--side-check, window-deletable-p, delete-window)
3815 (delete-other-windows, split-window): Handle side windows and
3816 atomic windows appropriately.
3817 (window--display-buffer): Call display-buffer-record-window also
3818 when the window buffer did not change.
3819
3820 2012-08-22 Christopher Schmidt <christopher@ch.ristopher.com>
3821
3822 * help-fns.el (help-fns--key-bindings):
3823 Abbreviate non-symbol remap targets. (Bug#12174)
3824
3825 2012-08-22 Martin Rudalics <rudalics@gmx.at>
3826
3827 * dired.el (dired-mark-remembered): Don't clobber point.
3828 (Bug#11795)
3829
3830 2012-08-22 Glenn Morris <rgm@gnu.org>
3831
3832 * progmodes/bug-reference.el (bug-reference): New custom group.
3833 (bug-reference-bug-regexp): Make it a defcustom.
3834
3835 2012-08-22 Daiki Ueno <ueno@unixuser.org>
3836
3837 * progmodes/js.el (js-indent-level, js-expr-indent-offset)
3838 (js-paren-indent-offset, js-square-indent-offset)
3839 (js-curly-indent-offset): Add :safe (Bug#12257).
3840
3841 2012-08-22 Edward O'Connor <hober0@gmail.com>
3842
3843 * json.el (json-key-format): Add error properties.
3844 (json-encode-key): New function.
3845 (json-encode-hash-table, json-encode-alist, json-encode-plist):
3846 Use json-encode-key.
3847
3848 2012-08-22 Glenn Morris <rgm@gnu.org>
3849
3850 * calendar/cal-tex.el (cal-tex-longday): New function, replacing...
3851 (cal-tex-leftday, cal-tex-rightday): Remove functions.
3852 (cal-tex-weekly-common, cal-tex-cursor-filofax-2week):
3853 Update for above change.
3854
3855 2012-08-21 Andreas Schwab <schwab@linux-m68k.org>
3856
3857 * cus-face.el (custom-face-attributes): Fix customize type for the
3858 :underline attribute. (Bug#11805)
3859
3860 2012-08-21 Martin Rudalics <rudalics@gmx.at>
3861
3862 * window.el (window-point-1, set-window-point-1): Remove.
3863 (window-in-direction, record-window-buffer)
3864 (set-window-buffer-start-and-point, split-window-below)
3865 (window--state-get-1, display-buffer-record-window):
3866 Replace calls to window-point-1 and set-window-point-1 by calls to
3867 window-point and set-window-point respectively.
3868
3869 2012-08-21 Glenn Morris <rgm@gnu.org>
3870
3871 * calendar/cal-tex.el (cal-tex-weekly-common): New function.
3872 (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-week):
3873 Use it.
3874
3875 * calendar/cal-tex.el (cal-tex-rightday): Add optional funcname arg.
3876 (cal-tex-shortday): New function.
3877 (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-week)
3878 (cal-tex-cursor-filofax-daily): Use the above.
3879
3880 * calendar/cal-tex.el (cal-tex-leftday, cal-tex-rightday):
3881 New functions.
3882 (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-2week)
3883 (cal-tex-cursor-filofax-week): Use them.
3884
3885 * calendar/cal-tex.el (cal-tex-lefthead, cal-tex-righthead):
3886 New constants.
3887 (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-2week)
3888 (cal-tex-cursor-filofax-week, cal-tex-cursor-filofax-daily): Use them.
3889
3890 * calendar/cal-tex.el (cal-tex-preamble): Generate new buffers.
3891 (cal-tex-end-document): Don't rely on buffer name.
3892
3893 * calendar/cal-tex.el (cal-tex-cursor-filofax-year):
3894 Use cal-tex-vspace.
3895 (cal-tex-vspace, cal-tex-hspace, cal-tex-em, cal-tex-bf)
3896 (cal-tex-Huge-bf, cal-tex-large-bf): Use cal-tex-cmd.
3897 (cal-tex-scriptsize, cal-tex-huge, cal-tex-Huge, cal-tex-large):
3898 Use cal-tex-arg.
3899
3900 * calendar/cal-tex.el (cal-tex-cursor-filofax-year)
3901 (cal-tex-cursor-week, cal-tex-cursor-week2)
3902 (cal-tex-cursor-week-iso, cal-tex-cursor-week-at-a-glance)
3903 (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
3904 (cal-tex-cursor-filofax-daily, cal-tex-cursor-day)
3905 (cal-tex-insert-preamble, cal-tex-b-document)
3906 (cal-tex-e-document, cal-tex-b-center, cal-tex-e-center):
3907 Improve cal-tex-cmd usage.
3908
3909 * calendar/cal-tex.el (cal-tex-filofax-paper): New function.
3910 (cal-tex-cursor-filofax-year, cal-tex-cursor-filofax-2week)
3911 (cal-tex-cursor-filofax-week, cal-tex-cursor-filofax-daily): Use it.
3912 (cal-tex-weekly-paper): New function.
3913 (cal-tex-cursor-week, cal-tex-cursor-week2)
3914 (cal-tex-cursor-week-iso, cal-tex-cursor-week-monday)
3915 (cal-tex-cursor-day): Use it.
3916
3917 * calendar/cal-tex.el (cal-tex-cursor-week-at-a-glance)
3918 (cal-tex-cursor-filofax-week): Remove leading blank page.
3919
3920 * calendar/cal-tex.el (cal-tex-cursor-week-at-a-glance):
3921 Add autoload cookie. For now at least, don't use color, since
3922 no other cal-tex function does.
3923
3924 * calendar/cal-tex.el (cal-tex-cursor-week-iso)
3925 (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
3926 (cal-tex-cursor-filofax-daily): Correct start date for diary entries.
3927
3928 2012-08-21 Juri Linkov <juri@jurta.org>
3929
3930 * info.el (Info-file-attributes): New variable.
3931 (info-insert-file-contents): Add file attributes to
3932 `Info-file-attributes'. Clear the caches `Info-index-nodes' and
3933 `Info-toc-nodes' when previous modtime of the Info file is less
3934 than new modtime.
3935 (Info-toc-nodes, Info-index-nodes): Move definitions up to the top
3936 of info.el. (Bug#12230)
3937
3938 2012-08-20 Glenn Morris <rgm@gnu.org>
3939
3940 * calendar/diary-lib.el (diary-include-files, diary-sexp-entry):
3941 * calendar/holidays.el (calendar-holiday-list):
3942 Report errors with display-warning rather than beep'n'sleep.
3943
3944 2012-08-20 Michael Albinus <michael.albinus@gmx.de>
3945
3946 * net/tramp.el (tramp-accept-process-output): Accept only output
3947 from PROC. Otherwise, process filters and sentinels might be
3948 confused. (Bug#12145)
3949
3950 2012-08-20 Chong Yidong <cyd@gnu.org>
3951
3952 * descr-text.el (describe-text-properties-1): Use overlays-in to
3953 report on empty overlays (Bug#3322).
3954
3955 2012-08-20 Glenn Morris <rgm@gnu.org>
3956
3957 * mail/rmailout.el (rmail-output-read-file-name):
3958 Trap and report errors in rmail-output-file-alist elements.
3959
3960 * font-lock.el (font-lock-add-keywords): Doc fix (quote face names
3961 since most non-font-lock faces are not also variables).
3962
3963 2012-08-20 Edward Reingold <reingold@iit.edu>
3964
3965 * calendar/cal-tex.el (cal-tex-cursor-week-at-a-glance):
3966 New function. (Bug12160)
3967
3968 2012-08-19 Glenn Morris <rgm@gnu.org>
3969
3970 * mail/rmailout.el (rmail-output-read-file-name):
3971 Fix previous change (when the alist is nil or does not match).
3972
3973 2012-08-19 Chong Yidong <cyd@gnu.org>
3974
3975 * xml.el (xml-escape-string): Don't refer to xml-entity-alist
3976 (Bug#12228).
3977
3978 2012-08-18 Chong Yidong <cyd@gnu.org>
3979
3980 * simple.el (yank-handled-properties): New defcustom.
3981 (yank-excluded-properties): Add font-lock-face and category.
3982 (yank): Doc fix.
3983
3984 * subr.el (remove-yank-excluded-properties):
3985 Obey yank-handled-properties. The special handling of font-lock-face
3986 and category is now done this way, instead of being hard-coded.
3987 (insert-for-yank-1): Remove font-lock-face handling.
3988 (yank-handle-font-lock-face-property)
3989 (yank-handle-category-property): New function.
3990
3991 2012-08-17 Glenn Morris <rgm@gnu.org>
3992
3993 * mail/rmailout.el (rmail-output-read-file-name):
3994 Check rmail-output-file-alist against the full message body
3995 in the correct rmail buffer. (Bug#12214)
3996
3997 2012-08-17 Michael Albinus <michael.albinus@gmx.de>
3998
3999 * net/tramp-sh.el (tramp-sh-handle-start-file-process):
4000 Eliminate superfluous prompt. (Bug#12203)
4001
4002 2012-08-17 Chong Yidong <cyd@gnu.org>
4003
4004 * mouse.el (mouse-appearance-menu): If x-select-font returns a
4005 font spec, set the font directly (Bug#3228).
4006
4007 2012-08-17 Martin Rudalics <rudalics@gmx.at>
4008
4009 * window.el (delete-window): Fix last fix.
4010
4011 2012-08-16 Martin Rudalics <rudalics@gmx.at>
4012
4013 * window.el (window-valid-p): Move to window.c.
4014 (window-child, window-child-count, window-last-child)
4015 (window-normalize-window, window-combined-p)
4016 (window-combinations, window-atom-root, window-min-size)
4017 (window-sizable, window-sizable-p, window-size-fixed-p)
4018 (window-min-delta, window-max-delta, window--resizable)
4019 (window--resizable-p, window-resizable, window-total-size)
4020 (window-full-height-p, window-full-width-p, window-body-size)
4021 (window-at-side-p, adjust-window-trailing-edge, maximize-window)
4022 (minimize-window, window-deletable-p, delete-window)
4023 (delete-other-windows, set-window-buffer-start-and-point)
4024 (next-buffer, previous-buffer, split-window, balance-windows-2)
4025 (set-window-text-height, window-buffer-height)
4026 (fit-window-to-buffer, shrink-window-if-larger-than-buffer)
4027 (truncated-partial-width-window-p): Minor code adjustments.
4028 In doc-strings state whether the argument window has to denote a
4029 live, valid or any window.
4030
4031 2012-08-16 Phil Sainty <psainty@orcon.net.nz> (tiny change)
4032
4033 * progmodes/subword.el (subword-forward-function)
4034 (subword-backward-function, subword-forward-regexp)
4035 (subword-backward-regexp): New variables.
4036 (subword-forward, subword-forward-internal, subword-backward-internal):
4037 Use new variables, eg so that different "word" definitions
4038 can be easily used. (Bug#11411)
4039
4040 2012-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
4041
4042 * vc/vc-mtn.el (vc-mtn-revision-completion-table): Handle completion
4043 for composite selectors.
4044 * vc/vc.el (vc-diff-build-argument-list-internal): Don't prevent
4045 operation just because we can't find a previous revision.
4046
4047 2012-08-15 Chong Yidong <cyd@gnu.org>
4048
4049 * frame.el (set-frame-font): Accept font objects.
4050
4051 2012-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
4052
4053 * textmodes/tex-mode.el (tex-insert-quote): ~ is a space (bug#12137).
4054
4055 2012-08-15 Wolfgang Jenkner <wjenkner@inode.at>
4056
4057 * man.el (Man-overstrike-face, Man-underline-face)
4058 (Man-reverse-face): Remove variables.
4059 (Man-overstrike, Man-underline, Man-reverse): New faces.
4060 (Man-fontify-manpage): Use them instead of the variables.
4061 (Man-cleanup-manpage): Comment change.
4062 (Man-ansi-color-map): New variable.
4063 (Man-fontify-manpage): Use it.
4064 Call ansi-color-apply-on-region to replace ad hoc code (bug#12147).
4065
4066 Implement ANSI SGR parameters 22-27 (bug#12146).
4067 * ansi-color.el (ansi-colors): Doc fix.
4068 (ansi-color-context, ansi-color-context-region): Doc fix.
4069 (ansi-color--find-face): New function.
4070 (ansi-color-apply, ansi-color-apply-on-region): Use it.
4071 Rename the local variable `face' to `codes' since it is now a list of
4072 ansi codes. Doc fix.
4073 (ansi-color-get-face): Remove.
4074 (ansi-color-parse-sequence): New function, derived from
4075 ansi-color-get-face.
4076 (ansi-color-apply-sequence): Use it. Rewrite, and support ansi
4077 codes 22-27.
4078
4079 2012-08-14 Stefan Monnier <monnier@iro.umontreal.ca>
4080
4081 * subr.el (read-passwd): Allow use from a minibuffer.
4082
4083 2012-08-14 Eli Zaretskii <eliz@gnu.org>
4084
4085 * tooltip.el (tooltip-identifier-from-point): Don't treat tokens
4086 inside comments and strings as identifiers.
4087
4088 * progmodes/gud.el (gud-tooltip-print-command): Quote the
4089 expression to evaluate. This allows to evaluate expressions with
4090 embedded whitespace.
4091 (gud-tooltip-tips): Add a blank before the newline in the
4092 message-box text, for the benefit of message-box emulation on
4093 MS-Windows.
4094
4095 * progmodes/gdb-mi.el (gdb-tooltip-print): Don't ignore error
4096 messages from GDB, pop them up in a tooltip to give feedback to
4097 user.
4098 (gdb-tooltip-print-1): Quote the expression to evaluate.
4099 This allows to evaluate expressions with embedded whitespace.
4100 (gdb-inferior-io--init-proc): Don't send "-inferior-tty" command
4101 if the TTY name is nil or empty (which happens when communicating
4102 with the inferior via pipes, e.g. on MS-Windows).
4103 (gdb-internals): If GDB sends a "&\n" empty debugging message,
4104 don't send that to the GUD buffer.
4105
4106 2012-08-14 Glenn Morris <rgm@gnu.org>
4107
4108 * emacs-lisp/bytecomp.el (byte-compile-setq-default):
4109 Optimize away setq-default with no args, as for setq. (Bug#12195)
4110
4111 2012-08-14 Chong Yidong <cyd@gnu.org>
4112
4113 * minibuffer.el (read-file-name): Doc fix (Bug#10881).
4114
4115 * emacs-lisp/regexp-opt.el (regexp-opt-charset): Doc fix
4116 (Bug#12085).
4117
4118 2012-08-14 Glenn Morris <rgm@gnu.org>
4119
4120 * emacs-lisp/bytecomp.el (byte-recompile-file): Doc fix.
4121
4122 2012-08-14 Michael Albinus <michael.albinus@gmx.de>
4123
4124 * net/tramp-sh.el (tramp-open-shell): Cache the shell name.
4125 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
4126 Use cached shell name.
4127
4128 2012-08-14 Fabián Ezequiel Gallina <fgallina@cuca>
4129
4130 * progmodes/python.el (python-shell-send-string):
4131 (python-shell-send-setup-code): Do not use `format' with `message'.
4132
4133 2012-08-14 Dmitry Gutov <dgutov@yandex.ru>
4134
4135 * progmodes/ruby-mode.el: Improve percent literals (bug#6286).
4136 (ruby-percent-literal-beg-re): New constant.
4137 (ruby-syntax-general-delimiters-goto-beg): Rename to
4138 `ruby-syntax-enclosing-percent-literal', improve literal type check.
4139 (ruby-syntax-propertize-general-delimiters): Rename to
4140 `ruby-syntax-propertize-percent-literal', it's a shorter and more
4141 popular term. Adjust comments everywhere.
4142 (ruby-syntax-propertize-percent-literal): Only propertize when not
4143 inside a simple string or comment. When the literal is unclosed,
4144 leave the text after it unpropertized.
4145 (ruby-syntax-methods-before-regexp): New constant.
4146 (ruby-syntax-propertize-function): Use it to recognize regexps.
4147 Don't look at the text after regexp, just use the whitelist.
4148
4149 2012-08-14 Andreas Schwab <schwab@linux-m68k.org>
4150
4151 * emacs-lisp/bytecomp.el (byte-recompile-file): When LOAD is
4152 non-nil always load the compiled file if it exists. (Bug#12197)
4153
4154 2012-08-14 Chong Yidong <cyd@gnu.org>
4155
4156 * hi-lock.el (hi-lock-mode): Do not unilaterally enable font lock.
4157 (hi-lock-set-pattern): When deciding whether to use font lock or
4158 overlays, look at font-lock-mode instead of font-lock-fontified
4159 (Bug#12168).
4160 (hi-lock-mode, hi-lock-line-face-buffer, hi-lock-unface-buffer)
4161 (hi-lock-face-buffer, hi-lock-face-phrase-buffer): Doc fix.
4162
4163 2012-08-14 Daiki Ueno <ueno@unixuser.org>
4164
4165 * subr.el (internal--after-with-selected-window): Fix typo
4166 (Bug#12193).
4167
4168 2012-08-14 Fabián Ezequiel Gallina <fgallina@cuca>
4169
4170 Use `completion-table-dynamic' for completion functions.
4171 * progmodes/python.el
4172 (python-shell-completion--do-completion-at-point)
4173 (python-shell-completion--get-completions):
4174 Remove functions.
4175 (python-shell-completion-complete-at-point): New function.
4176 (python-completion-complete-at-point): Use it.
4177
4178 2012-08-13 Jambunathan K <kjambunathan@gmail.com>
4179
4180 * vc/vc-dir.el (vc-dir-hide-state): New command (bug#12159).
4181 (vc-dir-hide-up-to-date): Route it to `vc-dir-hide-state'.
4182
4183 2012-08-13 Stefan Monnier <monnier@iro.umontreal.ca>
4184
4185 * subr.el (function-get): Refine `autoload' arg so it can also
4186 autoload functions for gv.el (bug#12191).
4187 * emacs-lisp/edebug.el (get-edebug-spec): Adjust so it only
4188 autoloads macros.
4189
4190 * color.el (color-xyz-to-lab, color-lab-to-xyz, color-cie-de2000):
4191 Prefer pcase-let over destructuring-bind.
4192 * vc/diff-mode.el (diff-remove-trailing-whitespace): Same.
4193 Also, remove whitespace as we go, rather than after accumulating the
4194 various places.
4195
4196 * subr.el (internal--before-with-selected-window)
4197 (internal--after-with-selected-window): Fix typo seleted->selected.
4198 (with-selected-window): Adjust callers.
4199 Reported by Dmitry Gutov <dgutov@yandex.ru>.
4200
4201 2012-08-13 Bastien Guerry <bzg@gnu.org>
4202
4203 * window.el (special-display-popup-frame): Minor docstring
4204 enhancement. (Bug#12172)
4205
4206 2012-08-13 Andreas Schwab <schwab@linux-m68k.org>
4207
4208 * tar-mode.el (tar-header-data-end): Only ignore size for files of
4209 type 1-6.
4210 (tar-header-block-summarize, tar-get-descriptor): Handle pax
4211 extended headers.
4212
4213 * files.el (hack-local-variables-filter): Remove useless eval.
4214
4215 2012-08-13 Martin Rudalics <rudalics@gmx.at>
4216
4217 * subr.el (with-selected-window): Fix last change.
4218
4219 2012-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
4220
4221 * subr.el (internal--before-with-seleted-window)
4222 (internal--after-with-seleted-window): New functions.
4223 (with-selected-window): Use them, to replace dependency on
4224 tty-top-frame.
4225
4226 2012-08-12 Nobuyoshi Nakada <nobu@ruby-lang.org>
4227
4228 * progmodes/ruby-mode.el (ruby-mode-map): Remove unnecessary
4229 binding for `newline'.
4230 (ruby-move-to-block): When moving backward, stop at block opening,
4231 not indentation.
4232 * progmodes/ruby-mode.el (ruby-brace-to-do-end)
4233 (ruby-do-end-to-brace, ruby-toggle-block): New functions.
4234 * progmodes/ruby-mode.el (ruby-mode-map): Add binding for
4235 `ruby-toggle-block'.
4236
4237 2012-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
4238
4239 * ibuffer.el (ibuffer-do-toggle-read-only):
4240 * dired.el (dired-toggle-read-only):
4241 * buff-menu.el (Buffer-menu-toggle-read-only):
4242 * bindings.el (mode-line-toggle-read-only):
4243 * bs.el (bs-toggle-readonly): Call toggle-read-only interactively.
4244
4245 2012-08-12 Andreas Schwab <schwab@linux-m68k.org>
4246
4247 * descr-text.el (describe-char): Put the overlays over the
4248 "displayed as" character.
4249
4250 2012-08-12 Jay Belanger <jay.p.belanger@gmail.com>
4251
4252 * calc/calc-units.el (math-default-units-table): Give an
4253 initial value.
4254 (math-put-default-units): Add options to put composite units and
4255 unit systems in the default units table.
4256 (calc-convert-units): Send composite units to
4257 `math-put-default-units' when appropriate.
4258
4259 2012-08-11 Glenn Morris <rgm@gnu.org>
4260
4261 * emacs-lisp/copyright.el (copyright-update-directory): Logic fix.
4262
4263 * tutorial.el (help-with-tutorial):
4264 * emacs-lisp/copyright.el (copyright-update-directory):
4265 * emacs-lisp/autoload.el (autoload-find-generated-file)
4266 (autoload-find-file): Disable local eval: (for insurance).
4267
4268 * files.el (hack-local-variables-filter): If an eval: form is not
4269 known to be safe, and enable-local-variables is :safe, then ignore
4270 the form totally, as is done for non-eval forms. (Bug#12155)
4271 This is CVE-2012-3479.
4272
4273 2012-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
4274
4275 * emacs-lisp/rx.el (rx-constituents): Don't define as constant.
4276 (rx-form): Simplify.
4277
4278 2012-08-09 Dmitry Gutov <dgutov@yandex.ru>
4279
4280 * progmodes/ruby-mode.el (ruby-expr-beg, ruby-parse-partial):
4281 ?, _, and : are symbol constituents, ! is not (but kinda should be).
4282 (ruby-syntax-propertize-heredoc): Use ruby-singleton-class-p.
4283 (ruby-syntax-propertize-function): Adjust for changes in
4284 `ruby-syntax-propertize-heredoc'.
4285
4286 2012-08-09 Nobuyoshi Nakada <nobu@ruby-lang.org>
4287
4288 * progmodes/ruby-mode.el (ruby-mode-map): Remove deprecated
4289 binding (use `M-;' instead).
4290 (ruby-singleton-class-p): New function.
4291 (ruby-expr-beg, ruby-in-here-doc-p) Use it.
4292
4293 2012-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
4294
4295 * emacs-lisp/cl-macs.el (cl-loop): Improve debug spec.
4296
4297 2012-08-10 Chong Yidong <cyd@gnu.org>
4298
4299 * progmodes/python.el (python-shell-get-process-name): Don't mess
4300 with same-window-buffer-names.
4301
4302 * eshell/eshell.el (eshell-add-to-window-buffer-names)
4303 (eshell-remove-from-window-buffer-names): Make obsolete.
4304 (eshell-buffer-name, eshell-unload-hook): Don't use them.
4305 (eshell): Just use pop-to-buffer-same-window instead.
4306
4307 2012-08-10 Chong Yidong <cyd@gnu.org>
4308
4309 * bindings.el: Bind M-= back to count-words-region.
4310
4311 * simple.el (count-words-region): Accept a prefix arg for acting
4312 on the entire buffer.
4313 (count-words--buffer-message): New helper function.
4314
4315 2012-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
4316
4317 * term/x-win.el (x-menu-bar-open): Always pass last-nonmenu-event.
4318 * subr.el (eventp): `nil' is not an event, and eventp is not hot.
4319 (event-start, event-end): Use posn-at-point to return a more
4320 informative posn.
4321 (posnp): New function.
4322 * mouse.el (popup-menu-normalize-position): Use it.
4323
4324 2012-08-10 Masatake YAMATO <yamato@redhat.com>
4325
4326 * mouse.el (popup-menu-normalize-position): New function.
4327 (popup-menu): Use `popup-menu-normalize-position' to normalize
4328 the form for POSITION argument.
4329
4330 * term/x-win.el (x-menu-bar-open):
4331 Use the value returend from (posn-at-point) as position
4332 passed to `popup-menu'.
4333
4334 2012-08-09 Jay Belanger <jay.p.belanger@gmail.com>
4335
4336 * calc/calccomp.el (math-compose-expr): Add extra argument
4337 indicating that parentheses should be put around products in
4338 denominators. Give multiplication precedence over division during
4339 composition.
4340
4341 2012-08-09 Chong Yidong <cyd@gnu.org>
4342
4343 * man.el (Man-switches, Man-sed-command, Man-awk-command)
4344 (Man-mode-hook, Man-cooked-hook, Man-untabify-command-args)
4345 (Man-untabify-command, manual-program): Convert to defcustom
4346 (Bug#10429).
4347
4348 * vc/add-log.el (change-log-mode): Bind comment-start to nil.
4349
4350 * descr-text.el (describe-char): Don't insert extra newlines
4351 (Bug#10127).
4352
4353 * vc/log-view.el (log-view-diff): Use use-region-p (Bug#10133).
4354 (log-view-diff-changeset, log-view-minor-wrap): Likewise.
4355
4356 * align.el (align-region): Delete temporary markers (Bug#10047).
4357 Plus some code cleanups.
4358
4359 2012-08-09 Fabián Ezequiel Gallina <fgallina@cuca>
4360
4361 * progmodes/python.el (python-pdbtrack-tracked-buffer)
4362 (python-pdbtrack-buffers-to-kill, python-shell-internal-buffer)
4363 (python-shell-internal-last-output): Use make-local-variable
4364 instead of make-variable-buffer-local.
4365
4366 2012-08-09 Fabián Ezequiel Gallina <fgallina@cuca>
4367
4368 * progmodes/python.el: Enhancements to forward-sexp.
4369 (python-nav-forward-sexp): Rename from
4370 python-nav-forward-sexp-function.
4371 (python-nav--forward-sexp, python-nav--backward-sexp):
4372 New functions.
4373
4374 2012-08-09 Jay Belanger <jay.p.belanger@gmail.com>
4375
4376 * calc/calc-menu.el (calc-modes-menu): Add entries for matrix
4377 modes and simplification modes.
4378
4379 2012-08-09 Stefan Monnier <monnier@iro.umontreal.ca>
4380
4381 * delsel.el (delete-selection-pre-hook): Don't propagate the
4382 file-supersession signals (bug#12161).
4383
4384 2012-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
4385
4386 * emacs-lisp/cl.el (cl-map-keymap-recursively, cl-map-intervals)
4387 (cl-map-extents): Add compatibility aliases (bug#12135).
4388
4389 2012-08-08 Michael Albinus <michael.albinus@gmx.de>
4390
4391 * net/tramp-sh.el (tramp-find-file-exists-command): Protect the
4392 tests by `ignore-error'.
4393 (tramp-find-shell): Open also a new shell, when cache is already
4394 set. Reported by Carsten Bormann <cabo@tzi.org>. (Bug#12148)
4395
4396 2012-08-08 Juri Linkov <juri@jurta.org>
4397
4398 * bookmark.el: Add `defaults' property to the bookmark record.
4399 (bookmark-current-buffer): Doc fix.
4400 (bookmark-make-record): Add `defaults' property with default values
4401 to the bookmark record.
4402 (bookmark-minibuffer-read-name-map): Remove key binding "\C-u"
4403 with `bookmark-insert-current-bookmark'.
4404 (bookmark-set): Get `defaults' property from the bookmark record
4405 and use it in `read-from-minibuffer'.
4406 (bookmark-insert-current-bookmark): Remove function.
4407
4408 * info.el (Info-bookmark-make-record): Add `defaults' property
4409 with values of canonical Info node name, the current Info file
4410 name and the current Info node name. (Bug#12107)
4411
4412 2012-08-08 Juri Linkov <juri@jurta.org>
4413
4414 * files.el (basic-save-buffer): Use `buffer-name' as the default
4415 of `read-file-name' when buffer is not visiting a file (bug#12128).
4416
4417 2012-08-08 Juri Linkov <juri@jurta.org>
4418
4419 * info.el (Info-isearch-search): Doc fix.
4420 (Info-search): Change search-failed message from "initial node" to
4421 "end of node" (bug#12078).
4422 (Info-isearch-search): Change `isearch-string-state' to
4423 `isearch--state-string'.
4424
4425 2012-08-08 Glenn Morris <rgm@gnu.org>
4426
4427 * language/persian.el: Remove file.
4428 * language/misc-lang.el: Move unique part of persian.el here.
4429 * loadup.el: Remove language/persian.
4430
4431 2012-08-08 Óscar Fuentes <ofv@wanadoo.es>
4432
4433 * vc/diff-mode.el (diff-remove-trailing-whitespace): New function.
4434
4435 2012-08-08 Fabián Ezequiel Gallina <fgallina@cuca>
4436
4437 * progmodes/python.el: Fix defsubst warning.
4438 (python-syntax-context) Rename from python-info-ppss-context.
4439 (python-syntax-context-type): Rename from
4440 python-info-ppss-context-type.
4441 (python-syntax-comment-or-string-p): Rename from
4442 python-info-ppss-comment-or-string-p.
4443
4444 2012-08-08 Jay Belanger <jay.p.belanger@gmail.com>
4445
4446 * calc/calc-misc.el (calc-record-why): Don't record a message twice.
4447
4448 2012-08-07 Andreas Schwab <schwab@linux-m68k.org>
4449
4450 * emacs-lisp/lisp-mode.el (eval-defun-1): Handle standard value of
4451 a defcustom that is quoted with backquote.
4452
4453 * calc/calc-prog.el (math-do-defmath): Use backquote forms.
4454 Fix handling of interactive spec when the body uses return.
4455 (math-do-arg-check, math-define-function-body): Use backquote forms.
4456 * calc/calc-ext.el (math-defcache): Likewise.
4457 * calc/calc-rewr.el (math-rwfail, math-rweval): Likewise.
4458 * allout.el (allout-new-exposure): Likewise.
4459 * calc/calcalg2.el (math-tracing-integral): Likewise.
4460 * info.el (Info-last-menu-item): Likewise.
4461 * emulation/vip.el (vip-loop): Likewise.
4462 * textmodes/artist.el (artist-funcall): Likewise.
4463 * menu-bar.el (menu-bar-make-mm-toggle, menu-bar-make-toggle):
4464 Construct menu-item directly.
4465
4466 * progmodes/autoconf.el (font-lock-syntactic-keywords):
4467 Don't declare.
4468
4469 2012-08-07 Chong Yidong <cyd@gnu.org>
4470
4471 * simple.el (deactivate-mark): Preserve text properties when
4472 saving the primary selection (Bug#8384).
4473
4474 2012-08-07 Kevin Ryde <user42@zip.com.au>
4475
4476 * woman.el (woman0-if): Quietly treat ".if v" as false (Bug#12109).
4477 (woman-parse-numeric-value): On a bad .IP line, issue a warning
4478 and continue processing (Bug#12110).
4479
4480 2012-08-06 Stefan Monnier <monnier@iro.umontreal.ca>
4481
4482 * progmodes/cperl-mode.el (cperl-mode): Yet another fix for
4483 syntax-propertize-function (bug#10095).
4484
4485 2012-08-06 Stefan Monnier <monnier@iro.umontreal.ca>
4486
4487 * help-fns.el (help-fns--key-bindings, help-fns--signature)
4488 (help-fns--parent-mode, help-fns--obsolete): New funs, extracted from
4489 describe-function-1.
4490 (describe-function-1): Use them. Move compiler macro after sig.
4491 (help-fns--compiler-macro): Use function-get. Assume we're already in
4492 standard-output. Adjust layout to new call order.
4493
4494 * emacs-lisp/cl-macs.el (cl--sm-macroexpand): Fix handling of
4495 re-binding a symbol that has a symbol-macro (bug#12119).
4496
4497 2012-08-06 Mohsen BANAN <libre@mohsen.1.banan.byname.net>
4498
4499 * language/persian.el: New file. (Bug#11812)
4500 * loadup.el: Add language/persian.el.
4501
4502 2012-08-06 Chong Yidong <cyd@gnu.org>
4503
4504 * window.el (window--maybe-raise-frame): New function.
4505 (window--display-buffer): Split off from here.
4506 (display-buffer-reuse-window, display-buffer-pop-up-frame)
4507 (display-buffer-pop-up-window, display-buffer-use-some-window):
4508 Obey an inhibit-switch-frame action alist entry.
4509 (display-buffer): Update doc.
4510
4511 * replace.el (occur-after-change-function): Avoid losing focus by
4512 using the inhibit-switch-frame display parameter (Bug#12139).
4513
4514 2012-08-06 Fabián Ezequiel Gallina <fgallina@cuca>
4515
4516 Make internal shell process buffer names start with space.
4517 * progmodes/python.el (python-shell-make-comint): Add optional
4518 argument INTERNAL.
4519 (run-python-internal): Use it.
4520 (python-shell-internal-get-or-create-process): Check for new
4521 internal buffer names.
4522
4523 2012-08-06 Glenn Morris <rgm@gnu.org>
4524
4525 * eshell/esh-ext.el (eshell/addpath): Use dolist and mapconcat.
4526 Do less getting and setting of environment variables.
4527
4528 2012-08-05 Chong Yidong <cyd@gnu.org>
4529
4530 * proced.el (proced): Add substitution string to docstring to
4531 trigger autoloading of the proced library on C-h f (Bug#1768).
4532
4533 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
4534 Don't show defvars which have no second argument (Bug#8638).
4535
4536 * imenu.el (imenu-generic-expression): Move documentation here
4537 from imenu--generic-function.
4538 (imenu--generic-function): Refer to imenu-generic-expression.
4539
4540 2012-08-05 Vegard Øye <vegard_oye@hotmail.com> (tiny change)
4541
4542 * emulation/viper-init.el (viper-deflocalvar): Add docstring and
4543 indentation declaration.
4544 (viper-loop): Add indentation declaration (Bug#7025).
4545
4546 2012-08-05 Chong Yidong <cyd@gnu.org>
4547
4548 * help-fns.el (describe-variable): Add hyperlink for
4549 directory-local variables files. Improve buffer-local and
4550 permanent-local reporting; suggested by MON KEY (Bug#6644).
4551
4552 * help-mode.el (help-dir-local-var-def): New button type.
4553
4554 * files.el (kill-buffer-hook): Provide a defvar.
4555
4556 2012-08-05 Glenn Morris <rgm@gnu.org>
4557
4558 * eshell/esh-ext.el (eshell/addpath):
4559 Also update eshell-path-env. (Bug#12013)
4560
4561 2012-08-05 Chong Yidong <cyd@gnu.org>
4562
4563 * wdired.el (wdired-mode, wdired-change-to-wdired-mode): Doc fixes.
4564
4565 * fringe.el (fringe-styles): Add docstring.
4566 (fringe--check-mode): New function.
4567 (set-fringe-mode, set-fringe-style): Use it.
4568 (fringe-mode, set-fringe-style): Doc fixes (Bug#6480).
4569
4570 * files.el (set-auto-mode): Fix invalid setq call.
4571
4572 2012-08-04 Stefan Monnier <monnier@iro.umontreal.ca>
4573
4574 * isearch.el: Misc simplification; use defstruct.
4575 (isearch-mode-map): Dense maps now work like sparse ones.
4576 (isearch--state): New defstruct.
4577 (isearch-string-state, isearch-message-state, isearch-point-state)
4578 (isearch-success-state, isearch-forward-state)
4579 (isearch-other-end-state, isearch-word-state, isearch-error-state)
4580 (isearch-wrapped-state, isearch-barrier-state)
4581 (isearch-case-fold-search-state, isearch-pop-fun-state): Remove,
4582 replaced by defstruct's accessors.
4583 (isearch--set-state): Rename from isearch-top-state and change
4584 calling convention.
4585 (isearch-push-state): Use new isearch--get-state.
4586 (isearch-toggle-word): Disable regexp when enabling word.
4587 (isearch-message-prefix): Remove unused arg _c-q-hack.
4588 (isearch-message-suffix): Remove unused arg _ellipsis.
4589
4590 2012-08-04 Andreas Schwab <schwab@linux-m68k.org>
4591
4592 * simple.el (list-processes--refresh): For a server use :host or
4593 :local as the address.
4594 (list-processes): Doc fix.
4595
4596 2012-08-04 Michal Nazarewicz <mina86@mina86.com>
4597
4598 * lisp/mpc.el: Support password in host argument.
4599 (mpc--proc-connect): Parse and use new password element.
4600 Set mpc-proc variable instead of returning process.
4601 (mpc-proc): Adjust accordingly.
4602
4603 2012-08-03 Eli Zaretskii <eliz@gnu.org>
4604
4605 * whitespace.el (whitespace-display-mappings): Use Unicode
4606 codepoints, instead of emacs-mule codepoints. See
4607 http://lists.gnu.org/archive/html/help-gnu-emacs/2012-07/msg00366.html
4608 for the details.
4609
4610 * files.el (file-truename): Don't skip symlink-chasing part on
4611 windows-nt. Incorporate the resolution of 8+3 short aliases on
4612 Windows into the loop that recursively chases symlinks.
4613 Compare directory and its parent case-insensitively on MS-Windows and
4614 MS-DOS.
4615
4616 2012-08-03 Chong Yidong <cyd@gnu.org>
4617
4618 * menu-bar.el (menu-bar-tools-menu): Remove PCL-CVS.
4619
4620 * sort.el (sort-regexp-fields): Doc fix.
4621
4622 2012-08-03 Tassilo Horn <tsdh@gnu.org>
4623
4624 * textmodes/reftex.el (reftex-compile-variables): Make keyvals
4625 labels regex position point at the expected place.
4626
4627 2012-08-03 MON KEY <monkey@sandpframing.com>
4628
4629 * net/imap.el (imap-interactive-login, imap-authenticate)
4630 (imap-mailbox-lsub, imap-mailbox-list)
4631 (imap-mailbox-status-asynch, imap-mailbox-acl-delete)
4632 (imap-fetch, imap-message-flag-permanent-p, imap-envelope-from)
4633 (imap-parse-response): Doc fix.
4634
4635 2012-08-03 João Távora <joaotavora@gmail.com>
4636
4637 * textmodes/tex-mode.el (latex-forward-sexp): Terminate the loop
4638 if sexp scanning does not move point (Bug#5734).
4639
4640 2012-08-02 Tassilo Horn <tsdh@gnu.org>
4641
4642 * textmodes/reftex-vars.el (reftex-default-label-alist-entries):
4643 Add listings, minted, and ctable packages.
4644 (reftex-label-alist-builtin): Move listings, minted, and ctable
4645 entries before LaTeX.
4646 (reftex-label-alist): Docfix.
4647
4648 2012-08-02 Bastien Guerry <bzg@gnu.org>
4649
4650 * replace.el (occur): Fix docstring (bug#12122).
4651
4652 2012-08-02 Glenn Morris <rgm@gnu.org>
4653
4654 * emacs-lisp/authors.el (authors-renamed-files-alist): Add ms-w32.h.
4655
4656 2012-08-02 Paul Eggert <eggert@cs.ucla.edu>
4657
4658 Obsolete alias inactivate-current-input-method-function (Bug#10150).
4659 * international/mule-cmds.el: Create
4660 inactivate-current-input-method-function as an obsolete alias for
4661 deactivate-current-input-method-function. See Katsumi Yamaoka in
4662 <http://bugs.gnu.org/10150#46>.
4663
4664 2012-08-01 Jay Belanger <jay.p.belanger@gmail.com>
4665
4666 * calc/calc-mode.el (calc-set-simplify-mode): Use `cond' instead
4667 of nested `if's.
4668
4669 2012-08-01 Glenn Morris <rgm@gnu.org>
4670
4671 * progmodes/autoconf.el (autoconf-definition-regexp):
4672 Add AH_TEMPLATE, adjust submatch numbering.
4673 (autoconf-font-lock-keywords, autoconf-imenu-generic-expression)
4674 (autoconf-current-defun-function): Update for above change.
4675 (autoconf-current-defun-function): First skip to end of current word.
4676
4677 2012-08-01 Rupert Swarbrick <rswarbrick@gmail.com> (tiny change)
4678
4679 * calendar/cal-html.el (cal-html-insert-agenda-days):
4680 Fix typo. (Bug#12018)
4681
4682 2012-07-31 Fabián Ezequiel Gallina <fgallina@cuca>
4683
4684 Shell processes: enhancements to startup and CEDET compatibility.
4685 * progmodes/python.el (python-shell-send-setup-max-wait): Delete var.
4686 (python-shell-make-comint): accept-process-output at startup.
4687 (run-python-internal): Set inferior-python-mode-hook to nil.
4688 (python-shell-internal-get-or-create-process): call sit-for.
4689 (python-preoutput-result): Add obsolete alias.
4690 (python-shell-internal-send-string): Use it.
4691 (python-shell-send-setup-code): Remove call to
4692 accept-process-output.
4693
4694 2012-07-31 Andreas Schwab <schwab@linux-m68k.org>
4695
4696 * buff-menu.el (list-buffers-noselect): Use prefix-numeric-value.
4697 (Bug#12108)
4698
4699 2012-07-31 Jay Belanger <jay.p.belanger@gmail.com>
4700
4701 * calc-mode.el (calc-basic-simplification-mode): Rename from
4702 `calc-limited-simplification-mode'.
4703 (calc-alg-simplification-mode): New function.
4704 (calc-set-simplify-mode): Adjust message.
4705
4706 * calc.el (calc-set-mode-line): Adjust mode line display for
4707 basic simplification mode.
4708
4709 * calc-help.el (calc-m-prefix-help): Update help message.
4710
4711 * calc-ext.el (calc-init-extensions): Add bindings and autoloads
4712 for `calc-basic-simplify-mode' and `calc-alg-simplify-mode'.
4713
4714 2012-07-31 Bastien Guerry <bzg@gnu.org>
4715
4716 * man.el (man): Fix comment. (bug#12101)
4717
4718 2012-07-31 Martin Rudalics <rudalics@gmx.at>
4719
4720 * window.el (switch-to-prev-buffer, switch-to-next-buffer):
4721 Don't return a non-nil value when no suitable buffer was found.
4722
4723 2012-07-31 Fabián Ezequiel Gallina <fgallina@cuca>
4724
4725 * progmodes/python.el (run-python-internal): Disable font lock for
4726 internal shells.
4727
4728 2012-07-30 Stefan Merten <smerten@oekonux.de>
4729
4730 * textmodes/rst.el: Silence `checkdoc-ispell'.
4731 (rst-cvs-header, rst-svn-rev, rst-svn-timestamp)
4732 (rst-official-version, rst-official-cvs-rev)
4733 (rst-package-emacs-version-alist): Update to upstream V1.3.1.
4734 (rst-mode-map): New key binding.
4735
4736 2012-07-30 Paul Eggert <eggert@cs.ucla.edu>
4737
4738 Update .PHONY listings in makefiles.
4739 * Makefile.in (.PHONY): Add all, doit, custom-deps, finder-data,
4740 autoloads, update-subdirs, updates, bzr-update, update-authors,
4741 compile-onefile, compile-calc, backup-compiled-files,
4742 compile-after-backup, compile-one-process, mh-autoloads,
4743 bootstrap-clean, distclean, maintainer-clean.
4744
4745 2012-07-29 Jay Belanger <jay.p.belanger@gmail.com>
4746
4747 * calc/calc.el (calc-simplify-mode): Make 'alg the default value.
4748 (calc-set-mode-line): Don't display "AlgSimp ".
4749
4750 * calc/calc-mode.el (calc-alg-simplify-mode): Remove function.
4751 (calc-lim-simplify-mode): New function.
4752 (calc-set-simplify-mode): Default to 'alg.
4753 (calc-default-simplify-mode): Make algebraic simplifications
4754 the default.
4755
4756 * calc/calc-ext.el (calc-init-extensions): Remove binding for
4757 `calc-alg-simplify-mode'. Add binding for `calc-lim-simplify-mode'.
4758
4759 * calc/calc-help.el (calc-m-prefix-help): Change messages to
4760 indicate new simplification modes.
4761
4762 * calc/README: Mention new default simplification mode.
4763
4764 * calc/calc.el (math-normalize-error): New variable.
4765 (math-normalize): Set `math-normalize-error' to t
4766 when there's an error.
4767
4768 * calc/calc-alg.el (math-simplify): Don't simplify when
4769 `math-normalize' returns an error.
4770
4771 2012-07-29 Eli Zaretskii <eliz@gnu.org>
4772
4773 * international/mule-cmds.el (set-locale-environment): Revert last
4774 change, since display-graphic-p returns nil when this function is
4775 called during startup. Instead...
4776
4777 * term/w32console.el (terminal-init-w32console): ...setup the
4778 keyboard and terminal encoding for TTY sessions here. (Bug#12082)
4779
4780 2012-07-29 Juri Linkov <juri@jurta.org>
4781
4782 * simple.el (goto-line): Don't display default line number in the
4783 prompt because it should be displayed by `read-number' (bug#9952).
4784 Add the current line number to the defaults of `goto-line' to
4785 allow its easier modification by users with `M-n' (bug#9201).
4786
4787 * subr.el (read-number): Support multiple default values like in
4788 other minibuffer reading functions. Replace `read' with
4789 `string-to-number' for consistency with `number-to-string'.
4790
4791 2012-07-29 Paul Eggert <eggert@cs.ucla.edu>
4792
4793 deactive->inactive, inactivate->deactivate spelling fixes (Bug#10150)
4794 * emulation/viper-init.el (viper-deactivate-input-method-action):
4795 Rename from viper-inactivate-input-method-action.
4796 (viper-deactivate-input-method):
4797 Rename from viper-inactivate-input-method.
4798 * follow.el (follow-inactive-menu): Rename from follow-deactive-menu.
4799 * international/mule-cmds.el (deactivate-input-method):
4800 Rename from inactivate-input-method.
4801 Also run input-method-deactivate-hook.
4802 (deactivate-current-input-method-function):
4803 Rename from inactivate-current-input-method-function.
4804 (input-method-deactivate-hook): New hook.
4805 (input-method-inactivate-hook): Mark obsolete.
4806 (inactivate-input-method): Mark obsolete.
4807
4808 * international/quail.el (quail-activate):
4809 Also run quail-deactivate-hook.
4810 (quail-deactivate): Rename from quail-inactivate.
4811 * international/robin.el (robin-activate):
4812 Also run robin-deactivate-hook.
4813 (robin-deactivate): Rename from robin-inactivate.
4814
4815 2012-07-29 Chong Yidong <cyd@gnu.org>
4816
4817 * simple.el (indicate-copied-region): New function.
4818 (kill-ring-save): Split off from here.
4819
4820 * rect.el (copy-rectangle-as-kill): Call indicate-copied-region.
4821 (kill-rectangle): Set deactivate-mark to t on read-only error.
4822
4823 * register.el (copy-to-register, copy-rectangle-to-register):
4824 Deactivate the mark, and use indicate-copied-region (Bug#10056).
4825 (append-to-register, prepend-to-register): Call indicate-copied-region.
4826
4827 2012-07-29 Juri Linkov <juri@jurta.org>
4828
4829 * simple.el (async-shell-command-buffer): New defcustom.
4830 (shell-command): Use it. (Bug#4719)
4831
4832 2012-07-28 Eli Zaretskii <eliz@gnu.org>
4833
4834 * international/mule-cmds.el (set-locale-environment): In a
4835 console session on MS-Windows, set up keyboard and terminal
4836 encoding from the OEM codepage, not the ANSI codepage.
4837 (Bug#12055)
4838
4839 2012-07-28 Chong Yidong <cyd@gnu.org>
4840
4841 * progmodes/gdb-mi.el (gdb-place-breakpoints): Fix the call to
4842 gdb-get-location.
4843
4844 2012-07-28 Leo Liu <sdl.web@gmail.com>
4845
4846 * progmodes/cc-menus.el (cc-imenu-objc-function): Avoid leaving nil in
4847 the alist (bug#12029).
4848
4849 2012-07-28 Eli Zaretskii <eliz@gnu.org>
4850
4851 * makefile.w32-in (custom-deps, finder-data, updates, compile)
4852 (compile-always, compile-first)
4853 ($(lisp)/calendar/cal-loaddefs.el)
4854 ($(lisp)/calendar/diary-loaddefs.el)
4855 ($(lisp)/calendar/hol-loaddefs.el, $(lisp)/mh-e/mh-loaddefs.el)
4856 ($(lisp)/net/tramp-loaddefs.el, bootstrap)
4857 ($(lisp)/progmodes/cc-mode.elc): Depend on $(lisp)subdirs.el,
4858 instead of on update-subdirs.
4859 (bootstrap-clean): Delete $(lisp)/subdirs.el.
4860
4861 2012-07-28 Chong Yidong <cyd@gnu.org>
4862
4863 * vc/vc.el (vc-root-diff, vc-print-root-log): Prompt for a
4864 directory if vc-deduce-backend returns nil (Bug#7350).
4865
4866 * simple.el (delete-trailing-lines): New option.
4867 (delete-trailing-whitespace): Obey it (Bug#11879).
4868
4869 2012-07-28 David Engster <deng@randomsample.de>
4870
4871 * xml.el (xml-node-name, xml-parse-file, xml-parse-region):
4872 Explanation of new 'symbol-qnames feature in doc-strings.
4873 (xml-maybe-do-ns): Return expanded names as plain symbols if
4874 'symbol-qnames was provided in XML-NS argument (Bug#11916).
4875 (xml-parse-tag-1): Deal with new definition of PARSE-NS argument.
4876
4877 2012-07-27 Fabián Ezequiel Gallina <fgallina@cuca>
4878
4879 Consistent completion in inferior python with emacs -nw.
4880 * progmodes/python.el (inferior-python-mode): replace "<tab>"
4881 binding in inferior-python-mode-map with "\t".
4882 (python-shell-completion-complete-at-point)
4883 (python-completion-complete-at-point): Remove interactive spec.
4884
4885 2012-07-27 Jay Belanger <jay.p.belanger@gmail.com>
4886
4887 * calc/calccomp.el (math-compose-expr): Undo previous change.
4888
4889 2012-07-27 Fabián Ezequiel Gallina <fgallina@cuca>
4890
4891 * progmodes/python.el (python-mode-map): Add keybinding for
4892 run-python.
4893 (python-shell-make-comint): Fix pop-to-buffer call.
4894 (run-python): Autoload. New arg SHOW.
4895 (python-shell-get-or-create-process): Do not pop python process
4896 buffer.
4897
4898 2012-07-27 Michael Albinus <michael.albinus@gmx.de>
4899
4900 * notifications.el (notifications-on-action-signal)
4901 (notifications-on-closed-signal): Use also the bus address for the map.
4902 (notifications-notify, notifications-close-notification)
4903 (notifications-get-capabilities): Add optional argument BUS.
4904
4905 2012-07-27 Tassilo Horn <tsdh@gnu.org>
4906
4907 * textmodes/reftex-vars.el (reftex-label-alist-builtin):
4908 Add support for the lstlisting and minted environments, and for the
4909 ctable macro.
4910 * textmodes/reftex.el (reftex-compile-variables): Also recognize
4911 labels written in keyvals syntax.
4912
4913 2012-07-27 Jay Belanger <jay.p.belanger@gmail.com>
4914
4915 * calc/calccomp.el (math-compose-expr): Use parentheses when
4916 there is a product in the denominator of a fraction.
4917
4918 2012-07-26 Eli Zaretskii <eliz@gnu.org>
4919
4920 * makefile.w32-in ($(lisp)/calendar/cal-loaddefs.el)
4921 ($(lisp)/calendar/diary-loaddefs.el)
4922 ($(lisp)/calendar/hol-loaddefs.el, $(lisp)/mh-e/mh-loaddefs.el)
4923 ($(lisp)/net/tramp-loaddefs.el): Depend on update-subdirs.
4924 Fixes failures in parallel bootstrap because subdirs.el is being
4925 rewritten while the autoload files are built at the same time,
4926 which needs to load subdirs.el.
4927
4928 2012-07-26 Martin Rudalics <rudalics@gmx.at>
4929
4930 * mouse.el (popup-menu): Fix doc-string and re-indent code.
4931 (mouse-drag-line): Don't exit tracking when a switch-frame or
4932 switch-window event occurs (Bug#12006).
4933
4934 2012-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
4935
4936 * mouse.el (popup-menu): Fix last change.
4937
4938 2012-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
4939
4940 Autoload from Lisp with more care. Follow aliases when looking for
4941 function properties.
4942 * subr.el (autoloadp): New function.
4943 (symbol-file): Use it.
4944 (function-get): New function.
4945 * emacs-lisp/macroexp.el (macroexp--expand-all): Use function-get and
4946 autoload-do-load.
4947 * emacs-lisp/lisp-mode.el (lisp-font-lock-syntactic-face-function)
4948 (lisp-indent-function):
4949 * emacs-lisp/gv.el (gv-get):
4950 * emacs-lisp/edebug.el (get-edebug-spec, edebug-basic-spec):
4951 * emacs-lisp/byte-opt.el (byte-optimize-form):
4952 * emacs-lisp/bytecomp.el (byte-compile-arglist-warn):
4953 * emacs-lisp/autoload.el (make-autoload, autoload-print-form):
4954 Use function-get.
4955 * emacs-lisp/cl.el: Don't propagate function properties any more.
4956
4957 * speedbar.el (speedbar-add-localized-speedbar-support):
4958 * emacs-lisp/disass.el (disassemble-internal):
4959 * desktop.el (desktop-load-file):
4960 * help-fns.el (help-function-arglist, find-lisp-object-file-name)
4961 (describe-function-1):
4962 * emacs-lisp/find-func.el (find-function-noselect):
4963 * emacs-lisp/elp.el (elp-instrument-function):
4964 * emacs-lisp/advice.el (ad-has-proper-definition):
4965 * apropos.el (apropos-safe-documentation, apropos-macrop):
4966 * emacs-lisp/debug.el (debug-on-entry):
4967 * emacs-lisp/cl-macs.el (cl-compiler-macroexpand):
4968 * emacs-lisp/byte-opt.el (byte-compile-inline-expand):
4969 * calc/calc.el (name): Use autoloadp & autoload-do-load.
4970
4971 2012-07-25 Alp Aker <alp.tekin.aker@gmail.com>
4972
4973 * international/mule-cmds.el (ucs-insert): Mark it as an obsolete
4974 function, not an obsolete variable (Bug#12046).
4975
4976 2012-07-25 Andreas Schwab <schwab@linux-m68k.org>
4977
4978 * faces.el (face-spec-reset-face): Fix last change. (Bug#12042)
4979
4980 2012-07-25 Christopher Schmidt <christopher@ch.ristopher.com>
4981
4982 * emacs-lisp/pp.el (pp-display-expression): Select old selected
4983 window only if it is still live (Bug#12034).
4984
4985 2012-07-25 Martin Rudalics <rudalics@gmx.at>
4986
4987 * subr.el (redirect-frame-focus): Add advertised calling
4988 convention (Bug#12030).
4989
4990 2012-07-25 Paul Eggert <eggert@cs.ucla.edu>
4991
4992 Prefer typical American spelling for "acknowledgment".
4993 * vc/add-log.el (change-log-acknowledgment): Rename from
4994 change-log-acknowledgement, with an alias for the old name.
4995
4996 2012-07-25 Jay Belanger <jay.p.belanger@gmail.com>
4997
4998 * calc-alg.el (math-simplify-divide): Don't cross multiply
4999 in an equation when the lhs is a variable.
5000
5001 2012-07-24 Julien Danjou <julien@danjou.info>
5002
5003 * net/netrc.el (netrc-find-service-number, netrc-store-data):
5004 Remove, unused.
5005
5006 2012-07-23 Eli Zaretskii <eliz@gnu.org>
5007
5008 * startup.el (command-line): Don't display an empty user name in
5009 the error message about non-existent home directory, when
5010 init-file-user was set to an empty string. See
5011 http://lists.gnu.org/archive/html/bug-gnu-emacs/2012-07/msg00835.html
5012 for the details and context.
5013
5014 2012-07-22 Vincent Belaïche <vincentb1@users.sourceforge.net>
5015
5016 * ses.el (ses-cell-formula-aset): New macro.
5017 (ses-cell-references-aset): New macro.
5018 (ses-cell-p): New function.
5019 (ses-rename-cell): Do no longer rely on complex operations like
5020 ses-cell-set-formula or ses-set-cell to change the cell and handle
5021 the undo at the same time, but rather use lower level new macros
5022 `ses-cell-formula-aset' and `ses-cell-references-aset' and handle
5023 the undo directly. Refresh the mode line.
5024
5025 2012-07-21 Leo Liu <sdl.web@gmail.com>
5026
5027 * progmodes/cc-cmds.el (c-defun-name):
5028 Use match-string-no-properties instead for consistency.
5029
5030 2012-07-20 Leo Liu <sdl.web@gmail.com>
5031
5032 * progmodes/cc-cmds.el (c-defun-name): Handle objc selectors properly.
5033 (Bug#7879)
5034
5035 * progmodes/cc-langs.el (c-symbol-start): Include char _ (bug#11986).
5036
5037 2012-07-20 Stefan Monnier <monnier@iro.umontreal.ca>
5038
5039 * userlock.el, emacs-lisp/map-ynp.el: Declare part of `emacs' package.
5040 * progmodes/bug-reference.el, misearch.el: Provide themselves
5041 (bug#11915).
5042
5043 * progmodes/cperl-mode.el (cperl-unwind-to-safe): Don't inf-loop at end
5044 of narrowed buffer (bug#11966).
5045
5046 2012-07-20 Vincent Belaïche <vincentb1@users.sourceforge.net>
5047
5048 * ses.el (ses-rename-cell): Set new name also in reference list of
5049 cells of which the renamed cell depends.
5050
5051 2012-07-20 Masatake YAMATO <yamato@redhat.com>
5052
5053 * term/x-win.el (x-menu-bar-open): Use `frame-parameter'
5054 to check whether menu-bar is shown or not. If not shown,
5055 show the menu-bar as a popup menu instead of using tmm.
5056 * mouse.el (popup-menu): Accept `point' as `position' argument.
5057
5058 2012-07-20 Dmitry Gutov <dgutov@yandex.ru>
5059
5060 * progmodes/ruby-mode.el (ruby-parse-partial): No error when end
5061 up inside string symbol literal (bug#11923).
5062
5063 2012-07-20 Eli Zaretskii <eliz@gnu.org>
5064
5065 * startup.el (fancy-startup-text): Read the whole tutorial, not
5066 just its first 256 bytes. Prevents gibberish in display of the
5067 tutorial title.
5068
5069 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
5070
5071 Drop idle buffer compaction due to an absence of the
5072 proved efficiency.
5073 * compact.el: Remove.
5074
5075 2012-07-19 Sam Steingold <sds@gnu.org>
5076
5077 * vc/vc-dispatcher.el (vc-compilation-mode): Add, based on
5078 vc-bzr-pull & vc-bzr-merge-branch.
5079 * vc/vc-bzr.el (vc-bzr-pull, vc-bzr-merge-branch): Use it.
5080 (vc-bzr-error-regexp-alist): Rename from vc-bzr-error-regex-alist
5081 for consistency with compilation-error-regexp-alist.
5082 * vc/vc-git.el (vc-git-error-regexp-alist): Add.
5083 (vc-git-pull, vc-git-merge-branch): Call vc-compilation-mode.
5084 * vc/vc-hg.el (vc-hg-error-regexp-alist): Add.
5085 (vc-hg-pull, vc-hg-merge-branch): Call vc-compilation-mode.
5086
5087 2012-07-19 Stefan Monnier <monnier@iro.umontreal.ca>
5088
5089 * emacs-lisp/chart.el: Use lexical-binding.
5090 (chart-emacs-storage): Don't hardcode the list of entries.
5091
5092 2012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
5093
5094 Next round of tweaks caused by Fgarbage_collect changes.
5095 * emacs-lisp/chart.el (chart-emacs-storage): Adjust again.
5096
5097 2012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
5098
5099 Compact buffers when idle.
5100 * compact.el: New file.
5101
5102 2012-07-19 Stefan Monnier <monnier@iro.umontreal.ca>
5103
5104 * subr.el (eventp): Presume that if it looks vaguely like an event,
5105 it's an event (bug#10190).
5106
5107 2012-07-19 Fabián Ezequiel Gallina <fgallina@cuca>
5108
5109 Enhancements to ppss related code (thanks Stefan).
5110 * progmodes/python.el (python-indent-context)
5111 (python-indent-calculate-indentation, python-indent-dedent-line)
5112 (python-indent-electric-colon, python-nav-forward-block)
5113 (python-mode-abbrev-table)
5114 (python-info-assignment-continuation-line-p): Simplify checks
5115 for ppss context.
5116 (python-info-continuation-line-p): Cleanup.
5117 (python-info-ppss-context): Do not catch 'quote.
5118 (python-info-ppss-context-type)
5119 (python-info-ppss-comment-or-string-p): Simplify.
5120
5121 2012-07-18 Fabián Ezequiel Gallina <fgallina@cuca>
5122
5123 * progmodes/python.el: Enhancements to eldoc support.
5124 (python-info-current-symbol): New function.
5125 (python-eldoc-at-point): Use python-info-current-symbol.
5126 (python-info-current-defun): Fix cornercase on first defun scan.
5127 (python-eldoc--get-doc-at-point): Use python-info-current-symbol
5128 and signal error when no inferior python process is available.
5129
5130 2012-07-18 Dmitry Gutov <dgutov@yandex.ru>
5131
5132 * vc/vc-git.el (vc-git-state): Don't call `vc-git-registered',
5133 assume it's always t.
5134 (vc-git-registered): Remove caching, the function is only called
5135 once.
5136 (vc-git-branches): Use `vc-git--call' instead of `call-process'.
5137
5138 2012-07-18 Chong Yidong <cyd@gnu.org>
5139
5140 * subr.el (last-input-char, last-command-char): Remove (Bug#9195).
5141
5142 * simple.el (count-words): Report on narrowing (Bug#9959).
5143
5144 * bindings.el: Bind M-= to count-words.
5145
5146 * faces.el (face-spec-reset-face): Handle reverse video (Bug#4238).
5147
5148 2012-07-18 Masatake YAMATO <yamato@redhat.com>
5149
5150 * progmodes/sh-script.el (sh-imenu-generic-expression):
5151 Capture a function with `function' keyword and without parentheses
5152 like "function FOO" (bug#11856).
5153
5154 2012-07-18 Tassilo Horn <tassilo@member.fsf.org>
5155
5156 * window.el (split-window-sensibly): Make WINDOW argument
5157 optional.
5158
5159 2012-07-18 Chong Yidong <cyd@gnu.org>
5160
5161 * subr.el (keyboard-translate): Doc fix (Bug#7261).
5162
5163 * isearch.el (isearch-mode-map): Handle C-x 8 key translations,
5164 and make C-x 8 RET exit isearch (Bug#11439).
5165
5166 * international/iso-transl.el: Move isearch-mode-map key
5167 definitions to isearch.el.
5168
5169 2012-07-18 Stefan Monnier <monnier@iro.umontreal.ca>
5170
5171 * emacs-lisp/eieio.el: Adapt further to gv.el (bug#11970).
5172 (eieio-defclass): Use gv-define-setter when possible.
5173
5174 2012-07-18 Dmitry Antipov <dmantipov@yandex.ru>
5175
5176 Reflect recent changes in Fgarbage_collect.
5177 * emacs-lisp/chart.el (chart-emacs-storage): Change to
5178 reflect new format of data returned by Fgarbage_collect.
5179
5180 2012-07-17 Fabián Ezequiel Gallina <fgallina@cuca>
5181
5182 New utility functions + python-info-ppss-context fix (Bug#11910).
5183 * progmodes/python.el (python-info-beginning-of-block-statement-p)
5184 (python-info-ppss-comment-or-string-p): New functions.
5185 (python-info-ppss-context): Small fix for string check.
5186
5187 2012-07-17 Juri Linkov <juri@jurta.org>
5188
5189 * dired-aux.el (dired-do-async-shell-command): Doc fix.
5190 (dired-do-async-shell-command): Don't add `*' at the end of the
5191 command (Bug#11815).
5192 (dired-do-shell-command): Doc fix.
5193 (dired-shell-stuff-it): Strip the trailing "&" and ";" if any.
5194 Join the individual commands using either "&" or ";" as the
5195 separator depending on the values of these trailing characters.
5196 At the end re-add the trailing "&". (Bug#10598)
5197
5198 * simple.el (async-shell-command): Sync the interactive spec with
5199 `shell-command'. Doc fix.
5200 (shell-command): Doc fix.
5201
5202 2012-07-17 Juri Linkov <juri@jurta.org>
5203
5204 * descr-text.el (describe-char): Fix format args. (Bug#10129)
5205
5206 2012-07-17 Fabián Ezequiel Gallina <fgallina@cuca>
5207
5208 Final renames and doc fixes for movement commands (bug#11899).
5209 * progmodes/python.el (python-nav-beginning-of-statement):
5210 Rename from python-nav-statement-start.
5211 (python-nav-end-of-statement): Rename from
5212 python-nav-statement-end.
5213 (python-nav-beginning-of-block): Rename from
5214 python-nav-block-start.
5215 (python-nav-end-of-block): Rename from python-nav-block-end.
5216
5217 2012-07-17 Fabián Ezequiel Gallina <fgallina@cuca>
5218
5219 * progmodes/python.el (python-shell-send-string-no-output):
5220 Allow accept-process-output to quit, keeping shell process ready for
5221 future interactions (Bug#11868).
5222
5223 2012-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
5224
5225 * emacs-lisp/cl-macs.el (cl-progv): Use a properly prefixed var name.
5226
5227 * emacs-lisp/elint.el (elint-find-args-in-code):
5228 Use help-function-arglist, so as to handle lexical byte-code.
5229
5230 * progmodes/sh-script.el (sh-syntax-propertize-function): Fix last
5231 change (bug#11826).
5232
5233 2012-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
5234
5235 * progmodes/cc-engine.el (c-forward-sws, c-backward-sws):
5236 Avoid spuriously marking the buffer as modified because of c-is-sws.
5237
5238 * progmodes/sh-script.el (sh-syntax-propertize-function): Mark "${#VAR"
5239 as not-a-comment (bug#11946).
5240
5241 * emacs-lisp/macroexp.el (macroexp-let2): Use more informative names
5242 for uninterned vars.
5243
5244 * xt-mouse.el (xterm-mouse-translate-1, xterm-mouse-event-read):
5245 Use read-event since we don't really want to read chars but bytes.
5246
5247 * textmodes/tex-mode.el (tex-font-lock-keywords-1): Highlight not only
5248 $$..$$ but also $..$ using regexps (bug#11953).
5249 Use tex-verbatim for \url and \path.
5250 (tex-font-lock-keywords): Define as defconst like the others.
5251 (tex-common-initialization): Don't use font-lock-syntax-table any more.
5252
5253 2012-07-16 René Kyllingstad <Rene@Kyllingstad.com> (tiny change)
5254
5255 * international/mule-cmds.el (ucs-insert): Make it an obsolete
5256 alias for insert-char.
5257
5258 2012-07-16 Fabián Ezequiel Gallina <fgallina@cuca>
5259
5260 * progmodes/python.el: Simplified imenu implementation.
5261 (python-nav-jump-to-defun): Remove command.
5262 (python-mode-map): Use `imenu' instead.
5263 (python-nav-list-defun-positions-cache)
5264 (python-imenu-include-defun-type, python-imenu-make-tree)
5265 (python-imenu-subtree-root-label, python-imenu-index-alist):
5266 Remove vars.
5267 (python-nav-list-defun-positions, python-nav-read-defun)
5268 (python-imenu-tree-assoc, python-imenu-make-element-tree)
5269 (python-imenu-make-tree, python-imenu-create-index):
5270 Remove functions.
5271 (python-mode): Update to interact with imenu by setting
5272 `imenu-extract-index-name-function' only.
5273
5274 2012-07-16 Fabián Ezequiel Gallina <fgallina@cuca>
5275
5276 * progmodes/python.el: Enhancements to navigation commands.
5277 (python-nav-backward-sentence)
5278 (python-nav-forward-sentence): Remove.
5279 (python-nav-backward-statement, python-nav-forward-statement)
5280 (python-nav-statement-start, python-nav-statement-end)
5281 (python-nav-backward-block, python-nav-forward-block)
5282 (python-nav-block-start, python-nav-block-end)
5283 (python-nav-forward-sexp-function)
5284 (python-info-current-line-comment-p)
5285 (python-info-current-line-empty-p): New functions.
5286 (python-indent-context): Use `python-nav-statement-start'.
5287
5288 2012-07-16 Michael Albinus <michael.albinus@gmx.de>
5289
5290 * eshell/em-ls.el (eshell/ls): Use `apply'.
5291
5292 * eshell/em-unix.el (eshell/su, eshell/sudo): Apply Tramp's ad-hoc
5293 multi-hops, instead of Tramp internals.
5294
5295 * vc/ediff.el (ediff-directories): Add trailing space to prompts.
5296
5297 * vc/ediff-diff.el (ediff-same-file-contents): Handle the case,
5298 when F1 and F2 are located on different hosts.
5299
5300 2012-07-14 Chong Yidong <cyd@gnu.org>
5301
5302 * xt-mouse.el: Implement extended mouse coordinates (Bug#10642).
5303 (xterm-mouse-translate): Move code into xterm-mouse-translate-1.
5304 (xterm-mouse-translate-extended, xterm-mouse-translate-1)
5305 (xterm-mouse--read-event-sequence-1000)
5306 (xterm-mouse--read-event-sequence-1006): New functions. For old
5307 mouse protocol, handle M-mouse-X events correctly.
5308 (xterm-mouse-event): New arg specifying mouse protocol.
5309 (turn-on-xterm-mouse-tracking-on-terminal)
5310 (turn-off-xterm-mouse-tracking-on-terminal): Send DEC 1006
5311 sequence to toggle extended coordinates on newer XTerms.
5312 This appears to be harmless on terminals which do not support this.
5313
5314 2012-07-14 Leo Liu <sdl.web@gmail.com>
5315
5316 Add fringe bitmap indicators for flymake. (Bug#11253)
5317 * progmodes/flymake.el (flymake-highlight-line): Use fringe bitmaps.
5318 (flymake-make-overlay): New arg BITMAP.
5319 (flymake-error-bitmap, flymake-warning-bitmap)
5320 (flymake-fringe-indicator-position): New user variables.
5321
5322 * fringe.el: New bitmap exclamation-mark.
5323
5324 2012-07-14 Jan Djärv <jan.h.d@swipnet.se>
5325
5326 * progmodes/cc-cmds.el (c-defun-name): Recognize Objective-C methods
5327 also (Bug#7879).
5328
5329 2012-07-14 Chong Yidong <cyd@gnu.org>
5330
5331 * electric.el (electric-pair-post-self-insert-function): Fix pair
5332 insertion in empty-region case (Bug#11520).
5333
5334 2012-07-14 Chong Yidong <cyd@gnu.org>
5335
5336 * bindings.el: Consolidate ctl-x-r-map bindings.
5337 Bind copy-rectangle-as-kill to C-x r w.
5338
5339 * rect.el, register.el: Move bindings to bindings.el.
5340
5341 2012-07-14 Reuben Thomas <rrt@sc3d.org>
5342
5343 * rect.el (copy-rectangle-as-kill): New command (Bug#739).
5344
5345 2012-07-13 Andreas Schwab <schwab@linux-m68k.org>
5346
5347 * emacs-lisp/cl.el (labels): Remove spurious quote. (Bug#11938)
5348
5349 2012-07-13 Juanma Barranquero <lekktu@gmail.com>
5350
5351 * bindings.el (top): Use `mapc' instead of `mapcar'.
5352
5353 * loadup.el (top): Remove bogus `if' choice (brought by 2008-06-21T01:38:39Z!monnier@iro.umontreal.ca).
5354
5355 2012-07-13 Michael Albinus <michael.albinus@gmx.de>
5356
5357 * progmodes/sql.el (sql-comint): Suppress the check for program on
5358 remote hosts. Reported by Francis Devereux <francis@devrx.org>.
5359 (Bug#11908)
5360
5361 2012-07-13 Chong Yidong <cyd@gnu.org>
5362
5363 * bindings.el: Assign a non-nil permanent-local property to
5364 per-buffer variables which lack a default value (Bug#11930).
5365
5366 * help-fns.el (describe-variable): In the "automatically becomes
5367 local" notice, take note of permanent-local variables.
5368
5369 2012-07-13 Chong Yidong <cyd@gnu.org>
5370
5371 * files.el (toggle-read-only): Doc fix and code cleanup. New arg
5372 to allow printing the message when called from Lisp.
5373
5374 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
5375 Remove toggle-read-only.
5376
5377 * bs.el (bs-toggle-readonly):
5378 * buff-menu.el (Buffer-menu-toggle-read-only):
5379 Remove with-no-warnings around toggle-read-only.
5380
5381 * ffap.el (ffap--toggle-read-only): Accept a list of buffers.
5382 Remove with-no-warnings around toggle-read-only.
5383 (ffap-read-only, ffap-read-only-other-window)
5384 (ffap-read-only-other-frame): Callers changed.
5385
5386 * help-mode.el: Don't require view package.
5387 (help-mode-finish): Set buffer-read-only instead of calling
5388 toggle-read-only.
5389
5390 * bindings.el (mode-line-toggle-read-only):
5391 * dired.el (dired-toggle-read-only):
5392 * ibuffer.el (ibuffer-do-toggle-read-only): Call toggle-read-only
5393 with non-nil second arg.
5394
5395 * emacs-lisp/eieio-custom.el (eieio-customize-object):
5396 * vc/ediff.el (ediff-set-read-only-in-buf-A): Set buffer-read-only
5397 directly.
5398
5399 2012-07-12 Eli Zaretskii <eliz@gnu.org>
5400
5401 * emacs-lisp/bytecomp.el (byte-recompile-directory): Use cl-incf,
5402 not incf.
5403
5404 2012-07-11 Stefan Monnier <monnier@iro.umontreal.ca>
5405
5406 More CL cleanups and reduction of use of cl.el.
5407 * woman.el, winner.el, vc/vc-rcs.el, vc/vc-hooks.el, vc/vc-hg.el:
5408 * vc/vc-git.el, vc/vc-dir.el, vc/vc-bzr.el, vc/vc-annotate.el:
5409 * textmodes/tex-mode.el, textmodes/sgml-mode.el, tar-mode.el:
5410 * strokes.el, ses.el, server.el, progmodes/js.el, progmodes/gdb-mi.el:
5411 * progmodes/flymake.el, progmodes/ebrowse.el, progmodes/compile.el:
5412 * play/tetris.el, play/snake.el, play/pong.el, play/landmark.el:
5413 * play/hanoi.el, play/decipher.el, play/5x5.el, nxml/nxml-mode.el:
5414 * net/secrets.el, net/quickurl.el, midnight.el, mail/footnote.el:
5415 * image-dired.el, ibuffer.el, ibuf-macs.el, ibuf-ext.el, hexl.el:
5416 * eshell/eshell.el, eshell/esh-io.el, eshell/esh-ext.el:
5417 * eshell/esh-cmd.el, eshell/em-ls.el, eshell/em-hist.el:
5418 * eshell/em-cmpl.el, eshell/em-banner.el:
5419 * calendar/parse-time.el: Use cl-lib.
5420 * wid-browse.el, wdired.el, vc/vc.el, vc/vc-mtn.el, vc/vc-cvs.el:
5421 * vc/vc-arch.el, tree-widget.el, textmodes/texinfo.el:
5422 * textmodes/refill.el, textmodes/css-mode.el, term/tvi970.el:
5423 * term/ns-win.el, term.el, shell.el, ps-samp.el:
5424 * progmodes/perl-mode.el, progmodes/pascal.el, progmodes/gud.el:
5425 * progmodes/glasses.el, progmodes/etags.el, progmodes/cwarn.el:
5426 * play/gamegrid.el, play/bubbles.el, novice.el, notifications.el:
5427 * net/zeroconf.el, net/xesam.el, net/snmp-mode.el, net/mairix.el:
5428 * net/ldap.el, net/eudc.el, net/browse-url.el, man.el:
5429 * mail/mailheader.el, mail/feedmail.el: Don't use CL.
5430 * ibuf-ext.el (ibuffer-mark-old-buffers): Use float-time.
5431 * eshell/esh-opt.el (eshell-eval-using-options): Quote code with
5432 `lambda' rather than with `quote'.
5433 (eshell-do-opt): Adjust accordingly.
5434 (eshell-process-option): Simplify.
5435 * eshell/esh-var.el:
5436 * eshell/em-script.el: Require `esh-opt' for eshell-eval-using-options.
5437 * emacs-lisp/pcase.el (pcase--dontcare-upats, pcase--let*)
5438 (pcase--expand, pcase--u1): Rename pcase's internal `dontcare' pattern
5439 to `pcase--dontcare'.
5440 * emacs-lisp/cl.el (labels): Mark obsolete.
5441 (cl--letf, letf): Move to cl-lib.
5442 (cl--letf*, letf*): Remove.
5443 * emacs-lisp/cl-lib.el (cl-nth-value): Use defalias.
5444 * emacs-lisp/cl-macs.el (cl-dolist, cl-dotimes): Add indent rule.
5445 (cl-progv): Rewrite.
5446 (cl--letf, cl-letf): Move from cl.el.
5447 (cl-letf*): New macro.
5448 * emacs-lisp/cl-extra.el (cl--progv-before, cl--progv-after): Remove.
5449
5450 2012-07-11 Michael Albinus <michael.albinus@gmx.de>
5451
5452 * net/ange-ftp.el (ange-ftp-cf1): Update the files cache.
5453
5454 2012-07-11 Chong Yidong <cyd@gnu.org>
5455
5456 * vc/log-edit.el (log-edit-vc-backend): New variable.
5457 (log-edit): Doc fix.
5458
5459 * vc/vc-dispatcher.el (vc-log-edit): New args. Use PARAMS
5460 argument of log-edit to set up all local variables.
5461 (vc-start-logentry): New optional arg specifying VC backend.
5462
5463 * vc/vc.el (vc-checkin): Use it.
5464 (vc-deduce-fileset): Handle Log Edit buffers.
5465 (vc-diff): Make first argument optional too.
5466
5467 * vc/log-view.el (log-view-vc-fileset, log-view-vc-backend): Doc fix.
5468
5469 2012-07-10 Michael Albinus <michael.albinus@gmx.de>
5470
5471 * eshell/esh-ext.el (eshell-remote-command): Remove remote part of
5472 command, just in case. The function is not needed anymore.
5473 (eshell-external-command): Do not call `eshell-remote-command'.
5474
5475 2012-07-10 Stefan Monnier <monnier@iro.umontreal.ca>
5476
5477 Reduce use of (require 'cl).
5478 * vc/smerge-mode.el, vc/pcvs.el, vc/pcvs-util.el, vc/pcvs-info.el:
5479 * vc/diff-mode.el, vc/cvs-status.el, uniquify.el, scroll-bar.el:
5480 * register.el, progmodes/sh-script.el, net/gnutls.el, net/dbus.el:
5481 * msb.el, mpc.el, minibuffer.el, international/ucs-normalize.el:
5482 * international/quail.el, info-xref.el, imenu.el, image-mode.el:
5483 * font-lock.el, filesets.el, edmacro.el, doc-view.el, bookmark.el:
5484 * battery.el, avoid.el, abbrev.el: Use cl-lib.
5485 * vc/pcvs-parse.el, vc/pcvs-defs.el, vc/log-view.el, vc/log-edit.el:
5486 * vc/diff.el, simple.el, pcomplete.el, lpr.el, comint.el, loadhist.el:
5487 * jit-lock.el, international/iso-ascii.el, info.el, frame.el, bs.el:
5488 * emulation/crisp.el, electric.el, dired.el, cus-dep.el, composite.el:
5489 * calculator.el, autorevert.el, apropos.el: Don't require CL.
5490 * emacs-lisp/bytecomp.el (byte-recompile-directory, display-call-tree)
5491 (byte-compile-unfold-bcf, byte-compile-check-variable):
5492 * emacs-lisp/byte-opt.el (byte-compile-trueconstp)
5493 (byte-compile-nilconstp):
5494 * emacs-lisp/autoload.el (make-autoload): Use pcase.
5495 * face-remap.el (text-scale-adjust): Simplify pcase patterns.
5496
5497 * emacs-lisp/gv.el (cond): Make it a valid place.
5498 (if): Simplify slightly.
5499
5500 * emacs-lisp/pcase.el (pcase): Accept self-quoting exps as "upatterns".
5501 (pcase--self-quoting-p): New function.
5502 (pcase--u1): Use it.
5503
5504 2012-07-10 Glenn Morris <rgm@gnu.org>
5505
5506 * emacs-lisp/authors.el (authors-fixed-entries):
5507 (authors-renamed-files-alist): Update for configure.in -> configure.ac.
5508
5509 2012-07-09 Paul Eggert <eggert@cs.ucla.edu>
5510
5511 Rename configure.in to configure.ac (Bug#11603).
5512 * emacs-lisp/authors.el (authors-canonical-file-name):
5513 * progmodes/autoconf.el (autoconf-mode):
5514 Prefer configure.ac to configure.in.
5515
5516 2012-07-08 Chong Yidong <cyd@gnu.org>
5517
5518 * mouse.el (mouse-drag-line): Rewrite the track-mouse loop.
5519 Implement the mouse-1-click-follows-link handling properly.
5520
5521 * info.el (Info-link-keymap): Use follow-link mechanism for
5522 header-line links (Bug#374).
5523
5524 * simple.el (deactivate-mark): Do not set the primary selection
5525 if another program has acquired it (Bug#11772).
5526
5527 2012-07-07 Kevin Ryde <user42@zip.com.au>
5528
5529 * woman.el (woman-strings): Fix double-quote handling (Bug#1151).
5530 (woman-decode-region): Replace escaped-escapes without destroying
5531 bold or underline (Bug#11552).
5532 (woman2-process-escapes): Handle nofill regions (Bug#11591).
5533
5534 2012-07-07 Chong Yidong <cyd@gnu.org>
5535
5536 * simple.el (yank-pop-change-selection): Doc fix (Bug#11361).
5537 (interprogram-cut-function, interprogram-paste-function):
5538 Mention that we typically mean the clipboard.
5539
5540 2012-07-06 Glenn Morris <rgm@gnu.org>
5541
5542 * kmacro.el (kmacro-call-macro): Restore repeat message. (Bug#11817)
5543
5544 * files.el (toggle-read-only): Restrict message to interactive use.
5545
5546 2012-07-06 Michael Albinus <michael.albinus@gmx.de>
5547
5548 * net/tramp.el (tramp-restricted-shell-hosts-alist): New defcustom.
5549
5550 * net/tramp-sh.el (tramp-maybe-open-connection): Handle it.
5551
5552 2012-07-06 Glenn Morris <rgm@gnu.org>
5553
5554 * Makefile.in (compile-one-process): Rename from "recompile".
5555
5556 * Makefile.in (bzr-update): "compile" is the same as "recompile
5557 autoloads", but parallelizable, so use that instead.
5558
5559 2012-07-06 Dmitry Gutov <dgutov@yandex.ru>
5560
5561 * window.el (quit-window): Always restore window height when
5562 it's saved in quit-restore parameter (Bug#11810).
5563
5564 2012-07-06 Glenn Morris <rgm@gnu.org>
5565
5566 * simple.el (kill-whole-line): Doc tweak.
5567
5568 2012-07-06 Eli Zaretskii <eliz@gnu.org>
5569
5570 * files.el (file-relative-name): Compare file names
5571 case-insensitively if on MS-Windows or MS-DOS, or if
5572 read-file-name-completion-ignore-case is non-nil. Don't use
5573 case-fold-search for this purpose. (Bug#11827)
5574
5575 2012-07-17 Andreas Schwab <schwab@linux-m68k.org>
5576
5577 * calendar/cal-dst.el (calendar-current-time-zone):
5578 Return calendar-current-time-zone-cache if non-nil.
5579
5580 2012-07-17 Masatake YAMATO <yamato@redhat.com>
5581 2012-07-06 Andreas Schwab <schwab@linux-m68k.org>
5582
5583 * calendar/cal-dst.el (calendar-current-time-zone):
5584 Return calendar-current-time-zone-cache if non-nil.
5585
5586 2012-07-06 Glenn Morris <rgm@gnu.org>
5587
5588 * Makefile.in (cvs-update): Remove old alias.
5589
5590 2012-07-05 Michael Albinus <michael.albinus@gmx.de>
5591
5592 Sync with Tramp 2.2.6-pre.
5593
5594 * net/tramp.el (tramp-drop-volume-letter): Provide an XEmacs
5595 compatible declaration.
5596
5597 * net/tramp-cmds.el (tramp-append-tramp-buffers):
5598 Protect `list-load-path-shadows' call.
5599
5600 * net/tramp-compat.el (top): Require packages, which aren't
5601 autoloaded anymore for XEmacs. Protect call of
5602 `tramp-file-name-handler' by `tramp-compat-funcall', pacifying the
5603 compiler. Do not require tramp-util.el and tramp-vc.el anymore,
5604 it hurts at least for SXEmacs.
5605 (tramp-compat-temporary-file-directory): In XEmacs, there is no
5606 standard-value for `temporary-file-directory'.
5607
5608 * net/tramp-sh.el (tramp-do-directory-files-and-attributes-with-stat):
5609 Redirect stderr to /dev/null.
5610 (tramp-sh-handle-write-region): uid and gid can be floats.
5611 Reported by Russell Sim <russell.sim@gmail.com>.
5612 (tramp-sh-handle-vc-registered): Hide errors.
5613 (tramp-vc-file-name-handler): Use dummy results for `process-file'
5614 and `start-file-process'.
5615 (tramp-maybe-open-connection): Check also whether `non-essential'
5616 is bound.
5617
5618 2012-07-04 Chong Yidong <cyd@gnu.org>
5619
5620 * xml.el (xml--parse-buffer): Use xml-syntax-table.
5621 (xml-parse-tag): Likewise, and avoid changing entity tables.
5622 (xml-syntax-table): Define from scratch, making sure not to give
5623 x2000 and other Unicode spaces whitespace syntax, since those are
5624 not spaces in XML.
5625 (xml-parse-fragment): Delete unused function.
5626 (xml-name-start-char-re, xml-name-char-re, xml-name-re)
5627 (xml-names-re, xml-nmtoken-re, xml-nmtokens-re, xml-char-ref-re)
5628 (xml-entity-ref, xml-pe-reference-re)
5629 (xml-reference-re,xml-att-value-re, xml-tokenized-type-re)
5630 (xml-notation-type-re, xml-enumeration-re, xml-enumerated-type-re)
5631 (xml-att-type-re, xml-default-decl-re, xml-att-def-re)
5632 (xml-entity-value-re): Use syntax references in regexps where
5633 possible; no need to define inside a let-binding.
5634 (xml-parse-dtd): Use xml-pe-reference-re.
5635 (xml-entity-or-char-ref-re): New defconst.
5636 (xml-parse-string, xml-substitute-special): Use it.
5637
5638 2012-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
5639
5640 * files.el (locate-dominating-file): Allow `name' to be a predicate.
5641 (find-file--read-only): New function.
5642 (find-file-read-only, find-file-read-only-other-window)
5643 (find-file-read-only-other-frame): Use it.
5644 (insert-file-contents-literally): Don't `fset'.
5645 (get-free-disk-space): Use locate-dominating-file.
5646
5647 * emacs-lisp/bytecomp.el (byte-compile): Don't signal an error if the
5648 function is already compiled.
5649
5650 * xml.el (xml-name-regexp): Remove, redundant. Use xml-name-re.
5651
5652 2012-07-03 Michael Albinus <michael.albinus@gmx.de>
5653
5654 * vc/ediff-diff.el (ediff-same-file-contents): Fix it for remote
5655 files on the same host.
5656
5657 2012-07-03 Andreas Schwab <schwab@linux-m68k.org>
5658
5659 * help-fns.el (describe-function-1): Only call
5660 help-fns--autoloaded-p when we have a file name. (Bug#11848)
5661
5662 2012-07-03 Chong Yidong <cyd@gnu.org>
5663
5664 * xml.el: Protect parser against XML bombs.
5665 (xml-entity-expansion-limit): New variable.
5666 (xml-parse-string, xml-substitute-special): Use it.
5667 (xml-parse-dtd): Avoid infloop if the DTD is not terminated.
5668
5669 2012-07-03 Glenn Morris <rgm@gnu.org>
5670
5671 * progmodes/bug-reference.el (bug-reference-bug-regexp):
5672 Allow linking to specific messages in debbugs reports (eg 123#5).
5673
5674 2012-07-02 Chong Yidong <cyd@gnu.org>
5675
5676 * xml.el: Fix entity and character reference expansion, allowing
5677 them to expand into markup as per XML spec.
5678 (xml-default-ns): New variable.
5679 (xml-entity-alist): Use XML spec definitions for lt and amp.
5680 (xml-parse-region): Make first two arguments optional.
5681 Discard text properties.
5682 (xml-parse-tag-1): New function, spun off from xml-parse-tag.
5683 All callers changed.
5684 (xml-parse-tag): Call xml-parse-tag-1. For backward
5685 compatibility, this function should not modify buffer contents.
5686 (xml-parse-tag-1): Fix opening-tag regexp.
5687 (xml-parse-string): Rewrite, handling entity and character
5688 references properly.
5689 (xml--entity-replacement-text): Signal an error if a parameter
5690 entity is undefined.
5691
5692 2012-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
5693
5694 * comint.el (comint-output-filter): Filter out repeated prompts.
5695
5696 * net/ange-ftp.el (ange-ftp-expand-file-name): Use ange-ftp-ftp-name
5697 and file-name-absolute-p.
5698 (ange-ftp-file-exists-p): Use ange-ftp-file-exists-p for
5699 internal calls.
5700
5701 2012-07-02 Paul Eggert <eggert@cs.ucla.edu>
5702
5703 Spelling fixes.
5704 * emacs-lisp/bytecomp.el (byte-compile--reify-function):
5705 Rename from byte-compile--refiy-function. All uses changed.
5706
5707 2012-07-01 Chong Yidong <cyd@gnu.org>
5708
5709 * xml.el (xml--parse-buffer): New function. Move most of
5710 xml-parse-region here.
5711 (xml-parse-region): Copy region into a temporary buffer, since
5712 parameter entity substitution requires changing buffer contents.
5713 Use xml--parse-buffer.
5714 (xml-parse-file): Use xml--parse-buffer.
5715 (xml-parse-dtd): Make parameter entity substitution work right.
5716 Use proper regexps for ELEMENT declarations (Bug#7172).
5717
5718 2012-06-30 Glenn Morris <rgm@gnu.org>
5719
5720 * comint.el (follow-comint-scroll-to-bottom): Fix declaration.
5721
5722 * net/secrets.el, net/tramp-gvfs.el, net/xesam.el, net/zeroconf.el:
5723 Remove outdated and unnecessary dbus declarations.
5724
5725 2012-06-30 Eli Zaretskii <eliz@gnu.org>
5726
5727 * emacs-lisp/timer.el (timer-until): Subtract results of
5728 float-time, instead of taking float-time of the result of
5729 time-subtract, since float-time signals an error for negative time
5730 arguments.
5731
5732 2012-06-30 Chong Yidong <cyd@gnu.org>
5733
5734 * xml.el (xml-*-re): Convert defvars into defconsts, and
5735 eval-and-compile them so eval-and-compile works on derivatives.
5736 (xml--entity-replacement-text): Use eval-and-comple.
5737
5738 2012-06-30 Michael Albinus <michael.albinus@gmx.de>
5739
5740 * vc/vc-git.el (vc-git-registered): Use cache property
5741 `git-registered'.
5742 (vc-git-mode-line-string): Call `vc-working-revision' instead of
5743 `vc-git-working-revision' in order to benefit from the cache.
5744 (vc-git-root): Use cache property `git-root'. (Bug#11757)
5745
5746 2012-06-30 Dmitry Gutov <dgutov@yandex.ru>
5747
5748 * vc/vc-hooks.el (vc-before-save): Clear cache if file has been
5749 removed (likely outside Emacs). (Bug#11757)
5750
5751 2012-06-30 Stefan Monnier <monnier@iro.umontreal.ca>
5752
5753 * emacs-lisp/cl-lib.el: Require macroexp.
5754
5755 2012-06-30 Chong Yidong <cyd@gnu.org>
5756
5757 * xml.el: Implement XML parameter entities.
5758 (xml-parameter-entity-alist): New variable.
5759 (xml-parse-region, xml-parse-fragment): Preserve previous values
5760 of xml-entity-alist and xml-parameter-entity-alist, so that
5761 repeated calls on different documents do not change them.
5762 (xml-parse-tag): Fix doctype regexp.
5763 (xml--entity-replacement-text): New function.
5764 (xml-parse-dtd): Use it. Don't handle system entities; doing that
5765 properly requires url retrieval which is unimplemented.
5766 (xml-escape-string): Doc fix.
5767
5768 2012-06-30 Stefan Monnier <monnier@iro.umontreal.ca>
5769
5770 * emacs-lisp/cl-lib.el (cl-pushnew): Use macroexp-let2.
5771
5772 2012-06-29 Dmitry Antipov <dmantipov@yandex.ru>
5773
5774 * fringe.el (fringe-mode): Doc fix.
5775
5776 2012-06-29 Michael Albinus <michael.albinus@gmx.de>
5777
5778 * net/ange-ftp.el (ange-ftp-get-passwd): Throw if `non-essential'
5779 is non-nil.
5780 (ange-ftp-ignore-errors-if-non-essential): New defmacro.
5781 (ange-ftp-file-name-all-completions): Use it. (Bug#11808)
5782
5783 2012-06-29 Andreas Schwab <schwab@linux-m68k.org>
5784
5785 * calendar/cal-dst.el (calendar-current-time-zone):
5786 Return calendar-current-time-zone-cache if non-nil.
5787
5788 2012-06-29 Masatake YAMATO <yamato@redhat.com>
5789
5790 * progmodes/which-func.el (which-func-format):
5791 Add mouse-face. (Bug#11698)
5792
5793 2012-06-29 Leo Liu <sdl.web@gmail.com>
5794
5795 * textmodes/enriched.el (enriched-next-annotation): Use eq (Bug#11528).
5796
5797 2012-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
5798
5799 * minibuffer.el (minibuffer-confirm-exit-commands):
5800 Add completion-at-point (bug#11725).
5801
5802 2012-06-29 Glenn Morris <rgm@gnu.org>
5803
5804 * progmodes/f90.el (f90-font-lock-keywords-2):
5805 Add some preprocessor elements. (Bug#10499)
5806
5807 2012-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
5808
5809 * progmodes/cperl-mode.el (cperl-update-syntaxification):
5810 Use syntax-propertize (bug#11739).
5811
5812 2012-06-28 Juanma Barranquero <lekktu@gmail.com>
5813
5814 * emacs-lisp/cl-lib.el (cl-pushnew): Don't capture X (bug#11811).
5815
5816 2012-06-28 Julien Danjou <julien@danjou.info>
5817
5818 * term.el (term-handle-colors-array): Use a set of new faces to
5819 color the terminal. Also uses :inverse-video property.
5820 (term-default-fg-color): Set to nil by default, deprecate in favor
5821 of `term-face'.
5822 (term-default-bg-color): Set to nil by default, deprecate in favor
5823 of `term-face'.
5824 (term-current-face): Use `term-face' by default.
5825 (term-bold-attribute): Variable deleted.
5826
5827 2012-06-28 Glenn Morris <rgm@gnu.org>
5828
5829 * simple.el (completion-list-mode-finish):
5830 Don't use toggle-read-only. (Since completion-list-mode has
5831 a special mode-class, it wasn't doing anything extra anyway.)
5832
5833 2012-06-28 Stefan Monnier <monnier@iro.umontreal.ca>
5834
5835 Make inlining of other-mode interpreted functions work (bug#11799).
5836 * emacs-lisp/bytecomp.el (byte-compile--refiy-function): New fun.
5837 (byte-compile): Use it to fix compilation of lexical-binding closures.
5838 * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Compile the
5839 function, if needed.
5840
5841 2012-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
5842
5843 * help-mode.el (help-make-xrefs): Don't just withstand
5844 cyclic-variable-indirection but any error in documentation-property.
5845
5846 * loadup.el (purify-flag): Pre-grow the hash-table to reduce the
5847 memory use.
5848 * bindings.el (bindings--define-key): New function.
5849 * vc/vc-hooks.el, replace.el, menu-bar.el, international/mule-cmds.el:
5850 * emacs-lisp/lisp-mode.el, buff-menu.el, bookmark.el:
5851 * bindings.el: Use it to purecopy define-key bindings.
5852
5853 * textmodes/rst.el (rst-adornment-faces-alist): Avoid copy-list.
5854
5855 * emacs-lisp/cl.el (flet): Mark obsolete.
5856 * emacs-lisp/cl-macs.el (cl-flet*): New macro.
5857 * vc/vc-rcs.el (vc-rcs-annotate-command, vc-rcs-parse):
5858 * progmodes/js.el (js-c-fill-paragraph):
5859 * progmodes/ebrowse.el (ebrowse-switch-member-buffer-to-sibling-class)
5860 (ebrowse-switch-member-buffer-to-derived-class):
5861 * play/5x5.el (5x5-solver): Use cl-flet.
5862
5863 * emacs-lisp/cl.el: Use lexical-binding. Fix flet (bug#11780).
5864 (cl--symbol-function): New macro.
5865 (cl--letf, cl--letf*): Use it.
5866
5867 * emacs-lisp/easy-mmode.el (easy-mmode-pretty-mode-name):
5868 Strip "toggle-" if any.
5869
5870 2012-06-27 Glenn Morris <rgm@gnu.org>
5871
5872 * info.el (Info-default-directory-list): Move here from paths.el.
5873 * paths.el: Remove file, which is now empty.
5874 * loadup.el: No longer load "paths".
5875
5876 * custom.el (custom-initialize-delay): Doc fix.
5877
5878 * eshell/em-alias.el, eshell/em-banner.el, eshell/em-basic.el:
5879 * eshell/em-cmpl.el, eshell/em-dirs.el, eshell/em-glob.el:
5880 * eshell/em-hist.el, eshell/em-ls.el, eshell/em-pred.el:
5881 * eshell/em-prompt.el, eshell/em-rebind.el, eshell/em-script.el:
5882 * eshell/em-smart.el, eshell/em-term.el, eshell/em-unix.el:
5883 * eshell/em-xtra.el: Replace eshell-defgroup with "(progn (defgroup".
5884 * eshell/eshell.el (eshell-defgroup): Remove alias.
5885
5886 2012-06-27 Chong Yidong <cyd@gnu.org>
5887
5888 * help.el (help-enable-auto-load): New variable.
5889
5890 * help-fns.el (help-fns--autoloaded-p): New function.
5891 (describe-function-1): Refer to a function as "autoloaded" if it
5892 was autoloaded at any time in the past. Perform autoloading if
5893 help-enable-auto-load is non-nil.
5894
5895 2012-06-26 Eli Zaretskii <eliz@gnu.org>
5896
5897 * makefile.w32-in (compile, compile-always): Depend on
5898 update-subdirs, not on subdirs.el. Otherwise, several different
5899 sub-targets of 'bootstrap' running in parallel could
5900 simultaneously write to subdirs.el, producing a garbled file.
5901
5902 2012-06-26 Sam Steingold <sds@gnu.org>
5903
5904 * files.el (file-name-base): New convenience function.
5905 * autoinsert.el, cus-dep.el, doc-view.el, image-dired.el:
5906 * woman.el, eshell/esh-cmd.el, progmodes/ada-xref.el:
5907 * progmodes/cc-defs.el, progmodes/cperl-mode.el:
5908 * progmodes/flymake.el, progmodes/gud.el, progmodes/idlwave.el:
5909 * textmodes/ispell.el, textmodes/reftex-ref.el:
5910 * textmodes/tex-mode.el: Use it.
5911 Did not touch cedet and org because they are maintained elsewhere.
5912
5913 2012-06-26 Martin Rudalics <rudalics@gmx.at>
5914
5915 * calendar/calendar.el (calendar-exit): Don't try to delete or
5916 iconify last frame. See:
5917 http://lists.gnu.org/archive/html/emacs-devel/2012-06/msg00372.html
5918
5919 2012-06-25 Jim Diamond <Jim.Diamond@AcadiaU.ca> (tiny change)
5920
5921 * server.el (server-process-filter): Remember dir in the
5922 process's `server-client-directory' properties.
5923
5924 2012-06-24 Chong Yidong <cyd@gnu.org>
5925
5926 * xml.el (xml-parse-tag): Correctly handle comment embedded in
5927 non-tag text.
5928
5929 2012-06-23 Juanma Barranquero <lekktu@gmail.com>
5930
5931 * makefile.w32-in (COMPILE_FIRST): Synch with changes in 2012-06-22T21:24:54Z!monnier@iro.umontreal.ca.
5932
5933 2012-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
5934
5935 * help-fns.el (describe-variable): Don't croak when doc is not found.
5936 * vc/pcvs.el (cvs-retrieve-revision): Avoid toggle-read-only.
5937 * menu-bar.el (menu-bar-line-wrapping-menu): Purecopy a tiny bit more.
5938 * emacs-lisp/syntax.el (syntax-ppss): Simplify with new `if' place.
5939 * emacs-lisp/smie.el (smie-next-sexp): CSE.
5940 * emacs-lisp/macroexp.el (macroexp-let2): Fix edebug spec and avoid
5941 ((lambda ..) ..).
5942 * emacs-lisp/eieio.el (eieio-oref, slot-value): Use simpler defsetf.
5943
5944 2012-06-23 Chong Yidong <cyd@gnu.org>
5945
5946 * info.el (Info-mouse-follow-link): Accept symbol values of
5947 link-args. Select window; suggested by Gerhard Kahl (Bug#11672).
5948 (Info-fontify-node): Use Info-link-keymap for all navigation
5949 buttons, with link-args property to perform the desired action.
5950 (Info-link-keymap): Doc fix.
5951 (Info-next-link-keymap, Info-prev-link-keymap)
5952 (Info-up-link-keymap): Delete now-unused keymaps.
5953
5954 2012-06-23 Chong Yidong <cyd@gnu.org>
5955
5956 * mouse.el (mouse-drag-track): Deactivate the mark before popping.
5957
5958 * progmodes/python.el (python-skeleton-define): Mark abbrevs as
5959 system abbrevs.
5960
5961 * ansi-color.el (ansi-color-apply-on-region): Doc fix.
5962
5963 2012-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
5964
5965 * emacs-lisp/cl-macs.el (cl--make-usage-args): Handle improper lists
5966 (bug#11719).
5967
5968 * minibuffer.el (completion--twq-try): Try to fail more gracefully when
5969 the requote function doesn't work properly (bug#11714).
5970
5971 2012-06-23 Glenn Morris <rgm@gnu.org>
5972
5973 * pcmpl-rpm.el (pcmpl-rpm-packages): Give status messages.
5974
5975 2012-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
5976
5977 Further GV/CL cleanups.
5978 * emacs-lisp/gv.el (gv-get): Autoload functions to find their
5979 gv-expander.
5980 (gv--defun-declaration): New function.
5981 (defun-declarations-alist): Use it.
5982 (gv-define-modify-macro, gv-pushnew!, gv-inc!, gv-dec!): Remove.
5983 (gv-place): Autoload.
5984 * emacs-lisp/cl.el (cl--dotimes, cl--dolist): Remember subr.el's
5985 original definition of dotimes and dolist.
5986 * emacs-lisp/cl-macs.el (cl-expr-access-order): Remove unused.
5987 (cl-dolist, cl-dotimes): Use `dolist' and `dotimes'.
5988 * emacs-lisp/cl-lib.el: Move gv handlers from cl-macs to here.
5989 (cl-fifth, cl-sixth, cl-seventh, cl-eighth)
5990 (cl-ninth, cl-tenth): Move gv handler to the function's definition.
5991 * emacs-lisp/cl-extra.el (cl-subseq, cl-get, cl-getf): Move gv handler
5992 to the function's definition.
5993 * Makefile.in (COMPILE_FIRST): Re-order to speed it up by about 50%.
5994 * window.el:
5995 * files.el:
5996 * faces.el:
5997 * env.el: Don't use CL.
5998
5999 2012-06-22 Paul Eggert <eggert@cs.ucla.edu>
6000
6001 Support higher-resolution time stamps (Bug#9000).
6002
6003 * calendar/time-date.el (with-decoded-time-value): New arg
6004 PICO-SYMBOL in VARLIST. It's optional, for backward compatibility.
6005 (encode-time-value): New optional arg PICO. New type 3.
6006 (time-to-seconds) [!float-time]: Support the new picoseconds
6007 component if it's used.
6008 (seconds-to-time, time-subtract, time-add):
6009 Support ps-resolution time stamps as well.
6010
6011 * emacs-lisp/timer.el (timer): New component psecs. All uses changed.
6012 (timerp): Timer vectors now have length 9, not 8.
6013 (timer--time): Support new-style (4-part) time stamps.
6014 (timer-next-integral-multiple-of-time): Time stamps now have
6015 picosecond resolution, so take a bit more care about rounding.
6016 (timer-relative-time, timer-inc-time): New optional arg psecs.
6017 (timer-set-time-with-usecs): Set psecs to 0.
6018 (timer--activate): Check psecs component, too.
6019
6020 * proced.el (proced-time-lessp): Support ps-resolution stamps.
6021
6022 2012-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
6023
6024 * icomplete.el (icomplete-minibuffer-setup, icomplete-completions):
6025 Move the non-essential binding to the post/pre-command-hook where it is
6026 more obviously correct.
6027
6028 * subr.el (read-passwd): Don't use a history at all.
6029 * savehist.el (savehist-save): Remove password saved accidentally
6030 because of the above bug.
6031
6032 2012-06-22 Bastien Guerry <bzg@gnu.org>
6033
6034 * files.el (toggle-read-only): Display a message telling whether
6035 the buffer is read-only or not (bug#11726).
6036
6037 2012-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
6038
6039 * emacs-lisp/gv.el: New file.
6040 * subr.el (push, pop): Extend to generalized variables.
6041 * loadup.el (macroexp): Unload if preloaded and uncompiled (bug#11657).
6042 * emacs-lisp/cl-lib.el (cl-pop, cl-push, cl--set-nthcdr): Remove.
6043 * emacs-lisp/cl-macs.el: Require gv. Use gv-define-setter,
6044 gv-define-simple-setter, and gv-define-expander.
6045 Remove setf-methods defined in gv. Rename cl-setf -> setf.
6046 (cl-setf, cl-do-pop, cl-get-setf-method): Remove.
6047 (cl-letf, cl-letf*, cl-define-modify-macro, cl-defsetf)
6048 (cl-define-setf-expander, cl-struct-setf-expander): Move to cl.el.
6049 (cl-remf, cl-shiftf, cl-rotatef, cl-callf, cl-callf2): Rewrite with
6050 gv-letplace.
6051 (cl-defstruct): Don't define setf-method any more.
6052 * emacs-lisp/cl.el (flet): Don't autoload.
6053 (cl--letf, letf, cl--letf*, letf*, cl--gv-adapt)
6054 (define-setf-expander, defsetf, define-modify-macro)
6055 (cl-struct-setf-expander): Move from cl-lib.el.
6056 * emacs-lisp/syntax.el:
6057 * emacs-lisp/ewoc.el:
6058 * emacs-lisp/smie.el:
6059 * emacs-lisp/cconv.el:
6060 * emacs-lisp/timer.el: Rename cl-setf -> setf, cl-push -> push.
6061 (timer--time): Use gv-define-simple-setter.
6062 * emacs-lisp/macroexp.el (macroexp-let2): Rename from macroexp-let²
6063 to avoid coding-system problems in subr.el. Adjust all users.
6064 (macroexp--maxsize, macroexp-small-p): New functions.
6065 * emacs-lisp/bytecomp.el (byte-compile-file): Don't use cl-letf.
6066 * scroll-bar.el (scroll-bar-mode):
6067 * simple.el (auto-fill-mode, overwrite-mode, binary-overwrite-mode)
6068 (normal-erase-is-backspace-mode): Don't use the `eq' place.
6069 * winner.el (winner-configuration, winner-make-point-alist)
6070 (winner-set-conf, winner-get-point, winner-set): Don't abuse letf.
6071 * files.el (locate-file-completion-table): Avoid list*.
6072
6073 2012-06-22 Chong Yidong <cyd@gnu.org>
6074
6075 * dired-aux.el (dired-do-create-files): Doc fix (Bug#11327).
6076 (dired-create-files): Doc fix (Bug#11329).
6077 (dired-do-copy): Doc fix (Bug#11334).
6078 (dired-mark-read-string): Doc fix (Bug#11553).
6079
6080 * dired.el (dired-recursive-copies, dired-recursive-deletes):
6081 Doc fix (Bug#11326).
6082 (dired-make-relative): Doc fix (Bug#11332). Remove unused arg.
6083 (dired-dwim-target): Doc fix.
6084
6085 * wdired.el (wdired-mode): Doc fix.
6086
6087 2012-06-22 Glenn Morris <rgm@gnu.org>
6088
6089 * pcmpl-rpm.el (pcmpl-rpm-cache): New option.
6090 (pcmpl-rpm-cache-stamp-file): New constant.
6091 (pcmpl-rpm-cache-time, pcmpl-rpm-packages): New variables.
6092 (pcmpl-rpm-packages): Optionally cache list of packages.
6093
6094 * pcmpl-rpm.el (pcmpl-rpm): New group.
6095 (pcmpl-rpm-query-options): New option.
6096 (pcmpl-rpm-packages): No need to inline it.
6097 Use pcmpl-rpm-query-options.
6098
6099 * calendar/calendar.el (calendar-in-read-only-buffer):
6100 Avoid some needless mode changes.
6101
6102 2012-06-21 Chong Yidong <cyd@gnu.org>
6103
6104 * desktop.el (desktop-read): Don't prompt if daemon (Bug#11674).
6105 (desktop-path): Remove . from the default value (Bug#10977).
6106 (desktop-read): Use user-emacs-directory if desktop-path is nil.
6107
6108 2012-06-20 Chong Yidong <cyd@gnu.org>
6109
6110 * term.el (term-send-raw-meta): Make C-M-<char> keys work (Bug#8172).
6111
6112 2012-06-20 David Röthlisberger <david@rothlis.net> (tiny change)
6113
6114 * ido.el (ido-switch-buffer, ido-find-file): Fix up doc of C-j
6115 (bug#11201).
6116
6117 2012-06-20 Chong Yidong <cyd@gnu.org>
6118
6119 * term.el (term-window-width): Handle the case of a missing right
6120 fringe (Bug#8837).
6121 (term-check-size): Use window-text-height (Bug#5445).
6122 (term-mode): Use define-derived-mode. Minor cleanups.
6123 Set font-lock-defaults (Bug#7692).
6124 (term-move-columns, term-insert-char, term-emulate-terminal)
6125 (term-erase-in-line, term-insert-spaces): Use font-lock-face.
6126
6127 2012-06-20 Michael Albinus <michael.albinus@gmx.de>
6128
6129 * net/ange-ftp.el (ange-ftp-get-passwd):
6130 Bind `enable-recursive-minibuffers'.
6131 (ange-ftp-get-process): Throw if `non-essential' is non-nil.
6132
6133 2012-06-19 David Röthlisberger <david@rothlis.net> (tiny change)
6134
6135 * ido.el (ido-find-file): Mention C-d binding in docstring (bug#11244).
6136
6137 2012-06-19 Glenn Morris <rgm@gnu.org>
6138
6139 * progmodes/python.el (python-mode): Derive from prog-mode.
6140
6141 2012-06-19 Kevin Gallagher <Kevin.Gallagher@boeing.com>
6142
6143 * emulation/edt.el (edt-default-menu-bar-update-buffers)
6144 (edt-user-menu-bar-update-buffers): New functions.
6145 (edt-default-emulation-setup, edt-user-emulation-setup): Use them.
6146
6147 2012-06-19 Chong Yidong <cyd@gnu.org>
6148
6149 * subr.el (with-selected-window): Preserve the selected window's
6150 terminal's top-frame (Bug#4702).
6151
6152 * window.el (save-selected-window): Likewise.
6153
6154 2012-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
6155
6156 * progmodes/python.el (python-rx-constituents): Move backquote.
6157 (python-skeleton-define, python-define-auxiliary-skeleton):
6158 Use `declare'.
6159
6160 2012-06-18 Michael Albinus <michael.albinus@gmx.de>
6161
6162 * minibuffer.el (read-file-name-default): Revert the patch from
6163 2012-06-17.
6164
6165 2012-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
6166
6167 * emacs-lisp/pcase.el (pcase--expand): Warn for unused pattern.
6168 (pcase--u1, pcase--q1): Don't use apply-partially.
6169
6170 2012-06-18 Glenn Morris <rgm@gnu.org>
6171
6172 * progmodes/python.el (python-proc, python-buffer)
6173 (python-send-receive, python-send-string): Fix obsolete versions.
6174
6175 2012-06-18 Martin Rudalics <rudalics@gmx.at>
6176
6177 * window.el (special-display-p): Completely remove stringp
6178 check. Suggested by Andreas Schwab <schwab@linux-m68k.org>.
6179
6180 2012-06-17 Michael Albinus <michael.albinus@gmx.de>
6181
6182 * minibuffer.el (read-file-name-default): Bind `non-essential' to `t'.
6183
6184 * net/tramp.el (tramp-file-name-handler): Catch 'non-essential.
6185
6186 * net/ange-ftp.el (ange-ftp-gwp-start, ange-ftp-start-process):
6187 * net/tramp-sh.el (tramp-maybe-open-connection):
6188 Throw if `non-essential' is non-nil.
6189
6190 2012-06-17 Martin Rudalics <rudalics@gmx.at>
6191
6192 * window.el (special-display-p): Signal an error if BUFFER-NAME
6193 is not a string (Bug#11713).
6194
6195 2012-06-17 Paul Eggert <eggert@cs.ucla.edu>
6196
6197 * progmodes/python.el (python-info-beginning-of-backslash):
6198 Rename from python-info-beginning-of-backlash, as a spelling fix.
6199
6200 2012-06-17 Chong Yidong <cyd@gnu.org>
6201
6202 * term.el (term-emulate-terminal): If term-check-size is called,
6203 move point to the process mark without resetting point (Bug#4635).
6204
6205 2012-06-17 Glenn Morris <rgm@gnu.org>
6206
6207 * international/mule-cmds.el (mule-menu-keymap)
6208 (set-language-environment, set-locale-environment): Doc tweaks.
6209
6210 2012-06-16 Aurelien Aptel <aurelien.aptel@gmail.com>
6211
6212 * cus-face.el (custom-face-attributes): Add wave-style underline
6213 attribute.
6214 * faces.el (set-face-attribute): Update docstring to describe
6215 wave-style underline attribute.
6216
6217 2012-06-16 Chong Yidong <cyd@gnu.org>
6218
6219 * term/xterm.el (terminal-init-xterm): Discard input before
6220 querying background mode (Bug#10959).
6221
6222 2012-06-16 Stefan Merten <smerten@oekonux.de>
6223
6224 * textmodes/rst.el: Added and corrected some comments.
6225 (rst-re-alist-def): Improve symbol syntax.
6226 (rst-mode-syntax-table): Correct syntax entries.
6227 (rst-cvs-header, rst-svn-rev, rst-svn-timestamp)
6228 (rst-official-version, rst-official-cvs-rev): Update version
6229 information.
6230
6231 2012-06-15 Juanma Barranquero <lekktu@gmail.com>
6232
6233 * makefile.w32-in (COMPILE_FIRST): Synch with makefile.in changes
6234 in 2008-06-22T13:57:28Z!monnier@iro.umontreal.ca.
6235
6236 2012-06-15 Fabián Ezequiel Gallina <fgallina@cuca>
6237
6238 * progmodes/python.el: New python.el merge.
6239 (python-guess-indent): Obsolete var.
6240 (python-indent-guess-indent-offset): New defcustom.
6241 (python-indent): Obsolete var.
6242 (python-indent-offset): New defcustom.
6243 (python-python-command, python-jython-command): Delete var.
6244 (python-shell-interpreter): New defcustom.
6245 (python-pdbtrack-do-tracking-p): Delete var.
6246 (python-pdbtrack-activate): New defcustom.
6247 (python-use-skeletons): Obsolete var.
6248 (python-skeleton-autoinsert): New defcustom.
6249 (inferior-python-filter-regexp, python-continuation-offset)
6250 (python-honour-comment-indentation, python-indent-string-contents)
6251 (python-jython-packages, python-mode-hook)
6252 (python-pdbtrack-minor-mode-string, python-remove-cwd-from-path)
6253 (python-shell-prompt-alist)
6254 (python-source-modes): Delete defcustoms.
6255 (python-check-buffer-name, python-eldoc-setup-code)
6256 (python-eldoc-string-code, python-ffap-setup-code)
6257 (python-ffap-string-code, python-fill-comment-function)
6258 (python-fill-decorator-function, python-fill-paren-function)
6259 (python-fill-string-function, python-imenu-include-defun-type)
6260 (python-imenu-make-tree, python-imenu-subtree-root-label)
6261 (python-pdbtrack-stacktrace-info-regexp, python-shell-buffer-name)
6262 (python-shell-compilation-regexp-alist)
6263 (python-shell-completion-module-string-code)
6264 (python-shell-completion-pdb-string-code)
6265 (python-shell-completion-setup-code)
6266 (python-shell-completion-string-code)
6267 (python-shell-enable-font-lock, python-shell-exec-path)
6268 (python-shell-extra-pythonpaths)
6269 (python-shell-internal-buffer-name, python-shell-interpreter-args)
6270 (python-shell-process-environment)
6271 (python-shell-prompt-block-regexp)
6272 (python-shell-prompt-output-regexp)
6273 (python-shell-prompt-pdb-regexp, python-shell-prompt-regexp)
6274 (python-shell-send-setup-max-wait, python-shell-setup-codes)
6275 (python-shell-virtualenv-path): New defcustoms.
6276 (brm-menu, eldoc-documentation-function, inferior-python-mode-map)
6277 (inferior-python-mode-syntax-table, python--prompt-regexp)
6278 (python-buffer, python-command python-python-command)
6279 (python-default-template, python-imports, python-indent-index)
6280 (python-indent-list, python-indent-list-length)
6281 (python-mode-running, python-pdbtrack-is-tracking-p)
6282 (python-preoutput-continuation, python-preoutput-leftover)
6283 (python-preoutput-result, python-preoutput-skip-next-prompt)
6284 (python-prev-dir/file, python-recursing)
6285 (python-saved-check-command, python-version-checked)
6286 (python-which-func-length-limit)
6287 (view-return-to-alist): Delete vars.
6288 (python-check-custom-command, python-dotty-syntax-table)
6289 (python-imenu-index-alist, python-indent-current-level)
6290 (python-indent-dedenters, python-indent-levels)
6291 (python-nav-beginning-of-defun-regexp)
6292 (python-nav-list-defun-positions-cache)
6293 (python-pdbtrack-buffers-to-kill, python-pdbtrack-tracked-buffer)
6294 (python-shell-internal-buffer)
6295 (python-skeleton-available): New vars.
6296 (def-python-skeleton): Delete macro.
6297 (python-skeleton-define): New macro.
6298 (python-define-auxiliary-skeleton, python-rx): New macros.
6299 (python-insert-class): Delete command.
6300 (python-skeleton-class): New command.
6301 (python-insert-def): Delete command.
6302 (python-skeleton-def): New command.
6303 (python-insert-for): Delete command.
6304 (python-skeleton-for): New command.
6305 (python-insert-if): Delete command.
6306 (python-skeleton-if): New command.
6307 (python-insert-try/except, python-insert-try/finally): Delete commands.
6308 (python-skeleton-try): New command.
6309 (python-insert-while): Delete command.
6310 (python-skeleton-while): New command.
6311 (python-backspace): Delete command.
6312 (python-indent-dedent-line-backspace): New command.
6313 (python-electric-colon): Delete command.
6314 (python-indent-electric-colon): New command.
6315 (python-guess-indent): Delete command.
6316 (python-indent-guess-indent-offset): New command.
6317 (python-shift-left): Delete command.
6318 (python-indent-shift-left): New command.
6319 (python-shift-right): Delete command.
6320 (python-indent-shift-right): New command.
6321 (python-find-function): Delete command.
6322 (python-nav-jump-to-defun): New command.
6323 (python-next-statement): Delete command.
6324 (python-nav-forward-sentence): New command.
6325 (python-previous-statement): Delete command.
6326 (python-nav-backward-sentence): New command.
6327 (python-fill-paragraph): Delete command.
6328 (python-fill-paragraph-function): New command.
6329 (python-send-buffer): Delete command.
6330 (python-shell-send-buffer): New command.
6331 (python-send-defun): Delete command.
6332 (python-shell-send-defun): New command.
6333 (python-send-region, python-send-region-and-go): Delete commands.
6334 (python-shell-send-region)
6335 (python-shell-switch-to-shell): New commands.
6336 (python-send-string): Delete command.
6337 (python-shell-send-string): New command.
6338 (python-switch-to-python): Delete command.
6339 (python-shell-switch-to-shell): New command.
6340 (python-describe-symbol): Delete command.
6341 (python-eldoc-at-point): New command.
6342 (python--set-prompt-regexp, python-args-to-list)
6343 (python-after-info-look, python-check-version)
6344 (python-check-comint-prompt, python-find-imports)
6345 (python-execute-file, turn-off-pdbtrack, turn-on-pdbtrack)
6346 (python-unload-function, python-expand-template)
6347 (python-maybe-jython, python-preoutput-filter)
6348 (python-pdbtrack-get-source-buffer)
6349 (python-pdbtrack-grub-for-buffer, python-pdbtrack-overlay-arrow)
6350 (python-pdbtrack-toggle-stack-tracking)
6351 (python-pdbtrack-track-stack-file, python-initial-text)
6352 (python-first-word, python-comment-line-p, python-send-command)
6353 (python-setup-brm, python-sentinel, python-set-proc)
6354 (python-skip-out, python-input-filter, python-outdent-p)
6355 (python-outline-level, python-backslash-continuation-line-p)
6356 (python-end-of-block, python-end-of-statement, python-mark-block)
6357 (python-beginning-of-block, python-beginning-of-statement)
6358 (python-blank-line-p, python-beginning-of-string)
6359 (python-open-block-statement-p): Delete functions.
6360 (python-indent-line, python-indent-line-1): Delete functions.
6361 (python-indent-line): New function.
6362 (python-indentation-levels): Delete function.
6363 (python-indent-calculate-levels): New function.
6364 (python-proc): Delete function.
6365 (python-shell-get-process): New function.
6366 (python-send-receive): Delete function.
6367 (python-shell-send-string-no-output): New function.
6368 (python-module-path): Delete function.
6369 (python-ffap-module-path): New function.
6370 (python-completion-at-point)
6371 (python-symbol-completions): Delete functions.
6372 (python-completion-complete-at-point): New function.
6373 (python-load-file): Delete function.
6374 (python-shell-send-file): New function.
6375 (python-calculate-indentation): Delete function.
6376 (python-indent-calculate-indentation): New function.
6377 (python-skip-comments/blanks): Delete function.
6378 (python-util-forward-comment): New function.
6379 (python-continuation-line-p): Delete function.
6380 (python-info-continuation-line-p): New function.
6381 (python-which-func, python-current-defun): Delete function.
6382 (python-info-current-defun): New function.
6383 (python-beginning-of-defun): Delete function.
6384 (python-nav-beginning-of-defun): New function.
6385 (python-close-block-statement-p)
6386 (python-block-end-p): Delete function.
6387 (python-info-closing-block): New function.
6388 (python-comint-output-filter-function)
6389 (python-eldoc--get-doc-at-point, python-end-of-defun-function)
6390 (python-fill-comment, python-fill-decorator, python-fill-paren)
6391 (python-fill-string, python-imenu-make-element-tree)
6392 (python-imenu-make-tree, python-imenu-tree-assoc)
6393 (python-indent-context, python-indent-dedent-line)
6394 (python-indent-line-function)
6395 (python-indent-post-self-insert-function)
6396 (python-indent-toggle-levels)
6397 (python-info-assignment-continuation-line-p)
6398 (python-info-beginning-of-backlash)
6399 (python-info-block-continuation-line-p)
6400 (python-info-closing-block-message)
6401 (python-info-line-ends-backslash-p)
6402 (python-info-looking-at-beginning-of-defun)
6403 (python-info-ppss-context, python-info-ppss-context-type)
6404 (python-nav-list-defun-positions, python-nav-read-defun)
6405 (python-nav-sentence-end, python-nav-sentence-start)
6406 (python-pdbtrack-comint-output-filter-function)
6407 (python-pdbtrack-set-tracked-buffer)
6408 (python-shell-calculate-exec-path)
6409 (python-shell-calculate-process-environment)
6410 (python-shell-completion--do-completion-at-point)
6411 (python-shell-completion--get-completions)
6412 (python-shell-completion-complete-at-point)
6413 (python-shell-completion-complete-or-indent)
6414 (python-shell-get-or-create-process)
6415 (python-shell-get-process-name)
6416 (python-shell-internal-get-or-create-process)
6417 (python-shell-internal-get-process-name)
6418 (python-shell-internal-send-string, python-shell-make-comint)
6419 (python-shell-parse-command, python-shell-send-setup-code)
6420 (python-skeleton-add-menu-items)
6421 (python-util-clone-local-variables, python-util-position)
6422 (run-python-internal, python-indentation-levels)
6423 (python-nav-beginning-of-defun)
6424 (python-completion-complete-at-point): New functions.
6425 (run-python): Change arguments. New API requirements.
6426
6427 2012-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
6428
6429 * emacs-lisp/cl-lib.el (cl--defsubst-expand): Autoload inliner
6430 (bug#11649).
6431
6432 * emacs-lisp/macroexp.el (macroexp--compiler-macro): New function.
6433 (macroexp--expand-all): Use it.
6434
6435 * emacs-lisp/cl-macs.el (cl--transform-function-property): Remove.
6436 (cl-define-setf-expander, cl-deftype, cl-define-compiler-macro):
6437 Use `cl-function' instead.
6438
6439 2012-06-14 Juanma Barranquero <lekktu@gmail.com>
6440
6441 * makefile.w32-in (COMPILE_FIRST): Remove subr.el.
6442 Suggested by Stefan Monnier while discussing bug#11657.
6443
6444 2012-06-14 Sam Steingold <sds@gnu.org>
6445
6446 * files.el (abort-if-file-too-large): Use `file-size-human-readable'.
6447
6448 2012-06-14 Andreas Schwab <schwab@linux-m68k.org>
6449
6450 * play/doctor.el (doctor-doc): Remove parameter and use
6451 doctor-sent instead of sent.
6452 (doctor-read-print): Use doctor-sent instead of sent. (Bug#11708)
6453
6454 2012-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
6455
6456 * files.el: Require cl-lib.
6457 (file-name-non-special): Replace case -> cl-case.
6458
6459 * emacs-lisp/cl-macs.el (cl-defstruct): Don't add print-func.
6460
6461 * emacs-lisp/edebug.el (edebug-read-function): Remove old incorrect
6462 mapping from #' to function*.
6463
6464 2012-06-13 Chong Yidong <cyd@gnu.org>
6465
6466 * mouse.el (mouse-drag-track): Do not set the mark if the user
6467 releases the mouse without selecting anything (Bug#11588).
6468
6469 2012-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
6470
6471 * textmodes/tex-mode.el (latex-indent): Recognize tex-verbatim at EOB
6472 as well (bug#11646).
6473
6474 * loadup.el: Count byte-code functions as well.
6475
6476 * emacs-lisp/byte-opt.el (featurep): Move compiler-macro...
6477 * emacs-lisp/bytecomp.el (featurep): ...here (bug#11692).
6478
6479 * emacs-lisp/autoload.el (make-autoload): Accept nil doc-string-elt
6480 (bug#11649). Add cl-defun and cl-defmacro.
6481
6482 2012-06-13 Drew Adams <drew.adams@oracle.com>
6483
6484 * help-mode.el (help-bookmark-make-record, help-bookmark-jump):
6485 Fix last change.
6486
6487 2012-06-13 Michael Albinus <michael.albinus@gmx.de>
6488
6489 * net/dbus.el (dbus-call-method): Use timeout for `read-event'.
6490 Otherwise, it blocks in batch mode.
6491
6492 2012-06-13 Juanma Barranquero <lekktu@gmail.com>
6493
6494 * help-mode.el (bookmark-make-record-default): Declare.
6495
6496 2012-06-13 Chong Yidong <cyd@gnu.org>
6497
6498 * emacs-lisp/package.el (list-packages): Compute a list of
6499 packages that are newly-available since the last list-packages
6500 invocation.
6501 (package-menu--new-package-list): New var.
6502 (package-menu--generate, package-menu--print-info)
6503 (package-menu--status-predicate, package-menu-mark-install):
6504 Handle new status label "new".
6505
6506 2012-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
6507
6508 * emacs-lisp/cl-macs.el (cl-remf): Fix error in recent
6509 conversion to backquotes.
6510
6511 2012-06-12 Chong Yidong <cyd@gnu.org>
6512
6513 * emacs-lisp/edebug.el (edebug-inhibit-emacs-lisp-mode-bindings):
6514 Rename from gud-inhibit-global-bindings.
6515
6516 * emacs-lisp/eieio.el (eieio-pre-method-execution-hooks): Doc fix.
6517
6518 * nxml/nxml-glyph.el (nxml-glyph-set-functions): Rename abnormal
6519 hook from nxml-glyph-set-hook.
6520
6521 * progmodes/cwarn.el (cwarn-mode): Remove redundant variable
6522 declaration.
6523
6524 * progmodes/pascal.el (pascal-toggle-completions): Doc fix.
6525
6526 * textmodes/bibtex.el (bibtex-string-file-path, bibtex-file-path):
6527 Convert to defcustom.
6528
6529 2012-06-12 Drew Adams <drew.adams@oracle.com>
6530
6531 * help-mode.el (help-bookmark-make-record, help-bookmark-jump):
6532 New functions.
6533 (help-mode): Use them.
6534
6535 2012-06-11 Glenn Morris <rgm@gnu.org>
6536
6537 * progmodes/fortran.el (fortran-font-lock-keywords-3):
6538 Use preprocessor face for directives.
6539 (fortran-directive-re): Doc fix.
6540
6541 2012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
6542
6543 * emacs-lisp/cl-macs.el (cl-parse-loop-clause): Fix error in recent
6544 conversion to backquotes (bug#11652).
6545
6546 Fix compiler-expansion of CL's cXXr functions (bug#11673).
6547 * emacs-lisp/cl-lib.el (cl--defalias): New function.
6548 (cl-values, cl-values-list, cl-copy-seq, cl-svref, cl-first)
6549 (cl-second, cl-rest, cl-endp, cl-third, cl-fourth): Use it.
6550 (cl-plusp, cl-minusp, cl-fifth, cl-sixth, cl-seventh, cl-eighth)
6551 (cl-ninth, cl-tenth): Mark them as inlinable.
6552 (cl-caaar, cl-caadr, cl-cadar, cl-caddr, cl-cdaar, cl-cdadr)
6553 (cl-cddar, cl-cdddr, cl-caaaar, cl-caaadr, cl-caadar, cl-caaddr)
6554 (cl-cadaar, cl-cadadr, cl-caddar, cl-cadddr, cl-cdaaar, cl-cdaadr)
6555 (cl-cdadar, cl-cdaddr, cl-cddaar, cl-cddadr, cl-cdddar, cl-cddddr):
6556 Add a compiler-macro declaration to use cl--compiler-macro-cXXr.
6557 (cl-list*, cl-adjoin): Don't put an autoload manually.
6558 * emacs-lisp/cl-macs.el (cl--compiler-macro-adjoin)
6559 (cl--compiler-macro-list*): Add autoload cookie.
6560 (cl--compiler-macro-cXXr): New function.
6561
6562 * help-fns.el (help-fns--compiler-macro): New function extracted from
6563 describe-function-1; follow aliases and use `compiler-macro' property.
6564 (describe-function-1): Use it.
6565
6566 2012-06-11 Chong Yidong <cyd@gnu.org>
6567
6568 * startup.el (fancy-splash-head): Use splash.svg even if librsvg
6569 is uninstalled, if imagemagick is installed.
6570
6571 2012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
6572
6573 * emacs-lisp/cl-lib.el: Use lexical-binding.
6574 (cl-map-extents, cl-maclisp-member): Remove.
6575 (cl--set-elt, cl--set-nthcdr, cl--set-buffer-substring)
6576 (cl--set-substring, cl--block-wrapper, cl--block-throw)
6577 (cl--compiling-file, cl--mapcar-many, cl--do-subst): Use "cl--" prefix.
6578 * emacs-lisp/cl-extra.el: Use lexical-binding.
6579 (cl--mapcar-many, cl--map-keymap-recursively, cl--map-intervals)
6580 (cl--map-overlays, cl--set-frame-visible-p, cl--progv-save)
6581 (cl--progv-before, cl--progv-after, cl--finite-do, cl--set-getf)
6582 (cl--do-remf, cl--do-prettyprint): Use "cl--" prefix.
6583 * emacs-lisp/cl-seq.el: Use lexical-binding.
6584 (cl--parsing-keywords, cl--check-key, cl--check-test-nokey)
6585 (cl--check-test, cl--check-match): Use "cl--" prefix and backquotes.
6586 (cl--alist, cl--sublis-rec, cl--nsublis-rec, cl--tree-equal-rec):
6587 * emacs-lisp/cl-macs.el (cl--lambda-list-keywords): Use "cl--" prefix.
6588 * edmacro.el (edmacro-mismatch): Simplify to remove dependence on
6589 CL's internals.
6590
6591 2012-06-11 Michael Albinus <michael.albinus@gmx.de>
6592
6593 Sync with Tramp 2.2.6-pre.
6594
6595 * net/tramp-cache.el (tramp-dump-connection-properties): Let-bind
6596 `print-length' and `print-level' to nil, in order to avoid
6597 truncation. Reported by Christopher Schmidt
6598 <christopher@ristopher.com>.
6599
6600 * net/tramp-cmds.el (tramp-cleanup-connection): Delete also process.
6601
6602 * net/tramp-compat.el (tramp-compat-condition-case-unless-debug):
6603 New defmacro.
6604 (tramp-compat-copy-directory): Add optional argument
6605 COPY-CONTENTS. It is not handled yet.
6606
6607 * net/tramp-ftp.el (tramp-disable-ange-ftp): Fix docstring.
6608 (tramp-ftp-file-name-p): Simplify.
6609
6610 * net/tramp-gvfs.el (tramp-gvfs-handle-expand-file-name):
6611 * net/tramp-gw.el (tramp-gw-open-connection): Add hop to
6612 connection vector.
6613
6614 * net/tramp-sh.el (tramp-copy-size-limit): Fix docstring.
6615 (tramp-methods): Do not use `tramp-password-end-of-line'.
6616 (tramp-completion-function-alist-putty): Handle UNIX case.
6617 (tramp-remote-path): Add "/opt/bin", "/opt/sbin" and "/opt/local/bin".
6618 (tramp-do-file-attributes-with-stat)
6619 (tramp-do-directory-files-and-attributes-with-stat) Return uid and
6620 gid as real numbers. They could run out of integer range on cygwin.
6621 (tramp-do-copy-or-rename-file-out-of-band): Better trace format.
6622 (tramp-sh-handle-expand-file-name): Handle hops.
6623 (tramp-open-connection-setup-interactive-shell):
6624 Use `tramp-cleanup'. Move check for busyboxes ...
6625 (tramp-find-shell): ... here. Simplify implementation.
6626 Set "remote-shell" property also for alternative shells.
6627 (tramp-remote-coding-commands): Check "test -c /dev/stdout".
6628 If failing, a regular file would be written otherwise.
6629 Reported by Dmitry Kurochkin <dmitry.kurochkin@gmail.com>.
6630 (tramp-find-inline-encoding): Cache the coding commands in the
6631 process cache. Apply test command on the remote side, if defined.
6632 (tramp-find-inline-compress): Cache the compress commands in the
6633 process cache.
6634 (tramp-compute-multi-hops): Save `tramp-default-proxies-alist'
6635 when requested. Handle hops.
6636 (tramp-current-connection): New defvar.
6637 (tramp-maybe-open-connection): Use `tramp-cleanup'.
6638 Throw `suppress', if there was a failed connection shortly before.
6639 Handle user interrupt. (Bug#10187)
6640 (tramp-get-inline-compress, tramp-get-inline-coding):
6641 Read connection properties from the process cache.
6642
6643 * net/tramp-smb.el (tramp-smb-server-version)
6644 (tramp-smb-wrong-passwd-regexp, tramp-smb-actions-with-tar):
6645 New defconsts.
6646 (tramp-smb-prompt): Extend for powershell prompt.
6647 (tramp-smb-file-name-handler-alist): Add handlers for
6648 `process-file', `shell-command' and `start-file-process'.
6649 (tramp-smb-winexe-program, tramp-smb-winexe-shell-command)
6650 (tramp-smb-winexe-shell-command-switch): New defcustoms.
6651 (tramp-smb-file-name-p): Simplify.
6652 (tramp-smb-action-with-tar, tramp-smb-handle-process-file)
6653 (tramp-smb-kill-winexe-function, tramp-smb-call-winexe)
6654 (tramp-smb-shell-quote-argument): New defuns.
6655 (tramp-smb-handle-copy-directory): Add COPY-CONTENTS argument.
6656 Implement using "tar". By this, time-stamps are preserved.
6657 (tramp-smb-handle-copy-file): Handle also the case of directories.
6658 (tramp-smb-do-file-attributes-with-stat)
6659 (tramp-smb-get-file-entries, tramp-smb-get-cifs-capabilities):
6660 Use `tramp-get-connection-buffer').
6661 (tramp-smb-handle-rename-file): Use "rename", when source and
6662 target are on the same share.
6663 (tramp-smb-maybe-open-connection): Handle wrong passwords.
6664 Use `tramp-smb-server-version'.
6665 (tramp-smb-wait-for-output): Remove prompt.
6666
6667 * net/tramp.el (top): Require 'cl.
6668 (tramp-methods, tramp-rsh-end-of-line):
6669 Remove `tramp-password-end-of-line' from docstring.
6670 (tramp-save-ad-hoc-proxies): New defcustom.
6671 (tramp-completion-function-alist): Adapt docstring.
6672 (tramp-default-password-end-of-line): Remove defcustom.
6673 (tramp-shell-prompt-pattern): Allow "[]" style prompts. (Bug#11065)
6674 (tramp-user-regexp, tramp-file-name-regexp-unified)
6675 (tramp-file-name-regexp-url): Extend regexp by hop separator.
6676 (tramp-postfix-hop-format, tramp-postfix-hop-regexp)
6677 (tramp-remote-file-name-spec-regexp): New defconst.
6678 (tramp-file-name-structure): Extend structure for hops.
6679 (tramp-get-method-parameter): Move up.
6680 (tramp-file-name-p, tramp-dissect-file-name)
6681 (with-parsed-tramp-file-name): Handle hops.
6682 (tramp-file-name-hop): New defun.
6683 (tramp-make-tramp-file-name): New optional arg HOP.
6684 (tramp-message-show-progress-reporter-message): New defvar.
6685 (tramp-with-progress-reporter): Use it. We cannot use
6686 `tramp-message-show-message' here, because this suppresses also
6687 error buffers.
6688 (tramp-error-with-buffer): Suppress buffer view, if
6689 `tramp-message-show-message' is nil.
6690 Use `tramp-get-connection-buffer'.
6691 (tramp-cleanup): New defun.
6692 (tramp-rfn-eshadow-update-overlay): Let-bind `non-essential' to `t'.
6693 (tramp-file-name-handler): If `debug-on-error' is set, propagate
6694 an error unchanged.
6695 (tramp-completion-handle-file-name-all-completions): Handle hops.
6696 Fix an error when called from ido.
6697 (tramp-completion-dissect-file-name): Use better local variable
6698 name. Add hop to the vector.
6699 (tramp-handle-insert-file-contents): Use progress-reporter for the
6700 whole scenario.
6701 (tramp-action-password): Let-bind `enable-recursive-minibuffers'
6702 to `t'.
6703 (tramp-check-for-regexp): Simplify search.
6704 (tramp-enter-password): Remove it. Move implementation ...
6705 (tramp-action-password): ... here.
6706 (tramp-mode-string-to-int, tramp-local-host-p)
6707 (tramp-make-tramp-temp-file, tramp-read-passwd)
6708 (tramp-clear-passwd, tramp-time-less-p, tramp-time-diff):
6709 Set tramp-autoload cookie.
6710
6711 * net/trampver.el: Update release number.
6712
6713 2012-06-11 Thierry Volpiatto <thierry.volpiatto@gmail.com>
6714 Michael Albinus <michael.albinus@gmx.de>
6715
6716 * net/tramp.el (tramp-set-completion-function): Fix docstring.
6717 (tramp-parse-group, tramp-parse-file)
6718 (tramp-parse-shostkeys-sknownhosts): New defuns.
6719 (tramp-parse-rhosts, tramp-parse-rhosts-group, tramp-parse-shosts)
6720 (tramp-parse-shosts-group, tramp-parse-sconfig)
6721 (tramp-parse-sconfig-group, tramp-parse-shostkeys)
6722 (tramp-parse-sknownhosts, tramp-parse-hosts)
6723 (tramp-parse-hosts-group, tramp-parse-passwd, tramp-parse-netrc):
6724 Use them.
6725 (tramp-parse-passwd-group, tramp-parse-netrc-group)
6726 (tramp-parse-putty-group): Don't narrow.
6727 (tramp-parse-putty): Make a loop.
6728 (tramp-file-name-handler): Catch the `suppress' signal.
6729
6730 2012-06-11 Chong Yidong <cyd@gnu.org>
6731
6732 * image.el (imagemagick-register-types): Put the ImageMagick entry
6733 at the end of image-type-file-name-regexps.
6734
6735 2012-06-11 Johan Bockgård <bojohan@gnu.org>
6736
6737 * emacs-lisp/pcase.el (pcase-UPAT, pcase-QPAT): New edebug specs.
6738 (pcase, pcase-let*, pcase-dolist): Use them.
6739
6740 2012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
6741
6742 * emacs-lisp/pcase.el (pcase--let*): New function.
6743 (pcase-let*): Use it. Use pcase--memoize to avoid repeated expansions.
6744 (pcase--expand): Use macroexp-let².
6745
6746 2012-06-10 Stefan Monnier <monnier@iro.umontreal.ca>
6747
6748 * emacs-lisp/timer.el, emacs-lisp/syntax.el, emacs-lisp/smie.el:
6749 * emacs-lisp/ewoc.el, emacs-lisp/cconv.el, emacs-lisp/bytecomp.el:
6750 * emacs-lisp/byte-opt.el, emacs-lisp/autoload.el: Convert to cl-lib.
6751 * emacs-lisp/easymenu.el, emacs-lisp/easy-mmode.el:
6752 * emacs-lisp/derived.el: Use pcase instead of `cl'.
6753 * emacs-lisp/cl-lib.el: Get rid of special cl-macs auto load.
6754
6755 2012-06-10 Glenn Morris <rgm@gnu.org>
6756
6757 * mail/rmail.el (rmail-yank-current-message): Leave point at
6758 correct position. (Bug#11660)
6759
6760 2012-06-10 Chong Yidong <cyd@gnu.org>
6761
6762 * allout-widgets.el: Fix code header.
6763
6764 2012-06-10 Chong Yidong <cyd@gnu.org>
6765
6766 * cus-edit.el (customize-changed-options-previous-release):
6767 Bump to 24.1.
6768
6769 2012-06-09 Andreas Schwab <schwab@linux-m68k.org>
6770
6771 * Makefile.in (BIG_STACK_DEPTH): Enlarge to 2200.
6772
6773 2012-06-09 Chong Yidong <cyd@gnu.org>
6774
6775 * ebuff-menu.el (electric-buffer-list): Preserve header line.
6776
6777 2012-06-09 Martin Rudalics <rudalics@gmx.at>
6778
6779 * window.el (special-display-popup-frame): Don't use
6780 window--display-buffer (Bug#11651).
6781
6782 2012-06-09 Eli Zaretskii <eliz@gnu.org>
6783
6784 Fix parallel builds: make sure loaddefs.el is not being written
6785 while Lisp files are compiled.
6786 (compile): Don't depend on 'mh-autoloads'.
6787 (compile-CMD, compile-SH): Depend on 'autoloads'.
6788 (bootstrap): Don't depend on 'autoloads' and 'mh-autoloads'.
6789
6790 * makefile.w32-in (BIG_STACK_DEPTH): Enlarge to 2200. (Bug#11649)
6791
6792 2012-06-09 Chong Yidong <cyd@gnu.org>
6793
6794 * face-remap.el (face-remap-add-relative, face-remap-set-base)
6795 (buffer-face-set, buffer-face-toggle, buffer-face-mode-invoke):
6796 Doc fixes (Bug#11225).
6797
6798 2012-06-09 Stefan Monnier <monnier@iro.umontreal.ca>
6799
6800 * emacs-lisp/macroexp.el (macroexp--expand-all): Only autoload
6801 a function if there's a clear indication that it has a compiler-macro.
6802 * emacs-lisp/byte-run.el (defun-declarations-alist, defmacro, defun)
6803 (macro-declarations-alist): Add arglist to declaration functions.
6804 (defun-declarations-alist): Add `obsolete' and `compiler-macro'.
6805 * emacs-lisp/cl-seq.el (cl-member, cl-assoc):
6806 * emacs-lisp/cl-lib.el (cl-list*, cl-adjoin):
6807 * emacs-lisp/cl-extra.el (cl-get): Use the new `declare' statement.
6808 Also add autoload to find the compiler macro.
6809 * emacs-lisp/cl-macs.el (eql) [compiler-macro]: Remove.
6810 (cl--compiler-macro-member, cl--compiler-macro-assoc)
6811 (cl--compiler-macro-adjoin, cl--compiler-macro-list*)
6812 (cl--compiler-macro-get): New functions, replacing calls to
6813 cl-define-compiler-macro.
6814 (cl-typep) [compiler-macro]: Use macroexp-let².
6815
6816 2012-06-08 Nick Dokos <nicholas.dokos@hp.com> (tiny change)
6817
6818 * calendar/icalendar.el (icalendar--parse-vtimezone): Import TZID
6819 string properly, fixes Bug#11473.
6820
6821 2012-06-08 Chong Yidong <cyd@gnu.org>
6822
6823 * faces.el (set-face-attribute): Doc fix.
6824 (modify-face): Don't use :bold and :italic.
6825 (error, warning, success): Tweak definitions.
6826
6827 * cus-edit.el (custom-modified, custom-invalid, custom-rogue)
6828 (custom-modified, custom-set, custom-changed, custom-themed)
6829 (custom-saved, custom-button, custom-button-mouse)
6830 (custom-button-pressed, custom-state, custom-comment-tag)
6831 (custom-variable-tag, custom-group-tag-1, custom-group-tag)
6832 (custom-group-subtitle): Use new-style face specs.
6833 (custom-invalid-face, custom-rogue-face, custom-modified-face)
6834 (custom-set-face, custom-changed-face, custom-saved-face)
6835 (custom-button-face, custom-button-pressed-face)
6836 (custom-documentation-face, custom-state-face)
6837 (custom-comment-face, custom-comment-tag-face)
6838 (custom-variable-tag-face, custom-variable-button-face)
6839 (custom-face-tag-face, custom-group-tag-face-1)
6840 (custom-group-tag-face): Remove obsolete face alias.
6841
6842 * epa.el (epa-validity-high, epa-validity-medium)
6843 (epa-validity-low, epa-mark, epa-field-name, epa-string)
6844 (epa-field-name, epa-field-body):
6845 * font-lock.el (font-lock-comment-face, font-lock-string-face)
6846 (font-lock-keyword-face, font-lock-builtin-face)
6847 (font-lock-function-name-face, font-lock-variable-name-face)
6848 (font-lock-type-face, font-lock-constant-face):
6849 * ido.el (ido-first-match, ido-only-match, ido-subdir)
6850 (ido-virtual, ido-indicator, ido-incomplete-regexp):
6851 * speedbar.el (speedbar-button-face, speedbar-file-face)
6852 (speedbar-directory-face, speedbar-tag-face)
6853 (speedbar-selected-face, speedbar-highlight-face)
6854 (speedbar-separator-face):
6855 * whitespace.el (whitespace-newline, whitespace-space)
6856 (whitespace-hspace, whitespace-tab, whitespace-trailing)
6857 (whitespace-line, whitespace-space-before-tab)
6858 (whitespace-space-after-tab, whitespace-indentation)
6859 (whitespace-empty):
6860 * emulation/cua-base.el (cua-global-mark):
6861 * eshell/em-prompt.el (eshell-prompt):
6862 * net/newst-plainview.el (newsticker-new-item-face)
6863 (newsticker-old-item-face, newsticker-immortal-item-face)
6864 (newsticker-obsolete-item-face, newsticker-date-face)
6865 (newsticker-statistics-face, newsticker-default-face):
6866 * net/newst-reader.el (newsticker-feed-face)
6867 (newsticker-extra-face, newsticker-enclosure-face):
6868 * net/newst-treeview.el (newsticker-treeview-face)
6869 (newsticker-treeview-new-face, newsticker-treeview-old-face)
6870 (newsticker-treeview-immortal-face)
6871 (newsticker-treeview-obsolete-face)
6872 (newsticker-treeview-selection-face):
6873 * net/rcirc.el (rcirc-my-nick, rcirc-other-nick)
6874 (rcirc-bright-nick, rcirc-server, rcirc-timestamp)
6875 (rcirc-nick-in-message, rcirc-nick-in-message-full-line)
6876 (rcirc-prompt, rcirc-track-keyword, rcirc-url, rcirc-keyword):
6877 * nxml/nxml-outln.el (nxml-heading, nxml-outline-indicator)
6878 (nxml-outline-active-indicator, nxml-outline-ellipsis):
6879 * play/mpuz.el (mpuz-unsolved, mpuz-solved, mpuz-trivial)
6880 (mpuz-text):
6881 * progmodes/vera-mode.el (vera-font-lock-number)
6882 (vera-font-lock-function, vera-font-lock-interface):
6883 * textmodes/table.el (table-cell): Use new-style face specs, and
6884 don't use the old :bold and :italic attributes.
6885
6886 * progmodes/ebrowse.el (ebrowse-tree-mark, ebrowse-root-class)
6887 (ebrowse-member-attribute, ebrowse-default, ebrowse-file-name)
6888 (ebrowse-member-class, ebrowse-progress): Likewise.
6889 (ebrowse-tree-mark-face, ebrowse-root-class-face)
6890 (ebrowse-file-name-face, ebrowse-default-face)
6891 (ebrowse-member-attribute-face, ebrowse-member-class-face)
6892 (ebrowse-progress-face): Remove obsolete faces.
6893
6894 * progmodes/flymake.el (flymake-errline, flymake-warnline):
6895 Inherit from error and warning faces respectively.
6896
6897 * textmodes/flyspell.el (flyspell-incorrect, flyspell-duplicate):
6898 Likewise.
6899 (flyspell-incorrect-face, flyspell-duplicate-face):
6900 Remove obsolete aliases.
6901
6902 2012-06-08 Michael Albinus <michael.albinus@gmx.de>
6903
6904 * net/tramp-compat.el (tramp-compat-temporary-file-directory):
6905 Avoid infloop.
6906
6907 2012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
6908
6909 * startup.el (argv, argi): Make lexically scoped.
6910 * emacs-lisp/float-sup.el (pi): Use internal-make-var-non-special.
6911 * emacs-lisp/cl-macs.el: Use lexical-binding.
6912 Rename cl-bind-* to cl--bind-*.
6913 * files.el: Don't require `cl' since it doesn't use it.
6914 * emacs-lisp/pcase.el, emacs-lisp/macroexp.el: Add coding cookie.
6915
6916 2012-06-08 Juanma Barranquero <lekktu@gmail.com>
6917
6918 * textmodes/texinfmt.el: Fix bug#11640 (reverts part of 2008-07-31T05:33:56Z!dann@ics.uci.edu).
6919 (texinfo-format-printindex): Use `texinfo-sort-region' in all platforms,
6920 instead of calling external sort utility.
6921 (texinfo-sort-region, texinfo-sort-startkeyfun): Restore functions.
6922
6923 2012-06-08 Eli Zaretskii <eliz@gnu.org>
6924
6925 * descr-text.el (describe-char): Mention how to insert the
6926 character, if the current input method doesn't support it.
6927 See the discussion in this thread for the details:
6928 http://lists.gnu.org/archive/html/emacs-devel/2012-05/msg00533.html.
6929
6930 2012-06-08 Sam Steingold <sds@gnu.org>
6931
6932 * bindings.el (global-map): Bind XF86Forward to next-buffer and
6933 XF86Back to previous-buffer.
6934 (minibuffer-local-map): Bind them to next-history-element and
6935 previous-history-element respectively.
6936 * help-mode.el (help-mode-map): Bind them to help-go-forward and
6937 help-go-back respectively.
6938 * info.el (Info-mode-map): Bind them to Info-history-forward and
6939 Info-history-back respectively.
6940 These are the keys next to Up on the ThinkPad keyboard.
6941
6942 2012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
6943
6944 Get rid of cl-lexical-let, keeping only lexical-let for compatibility.
6945 * emacs-lisp/cl-macs.el: Provide itself.
6946 (cl--labels-convert-cache): New var.
6947 (cl--labels-convert): New function.
6948 (cl-flet, cl-labels): New implementation with new semantics, relying on
6949 lexical-binding.
6950 * emacs-lisp/cl.el: Mark compatibility aliases as obsolete.
6951 (cl-closure-vars, cl--function-convert-cache)
6952 (cl--function-convert): Move from cl-macs.el.
6953 (lexical-let, lexical-let*, flet, labels): Move from cl-macs.el and
6954 rename by removing the "cl-" prefix.
6955 * emacs-lisp/macroexp.el (macroexp-unprogn): New function.
6956
6957 2012-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
6958
6959 * emacs-lisp/cl.el (cl-macroexpand, cl-macro-environment)
6960 (cl-macroexpand-all, cl-not-hash-table, cl-builtin-gethash)
6961 (cl-builtin-remhash, cl-builtin-clrhash, cl-builtin-maphash)
6962 (cl-map-keymap, cl-copy-tree, cl-gethash, cl-puthash, cl-remhash)
6963 (cl-clrhash, cl-maphash, cl-make-hash-table, cl-hash-table-p)
6964 (cl-hash-table-count): Add old compatibility aliases.
6965
6966 * emacs-lisp/cl-macs.el (cl-macro-environment): Remove var.
6967 Use macroexpand-all-environment instead.
6968 (cl--old-macroexpand): New var.
6969 (cl--sm-macroexpand): New function.
6970 (cl-symbol-macrolet): Use it during macro expansion.
6971 (cl--function-convert-cache): New var.
6972 (cl--function-convert): New function, extracted from
6973 cl-macroexpand-all.
6974 (cl-lexical-let): Use it.
6975
6976 * emacs-lisp/cl-lib.el (cl-macro-environment): Remove decl.
6977 (cl-macroexpand): Move to cl-macs.el and rename to cl--sm-macroexpand.
6978 (cl-member): Remove old alias.
6979
6980 * emacs-lisp/cl-extra.el (cl-map-keymap, cl-copy-tree)
6981 (cl-not-hash-table, cl-builtin-gethash, cl-builtin-remhash)
6982 (cl-builtin-clrhash, cl-builtin-maphash, cl-gethash, cl-puthash)
6983 (cl-remhash, cl-clrhash, cl-maphash, cl-make-hash-table)
6984 (cl-hash-table-p, cl-hash-table-count): Move to cl.el.
6985 (cl-macroexpand-cmacs): Remove var.
6986 (cl-macroexpand-all, cl-macroexpand-body): Remove funs.
6987 Use macroexpand-all instead.
6988
6989 2012-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
6990
6991 * emacs-lisp/macroexp.el (macroexp-progn, macroexp-let*, macroexp-if)
6992 (macroexp-let², macroexp--const-symbol-p, macroexp-const-p)
6993 (macroexp-copyable-p): New functions and macros.
6994 * emacs-lisp/edebug.el (edebug-unwrap):
6995 * emacs-lisp/disass.el (disassemble-internal): Use macroexp-progn.
6996 * emacs-lisp/pcase.el: Use macroexp-let*, macroexp-if, ...
6997 (pcase--let*): Remove.
6998 * emacs-lisp/bytecomp.el (byte-compile-const-symbol-p)
6999 (byte-compile-constp): Remove. Use macroexp--const-symbol-p and
7000 macroexp-const-p instead.
7001 * emacs-lisp/byte-opt.el: Use macroexp-const-p and macroexp-progn.
7002
7003 * emacs-lisp/cl-macs.el: Clean up the name space by using "cl--"
7004 instead of "cl-" for internal definitions. Use macroexp-const-p.
7005 (cl-old-bc-file-form): Remove var.
7006 (cl-const-exprs-p): Remove fun.
7007 (cl-labels, cl-macrolet): Use backquote.
7008 (cl-lexical-let): Use cl-symbol-macrolet. Don't use cl-defun-expander.
7009 (cl-defun-expander, cl-byte-compile-compiler-macro): Remove fun.
7010 (cl-define-setf-expander): Rename from cl-define-setf-method.
7011 * emacs-lisp/cl.el: Adjust alias for define-setf-method.
7012
7013 * international/mule-cmds.el: Don't require CL.
7014 (view-hello-file): Don't use `letf'.
7015
7016 2012-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
7017
7018 * tmm.el (tmm-prompt): Use string-prefix-p.
7019 (tmm-completion-delete-prompt): Don't affect current-buffer outside.
7020 (tmm-add-prompt): Use minibuffer-completion-help.
7021 (tmm-delete-map): Remove.
7022
7023 * subr.el (kbd): Make it its own function.
7024
7025 2012-06-07 Stefan Merten <smerten@oekonux.de>
7026
7027 * textmodes/rst.el: Use `eval-when-compile' for requiring `cl.el'.
7028 Silence compiler warnings. Fix versions.
7029 (rst-position-if, rst-position, rst-some, rst-signum): New functions.
7030 (rst-shift-region, rst-adornment-level, rst-compute-tabs)
7031 (rst-indent-line, rst-shift-region, rst-forward-line): Use them.
7032 (rst-package-emacs-version-alist): Correct Emacs version to
7033 represent major merge with upstream.
7034 (rst-transition, rst-adornment, rst-compile-toolsets): Fix versions.
7035
7036 2012-06-06 Glenn Morris <rgm@gnu.org>
7037
7038 * mail/emacsbug.el (report-emacs-bug): Add relevant EMACS env-vars.
7039 Only print environment variables if set.
7040
7041 2012-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
7042
7043 * emacs-lisp/macroexp.el: Don't require CL since we don't use it.
7044 (macroexp--cons): Rename from maybe-cons.
7045 (macroexp--accumulate): Rename from macroexp-accumulate.
7046 (macroexp--all-forms): Rename from macroexpand-all-forms.
7047 (macroexp--all-clauses): Rename from macroexpand-all-clauses.
7048 (macroexp--expand-all): Rename from macroexpand-all-1.
7049
7050 2012-06-06 Sam Steingold <sds@gnu.org>
7051
7052 * calendar/calendar.el (calendar-in-read-only-buffer):
7053 Call `special-mode' to enable the standard read-only keybindings.
7054
7055 2012-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
7056
7057 * emacs-lisp/macroexp.el (macroexpand-all-1): Don't spam the output
7058 with "loading" messages (bug#11635).
7059
7060 2012-06-06 Michael Albinus <michael.albinus@gmx.de>
7061
7062 * files.el (enable-remote-dir-locals): New option.
7063 (hack-dir-local-variables): Use it. (Bug#1933, Bug#6731)
7064
7065 * net/tramp-compat.el (tramp-compat-temporary-file-directory):
7066 Ensure, that the temp directory is local.
7067
7068 * net/tramp-sh.el (tramp-sh-handle-write-region): Let-bind
7069 `temporary-file-directory'.
7070
7071 * progmodes/python.el (python-send-region): Ensure, that the
7072 temporary file is created also in the remote case.
7073
7074 2012-06-06 Glenn Morris <rgm@gnu.org>
7075
7076 * vc/vc-rcs.el (vc-rcs-rcs2log-program): New.
7077 (vc-rcs-update-changelog): Use it.
7078
7079 * emacs-lisp/authors.el (authors-fixed-entries): Remove vcdiff.
7080
7081 * vc/vc-sccs.el (vc-sccs-write-revision): New function.
7082 (vc-sccs-workfile-unchanged-p): Use vc-sccs-write-revision.
7083 (vc-sccs-diff): Replace use of the external vcdiff script.
7084
7085 2012-06-05 Glenn Morris <rgm@gnu.org>
7086
7087 * ledit.el: Move to obsolete/.
7088
7089 2012-06-05 Sam Steingold <sds@gnu.org>
7090
7091 * calendar/calendar.el (calendar-exit): Reinstate the 2012-03-28
7092 patch (Bug#11140).
7093
7094 2012-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
7095
7096 * emacs-lisp/cust-print.el: Move to obsolete.
7097
7098 * emacs-lisp/macroexp.el (macroexpand-all-1): Tolerate errors during
7099 compiler-macro expansion.
7100
7101 Add native compiler-macro support.
7102 * emacs-lisp/macroexp.el (macroexpand-all-1):
7103 Support compiler-macros directly. Properly follow aliases and apply
7104 the compiler macros more thoroughly.
7105 * emacs-lisp/cl.el: Don't copy compiler-macro properties any more since
7106 macroexpand now properly follows aliases.
7107 * emacs-lisp/cl-macs.el (toplevel, cl-define-compiler-macro)
7108 (cl-compiler-macroexpand): Use new prop.
7109 * emacs-lisp/byte-opt.el (featurep): Optimize earlier.
7110
7111 * emacs-lisp/cl-lib.el (custom-print-functions): Add alias.
7112
7113 2012-06-05 Martin Rudalics <rudalics@gmx.at>
7114
7115 * window.el (get-lru-window, get-mru-window, get-largest-window):
7116 New argument NOT-SELECTED to avoid picking the selected window.
7117 (window--display-buffer-1, window--display-buffer-2): Replace by
7118 new function window--display-buffer
7119 (display-buffer-same-window, display-buffer-reuse-window)
7120 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
7121 Use window--display-buffer.
7122 (display-buffer-use-some-window): Remove temporary dedication
7123 hack by calling get-lru-window and get-largest-window with
7124 NOT-SELECTED argument non-nil. Call window--display-buffer.
7125
7126 2012-06-05 Glenn Morris <rgm@gnu.org>
7127
7128 * vc/vc-sccs.el (vc-sccs-workfile-unchanged-p):
7129 Replace external vcdiff script.
7130
7131 2012-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
7132
7133 * emacs-lisp/cl-lib.el (cl-values, cl-values-list): Fix up last change.
7134
7135 2012-06-04 Chong Yidong <cyd@gnu.org>
7136
7137 * image.el (imagemagick-types-inhibit): Revert last change.
7138 Add INFO and M.
7139 (imagemagick-enabled-types): Remove CIN and EPS*.
7140
7141 2012-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
7142
7143 * emacs-lisp/cl-lib.el: Rename from cl.el.
7144 * emacs-lisp/cl.el: New compatibility file.
7145 * emacs-lisp/cl-lib.el, emacs-lisp/cl-seq.el, emacs-lisp/cl-macs.el:
7146 * emacs-lisp/cl-extra.el: Rename all top-level functions and variables
7147 to obey the "cl-" prefix.
7148 * emacs-lisp/macroexp.el (macroexpand-all-1): Adjust to new name.
7149
7150 2012-06-03 Glenn Morris <rgm@gnu.org>
7151
7152 * emacs-lisp/authors.el (authors-aliases): Addition.
7153
7154 * cus-start.el (tool-bar-style, tool-bar-max-label-size):
7155 Fix :version.
7156
7157 2012-06-03 Stefan Merten <smerten@oekonux.de>
7158
7159 * textmodes/rst.el: Add comments.
7160 (rst-transition, rst-adornment): New faces.
7161 (rst-adornment-faces-alist): Make default safe to reevaluate.
7162 Fixes
7163 http://sourceforge.net/tracker/?func=detail&atid=422030&aid=3479603&group_id=38414.
7164 Improve customization tags.
7165 (rst-define-level-faces): Clarify meaning.
7166
7167 2012-06-03 Chong Yidong <cyd@gnu.org>
7168
7169 * progmodes/compile.el (compilation-mode-line-fail)
7170 (compilation-mode-line-run, compilation-mode-line-exit):
7171 New faces.
7172 (compilation-start, compilation-handle-exit): Use them (Bug#11032).
7173
7174 2012-06-03 Jack Duthen <duthen.mac.01@gmail.com> (tiny change)
7175
7176 * progmodes/which-func.el (which-func-update-ediff-windows):
7177 New function. Use it in ediff-select-hook (Bug#11478).
7178
7179 2012-06-03 Chong Yidong <cyd@gnu.org>
7180
7181 * bindings.el: Remove explicit help text from format-mode-line.
7182 It is now supplied by mode-line-default-help-echo.
7183 (mode-line-front-space, mode-line-end-spaces)
7184 (mode-line-misc-info): New variables.
7185 (mode-line-modes, mode-line-position): Move the default value to
7186 the variable definition.
7187 (mode-line-default-help-echo): New defcustom.
7188 (mode-line-mule-info-help-echo, mode-line-read-only-help-echo)
7189 (mode-line-modified-help-echo): New functions.
7190 (mode-line-mule-info, mode-line-modified): Use them.
7191 (mode-line-eol-desc, propertized-buffer-identification):
7192 Consistency fixes for help text.
7193 (mode-line-coding-system-map): Allow using mouse-3 to invoke
7194 set-buffer-file-coding-system (Bug#289).
7195 (mode-line-mule-info-help-echo): Update help text.
7196
7197 2012-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
7198
7199 * simple.el (execute-extended-command): Set real-this-command
7200 (bug#11506).
7201
7202 2012-06-02 Chong Yidong <cyd@gnu.org>
7203
7204 Remove incorrect uses of "modeline" in comments, docstrings, and
7205 function/variable names (Bug#10329).
7206
7207 * cus-edit.el (mode-line):
7208 * dframe.el (dframe-mouse-hscroll):
7209 * emacs-lisp/re-builder.el:
7210 * emacs-lisp/easy-mmode.el (define-minor-mode):
7211 * frame.el (set-frame-name):
7212 * help.el (lookup-minor-mode-from-indicator):
7213 * net/rcirc.el (rcirc-activity-string, rcirc-short-buffer-name):
7214 * progmodes/cc-cmds.el (c-toggle-auto-newline)
7215 (c-toggle-hungry-state):
7216 * progmodes/antlr-mode.el (antlr-language-alist):
7217 * progmodes/idlw-shell.el (idlwave-shell-electric-stop-line-face):
7218 * progmodes/vhdl-mode.el (vhdl-mode):
7219 * progmodes/which-func.el (which-func, which-func-cleanup-function):
7220 * term/ns-win.el (ns-face-at-pos):
7221 * term/sup-mouse.el (sup-mouse-report):
7222 * textmodes/flyspell.el (flyspell-mode-line-string):
7223 * textmodes/ispell.el (ispell-highlight-face):
7224 * textmodes/reftex-global.el:
7225 * vc/vc-arch.el (vc-arch-mode-line-string):
7226 * vc/vc-cvs.el (vc-cvs-mode-line-string):
7227 * vc/vc-git.el (vc-git-mode-line-string):
7228 * vc/vc-hooks.el (vc-display-status)
7229 (vc-default-mode-line-string):
7230 * vc/vc-mtn.el (vc-mtn-mode-line-string): Doc fixes.
7231
7232 * ansi-color.el (ansi-color-faces-vector): Change default faces.
7233
7234 * dired.el (dired-sort-set-mode-line): Rename from
7235 dired-sort-set-modeline. All callers changed.
7236
7237 * eshell/esh-mode.el (eshell-status-in-mode-line): Rename from
7238 eshell-status-in-modeline.
7239
7240 * foldout.el (foldout-mode-line-string): Rename from
7241 foldout-modeline-string. All callers changed.
7242 (foldout-update-mode-line): Rename from foldout-update-modeline.
7243
7244 * subr.el (redraw-modeline): Make into obsolete alias.
7245
7246 * calendar/timeclock.el (timeclock-mode-line-display): Rename from
7247 timeclock-modeline-display. Make old name an alias.
7248 (timeclock-update-mode-line): Likewise. All callers changed.
7249 (timeclock-mode-line-display): No need to check before using
7250 add-hook.
7251 (timeclock-relative, timeclock-day-over-hook)
7252 (timeclock-use-elapsed, timeclock-mode-string)
7253 (timeclock-mode-line-display): Doc fix, "modeline" -> "mode line".
7254
7255 * emulation/crisp.el (crisp-mode-mode-line-string): Rename from
7256 crisp-mode-modeline-string.
7257
7258 * play/solitaire.el (solitaire-build-mode-line): Rename from
7259 solitaire-build-modeline. All callers changed.
7260
7261 * play/zone.el (zone-hiding-mode-line): Rename from
7262 zone-hiding-modeline. All callers changed.
7263 (zone): Remove unusued `modeline-hidden-level' property.
7264
7265 * progmodes/xscheme.el (xscheme-mode-line-initialize): Rename from
7266 xscheme-modeline-initialize. All callers changed.
7267
7268 * strokes.el (strokes-lighter): Rename from
7269 strokes-modeline-string.
7270
7271 * textmodes/sgml-mode.el (html-face-tag-alist)
7272 (html-tag-face-alist): Use mode-line face instead of obsolete
7273 alias modeline.
7274
7275 2012-06-02 Stefan Merten <smerten@oekonux.de>
7276
7277 * textmodes/rst.el: Always require `cl'.
7278 (rst-mode-map): Fix meaning of C-M-a / C-M-e.
7279
7280 2012-06-02 Chong Yidong <cyd@gnu.org>
7281
7282 * image.el (imagemagick-enabled-types): Rename from
7283 imagemagick-types-enable. Add many more types.
7284 (imagemagick-types-inhibit): Change default to nil.
7285 (imagemagick-filter-types): Caller changed.
7286
7287 2012-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
7288
7289 * emacs-lisp/cl-macs.el: Use backquotes.
7290 (cl-transform-function-property): Use eval-and-compile rather than
7291 abusing `require'.
7292 (defstruct): Use declare-function instead of with-no-warnings.
7293
7294 * emacs-lisp/bytecomp.el: Fix last change (bug#11594).
7295 (byte-compile-output-docform): Re-add the print-circle bindings.
7296 (byte-compile-fix-header): Use #$ just because it's shorter.
7297 (byte-compile-output-file-form): Remove defun/defmacro.
7298
7299 2012-06-01 Martin Rudalics <rudalics@gmx.at>
7300
7301 * simple.el (choose-completion): Remove now obsolete binding for
7302 owindow.
7303
7304 2012-06-01 Michael Albinus <michael.albinus@gmx.de>
7305
7306 * net/tramp.el (tramp-check-for-regexp): Search from buffer end,
7307 in order to avoid "Stack overflow in regexp matcher".
7308
7309 2012-05-31 Glenn Morris <rgm@gnu.org>
7310
7311 * image.el: For clarity, call imagemagick-register-types at
7312 top-level, rather than relying on a custom :initialize.
7313 (imagemagick-types-enable): New option. (Bug#11557)
7314 (imagemagick-filter-types): New function. (Bug#7406)
7315 (imagemagick-register-types): Use imagemagick-filter-types.
7316 If disabling support, remove elements altogether rather
7317 than using an impossible regexp.
7318 (imagemagick-types-inhibit): Give it the default init function.
7319
7320 2012-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
7321
7322 * emacs-lisp/bytecomp.el (byte-compile-fix-header):
7323 Handle arbitrary file name lengths (Bug#11585).
7324
7325 2012-05-31 Martin Rudalics <rudalics@gmx.at>
7326
7327 * desktop.el (desktop-read): Clear previous and next buffers for
7328 all windows and bury *Messages* buffer (bug#11556).
7329
7330 2012-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
7331
7332 Add `declare' for `defun'. Align `defmacro's with it.
7333 * emacs-lisp/easy-mmode.el (define-minor-mode)
7334 (define-globalized-minor-mode): Don't autoload the var definitions.
7335 * emacs-lisp/byte-run.el: Use lexical-binding.
7336 (defun-declarations-alist, macro-declarations-alist): New vars.
7337 (defmacro, defun): Use them.
7338 (make-obsolete, define-obsolete-function-alias)
7339 (make-obsolete-variable, define-obsolete-variable-alias):
7340 Use `declare'.
7341 (macro-declaration-function): Mark obsolete.
7342 * emacs-lisp/autoload.el: Use lexical-binding.
7343 (make-autoload): Add `expansion' arg. Rely more on macro expansion.
7344
7345 2012-05-30 Agustín Martín Domingo <agustin.martin@hispalinux.es>
7346
7347 * textmodes/ispell.el (ispell-with-no-warnings):
7348 Define as a macro.
7349 (ispell-kill-ispell, ispell-change-dictionary):
7350 Use `called-interactively-p' for Emacs instead of obsolete
7351 `interactive-p'.
7352
7353 2012-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
7354
7355 * emacs-lisp/byte-run.el (defmacro, defun): Move from C.
7356 (macro-declaration-function): Move var from C code.
7357 (macro-declaration-function): Define function with defalias.
7358 * emacs-lisp/macroexp.el (macroexpand-all-1):
7359 * emacs-lisp/cconv.el (cconv-convert, cconv-analyse-form):
7360 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker): Don't handle
7361 defun/defmacro any more.
7362 * emacs-lisp/bytecomp.el (byte-compile-arglist-signature):
7363 Provide fallback for unknown arglist.
7364 (byte-compile-arglist-warn): Change calling convention.
7365 (byte-compile-output-file-form): Move print-vars binding.
7366 (byte-compile-output-docform): Simplify accordingly.
7367 (byte-compile-file-form-defun, byte-compile-file-form-defmacro)
7368 (byte-compile-defmacro-declaration): Remove.
7369 (byte-compile-file-form-defmumble): Generalize to defalias.
7370 (byte-compile-output-as-comment): Return byte-positions.
7371 Simplify callers accordingly.
7372 (byte-compile-lambda): Use `assert'.
7373 (byte-compile-defun, byte-compile-defmacro): Remove.
7374 (byte-compile-file-form-defalias):
7375 Use byte-compile-file-form-defmumble.
7376 (byte-compile-defalias-warn): Remove.
7377
7378 2012-05-29 Stefan Merten <smerten@oekonux.de>
7379
7380 * textmodes/rst.el: Silence `checkdoc-ispell' errors where
7381 possible. Fix authors. Improve comments. Improve loading of `cl'.
7382
7383 (rst-mode-abbrev-table): Merge definition.
7384 (rst-mode): Make sure `font-lock-defaults' is buffer local.
7385 (rst-define-key, rst-deprecated-keys, rst-call-deprecated): Refactor.
7386
7387 2012-05-29 Ulf Jasper <ulf.jasper@web.de>
7388
7389 * calendar/icalendar.el
7390 (icalendar-export-region): Export UID properly.
7391
7392 2012-05-29 Leo Liu <sdl.web@gmail.com>
7393 * calendar/icalendar.el (icalendar-import-format):
7394 Add `icalendar-import-format-uid' (Bug#11525).
7395 (icalendar-import-format-uid): New.
7396 (icalendar--parse-summary-and-rest, icalendar--format-ical-event):
7397 Export UID.
7398
7399 2012-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
7400
7401 * emacs-lisp/pcase.el (pcase--expand): Accept different sets of vars in
7402 different alternative patterns.
7403 (pcase-codegen): Be more careful to preserve identity.
7404 (pcase--u1): Don't forget to mark vars as used.
7405
7406 * emacs-lisp/bytecomp.el (byte-compile-constp): Treat #'v as a constant.
7407 (byte-compile-close-variables): Bind byte-compile--outbuffer here...
7408 (byte-compile-from-buffer): ...rather than here.
7409
7410 * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Don't re-preprocess
7411 functions from byte-compile-function-environment.
7412
7413 2012-05-29 Troels Nielsen <bn.troels@gmail.com>
7414
7415 * window.el (window-deletable-p): Avoid deleting the root window
7416 of a frame with an active minibuffer.
7417
7418 2012-05-29 Martin Rudalics <rudalics@gmx.at>
7419
7420 * simple.el (choose-completion): Use quit-window (Bug#11567).
7421
7422 2012-05-29 Chong Yidong <cyd@gnu.org>
7423
7424 * whitespace.el (whitespace-cleanup): Fix usage of
7425 whitespace-empty-at-bob-regexp (Bug#11492).
7426
7427 2012-05-29 Aaron S. Hawley <aaron.s.hawley@gmail.com>
7428
7429 * vc/vc.el (vc-revert, vc-rollback): Dont kill vc-diff buffer on
7430 revert (Bug#11488).
7431
7432 2012-05-29 Juri Linkov <juri@jurta.org>
7433
7434 * isearch.el (isearch-mode-map): Bind `M-s _' to
7435 `isearch-toggle-symbol'. Bind `M-s c' to
7436 `isearch-toggle-case-fold'.
7437 (search-map): Bind `M-s _' to `isearch-forward-symbol'.
7438 (isearch-forward): Add `M-s _' to the docstring.
7439 (isearch-forward-symbol, isearch-toggle-case-fold)
7440 (isearch-symbol-regexp): New functions. (Bug#11381)
7441
7442 2012-05-29 Juri Linkov <juri@jurta.org>
7443
7444 * isearch.el (isearch-word): Add docstring. (Bug#11381)
7445 (isearch-occur, isearch-search-and-update): If `isearch-word' is
7446 a function, call it to get the regexp.
7447 (isearch-message-prefix): If `isearch-word' holds a symbol, use its
7448 property `isearch-message-prefix' instead of the string "word ".
7449 (isearch-search-fun-default): For the case of `isearch-word',
7450 return a lambda that calls re-search-forward/re-search-backward
7451 with a regexp returned by `word-search-regexp' or by the function
7452 in `isearch-word'.
7453
7454 2012-05-29 Juri Linkov <juri@jurta.org>
7455
7456 * isearch.el (isearch-search-fun-default): New function.
7457 (isearch-search-fun): Move default part to the new function
7458 `isearch-search-fun-default'.
7459 (isearch-search-fun-function): Set the default value to
7460 `isearch-search-fun-default'. (Bug#11381)
7461
7462 * comint.el (comint-history-isearch-end):
7463 Use `isearch-search-fun-default'.
7464 (comint-history-isearch-search): Use `isearch-search-fun-default'
7465 and remove spacial case for `isearch-word'.
7466 (comint-history-isearch-wrap): Remove spacial case for
7467 `isearch-word'.
7468
7469 * hexl.el (hexl-isearch-search-function):
7470 Use `isearch-search-fun-default'.
7471
7472 * info.el (Info-isearch-search): Use `isearch-search-fun-default'.
7473 Use `word-search-regexp' for `isearch-word'.
7474
7475 * misearch.el (multi-isearch-search-fun):
7476 Use `isearch-search-fun-default'.
7477
7478 * simple.el (minibuffer-history-isearch-search):
7479 Use `isearch-search-fun-default' and remove spacial case for
7480 `isearch-word'.
7481 (minibuffer-history-isearch-wrap): Remove spacial case for
7482 `isearch-word'.
7483
7484 * textmodes/reftex-global.el (reftex-isearch-wrap-function):
7485 Remove spacial case for `isearch-word'.
7486 (reftex-isearch-isearch-search): Use `isearch-search-fun-default'.
7487
7488 2012-05-28 Agustín Martín Domingo <agustin.martin@hispalinux.es>
7489
7490 Decrease XEmacs incompatibilities.
7491 * textmodes/flyspell.el (flyspell-check-pre-word-p):
7492 Use `string-match'.
7493 (flyspell-delete-region-overlays): Use alternative definition for
7494 XEmacs.
7495 (flyspell-delete-all-overlays): Use `flyspell-delete-region-overlays'.
7496 (flyspell-word): Use `process-kill-without-query' if XEmacs.
7497 (flyspell-mode-on): Use `interactive-p' if XEmacs.
7498 (flyspell-incorrect-face, flyspell-duplicate-face): Do not use
7499 `define-obsolete-face-alias' under XEmacs, but old method.
7500
7501 * textmodes/ispell.el (ispell-with-no-warnings): XEmacs alternative
7502 `with-no-warnings' definition or Emacs alias.
7503 (ispell-command-loop, ispell-message): Use `ispell-with-no-warnings'.
7504 (ispell-word): Do not use `region-p' if XEmacs.
7505
7506 2012-05-28 Agustín Martín Domingo <agustin.martin@hispalinux.es>
7507
7508 * textmodes/ispell.el (ispell-find-aspell-dictionaries):
7509 Check for `ispell-dictionary-base-alist' instead of full
7510 `ispell-dictionary-alist'.
7511 (ispell-init-process): Show spellchecker when starting new Ispell
7512 process.
7513
7514 2012-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
7515
7516 * progmodes/vhdl-mode.el: Sync with upstream 3.33.28.
7517 http://www.iis.ee.ethz.ch/~zimmi/emacs/vhdl-mode.html#release-notes-3.33
7518
7519 2012-05-27 Juanma Barranquero <lekktu@gmail.com>
7520
7521 * version.el (motif-version-string, gtk-version-string)
7522 (ns-version-string): Declare.
7523
7524 2012-05-27 Juri Linkov <juri@jurta.org>
7525
7526 * emacs-lisp/lisp-mode.el (eval-defun-2): Use `eval-sexp-add-defvars'
7527 after the `eval-defun-1' specialcaseing
7528 like in `edebug-eval-defun' (bug#10181).
7529
7530 * emacs-lisp/edebug.el (edebug-eval-defun): Set `face-documentation'
7531 like in `eval-defun-1'.
7532
7533 2012-05-27 Eli Zaretskii <eliz@gnu.org>
7534
7535 * mail/sendmail.el (mail-yank-region):
7536 Recognize rmail-yank-current-message in addition to insert-buffer.
7537 Fixes mail-mode's "C-c C-r" that otherwise does nothing when invoked in
7538 a *mail* buffer created through rmail-start-mail with sendmail as
7539 mail-user-agent.
7540
7541 2012-05-27 Chong Yidong <cyd@gnu.org>
7542
7543 * net/gnutls.el (gnutls-min-prime-bits): Improve docstring.
7544 Default to 256 (Bug#11267).
7545
7546 * help.el (describe-mode): Doc fix.
7547
7548 2012-05-26 Glenn Morris <rgm@gnu.org>
7549
7550 * w32-fns.el (w32-init-info): Remove.
7551 * paths.el (Info-default-directory-list): Add w32-init-info equivalent.
7552
7553 * info.el (info-initialize): For self-contained NS builds, put the
7554 included info/ directory at the front. (Bug#2791)
7555
7556 * paths.el (Info-default-directory-list): Make it a defcustom,
7557 mainly so that we can use custom-initialize-delay.
7558
7559 2012-05-26 Stefan Monnier <monnier@iro.umontreal.ca>
7560
7561 * subr.el (buffer-has-markers-at): Mark obsolete.
7562
7563 * subr.el (lambda): Use declare.
7564
7565 * emacs-lisp/lisp-mode.el (lambda):
7566 * emacs-lisp/edebug.el (lambda): Move properties to its definition.
7567
7568 2012-05-26 Aaron S. Hawley <aaron.s.hawley@gmail.com>
7569
7570 * thingatpt.el (forward-same-syntax): Handle no ARG case. (Bug#11560)
7571
7572 2012-05-26 Glenn Morris <rgm@gnu.org>
7573
7574 * progmodes/cc-mode.el (auto-mode-alist): Fix typo.
7575
7576 2012-05-25 Glenn Morris <rgm@gnu.org>
7577
7578 * paths.el: Remove no-byte-compile.
7579 * loadup.el: No need to load paths.el uncompiled.
7580
7581 * image.el (imagemagick-types-inhibit): Doc fix.
7582
7583 * version.el: Remove no-byte-compile and associated formatting.
7584 * loadup.el: No need to load version.el uncompiled. AFAICS, this
7585 is ancient code from when there was an "inc-vers.el".
7586
7587 2012-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
7588
7589 * progmodes/gdb-mi.el: Minor style changes.
7590 (gdb-enable-debug, gdb-speedbar-auto-raise, gdb-many-windows):
7591 Turn into minor modes.
7592 (gdb--if-arrow): Rename from gdb-if-arrow, make it hygienic.
7593 (gdb-mouse-until, gdb-mouse-jump): Adjust uses accordingly.
7594 (gdb-shell): Remove unneeded let-binding.
7595 (gdb-get-many-fields): Eliminate O(n²) behavior.
7596
7597 2012-05-25 Eli Zaretskii <eliz@gnu.org>
7598
7599 * cus-start.el <vertical-centering-font-regexp>: Avoid warning on
7600 platforms that don't link in fontset.c.
7601
7602 2012-05-25 Juri Linkov <juri@jurta.org>
7603
7604 Use the same diff color scheme as in modern VCSes (bug#10181).
7605
7606 * vc/diff-mode.el (diff-header, diff-file-header): Remove "green"
7607 to avoid confusion with `diff-added' that now uses green colors.
7608 (diff-removed): Use shades of red.
7609 (diff-added): Use shades of green.
7610 (diff-changed): Leave just the yellow color.
7611 (diff-use-changed-face): New variable.
7612 (diff-font-lock-keywords): Use `diff-use-changed-face' to decide
7613 how to highlight context diff changes.
7614 (diff-refine-change): Use shades of yellow.
7615 (diff-refine-removed): New face that uses shades of red.
7616 (diff-refine-added): New face that uses shades of green.
7617 (diff-refine-hunk): Use `diff-refine-change', `diff-refine-added',
7618 `diff-refine-removed' in the call to `smerge-refine-subst'
7619 depending on the value of `diff-use-changed-face'.
7620
7621 * vc/smerge-mode.el (smerge-mine): Use shades of red.
7622 (smerge-other): Use shades of green.
7623 (smerge-base): Use shades of yellow.
7624 (smerge-refined-change): Empty face.
7625 (smerge-refined-removed): New face that uses shades of red.
7626 (smerge-refined-added): New face that uses shades of green.
7627 (smerge-refine-subst): Rename arg `props' to `props-c'. Add new
7628 args `props-r' and `props-a', and use them. Doc fix.
7629 (smerge-refine): Evaluate `smerge-use-changed-face' and depending
7630 on its value use different faces `smerge-refined-change',
7631 `smerge-refined-removed', `smerge-refined-added' in the call to
7632 `smerge-refine-subst'.
7633
7634 * vc/ediff-init.el (ediff-current-diff-A, ediff-fine-diff-A):
7635 Add face condition `min-colors 88' with shades of red.
7636 (ediff-current-diff-B, ediff-fine-diff-B): Add face condition
7637 `min-colors 88' with shades of green.
7638 (ediff-current-diff-C, ediff-fine-diff-C): Add face condition
7639 `min-colors 88' with shades of yellow.
7640
7641 2012-05-24 Glenn Morris <rgm@gnu.org>
7642
7643 * paths.el (prune-directory-list, remote-shell-program): Move to...
7644 * files.el (prune-directory-list, remote-shell-program): ...here.
7645 For the latter, delay initialization, prefer ssh, just search PATH.
7646
7647 * paths.el (term-file-prefix): Move to faces.el (the only user).
7648 * faces.el (term-file-prefix): Move here, make it a defcustom.
7649
7650 * paths.el (news-directory, news-path, news-inews-program):
7651 Move to gnus/nnspool.el.
7652
7653 * paths.el (gnus-default-nntp-server): Remove (gnus.el defines it).
7654
7655 * paths.el (rmail-file-name, rmail-spool-directory): Move from here...
7656 * mail/rmail.el (rmail-file-name, rmail-spool-directory): ... to here.
7657 Make the latter a defcustom, with a delayed initialization.
7658
7659 * paths.el (gnus-nntp-service, gnus-local-organization): Remove.
7660 These were deleted from Gnus itself late 2010.
7661
7662 2012-05-22 Juanma Barranquero <lekktu@gmail.com>
7663
7664 * progmodes/which-func.el (which-func-ff-hook):
7665 Check against user-error, not error.
7666
7667 * emacs-lisp/edebug.el (top): Do not load or set up loading of
7668 cl-specs.el, which no longer exists.
7669
7670 2012-05-22 Glenn Morris <rgm@gnu.org>
7671
7672 * info.el (info-emacs-bug): New command.
7673 * menu-bar.el (menu-bar-help-menu): Add "How to Report a Bug" to Help.
7674 * mail/emacsbug.el (report-emacs-bug): Replace with info-emacs-bug.
7675
7676 2012-05-21 Glenn Morris <rgm@gnu.org>
7677
7678 * makefile.w32-in (update-subdirs-SH):
7679 * Makefile.in (update-subdirs): Update for moved update-subdirs.
7680
7681 2012-05-21 Stefan Monnier <monnier@iro.umontreal.ca>
7682
7683 * hi-lock.el (hi-lock-face-defaults): Move obsolete before definition.
7684
7685 * progmodes/compile.el (compilation-error-regexp-alist-alist):
7686 Simplify Maven regexp, and make sure the file can't start with a space
7687 (bug#11517).
7688
7689 2012-05-21 Glenn Morris <rgm@gnu.org>
7690
7691 * Makefile.in (setwins, setwins_almost, setwins_for_subdirs):
7692 Scrap superfluous subshells.
7693
7694 2012-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
7695
7696 * emacs-lisp/bytecomp.el (byte-compile-root-dir): New var.
7697 (byte-compile-warning-prefix, batch-byte-compile-file): Use it.
7698
7699 2012-05-19 Jay Belanger <jay.p.belanger@gmail.com>
7700
7701 * calc/calc.el (calc-ensure-consistent-units): New variable.
7702
7703 * calc/calc-units.el (math-consistent-units-p)
7704 (math-check-unit-consistency): New functions.
7705 (calc-quick-units, calc-convert-units):
7706 Use `math-check-unit-consistency' when `calc-ensure-consistent-units'
7707 is non-nil.
7708 (calc-extract-units): Fix typo.
7709
7710 2012-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
7711
7712 * vc/vc-bzr.el (vc-bzr-state-heuristic): Save match-data around sha1.
7713
7714 * textmodes/flyspell.el: Commenting style, plus code simplifications.
7715 (flyspell-default-deplacement-commands): Don't spell check after
7716 repeated window/frame switches (e.g. triggered by mouse-movement).
7717 (flyspell-delay-commands, flyspell-deplacement-commands): Use mapc.
7718 (flyspell-debug-signal-word-checked): Simplify and fit in 80 cols.
7719 (flyspell-casechars-cache, flyspell-ispell-casechars-cache)
7720 (flyspell-not-casechars-cache, flyspell-ispell-not-casechars-cache):
7721 Remove unused vars.
7722 (flyspell-get-casechars, flyspell-get-not-casechars):
7723 Simplify; Don't bother removing a ] just to add it back.
7724 * textmodes/ispell.el (ispell-program-name): Use executable-find.
7725
7726 2012-05-18 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
7727
7728 * calc/calc-lang.el (math-C-parse-bess, math-C-parse-fma):
7729 New functions.
7730 (math-function-table): Add support for more C functions.
7731
7732 2012-05-18 Agustín Martín Domingo <agustin.martin@hispalinux.es>
7733
7734 * textmodes/flyspell.el (flyspell-check-pre-word-p)
7735 (flyspell-check-word-p, flyspell-debug-signal-word-checked):
7736 Protect delay handling for otherchars against empty otherchars.
7737
7738 2012-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
7739
7740 * emacs-lisp/lisp-mode.el (doc-string-elt): Move those properties to
7741 their respective macro declarations.
7742 * skeleton.el (define-skeleton):
7743 * progmodes/compile.el (define-compilation-mode):
7744 * ibuf-macs.el (define-ibuffer-sorter, define-ibuffer-op)
7745 (define-ibuffer-filter):
7746 * emacs-lisp/generic.el (define-generic-mode):
7747 * emacs-lisp/easy-mmode.el (define-minor-mode)
7748 (define-globalized-minor-mode):
7749 * emacs-lisp/cl-macs.el (defun*, defmacro*, defstruct, deftype):
7750 * emacs-lisp/byte-run.el (defsubst):
7751 * custom.el (deftheme): Add doc-string metadata.
7752
7753 2012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
7754
7755 * emacs-lisp/cl-macs.el, emacs-lisp/cl.el: Move indent info.
7756
7757 2012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
7758
7759 * emacs-lisp/pcase.el (pcase--u1): Avoid ((lambda ...) ...).
7760
7761 * emacs-lisp/cl.el: Add edebug specs from cl-specs.el.
7762 * emacs-lisp/cl-macs.el: Idem.
7763 * emacs-lisp/cl-specs.el: Remove.
7764
7765 2012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
7766
7767 Minor renaming of internal CL functions and variables.
7768 * emacs-lisp/cl-seq.el (cl--adjoin): Rename from cl-adjoin.
7769 (cl--position): Rename from cl-position.
7770 (cl--delete-duplicates): Rename from cl-delete-duplicates.
7771 * emacs-lisp/cl.el (cl--gensym-counter): Rename from *gensym-counter*.
7772 (cl--random-state): Rename from *random-state*.
7773
7774 2012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
7775
7776 * emacs-lisp/cl-macs.el (cl-transform-lambda): Don't add spurious
7777 parens around the arg list (bug#11499).
7778
7779 2012-05-17 Juri Linkov <juri@jurta.org>
7780
7781 * isearch.el (word-search-regexp, word-search-backward)
7782 (word-search-forward, word-search-backward-lax)
7783 (word-search-forward-lax): Move functions from search.c
7784 (bug#10145, bug#11381).
7785
7786 2012-05-16 Agustín Martín Domingo <agustin.martin@hispalinux.es>
7787
7788 * textmodes/flyspell.el (flyspell-check-pre-word-p)
7789 (flyspell-check-word-p, flyspell-debug-signal-word-checked):
7790 Delay for otherchars as for normal word components.
7791
7792 2012-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
7793
7794 * minibuffer.el (completion--sifn-requote): Fix last change.
7795 (minibuffer-local-must-match-filename-map):
7796 Move define-obsolete-variable-alias before its var.
7797
7798 2012-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
7799
7800 * emacs-lisp/pcase.el (pcase-let*, pcase-let): Fix edebug spec.
7801
7802 * minibuffer.el (completion--sifn-requote): Handle sifn's truncation
7803 behavior.
7804 (completion--string-equal-p): New function.
7805 (completion--twq-all): Use it to get better assertion failure data.
7806
7807 Only handle ".." and '..' quoting in shell-mode (bug#11466).
7808 * shell.el (shell--unquote&requote-argument, shell--unquote-argument)
7809 (shell--requote-argument): New functions.
7810 (shell-completion-vars): Use them.
7811 (shell--parse-pcomplete-arguments): Rename from
7812 shell-parse-pcomplete-arguments.
7813 * comint.el (comint-word): Obey comint-file-name-quote-list. Simplify.
7814 (comint--unquote&requote-argument): Don't handle ".." and '..' quoting.
7815 Obey comint-file-name-quote-list.
7816
7817 * emacs-lisp/smie.el (smie-indent--bolp-1): New function.
7818 (smie-indent-keyword): Use it.
7819
7820 2012-05-14 Stefan Merten <smerten@oekonux.de>
7821
7822 * textmodes/rst.el (rst-re-alist): Fix loading (bug#11462).
7823
7824 2012-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
7825
7826 * net/rlogin.el (rlogin-mode-map): Fix last change.
7827
7828 2012-05-14 Jason L. Wright <jason.wright@inl.gov> (tiny change)
7829
7830 * mail/smtpmail.el (smtpmail-send-command): Send the command and
7831 the following \r\n using a single `process-send-string', since the
7832 Lotus SMTP server refuses to accept any commands if they are sent
7833 with two `process-send-string's (Bug#11444).
7834
7835 2012-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
7836
7837 * shell.el (shell-parse-pcomplete-arguments):
7838 Obey pcomplete-arg-quote-list inside double-quoted args (Bug#11348).
7839
7840 2012-05-14 Wolfgang Jenkner <wjenkner@inode.at>
7841
7842 * image-mode.el: Fit to width/height for rotated images (Bug#11431).
7843 (image-transform-scale, image-transform-right-angle-fudge): New vars.
7844 (image-transform-width, image-transform-fit-width): New functions.
7845 (image-transform-properties): Use them.
7846 (image-transform-check-size): New function.
7847 (image-toggle-display-image): Use it (for testing).
7848 (image-transform-set-rotation): Reduce angle mod 360.
7849 Delete obsolete comment.
7850
7851 2012-05-14 Wolfgang Jenkner <wjenkner@inode.at>
7852
7853 * image-mode.el: Fix scaling (bug#11399).
7854 (image-transform-resize): Doc fix.
7855 (image-transform-properties): Default scale is 1 and height should
7856 be an integer.
7857
7858 2012-05-13 Johan Bockgård <bojohan@gnu.org>
7859
7860 * emacs-lisp/smie.el (smie-next-sexp): Use accessor `op-forw' rather
7861 than hard-coding `car', to fix misbehavior when moving forward.
7862
7863 2012-05-13 Chong Yidong <cyd@gnu.org>
7864
7865 * emacs-lisp/tabulated-list.el (tabulated-list-format)
7866 (tabulated-list-entries, tabulated-list-padding)
7867 (tabulated-list-sort-key): Make permanent-local.
7868
7869 * ebuff-menu.el: Adapt to Buffer Menu changes (Bug#11455).
7870 (electric-buffer-list): Put electric buffer menu
7871 command descriptions in this docstring, instead of the docstring
7872 of electric-buffer-menu-mode. Code cleanups.
7873 (electric-buffer-menu-mode): Use define-derived-mode. Rename from
7874 Electric-buffer-menu-mode.
7875 (electric-buffer-update-highlight): Minor code cleanup.
7876
7877 2012-05-13 Michael Albinus <michael.albinus@gmx.de>
7878
7879 * net/dbus.el (dbus-call-method): Restore events not from D-Bus.
7880 (Bug#11447)
7881
7882 2012-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
7883
7884 Move define-obsolete-variable-alias before the var's definition.
7885 * vc/log-edit.el (vc-comment-ring, vc-comment-ring-index):
7886 * tooltip.el (tooltip-hook):
7887 * textmodes/reftex-toc.el (reftex-toc-map):
7888 * textmodes/reftex-sel.el (reftex-select-label-map)
7889 (reftex-select-bib-map):
7890 * textmodes/reftex-index.el (reftex-index-map)
7891 (reftex-index-phrases-map):
7892 * speedbar.el (speedbar-syntax-table, speedbar-key-map):
7893 * progmodes/meta-mode.el (meta-mode-map):
7894 * novice.el (disabled-command-hook):
7895 * loadhist.el (unload-hook-features-list):
7896 * frame.el (blink-cursor):
7897 * files.el (find-file-not-found-hooks, write-file-hooks)
7898 (write-contents-hooks):
7899 * emulation/tpu-edt.el (GOLD-map):
7900 * emacs-lock.el (emacs-lock-from-exiting):
7901 * emacs-lisp/generic.el (generic-font-lock-defaults):
7902 * emacs-lisp/chart.el (chart-map):
7903 * dos-fns.el (register-name-alist):
7904 * dired-x.el (dired-omit-files-p):
7905 * desktop.el (desktop-enable):
7906 * cus-edit.el (custom-mode-hook):
7907 * buff-menu.el (buffer-menu-mode-hook):
7908 * bookmark.el (bookmark-read-annotation-text-func)
7909 (bookmark-exit-hooks):
7910 * allout.el (allout-mode-deactivate-hook)
7911 (allout-exposure-change-hook, allout-structure-added-hook)
7912 (allout-structure-deleted-hook, allout-structure-shifted-hook):
7913 * dirtrack.el (dirtrack-toggle, dirtrackp, dirtrack-debug-toggle)
7914 (dirtrack-debug): Move call to define-obsolete-variable-alias so it
7915 comes before the corresponding variable's definition.
7916
7917 2012-05-12 Chong Yidong <cyd@gnu.org>
7918
7919 * buff-menu.el (Buffer-menu-buffer+size-width): Doc fix (Bug#11454).
7920 (Buffer-menu-mouse-select): Restore function (Bug#11459).
7921 (Buffer-menu-mode-map): Bind it.
7922 (Buffer-menu--pretty-name): Add a mouse-face property.
7923
7924 2012-05-11 Stefan Monnier <monnier@iro.umontreal.ca>
7925
7926 * progmodes/prolog.el: Use SMIE. Cleanup regexp setup.
7927 (prolog-upper-case-string, prolog-lower-case-string)
7928 (prolog-atom-char-regexp, prolog-atom-regexp): Initialize in defconst.
7929 (prolog-use-smie, prolog-smie-grammar): New vars.
7930 (prolog-smie-forward-token, prolog-smie-backward-token)
7931 (prolog-smie-rules): New funs.
7932 (prolog-comment-indent): Remove.
7933 (prolog-mode-variables): Use default comment indentation instead.
7934 Setup SMIE.
7935 (prolog-build-case-strings, prolog-set-atom-regexps): Remove.
7936 (prolog-mode): Don't call them any more.
7937 (prolog-electric-colon, prolog-electric-dash)
7938 (prolog-edit-menu-insert-move): Use indent-according-to-mode.
7939
7940 * dabbrev.el (dabbrev-expand): Make "no expansion found" a user-error.
7941
7942 * minibuffer.el (completion--twq-all): Again, allow case differences.
7943
7944 * term.el: Move keymap initialization code to be more idiomatic.
7945 (term-signals-menu, term-mode-map, term-raw-map, term-raw-escape-map)
7946 (term-terminal-menu): Move initialization into declaration.
7947 (term-escape-char): Let the user set it in her .emacs.
7948
7949 * progmodes/sh-script.el: Use post-self-insert-hook&electric-pair-mode.
7950 Provide SMIE-based indentation (not enabled by default yet).
7951 (sh-mode-map): Don't bind electric keys.
7952 Use electric-pair-mode instead of skeleton-pair.
7953 (sh-assignment-regexp): Fit within 80 columns.
7954 (sh-indent-supported): Specify actual shell name instead of boolean.
7955 (sh--maybe-here-document): New fun, from sh-maybe-here-document.
7956 (sh-maybe-here-document): Use it. Make obsolete.
7957 (sh-electric-here-document-mode) New minor mode.
7958 (sh-mode): Use it. Don't set sh-indent-supported-here here.
7959 (sh-smie-sh-grammar, sh-smie--sh-operators, sh-smie--sh-operators-re)
7960 (sh-smie--sh-operators-back-re, sh-indent-after-continuation)
7961 (sh-smie-rc-grammar, sh-use-smie): New vars.
7962 (sh-smie--keyword-p, sh-smie--newline-semi-p, sh-smie--sh-keyword-p)
7963 (sh-smie-sh-forward-token, sh-smie--looking-back-at-continuation-p)
7964 (sh-smie-sh-backward-token, sh-smie--continuation-start-indent)
7965 (sh-smie-sh-rules, sh-smie-rc-rules, sh-smie--sh-keyword-in-p)
7966 (sh-smie--rc-after-special-arg-p, sh-smie-rc-backward-token)
7967 (sh-smie-sh-rules, sh-smie--rc-newline-semi-p): New functions.
7968 (sh-set-shell): Use smie-setup if requested.
7969
7970 * term.el (term-set-escape-char): Properly set term-escape-char.
7971 See http://stackoverflow.com/questions/10524656.
7972
7973 2012-05-10 Chong Yidong <cyd@gnu.org>
7974
7975 * ffap.el (ffap-url-unwrap-local): Make it work right (Bug#9131).
7976 Use url-generic-parse-url, and handle host names and Windows
7977 filenames properly.
7978 (ffap-url-unwrap-remote): Use url-generic-parse-url.
7979 (ffap-url-unwrap-remote): Accept list values, specifying a list of
7980 URL schemes to work on.
7981 (ffap--toggle-read-only): New function.
7982 (ffap-read-only, ffap-read-only-other-window)
7983 (ffap-read-only-other-frame): Use it.
7984 (ffap-fixup-url): Don't check ffap-ftp-regexp, since it is not
7985 necessary for ffap-url-unwrap-remote.
7986
7987 2012-05-10 Dave Abrahams <dave@boostpro.com>
7988
7989 * cus-start.el (create-lockfiles): Add it.
7990
7991 2012-05-09 Chong Yidong <cyd@gnu.org>
7992
7993 * net/browse-url.el (browse-url-url-encode-chars): Use upper-case.
7994 (browse-url-encode-url): Encode spaces and quotes (Bug#6300).
7995
7996 2012-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
7997
7998 * shell.el (shell-completion-vars): Fix last change (bug#11348).
7999
8000 2012-05-09 Chong Yidong <cyd@gnu.org>
8001
8002 * ansi-color.el (ansi-color-process-output): Check for validity of
8003 comint-last-output-start before using it. This avoids a bad
8004 interaction with gdb-mi's input/output buffer.
8005
8006 2012-05-09 Glenn Morris <rgm@gnu.org>
8007
8008 * files.el (dir-locals-read-from-file):
8009 Mention dir-locals in any error message.
8010
8011 2012-05-09 Chong Yidong <cyd@gnu.org>
8012
8013 * emacs-lisp/package.el (package-built-in-p): Handle the `emacs'
8014 package (Bug#11410).
8015
8016 * emacs-lisp/package.el (package-buffer-info): Avoid putting local
8017 variables into description.
8018
8019 2012-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
8020
8021 * shell.el (shell-completion-vars): Set pcomplete-arg-quote-list like
8022 shell-delimiter-argument-list (bug#11348).
8023 (shell-parse-pcomplete-arguments): Obey pcomplete-arg-quote-list.
8024
8025 2012-05-09 Juanma Barranquero <lekktu@gmail.com>
8026
8027 * textmodes/rst.el: Silence byte-compiler warnings.
8028 (rst-re-alist, rst-reset-section-caches): Move around.
8029 (rst-re): Use `characterp', not `char-valid-p'.
8030 (font-lock-beg, font-lock-end): Declare.
8031
8032 * progmodes/idlw-shell.el (specs): Remove reference to deleted
8033 variable `idlwave-shell-activate-alt-keybindings' and simplify.
8034
8035 * eshell/esh-cmd.el (eshell-debug-command): Fix typo in previous change.
8036
8037 2012-05-08 Glenn Morris <rgm@gnu.org>
8038
8039 * files.el (auto-mode-alist): Treat ".make" like ".mk".
8040
8041 2012-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
8042
8043 * vc/log-edit.el: Add GNU coding standards highlighting.
8044 (log-edit-font-lock-gnu-style)
8045 (log-edit-font-lock-gnu-keywords): New vars.
8046 (log-edit-font-lock-keywords): New fun.
8047 (log-edit-mode): Don't fold case in font-lock.
8048 (log-edit-font-lock-keywords): Do not assume case-folding.
8049
8050 * imenu.el: Misc cleanup. Make docstrings out of comments.
8051 Use lexical-binding.
8052 (imenu--index-alist, imenu--last-menubar-index-alist)
8053 (imenu-menubar-modified-tick): Use defvar-local.
8054 (imenu--split-menu): Remove unused var.
8055 (imenu--cleanup-seen): Declare as global.
8056 (imenu--cleanup): Use dolist.
8057
8058 * subr.el (defvar-local): Add debug spec and doc-string position.
8059
8060 2012-05-08 Glenn Morris <rgm@gnu.org>
8061
8062 * language/burmese.el, language/cham.el, language/czech.el:
8063 * language/english.el, language/georgian.el, language/greek.el:
8064 * language/japanese.el, language/khmer.el, language/korean.el:
8065 * language/lao.el, language/misc-lang.el, language/romanian.el:
8066 * language/sinhala.el, language/slovak.el, language/tai-viet.el:
8067 * language/thai.el, language/utf-8-lang.el:
8068 Remove no-byte-compile setting.
8069
8070 * play/zone.el (zone-pgm-stress): Don't pollute kill-ring. (Bug#11388)
8071
8072 2012-05-08 Aaron S. Hawley <aaron.s.hawley@gmail.com>
8073
8074 * progmodes/make-mode.el (makefile-browse):
8075 Remove unnecessary interactive. (Bug#11324)
8076
8077 2012-05-07 Glenn Morris <rgm@gnu.org>
8078
8079 * forms-d2.el, forms-pass.el: Move to ../etc/forms directory.
8080
8081 * international/mule.el (find-auto-coding): Make "unibyte: t" obsolete.
8082
8083 2012-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
8084
8085 * loadup.el: Preload newcomment.el.
8086 * newcomment.el: Move autoload-only code to toplevel.
8087
8088 * buff-menu.el (list-buffers--refresh): Mark `size' as right-align.
8089 * emacs-lisp/tabulated-list.el (tabulated-list-init-header):
8090 Handle new :right-align column property.
8091 (tabulated-list-print-col): Idem, plus use `display' text-property to
8092 try and preserve alignment for variable pitch fonts.
8093
8094 2012-05-07 Chong Yidong <cyd@gnu.org>
8095
8096 * emacs-lisp/tabulated-list.el: Add no-header-line alternative.
8097 (tabulated-list-use-header-line): New var.
8098 (tabulated-list-init-header): Use it.
8099 (tabulated-list-print-fake-header): New function.
8100 (tabulated-list-print): Use it.
8101 (tabulated-list-sort-button-map): Add non-header-line commands.
8102 (tabulated-list-init-header): Add column name property to basic
8103 labels as well.
8104 (tabulated-list-col-sort): Handle non-header-line button case.
8105 (tabulated-list--sort-by-column-name): Fix a corner case.
8106
8107 * buff-menu.el (list-buffers--refresh):
8108 Handle Buffer-menu-use-header-line.
8109
8110 2012-05-06 Chong Yidong <cyd@gnu.org>
8111
8112 * buff-menu.el: Convert to Tabulated List mode.
8113 (Buffer-menu-buffer+size-width): Make obsolete.
8114 (Buffer-menu-name-width, Buffer-menu-size-width): New variables.
8115 (Buffer-menu-mode-map): Inherit from tabulated-list-mode-map.
8116 (Buffer-menu-mode): Derive from tabulated-list-mode. Move command
8117 documentation into docstring of buffer-menu.
8118 (Buffer-menu-toggle-files-only): Add an informative message.
8119 (Buffer-menu-sort): Convert to alias for tabulated-list-sort.
8120 (Buffer-menu-buffer, Buffer-menu-beginning, Buffer-menu-mark)
8121 (Buffer-menu-unmark, Buffer-menu-backup-unmark)
8122 (Buffer-menu-delete, Buffer-menu-save, Buffer-menu-not-modified)
8123 (Buffer-menu-execute, Buffer-menu-select)
8124 (Buffer-menu-marked-buffers, Buffer-menu-toggle-read-only)
8125 (Buffer-menu-bury): Use Tabulated List machinery.
8126 (Buffer-menu-mouse-select, Buffer-menu-sort-by-column)
8127 (Buffer-menu-sort-button-map, Buffer-menu-make-sort-button):
8128 Delete.
8129 (list-buffers--refresh): New function.
8130 (list-buffers-noselect): Use it.
8131 (tabulated-list-entry-size->, Buffer-menu--pretty-name)
8132 (Buffer-menu--pretty-file-name): New helper functions.
8133
8134 * loadup.el: Preload tabulated-list.
8135
8136 * emacs-lisp/tabulated-list.el (tabulated-list-sort): Rename from
8137 tabulated-list-sort-column.
8138 (tabulated-list-init-header): Add the initial aligning space even
8139 if tabulated-list-padding is zero.
8140
8141 2012-05-06 Christopher Schmidt <christopher@ch.ristopher.com>
8142
8143 * emacs-lisp/cl-macs.el (cl-expr-contains): Handle cons cells
8144 whose cdr is not a cons cell correctly (bug#11038).
8145
8146 2012-05-06 Chong Yidong <cyd@gnu.org>
8147
8148 * emacs-lisp/tabulated-list.el (tabulated-list-format):
8149 Accept additional plist in column descriptors.
8150 (tabulated-list-init-header): Obey it.
8151 (tabulated-list-get-entry): New function.
8152 (tabulated-list-put-tag): Use it. Use string-width instead of
8153 length.
8154 (tabulated-list--column-number): New function.
8155 (tabulated-list-print): Use it.
8156 (tabulated-list-print-col): New function.
8157 Set `tabulated-list-column-name' property on each column's text.
8158 (tabulated-list-print-entry): Use it.
8159 (tabulated-list-delete-entry, tabulated-list-set-col):
8160 New functions.
8161 (tabulated-list-sort-column): New command (Bug#11337).
8162
8163 * buff-menu.el (list-buffers): Move C-x C-b binding from
8164 buff-menu.el to bindings.el.
8165
8166 * ebuff-menu.el (Electric-buffer-menu-undefined): Use the
8167 :advertised-binding feature.
8168
8169 2012-05-06 Troels Nielsen <bn.troels@gmail.com> (tiny change)
8170
8171 * progmodes/compile.el (compilation-internal-error-properties):
8172 Calculate start position correctly when end-col is set but
8173 end-line is not (Bug#11382).
8174
8175 2012-05-06 Wolfgang Jenkner <wjenkner@inode.at>
8176
8177 * man.el (Man-unindent): Use text-property-default-nonsticky to
8178 prevent untabify from inheriting face properties (Bug#11408).
8179
8180 2012-05-05 Stefan Merten <smerten@oekonux.de>
8181
8182 * textmodes/rst.el: Major merge with upstream development up to
8183 Docutils SVN r7399 / rst.el V1.2.1.
8184
8185 Clarify maintainership and authors.
8186
8187 (rst-extract-version, rst-cvs-header, rst-cvs-rev)
8188 (rst-cvs-timestamp, rst-svn-rev, rst-svn-timestamp)
8189 (rst-official-version, rst-official-cvs-rev, rst-version)
8190 (rst-package-emacs-version-alist): New functions and variables
8191 for version information.
8192
8193 (rst-bullets, rst-uri-schemes, rst-adornment-chars)
8194 (rst-max-inline-length, rst-re-alist-def, rst-re-alist)
8195 (rst-mode-syntax-table, rst-mode): New and corrected functions
8196 and variables representing reStructuredText features.
8197
8198 (rst-re): New function for reStructuredText regexes. Use in
8199 many places.
8200
8201 (rst-deprecated-keys, rst-call-deprecated, rst-define-key)
8202 (rst-mode-map): Rebind keys.
8203
8204 (rst-mode-lazy, rst-font-lock-keywords)
8205 (rst-font-lock-extend-region)
8206 (rst-font-lock-extend-region-internal)
8207 (rst-font-lock-extend-region-extend)
8208 (rst-font-lock-find-unindented-line-limit)
8209 (rst-font-lock-find-unindented-line-match)
8210 (rst-adornment-level, rst-font-lock-adornment-level)
8211 (rst-font-lock-adornment-match)
8212 (rst-font-lock-handle-adornment-pre-match-form)
8213 (rst-font-lock-handle-adornment-matcher): Major revision of
8214 font-locking. Integrate with other code. Use `jit-lock-mode'.
8215
8216 (rst-preferred-adornments, rst-adjust-hook)
8217 (rst-new-adornment-down, rst-preferred-bullets)
8218 (rst-preferred-bullets, rst-indent, rst-indent-width)
8219 (rst-indent-field, rst-indent-literal-normal)
8220 (rst-indent-literal-minimized, rst-indent-comment): Change,
8221 extend and improve customization.
8222
8223 (rst-line-homogeneous-p, rst-line-homogeneous-nodent-p)
8224 (rst-normalize-cursor-position, rst-get-decoration)
8225 (rst-straighten-deco-spacing, rst-re-bullets, rst-re-items)
8226 (rst-rstrip, rst-toc-insert-find-delete-contents)
8227 (rst-shift-fill-region, rst-compute-bullet-tabs)
8228 (rst-debug-print-tabs, rst-debug-mark-found)
8229 (rst-shift-region-guts, rst-shift-region-right)
8230 (rst-shift-region-left, rst-use-char-classes)
8231 (rst-font-lock-keywords-function)
8232 (rst-font-lock-indentation-point)
8233 (rst-font-lock-find-unindented-line-begin)
8234 (rst-font-lock-find-unindented-line-end)
8235 (rst-font-lock-find-unindented-line)
8236 (rst-font-lock-adornment-point, rst-font-lock-level)
8237 (rst-adornment-level-alist): Remove functions and variables.
8238
8239 (rst-compare-adornments, rst-get-adornment-match)
8240 (rst-suggest-new-adornment, rst-get-adornments-around)
8241 (rst-adornment-complete-p, rst-get-next-adornment)
8242 (rst-adjust-adornment, rst-display-adornments-hierarchy)
8243 (rst-straighten-adornments): Standardize function names to
8244 use "adornment" instead of "decoration". Correct callers.
8245 Similar standardizing in many places.
8246
8247 (rst-update-section, rst-adjust, rst-promote-region)
8248 (rst-enumerate-region, rst-bullet-list-region)
8249 (rst-repeat-last-character): Correct use of `interactive'.
8250
8251 (rst-classify-adornment, rst-find-all-adornments)
8252 (rst-get-hierarchy, rst-adjust-adornment, rst-toc-update)
8253 (rst-find-leftmost-column, rst-repeat-last-character):
8254 Refactor functions.
8255
8256 (rst-find-title-line, rst-reset-section-caches)
8257 (rst-get-adornments-around, rst-adjust-adornment-work)
8258 (rst-arabic-to-roman, rst-roman-to-arabic)
8259 (rst-insert-list-pos, rst-insert-list-new-item)
8260 (rst-insert-list-continue, rst-insert-list, rst-forward-line):
8261 New functions.
8262
8263 (rst-all-sections, rst-section-hierarchy)
8264 (rst-arabic-to-roman, rst-initial-enums, rst-initial-items):
8265 New variables.
8266
8267 (rst-toc-return-wincfg, rst-toc-quit-window): Use window
8268 configuration instead of only buffer. Change where necessary.
8269
8270 (rst-line-tabs, rst-compute-tabs, rst-indent-line)
8271 (rst-shift-region, rst-adaptive-fill): New functions for
8272 indentation and filling.
8273
8274 (rst-comment-line-break, rst-comment-indent)
8275 (rst-comment-insert-comment, rst-comment-region)
8276 (rst-uncomment-region): New functions for handling comments.
8277
8278 (rst-compile): Quote shell arguments.
8279
8280 (rst-compile-pdf-preview, rst-compile-slides-preview):
8281 Delete temporary files after use.
8282
8283 2012-05-05 Glenn Morris <rgm@gnu.org>
8284
8285 * calendar/cal-html.el: Optionally include holidays in the output.
8286 Suggested by Ed Reingold <reingold@emr.cs.iit.edu>.
8287 (cal-html-holidays): New option.
8288 (cal-html-css-default): Add holiday entry.
8289 (holiday-in-range): Autoload it.
8290 (cal-html-htmlify-entry): Add optional class argument.
8291 (cal-html-htmlify-list): Add optional holidays argument.
8292 (cal-html-insert-agenda-days): Include holidays in the output.
8293 (cal-html-one-month): Maybe include holidays.
8294
8295 * calendar/holidays.el (holiday-in-range):
8296 Move here from cal-tex-list-holidays.
8297 * calendar/cal-tex.el (cal-tex-list-holidays):
8298 Make it an obsolete alias for holiday-in-range. Update all callers.
8299
8300 2012-05-05 Chong Yidong <cyd@gnu.org>
8301
8302 * select.el (xselect--encode-string): Always use utf-8 for TEXT on
8303 Nextstep.
8304
8305 2012-05-05 Ransom Williams <auvergnerw@gmail.com> (tiny change)
8306
8307 * files.el (file-auto-mode-skip): New var.
8308 (set-auto-mode-1): Use it.
8309
8310 2012-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
8311
8312 * repeat.el: Use lexical-binding.
8313 (repeat-last-self-insert, repeat-num-input-keys-at-self-insert)
8314 (repeat-undo-count): Remove.
8315 (repeat):
8316 * progmodes/octave-mod.el (octave-abbrev-start):
8317 * progmodes/f90.el (f90-abbrev-start):
8318 * face-remap.el (text-scale-adjust):
8319 * kmacro.el (kmacro-call-macro): Use set-temporary-overlay-map.
8320
8321 * emacs-lisp/pcase.el (pcase--let*): New function.
8322 (pcase--expand, pcase-codegen, pcase--q1): Use it to reduce nesting
8323 a bit more.
8324 (pcase--split-pred): Be more clever about ruling out overlap between
8325 a predicate and some constant pattern.
8326 (pcase--q1): Use `null' instead of (eq foo nil).
8327
8328 * subr.el (setq-local, defvar-local): New macros.
8329 (kbd): Redefine as an alias.
8330 (with-selected-window): Leave unrelated frames alone.
8331 (set-temporary-overlay-map): New function.
8332
8333 2012-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
8334
8335 * subr.el (user-error): New function.
8336 * window.el (switch-to-buffer):
8337 * vc/smerge-mode.el (smerge-resolve-function, smerge-resolve)
8338 (smerge-match-conflict):
8339 * simple.el (previous-matching-history-element)
8340 (next-matching-history-element, goto-history-element, undo-more)
8341 (undo-start):
8342 * progmodes/etags.el (visit-tags-table-buffer, find-tag-tag)
8343 (find-tag-noselect, find-tag-in-order, etags-goto-tag-location)
8344 (next-file, tags-loop-scan, list-tags, complete-tag):
8345 * progmodes/compile.el (compilation-loop):
8346 * mouse.el (mouse-minibuffer-check):
8347 * man.el (Man-bgproc-sentinel, Man-goto-page):
8348 * info.el (Info-find-node-2, Info-extract-pointer, Info-history-back)
8349 (Info-history-forward, Info-follow-reference, Info-menu)
8350 (Info-extract-menu-item, Info-extract-menu-counting)
8351 (Info-forward-node, Info-backward-node, Info-next-menu-item)
8352 (Info-last-menu-item, Info-next-preorder, Info-last-preorder)
8353 (Info-next-reference, Info-prev-reference, Info-index)
8354 (Info-index-next, Info-follow-nearest-node)
8355 (Info-copy-current-node-name):
8356 * imenu.el (imenu--make-index-alist)
8357 (imenu-default-create-index-function, imenu-add-to-menubar):
8358 * files.el (basic-save-buffer, recover-file):
8359 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
8360 * emacs-lisp/checkdoc.el (checkdoc-continue, checkdoc-comments)
8361 (checkdoc-message-text, checkdoc-defun):
8362 * dabbrev.el (dabbrev-completion, dabbrev--abbrev-at-point):
8363 * cus-edit.el (customize-changed-options, customize-rogue)
8364 (customize-saved, custom-variable-set, custom-variable-mark-to-save)
8365 (custom-variable-mark-to-reset-standard)
8366 (custom-variable-reset-backup, custom-face-mark-to-reset-standard)
8367 (custom-file):
8368 * completion.el (check-completion-length):
8369 * comint.el (comint-search-arg)
8370 (comint-previous-matching-input-string-position)
8371 (comint-previous-matching-input)
8372 (comint-replace-by-expanded-history-before-point, comint-send-input)
8373 (comint-copy-old-input, comint-backward-matching-input)
8374 (comint-goto-process-mark, comint-set-process-mark):
8375 * calendar/calendar.el (calendar-cursor-to-date): Use it.
8376 * bindings.el (debug-ignored-errors): Remove regexps, add `user-error'.
8377
8378 2012-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
8379
8380 * dabbrev.el (dabbrev--ignore-case-p): New function.
8381 (dabbrev-completion, dabbrev-expand, dabbrev--substitute-expansion):
8382 Use it.
8383
8384 * files.el (automount-dir-prefix): Mark as obsolete.
8385
8386 2012-05-04 Glenn Morris <rgm@gnu.org>
8387
8388 * patcomp.el, play/bruce.el: Move to obsolete/.
8389
8390 2012-05-04 Paul Eggert <eggert@cs.ucla.edu>
8391
8392 Fix minor Y10k bugs.
8393 * arc-mode.el (archive-unixdate):
8394 * autoinsert.el (auto-insert-alist):
8395 * calc/calc-forms.el (math-this-year):
8396 * emacs-lisp/copyright.el (copyright-current-year)
8397 (copyright-update-year, copyright):
8398 * tar-mode.el (tar-clip-time-string):
8399 * time.el (display-time-update):
8400 Don't assume years have 4 digits.
8401
8402 2012-05-04 Chong Yidong <cyd@gnu.org>
8403
8404 * dos-w32.el (file-name-buffer-file-type-alist)
8405 (direct-print-region-use-command-dot-com):
8406 * ffap.el (ffap-menu-regexp):
8407 * find-file.el (ff-special-constructs):
8408 * follow.el (follow-debug):
8409 * forms.el (forms--debug):
8410 * iswitchb.el (iswitchb-all-frames):
8411 * ido.el (ido-all-frames):
8412 * emacs-lisp/timer.el (timer-max-repeats):
8413 * mail/feedmail.el (feedmail-mail-send-hook)
8414 (feedmail-mail-send-hook-queued):
8415 * mail/footnote.el (footnote-signature-separator):
8416 * mail/mailabbrev.el (mail-alias-separator-string)
8417 (mail-abbrev-mode-regexp):
8418 * mail/rmail.el (rmail-speedbar-match-folder-regexp):
8419 * progmodes/idlwave.el (idlwave-libinfo-file)
8420 (idlwave-default-completion-case-is-down)
8421 (idlwave-library-routines): Convert defvars to defcustoms.
8422
8423 * mail/rmail.el (rmail-decode-mime-charset):
8424 * progmodes/idlw-shell.el (idlwave-shell-print-expression-function)
8425 (idlwave-shell-fix-inserted-breaks)
8426 (idlwave-shell-activate-alt-keybindings)
8427 (idlwave-shell-use-breakpoint-glyph):
8428 * facemenu.el (facemenu-unlisted-faces): Delete obsolete vars.
8429
8430 2012-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
8431
8432 * minibuffer.el (completion--twq-all): Beware completion-ignore-case.
8433
8434 2012-05-03 Wilson Snyder <wsnyder@wsnyder.org>
8435
8436 * progmodes/verilog-mode.el (font-lock-keywords):
8437 Fix mis-highligting auto. Reported by Craig Barner.
8438 (verilog-auto, verilog-auto-undef): Add AUTOUNDEF to remove
8439 defines from global name space. Reported by Dan Dever.
8440 (verilog-auto-reset, verilog-auto-reset-widths)
8441 (verilog-auto-tieoff): Support using unbased numbers for
8442 AUTORESET and AUTOTIEOFF.
8443 (verilog-submit-bug-report): Update variable list.
8444 (verilog-read-auto-params): Fix AUTOINPUT regexps containing
8445 parenthesis from not matching. Reported by Michael Rytting.
8446 (verilog-auto-template-lint): Fix hash error when linting modules
8447 with no used templates.
8448 (verilog-warn, verilog-warn-error)
8449 (verilog-warn-fatal): When non-interactive report multiple
8450 warnings before exiting. Suggested by Brad Dobbie.
8451 (verilog-auto-template-lint, verilog-auto-template-warn-unused)
8452 (verilog-read-auto-template): Add `verilog-auto-template-warn-unused'
8453 to report unused template errors. Reported by Brad Dobbie.
8454 (verilog-read-decls): Fix AUTOWIRE etc on supply0, supply1 type
8455 nets, bug438. Reported by Vns Blore.
8456 (verilog-auto-inout-module, verilog-auto-reg)
8457 (verilog-read-decls, verilog-read-sub-decls-sig)
8458 (verilog-signals-edit-wire-reg, verilog-signals-with):
8459 Fix passing of Verilog data types in ANSI input/output ports
8460 such as "output logic" into the AUTOs. Special case "wire" and
8461 "reg" for backwards compatibility presuming Verilog 2001.
8462 (verilog-auto-ascii-enum): Add "auto enum" as alias.
8463 (verilog-preprocess): Fix replication of preprocess output.
8464 Reported by Brad Dobbie.
8465 (verilog-auto-inst-interfaced-ports):
8466 Create verilog-auto-inst-interfaced-ports, bug429.
8467 Reported by Julian Gorfajn.
8468 (verilog-after-save-font-hook)
8469 (verilog-before-save-font-hook): New variable.
8470 (verilog-modi-cache-results, verilog-save-font-mod-hooked)
8471 (verilog-save-font-mods): Wrap disabling fontification, reported
8472 by David Rogoff.
8473 (verilog-do-indent, verilog-pretty-declarations-auto)
8474 (verilog-sk-def-reg): Fix obeying `verilog-auto-lineup', bug305.
8475 Reported by Pierre-David Pfister.
8476 (verilog-set-auto-endcomments): Fix endtask auto comments outside
8477 of class declarations, bug292. Reported by Kevin Heilman.
8478 (verilog-read-decls): Fix 'parameter type' not appearing in
8479 AUTOINSTPARAM, bug340. Reported by Jonathan Greenlaw.
8480 (verilog-auto-logic): Fix when AUTOLOGIC present to properly do
8481 AUTOINPUTs, bug411. Reported by Jonathan Greenlaw.
8482 (verilog-read-auto-lisp): Avoid syntax-ppss warning on AUTOLISP.
8483 Reported by David Kravitz.
8484
8485 2012-05-03 Michael McNamara <mac@mail.brushroad.com>
8486
8487 * progmodes/verilog-mode.el (verilog-pretty-expr): Don't line up
8488 assignment with tests in ifs and for loops.
8489 (verilog-extended-complete-re, verilog-complete-reg): Change so
8490 that DPI inport functions don't look like fuction declarations.
8491 (verilog-pretty-expr): Don't line up assignment
8492 operations to the test and increment in if and for loops
8493 (verilog-extended-complete-re, verilog-complete-reg): Change so
8494 that DPI inport functions don't look like fuction declarations.
8495
8496 2012-05-03 Kenichi Handa <handa@m17n.org>
8497
8498 * mail/rmailmm.el (rmail-show-mime): Catch an error caused by text
8499 decoding, and show a warning message without signaling an error
8500 (Bug#11282).
8501
8502 2012-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
8503
8504 * emacs-lisp/bytecomp.el
8505 (byte-compile-file-form-custom-declare-variable): Compile all elements,
8506 since cconv.el might have introduced :fun-body, internal-make-closure,
8507 and friends for bytecomp to handle (bug#11391).
8508 * custom.el (defcustom): Avoid ((λ ..) ..).
8509
8510 2012-05-02 Stefan Monnier <monnier@iro.umontreal.ca>
8511
8512 * subr.el (read-passwd): Better clean after ourselves (bug#11392).
8513
8514 2012-05-02 Juanma Barranquero <lekktu@gmail.com>
8515
8516 * notifications.el (dbus-debug):
8517 * term/linux.el (gpm-mouse-enable):
8518 * term/screen.el (xterm-register-default-colors): Declare.
8519
8520 2012-05-02 Chong Yidong <cyd@gnu.org>
8521
8522 * cus-start.el (gc-cons-percentage, exec-suffixes)
8523 (dos-display-scancodes, dos-hyper-key, dos-super-key)
8524 (dos-keypad-mode, debug-on-signal, vertical-centering-font-regexp)
8525 (make-cursor-line-fully-visible, void-text-area-pointer)
8526 (font-list-limit): Add customization data.
8527
8528 * allout.el (allout-exposure-change-functions)
8529 (allout-structure-added-functions)
8530 (allout-structure-deleted-functions)
8531 (allout-structure-shifted-functions): Rename abnormal hooks from
8532 *-hook, and convert to defcustoms.
8533 (allout-after-copy-or-kill-hook, allout-post-undo-hook):
8534 Convert to defcustoms.
8535 (allout-mode-hook, allout-mode-deactivate-hook): Doc fix.
8536
8537 * allout-widgets.el: Hook callers changed.
8538
8539 2012-05-02 Eli Zaretskii <eliz@gnu.org>
8540
8541 * mail/rmail.el (rmail-yank-current-message): Use the encoding of
8542 the yanked message in preference to the default value of
8543 buffer-file-coding-system.
8544
8545 2012-05-02 Martin Rudalics <rudalics@gmx.at>
8546
8547 * window.el (display-buffer--action-function-custom-type):
8548 Fix entry.
8549
8550 2012-05-02 Alan Mackenzie <acm@muc.de>
8551
8552 * progmodes/cc-defs.el (c-version): Update to 5.32.3.
8553
8554 2012-05-01 Glenn Morris <rgm@gnu.org>
8555
8556 * cus-start.el (suggest-key-bindings): Remove, now it is in Lisp.
8557
8558 * eshell/esh-cmd.el (eshell-debug-command): Doc fix. Add :set.
8559
8560 * cus-edit.el (custom-variable-documentation): Simplify with format.
8561
8562 2012-05-01 Aaron S. Hawley <aaron.s.hawley@gmail.com>
8563 Stefan Monnier <monnier@iro.umontreal.ca>
8564
8565 * simple.el (suggest-key-bindings, execute-extended-command):
8566 Move from keyboard.c.
8567
8568 2012-05-01 Chong Yidong <cyd@gnu.org>
8569
8570 * follow.el: Eliminate advice.
8571 (set-process-filter, process-filter, sit-for): Advice deleted.
8572 (follow-mode-off-hook): Obsolete hook removed.
8573 (follow-avoid-tail-recenter-p, follow-process-filter-alist):
8574 Vars deleted.
8575 (follow-auto): Use a :set function.
8576 (follow-mode): Rewritten. Don't advise process filters.
8577 (follow-switch-to-current-buffer-all, follow-scroll-up)
8578 (follow-scroll-down): Assume follow-mode is bound.
8579 (follow-comint-scroll-to-bottom)
8580 (follow-align-compilation-windows): New functions.
8581 (follow--window-sorter): New function.
8582 (follow-all-followers): Use it to explicitly sort windows by their
8583 positions; don't make assumptions about next-window order.
8584 (follow-windows-start-end, follow-delete-other-windows-and-split)
8585 (follow-calc-win-start): Doc fix.
8586 (follow-windows-aligned-p, follow-select-if-visible): Don't call
8587 vertical-motion unnecessarily.
8588 (follow-adjust-window): New function.
8589 (follow-post-command-hook): Use it.
8590 (follow-call-set-process-filter, follow-call-process-filter)
8591 (follow-intercept-process-output, follow-tidy-process-filter-alist)
8592 (follow-stop-intercept-process-output, follow-generic-filter):
8593 Functions deleted.
8594 (follow-scroll-bar-toolkit-scroll, follow-scroll-bar-drag)
8595 (follow-scroll-bar-scroll-up, follow-scroll-bar-scroll-down):
8596 New functions, replacing advice on scroll-bar-* commands.
8597 (follow-mwheel-scroll): New function (Bug#4112).
8598
8599 * comint.el (comint-adjust-point): New function.
8600 (comint-postoutput-scroll-to-bottom): Use it.
8601 Call follow-comint-scroll-to-bottom for Follow mode buffers.
8602
8603 2012-05-01 Glenn Morris <rgm@gnu.org>
8604
8605 * term/AT386.el, term/apollo.el, term/bobcat.el, term/cygwin.el:
8606 * term/iris-ansi.el, term/linux.el, term/lk201.el, term/news.el:
8607 * term/screen.el, term/vt102.el, term/vt125.el, term/vt200.el:
8608 * term/vt201.el, term/vt220.el, term/vt240.el, term/vt300.el:
8609 * term/vt320.el, term/vt400.el, term/vt420.el, term/wyse50.el:
8610 Remove no-byte-compile setting.
8611
8612 2012-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
8613
8614 * minibuffer.el (completion-table-with-quoting): Fix compatibility
8615 all-completions code to not return a number in the last cdr.
8616
8617 2012-04-30 Leo Liu <sdl.web@gmail.com>
8618
8619 * ibuf-ext.el (ibuffer-diff-buffer-with-file-1): Avoid buffer
8620 read-only error.
8621
8622 2012-04-29 Chong Yidong <cyd@gnu.org>
8623
8624 * follow.el (follow-calc-win-end): Rewrite to handle partial
8625 screen lines correctly (Bug#8390).
8626 (follow-avoid-tail-recenter): Minor cleanup.
8627
8628 2012-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
8629
8630 Avoid the obsolete `assoc' package.
8631 * speedbar.el (speedbar-refresh): Avoid adelete.
8632 (speedbar-file-lists): Simplify and avoid aput.
8633 * man.el (Man--sections, Man--refpages): New vars, replacing
8634 Man-sections-alist and Man-refpages-alist.
8635 (Man-build-section-alist, Man-build-references-alist):
8636 Use them; avoid aput.
8637 (Man--last-section, Man--last-refpage): New vars.
8638 (Man-follow-manual-reference): Use them.
8639 Use the `default' arg of completing-read.
8640 (Man-goto-section): Idem. Move prompt to the `interactive' spec.
8641
8642 2012-04-27 Chong Yidong <cyd@gnu.org>
8643
8644 * vc/diff.el (diff-sentinel): Go to bob (Bug#10259).
8645
8646 * startup.el (x-apply-session-resources): New function.
8647
8648 * term/ns-win.el (ns-initialize-window-system):
8649 * term/w32-win.el (w32-initialize-window-system):
8650 * term/x-win.el (x-initialize-window-system): Use it to properly
8651 set menu-bar-mode and other vars from X resources, even if the
8652 initial frame is not a window-system frame (Bug#2299).
8653
8654 * subr.el (read-key): Avoid running filter function when setting
8655 up temporary tool bar entries (Bug#9922).
8656
8657 2012-04-27 Andreas Schwab <schwab@linux-m68k.org>
8658
8659 * vc/vc-git.el (vc-git-state): Fix regexp matching diff output.
8660 (Bug#11344)
8661
8662 2012-04-27 Chong Yidong <cyd@gnu.org>
8663
8664 * select.el (xselect--encode-string): New function, split from
8665 xselect-convert-to-string.
8666 (xselect-convert-to-string): Use it.
8667 (xselect-convert-to-filename, xselect-convert-to-os)
8668 (xselect-convert-to-host, xselect-convert-to-user): Ensure that
8669 returned strings are properly encoded (Bug#11315).
8670
8671 2012-04-27 Chong Yidong <cyd@gnu.org>
8672
8673 * simple.el (delete-active-region): Move to killing custom group.
8674
8675 2012-04-27 Andreas Schwab <schwab@linux-m68k.org>
8676
8677 * progmodes/which-func.el (which-func-current): Quote %
8678 characters for mode-line processing.
8679
8680 2012-04-27 Chong Yidong <cyd@gnu.org>
8681
8682 * xml.el (xml-parse-region, xml-parse-tag): Avoid errors due to
8683 reaching eob (Bug#11286).
8684
8685 2012-04-27 Eli Zaretskii <eliz@gnu.org>
8686
8687 * progmodes/gdb-mi.el (gdb-control-level): New variable.
8688 (gdb): Make it buffer-local and init to zero.
8689 (gdb-control-commands-regexp): New variable.
8690 (gdb-send): Don't wrap in "-interpreter-exec console" if
8691 gdb-control-level is positive. Increment gdb-control-level
8692 whenever the command matches gdb-control-commands-regexp, and
8693 decrement it each time the command is "end". (Bug#11279)
8694
8695 2012-04-27 Martin Rudalics <rudalics@gmx.at>
8696
8697 * window.el (adjust-window-trailing-edge, enlarge-window)
8698 (shrink-window, window-resize):
8699 * mouse.el (mouse-drag-line): Fix resizing of minibuffer
8700 windows (Bug#11276).
8701
8702 2012-04-27 Chong Yidong <cyd@gnu.org>
8703
8704 * progmodes/pascal.el (pascal--extra-indent): Rename from ind, to
8705 fix "missing prefix" warning. All callers changed.
8706
8707 2012-04-27 Stefan Monnier <monnier@iro.umontreal.ca>
8708
8709 * emacs-lisp/assoc.el: Move to obsolete/.
8710
8711 2012-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
8712
8713 * emacs-lisp/assoc.el (aget): Fix dynamic-scoping issue (bug#11352).
8714
8715 * term/ns-win.el (ns-define-service):
8716 * progmodes/pascal.el (pascal-goto-defun):
8717 * progmodes/js.el (js--read-tab):
8718 * progmodes/etags.el (tags-lazy-completion-table):
8719 * emacs-lisp/syntax.el (syntax-propertize-via-font-lock):
8720 * emacs-lisp/ewoc.el (ewoc--wrap):
8721 * emacs-lisp/assoc.el (aput, adelete, amake):
8722 * doc-view.el (doc-view-convert-current-doc):
8723 * vc/diff.el (diff-no-select): Replace lexical-let by lexical-binding.
8724
8725 2012-04-26 Chong Yidong <cyd@gnu.org>
8726
8727 * image.el (image-type-from-buffer): Only return supported image
8728 type (Bug#9045).
8729
8730 * vc/diff-mode.el (diff-beginning-of-hunk): Return a meaningful
8731 value, for symmetry with diff-end-of-hunk.
8732 (diff-split-hunk, diff-find-source-location)
8733 (diff-ignore-whitespace-hunk, diff-refine-hunk): Use it.
8734 (diff-bounds-of-hunk, diff-bounds-of-file): New functions.
8735 (diff-restrict-view, diff-hunk-kill, diff-file-kill): Use them to
8736 compute the relevant hunk or file properly (Bug#6005).
8737 (diff-file-junk-re): Add bzr's "modified file" tag (Bug#6041).
8738
8739 2012-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
8740
8741 * vc/vc-mtn.el:
8742 * vc/vc-hg.el:
8743 * vc/vc-git.el:
8744 * vc/vc-dir.el:
8745 * vc/vc-cvs.el:
8746 * vc/vc-bzr.el:
8747 * vc/vc-arch.el:
8748 * vc/vc.el: Replace lexical-let by lexical-binding.
8749 * minibuffer.el (lazy-completion-table): Avoid ((λ ...) ...).
8750 * emacs-lisp/cl-macs.el (lexical-let): Fix use in lexical-binding.
8751 * emacs-lisp/cconv.el (cconv-analyse-form): Warn use of ((λ ...) ...).
8752
8753 2012-04-26 Chong Yidong <cyd@gnu.org>
8754
8755 * vc/diff-mode.el (diff-undo): New command (Bug#5302).
8756 (diff-mode-shared-map): Bind it to / and [remap undo].
8757
8758 * vc/ediff-wind.el (ediff-setup-windows-default): New function.
8759 (ediff-window-setup-function): Use it as the default, to set up
8760 windows based on whether the current frame is graphical (Bug#2138).
8761 (ediff-choose-window-setup-function-automatically): Make obsolete.
8762
8763 * vc/ediff-init.el: Always define ediff-pixel-width/height.
8764
8765 2012-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
8766
8767 * ffap.el: Remove old code for obsolete package.
8768 (ffap-complete-as-file-p): Remove.
8769
8770 Use completion-table-with-quoting for comint and pcomplete.
8771 * comint.el (comint--unquote&requote-argument)
8772 (comint--unquote-argument, comint--requote-argument): New functions.
8773 (comint--unquote&expand-filename, comint-unquote-filename): Obsolete.
8774 (comint-quote-filename): Use regexp-opt-charset.
8775 (comint--common-suffix, comint--common-quoted-suffix)
8776 (comint--table-subvert): Remove.
8777 (comint-unquote-function, comint-requote-function): New vars.
8778 (comint--complete-file-name-data): Use them with
8779 completion-table-with-quoting.
8780 * pcmpl-unix.el (pcomplete/scp): Use completion-table-subvert.
8781 * pcomplete.el (pcomplete-arg-quote-list)
8782 (pcomplete-quote-arg-hook, pcomplete-quote-argument): Obsolete.
8783 (pcomplete-unquote-argument-function): Default to non-nil.
8784 (pcomplete-unquote-argument): Simplify.
8785 (pcomplete--common-quoted-suffix): Remove.
8786 (pcomplete-requote-argument-function): New var.
8787 (pcomplete--common-suffix): New function.
8788 (pcomplete-completions-at-point): Use completion-table-with-quoting
8789 and completion-table-subvert.
8790
8791 * minibuffer.el: Use completion-table-with-quoting for read-file-name.
8792 (minibuffer--double-dollars): Preserve properties.
8793 (completion--sifn-requote): New function.
8794 (completion--file-name-table): Rewrite using it and c-t-with-quoting.
8795
8796 * minibuffer.el: Add support for completion of quoted/escaped data.
8797 (completion-table-with-quoting, completion-table-subvert): New funs.
8798 (completion--twq-try, completion--twq-all): New functions.
8799 (completion--nth-completion): New function.
8800 (completion-try-completion, completion-all-completions): Use it.
8801
8802 2012-04-25 Leo Liu <sdl.web@gmail.com>
8803
8804 * progmodes/python.el (python-pdbtrack-get-source-buffer):
8805 Use compilation-message if available to find real filename.
8806
8807 2012-04-25 Chong Yidong <cyd@gnu.org>
8808
8809 * vc/diff-mode.el (diff-setup-whitespace): New function.
8810 (diff-mode): Use it.
8811
8812 * vc/diff.el (diff-sentinel):
8813 * vc/vc.el (vc-diff-finish): Call diff-setup-whitespace to assign
8814 Whitespace mode variables based on diff style (Bug#8612).
8815
8816 2012-04-25 Leo Liu <sdl.web@gmail.com>
8817
8818 * progmodes/python.el (python-send-region): Add suffix .py to the
8819 temp file.
8820
8821 * files.el (auto-mode-alist): Use javascript-mode instead.
8822
8823 2012-04-25 Alex Harsanyi <AlexHarsanyi@gmail.com>
8824
8825 Sync with soap-client repository. Support SOAP simpleType (Bug#10331).
8826
8827 * net/soap-client.el (soap-resolve-references-for-sequence-type)
8828 (soap-resolve-references-for-array-type): Hack to prevent self
8829 references, see Bug#9.
8830 (soap-parse-envelope): Report the contents of the 'detail' node
8831 when receiving a fault reply.
8832 (soap-parse-envelope): Report the contents of the entire 'detail' node.
8833
8834 * net/soap-inspect.el (soap-sample-value-for-simple-type)
8835 (soap-inspect-simple-type): New function.
8836
8837 * net/soap-client.el (soap-simple-type): New struct.
8838 (soap-default-xsd-types, soap-default-soapenc-types)
8839 (soap-decode-basic-type, soap-encode-basic-type):
8840 support unsignedInt and double basic types.
8841 (soap-resolve-references-for-simple-type)
8842 (soap-parse-simple-type, soap-encode-simple-type): New function.
8843 (soap-parse-schema): Parse xsd:simpleType declarations.
8844
8845 * net/soap-client.el (soap-default-xsd-types)
8846 (soap-default-soapenc-types): Add integer, byte and anyURI types.
8847 (soap-parse-complex-type-complex-content): Use `soap-wk2l' to find
8848 the local name of "soapenc:Array".
8849 (soap-decode-basic-type, soap-encode-basic-type): Support encoding
8850 decoding integer, byte and anyURI xsd types.
8851
8852 2012-04-25 Chong Yidong <cyd@gnu.org>
8853
8854 * cus-edit.el (custom-buffer-create-internal): Update header text.
8855
8856 2012-04-25 Eli Zaretskii <eliz@gnu.org>
8857
8858 * progmodes/gdb-mi.el (gdb-init-1): Condition Windows-specific
8859 settings on 'system-type', not on 'window-system'. On MS-Windows,
8860 set interactive-mode on in GDB.
8861
8862 2012-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
8863
8864 * progmodes/ruby-mode.el: Simplify last change, and cleanup code.
8865 (ruby-syntax-propertize-regexp): Remove.
8866 (ruby-syntax-propertize-function): Split regexp into chunks.
8867 Match following code directly.
8868
8869 2012-04-24 Dmitry Gutov <dgutov@yandex.ru>
8870
8871 * progmodes/ruby-mode.el: Handle Cucumber defs (bug#6286).
8872 (ruby-syntax-propertize-regexp): New function.
8873 (ruby-syntax-propertize-function): Use it to handle regexp not preceded
8874 by a special keyword.
8875
8876 * progmodes/ruby-mode.el: Handle general delimited literals (bug#6286).
8877 (ruby-syntax-general-delimiters-goto-beg)
8878 (ruby-syntax-propertize-general-delimiters): New functions.
8879 (ruby-syntax-propertize-function): Use them to handle GDL.
8880 (ruby-font-lock-keywords): Move old handling of GDL...
8881 (ruby-font-lock-syntactic-keywords): .. to here.
8882 (ruby-calculate-indent): Adjust indentation for GDL.
8883
8884 2012-04-24 Michael Albinus <michael.albinus@gmx.de>
8885
8886 * notifications.el (top): Remove unneeded declarations.
8887 (notifications-specification-version): Change to "1.2".
8888 (notifications-interface, notifications-notify-method)
8889 (notifications-close-notification-method): Fix docstring.
8890 (notifications-get-capabilities-method): New defconst.
8891 (notifications-notify): Add :action-items, :resident and
8892 :transient hints. Change "image_data" to "image-data" and
8893 "image_path" to "image-path".
8894 (notifications-get-capabilities): New defun.
8895
8896 2012-04-24 Leo Liu <sdl.web@gmail.com>
8897
8898 * progmodes/python.el: Move hideshow setup to the end.
8899
8900 2012-04-24 Martin Rudalics <rudalics@gmx.at>
8901
8902 * window.el (handle-select-window): Clear echo area since this is
8903 no more done by read_char (Bug#11304).
8904
8905 2012-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
8906
8907 * ibuffer.el (ibuffer-mode-map): Bind `/ m' to filter-used-mode
8908 and `/ M' to filter-derived-mode.
8909 * ibuf-ext.el (ibuffer-list-buffer-modes): Simplify; avoid add-to-list.
8910 (ibuffer-filter-by-mode, ibuffer-filter-by-used-mode)
8911 (ibuffer-mark-by-mode): Use default rather than initial-input.
8912 (ibuffer-filter-by-derived-mode): Autoload and require-match.
8913
8914 2012-04-24 Ivan Andrus <darthandrus@gmail.com> (tiny change)
8915
8916 * ibuf-ext.el (ibuffer-list-buffer-modes): Add `include-parents' arg.
8917 (ibuffer-filter-by-derived-mode): New filter.
8918 * ibuffer.el (ibuffer-mode-map): Bind to `/ w'.
8919
8920 2012-04-23 Andreas Politz <politza@fh-trier.de>
8921
8922 * subr.el (accept-change-group): Fix arg usage (Bug#6095).
8923
8924 2012-04-23 Chong Yidong <cyd@gnu.org>
8925
8926 * cus-edit.el (customize-apropos, customize-apropos-options):
8927 Disable matching of non-option variables (Bug#11176).
8928 (customize-option, customize-option-other-window)
8929 (customize-changed-options): Doc fix.
8930 (customize-apropos-options, customize-apropos-faces)
8931 (customize-apropos-groups): Use apropos-read-pattern (Bug#11124).
8932
8933 * apropos.el (apropos-read-pattern): Make prompt less cryptic.
8934 Fix word list splitting (Bug#11132).
8935 (apropos-symbol, apropos-keybinding, apropos-label)
8936 (apropos-property, apropos-function-button)
8937 (apropos-variable-button, apropos-misc-button): New faces.
8938 (apropos-symbol-face, apropos-keybinding-face)
8939 (apropos-label-face, apropos-property-face, apropos-match-face):
8940 Variables removed (Bug#8396).
8941 (apropos-library-button, apropos-format-plist, apropos-print)
8942 (apropos-print-doc, apropos-describe-plist): Callers changed.
8943
8944 2012-04-23 Michael Albinus <michael.albinus@gmx.de>
8945
8946 * net/xesam.el (xesam-mode-map): Use let-bound map in
8947 initialization. (Bug#11292)
8948
8949 2012-04-23 Agustín Martín Domingo <agustin.martin@hispalinux.es>
8950
8951 Preserve ispell session localwords when switching back to
8952 original buffer.
8953
8954 * textmodes/ispell.el (ispell-buffer-session-localwords):
8955 New buffer-local variable to hold buffer session localwords.
8956 (ispell-kill-ispell): Add option 'clear to delete session
8957 localwords.
8958 (ispell-command-loop, ispell-change-dictionary)
8959 (ispell-buffer-local-words): Preserve session localwords when
8960 needed.
8961
8962 * textmodes/flyspell.el (flyspell-process-localwords)
8963 (flyspell-do-correct): Preserve session localwords when needed.
8964
8965 2012-04-23 Agustín Martín Domingo <agustin.martin@hispalinux.es>
8966
8967 * textmodes/ispell.el (ispell-insert-word) Remove unneeded function
8968 using obsolete `translation-table-for-input'.
8969 (ispell-word, ispell-process-line, ispell-complete-word):
8970 Use plain `insert' instead of removed `ispell-insert-word'.
8971
8972 2012-04-22 Chong Yidong <cyd@gnu.org>
8973
8974 * cus-edit.el (custom-variable-menu)
8975 (custom-variable-reset-saved, custom-face-menu)
8976 (custom-face-reset-saved): If there is no saved value, make the
8977 "reset-saved" operation bring back the default (Bug#9509).
8978 (custom-face-state): Properly detect themed faces.
8979
8980 * faces.el (face-spec-set): Stop supporting deprecated form of
8981 third arg.
8982
8983 2012-04-22 Michael Albinus <michael.albinus@gmx.de>
8984
8985 Move functions from C to Lisp. Make non-blocking method calls
8986 the default. Implement further D-Bus standard interfaces.
8987
8988 * net/dbus.el (dbus-message-internal): Declare function.
8989 Remove unneeded function declarations.
8990 (defvar dbus-message-type-invalid, dbus-message-type-method-call)
8991 (dbus-message-type-method-return, dbus-message-type-error)
8992 (dbus-message-type-signal): Declare variables. Remove local
8993 definitions.
8994 (dbus-interface-dbus, dbus-interface-peer)
8995 (dbus-interface-introspectable, dbus-interface-properties)
8996 (dbus-path-emacs, dbus-interface-emacs, dbus-return-values-table):
8997 Adapt docstring.
8998 (dbus-interface-objectmanager): New defconst.
8999 (dbus-call-method, dbus-call-method-asynchronously)
9000 (dbus-send-signal, dbus-method-return-internal)
9001 (dbus-method-error-internal, dbus-register-service)
9002 (dbus-register-signal, dbus-register-method): New defuns, moved
9003 from dbusbind.c
9004 (dbus-call-method-handler, dbus-setenv)
9005 (dbus-get-all-managed-objects, dbus-managed-objects-handler):
9006 New defuns.
9007 (dbus-call-method-non-blocking): Make it an obsolete function.
9008 (dbus-unregister-object, dbus-unregister-service)
9009 (dbus-handle-event, dbus-register-property)
9010 (dbus-property-handler): Obey the new structure of
9011 `bus-registered-objects'.
9012 (dbus-introspect): Use `dbus-call-method'. Use a timeout.
9013 (dbus-get-property, dbus-set-property, dbus-get-all-properties):
9014 Use `dbus-call-method'.
9015
9016 2012-04-22 Chong Yidong <cyd@gnu.org>
9017
9018 * cus-edit.el (custom-commands, custom-reset-menu)
9019 (Custom-reset-standard): Tweak labels.
9020 (custom-reset-button-menu): Change default to t.
9021 (custom-buffer-create-internal): For the custom-reset-button-menu
9022 case, put the revert button first.
9023 (custom-group-subtitle): New face.
9024 (custom-group-value-create): Align docstring to a specific column.
9025
9026 * wid-edit.el (widget-documentation-link-add): Don't handle
9027 indentation in this function.
9028 (widget-documentation-string-indent-to): New function.
9029 (widget-documentation-string-value-create): Use it.
9030
9031 * autorevert.el (auto-revert):
9032 * epg-config.el (epg):
9033 * ibuffer.el (ibuffer):
9034 * mpc.el (mpc):
9035 * ses.el (ses):
9036 * eshell/eshell.el (eshell):
9037 * net/ange-ftp.el (ange-ftp):
9038 * progmodes/ebnf2ps.el (postscript):
9039 * progmodes/flymake.el (flymake):
9040 * progmodes/prolog.el (prolog):
9041 * progmodes/verilog-mode.el (verilog-mode):
9042 * progmodes/which-func.el (which-func):
9043 * term/xterm.el (xterm):
9044 * textmodes/picture.el (picture):
9045 * textmodes/tildify.el (tildify):
9046 * vc/ediff.el (ediff): Tweak defgroups to improve presentation in
9047 customization buffers.
9048
9049 2012-04-22 Alan Mackenzie <acm@muc.de>
9050
9051 * progmodes/cc-engine.el (c-append-lower-brace-pair-to-state-cache):
9052 Adding a ) can hide the resulting (..) from searches. Fix it.
9053 Bound the backward search to the position of the existing (.
9054
9055 2012-04-21 Juanma Barranquero <lekktu@gmail.com>
9056
9057 * progmodes/verilog-mode.el (verilog-mode): Check whether
9058 which-func-modes is t before adding verilog-mode.
9059 Reported by Andy Moreton <andrewjmoreton@gmail.com>.
9060
9061 2012-04-21 Leo Liu <sdl.web@gmail.com>
9062
9063 * net/rcirc.el (rcirc): Avoid error when process-contact returns t.
9064
9065 2012-04-21 Michael Vehrs <Michael.Burschik@gmx.de>
9066
9067 * woman.el: Add support for "T{ T}" tbl syntax, and fix the
9068 filling of the last column of a table (Bug#5635).
9069 (woman-find-next-control-line): New arg, specifying an additional
9070 regexp component for the control line.
9071 (woman2-roff-buffer): Use it.
9072 (woman-break-table): New function.
9073 (woman2-TS): Use it.
9074
9075 2012-04-21 Chong Yidong <cyd@gnu.org>
9076
9077 * woman.el (woman-set-buffer-display-table, woman-decode-region)
9078 (woman-horizontal-escapes, woman-negative-vertical-space)
9079 (woman-tab-to-tab-stop, woman2-fc, woman2-TS)
9080 (WoMan-warn-ignored): Use ?\s instead of ?\ .
9081
9082 2012-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
9083
9084 * minibuffer.el (completion-file-name-table): Complete user names.
9085
9086 2012-04-20 Leo Liu <sdl.web@gmail.com>
9087
9088 * font-lock.el (lisp-font-lock-keywords-2): Add pcase, pcase-let
9089 and pcase-let*.
9090
9091 2012-04-20 Chong Yidong <cyd@gnu.org>
9092
9093 * server.el (server-execute): Respect initial-buffer-choice if it
9094 is a string and there are no files to open (Bug#2825).
9095 (server-create-window-system-frame, server-create-tty-frame):
9096 Don't switch buffers here.
9097 (server-process-filter): Only try to open a window system frame if
9098 compiled with graphical support (Bug#8314).
9099
9100 2012-04-20 Dan Nicolaescu <dann@gnu.org>
9101
9102 * battery.el (battery-echo-area-format): Display remaining time
9103 for sysfs backend too (Bug#11269).
9104 (battery-linux-sysfs): Fix conditional for the charge.
9105
9106 2012-04-20 Chong Yidong <cyd@gnu.org>
9107
9108 * progmodes/gdb-mi.el (gdb): Revert previous change.
9109 (gdb-inferior-io--init-proc): New function.
9110 (gdb-init-1): Use it.
9111 (gdb-inferior-io-sentinel): New sentinel for the gdb-inferior pty,
9112 responsible for allocating a new pty and hooking it to gdb when
9113 the old pty gets an EIO due to process exit.
9114 (gdb-delchar-or-quit): New command. Bind it in gdb-mi buffers.
9115 (gdb-tooltip-print): Don't use obsolete tooltip-use-echo-area.
9116 (gdb-inferior-io--maybe-delete-pty): Move into gdb-reset.
9117
9118 2012-04-20 Eli Zaretskii <eliz@gnu.org>
9119
9120 * window.el (window-min-size, window-sizable, window-min-delta)
9121 (window-max-delta, window--resizable, window-resizable)
9122 (window-total-size, window-full-height-p, window-full-width-p)
9123 (window-in-direction, window--resize-mini-window, window-resize)
9124 (window--resize-child-windows-normal)
9125 (window--resize-child-windows, window--resize-siblings)
9126 (window--resize-this-window, adjust-window-trailing-edge)
9127 (enlarge-window, shrink-window): Doc fixes.
9128
9129 2012-04-20 Chong Yidong <cyd@gnu.org>
9130
9131 * progmodes/gdb-mi.el (gdb-inferior-io--maybe-delete-pty):
9132 New function to call delete-process on the gdb-inferior buffer's pty.
9133 (gdb-reset): Use it, instead of relying on kill-buffer to kill the
9134 pty process (Bug#11273).
9135 (gdb-update): New arg to suppress talking to the gdb process.
9136 (gdb-done-or-error): Use it.
9137 (gdb-stopped-functions): Rename from gdb-stopped-hooks.
9138 (gdb): Call gdb-inferior-io--maybe-delete-pty as a workaround for
9139 sentinel not being called.
9140
9141 * comint.el (make-comint-in-buffer, comint-exec): Doc fix.
9142
9143 * progmodes/grep.el (grep, rgrep): Doc fix (Bug#11268).
9144
9145 2012-04-20 Glenn Morris <rgm@gnu.org>
9146
9147 * net/network-stream.el (open-network-stream): Doc fix.
9148
9149 2012-04-20 Chong Yidong <cyd@gnu.org>
9150
9151 * emacs-lisp/tabulated-list.el (tabulated-list-print): Fix typos.
9152
9153 2012-04-20 Alan Mackenzie <acm@muc.de>
9154
9155 Ensure searching for keywords is case sensitive.
9156
9157 * progmodes/cc-cmds.el (c-electric-brace, c-electric-lt-gt)
9158 (c-electric-paren, c-beginning-of-defun, c-end-of-defun)
9159 (c-defun-name, c-mark-function, c-cpp-define-name)
9160 (c-comment-indent, c-scan-conditionals, c-indent-defun)
9161 (c-context-line-break): Bind case-fold-search to nil.
9162
9163 * progmodes/cc-mode.el (c-font-lock-fontify-region):
9164 Bind case-fold-search to nil.
9165
9166 2012-04-20 Chong Yidong <cyd@gnu.org>
9167
9168 * mail/sendmail.el (mail-bury): Call return action with the right
9169 Rmail buffer (Bug#11242).
9170
9171 * server.el (server-process-filter): Handle corner case where both
9172 tty and nowait options are present (Bug#11102).
9173
9174 2012-04-20 Eli Zaretskii <eliz@gnu.org>
9175
9176 * version.el (emacs-bzr-version, emacs-bzr-get-version): Doc fixes.
9177 (top level): Put into the executable the ident-style '$Id:' tag on
9178 windows-nt as well.
9179
9180 2012-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
9181
9182 * electric.el (electric-indent-post-self-insert-function): Check that
9183 electric-indent-mode is enabled in current buffer.
9184
9185 2012-04-19 Juanma Barranquero <lekktu@gmail.com>
9186
9187 * imenu.el (imenu-progress-message): Restore; it is "used" in
9188 erc/erc-imenu.el and net/snmp-mode.el.
9189
9190 2012-04-19 Juanma Barranquero <lekktu@gmail.com>
9191
9192 * avoid.el (mouse-avoidance-mode): Mark unused arg.
9193 (mouse-avoidance-nudge-mouse): Remove unused binding.
9194
9195 * bs.el (bs-toggle-readonly): Call `toggle-read-only' interactively.
9196
9197 * descr-text.el (describe-char):
9198 * progmodes/python.el (python-describe-symbol):
9199 Don't call `toggle-read-only', set `buffer-read-only'.
9200
9201 * imenu.el (imenu-default-goto-function): Mark unused args.
9202 (imenu-progress-message): Remove obsolete macro; all callers changed.
9203
9204 * subr.el (keymap-canonicalize): Remove unused binding.
9205 (read-passwd): Mark unused arg.
9206
9207 * tutorial.el (tutorial--display-changes): Remove unused binding.
9208 (tutorial--save-tutorial-to): Remove unused variable.
9209
9210 * emacs-lisp/package.el (define-package, package-menu-mark-delete)
9211 (package-menu-mark-install, package-menu-mark-unmark): Mark unused args.
9212 (package-generate-autoloads, package-menu--generate)
9213 (package-menu--find-upgrades): Remove unused bindings.
9214
9215 * emulation/cua-rect.el (cua-restrict-regexp-rectangle)
9216 (cua-restrict-prefix-rectangle): Doc fixes. Remove unused bindings.
9217 (cua--mouse-ignore, cua--delete-rectangle, cua--extract-rectangle)
9218 (cua--indent-rectangle, cua-open-rectangle, cua-close-rectangle)
9219 (cua-blank-rectangle, cua-string-rectangle, cua-replace-in-rectangle)
9220 (cua-incr-rectangle, cua-sequence-rectangle, cua--convert-rectangle-as)
9221 (cua--rectangle-aux-replace, cua--left-fill-rectangle)
9222 (cua-scroll-rectangle-up, cua-scroll-rectangle-down)
9223 (cua-delete-char-rectangle): Mark unused args.
9224 (cua-align-rectangle): Remove unused binding.
9225
9226 * mail/rmail.el (compilation--message->loc)
9227 (epa--find-coding-system-for-mime-charset): Declare.
9228
9229 * net/dbus.el (dbus-register-service): Declare.
9230 (dbus-name-owner-changed-handler): Remove unused binding.
9231
9232 * nxml/nxml-mode.el (nxml-electric-slash, nxml-in-mixed-content-p)
9233 (nxml-compute-indent-from-matching-start-tag): Remove unused variables.
9234 (nxml-scan-backward-within): Mark unused arg.
9235 (nxml-dynamic-markup-word): Remove unused binding.
9236
9237 * mouse.el (mouse-menu-major-mode-map):
9238 * emacs-lisp/authors.el (authors-scan-change-log)
9239 (authors-add-to-author-list):
9240 * emacs-lisp/avl-tree.el (avl-tree--enter-balance):
9241 * emacs-lisp/smie.el (smie-auto-fill):
9242 * mail/sendmail.el (mail-bury):
9243 * mail/unrmail.el (unrmail):
9244 * net/tls.el (open-tls-stream):
9245 * textmodes/picture.el (picture-mouse-set-point):
9246 Remove unused bindings.
9247
9248 2012-04-19 Michael Albinus <michael.albinus@gmx.de>
9249
9250 * net/tramp.el (tramp-action-password): Let-bind
9251 `enable-recursive-minibuffers' to t.
9252
9253 2012-04-18 Sam Steingold <sds@gnu.org>
9254
9255 * progmodes/gud.el (gud-key-prefix): Use :type 'key-sequence
9256 instead of 'string to accommodate values like [f11].
9257 Always use `vconcat' instead of `concat' on it, like in `gud-def'.
9258 * progmodes/gdb-mi.el: Likewise.
9259
9260 2012-04-18 Leo Liu <sdl.web@gmail.com>
9261
9262 * abbrev.el (edit-abbrevs): Move point to the abbrev table of
9263 current buffer.
9264 (prepare-abbrev-list-buffer): Enter edit-abbrevs-mode only if
9265 LOCAL is nil.
9266
9267 2012-04-18 Chong Yidong <cyd@gnu.org>
9268
9269 * simple.el (line-move): Use forward-line if in batch mode
9270 (Bug#11053).
9271
9272 2012-04-18 Christopher Schmidt <christopher@ch.ristopher.com>
9273
9274 * files.el (after-find-file): Do not try to add a final newline if
9275 the buffer is read-only (Bug#11156).
9276
9277 2012-04-17 Richard Stallman <rms@gnu.org>
9278
9279 * mail/rmail.el (rmail-start-mail):
9280 Pass (rmail-mail-return...) for the return-action.
9281 Pass (rmail-yank-current-message...) for the yank-action.
9282 (rmail-yank-current-message): New function.
9283 (rmail-mail): Pass the Rmail buffer, not view buffer, for replybuffer.
9284 (rmail-reply): Likewise.
9285 (rmail-forward): Pass the Rmail buffer, not nil, for replybuffer.
9286
9287 * mail/sendmail.el (mail-bury): Choose the first rmail-mode
9288 buffer, not the last. Reject temp buffers. Use the rmail-mode
9289 buffer, not newbuf.
9290
9291 2012-04-17 Juanma Barranquero <lekktu@gmail.com>
9292
9293 * server.el (server-ensure-safe-dir): Simplify.
9294
9295 2012-04-17 Stefan Monnier <monnier@iro.umontreal.ca>
9296
9297 * emacs-lisp/smie.el: Provide smarter auto-filling.
9298 (smie-auto-fill): New function.
9299 (smie-setup): Use it.
9300
9301 * newcomment.el (comment-choose-indent): Obey comment-inline-offset.
9302
9303 2012-04-17 Philipp Haselwarter <philipp.haselwarter@gmx.de> (tiny change)
9304
9305 * newcomment.el (comment-inline-offset): New custom var (bug#11090).
9306 (comment-indent): Use it.
9307
9308 2012-04-17 Vincent Belaïche <vincentb1@users.sourceforge.net>
9309
9310 * ses.el: The overall change is to add cell renaming, that is
9311 setting fancy names for cell symbols other than name matching
9312 "\\`[A-Z]+[0-9]+\\'" regexp .
9313 (ses-localvars): Add ses--renamed-cell-symb-list.
9314 (ses-create-cell-variable): New defun.
9315 (ses-destroy-cell-variable-range): Respect ses--numrows, ses--numcols.
9316 (ses-relocate-formula): Relocate formulas only for cells the
9317 symbols of which are not renamed, i.e. symbols whose names do not
9318 match regexp "\\`[A-Z]+[0-9]+\\'".
9319 (ses-relocate-all): Relocate values only for cells the symbols of
9320 which are not renamed.
9321 (ses-load): Create cells variables as the (ses-cell ...) are read,
9322 in order to check row col consistency with cell symbol name only
9323 for cells that are not renamed.
9324 (ses-replace-name-in-formula): New defun.
9325 (ses-rename-cell): New defun.
9326
9327 2012-04-17 Peter Oliver <bzr@mavit.org.uk> (tiny change)
9328
9329 * progmodes/perl-mode.el (perl-indent-parens-as-block):
9330 New option (bug#11118).
9331 (perl-calculate-indent): Respect it.
9332
9333 2012-04-17 Glenn Morris <rgm@gnu.org>
9334
9335 * dired-aux.el (dired-mark-read-string): Doc fix.
9336
9337 2012-04-17 Dmitry Antipov <dmantipov@yandex.ru>
9338
9339 * dired-aux.el (dired-mark-read-string): Offer optional completion.
9340 (dired-do-chxxx): Complete chown, chgrp over users, groups. (Bug#7900)
9341
9342 2012-04-17 Glenn Morris <rgm@gnu.org>
9343
9344 * mouse.el (mouse-drag-track):
9345 * speedbar.el (speedbar-frame-mode):
9346 Use auto-hscroll-mode rather than the alias automatic-hscrolling.
9347
9348 2012-04-16 Leo Liu <sdl.web@gmail.com>
9349
9350 * progmodes/python.el: Trivial cleanup.
9351
9352 2012-04-16 Glenn Morris <rgm@gnu.org>
9353
9354 * vc/vc.el (vc-string-prefix-p):
9355 * vc/pcvs-util.el (cvs-string-prefix-p):
9356 * textmodes/tex-mode.el (latex-string-prefix-p, tex-string-prefix-p):
9357 * mpc.el (mpc-string-prefix-p):
9358 Make all of these into obsolete aliases for string-prefix-p.
9359 Update callers.
9360 * vc/pcvs.el, vc/vc-dispatcher.el, vc/vc-dir.el: Update callers.
9361
9362 * textmodes/two-column.el: Move custom options to the start.
9363 (frame-width): Remove compat definition.
9364 (2C-associate-buffer, 2C-dissociate):
9365 Use with-current-buffer rather than save-excursion.
9366 (2C-dissociate): Force a mode-line update.
9367 (2C-autoscroll): Use ignore-errors.
9368
9369 * emacs-lisp/eieio-opt.el (describe-class, describe-generic):
9370 Autoload trivia.
9371
9372 * emacs-lisp/cl-extra.el (*random-state*):
9373 Remove unnecessary declaration.
9374
9375 * calendar/cal-tex.el (cal-tex-end-document): Trivial clarification.
9376
9377 * play/cookie1.el (cookie-snarf):
9378 Give an explicit error if input file cannot be read.
9379
9380 * play/yow.el (yow-file): Use expand-file-name rather than concat.
9381
9382 * progmodes/perl-mode.el (c-macro-expand):
9383 Remove unnecessary autoload (it is in loaddefs.el).
9384
9385 * textmodes/picture.el (picture-desired-column)
9386 (picture-update-desired-column): Convert comments to doc-strings.
9387 (picture-substitute): Remove function.
9388 (picture-mode-map): Initialize in the defvar.
9389
9390 * woman.el: Remove eval-after-load for tar-mode.
9391 * tar-mode.el (tar-mode-map): Add woman binding and menu entry.
9392 (woman-tar-extract-file): Autoload it.
9393
9394 * frame.el (automatic-hscrolling): Make this alias obsolete.
9395
9396 2012-04-12 Agustín Martín Domingo <agustin.martin@hispalinux.es>
9397
9398 * textmodes/ispell.el (ispell-set-spellchecker-params): Post-process
9399 `ispell-dictionary-alist' to use [:alpha:] and utf-8 if possible.
9400 (ispell-dictionary-base-alist): Revert to original XEmacs
9401 friendly version for default. [:alpha:] will be added in
9402 `ispell-set-spellchecker-params' if needed.
9403
9404 2012-04-16 Chong Yidong <cyd@gnu.org>
9405
9406 * image.el (imagemagick--file-regexp): New variable.
9407 (imagemagick-register-types): Use it.
9408 (imagemagick-types-inhibit): Add :set function. Allow new value
9409 of t to inhibit all types.
9410
9411 * emacs-lisp/regexp-opt.el (regexp-opt-charset): Avoid cl macros,
9412 so we can preload it.
9413
9414 * loadup.el (fboundp): Preload regexp-opt, needed by
9415 imagemagick-register-types.
9416
9417 2012-04-15 Chong Yidong <cyd@gnu.org>
9418
9419 * frame.el (scrolling): Remove nearly unused customization group.
9420
9421 * scroll-all.el (scroll-all-mode): Move to windows group.
9422
9423 2012-04-15 Chong Yidong <cyd@gnu.org>
9424
9425 * bindings.el (goto-map): Bind goto-char to M-g c (Bug#11240).
9426
9427 2012-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
9428
9429 Avoid the use of ((lambda ...) ...) in lexical-binding code.
9430 * emacs-lisp/easy-mmode.el (define-minor-mode): Use funcall (bug#11241).
9431
9432 2012-04-15 Glenn Morris <rgm@gnu.org>
9433
9434 * simple.el (process-file-side-effects): Doc fix.
9435
9436 2012-04-15 Glenn Morris <rgm@gnu.org>
9437
9438 * international/mule-cmds.el (set-language-environment): Doc fix.
9439
9440 2012-04-14 Juanma Barranquero <lekktu@gmail.com>
9441
9442 * server.el (server-auth-key, server-generate-key): Doc fixes.
9443 (server-get-auth-key): Doc fix. Use `string-match-p'.
9444 (server-start): Reflow docstring.
9445
9446 2012-04-14 Lars Ingebrigtsen <larsi@gnus.org>
9447
9448 * server.el (server-generate-key): `called-interactively-p'
9449 requires a parameter.
9450
9451 2012-04-14 Michal Nazarewicz <mina86@mina86.com>
9452
9453 * server.el (server-auth-key): New variable.
9454 (server-generate-key, server-get-auth-key): New function.
9455 (server-start): Use the new variable and functions to allow
9456 setting a permanent server key (bug#9423).
9457
9458 2012-04-14 Leo Liu <sdl.web@gmail.com>
9459
9460 * vc/diff-mode.el (diff-file-prev/next): Fix typo.
9461
9462 2012-04-14 Paul Eggert <eggert@cs.ucla.edu>
9463
9464 Spelling fixes.
9465 * hexl.el (hexl-rulerize): Rename from hexl-rulerise, since
9466 Emacs uses American spelling.
9467
9468 2012-04-14 Juanma Barranquero <lekktu@gmail.com>
9469
9470 * emacs-lock.el (emacs-lock-locked-buffer-functions): New hook.
9471 (emacs-lock--exit-locked-buffer): Return the locked buffer. Doc fix.
9472 (emacs-lock--kill-emacs-hook, emacs-lock--kill-emacs-query-functions)
9473 (emacs-lock--kill-buffer-query-functions): Run new hook. (Bug#11017)
9474
9475 2012-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
9476
9477 * progmodes/which-func.el (which-func-modes): Change default.
9478
9479 2012-04-14 Kim F. Storm <storm@cua.dk>
9480
9481 * emulation/cua-base.el (cua-exchange-point-and-mark): Just call
9482 exchange-point-and-mark if cua-enable-cua-keys is nil (Bug#11191).
9483
9484 2012-04-14 Chong Yidong <cyd@gnu.org>
9485
9486 * custom.el (custom-theme-set-variables): Doc fix.
9487
9488 2012-04-14 Glenn Morris <rgm@gnu.org>
9489
9490 * international/mule.el (set-auto-coding-for-load): Doc fix.
9491
9492 2012-04-14 Alan Mackenzie <acm@muc.de>
9493
9494 * progmodes/cc-menus.el (cc-imenu-objc-generic-expression): Make
9495 imenu work again for Objective C Mode. Correct the *-index values,
9496 these having been disturbed by a previous change in 2011-08.
9497
9498 * progmodes/cc-engine.el (c-before-change-check-<>-operators):
9499 Correct two search limits.
9500
9501 2012-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
9502
9503 * startup.el (command-line-1): Inhibit splash from daemon (bug#10996).
9504
9505 2012-04-14 Andreas Schwab <schwab@linux-m68k.org>
9506
9507 * international/characters.el: Fix sorting.
9508
9509 2012-04-14 Eli Zaretskii <eliz@gnu.org>
9510
9511 * international/characters.el: Add more missing Latin case pairs.
9512
9513 2012-04-14 Glenn Morris <rgm@gnu.org>
9514
9515 * files.el (dir-locals-set-class-variables): Doc fix.
9516
9517 2012-04-14 Eli Zaretskii <eliz@gnu.org>
9518
9519 * international/characters.el: Add set-case-syntax-pair call for
9520 LATIN CAPITAL LETTER Y WITH DIAERESIS RET and its lower-case
9521 counterpart. (Bug#11209)
9522
9523 * simple.el (shell-command-on-region): Doc fix. (Bug#11208)
9524
9525 2012-04-14 Glenn Morris <rgm@gnu.org>
9526
9527 * calendar/holidays.el (calendar-check-holidays): Doc fix.
9528
9529 2012-04-14 Eli Zaretskii <eliz@gnu.org>
9530
9531 * textmodes/ispell.el (ispell-dictionary-base-alist):
9532 Add data for Hebrew.
9533
9534 2012-04-14 Chong Yidong <cyd@gnu.org>
9535
9536 * net/rcirc.el (rcirc-cmd-quit):
9537 Revert 2012-03-18 change (Bug#11192).
9538
9539 2012-04-14 Glenn Morris <rgm@gnu.org>
9540
9541 * pcmpl-rpm.el (pcomplete/rpm): Handle -qf.
9542
9543 2012-04-14 Eli Zaretskii <eliz@gnu.org>
9544
9545 * minibuffer.el (completion-in-region-mode-map):
9546 Bind completion-help-at-point to M-? rather than ?. (Bug#11182)
9547
9548 2012-04-13 Vivek Dasmohapatra <vivek@etla.org>
9549
9550 * hexl.el (hexl-insert-char): Make display sizes other than 16 work.
9551
9552 2012-04-13 Masatake YAMATO <yamato@redhat.com>
9553
9554 * minibuffer.el (minibuffer-local-filename-syntax): New variable
9555 to allow `C-M-f' and `C-M-b' to move to the nearest path
9556 separator (bug#9511).
9557
9558 2012-04-13 Lars Ingebrigtsen <larsi@gnus.org>
9559
9560 * avoid.el: Require cl when compiling. And also move the
9561 `provide' to the end.
9562
9563 2012-04-13 Thierry Volpiatto <thierry.volpiatto@gmail.com>
9564
9565 * avoid.el (mouse-avoidance-banish-position): New variable.
9566 (mouse-avoidance-banish-destination): Use it (bug#10165).
9567
9568 2012-04-13 Leo Liu <sdl.web@gmail.com>
9569
9570 * progmodes/which-func.el (which-func-modes): Add objc-mode.
9571
9572 2012-04-13 Ken Brown <kbrown@cornell.edu>
9573
9574 * net/browse-url.el (browse-url-file-url): Remove Cygwin hack;
9575 this is no longer needed now that cygstart understands file:// URLs.
9576 (browse-url-filename-alist): For the same reason, don't modify
9577 file:// URLs on Cygwin.
9578
9579 2012-04-13 Stefan Monnier <monnier@iro.umontreal.ca>
9580
9581 * emulation/cua-base.el (cua--pre-command-handler-1): Don't activate
9582 the region on shift if the binding is already shifted (bug#11221).
9583
9584 2012-04-12 Glenn Morris <rgm@gnu.org>
9585
9586 * mail/mailpost.el: Move to obsolete/.
9587
9588 2012-04-12 Drew Adams <drew.adams@oracle.com>
9589
9590 * imenu.el (imenu--generic-function): Ignore invisible definitions
9591 (bug#10123).
9592
9593 2012-04-12 Vivek Dasmohapatra <vivek@etla.org>
9594
9595 * hexl.el (hexl-bits): New variable.
9596 (hexl-options): Mention the variable in the doc string.
9597 (hexl-rulerise, hexl-line-displen): New functions.
9598 (hexl-mode): Mention the new variable.
9599 (hexl-mode, hexl-current-address, hexl-current-address):
9600 Use the displen.
9601 (hexl-ascii-start-column): New function.
9602 (hexl-address-to-marker, hexl-beginning-of-line, hexl-options)
9603 (hexl-insert-char, hexl-mode-ruler): Use the displen (bug#4941).
9604
9605 2012-04-12 Agustín Martín Domingo <agustin.martin@hispalinux.es>
9606
9607 * textmodes/flyspell.el (flyspell-large-region): For hunspell, use
9608 '("-i" ENCODING), in 2 separate command-line arguments, to specify
9609 the encoding, as expected by hunspell.
9610
9611 2012-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
9612
9613 * battery.el (battery--linux-sysfs-regexp): New const.
9614 (battery-status-function): Use it. Remove yeeloong special case.
9615 (battery-yeeloong-sysfs): Remove.
9616 (battery-echo-area-format): Remove yeeloong special case.
9617
9618 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
9619
9620 * imenu.el (imenu-add-to-menubar): `current-local-map' can be nil.
9621 Reported by Noah Friedman.
9622
9623 * subr.el (read-passwd): Use read-string.
9624
9625 2012-04-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
9626
9627 * vcursor.el (vcursor-move): Increase the priority of the overlay
9628 (bug#9663).
9629
9630 2012-04-11 Deniz Dogan <deniz.a.m.dogan@gmail.com>
9631
9632 * net/rcirc.el (rcirc-kill-channel-buffers): New variable.
9633 (rcirc-kill-buffer-hook): Use it to kill channel buffers (bug#5128).
9634
9635 2012-04-11 William Stevenson <yhvh2000@gmail.com>
9636
9637 * textmodes/artist.el (artist-mode): Convert artist-mode to use
9638 define-minor-mode (bug#10760).
9639
9640 2012-04-11 Wolfgang Jenkner <wjenkner@inode.at> (tiny change)
9641
9642 * progmodes/grep.el (rgrep): Tweak the find command line so
9643 that directories matching `grep-find-ignored-files' won't be
9644 pruned (bug#10351).
9645
9646 2012-04-11 Chong Yidong <cyd@gnu.org>
9647
9648 * startup.el (command-line): Remove support for long-obsolete
9649 variable font-lock-face-attributes.
9650
9651 2012-04-11 Glenn Morris <rgm@gnu.org>
9652
9653 * vc/vc-bzr.el (vc-bzr-status): Avoid condition-case-unless-debug.
9654
9655 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
9656
9657 * window.el (window--state-get-1): Obey window-point-insertion-type.
9658
9659 2012-04-11 Lennart Borgman <lennart.borgman@gmail.com>
9660
9661 * emacs-lisp/lisp.el (narrow-to-defun): `beginning-of-defun' goes
9662 to previous function when point is on the first character of a
9663 function. Take care of that in `narrow-to-defun' (bug#6157).
9664
9665 2012-04-11 Glenn Morris <rgm@gnu.org>
9666
9667 * vc/vc-bzr.el (vc-bzr-status): Handle all errors,
9668 not just file-errors.
9669
9670 * vc/vc-bzr.el (vc-bzr-sha1-program, sha1-program): Remove.
9671 (vc-bzr-sha1): Use internal sha1.
9672
9673 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
9674
9675 * progmodes/flymake.el (flymake-mode): Beware read-only dirs (bug#8954).
9676
9677 2012-04-10 Sébastien Gross <seb@chezwam.org> (tiny change)
9678
9679 * progmodes/hideshow.el (hs-hide-all): Don't infloop on comments
9680 that start in the middle of the line (bug#10496).
9681
9682 2012-04-10 Dan Nicolaescu <dann@gnu.org>
9683
9684 * battery.el (battery-linux-proc-acpi): Only one battery is
9685 discharged at a time, but that seems to confuse battery.el when
9686 computing `rate-type' for the battery not being discharged
9687 (bug#10332).
9688
9689 2012-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
9690
9691 * emacs-lisp/autoload.el (autoload-make-program): Remove, unused.
9692
9693 * international/quail.el: Use dolist and simplify.
9694 (quail-define-package, quail-update-keyboard-layout)
9695 (quail-define-rules): Use dolist.
9696 (quail-insert-kbd-layout, quail-get-translation): CSE.
9697
9698 * tmm.el: Use dolist, remove left over hook.
9699 (tmm-prompt, tmm-define-keys, tmm-shortcut, tmm-get-keybind):
9700 Use dolist.
9701 (calendar-load-hook): Don't mess with it.
9702
9703 * vc/vc-annotate.el (vc-annotate-show-diff-revision-at-line-internal):
9704 Use derived-mode-p. Run the diff asynchronously.
9705
9706 2012-04-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
9707
9708 * obsolete/mouse-sel.el: Add an Obsolete-since header.
9709
9710 2012-04-10 Juanma Barranquero <lekktu@gmail.com>
9711
9712 * misc.el: Display absolute path of loaded DLLs (bug#10424).
9713 (list-dynamic-libraries--loaded): New function.
9714 (list-dynamic-libraries--refresh): Use it.
9715
9716 2012-04-10 Nathan Weizenbaum <nweiz@google.com>
9717
9718 * progmodes/python.el (python-fill-paragraph):
9719 Make python-fill-region in a multiline string work when font-lock is
9720 disabled (bug#7018).
9721
9722 2012-04-10 Laimonas Vėbra <laimonas.vebra@gmail.com> (tiny change)
9723
9724 * language/european.el (cp775): Add oem/legacy (en)coding on
9725 DOS/MS Windows for the Baltic languages. There are still plenty
9726 of texts written in this encoding/codepage (bug#6519).
9727
9728 2012-04-10 Glenn Morris <rgm@gnu.org>
9729
9730 * cus-start.el (eol-mnemonic-unix, eol-mnemonic-dos, eol-mnemonic-mac):
9731 Add :standard values, reducing "rogue" customs in emacs -Q a bit more.
9732
9733 2012-04-10 Florian Adamsky <florian@adamsky.it> (tiny change)
9734
9735 * recentf.el (recentf-dialog-mode-map): Add two keybindings for
9736 next-line "n" and previous-line "p" in order to make recentf more
9737 consistent with ibuffer, dired or org-mode (bug#9387).
9738
9739 2012-04-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
9740
9741 * image.el (put-image): Return the overlay created instead of the
9742 optional input string (bug#7834). Note that this may break code
9743 that is (for some reason or other) depending on `put-image'
9744 returning the string.
9745
9746 * mouse-sel.el (mouse-sel-mode): Mark as obsolete (bug#6174).
9747
9748 * simple.el (zap-to-char): Allow zapping using input methods
9749 (bug#1580).
9750
9751 * textmodes/fill.el (fill-region): Leave point and mark where they
9752 were before filling (bug#5399).
9753
9754 2012-04-09 Glenn Morris <rgm@gnu.org>
9755
9756 * version.el (emacs-bzr-get-version):
9757 Handle lightweight checkouts of local branches.
9758
9759 2012-04-09 Andreas Schwab <schwab@linux-m68k.org>
9760
9761 * international/characters.el: Recover lost case pairs. (Bug#11209)
9762
9763 2012-04-09 Chong Yidong <cyd@gnu.org>
9764
9765 * custom.el (custom-variable-p): Return nil for non-symbol
9766 arguments instead of signaling an error.
9767 (user-variable-p): Obsolete alias for custom-variable-p.
9768
9769 * apropos.el (apropos-variable):
9770 * files-x.el (read-file-local-variable):
9771 * simple.el (set-variable):
9772 * woman.el (woman-mini-help):
9773 * emacs-lisp/byte-opt.el (side-effect-free-fns): Callers changed.
9774
9775 2012-04-09 Glenn Morris <rgm@gnu.org>
9776
9777 * startup.el (normal-top-level): Don't look for leim-list.el
9778 in places where it will not be found. (Bug#910)
9779
9780 * international/mule-cmds.el (set-default-coding-systems):
9781 * files.el (normal-mode):
9782 Remove guarded calls to ucs-set-table-for-input. (Bug#9821)
9783 This function was removed with ucs-tables.el in 2008.
9784
9785 2012-04-08 Eli Zaretskii <eliz@gnu.org>
9786
9787 * textmodes/ispell.el (ispell-check-version): For hunspell, set
9788 ispell-encoding8-command to "-i", without a trailing space.
9789 (ispell-start-process): For hunspell, use '("-i" ENCODING), in 2
9790 separate command-line arguments, to specify the encoding, since
9791 that's how hunspell expects it.
9792
9793 2012-04-08 Glenn Morris <rgm@gnu.org>
9794
9795 * loadup.el: Load bindings before cus-start.
9796 This reduces somewhat the number of "rogue" settings in emacs -Q.
9797
9798 2012-04-07 Glenn Morris <rgm@gnu.org>
9799
9800 * version.el (emacs-bzr-get-version): New function.
9801 (emacs-bzr-version): New variable.
9802 * loadup.el (emacs-bzr-version): Set it. (Bug#8054)
9803 * mail/emacsbug.el (report-emacs-bug): Include bzr version.
9804
9805 2012-04-07 Eli Zaretskii <eliz@gnu.org>
9806
9807 * international/uni-bidi.el, international/uni-category.el:
9808 * international/uni-combining.el, international/uni-decimal.el:
9809 * international/uni-decomposition.el, international/uni-digit.el:
9810 * international/uni-lowercase.el, international/uni-mirrored.el:
9811 * international/uni-name.el, international/uni-numeric.el:
9812 * international/uni-titlecase.el, international/uni-uppercase.el:
9813 Update for Unicode 6.1.
9814
9815 2012-04-07 Eli Zaretskii <eliz@gnu.org>
9816
9817 * term/w32-win.el (dynamic-library-alist): Add libxml2 DLLs.
9818
9819 2012-04-05 Lars Magne Ingebrigtsen <larsi@gnus.org>
9820
9821 * window.el (shrink-window): Mention the `window-min-height'
9822 variable in the doc string.
9823
9824 2012-04-05 Bastien Guerry <bzg@altern.org>
9825
9826 * color.el (color-lighten-name): Fix typo.
9827
9828 2012-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
9829
9830 * server.el (server--on-display-p): New function.
9831 (server--on-display-p): Use it.
9832
9833 2012-04-04 Gábor Vida <vidagabor@gmail.com> (tiny change)
9834
9835 * ido.el (ido-wide-find-dirs-or-files): Use file-name-absolute-p
9836 (bug#11145).
9837
9838 2012-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
9839
9840 * comint.el (comint--common-quoted-suffix): Check string boundary
9841 before comparing (bug#11158).
9842 * pcomplete.el (pcomplete--common-quoted-suffix): Idem.
9843
9844 2012-04-04 Chong Yidong <cyd@gnu.org>
9845
9846 * minibuffer.el (completion-extra-properties): Doc fix.
9847
9848 * subr.el (delayed-warnings-hook): Doc fix.
9849
9850 2012-04-04 Daiki Ueno <ueno@unixuser.org>
9851
9852 * epa.el (epa--select-keys): Bind C-c C-c to finish the key
9853 selection (Bug#11159).
9854 (epa-insert-keys): Inform that the default public key will be
9855 exported if no key is selected.
9856
9857 2012-04-04 Richard Stallman <rms@gnu.org>
9858
9859 * mail/emacsbug.el (report-emacs-bug): Bind inhibit-read-only.
9860
9861 2012-04-03 Chong Yidong <cyd@gnu.org>
9862
9863 * mail/sendmail.el (mail-mode-map): Bind C-c C-i to
9864 mail-insert-file, not its obsolete alias mail-attach-file.
9865
9866 2012-04-03 Michael Albinus <michael.albinus@gmx.de>
9867
9868 * notifications.el (notifications-notify): Fix docstring.
9869
9870 2012-04-02 Glenn Morris <rgm@gnu.org>
9871
9872 * emacs-lisp/authors.el (authors-aliases): Another addition.
9873
9874 2012-04-02 Michael Albinus <michael.albinus@gmx.de>
9875
9876 * net/tramp-gvfs.el (tramp-gvfs-send-command): Apply
9877 `tramp-compat-call-process' instead of `tramp-local-call-process'.
9878 Reported by Magnus Henoch <magnus.henoch@gmail.com>.
9879
9880 2012-04-01 Chong Yidong <cyd@gnu.org>
9881
9882 * files.el (file-in-directory-p): Rename from file-subdir-of-p.
9883 Handle root directory properly.
9884 (copy-directory): Caller changed.
9885
9886 * dired-aux.el (dired-copy-file-recursive, dired-create-files):
9887 * net/tramp.el (tramp-file-name-for-operation): Callers changed.
9888
9889 2012-03-31 Glenn Morris <rgm@gnu.org>
9890
9891 * term/xterm.el (xterm-extra-capabilities): Doc fix.
9892
9893 * language/indian.el ("Devanagari"): Fix typo. (Bug#11103)
9894
9895 * calendar/calendar.el (calendar-window-list)
9896 (calendar-hide-window): Restore. (Bug#11140)
9897 (calendar-exit): Use calendar-window-list, calendar-hide-window again.
9898
9899 * emacs-lisp/edebug.el (edebug-unwrap-results): Doc fix.
9900
9901 2012-03-30 Thierry Volpiatto <thierry.volpiatto@gmail.com>
9902
9903 * dired-aux.el (dired-copy-file-recursive, dired-create-files):
9904 Check if file is a symlink (Bug#10489).
9905
9906 * files.el (copy-directory): Likewise.
9907
9908 2012-03-30 Chong Yidong <cyd@gnu.org>
9909
9910 * image.el (imagemagick-types-inhibit)
9911 (imagemagick-register-types): Doc fix.
9912
9913 2012-03-30 Agustín Martín Domingo <agustin.martin@hispalinux.es>
9914
9915 * textmodes/ispell.el (ispell-get-extended-character-mode):
9916 Disable extended-char-mode for hunspell. hunspell does not support it
9917 and treats ~word as ordinary words in pipe mode.
9918
9919 2012-03-30 Glenn Morris <rgm@gnu.org>
9920
9921 * tutorial.el (help-with-tutorial): Ensure local variables don't
9922 happen to make the buffer read-only. (Bug#11127)
9923
9924 2012-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
9925
9926 * progmodes/perl-mode.el (perl-indent-line): Use `noindent' in strings.
9927 (perl-calculate-indent): Return `noindent' in strings.
9928
9929 2012-03-28 Sam Steingold <sds@gnu.org>
9930
9931 * calendar/calendar.el (calendar-exit): Use `quit-windows-on'
9932 instead of the broken adhockery which does not prevent calendar
9933 buffers from being displayed at random after exit.
9934 (calendar-window-list, calendar-hide-window): Remove the broken
9935 adhockery.
9936
9937 2012-03-28 Glenn Morris <rgm@gnu.org>
9938
9939 * replace.el (query-replace-map): Doc fix.
9940
9941 2012-03-28 Andreas Schwab <schwab@linux-m68k.org>
9942
9943 * vc/vc-git.el (vc-git-state): Don't try to match all of the diff
9944 contents. (Bug#11109)
9945
9946 2012-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
9947
9948 * emacs-lisp/avl-tree.el (avl-tree--enter-balance): Fix paren typo
9949 (bug#11077).
9950 (avl-tree--check, avl-tree--check-node): New funs.
9951
9952 2012-03-27 Martin Rudalics <rudalics@gmx.at>
9953
9954 * window.el (switch-to-visible-buffer): New option.
9955 (switch-to-prev-buffer, switch-to-next-buffer):
9956 Observe switch-to-visible-buffer. Make sure that checking for a window
9957 showing a buffer already is done on the same frame.
9958
9959 2012-03-27 Glenn Morris <rgm@gnu.org>
9960
9961 * startup.el (mail-host-address): Doc fix.
9962
9963 2012-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
9964
9965 * emacs-lisp/bytecomp.el (byte-compile-constants-vector): Allow more
9966 than 197 variables.
9967
9968 2012-03-26 Ami Fischman <ami@fischman.org>
9969
9970 * vc/vc-git.el (vc-git-state): Avoid unnecessarily locking.
9971
9972 2012-03-26 Glenn Morris <rgm@gnu.org>
9973
9974 * files.el (save-buffers-kill-emacs): Doc fix.
9975
9976 * startup.el (normal-top-level, command-line, command-line-1):
9977 Give them doc strings.
9978
9979 2012-03-25 Eli Zaretskii <eliz@gnu.org>
9980
9981 * makefile.w32-in (install): Use $(DIRNAME)_same-dir.tst instead
9982 of same-dir.tst, to avoid stepping on other (parallel) Make job's toes.
9983
9984 2012-03-25 Chong Yidong <cyd@gnu.org>
9985
9986 * custom.el (load-theme): Even if NO-ENABLE arg is t, reenable the
9987 theme if it was previously enabled before (Bug#11031).
9988
9989 * cus-theme.el (custom-theme-write-faces): Retrieve current face
9990 spec with custom-face-get-current-spec if its :shown-value is not
9991 determined yet (Bug#9337).
9992 (customize-create-theme, custom-theme-revert): Doc fixes.
9993
9994 * button.el (button-at): Minor addition to docstring.
9995
9996 2012-03-24 Simon Leinen <simon.leinen@gmail.com>
9997
9998 * vc/vc.el (vc-merge): Fix a prompt.
9999
10000 2012-03-24 Chong Yidong <cyd@gnu.org>
10001
10002 * mwheel.el (mwheel-scroll): Call deactivate-mark at the right
10003 point (Bug#9623).
10004
10005 * button.el (button-at): Minor addition to docstring.
10006
10007 2012-03-23 Stefan Monnier <monnier@iro.umontreal.ca>
10008
10009 * newcomment.el (comment-choose-indent): No space after BOL.
10010
10011 2012-03-22 Sam Steingold <sds@gnu.org>
10012
10013 * window.el (switch-to-prev-buffer): Revert last patch because the
10014 bug turned out to be an advertised feature (Elisp manual 28.14).
10015
10016 2012-03-22 Glenn Morris <rgm@gnu.org>
10017
10018 * vc/vc-bzr.el (vc-bzr-status-switches): New option. (Bug#6724)
10019 (vc-bzr-command): If running "status", pass vc-bzr-status-switches.
10020
10021 2012-03-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
10022
10023 * net/network-stream.el (network-stream-open-starttls): Make error
10024 message under Windows be less misleading.
10025
10026 2012-03-22 Liang Wang <netcasper@gmail.com> (tiny change)
10027
10028 * progmodes/etags.el (etags-list-tags): Only use tags which goto-func
10029 understands (bug#9942).
10030
10031 2012-03-22 Chong Yidong <cyd@gnu.org>
10032
10033 * simple.el (end-of-visible-line): Handle return value of
10034 next-single-property-change properly (Bug#9371).
10035
10036 2012-03-22 Kenichi Handa <handa@m17n.org>
10037
10038 * international/quail.el (quail-insert-kbd-layout): Fix previous
10039 change. To avoid unwanted bidi reordering, use
10040 bidi-string-mark-left-to-right instead of inserting LRO and PDF.
10041
10042 2012-03-21 Dmitry Gutov <dgutov@yandex.ru>
10043
10044 * progmodes/ruby-mode.el: Don't confuse "end:" for "end" (bug#10786).
10045 (ruby-block-end-re, ruby-delimiter, ruby-parse-partial)
10046 (ruby-beginning-of-indent): Be more careful with the difference
10047 between word-boundary and symbol boundary.
10048 (ruby-mode-syntax-table): Make : a symbol constituent.
10049
10050 2012-03-21 Andreas Politz <politza@fh-trier.de>
10051
10052 * outline.el (outline-flag-region): Evaporate overlays (bug#10789).
10053
10054 2012-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
10055
10056 * progmodes/etags.el (tags-completion-at-point-function):
10057 Improve last fix.
10058
10059 * files.el (move-file-to-trash): Files aren't regexps (bug#11055).
10060
10061 2012-03-21 Sam Steingold <sds@gnu.org>
10062
10063 * progmodes/etags.el (tags-completion-at-point-function):
10064 Avoid the error when point is inside the pattern.
10065
10066 2012-03-21 John Yates <john@yates-sheets.org> (tiny change)
10067
10068 * progmodes/hideshow.el (hs-inside-comment-p): Fix hiding of first
10069 line (Bug#10855).
10070
10071 2012-03-21 Drew Adams <drew.adams@oracle.com>
10072
10073 * info.el (Info-menu): Handle string value of FORK arg (Bug#10858).
10074
10075 2012-03-21 Anmol Khirbat <anmol@khirbat.net> (tiny change)
10076
10077 * ido.el (ido-set-current-directory, ido-read-internal)
10078 (ido-choose-completion-string, ido-completion-help): Handle nil
10079 value of ido-completion-buffer (Bug#11008).
10080
10081 2012-03-21 Sam Steingold <sds@gnu.org>
10082
10083 * window.el (switch-to-prev-buffer): Do not switch to a visible
10084 window previous buffer, just like with the frame previous buffers.
10085
10086 2012-03-21 Chong Yidong <cyd@gnu.org>
10087
10088 * faces.el (make-face, make-empty-face, copy-face):
10089 * face-remap.el (face-remap-add-relative, face-remap-set-base):
10090 Doc fixes.
10091
10092 2012-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
10093
10094 * wid-edit.el (widget-complete-field): Remove (bug#11051).
10095 (widget-complete): Remove broken use of it.
10096
10097 2012-03-20 Chong Yidong <cyd@gnu.org>
10098
10099 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
10100 Use string-width and truncate-string-width to handle arbitrary
10101 characters.
10102
10103 2012-03-20 Tassilo Horn <tassilo@member.fsf.org>
10104
10105 * textmodes/artist.el (artist-menu-map): Bind Rectangle menu item
10106 to draw rectangles, not squares. (Regression introduced by revno
10107 2011-03-02T03:48:01Z!cyd@stupidchicken.com)
10108
10109 2012-03-18 Chong Yidong <cyd@gnu.org>
10110
10111 * faces.el (face-spec-reset-face): Don't call display-graphic-p if
10112 it is not yet defined (for temacs).
10113
10114 2012-03-18 Leo Liu <sdl.web@gmail.com>
10115
10116 * net/rcirc.el (rcirc-cmd-quit): Allow quitting all servers with
10117 prefix.
10118
10119 2012-03-17 Eli Zaretskii <eliz@gnu.org>
10120
10121 * textmodes/ispell.el (ispell-skip-tib, ispell-keep-choices-win)
10122 (ispell-choices-win-default-height, ispell-silently-savep)
10123 (ispell-dictionary-alist, ispell-encoding8-command)
10124 (ispell-check-version, ispell-aspell-find-dictionary)
10125 (ispell-valid-dictionary-list, ispell-words-keyword)
10126 (ispell-get-word, ispell-internal-change-dictionary)
10127 (ispell-region, ispell-skip-region-list)
10128 (ispell-begin-skip-region-regexp, ispell-ignore-fcc)
10129 (ispell-process-line, ispell-minor-mode, ispell-minor-check)
10130 (ispell-message-text-end, ispell-message)
10131 (ispell-buffer-local-parsing): Doc fix.
10132
10133 2012-03-13 Jambunathan K <kjambunathan@gmail.com>
10134
10135 * htmlfontify.el: Add support for code block fontification for ODT
10136 export (Bug #9914).
10137 (hfy-optimisations): Define new option
10138 `body-text-only'
10139 (hfy-fontify-buffer): Honor above setting.
10140 (hfy-begin-span, hfy-end-span): New routines factored out form
10141 `hfy-fontify-buffer'.
10142 (hfy-begin-span-handler, hfy-end-span-handler): New variables
10143 that permit insertion of custom tags.
10144 (hfy-fontify-buffer): Use above handlers.
10145 (hfy-face-to-css-default): Same as the earlier `hfy-face-to-css'.
10146 (hfy-face-to-css): Re-defined to be a variable.
10147 (hfy-compile-stylesheet): Modify. Allow stylesheet to be built
10148 over multiple runs. This is made possible by having the caller let
10149 bind a special variable `hfy-user-sheet-assoc'.
10150 (htmlfontify-string): New defun.
10151 (hfy-compile-face-map): Make sure that the last char in the
10152 buffer is correctly fontified.
10153 (hfy-face-resolve-face): Whitespace only change.
10154
10155 2012-03-17 Eli Zaretskii <eliz@gnu.org>
10156
10157 * textmodes/ispell.el (ispell-get-decoded-string): Make the error
10158 message more clear.
10159
10160 2012-03-16 Leo Liu <sdl.web@gmail.com>
10161
10162 * emacs-lisp/copyright.el (copyright-year-ranges): Fix typo.
10163
10164 2012-03-16 Alan Mackenzie <acm@muc.de>
10165
10166 Further optimise the handling of large macros.
10167
10168 * progmodes/cc-engine.el (c-crosses-statement-barrier-p): Use a
10169 limit to a call of `c-literal-limits'.
10170 (c-determine-+ve-limit): New function.
10171 (c-at-macro-vsemi-p): Move `c-in-literal' to the bottom of an `and'.
10172 (c-guess-basic-syntax): In macros, restrict a search limit to 2000.
10173 In CASE 5B, restrict a search limit to 500.
10174 (c-just-after-func-arglist-p): Obviouly wrong `or' -> `and'.
10175
10176 * progmodes/cc-mode.el (c-neutralize-syntax-in-and-mark-CPP):
10177 Restrict macro bounds to +-500 from after-change's BEG END.
10178
10179 2012-03-16 Leo Liu <sdl.web@gmail.com>
10180
10181 * font-lock.el (lisp-font-lock-keywords-2): Add letrec.
10182
10183 2012-03-16 Aaron S. Hawley <Aaron.S.Hawley@gmail.com>
10184
10185 * tar-mode.el (tar-mode): Fix saving by conditionally undoing
10186 `special-mode' setting of `buffer-read-only'. (Bug#11010)
10187
10188 2012-03-16 Glenn Morris <rgm@gnu.org>
10189
10190 * view.el (view-buffer, view-buffer-other-window)
10191 (view-buffer-other-frame): Doc fixes re special mode-class.
10192
10193 * subr.el (eval-after-load): If named feature is provided not from
10194 a file, run after-load forms. (Bug#10946)
10195
10196 * calendar/calendar.el (calendar-insert-at-column):
10197 Handle non-unit-width characters a bit better. (Bug#10978)
10198
10199 2012-03-15 Chong Yidong <cyd@gnu.org>
10200
10201 * emacs-lisp/ring.el (ring-extend): New function.
10202 (ring-insert+extend): Extend the ring correctly (Bug#11019).
10203
10204 * comint.el (comint-read-input-ring)
10205 (comint-add-to-input-history): Grow comint-input-ring lazily.
10206
10207 2012-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
10208
10209 * progmodes/perl-mode.el (perl-syntax-propertize-special-constructs):
10210 Fix up parsing of multiline twoarg non-paired elements (bug#11014).
10211
10212 * imenu.el: Fix multiple inheritance breakage (bug#9199).
10213 (imenu-add-to-menubar): Don't add a redundant index.
10214 (imenu-update-menubar): Handle a dynamically composed keymap.
10215
10216 2012-03-13 Katsumi Yamaoka <yamaoka@jpl.org>
10217
10218 * mail/sendmail.el (mail-encode-header):
10219 Bind rfc2047-encode-encoded-words to nil.
10220
10221 2012-03-13 Glenn Morris <rgm@gnu.org>
10222
10223 * calendar/calendar.el (calendar-string-spread):
10224 Handle non-unit-width characters a bit better. (Bug#10978)
10225
10226 2012-03-13 Leo Liu <sdl.web@gmail.com>
10227
10228 * vc/vc-hg.el (vc-hg-working-revision): Rework to work with both
10229 directory and file as argument (Bug#10822).
10230
10231 2012-03-13 Kaushik Srenevasan <ksrenevasan@gmail.com> (tiny change)
10232
10233 * progmodes/gdb-mi.el (gdb-invalidate-disassembly):
10234 For dynamically generated code, follow $PC.
10235 (gdb-disassembly-handler-custom): Handle no function name case.
10236
10237 2012-03-13 Tim Landscheidt <tim@tim-landscheidt.de> (tiny change)
10238
10239 * calendar/icalendar.el (icalendar-export-file, icalendar-import-file):
10240 * emulation/ws-mode.el (ws-query-replace):
10241 * sort.el (sort-regexp-fields):
10242 Fix missing trailing whitespace in interactive prompts. (Bug#11002)
10243
10244 2012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
10245
10246 * dabbrev.el: Fix cycle completion order (bug#10963).
10247 (dabbrev--last-obarray, dabbrev--last-completion-buffer): Remove.
10248 (dabbrev-completion): Don't use an obarray; provide
10249 a cycle-sort-function.
10250
10251 2012-03-12 Leo Liu <sdl.web@gmail.com>
10252
10253 * simple.el (kill-new): Use equal-including-properties for comparison.
10254 (kill-do-not-save-duplicates): Doc fix.
10255
10256 2012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
10257
10258 * dabbrev.el: Fix cycle completion (bug#10963).
10259 Use lexical binding and wrap to 80 columns.
10260 (dabbrev-completion): Delay computing the list of completions.
10261
10262 2012-03-12 Kenichi Handa <handa@m17n.org>
10263
10264 * international/quail.el (quail-insert-kbd-layout): Surround each
10265 row by LRO and PDF instead of inserting many LRMs. Pad the left
10266 and right of each non-spacing marks. Insert invisible space
10267 between lower and upper characters to prevent composition.
10268
10269 2012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
10270
10271 * minibuffer.el (minibuffer-complete): Don't get confused when the
10272 function is run twice via different commands (bug#10958).
10273 (complete-with-action): Fix docstring.
10274
10275 2012-03-12 Chong Yidong <cyd@gnu.org>
10276
10277 * nxml/nxml-mode.el (nxml-mode-map): Do not bind C-RET (Bug#6776).
10278 (nxml-completion-at-point-function): New function.
10279 (nxml-mode): Use it.
10280 (nxml-bind-meta-tab-to-complete-flag): Default to t.
10281
10282 * emacs-lisp/package.el (package-unpack, package-unpack-single):
10283 Load generated autoloads file before byte compiling (Bug#10970).
10284 (package--make-autoloads-and-compile): New helper fun.
10285
10286 2012-03-12 Christopher Schmidt <christopher@ch.ristopher.com>
10287
10288 * ibuffer.el (ibuffer-redisplay): Remove another gratuitous error.
10289
10290 2012-03-11 Michael Albinus <michael.albinus@gmx.de>
10291
10292 * autorevert.el (auto-revert-handler): Ensure, that
10293 file-readable-p is applied only for local files or in
10294 auto-revert-tail-mode.
10295
10296 2012-03-11 Andreas Schwab <schwab@linux-m68k.org>
10297
10298 * server.el (server-eval-at): Handle non-tcp connections.
10299 Decode result string.
10300
10301 * server.el (server-msg-size): New constant.
10302 (server-reply-print): New function.
10303 (server-eval-and-print): Use it.
10304 (server-eval-at): Use server-quote-arg and server-unquote-arg.
10305 Handle -print-nonl.
10306
10307 2012-03-11 Christopher Schmidt <christopher@ch.ristopher.com>
10308
10309 * ibuffer.el (ibuffer-redisplay): Remove gratuitous error
10310 (Bug#10987).
10311
10312 2012-03-11 Chong Yidong <cyd@gnu.org>
10313
10314 * simple.el (goto-line): Doc fix (Bug#9938).
10315
10316 * subr.el (save-window-excursion): Doc fix (Bug#9979).
10317
10318 * dabbrev.el (dabbrev--find-expansion): Update progress reporter
10319 when finished (Bug#10963).
10320
10321 2012-03-11 Martin Rudalics <rudalics@gmx.at>
10322
10323 * window.el (split-window-below): Fix bug in case where
10324 split-window-keep-point is nil (Bug#10971).
10325
10326 2012-03-11 Juri Linkov <juri@jurta.org>
10327
10328 * replace.el (replace-highlight): Set isearch-word to nil
10329 unconditionally. (Bug#10887)
10330
10331 2012-03-10 Eli Zaretskii <eliz@gnu.org>
10332
10333 * net/mairix.el (mairix-replace-invalid-chars): Rename from
10334 mairix-replace-illegal-chars; all callers changed. Don't remove
10335 ^, ~, and = characters: they are meaningful in mairix search specs.
10336 (mairix-widget-create-query): Add usage information about mairix
10337 search forms: negating words, searching for substrings, etc.
10338
10339 2012-03-10 Jae-hyeon Park <jae-hyeon.park@desy.de> (tiny change)
10340
10341 * international/fontset.el (font-encoding-alist): Add an entry for
10342 ksx1001 (Bug#5667).
10343
10344 2012-03-10 Richard Stallman <rms@gnu.org>
10345
10346 * mail/sendmail.el (mail-encode-header):
10347 Set rfc2047-encode-encoded-words.
10348
10349 * mail/mail-utils.el (mail-quote-printable): Quote multibyte chars.
10350
10351 * mail/rmail.el (rmail-buffers-swapped-p): Don't assume dead
10352 view buffer means not swapped.
10353 (rmail-view-buffer-kill-buffer-hook): Give buf name in error msg.
10354 (rmail-write-region-annotate): Error if real text has disappeared.
10355
10356 * epa-mail.el (epa-mail-encrypt): Bind inhibit-read-only.
10357
10358 2012-03-10 Chong Yidong <cyd@gnu.org>
10359
10360 * emulation/cua-rect.el (cua--init-rectangles):
10361 * emulation/cua-base.el (cua--init-keymaps):
10362 Add delete-forward-char to remappings (Bug#9666).
10363
10364 2012-03-10 Martin Rudalics <rudalics@gmx.at>
10365
10366 * speedbar.el (speedbar-unhighlight-one-tag-line):
10367 Avoid unhighlighting due to frame switching (Bug#10275).
10368
10369 2012-03-10 Chong Yidong <cyd@gnu.org>
10370
10371 * minibuffer.el (completion-in-region, completion-help-at-point):
10372 Give the completion field overlay a high priority (Bug#6830).
10373
10374 * dired.el (dired-goto-file): Recognize absolute file name
10375 listings (Bug#7126).
10376 (dired-goto-file-1): New helper function.
10377 (dired-toggle-read-only): Inhibit warnings.
10378
10379 2012-03-09 Michael Albinus <michael.albinus@gmx.de>
10380
10381 * net/dbus.el (dbus-property-handler): Return empty array if
10382 there are no properties.
10383
10384 2012-03-09 Leo Liu <sdl.web@gmail.com>
10385
10386 * savehist.el (savehist-printable): Stricter check for string
10387 value (Bug#10937).
10388
10389 2012-03-09 Eli Zaretskii <eliz@gnu.org>
10390
10391 * mail/smtpmail.el (smtpmail-send-it):
10392 Bind coding-system-for-write to *-unix, so that FCC files are kept in
10393 valid mbox format.
10394
10395 2012-03-09 Glenn Morris <rgm@gnu.org>
10396
10397 * files.el (dir-locals-find-file):
10398 Don't check result is regular, readable.
10399 (dir-locals-read-from-file): Demote errors.
10400
10401 2012-03-08 Eli Zaretskii <eliz@gnu.org>
10402
10403 * international/quail.el (quail-insert-kbd-layout):
10404 Insert invisible LRM characters before each character in a keyboard
10405 layout cell, to prevent their reordering by bidi display engine.
10406 For details, see the discussion in
10407 http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00085.html.
10408
10409 2012-03-08 Alan Mackenzie <acm@muc.de>
10410
10411 * progmodes/cc-cmds.el (c-mark-function): Make it leave a mark at
10412 the starting position; make it extend the marked region when
10413 invoked repeatedly - all under appropriate circumstances.
10414 Fixes bugs #5525, #10906.
10415
10416 2012-03-08 Glenn Morris <rgm@gnu.org>
10417
10418 * files.el (locate-dominating-file, dir-locals-find-file):
10419 Undo 2012-03-06 change.
10420
10421 2012-03-07 Eli Zaretskii <eliz@gnu.org>
10422
10423 * international/quail.el (quail-help):
10424 Force bidi-paragraph-direction be left-to-right. See discussion in
10425 http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00062.html
10426 for the reason.
10427
10428 2012-03-07 Michael Albinus <michael.albinus@gmx.de>
10429
10430 Avoid superfluous registering of signals. (Bug#10807)
10431
10432 * notifications.el (notifications-on-action-object)
10433 (notifications-on-close-object): New defvars.
10434 (notifications-on-action-signal, notifications-on-closed-signal):
10435 Unregister the signal if not needed any longer.
10436 (notifications-notify): Register `notifications-action-signal' or
10437 `notifications-closed-signal', if :on-action or :on-close has been
10438 passed as argument.
10439
10440 2012-03-07 Chong Yidong <cyd@gnu.org>
10441
10442 * cus-start.el: Avoid x-select-enable-clipboard-manager warning on
10443 non-X platforms.
10444
10445 2012-03-06 Glenn Morris <rgm@gnu.org>
10446
10447 * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
10448 (x-disown-selection-internal, x-get-selection-internal):
10449 Doc fix (add arglist signatures). (Bug#10783)
10450
10451 2012-03-06 Kaushik Srenevasan <ksrenevasan@gmail.com> (tiny change)
10452
10453 * progmodes/gdb-mi.el (gdb-breakpoints-list-handler-custom):
10454 Handle breakpoints with no "type".
10455
10456 2012-03-06 Glenn Morris <rgm@gnu.org>
10457
10458 * files.el (locate-dominating-file): Add optional predicate argument.
10459 (dir-locals-find-file): Make use of above change.
10460
10461 2012-03-06 Thien-Thi Nguyen <ttn@gnuvola.org>
10462
10463 * info.el (Info-insert-dir): Also try "dir.gz".
10464
10465 2012-03-06 Glenn Morris <rgm@gnu.org>
10466
10467 * files.el (dir-locals-find-file):
10468 Ignore non-readable or non-regular files. (Bug#10928)
10469
10470 * files.el (locate-dominating-file): Doc fix.
10471
10472 2012-03-06 Adam Spiers <emacs@adamspiers.org> (tiny change)
10473
10474 * calendar/calendar.el (calendar-set-mode-line):
10475 `getenv' returns a string. (Bug#10951)
10476
10477 2012-03-05 Leo Liu <sdl.web@gmail.com>
10478
10479 * simple.el (backward-delete-char-untabify): Constrain point to
10480 field (Bug#10939).
10481
10482 * eshell/em-cmpl.el (eshell-cmpl-initialize): Fix shift-tab key.
10483
10484 2012-03-05 Chong Yidong <cyd@gnu.org>
10485
10486 * simple.el (count-words): If called from Lisp, return the word
10487 count, for symmetry with `count-lines'. Arglist changed.
10488 (count-words--message): Args changed. Consolidate counting code
10489 from count-words and count-words-region.
10490 (count-words-region): Caller changed.
10491 (count-lines-region): Make it an obsolete alias.
10492
10493 2012-03-04 Tassilo Horn <tassilo@member.fsf.org>
10494
10495 * saveplace.el (save-place-to-alist)
10496 (save-place-ignore-files-regexp): Allow value nil to disable this
10497 feature.
10498
10499 2012-03-04 Chong Yidong <cyd@gnu.org>
10500
10501 * faces.el (face-spec-reset-face): For the default face, reset the
10502 attributes to default values (Bug#10748).
10503
10504 2012-03-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
10505
10506 * mail/emacsbug.el (report-emacs-bug-hook): Fix up thinko in
10507 previous patch: Check `message-send-mail-function', and not the
10508 default function (bug#10897).
10509
10510 2012-03-04 Michael Albinus <michael.albinus@gmx.de>
10511
10512 * notifications.el (notifications-on-action-signal)
10513 (notifications-on-closed-signal): Check for unique service name of
10514 incoming event. Fix error in removing entry.
10515 (top): Register for signals with wildcard service name.
10516 (notifications-notify): Use daemon unique service name for map entries.
10517
10518 2012-03-04 Chong Yidong <cyd@gnu.org>
10519
10520 * cus-start.el: Make x-select-enable-clipboard-manager customizable.
10521
10522 2012-03-04 Glenn Morris <rgm@gnu.org>
10523
10524 * abbrev.el (copy-abbrev-table, abbrev-table-p)
10525 (abbrev-minor-mode-table-alist, define-abbrev, abbrev-insert)
10526 (expand-abbrev, define-abbrev-table): Doc fixes.
10527
10528 2012-03-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
10529
10530 * mail/emacsbug.el (report-emacs-bug-hook): Look at the value of
10531 `message-default-send-mail-function' and not `send-mail-function'
10532 when doing the prompting for `sendmail-query-once' before sending
10533 in Message buffers (bug#10897).
10534
10535 * net/tls.el (open-tls-stream): Don't set the dont-query-on-exit flag.
10536 This is inconsistent with all the other stream functions, which leave
10537 the setting up to the higher levels (if so wanted) (bug#10931).
10538
10539 2012-03-02 Alan Mackenzie <acm@muc.de>
10540
10541 Depessimize the handling of very large macros.
10542
10543 * progmodes/cc-engine.el (c-macro-cache, c-macro-cache-start-pos):
10544 (c-macro-cache-syntactic): New variables to implement a one
10545 element macro cache.
10546 (c-invalidate-macro-cache): New function.
10547 (c-beginning-of-macro, c-end-of-macro, c-syntactic-end-of-macro):
10548 Adapt to use the new cache.
10549 (c-state-safe-place): Use better the cache of safe positions.
10550 (c-state-semi-nonlit-pos-cache)
10551 (c-state-semi-nonlit-pos-cache-limit):
10552 New variables for...
10553 (c-state-semi-safe-place): New function. Here, in a macro is "safe".
10554 (c-invalidate-state-cache-1): New stuff for c-state-semi-safe-place.
10555 (c-in-literal, c-literal-limits, c-determine-limit-get-base):
10556 Use c-state-semi-safe-place.
10557
10558 * progmodes/cc-langs.el (c-get-state-before-change-functions):
10559 Add c-invalidate-macro-cache to the C, C++, Obj entries.
10560
10561 2012-03-02 Michael Albinus <michael.albinus@gmx.de>
10562
10563 * jka-compr.el (jka-compr-call-process):
10564 Apply `file-accessible-directory-p' only when the default directory is
10565 not remote.
10566
10567 2012-03-01 Michael Albinus <michael.albinus@gmx.de>
10568
10569 * files.el (file-equal-p): Fix docstring. Avoid unnecessary
10570 access of FILE2, if FILE1 does not exist.
10571
10572 * net/tramp-sh.el (tramp-remote-process-environment): Add "PAGER=\"\"".
10573 Reported by Robert Lupton the Good <rhl@astro.princeton.edu>.
10574
10575 * vc/vc-git.el (vc-git--call): Enable `inhibit-null-byte-detection'.
10576 Add "PAGER=" to `process-environment'.
10577
10578 2012-03-01 Michael R. Mauger <mmaug@yahoo.com>
10579
10580 * progmodes/sql.el: Bug fix
10581 (sql-get-login-ext): Save login values in globals.
10582 (sql-get-login): Use new version of `sql-get-login-ext'.
10583 (sql-interactive-mode): Set global `sql-connection' to nil.
10584 (sql-connect): Set global values for connection.
10585 (sql-product-interactive): Save global values as buffer local.
10586
10587 2012-02-29 Leo Liu <sdl.web@gmail.com>
10588
10589 * abbrev.el (define-abbrevs): Reset sys to nil.
10590
10591 2012-02-28 Thierry Volpiatto <thierry.volpiatto@gmail.com>
10592
10593 * files.el (file-equal-p): Rename from `files-equal-p'.
10594 Return nil when one or both files don't exist.
10595 (file-subdir-of-p): Now only top directory must exists,
10596 return nil if it doesn't.
10597 (copy-directory): No need to test with `file-subdir-of-p' after
10598 creating dir.
10599 * net/tramp.el (tramp-file-name-for-operation): Rename `files-equal-p'
10600 to `file-equal-p'.
10601
10602 2012-02-28 Glenn Morris <rgm@gnu.org>
10603
10604 * shell.el (shell-mode):
10605 * progmodes/vhdl-mode.el (wildcard-to-regexp, file-expand-wildcards):
10606 * play/landmark.el (landmark-font-lock-face-O):
10607 * play/handwrite.el (handwrite):
10608 * play/gomoku.el (gomoku-O):
10609 * net/browse-url.el (browse-url-browser-display):
10610 * international/mule.el (define-charset):
10611 * htmlfontify.el (hfy-etags-cmd, hfy-face-attr-for-class):
10612 * filesets.el (filesets-find-file-delay):
10613 * eshell/em-xtra.el (eshell-xtra):
10614 * eshell/em-unix.el (eshell-grep):
10615 * emulation/viper.el (viper-mode):
10616 * emacs-lisp/regexp-opt.el (regexp-opt-group):
10617 * emacs-lisp/easymenu.el (easy-menu-define):
10618 * calendar/timeclock.el (timeclock-use-display-time):
10619 * bs.el (bs-mode):
10620 * bookmark.el (bookmark-save-flag):
10621 Doc fix (standardize possessive apostrophe usage).
10622
10623 2012-02-27 Chong Yidong <cyd@gnu.org>
10624
10625 * emulation/viper-cmd.el (viper-intercept-ESC-key):
10626 Fix key-binding lookup for ESC key (Bug#9146).
10627
10628 * font-lock.el (font-lock-specified-p): Rename from
10629 font-lock-spec-present. Callers changed.
10630
10631 2012-02-27 Daniel Hackney <dan@haxney.org>
10632
10633 * emacs-lisp/package.el (package-compute-transaction):
10634 Handle holding a package version to t in package-load-list.
10635
10636 2012-02-26 Michael Albinus <michael.albinus@gmx.de>
10637
10638 * net/tramp.el (tramp-inodes, tramp-devices): Initialize with 0.
10639 (tramp-get-inode, tramp-get-device): Use cached values.
10640
10641 2012-02-26 Alan Mackenzie <acm@muc.de>
10642
10643 Check there is a font-lock specification before doing initial
10644 fontification.
10645
10646 * font-core.el (font-lock-mode): Move the conditional from
10647 :after-hook to font-lock-initial-fontify.
10648 (font-lock-default-function): Move the check for a specification
10649 to font-lock-spec-present.
10650
10651 * font-lock.el (font-lock-initial-fontify): Call ...
10652 (font-lock-spec-present): New function.
10653
10654 2012-02-26 Jim Blandy <jimb@red-bean.com>
10655
10656 * progmodes/gdb-mi.el (gdb-mi-quote): New function.
10657 (gdb-send): Apply it to the operand of the '-interpreter-exec
10658 console' command, so that we can pass arguments with (say) quotes
10659 in them. Store exact string sent in gdb-debug-log (Bug#10765).
10660
10661 2012-02-26 Chong Yidong <cyd@gnu.org>
10662
10663 * help-fns.el (describe-function-1): Clarify description of
10664 remapping (Bug#10844).
10665
10666 * files.el (files-equal-p): Doc fix.
10667 (file-subdir-of-p): Doc fix. Convert loop macro to plain Lisp,
10668 and quit the loop once a mismatch is found.
10669
10670 2012-02-25 Juanma Barranquero <lekktu@gmail.com>
10671
10672 * bs.el (bs--show-with-configuration): Don't throw an error
10673 if the window cannot be split; otherwise, subsequent calls to
10674 bs-show fail, restoring a stale window config. (Bug#10882)
10675
10676 2012-02-25 Jan Djärv <jan.h.d@swipnet.se>
10677
10678 * term/ns-win.el (global-map): Bind ns-drag-file to
10679 ns-find-file (Bug#5855, Bug#10050).
10680
10681 2012-02-25 Andreas Schwab <schwab@linux-m68k.org>
10682
10683 * calendar/parse-time.el (parse-time-string): Allow extractor to
10684 return nil.
10685
10686 2012-02-25 Michael Albinus <michael.albinus@gmx.de>
10687
10688 * net/tramp.el (tramp-file-name-for-operation):
10689 Add `files-equal-p' and `file-subdir-of-p'.
10690
10691 * net/tramp-sh.el (tramp-sh-handle-copy-directory):
10692 * net/tramp-smb.el (tramp-smb-handle-copy-directory):
10693 Add COPY-CONTENTS argument.
10694
10695 2012-02-25 Chong Yidong <cyd@gnu.org>
10696
10697 Add custom groups for VC backends, for consistency with vc-bzr.
10698
10699 * vc/vc-arch.el (vc-arch):
10700 * vc/vc-cvs.el (vc-cvs):
10701 * vc/vc-git.el (vc-git):
10702 * vc/vc-hg.el (vc-hg):
10703 * vc/vc-mtn.el (vc-mtn):
10704 * vc/vc-rcs.el (vc-rcs):
10705 * vc/vc-sccs.el (vc-sccs):
10706 * vc/vc-svn.el (vc-svn): New customization group (Bug#10871).
10707 All relevant defcustoms reassigned.
10708
10709 2012-02-25 Chong Yidong <cyd@gnu.org>
10710
10711 * newcomment.el (comment-styles): Add autoload (Bug#10868).
10712
10713 * term/x-win.el (x-initialize-window-system): Reduce default for
10714 x-selection-timeout to 5 seconds (Bug#8869).
10715
10716 2012-02-24 Thierry Volpiatto <thierry.volpiatto@gmail.com>
10717
10718 * files.el (files-equal-p, file-subdir-of-p): New functions.
10719 (copy-directory): Error when trying to copy a directory on itself.
10720 Add missing copy-contents arg to tramp handler.
10721 * dired-aux.el (dired-copy-file-recursive): Same.
10722 (dired-create-files): Modify destination when source is equal to
10723 dest when copying files.
10724 Return also when dest is a subdir of source. (Bug#10489)
10725
10726 2012-02-24 Michael Albinus <michael.albinus@gmx.de>
10727
10728 * net/ange-ftp.el (ange-ftp-parse-netrc): Suppress comment lines.
10729 (Bug#10874)
10730
10731 2012-02-23 Alan Mackenzie <acm@muc.de>
10732
10733 * emacs-lisp/easy-mmode.el (define-minor-mode): Add extra
10734 parameter "after-hook:" to allow the expansion to run code after
10735 the execution of the mode hooks.
10736
10737 * font-lock.el (font-lock-initial-fontify): New function extracted
10738 from font-lock-mode-internal.
10739
10740 * font-core.el (font-lock-mode): Call font-lock-initial-fontify in
10741 :after-hook.
10742
10743 2012-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
10744
10745 * minibuffer.el: Make sure cycling is reset upon edit with icomplete.el.
10746 (completion--cache-all-sorted-completions): New function.
10747 (completion-all-sorted-completions): Use it.
10748 (completion--do-completion, minibuffer-force-complete):
10749 Use it to re-instate the flush hook.
10750
10751 * icomplete.el (icomplete-completions): Replace last fix with a better
10752 one (bug#10850).
10753
10754 2012-02-23 Dmitry Gutov <dgutov@yandex.ru>
10755
10756 * emacs-lisp/lisp.el (beginning-of-defun-raw): Don't call end-of-defun
10757 when it might call us back infinitely (bug#10797).
10758
10759 2012-02-23 Glenn Morris <rgm@gnu.org>
10760
10761 * minibuffer.el (completion-category-overrides): Doc fix.
10762
10763 2012-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
10764
10765 * minibuffer.el (completion-table-with-context): Fix inf-loop.
10766 Reported by Aaron S. Hawley <aaron.s.hawley@gmail.com>.
10767
10768 2012-02-23 Glenn Morris <rgm@gnu.org>
10769
10770 * emacs-lisp/authors.el (authors-aliases, authors-fixed-case)
10771 (authors-obsolete-files-regexps, authors-ignored-files)
10772 (authors-ambiguous-files, authors-renamed-files-alist):
10773 Add more entries.
10774
10775 2012-02-23 Juri Linkov <juri@jurta.org>
10776
10777 * isearch.el (isearch-occur): Sync interactive spec with occur's
10778 new feature in `occur-read-primary-args'. Doc fix. (Bug#10705)
10779
10780 * replace.el (occur-menu-map): Add menu item for `occur-edit-mode'.
10781
10782 2012-02-22 Juri Linkov <juri@jurta.org>
10783
10784 * international/mule-cmds.el (read-char-by-name): Use \` and \'.
10785 (ucs-insert): Doc fix. Check for hex digits in the string.
10786 Don't display `nil' in the error message. (Bug#10857)
10787
10788 2012-02-22 Alan Mackenzie <acm@muc.de>
10789
10790 * progmodes/cc-mode.el: Revert change #2012-02-06T22:08:41Z!larsi@gnus.org from 2012-02-06.
10791
10792 2012-02-22 Glenn Morris <rgm@gnu.org>
10793
10794 * ffap.el (ffap-c-path):
10795 * man.el (Man-header-file-path): Handle multiarch. (Bug#10702)
10796
10797 2012-02-22 Chong Yidong <cyd@gnu.org>
10798
10799 * custom.el (load-theme): Doc fix.
10800
10801 2012-02-22 Glenn Morris <rgm@gnu.org>
10802
10803 * dired-x.el (dired-guess-shell-alist-default):
10804 Remove escape sequences from nroff output. (Bug#172)
10805
10806 2012-02-21 Glenn Morris <rgm@gnu.org>
10807
10808 * vc/emerge.el (emerge-defvar-local):
10809 Set `permanent-local' property rather than unused `preserved'.
10810
10811 * textmodes/picture.el (picture-delete-char): New alias.
10812 (picture-mode-map): Use it. (Bug#10860)
10813 (picture-mode): Doc fix.
10814
10815 2012-02-21 Juanma Barranquero <lekktu@gmail.com>
10816
10817 * newcomment.el (uncomment-region-default): Remove unused binding.
10818
10819 2012-02-21 Glenn Morris <rgm@gnu.org>
10820
10821 * textmodes/picture.el (picture-motion, picture-motion-reverse)
10822 (picture-self-insert, picture-tab-chars): Doc fix.
10823 (picture-mode-map): Fix C-a, C-e.
10824
10825 2012-02-20 Glenn Morris <rgm@gnu.org>
10826
10827 * emacs-lisp/authors.el (authors-aliases): Add another entry.
10828
10829 2012-02-20 Leo Liu <sdl.web@gmail.com>
10830
10831 * icomplete.el (icomplete-completions): Check FROM arg before
10832 passing to substring (Bug#10850).
10833
10834 2012-02-19 Chong Yidong <cyd@gnu.org>
10835
10836 * comint.el: Require ansi-color.
10837 (comint-output-filter-functions): Add ansi-color-process-output.
10838
10839 * ansi-color.el: Don't set comint-output-filter-functions; it is
10840 now in the initial value defined in comint.el.
10841 (ansi-color-apply-face-function): New variable.
10842 (ansi-color-apply-on-region): Use it.
10843 (ansi-color-apply-overlay-face): New function.
10844
10845 * shell.el (shell): No need to require ansi-color.
10846 (shell-mode): Use ansi-color-apply-face-function to highlight
10847 color escapes using font-lock-face property (Bug#10835).
10848
10849 2012-02-19 Chong Yidong <cyd@gnu.org>
10850
10851 * vc/ediff-init.el (ediff-strip-mode-line-format): Handle non-list
10852 mode-line formats (Bug#10839).
10853
10854 2012-02-18 Glenn Morris <rgm@gnu.org>
10855
10856 * mail/rmail.el (rmail-dont-reply-to-names): Mark as obsolete.
10857
10858 * mail/undigest.el (unforward-rmail-message): Doc fix.
10859
10860 * saveplace.el (save-place-ignore-files-regexp): Add :version.
10861
10862 2012-02-18 Eli Zaretskii <eliz@gnu.org>
10863
10864 * international/characters.el (script-list): Sync with the latest
10865 Unicode Character Database.
10866
10867 2012-02-18 Andreas Schwab <schwab@linux-m68k.org>
10868
10869 * international/titdic-cnv.el: Remove duplicate coding tag.
10870 * language/cham.el: Likewise.
10871 * language/tai-viet.el: Likewise.
10872
10873 2012-02-18 Glenn Morris <rgm@gnu.org>
10874
10875 * calendar/cal-menu.el (cal-menu-diary-menu, cal-menu-goto-menu):
10876 * calendar/calendar.el (diary-file, diary-bahai-entry-symbol)
10877 (calendar-bahai-all-holidays-flag, calendar-other-dates):
10878 * calendar/diary-lib.el (diary-abbreviated-year-flag):
10879 * calendar/holidays.el (holiday-bahai-holidays)
10880 (calendar-holidays, list-holidays):
10881 Use utf-8 Bahá'í in doc-strings, menus, etc.
10882
10883 2012-02-17 Tassilo Horn <tassilo@member.fsf.org>
10884
10885 * saveplace.el (save-place-ignore-files-regexp): New variable
10886 allowing for excluding files from saving their location of point.
10887 The default value matches the temporary commit message editing
10888 files from Git, SVN, Bazaar, and Mercurial.
10889 (save-place-to-alist): Use it.
10890
10891 2012-02-17 Lawrence Mitchell <wence@gmx.li>
10892 Stefan Monnier <monnier@iro.umontreal.ca>
10893
10894 * newcomment.el (uncomment-region-default): Don't leave extra space
10895 when an arg is provided (bug#8150).
10896
10897 2012-02-17 Teodor Zlatanov <tzz@lifelogs.com>
10898
10899 * net/gnutls.el (gnutls-trustfiles): Fix Cygwin bundle location.
10900
10901 2012-02-17 Glenn Morris <rgm@gnu.org>
10902
10903 * net/socks.el: Require network-stream. (Bug#10599)
10904
10905 2012-02-17 Kenichi Handa <handa@m17n.org>
10906
10907 * international/charprop.el:
10908 * international/uni-name.el:
10909 * international/uni-old-name.el:
10910 * international/uni-comment.el: Regenerate.
10911
10912 2012-02-16 Glenn Morris <rgm@gnu.org>
10913
10914 * calendar/cal-hebrew.el (calendar-hebrew-list-yahrzeits):
10915 Interactively in calendar buffer, give an error if not on a date.
10916
10917 2012-02-15 Glenn Morris <rgm@gnu.org>
10918
10919 * shell.el (shell-delimiter-argument-list):
10920 Revert 2011-02-17 change. (Bug#8027)
10921
10922 2012-02-15 Chong Yidong <cyd@gnu.org>
10923
10924 * minibuffer.el (completion-at-point-functions): Doc fix.
10925
10926 * custom.el (defcustom): Doc fix; note use of defvar.
10927
10928 2012-02-15 Glenn Morris <rgm@gnu.org>
10929
10930 * mail/smtpmail.el (smtpmail-smtp-user, smtpmail-stream-type):
10931 Doc fixes.
10932
10933 2012-02-14 Glenn Morris <rgm@gnu.org>
10934
10935 * mail/smtpmail.el (smtpmail-query-smtp-server): Give it a doc.
10936
10937 2012-02-14 Lars Ingebrigtsen <larsi@gnus.org>
10938
10939 * mail/smtpmail.el (smtpmail-query-smtp-server): Fix typo in the
10940 way the ports list is computed.
10941 (smtpmail-query-smtp-server): Prompt the user for a port number if
10942 we can't connect to any of the standard ports (bug#10810).
10943
10944 2012-02-14 Teodor Zlatanov <tzz@lifelogs.com>
10945
10946 * net/gnutls.el (gnutls-trustfiles): Add Cygwin location.
10947
10948 2012-02-13 Glenn Morris <rgm@gnu.org>
10949
10950 * minibuffer.el (read-file-name): Doc fix. (Bug#10798)
10951
10952 2012-02-13 Teodor Zlatanov <tzz@lifelogs.com>
10953
10954 * net/gnutls.el (gnutls-trustfiles): New variable.
10955 (gnutls-negotiate): Use it.
10956
10957 2012-02-13 Lars Ingebrigtsen <larsi@gnus.org>
10958
10959 * simple.el (mail-user-agent): Mention that `gnus-user-agent' only
10960 does its stuff if Gnus is running.
10961
10962 2012-02-13 Alan Mackenzie <acm@muc.de>
10963
10964 Fix a loop in c-set-fl-decl-start.
10965
10966 * progmodes/cc-engine.el (c-set-fl-decl-start): Add a check that
10967 c-backward-syntactic-ws actually moves backwards.
10968
10969 2012-02-13 Leo Liu <sdl.web@gmail.com>
10970
10971 * net/rcirc.el (rcirc-markup-attributes): Move point to the
10972 beginning so that all \C-o chars are removed.
10973
10974 2012-02-12 Teodor Zlatanov <tzz@lifelogs.com>
10975
10976 * net/gnutls.el (gnutls-algorithm-priority): Add missing :group tag.
10977
10978 2012-02-12 Alan Mackenzie <acm@muc.de>
10979
10980 Fix infinite loop with long macros.
10981 * progmodes/cc-engine.el (c-state-safe-place): Handle macros properly.
10982
10983 2012-02-12 Chong Yidong <cyd@gnu.org>
10984
10985 * window.el (display-buffer): Doc fix (Bug#10785).
10986
10987 2012-02-12 Glenn Morris <rgm@gnu.org>
10988
10989 * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
10990 (x-disown-selection-internal, x-get-selection-internal):
10991 Sync docs with the xselect.c versions.
10992
10993 * allout-widgets.el: Add missing license notice.
10994
10995 2012-02-11 Glenn Morris <rgm@gnu.org>
10996
10997 * select.el (x-get-selection-internal, x-own-selection-internal)
10998 (x-disown-selection-internal):
10999 * x-dnd.el (x-get-selection-internal): Update declarations.
11000
11001 * vc/log-view.el (vc-diff-internal): Remove unneeded declaration.
11002
11003 * window.el (window-sides-slots):
11004 * tool-bar.el (tool-bar-position):
11005 * term/xterm.el (xterm-extra-capabilities):
11006 * ses.el (ses-self-reference-early-detection):
11007 * progmodes/verilog-mode.el (verilog-auto-declare-nettype)
11008 (verilog-auto-wire-type)
11009 (verilog-auto-delete-trailing-whitespace)
11010 (verilog-auto-reset-blocking-in-non, verilog-auto-inst-sort)
11011 (verilog-auto-tieoff-declaration):
11012 * progmodes/sql.el (sql-login-hook, sql-ansi-statement-starters)
11013 (sql-oracle-statement-starters, sql-oracle-scan-on):
11014 * progmodes/prolog.el (prolog-align-comments-flag)
11015 (prolog-indent-mline-comments-flag, prolog-object-end-to-0-flag)
11016 (prolog-left-indent-regexp, prolog-paren-indent-p)
11017 (prolog-paren-indent, prolog-parse-mode, prolog-keywords)
11018 (prolog-types, prolog-mode-specificators)
11019 (prolog-determinism-specificators, prolog-directives)
11020 (prolog-electric-newline-flag, prolog-hungry-delete-key-flag)
11021 (prolog-electric-dot-flag)
11022 (prolog-electric-dot-full-predicate-template)
11023 (prolog-electric-underscore-flag, prolog-electric-tab-flag)
11024 (prolog-electric-if-then-else-flag, prolog-electric-colon-flag)
11025 (prolog-electric-dash-flag, prolog-old-sicstus-keys-flag)
11026 (prolog-program-switches, prolog-prompt-regexp)
11027 (prolog-debug-on-string, prolog-debug-off-string)
11028 (prolog-trace-on-string, prolog-trace-off-string)
11029 (prolog-zip-on-string, prolog-zip-off-string)
11030 (prolog-use-standard-consult-compile-method-flag)
11031 (prolog-use-prolog-tokenizer-flag, prolog-imenu-flag)
11032 (prolog-imenu-max-lines, prolog-info-predicate-index)
11033 (prolog-underscore-wordchar-flag, prolog-use-sicstus-sd)
11034 (prolog-char-quote-workaround):
11035 * progmodes/cc-vars.el (c-defun-tactic):
11036 * net/tramp.el (tramp-encoding-command-interactive)
11037 (tramp-local-end-of-line):
11038 * net/soap-client.el (soap-client):
11039 * net/netrc.el (netrc-file):
11040 * net/gnutls.el (gnutls):
11041 * minibuffer.el (completion-category-overrides)
11042 (completion-cycle-threshold)
11043 (completion-pcm-complete-word-inserts-delimiters):
11044 * man.el (Man-name-local-regexp):
11045 * mail/feedmail.el (feedmail-display-full-frame):
11046 * international/characters.el (glyphless-char-display-control):
11047 * eshell/em-ls.el (eshell-ls-date-format):
11048 * emacs-lisp/cl-indent.el (lisp-lambda-list-keyword-alignment)
11049 (lisp-lambda-list-keyword-parameter-indentation)
11050 (lisp-lambda-list-keyword-parameter-alignment):
11051 * doc-view.el (doc-view-image-width, doc-view-unoconv-program):
11052 * dired-x.el (dired-omit-verbose):
11053 * cus-theme.el (custom-theme-allow-multiple-selections):
11054 * calc/calc.el (calc-highlight-selections-with-faces)
11055 (calc-lu-field-reference, calc-lu-power-reference)
11056 (calc-note-threshold):
11057 * battery.el (battery-mode-line-limit):
11058 * arc-mode.el (archive-7z-extract, archive-7z-expunge)
11059 (archive-7z-update):
11060 * allout.el (allout-prefixed-keybindings)
11061 (allout-unprefixed-keybindings)
11062 (allout-inhibit-auto-fill-on-headline)
11063 (allout-flattened-numbering-abbreviation):
11064 * allout-widgets.el (allout-widgets-auto-activation)
11065 (allout-widgets-icons-dark-subdir)
11066 (allout-widgets-icons-light-subdir, allout-widgets-icon-types)
11067 (allout-widgets-theme-dark-background)
11068 (allout-widgets-theme-light-background)
11069 (allout-widgets-item-image-properties-emacs)
11070 (allout-widgets-item-image-properties-xemacs)
11071 (allout-widgets-run-unit-tests-on-load)
11072 (allout-widgets-time-decoration-activity)
11073 (allout-widgets-hook-error-post-time)
11074 (allout-widgets-track-decoration):
11075 Add missing :version tags to new defcustoms and defgroups.
11076
11077 * progmodes/sql.el (sql-ansi-statement-starters)
11078 (sql-oracle-statement-starters): Add custom type.
11079
11080 * progmodes/prolog.el: Remove leading '*' from defcustom docs.
11081 (prolog-system-version): Give it a type.
11082
11083 2012-02-11 Eli Zaretskii <eliz@gnu.org>
11084
11085 * term/pc-win.el (x-select-text, x-selection-owner-p)
11086 (x-own-selection-internal, x-disown-selection-internal)
11087 (x-get-selection-internal): Sync doc strings and argument lists
11088 with xselect.c, common-win.el and x-win.el. (Bug#10783)
11089
11090 2012-02-11 Leo Liu <sdl.web@gmail.com>
11091
11092 * progmodes/python.el (python-end-of-statement): Fix infinite
11093 loop. (Bug#10788)
11094
11095 2012-02-10 Glenn Morris <rgm@gnu.org>
11096
11097 * international/mule-cmds.el (unify-8859-on-encoding-mode)
11098 (unify-8859-on-decoding-mode): Properly mark as obsolete.
11099
11100 2012-02-10 Lars Ingebrigtsen <larsi@gnus.org>
11101
11102 * mail/emacsbug.el (report-emacs-bug-hook): Query the user first
11103 about SMTP before checking the From header.
11104
11105 * mail/sendmail.el (sendmail-query-user-about-smtp): Refactor out
11106 into own function for reuse by emacsbug.el.
11107
11108 2012-02-10 Leo Liu <sdl.web@gmail.com>
11109
11110 * subr.el (condition-case-unless-debug): Rename from
11111 condition-case-no-debug. All callers changed.
11112 (with-demoted-errors): Fix caller.
11113
11114 * vc/diff-mode.el (diff-auto-refine-mode, diff-hunk):
11115 * nxml/rng-valid.el (rng-do-some-validation):
11116 * emacs-lisp/package.el (package-refresh-contents)
11117 (package-menu-execute):
11118 * desktop.el (desktop-create-buffer):
11119 * font-lock.el (lisp-font-lock-keywords-2): Caller changed.
11120
11121 2012-02-10 Glenn Morris <rgm@gnu.org>
11122
11123 * textmodes/bibtex.el:
11124 Add missing :version tags for new/changed defcustoms.
11125
11126 * files.el (remote-file-name-inhibit-cache): Doc fixes.
11127
11128 2012-02-09 Lars Ingebrigtsen <larsi@rusty>
11129
11130 * mail/smtpmail.el (smtpmail-user-mail-address): New function.
11131 (smtpmail-via-smtp): Use it, or fall back on the From address.
11132 (smtpmail-send-it): Ditto.
11133
11134 2012-02-09 Stefan Monnier <monnier@iro.umontreal.ca>
11135
11136 * emacs-lisp/bytecomp.el (byte-compile-file-form-defvar):
11137 Don't fallback on byte-compile-defvar. Optimize (defvar foo) away.
11138 (byte-compile-tmp-var): New const.
11139 (byte-compile-defvar): Use it to minimize .elc size.
11140 Just use `defvar' rather than simulate it (bug#10761).
11141
11142 2012-02-09 Glenn Morris <rgm@gnu.org>
11143
11144 * files.el (rename-uniquely): Doc fix. (Bug#3806)
11145
11146 * progmodes/cc-guess.el (c-guess-offset-threshold, c-guess-region-max):
11147 Add :version tags.
11148
11149 * progmodes/compile.el (compilation-error-screen-columns)
11150 (compilation-first-column, compilation-filter-start): Doc fixes.
11151
11152 * vc/log-view.el (log-view-toggle-entry-display):
11153 * vc/vc.el (vc-merge, vc-pull): Doc fixes.
11154
11155 * mail/emacsbug.el (report-emacs-bug-can-use-osx-open)
11156 (report-emacs-bug-can-use-xdg-email):
11157 (report-emacs-bug-insert-to-mailer): Doc fixes.
11158 (report-emacs-bug): Message fix.
11159
11160 * net/browse-url.el (browse-url-can-use-xdg-open)
11161 (browse-url-xdg-open): Doc fixes.
11162
11163 * electric.el (electric-indent-mode, electric-pair-mode)
11164 (electric-layout-rules, electric-layout-mode): Doc fixes.
11165 (electric-pair-pairs, electric-pair-skip-self): Add :version tags.
11166
11167 2012-02-08 Martin Rudalics <rudalics@gmx.at>
11168
11169 * server.el (server-unselect-display): Don't inadvertently kill
11170 the current buffer. (Bug#10729)
11171
11172 2012-02-08 Glenn Morris <rgm@gnu.org>
11173
11174 * progmodes/sql.el (sql-port, sql-connection-alist, sql-list-all)
11175 (sql-list-table): Doc fixes.
11176
11177 * image-mode.el (image-transform-minor-mode-map, image-transform-mode):
11178 Comment out (does nothing).
11179
11180 * completion.el (dynamic-completion-mode):
11181 * dirtrack.el (dirtrack-debug-mode):
11182 * electric.el (electric-layout-mode):
11183 * epa-mail.el (epa-mail-mode, epa-global-mail-mode):
11184 * face-remap.el (text-scale-mode, buffer-face-mode):
11185 * iimage.el (iimage-mode):
11186 * image-mode.el (image-transform-mode):
11187 * minibuffer.el (completion-in-region-mode):
11188 * scroll-lock.el (scroll-lock-mode):
11189 * simple.el (next-error-follow-minor-mode):
11190 * tar-mode.el (tar-subfile-mode):
11191 * tooltip.el (tooltip-mode):
11192 * vcursor.el (vcursor-use-vcursor-map):
11193 * wid-browse.el (widget-minor-mode):
11194 * emulation/tpu-edt.el (tpu-edt-mode):
11195 * emulation/tpu-extras.el (tpu-cursor-free-mode):
11196 * international/iso-ascii.el (iso-ascii-mode):
11197 * language/thai-util.el (thai-word-mode):
11198 * mail/supercite.el (sc-minor-mode):
11199 * net/goto-addr.el (goto-address-mode):
11200 * net/rcirc.el (rcirc-multiline-minor-mode, rcirc-track-minor-mode):
11201 * progmodes/cwarn.el (cwarn-mode):
11202 * progmodes/flymake.el (flymake-mode):
11203 * progmodes/glasses.el (glasses-mode):
11204 * progmodes/hideshow.el (hs-minor-mode):
11205 * progmodes/pascal.el (pascal-outline-mode):
11206 * textmodes/enriched.el (enriched-mode):
11207 * vc/smerge-mode.el (smerge-mode):
11208 Doc fixes (minor mode argument).
11209
11210 2012-02-07 Eli Zaretskii <eliz@gnu.org>
11211
11212 * ls-lisp.el (ls-lisp-sanitize): New function.
11213 (ls-lisp-insert-directory): Use it to fix or remove any elements
11214 in file-alist with missing attributes. (Bug#4673)
11215
11216 2012-02-07 Alan Mackenzie <acm@muc.de>
11217
11218 Fix spurious recognition of c-in-knr-argdecl.
11219
11220 * progmodes/cc-engine.el (c-in-knr-argdecl): Check for '=' in a
11221 putative K&R region.
11222
11223 2012-02-07 Alan Mackenzie <acm@muc.de>
11224
11225 * progmodes/cc-engine.el (c-forward-objc-directive):
11226 Prevent looping in "#pragma mark @implementation".
11227
11228 2012-02-07 Michael Albinus <michael.albinus@gmx.de>
11229
11230 * notifications.el (notifications-on-closed-signal): Make `reason'
11231 optional. (Bug#10744)
11232
11233 2012-02-07 Glenn Morris <rgm@gnu.org>
11234
11235 * emacs-lisp/easy-mmode.el (define-minor-mode):
11236 Doc fixes for the macro and the mode it defines.
11237
11238 * image.el (imagemagick-types-inhibit): Doc fix.
11239
11240 * cus-start.el (imagemagick-render-type): Add it.
11241
11242 2012-02-06 Lars Ingebrigtsen <larsi@gnus.org>
11243
11244 * progmodes/cc-mode.el (c-standard-font-lock-fontify-region-function):
11245 Set the default at load time, too, so that `font-lock-fontify-buffer'
11246 can be called without setting up the entire mode first. This fixes
11247 a bug in `mm-inline-text' with C MIME parts.
11248
11249 2012-02-06 Chong Yidong <cyd@gnu.org>
11250
11251 * simple.el (list-processes--refresh): Delete exited processes
11252 (Bug#8094).
11253
11254 * comint.el (comint-next-prompt): next-single-char-property-change
11255 and prev-single-char-property-change never return nil (Bug#8657).
11256
11257 * custom.el (defcustom): Doc fix (Bug#9711).
11258
11259 2012-02-05 Chong Yidong <cyd@gnu.org>
11260
11261 * cus-edit.el (custom-variable-reset-backup): Quote the value
11262 before storing it in the customized-value property (Bug#6712).
11263 (custom-display): Add a customization type tag.
11264 (custom-buffer-create-internal): Improve tooltip message.
11265
11266 * wid-edit.el (widget-field-value-get): New optional arg to
11267 suppress trailing whitespace truncation.
11268 (character): Use it (Bug#2689).
11269
11270 2012-02-05 Andreas Schwab <schwab@linux-m68k.org>
11271
11272 * progmodes/gud.el (gud-pv): Use pv instead of pv1.
11273 * progmodes/gdb-mi.el (gud-pp): Use pp instead of pp1.
11274
11275 2012-02-05 Chong Yidong <cyd@gnu.org>
11276
11277 * cus-edit.el (custom-variable-value-create): For mismatched
11278 types, show the current value (Bug#7600).
11279
11280 * custom.el (defcustom): Doc fix.
11281
11282 2012-02-05 Glenn Morris <rgm@gnu.org>
11283
11284 * font-lock.el (lisp-font-lock-keywords-2): Add with-wrapper-hook.
11285
11286 2012-02-05 Juanma Barranquero <lekktu@gmail.com>
11287
11288 * emacs-lisp/pp.el (pp-to-string): Use `with-temp-buffer'.
11289 (pp-buffer): Use `ignore-errors', `looking-at-p'.
11290 (pp-last-sexp): Use `looking-at-p'.
11291
11292 2012-02-04 Glenn Morris <rgm@gnu.org>
11293
11294 * files.el (revert-buffer):
11295 Doc fix (mention revert-buffer-in-progress-p).
11296
11297 * emacs-lisp/ert-x.el (ert-simulate-command):
11298 Check deferred-action-list (which is obsolete) is bound.
11299
11300 * subr.el (with-wrapper-hook): Doc fixes.
11301
11302 * simple.el (filter-buffer-substring-functions)
11303 (buffer-substring-filters, filter-buffer-substring): Doc fixes.
11304
11305 2012-02-04 Lars Ljung <lars@matholka.se> (tiny change)
11306
11307 * eshell/esh-ext.el (eshell-windows-shell-file): Match "cmdproxy"
11308 anywhere in shell-file-name, not just at the beginning. (Bug#10523)
11309
11310 2012-02-04 Leo Liu <sdl.web@gmail.com>
11311
11312 * emacs-lisp/smie.el: Fix dead link (Bug#10711).
11313
11314 2012-02-04 Glenn Morris <rgm@gnu.org>
11315
11316 * image.el (image-extension-data): Add obsolete alias.
11317
11318 * isearch.el (isearch-update): Doc fix.
11319
11320 * facemenu.el (list-colors-display): Doc fix (minor rephrasing).
11321
11322 * ido.el (ido-find-file): Doc fix (ido-toggle-vc not on any key).
11323
11324 2012-02-03 Glenn Morris <rgm@gnu.org>
11325
11326 * image.el (image-animated-p): Doc fix. Use image-animated-types.
11327 (image-animate-timeout): Doc fix.
11328
11329 * image-mode.el (image-animate-loop, image-toggle-animation): Doc fixes.
11330
11331 2012-02-02 Glenn Morris <rgm@gnu.org>
11332
11333 * server.el (server-auth-dir): Doc fix.
11334 (server-eval-at): Doc fix. Give an explicit error if !server-use-tcp.
11335
11336 * subr.el (run-mode-hooks): Doc fix.
11337
11338 2012-02-02 Juri Linkov <juri@jurta.org>
11339
11340 * image-mode.el (image-toggle-display-image): Remove tautological
11341 `major-mode' from the `derived-mode-p' test.
11342
11343 2012-02-02 Kenichi Handa <handa@m17n.org>
11344
11345 * composite.el (compose-region): Cancel previous change.
11346
11347 2012-02-02 Kenichi Handa <handa@m17n.org>
11348
11349 * composite.el (compose-region, compose-string): Signal error for
11350 a null string component (Bug#6988).
11351
11352 2012-02-01 Chong Yidong <cyd@gnu.org>
11353
11354 * view.el (view-buffer-other-window, view-buffer-other-frame):
11355 Handle special modes like view-buffer (Bug#10650).
11356 (view-buffer): Simplify.
11357
11358 * frame.el (set-frame-font): Tweak meaning of third argument.
11359
11360 * dynamic-setting.el (font-setting-change-default-font):
11361 Use set-frame-font (Bug#9982).
11362
11363 2012-02-01 Glenn Morris <rgm@gnu.org>
11364
11365 * progmodes/compile.el (compilation-internal-error-properties):
11366 Respect compilation-first-column in the "*compilation*" buffer.
11367
11368 * emacs-lisp/easy-mmode.el (define-minor-mode):
11369 Relax :variable's test for a named function.
11370
11371 2012-01-31 Alan Mackenzie <acm@muc.de>
11372
11373 * progmodes/cc-engine.el (c-guess-basic-syntax): CASE 5B.1: Fix an
11374 off by one error.
11375
11376 2012-01-31 Chong Yidong <cyd@gnu.org>
11377
11378 * frame.el (set-frame-font): New arg ALL-FRAMES.
11379
11380 * menu-bar.el (menu-set-font): Use set-frame-font.
11381
11382 * faces.el (face-spec-reset-face): Don't apply unspecified
11383 attribute values to the default face.
11384
11385 2012-01-31 Juanma Barranquero <lekktu@gmail.com>
11386
11387 * progmodes/cwarn.el (cwarn): Remove dead link.
11388 (cwarn-configuration, cwarn-verbose, cwarn-mode-text, cwarn-load-hook):
11389 Remove * from defcustom docstrings.
11390 (turn-on-cwarn-mode): Make obsolete.
11391 (c-at-toplevel-p): Remove compatibility code for Emacs 20.3 and older.
11392 (turn-on-cwarn-mode-if-enabled): Call `cwarn-mode'.
11393
11394 2012-01-31 Glenn Morris <rgm@gnu.org>
11395
11396 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix.
11397 Fix :variable handling of mode a symbol not equal to modefun.
11398 Allow named functions to be used as the cdr of :variable.
11399
11400 2012-01-30 Glenn Morris <rgm@gnu.org>
11401
11402 * emacs-lisp/authors.el (authors-fixed-entries):
11403 Remove reference to deleted file rnewspost.el.
11404
11405 2012-01-29 Juanma Barranquero <lekktu@gmail.com>
11406
11407 * window.el (window-with-parameter): Remove unused variable `windows'.
11408 (window--side-check): Remove unused variable `code'.
11409 (window--resize-siblings): Remove unused variable `first'.
11410 (adjust-window-trailing-edge): Remove unused variable `failed'.
11411 (window-deletable-p, window--delete): Remove unused variable `buffer'.
11412 Use `let', not `let*'.
11413 (balance-windows-2): Remove unused variable `found'.
11414 (window--state-put-2): Remove unused variable `splits'.
11415 (window-state-put): Remove unused variable `selected'.
11416 (same-window-p): Use `string-match-p'.
11417 (display-buffer-assq-regexp): Remove unused variable `value'.
11418 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
11419 Mark argument ALIST as ignored.
11420 (pop-to-buffer): Remove unused variable `old-window'.
11421
11422 2012-01-29 Eli Zaretskii <eliz@gnu.org>
11423
11424 * jka-cmpr-hook.el (jka-compr-compression-info-list): Support .lz
11425 and .lzma compressed files.
11426
11427 2012-01-29 Chong Yidong <cyd@gnu.org>
11428
11429 * frame.el (window-system-default-frame-alist): Doc fix.
11430
11431 * dynamic-setting.el (font-setting-change-default-font): Don't
11432 change the default face if SET-FONT argument is non-nil (Bug#9982).
11433
11434 2012-01-29 Samuel Bronson <naesten@gmail.com> (tiny change)
11435
11436 * custom.el (defcustom): Add doc link to Lisp manual (Bug#10635).
11437
11438 2012-01-29 Syver Enstad <syver.enstad@cisco.com> (tiny change)
11439
11440 * progmodes/gud.el (pdb): Give pdb full paths, to allow setting
11441 breakpoints in files outside current directory (Bug#6098).
11442
11443 2012-01-29 Chong Yidong <cyd@gnu.org>
11444
11445 * progmodes/python.el: Require ansi-color at top-level.
11446
11447 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-abbrev-table):
11448 Define and use in Emacs Lisp mode (Bug#9360).
11449 (lisp-mode-abbrev-table): Add doc.
11450 (lisp-mode-variables): Don't set local-abbrev-table.
11451 (lisp-interaction-mode): Use emacs-lisp-mode-abbrev-table.
11452
11453 2012-01-28 Roland Winkler <winkler@gnu.org>
11454
11455 * textmodes/bibtex.el (bibtex-vec-incr): Fix docstring.
11456
11457 2012-01-28 Roland Winkler <winkler@gnu.org>
11458
11459 * textmodes/bibtex.el (bibtex-entry-alist): New function.
11460 (bibtex-set-dialect): Use it. Either set global values of
11461 dialect-dependent variables or bind these variables buffer-locally
11462 (Bug#10254).
11463 (bibtex-mode): Call bibtex-set-dialect via
11464 hack-local-variables-hook.
11465 (bibtex-dialect): Update docstring.
11466 Add safe-local-variable predicate.
11467 (bibtex-entry-alist, bibtex-field-alist): Initialize via
11468 bibtex-set-dialect.
11469 (bibtex-mode-map): Define menu for each dialect.
11470 (bibtex-entry): Fix docstring.
11471
11472 2012-01-28 Chong Yidong <cyd@gnu.org>
11473
11474 * eshell/esh-arg.el (eshell-quote-argument): New function.
11475
11476 * eshell/esh-ext.el (eshell-invoke-batch-file):
11477 * eshell/em-unix.el (eshell/cat, eshell/du): Use it to quote the
11478 first arg to eshell-parse-command (Bug#10523).
11479
11480 2012-01-28 Drew Adams <drew.adams@oracle.com>
11481
11482 * net/ange-ftp.el (ange-ftp-canonize-filename): Check, that
11483 `default-directory' is non-nil.
11484
11485 2012-01-28 Eli Zaretskii <eliz@gnu.org>
11486
11487 * mail/emacsbug.el (report-emacs-bug): Fill the potentially long
11488 line that displays system-configuration-options. (Bug#9924)
11489
11490 2012-01-28 Drew Adams <drew.adams@oracle.com>
11491
11492 * descr-text.el (describe-char): Show information about POS, in
11493 addition to information about the character at POS. Improve and
11494 update the doc string. Change "code point" to "code point in
11495 charset", to avoid confusion with the character's Unicode code
11496 point shown above that. (Bug#10129)
11497
11498 2012-01-28 Eli Zaretskii <eliz@gnu.org>
11499
11500 * descr-text.el (describe-char): Show the raw character, not only
11501 its display form at POS. Suggested by Kenichi Handa <handa@m17n.org>.
11502 See http://lists.gnu.org/archive/html/emacs-devel/2012-01/msg00760.html
11503 for the reasons.
11504
11505 2012-01-28 Phil Hagelberg <phil@hagelb.org>
11506
11507 * emacs-lisp/package.el (package-install):
11508 Run package-refresh-contents if there is no archive yet (Bug#9798).
11509
11510 2012-01-28 Chong Yidong <cyd@gnu.org>
11511
11512 * emacs-lisp/package.el (package-maybe-load-descriptor):
11513 New function, split from package-maybe-load-descriptor.
11514 (package-maybe-load-descriptor): Use it.
11515 (package-download-transaction): Fully load required packages
11516 inside the loop, so that `require' calls work (Bug#10593).
11517 (package-install): No need to call package-initialize now.
11518
11519 2012-01-28 Chong Yidong <cyd@gnu.org>
11520
11521 * simple.el (deactivate-mark): Doc fix (Bug#8614).
11522
11523 * tooltip.el (tooltip-mode): Doc fix.
11524 (tooltip-use-echo-area): Mark as obsolete (Bug#6595).
11525
11526 * frame.el (set-cursor-color): Doc fix (Bug#352).
11527
11528 * mail/rmail.el (rmail-start-mail): Add send-action again (Bug#10625).
11529 (rmail-mail-return): Switch to NEWBUF only if it is non-nil.
11530
11531 * cus-edit.el (custom-buffer-create-internal): Fix search button
11532 action (Bug#10542).
11533 (customize-unsaved, customize-saved): Doc fix (Bug#10541).
11534
11535 2012-01-27 Eduard Wiebe <usenet@pusto.de>
11536
11537 * dired.el (dired-mark-files-regexp):
11538 Include any subdirectory components. (Bug#10445)
11539
11540 2012-01-27 Mike Lamb <mrlamb@gmail.com> (tiny change)
11541
11542 * pcmpl-unix.el (pcmpl-ssh-known-hosts):
11543 Handle [host]:port syntax. (Bug#10533)
11544
11545 2012-01-27 Alex Harsanyi <harsanyi@mac.com>
11546
11547 * xml.el (xml-parse-tag): Fix parsing of comments (Bug#10405).
11548
11549 2012-01-26 Glenn Morris <rgm@gnu.org>
11550
11551 * dired-x.el (dired-bind-jump): Use ctl-x-map and ctl-x-4-map.
11552 * term.el (term-raw-escape-map): Use Control-X-prefix.
11553 * vc/vc-hooks.el (vc-prefix-map): Use ctl-x-map. (Bug#10566)
11554
11555 2012-01-25 Martin Rudalics <rudalics@gmx.at>
11556
11557 * window.el (window-state-get, window--state-get-1): Don't deal
11558 with fixed-sizeness of windows. Simplify code.
11559
11560 2012-01-25 Jérémy Compostella <jeremy.compostella@gmail.com>
11561
11562 * window.el (window--state-get-1, window--state-put-2):
11563 Don't save and restore the mark.
11564
11565 2012-01-25 Chong Yidong <cyd@gnu.org>
11566
11567 * custom.el (custom-variable-p): Doc fix.
11568
11569 2012-01-25 Glenn Morris <rgm@gnu.org>
11570
11571 * dired.el (dired-goto-file): Handle some of the more common
11572 characters that `ls -b' escapes. (Bug#10596)
11573
11574 * progmodes/compile.el (compilation-next-error-function):
11575 Respect compilation-first-column in the "*compilation*" buffer.
11576 * progmodes/grep.el (grep-first-column): New variable. (Bug#10594)
11577
11578 * vc/vc.el (vc-modify-change-comment): Scoping fix. (Bug#10513)
11579
11580 2012-01-24 Glenn Morris <rgm@gnu.org>
11581
11582 * pcmpl-gnu.el (pcomplete/tar): Handle " - ". (Bug#10457)
11583
11584 2012-01-24 Julien Danjou <julien@danjou.info>
11585
11586 * color.el (color-rgb-to-hsl): Fix value computing.
11587 (color-hue-to-rgb): New function.
11588 (color-hsl-to-rgb): New function.
11589 (color-clamp, color-saturate-hsl, color-saturate-name)
11590 (color-desaturate-hsl, color-desaturate-name, color-lighten-hsl)
11591 (color-lighten-name, color-darken-hsl, color-darken-name): New function.
11592
11593 2012-01-24 Glenn Morris <rgm@gnu.org>
11594
11595 * vc/vc-rcs.el (vc-rcs-create-tag):
11596 * vc/vc-sccs.el (vc-sccs-create-tag):
11597 Fix argument spec to be what vc-create-tag expects. (Bug#10515)
11598
11599 2012-01-23 Mike Lamb <mrlamb@gmail.com> (tiny change)
11600
11601 * eshell/esh-util.el (eshell-read-hosts-file):
11602 Skip comment lines. (Bug#10549)
11603
11604 * eshell/em-unix.el (pcomplete/ssh): Remove. (Bug#10548)
11605
11606 2012-01-23 Juanma Barranquero <lekktu@gmail.com>
11607
11608 * subr.el (display-delayed-warnings): Doc fix.
11609 (collapse-delayed-warnings): New function to collapse identical
11610 adjacent warnings.
11611 (delayed-warnings-hook): Add it.
11612
11613 2012-01-22 Michael Albinus <michael.albinus@gmx.de>
11614
11615 * net/tramp.el (tramp-action-login): Set connection property "login-as".
11616
11617 * net/tramp-sh.el (tramp-methods): Add user spec to "pscp" and "psftp".
11618 (tramp-default-user-alist): Don't add "pscp".
11619 (tramp-do-copy-or-rename-file-out-of-band): Use connection
11620 property "login-as", if set. (Bug#10530)
11621
11622 2012-01-21 Michael Albinus <michael.albinus@gmx.de>
11623
11624 * net/tramp-sh.el (tramp-default-user-alist): Don't add "plink",
11625 "plink1" and "psftp". (Bug#10530)
11626
11627 2012-01-21 Kenichi Handa <handa@m17n.org>
11628
11629 * international/mule-cmds.el (prefer-coding-system): Show a
11630 warning message if the default value of file-name-coding-system
11631 was not changed.
11632
11633 2012-01-21 Jérémy Compostella <jeremy.compostella@gmail.com>
11634
11635 * windmove.el (windmove-reference-loc):
11636 Fix windmove-reference-loc miscalculation.
11637
11638 2012-01-21 Jay Belanger <jay.p.belanger@gmail.com>
11639
11640 * calc/calc-units.el (math-put-default-units): Don't use "1" as a
11641 default unit.
11642
11643 2012-01-21 Glenn Morris <rgm@gnu.org>
11644
11645 * international/mule.el (auto-coding-alist): Add .tbz.
11646
11647 * files.el (local-enable-local-variables): Doc fix.
11648 (inhibit-local-variables-regexps): Rename from
11649 inhibit-first-line-modes-regexps. Keep old name as obsolete alias.
11650 Doc fix. Add some extensions from auto-coding-alist.
11651 (inhibit-local-variables-suffixes):
11652 Rename from inhibit-first-line-modes-suffixes. Doc fix.
11653 (inhibit-local-variables-p):
11654 New function, extracted from set-auto-mode-1.
11655 (set-auto-mode): Doc fix. Respect inhibit-local-variables-regexps.
11656 (set-auto-mode-1): Doc fix. Use inhibit-local-variables-p.
11657 (hack-local-variables): Doc fix. Make the mode-only case
11658 respect enable-local-variables and friends.
11659 Respect inhibit-local-variables-regexps for file-locals, but
11660 not for directory-locals.
11661 (set-visited-file-name):
11662 Take account of inhibit-local-variables-regexps.
11663 Whether it applies may change as the file name is changed.
11664 * jka-cmpr-hook.el (jka-compr-install):
11665 * jka-compr.el (jka-compr-uninstall):
11666 Update for inhibit-first-line-modes-suffixes name change.
11667
11668 2012-01-20 Martin Rudalics <rudalics@gmx.at>
11669
11670 * help-macro.el (make-help-screen): Temporarily restore original
11671 binding for minor-mode-map-alist (Bug#10454).
11672
11673 2012-01-19 Julien Danjou <julien@danjou.info>
11674
11675 * color.el (color-name-to-rgb): Use the white color to find the max
11676 color component value and return correctly computed values.
11677 (color-name-to-rgb): Add missing float conversion for max value.
11678
11679 2012-01-19 Martin Rudalics <rudalics@gmx.at>
11680
11681 * window.el (window--state-get-1, window-state-get): Do not use
11682 special state value for window-persistent-parameters.
11683 Rename argument IGNORE to WRITABLE. Rewrite doc-string.
11684 (window--state-put-2): Reset all window parameters to nil before
11685 assigning values of persistent parameters.
11686
11687 2012-01-18 Alan Mackenzie <acm@muc.de>
11688
11689 Eliminate sluggishness and hangs in fontification of "semicolon
11690 deserts".
11691
11692 * progmodes/cc-engine.el (c-state-nonlit-pos-interval):
11693 Change value 10000 -> 3000.
11694 (c-state-safe-place): Reformulate so it doesn't stack up an
11695 infinite number of wrong entries in c-state-nonlit-pos-cache.
11696 (c-determine-limit-get-base, c-determine-limit): New functions to
11697 determine backward search limits disregarding literals.
11698 (c-find-decl-spots): Amend commenting.
11699 (c-cheap-inside-bracelist-p): New function which detects "={".
11700
11701 * progmodes/cc-fonts.el
11702 (c-make-font-lock-BO-decl-search-function): Give a limit to a
11703 backward search.
11704 (c-font-lock-declarations): Fix an occurrence of point being
11705 undefined. Check additionally for point being in a bracelist or
11706 near a macro invocation without a semicolon so as to avoid a
11707 fruitless time consuming search for a declarator. Give a more
11708 precise search limit for declarators using the new
11709 c-determine-limit.
11710
11711 2012-01-18 Glenn Morris <rgm@gnu.org>
11712
11713 * files.el (auto-mode-alist, inhibit-first-line-modes-regexps)
11714 (set-auto-mode): Doc fixes.
11715
11716 2012-01-17 Glenn Morris <rgm@gnu.org>
11717
11718 * isearch.el (search-nonincremental-instead): Fix doc typo.
11719
11720 * dired.el (dired-insert-directory): Handle newlines in directory name.
11721 (dired-build-subdir-alist): Unescape newlines in directory name.
11722
11723 2012-01-17 Michael Albinus <michael.albinus@gmx.de>
11724
11725 * net/tramp.el (tramp-local-end-of-line): New defcustom.
11726 (tramp-action-login, tramp-action-yesno, tramp-action-yn)
11727 (tramp-action-terminal): Use it. (Bug#10530)
11728
11729 2012-01-16 Stefan Monnier <monnier@iro.umontreal.ca>
11730
11731 * minibuffer.el (completion--replace): Strip properties (bug#10062).
11732
11733 2012-01-16 Martin Rudalics <rudalics@gmx.at>
11734
11735 * window.el (window-state-ignored-parameters): Remove variable.
11736 (window--state-get-1): Rename argument MARKERS to IGNORE.
11737 Handle persistent window parameters. Make copy of clone-of
11738 parameter only if requested. (Bug#10348)
11739 (window--state-put-2): Install a window parameter only if it has
11740 a non-nil value or an existing parameter shall be overwritten.
11741
11742 2012-01-15 Michael Albinus <michael.albinus@gmx.de>
11743
11744 * net/tramp-sh.el (tramp-remote-path): Set tramp-autoload cookie.
11745
11746 2012-01-14 Eli Zaretskii <eliz@gnu.org>
11747
11748 * info.el (Info-toc-build): If the Info file has no "Up" pointer,
11749 don't pass the (nil) value of `upnode' to string-match.
11750
11751 2012-01-14 Chong Yidong <cyd@gnu.org>
11752
11753 * startup.el (command-line): Fix X resource class for cursorColor.
11754 Fix values recognized by the cursorBlink resource.
11755
11756 2012-01-14 Paul Eggert <eggert@cs.ucla.edu>
11757
11758 * epg.el (epg--make-temp-file): Avoid permission race condition
11759 when running on old Emacs versions (bug#10403).
11760
11761 2012-01-14 Glenn Morris <rgm@gnu.org>
11762
11763 * dired.el (dired-get-filename): Fix 'verbatim case of previous change.
11764
11765 2012-01-13 Alan Mackenzie <acm@muc.de>
11766
11767 Fix filling for when filladapt mode is enabled.
11768
11769 * progmodes/cc-cmds.el (c-fill-paragraph): In the invocation of
11770 c-mask-paragraph, pass in `fill-paragraph' rather than
11771 `fill-region-as-paragraph'. (This is a reversion of a previous
11772 change.)
11773 * progmodes/cc-mode.el (c-basic-common-init):
11774 Make fill-paragraph-handle-comment buffer local and set it to nil.
11775
11776 2012-01-13 Glenn Morris <rgm@gnu.org>
11777
11778 * dired.el (dired-switches-escape-p): New function.
11779 (dired-insert-directory): Use dired-switches-escape-p.
11780 (dired-get-filename): Undo "\ " quoting if needed. (Bug#10469)
11781
11782 * find-dired.el (find-ls-option): Doc fix. (Bug#10262)
11783
11784 2012-01-12 Glenn Morris <rgm@gnu.org>
11785
11786 * mail/sendmail.el (mail-mode): Update paragraph-separate for
11787 changes in adaptive-fill-regexp. (Bug#10276)
11788
11789 2012-01-11 Alan Mackenzie <acm@muc.de>
11790
11791 Fix Emacs bug #10463 - put `widen's around the critical spots.
11792
11793 * progmodes/cc-engine.el (c-in-literal, c-literal-limits): Put a
11794 widen around each invocation of c-state-pp-to-literal. Remove an
11795 unused let variable.
11796
11797 2012-01-11 Glenn Morris <rgm@gnu.org>
11798
11799 * dired-aux.el (dired-do-shell-command): Fix */? logic. (Bug#6561)
11800 Doc fix.
11801
11802 2012-01-10 Chong Yidong <cyd@gnu.org>
11803
11804 * net/network-stream.el (network-stream-open-starttls):
11805 Avoid emitting a confusing error message when the server gives a bad
11806 response to the capability command.
11807
11808 2012-01-10 Glenn Morris <rgm@gnu.org>
11809
11810 * mail/unrmail.el (unrmail): Tweak previous change.
11811
11812 2012-01-09 Chong Yidong <cyd@gnu.org>
11813
11814 * custom.el (custom-safe-themes): Use SHA-256 for hashing.
11815
11816 2012-01-08 Alan Mackenzie <acm@muc.de>
11817
11818 Optimise font locking in long enum definitions.
11819
11820 * progmodes/cc-fonts.el (c-font-lock-declarations): Add an extra
11821 arm to a cond form to handle enums.
11822 * progmodes/cc-langs.el (c-enums-contain-decls): New lang variable.
11823 * progmodes/cc-mode.el (c-font-lock-fontify-region): Correct a typo.
11824
11825 2012-01-07 Paul Eggert <eggert@cs.ucla.edu>
11826
11827 * files.el (move-file-to-trash): Preserve default file modes on error.
11828 (Bug#10401)
11829
11830 2012-01-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
11831
11832 * faces.el (set-face-attribute): Clarify the meaning of the nil
11833 frame (bug#10294).
11834
11835 * subr.el (with-selected-frame): Mention that the selected frame
11836 is restored (bug#9980).
11837
11838 * ibuffer.el (ibuffer-mode): List the bindings in the corrent map
11839 (bug#9759).
11840
11841 * mail/smtpmail.el (password-cache-add): Remove unused declaration.
11842 (password-read): Don't autoload unused function.
11843
11844 2012-01-07 Juanma Barranquero <lekktu@gmail.com>
11845
11846 * progmodes/which-func.el (which-func-mode): Turn into a
11847 non-interactive function and mark as obsolete (bug#10428).
11848
11849 2012-01-06 Chong Yidong <cyd@gnu.org>
11850
11851 * files.el (hack-dir-local-variables-non-file-buffer): Add doc.
11852 (hack-one-local-variable-eval-safep): Allow 0 arg for minor mode
11853 functions, along with 1 and -1.
11854
11855 2012-01-06 Eli Zaretskii <eliz@gnu.org>
11856
11857 * time.el (display-time-load-average)
11858 (display-time-default-load-average): Doc fixes. See the thread
11859 starting at
11860 http://lists.gnu.org/archive/html/help-gnu-emacs/2012-01/msg00059.html
11861 for the details.
11862
11863 2012-01-06 Glenn Morris <rgm@gnu.org>
11864
11865 * mail/unrmail.el (unrmail): Give an explicit error if the input file
11866 has no messages. (Bug#10377)
11867
11868 * info.el (Info-mode-map): Bind e to end-of-buffer, rather
11869 than Info-edit. (Bug#10385)
11870
11871 * time.el (display-time-load-average, display-time-next-load-average):
11872 Doc fixes.
11873
11874 * emacs-lisp/bytecomp.el (byte-compile-file): Do not propagate a file
11875 local setting of buffer-read-only to the input buffer. (Bug#10419)
11876
11877 * calendar/calendar.el (calendar-mode):
11878 Locally set scroll-margin to 0. (Bug#10379)
11879
11880 2012-01-06 Ulrich Mueller <ulm@gentoo.org>
11881
11882 * play/doctor.el (doctor-death): Escape "," characters. (Bug#10370)
11883
11884 2012-01-05 Glenn Morris <rgm@gnu.org>
11885
11886 * eshell/em-unix.el (diff-no-select): Autoload it.
11887 (eshell/diff): Use diff-no-select. (Bug#10420)
11888
11889 2012-01-05 Chong Yidong <cyd@gnu.org>
11890
11891 * shell.el (shell-dynamic-complete-functions): Revert last change.
11892 (shell-command-completion-function): New function.
11893 (shell-completion-vars): Use it to implement
11894 shell-completion-execonly (Bug#10417).
11895
11896 * custom.el (enable-theme): Don't set custom-safe-themes.
11897
11898 * cus-theme.el (custom-theme-merge-theme):
11899 Ignore custom-enabled-themes and custom-safe-themes.
11900
11901 2012-01-05 Michael R. Mauger <mmaug@yahoo.com>
11902
11903 * progmodes/sql.el (sql-login-hook): Add hook to respond to the
11904 first prompt in `sql-interacive-mode'.
11905 (sql-mode-oracle-font-lock-keywords): Add CONNECT_BY_* builtin
11906 keywords.
11907 (sql-mode-mysql-font-lock-keywords): Add ELSEIF keyword.
11908 (sql-product-interactive): Bug fix: Set `sql-buffer' in
11909 context of original buffer. Invoke `sql-login-hook'.
11910
11911 2012-01-04 Eli Zaretskii <eliz@gnu.org>
11912
11913 * mail/rmail.el (rmail-font-lock-keywords): Accept non-ASCII
11914 letters in cite-prefix.
11915
11916 2012-01-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
11917
11918 * mail/smtpmail.el (smtpmail-stream-type): Mention the `ssl' value.
11919
11920 2012-01-03 Chong Yidong <cyd@gnu.org>
11921
11922 * shell.el (shell-dynamic-complete-functions):
11923 Put pcomplete-completions-at-point, so as to try
11924 comint-filename-completion first (Bug#10417).
11925
11926 2012-01-02 Richard Stallman <rms@gnu.org>
11927
11928 * battery.el (battery-status-function):
11929 Detect when to use battery-yeeloong-sysfs.
11930 (battery-echo-area-format): Add string for Yeeloong.
11931 (battery-linux-proc-apm, battery-linux-proc-acpi): Doc fixes.
11932 (battery-yeeloong-sysfs): New function.
11933
11934 2012-01-02 Chong Yidong <cyd@gnu.org>
11935
11936 * dirtrack.el (dirtrack-list): Eliminate unused third element.
11937 (dirtrack): Merge code for handling relative filenames in prompt
11938 from shell-dir-cookie-watcher.
11939 (dirtrack-debug-message): New arg to avoid excess format calls.
11940
11941 * shell.el (shell-dir-cookie-re): Variable deleted.
11942 (shell-dir-cookie-watcher): Function deleted.
11943 (shell-mode): Don't use shell-dir-cookie-re, since it is redundant
11944 with dirtrack-mode.
11945
11946 2012-01-01 Eli Zaretskii <eliz@gnu.org>
11947
11948 * term/w32-win.el (dynamic-library-alist) <gnutls>:
11949 Load libgnutls-28.dll, from GnuTLS version 3.x, in preference to
11950 libgnutls-26.dll.
11951
11952 2011-12-31 Andreas Schwab <schwab@linux-m68k.org>
11953
11954 * emacs-lisp/bytecomp.el (byte-compile-file): Fix indentation.
11955
11956 2011-12-31 Eli Zaretskii <eliz@gnu.org>
11957
11958 * mail/rmail.el (rmail-show-message-1): Decode any RFC2047 encoded
11959 headers of non-MIME messages, when rmail-enable-mime is non-nil.
11960
11961 2011-12-29 Michael Albinus <michael.albinus@gmx.de>
11962
11963 * net/tramp-sh.el (tramp-find-shell): Set "remote-shell" property
11964 also for alternative shells.
11965 (tramp-open-connection-setup-interactive-shell): Check, whether
11966 the shell is a busybox.
11967 (tramp-send-command): Don't suppress multiple prompts for
11968 busyboxes, it hurts.
11969
11970 2011-12-28 Chong Yidong <cyd@gnu.org>
11971
11972 * progmodes/gdb-mi.el (gdb-get-source-file-list)
11973 (gdb-get-source-file): Move mode line update to
11974 gdb-get-source-file (Bug#10087).
11975
11976 2011-12-25 Chong Yidong <cyd@gnu.org>
11977
11978 * progmodes/gud.el (gud-gdb-fetch-lines-filter): Just use
11979 gud-gdb-marker-filter without taking it as an argument.
11980 (gud-gdb-run-command-fetch-lines): Caller changed.
11981 (gud-gdb-completion-function): New variable.
11982 (gud-gdb-completion-at-point): Use it.
11983 (gud-gdb-completions-1): Split from gud-gdb-completions.
11984
11985 * progmodes/gdb-mi.el (gdb-input): Accept command and handler
11986 function as separate arguments.
11987 (gdb-init-1, gdb-non-stop-handler, gdb-check-target-async)
11988 (gdb-tooltip-print-1, gud-watch, gdb-speedbar-update)
11989 (gdb-var-list-children, gdb-var-set-format, gdb-var-delete-1)
11990 (gdb-var-delete-children, gdb-edit-value, gdb-var-update)
11991 (gdb-stopped, def-gdb-auto-update-trigger)
11992 (gdb-place-breakpoints, gdb-select-thread, gdb-select-frame)
11993 (gdb-get-changed-registers, gdb-get-main-selected-frame):
11994 Callers changed.
11995 (gud-gdbmi-completions): New function.
11996 (gdb): Use it for generating the completion table.
11997
11998 2011-12-24 Alan Mackenzie <acm@muc.de>
11999
12000 Introduce a mechanism to widen the region used in context font
12001 locking. Use this to protect declarations from losing their contexts.
12002
12003 * progmodes/cc-langs.el (c-before-font-lock-functions):
12004 Replace c-set-fl-decl-start with c-change-set-fl-decl-start (Renaming).
12005 (c-before-context-fontification-functions): New defvar, a list of
12006 functions to be run just before context (etc.) font locking.
12007
12008 * progmodes/cc-mode.el (c-extend-font-lock-region-for-macros):
12009 New, functionality extracted from
12010 c-neutralize-syntax-in-and-mark-CPP.
12011 (c-in-after-change-fontification): New variable.
12012 (c-after-change): Set c-in-after-change-fontification.
12013 (c-set-fl-decl-start): Rejig its interface, so it can be called
12014 from both after-change and context fontifying.
12015 (c-change-set-fl-decl-start, c-context-set-fl-decl-start):
12016 New functions.
12017 (c-standard-font-lock-fontify-region-function): New variable.
12018 (c-font-lock-fontify-region): New function.
12019
12020 2011-12-24 Juri Linkov <juri@jurta.org>
12021
12022 * window.el (window--state-get-1): Set `FORCE' arg of `mark' to t.
12023 (Bug#10348)
12024
12025 2011-12-23 Michael Albinus <michael.albinus@gmx.de>
12026
12027 * net/ange-ftp.el (ange-ftp-copy-file-internal): Check for
12028 existence of source file. (Bug#10325)
12029
12030 2011-12-23 Alan Mackenzie <acm@muc.de>
12031
12032 Fix unstable fontification inside templates.
12033
12034 * progmodes/cc-langs.el (c-before-font-lock-functions):
12035 Newly created from the singular version. The (c c++ objc) entry now
12036 additionally has c-set-fl-decl-start. The other languages (apart
12037 from AWK) have that as a single entry.
12038
12039 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
12040 The functionality for "local" declarations has been extracted to
12041 c-set-fl-decl-start.
12042
12043 * progmodes/cc-mode.el (c-common-init, c-after-change):
12044 Changes due to pluralisation of c-before-font-lock-functions.
12045 (c-set-fl-decl-start): New function, extracted from
12046 c-font-lock-enclosing-decls and enhanced.
12047
12048 2011-12-23 Juanma Barranquero <lekktu@gmail.com>
12049
12050 * desktop.el (desktop-internal-v2s): Fix typos in docstring (bug#10353).
12051
12052 2011-12-22 Juri Linkov <juri@jurta.org>
12053
12054 * progmodes/grep.el (rgrep): Fix docstring. (Bug#10185)
12055
12056 2011-12-22 Chong Yidong <cyd@gnu.org>
12057
12058 * vc/vc-hooks.el (vc-keep-workfiles): Doc fix.
12059
12060 2011-12-21 Drew Adams <drew.adams@oracle.com>
12061
12062 * files.el (file-remote-p): Fix docstring. (Bug#10319)
12063
12064 2011-12-21 Jérémy Compostella <jeremy.compostella@gmail.com>
12065
12066 * battery.el (battery-linux-sysfs): Add missing parameters from acpi.
12067
12068 2011-12-21 Teodor Zlatanov <tzz@lifelogs.com>
12069
12070 * progmodes/cfengine.el: Add Version. Improve CFEngine 3.x syntax
12071 highlighting and support. Fix up comments for capitalization.
12072 (cfengine-mode-debug): New var.
12073 (cfengine3-mode): Change the modeline indicator to "CFE3".
12074 (cfengine3-font-lock-keywords): Improve defun highlighting.
12075 (cfengine2-actions): Rename from `cfengine-actions'.
12076 (cfengine2-font-lock-keywords): Rename from
12077 `cfengine-font-lock-keywords'.
12078 (cfengine2-imenu-expression): Rename from
12079 `cfengine-imenu-expression'.
12080 (cfengine2-outline-level): Rename from `cfengine-outline-level'.
12081 (cfengine2-beginning-of-defun): Rename from
12082 `cfengine-beginning-of-defun'.
12083 (cfengine2-end-of-defun): Rename from `cfengine-end-of-defun'.
12084 (cfengine2-indent-line): Rename from `cfengine-indent-line'.
12085 (cfengine2-mode): Rename from `cfengine-mode'. Change the
12086 modeline indicator to "CFE2".
12087 (cfengine-mode): Defalias to `cfengine-auto-mode'.
12088 (cfengine-mode-abbrevs): Mark obsolete.
12089
12090 2011-12-21 Chong Yidong <cyd@gnu.org>
12091
12092 * vc/vc-bzr.el (vc-bzr-rename-file): Don't pass ~ to Bzr in
12093 filename argument.
12094
12095 2011-12-20 Martin Rudalics <rudalics@gmx.at>
12096
12097 * window.el (window-normalize-buffer-to-display): Remove.
12098 (display-buffer): Handle buffer-or-name argument as in Emacs 23.
12099
12100 2011-12-19 Chong Yidong <cyd@gnu.org>
12101
12102 * vc/vc-dir.el (vc-dir-parent-marked-p, vc-dir-children-marked-p):
12103 Don't signal an error in a predicate function; return non-nil.
12104 (vc-dir-mark-file): Move the error here.
12105 (vc-dir-mark-unmark): If acting on the region, keep going if one
12106 of the entries cannot be marked/unmarked.
12107 (vc-dir-mark-all-files): If current entry is a directory, mark
12108 only child files, as documented.
12109
12110 2011-12-19 Vincent Belaïche <vincentb1@users.sourceforge.net>
12111
12112 * ses.el: Ooops... undo changes of 2011-12-11T14:49:48Z!vincentb1@users.sourceforge.net, as trunk
12113 branch is feature frozen, and 2011-12-11T14:49:48Z!vincentb1@users.sourceforge.net was a feature
12114 addition.
12115
12116 2011-12-18 Jan Djärv <jan.h.d@swipnet.se>
12117
12118 * term/ns-win.el (ns-get-selection-internal)
12119 (ns-store-selection-internal): Declare.
12120 (ns-store-cut-buffer-internal, ns-get-cut-buffer-internal):
12121 Declare as obsolete.
12122 (ns-get-pasteboard, ns-paste-secondary):
12123 Use ns-get-selection-internal.
12124 (ns-set-pasteboard, ns-copy-including-secondary):
12125 Use ns-store-selection-internal.
12126
12127 2011-12-17 Chong Yidong <cyd@gnu.org>
12128
12129 * vc/vc.el (vc-next-action): Doc fix; remove CVS-isms.
12130 (vc-deduce-fileset): Doc fix.
12131
12132 2011-12-16 Andreas Schwab <schwab@linux-m68k.org>
12133
12134 * calc/calc-misc.el (calc-help): Avoid wrapping help message.
12135
12136 2011-12-13 Sam Steingold <sds@gnu.org>
12137
12138 * man.el (Man-getpage-in-background): When running under a
12139 window-system, ignore $MANWIDTH and $COLUMNS.
12140
12141 2011-12-15 Kenichi Handa <handa@m17n.org>
12142
12143 * language/ethio-util.el: Change coding tag to utf-8-emacs.
12144 (setup-ethiopic-environment-internal): Comment out key-binding for
12145 ethio-toggle-punctuation.
12146
12147 2011-12-13 Alan Mackenzie <acm@muc.de>
12148
12149 Add the switch statement to AWK Mode.
12150
12151 * progmodes/cc-awk.el (awk-font-lock-keywords): Add "switch", "case",
12152 "default" to the keywords regexp.
12153
12154 * progmodes/cc-langs.el (c-label-kwds): Let AWK take the same
12155 expression as the rest.
12156 (c-nonlabel-token-key): Allow string literals for AWK.
12157 Refactor for the other modes.
12158
12159 Large brace-block initialisation makes CC Mode slow: Fix.
12160 Tidy up and accelerate c-in-literal, etc. by using the c-parse-state
12161 routines. Limit backward searching in c-font-lock-enclosing.decl.
12162
12163 * progmodes/cc-engine.el (c-state-pp-to-literal): Return the
12164 pp-state and literal type in addition to the limits.
12165 (c-state-safe-place): New defun, extracted from c-state-literal-at.
12166 (c-state-literal-at): Use the above new defun.
12167 (c-slow-in-literal, c-fast-in-literal): Remove.
12168 (c-in-literal, c-literal-limits): Amend to use c-state-pp-to-literal.
12169
12170 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls): Check for
12171 being in a literal. Add a limit for backward searching.
12172
12173 * progmodes/cc-mode.el (awk-mode): Don't alias c-in-literal to
12174 c-slow-in-literal.
12175
12176 2011-12-13 Stefan Monnier <monnier@iro.umontreal.ca>
12177
12178 * progmodes/pascal.el: Declare `ind' as dyn-bound (bug#10264).
12179
12180 2011-12-13 Martin Rudalics <rudalics@gmx.at>
12181
12182 * window.el (delete-other-windows): Use correct frame in call to
12183 window-with-parameter.
12184
12185 2011-12-12 Daniel Pfeiffer <occitan@t-online.de>
12186
12187 * progmodes/make-mode.el: Bring it up to date with makepp V2.0.
12188 (makefile-make-font-lock-keywords): Extend meaning of `keywords'.
12189 (makefile-gmake-statements, makefile-makepp-statements):
12190 Use it and add new makepp keywords.
12191 (makefile-makepp-font-lock-keywords): Add new patterns.
12192 (makefile-match-function-end): Match new [...] and [[...]].
12193
12194 2011-12-11 Juanma Barranquero <lekktu@gmail.com>
12195
12196 * ses.el (ses-call-printer-return, ses-cell-property-get)
12197 (ses-sym-rowcol, ses-printer-validate, ses-formula-record)
12198 (ses-create-cell-variable, ses-reset-header-string)
12199 (ses-cell-set-formula, ses-repair-cell-reference-all)
12200 (ses-self-reference-early-detection, ses-in-print-area, ses-set-curcell)
12201 (ses-check-curcell, ses-call-printer, ses-adjust-print-width)
12202 (ses-print-cell-new-width, ses-formula-references, ses-relocate-formula)
12203 (ses-aset-with-undo, ses-load, ses-truncate-cell)
12204 (ses-read-column-printer, ses-read-default-printer, ses-insert-row)
12205 (ses-delete-row, ses-delete-column, ses-append-row-jump-first-column)
12206 (ses-kill-override, ses-yank-pop, ses-yank-cells, ses-yank-tsf)
12207 (ses-yank-resize, ses-export-tab, ses-mark-row, ses-mark-column)
12208 (ses-renarrow-buffer, ses-insert-range, ses-insert-ses-range)
12209 (ses-safe-printer, ses-safe-formula, ses-warn-unsafe, ses--clean-!)
12210 (ses--clean-_, ses-range, ses-select, ses-center, ses-center-span)
12211 (ses-dashfill, ses-unsafe): Fix typos and reflow docstrings.
12212
12213 2011-12-11 Vincent Belaïche <vincentb1@users.sourceforge.net>
12214
12215 * ses.el: The overall change is to add cell renaming, that is
12216 setting fancy names for cell symbols other than name matching
12217 "\\`[A-Z]+[0-9]+\\'" regexp .
12218 (ses-create-cell-variable): New defun.
12219 (ses-relocate-formula): Relocate formulas only for cells the
12220 symbols of which are not renamed, i.e. symbols whose names do not
12221 match regexp "\\`[A-Z]+[0-9]+\\'".
12222 (ses-relocate-all): Relocate values only for cells the symbols of
12223 which are not renamed.
12224 (ses-load): Create cells variables as the (ses-cell ...) are read,
12225 in order to check row col consistency with cell symbol name only
12226 for cells that are not renamed.
12227 (ses-replace-name-in-formula): New defun.
12228 (ses-rename-cell): New defun.
12229
12230 2011-12-11 Chong Yidong <cyd@gnu.org>
12231
12232 * progmodes/gdb-mi.el (gdb): Set comint-prompt-regexp, required
12233 for completion via gud-gdb-fetch-lines-filter (Bug#10274).
12234
12235 2011-12-11 Eric Hanchrow <eric.hanchrow@gmail.com>
12236
12237 * window.el (other-window): Fix docstring.
12238
12239 2011-12-10 Eli Zaretskii <eliz@gnu.org>
12240
12241 * mail/rmailsum.el (rmail-header-summary): RFC2047 decode the
12242 `from' or `to' address before taking its substring.
12243 Fixes incorrect display in Rmail summary buffer whereby an RFC2047
12244 encoded name is chopped in the middle of the encoded string, and
12245 thus displayed encoded.
12246
12247 2011-12-10 Juanma Barranquero <lekktu@gmail.com>
12248
12249 * makefile.w32-in (update-subdirs-CMD): Use a Local Variables section.
12250
12251 2011-12-10 Eli Zaretskii <eliz@gnu.org>
12252
12253 * textmodes/texnfo-upd.el: Update commentary. Add a warning not
12254 to use texinfo-update-node and commands that call it if the
12255 Texinfo file uses @node lines without next/prev/up pointers.
12256 Correct outdated description about texinfo-master-menu.
12257 (texinfo-all-menus-update, texinfo-master-menu)
12258 (texinfo-update-node, texinfo-every-node-update)
12259 (texinfo-multiple-files-update): Doc fix. Warn against updating
12260 all the @node lines.
12261 (texinfo-master-menu): Only call texinfo-update-node if the prefix
12262 argument is numeric. Explain better in the doc string what the
12263 function really does.
12264 (texinfo-insert-master-menu-list): Improve the error message
12265 displayed if there's no menu in the Top node.
12266 (Bug#2975) See also this thread:
12267 http://lists.gnu.org/archive/html/emacs-devel/2011-12/msg00156.html.
12268
12269 2011-12-09 Manuel Gómez <mgrojo@gmail.com> (tiny change)
12270
12271 * speedbar.el (speedbar-supported-extension-expressions):
12272 Add .adb and .ads, commonly used for Ada source code (bug#10256).
12273
12274 2011-12-09 Juanma Barranquero <lekktu@gmail.com>
12275
12276 * printing.el (pr-mode-alist):
12277 * simple.el (filter-buffer-substring-functions)
12278 (completion-list-insert-choice-function):
12279 * window.el (window-with-parameter, window-atom-root)
12280 (window-sides-slots, window-size-fixed, window-min-delta)
12281 (window-max-delta, window--resize-mini-window)
12282 (window--resize-child-windows-normal, window-tree)
12283 (delete-other-windows, quit-window, split-window)
12284 (display-buffer-record-window, special-display-buffer-names)
12285 (special-display-regexps, special-display-popup-frame)
12286 (same-window-p, split-window-sensibly)
12287 (display-buffer-overriding-action, display-buffer-alist)
12288 (display-buffer-base-action, display-buffer, switch-to-buffer)
12289 (switch-to-buffer-other-window, switch-to-buffer-other-frame)
12290 (fit-window-to-buffer, recenter-positions)
12291 (mouse-autoselect-window-state, mouse-autoselect-window-select):
12292 * emacs-lisp/syntax.el (syntax-propertize-function): Fix typos
12293 and remove unneeded backslashes in docstrings.
12294
12295 2011-12-08 Stefan Monnier <monnier@iro.umontreal.ca>
12296
12297 * emacs-lisp/lisp-mode.el (defmethod): Add doc-string-elt (bug#10244).
12298
12299 * pcmpl-gnu.el: Don't fail when there is no Makefile nor -f arg.
12300 (pcmpl-gnu-makefile-regexps): Accept "makefile" as well as files that
12301 end in ".mk".
12302 (pcmpl-gnu-make-rule-names): Check "makefile" and ignore errors
12303 when reading the makefile (bug#10116).
12304
12305 2011-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
12306
12307 * pcmpl-gnu.el (pcomplete/make): Also allow filename arguments
12308 (bug#10116).
12309
12310 2011-12-06 Glenn Morris <rgm@gnu.org>
12311
12312 * emacs-lisp/package.el (package-archives): Doc fix re riskiness.
12313
12314 2011-12-06 Chong Yidong <cyd@gnu.org>
12315
12316 * progmodes/cc-fonts.el (c-annotation-face): Use defface.
12317
12318 2011-12-06 Juanma Barranquero <lekktu@gmail.com>
12319
12320 * textmodes/table.el (table-shorten-cell): Fix typo.
12321
12322 2011-12-05 Christopher Genovese <genovese.cr@gmail.com> (tiny change)
12323
12324 * emacs-lisp/assoc.el (aput): Fix return value (bug#10146)
12325
12326 2011-12-05 Eli Zaretskii <eliz@gnu.org>
12327
12328 * descr-text.el (describe-char): Fix display of strong
12329 right-to-left characters and directional embeddings and overrides.
12330
12331 * simple.el (what-cursor-position): Fix display of codepoints of
12332 strong right-to-left characters.
12333
12334 2011-12-05 Chong Yidong <cyd@gnu.org>
12335
12336 * faces.el (read-color): Doc fix.
12337
12338 2011-12-05 Glenn Morris <rgm@gnu.org>
12339
12340 * align.el (align--set-marker): Add doc-string.
12341 Don't try to move something that is not a marker. (Bug#10216)
12342
12343 2011-12-04 Glenn Morris <rgm@gnu.org>
12344
12345 * calendar/appt.el (appt-add): Rewrite the interactive-spec to avoid
12346 overly zealous deletion of trailing whitespace.
12347
12348 2011-12-04 Juanma Barranquero <lekktu@gmail.com>
12349
12350 * server.el (server-delete-client): On Windows, do not try to delete
12351 the only terminal.
12352 (server-process-filter): On Windows, treat requests for a tty frame as
12353 if they were for a GUI frame if the running server is in GUI mode.
12354
12355 2011-12-03 Glenn Morris <rgm@gnu.org>
12356
12357 * textmodes/texinfmt.el (batch-texinfo-format): Doc fix. (Bug#10207)
12358
12359 2011-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
12360
12361 * electric.el: Streamline electric-indent's hook.
12362 (electric-indent-chars): Revert to simple list.
12363 (electric-indent-functions): New var.
12364 (electric-indent-post-self-insert-function): Use it.
12365
12366 * progmodes/prolog.el (prolog-find-value-by-system): Avoid error when
12367 there's no inferior buffer (bug#10196).
12368 (prolog-consult-compile): Don't use toggle-read-only.
12369
12370 2011-12-02 Michael Albinus <michael.albinus@gmx.de>
12371
12372 * net/tramp-sh.el (tramp-maybe-open-connection): Handle user
12373 interrupt. (Bug#10187)
12374
12375 2011-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
12376
12377 * pcmpl-gnu.el (pcomplete/tar): large-file-warn-threshold can be nil
12378 (bug#9160).
12379
12380 * dired-aux.el (dired-query): Don't assume help-char is modifier-free
12381 (bug#10191).
12382
12383 2011-12-02 Juri Linkov <juri@jurta.org>
12384
12385 * info.el (Info-search): Display "end of manual" when Isearch
12386 reaches the end of single-file Info manual. (Bug#9918)
12387
12388 2011-12-02 Eli Zaretskii <eliz@gnu.org>
12389
12390 * isearch.el (isearch-message-prefix): Run the input method part
12391 of the prompt through bidi-string-mark-left-to-right. (Bug#10183)
12392
12393 2011-12-02 Juri Linkov <juri@jurta.org>
12394
12395 * isearch.el (isearch-occur): Use `word-search-regexp' for
12396 `isearch-word'.
12397 (isearch-search-and-update): Add condition for `isearch-word' and
12398 call `word-search-regexp'. (Bug#10145)
12399
12400 2011-12-01 Glenn Morris <rgm@gnu.org>
12401
12402 * eshell/em-hist.el (eshell-hist-initialize):
12403 Handle eshell-history-size nil and HISTSIZE set or unset.
12404 (eshell-history-file-name, eshell-history-size): Fix custom type.
12405
12406 2011-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
12407
12408 * man.el (Man-completion-table): Fix the lambda case (bug#10168).
12409
12410 2011-12-01 Michael McNamara <mac@mail.brushroad.com>
12411
12412 * progmodes/verilog-mode.el (verilog-pretty-expr):
12413 Rework verilog-pretty-expr to handle new assignment operators in system
12414 verilog, such as += *= and the like.
12415 (verilog-assignment-operator-re): Regular expression to find the
12416 assigment operator in a verilog assignment.
12417 (verilog-assignment-operation-re): Regular expression to find an
12418 assignment statement for pretty-expr.
12419 (verilog-in-attribute-p): Query returns true if point is in an
12420 attribute context; used to skip these for expression line up from
12421 pretty-expr.
12422 (verilog-in-parameter-p): Query returns true if point is in an
12423 parameter definition context; used to skip these for expression
12424 line up from pretty-expr.
12425 (verilog-in-parenthesis-p): Query returns true if point is in a
12426 parenthetical expression, specifically ( ) but not [ ] or { };
12427 used by pretty-expr.
12428 (verilog-just-one-space): If there is no space, don't add one.
12429 (verilog-get-lineup-indent-2): Specifically skip just attribute
12430 contexts for expression lineup, rather than skipping all
12431 parenthetical expressions.
12432 (verilog-calculate-indent): Fix comment, and fix indent.
12433 (verilog-do-indent): Indent declarations in lists (suggested by
12434 Joachim Lechner).
12435 (verilog-mode-abbrev-table): Populate abbrev mode with the various
12436 skeleton items.
12437 (verilog-sk-ovm-class): Add skeleton for OVM classes (reported
12438 by Alain Mellan).
12439
12440 2011-12-01 Wilson Snyder <wsnyder@wsnyder.org>
12441
12442 * progmodes/verilog-mode.el (verilog-read-defines): Fix reading
12443 parameters with embedded comments. Reported by Ray Stevens.
12444 (verilog-calc-1, verilog-fork-wait-re) (verilog-forward-sexp,
12445 verilog-wait-fork-re): Fix indentation of "wait fork", bug407.
12446 Reported by Tim Holt.
12447 (verilog-auto): Fix AUTOing a upper module then AUTOing module
12448 instantiated by upper module causing wrong expansion until AUTOed a
12449 second time. Reported by K C Buckenmaier.
12450 (verilog-diff-auto): Fix showing .* as a difference when
12451 `verilog-auto-star-save' off. Reported by Dan Dever.
12452 (verilog-auto-reset, verilog-read-always-signals)
12453 (verilog-auto-reset-blocking-in-non): Fix AUTORESET including
12454 temporary signals in reset list if
12455 verilog-auto-reset-blocking-in-non is nil, and match assignment
12456 style to each signal's assignment type, bug381.
12457 Reported by Thomas Esposito.
12458 (verilog-sk-uvm-class, verilog-uvm-begin-re, verilog-uvm-end-re)
12459 (verilog-uvm-statement-re): Support UVM indentation and
12460 highlighting, with old OVM keywords only.
12461 (verilog-auto-tieoff, verilog-auto-tieoff-declaration):
12462 Support AUTOTIEOFF creating non-wire data types.
12463 Suggested by Jonathan Greenlaw.
12464 (verilog-auto-insert-lisp, verilog-delete-to-paren)
12465 (verilog-forward-sexp-cmt, verilog-forward-sexp-ign-cmt)
12466 (verilog-inject-sense, verilog-read-inst-pins)
12467 (verilog-read-sub-decls, verilog-read-sub-decls-line):
12468 Fix mismatching parenthesis inside commented out code when deleting
12469 AUTOINST, bug383. Reported by Jonathan Greenlaw.
12470 (verilog-auto-ascii-enum): Fix AUTOASCIIENUM one-hot with
12471 non-numeric vector width. Reported by Alex Reed.
12472 (verilog-auto-ascii-enum): Add "onehot" option to work around not
12473 detecting signals with parameter widths. Reported by Alex Reed.
12474 (verilog-auto-delete-trailing-whitespace):
12475 With `verilog-auto-delete-trailing-whitespace' remove trailing
12476 whitespace in auto expansion, bug371. Reported by Brad Dobbie.
12477 (verilog-run-hooks, verilog-scan-cache-flush, verilog-syntax-ppss):
12478 Fix verilog-scan-cache corruption when running user AUTO expansion
12479 hooks that call indentation routines.
12480 (verilog-simplify-range-expression): Fix typo ignoring lower case
12481 identifiers.
12482 (verilog-delete-auto): Fix delete-autos to also remove user created
12483 automatics, as long as they start with AUTO.
12484 (verilog-batch-diff-auto, verilog-diff-auto)
12485 (verilog-diff-function): Add `verilog-diff-auto' and bind to
12486 "C-c?" to report differences in AUTO expansion, ignoring spaces.
12487 (verilog-backward-syntactic-ws-quick, verilog-beg-of-defun-quick)
12488 (verilog-in-paren-quick, verilog-re-search-backward-quick)
12489 (verilog-re-search-forward-quick, verilog-syntax-ppss):
12490 Fix calling `syntax-ppss' when inside auto expansions as the ppss hook
12491 is disabled and its cache will get corrupt, causing AUTOS not to
12492 expand. Instead use only -quick functions.
12493 (verilog-scan-region): Fix scanning over escaped quotes.
12494 (verilog-inside-comment-or-string-p, verilog-inside-comment-p)
12495 (verilog-re-search-backward-quick)
12496 (verilog-re-search-forward-quick, verilog-scan): verilog-scan and
12497 related functions now ignore strings, to fix misparsing of strings
12498 with magic comments embedded in them.
12499 (verilog-read-auto-template):
12500 Fix 'verilog-auto-inst-template-numbers' with extra newline before (.
12501 Reported by Brad Dobbie.
12502 (verilog-read-auto-template):
12503 Fix 'verilog-auto-inst-template-numbers' with comments.
12504 Reported by Brad Dobbie.
12505 (verilog-auto-inst, verilog-auto-inst-param)
12506 (verilog-auto-inst-sort): Add 'verilog-auto-inst-sort' to reduce
12507 merge conflicts with AUTOINST, bug358. Reported by Brad Dobbie.
12508 (verilog-auto-inst-template-numbers): Add 'lhs' policy for
12509 debugging templates without merge conflicts, bug357.
12510 Reported by Brad Dobbie.
12511 (verilog-read-auto-template):
12512 Fix verilog-auto-inst-template-numbers with multiple templates.
12513 Reported by Brad Dobbie.
12514 (verilog-define-abbrev): Fix verilog-mode abbrevs to be system
12515 abbrevs so user won't be asked to save.
12516 (verilog-read-auto-lisp-present): Fix to start at beginning of
12517 buffer in case called outside of verilog-auto.
12518 (verilog-simplify-range-expression): Fix AUTOWIRE expanding "X-1+1"
12519 to "X-2". Reported by Matthew Myers.
12520 (verilog-auto, verilog-auto-inout-in): Add AUTOINOUTIN for creating
12521 all inputs from module templates. Reported by Leith Johnson.
12522 (verilog-module-inside-filename-p): Fix locating programs as with
12523 modules.
12524 (verilog-auto-inst-port): Fix vl-width expressions when using
12525 verilog-auto-inst-param-value, bug331. Reported by Julian Gorfajn.
12526 (verilog-decls-get-regs, verilog-decls-get-signals,
12527 verilog-decls-get-vars, verilog-decls-get-wires, verilog-decls-new,
12528 verilog-modi-cache-add-vars, verilog-modi-cache-add-wires,
12529 verilog-read-decls): Combine reg and wire structures into one var
12530 structure to represent SystemVerilog concepts.
12531 (verilog-auto-ascii-enum, verilog-auto-logic, verilog-auto-reg)
12532 (verilog-auto-reg-input, verilog-auto-tieoff, verilog-auto-wire)
12533 (verilog-auto-wire-type, verilog-insert-definition):
12534 Add verilog-auto-wire-type and AUTOLOGIC to support using
12535 SystemVerilog "logic" keyword instead of "wire"/"reg".
12536 (verilog-auto-reg-input, verilog-decls-get-signals): Fix AUTOWIRE
12537 to declares outputs that also have assignments (presumably in an
12538 ifdef or generate if so there's not a driver conflict).
12539 Reported by Matthew Myers.
12540 (verilog-auto-declare-nettype, verilog-insert-definition):
12541 Add verilog-auto-declare-nettype to fix declarations using
12542 `default_nettype none. Reported by Julian Gorfajn.
12543 (verilog-read-always-signals-recurse, verilog-read-decls)
12544 (verilog-read-sub-decls-gate): Fix infinite loop with (*) and
12545 malformed end statement, bug325. Reported by Joshua Wise and
12546 Andrew Drake.
12547 (verilog-auto-star-safe, verilog-delete-auto-star-implicit)
12548 (verilog-inst-comment-re): Fix not deleting Interfaced comment
12549 when expanding .* in interfaces, bug320.
12550 Reported by Pierre-David Pfister.
12551 (verilog-read-module-name): Fix import statements between module
12552 name and open parenthesis, bug317.
12553 Reported by Pierre-David Pfister.
12554 (verilog-simplify-range-expression): Fix simplification of
12555 multiplications inside AUTOWIRE connections, bug303.
12556 (verilog-auto-inst-port): Support parameter expansion in
12557 multidimensional arrays.
12558 (verilog-read-decls): Fix AUTOREG etc looking for "endproperty"
12559 after "assert property". Reported by Julian Gorfajn.
12560 (verilog-simplify-range-expression): Fix "couldn't merge" errors
12561 with multiplication, bug303.
12562 (verilog-read-decls): Fix parsing of unsigned data types, bug302.
12563 Reported by Jan Frode Lonnum.
12564
12565 2011-11-30 Juanma Barranquero <lekktu@gmail.com>
12566
12567 * htmlfontify.el (hfy-page-header, hfy-post-html-hooks)
12568 (hfy-shell-file-name, hfy-shell):
12569 * international/fontset.el (x-decompose-font-name): Fix typos.
12570
12571 2011-11-29 Ken Brown <kbrown@cornell.edu>
12572
12573 * progmodes/gdb-mi.el: Fix bug#9853, bug#9858, and bug#9878.
12574 (gdb-version): Remove defvar.
12575 (gdb-supports-non-stop): New defvar, replacing `gdb-version'.
12576 (gdb-gud-context-command, gdb-non-stop-handler)
12577 (gdb-current-context-command, gdb-stopped): Use it.
12578 (gdb-init-1): Enable pretty printing here.
12579 (gdb-non-stop-handler): Don't enable pretty-printing here.
12580 Check to see if the target supports non-stop mode; if not, turn off
12581 non-stop mode. Use the following.
12582 (gdb-check-target-async): New defun.
12583 (gud-watch, gdb-stopped): Fix whitespace.
12584 (gdb-get-source-file): Don't try to display the source file if
12585 `gdb-main-file' is nil.
12586
12587 2011-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
12588
12589 * align.el: Try to generate fewer markers (bug#10047).
12590 (align--set-marker): New macro.
12591 (align-region): Use it.
12592
12593 2011-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
12594
12595 * isearch.el (isearch-yank-x-selection): Deactivate mark (bug#10022).
12596
12597 2011-11-29 Chong Yidong <cyd@gnu.org>
12598
12599 * indent.el (indent-for-tab-command, indent-according-to-mode):
12600 Doc fix.
12601 (indent-region): Doc fix. Switch nested ifs to equivalent cond.
12602
12603 2011-11-29 Michael Albinus <michael.albinus@gmx.de>
12604
12605 * vc/diff-mode.el (diff-find-file-name): Make `read-file-name'
12606 aware of remote file names. (Bug#10124)
12607
12608 2011-11-29 Chong Yidong <cyd@gnu.org>
12609
12610 * frame.el (auto-raise-mode, auto-lower-mode): Doc fix.
12611
12612 2011-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
12613
12614 * files.el (find-file): Don't use force-same-window (bug#10144).
12615 * window.el (switch-to-buffer): Better match Emacs-23 behavior and only
12616 use pop-to-buffer if the selected window can't be used.
12617 (pop-to-buffer-same-window): Use display-buffer--same-window-action.
12618
12619 2011-11-28 Eli Zaretskii <eliz@gnu.org>
12620
12621 * vc/diff-mode.el (diff-mode-map): Don't inherit 'z' => 'M-z' from
12622 special-mode-map.
12623
12624 2011-11-28 Chong Yidong <cyd@gnu.org>
12625
12626 * emacs-lisp/easy-mmode.el (define-minor-mode): Fix default doc.
12627
12628 2011-11-27 Nick Roberts <nickrob@snap.net.nz>
12629
12630 * progmodes/gdb-mi.el (gdb-init-1): Condition execution of
12631 gdb-get-source-file-list on gdb-create-source-file-list.
12632
12633 2011-11-26 Eli Zaretskii <eliz@gnu.org>
12634
12635 * whitespace.el (whitespace-newline): Use a different foreground
12636 color for 16-color light-background displays.
12637
12638 2011-11-24 Chong Yidong <cyd@gnu.org>
12639
12640 * window.el (display-buffer--special-action): Doc fix.
12641
12642 2011-11-25 Juanma Barranquero <lekktu@gmail.com>
12643
12644 * emacs-lisp/avl-tree.el (avl-tree--do-copy, avl-tree-create)
12645 (avl-tree-compare-function, avl-tree-empty, avl-tree-enter)
12646 (avl-tree-delete, avl-tree-member, avl-tree-member-p, avl-tree-map)
12647 (avl-tree-mapc, avl-tree-mapf, avl-tree-mapcar, avl-tree-copy)
12648 (avl-tree-clear, avl-tree-stack, avl-tree-stack-pop)
12649 (avl-tree-stack-first):
12650 * emacs-lisp/cconv.el (cconv--analyse-use):
12651 * net/gnutls.el (gnutls-negotiate): Fix typos.
12652
12653 2011-11-24 Glenn Morris <rgm@gnu.org>
12654
12655 * lpr.el (lpr-windows-system, lpr-lp-system):
12656 * mail/binhex.el (binhex-begin-line):
12657 * progmodes/grep.el (grep-history, grep-find-history):
12658 * textmodes/flyspell.el:
12659 * vc/pcvs-defs.el (cvs-global-menu):
12660 * vc/vc-bzr.el (vc-bzr-admin-checkout-format-file):
12661 * vc/vc-mtn.el (vc-mtn-admin-dir, vc-mtn-admin-format):
12662 * vc/vc-cvs.el (vc-cvs-registered): Give them basic doc-strings.
12663
12664 * net/tls.el: Fix case of "GnuTLS".
12665
12666 * paths.el (rmail-file-name): Format doc-string for make-docfile.
12667
12668 * version.el (emacs-build-system): Give it a doc-string.
12669
12670 2011-11-24 Juri Linkov <juri@jurta.org>
12671
12672 * view.el (view-buffer): Revert 2011-07-19T15:01:49Z!larsi@gnus.org from 2011-07-19 (bug#8615).
12673
12674 2011-11-24 Glenn Morris <rgm@gnu.org>
12675
12676 * mail/rmailmm.el (rmail-mime): When rmail-enable-mime is non-nil,
12677 if called on a non-mime message just toggle the headers. (Bug#8006)
12678
12679 2011-11-24 Juanma Barranquero <lekktu@gmail.com>
12680
12681 * allout.el (allout-setup, allout-auto-save-temporarily-disabled)
12682 (allout-lead-with-comment-string, allout-structure-deleted-hook)
12683 (allout-mode, allout-chart-subtree, allout-hotspot-key-handler)
12684 (allout-rebullet-heading, allout-open-sibtopic)
12685 (allout-toggle-current-subtree-encryption)
12686 (allout-toggle-subtree-encryption, allout-encrypt-string)
12687 (allout-next-topic-pending-encryption, allout-adjust-file-variable)
12688 (allout-distinctive-bullets-string, allout-auto-activation):
12689 * window.el (window-normalize-buffer-to-display):
12690 * progmodes/verilog-mode.el (verilog-batch-indent):
12691 * textmodes/bibtex.el (bibtex-field-braces-opt)
12692 (bibtex-field-strings-opt):
12693 * vc/cvs-status.el (cvs-tree-merge):
12694 Fix typos.
12695
12696 2011-11-23 Michael Albinus <michael.albinus@gmx.de>
12697
12698 * rfn-eshadow.el (rfn-eshadow-update-overlay): Let-bind
12699 `non-essential' to t, in order to avoid remote connections.
12700
12701 2011-11-23 Eli Zaretskii <eliz@gnu.org>
12702
12703 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
12704 On MS-DOS and MS-Windows, compare with loaddefs.el
12705 case-insensitively.
12706
12707 2011-11-23 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
12708
12709 * mail/unrmail.el (unrmail): Always add blank line. (Bug#7743)
12710
12711 2011-11-23 Glenn Morris <rgm@gnu.org>
12712
12713 * paths.el (rmail-file-name): Reformat the doc-string so that it
12714 is picked up.
12715
12716 * mail/rmail.el (rmail-message-filter, rmail-auto-file): Doc fixes.
12717 (rmail-auto-file): Ignore case in the "special" field names,
12718 as mail-fetch-field does for all others.
12719
12720 * mail/rmail.el (rmail-forward):
12721 * mail/rmailkwd.el (rmail-set-label):
12722 * mail/rmailout.el (rmail-output, rmail-output-as-seen)
12723 (rmail-output-body-to-file): Give error if no message. (Bug#10082)
12724
12725 * mail/rmail.el (rmail-current-message): Doc fix.
12726
12727 * mail/rmail.el (rmail-message-filter): Mark as obsolete. (Bug#2624)
12728
12729 2011-11-22 Stefan Monnier <monnier@iro.umontreal.ca>
12730
12731 * server.el (server-eval-and-print): Allow C-g (bug#6585).
12732
12733 2011-11-22 Glenn Morris <rgm@gnu.org>
12734
12735 * mail/rmailmm.el (test-rmail-mime-handler)
12736 (test-rmail-mime-bulk-handler)
12737 (test-rmail-mime-multipart-handler): Move tests to test/ directory.
12738
12739 2011-11-21 Juri Linkov <juri@jurta.org>
12740
12741 * calc/calc.el (calc-read-key-sequence):
12742 Let-bind `input-method-function' to nil. (Bug#10018)
12743
12744 2011-11-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
12745
12746 * emacs-lisp/cl-indent.el (common-lisp-loop-part-indentation):
12747 Tell the caller that the next line needs recomputation, even
12748 though it doesn't start a sexp (bug#10094).
12749
12750 2011-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
12751
12752 * emacs-lisp/autoload.el (autoload-generate-file-autoloads): Simplify.
12753
12754 2011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
12755
12756 * vc/pcvs-util.el (cvs-pop-to-buffer-same-frame):
12757 Use force-same-window.
12758
12759 2011-11-20 Juanma Barranquero <lekktu@gmail.com>
12760
12761 * descr-text.el (describe-char-unicode-data):
12762 * json.el (json-string-escape):
12763 * mail/footnote.el (footnote-unicode-string, footnote-unicode-regexp)
12764 (Footnote-unicode, Footnote-style-p):
12765 * net/ntlm.el (ntlm-get-password-hashes): Fix typos.
12766
12767 2011-11-20 Chong Yidong <cyd@gnu.org>
12768
12769 * window.el (replace-buffer-in-windows): Restore interactive spec.
12770
12771 2011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
12772
12773 * electric.el (electric-indent-mode): Fix last change (too optimistic).
12774
12775 * emacs-lisp/bytecomp.el: Silence obsolete warnings more reliably.
12776 (byte-compile-global-not-obsolete-vars): New var.
12777 (byte-compile-check-variable, byte-compile-make-obsolete-variable):
12778 Use it.
12779 (byte-compile-warn-obsolete): Align text with the one in *Help*.
12780
12781 2011-11-20 Juanma Barranquero <lekktu@gmail.com>
12782
12783 * progmodes/cwarn.el (cwarn-is-enabled, cwarn-font-lock-keywords):
12784 * progmodes/pascal.el (electric-pascal-equal):
12785 * textmodes/reftex-dcr.el (reftex-view-crossref-from-bibtex):
12786 * xml.el (xml-substitute-special): Fix typos.
12787
12788 2011-11-20 Glenn Morris <rgm@gnu.org>
12789
12790 * mail/rmail.el (rmail-enable-mime-composing): Make it a defcustom.
12791 (rmail-insert-mime-forwarded-message-function, rmail-mime-feature):
12792 Doc fixes.
12793 (rmail-decode-mime-charset): Mark as obsolete.
12794
12795 * mail/rmailsum.el (rmail-message-regexp-p-1):
12796 * mail/rmail.el (rmail-search-message, rmail-forward, rmail-resend):
12797 Before using mime functions, check they are set. (Bug#10077)
12798
12799 2011-11-19 Juri Linkov <juri@jurta.org>
12800
12801 * info.el (Info-finder-find-node): Use `package--builtins' instead
12802 of `package-alist'. Use node names formed by the pattern "Keyword "
12803 and the keyword name.
12804
12805 2011-11-19 Andreas Schwab <schwab@linux-m68k.org>
12806
12807 * progmodes/sh-script.el (sh-assignment-regexp): Add entry for bash.
12808
12809 2011-11-19 Juri Linkov <juri@jurta.org>
12810
12811 * info.el (Info-hide-note-references): Add `:set' tag to `defcustom'
12812 that calls `revert-buffer' on all Info buffers. (Bug#9915)
12813 (Info-revert-find-node): Remove let-bindings `old-buffer-name',
12814 `old-history', `old-history-forward'. Add let-binding
12815 `window-selected'. Remove calls to `kill-buffer',
12816 `switch-to-buffer' and `Info-mode'. Set `Info-current-file' to nil
12817 before calling `Info-find-node', so `Info-find-node-2' will reread
12818 the Info file. Restore window positions only when `window-selected'
12819 is non-nil.
12820
12821 2011-11-19 Juri Linkov <juri@jurta.org>
12822
12823 * isearch.el (isearch-lazy-highlight-new-loop):
12824 Remove condition `(not isearch-error)'. (Bug#9918)
12825
12826 * misearch.el (multi-isearch-search-fun): Add condition
12827 `(not bound)' to ignore lazy-highlighting search.
12828 Add the search-failed message "end of multi" when the end of
12829 multi-sequence is reached. Uncapitalize the search-failed
12830 message "Repeat for next buffer".
12831
12832 * info.el (Info-search): Add the search-failed message
12833 "end of the manual" when the end of the manual is reached
12834 in Isearch mode.
12835
12836 2011-11-19 Juri Linkov <juri@jurta.org>
12837
12838 * info.el (Info-find-node-2, Info-select-node, Info-history-find-node):
12839 Use non-destructive `remove' instead of `delete' because
12840 `Info-history-list' stored to `Info-isearch-initial-history-list' in
12841 `Info-isearch-start' might need to be restored in `Info-isearch-end'.
12842
12843 2011-11-19 Juri Linkov <juri@jurta.org>
12844
12845 * isearch.el (isearch-edit-string): Let-bind `history-add-new-input'
12846 to nil instead of binding `search-ring' and `regexp-search-ring'.
12847 (Bug#9185)
12848
12849 2011-11-19 Eli Zaretskii <eliz@gnu.org>
12850
12851 * simple.el (line-move): Force movement by logical lines for any
12852 hscrolled window, not only when auto-hscroll-mode is on.
12853 (line-move-visual): Update doc string to that effect. (Bug#10076)
12854
12855 2011-11-19 Andreas Schwab <schwab@linux-m68k.org>
12856
12857 * language/european.el (macintosh): Define as alias for mac-roman.
12858
12859 2011-11-19 Eli Zaretskii <eliz@gnu.org>
12860
12861 * mail/rmailmm.el (rmail-mime-display-header)
12862 (rmail-mime-display-tagline, rmail-mime-display-body): New defsubsts.
12863 (rmail-mime-entity-segment, rmail-mime-toggle-raw)
12864 (rmail-mime-toggle-hidden, rmail-mime-insert-text)
12865 (rmail-mime-insert-bulk, rmail-mime-insert-multipart)
12866 (rmail-mime-insert, rmail-mime-insert-tagline): Use them instead
12867 of a raw aref.
12868 (rmail-mime-entity-segment): To get past the tagline, move forward
12869 2 more lines, to account for the 2 empty lines that precede and
12870 follow the line with the buttons.
12871 (rmail-mime-update-tagline): Move one more line, to get past the
12872 empty line that follows the buttons in the tagline. (Bug#9520)
12873
12874 2011-11-19 Martin Rudalics <rudalics@gmx.at>
12875
12876 * window.el (window-max-delta-1, window-min-delta-1)
12877 (window-min-size-1, window-state-get-1, window-state-put-1)
12878 (window-state-put-2): Use "window--" prefix.
12879
12880 2011-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
12881
12882 * emacs-lisp/smie.el: Improve warnings and conflict detection.
12883 (smie-warning-count): New var.
12884 (smie-set-prec2tab): Use it.
12885 (smie-bnf->prec2): Improve warnings. Add docstring.
12886 (smie-bnf--closer-alist): Rename from smie-bnf-closer-alist.
12887 (smie-bnf--set-class): New function.
12888 (smie-bnf--classify): Rename from smie-bnf-classify. Rewrite to fix
12889 corner case.
12890
12891 * progmodes/compile.el: Obey compilation-first-column in dest buffer.
12892 (compilation-error-properties, compilation-move-to-column):
12893 Handle compilation-first-column while in the target buffer.
12894
12895 * progmodes/cc-engine.el (c-remove-stale-state-cache-backwards):
12896 Don't hardcode point-min==1.
12897
12898 * eshell/esh-cmd.el (eshell-do-eval): Handle `setq' (bug#9907).
12899 (eshell-rewrite-for-command): Remove workaround.
12900 (eshell-do-pipelines, eshell-do-pipelines-synchronously)
12901 (eshell-do-eval, eshell-exec-lisp): Avoid gratuitous setq.
12902 * eshell/esh-util.el (eshell-condition-case, eshell-for): Use declare.
12903
12904 * files-x.el (modify-file-local-variable): Obey commenting conventions.
12905
12906 2011-11-17 Glenn Morris <rgm@gnu.org>
12907
12908 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
12909 Ignore buffer-local generated-autoload-file if it is the same
12910 as the global value. (Bug#10049)
12911
12912 2011-11-17 Juanma Barranquero <lekktu@gmail.com>
12913
12914 * textmodes/reftex-toc.el (reftex-toc-return-marker, reftex-toc-help)
12915 (reftex-toc, reftex-toc, reftex-toc-dframe-p, reftex-toc-next-heading)
12916 (reftex-toc-previous-heading, reftex-toc-max-level)
12917 (reftex-toc-goto-line-and-hide, reftex-toc-show-calling-point)
12918 (reftex-toc-quit, reftex-toc-revert, reftex-toc-jump)
12919 (reftex-toc-do-promote, reftex-toc-promote-prepare)
12920 (reftex-toc-promote-action, reftex-toc-extract-section-number)
12921 (reftex-toc-load-all-files-for-promotion, reftex-toc-rename-label)
12922 (reftex-toc-rename-label, reftex-toc-visit-location)
12923 (reftex-toc-visit-location, reftex-toggle-auto-toc-recenter)
12924 (reftex-toggle-auto-toc-recenter, reftex-toggle-auto-toc-recenter)
12925 (reftex-make-separate-toc-frame): Fix typos, and use TOC consistently,
12926 leaving "*toc*" only for references to the buffer.
12927
12928 2011-11-17 Martin Rudalics <rudalics@gmx.at>
12929
12930 * window.el (window-resize, delete-window, split-window):
12931 Replace window-splits by window-combination-resize.
12932 * cus-start.el (window-splits): Replace by window-combination-resize.
12933
12934 2011-11-17 Glenn Morris <rgm@gnu.org>
12935
12936 * progmodes/sh-script.el (sh-font-lock-keywords-var):
12937 Make bash entry derive from sh entry, not shell entry.
12938
12939 2011-11-16 Michael Albinus <michael.albinus@gmx.de>
12940
12941 * net/tramp-sh.el (tramp-sh-handle-file-truename): Cache only the
12942 local file name.
12943
12944 2011-11-16 Juanma Barranquero <lekktu@gmail.com>
12945
12946 * menu-bar.el (menu-bar-file-menu):
12947 * printing.el (pr-ps-utility):
12948 * calendar/icalendar.el (icalendar, icalendar--convert-tz-offset)
12949 (icalendar--convert-to-ical, icalendar--convert-ordinary-to-ical)
12950 (icalendar--convert-weekly-to-ical, icalendar--convert-yearly-to-ical)
12951 (icalendar--convert-sexp-to-ical, icalendar--convert-block-to-ical)
12952 (icalendar--convert-float-to-ical, icalendar--convert-date-to-ical)
12953 (icalendar--convert-cyclic-to-ical)
12954 (icalendar--convert-anniversary-to-ical, icalendar-import-buffer)
12955 (icalendar--convert-ical-to-diary)
12956 (icalendar--convert-recurring-to-diary)
12957 (icalendar--convert-non-recurring-all-day-to-diary)
12958 (icalendar-import-format-sample):
12959 * progmodes/idlw-shell.el (idlwave-shell-mode):
12960 * progmodes/vhdl-mode.el (vhdl-mode, vhdl-print-two-column)
12961 (vhdl-print-customize-faces, vhdl-mode, vhdl-ps-print-settings)
12962 (vhdl-ps-print-init): Fix typos.
12963
12964 2011-11-16 Ken Manheimer <ken.manheimer@gmail.com>
12965
12966 * allout.el, allout-widgets.el (file metadata): Attribute copyright to
12967 FSF and collapse date sequence, obscure author/maintainer email address
12968 better, remove extra version line, track relocation of author's webpage.
12969
12970 * progmodes/python.el (python-pdbtrack-input-prompt)
12971 (python-pdbtrack-track-stack-file): Adjust to recognize ipdb as well as
12972 regular python pdb prompts. Adjustments shamelessly taken exactly as
12973 suggested in EmacsWiki page (tiny change):
12974 http://www.emacswiki.org/PythonProgrammingInEmacs#toc14
12975
12976 2011-11-16 Juanma Barranquero <lekktu@gmail.com>
12977
12978 * expand.el (expand-pos, expand-index, expand-point):
12979 Remove redundant info from docstring.
12980 (expand-add-abbrevs): Doc fix.
12981 (expand-c-sample-expand-list, expand-sample-lisp-mode-expand-list)
12982 (expand-sample-perl-mode-expand-list): Fix typos.
12983
12984 * net/dbus.el (dbus-event-member-name):
12985 * play/5x5.el (5x5-solve-rotate-left, 5x5-solver-output):
12986 * term/pc-win.el (msdos-create-frame-with-faces):
12987 * textmodes/texinfmt.el (texinfo-format-image): Fix typos.
12988
12989 2011-11-16 Martin Rudalics <rudalics@gmx.at>
12990
12991 * window.el (split-window, window-state-get-1)
12992 (window-state-put-1, window-state-put-2): Rename occurrences of
12993 window-nest to window-combination-limit.
12994 * cus-start.el (window-nest): Rename to window-combination-limit.
12995
12996 2011-11-16 Chong Yidong <cyd@gnu.org>
12997
12998 * progmodes/autoconf.el (autoconf-mode): Fix comment-start-skip
12999 regexp (Bug#10033).
13000
13001 2011-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
13002
13003 * tmm.el (tmm-prompt): Use minibuffer-with-setup-hook (bug#10053).
13004 `completing-read' will remove *Completions* and will preserve
13005 current-buffer for us.
13006 (tmm-add-prompt): Users of *Completions* will always (re)set its
13007 major mode.
13008 (tmm-old-comp-map): Remove.
13009
13010 2011-11-16 Glenn Morris <rgm@gnu.org>
13011
13012 * mail/rmailedit.el: Require rmailmm when compiling.
13013 (rmail-old-mime-state): New declaration.
13014 (rmail-edit-current-message): If editing a mime message,
13015 edit the "raw" message from the mbox buffer.
13016 (rmail-cease-edit): Handle mime messages. (Bug#9840)
13017
13018 2011-11-15 Glenn Morris <rgm@gnu.org>
13019
13020 * mail/rmailmm.el (rmail-mime-toggle-raw): Remove entity arg,
13021 which wasn't being used. Add optional arg to force given state.
13022 (rmail-mime): Add optional arg to force given state.
13023
13024 2011-11-15 Juanma Barranquero <lekktu@gmail.com>
13025
13026 * allout.el (allout-encryption-plaintext-sanitization-regexps):
13027 * frame.el (display-mm-dimensions-alist):
13028 * outline.el (outline-mode-menu-bar-map, outline-move-subtree-up)
13029 (outline-move-subtree-down):
13030 * net/newst-treeview.el (newsticker--treeview-do-get-node-of-feed)
13031 (newsticker--treeview-do-get-node):
13032 * net/quickurl.el (quickurl-list-buffer-name):
13033 * progmodes/dcl-mode.el (dcl-mode):
13034 * progmodes/gdb-mi.el (gdb-mapcar*):
13035 * progmodes/sql.el (sql-mode-oracle-font-lock-keywords): Fix typos.
13036
13037 2011-11-15 Glenn Morris <rgm@gnu.org>
13038
13039 * mail/rmail.el (rmail-file-coding-system): It's only ever used
13040 in a boolean sense, so just make it a boolean, and fix the doc.
13041 (rmail-show-mime-function, rmail-mime-feature)
13042 (rmail-require-mime-maybe): Doc fixes.
13043 (rmail-show-message-1): Check rmail-show-mime-function is non-nil.
13044
13045 * mail/rmailmm.el (rmail-show-mime): Doc fix.
13046
13047 2011-11-15 Juanma Barranquero <lekktu@gmail.com>
13048
13049 * epg.el (epg-start-decrypt, epg-start-verify, epg-start-sign)
13050 (epg-start-encrypt, epg-start-export-keys, epg-start-import-keys)
13051 (epg-start-receive-keys, epg-start-delete-keys, epg-start-sign-keys)
13052 (epg-start-generate-key, epg-context-set-progress-callback): Fix typos.
13053
13054 2011-11-15 Glenn Morris <rgm@gnu.org>
13055
13056 * mail/rmailmm.el (rmail-mime-entity, rmail-mime-entity-segment)
13057 (rmail-mime-shown-mode, rmail-mime-hidden-mode, rmail-mime-raw-mode)
13058 (rmail-mime-toggle-hidden, rmail-mime-insert-tagline)
13059 (rmail-mime-insert-header, rmail-mime-handle, rmail-mime-parse)
13060 (rmail-mime, rmail-show-mime): Doc fixes.
13061
13062 * term/ns-win.el (mode-line-frame-identification):
13063 Leave it alone. (Bug#10051)
13064
13065 * simple.el (mark-whole-buffer): Doc fix. (Bug#10023)
13066
13067 * mail/rmailout.el (rmail-output-to-rmail-buffer):
13068 Handle empty buffers. (Bug#9978)
13069
13070 2011-11-14 Juanma Barranquero <lekktu@gmail.com>
13071
13072 * international/mule.el (define-charset):
13073 * mail/rmailmm.el (rmail-mime-find-header-encoding):
13074 * progmodes/prolog.el (prolog-mode-hook, prolog-inferior-mode-hook):
13075 * progmodes/verilog-mode.el (verilog-backward-token):
13076 * textmodes/ispell.el (lookup-words):
13077 * textmodes/sgml-mode.el (sgml-guess-indent): Fix typos.
13078
13079 2011-11-14 Glenn Morris <rgm@gnu.org>
13080
13081 * progmodes/executable.el
13082 (executable-make-buffer-file-executable-if-script-p):
13083 Handle file-modes returning nil.
13084
13085 * mail/rmailsum.el (rmail-summary): Remove movement to beginning of
13086 message - not necessary, and causes problems. (Bug#9831)
13087
13088 * mail/rmailsum.el (rmail-new-summary): Preserve message number.
13089
13090 * mail/rmail.el (rmail-no-mail-p): Remove mode-line N/M indicator.
13091
13092 * mail/rmailsum.el (rmail-summary, rmail-new-summary)
13093 (rmail-new-summary-1): Allow empty summaries. (Bug#9964)
13094 (rmail-new-summary): Remember that rmail-summary-buffer is buffer-local.
13095
13096 2011-11-12 Martin Rudalics <rudalics@gmx.at>
13097
13098 * window.el (window-resize, delete-window): Use window-splits
13099 variable instead of function.
13100 (window-state-get-1, window-state-put-2, window-state-put):
13101 Don't deal with windows' splits status.
13102
13103 2011-11-12 Glenn Morris <rgm@gnu.org>
13104
13105 * apropos.el (apropos-do-all, apropos-library, apropos-value)
13106 (apropos-documentation): Doc fixes.
13107
13108 2011-11-11 Juanma Barranquero <lekktu@gmail.com>
13109
13110 * progmodes/idlw-shell.el (idlwave-shell-make-new-bp-overlay):
13111 * textmodes/sgml-mode.el (html-tag-help): Fix typos.
13112
13113 2011-11-11 Stefan Monnier <monnier@iro.umontreal.ca>
13114
13115 * electric.el (electric-indent-post-self-insert-function): Make it
13116 possible for a char to only indent in some circumstances.
13117 (electric-indent-mode): Simplify.
13118
13119 2011-11-11 Martin Rudalics <rudalics@gmx.at>
13120
13121 * window.el (windows-with-parameter): Remove unused function.
13122 (windows-at-side): Rename to window-at-side-list.
13123 (window-check, window-atom-check, window-atom-check-1)
13124 (window-side-check, window-size-ignore, window-size-fixed-1)
13125 (window-in-direction-2): Prefix with "window--".
13126 (window-tree-1): Rename to window--subtree, fix doc-string.
13127
13128 2011-11-11 Glenn Morris <rgm@gnu.org>
13129
13130 * subr.el (eval-after-load): If FILE is already loaded,
13131 evaluate FORM before it gets wrapped in more stuff. (Bug#10009)
13132
13133 2011-11-10 Glenn Morris <rgm@gnu.org>
13134
13135 * vc/vc-svn.el (vc-svn-create-repo, vc-svn-modify-change-comment):
13136 Call svn via vc-svn-command rather than vc-do-command.
13137 (vc-svn-command): Add --non-interactive. (Bug#9993)
13138 (vc-svn-update, vc-svn-merge-news): No need for --non-interactive.
13139
13140 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
13141 Add toggle-read-only. (Bug#7292)
13142 * files.el (toggle-read-only): Mention that it should only
13143 be used interactively. (Bug#10006)
13144
13145 2011-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
13146
13147 * progmodes/compile.el (compilation-error-regexp-alist-alist):
13148 Adjust regexp for OCaml warnings.
13149
13150 * electric.el (electric-pair-post-self-insert-function): Let user
13151 turn it off buffer-locally (bug#9932).
13152
13153 * progmodes/python.el (python-beginning-of-statement):
13154 Rewrite (bug#2703).
13155
13156 * progmodes/compile.el: Better handle TABs (bug#9749).
13157 (compilation-internal-error-properties)
13158 (compilation-next-error-function): Obey the target buffer's
13159 compilation-error-screen-columns.
13160
13161 2011-11-09 Juanma Barranquero <lekktu@gmail.com>
13162
13163 * progmodes/meta-mode.el: Remove obsolete comments.
13164 (meta-right-comment-regexp, meta-ignore-comment-regexp):
13165 Fix typos in docstrings.
13166
13167 2011-11-09 Martin Rudalics <rudalics@gmx.at>
13168
13169 * window.el (window-size-fixed-p): Rewrite doc-string.
13170 (window-resizable-p): Rename to window--resizable-p. Update callers.
13171 (window--resizable): New function. Make all callers of
13172 window-resizable call window--resizable instead.
13173 (window-resizable): Rewrite in terms of window--resizable.
13174
13175 2011-11-08 Glenn Morris <rgm@gnu.org>
13176
13177 * progmodes/delphi.el (delphi-mode-syntax-table):
13178 Let define-derived-mode define a proper syntax table. (Bug#9994)
13179
13180 2011-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
13181
13182 * window.el: Stay away from defsubst.
13183 (window-list-no-nils): Remove.
13184 (window-state-get-1, window-state-get): Use backquote instead.
13185
13186 2011-11-08 Thierry Volpiatto <thierry.volpiatto@gmail.com>
13187
13188 * emacs-lisp/find-func.el (find-function-read):
13189 Fix incorrect use of default argument in `completing-read'.
13190
13191 2011-11-08 Martin Rudalics <rudalics@gmx.at>
13192
13193 * window.el (display-buffer-function, special-display-function):
13194 Mention display-buffer-record-window but do not mention
13195 help-setup parameter in doc-strings.
13196 (window-min-delta): Fix doc-string typo.
13197
13198 2011-11-08 Chong Yidong <cyd@gnu.org>
13199
13200 * window.el (window-total-height, window-total-width): Doc fix.
13201 (window-body-size): Move from C.
13202 (window-body-height, window-body-width): Move to C.
13203
13204 2011-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
13205
13206 * window.el: Make special-display like display-buffer-alist (bug#9532).
13207 (display-buffer--special-action): New function, morphed
13208 from display-buffer--special.
13209 (display-buffer): Use it to handle special-display-buffers at higher
13210 priority (just after display-buffer-alist).
13211 (display-buffer-fallback-action, display-buffer--other-frame-action)
13212 (pop-to-buffer-same-window): Remove display-buffer--special.
13213
13214 2011-11-07 Glenn Morris <rgm@gnu.org>
13215
13216 * calendar/cal-menu.el (cal-menu-set-date-title):
13217 Do nothing if not in a calendar. (Bug#9976)
13218
13219 2011-11-07 Stefan Monnier <monnier@iro.umontreal.ca>
13220
13221 * files.el (find-file): Always use selected-window.
13222
13223 2011-11-07 Martin Rudalics <rudalics@gmx.at>
13224
13225 * window.el (window-combinations): Make WINDOW argument
13226 mandatory. Rewrite doc-string.
13227 (walk-window-subtree, window-atom-check, window-min-delta)
13228 (window-max-delta, window--resize-this-window)
13229 (window--resize-root-window-vertically, window-tree)
13230 (balance-windows, window-state-put): Rewrite doc-strings as to
13231 not mention the term "subwindow".
13232 (window--resize-subwindows-skip-p): Rename to
13233 window--resize-child-windows-skip-p.
13234 (window--resize-subwindows-normal): Rename to
13235 window--resize-child-windows-normal.
13236 (window--resize-subwindows): Rename to
13237 window--resize-child-windows.
13238 (window-or-subwindow-p): Rename to window--in-subtree-p.
13239
13240 2011-11-07 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
13241
13242 * mail/rmail.el (rmail-get-new-mail, rmail-insert-inbox-text):
13243 Ensure that mbox format messages end in two newlines (Bug#9974).
13244
13245 2011-11-06 Chong Yidong <cyd@gnu.org>
13246
13247 * window.el (window-combination-p): Function deleted; its
13248 side-effect is not used in any existing code.
13249 (window-combinations, window-combined-p): Call window-*-child
13250 directly.
13251
13252 2011-11-05 Chong Yidong <cyd@gnu.org>
13253
13254 * window.el (window-valid-p): Rename from window-any-p.
13255 (window-size-ignore, window-state-get): Callers changed.
13256 (window-normalize-window): Rename from window-normalize-any-window.
13257 New arg LIVE-ONLY, replacing window-normalize-live-window.
13258 (window-normalize-live-window): Delete.
13259 (window-combination-p, window-combined-p, window-combinations)
13260 (walk-window-subtree, window-atom-root, window-min-size)
13261 (window-sizable, window-sizable-p, window-size-fixed-p)
13262 (window-min-delta, window-max-delta, window-resizable)
13263 (window-resizable-p, window-full-height-p, window-full-width-p)
13264 (window-current-scroll-bars, window-point-1, set-window-point-1)
13265 (window-at-side-p, window-in-direction, window-resize)
13266 (adjust-window-trailing-edge, maximize-window, minimize-window)
13267 (window-deletable-p, delete-window, delete-other-windows)
13268 (record-window-buffer, unrecord-window-buffer)
13269 (switch-to-prev-buffer, switch-to-next-buffer, window--delete)
13270 (quit-window, split-window, window-state-put)
13271 (set-window-text-height, fit-window-to-buffer)
13272 (shrink-window-if-larger-than-buffer): Callers changed.
13273
13274 2011-11-04 Eli Zaretskii <eliz@gnu.org>
13275
13276 * mail/rmail.el (rmail-simplified-subject): Decode subject with
13277 rfc2047-decode-string.
13278 (rmail-mime-toggle-hidden): Declare to avoid byte-compilation
13279 warnings.
13280
13281 * window.el (window-body-height, window-body-width): Mention in
13282 the doc string that the return values are in frame's canonical
13283 units. (Bug#9949)
13284
13285 2011-11-03 Alan Mackenzie <acm@muc.de>
13286
13287 * progmodes/cc-langs.el (c-nonlabel-token-2-key): New variable for
13288 change in cc-engine.el.
13289
13290 2011-11-02 Stefan Monnier <monnier@iro.umontreal.ca>
13291
13292 * window.el (switch-to-buffer): Use `force-same-window' interactively.
13293
13294 2011-11-02 Martin Rudalics <rudalics@gmx.at>
13295
13296 * window.el (quit-window): Call unrecord-window-buffer after
13297 showing another buffer in the window. (Bug#9937)
13298 (bury-buffer): Call switch-to-prev-buffer with second argument `bury'.
13299
13300 2011-11-02 Juanma Barranquero <lekktu@gmail.com>
13301
13302 * vc/vc-bzr.el (vc-bzr-state, vc-bzr-after-dir-status):
13303 Accept status with more than 9 shelves. (Bug#9935)
13304 Reported by Colin D Bennett <colin@gibibit.com>.
13305
13306 2011-11-01 Martin Rudalics <rudalics@gmx.at>
13307
13308 * help.el (with-help-window): Don't reference
13309 temp-buffer-show-specifiers in doc-string.
13310
13311 2011-10-31 Andreas Schwab <schwab@linux-m68k.org>
13312
13313 * subr.el (keymap--menu-item-with-binding): Ignore item if not a
13314 menu-item.
13315
13316 2011-10-30 Vinicius Jose Latorre <viniciusjl@ig.com.br>
13317
13318 * whitespace.el: New version 13.2.2.
13319 (whitespace-newline-mode): Disable properly. Reported by Sarah
13320 <EmacsWiki>.
13321
13322 2011-10-30 Ulf Jasper <ulf.jasper@web.de>
13323
13324 * net/newst-treeview.el: Remove "Time-stamp".
13325 (newsticker--group-manage-orphan-feeds): Do not call
13326 newsticker--treeview-tree-update.
13327 (newsticker-treeview-update, newsticker-treeview):
13328 Call newsticker--treeview-tree-update if necessary.
13329
13330 2011-10-30 Martin Rudalics <rudalics@gmx.at>
13331
13332 * window.el (window-iso-combination-p, window-iso-combined-p)
13333 (window-iso-combinations): Remove "iso-" infix.
13334 Suggested by Chong Yidong.
13335 (window-min-size-1, window-size-fixed-1, window-min-delta-1)
13336 (window-max-delta-1, window-resize, window--resize-siblings)
13337 (window--resize-this-window, adjust-window-trailing-edge)
13338 (split-window, balance-windows-1)
13339 (shrink-window-if-larger-than-buffer):
13340 * calendar/calendar.el (calendar-generate-window):
13341 * help.el (resize-temp-buffer-window): Adjust callers accordingly.
13342
13343 2011-10-30 Stefan Monnier <monnier@iro.umontreal.ca>
13344
13345 * eshell/esh-cmd.el (eshell-rewrite-for-command): Don't modify the list
13346 in place (bug#9907).
13347 (eshell-subcommand-arg-values, eshell-rewrite-named-command)
13348 (eshell-rewrite-if-command, eshell-rewrite-for-command)
13349 (eshell-structure-basic-command, eshell-rewrite-while-command)
13350 (eshell-invokify-arg, eshell-parse-pipeline, eshell-parse-command)
13351 (eshell-parse-subcommand-argument, eshell-parse-lisp-argument)
13352 (eshell-trap-errors, eshell-do-pipelines, eshell-do-eval)
13353 (eshell-do-pipelines-synchronously, eshell-eval-command):
13354 Use backquotes and prefer setq to set.
13355 (eshell-lookup-function, function-p-func, eshell-functionp): Remove.
13356 (eshell-macrop): Use functionp.
13357 (eshell-do-eval): Handle multiple expressions in `while' body.
13358
13359 2011-10-30 Chong Yidong <cyd@gnu.org>
13360
13361 * emulation/viper-cmd.el (viper-exec-change): Use push-mark
13362 instead of set-mark (Bug#9810).
13363
13364 2011-10-30 Chong Yidong <cyd@gnu.org>
13365
13366 * window.el (split-window-below, split-window-right): Rename from
13367 split-window-above-each-other and split-window-side-by-side
13368 respectively. All callers changed.
13369 (split-window-sensibly, split-window-sensibly): Use them.
13370 (split-window-keep-point): Doc fix.
13371
13372 * isearch.el: Add isearch-scroll property to split-window-below
13373 and split-window-right.
13374
13375 * follow.el (follow-mode):
13376 * vc/pcvs-util.el (cvs-pop-to-buffer-same-frame):
13377 * progmodes/ada-xref.el (ada-gdb-application):
13378 * emulation/vip.el (vip-buffer-in-two-windows):
13379 * image-dired.el (image-dired-dired-with-window-configuration):
13380 * dired-x.el (dired-do-find-marked-files):
13381 * dired.el (dired-pop-to-buffer):
13382 * bs.el (bs--show-with-configuration):
13383 * vc/emerge.el (emerge-setup-windows):
13384 * textmodes/two-column.el (2C-two-columns):
13385 * textmodes/reftex-toc.el (reftex-toc):
13386 * progmodes/gdb-mi.el (gdb-setup-windows):
13387 * progmodes/fortran.el (fortran-window-create):
13388 * net/newst-treeview.el (newsticker--treeview-window-init):
13389 * emulation/ws-mode.el (wordstar-C-o-map, wordstar-mode):
13390 * emulation/tpu-edt.el (tpu-gold-map):
13391 * emulation/crisp.el (crisp-mode-map):
13392 * calendar/calendar.el (calendar-basic-setup): Callers changed.
13393
13394 2011-10-29 Chong Yidong <cyd@gnu.org>
13395
13396 * subr.el (y-or-n-p): Add code for batch mode (Bug#9818).
13397
13398 * mouse.el (mouse-yank-primary): Push the mark (Bug#9894).
13399
13400 * textmodes/flyspell.el (flyspell-word): Fix char offset for
13401 forged Ispell output (Bug#7904).
13402
13403 * emacs-lisp/package.el (package-refresh-contents): Add autoload.
13404
13405 2011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
13406
13407 * doc-view.el: Avoid ugly errors about not finding nil.
13408 (doc-view-ghostscript-program, doc-view-dvipdfm-program)
13409 (doc-view-dvipdf-program, doc-view-unoconv-program)
13410 (doc-view-ps2pdf-program, doc-view-pdftotext-program):
13411 Avoid nil or absolute file name as default value.
13412 (doc-view-pdf->txt, doc-view-ps->pdf): Use executable-find here.
13413
13414 2011-10-28 Alan Mackenzie <acm@muc.de>
13415
13416 * progmodes/cc-defs.el (c-version): -> 5.32.2.
13417
13418 2011-10-28 Alan Mackenzie <acm@muc.de>
13419
13420 Amend the handling of c-beginning/end-of-defun in nested declaration
13421 scopes.
13422
13423 * progmodes/cc-vars.el (c-defun-tactic): Move here from
13424 cc-langs.el. Change it to a defcustom.
13425
13426 * progmodes/cc-langs.el (c-defun-tactic): Move this variable to
13427 cc-vars.el.
13428
13429 * progmodes/cc-engine.el (c-beginning-of-statement-1):
13430 Prevent "class foo : bar" being spuriously recognized as a label.
13431
13432 * progmodes/cc-cmds.el (c-narrow-to-most-enclosing-decl-block):
13433 Add parameter `inclusive' (to include enclosing braces in the region).
13434 (c-widen-to-enclosing-decl-scope): New function.
13435 (c-while-widening-to-decl-block): New macro.
13436 (c-beginning-of-defun, c-end-of-defun): Change algorithm to keep going
13437 outward for defun boundaries, and correspondingly change symbol
13438 `respect-enclosure' to `go-outward'.
13439 (c-declaration-limits): Change algorithm to report only the "innermost"
13440 defun's boundaries.
13441
13442 2011-10-28 Deniz Dogan <deniz@dogan.se>
13443
13444 * net/rcirc.el (rcirc-mode): Use hard newlines.
13445
13446 2011-10-28 Alan Mackenzie <acm@muc.de>
13447
13448 Amend to indent and fontify macros "which include their own semicolon"
13449 correctly, using the "virtual semicolon" mechanism.
13450
13451 * progmodes/cc-defs.el: Update "virtual semicolon" comments.
13452
13453 * progmodes/cc-engine.el (c-crosses-statement-barrier-p):
13454 Recode to scan one line at a time rather than having \n and \r
13455 explicitly in c-stmt-delim-chars (for some modes, e.g. AWK).
13456 (c-forward-label): Amend for virtual semicolons.
13457 (c-at-macro-vsemi-p, c-macro-vsemi-status-unknown-p): New functions.
13458
13459 * progmodes/cc-fonts.el (c-font-lock-declarations): Take account
13460 of the new C macros.
13461
13462 * progmodes/cc-langs.el (c-at-vsemi-p-fn):
13463 (c-vsemi-status-unknown-p-fn): Move to earlier in the file.
13464 (c-opt-cpp-symbol, c-line-comment-start-regexp): New language vars.
13465 (c-opt-cpp-macro-define): Make into a full language variable.
13466 (c-stmt-delim-chars, c-stmt-delim-chars-with-comma): Special value for
13467 AWK Mode (including \n, \r) removed, no longer needed.
13468
13469 * progmodes/cc-mode.el (c-mode, c++-mode, objc-mode):
13470 Invoke c-make-macro-with-semi-re.
13471
13472 * progmodes/cc-vars.el (c-macro-with-semi-re):
13473 (c-macro-names-with-semicolon): New variables.
13474 (c-make-macro-with-semi-re): New function.
13475
13476 2011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
13477
13478 * vc/log-edit.el: Fill empty field rather than adding new one.
13479 (log-edit-add-field): New function.
13480 (log-edit-insert-changelog): Use it.
13481
13482 2011-10-28 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
13483
13484 * mail/rmail.el (rmail-mode-map): Add M-C-f as in rmailsum (bug#9802).
13485
13486 2011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
13487
13488 * progmodes/gdb-mi.el: Warn the user when -i=mi is missing.
13489 (gdb--check-interpreter): New function.
13490 (gdb): Use it.
13491
13492 2011-10-27 Glenn Morris <rgm@gnu.org>
13493
13494 * emacs-lisp/cl-extra.el (most-positive-float, most-negative-float)
13495 (least-positive-float, least-negative-float)
13496 (least-positive-normalized-float, least-negative-normalized-float)
13497 (float-epsilon, float-negative-epsilon):
13498 Remove unnecessary declarations.
13499
13500 * emacs-lisp/cl-extra.el (cl-float-limits): Add doc string.
13501 * emacs-lisp/cl.el (most-positive-float, most-negative-float)
13502 (least-positive-float, least-negative-float)
13503 (least-positive-normalized-float, least-negative-normalized-float)
13504 (float-epsilon, float-negative-epsilon): Add doc-strings,
13505 based on those in cl.texi.
13506
13507 * files.el (set-visited-file-name): If the major-mode changed,
13508 reload the local variables. (Bug#9796)
13509
13510 2011-10-27 Chong Yidong <cyd@gnu.org>
13511
13512 * subr.el (change-major-mode-after-body-hook): New hook.
13513 (run-mode-hooks): Run it.
13514
13515 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
13516 Use change-major-mode-before-body-hook.
13517
13518 * simple.el (fundamental-mode):
13519 * emacs-lisp/derived.el (define-derived-mode): Revert 2010-04-28
13520 change introducing fundamental-mode-hook.
13521
13522 2011-10-26 Juanma Barranquero <lekktu@gmail.com>
13523
13524 * term/w32-win.el (w32-default-color-map): Declare obsolete (Bug#9785).
13525
13526 2011-10-26 Michael Albinus <michael.albinus@gmx.de>
13527
13528 * ido.el (ido-file-name-all-completions-1): Do not require
13529 tramp.el explicitly. (Bug#7583)
13530
13531 2011-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
13532
13533 * progmodes/octave-mod.el:
13534 * progmodes/octave-inf.el: Update maintainer.
13535
13536 2011-10-26 Chong Yidong <cyd@gnu.org>
13537
13538 * subr.el (with-wrapper-hook): Rewrite doc.
13539
13540 2011-10-25 Michael Albinus <michael.albinus@gmx.de>
13541
13542 * net/tramp-sh.el (tramp-sh-handle-file-directory-p): Return t for
13543 filenames "/method:foo:". (Bug#9793)
13544
13545 2011-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
13546
13547 * comint.el (comint-get-old-input-default): Fix use-prompt-regexp case
13548 (bug#9865).
13549
13550 2011-10-24 Glenn Morris <rgm@gnu.org>
13551
13552 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix. (Bug#9819)
13553
13554 2011-10-24 Michael Albinus <michael.albinus@gmx.de>
13555
13556 * notifications.el: Add the requirement of a running D-Bus session
13557 bus to the Commentary.
13558
13559 2011-10-24 Juri Linkov <juri@jurta.org>
13560
13561 * isearch.el (isearch-occur): Let-bind `search-spaces-regexp' to
13562 `search-whitespace-regexp' only when `isearch-regexp' is non-nil.
13563 (Bug#9364)
13564
13565 2011-10-24 Juri Linkov <juri@jurta.org>
13566
13567 * info.el (Info-following-node-name-re): Add newline to the list
13568 of allowed characters for leading space. (Bug#9824)
13569
13570 2011-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
13571
13572 * progmodes/octave-inf.el (inferior-octave-mode-map):
13573 Fix C-c C-h binding.
13574 * progmodes/octave-mod.el (octave-help): Remove.
13575
13576 2011-10-23 Michael Albinus <michael.albinus@gmx.de>
13577
13578 Sync with Tramp 2.2.3.
13579
13580 * net/tramp-cache.el (top): Pacify byte-compiler using
13581 `init-file-user' and `site-run-file'.
13582
13583 * net/trampver.el: Update release number.
13584
13585 2011-10-23 Chong Yidong <cyd@gnu.org>
13586
13587 * files.el (toggle-read-only): Remove obsolete comment about
13588 version control.
13589
13590 * vc/vc-hooks.el (vc-toggle-read-only): Make it an obsolete alias
13591 for toggle-read-only. Note that this hasn't called vc-next-action
13592 since 2008-05-02, though it wasn't documented at the time.
13593
13594 * vc/ediff-init.el (ediff-toggle-read-only-function):
13595 Use toggle-read-only.
13596
13597 2011-10-22 Alan Mackenzie <bug-cc-mode@gnu.org>
13598
13599 Fix bug #9560, sporadic wrong indentation; improve instrumentation
13600 of c-parse-state.
13601
13602 * progmodes/cc-engine.el (c-append-lower-brace-pair-to-state-cache):
13603 correct faulty logical expression.
13604 (c-parse-state-state, c-record-parse-state-state):
13605 (c-replay-parse-state-state): New defvar/defuns.
13606 (c-debug-parse-state): Use new functions.
13607
13608 2011-10-22 Martin Rudalics <rudalics@gmx.at>
13609
13610 * mouse.el (mouse-drag-line): Fix minibuffer resizing broken by
13611 last fix. Use window-in-direction correctly.
13612
13613 2011-10-21 Chong Yidong <cyd@gnu.org>
13614
13615 * progmodes/idlwave.el (idlwave-mode):
13616 * progmodes/vera-mode.el (vera-mode): No need to set
13617 require-final-newline; that's done in prog-mode.
13618 Suggested by Stefan Monnier.
13619
13620 2011-10-21 Martin Rudalics <rudalics@gmx.at>
13621
13622 * mouse.el (mouse-drag-window-above)
13623 (mouse-drag-move-window-bottom, mouse-drag-move-window-top)
13624 (mouse-drag-mode-line-1, mouse-drag-header-line)
13625 (mouse-drag-vertical-line-rightward-window): Remove.
13626 (mouse-drag-line): New function.
13627 (mouse-drag-mode-line, mouse-drag-header-line)
13628 (mouse-drag-vertical-line): Call mouse-drag-line.
13629 * window.el (window-at-side-p, windows-at-side): New functions.
13630
13631 2011-10-21 Ulrich Mueller <ulm@gentoo.org>
13632
13633 * tar-mode.el (tar-grind-file-mode):
13634 Fix handling of setuid/setgid, handle sticky bit. (Bug#9817)
13635
13636 2011-10-21 Chong Yidong <cyd@gnu.org>
13637
13638 * progmodes/idlwave.el (idlwave-mode):
13639 * progmodes/vera-mode.el (vera-mode):
13640 Use mode-require-final-newline.
13641
13642 2011-10-20 Glenn Morris <rgm@gnu.org>
13643
13644 * vc/vc.el (vc-next-action): Handle removed directories. (Bug#9781)
13645
13646 2011-10-20 Christoph Scholtes <cschol2112@googlemail.com>
13647
13648 * emulation/cua-base.el (cua-set-mark): Fix case of string.
13649
13650 2011-10-20 Chong Yidong <cyd@gnu.org>
13651
13652 * emulation/cua-base.el (cua-mode):
13653 * mail/footnote.el (footnote-mode):
13654 * mail/mailabbrev.el (mail-abbrevs-mode):
13655 * net/xesam.el (xesam-minor-mode):
13656 * progmodes/bug-reference.el (bug-reference-mode):
13657 * progmodes/cap-words.el (capitalized-words-mode):
13658 * progmodes/compile.el (compilation-minor-mode)
13659 (compilation-shell-minor-mode):
13660 * progmodes/gud.el (gud-tooltip-mode):
13661 * progmodes/hideif.el (hide-ifdef-mode):
13662 * progmodes/idlw-shell.el (idlwave-shell-electric-debug-mode):
13663 * progmodes/subword.el (subword-mode):
13664 * progmodes/vhdl-mode.el (vhdl-electric-mode, vhdl-stutter-mode):
13665 * progmodes/which-func.el (which-function-mode):
13666 * term/tvi970.el (tvi970-set-keypad-mode):
13667 * term/vt100.el (vt100-wide-mode):
13668 * textmodes/flyspell.el (flyspell-mode):
13669 * textmodes/ispell.el (ispell-minor-mode):
13670 * textmodes/nroff-mode.el (nroff-electric-mode):
13671 * textmodes/paragraphs.el (use-hard-newlines):
13672 * textmodes/refill.el (refill-mode):
13673 * textmodes/reftex.el (reftex-mode):
13674 * textmodes/rst.el (rst-minor-mode):
13675 * textmodes/sgml-mode.el (html-autoview-mode)
13676 (sgml-electric-tag-pair-mode):
13677 * textmodes/tex-mode.el (latex-electric-env-pair-mode):
13678 * vc/diff-mode.el (diff-auto-refine-mode, diff-minor-mode):
13679 * emulation/crisp.el (crisp-mode):
13680 * emacs-lisp/eldoc.el (eldoc-mode):
13681 * emacs-lisp/checkdoc.el (checkdoc-minor-mode): Doc fixes for new
13682 minor mode behavior.
13683
13684 2011-10-19 Juri Linkov <juri@jurta.org>
13685
13686 * descr-text.el (describe-char): Add #x2010 and #x2011 to
13687 the list of hard-coded chars with escape-glyph face.
13688
13689 2011-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
13690
13691 * vc/log-edit.el (log-edit-empty-buffer-p): Ignore empty headers.
13692
13693 2011-10-19 Michael Albinus <michael.albinus@gmx.de>
13694
13695 * net/tramp.el (tramp-connectable-p): Make a stronger check on a
13696 running process.
13697
13698 2011-10-19 Glenn Morris <rgm@gnu.org>
13699
13700 * vc/vc-bzr.el (vc-bzr-after-dir-status):
13701 Ignore ignored files. (Bug#9726)
13702
13703 2011-10-19 Chong Yidong <cyd@gnu.org>
13704
13705 Doc fix for minor modes, stating that an omitted argument enables
13706 the mode unconditionally when called from Lisp.
13707
13708 * abbrev.el (abbrev-mode):
13709 * allout.el (allout-mode):
13710 * autoinsert.el (auto-insert-mode):
13711 * autoarg.el (autoarg-mode, autoarg-kp-mode):
13712 * autorevert.el (auto-revert-mode, auto-revert-tail-mode)
13713 (global-auto-revert-mode):
13714 * battery.el (display-battery-mode):
13715 * composite.el (global-auto-composition-mode)
13716 (auto-composition-mode):
13717 * delsel.el (delete-selection-mode):
13718 * desktop.el (desktop-save-mode):
13719 * dired-x.el (dired-omit-mode):
13720 * dirtrack.el (dirtrack-mode):
13721 * doc-view.el (doc-view-minor-mode):
13722 * double.el (double-mode):
13723 * electric.el (electric-indent-mode, electric-pair-mode):
13724 * emacs-lock.el (emacs-lock-mode):
13725 * epa-hook.el (auto-encryption-mode):
13726 * follow.el (follow-mode):
13727 * font-core.el (font-lock-mode):
13728 * frame.el (auto-raise-mode, auto-lower-mode, blink-cursor-mode):
13729 * help.el (temp-buffer-resize-mode):
13730 * hilit-chg.el (highlight-changes-mode)
13731 (highlight-changes-visible-mode):
13732 * hi-lock.el (hi-lock-mode):
13733 * hl-line.el (hl-line-mode, global-hl-line-mode):
13734 * icomplete.el (icomplete-mode):
13735 * ido.el (ido-everywhere):
13736 * image-file.el (auto-image-file-mode):
13737 * image-mode.el (image-minor-mode):
13738 * iswitchb.el (iswitchb-mode):
13739 * jka-cmpr-hook.el (auto-compression-mode):
13740 * linum.el (linum-mode):
13741 * longlines.el (longlines-mode):
13742 * master.el (master-mode):
13743 * mb-depth.el (minibuffer-depth-indicate-mode):
13744 * menu-bar.el (menu-bar-mode):
13745 * minibuf-eldef.el (minibuffer-electric-default-mode):
13746 * mouse-sel.el (mouse-sel-mode):
13747 * msb.el (msb-mode):
13748 * mwheel.el (mouse-wheel-mode):
13749 * outline.el (outline-minor-mode):
13750 * paren.el (show-paren-mode):
13751 * recentf.el (recentf-mode):
13752 * reveal.el (reveal-mode, global-reveal-mode):
13753 * rfn-eshadow.el (file-name-shadow-mode):
13754 * ruler-mode.el (ruler-mode):
13755 * savehist.el (savehist-mode):
13756 * scroll-all.el (scroll-all-mode):
13757 * scroll-bar.el (scroll-bar-mode):
13758 * server.el (server-mode):
13759 * shell.el (shell-dirtrack-mode):
13760 * simple.el (auto-fill-mode, transient-mark-mode)
13761 (visual-line-mode, overwrite-mode, binary-overwrite-mode)
13762 (line-number-mode, column-number-mode, size-indication-mode)
13763 (auto-save-mode, normal-erase-is-backspace-mode, visible-mode):
13764 * strokes.el (strokes-mode):
13765 * time.el (display-time-mode):
13766 * t-mouse.el (gpm-mouse-mode):
13767 * tool-bar.el (tool-bar-mode):
13768 * tooltip.el (tooltip-mode):
13769 * type-break.el (type-break-mode-line-message-mode)
13770 (type-break-query-mode):
13771 * view.el (view-mode):
13772 * whitespace.el (whitespace-mode, whitespace-newline-mode)
13773 (global-whitespace-mode, global-whitespace-newline-mode):
13774 * xt-mouse.el (xterm-mouse-mode): Doc fix.
13775
13776 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
13777 Fix autogenerated docstring.
13778
13779 2011-10-19 Juri Linkov <juri@jurta.org>
13780
13781 * net/browse-url.el (browse-url-can-use-xdg-open): Support LXDE
13782 by checking environment variables "DESKTOP_SESSION" and
13783 "XDG_CURRENT_DESKTOP". (Bug#9779)
13784
13785 2011-10-19 Juri Linkov <juri@jurta.org>
13786
13787 * net/browse-url.el (browse-url-browser-function): Add "Chromium".
13788 (browse-url-chromium-program, browse-url-chromium-arguments):
13789 New defcustoms.
13790 (browse-url-default-browser): Check for `browse-url-chromium' and
13791 call `browse-url-chromium-program'.
13792 (browse-url-chromium): New command. (Bug#9779)
13793
13794 2011-10-18 Juanma Barranquero <lekktu@gmail.com>
13795
13796 * facemenu.el (list-colors-duplicates): On Windows, detect more
13797 duplicates by assuming that only colors matching "^System" are
13798 special "system colors". (Bug#9722)
13799
13800 2011-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
13801
13802 * vc/log-edit.el (log-edit): Add "Author:" header to encourage people
13803 to distinguish the author from the committer.
13804
13805 2011-10-18 Michael Albinus <michael.albinus@gmx.de>
13806
13807 * net/tramp.el (tramp-file-name-handler): Load Tramp packages silently.
13808
13809 2011-10-18 Jirka Kosek <jirka@kosek.cz> (tiny change)
13810
13811 * international/mule.el (sgml-html-meta-auto-coding-function):
13812 Add support for detecting encoding in HTML5 specified only as
13813 <meta charset="UTF-8">. Implementation just makes http-equiv and
13814 content-type parts from HTML4 encoding string optional. (Bug#9716)
13815
13816 2011-10-18 Glenn Morris <rgm@gnu.org>
13817
13818 * vc/vc.el (vc-initial-comment): Mark as obsolete. (Bug#9745)
13819
13820 2011-10-18 Chong Yidong <cyd@gnu.org>
13821
13822 * faces.el (cursor): Doc fix.
13823
13824 2011-10-17 Chong Yidong <cyd@gnu.org>
13825
13826 * font-lock.el (font-lock-maximum-size): Mark as obsolete.
13827
13828 2011-10-17 Ryan Barrett <emacs@ryanb.org> (tiny change)
13829
13830 * dirtrack.el (dirtrack): Support shell buffers with path
13831 prefixes, e.g. tramp-based remote shells. (Bug#9647)
13832
13833 2011-10-17 Teodor Zlatanov <tzz@lifelogs.com>
13834
13835 * json.el: Bump version to 1.3 and note change in History.
13836 (json-alist-p, json-plist-p): Rewrite to avoid recursion.
13837
13838 2011-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
13839
13840 * comint.el (comint-insert-input, comint-send-input)
13841 (comint-get-old-input-default, comint-backward-matching-input)
13842 (comint-next-prompt): Use nil instead of `input' for field property of
13843 past user input (bug#114).
13844
13845 * minibuffer.el (completion--replace): Inherit surrounding properties
13846 (bug#114).
13847 (minibuffer-complete-and-exit): Use it.
13848
13849 * comint.el (comint--table-subvert): Quote the all-completions output
13850 (bug#9160).
13851
13852 2011-10-17 Martin Rudalics <rudalics@gmx.at>
13853
13854 * ido.el (ido-default-buffer-method): Remove redundant :type entry.
13855
13856 * menu-bar.el (menu-bar-file-menu): Add entry for making new
13857 window on right of selected. (Bug#9350) Reword other window
13858 entries and separate them from frame entries.
13859
13860 2011-10-15 Glenn Morris <rgm@gnu.org>
13861
13862 * emacs-lisp/ert.el (ert--explain-equal-rec, ert-select-tests):
13863 Doc fixes.
13864
13865 2011-10-15 Chong Yidong <cyd@stupidchicken.com>
13866
13867 * net/network-stream.el (network-stream-open-starttls):
13868 Improve detection of failure due to lack of TLS support.
13869
13870 * mail/sendmail.el (sendmail-query-once): Tweak prompt message,
13871 putting the input text in front and in bold.
13872
13873 2011-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
13874
13875 * pcmpl-unix.el (pcomplete/ssh): SSH does allow ganging.
13876
13877 * mpc.el (mpc-songs-jump-to): Don't burp if the user clicks in an
13878 empty buffer.
13879
13880 * mouse.el (mouse-drag-mode-line-1): Modify the end-event we pushed on
13881 unread-command-events rather than pushing yet-another event.
13882
13883 2011-10-14 Eli Zaretskii <eliz@gnu.org>
13884
13885 * mail/sendmail.el (sendmail-query-once): Improve the wording of
13886 the explanation of the possible choices. Make the options passed
13887 to completing-read shorter.
13888
13889 2011-10-13 Agustín Martín Domingo <agustin.martin@hispalinux.es>
13890
13891 * textmodes/flyspell.el (flyspell-large-region): Make sure
13892 extended character mode is used if defined (Bug#1339).
13893
13894 2011-10-13 Eli Zaretskii <eliz@gnu.org>
13895
13896 * simple.el (what-cursor-position): Fix the display of the
13897 character info for LRE, LRO, RLE, and RLO characters by appending
13898 an invisible PDF.
13899
13900 2011-10-13 Stefan Monnier <monnier@iro.umontreal.ca>
13901
13902 * emacs-lisp/timer.el (with-timeout): Make sure we cancel the timer
13903 even in case of error; add debug spec; simplify data flow.
13904 (with-timeout-handler): Remove.
13905
13906 2011-10-12 Michael Albinus <michael.albinus@gmx.de>
13907
13908 Fix Bug#6019, Bug#9315.
13909
13910 * files.el (set-auto-mode): Call `file-name-sans-versions' for the
13911 complete `buffer-file-name', the local file name part could look
13912 remotely (for example on VMS).
13913
13914 * net/ange-ftp.el (ange-ftp-run-real-handler): Make it an alias of
13915 `tramp-run-real-handler'.
13916 (ange-ftp-fix-name-for-vms): Handle the case, where `name' is
13917 already quoted by '"'.
13918
13919 * net/tramp.el (tramp-rfn-eshadow-update-overlay): Ignore errors.
13920 Let `file-name-handler-alist' be nil, the local file name part
13921 could look remotely (for example on VMS).
13922
13923 2011-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
13924
13925 * textmodes/flyspell.el (flyspell-word): Move with-local-quit
13926 from here...
13927 (flyspell-post-command-hook): ...to here.
13928
13929 2011-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
13930
13931 * mail/sendmail.el (send-mail-function): Don't use sendmail-query-once
13932 if not needed.
13933 (sendmail-query-once): Remove OS dependencies. Make it a 3-way choice
13934 using completion. Protect against "slow" callers.
13935 Remove the "message hack".
13936
13937 2011-10-11 Juri Linkov <juri@jurta.org>
13938
13939 * isearch.el (isearch-lazy-highlight-word): New variable.
13940 (isearch-lazy-highlight-new-loop, isearch-lazy-highlight-search):
13941 Use it. (Bug#9727)
13942
13943 2011-10-11 Glenn Morris <rgm@gnu.org>
13944
13945 * progmodes/f90.el (f90-next-statement): Ignore preprocessor lines,
13946 like f90-previous-statement does.
13947
13948 2011-10-11 Thierry Volpiatto <thierry.volpiatto@gmail.com>
13949
13950 * eshell/eshell.el (eshell-command): History should be saved
13951 only in interactive use, to avoid error.
13952
13953 2011-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
13954
13955 * minibuffer.el (completion-file-name-table): Fix last change,
13956 i.e. ignore normal errors but not the other ones.
13957
13958 2011-10-10 Martin Rudalics <rudalics@gmx.at>
13959
13960 * window.el (special-display-buffer-names)
13961 (special-display-regexps): Remove some remnants of earlier
13962 changes from doc-strings.
13963 (quit-windows-on): New function.
13964
13965 * vc/vc.el (vc-revert, vc-rollback):
13966 * vc/vc-dispatcher.el (vc-finish-logentry): Call quit-windows-on
13967 instead of deleting windows. (Bug#4557) (Bug#5310) (Bug#5556)
13968 (Bug#6183) (Bug#7074) (Bug#7447)
13969
13970 2011-10-09 Martin Rudalics <rudalics@gmx.at>
13971
13972 * window.el (frame-auto-hide-function): Add version tag.
13973 (Bug#9699)
13974
13975 2011-10-09 Michael Albinus <michael.albinus@gmx.de>
13976
13977 * net/tramp.el (tramp-file-name-handler): Add 'debug to the error
13978 condition.
13979
13980 2011-10-09 Leo Liu <sdl.web@gmail.com>
13981
13982 * mail/smtpmail.el (smtpmail-send-data): Add a missing space.
13983 (Bug#9701)
13984
13985 2011-10-08 Glenn Morris <rgm@gnu.org>
13986
13987 * progmodes/f90.el (f90-calculate-indent): Give preprocessor lines
13988 before the first code statement zero indent. (Bug#9690)
13989
13990 2011-10-08 Chong Yidong <cyd@stupidchicken.com>
13991
13992 * simple.el (count-words-region): Always count in the region.
13993 Report the number of lines and characters too.
13994 (count-words): New command, which counts in the buffer if the
13995 region is inactive, as count-words-region used to.
13996 (count-words--message): New function. Handle plurals.
13997 (count-lines-region): Make it an alias for count-words-region.
13998
13999 * bindings.el (esc-map): Replace count-lines-region with
14000 count-words-region.
14001
14002 2011-10-08 Martin Rudalics <rudalics@gmx.at>
14003
14004 * window.el (window--delete): Delete dedicated frame
14005 unconditionally when argument KILL is non-nil. (Bug#9699)
14006 (switch-to-buffer): Fix doc-string typo.
14007
14008 2011-10-08 Thierry Volpiatto <thierry.volpiatto@gmail.com>
14009
14010 * eshell/eshell.el (eshell-command): Avoid using hooks.
14011
14012 2011-10-07 Chong Yidong <cyd@stupidchicken.com>
14013
14014 * bindings.el ([M-left],[M-right]): Bind to left-word and
14015 right-word respectively.
14016
14017 2011-10-07 Glenn Morris <rgm@gnu.org>
14018
14019 * cus-start.el (debug-on-quit): Fix custom type.
14020
14021 2011-10-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
14022
14023 * subr.el (define-key-after): Clarify that the function is not
14024 useful for non-menu keymaps.
14025
14026 * progmodes/gdb-mi.el (gdb): Fix typo in doc string.
14027
14028 2011-10-06 Thierry Volpiatto <thierry.volpiatto@gmail.com>
14029
14030 * eshell/eshell.el (eshell-command): Enable `eshell-mode' only
14031 in current minibuffer (Fix bug with recursive minibuffers).
14032
14033 2011-10-06 Chong Yidong <cyd@stupidchicken.com>
14034
14035 * progmodes/gdb-mi.el (gdb): Doc fix.
14036
14037 2011-10-05 Martin Rudalics <rudalics@gmx.at>
14038
14039 * window.el (frame-auto-hide-function): New option replacing
14040 frame-auto-delete. Suggested by Stefan Monnier.
14041 (window--delete): Call frame-auto-hide-function instead of
14042 investigating frame-auto-delete.
14043 (window-point-1, set-window-point-1): New functions.
14044 (window-in-direction, record-window-buffer, window-state-get-1)
14045 (display-buffer-record-window): Use window-point-1 instead of
14046 window-point.
14047 (set-window-buffer-start-and-point): Use set-window-point-1.
14048
14049 2011-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
14050
14051 * emacs-lisp/edebug.el: Heed checkdoc recommendations.
14052
14053 2011-10-05 Glenn Morris <rgm@gnu.org>
14054
14055 * progmodes/perl-mode.el (perl-electric-terminator): Doc fix.
14056 (perl-calculate-indent): Suppress scan errors. (Bug#2205)
14057
14058 2011-10-05 Leo Liu <sdl.web@gmail.com>
14059
14060 * subr.el (read-char-choice): Fix argument to buffer-live-p which
14061 works with buffer object.
14062
14063 2011-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
14064
14065 * mpc.el (mpc-tool-bar-map): Add labels.
14066
14067 2011-10-04 Glenn Morris <rgm@gnu.org>
14068
14069 * calendar/holidays.el (calendar-check-holidays): Doc fix.
14070
14071 2011-10-04 Martin Rudalics <rudalics@gmx.at>
14072
14073 * window.el (window--delete): New function.
14074 (frame-auto-delete): Resuscitate option.
14075 (bury-buffer, replace-buffer-in-windows)
14076 (quit-window): Rewrite using window--delete.
14077 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
14078 Pass display-buffer-mark-dedicated to window--display-buffer-2
14079 (Bug#9639).
14080
14081 2011-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
14082
14083 * pcmpl-unix.el (pcomplete/scp): Don't assume pcomplete-all-entries
14084 returns a list (bug#9554). Add remote file name completion.
14085 * comint.el (comint--table-subvert): Curry and get quote&unquote
14086 functions as arguments.
14087 (comint--complete-file-name-data): Adjust call accordingly.
14088 * pcomplete.el (pcomplete--table-subvert): Remove.
14089 (pcomplete-completions-at-point): Use comint--table-subvert instead.
14090
14091 * minibuffer.el (completion-table-case-fold): Use currying.
14092 (completion--styles-type, completion--cycling-threshold-type):
14093 New constants.
14094 (completion-styles, completion-category-overrides)
14095 (completion-cycle-threshold): Use them.
14096 * pcomplete.el (pcomplete-completions-at-point): Adjust call to
14097 completion-table-case-fold.
14098
14099 2011-10-03 Stephen Berman <stephen.berman@gmx.net>
14100
14101 * minibuffer.el (completion-category-overrides): Fix type of styles
14102 and add more user friendly tags (bug#9660).
14103
14104 2011-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
14105
14106 * international/mule-cmds.el: Fix abuses of apply-partially (bug#9661).
14107 (mule-input-method-string): New widget.
14108 (default-input-method, language-info-custom-alist): Use it.
14109
14110 2011-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
14111
14112 * pcomplete.el: Require comint.
14113 (pcomplete--common-suffix): Remove.
14114 (pcomplete--common-quoted-suffix): Use comint--common-suffix instead.
14115 (pcomplete--table-subvert): Sync with comint--table-subvert.
14116 (pcomplete--entries): Use comint-completion-file-name-table.
14117 * comint.el (comint-unquote-filename): Simplify.
14118 (comint-completion-file-name-table): New function (bug#9616).
14119 (comint--complete-file-name-data): Use it.
14120
14121 * pcmpl-gnu.el (pcmpl-gnu-with-file-buffer): New macro (bug#9643).
14122 (pcmpl-gnu-tar-buffer): Remove.
14123 (pcmpl-gnu-with-file-buffer): Use it to avoid leaving the tar's buffer
14124 around. Make sure pcomplete-suffix-list is only changed temporarily.
14125 Don't look inside the tar's file if it's too large.
14126
14127 2011-10-01 Chong Yidong <cyd@stupidchicken.com>
14128
14129 * cus-edit.el (custom-mode-map):
14130 * epa.el (epa-key-list-mode-map):
14131 * man.el (Man-mode-map):
14132 * startup.el (splash-screen-keymap):
14133 * simple.el (special-mode-map): Use scroll-up-command and
14134 scroll-down-command.
14135
14136 * progmodes/idlw-help.el (idlwave-help-mode-map):
14137 * progmodes/ebrowse.el (ebrowse-electric-position-mode-map):
14138 * net/newst-plainview.el (newsticker-mode-map):
14139 * emulation/ws-mode.el (wordstar-mode-map):
14140 * emulation/vi.el (vi-com-map):
14141 * calc/calc-graph.el (calc-graph-show-dumb):
14142 * term/sun.el (terminal-init-sun):
14143 * term/ns-win.el (global-map):
14144 * progmodes/grep.el (grep-mode-map):
14145 * progmodes/ebrowse.el (ebrowse-electric-list-mode-map):
14146 * mail/rmail.el (rmail-mode-map):
14147 * progmodes/cpp.el (cpp-edit-mode-map): Likewise.
14148
14149 * custom.el (custom-safe-themes, load-theme): Treat value of t for
14150 custom-safe-themes as special.
14151
14152 2011-10-01 Julien Danjou <julien@danjou.info>
14153
14154 * notifications.el (notifications-notify): Fix docstring.
14155
14156 2011-10-01 Per Starbäck <per@starback.se>
14157
14158 * pcmpl-gnu.el (pcomplete/tar): Fix tar-header-name call. (Bug#9643)
14159
14160 2011-09-30 Martin Rudalics <rudalics@gmx.at>
14161
14162 * startup.el (command-line-1): Fix last fix by inserting
14163 initial-scratch-message into *scratch* before displaying it.
14164 (Bug#9605) and (Bug#9636)
14165
14166 2011-09-29 Eli Zaretskii <eliz@gnu.org>
14167
14168 * simple.el (line-move): If auto-hscroll-mode is disabled and the
14169 window is hscrolled, move by logical lines. (Bug#9607)
14170 (line-move-visual): Update the doc string to the above effect.
14171
14172 2011-09-29 Martin Rudalics <rudalics@gmx.at>
14173
14174 * window.el (display-buffer-record-window): When WINDOW is the
14175 selected window use `point' instead of `window-point'. (Bug#9626)
14176
14177 * startup.el (command-line-1): Use insert-before-markers when
14178 inserting initial-scratch-message. (Bug#9605)
14179
14180 * help.el (help-window): Remove variable.
14181
14182 2011-09-29 Glenn Morris <rgm@gnu.org>
14183
14184 * pcmpl-cvs.el (pcomplete/cvs): Add "status" handler.
14185
14186 2011-09-29 Juanma Barranquero <lekktu@gmail.com>
14187
14188 * descr-text.el (describe-char-categories): Accept category
14189 descriptions more than one line long.
14190
14191 2011-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
14192
14193 * simple.el (delete-trailing-whitespace): Fix last change.
14194
14195 * progmodes/perl-mode.el (perl-syntax-propertize-function):
14196 Don't confuse "y => 3" as the beginning of a `y' operation.
14197
14198 * emacs-lisp/debug.el (debug-convert-byte-code): Don't assume the
14199 object has more than 4 slots (bug#9613).
14200
14201 2011-09-28 Juanma Barranquero <lekktu@gmail.com>
14202
14203 * subr.el (with-output-to-temp-buffer):
14204 * net/quickurl.el (quickurl, quickurl-browse-url):
14205 Fix typos in docstrings.
14206
14207 2011-09-27 Eli Zaretskii <eliz@gnu.org>
14208
14209 * minibuffer.el (completion-styles)
14210 (completion-category-overrides): Cross reference each other in doc
14211 strings.
14212
14213 2011-09-27 Glenn Morris <rgm@gnu.org>
14214
14215 * pcmpl-cvs.el (pcmpl-cvs-entries): Update for Emacs 22.1 changes
14216 to split-string. (Bug#9606)
14217
14218 2011-09-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
14219
14220 * mail/smtpmail.el (smtpmail-via-smtp): Fix STARTTLS detection
14221 (bug#9615).
14222
14223 2011-09-27 Chong Yidong <cyd@stupidchicken.com>
14224
14225 * emacs-lisp/package.el (list-packages): Fix echo area message.
14226
14227 2011-09-27 Leo Liu <sdl.web@gmail.com>
14228
14229 * ido.el (ido-read-internal): Accept cons cell HIST arg.
14230
14231 2011-09-25 Michael Albinus <michael.albinus@gmx.de>
14232
14233 * net/dbus.el (dbus-unregister-object): Don't release services for
14234 registered signals. (Bug#9581)
14235
14236 2011-09-25 Teodor Zlatanov <tzz@lifelogs.com>
14237
14238 * progmodes/cfengine.el (cfengine-auto-mode): Add convenience
14239 function that picks between cfengine 2 and 3 support
14240 automatically. Update docs accordingly.
14241
14242 2011-09-22 Kenichi Handa <handa@m17n.org>
14243
14244 * language/ind-util.el (indian-tml-base-table): Add TAMIL DIGIT
14245 ZERO.
14246 (indian-itrans-v5-table-for-tamil): New variable.
14247 (indian-tml-itrans-v5-hash): Use the above variable (Bug#9336).
14248
14249 2011-09-22 Ken Manheimer <ken.manheimer@gmail.com>
14250
14251 * allout.el (allout-this-command-hid-stuff): Buffer-local variable
14252 that's true if the current command involved collapsing of text.
14253 It's reset to false at the beginning of the next command.
14254 (allout-post-command-business): Move the cursor to the beginning
14255 of entry if the cursor is hidden and collapsing activity just
14256 happened.
14257
14258 2011-09-24 Chong Yidong <cyd@stupidchicken.com>
14259
14260 * mouse.el (mouse-drag-track): Set scroll-margin to 0 while
14261 tracking (Bug#9541).
14262
14263 2011-09-24 Ulf Jasper <ulf.jasper@web.de>
14264
14265 * net/newst-reader.el (newsticker-html-renderer)
14266 (newsticker-show-news): Automatically load html rendering package
14267 if newsticker-html-renderer is set. Fixes "Warning: defvar ignored
14268 because w3m-fill-column is let-bound" and the error "Symbol's value
14269 as variable is void: w3m-fill-column".
14270
14271 2011-09-24 Michael Albinus <michael.albinus@gmx.de>
14272
14273 * net/dbus.el (dbus-unregister-object): Remove match rule of signals.
14274 Release services only if they are defined. (Bug#9581)
14275
14276 2011-09-23 Richard Stallman <rms@gnu.org>
14277
14278 * textmodes/paragraphs.el (forward-sentence): For backwards case,
14279 distinguish start of paragraph from start of its text.
14280
14281 * mail/emacsbug.el (report-emacs-bug-query-existing-bugs): Autoload.
14282
14283 * mail/rmail.el (rmail-view-buffer-kill-buffer-hook): New function.
14284 (rmail-generate-viewer-buffer): Put that hook on view buffer.
14285 (rmail-mode-kill-buffer-hook): Override that hook, to kill view buffer.
14286
14287 2011-09-23 Andreas Schwab <schwab@linux-m68k.org>
14288
14289 * international/mule-diag.el (mule-diag): Insert a newline after
14290 each fontset description.
14291
14292 2011-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
14293
14294 * simple.el (delete-trailing-whitespace):
14295 Document last change; simplify.
14296
14297 2011-09-23 Peter J. Weisberg <pj@irregularexpressions.net>
14298
14299 * simple.el (delete-trailing-whitespace): Also delete
14300 extra newlines at the end of the buffer.
14301
14302 * textmodes/picture.el: Make motion commands obey shift-select-mode.
14303 (picture-newline): Use forward-line so as to ignore fields.
14304
14305 2011-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
14306
14307 * subr.el (with-wrapper-hook): Fix edebug spec.
14308
14309 2011-09-23 Lars Magne Ingebrigtsen <larsi@gnus.org>
14310
14311 * simple.el (kill-line): Note effect of `show-trailing-whitespace'
14312 (bug#4538).
14313
14314 2011-09-23 Michael Albinus <michael.albinus@gmx.de>
14315
14316 * net/tramp-sh.el (tramp-sh-handle-file-name-all-completions):
14317 Fix nasty bug using wrong cached values.
14318
14319 2011-09-23 Alan Mackenzie <acm@muc.de>
14320
14321 * progmodes/cc-defs.el (c-version): Increase to 5.31.9.
14322
14323 2011-09-23 Chong Yidong <cyd@stupidchicken.com>
14324
14325 * window.el (pop-to-buffer): Ensure right window is selected if we
14326 chose another frame.
14327
14328 2011-09-22 Eli Zaretskii <eliz@gnu.org>
14329
14330 * simple.el (what-cursor-position): Use get-char-property-change
14331 and next-single-char-property-change, to be able to show display
14332 properties that come from overlays as well as text properties.
14333
14334 2011-09-22 Chong Yidong <cyd@stupidchicken.com>
14335
14336 * window.el (pop-to-buffer-same-window): New (reinstated) fun.
14337
14338 * cmuscheme.el (run-scheme, switch-to-scheme):
14339 * cus-edit.el (customize-group, custom-buffer-create)
14340 (customize-browse):
14341 * info.el (info):
14342 * shell.el (shell):
14343 * mail/sendmail.el (mail):
14344 * progmodes/inf-lisp.el (inferior-lisp): Use it (Bug#9532).
14345
14346 2011-09-22 Richard Stallman <rms@gnu.org>
14347
14348 * textmodes/paragraphs.el (forward-sentence): When setting PAR-BEG,
14349 move back only to line beg, don't move back over blank lines.
14350
14351 2011-09-22 Michael Albinus <michael.albinus@gmx.de>
14352
14353 * files.el (copy-directory): Set directory attributes only in case
14354 they could be retrieved from the source directory. (Bug#9565)
14355
14356 2011-09-22 Dima Kogan <dkogan@secretsauce.net> (tiny change)
14357
14358 * progmodes/hideshow.el (hs-looking-at-block-start-p)
14359 (hs-find-block-beginning, hs-hide-level-recursive):
14360 Ignore strings as well as comments. (Bug#9502)
14361
14362 2011-09-22 Andrew Schein <andrew@andrewschein.com> (tiny change)
14363
14364 * progmodes/sql.el (sql-comint-postgres):
14365 Convert port number to a string. (Bug#9566)
14366
14367 2011-09-22 Martin Rudalics <rudalics@gmx.at>
14368
14369 * window.el (quit-window): Undedicate window when switching to
14370 previous buffer. Reported by Thierry Volpiatto
14371 <thierry.volpiatto@gmail.com>.
14372 (special-display-popup-frame): When popping up a new frame reset
14373 its previous buffers to nil. Simplify code.
14374
14375 2011-09-21 Michael Albinus <michael.albinus@gmx.de>
14376
14377 * net/tramp.el (tramp-handle-shell-command): Set process sentinel
14378 and process filter, as done also in `shell-command'.
14379
14380 2011-09-21 Martin Rudalics <rudalics@gmx.at>
14381
14382 * window.el (set-window-buffer-start-and-point):
14383 Call set-window-start with NOFORCE argument t.
14384 Suggested by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
14385 (quit-window): Reword doc-string. Handle new format of
14386 quit-restore parameter. Don't delete window if it has a
14387 previous buffer we can show instead of the present one.
14388 (display-buffer-record-window): Rewrite using a new format for
14389 the quit-restore window parameter
14390 (special-display-popup-frame, display-buffer-same-window)
14391 (display-buffer-reuse-window, display-buffer-pop-up-frame)
14392 (display-buffer-pop-up-window, display-buffer-use-some-window):
14393 Adapt symbol passed to display-buffer-record-window.
14394 * help.el (help-window-setup): Handle new format of quit-restore
14395 parameter.
14396
14397 2011-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
14398
14399 * faces.el (face-list): Fix docstring (bug#9564).
14400
14401 * window.el (display-buffer--action-function-custom-type):
14402 Don't include internal functions in the Custom interface.
14403
14404 2011-09-20 Juri Linkov <juri@jurta.org>
14405
14406 * info.el (Info-history-skip-intermediate-nodes): New defcustom.
14407 (Info-forward-node, Info-backward-node, Info-next-preorder)
14408 (Info-last-preorder): Use it. (Bug#9528)
14409
14410 2011-09-20 Juri Linkov <juri@jurta.org>
14411
14412 * info.el (Info-last-preorder): Visit last menu item only when
14413 `Info-scroll-prefer-subnodes' is non-nil (third test-case of bug#9528).
14414
14415 2011-09-20 Julien Danjou <julien@danjou.info>
14416
14417 * password-cache.el (password-cache-remove): Remove entries even if the
14418 value is nil, so that password with a nil value (negative caching) is
14419 possible to invalidate.
14420
14421 2011-09-20 Lawrence Mitchell <wence@gmx.li>
14422
14423 * progmodes/f90.el (f90-break-line): If breaking inside comment delete
14424 all whitespace around breakpoint. (Bug#9553)
14425 (f90-find-breakpoint): Only break at whitespace inside a comment.
14426
14427 2011-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
14428
14429 * minibuffer.el (completion-file-name-table): Keep track of errors.
14430 (completion-table-with-predicate): Handle the case where pred1 is nil.
14431 * pcomplete.el (pcomplete-completions-at-point): Simplify.
14432
14433 2011-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
14434
14435 * emacs-lisp/debug.el (debugger-args): Give it a docstring.
14436 (debugger-return-value): Signal an error if the debugging context does
14437 not await any return value.
14438
14439 * ps-mule.el (ps-mule-plot-string): Don't inf-loop (bug#5108).
14440 * image-mode.el (image-toggle-display-text)
14441 (image-toggle-display-image): Stay away from evil `intangible'.
14442
14443 2011-09-19 Leo Liu <sdl.web@gmail.com>
14444
14445 * replace.el (occur-revert-arguments): Make it permanent-local.
14446 (occur-mode): Don't call font-lock-defontify.
14447
14448 2011-09-19 Chong Yidong <cyd@stupidchicken.com>
14449
14450 * net/ldap.el (ldap-search-internal): Don't push empty search
14451 result (Bug#9508).
14452
14453 2011-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
14454
14455 * whitespace.el (whitespace-newline-mode): Disable it right (bug#9550).
14456
14457 2011-09-19 Michael Albinus <michael.albinus@gmx.de>
14458
14459 * net/tramp-sh.el (tramp-inline-compress-commands): Add "xz".
14460 Suggested by Liam Stitt <stittl@cuug.ab.ca>.
14461
14462 2011-09-18 Juri Linkov <juri@jurta.org>
14463
14464 * buff-menu.el (Buffer-menu-mode-map):
14465 * dired.el (dired-mode-map):
14466 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map)
14467 (lisp-interaction-mode-map):
14468 * emacs-lisp/package.el (package-menu-mode-map):
14469 * epa.el (epa-key-list-mode-map):
14470 * menu-bar.el (menu-bar-showhide-tool-bar-menu)
14471 (menu-bar-options-menu):
14472 * outline.el (outline-mode-menu-bar-map):
14473 * vc/vc-bzr.el (vc-bzr-shelve-menu-map, vc-bzr-extra-menu-map):
14474 * vc/vc-dir.el (vc-dir-menu-map):
14475 * vc/vc-git.el (vc-git-stash-menu-map, vc-git-extra-menu-map):
14476 Capitalize non-function content words in menu item strings.
14477
14478 * dired.el (dired-mode-map): Add menu item for
14479 `image-dired-dired-toggle-marked-thumbs'.
14480
14481 2011-09-18 Juri Linkov <juri@jurta.org>
14482
14483 * isearch.el (isearch-edit-string): Bind `isearch-new-case-fold'
14484 to `isearch-case-fold-search' and restore its original value
14485 after the `isearch-mode' call.
14486
14487 2011-09-18 Juri Linkov <juri@jurta.org>
14488
14489 * progmodes/grep.el (grep-process-setup): Don't check code for 1
14490 because `zgrep' returns 1 for successful matches (bug#9226).
14491
14492 2011-09-18 Juri Linkov <juri@jurta.org>
14493
14494 * info.el (Info-extract-menu-node-name): Check the second match
14495 for empty string (second test-case of bug#9528).
14496 (Info-last-preorder): Let-bind `Info-history' to nil to not add
14497 intermediate nodes to the history (first test-case of bug#9528).
14498
14499 2011-09-18 Juri Linkov <juri@jurta.org>
14500
14501 * info.el (Info-mode-syntax-table): New variable.
14502 (Info-mode): Set `:syntax-table' to `Info-mode-syntax-table' (bug#3312).
14503
14504 2011-09-18 Juri Linkov <juri@jurta.org>
14505
14506 * info.el (Info-file-supports-index-cookies):
14507 Increment line-beginning-position's arg from 3 to 4 because makeinfo
14508 outputs one more line for long file names (bug#4142).
14509
14510 2011-09-18 Chong Yidong <cyd@stupidchicken.com>
14511
14512 * newcomment.el (comment-normalize-vars): If prompting for
14513 comment-start, set comment-start-skip too (Bug#8424).
14514
14515 2011-09-18 Johan Bockgård <bojohan@gnu.org>
14516
14517 * icomplete.el: Fix previous fix of Bug#5849.
14518 (icomplete-mode): Don't set completion-show-inline-help.
14519 (icomplete-minibuffer-setup): Set completion-show-inline-help
14520 locally during icompletion.
14521
14522 2011-09-18 Chong Yidong <cyd@stupidchicken.com>
14523
14524 * woman.el (woman2-process-escapes): Don't delete unrecognized
14525 escapes (Bug#7843).
14526
14527 * files.el (inhibit-first-line-modes-regexps): Add image files.
14528 (hack-local-variables-prop-line): Return nil for malformed
14529 prop-lines (Bug#9044).
14530
14531 2011-09-18 Michael Albinus <michael.albinus@gmx.de>
14532
14533 * net/tramp.el (top): Don't require 'shell.
14534 (tramp-methods): Fix docstring.
14535 (tramp-get-remote-tmpdir): New defun, moved from tramp-sh.el.
14536 Return complete remote file name. Handle "smb" case.
14537 Use `tramp-tmpdir', if defined for the respective method.
14538 (tramp-make-tramp-temp-file): Adapt call of `tramp-get-remote-tmpdir'.
14539
14540 * net/tramp-compat.el (top): Require 'shell.
14541
14542 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band)
14543 (tramp-maybe-open-connection): Use `tramp-file-name-real-host' for
14544 `tramp-current-host'.
14545 (tramp-get-remote-tmpdir): Remove.
14546
14547 * net/tramp-smb.el (tramp-methods): Add `tramp-remote-shell' and
14548 `tramp-tmpdir' entries.
14549 (tramp-smb-errors): Add "NT_STATUS_IMAGE_ALREADY_LOADED".
14550 (tramp-smb-handle-file-attributes): Ignore errors.
14551 (tramp-smb-wait-for-output): Check also for process end.
14552
14553 2011-09-18 Lars Magne Ingebrigtsen <larsi@gnus.org>
14554
14555 * mail/smtpmail.el (smtpmail-via-smtp): Ignore errors that arise
14556 when sending QUIT (bug#9312).
14557
14558 2011-09-17 Chong Yidong <cyd@stupidchicken.com>
14559
14560 * replace.el (occur-mode-map): Rebind occur-edit-mode to "e" (Bug#8463).
14561 (occur-edit-mode-map): Bind C-c C-c to occur-cease-edit and C-o to
14562 occur-mode-display-occurrence.
14563 (occur-edit-mode): Add usage message.
14564 (occur-cease-edit): New command.
14565 (occur-after-change-function): Use text properties to find the
14566 position of the prefix text.
14567 (occur-engine): Set stickiness of prefix text properties.
14568
14569 2011-09-17 Glenn Morris <rgm@gnu.org>
14570
14571 * progmodes/etags.el (complete-tag):
14572 Fix call to completion-in-region. (Bug#9526)
14573
14574 2011-09-17 Juri Linkov <juri@jurta.org>
14575
14576 * textmodes/ispell.el (ispell-word): Add to the error message
14577 the word, ispell program name and current dictionary (bug#9121).
14578 (ispell-tex-arg-end): Capitalize "error" in the error message.
14579
14580 2011-09-17 Andreas Schwab <schwab@linux-m68k.org>
14581
14582 * emacs-lisp/bytecomp.el (byte-compile-lapcode): Fix overflow
14583 check. (Bug#4251)
14584
14585 2011-09-17 Juri Linkov <juri@jurta.org>
14586
14587 * window.el (window-safe-min-height, window-safe-min-width):
14588 Fix typos (followup to bug#9522).
14589
14590 2011-09-17 Sven Joachim <svenjoac@gmx.de>
14591
14592 * window.el (window-min-width, window-state-put): Fix typos (bug#9522).
14593
14594 2011-09-16 Eli Zaretskii <eliz@gnu.org>
14595
14596 * simple.el (line-move): If goal-column is set, move by logical
14597 lines, not by display lines. (Bug#971)
14598 (next-line, previous-line, goal-column, line-move-visual): Doc fix
14599 to reflect the above change.
14600
14601 2011-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
14602
14603 * image.el (imagemagick-register-types): Use regexp-opt.
14604
14605 2011-09-15 Chong Yidong <cyd@stupidchicken.com>
14606
14607 * window.el (display-buffer-base-action): Rename from
14608 display-buffer-default-action. Make default value empty.
14609 (display-buffer-overriding-action): Convert to defvar.
14610 (display-buffer-fallback-action): New var.
14611
14612 2011-09-15 Chong Yidong <cyd@stupidchicken.com>
14613
14614 * emacs-lisp/package.el (package-alist): Fix risky-local-variable
14615 declaration.
14616 (package--add-to-archive-contents): If there is a duplicate entry
14617 with an older version, remove it.
14618 (package-menu-mark-delete, package-menu-mark-install)
14619 (package-menu-mark-unmark): Make unused args optional.
14620 (package-menu-mark-obsolete-for-deletion):
14621 Use package-menu-get-status instead of a regexp search.
14622 (package-menu-get-status): Use tabulated-list-entry.
14623 (package-menu-mark-upgrades): New command.
14624 (package-menu-mode-map): Bind it to U. Add it to menu bar.
14625 (package-menu-execute): Do installation before deletion.
14626 (package-menu-refresh, package-menu-execute): Use derived-mode-p
14627 instead of checking major-mode.
14628 (package-menu--find-upgrades): New function.
14629
14630 2011-09-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
14631
14632 * mail/smtpmail.el (smtpmail-send-command): Don't include AUTH
14633 passwords in the log buffer.
14634 (smtpmail-process-filter): Update the process marker so that the
14635 "broken by peer" status message is inserted in the right place.
14636
14637 2011-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
14638
14639 * textmodes/bibtex.el (bibtex-complete-string-cleanup)
14640 (bibtex-complete-crossref-cleanup): Adjust to accommodate needs of
14641 bibtex-completion-at-point-function.
14642 (bibtex-completion-at-point-function): Use them.
14643
14644 * newcomment.el (comment-add, comment-valid-prefix-p): Docfix.
14645
14646 * mpc.el (mpc-constraints-tag-lookup): New function.
14647 (mpc-constraints-restore): Use it to make jumping to "album=Foo" apply
14648 also to browser "album|playlist".
14649
14650 2011-09-14 Juri Linkov <juri@jurta.org>
14651
14652 * isearch.el (isearch-fail-pos): Add new arg `msg'. Doc fix.
14653 (isearch-edit-string): Use length of `isearch-string' when
14654 `isearch-fail-pos' returns nil.
14655 (isearch-message): Remove duplicate code and call
14656 `isearch-fail-pos' with arg `t'.
14657
14658 2011-09-14 Chong Yidong <cyd@stupidchicken.com>
14659
14660 * replace.el (occur-mode-goto-occurrence): Don't force using other
14661 window (Bug#9499).
14662
14663 * dired-aux.el (dired-do-chmod): Don't provide initial input.
14664
14665 2011-09-14 Martin Rudalics <rudalics@gmx.at>
14666
14667 * window.el (display-buffer-window): Remove.
14668 (display-buffer-record-window): Use help-setup window parameter
14669 instead of variable display-buffer-window.
14670 (display-buffer-function, special-display-buffer-names)
14671 (special-display-function): Mention help-setup parameter instead
14672 of display-buffer-window in doc-string.
14673 * help.el (help-window-setup): New argument help-window.
14674 Use help-window-setup parameter instead of display-buffer-window.
14675 Reword some messages.
14676 (with-help-window): Pass window used for displaying the buffer
14677 to help-window-setup. Don't set display-buffer-window.
14678
14679 2011-09-13 Glenn Morris <rgm@gnu.org>
14680
14681 * emacs-lisp/debug.el (debugger-make-xrefs):
14682 Preserve point. (Bug#9462)
14683
14684 2011-09-13 Chong Yidong <cyd@stupidchicken.com>
14685
14686 * window.el (window-deletable-p): Use next-frame.
14687
14688 2011-09-13 Martin Rudalics <rudalics@gmx.at>
14689
14690 * window.el (window-auto-delete): Remove.
14691 (window-deletable-p): Remove argument FORCE. Don't deal with
14692 dedication and previous buffers.
14693 (switch-to-prev-buffer): Don't delete window.
14694 (delete-windows-on): Delete a window's frame if and only if the
14695 window is dedicated.
14696 (replace-buffer-in-windows): Delete buffer's window or frame if
14697 and only if window is dedicated.
14698 (quit-window): Handle quit-restore as before last change.
14699 (bury-buffer): Delete window only if window-deletable-p returns t.
14700
14701 2011-09-13 Chong Yidong <cyd@stupidchicken.com>
14702
14703 * window.el (window-deletable-p): Never delete the last frame on a
14704 given terminal.
14705
14706 2011-09-13 Glenn Morris <rgm@gnu.org>
14707
14708 * help.el (describe-key-briefly): Copy previous standard-output change.
14709
14710 2011-09-13 PJ Weisberg <pj@irregularexpressions.net>
14711
14712 * help.el (where-is): Respect non-standard standard-output. (Bug#9030)
14713
14714 2011-09-13 Glenn Morris <rgm@gnu.org>
14715
14716 * emacs-lisp/lisp-mode.el (lisp-indent-function):
14717 * progmodes/scheme.el (scheme-indent-function): Doc fixes.
14718
14719 2011-09-12 Chong Yidong <cyd@stupidchicken.com>
14720
14721 * dired-aux.el (dired-mark-read-string): Don't return default
14722 value on empty input (Bug#9361).
14723 (dired-do-chxxx): Treat empty input for "touch" as no -t option.
14724 Omit initial minibuffer contents.
14725 (dired-do-chmod): Signal an error on empty input.
14726 (dired-mark-read-string): Don't return default on empty input.
14727
14728 * files.el (file-modes-symbolic-to-number): Doc fix.
14729
14730 2011-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
14731
14732 * international/mule-cmds.el (ucs-completions): Remove.
14733 (read-char-by-name): Use complete-with-action instead; add metadata.
14734
14735 2011-09-11 Chong Yidong <cyd@stupidchicken.com>
14736
14737 * window.el (display-buffer--action-function-custom-type)
14738 (display-buffer--action-custom-type): New vars.
14739 (display-buffer-alist, display-buffer-default-action)
14740 (display-buffer-overriding-action): Add defcustom types.
14741
14742 * frame.el (delete-other-frames): Doc fix (Bug#276).
14743
14744 2011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
14745
14746 * play/doctor.el (make-doctor-variables): Define `doctor-sent'.
14747
14748 2011-09-11 Chong Yidong <cyd@stupidchicken.com>
14749
14750 Change modes that used same-window-* vars to use switch-to-buffer.
14751
14752 * progmodes/gdb-mi.el (gdb-restore-windows, gdb-setup-windows):
14753 Use switch-to-buffer.
14754
14755 * cus-edit.el (customize-group, custom-buffer-create)
14756 (customize-browse, custom-buffer-create-other-window):
14757 Use switch-to-buffer or switch-to-buffer-other-window.
14758
14759 * info.el (info, Info-find-node, Info-revert-find-node, Info-next)
14760 (Info-prev, Info-up, Info-speedbar-goto-node)
14761 (info-display-manual): Use switch-to-buffer.
14762 (Info-speedbar-goto-node): Use switch-to-buffer-other-frame.
14763
14764 * mail/sendmail.el (mail): Use switch-to-buffer.
14765 (mail-recover): Use switch-to-buffer-other-window.
14766
14767 * cmuscheme.el (run-scheme, switch-to-scheme):
14768 * ielm.el (ielm):
14769 * shell.el (shell):
14770 * net/rlogin.el (rlogin):
14771 * net/telnet.el (telnet, rsh):
14772 * progmodes/inf-lisp.el (inferior-lisp): Use switch-to-buffer.
14773
14774 2011-09-11 Andreas Schwab <schwab@linux-m68k.org>
14775
14776 * dired.el (dired-sort-toggle-or-edit): Revert last changes.
14777
14778 2011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
14779
14780 * dired.el (dired-sort-toggle-or-edit): -o doesn't exist on *BSD,
14781 so don't mention it (bug#9301).
14782 (dired-sort-toggle-or-edit): Clarify string further.
14783
14784 * faces.el (face-spec-set-match-display): Make `(type graphic)'
14785 match `x', `w32' and `ns', like the manual says (bug#9029).
14786
14787 * subr.el (eval-after-load): Doc string clarification (bug#9125).
14788 (process-kill-buffer-query-function): Mention the buffer name in
14789 the query.
14790
14791 * image-mode.el (image-next-line): The line parameter is mandatory
14792 (bug#9258).
14793
14794 * dired.el (dired-sort-toggle-or-edit): Mention -o and -g, too,
14795 which can be useful (bug#9301).
14796
14797 * textmodes/flyspell.el: Remove obsolete comment (bug#9368).
14798
14799 * subr.el (match-string): Mention that the current buffer should
14800 be the same as the search was done in (bug#9282).
14801
14802 * facemenu.el: Disable the remove-* commands if the mark isn't
14803 active (bug#9162).
14804
14805 2011-09-10 Chong Yidong <cyd@stupidchicken.com>
14806
14807 * buff-menu.el (Buffer-menu-switch-other-window): Use second arg
14808 of display-buffer.
14809 (Buffer-menu-2-window): Use switch-to-buffer-other-window.
14810
14811 * replace.el (occur-mode-goto-occurrence)
14812 (occur-mode-display-occurrence) Use second arg of pop-to-buffer
14813 and display-buffer.
14814
14815 * mail/reporter.el (reporter-submit-bug-report): Use second arg of
14816 display-buffer.
14817
14818 * mail/sendmail.el (sendmail-user-agent-compose): Don't bind the
14819 special-display and same-window variables.
14820 (mail-other-window): Use switch-to-buffer-other-window.
14821 (mail-other-frame): USe switch-to-buffer-other-frame.
14822
14823 * progmodes/gdb-mi.el (gdb-frame-gdb-buffer):
14824 Use display-buffer-other-frame.
14825 (gdb-display-gdb-buffer): Use pop-to-buffer.
14826
14827 * progmodes/gud.el (gud-goto-info): Use info-other-window.
14828
14829 * progmodes/python.el: Don't set same-window-buffer-names.
14830
14831 * textmodes/bibtex.el (bibtex-search-entry): Use switch-to-buffer.
14832
14833 * window.el (display-buffer-alist): Add *Python*.
14834
14835 2011-09-10 Chong Yidong <cyd@stupidchicken.com>
14836
14837 * window.el (display-buffer-alist): Add entry for buffers
14838 previously handled same-window-*.
14839 (display-buffer-alist, display-buffer-default-action)
14840 (display-buffer-overriding-action): Mark as risky.
14841 (display-buffer-alist): Document action function changes.
14842 (display-buffer--same-window-action)
14843 (display-buffer--other-frame-action): New variables.
14844 (switch-to-buffer, display-buffer-other-frame): Use them.
14845 (display-buffer): Rename reuse-frame entry to reusable-frames.
14846 (display-buffer-reuse-selected-window): Function deleted.
14847 (display-buffer-reuse-window): Handle reusable-frames alist entry.
14848 If it's omitted, check pop-up-frames/display-buffer-reuse-frames.
14849 (display-buffer-special): New function.
14850 (display-buffer--maybe-pop-up-frame-or-window): Rename from
14851 display-buffer-reuse-or-pop-window. Split off special-display
14852 part into display-buffer-special.
14853 (display-buffer-use-some-window): Don't perform any special
14854 pop-up-frames handling.
14855 (pop-to-buffer): Use window-normalize-buffer-to-switch-to.
14856 (display-buffer--maybe-same-window): Rename from
14857 display-buffer-maybe-same-window.
14858
14859 * info.el: Don't set same-window-regexps.
14860 (info-setup): New function.
14861 (info-other-window, info): Call it.
14862
14863 * cus-edit.el: Don't set same-window-regexps.
14864 (customize-group): New argument.
14865 (customize-group-other-window): Use it.
14866 (customize-face, customize-face-other-window): Likewise.
14867 (custom-buffer-create-other-window): Use pop-to-buffer directly.
14868
14869 * net/rlogin.el:
14870 * net/telnet.el:
14871 * progmodes/gud.el: Don't set same-window-regexps.
14872
14873 * cmuscheme.el:
14874 * ielm.el:
14875 * shell.el:
14876 * mail/sendmail.el:
14877 * progmodes/inf-lisp.el: Don't set same-window-buffer-names.
14878
14879 2011-09-10 Juri Linkov <juri@jurta.org>
14880
14881 * isearch.el (isearch-edit-string): Remove obsolete mention of
14882 `C-w' (`isearch-yank-word-or-char') from docstring.
14883 (isearch-query-replace): Fix typo in docstring (bug#9466).
14884
14885 2011-09-10 Juri Linkov <juri@jurta.org>
14886
14887 * paren.el (show-paren-function): Don't show escaped parens.
14888 Let-bind `unescaped' to `t' when paren is not escaped. (Bug#9461)
14889
14890 2011-09-10 Eli Zaretskii <eliz@gnu.org>
14891
14892 * mail/sendmail.el (mml-to-mime, mml-attach-file)
14893 (mm-default-file-encoding): Remove autoload forms, they are
14894 replaced with autoload cookies in mml.el and mm-encode.el.
14895 (mail-add-attachment): New command.
14896 (mail-mode-map): Add a menu-bar item for mail-add-attachment.
14897 (mail-mode): Mention mail-insert-file and mail-add-attachment in
14898 the doc string.
14899 (mml-to-mime, mml-attach-file, mm-default-file-encoding): Declare.
14900
14901 2011-09-10 Reuben Thomas <rrt@sc3d.org>
14902
14903 * simple.el (count-words-region): Use buffer if there's no region
14904 (bug#9429).
14905
14906 2011-09-09 Juri Linkov <juri@jurta.org>
14907
14908 * wdired.el (wdired-change-to-wdired-mode): Set buffer-local
14909 `isearch-filter-predicate' to `wdired-isearch-filter-read-only'.
14910 (wdired-isearch-filter-read-only): New function. (Bug#6362)
14911
14912 2011-09-09 Alan Mackenzie <acm@muc.de>
14913
14914 * progmodes/cc-mode.el (awk-mode): Prevent `define-derived-mode'
14915 spuriously generating `awk-mode-syntax-table'. (Bug #9448).
14916
14917 2011-09-09 Eli Zaretskii <eliz@gnu.org>
14918
14919 Fix for Savannah bug#9392.
14920 * simple.el (mail-encode-mml): New defvar.
14921
14922 * mail/rmail.el (mail-encode-mml): Add a defvar.
14923 (rmail-enable-mime-composing): Default to t.
14924 (rmail-forward): Use MIME method of forwarding only if both
14925 rmail-enable-mime-composing and rmail-enable-mime are non-nil.
14926 Set mail-encode-mml non-nil if the MIME method was used.
14927
14928 * mail/sendmail.el (mml-to-mime): Add autoload form.
14929 (mail-encode-mml): Add a defvar.
14930 (mail-mode): Make mail-encode-mml buffer-local and initialize it
14931 to nil.
14932 (mail-send): If mail-encode-mml is non-nil, run the outgoing
14933 message through mml-to-mime, and reset mail-encode-mml to nil.
14934
14935 2011-09-09 Glenn Morris <rgm@gnu.org>
14936
14937 * woman.el (woman-if-body): When processing an .el block,
14938 do not delete the next .el block as well. (Bug#9447)
14939 (woman-special-characters): Add oq, cq, and hy characters.
14940
14941 2011-09-08 Martin Rudalics <rudalics@gmx.at>
14942
14943 * window.el (window-deletable-p): Make sure window is live before
14944 invoking window-prev-buffers.
14945
14946 2011-09-08 Leo Liu <sdl.web@gmail.com>
14947
14948 * net/rcirc.el (rcirc-cmd-invite): New rcirc command. (Bug#9453)
14949
14950 2011-09-08 Juri Linkov <juri@jurta.org>
14951
14952 * progmodes/compile.el (compilation-environment): Make it
14953 a defcustom (bug#8340).
14954
14955 2011-09-08 Martin Rudalics <rudalics@gmx.at>
14956
14957 * window.el (frame-auto-delete): Rename to window-auto-delete.
14958 Make it control auto-deletion of windows and/or frames.
14959 (window-deletable-p): New argument FORCE. Rewrite conditions
14960 for deleting window/frame. (Bug#9419)
14961 (switch-to-prev-buffer, replace-buffer-in-windows, quit-window):
14962 Rewrite handling of case when window/frame can be deleted.
14963 (delete-windows-on): Call window-deletable-p with new FORCE
14964 argument t. (Bug#9456)
14965
14966 2011-09-07 Chong Yidong <cyd@stupidchicken.com>
14967
14968 * help-mode.el (help-mode): Restore autoload.
14969
14970 2011-09-07 Juri Linkov <juri@jurta.org>
14971
14972 * progmodes/compile.el (compilation-start): Let-bind `thisenv' to
14973 `compilation-environment'. Set buffer-local
14974 `compilation-environment' to `thisenv' later after (funcall mode).
14975 (Bug#8340)
14976
14977 * vc/vc-git.el (vc-git-grep): Remove --no-color. (Bug#9408)
14978 (vc-git-grep): Prepend "PAGER=" to `compilation-environment'
14979 instead of replacing its value. (Bug#8340)
14980
14981 2011-09-07 Juri Linkov <juri@jurta.org>
14982
14983 * progmodes/grep.el (grep-regexp-alist): Calculate column positions
14984 based on text properties put by `grep-filter' instead of matching
14985 escape sequences.
14986 (grep-mode): Set buffer-local `compilation-error-screen-columns'
14987 to the value of `grep-error-screen-columns' (bug#9438).
14988
14989 2011-09-07 Juri Linkov <juri@jurta.org>
14990
14991 * simple.el (next-error-highlight, next-error-highlight-no-select):
14992 Doc fix (bug#9432).
14993
14994 2011-09-07 OKAZAKI Tetsurou <okazaki.tetsurou@gmail.com> (tiny change)
14995
14996 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
14997 Check for null c-opt-block-decls-with-vars-key. (Bug#9443)
14998
14999 2011-09-07 Leo Liu <sdl.web@gmail.com>
15000
15001 * net/rcirc.el (rcirc-mode): Conditionally initialize
15002 rcirc-input-ring.
15003
15004 2011-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
15005
15006 * emacs-lisp/find-func.el (find-function-C-source): Only set
15007 find-function-C-source-directory after checking that we found a source
15008 file there (bug#9440).
15009
15010 2011-09-06 Alan Mackenzie <acm@muc.de>
15011
15012 * isearch.el (isearch-other-meta-char): Wherever a key list is
15013 unread, "unread" the prefix arg, too. This fixes bug #8901.
15014
15015 2011-09-05 Oleksandr Gavenko <gavenkoa@gmail.com> (tiny change)
15016
15017 * progmodes/grep.el (rgrep): Add "-type d" (bug#9414).
15018
15019 2011-09-05 Juri Linkov <juri@jurta.org>
15020
15021 * progmodes/grep.el (grep-process-setup): Fix comments (bug#8084).
15022
15023 2011-09-05 Juri Linkov <juri@jurta.org>
15024
15025 * progmodes/grep.el (grep-filter): Avoid incomplete processing by
15026 keeping point where processing of grep matches begins, and
15027 continue to delete remaining escape sequences from the same point.
15028 (grep-filter): Make leading zero optional in "0?1;31m" because
15029 git-grep emits "\033[1;31m" escape sequences unlike expected
15030 "\033[01;31m" as GNU Grep does (bug#9408).
15031 (grep-process-setup): Replace obsolete "ml=" with newer "sl=".
15032
15033 2011-09-05 Juri Linkov <juri@jurta.org>
15034
15035 * subr.el (y-or-n-p): Capitalize "yes".
15036
15037 2011-09-04 Michael Albinus <michael.albinus@gmx.de>
15038
15039 * net/tramp.el (top): Require 'shell. Use `tramp-unload-hook' but
15040 `tramp-cache-unload-hook' where appropriate.
15041 (tramp-methods): Rename `tramp-remote-sh' to
15042 `tramp-remote-shell'. Add `tramp-remote-shell-args'.
15043 (tramp-handle-shell-command): New defun, moved from tramp-sh.el.
15044
15045 * net/tramp-sh.el (top): Don't require 'shell.
15046 (tramp-methods): Add `tramp-remote-shell' and
15047 `tramp-remote-shell-args' entries.
15048 (tramp-sh-file-name-handler-alist): Use `tramp-handle-shell-command'.
15049 (tramp-sh-handle-shell-command): Remove.
15050 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
15051 Use `tramp-remote-shell'.
15052
15053 2011-09-03 Chong Yidong <cyd@stupidchicken.com>
15054
15055 * mail/sendmail.el (sendmail-query-once-function): Delete.
15056 (sendmail-query-once): Save directly to send-mail-function.
15057 Update message-send-mail-function too.
15058
15059 * mail/smtpmail.el (smtpmail-try-auth-methods): Clarify prompt.
15060
15061 2011-09-03 Christoph Scholtes <cschol2112@googlemail.com>
15062
15063 * progmodes/python.el (python-mode-map): Use correct function to
15064 start python interpreter from menu-bar (as reported by Geert
15065 Kloosterman).
15066 (inferior-python-mode-map): Fix typo.
15067 (python-shell-map): Remove.
15068
15069 2011-09-03 Deniz Dogan <deniz@dogan.se>
15070
15071 * net/rcirc.el (rcirc-print): Simplify code for
15072 rcirc-scroll-show-maximum-output. There is no need to walk
15073 through all windows to find the right one.
15074
15075 2011-09-03 Christoph Scholtes <cschol2112@googlemail.com>
15076
15077 * help.el (help-return-method): Doc fix.
15078
15079 2011-09-03 Martin Rudalics <rudalics@gmx.at>
15080
15081 * window.el (window-deletable-p): Don't return a non-nil value
15082 when there's a buffer that was shown in the window before.
15083 (Bug#9419)
15084 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
15085 Set window's previous buffers to nil.
15086
15087 2011-09-03 Eli Zaretskii <eliz@gnu.org>
15088
15089 * mail/rmailmm.el (rmail-mime-insert-tagline): Insert an extra
15090 newline before and after the tag line, so it doesn't interfere
15091 with determining the paragraph direction of bidirectional text.
15092
15093 2011-09-03 Leo Liu <sdl.web@gmail.com>
15094
15095 * files.el (find-file-not-true-dirname-list): Remove. (Bug#9422)
15096
15097 2011-09-02 Chong Yidong <cyd@stupidchicken.com>
15098
15099 * window.el (pop-to-buffer-1, pop-to-buffer-same-window): Delete.
15100 (pop-to-buffer): Change interactive spec. Pass second argument
15101 directly to display-buffer.
15102 (display-buffer): Fix interactive spec. Use functionp to
15103 distinguish between a function and a list of functions.
15104
15105 * abbrev.el (edit-abbrevs):
15106 * arc-mode.el (archive-extract):
15107 * autoinsert.el (auto-insert):
15108 * bookmark.el (bookmark-bmenu-list):
15109 * files.el (find-file):
15110 * view.el (view-buffer):
15111 * progmodes/compile.el (compilation-goto-locus):
15112 * textmodes/bibtex.el (bibtex-initialize): Use switch-to-buffer.
15113
15114 2011-09-02 Chong Yidong <cyd@stupidchicken.com>
15115
15116 * window.el (display-buffer-alist): Doc fix.
15117 (display-buffer): Add docstring. Don't treat
15118 display-buffer-default specially.
15119 (display-buffer-reuse-selected-window)
15120 (display-buffer-same-window, display-buffer-maybe-same-window)
15121 (display-buffer-reuse-window, display-buffer-pop-up-frame)
15122 (display-buffer-pop-up-window)
15123 (display-buffer-reuse-or-pop-window)
15124 (display-buffer-use-some-window): New functions.
15125 (display-buffer-default-action): Use them.
15126 (display-buffer-default): Delete.
15127 (pop-to-buffer-1): Fix choice of actions.
15128
15129 2011-09-02 Stefan Monnier <monnier@iro.umontreal.ca>
15130
15131 * minibuffer.el (completion--insert-strings): Don't get confused by
15132 completion entries that end with an LF char.
15133
15134 2011-09-01 Eli Zaretskii <eliz@gnu.org>
15135
15136 * window.el (frame-auto-delete, window-deletable-p): Doc fix.
15137
15138 2011-09-01 Chong Yidong <cyd@stupidchicken.com>
15139
15140 * window.el (display-buffer): Restore interactive spec.
15141 (display-buffer-same-window, display-buffer-other-window):
15142 New functions.
15143 (pop-to-buffer-1): New function. Use the above.
15144 (pop-to-buffer, pop-to-buffer-same-window): Use it.
15145 (pop-to-buffer-other-window, pop-to-buffer-other-frame): Delete.
15146
15147 * view.el (view-buffer-other-window, view-buffer-other-frame):
15148 Just use pop-to-buffer.
15149
15150 2011-09-01 Thierry Volpiatto <thierry.volpiatto@gmail.com>
15151
15152 * vc/vc-rcs.el (vc-rcs-responsible-p): Handle directories. (Bug#9391)
15153
15154 2011-09-01 Wilfred Hughes <wilfred@potatolondon.com> (tiny change)
15155
15156 * vc/vc-git.el (vc-git-grep): Use --no-color. (Bug#9408)
15157
15158 2011-08-31 Richard Stallman <rms@gnu.org>
15159
15160 * mail/rmail.el (rmail-epa-decrypt): Rewrite to take account
15161 of the separation of rmail-view-buffer from rmail-buffer.
15162 If you say no to "replace original", the decrypt is in the
15163 view buffer. If you say yes, the decrypt goes into the
15164 rmail buffer also.
15165
15166 2011-08-31 Martin Rudalics <rudalics@gmx.at>
15167
15168 * window.el (display-buffer-window): Rewrite doc-string.
15169 (display-buffer-record-window): New function.
15170 (display-buffer-macro-specifiers)
15171 (display-buffer-even-window-sizes, display-buffer-set-height)
15172 (display-buffer-set-width, display-buffer-in-window)
15173 (display-buffer-reuse-window, display-buffer-split-specifiers)
15174 (display-buffer-side-specifiers, display-buffer-split-window-1)
15175 (display-buffer-split-window, display-buffer-split-atom-window)
15176 (display-buffer-pop-up-window, display-buffer-pop-up-frame)
15177 (display-buffer-pop-up-side-window, display-buffer-in-side-window)
15178 (display-buffer-other-window-means-other-frame)
15179 (display-buffer-normalize-special)
15180 (display-buffer-normalize-default)
15181 (display-buffer-normalize-argument)
15182 (display-buffer-normalize-alist-1, display-buffer-normalize-alist)
15183 (display-buffer-normalize-specifiers, display-buffer-frame)
15184 (display-buffer-same-window, display-buffer-same-frame)
15185 (display-buffer-other-window)
15186 (display-buffer-same-frame-other-window)
15187 (display-buffer-other-frame, pop-to-buffer-same-window)
15188 (pop-to-buffer-same-frame, pop-to-buffer-other-window)
15189 (pop-to-buffer-same-frame-other-window, pop-to-buffer-other-frame)
15190 (switch-to-buffer-same-frame)
15191 (switch-to-buffer-other-window-same-frame)
15192 (display-buffer-alist-of-strings-p, display-buffer-alist-add)
15193 (display-buffer-alist-set-1, display-buffer-alist-set-2)
15194 (display-buffer-alist-set): Remove.
15195 (display-buffer-function, special-display-buffer-names)
15196 (special-display-regexps, special-display-function):
15197 In doc-string refer to display-buffer-window and quit-restore
15198 parameter.
15199 (pop-up-frame-alist, pop-up-frame-function, special-display-p)
15200 (special-display-frame-alist, special-display-popup-frame)
15201 (same-window-buffer-names, same-window-regexps, same-window-p)
15202 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
15203 (split-window-preferred-function, split-height-threshold)
15204 (split-width-threshold, window-splittable-p)
15205 (split-window-sensibly, window--try-to-split-window)
15206 (window--frame-usable-p, even-window-heights)
15207 (window--even-window-heights, window--display-buffer-1)
15208 (window--display-buffer-2, display-buffer-other-frame):
15209 Restore old Emacs 23 code, order and doc-strings where applicable.
15210 (display-buffer-default, display-buffer-assq-regexp): New functions.
15211 (display-buffer-alist): Rewrite doc-string.
15212 (display-buffer-default-action)
15213 (display-buffer-overriding-action): New variables.
15214 (display-buffer, switch-to-buffer): Rewrite.
15215 (pop-to-buffer): Restore Emacs 23 behavior but use
15216 window-normalize-buffer-to-display.
15217 (switch-to-buffer-other-window, switch-to-buffer-other-frame):
15218 Restore Emacs 23 behavior but use
15219 window-normalize-buffer-to-switch-to.
15220 (pop-to-buffer-same-window): Rewrite.
15221 (pop-to-buffer-other-window, pop-to-buffer-other-frame):
15222 Rewrite using Emacs 23 options.
15223
15224 2011-08-31 Michael Albinus <michael.albinus@gmx.de>
15225
15226 * net/tramp.el (tramp-root-regexp): Remove.
15227 (tramp-completion-file-name-regexp-unified)
15228 (tramp-completion-file-name-regexp-separate)
15229 (tramp-completion-file-name-regexp-url): Don't use leading volume
15230 letter on w32 systems. (Bug#5303, Bug#9311)
15231 (tramp-drop-volume-letter): Simplify definition.
15232 Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
15233
15234 2011-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
15235
15236 * subr.el (event-modifiers): Fix "missing modifier" part of docstring
15237 (bug#9356).
15238
15239 2011-08-30 Reuben Thomas <rrt@sc3d.org> (tiny change)
15240
15241 * vc/pcvs-defs.el (cvs-find-file-and-jump): Docstring typo (bug#9369).
15242
15243 2011-08-29 Juri Linkov <juri@jurta.org>
15244
15245 * isearch.el (isearch-done): Don't display message "Mark saved"
15246 when arg `edit' is non-nil to prevent its flicker in the echo area.
15247
15248 2011-08-28 Chong Yidong <cyd@stupidchicken.com>
15249
15250 * emacs-lisp/package.el (package-menu-mark-delete): Allow marking
15251 obsolete packages for deletion.
15252
15253 2011-08-28 Christoph Scholtes <cschol2112@googlemail.com>
15254
15255 * help-mode.el (help-mode-map): Add special-mode-map to parent.
15256 (help-mode): Derive help-mode from special-mode. Don't invoke
15257 view-mode from help-mode.
15258 (help-xref-override-view-map): Remove.
15259 (help-make-xrefs): Remove minor-mode-overriding-map-alist since
15260 view-mode is not used anymore.
15261
15262 2011-08-28 Chong Yidong <cyd@stupidchicken.com>
15263
15264 * server.el (server-port): Doc fix.
15265
15266 * cus-theme.el (custom-theme-choose-mode): Inherit from
15267 special-mode (Bug#9124).
15268 (custom-theme-choose-mode-map): Add special-mode to parent.
15269
15270 2011-08-28 Alan Mackenzie <acm@muc.de>
15271
15272 * progmodes/cc-fonts.el
15273 (c-make-font-lock-BO-decl-search-function): New function.
15274 (c-basic-matchers-after - "Fontify the clauses after various
15275 keywords"): Extract the three keyword lists for the 3 erroneous
15276 constructs from the list of four, and use the new function above
15277 in place of an old one.
15278
15279 2011-08-28 Deniz Dogan <deniz@dogan.se>
15280
15281 * net/rcirc.el (rcirc-insert-prev-input)
15282 (rcirc-insert-next-input): Remove unused argument.
15283
15284 2011-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
15285
15286 * shell.el (shell-parse-pcomplete-arguments): Unquote args (bug#9160).
15287
15288 2011-08-27 Alan Mackenzie <acm@muc.de>
15289
15290 * progmodes/cc-menus.el (cc-imenu-c++-generic-expression): Make it
15291 handle function pointer parameters properly.
15292
15293 2011-08-27 Martin Rudalics <rudalics@gmx.at>
15294
15295 * window.el (display-buffer-reuse-window): Fix case where
15296 selected window was reused with non-nil OTHER-WINDOW argument.
15297 (Bug#9381)
15298
15299 2011-08-27 Deniz Dogan <deniz@dogan.se>
15300
15301 * net/rcirc.el (rcirc-check-auth-status): Adding support for
15302 oftc's NickServ messages.
15303
15304 2011-08-27 Glenn Morris <rgm@gnu.org>
15305
15306 * saveplace.el (save-place-limit): Make it finite. (Bug#9352)
15307
15308 2011-08-26 Chong Yidong <cyd@stupidchicken.com>
15309
15310 * emacs-lisp/package.el (package-install): Call package-initialize
15311 if called interactively.
15312
15313 2011-08-26 Leo Liu <sdl.web@gmail.com>
15314
15315 * emacs-lisp/cl-macs.el (defstruct): Fix format. (Bug#9357)
15316
15317 2011-08-25 Juri Linkov <juri@jurta.org>
15318
15319 * isearch.el (isearch-occur): Let-bind `search-spaces-regexp' to
15320 `search-whitespace-regexp' (bug#9364).
15321
15322 2011-08-25 Juri Linkov <juri@jurta.org>
15323
15324 * isearch.el (isearch-edit-string): Let-bind `search-ring' and
15325 `regexp-search-ring' to their global values to protect from
15326 updating by `read-from-minibuffer' (bug#9185).
15327
15328 2011-08-25 Juri Linkov <juri@jurta.org>
15329
15330 * textmodes/ispell.el (ispell-command-loop): Add newline
15331 at the end of the "Use option `i'..." line.
15332
15333 2011-08-25 Juri Linkov <juri@jurta.org>
15334
15335 * battery.el (display-battery-mode): If `battery-status-function'
15336 or `battery-mode-line-format' is nil, display the message and set
15337 `display-battery-mode' to nil (bug#9363).
15338
15339 2011-08-25 Eli Zaretskii <eliz@gnu.org>
15340
15341 * buff-menu.el (Buffer-menu-buffer+size): Remove calls to
15342 bidi-string-mark-left-to-right; they are unnecessary now.
15343
15344 2011-08-25 Deniz Dogan <deniz@dogan.se>
15345
15346 * net/quickurl.el: Documentation typo fixes.
15347
15348 2011-08-25 Chong Yidong <cyd@stupidchicken.com>
15349
15350 * window.el (bury-buffer, quit-window): Use bury-buffer-internal.
15351
15352 2011-08-25 Glenn Morris <rgm@gnu.org>
15353
15354 * emacs-lisp/derived.el (define-derived-mode): Doc fix.
15355
15356 * mail/smtpmail.el (smtpmail-smtp-user): Add version: tag.
15357 (smtpmail-via-smtp): Handle nil response from smtp.
15358
15359 2011-08-24 Juri Linkov <juri@jurta.org>
15360
15361 * proced.el (proced-marked): Inherit from `error' instead of
15362 `font-lock-warning-face'.
15363
15364 * ibuffer.el (ibuffer-marked-face): Change default face from
15365 `font-lock-warning-face' to `warning'.
15366 (ibuffer-deletion-face): Change default face from
15367 `font-lock-type-face' to `error'.
15368
15369 * battery.el (battery-update): Use the face `error' instead of
15370 `font-lock-warning-face' (bug#6117).
15371
15372 2011-08-24 Juri Linkov <juri@jurta.org>
15373
15374 * faces.el (success): Change face color from "Green3" to
15375 "ForestGreen" on light background (bug#9353).
15376
15377 2011-08-24 Chong Yidong <cyd@stupidchicken.com>
15378
15379 * window.el (quit-window): Rename from quit-restore-window.
15380 Use same arglist as old quit-window.
15381 (frame-auto-delete): Doc fix.
15382
15383 * view.el (view-mode-exit): Use quit-window.
15384
15385 2011-08-24 Juri Linkov <juri@jurta.org>
15386
15387 * isearch.el (isearch-ring-adjust1): Start visiting previous
15388 search strings from the index 0 (-1 + 1) instead of 1 (0 + 1).
15389 (isearch-repeat, isearch-edit-string): Call `isearch-ring-adjust1'
15390 for empty search string (when the last search string is reused
15391 automatically) to adjust the isearch ring to the last element and
15392 prepare the correct index for further M-p commands (bug#9185).
15393
15394 2011-08-24 Kenichi Handa <handa@m17n.org>
15395
15396 * international/ucs-normalize.el: If decomposition property of
15397 CHAR is the default one (i.e. a list of CHAR itself), treat it as
15398 nil.
15399 (nfd, nfkd): Likewise.
15400
15401 2011-08-24 Stefan Monnier <monnier@iro.umontreal.ca>
15402
15403 * mpc.el (mpc--proc-filter): Don't signal mpc-proc-error since signals
15404 from process filters aren't reliably transmitted to the surrounding
15405 accept-process-output.
15406 (mpc-proc-check): New function.
15407 (mpc-proc-sync): Use it (bug#8293)
15408
15409 2011-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
15410
15411 * emacs-lisp/eieio.el (eieio-defmethod, eieio-defgeneric):
15412 Add compatibility functions (bug#9313).
15413
15414 2011-08-23 Eli Zaretskii <eliz@gnu.org>
15415
15416 * cus-start.el (all): Add entry for bidi-paragraph-direction.
15417
15418 * international/uni-bidi.el: Regenerate.
15419
15420 2011-08-23 Kenichi Handa <handa@m17n.org>
15421
15422 * international/charprop.el:
15423 * international/uni-bidi.el:
15424 * international/uni-category.el:
15425 * international/uni-combining.el:
15426 * international/uni-comment.el:
15427 * international/uni-decimal.el:
15428 * international/uni-decomposition.el:
15429 * international/uni-digit.el:
15430 * international/uni-lowercase.el:
15431 * international/uni-mirrored.el:
15432 * international/uni-name.el:
15433 * international/uni-numeric.el:
15434 * international/uni-old-name.el:
15435 * international/uni-titlecase.el:
15436 * international/uni-uppercase.el: Regenerate.
15437
15438 2011-08-23 Martin Rudalics <rudalics@gmx.at>
15439
15440 * help.el (help-window-setup): Fix message displayed when other
15441 window is reused. (Bug#9341)
15442
15443 2011-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
15444
15445 * shell.el (shell-completion-vars): Set pcomplete-arg-quote-list.
15446 * pcomplete.el (pcomplete-quote-argument): Fix thinko (bug#9161).
15447
15448 * pcomplete.el (pcomplete-parse-comint-arguments): Fix inf-loop.
15449 Mark obsolete.
15450 * shell.el (shell-parse-pcomplete-arguments): New function.
15451 (shell-completion-vars): Use it instead (bug#9160).
15452
15453 2011-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
15454
15455 * progmodes/sh-script.el (sh-maybe-here-document): Disable magic in
15456 strings and comments (bug#9333).
15457
15458 * emacs-lisp/debug.el (debug-arglist): New function.
15459 (debug-convert-byte-code): Use it. Handle lexical byte-codes.
15460 (debug-on-entry-1): Handle interpreted closures (bug#9120).
15461
15462 2011-08-22 Juri Linkov <juri@jurta.org>
15463
15464 * progmodes/compile.el (compilation-mode-font-lock-keywords):
15465 Revert regexp that highlights output switches to its old
15466 pre-2010-10-28 value and remove one `?' from it (bug#9319).
15467
15468 * progmodes/grep.el (grep-process-setup): Use `buffer-modified-p'
15469 to check for empty output (bug#9226).
15470
15471 2011-08-22 Chong Yidong <cyd@stupidchicken.com>
15472
15473 * progmodes/scheme.el (scheme-mode-syntax-table): Don't use
15474 symbol-constituent as the default, as that stops font-lock from
15475 working properly (Bug#8843).
15476
15477 2011-08-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
15478
15479 * mail/smtpmail.el (smtpmail-via-smtp): Only bind
15480 `coding-system-for-*' around the process open call to avoid
15481 auth-source side effects.
15482 (smtpmail-try-auth-methods): Expand the secret password.
15483 (smtpmail-query-smtp-server): Allow `quit'-ing out in case the
15484 probe hangs.
15485
15486 2011-08-21 Chong Yidong <cyd@stupidchicken.com>
15487
15488 * term.el (term-mouse-paste): Yank primary selection (Bug#6845).
15489
15490 * emacs-lisp/find-func.el (find-function-noselect): New arg
15491 lisp-only.
15492
15493 * emacs-lisp/edebug.el (edebug-instrument-function): Use it to
15494 signal an error for built-in functions (Bug#6664).
15495
15496 2011-08-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
15497
15498 * mail/smtpmail.el (smtpmail-smtp-user): New variable.
15499 (smtpmail-try-auth-methods): Use it.
15500
15501 2011-08-21 Chong Yidong <cyd@stupidchicken.com>
15502
15503 * font-lock.el (font-lock-fontify-region)
15504 (font-lock-unfontify-region, font-lock-default-fontify-buffer)
15505 (font-lock-default-unfontify-buffer)
15506 (font-lock-default-fontify-region)
15507 (font-lock-default-unfontify-region): Add docstrings (Bug#8624).
15508
15509 * progmodes/compile.el (compilation-error-properties):
15510 Fix confusion between file struct and message struct (Bug#9319).
15511 (compilation-error-regexp-alist-alist): Fix 2011-05-09 change to
15512 `ant' regexp.
15513
15514 * net/browse-url.el (browse-url-firefox): Don't call
15515 browse-url-firefox-sentinel unless using -remote (Bug#9328).
15516
15517 2011-08-20 Glenn Morris <rgm@gnu.org>
15518
15519 * tutorial.el (help-with-tutorial): Avoid an error on short screens.
15520
15521 * tutorial.el (tutorial--default-keys): Update some default bindings.
15522
15523 * files.el (hack-local-variables): Fully ignore case for "mode:".
15524
15525 2011-08-20 Alan Mackenzie <acm@muc.de>
15526
15527 Resolve invalid use of a regexp in regexp-opt.
15528
15529 * progmodes/cc-fonts.el (c-complex-decl-matchers): Add in special
15530 detection for a java annotation.
15531
15532 * progmodes/cc-engine.el (c-forward-decl-or-cast-1): Add in special
15533 detection for a java annotation.
15534
15535 * progmodes/cc-langs.el (c-prefix-spec-kwds-re): Remove the special
15536 handling for java.
15537 (c-modifier-kwds): Remove the regexp "@[A-za-z0-9]+".
15538
15539 2011-08-20 Chong Yidong <cyd@stupidchicken.com>
15540
15541 * startup.el (normal-top-level-add-subdirs-to-load-path): Doc fix
15542 (Bug#9274).
15543
15544 2011-08-20 Alan Mackenzie <acm@muc.de>
15545
15546 Fontify CPP expressions correctly when starting in the middle of
15547 such a construct. Mainly for when jit-lock etc. starts a chunk
15548 here.
15549
15550 * progmodes/cc-fonts.el (c-font-lock-context): New buffer local
15551 variable.
15552 (c-make-font-lock-search-form): New function, extracted from
15553 c-make-font-lock-search-function.
15554 (c-make-font-lock-search-function): Use the above function.
15555 (c-make-font-lock-context-search-function): New function.
15556 (c-cpp-matchers): Enhance the preprocessor expression case with
15557 the above function
15558 (c-font-lock-complex-decl-prepare): Test for being in a CPP form
15559 which takes an expression.
15560
15561 * progmodes/cc-langs.el (c-cpp-expr-intro-re): New lang-variable.
15562
15563 2011-08-20 Martin Rudalics <rudalics@gmx.at>
15564
15565 * window.el (display-buffer-reuse-window)
15566 (display-buffer-pop-up-window): Don't reuse or split a side
15567 window.
15568
15569 2011-08-19 Glenn Morris <rgm@gnu.org>
15570
15571 * files.el (hack-local-variables-prop-line, hack-local-variables):
15572 Downcase "Mode:". (Bug#9331)
15573
15574 2011-08-18 Chong Yidong <cyd@stupidchicken.com>
15575
15576 * international/characters.el: Add L and R categories.
15577
15578 * subr.el (bidi-string-mark-left-to-right): Rename from
15579 string-mark-left-to-right. Use category search.
15580
15581 * buff-menu.el (Buffer-menu-buffer+size): Callers changed.
15582
15583 2011-08-18 Juri Linkov <juri@jurta.org>
15584
15585 * faces.el (error, warning, success): New faces with definitions
15586 copied from old default values of `font-lock-warning-face',
15587 `compilation-warning', `compilation-info' (bug#6117).
15588
15589 * font-lock.el (font-lock-warning-face): Inherit from `error'.
15590
15591 * progmodes/compile.el (compilation-error): Inherit from `error'.
15592 (compilation-warning): Inherit from `warning'.
15593 (compilation-info): Inherit from `success'.
15594
15595 * dired.el (dired-marked): Inherit from `warning'.
15596 (dired-flagged): Inherit from `error'.
15597
15598 2011-08-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
15599
15600 * mail/smtpmail.el (auth-source): Require to avoid problems with
15601 binding variables (bug#9298). Also clean up some unused
15602 autoloads.
15603
15604 * net/network-stream.el (network-stream-open-starttls):
15605 Support using starttls.el without using gnutls-cli.
15606
15607 2011-08-17 Juri Linkov <juri@jurta.org>
15608
15609 * progmodes/grep.el (rgrep): Handle the case when
15610 `grep-find-command' is a cons cell (bug#9278).
15611
15612 2011-08-17 Martin Rudalics <rudalics@gmx.at>
15613
15614 * window.el (display-buffer-pop-up-frame): Run frame creation
15615 function with BUFFER current (as special-display-popup-frame
15616 does). Reported by Drew Adams.
15617
15618 2011-08-17 Daiki Ueno <ueno@unixuser.org>
15619
15620 * epa-mail.el: Simplify GnuPG group expansion using
15621 epg-expand-group.
15622 (epa-mail-group-alist, epa-mail-group-modtime)
15623 (epa-mail-gnupg-conf-file, epa-mail-parse-groups)
15624 (epa-mail-sync-groups, epa-mail-expand-recipient-1)
15625 (epa-mail-expand-recipients-2, epa-mail-expand-recipients):
15626 Remove.
15627
15628 2011-08-16 Feng Li <fengli@gmail.com> (tiny change)
15629
15630 * calc/calc-ext.el (math-defintegral-2): Remove nested backquote.
15631
15632 2011-08-16 Alan Mackenzie <acm@muc.de>
15633
15634 * progmodes/cc-engine.el (c-state-cache-non-literal-place):
15635 Correct, to avoid the inside of macros.
15636
15637 2011-08-16 Richard Stallman <rms@gnu.org>
15638
15639 * epa-mail.el: Handle GnuPG group definitions.
15640 (epa-mail-group-alist, epa-mail-group-modtime)
15641 (epa-mail-gnupg-conf-file): New variables.
15642 (epa-mail-parse-groups, epa-mail-sync-groups)
15643 (epa-mail-expand-recipient-1, epa-mail-expand-recipients-2)
15644 (epa-mail-expand-recipients): New functions.
15645 (epa-mail-encrypt): Call epa-mail-expand-recipients.
15646
15647 * mail/rmail.el (rmail-epa-decrypt): New command.
15648
15649 * epa.el (epa-decrypt-region): New arg MAKE-BUFFER-FUNCTION.
15650 Don't bind buffer-read-only, just inhibit-read-only.
15651 (epa--find-coding-system-for-mime-charset): Fix the non-xemacs case.
15652 (epa-decrypt-armor-in-region): Make error message clearer.
15653
15654 2011-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
15655
15656 * minibuffer.el (completion-pcm--merge-completions): Don't merge "a1b"
15657 and "a2b" to "ab" for `prefix'.
15658
15659 2011-08-14 Chong Yidong <cyd@stupidchicken.com>
15660
15661 * ibuf-ext.el (ibuffer-filter-disable): New arg for deleting
15662 filter groups.
15663 (ibuffer-included-in-filter-p-1): Use it. Suggested by Rafaël
15664 Fourquet (Bug#8804).
15665
15666 2011-08-12 Juanma Barranquero <lekktu@gmail.com>
15667
15668 * startup.el (argi): Declare as global variable (bug#9275).
15669
15670 2011-08-12 Chong Yidong <cyd@stupidchicken.com>
15671
15672 * subr.el (string-mark-left-to-right): Search the entire string
15673 for RTL script, not just the terminating character. Doc fix.
15674
15675 2011-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
15676
15677 * progmodes/js.el (js-syntax-propertize, js-syntax-propertize-regexp):
15678 New function.
15679 (js--regexp-literal, js-syntax-propertize-function): Remove.
15680 (js-mode): Use js-syntax-propertize to handle multilines (bug#9183).
15681 (js-mode-map): Don't rebind electric keys.
15682 (js-insert-and-indent): Remove.
15683 (js-mode): Setup electric-layout and electric-indent instead.
15684
15685 * epa-file.el (epa-file-select-keys): Revert to nil default (bug#9280).
15686
15687 2011-08-12 Daiki Ueno <ueno@unixuser.org>
15688
15689 * epa.el (epa-progress-callback-function): Fix the logic of
15690 displaying progress.
15691 * epa-file.el (epa-file-insert-file-contents): Make progress
15692 display more user-friendly.
15693 (epa-file-write-region): Ditto.
15694
15695 2011-08-10 Chong Yidong <cyd@stupidchicken.com>
15696
15697 * subr.el (string-mark-left-to-right): New function.
15698
15699 * buff-menu.el (Buffer-menu-buffer+size): Remove LRM argument.
15700 Use string-mark-left-to-right.
15701 (list-buffers-noselect): Caller changed.
15702
15703 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
15704 Use string-mark-left-to-right.
15705 (tabulated-list-print): Recenter after moving point.
15706
15707 2011-08-10 Juri Linkov <juri@jurta.org>
15708
15709 * progmodes/grep.el (rgrep): Don't bind `process-connection-type'.
15710 This finishes incomplete reversion of 2011-06-30T01:09:13Z!larsi@gnus.org
15711 intended by 2011-07-06T15:49:19Z!larsi@gnus.org.
15712
15713 2011-08-09 Chong Yidong <cyd@stupidchicken.com>
15714
15715 * hi-lock.el (hi-lock-unface-buffer): Fix interactive spec
15716 (Bug#7554).
15717
15718 2011-08-09 Andreas Schwab <schwab@linux-m68k.org>
15719
15720 * xt-mouse.el (xterm-mouse-event-read): Try to recover the raw
15721 character. (Bug#6594)
15722
15723 2011-08-08 Chong Yidong <cyd@stupidchicken.com>
15724
15725 * image-dired.el: Don't use find-file for temporary work (Bug#7895).
15726 (image-dired--with-db-file): New macro.
15727 (image-dired-write-tags, image-dired-remove-tag)
15728 (image-dired-create-gallery-lists, image-dired-write-comments)
15729 (image-dired-get-comment, image-dired-mark-tagged-files)
15730 (image-dired-list-tags, image-dired-gallery-generate): Use it.
15731 (image-dired-gallery-generate): Use insert-file-contents.
15732
15733 * time.el (display-time-world-list, display-time-world-display):
15734 * time-stamp.el (time-stamp-string):
15735 * vc/add-log.el (add-change-log-entry): Use setenv instead of
15736 set-time-zone-rule (Bug#7337).
15737
15738 2011-08-08 Daiki Ueno <ueno@unixuser.org>
15739
15740 * epg.el (epg--status-KEYEXPIRED, epg--status-KEYREVOKED): Fix typo.
15741 (epg-error-to-string, epg-errors-to-string): New function.
15742 (epg-wait-for-completion): Reverse errors list.
15743 (epg--check-error-for-decrypt, epg-sign-file, epg-sign-string)
15744 (epg-encrypt-file, epg-encrypt-string, epg-export-keys-to-file)
15745 (epg--import-keys-1, epg-receive-keys, epg-delete-keys)
15746 (epg-sign-keys, epg-generate-key-from-file)
15747 (epg-generate-key-from-string): Format errors by using
15748 epg-errors-to-string (bug#9255).
15749 (epg--status-INV_SGNR, epg--status-NO_SGNR): New status handler.
15750
15751 2011-08-07 Juri Linkov <juri@jurta.org>
15752
15753 * faces.el (list-faces-display): Remove extra angle bracket
15754 from `help-mode-map'.
15755
15756 * info.el (Info-history-toc-nodes): Doc fix.
15757
15758 * longlines.el (longlines-mode): Doc fix.
15759
15760 2011-08-05 Stefan Monnier <monnier@iro.umontreal.ca>
15761
15762 * progmodes/js.el (js--regexp-literal): Accept regexps at the beginning
15763 of statements and in a few more cases (bug#9183).
15764
15765 * emacs-lisp/cl-macs.el (cl--make-usage-var, cl--make-usage-args):
15766 New functions.
15767 (cl-transform-lambda): Use them (bug#9239).
15768
15769 2011-08-05 Martin Rudalics <rudalics@gmx.at>
15770
15771 * window.el (display-buffer-same-window)
15772 (display-buffer-same-frame, display-buffer-other-window)
15773 (pop-to-buffer-same-window, pop-to-buffer-same-frame)
15774 (pop-to-buffer-other-window)
15775 (pop-to-buffer-same-frame-other-window)
15776 (pop-to-buffer-other-frame): Make them defuns.
15777 (switch-to-buffer): Don't set LABEL argument of pop-to-buffer.
15778
15779 2011-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
15780
15781 * subr.el (make-composed-keymap): Move from C. Change calling
15782 convention, and improve docstring to bring attention to a subtle point.
15783 * minibuffer.el (completing-read-default): Adjust accordingly.
15784
15785 2011-08-03 Michael Albinus <michael.albinus@gmx.de>
15786
15787 * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell)
15788 (tramp-open-shell): Use `tramp-shell-quote-argument'.
15789
15790 * net/trampver.el: Update release number.
15791
15792 2011-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
15793
15794 * progmodes/sh-script.el (sh-font-lock-paren): Don't mistake "main" for
15795 "in" (bug#9190).
15796
15797 2011-08-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
15798
15799 * mail/sendmail.el (sendmail-query-once): Restore the current
15800 buffer after querying (bug#9074).
15801
15802 * dired.el (dired-flagged): Use different faces for marked and
15803 flagged files (bug#6117).
15804
15805 * emacs-lisp/cl-macs.el (dolist): Mention that there's a nil block
15806 (bug#4433).
15807
15808 * ido.el (ido-mode): Switch off the message if called
15809 non-interactively.
15810
15811 * mail/smtpmail.el (smtpmail-query-smtp-server): Try port 25
15812 before 587, since it appears that that's more likely to work for
15813 more people.
15814
15815 * cus-edit.el (custom-file): When running under emacs -q, always
15816 refuse to save the customizations, even if the .emacs file doesn't
15817 exist.
15818
15819 * info.el: Remove the `Info-beginning-of-buffer' function
15820 (bug#8325).
15821
15822 * net/network-stream.el (network-stream-open-starttls):
15823 Use `starttls-available-p' to see whether starttls.el can be used.
15824
15825 2011-08-01 Martin Rudalics <rudalics@gmx.at>
15826
15827 * window.el (display-buffer-in-window): Don't set dedicated status
15828 of window here (Bug#9215).
15829 (display-buffer-pop-up-window, display-buffer-pop-up-frame)
15830 (display-buffer-pop-up-side-window)
15831 (display-buffer-in-side-window): Set dedicated status of window here.
15832
15833 2011-08-01 Stefan Monnier <monnier@iro.umontreal.ca>
15834
15835 * emacs-lisp/package.el (package-generate-autoloads): Load autoloads
15836 before binding generated-autoload-file.
15837
15838 2011-08-01 Deniz Dogan <deniz@dogan.se>
15839
15840 * net/rcirc.el (rcirc-handler-333): Clarify docstring.
15841
15842 2011-07-30 Michael Albinus <michael.albinus@gmx.de>
15843
15844 Sync with Tramp 2.2.2.
15845
15846 * net/trampver.el: Update release number.
15847
15848 2011-07-30 Juri Linkov <juri@jurta.org>
15849
15850 * dired-aux.el (dired-touch-initial): Remove function.
15851 (dired-do-chxxx): For op-symbol `touch', set `initial' to the
15852 current time, and `default' to the last modification time of the
15853 current marked file (bug#6887).
15854
15855 2011-07-28 Jose E. Marchesi <jemarch@gnu.org>
15856
15857 * simple.el (goto-line): Use string-to-number to provide a
15858 numeric argument to read-number (bug#9163).
15859
15860 2011-07-27 Michael Albinus <michael.albinus@gmx.de>
15861
15862 * net/tramp-sh.el (tramp-maybe-send-script): Don't let-bind the
15863 connection process, it could be nil.
15864
15865 2011-07-27 Leo Liu <sdl.web@gmail.com>
15866
15867 Simplify url handling in rcirc-mode.
15868
15869 * net/rcirc.el (rcirc-browse-url-map, rcirc-browse-url-at-point)
15870 (rcirc-browse-url-at-mouse): Remove.
15871 * net/rcirc.el (rcirc-markup-urls): Use `make-button'.
15872
15873 2011-07-26 Alan Mackenzie <acm@muc.de>
15874
15875 Fontify bitfield declarations properly.
15876
15877 * progmodes/cc-langs.el (c-has-bitfields): New lang variable.
15878 (c-symbol-chars): Now exported as a lang variable.
15879 (c-not-primitive-type-keywords): New lang variable.
15880
15881 * progmodes/cc-fonts.el (c-font-lock-declarations): Jump over the
15882 QT keyword "more" to prevent "more slots: ...." being spuriously
15883 parsed as a bitfield declaration.
15884
15885 * progmodes/cc-engine.el (c-beginning-of-statement-1):
15886 Refactor and enhance to handle bitfield declarations.
15887 (c-punctuation-in): New function.
15888 (c-forward-decl-or-cast-1): Enhance CASE 3 to handle bitfield
15889 declarations properly.
15890
15891 2011-07-26 Ulf Jasper <ulf.jasper@web.de>
15892
15893 * calendar/icalendar.el (icalendar--all-events): Take care of
15894 multiple vcalendars in a single file.
15895 (icalendar--convert-float-to-ical): Checkdoc fixes.
15896
15897 2011-07-25 Deniz Dogan <deniz@dogan.se>
15898
15899 * image.el (insert-image): Clarifying docstring.
15900
15901 2011-07-24 Michael Albinus <michael.albinus@gmx.de>
15902
15903 * net/tramp-sh.el (tramp-barf-unless-okay): Return the value of
15904 `tramp-send-command-and-check' if there is no error.
15905 (tramp-send-command-and-read): Suppress *all* errors if NOERROR.
15906
15907 2011-07-22 Alan Mackenzie <acm@muc.de>
15908
15909 Prevent cc-langs.elc being loaded at run time.
15910
15911 * progmodes/cc-mode.el: Remove two autoload forms which loaded
15912 cc-langs.
15913
15914 * progmodes/cc-langs.el (c-make-init-lang-vars-fun): Don't emit
15915 "(require 'cc-langs)". Quote a form so it will evaluate at
15916 (cc-mode's) compilation time.
15917
15918 2011-07-22 Michael Albinus <michael.albinus@gmx.de>
15919
15920 * net/tramp.el (tramp-file-name-handler): Avoid recursive
15921 loading. (Bug#9114)
15922
15923 2011-07-21 Martin Rudalics <rudalics@gmx.at>
15924
15925 * window.el (display-buffer-pop-up-window)
15926 (display-buffer-pop-up-side-window)
15927 (display-buffer-in-side-window): Call display-buffer-set-height
15928 and display-buffer-set-width after setting the new window's
15929 buffer so `fit-window-to-buffer' and friends work on the right buffer.
15930
15931 2011-07-20 Sam Steingold <sds@gnu.org>
15932
15933 * progmodes/etags.el (etags-file-of-tag, etags-tags-table-files)
15934 (etags-tags-included-tables): Call `convert-standard-filename' on
15935 the file names contained in TAGS so that windows Emacs can handle
15936 TAGS files created by cygwin ctags.
15937
15938 2011-07-20 Lars Magne Ingebrigtsen <larsi@gnus.org>
15939
15940 * proced.el (proced-update): Revert yesterday's bug#1779 patch,
15941 which apparently didn't work.
15942
15943 2011-07-19 Roland Winkler <winkler@gnu.org>
15944
15945 * proced.el (proced-send-signal): For *Marked Processes* buffer
15946 put point at beginning of buffer.
15947
15948 2011-07-19 Stephen Berman <stephen.berman@gmx.net>
15949
15950 * proced.el (proced-format): Make header lines align with the text
15951 (bug#1779).
15952
15953 2011-07-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
15954
15955 * view.el (view-buffer): Allow running in `special' modes if we're
15956 visiting a file (bug#8615).
15957
15958 2011-07-19 Martin Rudalics <rudalics@gmx.at>
15959
15960 * window.el (display-buffer-alist-of-strings-p)
15961 (display-buffer-alist-set-1, display-buffer-alist-set-2):
15962 New functions.
15963 (display-buffer-alist-set): Rewrite to handle Emacs 23 options
15964 more accurately.
15965
15966 2011-07-18 Alan Mackenzie <acm@muc.de>
15967
15968 Fontify declarators properly when, e.g., a jit-lock chunk begins
15969 inside a declaration.
15970
15971 * progmodes/cc-langs.el (c-symbol-chars): Correct a typo.
15972
15973 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
15974 New function.
15975 (c-complex-decl-matchers): Insert reference to
15976 c-font-lock-enclosing-decls.
15977
15978 * progmodes/cc-engine.el (c-backward-single-comment):
15979 (c-backward-comments): Bind open-paren-in-column-0-is-defun-start
15980 to nil around calls to (forward-comment -1).
15981
15982 2011-07-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
15983
15984 * image.el (put-image): Doc typo fix.
15985
15986 * progmodes/etags.el (tags-search): Doc typo fix.
15987
15988 * mail/smtpmail.el (smtpmail-via-smtp): Query the user for
15989 password if we get errors 550 to 554.
15990
15991 2011-07-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
15992
15993 * net/gnutls.el (gnutls-log-level): Remove.
15994
15995 * textmodes/fill.el (adaptive-fill-regexp): Include EN DASH as an
15996 indentation character (bug#6380).
15997
15998 * files.el (buffer-offer-save): Made permanently local (bug#6241).
15999
16000 * doc-view.el (doc-view-make-safe-dir): Rewrite the error message
16001 to clarify what the problem is (bug#4291).
16002
16003 * simple.el (current-kill): Clarify what
16004 `interprogram-paste-function' does (bug#7500).
16005 (auto-fill-mode): Document `auto-fill-function' in relation to
16006 `auto-fill-mode' (bug#2470).
16007
16008 2011-07-16 Lawrence Mitchell <wence@gmx.li>
16009
16010 * emacs-lisp/cl-macs.el (defstruct): Ignore argument to setf
16011 method if slot is read-only (bug#9035).
16012
16013 2011-07-16 Martin Rudalics <rudalics@gmx.at>
16014
16015 * frame.el (select-frame-set-input-focus): New argument NORECORD.
16016 * window.el (pop-to-buffer): Select window used even if it was
16017 selected before, see discussion of (Bug#8615), (Bug#6954).
16018 Pass argument NORECORD on to select-frame-set-input-focus.
16019
16020 2011-07-15 Glenn Morris <rgm@gnu.org>
16021
16022 * subr.el (read-char-choice): Allow quitting. (Bug#9001)
16023 Respect help-form.
16024
16025 2011-07-09 Lawrence Mitchell <wence@gmx.li>
16026
16027 * net/gnutls.el (gnutls-min-prime-bits): New variable.
16028 (gnutls-negotiate): Use it.
16029
16030 2011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
16031
16032 * net/gnutls.el (gnutls-negotiate):
16033 Upcase `gnutls-algorithm-priority'.
16034
16035 2011-07-15 Glenn Morris <rgm@gnu.org>
16036
16037 * jka-compr.el (jka-compr-verbose): Move from here...
16038 * jka-cmpr-hook.el (jka-compr-verbose): ... to here. (Bug#9090)
16039 Add missing :version tag.
16040 * info.el: No need to require jka-compr when compiling.
16041
16042 2011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
16043
16044 * net/gnutls.el (gnutls-algorithm-priority): New variable.
16045 (gnutls-negotiate): Use it.
16046
16047 * emacs-lisp/cl-macs.el (declare): Link to the "Declarations" node.
16048
16049 * info.el (Info-beginning-of-buffer): New command.
16050 (Info-mode-map): Use it instead of `beginning-of-buffer' to allow
16051 announcing `b' as the key (bug#8325).
16052 (Info-mode-menu): Use `Info-beginning-of-buffer' for consistency.
16053
16054 * emacs-lisp/cl-macs.el (declare): Doc string fix-up.
16055
16056 * international/mule-cmds.el
16057 (describe-specified-language-support): Make the error message
16058 clearer (bug#8905).
16059
16060 * emacs-lisp/cl-macs.el (declare): Add a doc string (bug#8690).
16061
16062 * isearch.el (isearch-barrier): Add a doc string, since it's
16063 mentioned in a function doc string (bug#8678).
16064
16065 2011-07-15 Martin Rudalics <rudalics@gmx.at>
16066
16067 * window.el (switch-to-buffer): Call pop-to-buffer with normalized
16068 buffer argument (Bug#9083) and self-identifying label argument.
16069
16070 2011-07-15 Glenn Morris <rgm@gnu.org>
16071
16072 * emacs-lisp/debug.el (debug): Doc fix. (Bug#8273)
16073
16074 2011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
16075
16076 * man.el (Man-fontify-manpage): Fix message when formatting the
16077 man page (bug#7929).
16078
16079 2011-07-14 Eli Zaretskii <eliz@gnu.org>
16080
16081 * buff-menu.el (Buffer-menu-buffer+size): Accept an additional
16082 argument LRM; if non-nil, append an invisible LRM character to the
16083 buffer name.
16084 (list-buffers-noselect): Call Buffer-menu-buffer+size with the
16085 last argument non-nil, when formatting buffer names.
16086 (Buffer-menu-mode, list-buffers-noselect): Force left-to-right
16087 paragraph direction.
16088
16089 2011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
16090
16091 * man.el (Man-bgproc-sentinel): Skip any arguments and only output
16092 the man page name (bug#7929).
16093
16094 * image.el (put-image): Mention the `put-image' overlay property
16095 (bug#7834).
16096
16097 * scroll-bar.el (set-scroll-bar-mode): Mention that
16098 `scroll-bar-mode' lists the values (bug#7772).
16099
16100 * image-mode.el (image-mode-fit-frame): Mention that it's a toggle
16101 command (bug#7729).
16102
16103 * rect.el (apply-on-rectangle): Return the point after the last
16104 operation.
16105 (string-rectangle): Go to the point after the last operation
16106 (bug#7522).
16107
16108 * printing.el (pr-toggle-region): Clarify the documentation
16109 slightly (bug#7493).
16110
16111 * time.el (display-time-update):
16112 Allow `display-time-mail-function' to return nil (bug#7158).
16113 Fix suggested by Detlev Zundel.
16114
16115 * vc/diff.el (diff): Clarify the order the file names are read
16116 (bug#7111).
16117
16118 * mouse.el (mouse-set-region): Link to `mouse-drag-copy-region' in
16119 the doc string (bug#7015).
16120
16121 * font-lock.el (font-lock-maximum-decoration): Mention what
16122 numeric levels mean (bug#6935).
16123
16124 * startup.el (initial-buffer-choice): Don't mention the `none'
16125 selection, which is against policy.
16126
16127 2011-07-14 Martin Rudalics <rudalics@gmx.at>
16128
16129 * window.el (display-buffer-normalize-special):
16130 Replace `dedicated' by `dedicate' to dedicate window (Bug#9072).
16131
16132 2011-07-14 Eli Zaretskii <eliz@gnu.org>
16133
16134 * subr.el (version<, version<=, version=): Mention "-CVS" and
16135 "-12345" alpha version numbers.
16136
16137 2011-07-14 Chong Yidong <cyd@stupidchicken.com>
16138
16139 * bindings.el: Add advertised binding for set-mark-command
16140 (Bug#5772).
16141
16142 2011-07-14 Chong Yidong <cyd@stupidchicken.com>
16143
16144 * bindings.el (mode-line-other-buffer):
16145 * bookmark.el (bookmark-bmenu-2-window):
16146 * bs.el (bs-cycle-next, bs-cycle-previous):
16147 * net/tramp-cmds.el (tramp-append-tramp-buffers): Revert to using
16148 switch-to-buffer.
16149
16150 * net/tramp-compat.el (tramp-compat-pop-to-buffer-same-window):
16151 Delete.
16152
16153 2011-07-14 Juanma Barranquero <lekktu@gmail.com>
16154
16155 * follow.el (follow-debug-message, follow-redisplay):
16156 * jka-cmpr-hook.el (with-auto-compression-mode):
16157 Fix typos in docstrings.
16158
16159 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
16160
16161 * subr.el (with-silent-modifications): Clarify somewhat what the
16162 macro inhibits (bug#6525).
16163
16164 * simple.el (eval-expression): Note what it does if called
16165 interactively (bug#6495).
16166
16167 2011-07-13 Chong Yidong <cyd@stupidchicken.com>
16168
16169 * window.el (switch-to-buffer): New arg FORCE-SAME-WINDOW.
16170 Use pop-to-buffer buffer-or-name if it is nil.
16171
16172 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
16173 Remove switch-to-buffer.
16174
16175 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
16176
16177 * files.el (make-directory): Clarify that an error will be raised
16178 if there's an error (bug#6397).
16179
16180 * startup.el (initial-buffer-choice): Add `none' as a choice
16181 (bug#6234).
16182
16183 * subr.el (add-hook): Clarify section about buffer-local hooks
16184 (bug#6218).
16185
16186 * dired.el (dired-flagged): Clarify doc string (bug#6117).
16187
16188 2011-07-13 Juanma Barranquero <lekktu@gmail.com>
16189
16190 * tabify.el (untabify): Preserve the current column so that point
16191 doesn't move (bug#6032).
16192
16193 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
16194
16195 * progmodes/cperl-mode.el (cperl-syntaxify-by-font-lock):
16196 Rewrite to avoid awkward possessive "s" (bug#5986).
16197
16198 2011-07-13 Glenn Morris <rgm@gnu.org>
16199
16200 * dired.el (dired-use-ls-dired): Doc fix. (Bug#9039).
16201 (dired-insert-directory): Give a message the first time
16202 if ls is found not to support --dired.
16203
16204 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
16205
16206 * simple.el (toggle-truncate-lines): Clarify what is toggled
16207 (bug#5580). Text by Drew Adams.
16208
16209 2011-07-13 Chong Yidong <cyd@stupidchicken.com>
16210
16211 * simple.el (blink-matching-open): Make the error message from the
16212 last change less verbose.
16213
16214 2011-07-13 Dan Nicolaescu <dann@ics.uci.edu>
16215
16216 * font-lock.el (font-lock-comment-face): Use the high contrast
16217 "yellow" color for font-lock-comment-face on low color terminals
16218 using a dark background color (bug#4221).
16219
16220 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
16221
16222 * dired.el (dired-insert-set-properties): Make the doc string
16223 reflect what it does now (bug#5325).
16224
16225 * simple.el (blink-matching-open): Say that we were unable to find
16226 the match within the limit, if we're limited (bug#5122).
16227
16228 * international/mule-cmds.el (prefer-coding-system): Add an
16229 example (bug#4869).
16230
16231 * progmodes/etags.el (tags-search): Document `file-list-form'
16232 (bug#4731).
16233
16234 2011-07-13 Lawrence Mitchell <wence@gmx.li>
16235
16236 * net/browse-url.el (browse-url-default-browser)
16237 (browse-url-browser-function): Make the default browser choice a
16238 bit more logical (bug#4300). Also clean up the doc string.
16239
16240 2011-07-13 Juanma Barranquero <lekktu@gmail.com>
16241
16242 * bindings.el (completion-ignored-extensions): Add OpenMCL/Clozure
16243 binary endings (bug#4440).
16244
16245 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
16246
16247 * info.el (info-insert-file-contents): Inhibit jka-compr messages,
16248 which can be pretty annoying (bug#8971).
16249
16250 * jka-compr.el (jka-compr-verbose): New variable, and use
16251 throughout (bug#8971).
16252
16253 * info.el (Info-find-file): Fall back on the installation
16254 directory if we can't find the info node anywhere else.
16255
16256 2011-07-13 Sergei Organov <osv@javad.com> (tiny change)
16257
16258 * vc/vc.el (vc-revert-file):
16259 Don't set file time-stamp in the past. (Bug#5181)
16260
16261 2011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
16262
16263 * files.el (after-find-file): Give a better error message when
16264 trying to find a symlink that points to a file that doesn't exist
16265 (bug#4398).
16266
16267 * progmodes/cc-vars.el: Remove (probably) misleading comment
16268 (bug#4396).
16269
16270 2011-07-12 Johan Bockgård <bojohan@gnu.org>
16271
16272 * mouse-sel.el (mouse-sel-primary-overlay): Use the `region' face.
16273
16274 2011-07-12 Chong Yidong <cyd@stupidchicken.com>
16275
16276 * mouse-sel.el: Hack restoring functionality, while keeping
16277 compatibility with 2010-07-03 changes to mouse selection.
16278 (mouse-sel-primary-overlay): New var.
16279 (mouse-sel-selection-alist): Use it.
16280 (mouse-sel-mode): Doc fix; remove points that are default features
16281 of mouse.el.
16282
16283 2011-07-12 Johan Bockgård <bojohan@gnu.org>
16284
16285 * progmodes/compile.el (compilation-error-regexp-alist-alist):
16286 Fix previous fix (bug#2490).
16287
16288 2011-07-12 Roland Winkler <winkler@gnu.org>
16289
16290 * textmodes/bibtex.el (bibtex-initialize):
16291 Use pop-to-buffer-same-window.
16292 (bibtex-search-entries): Fix interactive call.
16293
16294 2011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
16295
16296 * progmodes/compile.el (compilation-error-regexp-alist-alist):
16297 Fontise bytecomp Error lines more correctly (bug#2490).
16298 Fix suggested by Johan Bockgård.
16299
16300 * subr.el (remove-duplicates): Remove; `delete-dups' is sufficient.
16301
16302 * dired-x.el (dired-guess-default): Use `delete-dups'.
16303
16304 2011-07-12 Chong Yidong <cyd@stupidchicken.com>
16305
16306 * dired.el (dired-mark-prompt):
16307 * dired-aux.el (dired-read-shell-command): Doc fix.
16308
16309 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
16310
16311 * mail/sendmail.el (sendmail-query-once):
16312 Use `customize-save-variable' unconditionally, now that it works under
16313 emacs -Q.
16314
16315 * mail/smtpmail.el (smtpmail-query-smtp-server): Ditto.
16316
16317 * cus-edit.el (custom-file): Take an optional no-error variable.
16318 (customize-save-variable): Set the variable, and give a warning if
16319 running under "emacs -q".
16320
16321 2011-07-11 Juanma Barranquero <lekktu@gmail.com>
16322
16323 * loadhist.el (unload-feature-special-hooks):
16324 Add `auto-coding-functions', `fill-nobreak-predicate' and
16325 `find-directory-functions' (bug#5327).
16326
16327 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
16328
16329 * vc/ediff.el (ediff-patch-file): Clarify doc string (bug#3138).
16330
16331 * cus-edit.el (custom-guess-name-alist): -alist variables should
16332 use the `alist' type (bug#3120). Suggested by Drew Adams.
16333
16334 * printing.el: Add documentation to all the `pr-toggle-' commands.
16335
16336 2011-07-11 Leo Liu <sdl.web@gmail.com>
16337
16338 * files.el (toggle-read-only): Only do the `C-x C-q' warning on VC
16339 backends where it makes sense (bug#2623).
16340
16341 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
16342
16343 * dired-x.el (dired-guess-default): Remove duplicate shell command
16344 entries (bug#2028).
16345 (dired-guess-default): Fix grammar in doc string (bug#2028).
16346 (dired-guess-shell-alist-user): Clarify the example a bit (bug#2030).
16347
16348 * subr.el (remove-duplicates): New conveniency function.
16349
16350 2011-07-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
16351
16352 * tool-bar.el (tool-bar-mode): Clarify positive/negative arguments
16353 (bug#1526).
16354
16355 2011-07-10 Martin Rudalics <rudalics@gmx.at>
16356
16357 * window.el (display-buffer-normalize-default): Don't invert
16358 meaning of even-window-heights. Reported by Eli Zaretskii
16359 <eliz@gnu.org>.
16360
16361 2011-07-10 Bob Rogers <rogers@rgrjr.dyndns.org>
16362
16363 * vc/vc.el (vc-diff-internal): Fix race condition (Bug#1256).
16364
16365 2011-07-10 Chong Yidong <cyd@stupidchicken.com>
16366
16367 * window.el (display-buffer): Fix arguments to
16368 display-buffer-reuse-window in last change.
16369
16370 * faces.el (link): Use a less saturated blue on light backgrounds.
16371
16372 * startup.el (fancy-startup-text, fancy-about-text)
16373 (fancy-startup-tail): Use font-lock faces, for background safety.
16374
16375 2011-07-09 Bob Nnamtrop <bobnnamtrop@gmail.com> (tiny change)
16376
16377 * emulation/viper-cmd.el (viper-change-state-to-vi):
16378 Limit triggering of abbrev expansion (Bug#9038).
16379
16380 2011-07-09 Martin Rudalics <rudalics@gmx.at>
16381
16382 * window.el (display-buffer-default-specifiers): Remove.
16383 (display-buffer-macro-specifiers): Remove default specifiers.
16384 (display-buffer-alist): Default to nil.
16385 (display-buffer-reuse-window): New optional argument other-window.
16386 (display-buffer-pop-up-window): Allow splitting internal
16387 windows. Check whether a live window was created.
16388 (display-buffer-other-window-means-other-frame)
16389 (display-buffer-normalize-arguments): Rename to
16390 display-buffer-normalize-argument and rewrite. Set the
16391 other-window specifier.
16392 (display-buffer-normalize-special): New function.
16393 (display-buffer-normalize-options): Rename to
16394 display-buffer-normalize-default and rewrite.
16395 (display-buffer-normalize-options-inhibit): Remove.
16396 (display-buffer-normalize-specifiers): Rewrite.
16397 (display-buffer): Process other-window specifier and call
16398 display-buffer-reuse-window with it. Emulate Emacs 23 behavior
16399 more faithfully.
16400 (pop-up-windows, even-window-heights): Restore Emacs 23 default values.
16401 (display-buffer-alist-set): Don't handle 'unset default values.
16402 (display-buffer-in-window, display-buffer-alist-set):
16403 Replace symbol "dedicated" by "dedicate". Reported by Tassilo Horn
16404 <tassilo@member.fsf.org>.
16405
16406 2011-07-09 Leo Liu <sdl.web@gmail.com>
16407
16408 * register.el (insert-register): Restore accidental change on
16409 2011-06-26. (Bug#9028)
16410
16411 2011-07-09 Glenn Morris <rgm@gnu.org>
16412
16413 * subr.el (remq): Handle the empty list. (Bug#9024)
16414
16415 2011-07-08 Andreas Schwab <schwab@linux-m68k.org>
16416
16417 * mail/sendmail.el (send-mail-function): No longer delay custom
16418 initialization.
16419 * custom.el (custom-initialize-delay): Doc fix.
16420
16421 2011-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
16422
16423 * abbrev.el (expand-abbrev): Try to preserve point (bug#5805).
16424
16425 2011-07-08 Michael Albinus <michael.albinus@gmx.de>
16426
16427 * net/tramp-sh.el (tramp-sh-handle-start-file-process): Use a
16428 human-friendly prompt.
16429
16430 2011-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
16431
16432 * vc/vc-bzr.el (vc-bzr-revision-keywords): Remove svn, it's only
16433 provided by a particular plugin.
16434
16435 2011-07-08 Lars Magne Ingebrigtsen <larsi@gnus.org>
16436
16437 * mail/sendmail.el (sendmail-query-once): If we aren't allowed to
16438 save customizations (with "emacs -Q"), just set the variable
16439 instead of erroring out.
16440
16441 * mail/smtpmail.el (smtpmail-query-smtp-server): Ditto.
16442
16443 2011-07-08 Juri Linkov <juri@jurta.org>
16444
16445 * arc-mode.el (archive-zip-expunge, archive-zip-update)
16446 (archive-zip-update-case): Use 7z if found by `executable-find'.
16447 The order of searching the available programs is the same as in
16448 `archive-zip-extract' (bug#8968).
16449
16450 2011-07-07 Chong Yidong <cyd@stupidchicken.com>
16451
16452 * menu-bar.el (menu-bar-line-wrapping-menu): Revert last change.
16453 (menu-bar-options-menu): Tweak descriptions.
16454
16455 2011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
16456
16457 * menu-bar.el (menu-bar-line-wrapping-menu): Make all the Options
16458 menu items into verb phrases (bug#1421). Also refill to fit under
16459 80 columns.
16460
16461 2011-07-07 Chong Yidong <cyd@stupidchicken.com>
16462
16463 * info.el (info, Info-read-node-name-2, Info-read-node-name-1)
16464 (Info-read-node-name): Doc fix (Bug#1084).
16465
16466 * thingatpt.el (forward-thing, bounds-of-thing-at-point)
16467 (thing-at-point, beginning-of-thing, end-of-thing, in-string-p)
16468 (end-of-sexp, beginning-of-sexp)
16469 (thing-at-point-bounds-of-list-at-point, forward-whitespace)
16470 (forward-symbol, forward-same-syntax, word-at-point)
16471 (sentence-at-point): Doc fix (Bug#1144).
16472
16473 2011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
16474
16475 * info.el (Info-mode-map): Remove S-TAB binding, since [backtab]
16476 should cover it (bug#1281).
16477
16478 * cus-edit.el (custom-show): Mark as obsolete.
16479
16480 * net/network-stream.el (network-stream-open-starttls): If GnuTLS
16481 negotiation fails, then possibly try again with a non-encrypted
16482 connection (bug#9017).
16483
16484 * mail/smtpmail.el (smtpmail-stream-type): Note that `plain' can
16485 be used.
16486
16487 2011-07-07 Richard Stallman <rms@gnu.org>
16488
16489 * mail/rmail.el (rmail-next-error-move): Use `compilation-message'
16490 property, and handle its changed format.
16491 Look for the correct line number.
16492 Use file's line contents (but not past first =) to find
16493 correct line in message.
16494
16495 2011-07-07 Kenichi Handa <handa@m17n.org>
16496
16497 * international/characters.el (build-unicode-category-table):
16498 Delete it.
16499 (unicode-category-table): Set it by unicode-property-table-internal.
16500
16501 * international/mule-cmds.el (char-code-property-alist): Move to
16502 to src/chartab.c.
16503 (get-char-code-property): Call unicode-property-table-internal to
16504 load a file. Call get-unicode-property-internal where necessary.
16505 (put-char-code-property): Call unicode-property-table-internal to
16506 load a file. Call put-unicode-property-internal where necessary.
16507 put-unicode-property-internal where necessary.
16508 (char-code-property-description):
16509 Call unicode-property-table-internal to load a file.
16510
16511 * international/charprop.el:
16512 * international/uni-bidi.el:
16513 * international/uni-category.el:
16514 * international/uni-combining.el:
16515 * international/uni-comment.el:
16516 * international/uni-decimal.el:
16517 * international/uni-decomposition.el:
16518 * international/uni-digit.el:
16519 * international/uni-lowercase.el:
16520 * international/uni-mirrored.el:
16521 * international/uni-name.el:
16522 * international/uni-numeric.el:
16523 * international/uni-old-name.el:
16524 * international/uni-titlecase.el:
16525 * international/uni-uppercase.el: Regenerate.
16526
16527 * loadup.el: Load international/charprop.el before
16528 international/characters.
16529
16530 2011-07-07 Chong Yidong <cyd@stupidchicken.com>
16531
16532 * window.el (next-buffer, previous-buffer): Signal an error if
16533 called from a minibuffer window.
16534
16535 * bindings.el: Revert 2011-07-04 change.
16536
16537 2011-07-06 Richard Stallman <rms@gnu.org>
16538
16539 * mail/rmailmm.el (rmail-mime-process): Use markers for buf positions.
16540 (rmail-mime-insert-bulk, rmail-mime-insert-text):
16541 Treat markers like ints.
16542 (rmail-mime-entity): Doc fix.
16543
16544 2011-07-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
16545
16546 * mail/smtpmail.el (smtpmail-default-smtp-server): Made into a
16547 defcustom again for backwards compatibility.
16548
16549 * simple.el (shell-command-on-region): Fill.
16550
16551 * dired-aux.el (dired-kill-line): Add a doc string.
16552
16553 * dabbrev.el (dabbrev-abbrev-char-regexp): Note that nil defaults
16554 to "\\sw\\|\\s_" (bug#358).
16555
16556 * dired.el (dired-mode): Clarify "unmark or unflag" (bug#8770).
16557 (dired-unmark-backward): Ditto.
16558 (dired-flag-backup-files): Ditto.
16559
16560 * dired-x.el (dired-mark-sexp): Ditto.
16561
16562 2011-07-06 Richard Stallman <rms@gnu.org>
16563
16564 * mail/rmailmm.el: Give entity a new slot, TRUNCATED.
16565 (rmail-mime-entity): New arg TRUNCATED.
16566 (rmail-mime-entity-truncated, rmail-mime-entity-set-truncated):
16567 New functions.
16568 (rmail-mime-save): Warn if entity is truncated.
16569 (rmail-mime-toggle-hidden): Likewise, for showing.
16570 (rmail-mime-process-multipart): Record when an entity is truncated.
16571
16572 * mail/rmailmm.el (rmail-search-mime-message): Don't get confused
16573 if ENTITY is a string.
16574
16575 2011-07-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
16576
16577 * emacs-lisp/lisp-mode.el (eval-defun-1): Update the documentation
16578 of faces when `M-C-x'-ing their definitions (bug#8378).
16579 Also clean up the code slightly.
16580
16581 * progmodes/grep.el (rgrep): Don't bind `process-connection-type',
16582 because that makes the colors go away.
16583
16584 * mail/sendmail.el (send-mail-function): Change the default to
16585 `sendmail-query-once'.
16586 (sendmail-query-once): Add an autoload cookie.
16587
16588 * net/network-stream.el (network-stream-open-starttls): Try using
16589 a plain connection even if the server offered STARTTLS, and we
16590 kinda wanted to use it, if Emacs doesn't have any STARTTLS
16591 capability. This should make smtpmail.el work in slightly more
16592 configurations.
16593
16594 2011-07-06 Michael Albinus <michael.albinus@gmx.de>
16595
16596 * net/tramp-compat.el (tramp-compat-pop-to-buffer-same-window):
16597 New defun.
16598 * net/tramp-cmds.el (tramp-append-tramp-buffers): Use it.
16599
16600 2011-07-06 Michael R. Mauger <mmaug@yahoo.com>
16601
16602 * progmodes/sql.el: Version 3.0
16603 (sql-product-alist): Add product :completion-object,
16604 :completion-column, and :statement attributes.
16605 (sql-mode-menu, sql-interactive-mode-map): Fix List entries.
16606 (sql-mode-syntax-table): Mark all punctuation.
16607 (sql-font-lock-keywords-builder): Temporarily remove fallback on
16608 ansi keywords.
16609 (sql-regexp-abbrev, sql-regexp-abbrev-list): New functions.
16610 (sql-mode-oracle-font-lock-keywords): Improve.
16611 (sql-oracle-show-reserved-words): New function for development.
16612 (sql-product-font-lock): Simplify for source code buffers.
16613 (sql-product-syntax-table, sql-product-font-lock-syntax-alist):
16614 New functions.
16615 (sql-highlight-product): Set product specific syntax table.
16616 (sql-mode-map): Add statement movement functions.
16617 (sql-ansi-statement-starters, sql-oracle-statement-starters):
16618 New variable.
16619 (sql-statement-regexp, sql-beginning-of-statement)
16620 (sql-end-of-statement, sql-signum): New functions.
16621 (sql-buffer-live-p, sql=find-sqli-buffer): Add CONNECTION parameter.
16622 (sql-show-sqli-buffer): Bug fix.
16623 (sql-interactive-mode): Store connection data as buffer local.
16624 (sql-connect): Add NEW-NAME parameter. Redesign interaction
16625 with sql-interactive-mode.
16626 (sql-save-connection): Save buffer local settings.
16627 (sql-connection-menu-filter): Change menu entry name.
16628 (sql-product-interactive): Bug fix.
16629 (sql-preoutput-hold): New variable.
16630 (sql-interactive-remove-continuation-prompt): Bug fixes.
16631 (sql-debug-redirect): New variable.
16632 (sql-str-literal): New function.
16633 (sql-redirect, sql-redirect-one, sql-redirect-value, sql-execute):
16634 Redesign.
16635 (sql-oracle-save-settings, sql-oracle-restore-settings)
16636 (sql-oracle-list-all, sql-oracle-list-table): New functions.
16637 (sql-completion-object, sql-completion-column)
16638 (sql-completion-sqlbuf): New variables.
16639 (sql-build-completions-1, sql-build-completions)
16640 (sql-try-completion): New functions.
16641 (sql-read-table-name): Use them.
16642 (sql-contains-names): New buffer local variable.
16643 (sql-list-all, sql-list-table): Use it.
16644 (sql-oracle-completion-types): New variable.
16645 (sql-oracle-completion-object, sql-sqlite-completion-object)
16646 (sql-postgres-completion-object): New functions.
16647
16648 2011-07-06 Glenn Morris <rgm@gnu.org>
16649
16650 * window.el (pop-to-buffer): Doc fix.
16651
16652 2011-07-06 Markus Heiser <markus.heiser@darmarit.de> (tiny change)
16653
16654 * progmodes/gud.el (gud-pdb-marker-regexp): Accept \r char (Bug#5653).
16655
16656 2011-07-06 Chong Yidong <cyd@stupidchicken.com>
16657
16658 * window.el (special-display-popup-frame): Doc fix (Bug#8853).
16659
16660 * info.el (Info-directory-toc-nodes): Minor doc fix (Bug#8833).
16661
16662 2011-07-05 Chong Yidong <cyd@stupidchicken.com>
16663
16664 * button.el (button): Inherit from link face. Suggested by Dan
16665 Nicolaescu.
16666
16667 2011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
16668
16669 * progmodes/gdb-mi.el: Fit in 80 columns.
16670 (gdb-setup-windows, gdb-restore-windows): Avoid other-window and
16671 switch-to-buffer.
16672
16673 * progmodes/which-func.el (which-func-ff-hook): Don't output a message
16674 if imenu is simply not configured (bug#8941).
16675
16676 2011-07-05 Ken Manheimer <ken.manheimer@gmail.com>
16677
16678 * allout.el (allout-post-undo-hook): New allout outline-change
16679 event hook to signal undo activity.
16680 (allout-post-command-business): Run allout-post-undo-hook if an
16681 undo just occurred.
16682 (allout-after-copy-or-kill-hook, allout-mode): Minor docstring changes.
16683 * allout-widgets.el (allout-widgets-after-undo-function):
16684 Ensure the integrity of the current item's decoration after it has been
16685 in the vicinity of an undo.
16686 (allout-widgets-mode): Include allout-widgets-after-undo-function
16687 on the new allout-post-undo-hook.
16688
16689 2011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
16690
16691 * emacs-lisp/lisp-mode.el (lisp-interaction-mode-abbrev-table):
16692 Let define-derived-mode define it.
16693 * emacs-lisp/derived.el (define-derived-mode): Try to avoid creating
16694 cycles of abbrev-table inheritance (bug#8998).
16695
16696 2011-07-05 Roland Winkler <winkler@gnu.org>
16697
16698 * textmodes/bibtex.el: Add support for biblatex.
16699 (bibtex-BibTeX-entry-alist, bibtex-biblatex-entry-alist)
16700 (bibtex-BibTeX-field-alist, bibtex-biblatex-field-alist)
16701 (bibtex-dialect-list, bibtex-dialect, bibtex-no-opt-remove-re)
16702 (bibtex-entry-alist, bibtex-field-alist): New variables.
16703 (bibtex-entry-field-alist): Obsolete alias for
16704 bibtex-BibTeX-entry-alist.
16705 (bibtex-entry-alist, bibtex-field-alist): New widgets.
16706 (bibtex-set-dialect): New command.
16707 (bibtex-entry-type, bibtex-entry-head)
16708 (bibtex-entry-maybe-empty-head, bibtex-any-valid-entry-type):
16709 Bind via bibtex-set-dialect.
16710 (bibtex-Article, bibtex-Book, bibtex-Booklet, bibtex-InBook)
16711 (bibtex-InCollection, bibtex-InProceedings, bibtex-Manual)
16712 (bibtex-MastersThesis, bibtex-Misc, bibtex-PhdThesis)
16713 (bibtex-Proceedings, bibtex-TechReport, bibtex-Unpublished):
16714 Define via bibtex-set-dialect.
16715 (bibtex-name-in-field, bibtex-remove-OPT-or-ALT):
16716 Obey bibtex-no-opt-remove-re.
16717 (bibtex-vec-push, bibtex-vec-incr): New functions.
16718 (bibtex-format-entry, bibtex-field-list)
16719 (bibtex-print-help-message, bibtex-validate)
16720 (bibtex-search-entries): Use new format of bibtex-entry-alist.
16721
16722 2011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
16723
16724 * progmodes/compile.el (compilation-goto-locus):
16725 * net/tramp-cmds.el (tramp-append-tramp-buffers):
16726 * bs.el (bs-cycle-next, bs-cycle-previous):
16727 * bookmark.el (bookmark-bmenu-list, bookmark-bmenu-2-window):
16728 * bindings.el (mode-line-other-buffer):
16729 * autoinsert.el (auto-insert):
16730 * arc-mode.el (archive-extract):
16731 * abbrev.el (edit-abbrevs): Fix some uses of switch-to-buffer.
16732
16733 2011-07-05 Juanma Barranquero <lekktu@gmail.com>
16734
16735 * emacs-lock.el (emacs-lock-mode): Fix typo in variable name.
16736 Fix check of `emacs-lock-unlockable-modes'.
16737 Coerce true values of `emacs-lock--try-unlocking' to t.
16738
16739 2011-07-05 Juanma Barranquero <lekktu@gmail.com>
16740
16741 * obsolete/old-emacs-lock.el: Rename from emacs-lock.el.
16742 * emacs-lock.el: New file.
16743
16744 2011-07-05 Julien Danjou <julien@danjou.info>
16745
16746 * textmodes/rst.el (rst-define-level-faces): Use `facep' rather
16747 than `boundp' to check if face is set.
16748
16749 2011-07-05 Juanma Barranquero <lekktu@gmail.com>
16750
16751 * register.el (registerv-make):
16752 * window.el (window-min-height): Fix typos in docstrings.
16753
16754 2011-07-05 Jan Djärv <jan.h.d@swipnet.se>
16755
16756 * dynamic-setting.el (dynamic-setting-handle-config-changed-event):
16757 Update doc string.
16758
16759 2011-07-04 Juanma Barranquero <lekktu@gmail.com>
16760
16761 * server.el (server-execute): Catch quit and call
16762 `server-return-error' to pass the error back to emacsclient and
16763 close the connection (bug#8942).
16764
16765 2011-07-04 Ken Manheimer <ken.manheimer@gmail.com>
16766
16767 * allout.el (allout-encrypt-unencrypted-on-saves): Do not provide
16768 insecure exception for current topic. Also note that auto-saves
16769 are handled differently.
16770
16771 (allout-auto-save-temporarily-disabled, allout-just-did-undo):
16772 State variables for tracking auto-save inhibition situation.
16773
16774 (allout-write-contents-hook-handler): Rename from
16775 'allout-write-file-hook-handler', and describe how it depends on
16776 write-contents-functions sensitivity to non-nil value to prevent
16777 file write.
16778
16779 (allout-auto-save-hook-handler): Remove. auto-save does not check
16780 this in individual buffers, only in the starting buffer, so this
16781 is not the right way for us to inhibit auto-save in a buffer
16782 according to its condition.
16783
16784 (allout-mode): Use new allout-write-contents-hook-handler, and
16785 only with write-contents-functions. Remove auto-save provisions -
16786 they're implemented elsewhere.
16787
16788 (allout-before-change-handler): If undo is in progress, note that
16789 for attention of allout-post-command-business.
16790
16791 (allout-post-command-business): If the command we're following was
16792 an undo, check for change in the status of encrypted items and
16793 adjust auto-save inhibitions accordingly.
16794
16795 (allout-toggle-subtree-encryption): Adjust auto-save inhibition
16796 according to whether there are or aren't any plain-text topics
16797 pending encryption.
16798
16799 (allout-inhibit-auto-save-info-for-decryption):
16800 Adjust buffer-saved-size and some allout state to inhibit auto-saves
16801 if there are plain-text topics pending encryption.
16802
16803 (allout-maybe-resume-auto-save-info-after-encryption): Adjust
16804 buffer-saved-size and some allout state to not inhibit auto-saves
16805 if there are no longer any plain-text topics pending encryption.
16806
16807 (allout-next-topic-pending-encryption, allout-encrypt-decrypted):
16808 No longer provide for exemption of the current topic.
16809
16810 2011-07-04 Juri Linkov <juri@jurta.org>
16811
16812 Add 7z operations to delete and save changed members (bug#8968).
16813 * arc-mode.el (archive-7z-expunge, archive-7z-update):
16814 New defcustoms.
16815 (archive-7z-write-file-member): New function.
16816 (archive-7z-summarize): Fix the number of dashes in the
16817 listing output.
16818
16819 2011-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
16820
16821 * pcmpl-linux.el (pcomplete-pare-list): Re-add, from pcomplete.el
16822 (bug#8958).
16823
16824 2011-07-04 Chong Yidong <cyd@stupidchicken.com>
16825
16826 * bindings.el: Ignore next-buffer and previous-buffer in
16827 minibuffer-local-map.
16828
16829 * font-lock.el (font-lock-builtin-face): Change light background
16830 color to dark slate blue (Bug#6693).
16831
16832 2011-07-04 Wang Diancheng <dcwang@kingbase.com.cn> (tiny change)
16833
16834 * progmodes/gdb-mi.el (gdb): Use completion-at-point.
16835
16836 2011-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
16837
16838 * files.el (find-file): Use pop-to-buffer-same-window (bug#8911).
16839 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
16840 Add switch-to-buffer.
16841
16842 2011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
16843
16844 * isearch.el (isearch-search-fun-function): Clarify further the
16845 meaning of the function returned.
16846
16847 2011-07-04 Michael Albinus <michael.albinus@gmx.de>
16848
16849 * net/tramp-cmds.el (tramp-cleanup-this-connection): New command.
16850
16851 * net/tramp-sh.el (tramp-color-escape-sequence-regexp): New defconst.
16852 (tramp-sh-handle-insert-directory, tramp-convert-file-attributes):
16853 Use it.
16854 (tramp-remote-path): Add "/bin" and "/usr/bin". On busyboxes,
16855 `tramp-default-remote-path' does not exist.
16856 (tramp-send-command-and-read): New optional argument NOERROR.
16857 (tramp-open-connection-setup-interactive-shell)
16858 (tramp-get-remote-path, tramp-get-remote-stat): Use it.
16859 (tramp-get-remote-readlink): Do not mask with `ignore-errors'.
16860 (tramp-process-sentinel): Flush also process' connection property.
16861 (tramp-sh-handle-start-file-process): Do not set process
16862 sentinel. It is done now ...
16863 (tramp-maybe-open-connection): ... here. (Bug#8929)
16864
16865 2011-07-04 MON KEY <monkey@sandpframing.com>
16866
16867 * play/animate.el (animate-string): Doc fixes and allow changing
16868 the buffer name (bug#5417).
16869
16870 2011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
16871
16872 * play/animate.el (animation-buffer-name): Rename from *animate*.
16873
16874 2011-07-04 Paul Eggert <eggert@cs.ucla.edu>
16875
16876 * emacs-lisp/timer.el: Use time-date fns rather than rolling our own.
16877 This is simpler and helps future-proof the code.
16878 (timer-until): Use time-subtract and float-time.
16879 (timer--time-less-p): Use time-less-p.
16880
16881 2011-07-04 Juanma Barranquero <lekktu@gmail.com>
16882
16883 * type-break.el (timep): Use the value of `float-time' to avoid a
16884 byte-compiler warning.
16885
16886 * server.el (server-eval-and-print): Return any result, even nil.
16887
16888 2011-07-03 Paul Eggert <eggert@cs.ucla.edu>
16889
16890 * type-break.el: Accept time formats that the builtins accept.
16891 (timep, type-break-time-difference): Accept any format that
16892 float-time accepts, rather than insisting on (HIGH LOW USECS) format.
16893 This is simpler and helps future-proof the code.
16894 (type-break-time-difference): Round rather than ignoring
16895 subseconds components.
16896
16897 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
16898
16899 * info.el (Info-apropos-matches): Make non-interactive, since it
16900 doesn't seem to do anything useful as a command (bug#8829).
16901
16902 2011-07-03 Chong Yidong <cyd@stupidchicken.com>
16903
16904 * frame.el (frame-background-mode, frame-set-background-mode):
16905 Move from faces.el.
16906 (frame-default-terminal-background): New function.
16907
16908 * custom.el (custom-push-theme): Don't record faces in `changed'
16909 theme; this doesn't work correctly for per-frame face settings.
16910 (disable-theme): Use face-set-after-frame-default to reset faces.
16911 (custom--frame-color-default): New function.
16912
16913 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
16914
16915 * dired.el (dired-flagging-regexp): Remove unused variable
16916 (bug#8769).
16917
16918 2011-03-29 Kevin Ryde <user42@zip.com.au>
16919
16920 * progmodes/compile.el (compilation-error-regexp-alist-alist):
16921 `perl-Test2' extend to match possible "fail #N" rep count
16922 (bug#8377).
16923
16924 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
16925
16926 * mail/feedmail.el (feedmail-buffer-to-smtpmail):
16927 `smtpmail-via-smtp' now returns the error instead of nil.
16928
16929 * isearch.el (isearch-search-fun-function): Clarify the doc string
16930 (bug#8101).
16931
16932 2011-07-03 Richard Kim <emacs18@gmail.com> (tiny change)
16933
16934 * textmodes/texnfo-upd.el (texinfo-insert-menu): Don't insert
16935 unnecessary spaces (bug#8987).
16936
16937 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
16938
16939 * net/network-stream.el (open-network-stream): Use the
16940 :end-of-capability command thoughout.
16941
16942 2011-07-03 Wolfgang Jenkner <wjenkner@inode.at> (tiny change)
16943
16944 * net/network-stream.el (open-network-stream): Add the
16945 :end-of-capability command parameter, used by pop3.el.
16946
16947 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
16948
16949 * dired.el (dired-map-over-marks): Refill the doc string (bug#6814).
16950
16951 * fringe.el (fringe-query-style): Remove redundant text " (type ?
16952 for list)" (bug#6475).
16953
16954 * files.el (file-expand-wildcards): Ignore non-readable
16955 sub-directories while trying to find matches instead of signaling
16956 an error (bug#6297).
16957
16958 * man.el (Man-reference-regexp): Allow matching possible
16959 word-wrapped references (bug#6289).
16960
16961 * vc/vc.el (vc-modify-change-comment): Change *VC-log* to *vc-log*
16962 for consistency with the other vc buffers (bug#6197).
16963 (vc-checkin): Ditto.
16964
16965 * vc/vc-arch.el: Fix comments to match the *VC-log* name change.
16966
16967 * longlines.el (longlines-mode): Document what ARG does (bug#6150).
16968
16969 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
16970
16971 * custom.el (defcustom): Clarify that :set is only used in the
16972 Customize user interface (bug#6089).
16973
16974 * progmodes/flymake.el (flymake-mode): If the buffer isn't
16975 associated with a file, refuse to run instead of erroring out
16976 (bug#6084).
16977
16978 * textmodes/fill.el (fill-region): Remove the "Ordinarily" from
16979 the doc string, since it appears that using `fill-column' always
16980 controls the width (bug#7845).
16981
16982 * simple.el (shell-command-on-region): Say where the error output
16983 went if `shell-command-default-error-buffer' is set (bug#6857).
16984
16985 2011-07-02 Ken Manheimer <ken.manheimer@gmail.com>
16986
16987 * allout.el (allout-yank-processing): Adjust cursor position for
16988 backwards-deleted space.
16989
16990 (allout-rebullet-heading): Register changes with
16991 allout-exposure-changed-hook, so the modified topic is properly
16992 decorated.
16993
16994 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
16995
16996 * minibuffer.el (completion-in-region): Document PREDICATE
16997 (bug#7136).
16998
16999 * info-look.el (info-lookup-add-help): Clarify that ARGS is a list
17000 of keyword/argument pairs (bug#6904).
17001
17002 * replace.el (multi-occur):
17003 Mention `multi-occur-in-matching-buffers' in the doc string (bug#7566).
17004
17005 2011-07-02 Drew Adams <drew.adams@oracle.com>
17006
17007 * dired.el (dired-mark-if): Make the message about whether it's
17008 marking or unmarking clearer (bug#8523).
17009
17010 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
17011
17012 * disp-table.el (display-table-print-array): New function.
17013 (describe-display-table): Use it to print the vectors more pretty
17014 (Bug#8859).
17015
17016 2011-07-02 Martin Rudalics <rudalics@gmx.at>
17017
17018 * window.el (window-state-get-1): Don't assign clone numbers.
17019 Add clone-of item to list of window parameters.
17020 (window-state-put-2): Don't process clone numbers.
17021 (display-buffer-alist): Fix doc-string.
17022
17023 2011-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
17024
17025 * subr.el (remq): Don't allocate if it's not needed.
17026 (keymap--menu-item-binding, keymap--menu-item-with-binding)
17027 (keymap--merge-bindings): New functions.
17028 (keymap-canonicalize): Use them to refine the canonicalization.
17029 * minibuffer.el (minibuffer-local-completion-map)
17030 (minibuffer-local-must-match-map): Move initialization from C.
17031 (minibuffer-local-filename-completion-map): Move initialization from C;
17032 don't inherit from anything here.
17033 (minibuffer-local-filename-must-match-map): Make obsolete.
17034 (completing-read-default): Use make-composed-keymap to combine
17035 minibuffer-local-filename-completion-map with either
17036 minibuffer-local-must-match-map or
17037 minibuffer-local-filename-completion-map.
17038
17039 2011-07-01 Glenn Morris <rgm@gnu.org>
17040
17041 * type-break.el (type-break-time-sum): Use dolist.
17042
17043 * textmodes/flyspell.el (flyspell-word-search-backward):
17044 Replace CL function.
17045
17046 2011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
17047
17048 * mouse.el (mouse--strip-first-event): New function.
17049 (function-key-map): Use it to map fringe clicks to normal clicks
17050 by default.
17051
17052 * vc/vc-bzr.el (vc-bzr-revision-keywords): Update.
17053 (vc-bzr-revision-completion-table): Add support for annotate and date.
17054
17055 * emacs-lisp/derived.el (define-derived-mode): Make abbrev-table
17056 inherit from parent.
17057
17058 2011-07-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
17059
17060 * dired-aux.el (dired-diff): Doc fixup (bug#8816).
17061 (dired-show-file-type): Doc fixup (bug#8818).
17062
17063 * dired.el (dired-mode): Fix up the doc string as suggested by
17064 Drew Adams (bug#8817).
17065
17066 * progmodes/flymake.el (flymake-find-file-hook): Add an `autoload'
17067 cookie, since the manual says that it should be possible to add
17068 this function to `find-file-hook' (bug#8709).
17069
17070 2011-07-01 Teodor Zlatanov <tzz@lifelogs.com>
17071
17072 * progmodes/cfengine.el: Moved all cfengine3.el functionality
17073 here. Noted Ted Zlatanov as the maintainer.
17074 (cfengine-common-settings, cfengine-common-syntax): New functions
17075 to set up common things between `cfengine-mode' and
17076 `cfengine3-mode'.
17077 (cfengine3-mode): New mode.
17078 (cfengine3-defuns cfengine3-defuns-regex
17079 (cfengine3-class-selector-regex cfengine3-category-regex)
17080 (cfengine3-vartypes cfengine3-font-lock-keywords)
17081 (cfengine3-beginning-of-defun, cfengine3-end-of-defun)
17082 (cfengine3-indent-line): Add from cfengine3.el.
17083
17084 2011-07-01 Michael Albinus <michael.albinus@gmx.de>
17085
17086 * net/tramp.el (tramp-encoding-command-interactive): New defcustom.
17087
17088 * net/tramp-sh.el (tramp-maybe-open-connection): Use it.
17089
17090 2011-07-01 Martin Rudalics <rudalics@gmx.at>
17091
17092 * window.el (same-window-buffer-names, same-window-regexps)
17093 (same-window-p, special-display-frame-alist)
17094 (special-display-popup-frame, special-display-function)
17095 (special-display-buffer-names, special-display-regexps)
17096 (special-display-p, pop-up-frame-alist, pop-up-frame-function)
17097 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
17098 (split-window-preferred-function, split-height-threshold)
17099 (split-width-threshold, even-window-heights)
17100 (display-buffer-mark-dedicated, window-splittable-p)
17101 (split-window-sensibly, window-safely-shrinkable-p):
17102 Un-obsolete.
17103 (display-buffer): Don't spread args with function specifier
17104 because special-display-popup-frame won't like it.
17105
17106 2011-07-01 Paul Eggert <eggert@cs.ucla.edu>
17107
17108 Time-stamp simplifications and fixes.
17109 These improve accuracy slightly, and future-proof the code
17110 against some potential changes to current-time format.
17111
17112 * woman.el (woman-decode-buffer, WoMan-log-end): Log fractional secs
17113 by using time-since and float-time.
17114
17115 * vc/ediff-util.el (ediff-calc-command-time): Use time-since
17116 and float-time. Say "NNN.NNN seconds" rather than "NNN seconds
17117 + NNN microseconds".
17118
17119 * type-break.el (type-break-time-sum): Rewrite using time-add.
17120
17121 * play/hanoi.el (hanoi-current-time-float): Remove.
17122 All uses replaced by float-time.
17123
17124 * nxml/rng-maint.el (rng-time-function): Rewrite using time-subtract.
17125 This yields a more-accurate answer.
17126 (rng-time-to-float): Remove; no longer needed.
17127
17128 * emacs-lisp/timer.el (timer-relative-time): Use time-add.
17129
17130 * calendar/timeclock.el (timeclock-seconds-to-time):
17131 Defalias to seconds-to-time, since they're the same thing.
17132
17133 * emacs-lisp/elp.el (elp-elapsed-time):
17134 * emacs-lisp/benchmark.el (benchmark-elapse):
17135 * allout-widgets.el (allout-elapsed-time-seconds): Use float-time.
17136
17137 2011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
17138
17139 * window.el (bury-buffer): Don't iconify the only frame.
17140 (switch-to-buffer): Revert to Emacs<23 behavior, i.e. do not fallback
17141 to pop-to-buffer. Use pop-to-buffer-same-frame if you don't like that.
17142
17143 2011-07-01 Chong Yidong <cyd@stupidchicken.com>
17144
17145 * eshell/em-smart.el (eshell-smart-display-navigate-list):
17146 Add mouse-yank-primary.
17147
17148 2011-07-01 Teodor Zlatanov <tzz@lifelogs.com>
17149
17150 * progmodes/cfengine3.el: New file to support CFEngine 3.x.
17151
17152 2011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
17153
17154 * emacs-lisp/find-func.el (find-library--load-name): New fun.
17155 (find-library-name): Use it to find relative load names when provided
17156 absolute file name (bug#8803).
17157
17158 2011-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
17159
17160 * textmodes/flyspell.el (flyspell-word): Consider words that
17161 differ only in case as potential doublons (bug#5687).
17162
17163 * net/soap-client.el (soap-invoke, soap-wsdl-resolve-references):
17164 Remove two rather uninteresting debugging-like messages to make
17165 debbugs.el more silent.
17166
17167 * comint.el (comint-password-prompt-regexp): Accept "Response" as
17168 a password-like phrase.
17169
17170 2011-06-30 Masatake YAMATO <yamato@redhat.com>
17171
17172 * progmodes/cc-guess.el: New file.
17173
17174 * progmodes/cc-langs.el (c-mode-menu): Add "Style..." submenu.
17175
17176 * progmodes/cc-styles.el (cc-choose-style-for-mode): New function
17177 derived from `c-basic-common-init'.
17178
17179 * progmodes/cc-mode.el (top-level): Require cc-guess.
17180 (c-basic-common-init): Use `cc-choose-style-for-mode'.
17181
17182 2011-06-30 Lawrence Mitchell <wence@gmx.li>
17183
17184 * progmodes/js.el (js-mode): Don't stomp on global settings (bug#8933).
17185
17186 2011-06-30 Alan Mackenzie <acm@muc.de>
17187
17188 * progmodes/cc-engine.el (c-guess-continued-construct):
17189 Correct the handling of template-args-cont, particularly for when font
17190 lock is disabled. Name this case as "CASE G".
17191
17192 2011-06-30 Ken Manheimer <ken.manheimer@gmail.com>
17193
17194 * allout.el (allout-yank-processing): Fix injection of extra space
17195 between bullet and non-whitespace character in first topic when
17196 pasting, ensuring that the actual spacing in the pasted topic
17197 following the bullet char is preserved. This extra space was
17198 causing pasted encrypted topics to get a decrypted status even
17199 when the content was actually still encrypted. Now the decryption
17200 status from before the paste is preserved.
17201
17202 (allout-flag-region): Set all allout overlays so they evaporate
17203 when reduced to zero length (evanescent), to prevent overlay
17204 leakage.
17205
17206 2011-06-30 Glenn Morris <rgm@gnu.org>
17207
17208 * w32-fns.el (w32-charset-info-alist): Declare.
17209
17210 * find-dired.el (find-grep-options): Simplify.
17211
17212 * term/ns-win.el (ns-set-resource): Declare.
17213
17214 * ses.el (row, col): Declare dynamic variables honestly.
17215
17216 * textmodes/reftex-parse.el (index-tags): Declare.
17217
17218 2011-06-30 Chong Yidong <cyd@stupidchicken.com>
17219
17220 * cus-edit.el (customize-push-and-save): New function.
17221
17222 * files.el (hack-local-variables-confirm): Use it.
17223
17224 * custom.el (load-theme): New arg NO-CONFIRM.
17225 Use customize-push-and-save (Bug#8720).
17226 (custom-enabled-themes): Doc fix.
17227
17228 * cus-theme.el (customize-create-theme)
17229 (custom-theme-merge-theme): Callers to load-theme changed.
17230
17231 2011-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
17232
17233 * thingatpt.el (thing-at-point-short-url-regexp): Require that
17234 short URLs have at least one dot in them (bug #7614).
17235
17236 * progmodes/grep.el (rgrep): Bind `process-connection-type' to
17237 nil, because using a pty is apparently too slow (bug #895).
17238
17239 2011-06-29 Lars Magne Ingebrigtsen <larsi@gnus.org>
17240
17241 * mail/sendmail.el (sendmail-query-once): New function.
17242 (sendmail-query-once-function): New variable.
17243
17244 2011-06-29 Glenn Morris <rgm@gnu.org>
17245
17246 * files.el (auto-mode-alist): Add .f03, .f08 for f90-mode.
17247
17248 * ses.el (top-level): Require cl when compiling.
17249 (ses-set-localvars): Fix error statement.
17250 Call it at compile time to silence a storm of warnings.
17251
17252 2011-06-29 Martin Rudalics <rudalics@gmx.at>
17253
17254 * window.el (normalize-live-buffer): Rename to
17255 window-normalize-buffer.
17256 (normalize-live-frame): Rename to window-normalize-frame.
17257 (normalize-any-window): Rename to window-normalize-any-window.
17258 (normalize-live-window): Rename to window-normalize-live-window.
17259 (make-window-atom): Rename to window-make-atom.
17260 (window-resize-reset): Rename to window--resize-reset.
17261 (window-resize-reset-1): Rename to window--resize-reset-1.
17262 (resize-mini-window): Rename to window--resize-mini-window.
17263 (resize-subwindows-skip-p): Rename to
17264 window--resize-subwindows-skip-p.
17265 (resize-subwindows-normal): Rename to
17266 window--resize-subwindows-normal.
17267 (resize-subwindows): Rename to window--resize-subwindows.
17268 (resize-other-windows): Rename to window--resize-siblings.
17269 (resize-this-window): Rename to window--resize-this-window.
17270 (resize-root-window): Rename to window--resize-root-window.
17271 (resize-root-window-vertically): Rename to
17272 window--resize-root-window-vertically.
17273 (normalize-buffer-to-display): Rename to
17274 window-normalize-buffer-to-display.
17275 (normalize-buffer-to-switch-to): Rename to
17276 window-normalize-buffer-to-switch-to.
17277 Correspondingly update all callers of the functions listed
17278 above.
17279 (display-buffer-alist, display-buffer-normalize-arguments)
17280 (display-buffer-normalize-options, display-buffer)
17281 (display-buffer-alist-set): Use "function" instead of
17282 "fun-with-args".
17283
17284 2011-06-28 Chong Yidong <cyd@stupidchicken.com>
17285
17286 * mail/emacsbug.el (report-emacs-bug): Handle non-gnu bug
17287 addresses more clearly. Add hyperlinks for bug-gnu-emacs and
17288 debbugs.gnu.org. Mention acknowledgment email.
17289
17290 2011-06-28 Lars Magne Ingebrigtsen <larsi@gnus.org>
17291
17292 * mail/smtpmail.el (smtpmail-send-it): Leave off changing the
17293 buffer multibyteness, since it shouldn't matter.
17294
17295 2011-06-28 Martin Rudalics <rudalics@gmx.at>
17296
17297 * window.el (display-buffer-in-side-window): Handle dedicated
17298 windows as in display-buffer-reuse-window.
17299 (display-buffer-normalize-alist): Use value of override
17300 specifier.
17301 (display-buffer-normalize-specifiers): Use value of
17302 other-window-means-other-frame specifier.
17303 (display-buffer-alist): Rewrite some texts in widgets.
17304 (display-buffer): Spread arguments when calling function
17305 specified by fun-with-args.
17306
17307 2011-06-28 Deniz Dogan <deniz@dogan.se>
17308
17309 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
17310 Unnest `let'.
17311
17312 * textmodes/css-mode.el (css-font-lock-keywords): Fix grouped
17313 selectors (Bug#5732).
17314 (css-proprietary-nmstart-re): Use `regexp-opt'.
17315
17316 2011-06-27 Jari Aalto <jari.aalto@cante.net>
17317
17318 * eshell/em-ls.el: Display `ls -l' dates in ISO format (Bug#8440).
17319 (eshell-ls-date-format): New defcustom.
17320 (eshell-ls-file): Use it.
17321
17322 2011-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
17323
17324 * help-fns.el (describe-variable): Fix message for terminal-local vars.
17325
17326 2011-06-27 Katsumi Yamaoka <yamaoka@jpl.org>
17327
17328 * net/ange-ftp.el: Allow loading .gz files (Bug#6923).
17329 (ange-ftp-make-tmp-name): New arg.
17330 (ange-ftp-file-local-copy): Use it.
17331
17332 2011-06-27 Jambunathan K <kjambunathan@gmail.com>
17333
17334 * tar-mode.el (tar-untar-buffer): Set coding-system-for-write to
17335 no-conversion (Bug#8870).
17336
17337 2011-06-27 Martin Rudalics <rudalics@gmx.at>
17338
17339 * window.el (window-right, window-left, window-child)
17340 (window-child-count, window-last-child)
17341 (window-iso-combination-p, walk-window-tree-1)
17342 (window-atom-check-1, window-tree-1, delete-window)
17343 (window-state-get-1, display-buffer-even-window-sizes): Adapt to
17344 new naming conventions - window-vchild, window-hchild,
17345 window-next and window-prev are now called window-top-child,
17346 window-left-child, window-next-sibling and window-prev-sibling
17347 respectively.
17348 (resize-window-reset): Rename to window-resize-reset.
17349 (resize-window-reset-1): Rename to window-resize-reset-1.
17350 (resize-window): Rename to window-resize.
17351 (window-min-height, window-min-width)
17352 (resize-mini-window, resize-this-window, resize-root-window)
17353 (resize-root-window-vertically, adjust-window-trailing-edge)
17354 (enlarge-window, shrink-window, maximize-window)
17355 (minimize-window, delete-window, quit-restore-window)
17356 (split-window, balance-windows, balance-windows-area-adjust)
17357 (balance-windows-area, window-state-put-2)
17358 (display-buffer-even-window-sizes, display-buffer-set-height)
17359 (display-buffer-set-width, set-window-text-height)
17360 (fit-window-to-buffer): Rename all "resize-window" prefixed
17361 calls to use the "window-resize" prefix convention.
17362 (display-buffer-alist): Fix symbol for label specifier.
17363 (display-buffer-reuse-window): Set reuse-dedicated to cdr of
17364 corresponding specifier.
17365 Reported by Juanma Barranquero <lekktu@gmail.com>.
17366
17367 2011-06-27 Vincent Belaïche <vincentb1@users.sourceforge.net>
17368
17369 * ses.el (ses-destroy-cell-variable-range): Fix heading comment
17370 convention.
17371 (ses-call-printer): Does not pass an empty string to formatter when the
17372 cell is empty to keep from barking printer Calc math-format-value.
17373
17374 2011-06-27 Richard Stallman <rms@gnu.org>
17375
17376 * battery.el (battery-mode-line-limit): New variable.
17377 (battery-update): Handle it.
17378
17379 * mail/rmailmm.el (rmail-mime-process-multipart):
17380 Handle truncated messages.
17381
17382 2011-06-27 Glenn Morris <rgm@gnu.org>
17383
17384 * progmodes/flymake.el (flymake-err-line-patterns):
17385 Allow for column numbers in the ant/javac pattern. (Bug#8866)
17386
17387 2011-06-27 Vincent Belaïche <vincentb1@users.sourceforge.net>
17388
17389 * ses.el (ses-relocate-range): Keep rest of arguments for ses-range.
17390 (ses--clean-!, ses--clean-_): New functions.
17391 (ses-range): Add configurability of readout order, and conversion
17392 to Calc vector.
17393
17394 * ses.el (ses-repair-cell-reference-all): New function.
17395 (ses-cell-symbol): Set macro as safe, so that it can be used in
17396 formulas.
17397
17398 * ses.el: Update cycle detection algorithm.
17399 (ses-localvars): Add ses--Dijkstra-attempt-nb and
17400 ses--Dijkstra-weight-bound, and initial values thereof when applicable.
17401 (ses-set-localvars): New function.
17402 (ses-make-cell): Add property-list as a cell element.
17403 (ses-cell-property-get-fun, ses-cell-property-get)
17404 (ses-cell-property-delq-fun, ses-cell-property-set-fun)
17405 (ses-cell-property-pop-fun, ses-cell-property-get-handle-fun):
17406 New functions.
17407 (ses-cell-property-set, ses-cell-property-pop)
17408 (ses-cell-property-get-handle): New macro.
17409 (ses-cell-property-handle-car, ses-cell-property-handle-setcar):
17410 New aliases, used for code readability.
17411 (ses-calculate-cell, ses-update-cells): Use Dijkstra algorithm for
17412 cycle detection.
17413 (ses-self-reference-early-detection): New defcustom.
17414 (ses-formula-references): Robustify against self-referring cells.
17415 (ses-mode): Use ses-set-localvars.
17416 (ses-command-hook): Add call to ses-initialize-Dijkstra-attempt
17417 before lauching the update processing.
17418 (ses-initialize-Dijkstra-attempt): New function.
17419 (ses-recalculate-cell): Update for cycle detection based on
17420 Dijkstra algorithm.
17421
17422 * ses.el: Fix commenting and indenting convention.
17423
17424 2011-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
17425
17426 * bs.el (bs-cycle-next): Complete last change.
17427
17428 2011-06-27 Drew Adams <drew.adams@oracle.com>
17429
17430 * faces.el (list-faces-display): Add help-mode-map to output (bug#8939).
17431
17432 2011-06-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
17433
17434 * net/network-stream.el (network-stream-open-starttls):
17435 Don't re-get capabilities unless we've reestablished connection.
17436 (network-stream-open-starttls): Fix stupid typo with gnutls-clii.
17437
17438 * mail/smtpmail.el (smtpmail-via-smtp): Bind coding-system-for-*
17439 to binary to possibly avoid line encoding issues on Windows (among
17440 other things).
17441
17442 2011-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
17443
17444 * net/network-stream.el (open-network-stream): Return an :error
17445 saying what the problem was, if possible.
17446
17447 * mail/smtpmail.el (smtpmail-via-smtp): Report the error from the
17448 server.
17449
17450 * net/network-stream.el (network-stream-open-starttls): If we
17451 wanted to use STARTTLS, and the server offered it, but we weren't
17452 able to because we had no STARTTLS support, then close the connection.
17453 (open-network-stream): Return an :error element, if present.
17454
17455 2011-06-26 Chong Yidong <cyd@stupidchicken.com>
17456
17457 * hl-line.el (hl-line-sticky-flag): Doc fix.
17458 (global-hl-line-sticky-flag): New option (Bug#8323).
17459 (global-hl-line-highlight): Obey it.
17460
17461 * vc/vc.el (vc-revert-show-diff): Default to t.
17462
17463 2011-06-26 Ken Manheimer <ken.manheimer@gmail.com>
17464
17465 * allout-widgets.el (allout-widgets-post-command-business):
17466 Stop decorating intermediate isearch matches. They're not being
17467 undecorated when an isearch is continued past, and isearch
17468 automatically collapses them. This leads to "widget leaks", where
17469 decorated items accumulate in collapsed areas. Lines with lots of
17470 hidden widgets can slow down cursor travel, substantially.
17471 Too much complicated machinery would be needed to ensure undecoration,
17472 so we're doing without this nicety.
17473
17474 (allout-widgets-tally-string): Don't try to do a hash-table-count
17475 of allout-widgets-tally when it's nil. This eliminates spurious "Error
17476 during redisplay: (wrong-type-argument hash-table-p nil)" warnings in
17477 *Messages* when allout-widgets-maintain-tally is t.
17478
17479 2011-06-26 Martin Rudalics <rudalics@gmx.at>
17480
17481 * window.el (display-buffer-normalize-argument): Rename to
17482 display-buffer-normalize-arguments. Handle special meaning of
17483 LABEL argument. Respect special-display-function when popping up
17484 a new frame. Fix code searching for a window showing the buffer
17485 on another frame.
17486 (display-buffer-normalize-specifiers):
17487 Call display-buffer-normalize-arguments.
17488 (display-buffer-in-window): Don't undedicate the window if its
17489 buffer remains the same.
17490 Reported by Drew Adams <drew.adams@oracle.com>.
17491 (display-buffer-alist): Add choice for same-window macro
17492 specfier.
17493 (display-buffer): Mention special meaning of LABEL argument in
17494 doc-string. Fix quoting. Don't pop up a new frame even as
17495 fallback.
17496
17497 2011-06-26 Juanma Barranquero <lekktu@gmail.com>
17498
17499 * bs.el (bs-cycle-next): Pass current buffer to `bury-buffer' to
17500 avoid deleting the current window in some cases (bug#8911).
17501
17502 2011-06-26 Andreas Schwab <schwab@linux-m68k.org>
17503
17504 * emacs-lisp/smie.el (smie-bnf->prec2): Fix last change.
17505 (Bug#8934)
17506
17507 2011-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
17508
17509 * net/network-stream.el (network-stream-open-starttls):
17510 Use built-in TLS support if `gnutls-available-p' is true.
17511 (network-stream-open-tls): Ditto.
17512
17513 2011-06-26 Leo Liu <sdl.web@gmail.com>
17514
17515 * register.el (registerv): New struct.
17516 (registerv-make): New function.
17517 (jump-to-register, describe-register-1, insert-register):
17518 Support the jump-func, print-func and insert-func slot of a registerv
17519 struct. (Bug#8415)
17520
17521 2011-06-26 Chong Yidong <cyd@stupidchicken.com>
17522
17523 * vc/vc.el (vc-revert-show-diff): New defcustom.
17524 (vc-diff-internal): New arg specifying diff buffer.
17525 (vc-revert): Obey vc-revert-show-diff. If we show a diff, don't
17526 reuse an existing *vc-diff* buffer (Bug#8927).
17527
17528 * progmodes/cperl-mode.el (cperl-mode): Derive from prog-mode.
17529
17530 2011-06-26 Glenn Morris <rgm@gnu.org>
17531
17532 * progmodes/f90.el (f90-critical-indent): New option.
17533 (f90-font-lock-keywords-2, f90-blocks-re, f90-end-block-re)
17534 (f90-start-block-re, f90-mode-abbrev-table): Add block, critical.
17535 (f90-mode): Doc fix.
17536 (f90-looking-at-critical, f90-looking-at-end-critical): New funcs.
17537 (f90-no-block-limit, f90-calculate-indent, f90-end-of-block)
17538 (f90-beginning-of-block, f90-next-block, f90-indent-region)
17539 (f90-match-end): Handle block, critical.
17540
17541 2011-06-25 Glenn Morris <rgm@gnu.org>
17542
17543 * calendar/diary-lib.el (diary-included-files): Doc fix.
17544 (diary-include-files): New function, extracted from
17545 diary-include-other-diary-files and diary-mark-included-diary-files.
17546 (diary-include-other-diary-files, diary-mark-included-diary-files):
17547 Just call diary-include-files.
17548 (diary-mark-entries): Reset diary-included-files on first call.
17549
17550 * calendar/diary-lib.el (diary-mark-entries)
17551 (diary-mark-included-diary-files):
17552 Visit included diary-files in temp buffers.
17553
17554 * progmodes/f90.el (f90-keywords-re, f90-font-lock-keywords-1)
17555 (f90-blocks-re, f90-program-block-re, f90-end-block-re)
17556 (f90-start-block-re, f90-imenu-generic-expression)
17557 (f90-looking-at-program-block-start, f90-no-block-limit):
17558 Add support for submodules.
17559
17560 * progmodes/f90.el (f90-keywords-re, f90-keywords-level-3-re)
17561 (f90-procedures-re, f90-constants-re): Add some F2008 stuff.
17562
17563 2011-06-25 Eli Zaretskii <eliz@gnu.org>
17564
17565 * net/ange-ftp.el (ange-ftp-insert-file-contents): Let-bind
17566 buffer-file-type before setting its value, to avoid disastrous
17567 global effects on decoding files for DOS/Windows systems. (Bug#8780)
17568
17569 2011-06-25 Juanma Barranquero <lekktu@gmail.com>
17570
17571 * allout.el (allout-unload-function): Pass -1 to `allout-mode'.
17572
17573 * ses.el (ses-unload-function):
17574 * emacs-lisp/re-builder.el (re-builder-unload-function): Simplify.
17575
17576 * proced.el (proced-unload-function):
17577 * progmodes/cperl-mode.el (cperl-mode-unload-function): Remove.
17578
17579 2011-06-25 Andreas Rottmann <a.rottmann@gmx.at>
17580
17581 * server.el (server-create-window-system-frame): Add parameters arg.
17582 (server-process-filter): Doc fix. Handle frame-parameters.
17583
17584 2011-06-25 Juanma Barranquero <lekktu@gmail.com>
17585
17586 Fix bug#8730, bug#8781.
17587
17588 * loadhist.el (unload--set-major-mode): New function.
17589 (unload-feature): Use it.
17590
17591 * progmodes/python.el (python-after-info-look): Add autoload cookie.
17592 (python-unload-function): New function.
17593
17594 2011-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
17595
17596 * mail/rmail.el (rmail-show-message-1): Use restore-buffer-modified-p.
17597
17598 2011-06-25 Giuseppe Scrivano <gscrivano@gnu.org>
17599
17600 * net/browse-url.el (browse-url-firefox-program): Add icecat to
17601 the candidates list.
17602
17603 2011-06-24 Juanma Barranquero <lekktu@gmail.com>
17604
17605 * progmodes/verilog-mode.el (verilog-mode): Fix test for bound variable.
17606
17607 2011-06-23 Richard Stallman <rms@gnu.org>
17608
17609 * mail/rmail.el: Going to grep hit in Rmail buffer finds the message.
17610 (rmail-variables): Set next-error-move-function.
17611 (rmail-what-message): Take argument POS.
17612 (rmail-next-error-move): New function.
17613
17614 2011-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
17615
17616 * emacs-lisp/smie.el (smie-bnf->prec2): Give more understandable error
17617 messages for adjacent non-terminals.
17618
17619 2011-06-23 Richard Stallman <rms@gnu.org>
17620
17621 * mail/rmail.el (rmail-retry-ignored-headers): Add message-id.
17622 (rmail-show-message-1): Preserve buffer modified flag.
17623 (rmail-start-mail): Don't specify use of rmail-mail-return;
17624 that's done by mail-bury now.
17625 (rmail-mail-return): Handle arg NEWBUF.
17626
17627 2011-06-23 Michael Albinus <michael.albinus@gmx.de>
17628
17629 * net/tramp-sh.el (tramp-method-out-of-band-p): Check, whether
17630 SIZE is a number.
17631
17632 2011-06-23 Martin Rudalics <rudalics@gmx.at>
17633
17634 * window.el (get-lru-window, get-mru-window)
17635 (get-largest-window): Never return a minibuffer window.
17636 (display-buffer-pop-up-window): Fix a bug that could lead to
17637 reusing the minibuffer window.
17638 (display-buffer): Pass original specifier argument to
17639 display-buffer-function instead of the normalized one.
17640 Reported by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
17641
17642 2011-06-22 Leo Liu <sdl.web@gmail.com>
17643
17644 * minibuffer.el (completing-read-function)
17645 (completing-read-default): Move from minibuf.c.
17646
17647 2011-06-22 Richard Stallman <rms@gnu.org>
17648
17649 * mail/sendmail.el (mail-bury): If Rmail is in use, return nicely
17650 to Rmail even if not started by a special Rmail command.
17651
17652 * mail/rmailmm.el (rmail-insert-mime-forwarded-message):
17653 Copy the buffer currently showing just one message.
17654
17655 2011-06-22 Roland Winkler <winkler@gnu.org>
17656
17657 * textmodes/bibtex.el (bibtex-entry-update): Use mapc.
17658 (bibtex-clean-entry): First delete the old key so that a
17659 customized algorithm for generating the new key does not get
17660 confused by the old key.
17661 (bibtex-url): Obey regexp of first step.
17662 (bibtex-search-entries): Do not use add-to-list with local
17663 list-var.
17664
17665 2011-06-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
17666
17667 * mail/smtpmail.el (smtpmail-try-auth-methods): If the user has
17668 stored a user name, then query for the password first, instead of
17669 waiting for SMTP to give an error message and the trying again.
17670
17671 2011-06-22 Lawrence Mitchell <wence@gmx.li>
17672
17673 * net/browse-url.el (browse-url-xdg-open): Use 0, rather than nil
17674 BUFFER in call-process.
17675
17676 2011-06-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
17677
17678 * mail/smtpmail.el (smtpmail-via-smtp): Make sure we don't send
17679 QUIT twice.
17680 (smtpmail-try-auth-methods): Require user name and password from
17681 auth-source.
17682
17683 2011-06-22 Martin Rudalics <rudalics@gmx.at>
17684
17685 * window.el (display-buffer-default-specifiers)
17686 (display-buffer-alist): Remove entries for pop-up-frame-alist.
17687 Suggested by Katsumi Yamaoka <yamaoka@jpl.org>.
17688 (split-window): Normalize SIDE argument (Bug#8916).
17689
17690 * frame.el (pop-up-frame-alist, pop-up-frame-function)
17691 (special-display-frame-alist, special-display-popup-frame):
17692 Remove duplicate declarations. These are now in window.el.
17693
17694 2011-06-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
17695
17696 * mail/smtpmail.el (smtpmail-via-smtp):
17697 Set :use-starttls-if-possible so that we always use STARTTLS if the
17698 server supports it. SMTP servers that support STARTTLS commonly
17699 require it.
17700
17701 * net/network-stream.el (network-stream-open-starttls): Support
17702 upgrading to STARTTLS always, even if we don't have built-in support.
17703 (open-network-stream): Add the :always-query-capabilities keyword.
17704
17705 * mail/smtpmail.el: Rewritten to do opportunistic STARTTLS
17706 upgrades with `open-network-stream', and rely solely on
17707 auth-source for all credentials. Big changes throughout the file,
17708 but in particular:
17709 (smtpmail-auth-credentials): Remove.
17710 (smtpmail-starttls-credentials): Remove.
17711 (smtpmail-via-smtp): Check for servers saying they want AUTH after
17712 MAIL FROM, too.
17713
17714 * net/network-stream.el (network-stream-open-starttls):
17715 Provide support for client certificates both for external and built-in
17716 STARTTLS.
17717 (auth-source): Require.
17718 (open-network-stream): Document the :client-certificate keyword.
17719 (network-stream-certificate): Change cert-cert to cert and
17720 cert-key to key.
17721
17722 2011-06-21 Michael Albinus <michael.albinus@gmx.de>
17723
17724 * net/tramp-cache.el (top): Don't load the persistency file when
17725 "emacs -Q" has been called.
17726
17727 2011-06-21 Tim Harper <timcharper@gmail.com>
17728
17729 * term/ns-win.el (ns-initialize-window-system):
17730 Set application-specific `ApplePressAndHoldEnabled' system
17731 resource to NO as it is not yet supported by the NS port.
17732
17733 2011-06-21 Juanma Barranquero <lekktu@gmail.com>
17734
17735 * misc.el (list-dynamic-libraries--refresh): Compute header here...
17736 (list-dynamic-libraries): ...not here.
17737
17738 2011-06-21 Leo Liu <sdl.web@gmail.com>
17739
17740 * subr.el (sha1): Implement sha1 using secure-hash.
17741
17742 2011-06-21 Martin Rudalics <rudalics@gmx.at>
17743
17744 * window.el (display-buffer-alist): In default value do not
17745 enforce searching a window on any but the selected frame.
17746 Reported by Katsumi Yamaoka <yamaoka@jpl.org>.
17747 (display-buffer-select-window): Remove function.
17748 (display-buffer-in-window): When a window on another frame gets
17749 reused, do not select it any more but just raise its frame if
17750 necessary (Bug#8851) and (Bug#8856).
17751 (display-buffer-normalize-options): Handle pop-up-frames related
17752 options more faithfully.
17753 (pop-to-buffer): Don't rely on `display-buffer' selecting the
17754 window if it is on another frame.
17755 (display-buffer-alist, display-buffer-default-specifiers):
17756 Don't make new frame unsplittable by default.
17757 (display-buffer-normalize-argument): Fix doc-string typo and use
17758 'same-frame-other-window instead of 'other-window when associating
17759 with display-buffer-macro-specifiers.
17760
17761 2011-06-21 Vincent Belaïche <vincent.b.1@hotmail.fr>
17762
17763 * play/5x5.el (5x5-solve-rotate-left, 5x5-solve-rotate-right):
17764 New functions.
17765 (5x5-mode-map, 5x5-mode-menu): Bind them.
17766 (5x5-draw-grid): Tweak the solver's rendering.
17767
17768 2011-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
17769
17770 * progmodes/compile.el (compilation-error-regexp-alist-alist): Rename
17771 `caml' to `python-tracebacks-and-caml'; allow leading tabs (bug#8585).
17772
17773 2011-06-21 Drew Adams <drew.adams@oracle.com>
17774
17775 * menu-bar.el: Use function variable instead of switch-to-buffer.
17776 (menu-bar-select-buffer-function): New variable.
17777 (menu-bar-update-buffers): Use it (bug#8876).
17778
17779 2011-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
17780
17781 * emacs-lisp/bytecomp.el (add-to-list): Add handler to check the
17782 variable's status.
17783
17784 2011-06-20 Jan Djärv <jan.h.d@swipnet.se>
17785
17786 * x-dnd.el (x-dnd-version-from-flags)
17787 (x-dnd-more-than-3-from-flags): New functions that handle long-as-cons
17788 and long as number (Bug#8899).
17789 (x-dnd-handle-xdnd): Call functions above (Bug#8899).
17790
17791 2011-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
17792
17793 * minibuffer.el (completion-metadata): Add `metadata' to the alist.
17794 (completion-try-completion, completion-all-completions): Compute the
17795 metadata argument if it's missing; make it optional (bug#8795).
17796
17797 * wid-edit.el: Use lex-bind and move towards completion-at-point.
17798 (widget-complete): Use new :completion-function property.
17799 (widget-completions-at-point): New function.
17800 (default): Use :completion-function instead of :complete.
17801 (widget-default-completions): Rename from widget-default-complete;
17802 Rewrite.
17803 (widget-string-complete, widget-file-complete, widget-color-complete):
17804 Remove functions.
17805 (file, symbol, function, variable, coding-system, color):
17806 * international/mule-cmds.el (default-input-method, charset)
17807 (language-info-custom-alist):
17808 * cus-edit.el (face): Use new property :completions.
17809
17810 * progmodes/pascal.el (pascal-completions-at-point): New function.
17811 (pascal-mode): Use it.
17812 (pascal-mode-map): Use completion-at-point.
17813 (pascal-toggle-completions): Make obsolete.
17814 (pascal-complete-word, pascal-show-completions):
17815 * progmodes/octave-mod.el (octave-complete-symbol):
17816 Redefine as obsolete alias.
17817 * progmodes/octave-inf.el (inferior-octave-completion-at-point):
17818 Signal absence of completion info for old Octave,
17819 (inferior-octave-complete): Redefine as obsolete alias.
17820 * progmodes/meta-mode.el: Use lexical-binding and completion-at-point.
17821 (meta-completions-at-point): Rename from meta-complete-symbol and
17822 adapt it for use on completion-at-point-functions.
17823 (meta-common-mode): Use it.
17824 (meta-looking-at-backward, meta-match-buffer): Remove.
17825 (meta-complete-symbol): Redefine as obsolete alias.
17826 (meta-common-mode-map): Use completion-at-point.
17827 * progmodes/make-mode.el: Use lexical-binding and completion-at-point.
17828 (makefile-mode-map): Use completion-at-point.
17829 (makefile-completions-at-point): Rename from makefile-complete and
17830 adapt it for use on completion-at-point-functions.
17831 (makefile-mode): Use it.
17832 (makefile-complete): Redefine as obsolete alias.
17833
17834 2011-06-20 Deniz Dogan <deniz@dogan.se>
17835
17836 * net/rcirc.el: Delete trailing whitespaces once and for all.
17837
17838 2011-06-20 Daniel Colascione <dan.colascione@gmail.com>
17839
17840 * emacs-lisp/syntax.el (syntax-ppss): Further improve docstring.
17841
17842 2011-06-19 Chong Yidong <cyd@stupidchicken.com>
17843
17844 * files.el (auto-mode-alist): Entry for m2-mode (Bug#8852).
17845
17846 * info.el (Info-apropos-toc-nodes): Minor doc fix (Bug#8833).
17847
17848 2011-06-19 Martin Rudalics <rudalics@gmx.at>
17849
17850 * window.el (display-buffer-other-window-means-other-frame):
17851 Call display-buffer-normalize-alist.
17852 (display-buffer-normalize-specifiers-1): Rename to
17853 display-buffer-normalize-argument. New argument other-frame.
17854 Rewrite.
17855 (display-buffer-normalize-specifiers-2): Rename to
17856 display-buffer-normalize-options.
17857 (display-buffer-normalize-alist-1): New function.
17858 (display-buffer-normalize-specifiers-3): Rename to
17859 display-buffer-normalize-alist.
17860 Call display-buffer-normalize-alist-1.
17861 (display-buffer-normalize-options-inhibit): New variable.
17862 (display-buffer-normalize-specifiers): Rewrite calling
17863 display-buffer-normalize-alist,
17864 display-buffer-normalize-argument, and
17865 display-buffer-normalize-options. Don't call the latter if
17866 display-buffer-normalize-options-inhibit is non-nil.
17867 (frame-auto-delete): New option.
17868 (window-deletable-p): Use frame-auto-delete.
17869 (window-list-no-nils, window-state-ignored-parameters)
17870 (window-state-get-1, window-state-get, window-state-put-list)
17871 (window-state-put-1, window-state-put-2, window-state-put):
17872 New functions.
17873 (display-buffer-normalize-options): Move special-display-p group
17874 after pop-up-frame group (Bug#8851) and (Bug#8856).
17875
17876 2011-06-18 Chong Yidong <cyd@stupidchicken.com>
17877
17878 * emacs-lisp/rx.el (rx-constituents): Add support for numbered
17879 groups (Bug#8776).
17880 (rx-submatch-n): New function.
17881 (rx): Document it.
17882
17883 * dired-x.el (dired-mark-unmarked-files): Fix interactive spec
17884 (Bug#8768).
17885
17886 * replace.el (occur-mode-map): Set occur-edit-mode binding to "e".
17887
17888 * textmodes/fill.el (default-justification): Add :safe (Bug#8879).
17889
17890 * cus-face.el (custom-declare-face): Call custom-theme-recalc face
17891 anytime existing face settings are present (Bug#8889).
17892
17893 * progmodes/delphi.el (delphi-mode-syntax-table): Use defvar.
17894 (delphi-mode): Use define-derived-mode to inherit from prog-mode.
17895 Remove unused argument.
17896
17897 2011-06-18 Martin Rudalics <rudalics@gmx.at>
17898
17899 * window.el (display-buffer-default-specifiers):
17900 Remove pop-up-frame. Add pop-up-window-min-height,
17901 pop-up-window-min-width, and another reuse-window specifier
17902 (Bug#8882). Reported by Dan Nicolaescu <dann@gnu.org>.
17903 (display-buffer-normalize-specifiers-2):
17904 Handle split-height-threshold and split-width-threshold also when
17905 pop-up-windows is unset. Add a reuse-window specifier for the
17906 case popping up a new window fails.
17907 (special-display-popup-frame): Remove double quoting.
17908 (display-buffer-normalize-specifiers-1): Fix thinko.
17909
17910 2011-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
17911
17912 * shell.el (shell-completion-vars): Set pcomplete-termination-string
17913 according to comint-completion-addsuffix.
17914
17915 * pcomplete.el: Convert to lexical binding and fix bug#8819.
17916 (pcomplete-suffix-list): Mark as obsolete.
17917 (pcomplete-completions-at-point): Capture pcomplete-norm-func and
17918 pcomplete-seen in the closure.
17919 (pcomplete-comint-setup): Setup completion-at-point as well.
17920 (pcomplete--entries): New function.
17921 (pcomplete--env-regexp): New var.
17922 (pcomplete-entries): Rewrite to work with partial-completion and
17923 without relying on pcomplete-suffix-list.
17924 (pcomplete-pare-list): Remove, unused.
17925
17926 2011-06-17 Martin Rudalics <rudalics@gmx.at>
17927
17928 * window.el (display-buffer-alist): Set pop-up-window-min-height
17929 and pop-up-window-min-width in default value. Reported by
17930 Thierry Volpiatto <thierry.volpiatto@gmail.com>. New specifier
17931 other-window-means-other-frame.
17932 (display-buffer-macro-specifiers): Comment out entry for
17933 other-window specifier.
17934 (display-buffer-other-window-means-other-frame): New function.
17935 (display-buffer-normalize-specifiers-1): New arguments
17936 buffer-name and label. Treat other-window case specially.
17937 (display-buffer-normalize-specifiers-2): Treat other-window case
17938 specially.
17939 (display-buffer-normalize-specifiers-3): New function.
17940 (display-buffer-normalize-specifiers):
17941 Call display-buffer-normalize-specifiers-3.
17942
17943 2011-06-17 Martin Rudalics <rudalics@gmx.at>
17944
17945 * window.el (same-window-p): Fix two typos introduced when
17946 adding with-no-warnings.
17947 (display-buffer-normalize-specifiers-1): Don't check
17948 pop-up-frames for 'unset initialization.
17949 (display-buffer-normalize-specifiers-2): Major rewrite using
17950 special-display-p and same-window-p (Bug#8851) and (Bug#8856).
17951 (pop-up-frames, display-buffer-reuse-frames)
17952 (display-buffer-mark-dedicated): Don't initialize to 'unset.
17953 Suggested by David Engster <deng@randomsample.de>.
17954 (even-window-heights): Initialize to 'unset.
17955 (display-buffer-alist-set): Handle new 'unset initializations.
17956 (display-buffer-macro-specifiers): Don't pop up a new frame in the
17957 other window case.
17958
17959 2011-06-16 Martin Rudalics <rudalics@gmx.at>
17960
17961 * window.el (display-buffer-normalize-specifiers-1):
17962 Respect current value of pop-up-frames for most reasonable values of
17963 second argument of display-buffer (Bug#8865).
17964 (switch-to-buffer-same-frame, switch-to-buffer-other-window)
17965 (switch-to-buffer-other-window-same-frame)
17966 (switch-to-buffer-other-frame): Fix doc-strings. Reported by Drew
17967 Adams (Bug#8875).
17968 (display-buffer): Don't check noninteractive when calling
17969 display-buffer-pop-up-frame.
17970 (display-buffer-pop-up-frame): Never pop up a frame in
17971 noninteractive mode (Bug#8857).
17972 (enlarge-window, shrink-window): Don't report an error when the
17973 window can't be resized as requested (Bug#8862).
17974
17975 2011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
17976
17977 * pcmpl-rpm.el (pcomplete/rpm): Minor simplification.
17978
17979 * emacs-lisp/debug.el (debug): Don't leave the buffer in Debugger.
17980
17981 * abbrev.el (define-abbrev-table): Don't add a table multiple times.
17982
17983 2011-06-15 Alan Mackenzie <acm@muc.de>
17984
17985 * progmodes/cc-fonts.el (c-font-lock-declarations): 1: Whilst checking
17986 for declarators, disable knr checking to speed up for normal files.
17987 2: Refactor, replacing a sequence of nested if forms by a cond form.
17988
17989 2011-06-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
17990
17991 * net/network-stream.el (open-network-stream): Add the keyword
17992 :always-query-capabilities for the case where you want to force a
17993 `plain' network connection, but the protocol still requires the
17994 capabilitiy command (i.e., SMTP and EHLO).
17995
17996 * subr.el (process-live-p): Rename from `process-alive-p' for
17997 consistency with other `-live-p' functions.
17998
17999 2011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
18000
18001 * window.el (same-window-buffer-names, same-window-regexps)
18002 (special-display-frame-alist, special-display-popup-frame)
18003 (special-display-function, special-display-buffer-names)
18004 (special-display-regexps, pop-up-frame-alist)
18005 (pop-up-frame-function, pop-up-frames, display-buffer-reuse-frames)
18006 (pop-up-windows, split-window-preferred-function)
18007 (split-height-threshold, split-width-threshold, even-window-heights)
18008 (display-buffer-mark-dedicated): Don't encourage the use of
18009 display-buffer-alist from Elisp code.
18010
18011 2011-06-15 Dan Nicolaescu <dann@ics.uci.edu>
18012
18013 * progmodes/python.el (python-mode): Derive from prog-mode.
18014 * progmodes/ps-mode.el (ps-mode):
18015 * progmodes/mixal-mode.el (mixal-mode):
18016 * progmodes/cfengine.el (cfengine-mode):
18017 * progmodes/ld-script.el (ld-script-mode): Likewise.
18018
18019 2011-06-15 Martin Rudalics <rudalics@gmx.at>
18020
18021 * window.el (display-buffer-alist): Trim default value to avoid
18022 popping up a new frame (Bug#8857) or reusing an arbitrary window
18023 on another frame.
18024 (display-buffer): Do not fall back on popping up a new frame in
18025 batch mode (Bug#8857).
18026
18027 2011-06-14 Chong Yidong <cyd@stupidchicken.com>
18028
18029 * cus-theme.el (describe-theme-1): Use custom-theme-p.
18030 (custom-theme-summary): New function.
18031 (customize-themes): Use it.
18032
18033 2011-06-13 Glenn Morris <rgm@gnu.org>
18034
18035 * cus-dep.el (custom-make-dependencies): Use up command-line-args-left.
18036
18037 2011-06-13 Martin Rudalics <rudalics@gmx.at>
18038
18039 * help.el (help-window): Remove variable.
18040 (help-window-point-marker, temp-buffer-max-height)
18041 (temp-buffer-resize-mode, help-window-select): Rewrite doc-strings.
18042 (help-print-return-message): Don't set help-window.
18043 (resize-temp-buffer-window): Rewrite cod eand doc-string.
18044 (help-window-setup-finish): Remove.
18045 (help-window-display-message, help-window-setup)
18046 (with-help-window): Major rewrite based on new
18047 display-buffer-window variable.
18048
18049 * help-mode.el (help-mode-finish): Remove help-window related
18050 code.
18051
18052 * view.el (view-exits-all-viewing-windows): Remove reference to
18053 view-return-to-alist in doc-string.
18054 (view-return-to-alist): Make obsolete.
18055 (view-buffer): Call pop-to-buffer-same-window and remove
18056 undo-window code.
18057 (view-buffer-other-window): Call pop-to-buffer-other-window and
18058 simplify code. Ignore second argument.
18059 (view-buffer-other-frame): Call pop-to-buffer-other-frame and
18060 simplify code. Ignore second argument.
18061 (view-return-to-alist-update): Make obsolete.
18062 (view-mode-enter): Rename second argument to QUIT-RESTORE.
18063 Rewrite using quit-restore window parameters.
18064 (view-mode-exit): Rename second argument to EXIT-ONLY.
18065 Rewrite using quit-restore-window.
18066 (View-exit, View-exit-and-edit, View-leave, View-quit)
18067 (View-quit-all, View-kill-and-leave): Call view-mode-exit with
18068 appropriate arguments.
18069 (view-end-message): Use quit-restore window parameter.
18070
18071 * window.el (display-buffer-function): Rewrite doc-string.
18072 (display-buffer-window, display-buffer-alist): New variables.
18073 (display-buffer-split-specifiers)
18074 (display-buffer-side-specifiers)
18075 (display-buffer-macro-specifiers): New constants.
18076 (display-buffer-even-window-sizes, display-buffer-set-height)
18077 (display-buffer-set-width, display-buffer-select-window)
18078 (display-buffer-in-window, display-buffer-reuse-window)
18079 (display-buffer-split-window-1, display-buffer-split-window)
18080 (display-buffer-split-atom-window, display-buffer-pop-up-window)
18081 (display-buffer-pop-up-frame, display-buffer-pop-up-side-window)
18082 (display-buffer-in-side-window, normalize-buffer-to-display)
18083 (display-buffer-normalize-specifiers-1)
18084 (display-buffer-normalize-specifiers-2)
18085 (display-buffer-normalize-specifiers, display-buffer-frame):
18086 New functions.
18087 (display-buffer): Major rewrite.
18088 (display-buffer-other-window, display-buffer-other-frame)
18089 (pop-to-buffer, switch-to-buffer-other-window)
18090 (switch-to-buffer-other-frame): Rewrite.
18091 (display-buffer-same-window, display-buffer-same-frame)
18092 (display-buffer-same-frame-other-window)
18093 (pop-to-buffer-same-window, pop-to-buffer-same-frame)
18094 (pop-to-buffer-other-window)
18095 (pop-to-buffer-same-frame-other-window)
18096 (pop-to-buffer-other-frame, switch-to-buffer-same-frame)
18097 (switch-to-buffer-other-window-same-frame): New functions.
18098 (same-window-p, special-display-p): Rewrite disabling warnings.
18099 Make obsolete.
18100 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
18101 (display-buffer-mark-dedicated): Initialize to symbol 'unset.
18102 Make obsolete
18103 (same-window-buffer-names, same-window-regexps)
18104 (special-display-frame-alist, special-display-popup-frame)
18105 (special-display-function, special-display-buffer-names)
18106 (special-display-regexps, pop-up-frame-alist)
18107 (pop-up-frame-function, split-window-preferred-function)
18108 (split-height-threshold, split-width-threshold)
18109 (even-window-heights): Make obsolete.
18110
18111 2011-06-12 Glenn Morris <rgm@gnu.org>
18112
18113 * term/xterm.el (terminal-init-xterm): `version' may be nil. (Bug#8838)
18114 Misc simplifications.
18115
18116 2011-06-12 Martin Rudalics <rudalics@gmx.at>
18117
18118 * window.el (window-safely-shrinkable-p): Restore function which
18119 was inadvertently removed in change from 2011-06-11. Declare as
18120 obsolete.
18121
18122 * calendar/calendar.el (calendar-generate-window):
18123 Use window-iso-combined-p instead of combination of one-window-p and
18124 window-safely-shrinkable-p.
18125
18126 2011-06-12 Glenn Morris <rgm@gnu.org>
18127
18128 * progmodes/fortran.el (fortran-mode-syntax-table):
18129 * progmodes/f90.el (f90-mode-syntax-table):
18130 Set % to punctuation. (Bug#8820)
18131 (f90-find-tag-default): Remove, no longer needed.
18132
18133 2011-06-12 Daniel Colascione <dan.colascione@gmail.com>
18134
18135 * emacs-lisp/syntax.el (syntax-ppss): Clarify which items are invalid.
18136
18137 2011-06-11 Chong Yidong <cyd@stupidchicken.com>
18138
18139 * image.el (image-animated-p): Return animation delay in seconds.
18140 Avoid bit manipulation in Lisp; use `delay' entry in the metadata.
18141 (image-animate-timeout): Remove DELAY argument. Don't assume
18142 every subimage has the same delay; get it from image-animated-p.
18143 (image-animate): Caller changed.
18144
18145 2011-06-11 Michael Albinus <michael.albinus@gmx.de>
18146
18147 * net/tramp.el (tramp-debug-message): Add `tramp-with-progress-reporter'
18148 to ignored backtrace functions.
18149
18150 2011-06-11 Glenn Morris <rgm@gnu.org>
18151
18152 * calendar/appt.el (appt-disp-window-function): Doc fix.
18153 (appt-check): Handle overlapping appointments. (Bug#8337)
18154
18155 2011-06-11 Martin Rudalics <rudalics@gmx.at>
18156
18157 * window.el (window-tree-1, window-tree): New functions, moving
18158 the latter to window.el.
18159 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
18160 (bw-find-tree-sub-1, bw-l, bw-t, bw-r, bw-b, bw-dir, bw-eqdir)
18161 (bw-refresh-edges): Remove.
18162 (balance-windows-1, balance-windows-2): New functions.
18163 (balance-windows): Rewrite in terms of window tree functions,
18164 balance-windows-1 and balance-windows-2.
18165 (bw-adjust-window): Remove.
18166 (balance-windows-area-adjust): New function with functionality of
18167 bw-adjust-window but using resize-window.
18168 (set-window-text-height): Rewrite doc-string.
18169 Use normalize-live-window and resize-window.
18170 (enlarge-window-horizontally, shrink-window-horizontally):
18171 Rename argument to DELTA.
18172 (window-buffer-height): New function.
18173 (fit-window-to-buffer, shrink-window-if-larger-than-buffer):
18174 Rewrite using new window resize routines.
18175 (kill-buffer-and-window, mouse-autoselect-window-select):
18176 Use ignore-errors instead of condition-case.
18177 (quit-window): Call delete-frame instead of delete-windows-on
18178 for the only buffer on frame.
18179
18180 2011-06-10 Martin Rudalics <rudalics@gmx.at>
18181
18182 * loadup.el (top-level): Load window before files for the sake
18183 of replace-buffer-in-windows.
18184
18185 * files.el (read-buffer-to-switch)
18186 (switch-to-buffer-other-window)
18187 (switch-to-buffer-other-frame, display-buffer-other-frame):
18188 Move to window.el.
18189
18190 * simple.el (get-next-valid-buffer, last-buffer, next-buffer)
18191 (previous-buffer): Move to window.el.
18192
18193 * bindings.el (unbury-buffer): Move to window.el.
18194
18195 * window.el (delete-other-windows-vertically): Move after
18196 definition of delete-other-windows.
18197 (other-window, delete-windows-on, replace-buffer-in-windows):
18198 Move here from window.c.
18199 (record-window-buffer, unrecord-window-buffer)
18200 (set-window-buffer-start-and-point, switch-to-prev-buffer)
18201 (switch-to-next-buffer): New functions.
18202 (get-next-valid-buffer, last-buffer, next-buffer): Move here
18203 from simple.el. Call switch-to-next-buffer.
18204 (previous-buffer): Move here from simple.el.
18205 Call switch-to-prev-buffer.
18206 (bury-buffer): Move here from buffer.c. Switch to previous
18207 buffer when window cannot be deleted.
18208 (unbury-buffer): Move here from bindings.el.
18209 (ctl-x-map): Move binding for other-window from window.c to
18210 here.
18211 (read-buffer-to-switch, switch-to-buffer-other-window)
18212 (switch-to-buffer-other-frame): Move here from files.el.
18213 (normalize-buffer-to-switch-to): New functions.
18214 (switch-to-buffer): Move here from buffer.c.
18215 Use read-buffer-to-switch and normalize-buffer-to-switch-to.
18216
18217 2011-06-10 Martin Rudalics <rudalics@gmx.at>
18218
18219 * window.el (window-min-height, window-min-width): Move here
18220 from window.c. Add defcustoms and rewrite doc-strings.
18221 (resize-mini-window, resize-window): New functions.
18222 (adjust-window-trailing-edge, enlarge-window, shrink-window):
18223 Move here from window.c.
18224 (maximize-window, minimize-window): New functions.
18225 (delete-window, delete-other-windows, split-window): Move here
18226 from window.c.
18227 (window-split-min-size): New function.
18228 (split-window-keep-point): Mention split-window-above-each-other
18229 instead of split-window-vertically.
18230 (split-window-above-each-other, split-window-vertically):
18231 Rename split-window-vertically to split-window-above-each-other
18232 and provide defalias for old definition.
18233 (split-window-side-by-side, split-window-horizontally):
18234 Rename split-window-horizontally to split-window-side-by-side
18235 and provide defalias for the old definition.
18236 (ctl-x-map): Move bindings for delete-window,
18237 delete-other-windows and enlarge-window here from window.c.
18238 Replace bindings for split-window-vertically and
18239 split-window-horizontally by bindings for
18240 split-window-above-each-other and split-window-side-by-side.
18241
18242 * cus-start.el (all): Remove entries for window-min-height and
18243 window-min-width. Add entries for window-splits and
18244 window-nest.
18245
18246 2011-06-09 Glenn Morris <rgm@gnu.org>
18247
18248 * calendar/appt.el (appt-mode-line): New function.
18249 (appt-check, appt-disp-window): Use it.
18250
18251 * files.el (hack-one-local-variable-eval-safep):
18252 Allow minor-modes with explicit +/-1 arguments.
18253
18254 2011-06-09 Teodor Zlatanov <tzz@lifelogs.com>
18255
18256 * term/xterm.el (xterm): Add defgroup.
18257 (xterm-extra-capabilities): Add defcustom to supply known xterm
18258 capabilities, skip querying them, or query them (default).
18259 (terminal-init-xterm): Use it.
18260 (terminal-init-xterm-modify-other-keys): New function to set up
18261 modifyOtherKeys support to simplify `terminal-init-xterm'.
18262
18263 2011-06-09 Martin Rudalics <rudalics@gmx.at>
18264
18265 * window.el (resize-window-reset, resize-window-reset-1)
18266 (resize-subwindows-skip-p, resize-subwindows-normal)
18267 (resize-subwindows, resize-other-windows, resize-this-window)
18268 (resize-root-window, resize-root-window-vertically)
18269 (window-deletable-p, window-or-subwindow-p)
18270 (frame-root-window-p): New functions.
18271
18272 2011-06-09 Glenn Morris <rgm@gnu.org>
18273
18274 * net/ange-ftp.el (ange-ftp-switches-ok): New function.
18275 (ange-ftp-get-files): Use it.
18276
18277 2011-06-09 Alexander Klimov <alserkli@inbox.ru> (tiny change)
18278
18279 * mail/sendmail.el (mail-recover-1, mail-recover):
18280 * files.el (recover-file, recover-session):
18281 Handle dired-listing-switches not being just a single short option.
18282
18283 2011-06-09 Glenn Morris <rgm@gnu.org>
18284
18285 * calendar/appt.el (appt-display-message, appt-disp-window):
18286 Handle lists of appointments.
18287
18288 2011-06-08 Martin Rudalics <rudalics@gmx.at>
18289
18290 * window.el (one-window-p): Move down in code.
18291 Rewrite doc-string.
18292 (window-current-scroll-bars): Rewrite doc-string.
18293 Normalize live window argument.
18294 (walk-windows, get-window-with-predicate, count-windows):
18295 Rewrite doc-string. Use window-list-1.
18296 (window-in-direction-2, window-in-direction, get-mru-window):
18297 New functions.
18298
18299 2011-06-08 Reuben Thomas <rrt@sc3d.org>
18300
18301 * progmodes/flymake.el (flymake-compilation-prevents-syntax-check):
18302 Doc fix (Bug#8713).
18303
18304 2011-06-08 Chong Yidong <cyd@stupidchicken.com>
18305
18306 * repeat.el (repeat-on-final-keystroke): Fix type (Bug#8696).
18307
18308 2011-06-08 Juanma Barranquero <lekktu@gmail.com>
18309
18310 * loadhist.el (unload-feature-special-hooks):
18311 Add `comint-output-filter-functions'.
18312
18313 2011-06-08 Ivan Kanis <gnu@kanis.fr>
18314
18315 * calendar/appt.el (appt-check): Move some initializations into the let.
18316
18317 2011-06-08 Martin Rudalics <rudalics@gmx.at>
18318
18319 * window.el (window-height): Defalias to window-total-height.
18320 (window-width): Defalias to window-body-width.
18321
18322 2011-06-07 Chong Yidong <cyd@stupidchicken.com>
18323
18324 * image-mode.el (image-toggle-animation): New command.
18325 (image-mode-map): Bind it to RET.
18326 (image-mode): Update message.
18327 (image-toggle-display-image): Avoid a spurious cache flush.
18328 (image-transform-rotation): Doc fix.
18329 (image-transform-properties): Return quickly in the normal case.
18330 (image-animate-loop): Rename from image-animate-max-time.
18331
18332 * image.el (image-animate-max-time): Move to image-mode.el.
18333 (create-animated-image): Remove unnecessary function.
18334 (image-animate): Rename from image-animate-start. New arg.
18335 (image-animate-stop): Remove; just use image-animate-timer.
18336 (image-animate-timer): Use car-safe.
18337 (image-animate-timeout): Rename argument.
18338
18339 2011-06-07 Martin Rudalics <rudalics@gmx.at>
18340
18341 * window.el (get-lru-window, get-largest-window): Move here from
18342 window.c. Rename first argument to ALL-FRAMES.
18343 Rephrase doc-strings.
18344 (get-buffer-window-list): Rewrite using window-list-1.
18345 Rephrase doc-string.
18346 (window-safe-min-height, window-safe-min-width): New constants.
18347 (window-size-ignore, window-min-size, window-min-size-1)
18348 (window-sizable, window-sizable-p, window-size-fixed-1)
18349 (window-size-fixed-p, window-min-delta-1, window-min-delta)
18350 (window-max-delta-1, window-max-delta, window-resizable)
18351 (window-resizable-p, window-total-height, window-total-width)
18352 (window-body-width): New functions.
18353 (window-full-height-p, window-full-width-p): Rewrite using
18354 window-total-size.
18355 (window-body-height): Rewrite using window-body-size.
18356
18357 2011-06-06 Martin Rudalics <rudalics@gmx.at>
18358
18359 * window.el (window-right, window-left, window-child)
18360 (window-child-count, window-last-child, window-any-p)
18361 (normalize-live-buffer, normalize-live-frame)
18362 (normalize-any-window, normalize-live-window)
18363 (window-iso-combination-p, window-iso-combined-p)
18364 (window-iso-combinations)
18365 (walk-window-tree-1, walk-window-tree, walk-window-subtree)
18366 (windows-with-parameter, window-with-parameter)
18367 (window-atom-root, make-window-atom, window-atom-check-1)
18368 (window-atom-check, window-side-check, window-check):
18369 New functions.
18370 (ignore-window-parameters, window-sides, window-sides-vertical)
18371 (window-sides-slots): New variables.
18372 (window-size-fixed): Move down in code. Minor doc-string fix.
18373
18374 2011-06-05 Andreas Schwab <schwab@linux-m68k.org>
18375
18376 * comint.el (comint-dynamic-complete-as-filename)
18377 (comint-dynamic-complete-filename): Correctly call
18378 completion-in-region.
18379
18380 2011-06-05 Deniz Dogan <deniz@dogan.se>
18381
18382 * net/rcirc.el (rcirc-prompt-for-encryption): Fix bug introduced
18383 in last change.
18384
18385 2011-06-05 Deniz Dogan <deniz@dogan.se>
18386
18387 * net/rcirc.el (rcirc-prompt-for-encryption): New function.
18388 (rcirc): Use it to prompt for encryption.
18389
18390 2011-06-05 Roland Winkler <winkler@gnu.org>
18391
18392 * textmodes/bibtex.el (bibtex-search-buffer): New variable.
18393 (bibtex-search-entries): New command bound to C-c C-a.
18394 (bibtex-display-entries): New function.
18395
18396 2011-06-05 Roland Winkler <winkler@gnu.org>
18397
18398 * textmodes/bibtex.el (bibtex-generate-url-list): Fix docstring.
18399 (bibtex-insert-kill): After yanking insert newline if necessary.
18400 (bibtex-initialize): Call bibtex-string-files-init only once.
18401 (bibtex-mode): Do not call easy-menu-add.
18402 (bibtex-validate-globally): Use save-excursion in bibtex buffers.
18403 (bibtex-yank): Set arg properly if nil.
18404
18405 2011-06-05 Roland Winkler <winkler@gnu.org>
18406
18407 * textmodes/bibtex.el (bibtex-search-entry-globally):
18408 New variable.
18409 (bibtex-search-entry): Use it.
18410
18411 2011-06-05 Roland Winkler <winkler@gnu.org>
18412
18413 * textmodes/bibtex.el (bibtex-entry-format): New option
18414 sort-fields.
18415 (bibtex-format-entry, bibtex-reformat): Honor this option.
18416 (bibtex-parse-entry): Return fields in proper order.
18417
18418 2011-06-05 Juanma Barranquero <lekktu@gmail.com>
18419
18420 * doc-view.el (doc-view-remove-if): Move computation of result out
18421 of `dolist' to silence misleading lexical-binding warning.
18422
18423 2011-06-04 Chong Yidong <cyd@stupidchicken.com>
18424
18425 * emacs-lisp/timer.el (timer-activate): Remove unused arg.
18426 (timer-activate, timer-activate-when-idle): Doc fix (Bug#8793).
18427
18428 2011-06-04 Michael Albinus <michael.albinus@gmx.de>
18429
18430 * net/tramp-sh.el (tramp-find-shell): Apply workaround also for
18431 "SunOS 5.10".
18432
18433 2011-06-04 Michael Albinus <michael.albinus@gmx.de>
18434
18435 * net/tramp.el (tramp-set-completion-function, tramp-parse-rhosts)
18436 (tramp-parse-shosts, tramp-parse-sconfig, tramp-parse-shostkeys)
18437 (tramp-parse-hosts, tramp-parse-passwd, tramp-parse-netrc)
18438 (tramp-parse-putty):
18439 * net/tramp-sh.el (tramp-completion-function-alist-rsh)
18440 (tramp-completion-function-alist-ssh)
18441 (tramp-completion-function-alist-telnet)
18442 (tramp-completion-function-alist-su)
18443 (tramp-completion-function-alist-putty): Set `tramp-autoload'
18444 cookie.
18445
18446 * net/tramp-ftp.el:
18447 * net/tramp-sh.el:
18448 * net/tramp-smb.el: Set `tramp-autoload' cookie, and eval after
18449 load "tramp.el" `tramp-set-completion-function'.
18450
18451 2011-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
18452
18453 * shell.el: Require and use pcomplete.
18454 (shell-dynamic-complete-functions): Add pcomplete-completions-at-point.
18455 (shell-completion-vars): Set pcomplete-default-completion-function.
18456
18457 2011-06-04 Deniz Dogan <deniz@dogan.se>
18458
18459 * iswitchb.el (iswitchb-window-buffer-p): Use `member' instead of
18460 `memq' (Bug#8799).
18461
18462 2011-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
18463
18464 * subr.el (make-progress-reporter): Add "..." by default (bug#8785).
18465
18466 2011-06-02 Juanma Barranquero <lekktu@gmail.com>
18467
18468 * bs.el (bs--mark-unmark, bs--nth-wrapper):
18469 * mpc.el (mpc-select-extend, mpc-songpointer-context):
18470 * vc/log-view.el (log-view-beginning-of-defun):
18471 * vc/smerge-mode.el (smerge-apply-resolution-patch)
18472 (smerge-refine-forward, smerge-refine-chopup-region):
18473 Silence warning for unused `dotimes' counter variables.
18474
18475 2011-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
18476
18477 * net/tramp.el (tramp-with-progress-reporter): Rename from
18478 with-progress-reporter. Use `declare'.
18479 * net/tramp-smb.el:
18480 * net/tramp-sh.el:
18481 * net/tramp-gvfs.el: Update all uses.
18482
18483 2011-06-02 Jay Belanger <jay.p.belanger@gmail.com>
18484
18485 * calc/calc.el (calc-kill-stack-buffer): Make sure that the trail
18486 buffer isn't killed before making it current.
18487
18488 2011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
18489
18490 Silence various byte-compiler warnings.
18491 * emacs-lisp/byte-run.el (make-obsolete-variable): New argument
18492 `access-type' and new obsolescence format.
18493 * emacs-lisp/bytecomp.el (byte-compile-warn-obsolete): Adjust to
18494 new format.
18495 (byte-compile-check-variable): New `access-type' argument.
18496 Only warn if the access-type is obsolete.
18497 (byte-compile-dynamic-variable-bind, byte-compile-variable-ref)
18498 (byte-compile-variable-set): Adjust callers.
18499 * help-fns.el (describe-variable): Adjust to new obsolescence format.
18500 * mail/sendmail.el (mail-mailer-swallows-blank-line): Only mark
18501 setting it as obsolete.
18502 * simple.el (minibuffer-completing-symbol):
18503 * font-lock.el (font-lock-beginning-of-syntax-function): Only mark read
18504 access as obsolete.
18505 * minibuffer.el (minibuffer-completing-file-name): Don't make it
18506 obsolete yet.
18507 * international/quail.el (quail-mouse-choose-completion): Remove unused
18508 code referring to obsolete var.
18509 (quail-choose-completion-string): Remove.
18510 * server.el (server-clients-with, server-kill-buffer-query-function)
18511 (server-kill-emacs-query-function): Silence "unused `proc'" warnings.
18512 * proced.el (proced-send-signal):
18513 * emacs-lisp/lisp.el (lisp-complete-symbol):
18514 Replace completion-annotate-function with completion-extra-properties.
18515
18516 2011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
18517
18518 * simple.el (goto-line): Use read-number.
18519 (overriding-map-is-bound): Remove.
18520 (saved-overriding-map): Change default.
18521 (save&set-overriding-map): Rename from ensure-overriding-map-is-bound;
18522 Take the map as argument.
18523 (universal-argument, negative-argument, digit-argument): Use it.
18524 (restore-overriding-map): Adjust.
18525 (do-auto-fill): Use fill-forward-paragraph.
18526 (keyboard-quit): Don't signal an error when debug-on-quit is non-nil.
18527
18528 * minibuffer.el (minibuffer-inactive-mode-map): New var.
18529 (minibuffer-inactive-mode): New major mode.
18530 * mouse.el (mouse-drag-region): Remove the "mouse-1 pops up
18531 the *Messages* buffer" hack.
18532 (mouse-popup-menubar): Don't burp if the event is a normal key.
18533
18534 Miscellaneous tweaks.
18535 * emacs-lisp/cl-macs.el (dolist, dotimes): Use the same strategy for
18536 lexical scoping as in subr.el's dolist and dotimes.
18537 * emacs-lisp/bytecomp.el (byte-compile-unfold-bcf):
18538 Silence compiler warning.
18539 * thingatpt.el (forward-whitespace): Trivial coding style fix.
18540 * subr.el (with-output-to-temp-buffer): Provide an edebug spec.
18541 * international/ccl.el (ccl-compile): Trivial simplification.
18542 * help-fns.el (help-do-arg-highlight): Silence compiler warning.
18543 * emacs-lisp/testcover.el (testcover-end): Remove spurious
18544 `printflag' argument.
18545 * emacs-lisp/byte-run.el (make-obsolete, make-obsolete-variable):
18546 Purecopy the whole obsolescence data.
18547
18548 2011-06-01 Leo Liu <sdl.web@gmail.com>
18549
18550 * net/rcirc.el (rcirc-decode-coding-system): Revert last change;
18551 improve doc-string as suggested by Marco Pessotto
18552 <melmothx@gmail.com>.
18553 (rcirc-print): Fix last change.
18554
18555 2011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
18556
18557 * minibuffer.el (complete-with-action): Return nil for the metadata and
18558 boundaries of non-functional tables.
18559 (completion-table-dynamic): Return nil for the metadata.
18560 (completion-table-with-terminator): Add default case, using
18561 complete-with-action.
18562 (completion--metadata): New function.
18563 (completion-all-sorted-completions, minibuffer-completion-help): Use it
18564 to try and avoid pathological performance problems.
18565 (completion--embedded-envvar-table): Return `category' metadata.
18566
18567 2011-05-31 Lars Magne Ingebrigtsen <larsi@gnus.org>
18568
18569 * subr.el (process-alive-p): New tiny convenience function.
18570
18571 2011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
18572
18573 * emacs-lisp/debug.el (debug): Save&restore not just the buffer's
18574 content but also its previous major mode.
18575
18576 2011-05-31 Helmut Eller <eller.helmut@gmail.com>
18577
18578 * emacs-lisp/debug.el (debug): Restore the previous content of the
18579 *Backtrace* buffer when we exit with C-M-c.
18580
18581 2011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
18582
18583 * minibuffer.el: Add metadata method to completion tables.
18584 (completion-category-overrides): New defcustom.
18585 (completion-metadata, completion--field-metadata)
18586 (completion-metadata-get, completion--styles)
18587 (completion--cycle-threshold): New functions.
18588 (completion-try-completion, completion-all-completions):
18589 Add `metadata' argument to choose completion-styles.
18590 (completion--do-completion): Use metadata to choose cycling.
18591 (completion-all-sorted-completions): Use metadata for sorting.
18592 Remove :completion-cycle-penalty which is not needed any more.
18593 (completion--try-word-completion): Add `metadata' argument.
18594 (minibuffer-completion-help): Check metadata for annotation function
18595 and sorting.
18596 (completion-file-name-table): Return `category' metadata.
18597 (minibuffer-completing-file-name): Make obsolete.
18598 * simple.el (minibuffer-completing-symbol): Make obsolete.
18599 * icomplete.el (icomplete-completions): Pass new `metadata' param to
18600 completion-try-completion.
18601
18602 2011-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
18603
18604 * mail/smtpmail.el (smtpmail-send-data): Add progress reporter.
18605
18606 2011-05-30 Leo Liu <sdl.web@gmail.com>
18607
18608 * net/rcirc.el (rcirc-debug-buffer): Use visible buffer name.
18609 (rcirc-print): Decode all incoming messages (bug#8744).
18610 (rcirc-decode-coding-system): Allow value nil for automatic coding
18611 system detection.
18612
18613 2011-06-01 Glenn Morris <rgm@gnu.org>
18614
18615 * mail/emacsbug.el (report-emacs-bug-hook): Mailclient ignores From.
18616
18617 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
18618
18619 * image.el (image-animate-max-time): Allow nil and t values.
18620 Default to nil.
18621 (create-animated-image): Doc fix.
18622 (image-animate-start): Remove second arg; just use
18623 image-animate-max-time.
18624 (image-animate-timeout): Doc fix. Args changed.
18625
18626 * image-mode.el (image-toggle-display-image): Ensure that the
18627 image spec passed to the animate timer is the same object as in
18628 the buffer's display property (Bug#6981).
18629 (image-transform-properties): Doc fix.
18630
18631 * image.el (image-animate-max-time): Default to nil.
18632
18633 2011-05-29 Martin Rudalics <rudalics@gmx.at>
18634
18635 * menu-bar.el (kill-this-buffer-enabled-p): Avoid looping over
18636 entire buffer list (Bug#8184).
18637
18638 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
18639
18640 * image.el (imagemagick-types-inhibit)
18641 (imagemagick-register-types): Doc fix.
18642
18643 2011-05-29 Deniz Dogan <deniz@dogan.se>
18644
18645 * net/rcirc.el (rcirc): Use the user's stored encryption method by
18646 default.
18647
18648 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
18649
18650 * select.el: Don't perform clipboard-manager saving in hooks;
18651 leave the hooks empty.
18652
18653 2011-05-28 Leo Liu <sdl.web@gmail.com>
18654
18655 * replace.el (occur-menu-map, occur-edit-mode-map): New vars.
18656 (occur-mode-map): Bind occur-edit-mode. Use occur-menu-map.
18657 (occur-edit-mode): New major mode (Bug#8463).
18658 (occur-after-change-function): New function.
18659 (occur-engine): Give Occur tags a read-only property.
18660
18661 2011-05-28 Kevin Ryde <user42@zip.com.au>
18662
18663 * subr.el (def-edebug-spec): Doc fix (Bug#8430).
18664
18665 2011-05-28 Chong Yidong <cyd@stupidchicken.com>
18666
18667 * bindings.el (help-echo): Make the initial non-indicator dash
18668 empty on graphical terminals (Bug#7295).
18669
18670 * files.el (auto-mode-alist): Move config rule after the
18671 in-stripping one (Bug#8547).
18672
18673 * newcomment.el (comment-end-skip): Doc fix (Bug#8659).
18674
18675 * startup.el (normal-splash-screen): Remove gratuitous mode-line
18676 setting (Bug#8740).
18677
18678 2011-05-28 Alp Aker <aker@pitt.edu> (tiny change)
18679
18680 * buff-menu.el (Buffer-menu-revert-function, Buffer-menu-sort)
18681 (Buffer-menu-buffer+size): Use Buffer-menu-buffer-column
18682 (Bug#8539).
18683
18684 2011-05-28 Chong Yidong <cyd@stupidchicken.com>
18685
18686 * emacs-lisp/re-builder.el (re-builder): Improve doc (Bug#8286).
18687
18688 2011-05-28 Dima Kogan <dkogan@cds.caltech.edu> (tiny change)
18689
18690 * progmodes/hideshow.el (hs-looking-at-block-start-p): New fun.
18691 (hs-hide-block-at-point, hs-find-block-beginning)
18692 (hs-already-hidden-p, hs-hide-block, hs-show-block): Use it
18693 (Bug#8279).
18694
18695 2011-05-28 Glenn Morris <rgm@gnu.org>
18696
18697 * startup.el (fancy-about-screen): Use standard mode line. (Bug#8740)
18698
18699 2011-05-28 Chong Yidong <cyd@stupidchicken.com>
18700
18701 * help-fns.el (describe-function-1): If the function is a derived
18702 major mode, print the parent mode.
18703
18704 * progmodes/cc-mode.el (c-mode, c++-mode, objc-mode, java-mode)
18705 (idl-mode, pike-mode, awk-mode): Inherit from prog-mode.
18706
18707 2011-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
18708
18709 * minibuffer.el (completion--capf-wrapper): Check applicability before
18710 returning non-nil for non-exclusive completion data.
18711 * progmodes/etags.el (tags-completion-at-point-function):
18712 * info-look.el (info-lookup-completions-at-point): Mark as
18713 non-exclusive.
18714 (info-complete): Adjust accordingly.
18715
18716 * info-look.el: Convert to lexical-binding and completion-at-point.
18717 (info-lookup-completions-at-point): New function.
18718 (info-complete): Use it and completion-in-region.
18719
18720 2011-05-28 Drew Adams <drew.adams@oracle.com>
18721
18722 * isearch.el: Let M-e start with point at the first mismatched char.
18723 (isearch-fail-pos): New function.
18724 (isearch-edit-string): Use it.
18725
18726 2011-05-28 Dmitry Kurochkin <dmitry.kurochkin@gmail.com> (tiny change)
18727
18728 * isearch.el (isearch-range-invisible): Use invisible-p (bug#8721).
18729
18730 2011-05-27 Toby Cubitt <toby-predictive@dr-qubit.org>
18731
18732 * emacs-lisp/avl-tree.el: New avl-tree-stack datatype. Add new
18733 traversal functions for avl-trees.
18734 (avl-tree--stack): New struct.
18735 (avl-tree-stack-p, avl-tree--stack-repopulate): New funs.
18736 (avl-tree-enter): Add optional `updatefun' arg.
18737 (avl-tree--do-enter): Add optional `updatefun' arg.
18738 Change return value.
18739 (avl-tree-delete): Add optional `test' and `nilflag' args.
18740 (avl-tree--do-delete): Add `test' and `nilflag' args.
18741 Change return value.
18742 (avl-tree-member): Add optional `nilflag'
18743 (avl-tree-member-p): New function.
18744 (avl-tree-mapc, avl-tree-mapf, avl-tree-mapcar): New functions.
18745 (avl-tree-stack, avl-tree-stack-pop, avl-tree-stack-first)
18746 (avl-tree-stack-empty-p): New functions.
18747
18748 * emacs-lisp/avl-tree.el (avl-tree--del-balance): Rename from
18749 avl-tree--del-balance1 and make it work both ways.
18750 (avl-tree--del-balance2): Remove.
18751 (avl-tree--enter-balance): Rename from avl-tree--enter-balance1 and
18752 make it work both ways.
18753 (avl-tree--enter-balance2): Remove.
18754 (avl-tree--switch-dir, avl-tree--dir-to-sign, avl-tree--sign-to-dir):
18755 New macros.
18756 (avl-tree--mapc, avl-tree-map): Add direction argument.
18757
18758 2011-05-27 David Michael <fedora.dm0@gmail.com> (tiny change)
18759
18760 * files.el (interpreter-mode-alist): Add rbash (bug#8745).
18761
18762 2011-05-27 Chong Yidong <cyd@stupidchicken.com>
18763
18764 * select.el: Support clipboard managers with built-in function
18765 x-clipboard-manager-save, via delete-frame-functions and
18766 kill-emacs-hook.
18767 (xselect-convert-to-targets): Add MULTIPLE target to list.
18768 (xselect-convert-to-save-targets): New function.
18769
18770 2011-05-27 Kenichi Handa <handa@m17n.org>
18771
18772 * mail/sendmail.el (mail-encode-header): Avoid double encoding by
18773 let-binding rfc2047-encode-encoded-words to nil.
18774
18775 2011-05-27 Glenn Morris <rgm@gnu.org>
18776
18777 * mail/emacsbug.el: Don't require url-util.
18778
18779 * shell.el (shell-directory-tracker): Case matters. (Bug#8735)
18780
18781 * files.el (set-auto-mode):
18782 Also respect mode: entries at the end of the file. (Bug#8586)
18783
18784 2011-05-26 Glenn Morris <rgm@gnu.org>
18785
18786 * files.el (hack-local-variables-prop-line, hack-local-variables):
18787 Downcase mode names, as seems to be traditional.
18788 (hack-local-variables, hack-local-variables-apply): Doc fixes.
18789
18790 * mail/emacsbug.el (report-emacs-bug): Mention checking From address.
18791 (report-emacs-bug-hook): Try to validate the From address. (Bug#8038)
18792
18793 2011-05-25 Julien Danjou <julien@danjou.info>
18794
18795 * textmodes/rst.el (rst-define-level-faces): Do not define face
18796 symbol if it is already defined.
18797
18798 2011-05-24 Vincent Belaïche <vincentb1@users.sourceforge.net>
18799
18800 * play/5x5.el (5x5-new-game, 5x5-randomize):
18801 Reset 5x5-solver-output to nil when a new grid is cast.
18802 (5x5-log-init, 5x5-log): Use defsubst instead of defmacro to shunt
18803 these debugging traces, as defmacro breaks the compiled code.
18804
18805 2011-05-24 Dmitry Kurochkin <dmitry.kurochkin@gmail.com> (tiny change)
18806
18807 * isearch.el (isearch-range-invisible): Use invisible-p (bug#8721).
18808
18809 2011-05-24 Leo Liu <sdl.web@gmail.com>
18810
18811 * vc/vc-bzr.el (vc-bzr-sha1-program): Rename from sha1-program.
18812 (vc-bzr-sha1): Adapt.
18813
18814 * sha1.el: Remove. Function `sha1' is now builtin.
18815
18816 * bindings.el: Provide sha1 feature.
18817
18818 2011-05-24 Kenichi Handa <handa@m17n.org>
18819
18820 * mail/sendmail.el: Require `rfc2047'.
18821 (mail-insert-from-field): Do not perform RFC2047 encoding.
18822 (mail-encode-header): New function.
18823 (sendmail-send-it): Set buffer-file-coding-system of the work
18824 buffer to the return value of select-message-coding-system.
18825 Call mail-encode-header.
18826
18827 * mail/smtpmail.el (smtpmail-send-it): Call mail-encode-header.
18828
18829 2011-05-24 Sean Neakums <sneakums@zork.net> (tiny change)
18830
18831 * mail/supercite.el (sc-default-cite-frame):
18832 Handle sc-nested-citation-p when sc-cite-blank-lines-p is non-nil.
18833
18834 2011-05-24 Glenn Morris <rgm@gnu.org>
18835
18836 * progmodes/python.el (brm-menu): Declare.
18837
18838 * emulation/viper.el (viper-set-hooks): Declare.
18839
18840 * play/5x5.el (5x5-log-init, 5x5-log): Evaluate when compiling.
18841 (5x5-log-init, 5x5-log, 5x5-solver): Doc fixes.
18842 (math-map-vec, math-sub, math-mul, math-make-intv, math-reduce-vec)
18843 (math-format-number, math-pow, calcFunc-arrange, calcFunc-cvec)
18844 (calcFunc-diag, calcFunc-trn, calcFunc-inv, calcFunc-mrow)
18845 (calcFunc-mcol, calcFunc-vconcat, calcFunc-index): Declare.
18846
18847 2011-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
18848
18849 Add an :exit-function for completion-at-point.
18850
18851 * minibuffer.el (completion--done): New fun.
18852 (completion--do-completion): Use it. New arg `expect-exact'.
18853 (minibuffer-complete, minibuffer-complete-word): Don't output message,
18854 since completion--do-completion does it for us now.
18855 (minibuffer-force-complete): Use completion--done and
18856 completion--replace. Handle sole-completion case with more care.
18857 (minibuffer-complete-and-exit): Use new `expect-exact' arg.
18858 (completion-extra-properties): New var.
18859 (completion-annotate-function): Make obsolete.
18860 (minibuffer-completion-help): Adjust accordingly.
18861 Use completion-list-insert-choice-function.
18862 (completion-at-point, completion-help-at-point):
18863 Bind completion-extra-properties.
18864 (completion-pcm-word-delimiters): Add | (for uniquify, for example).
18865 * simple.el (completion-list-insert-choice-function): New var.
18866 (completion-setup-function): Preserve it.
18867 (choose-completion): Pay attention to it, shuffle the code a bit.
18868 (choose-completion-string): New arg `insert-function'.
18869
18870 * textmodes/bibtex.el: Convert to lexical binding.
18871 (bibtex-mode-map): Use completion-at-point.
18872 (bibtex-mode): Use define-derived-mode&completion-at-point-functions.
18873 (bibtex-completion-at-point-function): New fun, from bibtex-complete.
18874 (bibtex-complete): Define as obsolete alias.
18875 (bibtex-complete-internal): Remove.
18876 (bibtex-format-entry): Remove unused sub-group in regexp.
18877 * shell.el (shell--command-completion-data)
18878 (shell-environment-variable-completion):
18879 * pcomplete.el (pcomplete-completions-at-point):
18880 * comint.el (comint--complete-file-name-data): Use :exit-function
18881 instead of completion-table-with-terminator so it also works for
18882 choose-completion.
18883
18884 2011-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
18885
18886 * <lots-of-files>.el: Don't quote lambda expressions with `quote'.
18887
18888 * vc/smerge-mode.el (smerge-refine-subst): Don't deactivate the mark
18889 (bug#8710).
18890
18891 * emacs-lisp/lisp.el (up-list): Fix forward movement (bug#8708).
18892
18893 2011-05-23 Ken Manheimer <ken.manheimer@gmail.com>
18894
18895 * allout.el (allout-inhibit-auto-fill-on-headline): Create new
18896 customization variable and implement: If non-nil, auto-fill will
18897 be inhibited while on topic's header line.
18898
18899 2011-05-23 Vincent Belaïche <vincentb1@users.sourceforge.net>
18900
18901 * play/5x5.el: I/ Add an arithmetic solver to suggest positions to
18902 click on. II/ Make 5x5 multisession. III/ Ensure that random grids
18903 always have a solution in grid size = 5 cases.
18904 (5x5-mode-map): Add keybinding to function `5x5-solve-suggest'.
18905 (5x5-solver-output, 5x5-log-buffer): New vars.
18906 (5x5-grid, 5x5-x-pos, 5x5-y-pos, 5x5-moves, 5x5-cracking):
18907 Make these variables buffer local to achieve 5x5 multi-session-ness.
18908 (5x5): Set 5x5-grid-size only if SIZE is non-negative.
18909 (5x5-grid-to-vec, 5x5-vec-to-grid, 5x5-log-init, 5x5-log, 5x5-solver)
18910 (5x5-solve-suggest): New funs.
18911 (5x5-randomize): Use 5x5-make-move instead of 5x5-flip-cell to
18912 randomize a grid so that we ensure that there is always a solution.
18913 (5x5-make-random-grid): Allow other movement than flipping.
18914
18915 2011-05-23 Kevin Ryde <user42@zip.com.au>
18916
18917 * emacs-lisp/advice.el (ad-read-advised-function):
18918 Use `function-called-at-point' as the default, if it has
18919 advice and passes PREDICATE.
18920
18921 2011-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
18922
18923 * emacs-lisp/bytecomp.el (byte-compile-function-form): Only call
18924 byte-compile-lambda if it's actually a lambda.
18925
18926 * emacs-lisp/eieio.el (eieio-defgeneric-form-primary-only-one):
18927 Fix function quoting. Use backquote better.
18928
18929 2011-05-22 Yuanle Song <sylecn@gmail.com>
18930
18931 * nxml/rng-xsd.el (rng-xsd-check-pattern): Use case-sensitive
18932 matching (Bug#8516).
18933
18934 2011-05-22 Jari Aalto <jari.aalto@cante.net>
18935
18936 * vc/vc-dir.el (vc-default-dir-printer): Give edited tag a
18937 different face (Bug#8178).
18938
18939 2011-05-22 Chong Yidong <cyd@stupidchicken.com>
18940
18941 * vc/diff-mode.el (diff-changed): Don't use terminal specs for
18942 defface (Bug#8144).
18943
18944 2011-05-22 Stefan Monnier <monnier@iro.umontreal.ca>
18945
18946 * emacs-lisp/macroexp.el (macroexpand-all-1): Convert ' to #' for
18947 funcall as well (bug#8712). Warn when performing those conversions.
18948 * emacs-lisp/bytecomp.el (byte-compile-form): Fix error report.
18949
18950 * progmodes/grep.el (grep-mode): Fix it for good (bug#8684)!
18951
18952 2011-05-22 Glenn Morris <rgm@gnu.org>
18953
18954 * files.el (hack-local-variables-prop-line): Small simplifications.
18955 (hack-local-variables, hack-local-variables-prop-line):
18956 If MODE-ONLY, return the mode, rather than just `t'.
18957
18958 2011-05-21 Stefan Monnier <monnier@iro.umontreal.ca>
18959
18960 * progmodes/grep.el (grep-mode): Fix last change (bug#8684).
18961
18962 2011-05-21 Glenn Morris <rgm@gnu.org>
18963
18964 * files.el (hack-local-variables-prop-line, hack-local-variables):
18965 If only interested in the mode, don't bother doing the other stuff.
18966
18967 * image-mode.el (image-after-revert-hook):
18968 Redraw all frames on which the image is visible. (Bug#8567)
18969
18970 * dired-aux.el (dired-touch-initial): Just use current-time. (Bug#6887)
18971
18972 * wid-edit.el (widget-checklist-match-inline):
18973 Fix 2011-04-19 change. (Bug#8649)
18974
18975 2011-05-20 Stefan Monnier <monnier@iro.umontreal.ca>
18976
18977 * emacs-lisp/checkdoc.el (checkdoc-sentencespace-region-engine):
18978 Also allow singlespace after single-letter capitals followed by a dot.
18979
18980 * nxml/nxml-mode.el (nxml-electric-slash): Reindent when completion is
18981 enabled. Suggested by James Ahlborn <jahlborn@gmail.com> (bug#8704).
18982
18983 2011-05-20 Nix <nix@esperi.org.uk>
18984
18985 * files.el (basic-save-buffer-2):
18986 Fix handling of break-hardlink-on-save with non-existent files.
18987
18988 2011-05-19 Deniz Dogan <deniz@dogan.se>
18989
18990 * net/rcirc.el (rcirc-mode): Initialize rcirc-urls to nil.
18991 (rcirc-markup-urls): Check if rcirc-url-regexp is nil.
18992
18993 2011-05-19 Glenn Morris <rgm@gnu.org>
18994
18995 * progmodes/f90.el (f90-type-def-re):
18996 Handle "type, bind(c)". (Bug#8691)
18997
18998 * emacs-lisp/autoload.el (batch-update-autoloads):
18999 Set autoload-excludes by parsing loadup.el rather than Makefiles.
19000
19001 2011-05-18 Michael Albinus <michael.albinus@gmx.de>
19002
19003 * net/tramp.el (tramp-process-actions): Set "first-password-request"
19004 property for the correct connection in case of multihops.
19005
19006 2011-05-18 Glenn Morris <rgm@gnu.org>
19007
19008 * emacs-lisp/authors.el (authors-fixed-entries): Remove fakemail.c.
19009 * mail/sendmail.el (sendmail-program): Fall back to just "sendmail".
19010
19011 Rationalize calendar handling of day and month abbrev-arrays.
19012 * calendar/calendar.el (calendar-customized-p): New function.
19013 (calendar-abbrev-construct, calendar-make-alist): Change what it does.
19014 (calendar-day-name-array, calendar-month-name-array): Doc fix.
19015 Add :set function.
19016 (calendar-abbrev-length, calendar-day-abbrev-array)
19017 (calendar-month-abbrev-array): Make defcustoms, with appropriate :set.
19018 (calendar-day-abbrev-array, calendar-month-abbrev-array):
19019 Elements may no longer be nil.
19020 (calendar-day-name, calendar-month-name):
19021 Update for changed nature of abbrev arrays.
19022 * calendar/diary-lib.el (diary-name-pattern):
19023 Update for changed nature of abbrev arrays.
19024 (diary-mark-entries-1): Update calendar-make-alist calls.
19025 (diary-font-lock-date-forms): Doc fix for changed abbrev arrays.
19026 * calendar/cal-html.el (cal-html-day-abbrev-array):
19027 Simply inherit from calendar-day-abbrev-array.
19028
19029 2011-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
19030
19031 * progmodes/grep.el (grep-mode): Disable default
19032 compilation-directory-matcher setting (bug#8684).
19033
19034 2011-05-17 Michael Albinus <michael.albinus@gmx.de>
19035
19036 * net/tramp.el (tramp-handle-insert-file-contents): Use "dd"
19037 instead of "head" and "tail". There were problems with SunOS 5.9,
19038 and it performs better.
19039
19040 2011-05-17 Glenn Morris <rgm@gnu.org>
19041
19042 * mail/mail-utils.el (mail-dont-reply-to): Silence compiler.
19043
19044 * progmodes/idlw-shell.el (idlwave-shell-complete-filename):
19045 Replace obsolete function.
19046
19047 * shell.el (pcomplete-parse-arguments-function): Declare.
19048
19049 * calendar/appt.el (appt-message-warning-time, appt-display-mode-line)
19050 (appt-display-diary, appt-display-interval, appt-prev-comp-time)
19051 (appt-check): Doc fixes.
19052 (appt-disp-window-function, appt-delete-window-function):
19053 Remove needless special case in custom :type.
19054 (appt-display-count): Default to 0, not nil.
19055 (appt-check): Reset appt-display-count to 0, not nil.
19056
19057 2011-05-17 Juanma Barranquero <lekktu@gmail.com>
19058
19059 * progmodes/python.el (python-font-lock-keywords):
19060 Add the Python 3.X keyword "nonlocal" (bug#8639).
19061
19062 2011-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
19063
19064 * emacs-lisp/eieio.el (defmethod): Fix quoting of code (bug#8677).
19065
19066 2011-05-16 Kevin Ryde <user42@zip.com.au>
19067
19068 * info-look.el (makefile-automake-mode): New setups, looking in
19069 automake manual, then makefile-mode.
19070 (makefile-mode): Remove automake manual, have it just in
19071 makefile-automake-mode since there's various things different or
19072 not relevant to plain make.
19073 (makefile-mode): Remove "other-modes" non-existent automake-mode,
19074 believe a hypothetical automake-mode would go to makefile-mode,
19075 not the other way around.
19076
19077 2011-05-15 Chong Yidong <cyd@stupidchicken.com>
19078
19079 * vc/diff-mode.el (diff-fixup-modifs): Locate correct position for
19080 hunk-end tags (Bug#8672).
19081
19082 * vc/vc-annotate.el (vc-annotate-mode-map): Bind = to
19083 vc-annotate-show-diff-revision-at-line (Bug#8671).
19084
19085 2011-05-14 Glenn Morris <rgm@gnu.org>
19086
19087 * vc/add-log.el (add-change-log-entry): Don't start adding a new entry
19088 in the middle of an existing one with multiple authors. (Bug#8645)
19089 (change-log-font-lock-keywords): Also handle multiple author lines
19090 with leading tabs. (Bug#8644)
19091
19092 * calendar/appt.el (appt-check): Rename some local variables.
19093 Some simplification/reordering.
19094
19095 * mail/feedmail.el (feedmail-confirm-outgoing-timeout)
19096 (feedmail-sendmail-f-doesnt-sell-me-out)
19097 (feedmail-queue-slug-suspect-regexp, feedmail-debug)
19098 (feedmail-debug-sit-for, feedmail-queue-express-hook)
19099 (feedmail-queue-runner-message-sender): Set :version.
19100 (bbdb-search, bbdb-records, smtp-via-smtp, smtp-server)
19101 (bbdb-dwim-net-address, vm-mail): Declare.
19102 (feedmail-binmail-gnulinuxish-template):
19103 Rename from feedmail-binmail-linuxish-template.
19104 (feedmail-buffer-to-smtp, feedmail-vm-mail-mode):
19105 Use insert-buffer-substring.
19106
19107 2011-05-14 Bill Carpenter <bill@carpenter.org>
19108
19109 * mail/feedmail.el (feedmail-patch-level): Increase.
19110 (feedmail-debug): New custom group.
19111 (feedmail-confirm-outgoing-timeout)
19112 (feedmail-sendmail-f-doesnt-sell-me-out)
19113 (feedmail-queue-slug-suspect-regexp, feedmail-debug)
19114 (feedmail-debug-sit-for, feedmail-queue-express-hook): New options.
19115 (feedmail-sender-line, feedmail-from-line)
19116 (feedmail-fiddle-headers-upwardly, feedmail-enable-spray)
19117 (feedmail-spray-this-address)
19118 (feedmail-spray-address-fiddle-plex-list)
19119 (feedmail-queue-use-send-time-for-date)
19120 (feedmail-queue-use-send-time-for-message-id)
19121 (feedmail-last-chance-hook, feedmail-queue-runner-mode-setter)
19122 (feedmail-buffer-eating-function):
19123 Doc fixes.
19124 (feedmail-spray-via-bbdb, feedmail-buffer-to-smtp)
19125 (feedmail-vm-mail-mode, feedmail-message-action-scroll-up)
19126 (feedmail-message-action-scroll-down): New functions.
19127 (feedmail-queue-directory, feedmail-queue-draft-directory):
19128 Use expand-file-name.
19129 (feedmail-prompt-before-queue-standard-alist): Add scroll entries.
19130 Remove C-v help entry.
19131 (feedmail-queue-buffer-file-name): New variable.
19132 (feedmail-mail-send-hook-splitter, feedmail-buffer-to-binmail)
19133 (feedmail-buffer-to-smtpmail, feedmail-queue-express-to-draft)
19134 (feedmail-message-action-send-strong, feedmail-message-action-edit)
19135 (feedmail-message-action-draft, feedmail-message-action-draft-strong)
19136 (feedmail-message-action-queue, feedmail-message-action-queue-strong)
19137 (feedmail-message-action-toggle-spray)
19138 (feedmail-run-the-queue-no-prompts)
19139 (feedmail-run-the-queue-global-prompt, feedmail-queue-reminder)
19140 (feedmail-look-at-queue-directory, feedmail-queue-subject-slug-maker)
19141 (feedmail-create-queue-filename, feedmail-rfc822-time-zone):
19142 (feedmail-fiddle-header, feedmail-give-it-to-buffer-eater)
19143 (feedmail-envelope-deducer, feedmail-fiddle-from)
19144 (feedmail-fiddle-sender, feedmail-default-date-generator)
19145 (feedmail-fiddle-date, feedmail-fiddle-message-id)
19146 (feedmail-fiddle-spray-address)
19147 (feedmail-fiddle-list-of-spray-fiddle-plexes)
19148 (feedmail-fiddle-list-of-fiddle-plexes)
19149 (feedmail-fill-to-cc-function, feedmail-fill-this-one)
19150 (feedmail-one-last-look, feedmail-fqm-p): Add debug calls.
19151 (feedmail-queue-runner-message-sender, feedmail-binmail-template):
19152 Change default. Doc fix.
19153 (feedmail-queue-runner-cleaner-upper): Use feedmail-say-chatter.
19154 (feedmail-binmail-linuxish-template): New constant.
19155 (feedmail-buffer-to-sendmail): Doc fix. Add debug call.
19156 Respect feedmail-sendmail-f-doesnt-sell-me-out.
19157 (feedmail-send-it): Add debug call.
19158 Use feedmail-queue-buffer-file-name, and
19159 feedmail-send-it-immediately-wrapper.
19160 (feedmail-message-action-send): Add debug call.
19161 Use feedmail-send-it-immediately-wrapper.
19162 (feedmail-queue-express-to-queue): Add debug call.
19163 Run feedmail-queue-express-hook.
19164 (feedmail-message-action-help): Add debug call. Use feedmail-p-h-b-n.
19165 (feedmail-message-action-help-blat):
19166 Rename from feedmail-queue-send-edit-prompt-help-first.
19167 (feedmail-run-the-queue): Add debug call. Set buffer-file-type.
19168 Check line-endings. Handle errors better.
19169 (feedmail-queue-reminder-brief, feedmail-queue-reminder-medium):
19170 Doc fix. Add debug call.
19171 (feedmail-queue-send-edit-prompt): Doc fix. Add debug call.
19172 Use feedmail-queue-send-edit-prompt-inner.
19173 (feedmail-queue-runner-prompt, feedmail-scroll-buffer): New functions.
19174 (feedmail-queue-send-edit-prompt-inner): New function, extracted
19175 from feedmail-queue-send-edit-prompt.
19176 (feedmail-queue-send-edit-prompt-help)
19177 (feedmail-queue-send-edit-prompt-help-later): Remove functions.
19178 (feedmail-tidy-up-slug): Add debug call.
19179 Respect feedmail-queue-slug-suspect-regexp.
19180 (feedmail-queue-subject-slug-maker): Use buffer-substring-no-properties.
19181 (feedmail-dump-message-to-queue): Add debug call.
19182 Expand queue-directory.
19183 (feedmail-dump-message-to-queue): Change message slightly.
19184 Use feedmail-say-chatter.
19185 (feedmail-rfc822-date): Add debug call. Bind system-time-locale.
19186 (feedmail-send-it-immediately-wrapper): New function.
19187 (feedmail-send-it-immediately): Add debug calls. Use let not let*.
19188 Insert empty string rather than newline. Handle full-frame case.
19189 Use catch/throw. Use feedmail-say-chatter.
19190 (feedmail-fiddle-from): Try mail-host-address.
19191 (feedmail-default-message-id-generator): Doc fix.
19192 Bind system-time-locale. Handle missing end.
19193 (feedmail-fiddle-x-mailer): Add debug call.
19194 Handle feedmail-x-mailer-line being nil.
19195 (feedmail-accume-n-nuke-header, feedmail-deduce-address-list):
19196 Add debug call. Use buffer-substring-no-properties.
19197 (feedmail-say-debug, feedmail-say-chatter): New functions.
19198 (feedmail-find-eoh): Give an explicit error.
19199
19200 2011-05-13 Ulf Jasper <ulf.jasper@web.de>
19201
19202 * net/newst-treeview.el (newsticker-treeview-face): Change default
19203 family from helvetica to sans.
19204 (newsticker-treeview-tool-bar-map): Move tool-bar icons to
19205 etc/images/newsticker.
19206
19207 * net/newst-reader.el (newsticker-feed-face): Change default
19208 family from helvetica to sans.
19209
19210 * net/newst-plainview.el (newsticker-new-item-face)
19211 (newsticker-old-item-face, newsticker-immortal-item-face)
19212 (newsticker-obsolete-item-face, newsticker-date-face)
19213 (newsticker-statistics-face): Change default family from
19214 helvetica to sans.
19215 (newsticker--plainview-tool-bar-map): Move tool-bar icons to
19216 etc/images/newsticker.
19217
19218 * net/newst-backend.el (newsticker--do-run-auto-mark-filter)
19219 (newsticker--process-auto-mark-filter-match): Tell user about
19220 auto-marking.
19221
19222 2011-05-13 Didier Verna <didier@xemacs.org>
19223
19224 Common Lisp indentation improvements on defmethod and lambda-lists.
19225 * emacs-lisp/cl-indent.el: Advertise the changes and remove obsolete
19226 TODO entries.
19227 (lisp-lambda-list-keyword-parameter-indentation)
19228 (lisp-lambda-list-keyword-parameter-alignment)
19229 (lisp-lambda-list-keyword-alignment): New customizable user options.
19230 (lisp-indent-defun-method): Improve docstring.
19231 (extended-loop-p): Fix comment.
19232 (lisp-indent-lambda-list-keywords-regexp): New variable.
19233 (lisp-indent-lambda-list): New function.
19234 (lisp-indent-259): Use it.
19235 (lisp-indent-defmethod): Support for more than one
19236 method qualifier and properly indent methods lambda-lists.
19237 (defgeneric): Provide a missing common-lisp-indent-function property.
19238
19239 2011-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
19240
19241 * thingatpt.el (bounds-of-thing-at-point): Return nil rather than
19242 bounds for the empty string (bug#8667).
19243
19244 2011-05-13 Glenn Morris <rgm@gnu.org>
19245
19246 * mail/feedmail.el (feedmail-buffer-to-sendmail): Require sendmail.
19247
19248 * mail/sendmail.el (sendmail-program): Try executable-find first.
19249 (sendmail-send-it): `sendmail-program' cannot be unbound.
19250
19251 * calendar/appt.el (appt-make-list): Simplify.
19252 (appt-time-msg-list): Doc fix.
19253 (appt-check): Change mode-line message at the time of the appointment.
19254
19255 2011-05-12 Andreas Schwab <schwab@linux-m68k.org>
19256
19257 * progmodes/ld-script.el (ld-script-keywords)
19258 (ld-script-builtins): Update keywords list.
19259
19260 2011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
19261
19262 * progmodes/grep.el (grep-filter): Don't trip on partial lines.
19263
19264 * shell.el (shell-completion-vars): New function.
19265 (shell-mode):
19266 * simple.el (read-shell-command): Use it.
19267 (blink-matching-open): No need for " [...]" in minibuffer-message.
19268
19269 2011-05-12 Glenn Morris <rgm@gnu.org>
19270
19271 * calendar/appt.el (appt-now-displayed): Remove pointless variable.
19272 (appt-check): Simplify.
19273
19274 2011-05-12 Eli Zaretskii <eliz@gnu.org>
19275
19276 * vc/smerge-mode.el (smerge-resolve): Use null-device rather than a
19277 literal "/dev/null".
19278
19279 2011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
19280
19281 * emacs-lisp/lisp.el (lisp-complete-symbol, lisp-completion-at-point):
19282 Fix typo.
19283
19284 2011-05-12 Ralph Schleicher <rs@ralph-schleicher.de>
19285
19286 * progmodes/which-func.el (which-function):
19287 Use add-log-current-defun instead of add-log-current-defun-function,
19288 which might not be defined (Bug#8260).
19289
19290 2011-05-12 Glenn Morris <rgm@gnu.org>
19291
19292 * emacs-lisp/bytecomp.el (byte-compile-file-form-defmumble):
19293 Let byte-compile-initial-macro-environment always take precedence.
19294
19295 2011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
19296
19297 * net/rcirc.el: Add support for SSL/TLS connections.
19298 (rcirc-server-alist): New field `encryption'.
19299 (rcirc): Check `encryption' settings.
19300 (rcirc-connect): New arg `encryption'. Use open-network-stream.
19301 Merge make-local-variable into `set'.
19302 (rcirc--connection-open-p): New function.
19303 (rcirc-send-string, rcirc-clean-up-buffer): Use it to handle case where
19304 the process is not a network process (e.g. running gnutls-cli).
19305 (set-rcirc-decode-coding-system, set-rcirc-encode-coding-system):
19306 Make rcirc-(en|de)code-coding-system local here.
19307 (rcirc-mode): Merge make-local-variable into `set'.
19308 (rcirc-parent-buffer): Make permanent buffer-local.
19309 (rcirc-multiline-minor-mode): Don't do it here.
19310 (rcirc-switch-to-server-buffer): Don't switch to a random buffer if
19311 there's no server buffer.
19312
19313 2011-05-11 Glenn Morris <rgm@gnu.org>
19314
19315 * newcomment.el (comment-kill): Prefix "unused" local.
19316
19317 * term/w32console.el (get-screen-color): Declare.
19318
19319 * emacs-lisp/bytecomp.el (byte-compile-arglist-warn):
19320 Handle symbol elements of byte-compile-initial-macro-environment.
19321
19322 2011-05-10 Leo Liu <sdl.web@gmail.com>
19323
19324 * bookmark.el (bookmark-bmenu-mode-map):
19325 Bind bookmark-bmenu-search to `/'.
19326
19327 * mail/footnote.el: Convert to utf-8 encoding.
19328 (footnote-unicode-string, footnote-unicode-regexp): New variable.
19329 (Footnote-unicode): New function.
19330 (footnote-style-alist): Add unicode style to the list.
19331 (footnote-style): Doc fix.
19332
19333 2011-05-10 Jim Meyering <meyering@redhat.com>
19334
19335 Fix doubled-word typos.
19336 * international/quail.el (quail-insert-kbd-layout): and and -> and
19337 * kermit.el: and and -> and
19338 * net/ldap.el (ldap-search-internal): to to -> to
19339 * progmodes/vhdl-mode.el (vhdl-offsets-alist): Likewise.
19340 * progmodes/js.el (js-mode): and and -> and
19341 * textmodes/artist.el (artist-move-to-xy): at at -> at
19342 (artist-draw-region-trim-line-endings): if if -> if
19343 And Safetyc -> Safety.
19344 * textmodes/reftex-dcr.el (reftex-view-crossref): at at -> at a
19345
19346 2011-05-10 Glenn Morris <rgm@gnu.org>
19347 Stefan Monnier <monnier@iro.umontreal.ca>
19348
19349 * files.el (hack-one-local-variable-eval-safep):
19350 Consider "eval: (foo-mode)" to be safe. (Bug#8613)
19351
19352 2011-05-10 Glenn Morris <rgm@gnu.org>
19353
19354 * calendar/diary-lib.el (diary-list-entries-hook)
19355 (diary-mark-entries-hook, diary-nongregorian-listing-hook)
19356 (diary-nongregorian-marking-hook, diary-list-entries)
19357 (diary-include-other-diary-files, diary-mark-entries)
19358 (diary-mark-included-diary-files): Doc fixes.
19359
19360 2011-05-09 Juanma Barranquero <lekktu@gmail.com>
19361
19362 * misc.el: Require tabulated-list.el during compilation.
19363
19364 2011-05-09 Chong Yidong <cyd@stupidchicken.com>
19365
19366 * progmodes/compile.el (compilation-start):
19367 Run compilation-filter-hook for the async case too.
19368 (compilation-filter-hook): Doc fix.
19369
19370 2011-05-09 Deniz Dogan <deniz@dogan.se>
19371
19372 * wdired.el: Remove outdated installation comment. Fix usage
19373 comment.
19374
19375 2011-05-09 Juanma Barranquero <lekktu@gmail.com>
19376
19377 * misc.el: Implement new command `list-dynamic-libraries'.
19378 (list-dynamic-libraries--loaded-only-p): New variable.
19379 (list-dynamic-libraries--refresh): New function.
19380 (list-dynamic-libraries): New command.
19381
19382 2011-05-09 Chong Yidong <cyd@stupidchicken.com>
19383
19384 * progmodes/compile.el (compilation-error-regexp-alist-alist):
19385 Fix the ant regexp to handle end-line and end-column info from jikes.
19386 Re-introduce maven regexp. Give the ruby-Test::Unit regexp a
19387 higher priority to avoid clobbering by gnu.
19388
19389 2011-05-08 Chong Yidong <cyd@stupidchicken.com>
19390
19391 * cus-face.el (custom-declare-face): Call custom-theme-recalc-face
19392 if the face has existing theme settings (Bug#8454).
19393
19394 2011-05-08 Ralph Schleicher <rs@ralph-schleicher.de>
19395
19396 * progmodes/perl-mode.el (perl-imenu-generic-expression):
19397 Only match variables declared via `my' or `our' (Bug#8261).
19398
19399 * net/browse-url.el (browse-url-of-dired-file): Allow browsing of
19400 special file names `.' and `..' (Bug#8259).
19401
19402 2011-05-08 Chong Yidong <cyd@stupidchicken.com>
19403
19404 * progmodes/grep.el (grep-mode-font-lock-keywords):
19405 Remove buffer-changing entries.
19406 (grep-filter): New function.
19407 (grep-mode): Add it to compilation-filter-hook.
19408
19409 * progmodes/compile.el (compilation-filter-hook)
19410 (compilation-filter-start): New defvars.
19411 (compilation-filter): Call compilation-filter-hook prior to
19412 updating the process mark.
19413
19414 2011-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
19415
19416 * emacs-lisp/eieio.el (defmethod): Fix typo in last change.
19417
19418 2011-05-07 Eli Zaretskii <eliz@gnu.org>
19419
19420 * mail/sendmail.el (send-mail-function): On MS-Windows, default to
19421 mailclient-send-it even if window-system is nil. (Bug#8595)
19422
19423 * term/w32console.el (terminal-init-w32console):
19424 Call get-screen-color and use its output to set the frame
19425 background-mode. (Bug#8597)
19426
19427 2011-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
19428
19429 Make bytecomp.el understand that defmethod defines funs (bug#8631).
19430 * emacs-lisp/eieio.el (eieio--defalias, eieio--defgeneric-init-form):
19431 New functions.
19432 (defgeneric, eieio--defmethod): Use them.
19433 (eieio-defgeneric): Remove.
19434 (defmethod): Call defgeneric in a way visible to the byte-compiler.
19435
19436 2011-05-07 Glenn Morris <rgm@gnu.org>
19437
19438 * calendar/timeclock.el (timeclock-log-data): Remove unused local.
19439 Use let rather than let*.
19440 (timeclock-find-discrep): Remove unused local.
19441
19442 * calendar/diary-lib.el (diary-comment-start): Doc fix.
19443
19444 * calendar/appt.el (appt-time-msg-list): Doc fix.
19445
19446 2011-05-06 Noah Friedman <friedman@splode.com>
19447
19448 * apropos.el (apropos-print-doc): Only use
19449 emacs-lisp-docstring-fill-column when it is bound to an integer,
19450 per that variable's documentation.
19451
19452 2011-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
19453
19454 * lpr.el (print-region-1): Echo lpr-program's output, so error messages
19455 and warnings are not silently discarded (e.g. use -d instead of -P).
19456
19457 2011-05-06 Glenn Morris <rgm@gnu.org>
19458
19459 * calendar/appt.el (appt-message-warning-time): Doc fix.
19460 (appt-warning-time-regexp): New option.
19461 (appt-make-list): Respect appt-message-warning-time.
19462
19463 * calendar/diary-lib.el (diary-comment-start, diary-comment-end):
19464 New options.
19465 (diary-add-to-list): Strip comments from the displayed string.
19466 (diary-mode): Set comment-start and comment-end.
19467
19468 * vc/diff-mode.el (smerge-refine-subst): Declare.
19469 (diff-refine-hunk): Don't require smerge-mode when compiling.
19470
19471 2011-05-06 Juanma Barranquero <lekktu@gmail.com>
19472
19473 * simple.el (list-processes): Return nil as the docstring says.
19474
19475 2011-05-05 Michael Albinus <michael.albinus@gmx.de>
19476
19477 * net/ange-ftp.el (ange-ftp-binary-file-name-regexp): Set default
19478 to "".
19479 (ange-ftp-write-region, ange-ftp-insert-file-contents)
19480 (ange-ftp-copy-file-internal): Use only `ange-ftp-binary-file' for
19481 determining of binary transfer. (Bug#7383)
19482
19483 2011-05-05 Michael Albinus <michael.albinus@gmx.de>
19484
19485 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
19486 Fix port computation bug. (Bug#8618)
19487
19488 2011-05-05 Glenn Morris <rgm@gnu.org>
19489
19490 * allout-widgets.el (allout-widgets-mode-inhibit): Declare before use.
19491
19492 * simple.el (shell-dynamic-complete-functions)
19493 (comint-dynamic-complete-functions): Declare.
19494
19495 * net/network-stream.el (gnutls-negotiate):
19496 * simple.el (tabulated-list-print): Fix declarations.
19497
19498 * progmodes/gud.el (syntax-symbol, syntax-point):
19499 Remove unnecessary and incorrect declarations.
19500
19501 * emacs-lisp/check-declare.el (check-declare-scan):
19502 Handle byte-compile-initial-macro-environment in bytecomp.el.
19503
19504 2011-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
19505
19506 Fix earlier half-done eieio-defmethod change (bug#8338).
19507 * emacs-lisp/eieio.el (eieio--defmethod): Rename from eieio-defmethod.
19508 Streamline and change calling convention.
19509 (defmethod): Adjust accordingly and simplify.
19510 (eieio-defclass): Fix broken calls to eieio-defmethod and redirect to
19511 new eieio--defmethod.
19512 (slot-boundp): Minor CSE simplification.
19513
19514 2011-05-05 Milan Zamazal <pdm@zamazal.org>
19515
19516 * progmodes/glasses.el (glasses-separate-capital-groups): New option.
19517 (glasses-make-readable): Use glasses-separate-capital-groups.
19518
19519 2011-05-05 Juanma Barranquero <lekktu@gmail.com>
19520
19521 * emacs-lisp/warnings.el (warning-level-aliases): Reflow docstring.
19522 (warning-series): Doc fix.
19523 (display-warning): Don't try to create the buffer if we just found it.
19524
19525 2011-05-04 Chong Yidong <cyd@stupidchicken.com>
19526
19527 * emacs-lisp/autoload.el (generated-autoload-file): Set to nil.
19528 (autoload-find-generated-file): New function.
19529 (generate-file-autoloads): Bind generated-autoload-file to
19530 buffer-file-name.
19531 (update-file-autoloads, update-directory-autoloads):
19532 Use autoload-find-generated-file. If called interactively, prompt for
19533 output file (Bug#7989).
19534 (batch-update-autoloads): Doc fix.
19535
19536 2011-05-04 Juanma Barranquero <lekktu@gmail.com>
19537
19538 * term/w32-win.el (dynamic-library-alist): Add `gnutls'.
19539
19540 2011-05-04 Glenn Morris <rgm@gnu.org>
19541
19542 * calendar/diary-lib.el (diary-fancy-date-pattern): Turn it into a
19543 function, so it follows changes in calendar-date-style.
19544 (diary-fancy-date-matcher): New function.
19545 (diary-fancy-font-lock-keywords): Use diary-fancy-date-matcher.
19546 (diary-fancy-font-lock-fontify-region-function):
19547 Use diary-fancy-date-pattern as a function.
19548
19549 * calendar/diary-lib.el (diary-fancy-date-pattern): Do not use
19550 non-numbers for `year' etc pseudo-variables. (Bug#8583)
19551
19552 2011-05-04 Teodor Zlatanov <tzz@lifelogs.com>
19553
19554 * net/gnutls.el (gnutls-negotiate): Use CL-style keyword arguments
19555 instead of positional arguments. Allow :keylist and :crlfiles
19556 arguments.
19557 (open-gnutls-stream): Call it.
19558
19559 * net/network-stream.el (network-stream-open-starttls): Adjust to
19560 call `gnutls-negotiate' with :process and :hostname arguments.
19561
19562 2011-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
19563
19564 * minibuffer.el (completion--message): New function.
19565 (completion--do-completion, minibuffer-complete)
19566 (minibuffer-force-complete, minibuffer-complete-word): Use it.
19567 (completion--do-completion): Don't ignore completion-auto-help when in
19568 icomplete-mode.
19569
19570 * whitespace.el (whitespace-trailing-regexp): Don't rely on the
19571 internal encoding (e.g. tibetan zero is not whitespace).
19572 (global-whitespace-mode): Prefer save-current-buffer.
19573 (whitespace-trailing-regexp): Remove useless save-match-data.
19574 (whitespace-empty-at-bob-regexp): Minor simplification.
19575
19576 2011-05-03 Chong Yidong <cyd@stupidchicken.com>
19577
19578 * emacs-lisp/autoload.el (generated-autoload-file): Doc fix (Bug#7989).
19579
19580 2011-05-03 Agustín Martín Domingo <agustin.martin@hispalinux.es>
19581
19582 * textmodes/ispell.el (ispell-add-per-file-word-list):
19583 Use `concat' to create string for insertion.
19584
19585 2011-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
19586
19587 * textmodes/bibtex.el (bibtex-fill-field-bounds, bibtex-fill-entry):
19588 Avoid open-line which runs post-self-insert-hook.
19589 (bibtex-fill-entry): Remove unused `end' var.
19590
19591 2011-05-03 Dirk Ullrich <dirk.ullrich@googlemail.com> (tiny change)
19592
19593 * textmodes/ispell.el (ispell-add-per-file-word-list):
19594 Protect against `nil' value of `comment-start' (Bug#8579).
19595
19596 2011-05-03 Leo Liu <sdl.web@gmail.com>
19597
19598 * isearch.el (isearch-yank-pop): New command.
19599 (isearch-mode-map): Bind it to `M-y'.
19600 (isearch-forward): Mention it.
19601
19602 2011-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
19603
19604 * simple.el (minibuffer-complete-shell-command): Remove.
19605 (minibuffer-local-shell-command-map): Use completion-at-point.
19606 (read-shell-command): Setup completion vars here instead.
19607 (read-expression-map): Bind TAB to symbol completion.
19608
19609 * textmodes/ispell.el (lookup-words): Use with-temp-buffer; signal
19610 error directly rather via storing it into `results'.
19611
19612 2011-05-02 Leo Liu <sdl.web@gmail.com>
19613
19614 * vc/diff.el: Fix description.
19615
19616 2011-05-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
19617
19618 * server.el (server-eval-at): New function.
19619
19620 2011-05-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
19621
19622 * net/network-stream.el (open-network-stream): Take a :nowait
19623 parameter and pass it on to `make-network-process'.
19624 (network-stream-open-plain): Ditto.
19625
19626 2011-04-30 Andreas Schwab <schwab@linux-m68k.org>
19627
19628 * faces.el (face-spec-set-match-display): Don't match toolkit
19629 options on terminal frames.
19630
19631 2011-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
19632
19633 * progmodes/pascal.el: Use lexical binding.
19634 (pascal-mode-map): Remove author preferences.
19635
19636 * pcomplete.el (pcomplete-std-complete): Don't abuse
19637 completion-at-point.
19638
19639 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
19640
19641 * calc/calccomp.el (math-comp-to-string-flat-term): Simplify by
19642 removing code that has been dead since 1991 or so.
19643
19644 * startup.el (command-line): When warning about "_emacs", use a
19645 delayed warning to allow the user to filter it out.
19646
19647 2011-04-28 Deniz Dogan <deniz@dogan.se>
19648
19649 * net/rcirc.el (rcirc-handler-353): Fix bug for channels which the
19650 user has not joined.
19651
19652 2011-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
19653
19654 * pcomplete.el (pcomplete-completions-at-point): Return nil if there
19655 aren't any completions at point.
19656
19657 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
19658
19659 * subr.el (display-delayed-warnings): New function.
19660 (delayed-warnings-hook): New variable.
19661
19662 2011-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
19663
19664 * minibuffer.el (completion-at-point, completion-help-at-point):
19665 Don't presume that a given completion-at-point-function will always
19666 use the same calling convention.
19667
19668 * pcomplete.el (pcomplete-completions-at-point):
19669 Obey pcomplete-ignore-case. Don't call pcomplete-norm-func unless
19670 pcomplete-seen is non-nil.
19671 (pcomplete-comint-setup): Also recognize the new comint/shell
19672 completion functions.
19673 (pcomplete-do-complete): Don't call pcomplete-norm-func unless
19674 pcomplete-seen is non-nil.
19675
19676 2011-04-27 Niels Giesen <niels.giesen@gmail.com>
19677
19678 * calendar/icalendar.el (diary-lib): Add require statement.
19679 (icalendar--create-uid): Read out a uid from a text-property on
19680 the first character in the entry. This allows for code to add its
19681 own uid to the entry.
19682 (icalendar--convert-float-to-ical): Add export of
19683 `diary-float'-entries save for those with the optional DAY
19684 argument.
19685
19686 2011-04-27 Daniel Colascione <dan.colascione@gmail.com>
19687
19688 * subr.el (shell-quote-argument): Use alternate escaping strategy
19689 when we spot a variable reference in a string.
19690
19691 2011-04-26 Daniel Colascione <dan.colascione@gmail.com>
19692
19693 * cus-start.el (all): Define customization for debug-on-event.
19694
19695 2011-04-26 Daniel Colascione <dan.colascione@gmail.com>
19696
19697 * subr.el (shell-quote-argument): Escape correctly under Windows.
19698
19699 2011-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
19700
19701 * emulation/cua-base.el (cua-selection-mode): Make it toggle again.
19702
19703 2011-04-25 Michael Albinus <michael.albinus@gmx.de>
19704
19705 * net/tramp.el (tramp-process-actions): Add POS argument.
19706 Delete region between POS and (pos).
19707
19708 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
19709 Use `nil' position in `tramp-process-actions' call.
19710 (tramp-maybe-open-connection): Call `tramp-process-actions' with pos.
19711
19712 * net/tramp-smb.el (tramp-smb-maybe-open-connection): Use `nil'
19713 position in `tramp-process-actions' call.
19714
19715 * net/trampver.el: Update release number.
19716
19717 2011-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
19718
19719 * custom.el (defcustom): Obey lexical-binding.
19720
19721 Fix octave-inf completion problems reported by Alexander Klimov.
19722 * progmodes/octave-inf.el (inferior-octave-mode-syntax-table):
19723 Inherit from octave-mode-syntax-table.
19724 (inferior-octave-mode): Set info-lookup-mode.
19725 (inferior-octave-completion-at-point): New function.
19726 (inferior-octave-complete): Use it and completion-in-region.
19727 (inferior-octave-dynamic-complete-functions): Use it as well, and use
19728 comint-filename-completion.
19729 * progmodes/octave-mod.el (octave-mode-syntax-table): Use _ syntax for
19730 symbol elements which shouldn't be word elements.
19731 (octave-font-lock-keywords, octave-beginning-of-defun)
19732 (octave-function-header-regexp): Adjust regexps accordingly.
19733 (octave-mode-map): Also use info-lookup-symbol for C-c C-h.
19734
19735 2011-04-25 Juanma Barranquero <lekktu@gmail.com>
19736
19737 * net/gnutls.el (gnutls-errorp): Declare before first use.
19738
19739 2011-04-24 Teodor Zlatanov <tzz@lifelogs.com>
19740
19741 * net/gnutls.el (gnutls-negotiate): Add hostname, verify-flags,
19742 verify-error, and verify-hostname-error parameters. Check whether
19743 default trustfile exists before going to use it. Add missing
19744 argument to gnutls-message-maybe call. Return value.
19745 Reported by Claudio Bley <claudio.bley@gmail.com>.
19746 (open-gnutls-stream): Add usage example.
19747
19748 * net/network-stream.el (network-stream-open-starttls): Give host
19749 parameter to `gnutls-negotiate'.
19750 (gnutls-negotiate): Adjust `gnutls-negotiate' declaration.
19751 * subr.el (shell-quote-argument): Escape correctly under Windows.
19752
19753 2011-04-24 Daniel Colascione <dan.colascione@gmail.com>
19754
19755 * progmodes/cc-engine.el (c-forward-decl-or-cast-1):
19756 Use correct match group (bug#8438).
19757
19758 2011-04-24 Chong Yidong <cyd@stupidchicken.com>
19759
19760 * emacs-lisp/package.el (package-built-in-p): Fix typo.
19761 (package-menu--generate): New arg specifying packages to show.
19762 (package-menu-refresh, package-menu-execute, list-packages):
19763 Callers changed.
19764 (package-show-package-list): New function, replacing deleted
19765 package--list-packages (renamed because it is non-internal).
19766
19767 * finder.el (finder-list-matches): Use package-show-package-list
19768 instead of deleted package--list-packages.
19769
19770 * vc/vc-annotate.el (vc-annotate-goto-line): New command.
19771 Based on a previous implementation by Juanma Barranquero (Bug#8366).
19772 (vc-annotate-mode-map): Bind it to RET.
19773
19774 2011-04-24 Uday S Reddy <u.s.reddy@cs.bham.ac.uk> (tiny change)
19775
19776 * progmodes/etags.el (next-file): Don't use set-buffer to change
19777 buffers (Bug#8478).
19778
19779 2011-04-24 Chong Yidong <cyd@stupidchicken.com>
19780
19781 * files.el (auto-mode-alist): Use js-mode for .json (Bug#8529).
19782
19783 * apropos.el (apropos-label-face): Avoid variable-pitch face.
19784 (apropos-accumulator): Doc fix.
19785 (apropos-function, apropos-macro, apropos-command)
19786 (apropos-variable, apropos-face, apropos-group, apropos-widget)
19787 (apropos-plist): Add face property.
19788 (apropos-symbols-internal): Fix indentation.
19789 (apropos-print): Simplify help, and recognize apropos-multi-type.
19790 (apropos-print-doc): Use button-type-get to extract the button's
19791 face property. Fill docstring (Bug#8352).
19792
19793 2011-04-23 Juanma Barranquero <lekktu@gmail.com>
19794
19795 * buff-menu.el (Buffer-menu--buffers): Fix typo in docstring (bug#8535).
19796
19797 * play/mpuz.el (mpuz-silent): Doc fix.
19798 (mpuz-mode-map): Use mapc.
19799 (mpuz-put-number-on-board): Rename parameter L to COLUMNS.
19800 (mpuz-letter-to-digit, mpuz-check-all-solved, mpuz-create-buffer):
19801 Fix typos in docstrings.
19802
19803 * play/doctor.el (doc$, doctor-$, doctor-read-print, doctor-read-token)
19804 (doctor-nounp, doctor-pronounp): Fix typos in docstrings.
19805
19806 * mouse-drag.el (mouse-drag-throw): Fix typo in docstring.
19807
19808 2011-04-23 Chong Yidong <cyd@stupidchicken.com>
19809
19810 * minibuffer.el (completion--do-completion): Avoid the "Next char
19811 not unique" prompt if icomplete-mode is enabled (Bug#5849).
19812
19813 * mouse.el (mouse-drag-mode-line-1): Make sure that if we push
19814 mouse-2 into unread-command-events, it is interpreted correctly.
19815
19816 * image-mode.el (image-type, image-mode-map, image-minor-mode-map)
19817 (image-toggle-display): Doc fix.
19818
19819 2011-04-23 Stephen Berman <stephen.berman@gmx.net>
19820
19821 * textmodes/page.el (what-page): Use line-number-at-pos to
19822 calculate line number (Bug#6825).
19823
19824 2011-04-22 Juanma Barranquero <lekktu@gmail.com>
19825
19826 * eshell/esh-mode.el (find-tag-interactive): Declare function.
19827 (eshell-find-tag): Remove `with-no-warnings', unneeded now.
19828 Pass argument NO-DEFAULT to `find-tag-interactive'.
19829
19830 2011-04-22 Juanma Barranquero <lekktu@gmail.com>
19831
19832 Lexical-binding cleanup.
19833
19834 * progmodes/ada-mode.el (ada-after-change-function, ada-loose-case-word)
19835 (ada-no-auto-case, ada-capitalize-word, ada-untab, ada-narrow-to-defun):
19836 * progmodes/ada-prj.el (ada-prj-initialize-values)
19837 (ada-prj-display-page, ada-prj-field-modified, ada-prj-display-help)
19838 (ada-prj-show-value):
19839 * progmodes/ada-xref.el (ada-find-any-references, ada-gdb-application):
19840 * progmodes/antlr-mode.el (antlr-with-displaying-help-buffer)
19841 (antlr-invalidate-context-cache, antlr-options-menu-filter)
19842 (antlr-language-option-extra, antlr-c++-mode-extra, antlr-run-tool):
19843 * progmodes/bug-reference.el (bug-reference-push-button):
19844 * progmodes/fortran.el (fortran-line-length):
19845 * progmodes/glasses.el (glasses-change):
19846 * progmodes/octave-mod.el (octave-fill-paragraph):
19847 * progmodes/python.el (python-mode, python-pdbtrack-track-stack-file)
19848 (python-pdbtrack-grub-for-buffer, python-sentinel):
19849 * progmodes/sql.el (sql-save-connection):
19850 * progmodes/tcl.el (tcl-indent-command, tcl-popup-menu):
19851 * progmodes/xscheme.el (xscheme-enter-debugger-mode):
19852 Mark unused parameters.
19853
19854 * progmodes/compile.el (compilation--flush-directory-cache)
19855 (compilation--flush-parse, compile-internal): Mark unused parameters.
19856 (compilation-buffer-name): Rename parameter MODE-NAME to NAME-OF-MODE.
19857 (compilation-next-error-function): Remove unused variable `timestamp'.
19858
19859 * progmodes/cpp.el (cpp-parse-close): Remove unused variable `begin'.
19860 (cpp-signal-read-only, cpp-grow-overlay): Mark unused parameters.
19861
19862 * progmodes/dcl-mode.el (dcl-end-of-command):
19863 Remove unused variable `start'.
19864 (dcl-calc-command-indent-multiple, dcl-calc-cont-indent-relative)
19865 (dcl-option-value-basic, dcl-option-value-offset)
19866 (dcl-option-value-margin-offset, dcl-option-value-comment-line):
19867 Mark unused parameters.
19868 (dcl-save-local-variable): Remove unused variable `val'.
19869 (mode): Declare.
19870
19871 * progmodes/delphi.el (delphi-save-state, delphi-after-change):
19872 Mark unused parameters.
19873 (delphi-ignore-changes): Move before first use.
19874 (delphi-charset-token-at): Remove unused variable `start'.
19875 (delphi-else-start): Remove unused variable `if-count'.
19876 (delphi-comment-block-start, delphi-comment-block-end):
19877 Remove unused variable `kind'.
19878 (delphi-indent-line): Remove unused variable `new-point'.
19879
19880 * progmodes/ebrowse.el (ebrowse-files-list)
19881 (ebrowse-list-of-matching-members, ebrowse-tags-list-members-in-file):
19882 Mark unused parameters. Don't quote `lambda'.
19883 (ebrowse-sort-tree-list, ebrowse-same-tree-member-buffer-list):
19884 Don't quote `lambda'.
19885 (ebrowse-revert-tree-buffer-from-file, ebrowse-tags-choose-class)
19886 (ebrowse-goto-visible-member/all-member-lists): Mark unused parameters.
19887 (ebrowse-create-tree-buffer): Rename parameter OBARRAY to CLASSES.
19888 (ebrowse-toggle-mark-at-point): Remove unused variable `pnt'.
19889 Use `ignore-errors'.
19890 (ebrowse-frozen-tree-buffer-name, ebrowse-find-source-file)
19891 (ebrowse-view/find-file-and-search-pattern)
19892 (ebrowse-view/find-member-declaration/definition):
19893 Rename parameter TAGS-FILE-NAME to TAGS-FILE.
19894 (ebrowse-find-class-declaration, ebrowse-view-class-declaration):
19895 Rename parameter PREFIX-ARG to PREFIX.
19896 (ebrowse-tags-read-name): Remove unused variables `start' and
19897 `member-info'.
19898 (ebrowse-display-member-buffer): Rename variable `tags-file-name'
19899 to `tags-file'.
19900
19901 * progmodes/etags.el (local-find-tag-hook): Declare.
19902 (tag-partial-file-name-match-p, tag-any-match-p, list-tags):
19903 Mark unused parameters.
19904
19905 * progmodes/executable.el (compilation-error-regexp-alist): Declare.
19906 (executable-interpret): Mark unused parameter.
19907
19908 * progmodes/flymake.el (flymake-process-sentinel)
19909 (flymake-after-change-function)
19910 (flymake-create-temp-with-folder-structure)
19911 (flymake-get-include-dirs-dot): Mark unused parameters.
19912 (flymake-safe-delete-directory): Remove unused variable `err'.
19913
19914 * progmodes/gdb-mi.el (speedbar-change-initial-expansion-list)
19915 (speedbar-timer-fn, speedbar-line-text)
19916 (speedbar-change-expand-button-char, speedbar-delete-subblock)
19917 (speedbar-center-buffer-smartly): Declare functions.
19918 (gdb-find-watch-expression): Remove unused variable `array'.
19919 (gdb-edit-value, gdb-gdb, gdb-ignored-notification, gdb-thread-created)
19920 (gdb-starting): Mark unused parameters.
19921 (gud-gdbmi-marker-filter): Remove unused variable `output-record'.
19922 (gdb-table-string): Remove unused variable `res'.
19923 (gdb-place-breakpoints): Remove unused variables `flag' and `bptno'.
19924 (gdb-disassembly-handler-custom): Remove unused variable `pos'.
19925 (gdb-display-buffer): Remove unused variable `cur-size'.
19926
19927 * progmodes/gud.el (gud-def): Use `defalias' instead of `defun' to
19928 allow lexical-binding compilation.
19929 (gud-expansion-speedbar-buttons, gud-gdb-goto-stackframe)
19930 (gud-dbx-massage-args, gud-xdb-massage-args, gud-perldb-massage-args)
19931 (gud-jdb-massage-args, gud-jdb-find-source, gud-find-class):
19932 Mark unused parameters.
19933 (gud-gdb-marker-filter): Remove unused variable `match'.
19934 (gud-find-class): Bind `syntax-symbol' and `syntax-point' to suitable
19935 lambda expressions and funcall them, instead of using `fset'.
19936
19937 * progmodes/hideif.el (hif-parse-if-exp): Rename parameter
19938 HIF-TOKEN-LIST to TOKEN-LIST and let-bind `hif-token-list'.
19939
19940 * progmodes/hideshow.el (hs-hide-block-at-point): Remove unused
19941 variable `header-beg'; use `let'.
19942
19943 * progmodes/icon.el (indent-icon-exp): Remove unused variables
19944 `restart', `last-sexp' and `at-do'.
19945
19946 * progmodes/js.el (js--debug): Mark unused parameter.
19947 (js--parse-state-at-point): Remove unused variable `bound'; use `let'.
19948 (js--splice-into-items): Remove unused variable `item'.
19949 (js--read-symbol, js--read-tab): Pass 1/-1 to `ido-mode', not t/nil.
19950
19951 * progmodes/make-mode.el (makefile-make-font-lock-keywords):
19952 Rename parameter FONT-LOCK-KEYWORDS to FL-KEYWORDS.
19953 (makefile-complete): Remove unused variable `try'.
19954 (makefile-fill-paragraph, makefile-match-function-end):
19955 Mark unused parameters.
19956
19957 * progmodes/octave-inf.el (inferior-octave-complete):
19958 Remove unused variable `proc'.
19959 (inferior-octave-output-digest): Mark unused parameter.
19960
19961 * progmodes/perl-mode.el (perl-calculate-indent):
19962 Remove unused variable `err'.
19963
19964 * progmodes/prolog.el (prolog-mode-keybindings-inferior)
19965 (prolog-indent-line): Mark unused parameters.
19966 (prolog-indent-line): Remove unused variable `beg'.
19967
19968 * progmodes/ps-mode.el (reporter-prompt-for-summary-p)
19969 (reporter-dont-compact-list): Declare.
19970
19971 * progmodes/sh-script.el (sh-font-lock-quoted-subshell):
19972 Remove unused variable `char'.
19973 (sh-debug): Mark unused parameter.
19974 (sh-get-indent-info): Remove unused variable `start'.
19975 (sh-calculate-indent): Remove unused variable `var'.
19976
19977 * progmodes/simula.el (simula-popup-menu): Mark unused parameter.
19978 (simula-electric-keyword): Remove unused variable `null'.
19979 (simula-search-backward, simula-search-forward): Remove unused
19980 variables `begin' and `end'.
19981
19982 * progmodes/vera-mode.el (vera-guess-basic-syntax):
19983 Remove unused variable `pos'.
19984 (vera-electric-tab, vera-comment-uncomment-region):
19985 Mark unused parameters.
19986 (vera-electric-tab): Rename parameter PREFIX-ARG to PREFIX.
19987
19988 2011-04-22 Chong Yidong <cyd@stupidchicken.com>
19989
19990 * emacs-lisp/package.el (package--builtins, package-alist)
19991 (package-load-descriptor, package-built-in-p, package-activate)
19992 (define-package, package-installed-p)
19993 (package-compute-transaction, package-buffer-info)
19994 (package--push): Doc fix. Distinguish more clearly between
19995 version strings and version lists.
19996
19997 2011-04-21 Juanma Barranquero <lekktu@gmail.com>
19998
19999 Lexical-binding cleanup.
20000
20001 * play/5x5.el (5x5-make-random-solution, 5x5-make-mutate-current)
20002 (5x5-make-mutate-best):
20003 * play/fortune.el (fortune-in-buffer):
20004 * play/gomoku.el (gomoku-init-display):
20005 * play/solitaire.el (solitaire, solitaire-do-check):
20006 * play/tetris.el (tetris-default-update-speed-function):
20007 Mark unused parameters.
20008
20009 * play/bubbles.el (bubbles-mode): Set `show-trailing-whitespace'.
20010 (bubbles--shift): Remove unused variable `char-org'.
20011 (bubbles--set-faces): Remove unused variable `fg-col'. Simplify.
20012 (bubbles--show-images): Remove unused variable `char'.
20013
20014 * play/decipher.el (decipher-keypress, decipher-alphabet-keypress)
20015 (decipher-get-undo, decipher-set-map, decipher-complete-alphabet)
20016 (decipher-resync, decipher-loop-with-breaks, decipher--analyze)
20017 (decipher-analyze-buffer): Use ?\s.
20018 (decipher-make-checkpoint): Remove unused variable `mapping'.
20019
20020 * play/doctor.el (doctor-doc): Rename parameter DOCTOR-SENT to SENT.
20021
20022 * play/gamegrid.el (gamegrid-add-score-with-update-game-score):
20023 Remove unused variable `result'; use `let'.
20024
20025 * play/gametree.el (gametree-current-layout, gametree-apply-layout):
20026 Rename parameter TOP-LEVEL to FROM-TOP-LEVEL; use `ignore-errors'.
20027 (gametree-children-shown-p, gametree-compute-reduced-score):
20028 Use `ignore-errors'.
20029
20030 * play/handwrite.el (ps-lpr-switches): Declare.
20031 (handwrite): Remove unused variables `pmin' and `lastp'.
20032
20033 * play/hanoi.el (hanoi-move-ring): Remove unused variable `total-steps'.
20034
20035 * play/landmark.el (landmark-init-display)
20036 (landmark-update-naught-weights): Mark unused parameters.
20037 (landmark-y): Remove unused variable `noise'. Simplify.
20038 (landmark-human-plays): Remove unused variable `score'.
20039
20040 * play/mpuz.el (mpuz-try-letter): Remove unused variable `message'.
20041 (mpuz-try-proposal): Remove unused variable `game'.
20042
20043 * play/zone.el (life-patterns): Declare.
20044
20045 2011-04-20 Juanma Barranquero <lekktu@gmail.com>
20046
20047 * vc/vc.el (ediff-vc-internal): Declare function.
20048
20049 2011-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
20050
20051 * shell.el: Use lexical-binding and std completion UI.
20052 (shell-filter-ctrl-a-ctrl-b): Work as a preoutput filter.
20053 (shell-mode): Put shell-filter-ctrl-a-ctrl-b on
20054 comint-preoutput-filter-functions rather than on
20055 comint-output-filter-functions.
20056 (shell-command-completion, shell--command-completion-data)
20057 (shell-filename-completion, shell-environment-variable-completion)
20058 (shell-c-a-p-replace-by-expanded-directory): New functions.
20059 (shell-dynamic-complete-functions, shell-dynamic-complete-command)
20060 (shell-dynamic-complete-filename, shell-replace-by-expanded-directory)
20061 (shell-dynamic-complete-environment-variable): Use them.
20062 (shell-dynamic-complete-as-environment-variable)
20063 (shell-dynamic-complete-as-command): Remove.
20064 (shell-match-partial-variable): Match past point.
20065 * comint.el: Clean up use of completion-at-point-functions.
20066 (comint-completion-at-point): New function.
20067 (comint-mode): Use it completion-at-point-functions.
20068 (comint-dynamic-complete): Make it obsolete.
20069 (comint-replace-by-expanded-history-before-point): Add dry-run arg.
20070 (comint-c-a-p-replace-by-expanded-history): New function.
20071 (comint-dynamic-complete-functions)
20072 (comint-replace-by-expanded-history): Use it.
20073 * minibuffer.el (completion-table-with-terminator): Allow dynamic
20074 termination strings. Try harder to avoid second try-completion.
20075 (completion-in-region-mode-map): Disable bindings that don't work yet.
20076
20077 * comint.el: Use lexical-binding. Require CL.
20078 (comint-dynamic-complete-functions): Use comint-filename-completion.
20079 (comint-completion-addsuffix): Tweak custom type.
20080 (comint-filename-completion, comint--common-suffix)
20081 (comint--common-quoted-suffix, comint--table-subvert)
20082 (comint--complete-file-name-data): New functions.
20083 (comint-dynamic-complete-as-filename, comint-dynamic-complete-filename)
20084 (comint-dynamic-list-filename-completions): Use them.
20085 (comint-dynamic-simple-complete): Make obsolete.
20086
20087 * minibuffer.el (completion-in-region-mode):
20088 Keep completion-in-region-mode--predicate global.
20089 (completion-in-region--postch):
20090 Assume completion-in-region-mode--predicate is not null.
20091
20092 * progmodes/flymake.el (flymake-start-syntax-check-process):
20093 Obey `dir'. Simplify.
20094
20095 * vc/vc.el (vc-version-ediff): Call ediff-vc-internal directly, since
20096 we're in VC after all.
20097
20098 2011-04-20 Christoph Scholtes <cschol2112@googlemail.com>
20099
20100 * vc/vc.el (vc-diff-build-argument-list-internal)
20101 (vc-version-ediff, vc-ediff): New commands.
20102 (vc-version-diff): Use vc-diff-build-argument-list-internal.
20103
20104 2011-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
20105
20106 * emacs-lisp/byte-opt.el (byte-decompile-bytecode-1): Remove dead code,
20107 add sanity check.
20108
20109 * obsolete/erc-hecomplete.el: Make obsolete.
20110 * obsolete/: Standardize obsolescence info in the header.
20111
20112 2011-04-20 Glenn Morris <rgm@gnu.org>
20113
20114 * calendar/solar.el (solar-horizontal-coordinates):
20115 Use the longitude argument rather than `calendar-longitude'.
20116 (solar-date-next-longitude): Remove unused locals.
20117
20118 2011-04-20 Vinicius Jose Latorre <viniciusjl@ig.com.br>
20119
20120 * whitespace.el: New version 13.2.1.
20121
20122 2011-04-20 felix <EmacsWiki> (tiny change)
20123
20124 * whitespace.el (global-whitespace-mode): Keep highlight when
20125 switching between major modes on a file.
20126
20127 2011-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
20128
20129 * progmodes/octave-mod.el (octave-in-comment-p, octave-in-string-p)
20130 (octave-not-in-string-or-comment-p): Use syntax-ppss so it works with
20131 multi-line comments as well.
20132
20133 2011-04-19 Juanma Barranquero <lekktu@gmail.com>
20134
20135 Lexical-binding cleanup.
20136
20137 * arc-mode.el (archive-mode-revert):
20138 * cmuscheme.el (scheme-interactively-start-process):
20139 * custom.el (custom-initialize-delay):
20140 * dnd.el (dnd-open-local-file, dnd-open-remote-url):
20141 * dos-w32.el (direct-print-region-helper, direct-print-region-function):
20142 * emacs-lock.el (emacs-lock-clear-sentinel):
20143 * ezimage.el (defezimage):
20144 * follow.el (follow-avoid-tail-recenter):
20145 * fringe.el (set-fringe-mode-1):
20146 * generic-x.el (bat-generic-mode-compile):
20147 * help-mode.el (help-info-variable, help-do-xref)
20148 (help-mode-revert-buffer):
20149 * help.el (view-emacs-todo):
20150 * iswitchb.el (iswitchb-completion-help):
20151 * jka-compr.el (jka-compr-make-temp-name, jka-compr-load):
20152 * kmacro.el (kmacro-cycle-ring-next, kmacro-cycle-ring-previous)
20153 (kmacro-delete-ring-head, kmacro-bind-to-key, kmacro-view-macro):
20154 * locate.el (locate-update):
20155 * longlines.el (longlines-encode-region)
20156 (longlines-after-change-function):
20157 * outline.el (outline-isearch-open-invisible):
20158 * ps-def.el (declare-function, charset-dimension, char-width)
20159 (encode-char):
20160 * ps-mule.el (ps-mule-plot-string):
20161 * recentf.el (recentf-make-menu-items, recentf-cancel-dialog)
20162 (recentf-edit-list-select, recentf-edit-list-validate)
20163 (recentf-open-files-action):
20164 * rect.el (delete-whitespace-rectangle-line)
20165 (rectangle-number-line-callback):
20166 * register.el (window-configuration-to-register)
20167 (frame-configuration-to-register):
20168 * scroll-bar.el (scroll-bar-mode, toggle-horizontal-scroll-bar):
20169 * select.el (xselect-convert-to-string, xselect-convert-to-length)
20170 (xselect-convert-to-targets, xselect-convert-to-delete)
20171 (xselect-convert-to-filename, xselect-convert-to-charpos)
20172 (xselect-convert-to-lineno, xselect-convert-to-colno)
20173 (xselect-convert-to-os, xselect-convert-to-host)
20174 (xselect-convert-to-user, xselect-convert-to-class)
20175 (xselect-convert-to-name, xselect-convert-to-integer)
20176 (xselect-convert-to-atom, xselect-convert-to-identity):
20177 * subr.el (declare, ignore, process-kill-without-query)
20178 (text-clone-maintain):
20179 * terminal.el (te-get-char, te-tic-sentinel):
20180 * tool-bar.el (tool-bar-make-keymap):
20181 * tooltip.el (tooltip-timeout, tooltip-hide, tooltip-help-tips):
20182 * type-break.el (type-break-mode, type-break-noninteractive-query):
20183 * view.el (View-back-to-mark):
20184 * wid-browse.el (widget-browse-action, widget-browse-widget)
20185 (widget-browse-widgets, widget-browse-sexp):
20186 * widget.el (define-widget-keywords):
20187 * xt-mouse.el (xterm-mouse-translate, turn-off-xterm-mouse-tracking):
20188 Mark unused parameters.
20189
20190 * align.el (align-adjust-col-for-rule): Mark unused parameter.
20191 (align-areas): Remove unused variable `look'.
20192 (align-region): Remove unused variables `real-end' and `pos-list'.
20193
20194 * apropos.el (apropos-score-doc): Remove unused variable `i'.
20195
20196 * bindings.el (mode-line-modified, mode-line-remote):
20197 Mark unused parameters.
20198 (mode-line-mule-info): Mark unused parameter; don't quote `lambda'.
20199
20200 * buff-menu.el (Buffer-menu-revert-function): Mark unused parameters.
20201 (Buffer-menu-mode): Mark unused parameter; don't quote `lambda'.
20202
20203 * comint.el (comint-history-isearch-pop-state)
20204 (comint-postoutput-scroll-to-bottom, comint-truncate-buffer)
20205 (comint-strip-ctrl-m, comint-read-noecho): Mark unused parameters.
20206 (comint-substitute-in-file-name): Doc fix.
20207
20208 * completion.el (cmpl-statistics-block): Mark unused parameter.
20209 (add-completions-from-tags-table, add-completions-from-lisp-buffer)
20210 (save-completions-to-file, load-completions-from-file):
20211 Remove unused local variable `e'.
20212
20213 * composite.el (compose-chars): Remove unused variable `len'.
20214 (lgstring-insert-glyph): Remove unused variable `g'.
20215 (compose-glyph-string): Remove unused variables `ascent',
20216 `descent', `lbearing' and `rbearing'.
20217 (compose-glyph-string-relative): Remove unused variables
20218 `lbearing', `rbearing' and `wadjust'.
20219 (compose-gstring-for-graphic): Remove unused variables `header',
20220 `wadjust', `xoff' and `yoff'. Use `let', not `let*'.
20221 (compose-gstring-for-terminal): Remove unused variables `header'
20222 and `nchars'. Use `let', not `let*'.
20223
20224 * cus-edit.el (Custom-set, Custom-save, custom-reset)
20225 (Custom-reset-current, Custom-reset-saved, Custom-reset-standard)
20226 (Custom-buffer-done, custom-buffer-create-internal)
20227 (custom-browse-visibility-action, custom-browse-group-tag-action)
20228 (custom-browse-variable-tag-action, custom-browse-face-tag-action)
20229 (widget-magic-mouse-down-action, custom-toggle-parent)
20230 (custom-add-parent-links, custom-toggle-hide-variable)
20231 (custom-face-edit-value-visibility-action, custom-face-edit-fix-value)
20232 (custom-toggle-hide-face, face, hook, custom-group-link-action)
20233 (custom-face-menu-create, custom-variable-menu-create, get)
20234 (custom-group-menu-create, Custom-no-edit): Mark unused parameters.
20235 (custom-reset-standard-save-and-update): Remove unused variable `value'.
20236 (customize-apropos): Remove unused variable `tests'.
20237 (custom-group-value-create): Remove unused variable `hidden-p'.
20238 (sort-fold-case): Declare.
20239
20240 * cus-theme.el (custom-reset-standard-faces-list)
20241 (custom-reset-standard-variables-list): Declare.
20242 (customize-create-theme, custom-theme-revert, custom-theme-write)
20243 (custom-theme-choose-mode, customize-themes, custom-theme-save):
20244 Mark unused parameters.
20245
20246 * dabbrev.el (dabbrev-completion): Remove unused variable `init'.
20247
20248 * delim-col.el (delimit-columns-max): Move defvar before first use.
20249
20250 * descr-text.el (describe-char-categories): Don't quote `lambda'.
20251 (describe-char): Don't quote `lambda'. Mark unused parameter.
20252
20253 * desktop.el (desktop-save-buffer-p): Mark unused parameter.
20254 (auto-insert): Declare.
20255 (desktop-restore-file-buffer): Rename desktop-* parameters;
20256 mark unused ones.
20257 (desktop-create-buffer): Rename desktop-* parameters and bind them.
20258 (desktop-buffer): Rename desktop-* parameters.
20259
20260 * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape): Declare.
20261 (dframe-reposition-frame-xemacs, dframe-help-echo)
20262 (dframe-hack-buffer-menu, dframe-set-timer, dframe-set-timer-internal):
20263 Mark unused parameters.
20264
20265 * dired-aux.el (backup-extract-version-start, overwrite-query)
20266 (overwrite-backup-query, rename-regexp-query)
20267 (rename-non-directory-query): Declare.
20268 (dired-shell-stuff-it, dired-do-create-files): Mark unused parameters.
20269 (dired-add-entry): Remove unused variable `orig-file-name'.
20270 (dired-copy-file-recursive): Remove unused variable `dirfailed'.
20271 Use parameter PRESERVE-TIME instead of accessing dynamic variable
20272 `dired-copy-preserve-time' directly.
20273 (dired-do-create-files-regexp): Remove unused variable `fn-count'.
20274 (dired-insert-subdir-newpos): Rename unused variable `pos'.
20275
20276 * dired-x.el (dired-omit-size-limit): Move defcustom before first use.
20277 (dired-virtual-revert, dired-make-relative-symlink):
20278 Mark unused parameters.
20279 (manual-program): Declare.
20280 (dired-x-hands-off-my-keys): Rename parameters of lambda expression.
20281 (inode, s, mode, nlink, uid, gid, size, time, name, sym): Declare them,
20282 wrapped in `with-no-warnings' to avoid replacing one warning by another.
20283
20284 * dirtrack.el (dirtrack): Remove unused variable `multi-line'.
20285
20286 * dos-fns.el (dos-8+3-filename): Remove unused variable `i'.
20287
20288 * echistory.el (electric-history-in-progress, Helper-return-blurb):
20289 Declare.
20290
20291 * edmacro.el (edmacro-finish-edit): Remove unused variable `kmacro'.
20292
20293 * electric.el (Electric-command-loop): Rename parameter
20294 INHIBIT-QUIT to INHIBIT-QUITTING and bind `inhibit-quit'.
20295
20296 * expand.el (expand-in-literal): Remove unused variable `here'.
20297
20298 * facemenu.el (facemenu-add-new-color):
20299 Remove unused variable `docstring'.
20300
20301 * faces.el (face-id, make-face-bold, make-face-unbold, make-face-italic)
20302 (make-face-unitalic, make-face-bold-italic): Mark unused parameters.
20303 (face-attr-construct): Mark unused parameter. Doc fix.
20304 (read-color): Remove unused variable `hex-string'.
20305
20306 * files.el (parse-colon-path): Rename argument CD-PATH to SEARCH-PATH.
20307 (locate-dominating-file): Remove unused vars `prev-file' and `user'.
20308 (remote-file-name-inhibit-cache, revert-buffer): Clean up docstrings.
20309 (display-buffer-other-frame): Remove unused variable `old-window'.
20310 (kill-buffer-hook): Declare.
20311 (insert-file-contents-literally, set-auto-mode, risky-local-variable-p):
20312 Mark unused parameters.
20313 (after-find-file): Pass 1 to `auto-save-mode', not t.
20314
20315 * files-x.el (auto-insert): Declare.
20316 (modify-file-local-variable-prop-line): Remove unused variable `val'.
20317
20318 * find-lisp.el (find-lisp-find-dired-internal): Remove unused
20319 variable `buf'. Mark unused parameter.
20320 (find-lisp-insert-directory): Mark unused parameter.
20321
20322 * format.el (format-decode-run-method): Mark unused parameter; doc fix.
20323 (format-encode-region): Remove unused variables `cur-buf' and `result'.
20324 (format-common-tail): Remove, unused.
20325 (format-deannotate-region): Remove unused variable `loc'.
20326 (format-annotate-region): Remove unused variable `p'.
20327 (format-annotate-single-property-change): Remove unused variables
20328 `default' and `tail'.
20329
20330 * forms.el (read-file-filter): Declare.
20331 (forms--iif-hook, forms--revert-buffer): Mark unused parameters.
20332
20333 * frame.el (frame-creation-function-alist): Mark unused parameter.
20334 (frame-geom-spec-cons): Pass FRAME to `frame-geom-value-cons'.
20335
20336 * hilit-chg.el (hilit-chg-cust-fix-changes-face-list, hilit-chg-clear):
20337 Remove unused parameters.
20338 (hilit-chg-set-face-on-change): Remove unused variable `beg-decr'.
20339 (highlight-compare-with-file): Remove unused variable `buf-b-read-only'.
20340
20341 * htmlfontify.el (hfy-default-footer, hfy-decor, hfy-invisible)
20342 (hfy-parse-tags-buffer, hfy-prepare-index-i, hfy-prepare-index)
20343 (hfy-prepare-tag-map): Mark unused parameters.
20344 (htmlfontify-buffer): Use `called-interactively-p'.
20345
20346 * ibuf-ext.el (ibuffer-do-kill-lines, ibuffer-jump-to-buffer)
20347 (ibuffer-copy-filename-as-kill, ibuffer-mark-on-buffer)
20348 (ibuffer-do-occur): Mark unused parameters.
20349 (ibuffer-forward-next-marked): Remove unused variable `curmark'.
20350 (ibuffer-diff-buffer-with-file-1): Remove unused variable `proc'.
20351
20352 * ibuffer.el: Don't quote `lambda'.
20353 (ibuffer-count-marked-lines, ibuffer-count-deletion-lines)
20354 (ibuffer-unmark-all, ibuffer-toggle-marks, ibuffer-redisplay-engine):
20355 Mark unused parameters.
20356
20357 * ido.el (ido-mode, ido-wide-find-dir-or-delete-dir)
20358 (ido-completing-read): Mark unused parameters.
20359 (ido-copy-current-word): Mark unused parameters;
20360 remove unused variable `name'.
20361 (ido-sort-merged-list): Remove unused parameter `dirs'.
20362
20363 * ielm.el (ielm-input-sender): Mark unused parameter.
20364 (ielm-string, ielm-form, ielm-pos, ielm-result, ielm-error-type)
20365 (ielm-output, ielm-wbuf, ielm-pmark): Declare.
20366 (ielm-eval-input): Rename argument IELM-STRING to INPUT-STRING to keep
20367 `ielm-string' as a dynamic variable accessible from the IELM prompt.
20368 Bind `ielm-string' to INPUT-STRING. Remove unused variable `err'.
20369
20370 * image-dired.el (image-dired-display-thumbs): Remove unused
20371 variables `curr-file' and `count'.
20372 (image-dired-remove-tag): Remove unused variable `start'.
20373 (image-dired-tag-files, image-dired-create-thumbs): Remove unused
20374 variable `curr-file'
20375 (image-dired-rotate-original): Remove unused variable `temp-file'.
20376 (image-dired-mouse-select-thumbnail, image-dired-mouse-toggle-mark):
20377 Remove unused variable `file'.
20378 (image-dired-gallery-generate): Remove unused variable `curr'.
20379 (image-dired-dired-edit-comment-and-tags): Mark unused parameters.
20380
20381 * indent.el (tab-to-tab-stop): Remove unused variable `opoint'.
20382
20383 * info-xref.el (info-xref-goto-node-p): Remove unused variable `err'.
20384
20385 * informat.el (texinfo-command-start, texinfo-command-end): Declare.
20386
20387 * isearch.el (minibuffer-history-symbol): Declare.
20388 (isearch-edit-string): Remove unused variable `err'.
20389 (isearch-message-prefix, isearch-message-suffix):
20390 Mark unused parameters.
20391
20392 * ls-lisp.el (ls-lisp-insert-directory): Remove unused variable `fil'.
20393
20394 * macros.el (insert-kbd-macro): Remove unused variable `mods'.
20395
20396 * makesum.el (double-column): Remove unused variable `cnt'.
20397
20398 * misearch.el (multi-isearch-pop-state): Mark unused parameter.
20399 (ido-ignore-item-temp-list): Declare.
20400
20401 * mouse-drag.el (mouse-drag-throw): Remove unused variables
20402 `mouse-delta', `window-last-row', `mouse-col-delta', `window-last-col',
20403 `adjusted-mouse-col-delta' and `adjusted-mouse-delta'.
20404 (mouse-drag-drag): Remove unused variables `mouse-delta' and
20405 `mouse-col-delta'.
20406
20407 * mouse-sel.el (mouse-extend-internal):
20408 Remove unused variable `orig-window-frame'.
20409
20410 * pcomplete.el (pcomplete-args, pcomplete-begins, pcomplete-last)
20411 (pcomplete-index, pcomplete-stub, pcomplete-seen, pcomplete-norm-func):
20412 Move declarations before first use.
20413 (pcomplete-opt): Mark unused parameters; doc fix.
20414
20415 * proced.el (proced-revert): Mark unused parameter.
20416 (proced-send-signal): Remove unused variable `err'.
20417
20418 * ps-print.el (ps-print-preprint-region, ps-print-preprint):
20419 Rename parameter PREFIX-ARG to ARG.
20420 (ps-basic-plot-string, ps-basic-plot-whitespace):
20421 Mark unused parameters.
20422
20423 * replace.el (replace-count): Define.
20424 (occur-revert-function): Mark unused parameters.
20425 (ido-ignore-item-temp-list, isearch-error, isearch-forward)
20426 (isearch-case-fold-search, isearch-string): Declare.
20427 (occur-engine): Rename parameter CASE-FOLD-SEARCH to CASE-FOLD and
20428 bind `case-fold-search'. Remove unused variables `beg' and `end',
20429 and simplify.
20430 (replace-eval-replacement): Rename parameter REPLACE-COUNT to
20431 COUNT and bind `replace-count'.
20432 (replace-loop-through-replacements): Rename parameter REPLACE-COUNT
20433 to COUNT.
20434
20435 * savehist.el (print-readably, print-string-length): Declare.
20436
20437 * shadowfile.el (shadow-expand-cluster-in-file-name):
20438 Remove unused variable `cluster'.
20439 (shadow-copy-file): Remove unused variable `i'.
20440 (shadow-noquery, shadow-clusters, shadow-site-cluster)
20441 (shadow-parse-fullname, shadow-parse-name, shadow-define-cluster)
20442 (shadow-define-literal-group, shadow-define-regexp-group)
20443 (shadow-make-group, shadow-shadows-of): Clean up docstrings.
20444
20445 * shell.el (shell-filter-ctrl-a-ctrl-b): Mark unused parameter.
20446 (shell): Use `called-interactively-p'.
20447 (shell-directory-tracker): Remove unused variable `chdir-failure'.
20448
20449 * simple.el (compilation-context-lines, comint-file-name-quote-list)
20450 (comint-file-name-chars, comint-delimiter-argument-list): Declare.
20451 (delete-backward-char): Remove unused variable `ocol'.
20452 (minibuffer-avoid-prompt, minibuffer-history-isearch-pop-state)
20453 (line-move-1, event-apply-alt-modifier, event-apply-super-modifier)
20454 (event-apply-hyper-modifier, event-apply-shift-modifier)
20455 (event-apply-control-modifier, event-apply-meta-modifier):
20456 Mark unused parameters.
20457 (undo-make-selective-list): Remove duplicate variable `undo-elt'.
20458 (normal-erase-is-backspace-mode): Remove unused variable `old-state'.
20459
20460 * speedbar.el (speedbar-ignored-directory-expressions)
20461 (speedbar-supported-extension-expressions, speedbar-directory-buttons)
20462 (speedbar-find-file, speedbar-dir-follow)
20463 (speedbar-directory-buttons-follow, speedbar-tag-find)
20464 (speedbar-buffer-buttons, speedbar-buffer-buttons-temp)
20465 (speedbar-buffers-line-directory, speedbar-buffer-click):
20466 Mark unused parameters.
20467 (speedbar-tag-file): Remove unused variable `mode'.
20468 (speedbar-buffers-tail-notes): Remove unused variable `mod'; simplify.
20469
20470 * strokes.el (strokes-decode-buffer): Remove unused variable `ext'.
20471
20472 * talk.el (talk): Remove unused variable `display'.
20473
20474 * tar-mode.el (tar-subfile-save-buffer): Remove unused variable `name'.
20475 (tar-write-region-annotate): Mark unused parameter.
20476
20477 * time.el (now, time, load, mail, 24-hours, hour, 12-hours, am-pm)
20478 (minutes, seconds, time-zone, day, year, monthname, month, dayname):
20479 Declare them, wrapped in `with-no-warnings' to avoid replacing one
20480 warning by another.
20481
20482 * time-stamp.el (time-stamp-string-preprocess):
20483 Remove unused variable `require-padding'.
20484
20485 * tree-widget.el (widget-glyph-enable): Declare.
20486 (tree-widget-action): Mark unused parameter.
20487
20488 * w32-fns.el (x-get-selection): Mark unused parameter.
20489 (autoload-make-program, generated-autoload-file): Declare.
20490
20491 * wdired.el (wdired-revert): Mark unused parameters.
20492 (wdired-xcase-word): Remove unused variable `err'.
20493
20494 * whitespace.el (whitespace-buffer-changed): Mark unused parameters.
20495 (whitespace-help-scroll): Remove unused variable `data-help'.
20496
20497 * wid-edit.el (widget-mouse-help, widget-overlay-inactive)
20498 (widget-image-insert, widget-after-change, default)
20499 (widget-default-format-handler, widget-default-notify)
20500 (widget-default-prompt-value, widget-info-link-action)
20501 (widget-url-link-action, widget-function-link-action)
20502 (widget-variable-link-action, widget-file-link-action)
20503 (widget-emacs-library-link-action, widget-emacs-commentary-link-action)
20504 (widget-field-prompt-internal, widget-field-action, widget-field-match)
20505 (widget-choice-mouse-down-action, toggle, widget-radio-button-notify)
20506 (widget-insert-button-action, widget-delete-button-action, visibility)
20507 (widget-documentation-link-action, widget-documentation-string-action)
20508 (widget-const-prompt-value, widget-regexp-match, symbol)
20509 (widget-coding-system-prompt-value)
20510 (widget-key-sequence-value-to-external, sexp)
20511 (widget-sexp-value-to-internal, character, vector, cons)
20512 (widget-choice-prompt-value, widget-boolean-prompt-value)
20513 (widget-color--choose-action): Mark unused parameters.
20514 (widget-item-match-inline, widget-choice-match-inline)
20515 (widget-checklist-match, widget-checklist-match-inline)
20516 (widget-group-match): Rename parameter VALUES to VALS.
20517 (widget-field-value-set): Remove unused variable `size'.
20518 (widget-color-action): Remove unused variables `value' and `start'.
20519
20520 * windmove.el (windmove-wrap-loc-for-movement): Remove unused
20521 variable `dir'. Doc fix.
20522 (windmove-find-other-window): Don't pass it.
20523
20524 * window.el (count-windows): Mark unused parameter.
20525 (bw-adjust-window): Remove unused variable `err'.
20526
20527 * woman.el (woman-file-name): Remove unused variable `default'.
20528 (woman-expand-directory-path): Rename parameters WOMAN-MANPATH and
20529 WOMAN-PATH to PATH-DIRS and PATH-REGEXPS, respectively.
20530 (global-font-lock-mode): Declare.
20531 (woman-decode-region): Mark unused parameter.
20532 (woman-get-tab-stop): Rename parameter TAB-STOP-LIST to TAB-STOPS.
20533
20534 * x-dnd.el (x-dnd-default-test-function, x-dnd-handle-old-kde)
20535 (x-dnd-handle-xdnd, x-dnd-handle-motif): Mark unused parameters.
20536 (x-dnd-handle-moz-url): Remove unused variable `title'.
20537 (x-dnd-handle-xdnd): Remove unused variables `x', `y' and `ret-action'.
20538
20539 * xml.el (xml-parse-tag, xml-parse-attlist):
20540 Remove unused variable `pos'.
20541
20542 2011-04-19 Glenn Morris <rgm@gnu.org>
20543
20544 * calendar/cal-tex.el (cal-tex-list-holidays, cal-tex-cursor-month)
20545 (cal-tex-cursor-week, cal-tex-cursor-week2, cal-tex-cursor-week-iso)
20546 (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
20547 (cal-tex-cursor-filofax-daily, cal-tex-mini-calendar)
20548 * calendar/cal-html.el (cal-html-insert-minical):
20549 * calendar/diary-lib.el (diary-list-entries-1, diary-list-entries)
20550 (calendar-mark-date-pattern):
20551 Prefix "unused" locals.
20552
20553 * calendar/cal-dst.el (dst-adjust-time): Remove never-implemented
20554 optional argument `style'.
20555
20556 * calendar/appt.el (appt-make-list):
20557 * calendar/cal-china.el (calendar-chinese-date-string):
20558 * calendar/cal-hebrew.el (calendar-hebrew-list-yahrzeits)
20559 (diary-hebrew-yahrzeit):
20560 * calendar/cal-tex.el (cal-tex-last-blank-p, cal-tex-cursor-week2):
20561 * calendar/calendar.el (calendar-generate-window):
20562 * calendar/time-date.el (time-to-days):
20563 Remove unused local variables.
20564
20565 2011-04-18 Chong Yidong <cyd@stupidchicken.com>
20566
20567 * emacs-lisp/tabulated-list.el (tabulated-list-mode): Use a custom
20568 glyphless-char-display table.
20569 (tabulated-list-glyphless-char-display): New var.
20570
20571 2011-04-18 Sam Steingold <sds@gnu.org>
20572
20573 * vc/add-log.el (change-log-font-lock-keywords): Add "Thanks to"
20574 to acknowledgments.
20575
20576 2011-04-17 Glenn Morris <rgm@gnu.org>
20577
20578 * calendar/diary-lib.el (diary-sexp-entry):
20579 * calendar/holidays.el (holiday-sexp):
20580 Set debug-on-error rather than the removed stack-trace-on-error.
20581
20582 2011-04-16 Glenn Morris <rgm@gnu.org>
20583
20584 * progmodes/f90.el: Use lexical-binding.
20585 (f90-get-correct-indent): Remove unnecessary local variable `cont'.
20586
20587 2011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
20588
20589 * mail/sendmail.el (mail-mode-map): Use completion-at-point.
20590 (mail-mode): Setup mailalias completion here instead.
20591 * mail/mailalias.el: Use lexical-binding.
20592 (pattern, mailalias-done): Declare dynamic.
20593 (mail-completion-at-point-function): New function, from mail-complete.
20594 (mail-complete): Use it.
20595 (mail-completion-expand): New function.
20596 (mail-get-names): Use it.
20597 (mail-directory, mail-directory-process, mail-directory-stream):
20598 Don't use `pattern' for lexically bound arg.
20599
20600 * emacs-lisp/lisp-mode.el (eval-defun-2): Use eval-sexp-add-defvars.
20601
20602 * htmlfontify.el (hfy-etags-cmd): Remove inoperant eval-and-compile.
20603 (hfy-e2x-etags-cmd, hfy-etags-cmd-alist-default)
20604 (hfy-etags-cmd-alist): Don't eval-and-compile any more.
20605
20606 * emacs-lisp/bytecomp.el (byte-temp-output-buffer-show)
20607 (byte-save-window-excursion, byte-temp-output-buffer-setup)
20608 (byte-interactive-p): Define them again, for use when inlining
20609 old code.
20610
20611 2011-04-15 Juanma Barranquero <lekktu@gmail.com>
20612
20613 * loadup.el: Use `string-to-number', not `string-to-int'.
20614
20615 2011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
20616
20617 * progmodes/gud.el (gud-gdb): Use completion-at-point instead of
20618 gud-gdb-complete-command.
20619 (gud-gdb-completions): New function, from gud-gdb-complete-command.
20620 (gud-gdb-completion-at-point): New function.
20621 (gud-gdb-completions): Remove.
20622
20623 2011-04-14 Michael Albinus <michael.albinus@gmx.de>
20624
20625 * net/tramp-sh.el (tramp-sh-handle-file-attributes): Handle the case
20626 when the scripts fail. Use `tramp-do-file-attributes-with-ls' then.
20627 (tramp-do-copy-or-rename-file-out-of-band): Do not check any longer
20628 whether `executable-find' is bound.
20629
20630 * net/tramp-smb.el (tramp-smb-handle-copy-file): Fix docstring.
20631
20632 2011-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
20633
20634 * minibuffer.el (completion-in-region-mode-predicate)
20635 (completion-in-region-mode--predicate): New vars.
20636 (completion-in-region, completion-in-region--postch)
20637 (completion-in-region-mode): Use them.
20638 (completion--capf-wrapper): Also return the hook function.
20639 (completion-at-point, completion-help-at-point):
20640 Adjust and provide a predicate.
20641
20642 Preserve arg names for advice of subr and lexical functions (bug#8457).
20643 * help-fns.el (help-function-arglist): Consolidate the subr and
20644 new-byte-code cases. Add argument `preserve-names' to extract names
20645 from the docstring when needed.
20646 * emacs-lisp/advice.el (ad-define-subr-args, ad-undefine-subr-args)
20647 (ad-subr-args-defined-p, ad-get-subr-args, ad-subr-arglist): Remove.
20648 (ad-arglist): Use help-function-arglist's new arg.
20649 (ad-definition-type): Use cond.
20650
20651 2011-04-13 Juanma Barranquero <lekktu@gmail.com>
20652
20653 * autorevert.el (auto-revert-handler):
20654 Bind `remote-file-name-inhibit-cache', not `tramp-cache-inhibit-cache',
20655 which was removed in 2010-10-02T13:21:43Z!michael.albinus@gmx.de.
20656 Don't quote lambda.
20657
20658 * image-mode.el (image-transform-set-scale):
20659 Fix change in 2011-04-09T20:28:01Z!cyd@stupidchicken.com.
20660
20661 2011-04-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
20662
20663 * net/network-stream.el (network-stream-open-starttls): Only do
20664 opportunistic STARTTLS upgrades if we have built-in GnuTLS support.
20665 Upgrades via gnutls-cli are too slow to be done opportunistically.
20666
20667 2011-04-12 Juanma Barranquero <lekktu@gmail.com>
20668
20669 * dframe.el (dframe-current-frame): Remove spurious quote.
20670
20671 2011-04-12 Glenn Morris <rgm@gnu.org>
20672
20673 * calendar/cal-tex.el (cal-tex-end-document):
20674 Try to automatically use latin1 input if needed.
20675
20676 * calendar/cal-hebrew.el (diary-hebrew-rosh-hodesh):
20677 Don't try to cons a mark onto an empty element.
20678
20679 2011-04-11 Leo Liu <sdl.web@gmail.com>
20680
20681 * ido.el (ido-buffer-internal): Allow method 'kill for virtual
20682 buffers.
20683 (ido-kill-buffer-at-head): Support killing virtual buffers.
20684
20685 2011-04-10 Chong Yidong <cyd@stupidchicken.com>
20686
20687 * minibuffer.el (completion-show-inline-help): New var.
20688 (completion--do-completion, minibuffer-complete)
20689 (minibuffer-force-complete, minibuffer-complete-word):
20690 Inhibit minibuffer messages if completion-show-inline-help is nil.
20691
20692 * icomplete.el (icomplete-mode): Bind completion-show-inline-help
20693 to avoid interference from inline help (Bug#5849).
20694
20695 2011-04-10 Leo Liu <sdl.web@gmail.com>
20696
20697 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
20698 Fix typo.
20699
20700 2011-04-09 Chong Yidong <cyd@stupidchicken.com>
20701
20702 * image-mode.el (image-toggle-display-image): Signal an error if
20703 not in Image mode.
20704 (image-transform-mode, image-transform-resize)
20705 (image-transform-set-rotation): Doc fix.
20706 (image-transform-set-resize): Delete.
20707 (image-transform-set-scale, image-transform-fit-to-height)
20708 (image-transform-fit-to-width): Handle image-toggle-display-image
20709 and image-transform-resize directly.
20710
20711 2011-04-08 Sho Nakatani <lay.sakura@gmail.com>
20712
20713 * doc-view.el (doc-view-fit-width-to-window)
20714 (doc-view-fit-height-to-window, doc-view-fit-page-to-window):
20715 New functions for fitting the shown image to the Emacs window size.
20716 (doc-view-mode-map): Add bindings for the new functions.
20717
20718 2011-04-08 Juanma Barranquero <lekktu@gmail.com>
20719
20720 * vc/vc-annotate.el (vc-annotate-show-log-revision-at-line):
20721 Fix typo in docstring.
20722
20723 2011-04-08 Eli Zaretskii <eliz@gnu.org>
20724
20725 * files.el (file-size-human-readable): Produce one digit after
20726 decimal, like "ls -lh" does.
20727
20728 * ls-lisp.el (ls-lisp-format-file-size): Allow for 7 characters in
20729 the file size representation.
20730
20731 * simple.el (list-processes): If async subprocesses are not
20732 available, error out with a clear error message.
20733
20734 2011-04-08 Chong Yidong <cyd@stupidchicken.com>
20735
20736 * help.el (help-form-show): New function, to be called from C.
20737 Put help-form output in a buffer named differently than *Help*.
20738
20739 2011-04-08 Eli Zaretskii <eliz@gnu.org>
20740
20741 * files.el (file-size-human-readable): New function.
20742
20743 * ls-lisp.el (ls-lisp-format-file-size): Use it, instead of
20744 computing the representation inline. Don't require `cl'.
20745
20746 2011-04-08 Glenn Morris <rgm@gnu.org>
20747
20748 * man.el (Man-page-header-regexp): Solaris < 2.6 no longer supported.
20749
20750 * net/browse-url.el (browse-url-firefox):
20751 Test system-type, not system-configuration.
20752
20753 * vc/log-edit.el (log-edit-empty-buffer-p): New function.
20754 (log-edit-insert-cvs-template, log-edit-insert-cvs-rcstemplate):
20755 Use log-edit-empty-buffer-p. (Bug#7598)
20756
20757 * net/rlogin.el (rlogin-process-connection-type): Simplify.
20758 (rlogin-mode-map): Initialize in the defvar.
20759 (rlogin): Use ignore-errors.
20760
20761 * replace.el (occur-mode-map): Some fixes for menu items.
20762
20763 2011-04-07 Aaron S. Hawley <aaron.s.hawley@gmail.com>
20764
20765 * play/morse.el (denato-region): Handle varying case. (Bug#8386)
20766
20767 2011-04-06 Chong Yidong <cyd@stupidchicken.com>
20768
20769 * emacs-lisp/cconv.el (cconv--analyse-use): Ignore "ignored" when
20770 issuing unused warnings.
20771
20772 * emacs-lisp/tabulated-list.el (tabulated-list-print): Use lambda
20773 macro directly.
20774
20775 * simple.el: Lisp reimplement of list-processes. Based on an
20776 earlier reimplementation by Leo Liu, but using tabulated-list.el.
20777 (process-menu-mode): New major mode.
20778 (list-processes--refresh, list-processes):
20779 (process-menu-visit-buffer): New functions.
20780
20781 * files.el (save-buffers-kill-emacs): Don't assume any return
20782 value of list-processes, which is undocumented anyway.
20783
20784 2011-04-06 Chong Yidong <cyd@stupidchicken.com>
20785
20786 * emacs-lisp/tabulated-list.el: New file.
20787
20788 * emacs-lisp/package.el: Use Tabulated List mode.
20789 (package-menu-mode-map): Inherit from tabulated-list-mode-map.
20790 (package-menu-mode): Derive from tabulated-list-mode. Set up the
20791 table format using Tabulated List mode variables.
20792 (package--push): New macro, replacing package-list-maybe-add.
20793 (package-menu--generate): Use package--push. Renamed from
20794 package--generate-package-list.
20795 (package-menu-refresh, list-packages): Use it.
20796 (package-menu--print-info): Rename from package-print-package.
20797 Return insertion data instead of inserting it directly.
20798 (package-menu-describe-package, package-menu-execute):
20799 Use tabulated-list-get-id.
20800 (package-menu-mark-delete, package-menu-mark-install)
20801 (package-menu-mark-unmark, package-menu-backup-unmark)
20802 (package-menu-mark-obsolete-for-deletion):
20803 Use tabulated-list-put-tag.
20804 (package--list-packages, package-menu-revert)
20805 (package-menu-get-package, package-menu-get-version)
20806 (package-menu-sort-by-column): Functions deleted.
20807 (package-menu-package-list, package-menu-sort-key): Vars deleted.
20808 (package-menu--status-predicate, package-menu--version-predicate)
20809 (package-menu--name-predicate)
20810 (package-menu--description-predicate): Handle arguments in the
20811 Tabulated List format.
20812 (package-list-packages-no-fetch): Call list-packages.
20813
20814 2011-04-06 Juanma Barranquero <lekktu@gmail.com>
20815
20816 * files.el (after-find-file-from-revert-buffer): Remove variable.
20817 (after-find-file): Don't bind it.
20818 (revert-buffer-in-progress-p): New variable.
20819 (revert-buffer): Bind it.
20820 Pass nil for `after-find-file-from-revert-buffer'.
20821
20822 * saveplace.el (save-place-find-file-hook): Use new variable
20823 `rever-buffer-in-progress-p', not `after-find-file-from-revert-buffer'.
20824
20825 2011-04-06 Glenn Morris <rgm@gnu.org>
20826
20827 * Makefile.in (AUTOGEN_VCS): New variable.
20828 (autoloads): Use $AUTOGEN_VCS.
20829
20830 * calendar/cal-move.el (calendar-scroll-toolkit-scroll): New function.
20831 * calendar/calendar.el (calendar-mode-map):
20832 Check for toolkit scroll bars. (Bug#8305)
20833
20834 2011-04-05 Chong Yidong <cyd@stupidchicken.com>
20835
20836 * minibuffer.el (completion-in-region--postch)
20837 (completion-in-region-mode): Remove unnecessary messages.
20838
20839 2011-04-05 Juanma Barranquero <lekktu@gmail.com>
20840
20841 * font-lock.el (font-lock-refresh-defaults):
20842 Don't bind `hi-lock--inhibit-font-lock-hook', removed in
20843 2010-10-09T04:09:19Z!cyd@stupidchicken.com and 2010-10-11T23:57:49Z!lekktu@gmail.com (2010-10-12).
20844
20845 * info.el (Info-directory-list, Info-read-node-name-2)
20846 (Info-split-parameter-string): Doc fixes.
20847 (Info-virtual-nodes): Reflow docstring.
20848 (Info-find-file, Info-directory-toc-nodes, Info-history-toc-nodes)
20849 (Info-apropos-toc-nodes, info-finder, Info-get-token)
20850 (Info-find-emacs-command-nodes, Info-speedbar-key-map):
20851 Fix typos in docstrings.
20852 (Info-revert-buffer-function, Info-search, Info-isearch-pop-state)
20853 (Info-speedbar-hierarchy-buttons, Info-speedbar-goto-node)
20854 (Info-speedbar-buttons, Info-desktop-buffer-misc-data)
20855 (Info-restore-desktop-buffer): Mark unused parameters.
20856 (Info-directory-find-file, Info-directory-find-node)
20857 (Info-history-find-file, Info-history-find-node, Info-toc-find-node)
20858 (Info-virtual-index-find-node, Info-apropos-find-file)
20859 (Info-apropos-find-node, Info-finder-find-file, Info-finder-find-node):
20860 Mark unused parameters; fix typos in docstrings.
20861 (Info-virtual-index): Remove unused local variable `nodename'.
20862
20863 2011-04-05 Deniz Dogan <deniz@dogan.se>
20864
20865 * net/rcirc.el: Update my e-mail address.
20866 (rcirc-mode-map): Remove M-o binding.
20867
20868 2011-04-05 Chong Yidong <cyd@stupidchicken.com>
20869
20870 * startup.el (command-line): Save the cursor's theme-face
20871 directly, instead of using face-override-spec.
20872
20873 * custom.el (load-theme): Minor optimization in assigning faces.
20874
20875 2011-04-04 Juanma Barranquero <lekktu@gmail.com>
20876
20877 * help-fns.el (describe-variable): Complete all variables having
20878 documentation, including keywords.
20879 http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00112.html
20880
20881 2011-04-04 Juanma Barranquero <lekktu@gmail.com>
20882
20883 Convert to lexical-binding.
20884
20885 * bs.el (bs-refresh, bs-sort-buffer-interns-are-last)
20886 (bs--get-marked-string, bs--get-modified-string)
20887 (bs--get-readonly-string, bs--get-size-string, bs--get-name)
20888 (bs--get-mode-name, bs--get-file-name): Mark unused arguments.
20889 (bs--configuration-name-for-prefix-arg): Rename argument PREFIX-ARG.
20890
20891 * ehelp.el (electric-help-execute-extended)
20892 (electric-help-ctrl-x-prefix):
20893 * hexl.el (hexl-revert-buffer-function):
20894 * linum.el (linum-after-change, linum-after-scroll):
20895 * emacs-lisp/re-builder.el (reb-auto-update): Mark unused arguments.
20896
20897 * help-fns.el (help-describe-category-set): Remove unused ERR variable.
20898
20899 2011-04-04 Daiki Ueno <ueno@unixuser.org>
20900
20901 * epa-dired.el:
20902 * epa-mail.el:
20903 * epa-hook.el:
20904 * epa-file.el:
20905 * epa.el:
20906 * epg.el: Use lexical binding.
20907
20908 2011-04-03 Chong Yidong <cyd@stupidchicken.com>
20909
20910 * dired-aux.el (dired-create-files): Add docstring (Bug#7970).
20911
20912 * textmodes/flyspell.el (flyspell-word): Recognize default
20913 dictionary case for flyspell-mark-duplications-exceptions.
20914 Use regexp matching for languages.
20915 (flyspell-mark-duplications-exceptions): Add "that" and "had" for
20916 default dictionary (Bug#7926).
20917
20918 2011-04-02 Chong Yidong <cyd@stupidchicken.com>
20919
20920 * emacs-lisp/package.el (package--with-work-buffer):
20921 Recognize https URLs.
20922
20923 * net/network-stream.el: Move from gnus/proto-stream.el.
20924 Change prefix to network-stream throughout.
20925 (open-protocol-stream): Merge into open-network-stream, leaving
20926 open-protocol-stream as an alias. Handle nil BUFFER args.
20927
20928 * subr.el (open-network-stream): Move to net/network-stream.el.
20929
20930 2011-04-02 Glenn Morris <rgm@gnu.org>
20931
20932 * find-dired.el (find-exec-terminator): New option.
20933 (find-ls-option): Test for -ls support.
20934 (find-ls-subdir-switches): Test for -b in find-ls-option.
20935 (find-dired, find-grep-dired): Doc fixes.
20936 (find-dired): Use find-exec-terminator.
20937
20938 * find-dired.el (find-ls-option, find-ls-subdir-switches)
20939 (find-grep-options): Do not autoload these defcustoms, remove purecopy.
20940 (find-name-arg): Remove purecopy.
20941
20942 * progmodes/grep.el (grep-find-use-xargs): Doc fix.
20943 (grep-compute-defaults): Check for `-exec COMMAND +' support.
20944 Set grep-find-use-xargs, grep-find-command, and grep-find-template
20945 accordingly. Don't add the null-device if not needed.
20946
20947 * files.el (save-some-buffers): Doc fix.
20948
20949 2011-04-02 Eli Zaretskii <eliz@gnu.org>
20950
20951 * makefile.w32-in (EMACS): Default to ../src/$(BLD)/emacs.exe.
20952
20953 2011-04-01 Juanma Barranquero <lekktu@gmail.com>
20954
20955 * progmodes/idlwave.el (idlwave-one-key-select, idlwave-list-abbrevs):
20956 Use `dolist' rather than `mapcar'.
20957
20958 2011-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
20959
20960 Add lexical binding.
20961
20962 * subr.el (apply-partially): Use new closures rather than CL.
20963 (--dolist-tail--, --dotimes-limit--): Don't declare dynamic.
20964 (dolist, dotimes): Use slightly different expansion for lexical code.
20965 (functionp): Move to C.
20966 (letrec): New macro.
20967 (with-wrapper-hook): Use it and apply-partially instead of CL.
20968 (eval-after-load): Preserve lexical-binding.
20969 (save-window-excursion, with-output-to-temp-buffer): Turn them
20970 into macros.
20971
20972 * simple.el (with-wrapper-hook, apply-partially): Move to subr.el.
20973
20974 * help-fns.el (help-split-fundoc): Return nil if there's nothing else
20975 than the arglist.
20976 (help-add-fundoc-usage): Don't add `Not documented'.
20977 (help-function-arglist): Handle closures, subroutines, and new
20978 byte-code-functions.
20979 (help-make-usage): Remove leading underscores.
20980 (describe-function-1): Handle closures.
20981 (describe-variable): Use special-variable-p for completion.
20982
20983 * files.el (lexical-binding): Declare safe.
20984
20985 * emacs-lisp/pcase.el: Don't use destructuring-bind.
20986 (pcase--memoize): Rename from pcase-memoize. Change weakness.
20987 (pcase): Add `let' pattern.
20988 Change memoization so it actually works.
20989 (pcase-mutually-exclusive-predicates): Add byte-code-function-p.
20990 (pcase--u1) <guard, pred>: Fix possible shadowing problem.
20991 <let>: New case.
20992
20993 * emacs-lisp/macroexp.el: Use lexical binding.
20994 (macroexpand-all-1): Check obsolete macros. Expand compiler-macros.
20995 Don't convert ' to #' without checking that it's indeed quoting
20996 a lambda.
20997
20998 * emacs-lisp/lisp-mode.el (eval-last-sexp-1):
20999 Use eval-sexp-add-defvars.
21000 (eval-sexp-add-defvars): New fun.
21001
21002 * emacs-lisp/float-sup.el (pi): Don't declare as dynamically bound.
21003
21004 * emacs-lisp/eieio.el (byte-compile-file-form-defmethod):
21005 Don't autoload.
21006 (eieio-defgeneric-form-primary-only-one): Use `byte-compile' rather
21007 than the internal `byte-compile-lambda'.
21008 (defmethod): Don't hide code under quotes.
21009 (eieio-defmethod): New `code' argument.
21010
21011 * emacs-lisp/eieio-comp.el: Remove.
21012
21013 * emacs-lisp/edebug.el (edebug-eval-defun)
21014 (edebug-eval-top-level-form): Use eval-sexp-add-defvars.
21015 (edebug-toggle): Avoid `eval'.
21016
21017 * emacs-lisp/disass.el (disassemble-internal): Handle new
21018 `closure' objects.
21019 (disassemble-1): Handle new byte codes.
21020
21021 * emacs-lisp/cl.el (pushnew): Silence warning.
21022
21023 * emacs-lisp/cl-macs.el (cl-byte-compile-block)
21024 (cl-byte-compile-throw): Remove.
21025 (cl-block-wrapper, cl-block-throw): Use compiler-macros instead.
21026
21027 * emacs-lisp/cl-extra.el (cl-macroexpand-all): Properly quote CL
21028 closures.
21029
21030 * emacs-lisp/cconv.el: New file.
21031
21032 * emacs-lisp/bytecomp.el: Use lexical binding instead of
21033 a "bytecomp-" prefix. Macroexpand everything as a separate phase.
21034 (byte-compile-initial-macro-environment):
21035 Handle declare-function here.
21036 (byte-compile--lexical-environment): New var.
21037 (byte-stack-ref, byte-stack-set, byte-discardN)
21038 (byte-discardN-preserve-tos): New lap codes.
21039 (byte-interactive-p): Don't use any more.
21040 (byte-compile-push-bytecodes, byte-compile-push-bytecode-const2):
21041 New macros.
21042 (byte-compile-lapcode): Use them and handle new lap codes.
21043 (byte-compile-obsolete): Remove.
21044 (byte-compile-arglist-signature): Handle new byte-code arg"lists".
21045 (byte-compile-arglist-warn): Check late def of inlinable funs.
21046 (byte-compile-cl-warn): Don't silence warnings for compiler-macros
21047 since they should have been expanded by now.
21048 (byte-compile--outbuffer): Rename from bytecomp-outbuffer.
21049 (byte-compile-from-buffer): Remove unused second arg.
21050 (byte-compile-preprocess): New function.
21051 (byte-compile-toplevel-file-form): New function to distinguish
21052 file-form calls from outside from file-form calls from hunk-handlers.
21053 (byte-compile-file-form): Simplify.
21054 (byte-compile-file-form-defsubst): Remove.
21055 (byte-compile-file-form-defmumble): Simplify now that
21056 byte-compile-lambda always returns a byte-code-function.
21057 (byte-compile): Preprocess.
21058 (byte-compile-byte-code-maker, byte-compile-byte-code-unmake):
21059 Remove, not used any more.
21060 (byte-compile-arglist-vars, byte-compile-make-lambda-lexenv)
21061 (byte-compile-make-args-desc): New funs.
21062 (byte-compile-lambda): Handle lexical functions. Always return
21063 a byte-code-function.
21064 (byte-compile-reserved-constants): New var, to make up room for
21065 closed-over variables.
21066 (byte-compile-constants-vector): Obey it.
21067 (byte-compile-top-level): New args `lexenv' and `reserved-csts'.
21068 (byte-compile-macroexpand-declare-function): New function.
21069 (byte-compile-form): Call byte-compile-unfold-bcf to inline immediate
21070 byte-code-functions.
21071 (byte-compile-form): Check obsolescence here.
21072 (byte-compile-inline-lapcode, byte-compile-unfold-bcf): New functions.
21073 (byte-compile-variable-ref): Remove.
21074 (byte-compile-dynamic-variable-op): New fun.
21075 (byte-compile-dynamic-variable-bind, byte-compile-variable-ref)
21076 (byte-compile-variable-set): New funs.
21077 (byte-compile-discard): Add 2 args.
21078 (byte-compile-stack-ref, byte-compile-stack-set)
21079 (byte-compile-make-closure, byte-compile-get-closed-var): New funs.
21080 (byte-compile-funarg, byte-compile-funarg-2): Remove, handled in
21081 macroexpand-all instead.
21082 (byte-compile-quote-form): Remove.
21083 (byte-compile-push-binding-init, byte-compile-not-lexical-var-p)
21084 (byte-compile-bind, byte-compile-unbind): New funs.
21085 (byte-compile-let): Handle let* and lexical binding.
21086 (byte-compile-let*): Remove.
21087 (byte-compile-catch, byte-compile-unwind-protect)
21088 (byte-compile-track-mouse, byte-compile-condition-case):
21089 Handle a new :fun-body form, used for lexical scoping.
21090 (byte-compile-save-window-excursion)
21091 (byte-compile-with-output-to-temp-buffer): Remove.
21092 (byte-compile-defun): Simplify.
21093 (byte-compile-stack-adjustment): New fun.
21094 (byte-compile-out): Use it.
21095 (byte-compile-refresh-preloaded): Don't reload byte-compiler files.
21096
21097 * emacs-lisp/byte-run.el (make-obsolete): Don't set the `byte-compile'
21098 handler any more.
21099
21100 * emacs-lisp/byte-opt.el: Use lexical binding.
21101 (byte-inline-lapcode): Remove (to bytecomp).
21102 (byte-compile-inline-expand): Pay attention to inlining to/from
21103 lexically bound code.
21104 (byte-compile-unfold-lambda): Don't handle byte-code-functions
21105 any more.
21106 (byte-optimize-form-code-walker): Don't handle save-window-excursion
21107 any more and don't call compiler-macros.
21108 (byte-compile-splice-in-already-compiled-code): Remove.
21109 (byte-code): Don't inline any more.
21110 (disassemble-offset): Receive `bytes' as argument rather than via
21111 dynamic scoping.
21112 (byte-compile-tag-number): Declare before first use.
21113 (byte-decompile-bytecode-1): Handle new byte-codes, don't change
21114 `return' even if make-spliceable.
21115 (byte-compile-side-effect-and-error-free-ops): Add stack-ref, remove
21116 obsolete interactive-p.
21117 (byte-optimize-lapcode): Optimize new lap-codes.
21118 Don't trip up on new form of `byte-constant' lap code.
21119
21120 * emacs-lisp/autoload.el (make-autoload): Don't burp on trivial macros.
21121
21122 * emacs-lisp/advice.el (ad-arglist): Use help-function-arglist.
21123
21124 * custom.el (custom-initialize-default, custom-declare-variable):
21125 Use `defvar'.
21126
21127 * Makefile.in (BIG_STACK_DEPTH, BIG_STACK_OPTS, BYTE_COMPILE_FLAGS):
21128 New variables.
21129 (compile-onefile, .el.elc, compile-calc, recompile): Use them.
21130 (COMPILE_FIRST): Add macroexp and cconv.
21131 * makefile.w32-in: Mirror changes in Makefile.in.
21132
21133 * vc/cvs-status.el:
21134 * vc/diff-mode.el:
21135 * vc/log-edit.el:
21136 * vc/log-view.el:
21137 * vc/smerge-mode.el:
21138 * textmodes/bibtex-style.el:
21139 * textmodes/css-mode.el:
21140 * startup.el:
21141 * uniquify.el:
21142 * minibuffer.el:
21143 * newcomment.el:
21144 * reveal.el:
21145 * server.el:
21146 * mpc.el:
21147 * emacs-lisp/smie.el:
21148 * doc-view.el:
21149 * dired.el:
21150 * abbrev.el: Use lexical binding.
21151
21152 2011-04-01 Eli Zaretskii <eliz@gnu.org>
21153
21154 * info.el (info-display-manual): New function.
21155
21156 2011-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
21157
21158 * loadup.el: Load minibuffer after loaddefs, to use define-minor-mode.
21159
21160 2011-03-31 Tassilo Horn <tassilo@member.fsf.org>
21161
21162 * net/rcirc.el (rcirc-handler-001): Only authenticate, if there's
21163 an entry for that server in rcirc-authinfo. (Bug#8385)
21164
21165 2011-03-31 Glenn Morris <rgm@gnu.org>
21166
21167 * progmodes/f90.el (f90-find-tag-default): Handle multiple `%'.
21168
21169 * generic-x.el (etc-fstab-generic-mode): Add ext4, sysfs keywords.
21170
21171 2011-03-30 Christoph Scholtes <cschol2112@googlemail.com>
21172
21173 * progmodes/python.el (python-default-interpreter)
21174 (python-python-command-args, python-jython-command-args)
21175 (python-which-shell, python-which-args, python-which-bufname)
21176 (python-file-queue, python-comint-output-filter-function)
21177 (python-toggle-shells, python-shell): Remove obsolete defcustoms,
21178 variables and functions.
21179
21180 2011-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
21181
21182 * minibuffer.el (completion-table-dynamic): Optimize `boundaries'.
21183 (completion-in-region-mode): New minor mode.
21184 (completion-in-region): Use it.
21185 (completion-in-region--data, completion-in-region-mode-map): New vars.
21186 (completion-in-region--postch): New function.
21187 (completion--capf-misbehave-funs, completion--capf-safe-funs):
21188 New vars.
21189 (completion--capf-wrapper): New function.
21190 (completion-at-point): Use it to track well-behavedness of
21191 hook functions.
21192 (completion-help-at-point): New command.
21193
21194 2011-03-30 Jason Merrill <jason@redhat.com> (tiny change)
21195
21196 * vc/add-log.el (add-change-log-entry): Don't use whitespace
21197 syntax class to search for whitespace on a single line
21198 (Message-ID: <4D938140.4030905@redhat.com>).
21199
21200 2011-03-30 Leo Liu <sdl.web@gmail.com>
21201
21202 * abbrev.el (abbrev-edit-save-to-file, abbrev-edit-save-buffer):
21203 New commands.
21204 (edit-abbrevs-map): Bind them here.
21205 (write-abbrev-file): New optinal arg VERBOSE. (Bug#5937)
21206
21207 2011-03-29 Ken Manheimer <ken.manheimer@gmail.com>
21208
21209 * allout.el (allout-hide-by-annotation, allout-flag-region):
21210 Reduce possibility of overlay leakage by making them volatile.
21211
21212 * allout-widgets.el (allout-widgets-tally): Define as nil so the
21213 hash is not shared between buffers. Mode initialization is
21214 responsible for giving it a useful starting value.
21215 (allout-item-span): Reduce possibility of overlay leakage by
21216 making them volatile.
21217 (allout-widgets-count-buttons-in-region): Add diagnostic function
21218 for tracking down button overlay leaks.
21219
21220 2011-03-29 Leo Liu <sdl.web@gmail.com>
21221
21222 * ido.el (ido-read-internal): Use the default history var
21223 minibuffer-history if no HISTORY is specified.
21224
21225 2011-03-28 Brian T. Sniffen <bsniffen@akamai.com> (tiny change)
21226
21227 * net/imap.el (imap-shell-open, imap-process-connection-type):
21228 Use imap-process-connection-type for 'shell' streams as well as
21229 Kerberos, SSL, other subprocesses.
21230
21231 2011-03-28 Leo Liu <sdl.web@gmail.com>
21232
21233 * abbrev.el (abbrev-table-empty-p): New function.
21234 (prepare-abbrev-list-buffer): Place empty abbrev tables after
21235 nonempty ones. (Bug#5937)
21236
21237 2011-03-27 Jan Djärv <jan.h.d@swipnet.se>
21238
21239 * cus-start.el (all): Add boolean ns-auto-hide-menu-bar.
21240
21241 2011-03-27 Leo Liu <sdl.web@gmail.com>
21242
21243 * ansi-color.el (ansi-color-names-vector): Allow cons cell value
21244 for foreground and background colors.
21245 (ansi-color-make-color-map): Adapt.
21246
21247 2011-03-25 Leo Liu <sdl.web@gmail.com>
21248
21249 * midnight.el (midnight-time-float): Remove. Note it calculates
21250 the microsecond component incorrectly and seconds-to-time does the
21251 same job.
21252 Remove redundant (require 'timer).
21253
21254 * ido.el (ido-read-internal): Simplify with read-from-minibuffer.
21255 (ido-completions): Remove unused arguments. (Bug#8329)
21256
21257 2011-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
21258
21259 * minibuffer.el (completion--flush-all-sorted-completions):
21260 Remove itself from hook.
21261 (completion-at-point): Let the functions perform the completion
21262 immediately and return nil or t.
21263 * comint.el (comint-dynamic-complete-functions): Now identical to
21264 completion-at-point-functions.
21265 (comint-dynamic-list-input-ring): Remove unused var `index'.
21266 (comint--match-partial-filename, comint--unquote&expand-filename):
21267 New funs, split from comint-match-partial-filename.
21268 (comint-dynamic-complete): Use completion-at-point.
21269 (comint-dynamic-complete-filename): Use comint--match-partial-filename.
21270
21271 2011-03-24 Drew Adams <drew.adams@oracle.com>
21272
21273 * thingatpt.el: Support `defun'.
21274
21275 2011-03-23 Leo Liu <sdl.web@gmail.com>
21276
21277 * abbrevlist.el: Move to obsolete/abbrevlist.el.
21278
21279 * help-mode.el (help-mode-finish): Tweak regexp.
21280
21281 2011-03-23 Glenn Morris <rgm@gnu.org>
21282
21283 * eshell/esh-opt.el (eshell-eval-using-options):
21284 Do not bind unused local variable `eshell-option-stub'.
21285
21286 * progmodes/gdb-mi.el (gdb): Fix typo in previous change.
21287
21288 2011-03-22 Juanma Barranquero <lekktu@gmail.com>
21289
21290 * emacs-lisp/derived.el (define-derived-mode): Wrap declaration of
21291 keymap variable in `with-no-warnings' to avoid a warning when the
21292 keymap has been already `defconst'ed.
21293
21294 2011-03-22 Leo Liu <sdl.web@gmail.com>
21295
21296 * abbrev.el (write-abbrev-file): Use utf-8 for writing if it can
21297 encode all chars in abbrevs; otherwise use emacs-mule or
21298 utf-8-emacs. (Bug#8308)
21299
21300 2011-03-22 Juanma Barranquero <lekktu@gmail.com>
21301
21302 * simple.el (backward-delete-char-untabify):
21303 Avoid warning about using `delete-backward-char'.
21304
21305 * image.el (image-type-file-name-regexps): Make it variable.
21306 `imagemagick-register-types' modifies it, and the user may want
21307 to add new extensions for known image types.
21308 (imagemagick-register-types): Throw error if not using ImageMagick.
21309
21310 2011-03-22 Leo Liu <sdl.web@gmail.com>
21311
21312 * net/rcirc.el (rcirc-completion-at-point): Return nil if point is
21313 located before rcirc-prompt-end-marker.
21314 (rcirc-complete): Error if point is not after rcirc prompt.
21315 Handle the case when table is nil.
21316 (rcirc-user-authenticated): Define to fix compiler warning.
21317
21318 2011-03-22 Chong Yidong <cyd@stupidchicken.com>
21319
21320 * custom.el (custom--inhibit-theme-enable): Make it affect only
21321 custom-theme-set-variables and custom-theme-set-faces.
21322 (provide-theme): Ignore custom--inhibit-theme-enable.
21323 (load-theme): Enable the theme explicitly if NO-ENABLE is non-nil.
21324 (custom-enabling-themes): Delete variable.
21325 (enable-theme): Accept only loaded themes as arguments.
21326 Ignore the special custom-enabled-themes variable.
21327 (custom-enabled-themes): Forbid themes from setting this.
21328 Eliminate use of custom-enabling-themes.
21329 (custom-push-theme): Quote "changed" custom var entry.
21330
21331 2011-03-21 Leo Liu <sdl.web@gmail.com>
21332
21333 * ido.el (ido-read-internal): Add ido-selected to history instead
21334 of user input.
21335
21336 2011-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
21337
21338 * subr.el (deferred-action-list, deferred-action-function):
21339 Mark obsolete.
21340
21341 2011-03-21 Leo Liu <sdl.web@gmail.com>
21342
21343 * vc/log-view.el: Remove (require 'wid-edit), not needed after the
21344 change on 2011-02-13 (bug#8309).
21345
21346 * minibuffer.el (read-file-name-function): Change default value.
21347 (read-file-name--defaults): Rename from read-file-name-defaults.
21348 (read-file-name-default): Rename from read-file-name.
21349 (read-file-name): Call read-file-name-function.
21350
21351 2011-03-21 Glenn Morris <rgm@gnu.org>
21352
21353 * eshell/esh-opt.el (eshell-eval-using-options, eshell-process-args):
21354 Doc fixes.
21355
21356 2011-03-21 Chong Yidong <cyd@stupidchicken.com>
21357
21358 * cus-theme.el: Add missing provide statement.
21359 (customize-create-theme): Extract theme value correctly.
21360 (custom-theme-visit-theme): Autoload.
21361 (customize-create-theme): Prompt before inserting default faces.
21362
21363 2011-03-20 Jay Belanger <jay.p.belanger@gmail.com>
21364
21365 * calc/calc-menu.el (calc-units-menu): Add entries for logarithmic
21366 units and musical notes.
21367
21368 2011-03-20 Leo Liu <sdl.web@gmail.com>
21369
21370 * ido.el (ido-read-internal): Use completing-read-default.
21371 (ido-completing-read): Fix compatibility with completing-read.
21372
21373 2011-03-20 Christian Ohler <ohler@gnu.org>
21374
21375 * emacs-lisp/ert.el (ert-run-tests-batch): Remove unused variable.
21376 (ert-delete-all-tests): Use `called-interactively-p' rather than
21377 `interactive-p'.
21378 (ert--make-xrefs-region): Respect END.
21379
21380 2011-03-19 Chong Yidong <cyd@stupidchicken.com>
21381
21382 * dired-aux.el (dired-create-directory): Signal an error if the
21383 directory already exists (Bug#8246).
21384
21385 * facemenu.el (list-colors-display): Call list-faces-display
21386 inside with-help-window.
21387 (list-colors-print): Use display property to align the final
21388 column, instead of checking window-width.
21389
21390 2011-03-19 Eli Zaretskii <eliz@gnu.org>
21391
21392 * vc/emerge.el (emerge-metachars): Separate value for ms-dos and
21393 windows-nt systems.
21394 (emerge-protect-metachars): Quote correctly for ms-dos and
21395 windows-nt systems.
21396
21397 2011-03-19 Ralph Schleicher <rs@ralph-schleicher.de>
21398
21399 * info.el (info-initialize): Replace all uses of `:' with
21400 path-separator for compatibility with non-Unix systems.
21401 Cache quoting of path-separator. (Bug#8258)
21402
21403 2011-03-19 Juanma Barranquero <lekktu@gmail.com>
21404
21405 * avoid.el (mouse-avoidance-mode, mouse-avoidance-nudge-dist)
21406 (mouse-avoidance-threshold, mouse-avoidance-banish-destination)
21407 (mouse-avoidance-mode): Fix typos in docstrings.
21408
21409 2011-03-19 Chong Yidong <cyd@stupidchicken.com>
21410
21411 * startup.el (package-subdirectory-regexp): Move from package.el.
21412 Omit \\` and \\', and let callers add them.
21413
21414 * emacs-lisp/package.el (package-strip-version)
21415 (package-load-all-descriptors): Add \\` and \\' to
21416 package-subdirectory-regexp before using it.
21417 (package-untar-buffer): New arg DIR; ensure that file untars only
21418 into this expected directory. Remove superfluous delete-region.
21419 (package-unpack): Caller changed.
21420 (package-tar-file-info): Use package-subdirectory-regexp.
21421
21422 2011-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
21423
21424 * vc/diff-mode.el (diff-mode-map): Shadow problematic bindings from
21425 diff-mode-shared-map (bug#8284).
21426 (diff-mode-shared-map): Re-introduce some bindings that were problematic.
21427
21428 2011-03-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
21429
21430 * calendar/time-date.el (format-seconds): Use assoc instead of
21431 assoc-string, since assoc-string doesn't exist in XEmacs.
21432
21433 2011-03-17 Juanma Barranquero <lekktu@gmail.com>
21434
21435 * custom.el (custom-known-themes): Reflow docstring.
21436 (custom-theme-load-path): Fix typo in docstring.
21437 (load-theme): Fix typo in error message.
21438 (custom-available-themes, custom-variable-theme-value):
21439 Use `let', not `let*'.
21440
21441 2011-03-17 Jay Belanger <jay.p.belanger@gmail.com>
21442
21443 * calc/README: Mention inclusion of musical notes.
21444
21445 * calc/calc-units.el (calc-lu-quant): Rename from
21446 `calc-logunits-quantity'.
21447 (calcFunc-lupquant): Rename from `calcFunc-powerquant'.
21448 (calcFunc-lufquant): Rename from `calcFunc-fieldquant'.
21449 (calc-db): Rename from `calc-dblevel'.
21450 (calcFunc-dbpower): Rename from `calcFunc-dbpowerlevel'.
21451 (calcFunc-dbfield): Rename from `calcFunc-dbfieldlevel'.
21452 (calc-np): Rename from `calc-nplevel'.
21453 (calcFunc-nppower): Rename from `calcFunc-nppowerlevel'.
21454 (calcFunc-npfield): Rename from `calcFunc-npfieldlevel'.
21455 (calc-lu-plus): Rename from `calc-logunits-add'.
21456 (calcFunc-lupadd): Rename from `calcFunc-lupoweradd'.
21457 (calcFunc-lufadd): Rename from `calcFunc-lufieldadd'.
21458 (calc-lu-minus): Rename from `calc-logunits-sub'.
21459 (calcFunc-lupsub): Rename from `calcFunc-lupowersub'.
21460 (calcFunc-lufsub): Rename from `calcFunc-lufieldsub'.
21461 (calc-lu-times): Rename from `calc-logunits-mul'.
21462 (calcFunc-lupmul): Rename from `calcFunc-lupowermul'.
21463 (calcFunc-lufmul): Rename from `calcFunc-lufieldmul'.
21464 (calc-lu-divide): Rename from `calc-logunits-div'.
21465 (calcFunc-lupdiv): Rename from `calcFunc-lupowerdiv'.
21466 (calcFunc-lufdiv): Rename from `calcFunc-lufielddiv'.
21467
21468 * calc/calc-ext.el (calc-init-extensions): Update the names of the
21469 functions being autoloaded.
21470
21471 * calc/calc.el (calc-lu-power-reference): Rename from
21472 `calc-logunits-power-reference'.
21473 (calc-lu-field-reference): Rename from
21474 `calc-logunits-field-reference'.
21475
21476 * calc/calc-help.el (calc-l-prefix-help):
21477 Mention musical note functions.
21478
21479 2011-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
21480
21481 * minibuffer.el (completion-all-sorted-completions):
21482 Use :completion-cycle-penalty text property if present.
21483
21484 2011-03-16 Ken Manheimer <ken.manheimer@gmail.com>
21485
21486 * allout.el (allout-yank-processing): Adjust for new rebulleting
21487 regime so bullet being yanked is used without prompting the user
21488 for a choice.
21489
21490 2011-03-16 Juanma Barranquero <lekktu@gmail.com>
21491
21492 * startup.el (command-line): Warn the user that _emacs is deprecated.
21493
21494 2011-03-16 Juanma Barranquero <lekktu@gmail.com>
21495
21496 * progmodes/delphi.el (delphi-search-path, delphi-indent-level)
21497 (delphi-verbose, delphi-comment-face, delphi-string-face)
21498 (delphi-keyword-face, delphi-ignore-changes, delphi-indent-line)
21499 (delphi-mode-abbrev-table, delphi-debug-buffer, delphi-tab)
21500 (delphi-find-unit, delphi-find-current-xdef, delphi-fill-comment)
21501 (delphi-new-comment-line, delphi-font-lock-defaults)
21502 (delphi-debug-mode-map, delphi-mode-syntax-table, delphi-mode):
21503 Fix typos in docstrings.
21504
21505 2011-03-15 Ken Manheimer <ken.manheimer@gmail.com>
21506
21507 * allout.el (allout-make-topic-prefix, allout-rebullet-heading):
21508 Invert the roles of character and string values for INSTEAD, so a
21509 string is used for the more common case of a defaulting prompt.
21510
21511 2011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
21512
21513 * progmodes/ruby-mode.el (ruby-backward-sexp):
21514 * progmodes/ebrowse.el (ebrowse-draw-file-member-info):
21515 * play/gamegrid.el (gamegrid-make-face):
21516 * play/bubbles.el (bubbles--grid-width, bubbles--grid-height)
21517 (bubbles--colors, bubbles--shift-mode, bubbles--initialize-images):
21518 * notifications.el (notifications-notify):
21519 * net/xesam.el (xesam-search-engines):
21520 * net/quickurl.el (quickurl-list-insert):
21521 * vc/vc-hg.el (vc-hg-dir-printer): Fix use of case.
21522
21523 2011-03-15 Chong Yidong <cyd@stupidchicken.com>
21524
21525 * startup.el (command-line): Update package subdirectory regexp.
21526
21527 2011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
21528
21529 * allout.el (allout-abbreviate-flattened-numbering)
21530 (allout-mode-deactivate-hook): Fix up obsolescence "date".
21531
21532 * subr.el (read-char-choice): Only show the cursor after the prompt,
21533 not after the answer.
21534
21535 2011-03-15 Kevin Ryde <user42@zip.com.au>
21536
21537 * help-fns.el (variable-at-point): Skip leading quotes, if any
21538 (bug#8253).
21539
21540 2011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
21541
21542 * emacs-lisp/bytecomp.el (byte-compile-save-excursion): Change the
21543 warning message.
21544
21545 2011-03-14 Michael Albinus <michael.albinus@gmx.de>
21546
21547 * shell.el (shell): When called interactively, offer to change the
21548 shell file name on remote hosts.
21549
21550 2011-03-13 Teodor Zlatanov <tzz@lifelogs.com>
21551
21552 * net/ldap.el (ldap-search-internal): Add `auth-source-search'
21553 integration for LDAP parameters. The host, base, user or binddn,
21554 and secret tokens can be specified in a netrc file, for instance.
21555 This is optional because an `auth-source' parameter must be
21556 specified in the search attributes.
21557
21558 2011-03-13 Juanma Barranquero <lekktu@gmail.com>
21559
21560 * help.el (describe-mode): Link to the mode's definition (bug#8185).
21561
21562 2011-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
21563
21564 * ebuff-menu.el (electric-buffer-menu-mode-map): Move initialization
21565 into declaration. Remove redundant and harmful binding.
21566
21567 2011-03-12 Eli Zaretskii <eliz@gnu.org>
21568
21569 * files.el (file-ownership-preserved-p): Pass `integer' as an
21570 explicit 2nd argument to `file-attributes'. If the file's owner
21571 is the Administrators group on Windows, and the current user is
21572 Administrator, consider that a match.
21573
21574 * server.el (server-ensure-safe-dir): Consider server directory
21575 safe on MS-Windows if its owner is the Administrators group while
21576 the current Emacs user is Administrator. Use `=' to compare
21577 numerical UIDs, since they could be integers or floats.
21578
21579 2011-03-12 Juanma Barranquero <lekktu@gmail.com>
21580
21581 * vc/vc-bzr.el (vc-bzr-state): Handle bzr 2.3.0 (follow-up to bug#8170).
21582
21583 2011-03-12 Michael Albinus <michael.albinus@gmx.de>
21584
21585 Sync with Tramp 2.2.1.
21586
21587 * net/tramp-sh.el (tramp-methods): Exchange "%k" marker with options.
21588
21589 * net/trampver.el: Update release number.
21590
21591 2011-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
21592
21593 * progmodes/compile.el (compilation--previous-directory): Fix up
21594 various nil/dead-marker mismatches (bug#8014).
21595 (compilation-directory-properties, compilation-error-properties):
21596 Don't call it at a position past the one we're about to change.
21597
21598 * emacs-lisp/bytecomp.el (byte-compile-make-obsolete-variable):
21599 Disable obsolescence warnings in the file that declares it.
21600
21601 2011-03-11 Ken Manheimer <ken.manheimer@gmail.com>
21602
21603 * allout-widgets.el (allout-widgets-tally):
21604 Initialize allout-widgets-tally as a hash table rather than nil to
21605 prevent mode-line redisplay warnings. Also, clarify the module
21606 description and fix a comment typo.
21607
21608 2011-03-11 Juanma Barranquero <lekktu@gmail.com>
21609
21610 * help-fns.el (describe-variable): Don't complete keywords.
21611 Suggested by Teodor Zlatanov <tzz@lifelogs.com>.
21612
21613 2011-03-10 Chong Yidong <cyd@stupidchicken.com>
21614
21615 * emacs-lisp/package.el (package-version-join): Impose a standard
21616 string representation for pre/alpha/beta version lists.
21617 (package-unpack-single): Standardize the directory name by passing
21618 it through package-version-join.
21619 (package-strip-rcs-id): Accept any version string that does not
21620 signal an error in version-to-list.
21621
21622 2011-03-10 Michael Albinus <michael.albinus@gmx.de>
21623
21624 * simple.el (delete-trailing-whitespace): Return nil for the
21625 benefit of `write-file-functions'.
21626
21627 2011-03-10 Glenn Morris <rgm@gnu.org>
21628
21629 * vc/vc-hg.el (vc-hg-pull, vc-hg-merge-branch): Use vc-hg-program.
21630
21631 * vc/vc-git.el (vc-git-program): New option.
21632 (vc-git-branches, vc-git-pull, vc-git-merge-branch, vc-git-command)
21633 (vc-git--call): Use it.
21634
21635 * eshell/esh-util.el (eshell-condition-case): Doc fix.
21636
21637 * cus-edit.el (Custom-newline): If no button at point, look
21638 for a subgroup button at start-of-line. (Bug#2298)
21639
21640 * mail/rmail.el (rmail-msgend, rmail-msgbeg): Doc fixes.
21641
21642 2011-03-10 Julien Danjou <julien@danjou.info>
21643
21644 * avoid.el (mouse-avoidance-ignore-p): Do not move the cursor if
21645 `cursor-type' is nil.
21646
21647 2011-03-09 Jay Belanger <jay.p.belanger@gmail.com>
21648
21649 * calc/calc.el (calc-mode-map): Don't bind "C-_" to `calc-missing-key'.
21650
21651 2011-03-09 Ken Manheimer <ken.manheimer@gmail.com>
21652
21653 * allout.el: Change so yank of distinctive-bullet items
21654 preserves the existing header prefix, rebulleting it if necessary,
21655 rather than replacing it. This is necessary for proper operation
21656 of cooperative addons like allout-widgets.
21657 (allout-make-topic-prefix, allout-rebullet-heading):
21658 Change SOLICIT arg to INSTEAD, and interpret additionally a string
21659 value as alternate bullet to be used, instead of prompting the user
21660 for a bullet character.
21661
21662 2011-03-09 Michael Albinus <michael.albinus@gmx.de>
21663
21664 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
21665 Do not use `tramp-file-name-port', because this returns also
21666 `tramp-default-port'.
21667
21668 2011-03-09 Deniz Dogan <deniz.a.m.dogan@gmail.com>
21669
21670 * net/rcirc.el (rcirc-handler-001): Remove useless
21671 with-rcirc-process-buffer.
21672 (rcirc-check-auth-status): Swap arguments to string-match.
21673
21674 2011-03-09 Glenn Morris <rgm@gnu.org>
21675
21676 * shell.el (shell-mode):
21677 Set comint-input-ring-size from HISTSIZE. (Bug#7889)
21678
21679 * progmodes/gdb-mi.el (gdb): Improve 2010-12-08 change.
21680 Check for GDBHISTFILE, HISTSIZE, etc. (Bug#7889)
21681
21682 2011-03-08 Chong Yidong <cyd@stupidchicken.com>
21683
21684 * emacs-lisp/package.el (package-refresh-contents)
21685 (package-menu-execute): Use condition-case-no-debug.
21686
21687 2011-03-08 Michael Albinus <michael.albinus@gmx.de>
21688
21689 * simple.el (shell-command-to-string): Use `process-file'.
21690
21691 * emacs-lisp/package.el (package-tar-file-info): Handle also
21692 remote files.
21693
21694 * emacs-lisp/package-x.el (package-upload-buffer-internal):
21695 Use `equal' for upload base check.
21696
21697 2011-03-08 Arni Magnusson <arnima@hafro.is> (tiny change)
21698
21699 * textmodes/texinfo.el (texinfo-environments):
21700 Add deftypecv, deftypeivar, deftypemethod, deftypeop, html. (Bug#2783)
21701
21702 2011-03-08 Glenn Morris <rgm@gnu.org>
21703
21704 * cus-start.el (cursor-in-non-selected-windows):
21705 Fix :set quoting oddness. (Bug#8192)
21706
21707 * font-lock.el (lisp-font-lock-keywords-1): Don't highlight `)'
21708 in some setf expressions. (Bug#2159)
21709
21710 2011-03-08 Chong Yidong <cyd@stupidchicken.com>
21711
21712 * custom.el (custom-available-themes): Return themes in
21713 alphabetical order.
21714
21715 See ChangeLog.15 for earlier changes.
21716
21717 ;; Local Variables:
21718 ;; coding: utf-8
21719 ;; End:
21720
21721 Copyright (C) 2011-2013 Free Software Foundation, Inc.
21722
21723 This file is part of GNU Emacs.
21724
21725 GNU Emacs is free software: you can redistribute it and/or modify
21726 it under the terms of the GNU General Public License as published by
21727 the Free Software Foundation, either version 3 of the License, or
21728 (at your option) any later version.
21729
21730 GNU Emacs is distributed in the hope that it will be useful,
21731 but WITHOUT ANY WARRANTY; without even the implied warranty of
21732 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21733 GNU General Public License for more details.
21734
21735 You should have received a copy of the GNU General Public License
21736 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.