]> code.delx.au - gnu-emacs/blob - lisp/ChangeLog
* progmodes/python.el: Fix typo in commentary.
[gnu-emacs] / lisp / ChangeLog
1 2013-05-26 Fabián Ezequiel Gallina <fgallina@gnu.org>
2
3 * progmodes/python.el (python-indent-block-enders): Add break,
4 continue and raise keywords.
5
6 2013-05-08 Ulrich Mueller <ulm@gentoo.org>
7
8 * descr-text.el (describe-char): Fix %d/%x typo. (Bug#14360)
9
10 2013-04-24 Glenn Morris <rgm@gnu.org>
11
12 * subr.el (read-number): Once more use `read' rather than
13 `string-to-number', to trap non-numeric input. (Bug#14254)
14
15 2013-04-22 Erik Charlebois <erikcharlebois@gmail.com>
16
17 * emacs-lisp/syntax.el (syntax-propertize-multiline):
18 Use `syntax-multiline' text property consistently instead of
19 `font-lock-multiline'. (bug#14237).
20
21 2013-04-06 Stefan Monnier <monnier@iro.umontreal.ca>
22
23 * eshell/em-prompt.el (eshell-emit-prompt): Make sure we can't insert
24 into the prompt either (bug#13963).
25
26 2013-03-26 Fabián Ezequiel Gallina <fabian@anue.biz>
27
28 Un-indent after "pass" and "return" statements (Bug#13888)
29 * progmodes/python.el (python-indent-block-enders): New var.
30 (python-indent-calculate-indentation): Use it.
31
32 2013-03-25 Michael Albinus <michael.albinus@gmx.de>
33
34 * net/tramp.el (tramp-drop-volume-letter): Make it an ordinary
35 defun. Defining it as defalias could introduce too eager
36 byte-compiler optimization. (Bug#14030)
37
38 2013-03-25 Chong Yidong <cyd@gnu.org>
39
40 * iswitchb.el (iswitchb-read-buffer): Fix typo.
41
42 2013-03-16 Leo Liu <sdl.web@gmail.com>
43
44 * progmodes/scheme.el: Add indentation and font-locking for λ.
45 (Bug#13975)
46
47 2013-03-14 Stefan Monnier <monnier@iro.umontreal.ca>
48
49 * emacs-lisp/smie.el (smie-auto-fill): Don't inf-loop if there's no
50 token before point (bug#13942).
51
52 2013-03-14 Leo Liu <sdl.web@gmail.com>
53
54 * thingatpt.el (end-of-sexp): Fix bug#13952. Use syntax-after.
55
56 2013-03-11 Glenn Morris <rgm@gnu.org>
57
58 * Version 24.3 released.
59
60 2013-02-25 Glenn Morris <rgm@gnu.org>
61
62 * textmodes/paragraphs.el (mark-paragraph): Doc fix.
63
64 2013-02-21 Juri Linkov <juri@jurta.org>
65
66 * isearch.el (isearch-lazy-highlight-new-loop):
67 Set `isearch-lazy-highlight-start' and `isearch-lazy-highlight-end'
68 to `isearch-other-end' if it is not nil. (Bug#13402)
69
70 * replace.el (replace-highlight): Let-bind `isearch-other-end'
71 to `match-beg'.
72
73 * textmodes/ispell.el (ispell-highlight-spelling-error-overlay):
74 Let-bind `isearch-other-end' to `start', `isearch-forward' to t
75 and `isearch-error' to nil.
76
77 2013-02-20 Fabián Ezequiel Gallina <fgallina@cuca>
78
79 * progmodes/python.el (python-info-current-defun):
80 Enhance match-data cluttering prevention.
81
82 2013-02-19 Glenn Morris <rgm@gnu.org>
83
84 * net/tramp.el (tramp-get-debug-buffer): Ensure outline.el is not
85 loaded while outline-regexp is let bound. (Bug#9584)
86
87 2013-02-19 Fabián Ezequiel Gallina <fgallina@cuca>
88
89 * progmodes/python.el (python-info-current-defun): Fix failed
90 defun name retrieval because of unwanted match-data cluttering.
91
92 2013-02-19 Fabián Ezequiel Gallina <fgallina@cuca>
93
94 * progmodes/python.el (python-indent-context):
95 Fix python-info-line-ends-backslash-p call.
96 (python-info-line-ends-backslash-p)
97 (python-info-beginning-of-backslash): Respect line-number
98 argument.
99 (python-info-current-line-comment-p): Fix behavior when not at
100 beginning-of-line.
101 (python-util-position): Remove function.
102 (python-util-goto-line): New function.
103
104 2013-02-18 Michael Albinus <michael.albinus@gmx.de>
105
106 * eshell/em-unix.el (eshell/su): Require tramp.
107 (eshell/sudo): Require tramp. Remove now unnecessary check.
108
109 * net/tramp-sh.el (tramp-sh-handle-start-file-process): Let-bind
110 `tramp-current-connection' in order to avoid an error when several
111 commands are invoked in a short time in eshell and friends.
112
113 2013-02-16 Didier Verna <didier@didierverna.net>
114
115 * net/network-stream.el (network-stream-open-starttls):
116 Check that response to the starttls-command is non-nil. (Bug#13706)
117
118 2013-02-14 Glenn Morris <rgm@gnu.org>
119
120 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix.
121
122 2013-02-14 Stefan Monnier <monnier@iro.umontreal.ca>
123
124 * net/goto-addr.el (goto-address-fontify): Add start and end args.
125 (goto-address-fontify-region): Use them instead of narrowing, so
126 syntax-ppss has access to the whole buffer.
127
128 2013-02-14 Fabián Ezequiel Gallina <fgallina@cuca>
129
130 * progmodes/python.el: Explain how to restore "cc-mode"-like
131 forward-sexp movement in header documentation (Bug#13642).
132 (python-nav--forward-sexp): Behave like emacs-lisp-mode in
133 comments and strings (GH bug 114).
134
135 2013-02-13 Fabián Ezequiel Gallina <fgallina@cuca>
136
137 * progmodes/python.el (python-info-current-defun): Fix current
138 defun detection (Bug#13618).
139
140 2013-02-13 Chong Yidong <cyd@gnu.org>
141
142 * xml.el (xml-parse-string): Fix typo in handling of bad character
143 references.
144
145 2013-02-10 Michael Albinus <michael.albinus@gmx.de>
146
147 * net/ange-ftp.el (ange-ftp-make-directory): Don't raise an error,
148 if DIR exists and PARENTS is non-nil.
149
150 2013-02-09 Chong Yidong <cyd@gnu.org>
151
152 * mail/emacsbug.el (report-emacs-bug): Change binding of
153 report-emacs-bug-insert-to-mailer to C-c M-i (Bug#13510).
154
155 2013-02-02 Alan Mackenzie <acm@muc.de>
156
157 Fix bug in the state cache mechanism. Remove 'BOD "strategy". Refactor.
158 * progmodes/cc-engine.el (c-get-fallback-scan-pos): Remove.
159 (c-parse-state-get-strategy): Don't return 'BOD any more.
160 (c-append-lower-brace-pair-to-state-cache): Extra parameter HERE
161 instead of narrowing. Widen to top of buffer before searching
162 backwards for a brace pair.
163 (c-state-push-any-brace-pair): Add HERE parameter to function
164 call.
165 (c-append-to-state-cache): Extra parameter HERE in place of
166 narrowing. Narrow to parameter HERE, in place of being called
167 narrowed.
168 (c-remove-stale-state-cache): Extra parameter HERE in place of
169 narrowing. Check there's an open brace in the cache before
170 searching for its match.
171 (c-invalidate-state-cache-1): Add HERE parameter to function call.
172 (c-parse-state-1): Don't narrow here for 'forward strategy,
173 instead passing extra parameter HERE to several functions.
174 Remove 'BOD strategy.
175
176 2013-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
177
178 * mouse.el (mouse-drag-track): Always deactivate the mark before
179 running the final event's command since that command is in charge of
180 activating the mark if needed (bug#13523).
181
182 2013-02-01 Juri Linkov <juri@jurta.org>
183
184 * replace.el (perform-replace): Move let-bindings of isearch-*
185 variables deeper to the loop that searches for the next match.
186 Add bindings for `isearch-nonincremental' and `isearch-adjusted'.
187 Use `isearch-search-fun-default' instead of `isearch-search-fun'.
188 (Bug#13579)
189
190 * isearch.el (isearch-search-fun-default): Check for null
191 first element of isearch-cmds as a precaution when it's used
192 with inactive isearch.
193
194 2013-02-01 Andrew W. Nosenko <andrew.w.nosenko@gmail.com> (tiny change)
195
196 * net/tramp.el (tramp-check-for-regexp): Avoid "Args out of range"
197 error when buffer in question is narrowed so position 1 is out of
198 visible part.
199
200 2013-01-31 Glenn Morris <rgm@gnu.org>
201
202 * textmodes/remember.el (remember-clipboard): Doc fix.
203
204 2013-01-30 Stefan Monnier <monnier@iro.umontreal.ca>
205
206 * progmodes/make-mode.el (makefile-fill-paragraph): Reset syntax-table
207 properties (bug#13179).
208
209 2013-01-30 Glenn Morris <rgm@gnu.org>
210
211 * mouse.el (mouse-drag-line): Avoid pushing same event onto
212 unread-command-events twice in some cases. This tries to implement
213 the 2012-07-26 changes in a different way. (Bug#13560)
214
215 2013-01-30 Fabián Ezequiel Gallina <fgallina@cuca>
216
217 * progmodes/python.el
218 (python-pdbtrack-comint-output-filter-function): Enhancements on
219 stacktrace detection. (thanks @gnovak)
220
221 2013-01-30 Glenn Morris <rgm@gnu.org>
222
223 * imenu.el (imenu-default-create-index-function):
224 Put back a version of the infinite loop test removed 2013-01-23.
225
226 2013-01-28 Fabián Ezequiel Gallina <fgallina@cuca>
227
228 * progmodes/python.el (python-shell-parse-command):
229 Find python-shell-interpreter with modified environment.
230
231 2013-01-26 Stefan Monnier <monnier@iro.umontreal.ca>
232
233 * emacs-lisp/cl.el (cl-set-getf): Add compatibility alias.
234
235 2013-01-24 Fabián Ezequiel Gallina <fgallina@cuca>
236
237 * progmodes/python.el: Enhancements to header documentation about
238 skeletons. (Bug#5716)
239
240 2013-01-23 Fabián Ezequiel Gallina <fgallina@cuca>
241
242 * imenu.el (imenu-default-create-index-function): Remove useless
243 infinite loop check. (Bug#13438)
244
245 2013-01-23 Alan Mackenzie <acm@muc.de>
246
247 Fix a bug in the state cache mechanism. Refactor this a bit.
248
249 * progmodes/cc-engine.el (c-parse-state-get-strategy): Remove the
250 `cache-pos' element from the return value.
251 (c-append-lower-brace-pair-to-state-cache): "Narrow" to end of
252 buffer to enable proper searching from beyond HERE. Amend the
253 test for detecting the sought brace pair. Amend the value written
254 to the "brace desert cache" when the brace isn't found.
255 (c-remove-stale-state-cache): Rename `good-pos' to `start-point',
256 and several other variables analogously.
257 (c-remove-stale-state-cache-backwards): Change `cache-pos' from a
258 parameter to a locally calculated variable.
259 (c-parse-state-1): Change the calling conventions to the two
260 defuns involving `cache-pos'.
261
262 2013-01-23 Chong Yidong <cyd@gnu.org>
263
264 * xml.el (xml-entity-or-char-ref-re): Fix regexp.
265
266 2013-01-18 Leo Liu <sdl.web@gmail.com>
267
268 * dired.el (dired-get-marked-files): Prune erroneous values due to
269 last change. (Bug#13152)
270
271 2013-01-17 Glenn Morris <rgm@gnu.org>
272
273 * progmodes/etags.el (tags-table-check-computed-list):
274 Preserve point in tags buffer. (Bug#13412)
275
276 2013-01-16 Glenn Morris <rgm@gnu.org>
277
278 * emacs-lisp/lisp-mode.el (lisp-indent-function): Doc fix.
279
280 * mail/rmailmm.el (rmail-insert-mime-forwarded-message):
281 Revert 2012-12-29 change. Ref:
282 <http://lists.gnu.org/archive/html/emacs-devel/2013-01/msg00360.html>
283
284 2013-01-10 Fabián Ezequiel Gallina <fgallina@cuca>
285
286 * progmodes/python.el (python-nav-end-of-statement):
287 Fix cornercase when handling multiline strings.
288
289 2013-01-10 Glenn Morris <rgm@gnu.org>
290
291 * emacs-lisp/authors.el (authors-ignored-files)
292 (authors-valid-file-names, authors-renamed-files-alist):
293 Add some more entries.
294
295 2013-01-09 Stefan Monnier <monnier@iro.umontreal.ca>
296
297 * image-mode.el (image-mode-winprops): Don't throw away the fallback
298 `t' pseudo-window entry.
299
300 2013-01-09 Alan Mackenzie <acm@muc.de>
301
302 Fix bugs in the c-parse-state mechanism. Reuse some markers
303 instead of continually generating new ones.
304
305 * progmodes/cc-engine.el (c-state-old-cpp-beg-marker)
306 (c-state-old-cpp-end-marker): New variables.
307 (c-append-lower-brace-pair-to-state-cache): Start a backward
308 search for "}" definitively outside CPP constructs.
309 (c-remove-stale-state-cache): Inform the caller of a need to
310 search back for a brace pair in certain circumstances.
311 (c-state-maybe-marker): New macro.
312 (c-parse-state): Reuse markers when appropriate.
313
314 2013-01-09 Glenn Morris <rgm@gnu.org>
315
316 * simple.el (execute-extended-command): Doc fix.
317 Bind prefix-arg around read-extended-command, for prompt. (Bug#13395)
318
319 2013-01-09 Chong Yidong <cyd@gnu.org>
320
321 * faces.el (read-face-name): Doc fix.
322
323 2013-01-09 Glenn Morris <rgm@gnu.org>
324
325 * emacs-lisp/trace.el (trace-function, trace-function-background):
326 Doc fix.
327
328 2013-01-09 Juri Linkov <juri@jurta.org>
329
330 * international/mule-cmds.el (read-char-by-name): Move let-binding
331 of completion-ignore-case around completing-read to fix regression
332 exhibited by the test case `C-x 8 RET *acc TAB' and caused by
333 `string-match-p' using the nil value of `case-fold-search' and
334 `completion-ignore-case' in `completion-pcm--all-completions'.
335 (Bug#12615).
336
337 2013-01-07 Glenn Morris <rgm@gnu.org>
338
339 * progmodes/compile.el (compilation-parse-errors):
340 Fix typo. (Bug#13369)
341
342 2013-01-07 Vitalie Spinu <spinuvit@gmail.com> (tiny change)
343
344 * comint.el (comint-send-input): Check size of buffer before
345 waiting for process output, in case already accepted. (Bug#13290)
346
347 2013-01-04 Michael Albinus <michael.albinus@gmx.de>
348
349 * net/tramp-sh.el (tramp-set-file-uid-gid): UID and GID must be
350 non-negative integers. Otherwise, the default values are used.
351 (tramp-convert-file-attributes): Convert uid and gid to integers.
352
353 2013-01-03 Glenn Morris <rgm@gnu.org>
354
355 * term.el (term-handle-colors-array): Ensure face attributes
356 are fully specified, not nil. (Bug#13337)
357
358 * term.el (term-default-fg-color, term-default-bg-color):
359 Fix custom type.
360
361 * progmodes/etags.el (tags-compression-info-list): Doc fix.
362 (tag-find-file-of-tag-noselect): Check auto-compression-mode
363 rather than 'jka-compr being loaded. (Bug#13338)
364
365 * subr.el (eval-after-load): Don't purecopy the form, so that it
366 can be nconc'd later on; reverts 2009-11-11 change. (Bug#13331)
367
368 * emacs-lisp/byte-run.el (defun): Place cl declarations
369 after any interactive spec. (Bug#13265)
370
371 2012-12-31 Andreas Schwab <schwab@linux-m68k.org>
372
373 * emacs-lisp/byte-run.el (defmacro): Use same argument parsing as
374 defun. Don't check for DECL if DOCSTRING isn't a string.
375 (defun): Likewise.
376
377 2012-12-31 Glenn Morris <rgm@gnu.org>
378
379 * eshell/em-cmpl.el (eshell-pcomplete):
380 More thoroughly imitate pcomplete. (Bug#13293)
381
382 * files.el (parse-colon-path): Doc fix. (Bug#12351)
383 Return nil for empty path elements. (Bug#13296)
384
385 2012-12-31 Fabián Ezequiel Gallina <fgallina@cuca>
386
387 * progmodes/python.el (python-nav-end-of-statement): Rewrite in
388 order to improve efficiency (Based on Daniel Colascione's
389 <dancol@dancol.org> patch). (Bug#13182)
390
391 2012-12-31 Glenn Morris <rgm@gnu.org>
392
393 * vc/log-edit.el (log-edit-header-contents-regexp): Add doc string.
394
395 2012-12-31 Fabián Ezequiel Gallina <fgallina@cuca>
396
397 * progmodes/python.el: Support other commands triggering
398 python-indent-line so indentation cycling continues to work.
399 (python-indent-trigger-commands): New defcustom.
400 (python-indent-line): Use it.
401
402 2012-12-31 Fabián Ezequiel Gallina <fgallina@cuca>
403
404 * progmodes/python.el (python-shell-send-region): Add blank lines
405 for non sent code so backtraces remain correct.
406
407 2012-12-31 Andreas Schwab <schwab@linux-m68k.org>
408
409 * emacs-lisp/byte-run.el (defmacro): Don't lose final nil if
410 neither DOCSTRING nor DECL was given. (Bug#13316)
411
412 2012-12-30 Glenn Morris <rgm@gnu.org>
413
414 * net/mairix.el (rmail, rmail-summary-displayed, rmail-summary):
415 Remove unnecessary/buggy autoloads (missing interactive). (Bug#13294)
416 (rmail-summary-displayed, rmail-summary): Declare.
417 (mairix-rmail-display): Just require rmail.
418
419 2012-12-29 Chong Yidong <cyd@gnu.org>
420
421 * emacs-lisp/package.el (package-untar-buffer): Improve integrity
422 check for the tarball contents.
423
424 2012-12-29 Matt Fidler <matt.fidler@alcon.com> (tiny change)
425
426 * emacs-lisp/package.el (package-untar-buffer): Handle problematic
427 tarfile content listings (Bug#13136).
428
429 2012-12-29 Mark Lillibridge <mark.lillibridge@hp.com>
430
431 * mail/rmailmm.el (rmail-insert-mime-forwarded-message):
432 Insert the undecoded text of the message being forwarded. (Bug#9521)
433
434 2012-12-28 Michael Albinus <michael.albinus@gmx.de>
435
436 * net/tramp-sh.el (tramp-set-file-uid-gid): Convert UID and GID to
437 integers, if they are real numbers. (Bug#13282)
438
439 2012-12-26 Dmitry Gutov <dgutov@yandex.ru>
440
441 * progmodes/ruby-mode.el (ruby-indent-beg-re): Only allow "class",
442 "module" and "def" to have indentation before them.
443 Regression from 109911 (see the new test).
444
445 2012-12-24 Dmitry Gutov <dgutov@yandex.ru>
446
447 * progmodes/ruby-mode.el: Bump the version to 1.2 (Bug#13200).
448
449 2012-12-23 Alan Mackenzie <acm@muc.de>
450
451 Speed up fontification where there's large brace blocks.
452 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls): Add a limit
453 to a call of c-beginning-of-decl-1.
454
455 2012-12-21 Chong Yidong <cyd@gnu.org>
456
457 * sort.el (sort-subr): Doc fix (Bug#13056).
458
459 2012-12-20 Bastien Guerry <bzg@gnu.org>
460
461 * progmodes/etags.el (tags-search): Fix typo. Bug #13232.
462
463 2012-12-11 Alan Mackenzie <acm@muc.de>
464
465 Make CC Mode not hang when _some_ lines end in CRLF. Bug #11841.
466 * progmodes/cc-engine.el (c-backward-comments): Add code to work
467 around `forward-comment' not recognizing ^M as whitespace.
468
469 2012-12-11 Fabián Ezequiel Gallina <fgallina@cuca>
470
471 * progmodes/python.el (python-skeleton-class)
472 (python-skeleton-def): Do not add space after defun name.
473
474 2012-12-09 Chong Yidong <cyd@gnu.org>
475
476 * simple.el (set-mark-default-inactive): Mark as obsolete, for
477 removal after 24.3.
478
479 2012-12-08 Dani Moncayo <dmoncayo@gmail.com>
480
481 * simple.el (just-one-space): Doc fix.
482
483 2012-12-07 Eli Zaretskii <eliz@gnu.org>
484
485 * textmodes/texinfo.el (texinfo-enable-quote-envs):
486 Add "smallexample".
487
488 2012-12-07 Le Wang <l26wang@gmail.com>
489
490 * hilit-chg.el (hilit-chg-set-face-on-change): Don't burp in
491 narrowed buffer (bug#12361).
492
493 2012-12-07 Michael Heerdegen <michael_heerdegen@web.de>
494
495 * emacs-lisp/debug.el (debug): Fix hard-coded frame counts (bug#10025).
496 Virtually backported from trunk.
497
498 2012-12-07 Juanma Barranquero <lekktu@gmail.com>
499
500 * vc/vc-hooks.el (vc-state): Doc fix.
501
502 2012-12-06 Glenn Morris <rgm@gnu.org>
503
504 * mail/rmail.el (rmail-maybe-display-summary):
505 Preserve buffer, in case select-window changes it. (Bug#13066)
506
507 2012-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
508
509 * emacs-lisp/cl.el, emacs-lisp/cl-lib.el: Move cl-unload-function and
510 cl-load-hook where they belong.
511
512 2012-12-06 Chong Yidong <cyd@gnu.org>
513
514 * ffap.el (ffap-replace-file-component): Fix typo.
515
516 2012-12-05 Stefan Monnier <monnier@iro.umontreal.ca>
517
518 * progmodes/octave-mod.el (octave-mark-block): Move out of tokens and
519 fix open-paren-like token test (bug#12785).
520
521 2012-12-04 Glenn Morris <rgm@gnu.org>
522
523 * mail/rmailsum.el (rmail-new-summary): Tweak for
524 rmail-maybe-display-summary changing buffer. (Bug#13066)
525
526 2012-12-03 Juri Linkov <juri@jurta.org>
527
528 * info.el (Info-fontify-node): Don't hide the last newline.
529 (Bug#12272)
530
531 2012-12-01 Leo Liu <sdl.web@gmail.com>
532
533 * files.el (dir-locals-read-from-file): Check file non-empty
534 before reading. (Bug#13038)
535
536 2012-11-28 Glenn Morris <rgm@gnu.org>
537
538 * jka-cmpr-hook.el (jka-compr-get-compression-info):
539 Remove any version extension before checking filename. (Bug#13006)
540 (jka-compr-compression-info-list): Belated :version bump.
541
542 2012-11-28 Chong Yidong <cyd@gnu.org>
543
544 * simple.el (transient-mark-mode): Doc fix (Bug#11523).
545
546 * buff-menu.el (Buffer-menu-delete-backwards, Buffer-menu-mode)
547 (buffer-menu): Doc fix (Bug#12294).
548
549 2012-11-27 Roland Winkler <winkler@gnu.org>
550
551 * calendar/diary-lib.el (diary-header-line-format): Use keybinding
552 of diary-show-all-entries in the diary buffer (Bug#12994).
553
554 2012-11-27 Michael Albinus <michael.albinus@gmx.de>
555
556 * net/tramp-sh.el (tramp-perl-encode): Use "read STDIN" instead of
557 "<STDIN>". This is binary safe.
558
559 2012-11-27 Stefan Monnier <monnier@iro.umontreal.ca>
560
561 * textmodes/table.el (table-insert): Don't use `symbol-name' on
562 lexically scoped variables (bug#13005).
563
564 2012-11-26 Glenn Morris <rgm@gnu.org>
565
566 * vc/vc-hooks.el (vc-mistrust-permissions):
567 Default to t, to avoid data-loss. (Bug#11490)
568
569 2012-11-26 Fabián Ezequiel Gallina <fgallina@cuca>
570
571 * progmodes/python.el (python-indent-guess-indent-offset):
572 If indentation is guessed make python-indent-offset buffer-local.
573
574 Fix Imenu regression.
575 * progmodes/python.el (python-nav-beginning-of-defun):
576 Fix forward movement when statement(s) separates point from defun.
577 (python-imenu-prev-index-position): New function.
578
579 2012-11-26 Eli Zaretskii <eliz@gnu.org>
580
581 * subr.el (buffer-file-type): Declare with defvar-local. Doc fix.
582
583 * dos-w32.el (find-file-not-found-set-buffer-file-coding-system):
584 Don't set buffer-file-type. Return nil. (Bug#12989)
585
586 2012-11-26 Glenn Morris <rgm@gnu.org>
587
588 * hippie-exp.el (hippie-expand-try-functions-list):
589 Re-autoload it. (Bug#12982)
590
591 2012-11-25 Eli Zaretskii <eliz@gnu.org>
592
593 * descr-text.el (describe-char-padded-string):
594 Call internal-char-font only on GUI frames. (Bug#11964)
595
596 2012-11-24 Andreas Schwab <schwab@linux-m68k.org>
597
598 * buff-menu.el (Buffer-menu-buffer+size-width): Fix customize type
599 and obsoletion message.
600
601 2012-11-24 Stefan Monnier <monnier@iro.umontreal.ca>
602
603 * emacs-lisp/cl-macs.el (cl--transform-lambda): Add back `declare' in
604 the constructs to keep outside of the `cl-block' (bug#12977).
605
606 2012-11-24 Chong Yidong <cyd@gnu.org>
607
608 * mouse.el (mouse-drag-line): Even if the line is not draggable,
609 keep reading until we get the up-event anyway, in order to process
610 the up-event for mouse-1-click-follows-link (Bug#12971).
611
612 2012-11-23 Stefan Monnier <monnier@iro.umontreal.ca>
613
614 * emacs-lisp/bytecomp.el (byte-compile-file): Setup default value for
615 lexical-binding (bug#12938).
616
617 2012-11-23 Wolfgang Jenkner <wjenkner@inode.at>
618
619 * image-mode.el (image-transform-check-size): Use assertions only
620 for images of type imagemagick.
621
622 Otherwise no error, image-transform-fit-to-{width,height} is
623 silently ignored, as before. Doc fix.
624
625 2012-11-23 Chong Yidong <cyd@gnu.org>
626
627 * faces.el (color-defined-p): Doc fix (Bug#12853).
628
629 2012-11-23 Juri Linkov <juri@jurta.org>
630
631 * dired.el (dired-mark): Add optional arg `interactive'.
632 Check for `use-region-p' if `interactive' is non-nil.
633 (dired-unmark, dired-flag-file-deletion): Add optional arg
634 `interactive'. Call `dired-mark' with the arg `interactive'.
635 (Bug#10624)
636
637 2012-11-23 Juri Linkov <juri@jurta.org>
638
639 * wdired.el: Revert 2012-10-17 change partly and replace it with
640 Patch by Christopher Schmidt <christopher@ch.ristopher.com>.
641 (wdired-finish-edit): Add marks for new file names to
642 `wdired-old-marks'. Restore marks using `dired-mark-remembered'
643 after `revert-buffer'.
644 (wdired-do-renames): Remove calls to `dired-remove-file',
645 `dired-add-file', `dired-add-entry'. (Bug#11795)
646
647 2012-11-21 Alan Mackenzie <acm@muc.de>
648
649 * progmodes/cc-defs.el (c-version): Bump to 5.32.4.
650
651 Fix bugs in the state cache. Enhance a debugging mechanism.
652 * progmodes/cc-engine.el (c-parse-state-get-strategy): Don't use
653 "brace at column zero" strategy for C++.
654 (c-append-lower-brace-pair-to-state-cache): Repair algorithm.
655 (c-parse-state-point): New variable.
656 (c-record-parse-state-state): Record old parse state with
657 `copy-tree'. Record previous value of point.
658 (c-debug-parse-state-double-cons): New debugging function.
659 (c-debug-parse-state): Call the above new function.
660 (c-toggle-parse-state-debug): Output a confirmatory message.
661
662 * progmodes/cc-mode.el (c-before-change, c-after-change):
663 Call c-invalidate-state-cache from `c-before-change' instead of
664 `c-after-change'.
665
666 2012-11-20 Daniel Colascione <dancol@dancol.org>
667
668 * term/w32-win.el (cygwin-convert-path-from-windows):
669 Accomodate rename of cygwin_convert_path* to cygwin_convert_file_name*.
670 This change is a backport from trunk.
671
672 2012-11-20 Eli Zaretskii <eliz@gnu.org>
673
674 * simple.el (line-move): Don't call line-move-partial if
675 scroll-conservatively is in effect. (Bug#12927)
676
677 2012-11-20 Michael Albinus <michael.albinus@gmx.de>
678
679 * net/trampver.el (tramp-version): Downgrade to 2.2.6-24.3, in
680 order to distinguish from trunk.
681
682 2012-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
683
684 * emacs-lisp/byte-run.el (defun-declarations-alist): Don't accept
685 non-symbols for compiler macros (yet).
686
687 * eshell/em-cmpl.el (eshell-pcomplete): Refine fix for bug#12838:
688 Fallback on completion-at-point rather than
689 pcomplete-expand-and-complete, and only if pcomplete actually failed.
690 (eshell-cmpl-initialize): Setup completion-at-point.
691
692 * pcomplete.el (pcomplete--entries): Obey pcomplete-ignore-case.
693
694 * emacs-lisp/ert.el (ert--expand-should-1): Adapt to cl-lib.
695
696 2012-11-19 Michael Albinus <michael.albinus@gmx.de>
697
698 * net/tramp-sh.el (tramp-do-copy-or-rename-file): If both files
699 are remote, check out-of-band property for both.
700
701 2012-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
702
703 * window.el (switch-to-buffer): Re-add the warning that was lost in the
704 code rewrite.
705
706 2012-11-18 Paul Eggert <eggert@cs.ucla.edu>
707
708 More minor time fixes.
709 * calendar/time-date.el: Commentary fix.
710 * net/tramp-sh.el (tramp-do-file-attributes-with-ls): Undo last change;
711 too much other code depends on (0 0) time stamps.
712 * net/tramp.el (tramp-time-less-p, tramp-time-subtract):
713 Add a couple of FIXME comments.
714
715 Minor cleanup for times as lists of four integers.
716 * files.el (dir-locals-directory-cache):
717 * ps-bdf.el (bdf-file-mod-time, bdf-read-font-info):
718 Doc fixes.
719 * net/tramp-sh.el (tramp-do-file-attributes-with-ls):
720 * ps-bdf.el (bdf-file-newer-than-time):
721 Process four-integers time stamps, not two. Doc fixes.
722
723 2012-11-18 Glenn Morris <rgm@gnu.org>
724
725 * image.el (insert-image, insert-sliced-image): Doc fix.
726
727 2012-11-17 Chong Yidong <cyd@gnu.org>
728
729 * emacs-lisp/syntax.el (syntax-propertize-function): Doc fix
730 (Bug#12810).
731
732 2012-11-17 OKAZAKI Tetsurou <okazaki.tetsurou@gmail.com> (tiny change)
733
734 * vc/vc-svn.el (vc-svn-merge-news): Properly parse the merge
735 response when the target file is in a subdirectory (Bug#12757).
736
737 2012-11-17 Chong Yidong <cyd@gnu.org>
738
739 * filecache.el (file-cache-add-file-list): Doc fix (Bug#12694).
740
741 2012-11-17 Glenn Morris <rgm@gnu.org>
742
743 * woman.el (woman-non-underline-faces):
744 * emacs-lisp/cl-lib.el (face-underline-p):
745 Use set-face-underline rather than the alias set-face-underline-p.
746
747 * window.el (with-temp-buffer-window): Doc fix.
748 * subr.el (with-output-to-temp-buffer):
749 Add doc xref to with-temp-buffer-window.
750
751 2012-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
752
753 * emacs-lisp/cl-lib.el: Set more meaningful version number.
754
755 2012-11-16 Martin Rudalics <rudalics@gmx.at>
756
757 * window.el (enlarge-window, shrink-window): Don't mention return
758 value in doc-string (Bug#12896).
759 (window--display-buffer): Don't resize frames - it won't work
760 with all window managers and defeat pop-up-frame-alist.
761 (display-buffer-alist): In doc-string explain that CONDITION can
762 be a function and which arguments are passed to it (Bug#12854).
763 (display-buffer-assq-regexp): New argument ACTION. Handle lambda
764 expressions (Bug#12854).
765 (display-buffer): Pass ACTION argument to
766 display-buffer-assq-regexp.
767
768 2012-11-16 Glenn Morris <rgm@gnu.org>
769
770 * window.el (fit-frame-to-buffer-bottom-margin)
771 (fit-frame-to-buffer, fit-window-to-buffer): Doc fixes.
772
773 * faces.el (face-underline-p): Use face-attribute-specified-or.
774
775 2012-11-15 Juanma Barranquero <lekktu@gmail.com>
776
777 * emacs-lisp/cl-macs.el (cl-loop, cl-do, cl-do*): Doc fixes.
778
779 2012-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
780
781 * emacs-lisp/cl-macs.el (cl-flet, cl-flet*): Fix docstring (bug#12895).
782
783 2012-11-15 Glenn Morris <rgm@gnu.org>
784
785 * eshell/em-cmpl.el (eshell-pcomplete): New command. (Bug#12838)
786 (eshell-cmpl-initialize): Bind eshell-pcomplete to TAB, C-i.
787
788 * faces.el (face-underline-p): Doc fix. Handle :underline being
789 things other than `t' (a string, a list).
790 (face-inverse-video-p): Doc fix.
791 (set-face-underline): Rename it back from set-face-underline-p.
792 Doc fix. Allow interactive input of values other than t.
793 (read-face-attribute): Apply formatting to :underline,
794 since like :box and :stipple it can take list values.
795
796 * term.el (ansi-term): Don't let C-x escape-char binding
797 clobber the more standard C-c binding. (Bug#12842)
798
799 2012-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
800
801 * emacs-lisp/gv.el (setf): Fix debug spec for multiple assignments
802 (bug#12879).
803
804 2012-11-14 Glenn Morris <rgm@gnu.org>
805
806 * subr.el (set-temporary-overlay-map): Doc fix.
807
808 2012-11-13 Martin Rudalics <rudalics@gmx.at>
809
810 * window.el (record-window-buffer)
811 (display-buffer-record-window): When copying the markers to
812 window-point preserve window-point-insertion-type. (Bug#12588)
813
814 2012-11-13 Glenn Morris <rgm@gnu.org>
815
816 * emacs-lisp/eieio-datadebug.el (eieio-debug-methodinvoke):
817 * net/tramp-gvfs.el (tramp-gvfs-dbus-event-error):
818 Use new names for hooks rather than obsolete aliases.
819
820 2012-11-12 Stefan Monnier <monnier@iro.umontreal.ca>
821
822 * emacs-lisp/gv.el (gv-define-simple-setter): One more fix (bug#12871).
823
824 2012-11-12 Wolfgang Jenkner <wjenkner@inode.at>
825
826 * ansi-color.el (ansi-color-apply-sequence): Implement SGR codes
827 39 and 49. This fixes bug#12792. Also, treat unimplemented
828 parameters as 0, thereby restoring the behavior of revisions prior
829 to 2012-08-15T03:33:55Z!monnier@iro.umontreal.ca.
830
831 2012-11-12 Fabián Ezequiel Gallina <fgallina@cuca>
832
833 Fix end-of-defun misbehavior.
834 * progmodes/python.el (python-nav-beginning-of-defun): Rename from
835 python-beginning-of-defun-function. Handle nested defuns
836 correctly.
837 (python-nav-end-of-defun): Rename from
838 python-end-of-defun-function. Ensure forward movement.
839 (python-info-current-defun): Reimplement to work as intended
840 with new fixed python-nav-{end,beginning}-of-defun. Stop scanning
841 parent defuns as soon as possible.
842
843 2012-11-12 Glenn Morris <rgm@gnu.org>
844
845 * progmodes/flymake.el (flymake-error-bitmap)
846 (flymake-warning-bitmap, flymake-fringe-indicator-position): Doc fixes.
847 (flymake-error-bitmap, flymake-warning-bitmap): Fix :types.
848
849 2012-11-12 Dmitry Gutov <dgutov@yandex.ru>
850
851 * progmodes/ruby-mode.el (ruby-move-to-block): When moving
852 backward, always stop at indentation. Reverts the change from
853 2012-08-12T22:06:56Z!monnier@iro.umontreal.ca (Bug#12851).
854
855 2012-11-11 Glenn Morris <rgm@gnu.org>
856
857 * ibuffer.el (ibuffer-mode-map, ibuffer-mode):
858 Add ibuffer-filter-by-derived-mode.
859
860 * ibuffer.el (ibuffer-mode-map): Don't have two menu items with
861 the same name shadowing each other.
862
863 * window.el (with-temp-buffer-window): Doc tweak.
864
865 * emacs-lisp/debug.el (debugger-bury-or-kill): Doc tweak.
866
867 * help.el (temp-buffer-max-height):
868 * window.el (fit-frame-to-buffer, fit-frame-to-buffer-bottom-margin):
869 * emacs-lisp/debug.el (debugger-bury-or-kill): Fix :version.
870
871 2012-11-10 Leo Liu <sdl.web@gmail.com>
872
873 * ido.el (ido-set-matches-1): Fix split-string args to avoid
874 performance issue. (Bug#12796)
875
876 2012-11-10 Glenn Morris <rgm@gnu.org>
877
878 * term.el (term-default-fg-color, term-default-bg-color):
879 Make obsolete, rather than just saying "deprecated" in the doc.
880
881 * term.el (term): Rename from `term-face'.
882 (term-current-face, ansi-term-color-vector)
883 (term-default-fg-color, term-default-bg-color, term-ansi-reset):
884 Update all users.
885
886 2012-11-09 Jan Djärv <jan.h.d@swipnet.se>
887
888 * server.el (server-create-window-system-frame): Improve comment.
889
890 2012-11-08 Jan Djärv <jan.h.d@swipnet.se>
891
892 * server.el (server-create-window-system-frame): Handle Nextstep
893 specially (Bug#12780).
894
895 2012-11-08 Glenn Morris <rgm@gnu.org>
896
897 * mail/emacsbug.el (report-emacs-bug-query-existing-bugs):
898 Unautoload, and make obsolete. (Bug#7449)
899
900 2012-11-08 Chong Yidong <cyd@gnu.org>
901
902 * vc/diff-mode.el (diff-delete-trailing-whitespace): Rewrite, and
903 rename from diff-remove-trailing-whitespace (Bug#12831).
904
905 2012-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
906
907 * emacs-lisp/advice.el: Require `cl-lib' at run-time to fix
908 miscompilation of trace.el.
909
910 2012-11-08 Glenn Morris <rgm@gnu.org>
911
912 * vc/diff-mode.el (diff-remove-trailing-whitespace): Doc fix.
913
914 2012-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
915
916 * emacs-lisp/gv.el (gv-define-simple-setter): Fix last change
917 (bug#12812).
918
919 2012-11-07 Chong Yidong <cyd@gnu.org>
920
921 * minibuf-eldef.el (minibuffer-eldef-shorten-default): Convert to
922 a defcustom with an appropriate :set function.
923 (minibuffer-default--in-prompt-regexps): New function.
924
925 2012-11-07 Glenn Morris <rgm@gnu.org>
926
927 * emacs-lisp/cl.el (define-setf-expander, defsetf)
928 (define-modify-macro): Doc fixes.
929
930 * emacs-lisp/gv.el (gv-letplace): Fix doc typo.
931 (gv-define-simple-setter): Update doc of `fix-return'.
932
933 2012-11-07 Stefan Monnier <monnier@iro.umontreal.ca>
934
935 * emacs-lisp/gv.el (gv-define-simple-setter): Don't evaluate `val'
936 twice when `fix-return' is set (bug#12813).
937
938 * emacs-lisp/cl.el (defsetf): Pass the third arg to
939 gv-define-simple-setter (bug#12812).
940
941 2012-11-06 Stefan Monnier <monnier@iro.umontreal.ca>
942
943 * woman.el (woman-decode-region): Disable adaptive-fill when rendering
944 (bug#12756).
945
946 2012-11-06 Glenn Morris <rgm@gnu.org>
947
948 * emacs-lisp/gv.el (gv-define-setter): Fix doc typo.
949
950 2012-11-05 Glenn Morris <rgm@gnu.org>
951
952 * emacs-lisp/cl-extra.el (cl-prettyexpand):
953 * emacs-lisp/cl-lib.el (cl-proclaim, cl-declaim):
954 * emacs-lisp/cl-macs.el (cl-destructuring-bind, cl-locally)
955 (cl-the, cl-compiler-macroexpand): Add basic doc strings.
956
957 * emacs-lisp/cl-extra.el (cl-maplist, cl-mapcan): Doc fix.
958
959 2012-11-03 Glenn Morris <rgm@gnu.org>
960
961 * emacs-lisp/cl-macs.el (cl-parse-loop-clause):
962 Rename handler properties back from cl-- to cl-. (Bug#12788)
963
964 * emacs-lisp/cl-macs.el (cl-do-all-symbols): Add doc string.
965
966 2012-11-03 Eli Zaretskii <eliz@gnu.org>
967
968 * term/pc-win.el: Don't load term/internal from here.
969
970 * loadup.el: Load term/internal from here.
971
972 2012-11-03 Fabián Ezequiel Gallina <fgallina@cuca>
973
974 * progmodes/python.el (inferior-python-mode): Fix hang in
975 jit-lock (Bug#12645).
976
977 2012-11-03 Martin Rudalics <rudalics@gmx.at>
978
979 * window.el (switch-to-visible-buffer)
980 (switch-to-buffer-preserve-window-point): Fix doc-strings.
981
982 2012-11-01 Stephen Berman <stephen.berman@gmx.net>
983
984 * play/gomoku.el (gomoku-display-statistics): Update mode line
985 only if in Gomoku buffer; don't capitalize "won" (Bug#12771).
986
987 2012-10-31 Martin Rudalics <rudalics@gmx.at>
988
989 * window.el (quit-restore-window): If the window has been
990 created on an existing frame and ended up as the sole window on
991 that frame, do not delete it (Bug#12764).
992
993 2012-10-31 Stefan Monnier <monnier@iro.umontreal.ca>
994
995 * progmodes/sh-script.el (sh--inside-noncommand-expression):
996 Rename from sh--inside-arithmetic-expression, handle more cases
997 (bug#11263).
998
999 * progmodes/sh-script.el (sh--inside-arithmetic-expression): New func.
1000 (sh-font-lock-open-heredoc): Use it (bug#12770).
1001
1002 2012-10-30 Glenn Morris <rgm@gnu.org>
1003
1004 * emacs-lisp/cl-extra.el (cl-mapc): Add autoload cookie. Doc fix.
1005
1006 * emacs-lisp/cl.el (letf): Doc fix. (Bug#12760)
1007
1008 2012-10-29 Chong Yidong <cyd@gnu.org>
1009
1010 * isearch.el (isearch-other-meta-char): Ensure that a reprocessed
1011 function key is stored in a keyboard macro (Bug#4894).
1012
1013 * thingatpt.el (number-at-point): Apply a thing-at-point property.
1014
1015 2012-10-29 Stefan Monnier <monnier@iro.umontreal.ca>
1016
1017 * vc/diff-mode.el (diff-context->unified): Don't get confused by "hunk
1018 header comments".
1019 (diff-unified->context, diff-context->unified)
1020 (diff-reverse-direction, diff-fixup-modifs): Use `use-region-p'.
1021
1022 * emacs-lisp/cl.el (letf): Add missing indent rules (bug#12759).
1023
1024 * files.el (find-alternate-file): Only ask one question (bug#12487).
1025
1026 2012-10-29 Chong Yidong <cyd@gnu.org>
1027
1028 * vc/vc-hooks.el (vc-file-clearprops): Kill vc-parent-buffer.
1029 Suggested by Dan Nicolaescu (Bug#6326).
1030
1031 * info.el (Info-complete-menu-item): Avoid duplicates (Bug#12705).
1032
1033 * startup.el (fancy-about-screen): Don't message (Bug#12680).
1034
1035 * thingatpt.el (thing-at-point): Doc fix (Bug#12691).
1036
1037 * imenu.el (imenu): Inhibit push-mark message (Bug#12726).
1038
1039 * face-remap.el (face-remap-add-relative): Handle the case where a
1040 face-remapping-alist entry is a cons cell (Bug#12762).
1041
1042 2012-10-29 Kevin Ryde <user42@zip.com.au>
1043
1044 * woman.el (woman-parse-numeric-value): Handle picas correctly
1045 (Bug#12639).
1046
1047 2012-10-29 Glenn Morris <rgm@gnu.org>
1048
1049 * emacs-lisp/cl.el (defsetf): Doc fix.
1050
1051 2012-10-29 Stefan Monnier <monnier@iro.umontreal.ca>
1052
1053 * progmodes/sh-script.el (sh-font-lock-paren): Also put punctuation
1054 syntax to the matching opener, if any (bug#12547).
1055 (sh-smie-sh-forward-token, sh-smie-sh-backward-token): Recognize this
1056 matching open as a "case-(".
1057 (sh-smie-rc-grammar): Add a corresponding rule for it.
1058
1059 2012-10-28 Daniel Hackney <dan@haxney.org>
1060
1061 * emacs-lisp/package.el (package-generate-autoloads): Kill buffer
1062 "PKGNAME-autoloads.el" in case we created it.
1063
1064 2012-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
1065
1066 * minibuffer.el (completion--sifn-requote): Rewrite to handle things
1067 like Tramp's "/foo:~bar//baz" -> "/scpc:foo:/baz" mapping (bug#11714).
1068 (completion--twq-all): Disable too-strict assertions.
1069
1070 * tmm.el (tmm-prompt): Use map-keymap (bug#12744).
1071
1072 2012-10-27 Eli Zaretskii <eliz@gnu.org>
1073
1074 * profiler.el (profiler-report-make-entry-part): Fix help-echo
1075 text to match the real keybindings.
1076
1077 2012-10-27 Juri Linkov <juri@jurta.org>
1078
1079 * wdired.el (wdired-keep-marker-rename): New defcustom.
1080 (wdired-do-renames): Use it instead of `dired-keep-marker-rename'.
1081 (Bug#11795)
1082
1083 * dired.el (dired-keep-marker-rename): Add reference to
1084 `wdired-keep-marker-rename' in the docstring.
1085 Add default character value ?R to display initially in
1086 Customization UI instead of ?@.
1087
1088 2012-10-27 Martin Rudalics <rudalics@gmx.at>
1089
1090 * window.el (display-buffer): In doc-string describe
1091 window-height and window-width alist entries.
1092
1093 * time.el (display-time-world): Restore fit-window-to-buffer
1094 behavior.
1095
1096 2012-10-27 Chong Yidong <cyd@gnu.org>
1097
1098 * subr.el (insert-buffer-substring-as-yank): Doc fix.
1099
1100 2012-10-26 Jambunathan K <kjambunathan@gmail.com>
1101
1102 * minibuffer.el (completion-category-overrides): New completion
1103 category `bookmark' (bug#11131).
1104
1105 2012-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
1106
1107 * emacs-lisp/advice.el (ad-assemble-advised-definition):
1108 Silence bogus compiler warnings for ad-do-it.
1109
1110 * bookmark.el (bookmark-completing-read): Set the completion category
1111 to `bookmark' (bug#11131).
1112
1113 2012-10-26 Bastien <bzg@altern.org>
1114 Stefan Monnier <monnier@iro.umontreal.ca>
1115
1116 * face-remap.el: Use lexical-binding.
1117 (text-scale-adjust): Improve docstring. Use itself for the temporary
1118 overlay-map bindings, so as to repeat the "Use..." message each time.
1119
1120 2012-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
1121
1122 * emacs-lisp/macroexp.el (macroexp--expand-all):
1123 Obey byte-compile-warning-enabled-p (bug#12486).
1124
1125 * vc/diff-mode.el (diff-end-of-hunk): Also skip potential "no LF at eol".
1126 (diff-refine-hunk): Similarly, handle the "no LF at eol" (bug#12584).
1127
1128 2012-10-26 Martin Rudalics <rudalics@gmx.at>
1129
1130 * mouse.el (mouse-drag-line): Move last form into preceding when
1131 clause (Bug#12731).
1132
1133 * help.el (resize-temp-buffer-window): Fix doc-string.
1134
1135 2012-10-25 David Engster <deng@randomsample.de>
1136
1137 * emacs-lisp/eieio.el (eieio-update-lisp-imenu-expression):
1138 Remove. This feature is already integrated in imenu.
1139
1140 * emacs-lisp/eieio-opt.el: Remove require for `button' since it is
1141 always loaded. Require `speedbar' unconditionally.
1142
1143 2012-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
1144
1145 * dired.el (dired-get-marked-files): Allow ! on . and .. (bug#12725).
1146
1147 * minibuffer.el (minibuffer-force-complete): Fix thinko.
1148
1149 * net/ldap.el (ldap-search-internal): The official ldif format starts
1150 with a "version: 1" header (bug#12724).
1151
1152 * emacs-lisp/package.el (package-installed-p): Warn if not ready
1153 (bug#12721).
1154
1155 2012-10-25 Glenn Morris <rgm@gnu.org>
1156
1157 * emacs-lisp/cl-macs.el (cl-progv): Doc fix.
1158
1159 2012-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
1160
1161 * minibuffer.el (minibuffer-force-complete): Use one more marker
1162 for the temporary-overlay-map command (bug#12619).
1163
1164 2012-10-24 Chong Yidong <cyd@gnu.org>
1165
1166 * time.el (display-time-world-mode): Derive from special-mode.
1167 (display-time-world): Use display-buffer (Bug#12708).
1168 (display-time-world-mode-map): Variable deleted.
1169 (display-time-world-display): Wrap the final delete-char inside
1170 inhibit-read-only.
1171
1172 2012-10-24 Chong Yidong <cyd@gnu.org>
1173
1174 * dired.el (dired-mark, dired-unmark, dired-flag-file-deletion):
1175 Doc fix.
1176
1177 * emacs-lisp/easymenu.el (easy-menu-define): Doc fix (Bug#12628).
1178
1179 2012-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
1180
1181 * minibuffer.el (completion--all-sorted-completions-location): New var.
1182 (completion--cache-all-sorted-completions)
1183 (completion--flush-all-sorted-completions): Use it.
1184 (completion-in-region, completion-in-region--postch)
1185 (completion-at-point, completion-help-at-point): Use markers in
1186 completion-in-region--data (bug#12619).
1187
1188 2012-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
1189
1190 * progmodes/compile.el (compilation-start): Try to handle common
1191 quoting of `cd' argument (bug#12640).
1192
1193 * vc/diff-mode.el (diff-hunk): `save-excursion' while refining
1194 (bug#12671).
1195
1196 2012-10-23 Glenn Morris <rgm@gnu.org>
1197
1198 * progmodes/gud.el (gud-menu-map):
1199 Check gdb-active-process is bound. (Bug#12358)
1200
1201 2012-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
1202
1203 * repeat.el (repeat): Set real-this-command (bug#12232).
1204
1205 * htmlfontify.el (hfy-post-html-hook):
1206 * filesets.el (filesets-cache-fill-content-hook):
1207 * arc-mode.el (archive-extract-hook):
1208 * progmodes/cc-mode.el (c-prepare-bug-report-hook):
1209 * net/rcirc.el (rcirc-sentinel-functions)
1210 (rcirc-receive-message-functions, rcirc-activity-functions)
1211 (rcirc-print-functions):
1212 * net/dbus.el (dbus-event-error-functions):
1213 * emacs-lisp/eieio.el (eieio-pre-method-execution-functions):
1214 * emacs-lisp/checkdoc.el (checkdoc-style-functions)
1215 (checkdoc-comment-style-functions): Don't use "-hooks" suffix.
1216 * term/sun.el (sun-raw-prefix-hooks):
1217 * mail/sendmail.el (mail-yank-hooks): Use make-obsolete-variable.
1218
1219 2012-10-23 Michael Albinus <michael.albinus@gmx.de>
1220
1221 * net/tramp-smb.el (tramp-smb-maybe-open-connection):
1222 Set `tramp-chunksize' to 1. This improves the performance.
1223 (tramp-smb-wait-for-output): Add timeout to
1224 `tramp-accept-process-output' calls.
1225
1226 2012-10-23 Chong Yidong <cyd@gnu.org>
1227
1228 * faces.el (font-list-limit): Define as an obsolete variable.
1229
1230 * startup.el (command-line):
1231 * cus-start.el: Don't refer to font-list-limit.
1232
1233 * newcomment.el (comment-normalize-vars): Doc fix (Bug#12583).
1234
1235 2012-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
1236
1237 * subr.el (internal-temp-output-buffer-show): Rename from
1238 temp-output-buffer-show, since previously compiled files expect this name.
1239
1240 2012-10-23 Glenn Morris <rgm@gnu.org>
1241
1242 * image.el (image-type-from-file-name): If multiple types match,
1243 return the first one that is supported. (Bug#9045)
1244
1245 2012-10-22 Glenn Morris <rgm@gnu.org>
1246
1247 * image.el (imagemagick-enabled-types): Doc fix.
1248
1249 2012-10-22 Takafumi Arakaki <aka.tkf@gmail.com> (tiny change)
1250
1251 * progmodes/which-func.el (which-func-current): The hash-table may have
1252 an explicit nil (bug#12338).
1253
1254 2012-10-22 Stefan Monnier <monnier@iro.umontreal.ca>
1255
1256 * electric.el (electric-pair-delete-selection-self-insert-function):
1257 Rename to electric-pair-will-use-region, return a boolean.
1258 (electric-pair-mode): Adjust accordingly. Don't require delsel.
1259
1260 * delsel.el (delete-selection-helper): Use a function instead of a hook.
1261 (delete-selection-pre-hook): Use use-region-p.
1262 (delete-selection-self-insert-function): Remove.
1263 (self-insert-command): Obey self-insert-uses-region-functions.
1264 (self-insert-iso): Revert to previous setting, since we don't actually
1265 know what that command does.
1266 (delete-selection-self-insert-hooks): Remove.
1267
1268 2012-10-22 Simon Law <sfllaw@sfllaw.ca> (tiny change)
1269
1270 * delsel.el (delete-selection-helper): New function, extracted from
1271 delete-selection-pre-hook.
1272 (delete-selection-pre-hook): Use it.
1273 (delete-selection-self-insert-function): New function.
1274 (delete-selection-self-insert-hooks): New hook.
1275 (self-insert-command, self-insert-iso): Use it.
1276 * electric.el (electric-pair-syntax): New function, extracted from
1277 electric-pair-post-self-insert-function.
1278 (electric-pair-post-self-insert-function): Use it.
1279 (electric-pair-delete-selection-self-insert-function): New function.
1280 (electric-pair-mode): Require delsel and setup
1281 delete-selection-self-insert-hooks (bug#11520).
1282
1283 2012-10-20 Chong Yidong <cyd@gnu.org>
1284
1285 * vc/vc.el (vc-diff-internal): Set up Diff mode even if there are
1286 no changes to show (Bug#12586).
1287
1288 * eshell/esh-cmd.el (eshell-rewrite-for-command): Copy the body
1289 list explicitly (Bug#12571).
1290
1291 2012-10-20 Arne Jørgensen <arne@arnested.dk>
1292
1293 * progmodes/flymake.el (flymake-create-temp-inplace):
1294 Use file-truename.
1295
1296 2012-10-20 Eli Zaretskii <eliz@gnu.org>
1297
1298 * loadup.el: Update comment about uncompiled Lisp files. (Bug#12395)
1299
1300 2012-10-20 Jay Belanger <jay.p.belanger@gmail.com>
1301
1302 * calc/calc-units.el (math-extract-units): Properly extract powers
1303 of units.
1304
1305 2012-10-20 Daniel Colascione <dancol@dancol.org>
1306
1307 * frame.el (make-frame): Set x-display-name as we used to in order
1308 to unbreak creating an X11 frame from an Emacs daemon started
1309 without a display.
1310
1311 2012-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
1312
1313 * minibuffer.el (minibuffer-force-complete): Make the next completion use
1314 the same completion-field (bug@12221).
1315
1316 2012-10-19 Martin Rudalics <rudalics@gmx.at>
1317
1318 * emacs-lisp/debug.el (debug): Record height of debugger window
1319 also when debugger will be back (Bug#8789).
1320
1321 2012-10-18 Chong Yidong <cyd@gnu.org>
1322
1323 * progmodes/gdb-mi.el (gdb-display-buffer-other-frame-action):
1324 Convert to defcustom.
1325 (gdb-get-source-file): Don't bind pop-up-windows.
1326
1327 * progmodes/gud.el (gud-display-line): Don't specially re-use
1328 other frames for the gdb-mi case (Bug#12648).
1329
1330 2012-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
1331
1332 * emacs-lisp/advice.el: Clean up commentary a bit.
1333 (ad-do-advised-functions, ad-with-originals): Use `declare'.
1334 (byte-code-function-p): Never redefine.
1335
1336 * emacs-lisp/gv.el (cond): Same fix as before for `if'.
1337
1338 2012-10-18 Glenn Morris <rgm@gnu.org>
1339
1340 * dired.el (dired-sort-toggle): Some ls implementations only allow
1341 a single option string. (Bug#12666)
1342
1343 * minibuffer.el (completion-cycle-threshold): Doc fix.
1344
1345 2012-10-17 Kenichi Handa <handa@gnu.org>
1346
1347 * international/mule.el (set-keyboard-coding-system):
1348 Recover input meta mode when the new coding system doesn not use 8-bit.
1349 Supply TERMINAL arg to set-input-meta-mode.
1350
1351 2012-10-17 Michael Heerdegen <michael_heerdegen@web.de>
1352
1353 * wdired.el (wdired-old-marks): New variable.
1354 (wdired-change-to-wdired-mode): Locally set wdired-old-marks.
1355 (wdired-do-renames): Move point with renamed file and don't lose
1356 mark status (Bug#11795).
1357
1358 2012-10-16 Juri Linkov <juri@jurta.org>
1359
1360 * replace.el (query-replace-help): Mention multi-buffer replacement
1361 keys in the Help message. (Bug#12655)
1362
1363 2012-10-15 Chong Yidong <cyd@gnu.org>
1364
1365 * emacs-lisp/byte-run.el (defsubst): Doc fix.
1366
1367 2012-10-14 Eli Zaretskii <eliz@gnu.org>
1368
1369 * window.el (display-buffer): Doc fix.
1370
1371 * progmodes/compile.el (compilation-error-regexp-alist-alist):
1372 Adjust the msft regexp to the output of Studio 2010, and move msft
1373 before edg-1. See the discussion on emacs-devel,
1374 http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00579.html,
1375 for the details.
1376
1377 2012-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
1378
1379 * emacs-lisp/eieio.el (eieio-oset-default, eieio-oset, oset-default)
1380 (oset): Move uses of object-class-fast macro after its definition.
1381
1382 * emacs-lisp/gv.el (if): Don't use closures in non-lexical-binding code.
1383
1384 2012-10-13 Chong Yidong <cyd@gnu.org>
1385
1386 * textmodes/ispell.el (ispell-pdict-save): If flyspell-mode is
1387 enabled, re-enable it (Bug#11963).
1388
1389 2012-10-13 Martin Rudalics <rudalics@gmx.at>
1390
1391 * emacs-lisp/debug.el (debug): When debugger-will-be-back is
1392 non-nil, restore window configuration (Bug#12623).
1393
1394 2012-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
1395
1396 * help-fns.el (describe-variable, describe-function-1):
1397 * help-mode.el (help-make-xrefs): Remove error handler, made unneeded.
1398
1399 * emacs-lisp/eieio.el (lisp-imenu-generic-expression): Fix typo.
1400
1401 2012-10-12 Glenn Morris <rgm@gnu.org>
1402
1403 * mail/rmailsum.el (rmail-header-summary):
1404 Fix 2010-11-26 test for multiline Subject: field. (Bug#12625)
1405
1406 2012-10-12 Fabián Ezequiel Gallina <fgallina@cuca>
1407
1408 * progmodes/python.el (python-mode-map):
1409 Replace subtitute-key-definition with proper command remapping.
1410 (python-nav--up-list): Fix behavior for blocks on the same level.
1411
1412 2012-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
1413
1414 * help-fns.el (describe-function-1): Handle autoloads w/o docstrings.
1415
1416 * emacs-lisp/bytecomp.el (byte-compile-eval): Adjust to long-ago
1417 changes to the format of load-history.
1418
1419 * international/mule-cmds.el (read-char-by-name): Move let-binding of
1420 completion-ignore-case in case that var is buffer-local (bug#12615).
1421
1422 2012-10-11 Kenichi Handa <handa@gnu.org>
1423
1424 * international/eucjp-ms.el: Re-generated.
1425
1426 2012-10-10 Kenichi Handa <handa@gnu.org>
1427
1428 * select.el (xselect--encode-string): If a coding is specified for
1429 selection, and that is compatible with COMPOUND_TEXT, use it.
1430
1431 2012-10-10 Martin Rudalics <rudalics@gmx.at>
1432
1433 * window.el (switch-to-buffer-preserve-window-point): New option.
1434 (switch-to-buffer):
1435 Obey `switch-to-buffer-preserve-window-point' (Bug#4041).
1436
1437 2012-10-09 Stefan Monnier <monnier@iro.umontreal.ca>
1438
1439 * newcomment.el (comment-start-skip, comment-end-skip, comment-end):
1440 Don't document nil as a useful value (bug#12583).
1441
1442 2012-10-09 Michael Albinus <michael.albinus@gmx.de>
1443
1444 * net/tramp.el (tramp-debug-message):
1445 Remove "tramp-with-progress-reporter" from regexp of ignored functions.
1446 (with-tramp-progress-reporter): Rename from
1447 `tramp-with-progress-reporter'.
1448 (with-tramp-file-property, with-tramp-connection-property):
1449 Move from tramp-cache.el, rename from `with-file-property' and
1450 `with-connection-property', respectively.
1451
1452 * net/tramp-cache.el: Remove `with-file-property' and
1453 `with-connection-property'.
1454
1455 * net/tramp.el:
1456 * net/tramp-gvfs.el:
1457 * net/tramp-sh.el:
1458 * net/tramp-smb.el: Adapt callees.
1459
1460 * net/trampver.el: Update release number.
1461
1462 2012-10-09 Glenn Morris <rgm@gnu.org>
1463
1464 * w32-fns.el (set-message-beep):
1465 * term/w32-win.el (set-message-beep): Update declarations.
1466
1467 2012-10-09 Stefan Monnier <monnier@iro.umontreal.ca>
1468
1469 * bindings.el (mode-line-toggle-read-only, mode-line-toggle-modified)
1470 (mode-line-widen, mode-line-input-method-map)
1471 (mode-line-coding-system-map, mode-line-remote)
1472 (mode-line-unbury-buffer, mode-line-bury-buffer)
1473 (mode-line-next-buffer, mode-line-previous-buffer):
1474 Replace save-selected-window+select-window => with-selected-window.
1475
1476 * progmodes/cc-bytecomp.el (cc-bytecomp-defmacro): Remove, unused.
1477 * progmodes/cc-vars.el (bq-process): Remove, unused.
1478
1479 * emacs-lisp/cl-macs.el (cl-defstruct): Obey the :read-only property.
1480
1481 2012-10-09 Fabián Ezequiel Gallina <fgallina@cuca>
1482
1483 Implemented `backward-up-list'-like navigation.
1484 * progmodes/python.el (python-nav-up-list)
1485 (python-nav-backward-up-list): New functions.
1486 (python-mode-map): Define substitute key for backward-up-list to
1487 python-nav-backward-up-list.
1488
1489 2012-10-08 Fabián Ezequiel Gallina <fgallina@cuca>
1490
1491 * progmodes/python.el (python-fill-paragraph): Rename from
1492 python-fill-paragraph-function. Fixed fill-paragraph for
1493 decorators (Bug#12605).
1494
1495 2012-10-08 Fabián Ezequiel Gallina <fgallina@cuca>
1496
1497 * progmodes/python.el (python-shell-output-filter): Handle extra
1498 carriage return in OSX (Bug#12409).
1499
1500 2012-10-08 Fabián Ezequiel Gallina <fgallina@cuca>
1501
1502 Fix shell handling of unbalanced quotes and parens in output.
1503 * progmodes/python.el (python-rx-constituents): Add string-delimiter.
1504 (python-syntax-propertize-function): Use it.
1505 (python-shell-output-syntax-table): New var.
1506 (inferior-python-mode): Prevent unbalanced parens/quotes from
1507 previous output mess with current input context.
1508
1509 2012-10-08 Juanma Barranquero <lekktu@gmail.com>
1510
1511 * generic-x.el (javascript-generic-mode, javascript-generic-mode-hook):
1512 Make obsolete aliases of js-mode and js-mode-hook (from js.el).
1513
1514 2012-10-08 Michael Albinus <michael.albinus@gmx.de>
1515
1516 * ffap.el (ffap-replace-file-component): Support Tramp file name
1517 syntax, not only ange-ftp's one.
1518
1519 2012-10-08 Glenn Morris <rgm@gnu.org>
1520
1521 * cus-start.el (message-log-max): Set :version.
1522
1523 * calendar/calendar.el (calendar-intermonth-header): Doc fix.
1524
1525 2012-10-08 Martin Rudalics <rudalics@gmx.at>
1526
1527 * emacs-lisp/edebug.el (edebug-pop-to-buffer): Don't try to split
1528 the minibuffer window (Bug#10851).
1529
1530 2012-10-08 Fabián Ezequiel Gallina <fgallina@cuca>
1531
1532 Enhancements on forward-sexp movement.
1533 * progmodes/python.el (python-nav-beginning-of-statement)
1534 (python-nav-end-of-statement): Return point-marker.
1535 (python-nav-forward-sexp): lisp-like forward-sexp behavior.
1536 (python-info-current-symbol)
1537 (python-info-statement-starts-block-p): Rename from
1538 python-info-beginning-of-block-p.
1539 (python-info-statement-ends-block-p): Rename from
1540 python-info-end-of-block-p.
1541 (python-info-beginning-of-statement-p)
1542 (python-info-end-of-statement-p)
1543 (python-info-beginning-of-block-p, python-info-end-of-block-p):
1544 New functions.
1545
1546 2012-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
1547
1548 * comint.el (comint-preinput-scroll-to-bottom): Preserve the
1549 frame-selected-windows.
1550
1551 2012-10-08 Daniel Colascione <dancol@dancol.org>
1552
1553 * battery.el (battery-status-function): Check for
1554 w32-battery-status itself, not system-time windows-nt.
1555
1556 * frame.el: Require cl-lib.
1557 (display-format-alist): New variable mapping frame types to
1558 functions that initialize them.
1559 (window-system-for-display): New function: interprets
1560 display-format-alist.
1561 (make-frame-on-display): Remove existing display-selection logic
1562 and just forward to make-frame, which will now DTRT.
1563 (make-frame): Restructure to use window-system-for-display to
1564 figure out how to create a frame on a given display.
1565 (display-mouse-p): Look for frame-type w32, not a particular
1566 system-type.
1567
1568 * loadup.el: Load w32 lisp code when we have the w32 feature.
1569
1570 * mouse.el (mouse-yank-primarY): Look for frame-type w32, not
1571 system-type windows-nt.
1572
1573 * server.el (server-create-window-system-frame): Look for window
1574 type.
1575 (server-proces-filter): Only force a window system when windows-nt
1576 _and_ w32. Explain why.
1577
1578 * simple.el (normal-erase-is-backspace-mode): Add w32 to the list
1579 of window systems we configure for the mode.
1580
1581 * startup.el (command-line): Mark window system is initialized
1582 after we've done it.
1583
1584 * common-win.el (x-select-text): Look for w32, not windows-nt.
1585
1586 * ns-win.el: Require cl-lib. Add ourselves to
1587 display-format-alist.
1588 (ns-initialize-window-system): Assert we're not initialized twice.
1589
1590 * w32-win.el: Enable lexical binding; require cl-lib; add
1591 ourselves to display-format-alist.
1592 (w32-handle-dropped-file): Convert incoming dropped files from
1593 Windows paths to Cygwin ones before passing them on to the rest of
1594 Emacs.
1595 (w32-drag-n-drop): New paramter new-frame. Simplify logic.
1596 (w32-initialize-window-system): Assert we're not initialized twice.
1597
1598 * x-win.el: Require cl-lib; add ourselves to display-format-alist.
1599 (x-initialize-window-system): Assert we're not initialized twice.
1600
1601 * w32-common-fns.el: New File.
1602 (w32-version, w32-using-nt, w32-get-clipboard-data)
1603 (w32-set-clipboard-data, x-set-selection, x-get-selection)
1604 (w32-charset-info-alist, x-last-selected, text)
1605 (x-get-selection-value, x-selection-value): Move here.
1606
1607 * w32-fns.el: Require w32-common-fns.
1608 (w32-version, w32-using-nt, w32-get-clipboard-data)
1609 (w32-set-clipboard-data, x-set-selection, x-get-selection)
1610 (w32-charset-info-alist, x-last-selected, text)
1611 (x-get-selection-value, x-selection-value): Move to
1612 w32-common-fns.
1613
1614 * w32-vars.el:
1615 (w32-allow-system-shell, w32-system-shells): Define only in
1616 non-cygwin case.
1617
1618 2012-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
1619
1620 * subr.el (read-passwd-map): Don't use `defconst' (bug#12597).
1621 (read-passwd): Remove a few more potential sources of leaks.
1622
1623 2012-10-07 Fabián Ezequiel Gallina <fgallina@cuca>
1624
1625 * progmodes/python.el (inferior-python-mode)
1626 (python-shell-make-comint): Fix initialization of local
1627 variables copied from parent buffer.
1628
1629 2012-10-07 Jan Djärv <jan.h.d@swipnet.se>
1630
1631 * term/ns-win.el (ns-read-file-name): Update declaration to match
1632 nsfns.m.
1633 (ns-respond-to-change-font): Change fontsize separatly so we are sure
1634 it is set when font is acted upon.
1635
1636 2012-10-07 Fabián Ezequiel Gallina <fgallina@cuca>
1637
1638 Enhancements to indentation.
1639 * progmodes/python.el (python-indent-context): Give priority to
1640 inside-string context. Make comments indentation markers.
1641 (python-indent-region): Do not mess with strings, unless it's the
1642 enclosing set of quotes.
1643
1644 2012-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
1645
1646 * window.el (internal--before-save-selected-window)
1647 (internal--after-save-selected-window): New functions extracted from
1648 save-selected-window. Make sure we return the `alist' we construct.
1649 (save-selected-window): Use them.
1650
1651 * textmodes/tex-mode.el (tex-recenter-output-buffer):
1652 Use with-selected-window.
1653
1654 * emacs-lisp/autoload.el (make-autoload): Add `cl-defmacro' to the
1655 forms that define macros (bug#12593).
1656
1657 2012-10-07 Kenichi Handa <handa@gnu.org>
1658
1659 * international/mule-conf.el (compound-text-with-extensions):
1660 Add :mime-charset property as x-ctext.
1661
1662 2012-10-07 Stefan Merten <smerten@oekonux.de>
1663
1664 * textmodes/rst.el (rst-new-adornment-down, rst-indent-field)
1665 (rst-indent-literal-normal, rst-indent-literal-minimized)
1666 (rst-indent-comment): Correct :version tag.
1667 (rst-official-cvs-rev): Correct version string.
1668
1669 2012-10-07 Glenn Morris <rgm@gnu.org>
1670
1671 * mail/rmailmm.el (rmail-mime-process-multipart):
1672 Do not confuse a multipart message with an epilogue
1673 with a "truncated" one; fixes 2011-06-27 change. (Bug#10101)
1674
1675 2012-10-07 Fabián Ezequiel Gallina <fgallina@cuca>
1676
1677 Fix shell output retrieval and comint-prompt-regexp init.
1678 * progmodes/python.el (inferior-python-mode):
1679 (python-shell-make-comint): Fix initialization of
1680 comint-prompt-regexp from copied file local variables.
1681 (python-shell-fetched-lines): Remove var.
1682 (python-shell-output-filter-in-progress): Rename from
1683 python-shell-fetch-lines-in-progress.
1684 (python-shell-output-filter-buffer): Rename from
1685 python-shell-fetch-lines-string.
1686 (python-shell-fetch-lines-filter): Delete function.
1687 (python-shell-output-filter): New function.
1688 (python-shell-send-string-no-output): Use them.
1689
1690 2012-10-07 Glenn Morris <rgm@gnu.org>
1691
1692 * hi-lock.el (hi-lock-process-phrase):
1693 Try to make it less fragile. (Bug#7161)
1694
1695 * hi-lock.el (hi-lock-face-phrase-buffer): Doc fix.
1696
1697 2012-10-06 Glenn Morris <rgm@gnu.org>
1698
1699 * ehelp.el (electric-help-mode): Use help-mode rather than
1700 non-existent mode `help'.
1701 (electric-help-map): Use button-buffer-map. (Bug#10917)
1702
1703 * textmodes/reftex-vars.el (reftex-create-bibtex-header)
1704 (reftex-create-bibtex-footer): Fix custom types.
1705
1706 * progmodes/sh-script.el (sh-indent-after-continuation):
1707 Add explicit :group.
1708
1709 * textmodes/rst.el (rst-preferred-decorations)
1710 (rst-shift-basic-offset): Clarify obsolescence versions.
1711
1712 * profiler.el (profiler): Add missing group :version tag.
1713 * avoid.el (mouse-avoidance-banish-position):
1714 * proced.el (proced-renice-command):
1715 * calc/calc.el (calc-ensure-consistent-units):
1716 * calendar/icalendar.el (icalendar-import-format-uid):
1717 * net/tramp.el (tramp-save-ad-hoc-proxies):
1718 * progmodes/bug-reference.el (bug-reference-bug-regexp):
1719 * progmodes/flymake.el (flymake-error-bitmap)
1720 (flymake-warning-bitmap, flymake-fringe-indicator-position):
1721 * progmodes/sh-script.el (sh-indent-after-continuation):
1722 * progmodes/verilog-mode.el (verilog-auto-template-warn-unused)
1723 (verilog-before-save-font-hook, verilog-after-save-font-hook):
1724 * progmodes/vhdl-mode.el (vhdl-makefile-default-targets)
1725 (vhdl-array-index-record-field-in-sensitivity-list)
1726 (vhdl-indent-comment-like-next-code-line):
1727 * textmodes/reftex-vars.el (reftex-ref-style-alist)
1728 (reftex-ref-macro-prompt, reftex-ref-style-default-list)
1729 (reftex-cite-key-separator, reftex-create-bibtex-header)
1730 (reftex-create-bibtex-footer):
1731 * textmodes/rst.el (rst-new-adornment-down, rst-indent-field)
1732 (rst-indent-literal-normal, rst-indent-literal-minimized)
1733 (rst-indent-comment): Add missing custom :version tags.
1734
1735 * calendar/timeclock.el (timeclock-modeline-display):
1736 Add missing obsolete alias for renamed user option.
1737
1738 * strokes.el (strokes-modeline-string):
1739 * emulation/crisp.el (crisp-mode-modeline-string):
1740 * eshell/esh-mode.el (eshell-status-in-modeline):
1741 Aliases to defcustoms must come before the defcustom.
1742
1743 * calendar/cal-tex.el (cal-tex-diary, cal-tex-cursor-week)
1744 (cal-tex-cursor-week2, cal-tex-cursor-week-iso)
1745 (cal-tex-cursor-week-monday): Doc fixes.
1746 (cal-tex-cursor-week2-summary): Doc fix.
1747 Rename from cal-tex-cursor-week-at-a-glance.
1748
1749 * calendar/cal-menu.el (cal-menu-context-mouse-menu):
1750 Tweak week descriptions. Add cal-tex-cursor-week2-summary.
1751
1752 * calendar/calendar.el (calendar-mode-map):
1753 Add cal-tex-cursor-week2-summary.
1754
1755 2012-10-06 Stefan Monnier <monnier@iro.umontreal.ca>
1756
1757 * emacs-lisp/cl-macs.el (cl-defstruct): Improve docstring.
1758
1759 * subr.el (read-passwd-map): New var.
1760 (read-passwd): Use `read-string' again.
1761 * minibuffer.el (delete-minibuffer-contents): Make it interactive.
1762
1763 2012-10-06 Jambunathan K <kjambunathan@gmail.com>
1764
1765 * register.el (append-to-register, prepend-to-register):
1766 Deactivate mark, as does `copy-to-register' (bug#12389).
1767
1768 2012-10-06 Chong Yidong <cyd@gnu.org>
1769
1770 * files.el (auto-mode-alist): Add .by and .wy (Semantic grammars).
1771
1772 2012-10-06 Ikumi Keita <ikumi@ikumi.que.jp> (tiny change)
1773
1774 * international/characters.el: Fix simple mistake ((car chars) ->
1775 elt), delete duplicated code.
1776
1777 2012-10-06 Glenn Morris <rgm@gnu.org>
1778
1779 * subr.el (read-passwd): Allow C-u to erase entry. (Bug#12570)
1780
1781 2012-10-06 Julian Scheid <julians37@gmail.com> (tiny change)
1782
1783 * color.el (color-hsl-to-rgb): Fix incorrect results for
1784 small and large hue values. (Bug#12559)
1785
1786 2012-10-05 Fabián Ezequiel Gallina <fgallina@cuca>
1787
1788 Enhancements to docstring formatting when filling paragraphs.
1789 * progmodes/python.el (python-fill-docstring-style): Rename from
1790 python-fill-string-style. Added new style.
1791 (python-fill-string): Use new style. Better checks for
1792 docstrings.
1793
1794 2012-10-05 Glenn Morris <rgm@gnu.org>
1795
1796 * net/newst-treeview.el (newsticker-group-move-feed): Doc fix.
1797
1798 * color.el (color-name-to-rgb, color-rgb-to-hex)
1799 (color-hue-to-rgb, color-hsl-to-rgb, color-rgb-to-hsv)
1800 (color-rgb-to-hsl, color-srgb-to-xyz, color-saturate-hsl)
1801 (color-desaturate-hsl, color-desaturate-name, color-lighten-hsl)
1802 (color-lighten-name, color-darken-hsl, color-darken-name): Doc fixes.
1803
1804 * emacs-lisp/timer.el (with-timeout): Add missing progn. (Bug#12577)
1805
1806 2012-10-05 Juanma Barranquero <lekktu@gmail.com>
1807
1808 * ido.el (ido-directory-too-big-p): Pass dir through file-truename
1809 to get the correct size across symlinks.
1810
1811 * ido.el (ido-buffer-disable-smart-matches): Fix typo in docstring.
1812
1813 2012-10-04 Juri Linkov <juri@jurta.org>
1814
1815 * replace.el (query-replace-interactive): Declare obsolete.
1816 (query-replace-read-from): Add the last incremental search string
1817 to the list of default values accessible via M-n.
1818 (map-query-replace-regexp): Use `read-regexp'.
1819 (query-replace, query-replace-regexp, query-replace-regexp-eval)
1820 (map-query-replace-regexp, replace-string, replace-regexp):
1821 Fix docstrings to replace mentions of `query-replace-interactive'
1822 with alternatives. (Bug#12526)
1823
1824 2012-10-04 Juri Linkov <juri@jurta.org>
1825
1826 * dired.el (dired-shrink-to-fit): Declare obsolete. (Bug#1806)
1827 (dired-pop-to-buffer): Declare obsolete.
1828 (dired-mark-pop-up): Doc fix.
1829
1830 2012-10-04 Fabián Ezequiel Gallina <fgallina@cuca>
1831
1832 Allow user to set docstring style for fill-paragraph.
1833 * progmodes/python.el
1834 (python-fill-comment-function, python-fill-string-function)
1835 (python-fill-decorator-function, python-fill-paren-function):
1836 Remove :safe for defcustoms.
1837 (python-fill-string-style): New defcustom
1838 (python-fill-paragraph-function): Enhance context detection.
1839 (python-fill-string): Honor python-fill-string-style settings.
1840
1841 2012-10-04 Martin Rudalics <rudalics@gmx.at>
1842
1843 * emacs-lisp/edebug.el (edebug-pop-to-buffer): Select window
1844 after setting its buffer (Bug#10805).
1845
1846 2012-10-03 Fabián Ezequiel Gallina <fgallina@cuca>
1847
1848 Fix cornercase for string syntax.
1849 * progmodes/python.el (python-syntax-propertize-function):
1850 Simplify and enhance the regexp for unescaped quotes. Now it also
1851 matches quotes in weird situations like the single quote in
1852 "something\"'".
1853 (python-syntax-stringify): Simplify num-quotes detecting code.
1854
1855 2012-10-03 Glenn Morris <rgm@gnu.org>
1856
1857 * help-macro.el (three-step-help):
1858 Revert 2012-09-29 change. (Bug#12567)
1859
1860 2012-10-03 Martin Rudalics <rudalics@gmx.at>
1861
1862 * menu-bar.el (kill-this-buffer): Don't do anything when
1863 `menu-frame' is not alive or visible (Bug#8184).
1864
1865 * emacs-lisp/debug.el (debug): When quitting the debugger window
1866 restore current buffer (Bug#12502).
1867
1868 2012-10-02 Chong Yidong <cyd@gnu.org>
1869
1870 * progmodes/hideif.el (hif-lookup, hif-defined):
1871 Handle semantic-c-takeover-hideif.
1872
1873 2012-10-02 Paul Eggert <eggert@cs.ucla.edu>
1874
1875 Change sampling interval units from ms to ns.
1876 * profiler.el (profiler-sampling-interval): Change units
1877 from ms to ns, multiplying the default by 1000000 so that
1878 it remains 1 ms.
1879 (profiler-report-cpu-line-format): Give enough room for
1880 the maximum counters on 64-bit hosts.
1881 (profiler-report-render-calltree-1): Call them "CPU samples",
1882 not "Time (ms)", since they are not milliseconds now (and
1883 never really were).
1884
1885 2012-10-02 Sergio Durigan Junior <sergiodj@riseup.net> (tiny change)
1886
1887 * net/eudcb-bbdb.el (eudc-bbdb-format-record-as-result):
1888 Fix querying BBDB for entries without a last name (Bug#11580).
1889
1890 2012-10-02 Chong Yidong <cyd@gnu.org>
1891
1892 * emacs-lisp/eieio.el: Restore Version header.
1893
1894 2012-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
1895
1896 * vc/diff-mode.el (diff--auto-refine-data): New var.
1897 (diff-hunk): Use it to delay refinement.
1898 (diff-mode): Remove overlays when we turn off font-lock.
1899
1900 * textmodes/table.el: Use lexical-binding, dolist, define-minor-mode.
1901 (table-initialize-table-fixed-width-mode)
1902 (table-set-table-fixed-width-mode): Remove functions.
1903 (table-command-list): Move initialization into declaration.
1904 (table--tweak-menu-for-xemacs): Move defun outside mapcar.
1905 (table-with-cache-buffer): Use `declare'.
1906 (table-span-cell): Simplify via CSE.
1907 (table-fixed-width-mode): Use define-minor-mode.
1908 (table-call-interactively, table-funcall, table-apply): Remove.
1909 (table-function): New function, to replace them.
1910
1911 * bookmark.el (bookmark-search-pattern): Remove var.
1912 (bookmark-read-search-input): Remove function.
1913 (bookmark-bmenu-search): Reimplement using a minibuffer.
1914
1915 * faces.el (modeline): Remove obsolete face name.
1916
1917 * vc/add-log.el (add-log-buffer-file-name-function): Demote to defvar
1918 and give a non-nil default value.
1919 (add-change-log-entry): Simplify accordingly.
1920
1921 2012-10-01 Dmitry Gutov <dgutov@yandex.ru>
1922
1923 * vc/vc-git.el (vc-git-log-edit-toggle-signoff): New function.
1924 (vc-git-log-edit-toggle-amend): New function.
1925 (vc-git-log-edit-toggle-signoff): New function.
1926 (vc-git-log-edit-mode): New major mode.
1927 (vc-git-log-edit-mode-map): Keymap for it.
1928 (vc-git-checkin): Handle "Amend" and "Sign-Off" headers.
1929
1930 * vc/log-edit.el (log-edit-font-lock-keywords): Allow hyphens in
1931 header names.
1932 (log-edit-toggle-header): New function.
1933 (log-edit-extract-headers): Accept function values in HEADERS alist.
1934
1935 2012-10-01 David Engster <deng@randomsample.de>
1936
1937 * emacs-lisp/eieio-opt.el (eieio-describe-class): Add filename
1938 from symbol property and change message to be more consistent with
1939 Emacs proper.
1940 (eieio-describe-generic): Add filename for each implementation.
1941 Fix indices for generic and normal methods.
1942 (eieio-method-def, eieio-class-def): New buttons.
1943 (eieio-help-find-method-definition)
1944 (eieio-help-find-class-definition): New functions.
1945 (eieio-help-mode-augmentation-maybee): Add buttons to filenames of
1946 class, constructor and method definitions.
1947
1948 * emacs-lisp/eieio.el (eieiomt-add, eieio-defclass): Save file
1949 information in symbol property.
1950 (scoped-class): Remove.
1951 (eieio-slot-name-index, call-next-method): Check if it is bound.
1952
1953 2012-10-01 Leo P. White <lpw25@cam.ac.uk>
1954
1955 * emacs-lisp/eieio-custom.el (eieio-custom-mode-map): New option.
1956 (eieio-custom-mode): New major mode.
1957 (eieio-customize-object): Use it.
1958
1959 2012-10-01 Eric Ludlam <zappo@gnu.org>
1960
1961 * emacs-lisp/eieio-base.el (eieio-persistent-read): New input args
1962 specifying the expected class, and whether subclassing is allowed.
1963 (eieio-persistent-convert-list-to-object):
1964 (eieio-persistent-validate/fix-slot-value)
1965 (eieio-persistent-slot-type-is-class-p): New functions.
1966 (eieio-named::slot-missing): Doc fix.
1967
1968 * emacs-lisp/eieio-datadebug.el (data-debug/eieio-insert-slots):
1969 Stop using unused publd variable.
1970
1971 * emacs-lisp/eieio-speedbar.el (eieio-speedbar-handle-click):
1972 (eieio-speedbar-description, eieio-speedbar-derive-line-path)
1973 (eieio-speedbar-object-buttonname, eieio-speedbar-make-tag-line)
1974 (eieio-speedbar-handle-click): Do not specify a class for the
1975 method. Fixes method invocation order problems with EDE.
1976
1977 2012-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
1978
1979 * emacs-lisp/bytecomp.el (byte-compiler-abbreviate-file): New function.
1980 (byte-compile-warning-prefix, byte-compile-file): Use it (bug#12508).
1981
1982 2012-10-01 Karl Fogel <kfogel@red-bean.com>
1983
1984 * bookmark.el (bookmark-version-control): Give tags in the
1985 :type choices (Bug#12309), and improve doc string.
1986 (bookmark-write-file): Bind `print-circle' to `t' to allow
1987 circular custom bookmark types. (Bug#12503)
1988
1989 2012-10-01 Paul Eggert <eggert@cs.ucla.edu>
1990
1991 Revert the FOLLOW-SYMLINKS change for file-attributes.
1992 * files.el (remote-file-name-inhibit-cache, after-find-file):
1993 * time.el (display-time-file-nonempty-p): Undo last change.
1994
1995 * profiler.el (profiler-sampling-interval): Change default back to 1.
1996 See Stefan Monnier in
1997 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00863.html>.
1998
1999 2012-10-01 Fabián Ezequiel Gallina <fgallina@cuca>
2000
2001 Shell output catching a la gud-gdb.
2002 * progmodes/python.el (python-shell-fetch-lines-in-progress)
2003 (python-shell-fetch-lines-string, python-shell-fetched-lines):
2004 New Vars.
2005 (python-shell-fetch-lines-filter): New function.
2006 (python-shell-send-string-no-output): Use them.
2007
2008 2012-09-30 Tomohiro Matsuyama <tomo@cx4a.org>
2009
2010 * profiler.el (profiler-sampling-interval): Rename from
2011 profiler-sample-interval.
2012 (profiler-sampling-interval): Default to 10.
2013 (profiler-find-profile): New command (was profiler-find-log).
2014 (profiler-find-profile-other-window): New command.
2015 (profiler-find-profile-other-frame): New command.
2016 (profiler-profile): Introduce API-level data structure.
2017
2018 2012-09-30 Paul Eggert <eggert@cs.ucla.edu>
2019
2020 file-attributes has a new optional arg FOLLOW-SYMLINKS.
2021 * files.el (remote-file-name-inhibit-cache):
2022 * time.el (display-time-file-nonempty-p): Use it.
2023 * files.el (after-find-file): Don't chase links before calling
2024 file-exists-p, as file-exists-p already does the right thing.
2025
2026 2012-09-30 Ralf Angeli <angeli@caeruleus.net>
2027
2028 Merge from standalone RefTeX repository.
2029
2030 The following ChangeLog entries are shortened versions of the
2031 original ones with file paths adapted. A not so strongly edited
2032 version of the original ChangeLog can be found in the commit log.
2033
2034 * textmodes/reftex-auc.el: Move `provide' call to bottom of file.
2035 (reftex-arg-cite): Use `reftex-cite-key-separator'.
2036 Correctly handle new value type returned by `reftex-citation'.
2037
2038 * textmodes/reftex-cite.el (reftex-create-bibtex-file): Make sure
2039 that entries with whitespace at various places are found.
2040 Doc fix. Include entries that are cross-referenced from cited entries.
2041 Include @String definitions in the resulting bib file. Add header
2042 and footer defined in `reftex-create-bibtex-header' and
2043 `reftex-create-bibtex-footer'.
2044 (reftex-do-citation): Make it possible again to insert
2045 non-existent entries. Save match data when asking for optional
2046 arguments. Return all keys, not just the first one.
2047 (reftex-all-used-citation-keys): Fix regexp to correctly extract
2048 all citations in the same line.
2049 (reftex-parse-bibtex-entry): Accept additional optional argument
2050 `raw' and keep quotes or braces if it is non-nil. Match fields
2051 containing hyphens besides word constituents.
2052 (reftex-get-string-refs): New function.
2053 (reftex-extract-bib-entries): Check if BibTeX file changed on disk
2054 and ask if it should be reread in case it did.
2055 (reftex-pop-to-bibtex-entry)
2056 (reftex-extract-bib-entries-from-thebibliography): Match \bibitem
2057 entries with spaces or tabs in front of arguments.
2058 (reftex-pop-to-bibtex-entry, reftex-extract-bib-entries)
2059 (reftex-parse-bibtex-entry, reftex-create-bibtex-file):
2060 Match entries containing numbers and symbol constituents.
2061 (reftex-do-citation, reftex-figure-out-cite-format):
2062 Use `reftex-cite-key-separator'.
2063
2064 * textmodes/reftex-dcr.el: Move provide statement to end of file.
2065 (reftex-mouse-view-crossref): Explain why point is set.
2066
2067 * textmodes/reftex-global.el: Whitespace changes.
2068
2069 * textmodes/reftex-index.el: Move provide statement to end of
2070 file.
2071 (reftex-index-selection-or-word): Use `reftex-region-active-p'.
2072 (reftex-index-visit-phrases-buffer): Set marker when visiting
2073 buffer. This allows for returning from the phrases file to the
2074 file one was just editing instead of the file where the last
2075 phrases was added from.
2076 (reftex-index-phrases-syntax-table): New variable. Give ?\"
2077 punctuation syntax as it usually is not used as string quote in
2078 TeX-related modes and may occur unmatched. The change also
2079 prevents fontification of quoted content.
2080 (reftex-index-phrases-mode): Use it.
2081
2082 * textmodes/reftex-parse.el (reftex-parse-from-file):
2083 Move backward one char if a `\' was matched after a section macro.
2084 (reftex-parse-from-file): Use beginning of match instead of end as
2085 bound.
2086
2087 * textmodes/reftex-ref.el: Adapt creation of
2088 `reftex-<package>-<macro>' functions to new structure of
2089 `reftex-ref-style-alist'.
2090 (reftex-reference): Use `reftex-ref-style-list' function.
2091 Adapt to new structure of `reftex-ref-style-alist'. Prompt for a
2092 reference macro if `reftex-ref-macro-prompt' is non-nil.
2093 (reftex-reference): Pass refstyle to `reftex-format-special'.
2094 Determine reference macro by looking at
2095 `reftex-ref-style-default-list' and `reftex-ref-style-alist'.
2096 Use only one special format function.
2097 (reftex-varioref-vref, reftex-fancyref-fref)
2098 (reftex-fancyref-Fref): Remove definitions. The functions are now
2099 generated from `reftex-ref-style-alist'.
2100 (reftex-format-vref, reftex-format-Fref, reftex-format-fref):
2101 Remove.
2102 (reftex-format-special): New function.
2103
2104 * textmodes/reftex-sel.el
2105 (reftex-select-cycle-ref-style-internal): Adapt to new structure
2106 of `reftex-ref-style-alist'. Remove code for testing macro type.
2107 (reftex-select-toggle-varioref)
2108 (reftex-select-toggle-fancyref): Remove.
2109 (reftex-select-cycle-ref-style-internal)
2110 (reftex-select-cycle-ref-style-forward)
2111 (reftex-select-cycle-ref-style-backward): New functions.
2112 (reftex-select-label-map): Use `v' and `V' for general cycling
2113 through reference styles. Add `p' for switching between number
2114 and page reference types.
2115
2116 * textmodes/reftex-toc.el (reftex-re-enlarge):
2117 Call `enlarge-window' only if there is something to do because in Emacs
2118 the horizontal version throws an error even if the parameter is 0.
2119
2120 * textmodes/reftex-vars.el (reftex-label-alist): Doc fix.
2121 (reftex-plug-into-AUCTeX): Doc fix.
2122 (reftex-vref-is-default, reftex-fref-is-default): Adapt doc
2123 string. Adapt to new name.
2124 (reftex-ref-style-alist): Change structure so that it is not
2125 possible to use multiple different package names within a style.
2126 Remove the symbols for symbols for macro type distinction.
2127 Add characters for macro selection.
2128 (reftex-ref-macro-prompt, reftex-create-bibtex-header)
2129 (reftex-create-bibtex-footer): New variables.
2130 (reftex-format-ref-function): Mention third argument of special
2131 format function.
2132 (reftex-ref-style-alist, reftex-ref-style-default-list):
2133 New variables.
2134 (reftex-vref-is-default, reftex-fref-is-default): Adapt doc string
2135 to new implementation. Mark as obsolete. Add compatibility code
2136 for honoring the variable values in case they are set.
2137 (reftex-cite-format-builtin, reftex-bibliography-commands):
2138 Add support for ConTeXt.
2139 (reftex-format-ref-function, reftex-format-cite-function):
2140 Fix custom type.
2141 (reftex-cite-key-separator): New variable.
2142
2143 * textmodes/reftex.el (reftex-syntax-table-for-bib)
2144 (reftex-mode): Do not derive `reftex-syntax-table-for-bib' from
2145 `reftex-syntax-table' because parens have to retain their paren
2146 syntax in order for parsing of BibTeX entries like @book(...) to
2147 work.
2148 (reftex-in-comment): Do not error out if `comment-start-skip' is
2149 not set. Deal correctly with escaped comment characters.
2150 (reftex-tie-multifile-symbols): Add doc string.
2151 Initialize `reftex-ref-style-list'.
2152 (reftex-untie-multifile-symbols): Add doc string.
2153 (reftex-add-index-macros): Doc fix.
2154 (reftex-ref-style-activate, reftex-ref-style-toggle)
2155 (reftex-ref-style-list): New functions.
2156 (reftex-mode-menu): Use them. Adapt to new structure of
2157 `reftex-ref-style-alist'.
2158 (reftex-select-with-char): Kill the RefTeX Select buffer when
2159 done.
2160 (reftex-remove-if): New function.
2161 (reftex-erase-all-selection-and-index-buffers)
2162 (reftex-mode-menu): Reference styles are now computed from
2163 `reftex-ref-style-alist'. Fix typo.
2164 (reftex-report-bug): New function.
2165 (reftex-uniquify, reftex-uniquify-by-car): Replace O(n^2)
2166 algorithms with O(n log n). Introduce optional argument SORT (not
2167 yet used).
2168
2169 2012-09-30 Fabián Ezequiel Gallina <fgallina@cuca>
2170
2171 Enhancements for triple-quote string syntax.
2172 * progmodes/python.el (python-syntax-propertize-function):
2173 Match both quote cases in one regexp.
2174 (python-syntax-stringify): Handle matches properly.
2175
2176 2012-09-30 Juri Linkov <juri@jurta.org>
2177
2178 * arc-mode.el (archive-summarize): Let-bind `buffer-file-truename'
2179 to nil around the call to `insert' to prevent
2180 directory time modification by lock_file. (Bug#2295)
2181 * tar-mode.el (tar-summarize-buffer): Idem.
2182
2183 2012-09-30 Juri Linkov <juri@jurta.org>
2184
2185 * facemenu.el (list-colors-sort): Add option "Luminance".
2186 (list-colors-sort-key): Implement it.
2187
2188 * vc/diff-mode.el (diff-refine-removed):
2189 * vc/ediff-init.el (ediff-fine-diff-A):
2190 * vc/smerge-mode.el (smerge-refined-removed):
2191 Change background color "#ffaaaa" to "#ffbbbb". (Bug#10181)
2192
2193 2012-09-30 Jan Djärv <jan.h.d@swipnet.se>
2194
2195 * term/ns-win.el (x-file-dialog): New function.
2196
2197 2012-09-30 Juanma Barranquero <lekktu@gmail.com>
2198
2199 * ido.el (ido-max-directory-size): Default to nil; the current
2200 default is small for POSIX systems, and impractical on Windows 7
2201 now that lstat returns directory sizes for NTFS.
2202
2203 2012-09-30 Martin Rudalics <rudalics@gmx.at>
2204
2205 In buffer display functions handle window-height/window-width
2206 alist entries. Suggested by Juri Linkov as fix for Bug#1806.
2207 * window.el (window--display-buffer): New argument ALIST.
2208 Obey window-height and window-width alist entries.
2209 (window--try-to-split-window): New argument ALIST.
2210 Bind window-combination-limit to t when the window's size shall be
2211 changed and window-combination-limit equals `window-size'.
2212 (display-buffer-in-atom-window)
2213 (display-buffer-in-major-side-window)
2214 (display-buffer-in-side-window, display-buffer-same-window)
2215 (display-buffer-reuse-window, display-buffer-pop-up-frame)
2216 (display-buffer-pop-up-window, display-buffer-below-selected)
2217 (display-buffer-at-bottom, display-buffer-in-previous-window)
2218 (display-buffer-use-some-window): Adjust all callers of
2219 window--display-buffer and window--try-to-split-window.
2220 (fit-frame-to-buffer): New option.
2221 (fit-window-to-buffer): Can resize frames if fit-frame-to-buffer
2222 is non-nil.
2223 (display-buffer-in-major-side-window): Evaluate window-height /
2224 window-width alist entries.
2225
2226 * help.el (temp-buffer-resize-frames)
2227 (temp-buffer-resize-regexps): Remove options.
2228 (temp-buffer-resize-mode): Adjust doc-string.
2229 (resize-temp-buffer-window): Don't consult
2230 temp-buffer-resize-regexps. Use fit-frame-to-buffer instead of
2231 temp-buffer-resize-frames.
2232
2233 * dired.el (dired-mark-pop-up):
2234 Call display-buffer-below-selected with a fit-window-to-buffer alist
2235 entry.
2236
2237 2012-09-30 Chong Yidong <cyd@gnu.org>
2238
2239 * server.el (server-host): Document the security implications.
2240 (server-auth-key): Doc fix.
2241
2242 * startup.el (initial-buffer-choice): Doc fix.
2243
2244 * minibuffer.el (minibuffer-local-filename-syntax): Doc fix.
2245
2246 * simple.el (delete-trailing-whitespace): Avoid an unnecessary
2247 restriction change.
2248
2249 * bindings.el (goto-map): Bind M-g TAB to move-to-column.
2250
2251 * help-fns.el (help-fns--obsolete): Fix last change.
2252
2253 2012-09-30 Stefan Monnier <monnier@iro.umontreal.ca>
2254
2255 * winner.el (winner-mode-map): Obey winner-dont-bind-my-keys here.
2256 (minor-mode-map-alist): Remove redundant code.
2257
2258 * vc/pcvs.el (cvs-cleanup-collection): Keep entries that are currently
2259 visited in a buffer.
2260 (cvs-insert-visited-file): New function.
2261 (find-file-hook): Use it.
2262
2263 * vc/pcvs-info.el (cvs-fileinfo-pp): Don't use non-existent faces.
2264
2265 * vc/log-edit.el (log-edit-font-lock-keywords): Ignore case to
2266 chose face.
2267 (log-edit-empty-buffer-p): Don't require a space after a header.
2268
2269 * vc/ediff-util.el (ediff-diff-at-point): Don't assume point-min==1.
2270
2271 * tutorial.el (help-with-tutorial): Use minibuffer-with-setup-hook.
2272
2273 * textmodes/text-mode.el (paragraph-indent-minor-mode): Make it
2274 a proper minor-mode.
2275
2276 * textmodes/tex-mode.el (tex-mode-map): Don't bind paren keys.
2277
2278 2012-09-29 Glenn Morris <rgm@gnu.org>
2279
2280 * winner.el (winner-mode): Remove variable (let define-minor-mode
2281 handle it).
2282 (winner-dont-bind-my-keys, winner-boring-buffers, winner-mode-hook):
2283 Doc fixes.
2284 (winner-mode-leave-hook): Rename to winner-mode-off-hook.
2285 (winner-mode): Use define-minor-mode.
2286
2287 * vc/vc-sccs.el (vc-sccs-registered): Use the progn trick to get
2288 the full definition in loaddefs, rather than duplicating it.
2289
2290 * help-macro.el (three-step-help): No need to autoload defcustom.
2291
2292 * progmodes/inf-lisp.el (inferior-lisp-filter-regexp)
2293 (inferior-lisp-program, inferior-lisp-load-command)
2294 (inferior-lisp-prompt, inferior-lisp-mode-hook):
2295 No need to autoload defcustoms.
2296
2297 * hippie-exp.el (hippie-expand-try-functions-list)
2298 (hippie-expand-verbose, hippie-expand-dabbrev-skip-space)
2299 (hippie-expand-dabbrev-as-symbol, hippie-expand-no-restriction)
2300 (hippie-expand-max-buffers, hippie-expand-ignore-buffers)
2301 (hippie-expand-only-buffers): No need to autoload defcustoms.
2302 * progmodes/vhdl-mode.el (vhdl-line-expand):
2303 Explicitly load hippie-exp, so it does not get autoloaded
2304 while hippie-expand-try-functions-list is let-bound.
2305
2306 2012-09-28 Glenn Morris <rgm@gnu.org>
2307
2308 * emacs-lisp/cl.el (flet): Fix case of obsolescence message.
2309
2310 * emacs-lisp/bytecomp.el (byte-compile-cl-file-p):
2311 Only "cl.el" counts as cl these days.
2312
2313 2012-09-28 Juri Linkov <juri@jurta.org>
2314
2315 Display archive errors in the echo area instead of inserting
2316 to the file buffer.
2317
2318 * arc-mode.el (archive-extract-by-stdout): Change arg STDERR-FILE
2319 to STDERR-TEST that can be a regexp matching a successful output.
2320 Create a temporary file and redirect stderr to it. Search for
2321 STDERR-TEST in the stderr output and display it in the echo area
2322 if no match is found.
2323 (archive-extract-by-file): New function like
2324 `archive-extract-by-stdout' but extracting archives to files
2325 and looking for successful matches in stdout. Function body is
2326 mostly copied from `archive-rar-extract'.
2327 (archive-rar-extract): Use `archive-extract-by-file'.
2328 (archive-7z-extract): Use `archive-extract-by-stdout'. (Bug#10347)
2329
2330 2012-09-28 Leo Liu <sdl.web@gmail.com>
2331
2332 * pcomplete.el (pcomplete-show-completions):
2333 Use minibuffer-message to make pcomplete usable in minibuffer.
2334
2335 * ido.el (ido-set-matches-1): Fix 2012-09-11 change.
2336
2337 2012-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
2338
2339 * type-break.el: Use lexical-binding.
2340 (type-break-mode): Use define-minor-mode.
2341
2342 * emacs-lisp/pcase.el (pcase--mark-used): New.
2343 (pcase--u1): Use it (bug#12512).
2344
2345 * custom.el (load-theme): Set buffer-file-name so the load is recorded
2346 in load-history with the right file name.
2347
2348 2012-09-28 Tassilo Horn <tsdh@gnu.org>
2349
2350 * doc-view.el (doc-view-current-cache-doc-pdf): New function.
2351 (doc-view-doc->txt, doc-view-convert-current-doc): Use it.
2352 (doc-view-get-bounding-box): Make bounding box slicing work for
2353 ODF and DVI documents.
2354
2355 2012-09-28 Glenn Morris <rgm@gnu.org>
2356
2357 * type-break.el (type-break-mode, type-break-interval)
2358 (type-break-good-rest-interval, type-break-keystroke-threshold):
2359 No need to autoload.
2360 (type-break-good-rest-interval, type-break-keystroke-threshold):
2361 Add :set-after.
2362
2363 2012-09-28 Chong Yidong <cyd@gnu.org>
2364
2365 * progmodes/verilog-mode.el (verilog-auto-inst-interfaced-ports):
2366 Add :version tag.
2367
2368 2012-09-27 Stefan Monnier <monnier@iro.umontreal.ca>
2369
2370 * json.el (json-encode-char): Codes 127-160 aren't "ASCII printable".
2371
2372 2012-09-27 Glenn Morris <rgm@gnu.org>
2373
2374 * faces.el (x-display-name): Declare (for without-x builds).
2375
2376 * linum.el (linum-format): Don't autoload it. Improve :type.
2377
2378 * progmodes/tcl.el: Don't require outline when compiling.
2379 (outline-regexp, outline-level): Declare.
2380 * textmodes/sgml-mode.el: Don't require outline when compiling.
2381 (outline-regexp, outline-heading-end-regexp, outline-level): Declare.
2382
2383 * term.el (term-ansi-reset):
2384 Try setting term-ansi-face-already-done to nil. (Bug#11785)
2385
2386 * vc/vc.el (vc-next-action): Only gripe about committing read-only
2387 files for RCS and SCCS. (Bug#9781)
2388
2389 2012-09-27 Chong Yidong <cyd@gnu.org>
2390
2391 * progmodes/verilog-mode.el (verilog-mode-release-emacs): Fix last
2392 change; value should be t.
2393
2394 2012-09-27 Stefan Monnier <monnier@iro.umontreal.ca>
2395
2396 * image-mode.el: Use lexical-binding.
2397 (image-mode-winprops): Use t to stand for the window of
2398 a buffer that's not displayed.
2399 * doc-view.el (doc-view-new-window-function): Handle the new
2400 t in winprops.
2401 (doc-view-enlarge): Make it a real nop if the size is not changed.
2402 (doc-view-display): Handle the case where the buffer is not (yet?)
2403 displayed in any window.
2404 (doc-view-saved-settings): New var.
2405 (doc-view-mode): Use it.
2406 (doc-view-fallback-mode): Set it.
2407
2408 * minibuf-eldef.el: Make it possible to replace (default ...) with [...].
2409 Set lexical-binding.
2410 (minibuffer-eldef-shorten-default): New var.
2411 (minibuffer-default-in-prompt-regexps): Use it for new default.
2412 (minibuf-eldef-setup-minibuffer): Add replacement functionality.
2413
2414 2012-09-26 Juanma Barranquero <lekktu@gmail.com>
2415
2416 * international/uni-bidi.el:
2417 * international/uni-category.el:
2418 * international/uni-name.el:
2419 * international/uni-numeric.el: Regenerate.
2420
2421 2012-09-26 Tomohiro Matsuyama <tomo@cx4a.org>
2422 Stefan Monnier <monnier@iro.umontreal.ca>
2423
2424 * profiler.el: New file.
2425
2426 2012-09-26 Stefan Monnier <monnier@iro.umontreal.ca>
2427
2428 * emacs-lisp/testcover.el (testcover-after): Add gv-expander.
2429 (testcover-reinstrument): Simplify with CSE.
2430
2431 2012-09-26 Juanma Barranquero <lekktu@gmail.com>
2432
2433 * window.el (temp-buffer-window-setup): Fix typo in docstring.
2434
2435 2012-09-25 Wilson Snyder <wsnyder@wsnyder.org>
2436
2437 * verilog-mode.el (verilog-auto-ascii-enum, verilog-auto-inout)
2438 (verilog-auto-input, verilog-auto-insert-lisp)
2439 (verilog-auto-output, verilog-auto-output-every, verilog-auto-reg)
2440 (verilog-auto-reg-input, verilog-auto-tieoff, verilog-auto-undef)
2441 (verilog-auto-unused, verilog-auto-wire)
2442 (verilog-forward-or-insert-line): Fix AUTOs with no trailing
2443 newline. Reported by Andrew Jones.
2444 (verilog-auto-inst) Support expanding $clog2 in AUTOINST.
2445 Reported by Brad Dobbie.
2446 (verilog-batch-delete-trailing-whitespace):
2447 Create verilog-batch-delete-trailing-whitespace.
2448 Reported by Brad Dobbie.
2449 (verilog-auto-inout-param): Support AUTOINOUTPARAM for copying
2450 parameters from another module. Reported by Dan Katz.
2451 (verilog-auto, verilog-auto-assign-modport)
2452 (verilog-auto-inout-modport): Add AUTOASSIGNMODPORT and
2453 AUTOINOUTMODPORT for UVM interface module shell generation.
2454 Reported by Brad Dobbie.
2455 (verilog-auto-inst-interfaced-ports): Make default nil, as more
2456 standard behavior.
2457 (verilog-auto): Fix AUTO parameters with parenthesis arguments.
2458 Reported by Matt Martin.
2459
2460 2012-09-25 Martin Rudalics <rudalics@gmx.at>
2461
2462 * window.el (window--resize-child-windows): When resizing child
2463 windows proportionally, process them in reverse order to
2464 preserve the "when splitting a window the new one gets the odd
2465 line" behavior.
2466 (window--resize-root-window-vertically): When resizing the
2467 minibuffer window try to affect only windows at the bottom of the
2468 frame. (Bug#12419)
2469
2470 2012-09-25 Chong Yidong <cyd@gnu.org>
2471
2472 * subr.el (declare): Doc fix.
2473
2474 * help-fns.el (help-fns--obsolete): Handle macros properly.
2475
2476 2012-09-25 Chong Yidong <cyd@gnu.org>
2477
2478 * bookmark.el (bookmark-jump-noselect): Use a declare form to mark
2479 this function obsolete.
2480
2481 * calendar/cal-x.el (calendar-two-frame-setup)
2482 (calendar-only-one-frame-setup, calendar-one-frame-setup):
2483 * calendar/calendar.el (american-calendar, european-calendar)
2484 (calendar-for-loop):
2485 * comint.el (comint-dynamic-simple-complete)
2486 (comint-dynamic-complete-as-filename, comint-unquote-filename):
2487 * desktop.el (desktop-load-default):
2488 * dired-x.el (dired-omit-here-always)
2489 (dired-hack-local-variables, dired-default-directory):
2490 * emacs-lisp/derived.el (derived-mode-class):
2491 * emacs-lisp/timer.el (timer-set-time-with-usecs):
2492 * emacs-lock.el (toggle-emacs-lock):
2493 * epa.el (epa-display-verify-result):
2494 * epg.el (epg-sign-keys, epg-start-sign-keys)
2495 (epg-passphrase-callback-function):
2496 * eshell/esh-util.el (eshell-for):
2497 * eshell/eshell.el (eshell-remove-from-window-buffer-names)
2498 (eshell-add-to-window-buffer-names):
2499 * files.el (locate-file-completion):
2500 * imenu.el (imenu-example--create-c-index)
2501 (imenu-example--create-lisp-index)
2502 (imenu-example--lisp-extract-index-name)
2503 (imenu-example--name-and-position):
2504 * international/mule-cmds.el (princ-list):
2505 * international/mule-diag.el (decode-codepage-char):
2506 * international/mule-util.el (detect-coding-with-priority):
2507 * iswitchb.el (iswitchb-read-buffer):
2508 * mail/mailalias.el (mail-complete):
2509 * mail/sendmail.el (mail-sent-via):
2510 * mouse.el (mouse-popup-menubar-stuff, mouse-popup-menubar)
2511 (mouse-major-mode-menu):
2512 * password-cache.el (password-read-and-add):
2513 * pcomplete.el (pcomplete-parse-comint-arguments):
2514 * progmodes/sh-script.el (sh-maybe-here-document):
2515 * replace.el (query-replace-regexp-eval):
2516 * savehist.el (savehist-load):
2517 * simple.el (choose-completion-delete-max-match):
2518 * term.el (term-dynamic-simple-complete):
2519 * vc/ediff-init.el (ediff-check-version):
2520 * vc/ediff-wind.el (ediff-choose-window-setup-function-automatically):
2521 * vc/vc.el (vc-diff-switches-list):
2522 * view.el (view-return-to-alist-update): Likewise.
2523
2524 * subr.el (eval-next-after-load, makehash, insert-string)
2525 (assoc-ignore-representation, assoc-ignore-case): Use declare to
2526 mark obsolete.
2527 (mode-line-inverse-video): Variable deleted.
2528
2529 * international/mule-util.el (string-to-sequence): Remove.
2530
2531 * calendar/calendar.el (calendar-version):
2532 * calendar/icalendar.el (icalendar-extract-ical-from-buffer)
2533 (icalendar-convert-diary-to-ical):
2534 * cus-edit.el (custom-mode):
2535 * ansi-color.el (ansi-color-unfontify-region):
2536 * international/latin1-disp.el (latin1-char-displayable-p):
2537 * progmodes/cwarn.el (turn-on-cwarn-mode):
2538 * progmodes/which-func.el (which-func-update-1):
2539 Use define-obsolete-function-alias.
2540
2541 * net/newst-backend.el (newsticker-cache-filename):
2542 * net/newst-treeview.el (newsticker-groups-filename):
2543 Fix incorrect obsolescence declaration.
2544
2545 * allout.el (allout-passphrase-hint-string): Likewise.
2546 (allout-init): Use a declare form to mark obsolete.
2547
2548 * emacs-lisp/byte-run.el (make-obsolete): Doc fix; emphasize that
2549 this applies to functions.
2550
2551 * iswitchb.el (iswitchb-read-buffer): Move code of
2552 iswitchb-define-mode-map here, and delete that obsolete function.
2553
2554 * net/snmp-mode.el (snmp-font-lock-keywords-3): Don't use obsolete
2555 font-lock-reference-face.
2556
2557 2012-09-25 Glenn Morris <rgm@gnu.org>
2558
2559 * buff-menu.el (Buffer-menu-name-width, Buffer-menu-size-width):
2560 Doc fixes.
2561
2562 * eshell/em-term.el (eshell-term-name):
2563 Default to term-term-name. (Bug#12485)
2564
2565 2012-09-24 Fabián Ezequiel Gallina <fgallina@cuca>
2566
2567 * progmodes/python.el (python-shell-send-buffer): Better handling
2568 of "if __name__ == '__main__':" conditionals when sending the buffer.
2569
2570 2012-09-24 Glenn Morris <rgm@gnu.org>
2571
2572 * eshell/esh-cmd.el (eshell-find-alias-function):
2573 Tighten up file-name regexp. (Bug#12499)
2574
2575 2012-09-24 Fabián Ezequiel Gallina <fgallina@cuca>
2576
2577 Enhancements for triple-quote string syntax.
2578 * progmodes/python.el (python-quote-syntax): Remove.
2579 (python-syntax-propertize-function): New value.
2580 (python-syntax-count-quotes, python-syntax-stringify):
2581 New functions.
2582
2583 2012-09-24 Chong Yidong <cyd@gnu.org>
2584
2585 * mail/supercite.el (sc-version): Remove obsolete function.
2586 (sc-describe): Don't mark as obsolete, since it is bound.
2587 (sc-submit-bug-report): Remove.
2588
2589 * vc/log-edit.el (cvs-changelog-full-paragraphs)
2590 (cvs-commit-buffer-require-final-newline): Remove.
2591 (log-edit-require-final-newline)
2592 (log-edit-changelog-full-paragraphs): Default to t.
2593
2594 * vc/pcvs-defs.el (cvs-diff-buffer-name, cvs-diff-ignore-marks)
2595 * vc/vc-hooks.el (vc-ignore-vc-files, vc-master-templates)
2596 * vc/vc.el (vc-checkout-carefully): Likewise.
2597
2598 * vc/emerge.el (emerge-mode): Make it an obsolete alias.
2599 (emerge-version): Remove.
2600
2601 * progmodes/compile.el (compile-internal): Remove.
2602 (compilation-parse-errors-function): Fix typo.
2603
2604 * international/mule.el (set-char-table-default): Remove.
2605 (set-coding-priority, make-coding-system, generic-char-p)
2606 (charset-list, charset-bytes, charset-id): Use declare to mark
2607 functions as obsolete.
2608
2609 * vc/pcvs-defs.el (cvs-buffer-name-alist)
2610 (cvs-invert-ignore-marks): Remove references to obsolete vars.
2611 * vc/vc-hooks.el (vc-default-registered): Don't use
2612 vc-master-templates.
2613
2614 * font-lock.el (font-lock-reference-face):
2615 Use define-obsolete-variable-alias.
2616
2617 * generic-x.el (rul-generic-mode): Use font-lock-constant-face.
2618 * calendar/calendar.el (calendar-font-lock-keywords):
2619 * calendar/diary-lib.el (diary-font-lock-keywords)
2620 (diary-fancy-font-lock-keywords):
2621 * textmodes/reftex-sel.el (reftex-insert-docstruct):
2622 * textmodes/reftex-index.el (reftex-insert-index):
2623 * textmodes/reftex-cite.el (reftex-format-bib-entry):
2624 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
2625 * progmodes/ps-mode.el (ps-mode-font-lock-keywords-1):
2626 * progmodes/prolog.el (prolog-font-lock-keywords):
2627 * progmodes/idlwave.el (idlwave-idl-keywords):
2628 * progmodes/ada-mode.el (ada-font-lock-keywords):
2629 * net/snmp-mode.el (snmp-font-lock-keywords-3): Likewise.
2630
2631 2012-09-24 Glenn Morris <rgm@gnu.org>
2632
2633 * mail/emacsbug.el (report-emacs-bug): Include `lsb_release -d'.
2634
2635 2012-09-23 Fabián Ezequiel Gallina <fgallina@cuca>
2636
2637 * progmodes/python.el (python-indent-line): More consistent cursor
2638 movement behavior.
2639
2640 2012-09-23 Stefan Merten <smerten@oekonux.de>
2641
2642 * textmodes/rst.el: Fix compiler warning.
2643
2644 2012-09-23 Roland Winkler <winkler@gnu.org>
2645
2646 * textmodes/bibtex.el (bibtex-autokey-transcriptions):
2647 Transcribe also LaTeX hyphenation.
2648 (bibtex-reformat): Bug fix. Do not quote twice the elements of
2649 bibtex-reformat-previous-options.
2650
2651 2012-09-23 Roland Winkler <winkler@gnu.org>
2652
2653 * proced.el (proced-renice-command): New variable.
2654 (proced-marked-processes): New function.
2655 (proced-with-processes-buffer): New macro.
2656 (proced-send-signal): Use them.
2657 (proced-renice): New command bound to r.
2658
2659 2012-09-23 Roland Winkler <winkler@gnu.org>
2660
2661 * ibuf-ext.el (ibuffer-switch-to-saved-filter-groups): If list
2662 ibuffer-saved-filter-groups has one element, shortcut the call of
2663 completing-read. (Bug#12331)
2664
2665 2012-09-23 Chong Yidong <cyd@gnu.org>
2666
2667 * bindings.el (mode-line-toggle-read-only):
2668 * bs.el (bs-toggle-readonly):
2669 * buff-menu.el (Buffer-menu-toggle-read-only):
2670 * dired.el (dired-toggle-read-only):
2671 * ibuffer.el (ibuffer-do-toggle-read-only): Use read-only-mode.
2672
2673 2012-09-23 Chong Yidong <cyd@gnu.org>
2674
2675 * image.el (image-type-available-p): Adapt to init-image-library
2676 argument changes.
2677
2678 2012-09-22 Juri Linkov <juri@jurta.org>
2679
2680 * dired.el (dired-mode-map): Add [remap read-only-mode] for
2681 `dired-toggle-read-only'. (Bug#12462)
2682
2683 2012-09-22 Martin Rudalics <rudalics@gmx.at>
2684
2685 * subr.el (temp-output-buffer-show): New function.
2686 (with-output-to-temp-buffer): Call temp-output-buffer-show
2687 instead of internal-temp-output-buffer-show.
2688
2689 2012-09-22 Chong Yidong <cyd@gnu.org>
2690
2691 * files.el (ctl-x-map): Bind C-x C-q to read-only-mode
2692 (Bug#12462).
2693
2694 * repeat.el (repeat): Doc fix (Bug#12348).
2695
2696 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix
2697 (Bug#10909).
2698
2699 * simple.el (shell-command-on-region): Doc fix.
2700 (read-only-mode): Doc fix.
2701
2702 2012-09-22 Eli Zaretskii <eliz@gnu.org>
2703
2704 * emacs-lisp/timer.el (run-with-idle-timer)
2705 (timer-activate-when-idle): Warn against reinvoking an idle timer
2706 from within its own timer action. (Bug#12447)
2707
2708 2012-09-22 Martin Rudalics <rudalics@gmx.at>
2709
2710 * cus-start.el (window-combination-limit): Add new optional
2711 values.
2712 * window.el (temp-buffer-window-show)
2713 (window--try-to-split-window): Handle new values of
2714 window-combination-limit (Bug#1806).
2715 (split-window): Test window-combination-limit for t instead of
2716 non-nil.
2717 (display-buffer-at-bottom): New buffer display action function.
2718 * help.el (temp-buffer-resize-regexps): New option.
2719 (temp-buffer-resize-mode): Rewrite doc-string.
2720 (resize-temp-buffer-window): Obey temp-buffer-resize-regexps.
2721 Don't resize reused window. Suggested by Glenn Morris.
2722
2723 2012-09-22 Stefan Merten <smerten@oekonux.de>
2724
2725 * textmodes/rst.el: Revamp section title faces.
2726 (rst-official-version)
2727 (rst-package-emacs-version-alist): Sync with official version
2728 V1.4.0.
2729 (rst-faces-defaults, rst-set-level-default)
2730 (rst-level-face-max, rst-level-face-base-color)
2731 (rst-level-face-base-light, rst-level-face-format-light)
2732 (rst-level-face-step-light, rst-define-level-faces): Obsolete.
2733 (rst-adornment-faces-alist): Match new setup.
2734 (rst-level-1, rst-level-2, rst-level-3, rst-level-4)
2735 (rst-level-5, rst-level-6): New faces.
2736
2737 2012-09-22 Chong Yidong <cyd@gnu.org>
2738
2739 * simple.el (undo): Handle indirect buffers (Bug#8207).
2740
2741 2012-09-21 Leo Liu <sdl.web@gmail.com>
2742
2743 IDO: Disable match re-ordering for buffer switching.
2744 * ido.el (ido-buffer-disable-smart-matches): New variable.
2745 (ido-set-matches-1): Use it. (Bug#2042)
2746
2747 2012-09-21 Jose Marino <marinoj@nso.edu> (tiny change)
2748
2749 * progmodes/idlw-shell.el (idlwave-shell-complete-filename):
2750 Fix 2011-05-17 change. (Bug#12418)
2751
2752 2012-09-21 Leo Liu <sdl.web@gmail.com>
2753
2754 * subr.el (ignore-errors): Mention with-demoted-errors in doc-string.
2755
2756 2012-09-21 Glenn Morris <rgm@gnu.org>
2757
2758 * emacs-lisp/shadow.el (load-path-shadows-font-lock-keywords):
2759 Be more robust about locating simple.el.
2760
2761 2012-09-21 Glenn Morris <rgm@gnu.org>
2762
2763 * mail/emacsbug.el (report-emacs-bug): Trap load-path-shadows errors.
2764
2765 2012-09-21 Joel Bion <jpbion@westvi.com> (tiny change)
2766
2767 * pcmpl-gnu.el (pcmpl-gnu-tarfile-regexp): Add tar.xz. (Bug#12382)
2768
2769 2012-09-20 Juri Linkov <juri@jurta.org>
2770
2771 * replace.el (query-replace-read-from): Use `read-regexp' instead
2772 of `read-from-minibuffer' when `regexp-flag' is non-nil.
2773 (occur-read-primary-args): Use `read-regexp' instead of
2774 `read-string'.
2775 (multi-occur-in-matching-buffers): Use `read-regexp' instead of
2776 `read-from-minibuffer'.
2777 * isearch.el (isearch-occur): Use `read-regexp' instead of
2778 `read-string'.
2779 * dired.el (dired-read-regexp): Use `read-regexp' instead of
2780 `read-from-minibuffer'.
2781 * progmodes/grep.el (grep-read-regexp): Use `read-regexp' instead
2782 of `read-string'. (Bug#7567)
2783
2784 * replace.el (read-regexp): Rename DEFAULT-VALUE arg to DEFAULTS
2785 and allow accepting a list of strings prepended to a list of
2786 standard default values. Doc fix. (Bug#12321)
2787
2788 * replace.el (read-regexp): Add HISTORY arg. (Bug#7567)
2789
2790 * replace.el (read-regexp): Don't add ": " when PROMPT already
2791 ends with a colon and space. (Bug#12321)
2792
2793 2012-09-20 Tassilo Horn <tsdh@gnu.org>
2794
2795 * doc-view.el (doc-view-display): Better fix for the cl-assertion
2796 error.
2797
2798 2012-09-20 Stefan Merten <smerten@oekonux.de>
2799
2800 * textmodes/rst.el: Integrate support for `imenu' and `which-function'.
2801 Fixes feature request bug#11711.
2802 (rst-mode): Create `imenu-create-index-function'.
2803 (rst-get-stripped-line): Delete after refactoring.
2804 (rst-section-tree, rst-section-tree-rec)
2805 (rst-section-tree-point): Refactor and document properly.
2806 (rst-imenu-find-adornments-for-position)
2807 (rst-imenu-convert-cell, rst-imenu-create-index):
2808 New function.
2809
2810 2012-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
2811
2812 * emacs-lisp/macroexp.el (macroexp--obsolete-warning): New function.
2813 (macroexp--expand-all): Use it.
2814 (macroexp--funcall-and-return): Remove by folding it into its sole
2815 caller (macroexp--warn-and-return).
2816 * emacs-lisp/bytecomp.el (byte-compile-warn-obsolete):
2817 Use macroexp--obsolete-warning.
2818
2819 * calc/calc.el: Fix last change by removing the whole chunk, since it
2820 was only needed back when Calc was not bundled.
2821
2822 2012-09-20 Martin Rudalics <rudalics@gmx.at>
2823
2824 * emacs-lisp/debug.el (debug): Restore assignment to
2825 debugger-old-buffer removed on 2012-09-08.
2826
2827 2012-09-20 Juri Linkov <juri@jurta.org>
2828
2829 * dired-aux.el (dired-diff): Remove (require 'diff) since
2830 `diff-latest-backup-file' is now autoloaded.
2831
2832 2012-09-20 Chong Yidong <cyd@gnu.org>
2833
2834 * vc/diff.el (diff-latest-backup-file): Autoload.
2835
2836 2012-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
2837
2838 * calc/calc.el: Remove redundant autoload shape check.
2839 (sel-mode): Don't defvar.
2840 (calc-get-stack-element): Add `sel-mode' arg instead.
2841 (calc-top, calc-top-list): Pass it this additional argument.
2842 * calc/calc-store.el (calc-store-map):
2843 * calc/calc-map.el (calc-apply, calc-reduce, calc-map)
2844 (calc-map-equation, calc-outer-product, calc-inner-product):
2845 * calc/calc-aent.el (calc-alg-entry): Don't bind sel-mode.
2846
2847 * emacs-lisp/macroexp.el (macroexp--expand-all): Fix last change.
2848
2849 2012-09-19 Juri Linkov <juri@jurta.org>
2850
2851 * dired-aux.el (dired-diff): Add (require 'diff) because
2852 `diff-latest-backup-file' is not autoloaded.
2853 (dired-do-chxxx, dired-do-chmod): Set `no-error-if-not-filep' arg
2854 of `dired-get-filename' to t to not report error when there is
2855 no default file on the current line.
2856
2857 2012-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
2858
2859 * emacs-lisp/macroexp.el (macroexp--funcall-if-compiled): Rename from
2860 macroexp--eval-if-compile.
2861 (macroexp--funcall-and-return, macroexp--warn-and-return): New funs.
2862 (macroexp--expand-all): Use them (bug#12371).
2863
2864 * doc-view.el (doc-view-guess-paper-size)
2865 (doc-view-scale-bounding-box): Fix unbound `caddr'.
2866
2867 2012-09-19 Tassilo Horn <tsdh@gnu.org>
2868
2869 New feature: set optimal slice from BoundingBox information.
2870 * doc-view.el (doc-view-mode-map): Add keybinding.
2871 (doc-view-menu): Add menu entry.
2872 (doc-view-set-slice): Adapt docstring.
2873 (doc-view-get-bounding-box, doc-view-guess-paper-size)
2874 (doc-view-scale-bounding-box)
2875 (doc-view-set-slice-from-bounding-box): New functions.
2876 (doc-view-paper-sizes): New defvar.
2877
2878 2012-09-19 Glenn Morris <rgm@gnu.org>
2879
2880 * emacs-lisp/macroexp.el (byte-compile-warn-obsolete)
2881 (byte-compile-log-warning): Autoload. (Bug#12371)
2882
2883 * calendar/calendar.el (calendar-american-month-header)
2884 (calendar-european-month-header, calendar-iso-month-header)
2885 (calendar-month-header): New options.
2886 (calendar-set-date-style): Set calendar-month-header. Redraw calendar.
2887 (calendar-generate-month): Use calendar-month-header. (Bug#9510)
2888
2889 2012-09-19 Jan Djärv <jan.h.d@swipnet.se>
2890
2891 * startup.el (command-line-ns-option-alist): Add -g and --geometry.
2892
2893 2012-09-18 Juri Linkov <juri@jurta.org>
2894
2895 * dired-aux.el (dired-diff): Restore original functionality of
2896 getting the default value, but keep new feature of using the
2897 latest existing backup file (`diff-latest-backup-file').
2898
2899 2012-09-18 Juri Linkov <juri@jurta.org>
2900
2901 * dired.el (dired-mark): If the region is active in Transient Mark
2902 mode, mark all files in the active region. Doc fix.
2903 (dired-unmark, dired-flag-file-deletion, dired-unmark-backward):
2904 Doc fix. (Bug#10624)
2905
2906 2012-09-18 Juri Linkov <juri@jurta.org>
2907
2908 * dired-aux.el (dired-do-chxxx, dired-do-chmod): Default file
2909 attributes for M-n are pulled from the file at point.
2910 (dired-do-chgrp, dired-do-chown, dired-do-touch): Doc fix.
2911 Suggested by Drew Adams. (Bug#10624)
2912
2913 2012-09-18 Dmitry Gutov <dgutov@yandex.ru>
2914
2915 * progmodes/ruby-mode.el (ruby-brace-to-do-end): Don't add extra
2916 whitespace after "end".
2917 (ruby-do-end-to-brace): Collapse block to one line if it fits
2918 within fill-column.
2919
2920 2012-09-18 Martin Rudalics <rudalics@gmx.at>
2921
2922 * emacs-lisp/debug.el (debugger-bury-or-kill): Fix customization
2923 value.
2924 (debug): Don't remove debugger window when debugger is expected
2925 to be back.
2926
2927 2012-09-18 Chong Yidong <cyd@gnu.org>
2928
2929 * custom.el (defface): Doc fix.
2930
2931 * cus-edit.el (custom-unlispify-remove-prefixes): Add warning.
2932
2933 2012-09-18 Martin Blais <blais@furius.ca> (tiny change)
2934
2935 * progmodes/compile.el (compilation-start): Use compilation-always-kill
2936 to initialize query-on-exit; then test that instead (bug#12288).
2937
2938 2012-09-17 Stefan Merten <smerten@oekonux.de>
2939
2940 * textmodes/rst.el: Add support for `testcover'.
2941 (rst-defcustom-testcover, rst-testcover-add-compose)
2942 (rst-testcover-add-1value): New functions.
2943 (rst-portable-mark-active-p): Replace by `use-region-p'.
2944 (rst-update-section, rst-classify-adornment)
2945 (rst-find-title-line): Mark `1value' forms.
2946 (rst-classify-adornment): Remove superfluous form.
2947 (rst-update-section, rst-get-adornments-around)
2948 (rst-adornment-complete-p, rst-get-next-adornment)
2949 (rst-adjust, rst-promote-region)
2950 (rst-display-adornments-hierarchy, rst-straighten-adornments)
2951 (rst-find-pfx-in-region, rst-section-tree-rec)
2952 (rst-section-tree-point, rst-toc-insert, rst-toc-insert-node)
2953 (rst-toc-node, rst-toc, rst-forward-section)
2954 (rst-iterate-leftmost-paragraphs)
2955 (rst-iterate-leftmost-paragraphs-2, rst-enumerate-region)
2956 (rst-bullet-list-region)
2957 (rst-convert-bullets-to-enumeration, rst-font-lock-keywords)
2958 (rst-compile-find-conf, rst-compile)
2959 (rst-repeat-last-character): Fix style.
2960
2961 2012-09-17 Chong Yidong <cyd@gnu.org>
2962
2963 * comint.el (comint--complete-file-name-data): Don't add a space
2964 if the status is `sole'; that adds a gratuitous space in the
2965 completion-cycling case (Bug#12092).
2966
2967 * pcomplete.el (pcomplete-completions-at-point): Likewise.
2968
2969 2012-09-17 Richard Stallman <rms@gnu.org>
2970
2971 * mail/rmailmm.el (rmail-mime-toggle-raw): Do rmail-mime-insert
2972 only in the mime-shown mode, not in raw mode.
2973 (rmail-mime): Toggle off mime by displaying the message without
2974 mime processing. (Bug#12305)
2975
2976 * mail/rmail.el (rmail-retry-failure):
2977 Turn off mime processing first. (Bug#12037)
2978
2979 * epa-mail.el (epa-mail-encrypt): Fix bug when a name has no key.
2980
2981 2012-09-17 Chong Yidong <cyd@gnu.org>
2982
2983 * shell.el (shell-file-name-chars, shell-file-name-quote-list)
2984 (shell-dynamic-complete-functions): Convert to defcustom.
2985 (shell-prompt-pattern, shell-completion-fignore): Doc fix.
2986
2987 * bookmark.el (bookmark-bmenu-toggle-filenames): Doc fixes.
2988 * comint.el (comint-prompt-read-only):
2989 * custom.el (defcustom):
2990 * hi-lock.el (hi-lock-mode):
2991 * ibuffer.el (ibuffer-formats):
2992 * ielm.el (ielm-prompt-read-only):
2993 * novice.el (disable-command):
2994 * saveplace.el (toggle-save-place):
2995 * speedbar.el (speedbar-supported-extension-expressions):
2996 * startup.el (auto-save-list-file-prefix, init-file-user)
2997 (after-init-hook, inhibit-startup-echo-area-message):
2998 * strokes.el (strokes-help):
2999 * time-stamp.el (time-stamp):
3000 * calendar/calendar.el (calendar, diary-file):
3001 * calendar/diary-lib.el (diary-mail-entries, diary)
3002 (diary-list-entries-hook):
3003 * calendar/holidays.el (holidays, calendar-holidays):
3004 * calendar/lunar.el (lunar-phases):
3005 * calendar/solar.el (sunrise-sunset):
3006 * emulation/edt.el (edt-load-keys):
3007 * emulation/viper.el (viper-mode):
3008 * eshell/em-alias.el (eshell-command-aliases-list):
3009 * eshell/esh-util.el (eshell-convert-numeric-arguments):
3010 * international/ogonek.el (ogonek-information):
3011 * net/tramp-cmds.el (tramp-bug):
3012 * net/quickurl.el (quickurl-reread-hook-postfix):
3013 * play/decipher.el (decipher-font-lock-keywords):
3014 * progmodes/cc-styles.el (c-set-style):
3015 * progmodes/idlw-shell.el (idlwave-shell-prompt-pattern):
3016 * progmodes/inf-lisp.el (inferior-lisp-prompt):
3017 * progmodes/octave-mod.el (octave-mode):
3018 * progmodes/sql.el (sql-mode, sql-interactive-mode, sql-password):
3019 * progmodes/verilog-mode.el (verilog-read-defines):
3020 * textmodes/two-column.el (2C-mode): Likewise.
3021
3022 2012-09-16 Katsumi Yamaoka <yamaoka@jpl.org>
3023
3024 * mail/mailabbrev.el (mail-abbrev-expand-hook): Work for a mail aliasee
3025 that holds many addresses.
3026
3027 2012-09-16 Chong Yidong <cyd@gnu.org>
3028
3029 * align.el (align-areas): Call the indication function with
3030 positions instead of markers for arguments (Bug#12343).
3031
3032 * files.el (parse-colon-path): Use split-string (Bug#12351).
3033
3034 * window.el (special-display-popup-frame): Doc fix (Bug#8853).
3035 (display-buffer-function): Mark as obsolete.
3036
3037 * progmodes/compile.el (compilation-parse-errors): Accept list
3038 values similar to font-lock-keywords (Bug#12136).
3039 Suggested by Oleksandr Manzyuk.
3040 (compilation-error-regexp-alist): Doc fix.
3041
3042 2012-09-15 Glenn Morris <rgm@gnu.org>
3043
3044 * version.el (emacs-bzr-version-bzr): New function.
3045 (emacs-bzr-get-version): Add optional EXTERNAL argument.
3046
3047 * vc/vc-bzr.el (vc-bzr-working-revision): For lightweight local
3048 checkouts, check the parent dirstate matches the branch.
3049 Add "--tree" to "bzr revno" arguments. Don't try to shorten the
3050 empty string.
3051
3052 * version.el (emacs-bzr-version): Doc fix.
3053 (emacs-bzr-version-dirstate): New function.
3054 (emacs-bzr-get-version): For lightweight checkouts, if the parent
3055 is local try and check that it matches the branch. If not, just
3056 use dirstate information. (Bug#12441)
3057
3058 2012-09-14 Juri Linkov <juri@jurta.org>
3059
3060 * dired-aux.el (dired-do-chmod): Use `eq' to detect empty input.
3061 (Bug#12399)
3062
3063 2012-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
3064
3065 * emacs-lisp/advice.el (ad-prognify): Remove, use macroexp-progn.
3066
3067 * emacs-lisp/edebug.el: Miscellaneous cleanup.
3068 Remove obsolete byte-compiler hack that tried to silence some warnings.
3069 (edebug-submit-bug-report): Remove.
3070 (edebug-get-buffer-window, edebug-sit-for, edebug-input-pending-p):
3071 Remove aliases, use the un-prefixed name instead.
3072 (edebug-pop-to-buffer): Consider other frames.
3073 (edebug-original-read):: Make it more obvious that it's always defined.
3074 (edebug--make-form-data-entry, edebug--form-data-name)
3075 (edebug--form-data-begin, edebug--form-data-end): Rename from the
3076 single-dashed name, and implement with cl-defstruct.
3077 (edebug-set-form-data-entry): Use the standard accessors.
3078 (edebug-make-top-form-data-entry): Use push.
3079 (edebug-no-match): Drop useless `funcall'.
3080 (mapcar, mapconcat, mapatoms, apply, funcall): Don't add debug specs
3081 to functions.
3082 (defsubst, dont-compile, eval-when-compile, eval-and-compile)
3083 (delay-mode-hooks, with-temp-file, with-temp-message, ad-dolist)
3084 (with-syntax-table, push, pop, 1value, noreturn, defadvice)
3085 (easy-menu-define, with-custom-print): Remove redundant specs.
3086 (edebug-outside-overriding-local-map)
3087 (edebug-outside-overriding-terminal-local-map): Remove, unused.
3088 (edebug--display): Bind unread-command-events directly to nil rather
3089 than binding it to unread-command-events and later setting it to nil.
3090 (edebug--display): Kill edebug-eval-buffer here...
3091 (edebug--recursive-edit): ...rather than here.
3092 Bind standard-output and standard-input.
3093 (edebug-eval): Check cl-macroexpand-all is fboundp.
3094 (edebug-temp-display-freq-count): Fix last change.
3095
3096 * emacs-lisp/easymenu.el (easy-menu-define): Add `debug' spec.
3097 * subr.el (noreturn, 1value): Add `debug' spec.
3098 * emacs-lisp/advice.el: Require cl-lib.
3099 (ad-copy-tree): Remove, use copy-tree instead.
3100 (ad-dolist): Remove use dolist or cl-dolist instead.
3101 (ad-do-return): Remove, use cl-return instead.
3102 (defadvice): Add `debug' spec.
3103
3104 2012-09-13 Juri Linkov <juri@jurta.org>
3105
3106 * dired-aux.el (dired-do-chxxx): Use `eq' to detect empty input.
3107 (Bug#12399)
3108
3109 2012-09-13 Glenn Morris <rgm@gnu.org>
3110
3111 * calc/calc.el (math-compose-expr):
3112 * calc/calc-ext.el (math-compose-expr):
3113 * progmodes/cc-defs.el (cl-macroexpand-all):
3114 * progmodes/cc-langs.el (delete-duplicates, mapcan)
3115 (cl-macroexpand-all): Update declarations.
3116
3117 * vc/vc.el: No need to require ediff.
3118 (ediff-load-version-control): Declare.
3119 (ediff-vc-internal): Fix declaration.
3120 (vc-version-ediff): Require ediff.
3121
3122 2012-09-13 Paul Eggert <eggert@cs.ucla.edu>
3123
3124 Use a more backwards-compatible timer format (Bug#12430).
3125 * emacs-lisp/timer.el (timer): PSECS is now at the end, rather than
3126 being right after USECS, as that better supports old code that
3127 inadvisedly looked directly at the timer vector.
3128
3129 2012-09-13 Kenichi Handa <handa@gnu.org>
3130
3131 * language/chinese.el ("Chinese-GB", "Chinese-BIG5")
3132 ("Chinese-CNS", "Chinese-EUC-TW"): Add chinese-gbk to
3133 `coding-priority' property of these language environment.
3134
3135 2012-09-13 Paul Eggert <eggert@cs.ucla.edu>
3136
3137 Fix glitches caused by addition of psec to timers (Bug#12430).
3138 * image.el (image-animate-timer):
3139 * time.el (display-time-world-timer):
3140 Use timer--function and timer--args rather than raw access to
3141 timer vector.
3142
3143 2012-09-13 Glenn Morris <rgm@gnu.org>
3144
3145 * emacs-lisp/bytecomp.el (byte-compile-warning-prefix):
3146 If not compiling a file, try using load-file-name.
3147
3148 2012-09-13 Stefan Monnier <monnier@iro.umontreal.ca>
3149
3150 * emacs-lisp/edebug.el (edebug-outside-unread-command-events):
3151 Fix last change.
3152 (edebug-update-eval-list): Use `push'.
3153
3154 * emacs-lisp/edebug.el: Use lexical-binding.
3155 Remove the "edebug-" prefix from non-dynamically-scoped variables.
3156 Mark unused args with underscore.
3157 (edebug-save-restriction, edebug-outside-excursion): Use `declare'.
3158 (edebug-form-data): Use defvar-local.
3159 (edebug-make-before-and-after-form, edebug-make-after-form):
3160 Use backquote.
3161 (edebug-args, edebug-value, edebug-after-index, edebug-arg-mode):
3162 Not dynamically scoped any more.
3163 (edebug--enter-trace): Add arguments `function' and `args'.
3164 Rename from edebug-enter-trace.
3165 (edebug-enter): Call it accordingly. Bind edebug-function explicitly.
3166 (edebug--update-coverage): Add `after-index' and `value' args.
3167 Rename from edebug-update-coverage.
3168 (edebug-slow-after): Call it accordingly.
3169 (edebug--recursive-edit): Add arg `arg-mode'. Rename from
3170 edebug-recursive-edit.
3171 (edebug--display): Call it accordingly. Add args `value',
3172 `offset-index', and `arg-mode'. Rename from edebug-display.
3173 (edebug-debugger, edebug): Call it accordingly.
3174 (edebug-eval-display-list): Use dolist.
3175
3176 2012-09-12 Juri Linkov <juri@jurta.org>
3177
3178 * info.el (Info-search): Don't check for isearch-mode and
3179 isearch-regexp before let-binding search-spaces-regexp to
3180 Info-search-whitespace-regexp.
3181 (Info-isearch-search): Let-bind Info-search-whitespace-regexp to
3182 search-whitespace-regexp if isearch-lax-whitespace or
3183 isearch-regexp-lax-whitespace is non-nil.
3184 (Info-mode): Don't set local variable search-whitespace-regexp.
3185 http://lists.gnu.org/archive/html/emacs-devel/2012-08/msg00811.html
3186
3187 2012-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
3188
3189 * emacs-lisp/debug.el (debugger-outer-unread-command-char, debug)
3190 (debugger-env-macro): Remove support for unread-command-char.
3191
3192 * subr.el (set-temporary-overlay-map): Minimize slightly the impact of
3193 the temporary map re-appearing on emulation-mode-map-alists.
3194
3195 * emacs-lisp/edebug.el (def-edebug-form-spec): Remove, it's been broken
3196 since 22.1.
3197
3198 * ehelp.el (with-electric-help): Accept functions in
3199 electric-help-form-to-execute.
3200 (electric-help-execute-extended, electric-help-ctrl-x-prefix): Use it.
3201 And replace unread-command-char -> unread-command-events.
3202
3203 2012-09-12 Michael Albinus <michael.albinus@gmx.de>
3204
3205 Sync with Tramp 2.2.6.
3206
3207 * net/tramp.el (tramp-accept-process-output): Don't use
3208 JUST-THIS-ONE in the XEmacs case.
3209
3210 * net/trampver.el: Update release number.
3211
3212 2012-09-12 Martin Rudalics <rudalics@gmx.at>
3213
3214 * emacs-lisp/debug.el (debugger-previous-window-height):
3215 New variable.
3216 (debug): When debugger-jumping-flag is non-nil try to restore
3217 height of debugger window. (Bug#8789)
3218
3219 2012-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
3220
3221 * emacs-lisp/edebug.el (edebug-enter): Don't mess with
3222 overriding-local-map and pre/post-command-hook here.
3223 (edebug-recursive-edit): Do it here instead (bug#12345).
3224 (edebug-outside-unread-command-char): Remove all uses of
3225 unread-command-char.
3226
3227 * emacs-lisp/debug.el (debug): Don't bind debug-on-error since
3228 inhibit-debugger is bound instead.
3229
3230 2012-09-11 Bastien Guerry <bzg@gnu.org>
3231
3232 * subr.el (set-temporary-overlay-map): Add a docstring.
3233 (Bug#12346)
3234
3235 2012-09-11 Bastien Guerry <bzg@gnu.org>
3236
3237 * minibuffer.el (completion-table-subvert): Fix docstring.
3238 (Bug#12347)
3239
3240 2012-09-11 Bastien Guerry <bzg@gnu.org>
3241
3242 * help-fns.el (describe-variable): Fix typo. (Bug#12346)
3243
3244 2012-09-10 Michael R. Mauger <mmaug@yahoo.com>
3245
3246 * progmodes/sql.el: Version 3.1
3247 (sql-db2-escape-newlines): New variable.
3248 (sql-escape-newlines-filter): Use it.
3249
3250 2012-09-10 Juanma Barranquero <lekktu@gmail.com>
3251
3252 * custom.el (custom-theme-load-confirm): Remove unneeded assignment.
3253
3254 2012-09-10 Dan Nicolaescu <dann@gnu.org>
3255
3256 * vc/diff-mode.el (diff-mode-menu):
3257 Bind diff-remove-trailing-whitespace.
3258
3259 2012-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
3260
3261 * emacs-lisp/lisp-mode.el (emacs-list-byte-code-comment-re): New var.
3262 (emacs-lisp-byte-code-comment, emacs-lisp-byte-code-syntax-propertize)
3263 (emacs-lisp-byte-code-mode): New functions.
3264 (eval-sexp-add-defvars): Don't skip defvars in column >0.
3265 (eval-defun-2): Remove bogus interactive spec.
3266 (lisp-indent-line): Remove redundant whole-exp code, now done in
3267 indent-according-to-mode.
3268 (save-match-data): Remove redundant indent data.
3269
3270 * emacs-lisp/benchmark.el (benchmark-run, benchmark-run-compiled):
3271 Use `declare'.
3272
3273 2012-09-09 Juri Linkov <juri@jurta.org>
3274
3275 * replace.el (replace-regexp-lax-whitespace): New defcustom.
3276 (replace-lax-whitespace, query-replace-regexp)
3277 (query-replace-regexp-eval, replace-regexp): Doc fix.
3278 (perform-replace, replace-highlight): Let-bind
3279 isearch-lax-whitespace to replace-lax-whitespace and
3280 isearch-regexp-lax-whitespace to replace-regexp-lax-whitespace.
3281
3282 * isearch.el (isearch-query-replace): Let-bind
3283 replace-lax-whitespace to isearch-lax-whitespace and
3284 replace-regexp-lax-whitespace to
3285 isearch-regexp-lax-whitespace. (Bug#10885)
3286
3287 2012-09-09 Stefan Monnier <monnier@iro.umontreal.ca>
3288
3289 * eshell/em-unix.el (eshell/sudo): Explicitly drop return value.
3290
3291 2012-09-09 Alan Mackenzie <acm@muc.de>
3292
3293 * progmodes/cc-engine.el (c-state-cache-init):
3294 Initialise c-state-semi-nonlit-pos-cache\(-limit\)? properly.
3295 (c-record-parse-state-state):
3296 Record c-state-semi-nonlit-pos-cache\(-limit\)?.
3297
3298 2012-09-09 Andreas Schwab <schwab@linux-m68k.org>
3299
3300 * register.el (register-separator): Rename from
3301 separator-register. All uses changed. Doc fix.
3302 (register): Fix version.
3303
3304 2012-09-09 Chong Yidong <cyd@gnu.org>
3305
3306 * replace.el (query-replace-map): Bind four new symbols for
3307 requesting window scrolling.
3308
3309 * subr.el (y-or-n-p): Handle the window-scrolling bindings in
3310 query-replace-map (Bug#8948).
3311
3312 * custom.el (custom-theme-load-confirm): Use y-or-n-p.
3313
3314 * emacs-lisp/map-ynp.el (map-y-or-n-p): Don't bind scrolling keys
3315 since they are now in query-replace-map.
3316
3317 * window.el (scroll-other-window-down): Make the arg optional.
3318
3319 2012-09-09 Chong Yidong <cyd@gnu.org>
3320
3321 * files.el (hack-local-variables-confirm): Use quit-window to kill
3322 the *Local Variables* buffer.
3323
3324 2012-09-08 Dmitry Gutov <dgutov@yandex.ru>
3325
3326 * progmodes/ruby-mode.el (ruby-toggle-block): Guess the current block,
3327 not just expect to be at its beginning. Adjust callees.
3328 Succeed when do-end block has no space before the pipe character.
3329 (ruby-brace-to-do-end): When the original block is one-liner,
3330 convert to multiline. Reindent the result.
3331
3332 2012-09-08 Jambunathan K <kjambunathan@gmail.com>
3333
3334 * register.el (register): New group.
3335 (separator-register): New user option.
3336 (increment-register): Route it to `append-to-register', if
3337 register contains text. Implication is that `C-x r +' can now be
3338 used for appending to a text register (bug#12217).
3339 (append-to-register, prepend-to-register): Add separator based on
3340 `separator-register'.
3341
3342 2012-09-08 Alan Mackenzie <acm@muc.de>
3343
3344 AWK Mode: make auto-newline work when there's "==" in the pattern.
3345 * progmodes/cc-cmds.el (c-point-syntax): Handle virtual semicolons
3346 correctly.
3347 * progmodes/cc-engine.el (c-guess-basic-syntax CASE 5A.3):
3348 Test more rigorously for "=" token.
3349
3350 2012-09-08 Dmitry Gutov <dgutov@yandex.ru>
3351
3352 * progmodes/ruby-mode.el (ruby-match-expression-expansion):
3353 Only fail when reached LIMIT.
3354
3355 2012-09-08 Chong Yidong <cyd@gnu.org>
3356
3357 * dired.el (dired-mode-map): Don't bind M-=.
3358
3359 * dired-aux.el (dired-diff): Use backup file as default.
3360
3361 2012-09-08 Drew Adams <drew.adams@oracle.com>
3362
3363 * subr.el (add-to-history): Fix delete usage (Bug#12314).
3364
3365 2012-09-08 Chong Yidong <cyd@gnu.org>
3366
3367 * subr.el (syntax-after, syntax-class): Doc fix.
3368
3369 2012-09-08 Martin Rudalics <rudalics@gmx.at>
3370
3371 * window.el (display-buffer-in-previous-window): New buffer
3372 display action function.
3373
3374 * emacs-lisp/debug.el (debugger-bury-or-kill): New option.
3375 (debugger-previous-window): New variable.
3376 (debug): Rewrite using display-buffer-in-previous-window,
3377 quit-restore-window and debugger-bury-or-kill. (Bug#8789)
3378
3379 2012-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
3380
3381 * emacs-lisp/byte-run.el (defun): Tweak message. Simplify code.
3382
3383 2012-09-07 Matt McClure <mlm@aya.yale.edu> (tiny change)
3384
3385 * progmodes/python.el (python-shell-send-string):
3386 When default-directory is remote, create temp file on remote
3387 filesystem.
3388 (python-shell-send-file): When file is remote, pass local view of
3389 file paths to remote Python interpreter. (Bug#12340)
3390
3391 2012-09-07 Chong Yidong <cyd@gnu.org>
3392
3393 * window.el (switch-to-buffer): Doc fix (Bug#12181).
3394
3395 * files.el (after-find-file): Don't fail on a read-only buffer if
3396 require-final-newline is `visit' or `visit-save' (Bug#11156).
3397
3398 * subr.el (read-char-choice): Allow quitting via ESC ESC.
3399
3400 * userlock.el (ask-user-about-supersession-threat):
3401 Use read-char-choice (Bug#12093).
3402
3403 2012-09-07 Chong Yidong <cyd@gnu.org>
3404
3405 * subr.el (buffer-narrowed-p): New function.
3406
3407 * ses.el (ses-widen):
3408 * simple.el (count-words--buffer-message):
3409 * net/browse-url.el (browse-url-of-buffer): Use it.
3410
3411 * simple.el (count-words-region): Don't signal an error if there
3412 is a non-nil prefix arg and the mark is not set.
3413
3414 * help.el (describe-key-briefly): Allow the message to be seen
3415 when invoked from the minibuffer (Bug#7014).
3416
3417 2012-09-07 Dmitry Gutov <dgutov@yandex.ru>
3418
3419 * progmodes/ruby-mode.el (ruby-end-of-defun)
3420 (ruby-beginning-of-defun): Simplify, allow indentation before
3421 block beginning and end keywords.
3422 (ruby-beginning-of-defun): Only consider 3 keywords defun beginners.
3423 (ruby-end-of-defun): Expect that the point is at the beginning of
3424 the defun.
3425
3426 2012-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
3427
3428 * emacs-lisp/cl-macs.el (cl--do-arglist): Understand _ on &key args
3429 (bug#12367).
3430 (cl--make-usage-args): Strip _ from argument names.
3431
3432 2012-09-06 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
3433
3434 * progmodes/vhdl-mode.el (vhdl-speedbar-initialize): Don't use
3435 obsolete alias speedbar-key-map.
3436 (vhdl-doc-variable, vhdl-doc-mode): Use called-interactively-p.
3437 (vhdl-index-menu-init): Don't use obsolete variable
3438 font-lock-maximum-size.
3439
3440 2012-09-06 Chong Yidong <cyd@gnu.org>
3441
3442 * frame.el (window-system-version): Mark as obsolete.
3443
3444 * speedbar.el (speedbar-update-flag, speedbar-mode): Remove uses
3445 of obsolete variable speedbar-key-map.
3446
3447 2012-09-06 Juri Linkov <juri@jurta.org>
3448
3449 * replace.el (replace-lax-whitespace): New defcustom.
3450 (query-replace, query-replace-regexp, query-replace-regexp-eval)
3451 (replace-string, replace-regexp): Mention it in docstrings.
3452 (perform-replace, replace-highlight): Let-bind
3453 isearch-lax-whitespace and isearch-regexp-lax-whitespace according
3454 to the values of replace-lax-whitespace and regexp-flag.
3455 Don't let-bind search-whitespace-regexp. (Bug#10885)
3456
3457 * isearch.el (isearch-query-replace): Let-bind
3458 replace-lax-whitespace instead of let-binding
3459 replace-search-function and replace-re-search-function.
3460 (isearch-lazy-highlight-search): Let-bind isearch-lax-whitespace
3461 and isearch-regexp-lax-whitespace to lazy-highlight variables.
3462 (isearch-toggle-symbol): Set isearch-regexp to nil
3463 in isearch-word mode (like in isearch-toggle-word).
3464
3465 2012-09-06 Juri Linkov <juri@jurta.org>
3466
3467 * replace.el (replace-search-function)
3468 (replace-re-search-function): Set default values to nil.
3469 (perform-replace): Let-bind isearch-related variables based on
3470 replace-related values, call `isearch-search-fun' and let-bind
3471 the result to `search-function'. Remove code that sets
3472 `search-function' and `search-string' separately for
3473 `delimited-flag'.
3474 (replace-highlight): Add new argument `delimited-flag' and
3475 rename other arguments to the names used in `perform-replace'.
3476 Let-bind `isearch-word' to the argument `delimited-flag'.
3477 (Bug#10885, bug#10887)
3478
3479 2012-09-07 Dmitry Gutov <dgutov@yandex.ru>
3480
3481 * progmodes/ruby-mode.el (ruby-indent-beg-re): Add pieces from
3482 ruby-beginning-of-indent, simplify, allow all keywords to have
3483 indentation before them.
3484 (ruby-beginning-of-indent): Adjust for above. Search until the
3485 found point is not inside a string or comment.
3486 (ruby-font-lock-keywords): Allow symbols to start with "@"
3487 character, give them higher priority than variables.
3488 (ruby-syntax-propertize-function)
3489 (ruby-font-lock-syntactic-keywords): Remove the "not comments"
3490 matchers. Expression expansions are not comments when inside a
3491 string, and there comment syntax status is irrelevant.
3492 (ruby-match-expression-expansion): New function. Check that
3493 expression expansion is inside a string, and it's not escaped.
3494 (ruby-font-lock-keywords): Use it.
3495
3496 2012-09-05 Martin Rudalics <rudalics@gmx.at>
3497
3498 * help.el (temp-buffer-max-height): New default value.
3499 (temp-buffer-resize-frames): New option.
3500 (resize-temp-buffer-window): Optionally resize frame.
3501
3502 * window.el (fit-frame-to-buffer-bottom-margin): New option.
3503 (fit-frame-to-buffer): New function.
3504
3505 2012-09-05 Glenn Morris <rgm@gnu.org>
3506
3507 * emulation/cua-rect.el (cua--init-rectangles):
3508 * textmodes/picture.el (picture-mode-map):
3509 * play/blackbox.el (blackbox-mode-map): Remap right-char and left-char
3510 like forward-char and backward-char. (Bug#12317)
3511
3512 2012-09-05 Leo Liu <sdl.web@gmail.com>
3513
3514 * progmodes/flymake.el (flymake-warning-re): New variable.
3515 (flymake-parse-line): Use it.
3516
3517 2012-09-05 Glenn Morris <rgm@gnu.org>
3518
3519 * calendar/holidays.el (holiday-christian-holidays):
3520 Rename an entry. (Bug#12289)
3521
3522 2012-09-05 Stefan Monnier <monnier@iro.umontreal.ca>
3523
3524 * progmodes/sh-script.el (sh-font-lock-paren): Don't burp at BOB
3525 (bug#12222).
3526
3527 2012-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
3528
3529 * loadup.el: Load macroexp. Remove hack.
3530 * emacs-lisp/macroexp.el (macroexp--eval-if-compile): New function.
3531 (macroexp--expand-all): Use it to get better warnings.
3532 (macroexp--backtrace, macroexp--trim-backtrace-frame)
3533 (internal-macroexpand-for-load): New functions.
3534 (macroexp--pending-eager-loads): New var.
3535 (emacs-startup-hook): New hack to replace one in loadup.el.
3536 * emacs-lisp/cl-macs.el (cl--compiler-macro-list*)
3537 (cl--compiler-macro-cXXr): Move to top, before they can be used.
3538 (cl-psetf): Simplify.
3539 (cl-defstruct): Add indent rule.
3540
3541 2012-09-04 Lars Ingebrigtsen <larsi@gnus.org>
3542
3543 * mail/smtpmail.el (smtpmail-send-it): Prefer the From: header
3544 over `user-mail-address' for the SMTP MAIL FROM envelope.
3545 (smtpmail-via-smtp): Ditto.
3546
3547 2012-09-04 Dmitry Gutov <dgutov@yandex.ru>
3548
3549 * progmodes/ruby-mode.el: Clean up keybindings.
3550 (ruby-mode-map): Don't bind ruby-electric-brace,
3551 ruby-beginning-of-defun, ruby-end-of-defun, ruby-mark-defun,
3552 backward-kill-word, reindent-then-newline-and-indent.
3553 (ruby-mark-defun): Remove.
3554 (ruby-electric-brace): Remove. Obsoleted by electric-indent-chars.
3555 (ruby-mode): Set local beginning-of-defun-function and
3556 end-of-defun-function values.
3557
3558 2012-09-03 Martin Rudalics <rudalics@gmx.at>
3559
3560 * window.el (temp-buffer-window-setup-hook)
3561 (temp-buffer-window-show-hook): New hooks.
3562 (temp-buffer-window-setup, temp-buffer-window-show)
3563 (with-temp-buffer-window): New functions.
3564 (fit-window-to-buffer): Remove unused optional argument OVERRIDE.
3565 (special-display-popup-frame): Make sure the window used shows BUFFER.
3566
3567 * help.el (temp-buffer-resize-mode): Fix doc-string.
3568 (resize-temp-buffer-window): New optional argument WINDOW.
3569
3570 * files.el (recover-file, save-buffers-kill-emacs):
3571 * dired.el (dired-mark-pop-up): Use with-temp-buffer-window.
3572
3573 2012-09-02 Michael Albinus <michael.albinus@gmx.de>
3574
3575 * eshell/em-unix.el (eshell/sudo): When we have an ad-hoc
3576 remote definition of `default-directory', ensure we can connect.
3577
3578 2012-09-02 Juri Linkov <juri@jurta.org>
3579
3580 Toggle whitespace matching mode with M-s SPC.
3581 http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00008.html
3582
3583 * isearch.el (search-whitespace-regexp): Doc fix.
3584 Remove cons cell customization.
3585 (isearch-mode-map): Bind "\M-s " to isearch-toggle-lax-whitespace.
3586 (isearch-lax-whitespace, isearch-regexp-lax-whitespace):
3587 New variables.
3588 (isearch-forward, isearch-forward-regexp): Doc fix.
3589 (isearch-toggle-lax-whitespace): New command.
3590 (search-forward-lax-whitespace, search-backward-lax-whitespace)
3591 (re-search-forward-lax-whitespace)
3592 (re-search-backward-lax-whitespace): New functions.
3593 (isearch-whitespace-regexp): Remove function.
3594 (isearch-query-replace): Let-bind replace-search-function and
3595 replace-re-search-function.
3596 (isearch-occur): Let-bind search-spaces-regexp according to the
3597 value of isearch-lax-whitespace and isearch-regexp-lax-whitespace.
3598 (isearch-quote-char): Check isearch-regexp-lax-whitespace in the
3599 condition for C-q SPC.
3600 (isearch-search-fun-default): Use new functions mentioned above.
3601 (isearch-search-forward, isearch-search-backward): Remove functions.
3602 (isearch-search): Don't let-bind search-spaces-regexp.
3603 (isearch-lazy-highlight-space-regexp): Remove variable.
3604 (isearch-lazy-highlight-lax-whitespace)
3605 (isearch-lazy-highlight-regexp-lax-whitespace): New variables.
3606 (isearch-lazy-highlight-new-loop): Use them.
3607 (isearch-lazy-highlight-search): Don't let-bind search-spaces-regexp.
3608
3609 2012-09-02 Chong Yidong <cyd@gnu.org>
3610
3611 * dired.el (dired-mode-map): Menu string fixes (Bug#11616).
3612
3613 2012-09-02 Glenn Morris <rgm@gnu.org>
3614
3615 * simple.el (undo): Tweak message in undo-only case. (Bug#12283)
3616
3617 2012-09-01 Glenn Morris <rgm@gnu.org>
3618
3619 * term.el: Tidy up menu definitions.
3620 (term-mode-map): Use easymenu for In/Out, Complete menus.
3621 (term-pager-break-map): Initialize in the defvar.
3622 (term-terminal-menu, term-signals-menu): Define with easymenu.
3623 (term-terminal-menu): Also show it in line-mode. (Bug#11957)
3624 (term-pager-menu): New, extracted from term-process-pager.
3625 (term-mode, term-char-mode, term-process-pager): Use easymenu-add.
3626 (term-update-mode-line): Propertize line/char and page items.
3627 (term-process-pager): Move keymap initialization elsewhere.
3628
3629 2012-09-01 Martin Rudalics <rudalics@gmx.at>
3630
3631 * window.el (switch-to-prev-buffer): Handle additional values of
3632 BURY-OR-KILL argument. Don't switch in minibuffer window.
3633 (switch-to-next-buffer): Don't switch in minibuffer window.
3634 (quit-restore-window): New function based on quit-window.
3635 Handle additional values of former KILL argument.
3636 (quit-window): Call quit-restore-window with appropriate
3637 interpretation of KILL argument.
3638 (display-buffer-below-selected): New buffer display action
3639 function.
3640
3641 2012-09-01 Stefan Monnier <monnier@iro.umontreal.ca>
3642
3643 * minibuffer.el (completion-at-point-functions): Complete docstring
3644 (bug#12254).
3645
3646 2012-09-01 Paul Eggert <eggert@cs.ucla.edu>
3647
3648 Better seed support for (random).
3649 * play/5x5.el, play/animate.el, play/cookie1.el, play/dissociate.el:
3650 * play/doctor.el, play/dunnet.el, play/gomoku.el, play/landmark.el:
3651 * play/mpuz.el, play/tetris.el, play/zone.el:
3652 * calc/calc-comb.el (math-init-random-base):
3653 * play/blackbox.el (bb-init-board):
3654 * play/life.el (life):
3655 * server.el (server-use-tcp):
3656 * type-break.el (type-break):
3657 Remove unnecessary call to (random t).
3658 * net/sasl.el (sasl-unique-id-function):
3659 Change (random t) to (random), now that the latter is more random.
3660 * play/life.el (life-initialized): Remove no-longer-needed var.
3661
3662 2012-08-31 Alp Aker <alp.tekin.aker@gmail.com>
3663
3664 * window.el (switch-to-prev-buffer, switch-to-next-buffer):
3665 Consider frame's buffer predicate when choosing the buffer.
3666 (Bug#12081)
3667
3668 2012-08-30 Richard Stallman <rms@gnu.org>
3669
3670 * simple.el (special-mode-map): Delete binding for `z'.
3671
3672 2012-08-30 Andreas Schwab <schwab@linux-m68k.org>
3673
3674 * progmodes/compile.el (compilation-always-kill): Doc fix.
3675
3676 2012-08-30 Chong Yidong <cyd@gnu.org>
3677
3678 * window.el (display-buffer-reuse-frames): Make the obsolescence
3679 message more informative.
3680
3681 2012-08-30 Glenn Morris <rgm@gnu.org>
3682
3683 * paren.el (show-paren-delay):
3684 Add a :set function. Doc fix. (Bug#12297)
3685
3686 2012-08-29 Martin Blais <blais@furius.ca> (tiny change)
3687
3688 * progmodes/compile.el (compilation-always-kill): New var.
3689 (compilation-start): Use it.
3690
3691 2012-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
3692
3693 * simple.el (read-only-mode): Move from files.el for bootstrapping.
3694 * files.el (read-only-mode): Move to simple.el.
3695
3696 * files.el (read-only-mode): New minor mode.
3697 (toggle-read-only): Use it and mark obsolete.
3698 (find-file--read-only):
3699 * vc/vc.el (vc-next-action, vc-checkout):
3700 * vc/vc-cvs.el (vc-cvs-checkout):
3701 * obsolete/vc-mcvs.el (vc-mcvs-update):
3702 * ffap.el (ffap--toggle-read-only): Update callers.
3703
3704 2012-08-29 Michael Albinus <michael.albinus@gmx.de>
3705
3706 * eshell/esh-ext.el (eshell-external-command): Do not examine
3707 remote shell scripts.
3708 See <https://bugs.launchpad.net/ubuntu/+source/emacs23/+bug/1035790>.
3709
3710 * net/tramp-sh.el (tramp-remote-path): Add "/sbin" and
3711 "/usr/local/sbin".
3712
3713 2012-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
3714
3715 * emacs-lisp/cl-lib.el (buffer-string): Fix setter macro (bug#12293).
3716
3717 2012-08-28 Leo Liu <sdl.web@gmail.com>
3718
3719 * progmodes/sh-script.el (sh-dynamic-complete-functions): Adapt to
3720 completion-at-point. (Bug#12220)
3721
3722 * skeleton.el (skeleton-untabify): Change to nil (bug#12223).
3723
3724 * progmodes/sh-script.el (sh-indent-comment): Change to t (bug#12267).
3725
3726 2012-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
3727
3728 * files.el (safe-local-eval-forms): Fix before-save-hook entry to
3729 be buffer-local; add delete-trailing-whitespace (bug#12259).
3730
3731 2012-08-28 Jeremy Moore <jmoore@ieee.org> (tiny change)
3732
3733 * progmodes/hideif.el (hif-compress-define-list):
3734 Fix typo. (Bug#11951)
3735
3736 2012-08-28 Dan Nicolaescu <dann@gnu.org>
3737
3738 * progmodes/hideshow.el (hs-block-end-regexp): Restore lost
3739 buffer local setting.
3740
3741 * net/rcirc.el (rcirc-split-message): Fix for buffer-local
3742 rcirc-encode-coding-system.
3743
3744 2012-08-28 Leo Liu <sdl.web@gmail.com>
3745
3746 * net/rcirc.el (rcirc-split-message): New function.
3747 (rcirc-send-message): Use it. (Bug#12051)
3748
3749 2012-08-28 Juri Linkov <juri@jurta.org>
3750
3751 * info.el (Info-fontify-node): Hide empty lines at the end of
3752 the node. (Bug#12272)
3753
3754 2012-08-27 Drew Adams <drew.adams@oracle.com>
3755
3756 * dired.el (dired-pop-to-buffer): Make window start at beginning
3757 of buffer (Bug#12281).
3758
3759 2012-08-26 Chong Yidong <cyd@gnu.org>
3760
3761 * window.el (special-display-regexps, special-display-frame-alist)
3762 (special-display-buffer-names, special-display-function)
3763 (display-buffer-reuse-frames): Mark as obsolete.
3764
3765 * progmodes/compile.el: Don't use display-buffer-reuse-frames.
3766
3767 * help.el (help-print-return-message): Don't treat
3768 display-buffer-reuse-frames specially.
3769
3770 2012-08-26 Chong Yidong <cyd@gnu.org>
3771
3772 * progmodes/gdb-mi.el (gdb-display-buffer-other-frame-action):
3773 New variable, replacing gdb-frame-parameters.
3774 (gdb-frame-io-buffer, gdb-frame-breakpoints-buffer)
3775 (gdb-frame-threads-buffer, gdb-frame-memory-buffer)
3776 (gdb-frame-disassembly-buffer, gdb-frame-stack-buffer)
3777 (gdb-frame-locals-buffer, gdb-frame-registers-buffer): Use it.
3778 (def-gdb-frame-for-buffer): Macro deleted. It is easier to define
3779 the functions directly with gdb-display-buffer-other-frame-action.
3780 (gdb-display-breakpoints-buffer, gdb-display-threads-buffer)
3781 (gdb-display-memory-buffer, gdb-display-disassembly-buffer)
3782 (gdb-display-stack-buffer, gdb-display-locals-buffer)
3783 (gdb-display-registers-buffer): Define directly.
3784 (def-gdb-display-buffer): Macro deleted.
3785 (gdb-display-buffer): Remove second and third args, callers don't
3786 use them. Defer to the default display-buffer behavior, apart
3787 from making windows dedicated.
3788 (gdb-setup-windows): Don't call display-buffer unnecessarily.
3789
3790 * progmodes/gud.el (gud-display-line): Just use display-buffer.
3791
3792 * window.el (display-buffer-pop-up-frame): Handle a
3793 pop-up-frame-parameters alist entry.
3794 (display-buffer): Document it.
3795
3796 2012-08-26 Chong Yidong <cyd@gnu.org>
3797
3798 * isearch.el (search-whitespace-regexp): Make string and nil
3799 values apply to both ordinary and regexp search. Allow a cons
3800 cell value to distinguish between the two.
3801 (isearch-whitespace-regexp, isearch-search-forward)
3802 (isearch-search-backward): New functions.
3803 (isearch-occur, isearch-search-fun-default, isearch-search)
3804 (isearch-lazy-highlight-new-loop): Use them.
3805 (isearch-forward, isearch-forward-regexp): Doc fix.
3806
3807 2012-08-26 Chong Yidong <cyd@gnu.org>
3808
3809 * faces.el (help-argument-name): Always inherit from italic
3810 (Bug#12213).
3811
3812 2012-08-25 Martin Rudalics <rudalics@gmx.at>
3813
3814 * window.el (window--even-window-heights): Even heights when
3815 WINDOW and the selected window form a vertical combination.
3816 (display-buffer-use-some-window): Provide that window used gets
3817 sized back by quit-window. (Bug#11880) and (Bug#12091)
3818
3819 2012-08-24 Paul Eggert <eggert@cs.ucla.edu>
3820
3821 Fix file time stamp problem with bzr and CVS (Bug#12001).
3822 * vc/vc-cvs.el (vc-cvs-parse-entry): Ignore subsecond information
3823 in the file's time stamp, since the version control system loses
3824 that information.
3825
3826 2012-08-22 Juri Linkov <juri@jurta.org>
3827
3828 * info.el (Info-fontify-node): Hide the suffix of the
3829 Info file name in the header line. (Bug#12187)
3830
3831 2012-08-22 Glenn Morris <rgm@gnu.org>
3832
3833 * calendar/cal-tex.el (cal-tex-weekly-common):
3834 Restore leading blank page.
3835
3836 2012-08-22 Le Wang <l26wang@gmail.com>
3837
3838 * misc.el (forward-to-word, backward-to-word): Activate or extend
3839 the region under `shift-select-mode'. (Bug#12231)
3840
3841 2012-08-22 Bastien Guerry <bzg@gnu.org>
3842
3843 * progmodes/executable.el (executable-prefix): Set to "#!" instead
3844 of "#! ". http://www.in-ulm.de/~mascheck/various/shebang/#details
3845 gives details on why the space is never needed.
3846
3847 2012-08-22 Martin Rudalics <rudalics@gmx.at>
3848
3849 * window.el (walk-window-tree, window-with-parameter):
3850 New optional argument MINIBUF to control whether these functions
3851 should run on the minibuffer window.
3852 (window-at-side-list): Don't operate on minibuffer window.
3853 (window-in-direction): Simplify and rewrite doc-string.
3854 (window--size-ignore): Rename to window--size-ignore-p.
3855 Update callers.
3856 (display-buffer-in-atom-window, window--major-non-side-window)
3857 (window--major-side-window, display-buffer-in-major-side-window)
3858 (delete-side-window, display-buffer-in-side-window):
3859 New functions.
3860 (window--side-check, window-deletable-p, delete-window)
3861 (delete-other-windows, split-window): Handle side windows and
3862 atomic windows appropriately.
3863 (window--display-buffer): Call display-buffer-record-window also
3864 when the window buffer did not change.
3865
3866 2012-08-22 Christopher Schmidt <christopher@ch.ristopher.com>
3867
3868 * help-fns.el (help-fns--key-bindings):
3869 Abbreviate non-symbol remap targets. (Bug#12174)
3870
3871 2012-08-22 Martin Rudalics <rudalics@gmx.at>
3872
3873 * dired.el (dired-mark-remembered): Don't clobber point.
3874 (Bug#11795)
3875
3876 2012-08-22 Glenn Morris <rgm@gnu.org>
3877
3878 * progmodes/bug-reference.el (bug-reference): New custom group.
3879 (bug-reference-bug-regexp): Make it a defcustom.
3880
3881 2012-08-22 Daiki Ueno <ueno@unixuser.org>
3882
3883 * progmodes/js.el (js-indent-level, js-expr-indent-offset)
3884 (js-paren-indent-offset, js-square-indent-offset)
3885 (js-curly-indent-offset): Add :safe (Bug#12257).
3886
3887 2012-08-22 Edward O'Connor <hober0@gmail.com>
3888
3889 * json.el (json-key-format): Add error properties.
3890 (json-encode-key): New function.
3891 (json-encode-hash-table, json-encode-alist, json-encode-plist):
3892 Use json-encode-key.
3893
3894 2012-08-22 Glenn Morris <rgm@gnu.org>
3895
3896 * calendar/cal-tex.el (cal-tex-longday): New function, replacing...
3897 (cal-tex-leftday, cal-tex-rightday): Remove functions.
3898 (cal-tex-weekly-common, cal-tex-cursor-filofax-2week):
3899 Update for above change.
3900
3901 2012-08-21 Andreas Schwab <schwab@linux-m68k.org>
3902
3903 * cus-face.el (custom-face-attributes): Fix customize type for the
3904 :underline attribute. (Bug#11805)
3905
3906 2012-08-21 Martin Rudalics <rudalics@gmx.at>
3907
3908 * window.el (window-point-1, set-window-point-1): Remove.
3909 (window-in-direction, record-window-buffer)
3910 (set-window-buffer-start-and-point, split-window-below)
3911 (window--state-get-1, display-buffer-record-window):
3912 Replace calls to window-point-1 and set-window-point-1 by calls to
3913 window-point and set-window-point respectively.
3914
3915 2012-08-21 Glenn Morris <rgm@gnu.org>
3916
3917 * calendar/cal-tex.el (cal-tex-weekly-common): New function.
3918 (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-week):
3919 Use it.
3920
3921 * calendar/cal-tex.el (cal-tex-rightday): Add optional funcname arg.
3922 (cal-tex-shortday): New function.
3923 (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-week)
3924 (cal-tex-cursor-filofax-daily): Use the above.
3925
3926 * calendar/cal-tex.el (cal-tex-leftday, cal-tex-rightday):
3927 New functions.
3928 (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-2week)
3929 (cal-tex-cursor-filofax-week): Use them.
3930
3931 * calendar/cal-tex.el (cal-tex-lefthead, cal-tex-righthead):
3932 New constants.
3933 (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-2week)
3934 (cal-tex-cursor-filofax-week, cal-tex-cursor-filofax-daily): Use them.
3935
3936 * calendar/cal-tex.el (cal-tex-preamble): Generate new buffers.
3937 (cal-tex-end-document): Don't rely on buffer name.
3938
3939 * calendar/cal-tex.el (cal-tex-cursor-filofax-year):
3940 Use cal-tex-vspace.
3941 (cal-tex-vspace, cal-tex-hspace, cal-tex-em, cal-tex-bf)
3942 (cal-tex-Huge-bf, cal-tex-large-bf): Use cal-tex-cmd.
3943 (cal-tex-scriptsize, cal-tex-huge, cal-tex-Huge, cal-tex-large):
3944 Use cal-tex-arg.
3945
3946 * calendar/cal-tex.el (cal-tex-cursor-filofax-year)
3947 (cal-tex-cursor-week, cal-tex-cursor-week2)
3948 (cal-tex-cursor-week-iso, cal-tex-cursor-week-at-a-glance)
3949 (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
3950 (cal-tex-cursor-filofax-daily, cal-tex-cursor-day)
3951 (cal-tex-insert-preamble, cal-tex-b-document)
3952 (cal-tex-e-document, cal-tex-b-center, cal-tex-e-center):
3953 Improve cal-tex-cmd usage.
3954
3955 * calendar/cal-tex.el (cal-tex-filofax-paper): New function.
3956 (cal-tex-cursor-filofax-year, cal-tex-cursor-filofax-2week)
3957 (cal-tex-cursor-filofax-week, cal-tex-cursor-filofax-daily): Use it.
3958 (cal-tex-weekly-paper): New function.
3959 (cal-tex-cursor-week, cal-tex-cursor-week2)
3960 (cal-tex-cursor-week-iso, cal-tex-cursor-week-monday)
3961 (cal-tex-cursor-day): Use it.
3962
3963 * calendar/cal-tex.el (cal-tex-cursor-week-at-a-glance)
3964 (cal-tex-cursor-filofax-week): Remove leading blank page.
3965
3966 * calendar/cal-tex.el (cal-tex-cursor-week-at-a-glance):
3967 Add autoload cookie. For now at least, don't use color, since
3968 no other cal-tex function does.
3969
3970 * calendar/cal-tex.el (cal-tex-cursor-week-iso)
3971 (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
3972 (cal-tex-cursor-filofax-daily): Correct start date for diary entries.
3973
3974 2012-08-21 Juri Linkov <juri@jurta.org>
3975
3976 * info.el (Info-file-attributes): New variable.
3977 (info-insert-file-contents): Add file attributes to
3978 `Info-file-attributes'. Clear the caches `Info-index-nodes' and
3979 `Info-toc-nodes' when previous modtime of the Info file is less
3980 than new modtime.
3981 (Info-toc-nodes, Info-index-nodes): Move definitions up to the top
3982 of info.el. (Bug#12230)
3983
3984 2012-08-20 Glenn Morris <rgm@gnu.org>
3985
3986 * calendar/diary-lib.el (diary-include-files, diary-sexp-entry):
3987 * calendar/holidays.el (calendar-holiday-list):
3988 Report errors with display-warning rather than beep'n'sleep.
3989
3990 2012-08-20 Michael Albinus <michael.albinus@gmx.de>
3991
3992 * net/tramp.el (tramp-accept-process-output): Accept only output
3993 from PROC. Otherwise, process filters and sentinels might be
3994 confused. (Bug#12145)
3995
3996 2012-08-20 Chong Yidong <cyd@gnu.org>
3997
3998 * descr-text.el (describe-text-properties-1): Use overlays-in to
3999 report on empty overlays (Bug#3322).
4000
4001 2012-08-20 Glenn Morris <rgm@gnu.org>
4002
4003 * mail/rmailout.el (rmail-output-read-file-name):
4004 Trap and report errors in rmail-output-file-alist elements.
4005
4006 * font-lock.el (font-lock-add-keywords): Doc fix (quote face names
4007 since most non-font-lock faces are not also variables).
4008
4009 2012-08-20 Edward Reingold <reingold@iit.edu>
4010
4011 * calendar/cal-tex.el (cal-tex-cursor-week-at-a-glance):
4012 New function. (Bug12160)
4013
4014 2012-08-19 Glenn Morris <rgm@gnu.org>
4015
4016 * mail/rmailout.el (rmail-output-read-file-name):
4017 Fix previous change (when the alist is nil or does not match).
4018
4019 2012-08-19 Chong Yidong <cyd@gnu.org>
4020
4021 * xml.el (xml-escape-string): Don't refer to xml-entity-alist
4022 (Bug#12228).
4023
4024 2012-08-18 Chong Yidong <cyd@gnu.org>
4025
4026 * simple.el (yank-handled-properties): New defcustom.
4027 (yank-excluded-properties): Add font-lock-face and category.
4028 (yank): Doc fix.
4029
4030 * subr.el (remove-yank-excluded-properties):
4031 Obey yank-handled-properties. The special handling of font-lock-face
4032 and category is now done this way, instead of being hard-coded.
4033 (insert-for-yank-1): Remove font-lock-face handling.
4034 (yank-handle-font-lock-face-property)
4035 (yank-handle-category-property): New function.
4036
4037 2012-08-17 Glenn Morris <rgm@gnu.org>
4038
4039 * mail/rmailout.el (rmail-output-read-file-name):
4040 Check rmail-output-file-alist against the full message body
4041 in the correct rmail buffer. (Bug#12214)
4042
4043 2012-08-17 Michael Albinus <michael.albinus@gmx.de>
4044
4045 * net/tramp-sh.el (tramp-sh-handle-start-file-process):
4046 Eliminate superfluous prompt. (Bug#12203)
4047
4048 2012-08-17 Chong Yidong <cyd@gnu.org>
4049
4050 * mouse.el (mouse-appearance-menu): If x-select-font returns a
4051 font spec, set the font directly (Bug#3228).
4052
4053 2012-08-17 Martin Rudalics <rudalics@gmx.at>
4054
4055 * window.el (delete-window): Fix last fix.
4056
4057 2012-08-16 Martin Rudalics <rudalics@gmx.at>
4058
4059 * window.el (window-valid-p): Move to window.c.
4060 (window-child, window-child-count, window-last-child)
4061 (window-normalize-window, window-combined-p)
4062 (window-combinations, window-atom-root, window-min-size)
4063 (window-sizable, window-sizable-p, window-size-fixed-p)
4064 (window-min-delta, window-max-delta, window--resizable)
4065 (window--resizable-p, window-resizable, window-total-size)
4066 (window-full-height-p, window-full-width-p, window-body-size)
4067 (window-at-side-p, adjust-window-trailing-edge, maximize-window)
4068 (minimize-window, window-deletable-p, delete-window)
4069 (delete-other-windows, set-window-buffer-start-and-point)
4070 (next-buffer, previous-buffer, split-window, balance-windows-2)
4071 (set-window-text-height, window-buffer-height)
4072 (fit-window-to-buffer, shrink-window-if-larger-than-buffer)
4073 (truncated-partial-width-window-p): Minor code adjustments.
4074 In doc-strings state whether the argument window has to denote a
4075 live, valid or any window.
4076
4077 2012-08-16 Phil Sainty <psainty@orcon.net.nz> (tiny change)
4078
4079 * progmodes/subword.el (subword-forward-function)
4080 (subword-backward-function, subword-forward-regexp)
4081 (subword-backward-regexp): New variables.
4082 (subword-forward, subword-forward-internal, subword-backward-internal):
4083 Use new variables, eg so that different "word" definitions
4084 can be easily used. (Bug#11411)
4085
4086 2012-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
4087
4088 * vc/vc-mtn.el (vc-mtn-revision-completion-table): Handle completion
4089 for composite selectors.
4090 * vc/vc.el (vc-diff-build-argument-list-internal): Don't prevent
4091 operation just because we can't find a previous revision.
4092
4093 2012-08-15 Chong Yidong <cyd@gnu.org>
4094
4095 * frame.el (set-frame-font): Accept font objects.
4096
4097 2012-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
4098
4099 * textmodes/tex-mode.el (tex-insert-quote): ~ is a space (bug#12137).
4100
4101 2012-08-15 Wolfgang Jenkner <wjenkner@inode.at>
4102
4103 * man.el (Man-overstrike-face, Man-underline-face)
4104 (Man-reverse-face): Remove variables.
4105 (Man-overstrike, Man-underline, Man-reverse): New faces.
4106 (Man-fontify-manpage): Use them instead of the variables.
4107 (Man-cleanup-manpage): Comment change.
4108 (Man-ansi-color-map): New variable.
4109 (Man-fontify-manpage): Use it.
4110 Call ansi-color-apply-on-region to replace ad hoc code (bug#12147).
4111
4112 Implement ANSI SGR parameters 22-27 (bug#12146).
4113 * ansi-color.el (ansi-colors): Doc fix.
4114 (ansi-color-context, ansi-color-context-region): Doc fix.
4115 (ansi-color--find-face): New function.
4116 (ansi-color-apply, ansi-color-apply-on-region): Use it.
4117 Rename the local variable `face' to `codes' since it is now a list of
4118 ansi codes. Doc fix.
4119 (ansi-color-get-face): Remove.
4120 (ansi-color-parse-sequence): New function, derived from
4121 ansi-color-get-face.
4122 (ansi-color-apply-sequence): Use it. Rewrite, and support ansi
4123 codes 22-27.
4124
4125 2012-08-14 Stefan Monnier <monnier@iro.umontreal.ca>
4126
4127 * subr.el (read-passwd): Allow use from a minibuffer.
4128
4129 2012-08-14 Eli Zaretskii <eliz@gnu.org>
4130
4131 * tooltip.el (tooltip-identifier-from-point): Don't treat tokens
4132 inside comments and strings as identifiers.
4133
4134 * progmodes/gud.el (gud-tooltip-print-command): Quote the
4135 expression to evaluate. This allows to evaluate expressions with
4136 embedded whitespace.
4137 (gud-tooltip-tips): Add a blank before the newline in the
4138 message-box text, for the benefit of message-box emulation on
4139 MS-Windows.
4140
4141 * progmodes/gdb-mi.el (gdb-tooltip-print): Don't ignore error
4142 messages from GDB, pop them up in a tooltip to give feedback to
4143 user.
4144 (gdb-tooltip-print-1): Quote the expression to evaluate.
4145 This allows to evaluate expressions with embedded whitespace.
4146 (gdb-inferior-io--init-proc): Don't send "-inferior-tty" command
4147 if the TTY name is nil or empty (which happens when communicating
4148 with the inferior via pipes, e.g. on MS-Windows).
4149 (gdb-internals): If GDB sends a "&\n" empty debugging message,
4150 don't send that to the GUD buffer.
4151
4152 2012-08-14 Glenn Morris <rgm@gnu.org>
4153
4154 * emacs-lisp/bytecomp.el (byte-compile-setq-default):
4155 Optimize away setq-default with no args, as for setq. (Bug#12195)
4156
4157 2012-08-14 Chong Yidong <cyd@gnu.org>
4158
4159 * minibuffer.el (read-file-name): Doc fix (Bug#10881).
4160
4161 * emacs-lisp/regexp-opt.el (regexp-opt-charset): Doc fix
4162 (Bug#12085).
4163
4164 2012-08-14 Glenn Morris <rgm@gnu.org>
4165
4166 * emacs-lisp/bytecomp.el (byte-recompile-file): Doc fix.
4167
4168 2012-08-14 Michael Albinus <michael.albinus@gmx.de>
4169
4170 * net/tramp-sh.el (tramp-open-shell): Cache the shell name.
4171 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
4172 Use cached shell name.
4173
4174 2012-08-14 Fabián Ezequiel Gallina <fgallina@cuca>
4175
4176 * progmodes/python.el (python-shell-send-string):
4177 (python-shell-send-setup-code): Do not use `format' with `message'.
4178
4179 2012-08-14 Dmitry Gutov <dgutov@yandex.ru>
4180
4181 * progmodes/ruby-mode.el: Improve percent literals (bug#6286).
4182 (ruby-percent-literal-beg-re): New constant.
4183 (ruby-syntax-general-delimiters-goto-beg): Rename to
4184 `ruby-syntax-enclosing-percent-literal', improve literal type check.
4185 (ruby-syntax-propertize-general-delimiters): Rename to
4186 `ruby-syntax-propertize-percent-literal', it's a shorter and more
4187 popular term. Adjust comments everywhere.
4188 (ruby-syntax-propertize-percent-literal): Only propertize when not
4189 inside a simple string or comment. When the literal is unclosed,
4190 leave the text after it unpropertized.
4191 (ruby-syntax-methods-before-regexp): New constant.
4192 (ruby-syntax-propertize-function): Use it to recognize regexps.
4193 Don't look at the text after regexp, just use the whitelist.
4194
4195 2012-08-14 Andreas Schwab <schwab@linux-m68k.org>
4196
4197 * emacs-lisp/bytecomp.el (byte-recompile-file): When LOAD is
4198 non-nil always load the compiled file if it exists. (Bug#12197)
4199
4200 2012-08-14 Chong Yidong <cyd@gnu.org>
4201
4202 * hi-lock.el (hi-lock-mode): Do not unilaterally enable font lock.
4203 (hi-lock-set-pattern): When deciding whether to use font lock or
4204 overlays, look at font-lock-mode instead of font-lock-fontified
4205 (Bug#12168).
4206 (hi-lock-mode, hi-lock-line-face-buffer, hi-lock-unface-buffer)
4207 (hi-lock-face-buffer, hi-lock-face-phrase-buffer): Doc fix.
4208
4209 2012-08-14 Daiki Ueno <ueno@unixuser.org>
4210
4211 * subr.el (internal--after-with-selected-window): Fix typo
4212 (Bug#12193).
4213
4214 2012-08-14 Fabián Ezequiel Gallina <fgallina@cuca>
4215
4216 Use `completion-table-dynamic' for completion functions.
4217 * progmodes/python.el
4218 (python-shell-completion--do-completion-at-point)
4219 (python-shell-completion--get-completions):
4220 Remove functions.
4221 (python-shell-completion-complete-at-point): New function.
4222 (python-completion-complete-at-point): Use it.
4223
4224 2012-08-13 Jambunathan K <kjambunathan@gmail.com>
4225
4226 * vc/vc-dir.el (vc-dir-hide-state): New command (bug#12159).
4227 (vc-dir-hide-up-to-date): Route it to `vc-dir-hide-state'.
4228
4229 2012-08-13 Stefan Monnier <monnier@iro.umontreal.ca>
4230
4231 * subr.el (function-get): Refine `autoload' arg so it can also
4232 autoload functions for gv.el (bug#12191).
4233 * emacs-lisp/edebug.el (get-edebug-spec): Adjust so it only
4234 autoloads macros.
4235
4236 * color.el (color-xyz-to-lab, color-lab-to-xyz, color-cie-de2000):
4237 Prefer pcase-let over destructuring-bind.
4238 * vc/diff-mode.el (diff-remove-trailing-whitespace): Same.
4239 Also, remove whitespace as we go, rather than after accumulating the
4240 various places.
4241
4242 * subr.el (internal--before-with-selected-window)
4243 (internal--after-with-selected-window): Fix typo seleted->selected.
4244 (with-selected-window): Adjust callers.
4245 Reported by Dmitry Gutov <dgutov@yandex.ru>.
4246
4247 2012-08-13 Bastien Guerry <bzg@gnu.org>
4248
4249 * window.el (special-display-popup-frame): Minor docstring
4250 enhancement. (Bug#12172)
4251
4252 2012-08-13 Andreas Schwab <schwab@linux-m68k.org>
4253
4254 * tar-mode.el (tar-header-data-end): Only ignore size for files of
4255 type 1-6.
4256 (tar-header-block-summarize, tar-get-descriptor): Handle pax
4257 extended headers.
4258
4259 * files.el (hack-local-variables-filter): Remove useless eval.
4260
4261 2012-08-13 Martin Rudalics <rudalics@gmx.at>
4262
4263 * subr.el (with-selected-window): Fix last change.
4264
4265 2012-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
4266
4267 * subr.el (internal--before-with-seleted-window)
4268 (internal--after-with-seleted-window): New functions.
4269 (with-selected-window): Use them, to replace dependency on
4270 tty-top-frame.
4271
4272 2012-08-12 Nobuyoshi Nakada <nobu@ruby-lang.org>
4273
4274 * progmodes/ruby-mode.el (ruby-mode-map): Remove unnecessary
4275 binding for `newline'.
4276 (ruby-move-to-block): When moving backward, stop at block opening,
4277 not indentation.
4278 * progmodes/ruby-mode.el (ruby-brace-to-do-end)
4279 (ruby-do-end-to-brace, ruby-toggle-block): New functions.
4280 * progmodes/ruby-mode.el (ruby-mode-map): Add binding for
4281 `ruby-toggle-block'.
4282
4283 2012-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
4284
4285 * ibuffer.el (ibuffer-do-toggle-read-only):
4286 * dired.el (dired-toggle-read-only):
4287 * buff-menu.el (Buffer-menu-toggle-read-only):
4288 * bindings.el (mode-line-toggle-read-only):
4289 * bs.el (bs-toggle-readonly): Call toggle-read-only interactively.
4290
4291 2012-08-12 Andreas Schwab <schwab@linux-m68k.org>
4292
4293 * descr-text.el (describe-char): Put the overlays over the
4294 "displayed as" character.
4295
4296 2012-08-12 Jay Belanger <jay.p.belanger@gmail.com>
4297
4298 * calc/calc-units.el (math-default-units-table): Give an
4299 initial value.
4300 (math-put-default-units): Add options to put composite units and
4301 unit systems in the default units table.
4302 (calc-convert-units): Send composite units to
4303 `math-put-default-units' when appropriate.
4304
4305 2012-08-11 Glenn Morris <rgm@gnu.org>
4306
4307 * emacs-lisp/copyright.el (copyright-update-directory): Logic fix.
4308
4309 * tutorial.el (help-with-tutorial):
4310 * emacs-lisp/copyright.el (copyright-update-directory):
4311 * emacs-lisp/autoload.el (autoload-find-generated-file)
4312 (autoload-find-file): Disable local eval: (for insurance).
4313
4314 * files.el (hack-local-variables-filter): If an eval: form is not
4315 known to be safe, and enable-local-variables is :safe, then ignore
4316 the form totally, as is done for non-eval forms. (Bug#12155)
4317 This is CVE-2012-3479.
4318
4319 2012-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
4320
4321 * emacs-lisp/rx.el (rx-constituents): Don't define as constant.
4322 (rx-form): Simplify.
4323
4324 2012-08-09 Dmitry Gutov <dgutov@yandex.ru>
4325
4326 * progmodes/ruby-mode.el (ruby-expr-beg, ruby-parse-partial):
4327 ?, _, and : are symbol constituents, ! is not (but kinda should be).
4328 (ruby-syntax-propertize-heredoc): Use ruby-singleton-class-p.
4329 (ruby-syntax-propertize-function): Adjust for changes in
4330 `ruby-syntax-propertize-heredoc'.
4331
4332 2012-08-09 Nobuyoshi Nakada <nobu@ruby-lang.org>
4333
4334 * progmodes/ruby-mode.el (ruby-mode-map): Remove deprecated
4335 binding (use `M-;' instead).
4336 (ruby-singleton-class-p): New function.
4337 (ruby-expr-beg, ruby-in-here-doc-p) Use it.
4338
4339 2012-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
4340
4341 * emacs-lisp/cl-macs.el (cl-loop): Improve debug spec.
4342
4343 2012-08-10 Chong Yidong <cyd@gnu.org>
4344
4345 * progmodes/python.el (python-shell-get-process-name): Don't mess
4346 with same-window-buffer-names.
4347
4348 * eshell/eshell.el (eshell-add-to-window-buffer-names)
4349 (eshell-remove-from-window-buffer-names): Make obsolete.
4350 (eshell-buffer-name, eshell-unload-hook): Don't use them.
4351 (eshell): Just use pop-to-buffer-same-window instead.
4352
4353 2012-08-10 Chong Yidong <cyd@gnu.org>
4354
4355 * bindings.el: Bind M-= back to count-words-region.
4356
4357 * simple.el (count-words-region): Accept a prefix arg for acting
4358 on the entire buffer.
4359 (count-words--buffer-message): New helper function.
4360
4361 2012-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
4362
4363 * term/x-win.el (x-menu-bar-open): Always pass last-nonmenu-event.
4364 * subr.el (eventp): `nil' is not an event, and eventp is not hot.
4365 (event-start, event-end): Use posn-at-point to return a more
4366 informative posn.
4367 (posnp): New function.
4368 * mouse.el (popup-menu-normalize-position): Use it.
4369
4370 2012-08-10 Masatake YAMATO <yamato@redhat.com>
4371
4372 * mouse.el (popup-menu-normalize-position): New function.
4373 (popup-menu): Use `popup-menu-normalize-position' to normalize
4374 the form for POSITION argument.
4375
4376 * term/x-win.el (x-menu-bar-open):
4377 Use the value returend from (posn-at-point) as position
4378 passed to `popup-menu'.
4379
4380 2012-08-09 Jay Belanger <jay.p.belanger@gmail.com>
4381
4382 * calc/calccomp.el (math-compose-expr): Add extra argument
4383 indicating that parentheses should be put around products in
4384 denominators. Give multiplication precedence over division during
4385 composition.
4386
4387 2012-08-09 Chong Yidong <cyd@gnu.org>
4388
4389 * man.el (Man-switches, Man-sed-command, Man-awk-command)
4390 (Man-mode-hook, Man-cooked-hook, Man-untabify-command-args)
4391 (Man-untabify-command, manual-program): Convert to defcustom
4392 (Bug#10429).
4393
4394 * vc/add-log.el (change-log-mode): Bind comment-start to nil.
4395
4396 * descr-text.el (describe-char): Don't insert extra newlines
4397 (Bug#10127).
4398
4399 * vc/log-view.el (log-view-diff): Use use-region-p (Bug#10133).
4400 (log-view-diff-changeset, log-view-minor-wrap): Likewise.
4401
4402 * align.el (align-region): Delete temporary markers (Bug#10047).
4403 Plus some code cleanups.
4404
4405 2012-08-09 Fabián Ezequiel Gallina <fgallina@cuca>
4406
4407 * progmodes/python.el (python-pdbtrack-tracked-buffer)
4408 (python-pdbtrack-buffers-to-kill, python-shell-internal-buffer)
4409 (python-shell-internal-last-output): Use make-local-variable
4410 instead of make-variable-buffer-local.
4411
4412 2012-08-09 Fabián Ezequiel Gallina <fgallina@cuca>
4413
4414 * progmodes/python.el: Enhancements to forward-sexp.
4415 (python-nav-forward-sexp): Rename from
4416 python-nav-forward-sexp-function.
4417 (python-nav--forward-sexp, python-nav--backward-sexp):
4418 New functions.
4419
4420 2012-08-09 Jay Belanger <jay.p.belanger@gmail.com>
4421
4422 * calc/calc-menu.el (calc-modes-menu): Add entries for matrix
4423 modes and simplification modes.
4424
4425 2012-08-09 Stefan Monnier <monnier@iro.umontreal.ca>
4426
4427 * delsel.el (delete-selection-pre-hook): Don't propagate the
4428 file-supersession signals (bug#12161).
4429
4430 2012-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
4431
4432 * emacs-lisp/cl.el (cl-map-keymap-recursively, cl-map-intervals)
4433 (cl-map-extents): Add compatibility aliases (bug#12135).
4434
4435 2012-08-08 Michael Albinus <michael.albinus@gmx.de>
4436
4437 * net/tramp-sh.el (tramp-find-file-exists-command): Protect the
4438 tests by `ignore-error'.
4439 (tramp-find-shell): Open also a new shell, when cache is already
4440 set. Reported by Carsten Bormann <cabo@tzi.org>. (Bug#12148)
4441
4442 2012-08-08 Juri Linkov <juri@jurta.org>
4443
4444 * bookmark.el: Add `defaults' property to the bookmark record.
4445 (bookmark-current-buffer): Doc fix.
4446 (bookmark-make-record): Add `defaults' property with default values
4447 to the bookmark record.
4448 (bookmark-minibuffer-read-name-map): Remove key binding "\C-u"
4449 with `bookmark-insert-current-bookmark'.
4450 (bookmark-set): Get `defaults' property from the bookmark record
4451 and use it in `read-from-minibuffer'.
4452 (bookmark-insert-current-bookmark): Remove function.
4453
4454 * info.el (Info-bookmark-make-record): Add `defaults' property
4455 with values of canonical Info node name, the current Info file
4456 name and the current Info node name. (Bug#12107)
4457
4458 2012-08-08 Juri Linkov <juri@jurta.org>
4459
4460 * files.el (basic-save-buffer): Use `buffer-name' as the default
4461 of `read-file-name' when buffer is not visiting a file (bug#12128).
4462
4463 2012-08-08 Juri Linkov <juri@jurta.org>
4464
4465 * info.el (Info-isearch-search): Doc fix.
4466 (Info-search): Change search-failed message from "initial node" to
4467 "end of node" (bug#12078).
4468 (Info-isearch-search): Change `isearch-string-state' to
4469 `isearch--state-string'.
4470
4471 2012-08-08 Glenn Morris <rgm@gnu.org>
4472
4473 * language/persian.el: Remove file.
4474 * language/misc-lang.el: Move unique part of persian.el here.
4475 * loadup.el: Remove language/persian.
4476
4477 2012-08-08 Óscar Fuentes <ofv@wanadoo.es>
4478
4479 * vc/diff-mode.el (diff-remove-trailing-whitespace): New function.
4480
4481 2012-08-08 Fabián Ezequiel Gallina <fgallina@cuca>
4482
4483 * progmodes/python.el: Fix defsubst warning.
4484 (python-syntax-context) Rename from python-info-ppss-context.
4485 (python-syntax-context-type): Rename from
4486 python-info-ppss-context-type.
4487 (python-syntax-comment-or-string-p): Rename from
4488 python-info-ppss-comment-or-string-p.
4489
4490 2012-08-08 Jay Belanger <jay.p.belanger@gmail.com>
4491
4492 * calc/calc-misc.el (calc-record-why): Don't record a message twice.
4493
4494 2012-08-07 Andreas Schwab <schwab@linux-m68k.org>
4495
4496 * emacs-lisp/lisp-mode.el (eval-defun-1): Handle standard value of
4497 a defcustom that is quoted with backquote.
4498
4499 * calc/calc-prog.el (math-do-defmath): Use backquote forms.
4500 Fix handling of interactive spec when the body uses return.
4501 (math-do-arg-check, math-define-function-body): Use backquote forms.
4502 * calc/calc-ext.el (math-defcache): Likewise.
4503 * calc/calc-rewr.el (math-rwfail, math-rweval): Likewise.
4504 * allout.el (allout-new-exposure): Likewise.
4505 * calc/calcalg2.el (math-tracing-integral): Likewise.
4506 * info.el (Info-last-menu-item): Likewise.
4507 * emulation/vip.el (vip-loop): Likewise.
4508 * textmodes/artist.el (artist-funcall): Likewise.
4509 * menu-bar.el (menu-bar-make-mm-toggle, menu-bar-make-toggle):
4510 Construct menu-item directly.
4511
4512 * progmodes/autoconf.el (font-lock-syntactic-keywords):
4513 Don't declare.
4514
4515 2012-08-07 Chong Yidong <cyd@gnu.org>
4516
4517 * simple.el (deactivate-mark): Preserve text properties when
4518 saving the primary selection (Bug#8384).
4519
4520 2012-08-07 Kevin Ryde <user42@zip.com.au>
4521
4522 * woman.el (woman0-if): Quietly treat ".if v" as false (Bug#12109).
4523 (woman-parse-numeric-value): On a bad .IP line, issue a warning
4524 and continue processing (Bug#12110).
4525
4526 2012-08-06 Stefan Monnier <monnier@iro.umontreal.ca>
4527
4528 * progmodes/cperl-mode.el (cperl-mode): Yet another fix for
4529 syntax-propertize-function (bug#10095).
4530
4531 2012-08-06 Stefan Monnier <monnier@iro.umontreal.ca>
4532
4533 * help-fns.el (help-fns--key-bindings, help-fns--signature)
4534 (help-fns--parent-mode, help-fns--obsolete): New funs, extracted from
4535 describe-function-1.
4536 (describe-function-1): Use them. Move compiler macro after sig.
4537 (help-fns--compiler-macro): Use function-get. Assume we're already in
4538 standard-output. Adjust layout to new call order.
4539
4540 * emacs-lisp/cl-macs.el (cl--sm-macroexpand): Fix handling of
4541 re-binding a symbol that has a symbol-macro (bug#12119).
4542
4543 2012-08-06 Mohsen BANAN <libre@mohsen.1.banan.byname.net>
4544
4545 * language/persian.el: New file. (Bug#11812)
4546 * loadup.el: Add language/persian.el.
4547
4548 2012-08-06 Chong Yidong <cyd@gnu.org>
4549
4550 * window.el (window--maybe-raise-frame): New function.
4551 (window--display-buffer): Split off from here.
4552 (display-buffer-reuse-window, display-buffer-pop-up-frame)
4553 (display-buffer-pop-up-window, display-buffer-use-some-window):
4554 Obey an inhibit-switch-frame action alist entry.
4555 (display-buffer): Update doc.
4556
4557 * replace.el (occur-after-change-function): Avoid losing focus by
4558 using the inhibit-switch-frame display parameter (Bug#12139).
4559
4560 2012-08-06 Fabián Ezequiel Gallina <fgallina@cuca>
4561
4562 Make internal shell process buffer names start with space.
4563 * progmodes/python.el (python-shell-make-comint): Add optional
4564 argument INTERNAL.
4565 (run-python-internal): Use it.
4566 (python-shell-internal-get-or-create-process): Check for new
4567 internal buffer names.
4568
4569 2012-08-06 Glenn Morris <rgm@gnu.org>
4570
4571 * eshell/esh-ext.el (eshell/addpath): Use dolist and mapconcat.
4572 Do less getting and setting of environment variables.
4573
4574 2012-08-05 Chong Yidong <cyd@gnu.org>
4575
4576 * proced.el (proced): Add substitution string to docstring to
4577 trigger autoloading of the proced library on C-h f (Bug#1768).
4578
4579 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
4580 Don't show defvars which have no second argument (Bug#8638).
4581
4582 * imenu.el (imenu-generic-expression): Move documentation here
4583 from imenu--generic-function.
4584 (imenu--generic-function): Refer to imenu-generic-expression.
4585
4586 2012-08-05 Vegard Øye <vegard_oye@hotmail.com> (tiny change)
4587
4588 * emulation/viper-init.el (viper-deflocalvar): Add docstring and
4589 indentation declaration.
4590 (viper-loop): Add indentation declaration (Bug#7025).
4591
4592 2012-08-05 Chong Yidong <cyd@gnu.org>
4593
4594 * help-fns.el (describe-variable): Add hyperlink for
4595 directory-local variables files. Improve buffer-local and
4596 permanent-local reporting; suggested by MON KEY (Bug#6644).
4597
4598 * help-mode.el (help-dir-local-var-def): New button type.
4599
4600 * files.el (kill-buffer-hook): Provide a defvar.
4601
4602 2012-08-05 Glenn Morris <rgm@gnu.org>
4603
4604 * eshell/esh-ext.el (eshell/addpath):
4605 Also update eshell-path-env. (Bug#12013)
4606
4607 2012-08-05 Chong Yidong <cyd@gnu.org>
4608
4609 * wdired.el (wdired-mode, wdired-change-to-wdired-mode): Doc fixes.
4610
4611 * fringe.el (fringe-styles): Add docstring.
4612 (fringe--check-mode): New function.
4613 (set-fringe-mode, set-fringe-style): Use it.
4614 (fringe-mode, set-fringe-style): Doc fixes (Bug#6480).
4615
4616 * files.el (set-auto-mode): Fix invalid setq call.
4617
4618 2012-08-04 Stefan Monnier <monnier@iro.umontreal.ca>
4619
4620 * isearch.el: Misc simplification; use defstruct.
4621 (isearch-mode-map): Dense maps now work like sparse ones.
4622 (isearch--state): New defstruct.
4623 (isearch-string-state, isearch-message-state, isearch-point-state)
4624 (isearch-success-state, isearch-forward-state)
4625 (isearch-other-end-state, isearch-word-state, isearch-error-state)
4626 (isearch-wrapped-state, isearch-barrier-state)
4627 (isearch-case-fold-search-state, isearch-pop-fun-state): Remove,
4628 replaced by defstruct's accessors.
4629 (isearch--set-state): Rename from isearch-top-state and change
4630 calling convention.
4631 (isearch-push-state): Use new isearch--get-state.
4632 (isearch-toggle-word): Disable regexp when enabling word.
4633 (isearch-message-prefix): Remove unused arg _c-q-hack.
4634 (isearch-message-suffix): Remove unused arg _ellipsis.
4635
4636 2012-08-04 Andreas Schwab <schwab@linux-m68k.org>
4637
4638 * simple.el (list-processes--refresh): For a server use :host or
4639 :local as the address.
4640 (list-processes): Doc fix.
4641
4642 2012-08-04 Michal Nazarewicz <mina86@mina86.com>
4643
4644 * lisp/mpc.el: Support password in host argument.
4645 (mpc--proc-connect): Parse and use new password element.
4646 Set mpc-proc variable instead of returning process.
4647 (mpc-proc): Adjust accordingly.
4648
4649 2012-08-03 Eli Zaretskii <eliz@gnu.org>
4650
4651 * whitespace.el (whitespace-display-mappings): Use Unicode
4652 codepoints, instead of emacs-mule codepoints. See
4653 http://lists.gnu.org/archive/html/help-gnu-emacs/2012-07/msg00366.html
4654 for the details.
4655
4656 * files.el (file-truename): Don't skip symlink-chasing part on
4657 windows-nt. Incorporate the resolution of 8+3 short aliases on
4658 Windows into the loop that recursively chases symlinks.
4659 Compare directory and its parent case-insensitively on MS-Windows and
4660 MS-DOS.
4661
4662 2012-08-03 Chong Yidong <cyd@gnu.org>
4663
4664 * menu-bar.el (menu-bar-tools-menu): Remove PCL-CVS.
4665
4666 * sort.el (sort-regexp-fields): Doc fix.
4667
4668 2012-08-03 Tassilo Horn <tsdh@gnu.org>
4669
4670 * textmodes/reftex.el (reftex-compile-variables): Make keyvals
4671 labels regex position point at the expected place.
4672
4673 2012-08-03 MON KEY <monkey@sandpframing.com>
4674
4675 * net/imap.el (imap-interactive-login, imap-authenticate)
4676 (imap-mailbox-lsub, imap-mailbox-list)
4677 (imap-mailbox-status-asynch, imap-mailbox-acl-delete)
4678 (imap-fetch, imap-message-flag-permanent-p, imap-envelope-from)
4679 (imap-parse-response): Doc fix.
4680
4681 2012-08-03 João Távora <joaotavora@gmail.com>
4682
4683 * textmodes/tex-mode.el (latex-forward-sexp): Terminate the loop
4684 if sexp scanning does not move point (Bug#5734).
4685
4686 2012-08-02 Tassilo Horn <tsdh@gnu.org>
4687
4688 * textmodes/reftex-vars.el (reftex-default-label-alist-entries):
4689 Add listings, minted, and ctable packages.
4690 (reftex-label-alist-builtin): Move listings, minted, and ctable
4691 entries before LaTeX.
4692 (reftex-label-alist): Docfix.
4693
4694 2012-08-02 Bastien Guerry <bzg@gnu.org>
4695
4696 * replace.el (occur): Fix docstring (bug#12122).
4697
4698 2012-08-02 Glenn Morris <rgm@gnu.org>
4699
4700 * emacs-lisp/authors.el (authors-renamed-files-alist): Add ms-w32.h.
4701
4702 2012-08-02 Paul Eggert <eggert@cs.ucla.edu>
4703
4704 Obsolete alias inactivate-current-input-method-function (Bug#10150).
4705 * international/mule-cmds.el: Create
4706 inactivate-current-input-method-function as an obsolete alias for
4707 deactivate-current-input-method-function. See Katsumi Yamaoka in
4708 <http://bugs.gnu.org/10150#46>.
4709
4710 2012-08-01 Jay Belanger <jay.p.belanger@gmail.com>
4711
4712 * calc/calc-mode.el (calc-set-simplify-mode): Use `cond' instead
4713 of nested `if's.
4714
4715 2012-08-01 Glenn Morris <rgm@gnu.org>
4716
4717 * progmodes/autoconf.el (autoconf-definition-regexp):
4718 Add AH_TEMPLATE, adjust submatch numbering.
4719 (autoconf-font-lock-keywords, autoconf-imenu-generic-expression)
4720 (autoconf-current-defun-function): Update for above change.
4721 (autoconf-current-defun-function): First skip to end of current word.
4722
4723 2012-08-01 Rupert Swarbrick <rswarbrick@gmail.com> (tiny change)
4724
4725 * calendar/cal-html.el (cal-html-insert-agenda-days):
4726 Fix typo. (Bug#12018)
4727
4728 2012-07-31 Fabián Ezequiel Gallina <fgallina@cuca>
4729
4730 Shell processes: enhancements to startup and CEDET compatibility.
4731 * progmodes/python.el (python-shell-send-setup-max-wait): Delete var.
4732 (python-shell-make-comint): accept-process-output at startup.
4733 (run-python-internal): Set inferior-python-mode-hook to nil.
4734 (python-shell-internal-get-or-create-process): call sit-for.
4735 (python-preoutput-result): Add obsolete alias.
4736 (python-shell-internal-send-string): Use it.
4737 (python-shell-send-setup-code): Remove call to
4738 accept-process-output.
4739
4740 2012-07-31 Andreas Schwab <schwab@linux-m68k.org>
4741
4742 * buff-menu.el (list-buffers-noselect): Use prefix-numeric-value.
4743 (Bug#12108)
4744
4745 2012-07-31 Jay Belanger <jay.p.belanger@gmail.com>
4746
4747 * calc-mode.el (calc-basic-simplification-mode): Rename from
4748 `calc-limited-simplification-mode'.
4749 (calc-alg-simplification-mode): New function.
4750 (calc-set-simplify-mode): Adjust message.
4751
4752 * calc.el (calc-set-mode-line): Adjust mode line display for
4753 basic simplification mode.
4754
4755 * calc-help.el (calc-m-prefix-help): Update help message.
4756
4757 * calc-ext.el (calc-init-extensions): Add bindings and autoloads
4758 for `calc-basic-simplify-mode' and `calc-alg-simplify-mode'.
4759
4760 2012-07-31 Bastien Guerry <bzg@gnu.org>
4761
4762 * man.el (man): Fix comment. (bug#12101)
4763
4764 2012-07-31 Martin Rudalics <rudalics@gmx.at>
4765
4766 * window.el (switch-to-prev-buffer, switch-to-next-buffer):
4767 Don't return a non-nil value when no suitable buffer was found.
4768
4769 2012-07-31 Fabián Ezequiel Gallina <fgallina@cuca>
4770
4771 * progmodes/python.el (run-python-internal): Disable font lock for
4772 internal shells.
4773
4774 2012-07-30 Stefan Merten <smerten@oekonux.de>
4775
4776 * textmodes/rst.el: Silence `checkdoc-ispell'.
4777 (rst-cvs-header, rst-svn-rev, rst-svn-timestamp)
4778 (rst-official-version, rst-official-cvs-rev)
4779 (rst-package-emacs-version-alist): Update to upstream V1.3.1.
4780 (rst-mode-map): New key binding.
4781
4782 2012-07-30 Paul Eggert <eggert@cs.ucla.edu>
4783
4784 Update .PHONY listings in makefiles.
4785 * Makefile.in (.PHONY): Add all, doit, custom-deps, finder-data,
4786 autoloads, update-subdirs, updates, bzr-update, update-authors,
4787 compile-onefile, compile-calc, backup-compiled-files,
4788 compile-after-backup, compile-one-process, mh-autoloads,
4789 bootstrap-clean, distclean, maintainer-clean.
4790
4791 2012-07-29 Jay Belanger <jay.p.belanger@gmail.com>
4792
4793 * calc/calc.el (calc-simplify-mode): Make 'alg the default value.
4794 (calc-set-mode-line): Don't display "AlgSimp ".
4795
4796 * calc/calc-mode.el (calc-alg-simplify-mode): Remove function.
4797 (calc-lim-simplify-mode): New function.
4798 (calc-set-simplify-mode): Default to 'alg.
4799 (calc-default-simplify-mode): Make algebraic simplifications
4800 the default.
4801
4802 * calc/calc-ext.el (calc-init-extensions): Remove binding for
4803 `calc-alg-simplify-mode'. Add binding for `calc-lim-simplify-mode'.
4804
4805 * calc/calc-help.el (calc-m-prefix-help): Change messages to
4806 indicate new simplification modes.
4807
4808 * calc/README: Mention new default simplification mode.
4809
4810 * calc/calc.el (math-normalize-error): New variable.
4811 (math-normalize): Set `math-normalize-error' to t
4812 when there's an error.
4813
4814 * calc/calc-alg.el (math-simplify): Don't simplify when
4815 `math-normalize' returns an error.
4816
4817 2012-07-29 Eli Zaretskii <eliz@gnu.org>
4818
4819 * international/mule-cmds.el (set-locale-environment): Revert last
4820 change, since display-graphic-p returns nil when this function is
4821 called during startup. Instead...
4822
4823 * term/w32console.el (terminal-init-w32console): ...setup the
4824 keyboard and terminal encoding for TTY sessions here. (Bug#12082)
4825
4826 2012-07-29 Juri Linkov <juri@jurta.org>
4827
4828 * simple.el (goto-line): Don't display default line number in the
4829 prompt because it should be displayed by `read-number' (bug#9952).
4830 Add the current line number to the defaults of `goto-line' to
4831 allow its easier modification by users with `M-n' (bug#9201).
4832
4833 * subr.el (read-number): Support multiple default values like in
4834 other minibuffer reading functions. Replace `read' with
4835 `string-to-number' for consistency with `number-to-string'.
4836
4837 2012-07-29 Paul Eggert <eggert@cs.ucla.edu>
4838
4839 deactive->inactive, inactivate->deactivate spelling fixes (Bug#10150)
4840 * emulation/viper-init.el (viper-deactivate-input-method-action):
4841 Rename from viper-inactivate-input-method-action.
4842 (viper-deactivate-input-method):
4843 Rename from viper-inactivate-input-method.
4844 * follow.el (follow-inactive-menu): Rename from follow-deactive-menu.
4845 * international/mule-cmds.el (deactivate-input-method):
4846 Rename from inactivate-input-method.
4847 Also run input-method-deactivate-hook.
4848 (deactivate-current-input-method-function):
4849 Rename from inactivate-current-input-method-function.
4850 (input-method-deactivate-hook): New hook.
4851 (input-method-inactivate-hook): Mark obsolete.
4852 (inactivate-input-method): Mark obsolete.
4853
4854 * international/quail.el (quail-activate):
4855 Also run quail-deactivate-hook.
4856 (quail-deactivate): Rename from quail-inactivate.
4857 * international/robin.el (robin-activate):
4858 Also run robin-deactivate-hook.
4859 (robin-deactivate): Rename from robin-inactivate.
4860
4861 2012-07-29 Chong Yidong <cyd@gnu.org>
4862
4863 * simple.el (indicate-copied-region): New function.
4864 (kill-ring-save): Split off from here.
4865
4866 * rect.el (copy-rectangle-as-kill): Call indicate-copied-region.
4867 (kill-rectangle): Set deactivate-mark to t on read-only error.
4868
4869 * register.el (copy-to-register, copy-rectangle-to-register):
4870 Deactivate the mark, and use indicate-copied-region (Bug#10056).
4871 (append-to-register, prepend-to-register): Call indicate-copied-region.
4872
4873 2012-07-29 Juri Linkov <juri@jurta.org>
4874
4875 * simple.el (async-shell-command-buffer): New defcustom.
4876 (shell-command): Use it. (Bug#4719)
4877
4878 2012-07-28 Eli Zaretskii <eliz@gnu.org>
4879
4880 * international/mule-cmds.el (set-locale-environment): In a
4881 console session on MS-Windows, set up keyboard and terminal
4882 encoding from the OEM codepage, not the ANSI codepage.
4883 (Bug#12055)
4884
4885 2012-07-28 Chong Yidong <cyd@gnu.org>
4886
4887 * progmodes/gdb-mi.el (gdb-place-breakpoints): Fix the call to
4888 gdb-get-location.
4889
4890 2012-07-28 Leo Liu <sdl.web@gmail.com>
4891
4892 * progmodes/cc-menus.el (cc-imenu-objc-function): Avoid leaving nil in
4893 the alist (bug#12029).
4894
4895 2012-07-28 Eli Zaretskii <eliz@gnu.org>
4896
4897 * makefile.w32-in (custom-deps, finder-data, updates, compile)
4898 (compile-always, compile-first)
4899 ($(lisp)/calendar/cal-loaddefs.el)
4900 ($(lisp)/calendar/diary-loaddefs.el)
4901 ($(lisp)/calendar/hol-loaddefs.el, $(lisp)/mh-e/mh-loaddefs.el)
4902 ($(lisp)/net/tramp-loaddefs.el, bootstrap)
4903 ($(lisp)/progmodes/cc-mode.elc): Depend on $(lisp)subdirs.el,
4904 instead of on update-subdirs.
4905 (bootstrap-clean): Delete $(lisp)/subdirs.el.
4906
4907 2012-07-28 Chong Yidong <cyd@gnu.org>
4908
4909 * vc/vc.el (vc-root-diff, vc-print-root-log): Prompt for a
4910 directory if vc-deduce-backend returns nil (Bug#7350).
4911
4912 * simple.el (delete-trailing-lines): New option.
4913 (delete-trailing-whitespace): Obey it (Bug#11879).
4914
4915 2012-07-28 David Engster <deng@randomsample.de>
4916
4917 * xml.el (xml-node-name, xml-parse-file, xml-parse-region):
4918 Explanation of new 'symbol-qnames feature in doc-strings.
4919 (xml-maybe-do-ns): Return expanded names as plain symbols if
4920 'symbol-qnames was provided in XML-NS argument (Bug#11916).
4921 (xml-parse-tag-1): Deal with new definition of PARSE-NS argument.
4922
4923 2012-07-27 Fabián Ezequiel Gallina <fgallina@cuca>
4924
4925 Consistent completion in inferior python with emacs -nw.
4926 * progmodes/python.el (inferior-python-mode): replace "<tab>"
4927 binding in inferior-python-mode-map with "\t".
4928 (python-shell-completion-complete-at-point)
4929 (python-completion-complete-at-point): Remove interactive spec.
4930
4931 2012-07-27 Jay Belanger <jay.p.belanger@gmail.com>
4932
4933 * calc/calccomp.el (math-compose-expr): Undo previous change.
4934
4935 2012-07-27 Fabián Ezequiel Gallina <fgallina@cuca>
4936
4937 * progmodes/python.el (python-mode-map): Add keybinding for
4938 run-python.
4939 (python-shell-make-comint): Fix pop-to-buffer call.
4940 (run-python): Autoload. New arg SHOW.
4941 (python-shell-get-or-create-process): Do not pop python process
4942 buffer.
4943
4944 2012-07-27 Michael Albinus <michael.albinus@gmx.de>
4945
4946 * notifications.el (notifications-on-action-signal)
4947 (notifications-on-closed-signal): Use also the bus address for the map.
4948 (notifications-notify, notifications-close-notification)
4949 (notifications-get-capabilities): Add optional argument BUS.
4950
4951 2012-07-27 Tassilo Horn <tsdh@gnu.org>
4952
4953 * textmodes/reftex-vars.el (reftex-label-alist-builtin):
4954 Add support for the lstlisting and minted environments, and for the
4955 ctable macro.
4956 * textmodes/reftex.el (reftex-compile-variables): Also recognize
4957 labels written in keyvals syntax.
4958
4959 2012-07-27 Jay Belanger <jay.p.belanger@gmail.com>
4960
4961 * calc/calccomp.el (math-compose-expr): Use parentheses when
4962 there is a product in the denominator of a fraction.
4963
4964 2012-07-26 Eli Zaretskii <eliz@gnu.org>
4965
4966 * makefile.w32-in ($(lisp)/calendar/cal-loaddefs.el)
4967 ($(lisp)/calendar/diary-loaddefs.el)
4968 ($(lisp)/calendar/hol-loaddefs.el, $(lisp)/mh-e/mh-loaddefs.el)
4969 ($(lisp)/net/tramp-loaddefs.el): Depend on update-subdirs.
4970 Fixes failures in parallel bootstrap because subdirs.el is being
4971 rewritten while the autoload files are built at the same time,
4972 which needs to load subdirs.el.
4973
4974 2012-07-26 Martin Rudalics <rudalics@gmx.at>
4975
4976 * mouse.el (popup-menu): Fix doc-string and re-indent code.
4977 (mouse-drag-line): Don't exit tracking when a switch-frame or
4978 switch-window event occurs (Bug#12006).
4979
4980 2012-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
4981
4982 * mouse.el (popup-menu): Fix last change.
4983
4984 2012-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
4985
4986 Autoload from Lisp with more care. Follow aliases when looking for
4987 function properties.
4988 * subr.el (autoloadp): New function.
4989 (symbol-file): Use it.
4990 (function-get): New function.
4991 * emacs-lisp/macroexp.el (macroexp--expand-all): Use function-get and
4992 autoload-do-load.
4993 * emacs-lisp/lisp-mode.el (lisp-font-lock-syntactic-face-function)
4994 (lisp-indent-function):
4995 * emacs-lisp/gv.el (gv-get):
4996 * emacs-lisp/edebug.el (get-edebug-spec, edebug-basic-spec):
4997 * emacs-lisp/byte-opt.el (byte-optimize-form):
4998 * emacs-lisp/bytecomp.el (byte-compile-arglist-warn):
4999 * emacs-lisp/autoload.el (make-autoload, autoload-print-form):
5000 Use function-get.
5001 * emacs-lisp/cl.el: Don't propagate function properties any more.
5002
5003 * speedbar.el (speedbar-add-localized-speedbar-support):
5004 * emacs-lisp/disass.el (disassemble-internal):
5005 * desktop.el (desktop-load-file):
5006 * help-fns.el (help-function-arglist, find-lisp-object-file-name)
5007 (describe-function-1):
5008 * emacs-lisp/find-func.el (find-function-noselect):
5009 * emacs-lisp/elp.el (elp-instrument-function):
5010 * emacs-lisp/advice.el (ad-has-proper-definition):
5011 * apropos.el (apropos-safe-documentation, apropos-macrop):
5012 * emacs-lisp/debug.el (debug-on-entry):
5013 * emacs-lisp/cl-macs.el (cl-compiler-macroexpand):
5014 * emacs-lisp/byte-opt.el (byte-compile-inline-expand):
5015 * calc/calc.el (name): Use autoloadp & autoload-do-load.
5016
5017 2012-07-25 Alp Aker <alp.tekin.aker@gmail.com>
5018
5019 * international/mule-cmds.el (ucs-insert): Mark it as an obsolete
5020 function, not an obsolete variable (Bug#12046).
5021
5022 2012-07-25 Andreas Schwab <schwab@linux-m68k.org>
5023
5024 * faces.el (face-spec-reset-face): Fix last change. (Bug#12042)
5025
5026 2012-07-25 Christopher Schmidt <christopher@ch.ristopher.com>
5027
5028 * emacs-lisp/pp.el (pp-display-expression): Select old selected
5029 window only if it is still live (Bug#12034).
5030
5031 2012-07-25 Martin Rudalics <rudalics@gmx.at>
5032
5033 * subr.el (redirect-frame-focus): Add advertised calling
5034 convention (Bug#12030).
5035
5036 2012-07-25 Paul Eggert <eggert@cs.ucla.edu>
5037
5038 Prefer typical American spelling for "acknowledgment".
5039 * vc/add-log.el (change-log-acknowledgment): Rename from
5040 change-log-acknowledgement, with an alias for the old name.
5041
5042 2012-07-25 Jay Belanger <jay.p.belanger@gmail.com>
5043
5044 * calc-alg.el (math-simplify-divide): Don't cross multiply
5045 in an equation when the lhs is a variable.
5046
5047 2012-07-24 Julien Danjou <julien@danjou.info>
5048
5049 * net/netrc.el (netrc-find-service-number, netrc-store-data):
5050 Remove, unused.
5051
5052 2012-07-23 Eli Zaretskii <eliz@gnu.org>
5053
5054 * startup.el (command-line): Don't display an empty user name in
5055 the error message about non-existent home directory, when
5056 init-file-user was set to an empty string. See
5057 http://lists.gnu.org/archive/html/bug-gnu-emacs/2012-07/msg00835.html
5058 for the details and context.
5059
5060 2012-07-22 Vincent Belaïche <vincentb1@users.sourceforge.net>
5061
5062 * ses.el (ses-cell-formula-aset): New macro.
5063 (ses-cell-references-aset): New macro.
5064 (ses-cell-p): New function.
5065 (ses-rename-cell): Do no longer rely on complex operations like
5066 ses-cell-set-formula or ses-set-cell to change the cell and handle
5067 the undo at the same time, but rather use lower level new macros
5068 `ses-cell-formula-aset' and `ses-cell-references-aset' and handle
5069 the undo directly. Refresh the mode line.
5070
5071 2012-07-21 Leo Liu <sdl.web@gmail.com>
5072
5073 * progmodes/cc-cmds.el (c-defun-name):
5074 Use match-string-no-properties instead for consistency.
5075
5076 2012-07-20 Leo Liu <sdl.web@gmail.com>
5077
5078 * progmodes/cc-cmds.el (c-defun-name): Handle objc selectors properly.
5079 (Bug#7879)
5080
5081 * progmodes/cc-langs.el (c-symbol-start): Include char _ (bug#11986).
5082
5083 2012-07-20 Stefan Monnier <monnier@iro.umontreal.ca>
5084
5085 * userlock.el, emacs-lisp/map-ynp.el: Declare part of `emacs' package.
5086 * progmodes/bug-reference.el, misearch.el: Provide themselves
5087 (bug#11915).
5088
5089 * progmodes/cperl-mode.el (cperl-unwind-to-safe): Don't inf-loop at end
5090 of narrowed buffer (bug#11966).
5091
5092 2012-07-20 Vincent Belaïche <vincentb1@users.sourceforge.net>
5093
5094 * ses.el (ses-rename-cell): Set new name also in reference list of
5095 cells of which the renamed cell depends.
5096
5097 2012-07-20 Masatake YAMATO <yamato@redhat.com>
5098
5099 * term/x-win.el (x-menu-bar-open): Use `frame-parameter'
5100 to check whether menu-bar is shown or not. If not shown,
5101 show the menu-bar as a popup menu instead of using tmm.
5102 * mouse.el (popup-menu): Accept `point' as `position' argument.
5103
5104 2012-07-20 Dmitry Gutov <dgutov@yandex.ru>
5105
5106 * progmodes/ruby-mode.el (ruby-parse-partial): No error when end
5107 up inside string symbol literal (bug#11923).
5108
5109 2012-07-20 Eli Zaretskii <eliz@gnu.org>
5110
5111 * startup.el (fancy-startup-text): Read the whole tutorial, not
5112 just its first 256 bytes. Prevents gibberish in display of the
5113 tutorial title.
5114
5115 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
5116
5117 Drop idle buffer compaction due to an absence of the
5118 proved efficiency.
5119 * compact.el: Remove.
5120
5121 2012-07-19 Sam Steingold <sds@gnu.org>
5122
5123 * vc/vc-dispatcher.el (vc-compilation-mode): Add, based on
5124 vc-bzr-pull & vc-bzr-merge-branch.
5125 * vc/vc-bzr.el (vc-bzr-pull, vc-bzr-merge-branch): Use it.
5126 (vc-bzr-error-regexp-alist): Rename from vc-bzr-error-regex-alist
5127 for consistency with compilation-error-regexp-alist.
5128 * vc/vc-git.el (vc-git-error-regexp-alist): Add.
5129 (vc-git-pull, vc-git-merge-branch): Call vc-compilation-mode.
5130 * vc/vc-hg.el (vc-hg-error-regexp-alist): Add.
5131 (vc-hg-pull, vc-hg-merge-branch): Call vc-compilation-mode.
5132
5133 2012-07-19 Stefan Monnier <monnier@iro.umontreal.ca>
5134
5135 * emacs-lisp/chart.el: Use lexical-binding.
5136 (chart-emacs-storage): Don't hardcode the list of entries.
5137
5138 2012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
5139
5140 Next round of tweaks caused by Fgarbage_collect changes.
5141 * emacs-lisp/chart.el (chart-emacs-storage): Adjust again.
5142
5143 2012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
5144
5145 Compact buffers when idle.
5146 * compact.el: New file.
5147
5148 2012-07-19 Stefan Monnier <monnier@iro.umontreal.ca>
5149
5150 * subr.el (eventp): Presume that if it looks vaguely like an event,
5151 it's an event (bug#10190).
5152
5153 2012-07-19 Fabián Ezequiel Gallina <fgallina@cuca>
5154
5155 Enhancements to ppss related code (thanks Stefan).
5156 * progmodes/python.el (python-indent-context)
5157 (python-indent-calculate-indentation, python-indent-dedent-line)
5158 (python-indent-electric-colon, python-nav-forward-block)
5159 (python-mode-abbrev-table)
5160 (python-info-assignment-continuation-line-p): Simplify checks
5161 for ppss context.
5162 (python-info-continuation-line-p): Cleanup.
5163 (python-info-ppss-context): Do not catch 'quote.
5164 (python-info-ppss-context-type)
5165 (python-info-ppss-comment-or-string-p): Simplify.
5166
5167 2012-07-18 Fabián Ezequiel Gallina <fgallina@cuca>
5168
5169 * progmodes/python.el: Enhancements to eldoc support.
5170 (python-info-current-symbol): New function.
5171 (python-eldoc-at-point): Use python-info-current-symbol.
5172 (python-info-current-defun): Fix cornercase on first defun scan.
5173 (python-eldoc--get-doc-at-point): Use python-info-current-symbol
5174 and signal error when no inferior python process is available.
5175
5176 2012-07-18 Dmitry Gutov <dgutov@yandex.ru>
5177
5178 * vc/vc-git.el (vc-git-state): Don't call `vc-git-registered',
5179 assume it's always t.
5180 (vc-git-registered): Remove caching, the function is only called
5181 once.
5182 (vc-git-branches): Use `vc-git--call' instead of `call-process'.
5183
5184 2012-07-18 Chong Yidong <cyd@gnu.org>
5185
5186 * subr.el (last-input-char, last-command-char): Remove (Bug#9195).
5187
5188 * simple.el (count-words): Report on narrowing (Bug#9959).
5189
5190 * bindings.el: Bind M-= to count-words.
5191
5192 * faces.el (face-spec-reset-face): Handle reverse video (Bug#4238).
5193
5194 2012-07-18 Masatake YAMATO <yamato@redhat.com>
5195
5196 * progmodes/sh-script.el (sh-imenu-generic-expression):
5197 Capture a function with `function' keyword and without parentheses
5198 like "function FOO" (bug#11856).
5199
5200 2012-07-18 Tassilo Horn <tassilo@member.fsf.org>
5201
5202 * window.el (split-window-sensibly): Make WINDOW argument
5203 optional.
5204
5205 2012-07-18 Chong Yidong <cyd@gnu.org>
5206
5207 * subr.el (keyboard-translate): Doc fix (Bug#7261).
5208
5209 * isearch.el (isearch-mode-map): Handle C-x 8 key translations,
5210 and make C-x 8 RET exit isearch (Bug#11439).
5211
5212 * international/iso-transl.el: Move isearch-mode-map key
5213 definitions to isearch.el.
5214
5215 2012-07-18 Stefan Monnier <monnier@iro.umontreal.ca>
5216
5217 * emacs-lisp/eieio.el: Adapt further to gv.el (bug#11970).
5218 (eieio-defclass): Use gv-define-setter when possible.
5219
5220 2012-07-18 Dmitry Antipov <dmantipov@yandex.ru>
5221
5222 Reflect recent changes in Fgarbage_collect.
5223 * emacs-lisp/chart.el (chart-emacs-storage): Change to
5224 reflect new format of data returned by Fgarbage_collect.
5225
5226 2012-07-17 Fabián Ezequiel Gallina <fgallina@cuca>
5227
5228 New utility functions + python-info-ppss-context fix (Bug#11910).
5229 * progmodes/python.el (python-info-beginning-of-block-statement-p)
5230 (python-info-ppss-comment-or-string-p): New functions.
5231 (python-info-ppss-context): Small fix for string check.
5232
5233 2012-07-17 Juri Linkov <juri@jurta.org>
5234
5235 * dired-aux.el (dired-do-async-shell-command): Doc fix.
5236 (dired-do-async-shell-command): Don't add `*' at the end of the
5237 command (Bug#11815).
5238 (dired-do-shell-command): Doc fix.
5239 (dired-shell-stuff-it): Strip the trailing "&" and ";" if any.
5240 Join the individual commands using either "&" or ";" as the
5241 separator depending on the values of these trailing characters.
5242 At the end re-add the trailing "&". (Bug#10598)
5243
5244 * simple.el (async-shell-command): Sync the interactive spec with
5245 `shell-command'. Doc fix.
5246 (shell-command): Doc fix.
5247
5248 2012-07-17 Juri Linkov <juri@jurta.org>
5249
5250 * descr-text.el (describe-char): Fix format args. (Bug#10129)
5251
5252 2012-07-17 Fabián Ezequiel Gallina <fgallina@cuca>
5253
5254 Final renames and doc fixes for movement commands (bug#11899).
5255 * progmodes/python.el (python-nav-beginning-of-statement):
5256 Rename from python-nav-statement-start.
5257 (python-nav-end-of-statement): Rename from
5258 python-nav-statement-end.
5259 (python-nav-beginning-of-block): Rename from
5260 python-nav-block-start.
5261 (python-nav-end-of-block): Rename from python-nav-block-end.
5262
5263 2012-07-17 Fabián Ezequiel Gallina <fgallina@cuca>
5264
5265 * progmodes/python.el (python-shell-send-string-no-output):
5266 Allow accept-process-output to quit, keeping shell process ready for
5267 future interactions (Bug#11868).
5268
5269 2012-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
5270
5271 * emacs-lisp/cl-macs.el (cl-progv): Use a properly prefixed var name.
5272
5273 * emacs-lisp/elint.el (elint-find-args-in-code):
5274 Use help-function-arglist, so as to handle lexical byte-code.
5275
5276 * progmodes/sh-script.el (sh-syntax-propertize-function): Fix last
5277 change (bug#11826).
5278
5279 2012-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
5280
5281 * progmodes/cc-engine.el (c-forward-sws, c-backward-sws):
5282 Avoid spuriously marking the buffer as modified because of c-is-sws.
5283
5284 * progmodes/sh-script.el (sh-syntax-propertize-function): Mark "${#VAR"
5285 as not-a-comment (bug#11946).
5286
5287 * emacs-lisp/macroexp.el (macroexp-let2): Use more informative names
5288 for uninterned vars.
5289
5290 * xt-mouse.el (xterm-mouse-translate-1, xterm-mouse-event-read):
5291 Use read-event since we don't really want to read chars but bytes.
5292
5293 * textmodes/tex-mode.el (tex-font-lock-keywords-1): Highlight not only
5294 $$..$$ but also $..$ using regexps (bug#11953).
5295 Use tex-verbatim for \url and \path.
5296 (tex-font-lock-keywords): Define as defconst like the others.
5297 (tex-common-initialization): Don't use font-lock-syntax-table any more.
5298
5299 2012-07-16 René Kyllingstad <Rene@Kyllingstad.com> (tiny change)
5300
5301 * international/mule-cmds.el (ucs-insert): Make it an obsolete
5302 alias for insert-char.
5303
5304 2012-07-16 Fabián Ezequiel Gallina <fgallina@cuca>
5305
5306 * progmodes/python.el: Simplified imenu implementation.
5307 (python-nav-jump-to-defun): Remove command.
5308 (python-mode-map): Use `imenu' instead.
5309 (python-nav-list-defun-positions-cache)
5310 (python-imenu-include-defun-type, python-imenu-make-tree)
5311 (python-imenu-subtree-root-label, python-imenu-index-alist):
5312 Remove vars.
5313 (python-nav-list-defun-positions, python-nav-read-defun)
5314 (python-imenu-tree-assoc, python-imenu-make-element-tree)
5315 (python-imenu-make-tree, python-imenu-create-index):
5316 Remove functions.
5317 (python-mode): Update to interact with imenu by setting
5318 `imenu-extract-index-name-function' only.
5319
5320 2012-07-16 Fabián Ezequiel Gallina <fgallina@cuca>
5321
5322 * progmodes/python.el: Enhancements to navigation commands.
5323 (python-nav-backward-sentence)
5324 (python-nav-forward-sentence): Remove.
5325 (python-nav-backward-statement, python-nav-forward-statement)
5326 (python-nav-statement-start, python-nav-statement-end)
5327 (python-nav-backward-block, python-nav-forward-block)
5328 (python-nav-block-start, python-nav-block-end)
5329 (python-nav-forward-sexp-function)
5330 (python-info-current-line-comment-p)
5331 (python-info-current-line-empty-p): New functions.
5332 (python-indent-context): Use `python-nav-statement-start'.
5333
5334 2012-07-16 Michael Albinus <michael.albinus@gmx.de>
5335
5336 * eshell/em-ls.el (eshell/ls): Use `apply'.
5337
5338 * eshell/em-unix.el (eshell/su, eshell/sudo): Apply Tramp's ad-hoc
5339 multi-hops, instead of Tramp internals.
5340
5341 * vc/ediff.el (ediff-directories): Add trailing space to prompts.
5342
5343 * vc/ediff-diff.el (ediff-same-file-contents): Handle the case,
5344 when F1 and F2 are located on different hosts.
5345
5346 2012-07-14 Chong Yidong <cyd@gnu.org>
5347
5348 * xt-mouse.el: Implement extended mouse coordinates (Bug#10642).
5349 (xterm-mouse-translate): Move code into xterm-mouse-translate-1.
5350 (xterm-mouse-translate-extended, xterm-mouse-translate-1)
5351 (xterm-mouse--read-event-sequence-1000)
5352 (xterm-mouse--read-event-sequence-1006): New functions. For old
5353 mouse protocol, handle M-mouse-X events correctly.
5354 (xterm-mouse-event): New arg specifying mouse protocol.
5355 (turn-on-xterm-mouse-tracking-on-terminal)
5356 (turn-off-xterm-mouse-tracking-on-terminal): Send DEC 1006
5357 sequence to toggle extended coordinates on newer XTerms.
5358 This appears to be harmless on terminals which do not support this.
5359
5360 2012-07-14 Leo Liu <sdl.web@gmail.com>
5361
5362 Add fringe bitmap indicators for flymake. (Bug#11253)
5363 * progmodes/flymake.el (flymake-highlight-line): Use fringe bitmaps.
5364 (flymake-make-overlay): New arg BITMAP.
5365 (flymake-error-bitmap, flymake-warning-bitmap)
5366 (flymake-fringe-indicator-position): New user variables.
5367
5368 * fringe.el: New bitmap exclamation-mark.
5369
5370 2012-07-14 Jan Djärv <jan.h.d@swipnet.se>
5371
5372 * progmodes/cc-cmds.el (c-defun-name): Recognize Objective-C methods
5373 also (Bug#7879).
5374
5375 2012-07-14 Chong Yidong <cyd@gnu.org>
5376
5377 * electric.el (electric-pair-post-self-insert-function): Fix pair
5378 insertion in empty-region case (Bug#11520).
5379
5380 2012-07-14 Chong Yidong <cyd@gnu.org>
5381
5382 * bindings.el: Consolidate ctl-x-r-map bindings.
5383 Bind copy-rectangle-as-kill to C-x r w.
5384
5385 * rect.el, register.el: Move bindings to bindings.el.
5386
5387 2012-07-14 Reuben Thomas <rrt@sc3d.org>
5388
5389 * rect.el (copy-rectangle-as-kill): New command (Bug#739).
5390
5391 2012-07-13 Andreas Schwab <schwab@linux-m68k.org>
5392
5393 * emacs-lisp/cl.el (labels): Remove spurious quote. (Bug#11938)
5394
5395 2012-07-13 Juanma Barranquero <lekktu@gmail.com>
5396
5397 * bindings.el (top): Use `mapc' instead of `mapcar'.
5398
5399 * loadup.el (top): Remove bogus `if' choice (brought by 2008-06-21T01:38:39Z!monnier@iro.umontreal.ca).
5400
5401 2012-07-13 Michael Albinus <michael.albinus@gmx.de>
5402
5403 * progmodes/sql.el (sql-comint): Suppress the check for program on
5404 remote hosts. Reported by Francis Devereux <francis@devrx.org>.
5405 (Bug#11908)
5406
5407 2012-07-13 Chong Yidong <cyd@gnu.org>
5408
5409 * bindings.el: Assign a non-nil permanent-local property to
5410 per-buffer variables which lack a default value (Bug#11930).
5411
5412 * help-fns.el (describe-variable): In the "automatically becomes
5413 local" notice, take note of permanent-local variables.
5414
5415 2012-07-13 Chong Yidong <cyd@gnu.org>
5416
5417 * files.el (toggle-read-only): Doc fix and code cleanup. New arg
5418 to allow printing the message when called from Lisp.
5419
5420 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
5421 Remove toggle-read-only.
5422
5423 * bs.el (bs-toggle-readonly):
5424 * buff-menu.el (Buffer-menu-toggle-read-only):
5425 Remove with-no-warnings around toggle-read-only.
5426
5427 * ffap.el (ffap--toggle-read-only): Accept a list of buffers.
5428 Remove with-no-warnings around toggle-read-only.
5429 (ffap-read-only, ffap-read-only-other-window)
5430 (ffap-read-only-other-frame): Callers changed.
5431
5432 * help-mode.el: Don't require view package.
5433 (help-mode-finish): Set buffer-read-only instead of calling
5434 toggle-read-only.
5435
5436 * bindings.el (mode-line-toggle-read-only):
5437 * dired.el (dired-toggle-read-only):
5438 * ibuffer.el (ibuffer-do-toggle-read-only): Call toggle-read-only
5439 with non-nil second arg.
5440
5441 * emacs-lisp/eieio-custom.el (eieio-customize-object):
5442 * vc/ediff.el (ediff-set-read-only-in-buf-A): Set buffer-read-only
5443 directly.
5444
5445 2012-07-12 Eli Zaretskii <eliz@gnu.org>
5446
5447 * emacs-lisp/bytecomp.el (byte-recompile-directory): Use cl-incf,
5448 not incf.
5449
5450 2012-07-11 Stefan Monnier <monnier@iro.umontreal.ca>
5451
5452 More CL cleanups and reduction of use of cl.el.
5453 * woman.el, winner.el, vc/vc-rcs.el, vc/vc-hooks.el, vc/vc-hg.el:
5454 * vc/vc-git.el, vc/vc-dir.el, vc/vc-bzr.el, vc/vc-annotate.el:
5455 * textmodes/tex-mode.el, textmodes/sgml-mode.el, tar-mode.el:
5456 * strokes.el, ses.el, server.el, progmodes/js.el, progmodes/gdb-mi.el:
5457 * progmodes/flymake.el, progmodes/ebrowse.el, progmodes/compile.el:
5458 * play/tetris.el, play/snake.el, play/pong.el, play/landmark.el:
5459 * play/hanoi.el, play/decipher.el, play/5x5.el, nxml/nxml-mode.el:
5460 * net/secrets.el, net/quickurl.el, midnight.el, mail/footnote.el:
5461 * image-dired.el, ibuffer.el, ibuf-macs.el, ibuf-ext.el, hexl.el:
5462 * eshell/eshell.el, eshell/esh-io.el, eshell/esh-ext.el:
5463 * eshell/esh-cmd.el, eshell/em-ls.el, eshell/em-hist.el:
5464 * eshell/em-cmpl.el, eshell/em-banner.el:
5465 * calendar/parse-time.el: Use cl-lib.
5466 * wid-browse.el, wdired.el, vc/vc.el, vc/vc-mtn.el, vc/vc-cvs.el:
5467 * vc/vc-arch.el, tree-widget.el, textmodes/texinfo.el:
5468 * textmodes/refill.el, textmodes/css-mode.el, term/tvi970.el:
5469 * term/ns-win.el, term.el, shell.el, ps-samp.el:
5470 * progmodes/perl-mode.el, progmodes/pascal.el, progmodes/gud.el:
5471 * progmodes/glasses.el, progmodes/etags.el, progmodes/cwarn.el:
5472 * play/gamegrid.el, play/bubbles.el, novice.el, notifications.el:
5473 * net/zeroconf.el, net/xesam.el, net/snmp-mode.el, net/mairix.el:
5474 * net/ldap.el, net/eudc.el, net/browse-url.el, man.el:
5475 * mail/mailheader.el, mail/feedmail.el: Don't use CL.
5476 * ibuf-ext.el (ibuffer-mark-old-buffers): Use float-time.
5477 * eshell/esh-opt.el (eshell-eval-using-options): Quote code with
5478 `lambda' rather than with `quote'.
5479 (eshell-do-opt): Adjust accordingly.
5480 (eshell-process-option): Simplify.
5481 * eshell/esh-var.el:
5482 * eshell/em-script.el: Require `esh-opt' for eshell-eval-using-options.
5483 * emacs-lisp/pcase.el (pcase--dontcare-upats, pcase--let*)
5484 (pcase--expand, pcase--u1): Rename pcase's internal `dontcare' pattern
5485 to `pcase--dontcare'.
5486 * emacs-lisp/cl.el (labels): Mark obsolete.
5487 (cl--letf, letf): Move to cl-lib.
5488 (cl--letf*, letf*): Remove.
5489 * emacs-lisp/cl-lib.el (cl-nth-value): Use defalias.
5490 * emacs-lisp/cl-macs.el (cl-dolist, cl-dotimes): Add indent rule.
5491 (cl-progv): Rewrite.
5492 (cl--letf, cl-letf): Move from cl.el.
5493 (cl-letf*): New macro.
5494 * emacs-lisp/cl-extra.el (cl--progv-before, cl--progv-after): Remove.
5495
5496 2012-07-11 Michael Albinus <michael.albinus@gmx.de>
5497
5498 * net/ange-ftp.el (ange-ftp-cf1): Update the files cache.
5499
5500 2012-07-11 Chong Yidong <cyd@gnu.org>
5501
5502 * vc/log-edit.el (log-edit-vc-backend): New variable.
5503 (log-edit): Doc fix.
5504
5505 * vc/vc-dispatcher.el (vc-log-edit): New args. Use PARAMS
5506 argument of log-edit to set up all local variables.
5507 (vc-start-logentry): New optional arg specifying VC backend.
5508
5509 * vc/vc.el (vc-checkin): Use it.
5510 (vc-deduce-fileset): Handle Log Edit buffers.
5511 (vc-diff): Make first argument optional too.
5512
5513 * vc/log-view.el (log-view-vc-fileset, log-view-vc-backend): Doc fix.
5514
5515 2012-07-10 Michael Albinus <michael.albinus@gmx.de>
5516
5517 * eshell/esh-ext.el (eshell-remote-command): Remove remote part of
5518 command, just in case. The function is not needed anymore.
5519 (eshell-external-command): Do not call `eshell-remote-command'.
5520
5521 2012-07-10 Stefan Monnier <monnier@iro.umontreal.ca>
5522
5523 Reduce use of (require 'cl).
5524 * vc/smerge-mode.el, vc/pcvs.el, vc/pcvs-util.el, vc/pcvs-info.el:
5525 * vc/diff-mode.el, vc/cvs-status.el, uniquify.el, scroll-bar.el:
5526 * register.el, progmodes/sh-script.el, net/gnutls.el, net/dbus.el:
5527 * msb.el, mpc.el, minibuffer.el, international/ucs-normalize.el:
5528 * international/quail.el, info-xref.el, imenu.el, image-mode.el:
5529 * font-lock.el, filesets.el, edmacro.el, doc-view.el, bookmark.el:
5530 * battery.el, avoid.el, abbrev.el: Use cl-lib.
5531 * vc/pcvs-parse.el, vc/pcvs-defs.el, vc/log-view.el, vc/log-edit.el:
5532 * vc/diff.el, simple.el, pcomplete.el, lpr.el, comint.el, loadhist.el:
5533 * jit-lock.el, international/iso-ascii.el, info.el, frame.el, bs.el:
5534 * emulation/crisp.el, electric.el, dired.el, cus-dep.el, composite.el:
5535 * calculator.el, autorevert.el, apropos.el: Don't require CL.
5536 * emacs-lisp/bytecomp.el (byte-recompile-directory, display-call-tree)
5537 (byte-compile-unfold-bcf, byte-compile-check-variable):
5538 * emacs-lisp/byte-opt.el (byte-compile-trueconstp)
5539 (byte-compile-nilconstp):
5540 * emacs-lisp/autoload.el (make-autoload): Use pcase.
5541 * face-remap.el (text-scale-adjust): Simplify pcase patterns.
5542
5543 * emacs-lisp/gv.el (cond): Make it a valid place.
5544 (if): Simplify slightly.
5545
5546 * emacs-lisp/pcase.el (pcase): Accept self-quoting exps as "upatterns".
5547 (pcase--self-quoting-p): New function.
5548 (pcase--u1): Use it.
5549
5550 2012-07-10 Glenn Morris <rgm@gnu.org>
5551
5552 * emacs-lisp/authors.el (authors-fixed-entries):
5553 (authors-renamed-files-alist): Update for configure.in -> configure.ac.
5554
5555 2012-07-09 Paul Eggert <eggert@cs.ucla.edu>
5556
5557 Rename configure.in to configure.ac (Bug#11603).
5558 * emacs-lisp/authors.el (authors-canonical-file-name):
5559 * progmodes/autoconf.el (autoconf-mode):
5560 Prefer configure.ac to configure.in.
5561
5562 2012-07-08 Chong Yidong <cyd@gnu.org>
5563
5564 * mouse.el (mouse-drag-line): Rewrite the track-mouse loop.
5565 Implement the mouse-1-click-follows-link handling properly.
5566
5567 * info.el (Info-link-keymap): Use follow-link mechanism for
5568 header-line links (Bug#374).
5569
5570 * simple.el (deactivate-mark): Do not set the primary selection
5571 if another program has acquired it (Bug#11772).
5572
5573 2012-07-07 Kevin Ryde <user42@zip.com.au>
5574
5575 * woman.el (woman-strings): Fix double-quote handling (Bug#1151).
5576 (woman-decode-region): Replace escaped-escapes without destroying
5577 bold or underline (Bug#11552).
5578 (woman2-process-escapes): Handle nofill regions (Bug#11591).
5579
5580 2012-07-07 Chong Yidong <cyd@gnu.org>
5581
5582 * simple.el (yank-pop-change-selection): Doc fix (Bug#11361).
5583 (interprogram-cut-function, interprogram-paste-function):
5584 Mention that we typically mean the clipboard.
5585
5586 2012-07-06 Glenn Morris <rgm@gnu.org>
5587
5588 * kmacro.el (kmacro-call-macro): Restore repeat message. (Bug#11817)
5589
5590 * files.el (toggle-read-only): Restrict message to interactive use.
5591
5592 2012-07-06 Michael Albinus <michael.albinus@gmx.de>
5593
5594 * net/tramp.el (tramp-restricted-shell-hosts-alist): New defcustom.
5595
5596 * net/tramp-sh.el (tramp-maybe-open-connection): Handle it.
5597
5598 2012-07-06 Glenn Morris <rgm@gnu.org>
5599
5600 * Makefile.in (compile-one-process): Rename from "recompile".
5601
5602 * Makefile.in (bzr-update): "compile" is the same as "recompile
5603 autoloads", but parallelizable, so use that instead.
5604
5605 2012-07-06 Dmitry Gutov <dgutov@yandex.ru>
5606
5607 * window.el (quit-window): Always restore window height when
5608 it's saved in quit-restore parameter (Bug#11810).
5609
5610 2012-07-06 Glenn Morris <rgm@gnu.org>
5611
5612 * simple.el (kill-whole-line): Doc tweak.
5613
5614 2012-07-06 Eli Zaretskii <eliz@gnu.org>
5615
5616 * files.el (file-relative-name): Compare file names
5617 case-insensitively if on MS-Windows or MS-DOS, or if
5618 read-file-name-completion-ignore-case is non-nil. Don't use
5619 case-fold-search for this purpose. (Bug#11827)
5620
5621 2012-07-17 Andreas Schwab <schwab@linux-m68k.org>
5622
5623 * calendar/cal-dst.el (calendar-current-time-zone):
5624 Return calendar-current-time-zone-cache if non-nil.
5625
5626 2012-07-17 Masatake YAMATO <yamato@redhat.com>
5627 2012-07-06 Andreas Schwab <schwab@linux-m68k.org>
5628
5629 * calendar/cal-dst.el (calendar-current-time-zone):
5630 Return calendar-current-time-zone-cache if non-nil.
5631
5632 2012-07-06 Glenn Morris <rgm@gnu.org>
5633
5634 * Makefile.in (cvs-update): Remove old alias.
5635
5636 2012-07-05 Michael Albinus <michael.albinus@gmx.de>
5637
5638 Sync with Tramp 2.2.6-pre.
5639
5640 * net/tramp.el (tramp-drop-volume-letter): Provide an XEmacs
5641 compatible declaration.
5642
5643 * net/tramp-cmds.el (tramp-append-tramp-buffers):
5644 Protect `list-load-path-shadows' call.
5645
5646 * net/tramp-compat.el (top): Require packages, which aren't
5647 autoloaded anymore for XEmacs. Protect call of
5648 `tramp-file-name-handler' by `tramp-compat-funcall', pacifying the
5649 compiler. Do not require tramp-util.el and tramp-vc.el anymore,
5650 it hurts at least for SXEmacs.
5651 (tramp-compat-temporary-file-directory): In XEmacs, there is no
5652 standard-value for `temporary-file-directory'.
5653
5654 * net/tramp-sh.el (tramp-do-directory-files-and-attributes-with-stat):
5655 Redirect stderr to /dev/null.
5656 (tramp-sh-handle-write-region): uid and gid can be floats.
5657 Reported by Russell Sim <russell.sim@gmail.com>.
5658 (tramp-sh-handle-vc-registered): Hide errors.
5659 (tramp-vc-file-name-handler): Use dummy results for `process-file'
5660 and `start-file-process'.
5661 (tramp-maybe-open-connection): Check also whether `non-essential'
5662 is bound.
5663
5664 2012-07-04 Chong Yidong <cyd@gnu.org>
5665
5666 * xml.el (xml--parse-buffer): Use xml-syntax-table.
5667 (xml-parse-tag): Likewise, and avoid changing entity tables.
5668 (xml-syntax-table): Define from scratch, making sure not to give
5669 x2000 and other Unicode spaces whitespace syntax, since those are
5670 not spaces in XML.
5671 (xml-parse-fragment): Delete unused function.
5672 (xml-name-start-char-re, xml-name-char-re, xml-name-re)
5673 (xml-names-re, xml-nmtoken-re, xml-nmtokens-re, xml-char-ref-re)
5674 (xml-entity-ref, xml-pe-reference-re)
5675 (xml-reference-re,xml-att-value-re, xml-tokenized-type-re)
5676 (xml-notation-type-re, xml-enumeration-re, xml-enumerated-type-re)
5677 (xml-att-type-re, xml-default-decl-re, xml-att-def-re)
5678 (xml-entity-value-re): Use syntax references in regexps where
5679 possible; no need to define inside a let-binding.
5680 (xml-parse-dtd): Use xml-pe-reference-re.
5681 (xml-entity-or-char-ref-re): New defconst.
5682 (xml-parse-string, xml-substitute-special): Use it.
5683
5684 2012-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
5685
5686 * files.el (locate-dominating-file): Allow `name' to be a predicate.
5687 (find-file--read-only): New function.
5688 (find-file-read-only, find-file-read-only-other-window)
5689 (find-file-read-only-other-frame): Use it.
5690 (insert-file-contents-literally): Don't `fset'.
5691 (get-free-disk-space): Use locate-dominating-file.
5692
5693 * emacs-lisp/bytecomp.el (byte-compile): Don't signal an error if the
5694 function is already compiled.
5695
5696 * xml.el (xml-name-regexp): Remove, redundant. Use xml-name-re.
5697
5698 2012-07-03 Michael Albinus <michael.albinus@gmx.de>
5699
5700 * vc/ediff-diff.el (ediff-same-file-contents): Fix it for remote
5701 files on the same host.
5702
5703 2012-07-03 Andreas Schwab <schwab@linux-m68k.org>
5704
5705 * help-fns.el (describe-function-1): Only call
5706 help-fns--autoloaded-p when we have a file name. (Bug#11848)
5707
5708 2012-07-03 Chong Yidong <cyd@gnu.org>
5709
5710 * xml.el: Protect parser against XML bombs.
5711 (xml-entity-expansion-limit): New variable.
5712 (xml-parse-string, xml-substitute-special): Use it.
5713 (xml-parse-dtd): Avoid infloop if the DTD is not terminated.
5714
5715 2012-07-03 Glenn Morris <rgm@gnu.org>
5716
5717 * progmodes/bug-reference.el (bug-reference-bug-regexp):
5718 Allow linking to specific messages in debbugs reports (eg 123#5).
5719
5720 2012-07-02 Chong Yidong <cyd@gnu.org>
5721
5722 * xml.el: Fix entity and character reference expansion, allowing
5723 them to expand into markup as per XML spec.
5724 (xml-default-ns): New variable.
5725 (xml-entity-alist): Use XML spec definitions for lt and amp.
5726 (xml-parse-region): Make first two arguments optional.
5727 Discard text properties.
5728 (xml-parse-tag-1): New function, spun off from xml-parse-tag.
5729 All callers changed.
5730 (xml-parse-tag): Call xml-parse-tag-1. For backward
5731 compatibility, this function should not modify buffer contents.
5732 (xml-parse-tag-1): Fix opening-tag regexp.
5733 (xml-parse-string): Rewrite, handling entity and character
5734 references properly.
5735 (xml--entity-replacement-text): Signal an error if a parameter
5736 entity is undefined.
5737
5738 2012-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
5739
5740 * comint.el (comint-output-filter): Filter out repeated prompts.
5741
5742 * net/ange-ftp.el (ange-ftp-expand-file-name): Use ange-ftp-ftp-name
5743 and file-name-absolute-p.
5744 (ange-ftp-file-exists-p): Use ange-ftp-file-exists-p for
5745 internal calls.
5746
5747 2012-07-02 Paul Eggert <eggert@cs.ucla.edu>
5748
5749 Spelling fixes.
5750 * emacs-lisp/bytecomp.el (byte-compile--reify-function):
5751 Rename from byte-compile--refiy-function. All uses changed.
5752
5753 2012-07-01 Chong Yidong <cyd@gnu.org>
5754
5755 * xml.el (xml--parse-buffer): New function. Move most of
5756 xml-parse-region here.
5757 (xml-parse-region): Copy region into a temporary buffer, since
5758 parameter entity substitution requires changing buffer contents.
5759 Use xml--parse-buffer.
5760 (xml-parse-file): Use xml--parse-buffer.
5761 (xml-parse-dtd): Make parameter entity substitution work right.
5762 Use proper regexps for ELEMENT declarations (Bug#7172).
5763
5764 2012-06-30 Glenn Morris <rgm@gnu.org>
5765
5766 * comint.el (follow-comint-scroll-to-bottom): Fix declaration.
5767
5768 * net/secrets.el, net/tramp-gvfs.el, net/xesam.el, net/zeroconf.el:
5769 Remove outdated and unnecessary dbus declarations.
5770
5771 2012-06-30 Eli Zaretskii <eliz@gnu.org>
5772
5773 * emacs-lisp/timer.el (timer-until): Subtract results of
5774 float-time, instead of taking float-time of the result of
5775 time-subtract, since float-time signals an error for negative time
5776 arguments.
5777
5778 2012-06-30 Chong Yidong <cyd@gnu.org>
5779
5780 * xml.el (xml-*-re): Convert defvars into defconsts, and
5781 eval-and-compile them so eval-and-compile works on derivatives.
5782 (xml--entity-replacement-text): Use eval-and-comple.
5783
5784 2012-06-30 Michael Albinus <michael.albinus@gmx.de>
5785
5786 * vc/vc-git.el (vc-git-registered): Use cache property
5787 `git-registered'.
5788 (vc-git-mode-line-string): Call `vc-working-revision' instead of
5789 `vc-git-working-revision' in order to benefit from the cache.
5790 (vc-git-root): Use cache property `git-root'. (Bug#11757)
5791
5792 2012-06-30 Dmitry Gutov <dgutov@yandex.ru>
5793
5794 * vc/vc-hooks.el (vc-before-save): Clear cache if file has been
5795 removed (likely outside Emacs). (Bug#11757)
5796
5797 2012-06-30 Stefan Monnier <monnier@iro.umontreal.ca>
5798
5799 * emacs-lisp/cl-lib.el: Require macroexp.
5800
5801 2012-06-30 Chong Yidong <cyd@gnu.org>
5802
5803 * xml.el: Implement XML parameter entities.
5804 (xml-parameter-entity-alist): New variable.
5805 (xml-parse-region, xml-parse-fragment): Preserve previous values
5806 of xml-entity-alist and xml-parameter-entity-alist, so that
5807 repeated calls on different documents do not change them.
5808 (xml-parse-tag): Fix doctype regexp.
5809 (xml--entity-replacement-text): New function.
5810 (xml-parse-dtd): Use it. Don't handle system entities; doing that
5811 properly requires url retrieval which is unimplemented.
5812 (xml-escape-string): Doc fix.
5813
5814 2012-06-30 Stefan Monnier <monnier@iro.umontreal.ca>
5815
5816 * emacs-lisp/cl-lib.el (cl-pushnew): Use macroexp-let2.
5817
5818 2012-06-29 Dmitry Antipov <dmantipov@yandex.ru>
5819
5820 * fringe.el (fringe-mode): Doc fix.
5821
5822 2012-06-29 Michael Albinus <michael.albinus@gmx.de>
5823
5824 * net/ange-ftp.el (ange-ftp-get-passwd): Throw if `non-essential'
5825 is non-nil.
5826 (ange-ftp-ignore-errors-if-non-essential): New defmacro.
5827 (ange-ftp-file-name-all-completions): Use it. (Bug#11808)
5828
5829 2012-06-29 Andreas Schwab <schwab@linux-m68k.org>
5830
5831 * calendar/cal-dst.el (calendar-current-time-zone):
5832 Return calendar-current-time-zone-cache if non-nil.
5833
5834 2012-06-29 Masatake YAMATO <yamato@redhat.com>
5835
5836 * progmodes/which-func.el (which-func-format):
5837 Add mouse-face. (Bug#11698)
5838
5839 2012-06-29 Leo Liu <sdl.web@gmail.com>
5840
5841 * textmodes/enriched.el (enriched-next-annotation): Use eq (Bug#11528).
5842
5843 2012-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
5844
5845 * minibuffer.el (minibuffer-confirm-exit-commands):
5846 Add completion-at-point (bug#11725).
5847
5848 2012-06-29 Glenn Morris <rgm@gnu.org>
5849
5850 * progmodes/f90.el (f90-font-lock-keywords-2):
5851 Add some preprocessor elements. (Bug#10499)
5852
5853 2012-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
5854
5855 * progmodes/cperl-mode.el (cperl-update-syntaxification):
5856 Use syntax-propertize (bug#11739).
5857
5858 2012-06-28 Juanma Barranquero <lekktu@gmail.com>
5859
5860 * emacs-lisp/cl-lib.el (cl-pushnew): Don't capture X (bug#11811).
5861
5862 2012-06-28 Julien Danjou <julien@danjou.info>
5863
5864 * term.el (term-handle-colors-array): Use a set of new faces to
5865 color the terminal. Also uses :inverse-video property.
5866 (term-default-fg-color): Set to nil by default, deprecate in favor
5867 of `term-face'.
5868 (term-default-bg-color): Set to nil by default, deprecate in favor
5869 of `term-face'.
5870 (term-current-face): Use `term-face' by default.
5871 (term-bold-attribute): Variable deleted.
5872
5873 2012-06-28 Glenn Morris <rgm@gnu.org>
5874
5875 * simple.el (completion-list-mode-finish):
5876 Don't use toggle-read-only. (Since completion-list-mode has
5877 a special mode-class, it wasn't doing anything extra anyway.)
5878
5879 2012-06-28 Stefan Monnier <monnier@iro.umontreal.ca>
5880
5881 Make inlining of other-mode interpreted functions work (bug#11799).
5882 * emacs-lisp/bytecomp.el (byte-compile--refiy-function): New fun.
5883 (byte-compile): Use it to fix compilation of lexical-binding closures.
5884 * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Compile the
5885 function, if needed.
5886
5887 2012-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
5888
5889 * help-mode.el (help-make-xrefs): Don't just withstand
5890 cyclic-variable-indirection but any error in documentation-property.
5891
5892 * loadup.el (purify-flag): Pre-grow the hash-table to reduce the
5893 memory use.
5894 * bindings.el (bindings--define-key): New function.
5895 * vc/vc-hooks.el, replace.el, menu-bar.el, international/mule-cmds.el:
5896 * emacs-lisp/lisp-mode.el, buff-menu.el, bookmark.el:
5897 * bindings.el: Use it to purecopy define-key bindings.
5898
5899 * textmodes/rst.el (rst-adornment-faces-alist): Avoid copy-list.
5900
5901 * emacs-lisp/cl.el (flet): Mark obsolete.
5902 * emacs-lisp/cl-macs.el (cl-flet*): New macro.
5903 * vc/vc-rcs.el (vc-rcs-annotate-command, vc-rcs-parse):
5904 * progmodes/js.el (js-c-fill-paragraph):
5905 * progmodes/ebrowse.el (ebrowse-switch-member-buffer-to-sibling-class)
5906 (ebrowse-switch-member-buffer-to-derived-class):
5907 * play/5x5.el (5x5-solver): Use cl-flet.
5908
5909 * emacs-lisp/cl.el: Use lexical-binding. Fix flet (bug#11780).
5910 (cl--symbol-function): New macro.
5911 (cl--letf, cl--letf*): Use it.
5912
5913 * emacs-lisp/easy-mmode.el (easy-mmode-pretty-mode-name):
5914 Strip "toggle-" if any.
5915
5916 2012-06-27 Glenn Morris <rgm@gnu.org>
5917
5918 * info.el (Info-default-directory-list): Move here from paths.el.
5919 * paths.el: Remove file, which is now empty.
5920 * loadup.el: No longer load "paths".
5921
5922 * custom.el (custom-initialize-delay): Doc fix.
5923
5924 * eshell/em-alias.el, eshell/em-banner.el, eshell/em-basic.el:
5925 * eshell/em-cmpl.el, eshell/em-dirs.el, eshell/em-glob.el:
5926 * eshell/em-hist.el, eshell/em-ls.el, eshell/em-pred.el:
5927 * eshell/em-prompt.el, eshell/em-rebind.el, eshell/em-script.el:
5928 * eshell/em-smart.el, eshell/em-term.el, eshell/em-unix.el:
5929 * eshell/em-xtra.el: Replace eshell-defgroup with "(progn (defgroup".
5930 * eshell/eshell.el (eshell-defgroup): Remove alias.
5931
5932 2012-06-27 Chong Yidong <cyd@gnu.org>
5933
5934 * help.el (help-enable-auto-load): New variable.
5935
5936 * help-fns.el (help-fns--autoloaded-p): New function.
5937 (describe-function-1): Refer to a function as "autoloaded" if it
5938 was autoloaded at any time in the past. Perform autoloading if
5939 help-enable-auto-load is non-nil.
5940
5941 2012-06-26 Eli Zaretskii <eliz@gnu.org>
5942
5943 * makefile.w32-in (compile, compile-always): Depend on
5944 update-subdirs, not on subdirs.el. Otherwise, several different
5945 sub-targets of 'bootstrap' running in parallel could
5946 simultaneously write to subdirs.el, producing a garbled file.
5947
5948 2012-06-26 Sam Steingold <sds@gnu.org>
5949
5950 * files.el (file-name-base): New convenience function.
5951 * autoinsert.el, cus-dep.el, doc-view.el, image-dired.el:
5952 * woman.el, eshell/esh-cmd.el, progmodes/ada-xref.el:
5953 * progmodes/cc-defs.el, progmodes/cperl-mode.el:
5954 * progmodes/flymake.el, progmodes/gud.el, progmodes/idlwave.el:
5955 * textmodes/ispell.el, textmodes/reftex-ref.el:
5956 * textmodes/tex-mode.el: Use it.
5957 Did not touch cedet and org because they are maintained elsewhere.
5958
5959 2012-06-26 Martin Rudalics <rudalics@gmx.at>
5960
5961 * calendar/calendar.el (calendar-exit): Don't try to delete or
5962 iconify last frame. See:
5963 http://lists.gnu.org/archive/html/emacs-devel/2012-06/msg00372.html
5964
5965 2012-06-25 Jim Diamond <Jim.Diamond@AcadiaU.ca> (tiny change)
5966
5967 * server.el (server-process-filter): Remember dir in the
5968 process's `server-client-directory' properties.
5969
5970 2012-06-24 Chong Yidong <cyd@gnu.org>
5971
5972 * xml.el (xml-parse-tag): Correctly handle comment embedded in
5973 non-tag text.
5974
5975 2012-06-23 Juanma Barranquero <lekktu@gmail.com>
5976
5977 * makefile.w32-in (COMPILE_FIRST): Synch with changes in 2012-06-22T21:24:54Z!monnier@iro.umontreal.ca.
5978
5979 2012-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
5980
5981 * help-fns.el (describe-variable): Don't croak when doc is not found.
5982 * vc/pcvs.el (cvs-retrieve-revision): Avoid toggle-read-only.
5983 * menu-bar.el (menu-bar-line-wrapping-menu): Purecopy a tiny bit more.
5984 * emacs-lisp/syntax.el (syntax-ppss): Simplify with new `if' place.
5985 * emacs-lisp/smie.el (smie-next-sexp): CSE.
5986 * emacs-lisp/macroexp.el (macroexp-let2): Fix edebug spec and avoid
5987 ((lambda ..) ..).
5988 * emacs-lisp/eieio.el (eieio-oref, slot-value): Use simpler defsetf.
5989
5990 2012-06-23 Chong Yidong <cyd@gnu.org>
5991
5992 * info.el (Info-mouse-follow-link): Accept symbol values of
5993 link-args. Select window; suggested by Gerhard Kahl (Bug#11672).
5994 (Info-fontify-node): Use Info-link-keymap for all navigation
5995 buttons, with link-args property to perform the desired action.
5996 (Info-link-keymap): Doc fix.
5997 (Info-next-link-keymap, Info-prev-link-keymap)
5998 (Info-up-link-keymap): Delete now-unused keymaps.
5999
6000 2012-06-23 Chong Yidong <cyd@gnu.org>
6001
6002 * mouse.el (mouse-drag-track): Deactivate the mark before popping.
6003
6004 * progmodes/python.el (python-skeleton-define): Mark abbrevs as
6005 system abbrevs.
6006
6007 * ansi-color.el (ansi-color-apply-on-region): Doc fix.
6008
6009 2012-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
6010
6011 * emacs-lisp/cl-macs.el (cl--make-usage-args): Handle improper lists
6012 (bug#11719).
6013
6014 * minibuffer.el (completion--twq-try): Try to fail more gracefully when
6015 the requote function doesn't work properly (bug#11714).
6016
6017 2012-06-23 Glenn Morris <rgm@gnu.org>
6018
6019 * pcmpl-rpm.el (pcmpl-rpm-packages): Give status messages.
6020
6021 2012-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
6022
6023 Further GV/CL cleanups.
6024 * emacs-lisp/gv.el (gv-get): Autoload functions to find their
6025 gv-expander.
6026 (gv--defun-declaration): New function.
6027 (defun-declarations-alist): Use it.
6028 (gv-define-modify-macro, gv-pushnew!, gv-inc!, gv-dec!): Remove.
6029 (gv-place): Autoload.
6030 * emacs-lisp/cl.el (cl--dotimes, cl--dolist): Remember subr.el's
6031 original definition of dotimes and dolist.
6032 * emacs-lisp/cl-macs.el (cl-expr-access-order): Remove unused.
6033 (cl-dolist, cl-dotimes): Use `dolist' and `dotimes'.
6034 * emacs-lisp/cl-lib.el: Move gv handlers from cl-macs to here.
6035 (cl-fifth, cl-sixth, cl-seventh, cl-eighth)
6036 (cl-ninth, cl-tenth): Move gv handler to the function's definition.
6037 * emacs-lisp/cl-extra.el (cl-subseq, cl-get, cl-getf): Move gv handler
6038 to the function's definition.
6039 * Makefile.in (COMPILE_FIRST): Re-order to speed it up by about 50%.
6040 * window.el:
6041 * files.el:
6042 * faces.el:
6043 * env.el: Don't use CL.
6044
6045 2012-06-22 Paul Eggert <eggert@cs.ucla.edu>
6046
6047 Support higher-resolution time stamps (Bug#9000).
6048
6049 * calendar/time-date.el (with-decoded-time-value): New arg
6050 PICO-SYMBOL in VARLIST. It's optional, for backward compatibility.
6051 (encode-time-value): New optional arg PICO. New type 3.
6052 (time-to-seconds) [!float-time]: Support the new picoseconds
6053 component if it's used.
6054 (seconds-to-time, time-subtract, time-add):
6055 Support ps-resolution time stamps as well.
6056
6057 * emacs-lisp/timer.el (timer): New component psecs. All uses changed.
6058 (timerp): Timer vectors now have length 9, not 8.
6059 (timer--time): Support new-style (4-part) time stamps.
6060 (timer-next-integral-multiple-of-time): Time stamps now have
6061 picosecond resolution, so take a bit more care about rounding.
6062 (timer-relative-time, timer-inc-time): New optional arg psecs.
6063 (timer-set-time-with-usecs): Set psecs to 0.
6064 (timer--activate): Check psecs component, too.
6065
6066 * proced.el (proced-time-lessp): Support ps-resolution stamps.
6067
6068 2012-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
6069
6070 * icomplete.el (icomplete-minibuffer-setup, icomplete-completions):
6071 Move the non-essential binding to the post/pre-command-hook where it is
6072 more obviously correct.
6073
6074 * subr.el (read-passwd): Don't use a history at all.
6075 * savehist.el (savehist-save): Remove password saved accidentally
6076 because of the above bug.
6077
6078 2012-06-22 Bastien Guerry <bzg@gnu.org>
6079
6080 * files.el (toggle-read-only): Display a message telling whether
6081 the buffer is read-only or not (bug#11726).
6082
6083 2012-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
6084
6085 * emacs-lisp/gv.el: New file.
6086 * subr.el (push, pop): Extend to generalized variables.
6087 * loadup.el (macroexp): Unload if preloaded and uncompiled (bug#11657).
6088 * emacs-lisp/cl-lib.el (cl-pop, cl-push, cl--set-nthcdr): Remove.
6089 * emacs-lisp/cl-macs.el: Require gv. Use gv-define-setter,
6090 gv-define-simple-setter, and gv-define-expander.
6091 Remove setf-methods defined in gv. Rename cl-setf -> setf.
6092 (cl-setf, cl-do-pop, cl-get-setf-method): Remove.
6093 (cl-letf, cl-letf*, cl-define-modify-macro, cl-defsetf)
6094 (cl-define-setf-expander, cl-struct-setf-expander): Move to cl.el.
6095 (cl-remf, cl-shiftf, cl-rotatef, cl-callf, cl-callf2): Rewrite with
6096 gv-letplace.
6097 (cl-defstruct): Don't define setf-method any more.
6098 * emacs-lisp/cl.el (flet): Don't autoload.
6099 (cl--letf, letf, cl--letf*, letf*, cl--gv-adapt)
6100 (define-setf-expander, defsetf, define-modify-macro)
6101 (cl-struct-setf-expander): Move from cl-lib.el.
6102 * emacs-lisp/syntax.el:
6103 * emacs-lisp/ewoc.el:
6104 * emacs-lisp/smie.el:
6105 * emacs-lisp/cconv.el:
6106 * emacs-lisp/timer.el: Rename cl-setf -> setf, cl-push -> push.
6107 (timer--time): Use gv-define-simple-setter.
6108 * emacs-lisp/macroexp.el (macroexp-let2): Rename from macroexp-let²
6109 to avoid coding-system problems in subr.el. Adjust all users.
6110 (macroexp--maxsize, macroexp-small-p): New functions.
6111 * emacs-lisp/bytecomp.el (byte-compile-file): Don't use cl-letf.
6112 * scroll-bar.el (scroll-bar-mode):
6113 * simple.el (auto-fill-mode, overwrite-mode, binary-overwrite-mode)
6114 (normal-erase-is-backspace-mode): Don't use the `eq' place.
6115 * winner.el (winner-configuration, winner-make-point-alist)
6116 (winner-set-conf, winner-get-point, winner-set): Don't abuse letf.
6117 * files.el (locate-file-completion-table): Avoid list*.
6118
6119 2012-06-22 Chong Yidong <cyd@gnu.org>
6120
6121 * dired-aux.el (dired-do-create-files): Doc fix (Bug#11327).
6122 (dired-create-files): Doc fix (Bug#11329).
6123 (dired-do-copy): Doc fix (Bug#11334).
6124 (dired-mark-read-string): Doc fix (Bug#11553).
6125
6126 * dired.el (dired-recursive-copies, dired-recursive-deletes):
6127 Doc fix (Bug#11326).
6128 (dired-make-relative): Doc fix (Bug#11332). Remove unused arg.
6129 (dired-dwim-target): Doc fix.
6130
6131 * wdired.el (wdired-mode): Doc fix.
6132
6133 2012-06-22 Glenn Morris <rgm@gnu.org>
6134
6135 * pcmpl-rpm.el (pcmpl-rpm-cache): New option.
6136 (pcmpl-rpm-cache-stamp-file): New constant.
6137 (pcmpl-rpm-cache-time, pcmpl-rpm-packages): New variables.
6138 (pcmpl-rpm-packages): Optionally cache list of packages.
6139
6140 * pcmpl-rpm.el (pcmpl-rpm): New group.
6141 (pcmpl-rpm-query-options): New option.
6142 (pcmpl-rpm-packages): No need to inline it.
6143 Use pcmpl-rpm-query-options.
6144
6145 * calendar/calendar.el (calendar-in-read-only-buffer):
6146 Avoid some needless mode changes.
6147
6148 2012-06-21 Chong Yidong <cyd@gnu.org>
6149
6150 * desktop.el (desktop-read): Don't prompt if daemon (Bug#11674).
6151 (desktop-path): Remove . from the default value (Bug#10977).
6152 (desktop-read): Use user-emacs-directory if desktop-path is nil.
6153
6154 2012-06-20 Chong Yidong <cyd@gnu.org>
6155
6156 * term.el (term-send-raw-meta): Make C-M-<char> keys work (Bug#8172).
6157
6158 2012-06-20 David Röthlisberger <david@rothlis.net> (tiny change)
6159
6160 * ido.el (ido-switch-buffer, ido-find-file): Fix up doc of C-j
6161 (bug#11201).
6162
6163 2012-06-20 Chong Yidong <cyd@gnu.org>
6164
6165 * term.el (term-window-width): Handle the case of a missing right
6166 fringe (Bug#8837).
6167 (term-check-size): Use window-text-height (Bug#5445).
6168 (term-mode): Use define-derived-mode. Minor cleanups.
6169 Set font-lock-defaults (Bug#7692).
6170 (term-move-columns, term-insert-char, term-emulate-terminal)
6171 (term-erase-in-line, term-insert-spaces): Use font-lock-face.
6172
6173 2012-06-20 Michael Albinus <michael.albinus@gmx.de>
6174
6175 * net/ange-ftp.el (ange-ftp-get-passwd):
6176 Bind `enable-recursive-minibuffers'.
6177 (ange-ftp-get-process): Throw if `non-essential' is non-nil.
6178
6179 2012-06-19 David Röthlisberger <david@rothlis.net> (tiny change)
6180
6181 * ido.el (ido-find-file): Mention C-d binding in docstring (bug#11244).
6182
6183 2012-06-19 Glenn Morris <rgm@gnu.org>
6184
6185 * progmodes/python.el (python-mode): Derive from prog-mode.
6186
6187 2012-06-19 Kevin Gallagher <Kevin.Gallagher@boeing.com>
6188
6189 * emulation/edt.el (edt-default-menu-bar-update-buffers)
6190 (edt-user-menu-bar-update-buffers): New functions.
6191 (edt-default-emulation-setup, edt-user-emulation-setup): Use them.
6192
6193 2012-06-19 Chong Yidong <cyd@gnu.org>
6194
6195 * subr.el (with-selected-window): Preserve the selected window's
6196 terminal's top-frame (Bug#4702).
6197
6198 * window.el (save-selected-window): Likewise.
6199
6200 2012-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
6201
6202 * progmodes/python.el (python-rx-constituents): Move backquote.
6203 (python-skeleton-define, python-define-auxiliary-skeleton):
6204 Use `declare'.
6205
6206 2012-06-18 Michael Albinus <michael.albinus@gmx.de>
6207
6208 * minibuffer.el (read-file-name-default): Revert the patch from
6209 2012-06-17.
6210
6211 2012-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
6212
6213 * emacs-lisp/pcase.el (pcase--expand): Warn for unused pattern.
6214 (pcase--u1, pcase--q1): Don't use apply-partially.
6215
6216 2012-06-18 Glenn Morris <rgm@gnu.org>
6217
6218 * progmodes/python.el (python-proc, python-buffer)
6219 (python-send-receive, python-send-string): Fix obsolete versions.
6220
6221 2012-06-18 Martin Rudalics <rudalics@gmx.at>
6222
6223 * window.el (special-display-p): Completely remove stringp
6224 check. Suggested by Andreas Schwab <schwab@linux-m68k.org>.
6225
6226 2012-06-17 Michael Albinus <michael.albinus@gmx.de>
6227
6228 * minibuffer.el (read-file-name-default): Bind `non-essential' to `t'.
6229
6230 * net/tramp.el (tramp-file-name-handler): Catch 'non-essential.
6231
6232 * net/ange-ftp.el (ange-ftp-gwp-start, ange-ftp-start-process):
6233 * net/tramp-sh.el (tramp-maybe-open-connection):
6234 Throw if `non-essential' is non-nil.
6235
6236 2012-06-17 Martin Rudalics <rudalics@gmx.at>
6237
6238 * window.el (special-display-p): Signal an error if BUFFER-NAME
6239 is not a string (Bug#11713).
6240
6241 2012-06-17 Paul Eggert <eggert@cs.ucla.edu>
6242
6243 * progmodes/python.el (python-info-beginning-of-backslash):
6244 Rename from python-info-beginning-of-backlash, as a spelling fix.
6245
6246 2012-06-17 Chong Yidong <cyd@gnu.org>
6247
6248 * term.el (term-emulate-terminal): If term-check-size is called,
6249 move point to the process mark without resetting point (Bug#4635).
6250
6251 2012-06-17 Glenn Morris <rgm@gnu.org>
6252
6253 * international/mule-cmds.el (mule-menu-keymap)
6254 (set-language-environment, set-locale-environment): Doc tweaks.
6255
6256 2012-06-16 Aurelien Aptel <aurelien.aptel@gmail.com>
6257
6258 * cus-face.el (custom-face-attributes): Add wave-style underline
6259 attribute.
6260 * faces.el (set-face-attribute): Update docstring to describe
6261 wave-style underline attribute.
6262
6263 2012-06-16 Chong Yidong <cyd@gnu.org>
6264
6265 * term/xterm.el (terminal-init-xterm): Discard input before
6266 querying background mode (Bug#10959).
6267
6268 2012-06-16 Stefan Merten <smerten@oekonux.de>
6269
6270 * textmodes/rst.el: Added and corrected some comments.
6271 (rst-re-alist-def): Improve symbol syntax.
6272 (rst-mode-syntax-table): Correct syntax entries.
6273 (rst-cvs-header, rst-svn-rev, rst-svn-timestamp)
6274 (rst-official-version, rst-official-cvs-rev): Update version
6275 information.
6276
6277 2012-06-15 Juanma Barranquero <lekktu@gmail.com>
6278
6279 * makefile.w32-in (COMPILE_FIRST): Synch with makefile.in changes
6280 in 2008-06-22T13:57:28Z!monnier@iro.umontreal.ca.
6281
6282 2012-06-15 Fabián Ezequiel Gallina <fgallina@cuca>
6283
6284 * progmodes/python.el: New python.el merge.
6285 (python-guess-indent): Obsolete var.
6286 (python-indent-guess-indent-offset): New defcustom.
6287 (python-indent): Obsolete var.
6288 (python-indent-offset): New defcustom.
6289 (python-python-command, python-jython-command): Delete var.
6290 (python-shell-interpreter): New defcustom.
6291 (python-pdbtrack-do-tracking-p): Delete var.
6292 (python-pdbtrack-activate): New defcustom.
6293 (python-use-skeletons): Obsolete var.
6294 (python-skeleton-autoinsert): New defcustom.
6295 (inferior-python-filter-regexp, python-continuation-offset)
6296 (python-honour-comment-indentation, python-indent-string-contents)
6297 (python-jython-packages, python-mode-hook)
6298 (python-pdbtrack-minor-mode-string, python-remove-cwd-from-path)
6299 (python-shell-prompt-alist)
6300 (python-source-modes): Delete defcustoms.
6301 (python-check-buffer-name, python-eldoc-setup-code)
6302 (python-eldoc-string-code, python-ffap-setup-code)
6303 (python-ffap-string-code, python-fill-comment-function)
6304 (python-fill-decorator-function, python-fill-paren-function)
6305 (python-fill-string-function, python-imenu-include-defun-type)
6306 (python-imenu-make-tree, python-imenu-subtree-root-label)
6307 (python-pdbtrack-stacktrace-info-regexp, python-shell-buffer-name)
6308 (python-shell-compilation-regexp-alist)
6309 (python-shell-completion-module-string-code)
6310 (python-shell-completion-pdb-string-code)
6311 (python-shell-completion-setup-code)
6312 (python-shell-completion-string-code)
6313 (python-shell-enable-font-lock, python-shell-exec-path)
6314 (python-shell-extra-pythonpaths)
6315 (python-shell-internal-buffer-name, python-shell-interpreter-args)
6316 (python-shell-process-environment)
6317 (python-shell-prompt-block-regexp)
6318 (python-shell-prompt-output-regexp)
6319 (python-shell-prompt-pdb-regexp, python-shell-prompt-regexp)
6320 (python-shell-send-setup-max-wait, python-shell-setup-codes)
6321 (python-shell-virtualenv-path): New defcustoms.
6322 (brm-menu, eldoc-documentation-function, inferior-python-mode-map)
6323 (inferior-python-mode-syntax-table, python--prompt-regexp)
6324 (python-buffer, python-command python-python-command)
6325 (python-default-template, python-imports, python-indent-index)
6326 (python-indent-list, python-indent-list-length)
6327 (python-mode-running, python-pdbtrack-is-tracking-p)
6328 (python-preoutput-continuation, python-preoutput-leftover)
6329 (python-preoutput-result, python-preoutput-skip-next-prompt)
6330 (python-prev-dir/file, python-recursing)
6331 (python-saved-check-command, python-version-checked)
6332 (python-which-func-length-limit)
6333 (view-return-to-alist): Delete vars.
6334 (python-check-custom-command, python-dotty-syntax-table)
6335 (python-imenu-index-alist, python-indent-current-level)
6336 (python-indent-dedenters, python-indent-levels)
6337 (python-nav-beginning-of-defun-regexp)
6338 (python-nav-list-defun-positions-cache)
6339 (python-pdbtrack-buffers-to-kill, python-pdbtrack-tracked-buffer)
6340 (python-shell-internal-buffer)
6341 (python-skeleton-available): New vars.
6342 (def-python-skeleton): Delete macro.
6343 (python-skeleton-define): New macro.
6344 (python-define-auxiliary-skeleton, python-rx): New macros.
6345 (python-insert-class): Delete command.
6346 (python-skeleton-class): New command.
6347 (python-insert-def): Delete command.
6348 (python-skeleton-def): New command.
6349 (python-insert-for): Delete command.
6350 (python-skeleton-for): New command.
6351 (python-insert-if): Delete command.
6352 (python-skeleton-if): New command.
6353 (python-insert-try/except, python-insert-try/finally): Delete commands.
6354 (python-skeleton-try): New command.
6355 (python-insert-while): Delete command.
6356 (python-skeleton-while): New command.
6357 (python-backspace): Delete command.
6358 (python-indent-dedent-line-backspace): New command.
6359 (python-electric-colon): Delete command.
6360 (python-indent-electric-colon): New command.
6361 (python-guess-indent): Delete command.
6362 (python-indent-guess-indent-offset): New command.
6363 (python-shift-left): Delete command.
6364 (python-indent-shift-left): New command.
6365 (python-shift-right): Delete command.
6366 (python-indent-shift-right): New command.
6367 (python-find-function): Delete command.
6368 (python-nav-jump-to-defun): New command.
6369 (python-next-statement): Delete command.
6370 (python-nav-forward-sentence): New command.
6371 (python-previous-statement): Delete command.
6372 (python-nav-backward-sentence): New command.
6373 (python-fill-paragraph): Delete command.
6374 (python-fill-paragraph-function): New command.
6375 (python-send-buffer): Delete command.
6376 (python-shell-send-buffer): New command.
6377 (python-send-defun): Delete command.
6378 (python-shell-send-defun): New command.
6379 (python-send-region, python-send-region-and-go): Delete commands.
6380 (python-shell-send-region)
6381 (python-shell-switch-to-shell): New commands.
6382 (python-send-string): Delete command.
6383 (python-shell-send-string): New command.
6384 (python-switch-to-python): Delete command.
6385 (python-shell-switch-to-shell): New command.
6386 (python-describe-symbol): Delete command.
6387 (python-eldoc-at-point): New command.
6388 (python--set-prompt-regexp, python-args-to-list)
6389 (python-after-info-look, python-check-version)
6390 (python-check-comint-prompt, python-find-imports)
6391 (python-execute-file, turn-off-pdbtrack, turn-on-pdbtrack)
6392 (python-unload-function, python-expand-template)
6393 (python-maybe-jython, python-preoutput-filter)
6394 (python-pdbtrack-get-source-buffer)
6395 (python-pdbtrack-grub-for-buffer, python-pdbtrack-overlay-arrow)
6396 (python-pdbtrack-toggle-stack-tracking)
6397 (python-pdbtrack-track-stack-file, python-initial-text)
6398 (python-first-word, python-comment-line-p, python-send-command)
6399 (python-setup-brm, python-sentinel, python-set-proc)
6400 (python-skip-out, python-input-filter, python-outdent-p)
6401 (python-outline-level, python-backslash-continuation-line-p)
6402 (python-end-of-block, python-end-of-statement, python-mark-block)
6403 (python-beginning-of-block, python-beginning-of-statement)
6404 (python-blank-line-p, python-beginning-of-string)
6405 (python-open-block-statement-p): Delete functions.
6406 (python-indent-line, python-indent-line-1): Delete functions.
6407 (python-indent-line): New function.
6408 (python-indentation-levels): Delete function.
6409 (python-indent-calculate-levels): New function.
6410 (python-proc): Delete function.
6411 (python-shell-get-process): New function.
6412 (python-send-receive): Delete function.
6413 (python-shell-send-string-no-output): New function.
6414 (python-module-path): Delete function.
6415 (python-ffap-module-path): New function.
6416 (python-completion-at-point)
6417 (python-symbol-completions): Delete functions.
6418 (python-completion-complete-at-point): New function.
6419 (python-load-file): Delete function.
6420 (python-shell-send-file): New function.
6421 (python-calculate-indentation): Delete function.
6422 (python-indent-calculate-indentation): New function.
6423 (python-skip-comments/blanks): Delete function.
6424 (python-util-forward-comment): New function.
6425 (python-continuation-line-p): Delete function.
6426 (python-info-continuation-line-p): New function.
6427 (python-which-func, python-current-defun): Delete function.
6428 (python-info-current-defun): New function.
6429 (python-beginning-of-defun): Delete function.
6430 (python-nav-beginning-of-defun): New function.
6431 (python-close-block-statement-p)
6432 (python-block-end-p): Delete function.
6433 (python-info-closing-block): New function.
6434 (python-comint-output-filter-function)
6435 (python-eldoc--get-doc-at-point, python-end-of-defun-function)
6436 (python-fill-comment, python-fill-decorator, python-fill-paren)
6437 (python-fill-string, python-imenu-make-element-tree)
6438 (python-imenu-make-tree, python-imenu-tree-assoc)
6439 (python-indent-context, python-indent-dedent-line)
6440 (python-indent-line-function)
6441 (python-indent-post-self-insert-function)
6442 (python-indent-toggle-levels)
6443 (python-info-assignment-continuation-line-p)
6444 (python-info-beginning-of-backlash)
6445 (python-info-block-continuation-line-p)
6446 (python-info-closing-block-message)
6447 (python-info-line-ends-backslash-p)
6448 (python-info-looking-at-beginning-of-defun)
6449 (python-info-ppss-context, python-info-ppss-context-type)
6450 (python-nav-list-defun-positions, python-nav-read-defun)
6451 (python-nav-sentence-end, python-nav-sentence-start)
6452 (python-pdbtrack-comint-output-filter-function)
6453 (python-pdbtrack-set-tracked-buffer)
6454 (python-shell-calculate-exec-path)
6455 (python-shell-calculate-process-environment)
6456 (python-shell-completion--do-completion-at-point)
6457 (python-shell-completion--get-completions)
6458 (python-shell-completion-complete-at-point)
6459 (python-shell-completion-complete-or-indent)
6460 (python-shell-get-or-create-process)
6461 (python-shell-get-process-name)
6462 (python-shell-internal-get-or-create-process)
6463 (python-shell-internal-get-process-name)
6464 (python-shell-internal-send-string, python-shell-make-comint)
6465 (python-shell-parse-command, python-shell-send-setup-code)
6466 (python-skeleton-add-menu-items)
6467 (python-util-clone-local-variables, python-util-position)
6468 (run-python-internal, python-indentation-levels)
6469 (python-nav-beginning-of-defun)
6470 (python-completion-complete-at-point): New functions.
6471 (run-python): Change arguments. New API requirements.
6472
6473 2012-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
6474
6475 * emacs-lisp/cl-lib.el (cl--defsubst-expand): Autoload inliner
6476 (bug#11649).
6477
6478 * emacs-lisp/macroexp.el (macroexp--compiler-macro): New function.
6479 (macroexp--expand-all): Use it.
6480
6481 * emacs-lisp/cl-macs.el (cl--transform-function-property): Remove.
6482 (cl-define-setf-expander, cl-deftype, cl-define-compiler-macro):
6483 Use `cl-function' instead.
6484
6485 2012-06-14 Juanma Barranquero <lekktu@gmail.com>
6486
6487 * makefile.w32-in (COMPILE_FIRST): Remove subr.el.
6488 Suggested by Stefan Monnier while discussing bug#11657.
6489
6490 2012-06-14 Sam Steingold <sds@gnu.org>
6491
6492 * files.el (abort-if-file-too-large): Use `file-size-human-readable'.
6493
6494 2012-06-14 Andreas Schwab <schwab@linux-m68k.org>
6495
6496 * play/doctor.el (doctor-doc): Remove parameter and use
6497 doctor-sent instead of sent.
6498 (doctor-read-print): Use doctor-sent instead of sent. (Bug#11708)
6499
6500 2012-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
6501
6502 * files.el: Require cl-lib.
6503 (file-name-non-special): Replace case -> cl-case.
6504
6505 * emacs-lisp/cl-macs.el (cl-defstruct): Don't add print-func.
6506
6507 * emacs-lisp/edebug.el (edebug-read-function): Remove old incorrect
6508 mapping from #' to function*.
6509
6510 2012-06-13 Chong Yidong <cyd@gnu.org>
6511
6512 * mouse.el (mouse-drag-track): Do not set the mark if the user
6513 releases the mouse without selecting anything (Bug#11588).
6514
6515 2012-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
6516
6517 * textmodes/tex-mode.el (latex-indent): Recognize tex-verbatim at EOB
6518 as well (bug#11646).
6519
6520 * loadup.el: Count byte-code functions as well.
6521
6522 * emacs-lisp/byte-opt.el (featurep): Move compiler-macro...
6523 * emacs-lisp/bytecomp.el (featurep): ...here (bug#11692).
6524
6525 * emacs-lisp/autoload.el (make-autoload): Accept nil doc-string-elt
6526 (bug#11649). Add cl-defun and cl-defmacro.
6527
6528 2012-06-13 Drew Adams <drew.adams@oracle.com>
6529
6530 * help-mode.el (help-bookmark-make-record, help-bookmark-jump):
6531 Fix last change.
6532
6533 2012-06-13 Michael Albinus <michael.albinus@gmx.de>
6534
6535 * net/dbus.el (dbus-call-method): Use timeout for `read-event'.
6536 Otherwise, it blocks in batch mode.
6537
6538 2012-06-13 Juanma Barranquero <lekktu@gmail.com>
6539
6540 * help-mode.el (bookmark-make-record-default): Declare.
6541
6542 2012-06-13 Chong Yidong <cyd@gnu.org>
6543
6544 * emacs-lisp/package.el (list-packages): Compute a list of
6545 packages that are newly-available since the last list-packages
6546 invocation.
6547 (package-menu--new-package-list): New var.
6548 (package-menu--generate, package-menu--print-info)
6549 (package-menu--status-predicate, package-menu-mark-install):
6550 Handle new status label "new".
6551
6552 2012-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
6553
6554 * emacs-lisp/cl-macs.el (cl-remf): Fix error in recent
6555 conversion to backquotes.
6556
6557 2012-06-12 Chong Yidong <cyd@gnu.org>
6558
6559 * emacs-lisp/edebug.el (edebug-inhibit-emacs-lisp-mode-bindings):
6560 Rename from gud-inhibit-global-bindings.
6561
6562 * emacs-lisp/eieio.el (eieio-pre-method-execution-hooks): Doc fix.
6563
6564 * nxml/nxml-glyph.el (nxml-glyph-set-functions): Rename abnormal
6565 hook from nxml-glyph-set-hook.
6566
6567 * progmodes/cwarn.el (cwarn-mode): Remove redundant variable
6568 declaration.
6569
6570 * progmodes/pascal.el (pascal-toggle-completions): Doc fix.
6571
6572 * textmodes/bibtex.el (bibtex-string-file-path, bibtex-file-path):
6573 Convert to defcustom.
6574
6575 2012-06-12 Drew Adams <drew.adams@oracle.com>
6576
6577 * help-mode.el (help-bookmark-make-record, help-bookmark-jump):
6578 New functions.
6579 (help-mode): Use them.
6580
6581 2012-06-11 Glenn Morris <rgm@gnu.org>
6582
6583 * progmodes/fortran.el (fortran-font-lock-keywords-3):
6584 Use preprocessor face for directives.
6585 (fortran-directive-re): Doc fix.
6586
6587 2012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
6588
6589 * emacs-lisp/cl-macs.el (cl-parse-loop-clause): Fix error in recent
6590 conversion to backquotes (bug#11652).
6591
6592 Fix compiler-expansion of CL's cXXr functions (bug#11673).
6593 * emacs-lisp/cl-lib.el (cl--defalias): New function.
6594 (cl-values, cl-values-list, cl-copy-seq, cl-svref, cl-first)
6595 (cl-second, cl-rest, cl-endp, cl-third, cl-fourth): Use it.
6596 (cl-plusp, cl-minusp, cl-fifth, cl-sixth, cl-seventh, cl-eighth)
6597 (cl-ninth, cl-tenth): Mark them as inlinable.
6598 (cl-caaar, cl-caadr, cl-cadar, cl-caddr, cl-cdaar, cl-cdadr)
6599 (cl-cddar, cl-cdddr, cl-caaaar, cl-caaadr, cl-caadar, cl-caaddr)
6600 (cl-cadaar, cl-cadadr, cl-caddar, cl-cadddr, cl-cdaaar, cl-cdaadr)
6601 (cl-cdadar, cl-cdaddr, cl-cddaar, cl-cddadr, cl-cdddar, cl-cddddr):
6602 Add a compiler-macro declaration to use cl--compiler-macro-cXXr.
6603 (cl-list*, cl-adjoin): Don't put an autoload manually.
6604 * emacs-lisp/cl-macs.el (cl--compiler-macro-adjoin)
6605 (cl--compiler-macro-list*): Add autoload cookie.
6606 (cl--compiler-macro-cXXr): New function.
6607
6608 * help-fns.el (help-fns--compiler-macro): New function extracted from
6609 describe-function-1; follow aliases and use `compiler-macro' property.
6610 (describe-function-1): Use it.
6611
6612 2012-06-11 Chong Yidong <cyd@gnu.org>
6613
6614 * startup.el (fancy-splash-head): Use splash.svg even if librsvg
6615 is uninstalled, if imagemagick is installed.
6616
6617 2012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
6618
6619 * emacs-lisp/cl-lib.el: Use lexical-binding.
6620 (cl-map-extents, cl-maclisp-member): Remove.
6621 (cl--set-elt, cl--set-nthcdr, cl--set-buffer-substring)
6622 (cl--set-substring, cl--block-wrapper, cl--block-throw)
6623 (cl--compiling-file, cl--mapcar-many, cl--do-subst): Use "cl--" prefix.
6624 * emacs-lisp/cl-extra.el: Use lexical-binding.
6625 (cl--mapcar-many, cl--map-keymap-recursively, cl--map-intervals)
6626 (cl--map-overlays, cl--set-frame-visible-p, cl--progv-save)
6627 (cl--progv-before, cl--progv-after, cl--finite-do, cl--set-getf)
6628 (cl--do-remf, cl--do-prettyprint): Use "cl--" prefix.
6629 * emacs-lisp/cl-seq.el: Use lexical-binding.
6630 (cl--parsing-keywords, cl--check-key, cl--check-test-nokey)
6631 (cl--check-test, cl--check-match): Use "cl--" prefix and backquotes.
6632 (cl--alist, cl--sublis-rec, cl--nsublis-rec, cl--tree-equal-rec):
6633 * emacs-lisp/cl-macs.el (cl--lambda-list-keywords): Use "cl--" prefix.
6634 * edmacro.el (edmacro-mismatch): Simplify to remove dependence on
6635 CL's internals.
6636
6637 2012-06-11 Michael Albinus <michael.albinus@gmx.de>
6638
6639 Sync with Tramp 2.2.6-pre.
6640
6641 * net/tramp-cache.el (tramp-dump-connection-properties): Let-bind
6642 `print-length' and `print-level' to nil, in order to avoid
6643 truncation. Reported by Christopher Schmidt
6644 <christopher@ristopher.com>.
6645
6646 * net/tramp-cmds.el (tramp-cleanup-connection): Delete also process.
6647
6648 * net/tramp-compat.el (tramp-compat-condition-case-unless-debug):
6649 New defmacro.
6650 (tramp-compat-copy-directory): Add optional argument
6651 COPY-CONTENTS. It is not handled yet.
6652
6653 * net/tramp-ftp.el (tramp-disable-ange-ftp): Fix docstring.
6654 (tramp-ftp-file-name-p): Simplify.
6655
6656 * net/tramp-gvfs.el (tramp-gvfs-handle-expand-file-name):
6657 * net/tramp-gw.el (tramp-gw-open-connection): Add hop to
6658 connection vector.
6659
6660 * net/tramp-sh.el (tramp-copy-size-limit): Fix docstring.
6661 (tramp-methods): Do not use `tramp-password-end-of-line'.
6662 (tramp-completion-function-alist-putty): Handle UNIX case.
6663 (tramp-remote-path): Add "/opt/bin", "/opt/sbin" and "/opt/local/bin".
6664 (tramp-do-file-attributes-with-stat)
6665 (tramp-do-directory-files-and-attributes-with-stat) Return uid and
6666 gid as real numbers. They could run out of integer range on cygwin.
6667 (tramp-do-copy-or-rename-file-out-of-band): Better trace format.
6668 (tramp-sh-handle-expand-file-name): Handle hops.
6669 (tramp-open-connection-setup-interactive-shell):
6670 Use `tramp-cleanup'. Move check for busyboxes ...
6671 (tramp-find-shell): ... here. Simplify implementation.
6672 Set "remote-shell" property also for alternative shells.
6673 (tramp-remote-coding-commands): Check "test -c /dev/stdout".
6674 If failing, a regular file would be written otherwise.
6675 Reported by Dmitry Kurochkin <dmitry.kurochkin@gmail.com>.
6676 (tramp-find-inline-encoding): Cache the coding commands in the
6677 process cache. Apply test command on the remote side, if defined.
6678 (tramp-find-inline-compress): Cache the compress commands in the
6679 process cache.
6680 (tramp-compute-multi-hops): Save `tramp-default-proxies-alist'
6681 when requested. Handle hops.
6682 (tramp-current-connection): New defvar.
6683 (tramp-maybe-open-connection): Use `tramp-cleanup'.
6684 Throw `suppress', if there was a failed connection shortly before.
6685 Handle user interrupt. (Bug#10187)
6686 (tramp-get-inline-compress, tramp-get-inline-coding):
6687 Read connection properties from the process cache.
6688
6689 * net/tramp-smb.el (tramp-smb-server-version)
6690 (tramp-smb-wrong-passwd-regexp, tramp-smb-actions-with-tar):
6691 New defconsts.
6692 (tramp-smb-prompt): Extend for powershell prompt.
6693 (tramp-smb-file-name-handler-alist): Add handlers for
6694 `process-file', `shell-command' and `start-file-process'.
6695 (tramp-smb-winexe-program, tramp-smb-winexe-shell-command)
6696 (tramp-smb-winexe-shell-command-switch): New defcustoms.
6697 (tramp-smb-file-name-p): Simplify.
6698 (tramp-smb-action-with-tar, tramp-smb-handle-process-file)
6699 (tramp-smb-kill-winexe-function, tramp-smb-call-winexe)
6700 (tramp-smb-shell-quote-argument): New defuns.
6701 (tramp-smb-handle-copy-directory): Add COPY-CONTENTS argument.
6702 Implement using "tar". By this, time-stamps are preserved.
6703 (tramp-smb-handle-copy-file): Handle also the case of directories.
6704 (tramp-smb-do-file-attributes-with-stat)
6705 (tramp-smb-get-file-entries, tramp-smb-get-cifs-capabilities):
6706 Use `tramp-get-connection-buffer').
6707 (tramp-smb-handle-rename-file): Use "rename", when source and
6708 target are on the same share.
6709 (tramp-smb-maybe-open-connection): Handle wrong passwords.
6710 Use `tramp-smb-server-version'.
6711 (tramp-smb-wait-for-output): Remove prompt.
6712
6713 * net/tramp.el (top): Require 'cl.
6714 (tramp-methods, tramp-rsh-end-of-line):
6715 Remove `tramp-password-end-of-line' from docstring.
6716 (tramp-save-ad-hoc-proxies): New defcustom.
6717 (tramp-completion-function-alist): Adapt docstring.
6718 (tramp-default-password-end-of-line): Remove defcustom.
6719 (tramp-shell-prompt-pattern): Allow "[]" style prompts. (Bug#11065)
6720 (tramp-user-regexp, tramp-file-name-regexp-unified)
6721 (tramp-file-name-regexp-url): Extend regexp by hop separator.
6722 (tramp-postfix-hop-format, tramp-postfix-hop-regexp)
6723 (tramp-remote-file-name-spec-regexp): New defconst.
6724 (tramp-file-name-structure): Extend structure for hops.
6725 (tramp-get-method-parameter): Move up.
6726 (tramp-file-name-p, tramp-dissect-file-name)
6727 (with-parsed-tramp-file-name): Handle hops.
6728 (tramp-file-name-hop): New defun.
6729 (tramp-make-tramp-file-name): New optional arg HOP.
6730 (tramp-message-show-progress-reporter-message): New defvar.
6731 (tramp-with-progress-reporter): Use it. We cannot use
6732 `tramp-message-show-message' here, because this suppresses also
6733 error buffers.
6734 (tramp-error-with-buffer): Suppress buffer view, if
6735 `tramp-message-show-message' is nil.
6736 Use `tramp-get-connection-buffer'.
6737 (tramp-cleanup): New defun.
6738 (tramp-rfn-eshadow-update-overlay): Let-bind `non-essential' to `t'.
6739 (tramp-file-name-handler): If `debug-on-error' is set, propagate
6740 an error unchanged.
6741 (tramp-completion-handle-file-name-all-completions): Handle hops.
6742 Fix an error when called from ido.
6743 (tramp-completion-dissect-file-name): Use better local variable
6744 name. Add hop to the vector.
6745 (tramp-handle-insert-file-contents): Use progress-reporter for the
6746 whole scenario.
6747 (tramp-action-password): Let-bind `enable-recursive-minibuffers'
6748 to `t'.
6749 (tramp-check-for-regexp): Simplify search.
6750 (tramp-enter-password): Remove it. Move implementation ...
6751 (tramp-action-password): ... here.
6752 (tramp-mode-string-to-int, tramp-local-host-p)
6753 (tramp-make-tramp-temp-file, tramp-read-passwd)
6754 (tramp-clear-passwd, tramp-time-less-p, tramp-time-diff):
6755 Set tramp-autoload cookie.
6756
6757 * net/trampver.el: Update release number.
6758
6759 2012-06-11 Thierry Volpiatto <thierry.volpiatto@gmail.com>
6760 Michael Albinus <michael.albinus@gmx.de>
6761
6762 * net/tramp.el (tramp-set-completion-function): Fix docstring.
6763 (tramp-parse-group, tramp-parse-file)
6764 (tramp-parse-shostkeys-sknownhosts): New defuns.
6765 (tramp-parse-rhosts, tramp-parse-rhosts-group, tramp-parse-shosts)
6766 (tramp-parse-shosts-group, tramp-parse-sconfig)
6767 (tramp-parse-sconfig-group, tramp-parse-shostkeys)
6768 (tramp-parse-sknownhosts, tramp-parse-hosts)
6769 (tramp-parse-hosts-group, tramp-parse-passwd, tramp-parse-netrc):
6770 Use them.
6771 (tramp-parse-passwd-group, tramp-parse-netrc-group)
6772 (tramp-parse-putty-group): Don't narrow.
6773 (tramp-parse-putty): Make a loop.
6774 (tramp-file-name-handler): Catch the `suppress' signal.
6775
6776 2012-06-11 Chong Yidong <cyd@gnu.org>
6777
6778 * image.el (imagemagick-register-types): Put the ImageMagick entry
6779 at the end of image-type-file-name-regexps.
6780
6781 2012-06-11 Johan Bockgård <bojohan@gnu.org>
6782
6783 * emacs-lisp/pcase.el (pcase-UPAT, pcase-QPAT): New edebug specs.
6784 (pcase, pcase-let*, pcase-dolist): Use them.
6785
6786 2012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
6787
6788 * emacs-lisp/pcase.el (pcase--let*): New function.
6789 (pcase-let*): Use it. Use pcase--memoize to avoid repeated expansions.
6790 (pcase--expand): Use macroexp-let².
6791
6792 2012-06-10 Stefan Monnier <monnier@iro.umontreal.ca>
6793
6794 * emacs-lisp/timer.el, emacs-lisp/syntax.el, emacs-lisp/smie.el:
6795 * emacs-lisp/ewoc.el, emacs-lisp/cconv.el, emacs-lisp/bytecomp.el:
6796 * emacs-lisp/byte-opt.el, emacs-lisp/autoload.el: Convert to cl-lib.
6797 * emacs-lisp/easymenu.el, emacs-lisp/easy-mmode.el:
6798 * emacs-lisp/derived.el: Use pcase instead of `cl'.
6799 * emacs-lisp/cl-lib.el: Get rid of special cl-macs auto load.
6800
6801 2012-06-10 Glenn Morris <rgm@gnu.org>
6802
6803 * mail/rmail.el (rmail-yank-current-message): Leave point at
6804 correct position. (Bug#11660)
6805
6806 2012-06-10 Chong Yidong <cyd@gnu.org>
6807
6808 * allout-widgets.el: Fix code header.
6809
6810 2012-06-10 Chong Yidong <cyd@gnu.org>
6811
6812 * cus-edit.el (customize-changed-options-previous-release):
6813 Bump to 24.1.
6814
6815 2012-06-09 Andreas Schwab <schwab@linux-m68k.org>
6816
6817 * Makefile.in (BIG_STACK_DEPTH): Enlarge to 2200.
6818
6819 2012-06-09 Chong Yidong <cyd@gnu.org>
6820
6821 * ebuff-menu.el (electric-buffer-list): Preserve header line.
6822
6823 2012-06-09 Martin Rudalics <rudalics@gmx.at>
6824
6825 * window.el (special-display-popup-frame): Don't use
6826 window--display-buffer (Bug#11651).
6827
6828 2012-06-09 Eli Zaretskii <eliz@gnu.org>
6829
6830 Fix parallel builds: make sure loaddefs.el is not being written
6831 while Lisp files are compiled.
6832 (compile): Don't depend on 'mh-autoloads'.
6833 (compile-CMD, compile-SH): Depend on 'autoloads'.
6834 (bootstrap): Don't depend on 'autoloads' and 'mh-autoloads'.
6835
6836 * makefile.w32-in (BIG_STACK_DEPTH): Enlarge to 2200. (Bug#11649)
6837
6838 2012-06-09 Chong Yidong <cyd@gnu.org>
6839
6840 * face-remap.el (face-remap-add-relative, face-remap-set-base)
6841 (buffer-face-set, buffer-face-toggle, buffer-face-mode-invoke):
6842 Doc fixes (Bug#11225).
6843
6844 2012-06-09 Stefan Monnier <monnier@iro.umontreal.ca>
6845
6846 * emacs-lisp/macroexp.el (macroexp--expand-all): Only autoload
6847 a function if there's a clear indication that it has a compiler-macro.
6848 * emacs-lisp/byte-run.el (defun-declarations-alist, defmacro, defun)
6849 (macro-declarations-alist): Add arglist to declaration functions.
6850 (defun-declarations-alist): Add `obsolete' and `compiler-macro'.
6851 * emacs-lisp/cl-seq.el (cl-member, cl-assoc):
6852 * emacs-lisp/cl-lib.el (cl-list*, cl-adjoin):
6853 * emacs-lisp/cl-extra.el (cl-get): Use the new `declare' statement.
6854 Also add autoload to find the compiler macro.
6855 * emacs-lisp/cl-macs.el (eql) [compiler-macro]: Remove.
6856 (cl--compiler-macro-member, cl--compiler-macro-assoc)
6857 (cl--compiler-macro-adjoin, cl--compiler-macro-list*)
6858 (cl--compiler-macro-get): New functions, replacing calls to
6859 cl-define-compiler-macro.
6860 (cl-typep) [compiler-macro]: Use macroexp-let².
6861
6862 2012-06-08 Nick Dokos <nicholas.dokos@hp.com> (tiny change)
6863
6864 * calendar/icalendar.el (icalendar--parse-vtimezone): Import TZID
6865 string properly, fixes Bug#11473.
6866
6867 2012-06-08 Chong Yidong <cyd@gnu.org>
6868
6869 * faces.el (set-face-attribute): Doc fix.
6870 (modify-face): Don't use :bold and :italic.
6871 (error, warning, success): Tweak definitions.
6872
6873 * cus-edit.el (custom-modified, custom-invalid, custom-rogue)
6874 (custom-modified, custom-set, custom-changed, custom-themed)
6875 (custom-saved, custom-button, custom-button-mouse)
6876 (custom-button-pressed, custom-state, custom-comment-tag)
6877 (custom-variable-tag, custom-group-tag-1, custom-group-tag)
6878 (custom-group-subtitle): Use new-style face specs.
6879 (custom-invalid-face, custom-rogue-face, custom-modified-face)
6880 (custom-set-face, custom-changed-face, custom-saved-face)
6881 (custom-button-face, custom-button-pressed-face)
6882 (custom-documentation-face, custom-state-face)
6883 (custom-comment-face, custom-comment-tag-face)
6884 (custom-variable-tag-face, custom-variable-button-face)
6885 (custom-face-tag-face, custom-group-tag-face-1)
6886 (custom-group-tag-face): Remove obsolete face alias.
6887
6888 * epa.el (epa-validity-high, epa-validity-medium)
6889 (epa-validity-low, epa-mark, epa-field-name, epa-string)
6890 (epa-field-name, epa-field-body):
6891 * font-lock.el (font-lock-comment-face, font-lock-string-face)
6892 (font-lock-keyword-face, font-lock-builtin-face)
6893 (font-lock-function-name-face, font-lock-variable-name-face)
6894 (font-lock-type-face, font-lock-constant-face):
6895 * ido.el (ido-first-match, ido-only-match, ido-subdir)
6896 (ido-virtual, ido-indicator, ido-incomplete-regexp):
6897 * speedbar.el (speedbar-button-face, speedbar-file-face)
6898 (speedbar-directory-face, speedbar-tag-face)
6899 (speedbar-selected-face, speedbar-highlight-face)
6900 (speedbar-separator-face):
6901 * whitespace.el (whitespace-newline, whitespace-space)
6902 (whitespace-hspace, whitespace-tab, whitespace-trailing)
6903 (whitespace-line, whitespace-space-before-tab)
6904 (whitespace-space-after-tab, whitespace-indentation)
6905 (whitespace-empty):
6906 * emulation/cua-base.el (cua-global-mark):
6907 * eshell/em-prompt.el (eshell-prompt):
6908 * net/newst-plainview.el (newsticker-new-item-face)
6909 (newsticker-old-item-face, newsticker-immortal-item-face)
6910 (newsticker-obsolete-item-face, newsticker-date-face)
6911 (newsticker-statistics-face, newsticker-default-face):
6912 * net/newst-reader.el (newsticker-feed-face)
6913 (newsticker-extra-face, newsticker-enclosure-face):
6914 * net/newst-treeview.el (newsticker-treeview-face)
6915 (newsticker-treeview-new-face, newsticker-treeview-old-face)
6916 (newsticker-treeview-immortal-face)
6917 (newsticker-treeview-obsolete-face)
6918 (newsticker-treeview-selection-face):
6919 * net/rcirc.el (rcirc-my-nick, rcirc-other-nick)
6920 (rcirc-bright-nick, rcirc-server, rcirc-timestamp)
6921 (rcirc-nick-in-message, rcirc-nick-in-message-full-line)
6922 (rcirc-prompt, rcirc-track-keyword, rcirc-url, rcirc-keyword):
6923 * nxml/nxml-outln.el (nxml-heading, nxml-outline-indicator)
6924 (nxml-outline-active-indicator, nxml-outline-ellipsis):
6925 * play/mpuz.el (mpuz-unsolved, mpuz-solved, mpuz-trivial)
6926 (mpuz-text):
6927 * progmodes/vera-mode.el (vera-font-lock-number)
6928 (vera-font-lock-function, vera-font-lock-interface):
6929 * textmodes/table.el (table-cell): Use new-style face specs, and
6930 don't use the old :bold and :italic attributes.
6931
6932 * progmodes/ebrowse.el (ebrowse-tree-mark, ebrowse-root-class)
6933 (ebrowse-member-attribute, ebrowse-default, ebrowse-file-name)
6934 (ebrowse-member-class, ebrowse-progress): Likewise.
6935 (ebrowse-tree-mark-face, ebrowse-root-class-face)
6936 (ebrowse-file-name-face, ebrowse-default-face)
6937 (ebrowse-member-attribute-face, ebrowse-member-class-face)
6938 (ebrowse-progress-face): Remove obsolete faces.
6939
6940 * progmodes/flymake.el (flymake-errline, flymake-warnline):
6941 Inherit from error and warning faces respectively.
6942
6943 * textmodes/flyspell.el (flyspell-incorrect, flyspell-duplicate):
6944 Likewise.
6945 (flyspell-incorrect-face, flyspell-duplicate-face):
6946 Remove obsolete aliases.
6947
6948 2012-06-08 Michael Albinus <michael.albinus@gmx.de>
6949
6950 * net/tramp-compat.el (tramp-compat-temporary-file-directory):
6951 Avoid infloop.
6952
6953 2012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
6954
6955 * startup.el (argv, argi): Make lexically scoped.
6956 * emacs-lisp/float-sup.el (pi): Use internal-make-var-non-special.
6957 * emacs-lisp/cl-macs.el: Use lexical-binding.
6958 Rename cl-bind-* to cl--bind-*.
6959 * files.el: Don't require `cl' since it doesn't use it.
6960 * emacs-lisp/pcase.el, emacs-lisp/macroexp.el: Add coding cookie.
6961
6962 2012-06-08 Juanma Barranquero <lekktu@gmail.com>
6963
6964 * textmodes/texinfmt.el: Fix bug#11640 (reverts part of 2008-07-31T05:33:56Z!dann@ics.uci.edu).
6965 (texinfo-format-printindex): Use `texinfo-sort-region' in all platforms,
6966 instead of calling external sort utility.
6967 (texinfo-sort-region, texinfo-sort-startkeyfun): Restore functions.
6968
6969 2012-06-08 Eli Zaretskii <eliz@gnu.org>
6970
6971 * descr-text.el (describe-char): Mention how to insert the
6972 character, if the current input method doesn't support it.
6973 See the discussion in this thread for the details:
6974 http://lists.gnu.org/archive/html/emacs-devel/2012-05/msg00533.html.
6975
6976 2012-06-08 Sam Steingold <sds@gnu.org>
6977
6978 * bindings.el (global-map): Bind XF86Forward to next-buffer and
6979 XF86Back to previous-buffer.
6980 (minibuffer-local-map): Bind them to next-history-element and
6981 previous-history-element respectively.
6982 * help-mode.el (help-mode-map): Bind them to help-go-forward and
6983 help-go-back respectively.
6984 * info.el (Info-mode-map): Bind them to Info-history-forward and
6985 Info-history-back respectively.
6986 These are the keys next to Up on the ThinkPad keyboard.
6987
6988 2012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
6989
6990 Get rid of cl-lexical-let, keeping only lexical-let for compatibility.
6991 * emacs-lisp/cl-macs.el: Provide itself.
6992 (cl--labels-convert-cache): New var.
6993 (cl--labels-convert): New function.
6994 (cl-flet, cl-labels): New implementation with new semantics, relying on
6995 lexical-binding.
6996 * emacs-lisp/cl.el: Mark compatibility aliases as obsolete.
6997 (cl-closure-vars, cl--function-convert-cache)
6998 (cl--function-convert): Move from cl-macs.el.
6999 (lexical-let, lexical-let*, flet, labels): Move from cl-macs.el and
7000 rename by removing the "cl-" prefix.
7001 * emacs-lisp/macroexp.el (macroexp-unprogn): New function.
7002
7003 2012-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
7004
7005 * emacs-lisp/cl.el (cl-macroexpand, cl-macro-environment)
7006 (cl-macroexpand-all, cl-not-hash-table, cl-builtin-gethash)
7007 (cl-builtin-remhash, cl-builtin-clrhash, cl-builtin-maphash)
7008 (cl-map-keymap, cl-copy-tree, cl-gethash, cl-puthash, cl-remhash)
7009 (cl-clrhash, cl-maphash, cl-make-hash-table, cl-hash-table-p)
7010 (cl-hash-table-count): Add old compatibility aliases.
7011
7012 * emacs-lisp/cl-macs.el (cl-macro-environment): Remove var.
7013 Use macroexpand-all-environment instead.
7014 (cl--old-macroexpand): New var.
7015 (cl--sm-macroexpand): New function.
7016 (cl-symbol-macrolet): Use it during macro expansion.
7017 (cl--function-convert-cache): New var.
7018 (cl--function-convert): New function, extracted from
7019 cl-macroexpand-all.
7020 (cl-lexical-let): Use it.
7021
7022 * emacs-lisp/cl-lib.el (cl-macro-environment): Remove decl.
7023 (cl-macroexpand): Move to cl-macs.el and rename to cl--sm-macroexpand.
7024 (cl-member): Remove old alias.
7025
7026 * emacs-lisp/cl-extra.el (cl-map-keymap, cl-copy-tree)
7027 (cl-not-hash-table, cl-builtin-gethash, cl-builtin-remhash)
7028 (cl-builtin-clrhash, cl-builtin-maphash, cl-gethash, cl-puthash)
7029 (cl-remhash, cl-clrhash, cl-maphash, cl-make-hash-table)
7030 (cl-hash-table-p, cl-hash-table-count): Move to cl.el.
7031 (cl-macroexpand-cmacs): Remove var.
7032 (cl-macroexpand-all, cl-macroexpand-body): Remove funs.
7033 Use macroexpand-all instead.
7034
7035 2012-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
7036
7037 * emacs-lisp/macroexp.el (macroexp-progn, macroexp-let*, macroexp-if)
7038 (macroexp-let², macroexp--const-symbol-p, macroexp-const-p)
7039 (macroexp-copyable-p): New functions and macros.
7040 * emacs-lisp/edebug.el (edebug-unwrap):
7041 * emacs-lisp/disass.el (disassemble-internal): Use macroexp-progn.
7042 * emacs-lisp/pcase.el: Use macroexp-let*, macroexp-if, ...
7043 (pcase--let*): Remove.
7044 * emacs-lisp/bytecomp.el (byte-compile-const-symbol-p)
7045 (byte-compile-constp): Remove. Use macroexp--const-symbol-p and
7046 macroexp-const-p instead.
7047 * emacs-lisp/byte-opt.el: Use macroexp-const-p and macroexp-progn.
7048
7049 * emacs-lisp/cl-macs.el: Clean up the name space by using "cl--"
7050 instead of "cl-" for internal definitions. Use macroexp-const-p.
7051 (cl-old-bc-file-form): Remove var.
7052 (cl-const-exprs-p): Remove fun.
7053 (cl-labels, cl-macrolet): Use backquote.
7054 (cl-lexical-let): Use cl-symbol-macrolet. Don't use cl-defun-expander.
7055 (cl-defun-expander, cl-byte-compile-compiler-macro): Remove fun.
7056 (cl-define-setf-expander): Rename from cl-define-setf-method.
7057 * emacs-lisp/cl.el: Adjust alias for define-setf-method.
7058
7059 * international/mule-cmds.el: Don't require CL.
7060 (view-hello-file): Don't use `letf'.
7061
7062 2012-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
7063
7064 * tmm.el (tmm-prompt): Use string-prefix-p.
7065 (tmm-completion-delete-prompt): Don't affect current-buffer outside.
7066 (tmm-add-prompt): Use minibuffer-completion-help.
7067 (tmm-delete-map): Remove.
7068
7069 * subr.el (kbd): Make it its own function.
7070
7071 2012-06-07 Stefan Merten <smerten@oekonux.de>
7072
7073 * textmodes/rst.el: Use `eval-when-compile' for requiring `cl.el'.
7074 Silence compiler warnings. Fix versions.
7075 (rst-position-if, rst-position, rst-some, rst-signum): New functions.
7076 (rst-shift-region, rst-adornment-level, rst-compute-tabs)
7077 (rst-indent-line, rst-shift-region, rst-forward-line): Use them.
7078 (rst-package-emacs-version-alist): Correct Emacs version to
7079 represent major merge with upstream.
7080 (rst-transition, rst-adornment, rst-compile-toolsets): Fix versions.
7081
7082 2012-06-06 Glenn Morris <rgm@gnu.org>
7083
7084 * mail/emacsbug.el (report-emacs-bug): Add relevant EMACS env-vars.
7085 Only print environment variables if set.
7086
7087 2012-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
7088
7089 * emacs-lisp/macroexp.el: Don't require CL since we don't use it.
7090 (macroexp--cons): Rename from maybe-cons.
7091 (macroexp--accumulate): Rename from macroexp-accumulate.
7092 (macroexp--all-forms): Rename from macroexpand-all-forms.
7093 (macroexp--all-clauses): Rename from macroexpand-all-clauses.
7094 (macroexp--expand-all): Rename from macroexpand-all-1.
7095
7096 2012-06-06 Sam Steingold <sds@gnu.org>
7097
7098 * calendar/calendar.el (calendar-in-read-only-buffer):
7099 Call `special-mode' to enable the standard read-only keybindings.
7100
7101 2012-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
7102
7103 * emacs-lisp/macroexp.el (macroexpand-all-1): Don't spam the output
7104 with "loading" messages (bug#11635).
7105
7106 2012-06-06 Michael Albinus <michael.albinus@gmx.de>
7107
7108 * files.el (enable-remote-dir-locals): New option.
7109 (hack-dir-local-variables): Use it. (Bug#1933, Bug#6731)
7110
7111 * net/tramp-compat.el (tramp-compat-temporary-file-directory):
7112 Ensure, that the temp directory is local.
7113
7114 * net/tramp-sh.el (tramp-sh-handle-write-region): Let-bind
7115 `temporary-file-directory'.
7116
7117 * progmodes/python.el (python-send-region): Ensure, that the
7118 temporary file is created also in the remote case.
7119
7120 2012-06-06 Glenn Morris <rgm@gnu.org>
7121
7122 * vc/vc-rcs.el (vc-rcs-rcs2log-program): New.
7123 (vc-rcs-update-changelog): Use it.
7124
7125 * emacs-lisp/authors.el (authors-fixed-entries): Remove vcdiff.
7126
7127 * vc/vc-sccs.el (vc-sccs-write-revision): New function.
7128 (vc-sccs-workfile-unchanged-p): Use vc-sccs-write-revision.
7129 (vc-sccs-diff): Replace use of the external vcdiff script.
7130
7131 2012-06-05 Glenn Morris <rgm@gnu.org>
7132
7133 * ledit.el: Move to obsolete/.
7134
7135 2012-06-05 Sam Steingold <sds@gnu.org>
7136
7137 * calendar/calendar.el (calendar-exit): Reinstate the 2012-03-28
7138 patch (Bug#11140).
7139
7140 2012-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
7141
7142 * emacs-lisp/cust-print.el: Move to obsolete.
7143
7144 * emacs-lisp/macroexp.el (macroexpand-all-1): Tolerate errors during
7145 compiler-macro expansion.
7146
7147 Add native compiler-macro support.
7148 * emacs-lisp/macroexp.el (macroexpand-all-1):
7149 Support compiler-macros directly. Properly follow aliases and apply
7150 the compiler macros more thoroughly.
7151 * emacs-lisp/cl.el: Don't copy compiler-macro properties any more since
7152 macroexpand now properly follows aliases.
7153 * emacs-lisp/cl-macs.el (toplevel, cl-define-compiler-macro)
7154 (cl-compiler-macroexpand): Use new prop.
7155 * emacs-lisp/byte-opt.el (featurep): Optimize earlier.
7156
7157 * emacs-lisp/cl-lib.el (custom-print-functions): Add alias.
7158
7159 2012-06-05 Martin Rudalics <rudalics@gmx.at>
7160
7161 * window.el (get-lru-window, get-mru-window, get-largest-window):
7162 New argument NOT-SELECTED to avoid picking the selected window.
7163 (window--display-buffer-1, window--display-buffer-2): Replace by
7164 new function window--display-buffer
7165 (display-buffer-same-window, display-buffer-reuse-window)
7166 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
7167 Use window--display-buffer.
7168 (display-buffer-use-some-window): Remove temporary dedication
7169 hack by calling get-lru-window and get-largest-window with
7170 NOT-SELECTED argument non-nil. Call window--display-buffer.
7171
7172 2012-06-05 Glenn Morris <rgm@gnu.org>
7173
7174 * vc/vc-sccs.el (vc-sccs-workfile-unchanged-p):
7175 Replace external vcdiff script.
7176
7177 2012-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
7178
7179 * emacs-lisp/cl-lib.el (cl-values, cl-values-list): Fix up last change.
7180
7181 2012-06-04 Chong Yidong <cyd@gnu.org>
7182
7183 * image.el (imagemagick-types-inhibit): Revert last change.
7184 Add INFO and M.
7185 (imagemagick-enabled-types): Remove CIN and EPS*.
7186
7187 2012-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
7188
7189 * emacs-lisp/cl-lib.el: Rename from cl.el.
7190 * emacs-lisp/cl.el: New compatibility file.
7191 * emacs-lisp/cl-lib.el, emacs-lisp/cl-seq.el, emacs-lisp/cl-macs.el:
7192 * emacs-lisp/cl-extra.el: Rename all top-level functions and variables
7193 to obey the "cl-" prefix.
7194 * emacs-lisp/macroexp.el (macroexpand-all-1): Adjust to new name.
7195
7196 2012-06-03 Glenn Morris <rgm@gnu.org>
7197
7198 * emacs-lisp/authors.el (authors-aliases): Addition.
7199
7200 * cus-start.el (tool-bar-style, tool-bar-max-label-size):
7201 Fix :version.
7202
7203 2012-06-03 Stefan Merten <smerten@oekonux.de>
7204
7205 * textmodes/rst.el: Add comments.
7206 (rst-transition, rst-adornment): New faces.
7207 (rst-adornment-faces-alist): Make default safe to reevaluate.
7208 Fixes
7209 http://sourceforge.net/tracker/?func=detail&atid=422030&aid=3479603&group_id=38414.
7210 Improve customization tags.
7211 (rst-define-level-faces): Clarify meaning.
7212
7213 2012-06-03 Chong Yidong <cyd@gnu.org>
7214
7215 * progmodes/compile.el (compilation-mode-line-fail)
7216 (compilation-mode-line-run, compilation-mode-line-exit):
7217 New faces.
7218 (compilation-start, compilation-handle-exit): Use them (Bug#11032).
7219
7220 2012-06-03 Jack Duthen <duthen.mac.01@gmail.com> (tiny change)
7221
7222 * progmodes/which-func.el (which-func-update-ediff-windows):
7223 New function. Use it in ediff-select-hook (Bug#11478).
7224
7225 2012-06-03 Chong Yidong <cyd@gnu.org>
7226
7227 * bindings.el: Remove explicit help text from format-mode-line.
7228 It is now supplied by mode-line-default-help-echo.
7229 (mode-line-front-space, mode-line-end-spaces)
7230 (mode-line-misc-info): New variables.
7231 (mode-line-modes, mode-line-position): Move the default value to
7232 the variable definition.
7233 (mode-line-default-help-echo): New defcustom.
7234 (mode-line-mule-info-help-echo, mode-line-read-only-help-echo)
7235 (mode-line-modified-help-echo): New functions.
7236 (mode-line-mule-info, mode-line-modified): Use them.
7237 (mode-line-eol-desc, propertized-buffer-identification):
7238 Consistency fixes for help text.
7239 (mode-line-coding-system-map): Allow using mouse-3 to invoke
7240 set-buffer-file-coding-system (Bug#289).
7241 (mode-line-mule-info-help-echo): Update help text.
7242
7243 2012-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
7244
7245 * simple.el (execute-extended-command): Set real-this-command
7246 (bug#11506).
7247
7248 2012-06-02 Chong Yidong <cyd@gnu.org>
7249
7250 Remove incorrect uses of "modeline" in comments, docstrings, and
7251 function/variable names (Bug#10329).
7252
7253 * cus-edit.el (mode-line):
7254 * dframe.el (dframe-mouse-hscroll):
7255 * emacs-lisp/re-builder.el:
7256 * emacs-lisp/easy-mmode.el (define-minor-mode):
7257 * frame.el (set-frame-name):
7258 * help.el (lookup-minor-mode-from-indicator):
7259 * net/rcirc.el (rcirc-activity-string, rcirc-short-buffer-name):
7260 * progmodes/cc-cmds.el (c-toggle-auto-newline)
7261 (c-toggle-hungry-state):
7262 * progmodes/antlr-mode.el (antlr-language-alist):
7263 * progmodes/idlw-shell.el (idlwave-shell-electric-stop-line-face):
7264 * progmodes/vhdl-mode.el (vhdl-mode):
7265 * progmodes/which-func.el (which-func, which-func-cleanup-function):
7266 * term/ns-win.el (ns-face-at-pos):
7267 * term/sup-mouse.el (sup-mouse-report):
7268 * textmodes/flyspell.el (flyspell-mode-line-string):
7269 * textmodes/ispell.el (ispell-highlight-face):
7270 * textmodes/reftex-global.el:
7271 * vc/vc-arch.el (vc-arch-mode-line-string):
7272 * vc/vc-cvs.el (vc-cvs-mode-line-string):
7273 * vc/vc-git.el (vc-git-mode-line-string):
7274 * vc/vc-hooks.el (vc-display-status)
7275 (vc-default-mode-line-string):
7276 * vc/vc-mtn.el (vc-mtn-mode-line-string): Doc fixes.
7277
7278 * ansi-color.el (ansi-color-faces-vector): Change default faces.
7279
7280 * dired.el (dired-sort-set-mode-line): Rename from
7281 dired-sort-set-modeline. All callers changed.
7282
7283 * eshell/esh-mode.el (eshell-status-in-mode-line): Rename from
7284 eshell-status-in-modeline.
7285
7286 * foldout.el (foldout-mode-line-string): Rename from
7287 foldout-modeline-string. All callers changed.
7288 (foldout-update-mode-line): Rename from foldout-update-modeline.
7289
7290 * subr.el (redraw-modeline): Make into obsolete alias.
7291
7292 * calendar/timeclock.el (timeclock-mode-line-display): Rename from
7293 timeclock-modeline-display. Make old name an alias.
7294 (timeclock-update-mode-line): Likewise. All callers changed.
7295 (timeclock-mode-line-display): No need to check before using
7296 add-hook.
7297 (timeclock-relative, timeclock-day-over-hook)
7298 (timeclock-use-elapsed, timeclock-mode-string)
7299 (timeclock-mode-line-display): Doc fix, "modeline" -> "mode line".
7300
7301 * emulation/crisp.el (crisp-mode-mode-line-string): Rename from
7302 crisp-mode-modeline-string.
7303
7304 * play/solitaire.el (solitaire-build-mode-line): Rename from
7305 solitaire-build-modeline. All callers changed.
7306
7307 * play/zone.el (zone-hiding-mode-line): Rename from
7308 zone-hiding-modeline. All callers changed.
7309 (zone): Remove unusued `modeline-hidden-level' property.
7310
7311 * progmodes/xscheme.el (xscheme-mode-line-initialize): Rename from
7312 xscheme-modeline-initialize. All callers changed.
7313
7314 * strokes.el (strokes-lighter): Rename from
7315 strokes-modeline-string.
7316
7317 * textmodes/sgml-mode.el (html-face-tag-alist)
7318 (html-tag-face-alist): Use mode-line face instead of obsolete
7319 alias modeline.
7320
7321 2012-06-02 Stefan Merten <smerten@oekonux.de>
7322
7323 * textmodes/rst.el: Always require `cl'.
7324 (rst-mode-map): Fix meaning of C-M-a / C-M-e.
7325
7326 2012-06-02 Chong Yidong <cyd@gnu.org>
7327
7328 * image.el (imagemagick-enabled-types): Rename from
7329 imagemagick-types-enable. Add many more types.
7330 (imagemagick-types-inhibit): Change default to nil.
7331 (imagemagick-filter-types): Caller changed.
7332
7333 2012-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
7334
7335 * emacs-lisp/cl-macs.el: Use backquotes.
7336 (cl-transform-function-property): Use eval-and-compile rather than
7337 abusing `require'.
7338 (defstruct): Use declare-function instead of with-no-warnings.
7339
7340 * emacs-lisp/bytecomp.el: Fix last change (bug#11594).
7341 (byte-compile-output-docform): Re-add the print-circle bindings.
7342 (byte-compile-fix-header): Use #$ just because it's shorter.
7343 (byte-compile-output-file-form): Remove defun/defmacro.
7344
7345 2012-06-01 Martin Rudalics <rudalics@gmx.at>
7346
7347 * simple.el (choose-completion): Remove now obsolete binding for
7348 owindow.
7349
7350 2012-06-01 Michael Albinus <michael.albinus@gmx.de>
7351
7352 * net/tramp.el (tramp-check-for-regexp): Search from buffer end,
7353 in order to avoid "Stack overflow in regexp matcher".
7354
7355 2012-05-31 Glenn Morris <rgm@gnu.org>
7356
7357 * image.el: For clarity, call imagemagick-register-types at
7358 top-level, rather than relying on a custom :initialize.
7359 (imagemagick-types-enable): New option. (Bug#11557)
7360 (imagemagick-filter-types): New function. (Bug#7406)
7361 (imagemagick-register-types): Use imagemagick-filter-types.
7362 If disabling support, remove elements altogether rather
7363 than using an impossible regexp.
7364 (imagemagick-types-inhibit): Give it the default init function.
7365
7366 2012-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
7367
7368 * emacs-lisp/bytecomp.el (byte-compile-fix-header):
7369 Handle arbitrary file name lengths (Bug#11585).
7370
7371 2012-05-31 Martin Rudalics <rudalics@gmx.at>
7372
7373 * desktop.el (desktop-read): Clear previous and next buffers for
7374 all windows and bury *Messages* buffer (bug#11556).
7375
7376 2012-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
7377
7378 Add `declare' for `defun'. Align `defmacro's with it.
7379 * emacs-lisp/easy-mmode.el (define-minor-mode)
7380 (define-globalized-minor-mode): Don't autoload the var definitions.
7381 * emacs-lisp/byte-run.el: Use lexical-binding.
7382 (defun-declarations-alist, macro-declarations-alist): New vars.
7383 (defmacro, defun): Use them.
7384 (make-obsolete, define-obsolete-function-alias)
7385 (make-obsolete-variable, define-obsolete-variable-alias):
7386 Use `declare'.
7387 (macro-declaration-function): Mark obsolete.
7388 * emacs-lisp/autoload.el: Use lexical-binding.
7389 (make-autoload): Add `expansion' arg. Rely more on macro expansion.
7390
7391 2012-05-30 Agustín Martín Domingo <agustin.martin@hispalinux.es>
7392
7393 * textmodes/ispell.el (ispell-with-no-warnings):
7394 Define as a macro.
7395 (ispell-kill-ispell, ispell-change-dictionary):
7396 Use `called-interactively-p' for Emacs instead of obsolete
7397 `interactive-p'.
7398
7399 2012-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
7400
7401 * emacs-lisp/byte-run.el (defmacro, defun): Move from C.
7402 (macro-declaration-function): Move var from C code.
7403 (macro-declaration-function): Define function with defalias.
7404 * emacs-lisp/macroexp.el (macroexpand-all-1):
7405 * emacs-lisp/cconv.el (cconv-convert, cconv-analyse-form):
7406 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker): Don't handle
7407 defun/defmacro any more.
7408 * emacs-lisp/bytecomp.el (byte-compile-arglist-signature):
7409 Provide fallback for unknown arglist.
7410 (byte-compile-arglist-warn): Change calling convention.
7411 (byte-compile-output-file-form): Move print-vars binding.
7412 (byte-compile-output-docform): Simplify accordingly.
7413 (byte-compile-file-form-defun, byte-compile-file-form-defmacro)
7414 (byte-compile-defmacro-declaration): Remove.
7415 (byte-compile-file-form-defmumble): Generalize to defalias.
7416 (byte-compile-output-as-comment): Return byte-positions.
7417 Simplify callers accordingly.
7418 (byte-compile-lambda): Use `assert'.
7419 (byte-compile-defun, byte-compile-defmacro): Remove.
7420 (byte-compile-file-form-defalias):
7421 Use byte-compile-file-form-defmumble.
7422 (byte-compile-defalias-warn): Remove.
7423
7424 2012-05-29 Stefan Merten <smerten@oekonux.de>
7425
7426 * textmodes/rst.el: Silence `checkdoc-ispell' errors where
7427 possible. Fix authors. Improve comments. Improve loading of `cl'.
7428
7429 (rst-mode-abbrev-table): Merge definition.
7430 (rst-mode): Make sure `font-lock-defaults' is buffer local.
7431 (rst-define-key, rst-deprecated-keys, rst-call-deprecated): Refactor.
7432
7433 2012-05-29 Ulf Jasper <ulf.jasper@web.de>
7434
7435 * calendar/icalendar.el
7436 (icalendar-export-region): Export UID properly.
7437
7438 2012-05-29 Leo Liu <sdl.web@gmail.com>
7439 * calendar/icalendar.el (icalendar-import-format):
7440 Add `icalendar-import-format-uid' (Bug#11525).
7441 (icalendar-import-format-uid): New.
7442 (icalendar--parse-summary-and-rest, icalendar--format-ical-event):
7443 Export UID.
7444
7445 2012-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
7446
7447 * emacs-lisp/pcase.el (pcase--expand): Accept different sets of vars in
7448 different alternative patterns.
7449 (pcase-codegen): Be more careful to preserve identity.
7450 (pcase--u1): Don't forget to mark vars as used.
7451
7452 * emacs-lisp/bytecomp.el (byte-compile-constp): Treat #'v as a constant.
7453 (byte-compile-close-variables): Bind byte-compile--outbuffer here...
7454 (byte-compile-from-buffer): ...rather than here.
7455
7456 * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Don't re-preprocess
7457 functions from byte-compile-function-environment.
7458
7459 2012-05-29 Troels Nielsen <bn.troels@gmail.com>
7460
7461 * window.el (window-deletable-p): Avoid deleting the root window
7462 of a frame with an active minibuffer.
7463
7464 2012-05-29 Martin Rudalics <rudalics@gmx.at>
7465
7466 * simple.el (choose-completion): Use quit-window (Bug#11567).
7467
7468 2012-05-29 Chong Yidong <cyd@gnu.org>
7469
7470 * whitespace.el (whitespace-cleanup): Fix usage of
7471 whitespace-empty-at-bob-regexp (Bug#11492).
7472
7473 2012-05-29 Aaron S. Hawley <aaron.s.hawley@gmail.com>
7474
7475 * vc/vc.el (vc-revert, vc-rollback): Dont kill vc-diff buffer on
7476 revert (Bug#11488).
7477
7478 2012-05-29 Juri Linkov <juri@jurta.org>
7479
7480 * isearch.el (isearch-mode-map): Bind `M-s _' to
7481 `isearch-toggle-symbol'. Bind `M-s c' to
7482 `isearch-toggle-case-fold'.
7483 (search-map): Bind `M-s _' to `isearch-forward-symbol'.
7484 (isearch-forward): Add `M-s _' to the docstring.
7485 (isearch-forward-symbol, isearch-toggle-case-fold)
7486 (isearch-symbol-regexp): New functions. (Bug#11381)
7487
7488 2012-05-29 Juri Linkov <juri@jurta.org>
7489
7490 * isearch.el (isearch-word): Add docstring. (Bug#11381)
7491 (isearch-occur, isearch-search-and-update): If `isearch-word' is
7492 a function, call it to get the regexp.
7493 (isearch-message-prefix): If `isearch-word' holds a symbol, use its
7494 property `isearch-message-prefix' instead of the string "word ".
7495 (isearch-search-fun-default): For the case of `isearch-word',
7496 return a lambda that calls re-search-forward/re-search-backward
7497 with a regexp returned by `word-search-regexp' or by the function
7498 in `isearch-word'.
7499
7500 2012-05-29 Juri Linkov <juri@jurta.org>
7501
7502 * isearch.el (isearch-search-fun-default): New function.
7503 (isearch-search-fun): Move default part to the new function
7504 `isearch-search-fun-default'.
7505 (isearch-search-fun-function): Set the default value to
7506 `isearch-search-fun-default'. (Bug#11381)
7507
7508 * comint.el (comint-history-isearch-end):
7509 Use `isearch-search-fun-default'.
7510 (comint-history-isearch-search): Use `isearch-search-fun-default'
7511 and remove spacial case for `isearch-word'.
7512 (comint-history-isearch-wrap): Remove spacial case for
7513 `isearch-word'.
7514
7515 * hexl.el (hexl-isearch-search-function):
7516 Use `isearch-search-fun-default'.
7517
7518 * info.el (Info-isearch-search): Use `isearch-search-fun-default'.
7519 Use `word-search-regexp' for `isearch-word'.
7520
7521 * misearch.el (multi-isearch-search-fun):
7522 Use `isearch-search-fun-default'.
7523
7524 * simple.el (minibuffer-history-isearch-search):
7525 Use `isearch-search-fun-default' and remove spacial case for
7526 `isearch-word'.
7527 (minibuffer-history-isearch-wrap): Remove spacial case for
7528 `isearch-word'.
7529
7530 * textmodes/reftex-global.el (reftex-isearch-wrap-function):
7531 Remove spacial case for `isearch-word'.
7532 (reftex-isearch-isearch-search): Use `isearch-search-fun-default'.
7533
7534 2012-05-28 Agustín Martín Domingo <agustin.martin@hispalinux.es>
7535
7536 Decrease XEmacs incompatibilities.
7537 * textmodes/flyspell.el (flyspell-check-pre-word-p):
7538 Use `string-match'.
7539 (flyspell-delete-region-overlays): Use alternative definition for
7540 XEmacs.
7541 (flyspell-delete-all-overlays): Use `flyspell-delete-region-overlays'.
7542 (flyspell-word): Use `process-kill-without-query' if XEmacs.
7543 (flyspell-mode-on): Use `interactive-p' if XEmacs.
7544 (flyspell-incorrect-face, flyspell-duplicate-face): Do not use
7545 `define-obsolete-face-alias' under XEmacs, but old method.
7546
7547 * textmodes/ispell.el (ispell-with-no-warnings): XEmacs alternative
7548 `with-no-warnings' definition or Emacs alias.
7549 (ispell-command-loop, ispell-message): Use `ispell-with-no-warnings'.
7550 (ispell-word): Do not use `region-p' if XEmacs.
7551
7552 2012-05-28 Agustín Martín Domingo <agustin.martin@hispalinux.es>
7553
7554 * textmodes/ispell.el (ispell-find-aspell-dictionaries):
7555 Check for `ispell-dictionary-base-alist' instead of full
7556 `ispell-dictionary-alist'.
7557 (ispell-init-process): Show spellchecker when starting new Ispell
7558 process.
7559
7560 2012-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
7561
7562 * progmodes/vhdl-mode.el: Sync with upstream 3.33.28.
7563 http://www.iis.ee.ethz.ch/~zimmi/emacs/vhdl-mode.html#release-notes-3.33
7564
7565 2012-05-27 Juanma Barranquero <lekktu@gmail.com>
7566
7567 * version.el (motif-version-string, gtk-version-string)
7568 (ns-version-string): Declare.
7569
7570 2012-05-27 Juri Linkov <juri@jurta.org>
7571
7572 * emacs-lisp/lisp-mode.el (eval-defun-2): Use `eval-sexp-add-defvars'
7573 after the `eval-defun-1' specialcaseing
7574 like in `edebug-eval-defun' (bug#10181).
7575
7576 * emacs-lisp/edebug.el (edebug-eval-defun): Set `face-documentation'
7577 like in `eval-defun-1'.
7578
7579 2012-05-27 Eli Zaretskii <eliz@gnu.org>
7580
7581 * mail/sendmail.el (mail-yank-region):
7582 Recognize rmail-yank-current-message in addition to insert-buffer.
7583 Fixes mail-mode's "C-c C-r" that otherwise does nothing when invoked in
7584 a *mail* buffer created through rmail-start-mail with sendmail as
7585 mail-user-agent.
7586
7587 2012-05-27 Chong Yidong <cyd@gnu.org>
7588
7589 * net/gnutls.el (gnutls-min-prime-bits): Improve docstring.
7590 Default to 256 (Bug#11267).
7591
7592 * help.el (describe-mode): Doc fix.
7593
7594 2012-05-26 Glenn Morris <rgm@gnu.org>
7595
7596 * w32-fns.el (w32-init-info): Remove.
7597 * paths.el (Info-default-directory-list): Add w32-init-info equivalent.
7598
7599 * info.el (info-initialize): For self-contained NS builds, put the
7600 included info/ directory at the front. (Bug#2791)
7601
7602 * paths.el (Info-default-directory-list): Make it a defcustom,
7603 mainly so that we can use custom-initialize-delay.
7604
7605 2012-05-26 Stefan Monnier <monnier@iro.umontreal.ca>
7606
7607 * subr.el (buffer-has-markers-at): Mark obsolete.
7608
7609 * subr.el (lambda): Use declare.
7610
7611 * emacs-lisp/lisp-mode.el (lambda):
7612 * emacs-lisp/edebug.el (lambda): Move properties to its definition.
7613
7614 2012-05-26 Aaron S. Hawley <aaron.s.hawley@gmail.com>
7615
7616 * thingatpt.el (forward-same-syntax): Handle no ARG case. (Bug#11560)
7617
7618 2012-05-26 Glenn Morris <rgm@gnu.org>
7619
7620 * progmodes/cc-mode.el (auto-mode-alist): Fix typo.
7621
7622 2012-05-25 Glenn Morris <rgm@gnu.org>
7623
7624 * paths.el: Remove no-byte-compile.
7625 * loadup.el: No need to load paths.el uncompiled.
7626
7627 * image.el (imagemagick-types-inhibit): Doc fix.
7628
7629 * version.el: Remove no-byte-compile and associated formatting.
7630 * loadup.el: No need to load version.el uncompiled. AFAICS, this
7631 is ancient code from when there was an "inc-vers.el".
7632
7633 2012-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
7634
7635 * progmodes/gdb-mi.el: Minor style changes.
7636 (gdb-enable-debug, gdb-speedbar-auto-raise, gdb-many-windows):
7637 Turn into minor modes.
7638 (gdb--if-arrow): Rename from gdb-if-arrow, make it hygienic.
7639 (gdb-mouse-until, gdb-mouse-jump): Adjust uses accordingly.
7640 (gdb-shell): Remove unneeded let-binding.
7641 (gdb-get-many-fields): Eliminate O(n²) behavior.
7642
7643 2012-05-25 Eli Zaretskii <eliz@gnu.org>
7644
7645 * cus-start.el <vertical-centering-font-regexp>: Avoid warning on
7646 platforms that don't link in fontset.c.
7647
7648 2012-05-25 Juri Linkov <juri@jurta.org>
7649
7650 Use the same diff color scheme as in modern VCSes (bug#10181).
7651
7652 * vc/diff-mode.el (diff-header, diff-file-header): Remove "green"
7653 to avoid confusion with `diff-added' that now uses green colors.
7654 (diff-removed): Use shades of red.
7655 (diff-added): Use shades of green.
7656 (diff-changed): Leave just the yellow color.
7657 (diff-use-changed-face): New variable.
7658 (diff-font-lock-keywords): Use `diff-use-changed-face' to decide
7659 how to highlight context diff changes.
7660 (diff-refine-change): Use shades of yellow.
7661 (diff-refine-removed): New face that uses shades of red.
7662 (diff-refine-added): New face that uses shades of green.
7663 (diff-refine-hunk): Use `diff-refine-change', `diff-refine-added',
7664 `diff-refine-removed' in the call to `smerge-refine-subst'
7665 depending on the value of `diff-use-changed-face'.
7666
7667 * vc/smerge-mode.el (smerge-mine): Use shades of red.
7668 (smerge-other): Use shades of green.
7669 (smerge-base): Use shades of yellow.
7670 (smerge-refined-change): Empty face.
7671 (smerge-refined-removed): New face that uses shades of red.
7672 (smerge-refined-added): New face that uses shades of green.
7673 (smerge-refine-subst): Rename arg `props' to `props-c'. Add new
7674 args `props-r' and `props-a', and use them. Doc fix.
7675 (smerge-refine): Evaluate `smerge-use-changed-face' and depending
7676 on its value use different faces `smerge-refined-change',
7677 `smerge-refined-removed', `smerge-refined-added' in the call to
7678 `smerge-refine-subst'.
7679
7680 * vc/ediff-init.el (ediff-current-diff-A, ediff-fine-diff-A):
7681 Add face condition `min-colors 88' with shades of red.
7682 (ediff-current-diff-B, ediff-fine-diff-B): Add face condition
7683 `min-colors 88' with shades of green.
7684 (ediff-current-diff-C, ediff-fine-diff-C): Add face condition
7685 `min-colors 88' with shades of yellow.
7686
7687 2012-05-24 Glenn Morris <rgm@gnu.org>
7688
7689 * paths.el (prune-directory-list, remote-shell-program): Move to...
7690 * files.el (prune-directory-list, remote-shell-program): ...here.
7691 For the latter, delay initialization, prefer ssh, just search PATH.
7692
7693 * paths.el (term-file-prefix): Move to faces.el (the only user).
7694 * faces.el (term-file-prefix): Move here, make it a defcustom.
7695
7696 * paths.el (news-directory, news-path, news-inews-program):
7697 Move to gnus/nnspool.el.
7698
7699 * paths.el (gnus-default-nntp-server): Remove (gnus.el defines it).
7700
7701 * paths.el (rmail-file-name, rmail-spool-directory): Move from here...
7702 * mail/rmail.el (rmail-file-name, rmail-spool-directory): ... to here.
7703 Make the latter a defcustom, with a delayed initialization.
7704
7705 * paths.el (gnus-nntp-service, gnus-local-organization): Remove.
7706 These were deleted from Gnus itself late 2010.
7707
7708 2012-05-22 Juanma Barranquero <lekktu@gmail.com>
7709
7710 * progmodes/which-func.el (which-func-ff-hook):
7711 Check against user-error, not error.
7712
7713 * emacs-lisp/edebug.el (top): Do not load or set up loading of
7714 cl-specs.el, which no longer exists.
7715
7716 2012-05-22 Glenn Morris <rgm@gnu.org>
7717
7718 * info.el (info-emacs-bug): New command.
7719 * menu-bar.el (menu-bar-help-menu): Add "How to Report a Bug" to Help.
7720 * mail/emacsbug.el (report-emacs-bug): Replace with info-emacs-bug.
7721
7722 2012-05-21 Glenn Morris <rgm@gnu.org>
7723
7724 * makefile.w32-in (update-subdirs-SH):
7725 * Makefile.in (update-subdirs): Update for moved update-subdirs.
7726
7727 2012-05-21 Stefan Monnier <monnier@iro.umontreal.ca>
7728
7729 * hi-lock.el (hi-lock-face-defaults): Move obsolete before definition.
7730
7731 * progmodes/compile.el (compilation-error-regexp-alist-alist):
7732 Simplify Maven regexp, and make sure the file can't start with a space
7733 (bug#11517).
7734
7735 2012-05-21 Glenn Morris <rgm@gnu.org>
7736
7737 * Makefile.in (setwins, setwins_almost, setwins_for_subdirs):
7738 Scrap superfluous subshells.
7739
7740 2012-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
7741
7742 * emacs-lisp/bytecomp.el (byte-compile-root-dir): New var.
7743 (byte-compile-warning-prefix, batch-byte-compile-file): Use it.
7744
7745 2012-05-19 Jay Belanger <jay.p.belanger@gmail.com>
7746
7747 * calc/calc.el (calc-ensure-consistent-units): New variable.
7748
7749 * calc/calc-units.el (math-consistent-units-p)
7750 (math-check-unit-consistency): New functions.
7751 (calc-quick-units, calc-convert-units):
7752 Use `math-check-unit-consistency' when `calc-ensure-consistent-units'
7753 is non-nil.
7754 (calc-extract-units): Fix typo.
7755
7756 2012-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
7757
7758 * vc/vc-bzr.el (vc-bzr-state-heuristic): Save match-data around sha1.
7759
7760 * textmodes/flyspell.el: Commenting style, plus code simplifications.
7761 (flyspell-default-deplacement-commands): Don't spell check after
7762 repeated window/frame switches (e.g. triggered by mouse-movement).
7763 (flyspell-delay-commands, flyspell-deplacement-commands): Use mapc.
7764 (flyspell-debug-signal-word-checked): Simplify and fit in 80 cols.
7765 (flyspell-casechars-cache, flyspell-ispell-casechars-cache)
7766 (flyspell-not-casechars-cache, flyspell-ispell-not-casechars-cache):
7767 Remove unused vars.
7768 (flyspell-get-casechars, flyspell-get-not-casechars):
7769 Simplify; Don't bother removing a ] just to add it back.
7770 * textmodes/ispell.el (ispell-program-name): Use executable-find.
7771
7772 2012-05-18 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
7773
7774 * calc/calc-lang.el (math-C-parse-bess, math-C-parse-fma):
7775 New functions.
7776 (math-function-table): Add support for more C functions.
7777
7778 2012-05-18 Agustín Martín Domingo <agustin.martin@hispalinux.es>
7779
7780 * textmodes/flyspell.el (flyspell-check-pre-word-p)
7781 (flyspell-check-word-p, flyspell-debug-signal-word-checked):
7782 Protect delay handling for otherchars against empty otherchars.
7783
7784 2012-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
7785
7786 * emacs-lisp/lisp-mode.el (doc-string-elt): Move those properties to
7787 their respective macro declarations.
7788 * skeleton.el (define-skeleton):
7789 * progmodes/compile.el (define-compilation-mode):
7790 * ibuf-macs.el (define-ibuffer-sorter, define-ibuffer-op)
7791 (define-ibuffer-filter):
7792 * emacs-lisp/generic.el (define-generic-mode):
7793 * emacs-lisp/easy-mmode.el (define-minor-mode)
7794 (define-globalized-minor-mode):
7795 * emacs-lisp/cl-macs.el (defun*, defmacro*, defstruct, deftype):
7796 * emacs-lisp/byte-run.el (defsubst):
7797 * custom.el (deftheme): Add doc-string metadata.
7798
7799 2012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
7800
7801 * emacs-lisp/cl-macs.el, emacs-lisp/cl.el: Move indent info.
7802
7803 2012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
7804
7805 * emacs-lisp/pcase.el (pcase--u1): Avoid ((lambda ...) ...).
7806
7807 * emacs-lisp/cl.el: Add edebug specs from cl-specs.el.
7808 * emacs-lisp/cl-macs.el: Idem.
7809 * emacs-lisp/cl-specs.el: Remove.
7810
7811 2012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
7812
7813 Minor renaming of internal CL functions and variables.
7814 * emacs-lisp/cl-seq.el (cl--adjoin): Rename from cl-adjoin.
7815 (cl--position): Rename from cl-position.
7816 (cl--delete-duplicates): Rename from cl-delete-duplicates.
7817 * emacs-lisp/cl.el (cl--gensym-counter): Rename from *gensym-counter*.
7818 (cl--random-state): Rename from *random-state*.
7819
7820 2012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
7821
7822 * emacs-lisp/cl-macs.el (cl-transform-lambda): Don't add spurious
7823 parens around the arg list (bug#11499).
7824
7825 2012-05-17 Juri Linkov <juri@jurta.org>
7826
7827 * isearch.el (word-search-regexp, word-search-backward)
7828 (word-search-forward, word-search-backward-lax)
7829 (word-search-forward-lax): Move functions from search.c
7830 (bug#10145, bug#11381).
7831
7832 2012-05-16 Agustín Martín Domingo <agustin.martin@hispalinux.es>
7833
7834 * textmodes/flyspell.el (flyspell-check-pre-word-p)
7835 (flyspell-check-word-p, flyspell-debug-signal-word-checked):
7836 Delay for otherchars as for normal word components.
7837
7838 2012-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
7839
7840 * minibuffer.el (completion--sifn-requote): Fix last change.
7841 (minibuffer-local-must-match-filename-map):
7842 Move define-obsolete-variable-alias before its var.
7843
7844 2012-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
7845
7846 * emacs-lisp/pcase.el (pcase-let*, pcase-let): Fix edebug spec.
7847
7848 * minibuffer.el (completion--sifn-requote): Handle sifn's truncation
7849 behavior.
7850 (completion--string-equal-p): New function.
7851 (completion--twq-all): Use it to get better assertion failure data.
7852
7853 Only handle ".." and '..' quoting in shell-mode (bug#11466).
7854 * shell.el (shell--unquote&requote-argument, shell--unquote-argument)
7855 (shell--requote-argument): New functions.
7856 (shell-completion-vars): Use them.
7857 (shell--parse-pcomplete-arguments): Rename from
7858 shell-parse-pcomplete-arguments.
7859 * comint.el (comint-word): Obey comint-file-name-quote-list. Simplify.
7860 (comint--unquote&requote-argument): Don't handle ".." and '..' quoting.
7861 Obey comint-file-name-quote-list.
7862
7863 * emacs-lisp/smie.el (smie-indent--bolp-1): New function.
7864 (smie-indent-keyword): Use it.
7865
7866 2012-05-14 Stefan Merten <smerten@oekonux.de>
7867
7868 * textmodes/rst.el (rst-re-alist): Fix loading (bug#11462).
7869
7870 2012-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
7871
7872 * net/rlogin.el (rlogin-mode-map): Fix last change.
7873
7874 2012-05-14 Jason L. Wright <jason.wright@inl.gov> (tiny change)
7875
7876 * mail/smtpmail.el (smtpmail-send-command): Send the command and
7877 the following \r\n using a single `process-send-string', since the
7878 Lotus SMTP server refuses to accept any commands if they are sent
7879 with two `process-send-string's (Bug#11444).
7880
7881 2012-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
7882
7883 * shell.el (shell-parse-pcomplete-arguments):
7884 Obey pcomplete-arg-quote-list inside double-quoted args (Bug#11348).
7885
7886 2012-05-14 Wolfgang Jenkner <wjenkner@inode.at>
7887
7888 * image-mode.el: Fit to width/height for rotated images (Bug#11431).
7889 (image-transform-scale, image-transform-right-angle-fudge): New vars.
7890 (image-transform-width, image-transform-fit-width): New functions.
7891 (image-transform-properties): Use them.
7892 (image-transform-check-size): New function.
7893 (image-toggle-display-image): Use it (for testing).
7894 (image-transform-set-rotation): Reduce angle mod 360.
7895 Delete obsolete comment.
7896
7897 2012-05-14 Wolfgang Jenkner <wjenkner@inode.at>
7898
7899 * image-mode.el: Fix scaling (bug#11399).
7900 (image-transform-resize): Doc fix.
7901 (image-transform-properties): Default scale is 1 and height should
7902 be an integer.
7903
7904 2012-05-13 Johan Bockgård <bojohan@gnu.org>
7905
7906 * emacs-lisp/smie.el (smie-next-sexp): Use accessor `op-forw' rather
7907 than hard-coding `car', to fix misbehavior when moving forward.
7908
7909 2012-05-13 Chong Yidong <cyd@gnu.org>
7910
7911 * emacs-lisp/tabulated-list.el (tabulated-list-format)
7912 (tabulated-list-entries, tabulated-list-padding)
7913 (tabulated-list-sort-key): Make permanent-local.
7914
7915 * ebuff-menu.el: Adapt to Buffer Menu changes (Bug#11455).
7916 (electric-buffer-list): Put electric buffer menu
7917 command descriptions in this docstring, instead of the docstring
7918 of electric-buffer-menu-mode. Code cleanups.
7919 (electric-buffer-menu-mode): Use define-derived-mode. Rename from
7920 Electric-buffer-menu-mode.
7921 (electric-buffer-update-highlight): Minor code cleanup.
7922
7923 2012-05-13 Michael Albinus <michael.albinus@gmx.de>
7924
7925 * net/dbus.el (dbus-call-method): Restore events not from D-Bus.
7926 (Bug#11447)
7927
7928 2012-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
7929
7930 Move define-obsolete-variable-alias before the var's definition.
7931 * vc/log-edit.el (vc-comment-ring, vc-comment-ring-index):
7932 * tooltip.el (tooltip-hook):
7933 * textmodes/reftex-toc.el (reftex-toc-map):
7934 * textmodes/reftex-sel.el (reftex-select-label-map)
7935 (reftex-select-bib-map):
7936 * textmodes/reftex-index.el (reftex-index-map)
7937 (reftex-index-phrases-map):
7938 * speedbar.el (speedbar-syntax-table, speedbar-key-map):
7939 * progmodes/meta-mode.el (meta-mode-map):
7940 * novice.el (disabled-command-hook):
7941 * loadhist.el (unload-hook-features-list):
7942 * frame.el (blink-cursor):
7943 * files.el (find-file-not-found-hooks, write-file-hooks)
7944 (write-contents-hooks):
7945 * emulation/tpu-edt.el (GOLD-map):
7946 * emacs-lock.el (emacs-lock-from-exiting):
7947 * emacs-lisp/generic.el (generic-font-lock-defaults):
7948 * emacs-lisp/chart.el (chart-map):
7949 * dos-fns.el (register-name-alist):
7950 * dired-x.el (dired-omit-files-p):
7951 * desktop.el (desktop-enable):
7952 * cus-edit.el (custom-mode-hook):
7953 * buff-menu.el (buffer-menu-mode-hook):
7954 * bookmark.el (bookmark-read-annotation-text-func)
7955 (bookmark-exit-hooks):
7956 * allout.el (allout-mode-deactivate-hook)
7957 (allout-exposure-change-hook, allout-structure-added-hook)
7958 (allout-structure-deleted-hook, allout-structure-shifted-hook):
7959 * dirtrack.el (dirtrack-toggle, dirtrackp, dirtrack-debug-toggle)
7960 (dirtrack-debug): Move call to define-obsolete-variable-alias so it
7961 comes before the corresponding variable's definition.
7962
7963 2012-05-12 Chong Yidong <cyd@gnu.org>
7964
7965 * buff-menu.el (Buffer-menu-buffer+size-width): Doc fix (Bug#11454).
7966 (Buffer-menu-mouse-select): Restore function (Bug#11459).
7967 (Buffer-menu-mode-map): Bind it.
7968 (Buffer-menu--pretty-name): Add a mouse-face property.
7969
7970 2012-05-11 Stefan Monnier <monnier@iro.umontreal.ca>
7971
7972 * progmodes/prolog.el: Use SMIE. Cleanup regexp setup.
7973 (prolog-upper-case-string, prolog-lower-case-string)
7974 (prolog-atom-char-regexp, prolog-atom-regexp): Initialize in defconst.
7975 (prolog-use-smie, prolog-smie-grammar): New vars.
7976 (prolog-smie-forward-token, prolog-smie-backward-token)
7977 (prolog-smie-rules): New funs.
7978 (prolog-comment-indent): Remove.
7979 (prolog-mode-variables): Use default comment indentation instead.
7980 Setup SMIE.
7981 (prolog-build-case-strings, prolog-set-atom-regexps): Remove.
7982 (prolog-mode): Don't call them any more.
7983 (prolog-electric-colon, prolog-electric-dash)
7984 (prolog-edit-menu-insert-move): Use indent-according-to-mode.
7985
7986 * dabbrev.el (dabbrev-expand): Make "no expansion found" a user-error.
7987
7988 * minibuffer.el (completion--twq-all): Again, allow case differences.
7989
7990 * term.el: Move keymap initialization code to be more idiomatic.
7991 (term-signals-menu, term-mode-map, term-raw-map, term-raw-escape-map)
7992 (term-terminal-menu): Move initialization into declaration.
7993 (term-escape-char): Let the user set it in her .emacs.
7994
7995 * progmodes/sh-script.el: Use post-self-insert-hook&electric-pair-mode.
7996 Provide SMIE-based indentation (not enabled by default yet).
7997 (sh-mode-map): Don't bind electric keys.
7998 Use electric-pair-mode instead of skeleton-pair.
7999 (sh-assignment-regexp): Fit within 80 columns.
8000 (sh-indent-supported): Specify actual shell name instead of boolean.
8001 (sh--maybe-here-document): New fun, from sh-maybe-here-document.
8002 (sh-maybe-here-document): Use it. Make obsolete.
8003 (sh-electric-here-document-mode) New minor mode.
8004 (sh-mode): Use it. Don't set sh-indent-supported-here here.
8005 (sh-smie-sh-grammar, sh-smie--sh-operators, sh-smie--sh-operators-re)
8006 (sh-smie--sh-operators-back-re, sh-indent-after-continuation)
8007 (sh-smie-rc-grammar, sh-use-smie): New vars.
8008 (sh-smie--keyword-p, sh-smie--newline-semi-p, sh-smie--sh-keyword-p)
8009 (sh-smie-sh-forward-token, sh-smie--looking-back-at-continuation-p)
8010 (sh-smie-sh-backward-token, sh-smie--continuation-start-indent)
8011 (sh-smie-sh-rules, sh-smie-rc-rules, sh-smie--sh-keyword-in-p)
8012 (sh-smie--rc-after-special-arg-p, sh-smie-rc-backward-token)
8013 (sh-smie-sh-rules, sh-smie--rc-newline-semi-p): New functions.
8014 (sh-set-shell): Use smie-setup if requested.
8015
8016 * term.el (term-set-escape-char): Properly set term-escape-char.
8017 See http://stackoverflow.com/questions/10524656.
8018
8019 2012-05-10 Chong Yidong <cyd@gnu.org>
8020
8021 * ffap.el (ffap-url-unwrap-local): Make it work right (Bug#9131).
8022 Use url-generic-parse-url, and handle host names and Windows
8023 filenames properly.
8024 (ffap-url-unwrap-remote): Use url-generic-parse-url.
8025 (ffap-url-unwrap-remote): Accept list values, specifying a list of
8026 URL schemes to work on.
8027 (ffap--toggle-read-only): New function.
8028 (ffap-read-only, ffap-read-only-other-window)
8029 (ffap-read-only-other-frame): Use it.
8030 (ffap-fixup-url): Don't check ffap-ftp-regexp, since it is not
8031 necessary for ffap-url-unwrap-remote.
8032
8033 2012-05-10 Dave Abrahams <dave@boostpro.com>
8034
8035 * cus-start.el (create-lockfiles): Add it.
8036
8037 2012-05-09 Chong Yidong <cyd@gnu.org>
8038
8039 * net/browse-url.el (browse-url-url-encode-chars): Use upper-case.
8040 (browse-url-encode-url): Encode spaces and quotes (Bug#6300).
8041
8042 2012-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
8043
8044 * shell.el (shell-completion-vars): Fix last change (bug#11348).
8045
8046 2012-05-09 Chong Yidong <cyd@gnu.org>
8047
8048 * ansi-color.el (ansi-color-process-output): Check for validity of
8049 comint-last-output-start before using it. This avoids a bad
8050 interaction with gdb-mi's input/output buffer.
8051
8052 2012-05-09 Glenn Morris <rgm@gnu.org>
8053
8054 * files.el (dir-locals-read-from-file):
8055 Mention dir-locals in any error message.
8056
8057 2012-05-09 Chong Yidong <cyd@gnu.org>
8058
8059 * emacs-lisp/package.el (package-built-in-p): Handle the `emacs'
8060 package (Bug#11410).
8061
8062 * emacs-lisp/package.el (package-buffer-info): Avoid putting local
8063 variables into description.
8064
8065 2012-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
8066
8067 * shell.el (shell-completion-vars): Set pcomplete-arg-quote-list like
8068 shell-delimiter-argument-list (bug#11348).
8069 (shell-parse-pcomplete-arguments): Obey pcomplete-arg-quote-list.
8070
8071 2012-05-09 Juanma Barranquero <lekktu@gmail.com>
8072
8073 * textmodes/rst.el: Silence byte-compiler warnings.
8074 (rst-re-alist, rst-reset-section-caches): Move around.
8075 (rst-re): Use `characterp', not `char-valid-p'.
8076 (font-lock-beg, font-lock-end): Declare.
8077
8078 * progmodes/idlw-shell.el (specs): Remove reference to deleted
8079 variable `idlwave-shell-activate-alt-keybindings' and simplify.
8080
8081 * eshell/esh-cmd.el (eshell-debug-command): Fix typo in previous change.
8082
8083 2012-05-08 Glenn Morris <rgm@gnu.org>
8084
8085 * files.el (auto-mode-alist): Treat ".make" like ".mk".
8086
8087 2012-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
8088
8089 * vc/log-edit.el: Add GNU coding standards highlighting.
8090 (log-edit-font-lock-gnu-style)
8091 (log-edit-font-lock-gnu-keywords): New vars.
8092 (log-edit-font-lock-keywords): New fun.
8093 (log-edit-mode): Don't fold case in font-lock.
8094 (log-edit-font-lock-keywords): Do not assume case-folding.
8095
8096 * imenu.el: Misc cleanup. Make docstrings out of comments.
8097 Use lexical-binding.
8098 (imenu--index-alist, imenu--last-menubar-index-alist)
8099 (imenu-menubar-modified-tick): Use defvar-local.
8100 (imenu--split-menu): Remove unused var.
8101 (imenu--cleanup-seen): Declare as global.
8102 (imenu--cleanup): Use dolist.
8103
8104 * subr.el (defvar-local): Add debug spec and doc-string position.
8105
8106 2012-05-08 Glenn Morris <rgm@gnu.org>
8107
8108 * language/burmese.el, language/cham.el, language/czech.el:
8109 * language/english.el, language/georgian.el, language/greek.el:
8110 * language/japanese.el, language/khmer.el, language/korean.el:
8111 * language/lao.el, language/misc-lang.el, language/romanian.el:
8112 * language/sinhala.el, language/slovak.el, language/tai-viet.el:
8113 * language/thai.el, language/utf-8-lang.el:
8114 Remove no-byte-compile setting.
8115
8116 * play/zone.el (zone-pgm-stress): Don't pollute kill-ring. (Bug#11388)
8117
8118 2012-05-08 Aaron S. Hawley <aaron.s.hawley@gmail.com>
8119
8120 * progmodes/make-mode.el (makefile-browse):
8121 Remove unnecessary interactive. (Bug#11324)
8122
8123 2012-05-07 Glenn Morris <rgm@gnu.org>
8124
8125 * forms-d2.el, forms-pass.el: Move to ../etc/forms directory.
8126
8127 * international/mule.el (find-auto-coding): Make "unibyte: t" obsolete.
8128
8129 2012-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
8130
8131 * loadup.el: Preload newcomment.el.
8132 * newcomment.el: Move autoload-only code to toplevel.
8133
8134 * buff-menu.el (list-buffers--refresh): Mark `size' as right-align.
8135 * emacs-lisp/tabulated-list.el (tabulated-list-init-header):
8136 Handle new :right-align column property.
8137 (tabulated-list-print-col): Idem, plus use `display' text-property to
8138 try and preserve alignment for variable pitch fonts.
8139
8140 2012-05-07 Chong Yidong <cyd@gnu.org>
8141
8142 * emacs-lisp/tabulated-list.el: Add no-header-line alternative.
8143 (tabulated-list-use-header-line): New var.
8144 (tabulated-list-init-header): Use it.
8145 (tabulated-list-print-fake-header): New function.
8146 (tabulated-list-print): Use it.
8147 (tabulated-list-sort-button-map): Add non-header-line commands.
8148 (tabulated-list-init-header): Add column name property to basic
8149 labels as well.
8150 (tabulated-list-col-sort): Handle non-header-line button case.
8151 (tabulated-list--sort-by-column-name): Fix a corner case.
8152
8153 * buff-menu.el (list-buffers--refresh):
8154 Handle Buffer-menu-use-header-line.
8155
8156 2012-05-06 Chong Yidong <cyd@gnu.org>
8157
8158 * buff-menu.el: Convert to Tabulated List mode.
8159 (Buffer-menu-buffer+size-width): Make obsolete.
8160 (Buffer-menu-name-width, Buffer-menu-size-width): New variables.
8161 (Buffer-menu-mode-map): Inherit from tabulated-list-mode-map.
8162 (Buffer-menu-mode): Derive from tabulated-list-mode. Move command
8163 documentation into docstring of buffer-menu.
8164 (Buffer-menu-toggle-files-only): Add an informative message.
8165 (Buffer-menu-sort): Convert to alias for tabulated-list-sort.
8166 (Buffer-menu-buffer, Buffer-menu-beginning, Buffer-menu-mark)
8167 (Buffer-menu-unmark, Buffer-menu-backup-unmark)
8168 (Buffer-menu-delete, Buffer-menu-save, Buffer-menu-not-modified)
8169 (Buffer-menu-execute, Buffer-menu-select)
8170 (Buffer-menu-marked-buffers, Buffer-menu-toggle-read-only)
8171 (Buffer-menu-bury): Use Tabulated List machinery.
8172 (Buffer-menu-mouse-select, Buffer-menu-sort-by-column)
8173 (Buffer-menu-sort-button-map, Buffer-menu-make-sort-button):
8174 Delete.
8175 (list-buffers--refresh): New function.
8176 (list-buffers-noselect): Use it.
8177 (tabulated-list-entry-size->, Buffer-menu--pretty-name)
8178 (Buffer-menu--pretty-file-name): New helper functions.
8179
8180 * loadup.el: Preload tabulated-list.
8181
8182 * emacs-lisp/tabulated-list.el (tabulated-list-sort): Rename from
8183 tabulated-list-sort-column.
8184 (tabulated-list-init-header): Add the initial aligning space even
8185 if tabulated-list-padding is zero.
8186
8187 2012-05-06 Christopher Schmidt <christopher@ch.ristopher.com>
8188
8189 * emacs-lisp/cl-macs.el (cl-expr-contains): Handle cons cells
8190 whose cdr is not a cons cell correctly (bug#11038).
8191
8192 2012-05-06 Chong Yidong <cyd@gnu.org>
8193
8194 * emacs-lisp/tabulated-list.el (tabulated-list-format):
8195 Accept additional plist in column descriptors.
8196 (tabulated-list-init-header): Obey it.
8197 (tabulated-list-get-entry): New function.
8198 (tabulated-list-put-tag): Use it. Use string-width instead of
8199 length.
8200 (tabulated-list--column-number): New function.
8201 (tabulated-list-print): Use it.
8202 (tabulated-list-print-col): New function.
8203 Set `tabulated-list-column-name' property on each column's text.
8204 (tabulated-list-print-entry): Use it.
8205 (tabulated-list-delete-entry, tabulated-list-set-col):
8206 New functions.
8207 (tabulated-list-sort-column): New command (Bug#11337).
8208
8209 * buff-menu.el (list-buffers): Move C-x C-b binding from
8210 buff-menu.el to bindings.el.
8211
8212 * ebuff-menu.el (Electric-buffer-menu-undefined): Use the
8213 :advertised-binding feature.
8214
8215 2012-05-06 Troels Nielsen <bn.troels@gmail.com> (tiny change)
8216
8217 * progmodes/compile.el (compilation-internal-error-properties):
8218 Calculate start position correctly when end-col is set but
8219 end-line is not (Bug#11382).
8220
8221 2012-05-06 Wolfgang Jenkner <wjenkner@inode.at>
8222
8223 * man.el (Man-unindent): Use text-property-default-nonsticky to
8224 prevent untabify from inheriting face properties (Bug#11408).
8225
8226 2012-05-05 Stefan Merten <smerten@oekonux.de>
8227
8228 * textmodes/rst.el: Major merge with upstream development up to
8229 Docutils SVN r7399 / rst.el V1.2.1.
8230
8231 Clarify maintainership and authors.
8232
8233 (rst-extract-version, rst-cvs-header, rst-cvs-rev)
8234 (rst-cvs-timestamp, rst-svn-rev, rst-svn-timestamp)
8235 (rst-official-version, rst-official-cvs-rev, rst-version)
8236 (rst-package-emacs-version-alist): New functions and variables
8237 for version information.
8238
8239 (rst-bullets, rst-uri-schemes, rst-adornment-chars)
8240 (rst-max-inline-length, rst-re-alist-def, rst-re-alist)
8241 (rst-mode-syntax-table, rst-mode): New and corrected functions
8242 and variables representing reStructuredText features.
8243
8244 (rst-re): New function for reStructuredText regexes. Use in
8245 many places.
8246
8247 (rst-deprecated-keys, rst-call-deprecated, rst-define-key)
8248 (rst-mode-map): Rebind keys.
8249
8250 (rst-mode-lazy, rst-font-lock-keywords)
8251 (rst-font-lock-extend-region)
8252 (rst-font-lock-extend-region-internal)
8253 (rst-font-lock-extend-region-extend)
8254 (rst-font-lock-find-unindented-line-limit)
8255 (rst-font-lock-find-unindented-line-match)
8256 (rst-adornment-level, rst-font-lock-adornment-level)
8257 (rst-font-lock-adornment-match)
8258 (rst-font-lock-handle-adornment-pre-match-form)
8259 (rst-font-lock-handle-adornment-matcher): Major revision of
8260 font-locking. Integrate with other code. Use `jit-lock-mode'.
8261
8262 (rst-preferred-adornments, rst-adjust-hook)
8263 (rst-new-adornment-down, rst-preferred-bullets)
8264 (rst-preferred-bullets, rst-indent, rst-indent-width)
8265 (rst-indent-field, rst-indent-literal-normal)
8266 (rst-indent-literal-minimized, rst-indent-comment): Change,
8267 extend and improve customization.
8268
8269 (rst-line-homogeneous-p, rst-line-homogeneous-nodent-p)
8270 (rst-normalize-cursor-position, rst-get-decoration)
8271 (rst-straighten-deco-spacing, rst-re-bullets, rst-re-items)
8272 (rst-rstrip, rst-toc-insert-find-delete-contents)
8273 (rst-shift-fill-region, rst-compute-bullet-tabs)
8274 (rst-debug-print-tabs, rst-debug-mark-found)
8275 (rst-shift-region-guts, rst-shift-region-right)
8276 (rst-shift-region-left, rst-use-char-classes)
8277 (rst-font-lock-keywords-function)
8278 (rst-font-lock-indentation-point)
8279 (rst-font-lock-find-unindented-line-begin)
8280 (rst-font-lock-find-unindented-line-end)
8281 (rst-font-lock-find-unindented-line)
8282 (rst-font-lock-adornment-point, rst-font-lock-level)
8283 (rst-adornment-level-alist): Remove functions and variables.
8284
8285 (rst-compare-adornments, rst-get-adornment-match)
8286 (rst-suggest-new-adornment, rst-get-adornments-around)
8287 (rst-adornment-complete-p, rst-get-next-adornment)
8288 (rst-adjust-adornment, rst-display-adornments-hierarchy)
8289 (rst-straighten-adornments): Standardize function names to
8290 use "adornment" instead of "decoration". Correct callers.
8291 Similar standardizing in many places.
8292
8293 (rst-update-section, rst-adjust, rst-promote-region)
8294 (rst-enumerate-region, rst-bullet-list-region)
8295 (rst-repeat-last-character): Correct use of `interactive'.
8296
8297 (rst-classify-adornment, rst-find-all-adornments)
8298 (rst-get-hierarchy, rst-adjust-adornment, rst-toc-update)
8299 (rst-find-leftmost-column, rst-repeat-last-character):
8300 Refactor functions.
8301
8302 (rst-find-title-line, rst-reset-section-caches)
8303 (rst-get-adornments-around, rst-adjust-adornment-work)
8304 (rst-arabic-to-roman, rst-roman-to-arabic)
8305 (rst-insert-list-pos, rst-insert-list-new-item)
8306 (rst-insert-list-continue, rst-insert-list, rst-forward-line):
8307 New functions.
8308
8309 (rst-all-sections, rst-section-hierarchy)
8310 (rst-arabic-to-roman, rst-initial-enums, rst-initial-items):
8311 New variables.
8312
8313 (rst-toc-return-wincfg, rst-toc-quit-window): Use window
8314 configuration instead of only buffer. Change where necessary.
8315
8316 (rst-line-tabs, rst-compute-tabs, rst-indent-line)
8317 (rst-shift-region, rst-adaptive-fill): New functions for
8318 indentation and filling.
8319
8320 (rst-comment-line-break, rst-comment-indent)
8321 (rst-comment-insert-comment, rst-comment-region)
8322 (rst-uncomment-region): New functions for handling comments.
8323
8324 (rst-compile): Quote shell arguments.
8325
8326 (rst-compile-pdf-preview, rst-compile-slides-preview):
8327 Delete temporary files after use.
8328
8329 2012-05-05 Glenn Morris <rgm@gnu.org>
8330
8331 * calendar/cal-html.el: Optionally include holidays in the output.
8332 Suggested by Ed Reingold <reingold@emr.cs.iit.edu>.
8333 (cal-html-holidays): New option.
8334 (cal-html-css-default): Add holiday entry.
8335 (holiday-in-range): Autoload it.
8336 (cal-html-htmlify-entry): Add optional class argument.
8337 (cal-html-htmlify-list): Add optional holidays argument.
8338 (cal-html-insert-agenda-days): Include holidays in the output.
8339 (cal-html-one-month): Maybe include holidays.
8340
8341 * calendar/holidays.el (holiday-in-range):
8342 Move here from cal-tex-list-holidays.
8343 * calendar/cal-tex.el (cal-tex-list-holidays):
8344 Make it an obsolete alias for holiday-in-range. Update all callers.
8345
8346 2012-05-05 Chong Yidong <cyd@gnu.org>
8347
8348 * select.el (xselect--encode-string): Always use utf-8 for TEXT on
8349 Nextstep.
8350
8351 2012-05-05 Ransom Williams <auvergnerw@gmail.com> (tiny change)
8352
8353 * files.el (file-auto-mode-skip): New var.
8354 (set-auto-mode-1): Use it.
8355
8356 2012-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
8357
8358 * repeat.el: Use lexical-binding.
8359 (repeat-last-self-insert, repeat-num-input-keys-at-self-insert)
8360 (repeat-undo-count): Remove.
8361 (repeat):
8362 * progmodes/octave-mod.el (octave-abbrev-start):
8363 * progmodes/f90.el (f90-abbrev-start):
8364 * face-remap.el (text-scale-adjust):
8365 * kmacro.el (kmacro-call-macro): Use set-temporary-overlay-map.
8366
8367 * emacs-lisp/pcase.el (pcase--let*): New function.
8368 (pcase--expand, pcase-codegen, pcase--q1): Use it to reduce nesting
8369 a bit more.
8370 (pcase--split-pred): Be more clever about ruling out overlap between
8371 a predicate and some constant pattern.
8372 (pcase--q1): Use `null' instead of (eq foo nil).
8373
8374 * subr.el (setq-local, defvar-local): New macros.
8375 (kbd): Redefine as an alias.
8376 (with-selected-window): Leave unrelated frames alone.
8377 (set-temporary-overlay-map): New function.
8378
8379 2012-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
8380
8381 * subr.el (user-error): New function.
8382 * window.el (switch-to-buffer):
8383 * vc/smerge-mode.el (smerge-resolve-function, smerge-resolve)
8384 (smerge-match-conflict):
8385 * simple.el (previous-matching-history-element)
8386 (next-matching-history-element, goto-history-element, undo-more)
8387 (undo-start):
8388 * progmodes/etags.el (visit-tags-table-buffer, find-tag-tag)
8389 (find-tag-noselect, find-tag-in-order, etags-goto-tag-location)
8390 (next-file, tags-loop-scan, list-tags, complete-tag):
8391 * progmodes/compile.el (compilation-loop):
8392 * mouse.el (mouse-minibuffer-check):
8393 * man.el (Man-bgproc-sentinel, Man-goto-page):
8394 * info.el (Info-find-node-2, Info-extract-pointer, Info-history-back)
8395 (Info-history-forward, Info-follow-reference, Info-menu)
8396 (Info-extract-menu-item, Info-extract-menu-counting)
8397 (Info-forward-node, Info-backward-node, Info-next-menu-item)
8398 (Info-last-menu-item, Info-next-preorder, Info-last-preorder)
8399 (Info-next-reference, Info-prev-reference, Info-index)
8400 (Info-index-next, Info-follow-nearest-node)
8401 (Info-copy-current-node-name):
8402 * imenu.el (imenu--make-index-alist)
8403 (imenu-default-create-index-function, imenu-add-to-menubar):
8404 * files.el (basic-save-buffer, recover-file):
8405 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
8406 * emacs-lisp/checkdoc.el (checkdoc-continue, checkdoc-comments)
8407 (checkdoc-message-text, checkdoc-defun):
8408 * dabbrev.el (dabbrev-completion, dabbrev--abbrev-at-point):
8409 * cus-edit.el (customize-changed-options, customize-rogue)
8410 (customize-saved, custom-variable-set, custom-variable-mark-to-save)
8411 (custom-variable-mark-to-reset-standard)
8412 (custom-variable-reset-backup, custom-face-mark-to-reset-standard)
8413 (custom-file):
8414 * completion.el (check-completion-length):
8415 * comint.el (comint-search-arg)
8416 (comint-previous-matching-input-string-position)
8417 (comint-previous-matching-input)
8418 (comint-replace-by-expanded-history-before-point, comint-send-input)
8419 (comint-copy-old-input, comint-backward-matching-input)
8420 (comint-goto-process-mark, comint-set-process-mark):
8421 * calendar/calendar.el (calendar-cursor-to-date): Use it.
8422 * bindings.el (debug-ignored-errors): Remove regexps, add `user-error'.
8423
8424 2012-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
8425
8426 * dabbrev.el (dabbrev--ignore-case-p): New function.
8427 (dabbrev-completion, dabbrev-expand, dabbrev--substitute-expansion):
8428 Use it.
8429
8430 * files.el (automount-dir-prefix): Mark as obsolete.
8431
8432 2012-05-04 Glenn Morris <rgm@gnu.org>
8433
8434 * patcomp.el, play/bruce.el: Move to obsolete/.
8435
8436 2012-05-04 Paul Eggert <eggert@cs.ucla.edu>
8437
8438 Fix minor Y10k bugs.
8439 * arc-mode.el (archive-unixdate):
8440 * autoinsert.el (auto-insert-alist):
8441 * calc/calc-forms.el (math-this-year):
8442 * emacs-lisp/copyright.el (copyright-current-year)
8443 (copyright-update-year, copyright):
8444 * tar-mode.el (tar-clip-time-string):
8445 * time.el (display-time-update):
8446 Don't assume years have 4 digits.
8447
8448 2012-05-04 Chong Yidong <cyd@gnu.org>
8449
8450 * dos-w32.el (file-name-buffer-file-type-alist)
8451 (direct-print-region-use-command-dot-com):
8452 * ffap.el (ffap-menu-regexp):
8453 * find-file.el (ff-special-constructs):
8454 * follow.el (follow-debug):
8455 * forms.el (forms--debug):
8456 * iswitchb.el (iswitchb-all-frames):
8457 * ido.el (ido-all-frames):
8458 * emacs-lisp/timer.el (timer-max-repeats):
8459 * mail/feedmail.el (feedmail-mail-send-hook)
8460 (feedmail-mail-send-hook-queued):
8461 * mail/footnote.el (footnote-signature-separator):
8462 * mail/mailabbrev.el (mail-alias-separator-string)
8463 (mail-abbrev-mode-regexp):
8464 * mail/rmail.el (rmail-speedbar-match-folder-regexp):
8465 * progmodes/idlwave.el (idlwave-libinfo-file)
8466 (idlwave-default-completion-case-is-down)
8467 (idlwave-library-routines): Convert defvars to defcustoms.
8468
8469 * mail/rmail.el (rmail-decode-mime-charset):
8470 * progmodes/idlw-shell.el (idlwave-shell-print-expression-function)
8471 (idlwave-shell-fix-inserted-breaks)
8472 (idlwave-shell-activate-alt-keybindings)
8473 (idlwave-shell-use-breakpoint-glyph):
8474 * facemenu.el (facemenu-unlisted-faces): Delete obsolete vars.
8475
8476 2012-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
8477
8478 * minibuffer.el (completion--twq-all): Beware completion-ignore-case.
8479
8480 2012-05-03 Wilson Snyder <wsnyder@wsnyder.org>
8481
8482 * progmodes/verilog-mode.el (font-lock-keywords):
8483 Fix mis-highligting auto. Reported by Craig Barner.
8484 (verilog-auto, verilog-auto-undef): Add AUTOUNDEF to remove
8485 defines from global name space. Reported by Dan Dever.
8486 (verilog-auto-reset, verilog-auto-reset-widths)
8487 (verilog-auto-tieoff): Support using unbased numbers for
8488 AUTORESET and AUTOTIEOFF.
8489 (verilog-submit-bug-report): Update variable list.
8490 (verilog-read-auto-params): Fix AUTOINPUT regexps containing
8491 parenthesis from not matching. Reported by Michael Rytting.
8492 (verilog-auto-template-lint): Fix hash error when linting modules
8493 with no used templates.
8494 (verilog-warn, verilog-warn-error)
8495 (verilog-warn-fatal): When non-interactive report multiple
8496 warnings before exiting. Suggested by Brad Dobbie.
8497 (verilog-auto-template-lint, verilog-auto-template-warn-unused)
8498 (verilog-read-auto-template): Add `verilog-auto-template-warn-unused'
8499 to report unused template errors. Reported by Brad Dobbie.
8500 (verilog-read-decls): Fix AUTOWIRE etc on supply0, supply1 type
8501 nets, bug438. Reported by Vns Blore.
8502 (verilog-auto-inout-module, verilog-auto-reg)
8503 (verilog-read-decls, verilog-read-sub-decls-sig)
8504 (verilog-signals-edit-wire-reg, verilog-signals-with):
8505 Fix passing of Verilog data types in ANSI input/output ports
8506 such as "output logic" into the AUTOs. Special case "wire" and
8507 "reg" for backwards compatibility presuming Verilog 2001.
8508 (verilog-auto-ascii-enum): Add "auto enum" as alias.
8509 (verilog-preprocess): Fix replication of preprocess output.
8510 Reported by Brad Dobbie.
8511 (verilog-auto-inst-interfaced-ports):
8512 Create verilog-auto-inst-interfaced-ports, bug429.
8513 Reported by Julian Gorfajn.
8514 (verilog-after-save-font-hook)
8515 (verilog-before-save-font-hook): New variable.
8516 (verilog-modi-cache-results, verilog-save-font-mod-hooked)
8517 (verilog-save-font-mods): Wrap disabling fontification, reported
8518 by David Rogoff.
8519 (verilog-do-indent, verilog-pretty-declarations-auto)
8520 (verilog-sk-def-reg): Fix obeying `verilog-auto-lineup', bug305.
8521 Reported by Pierre-David Pfister.
8522 (verilog-set-auto-endcomments): Fix endtask auto comments outside
8523 of class declarations, bug292. Reported by Kevin Heilman.
8524 (verilog-read-decls): Fix 'parameter type' not appearing in
8525 AUTOINSTPARAM, bug340. Reported by Jonathan Greenlaw.
8526 (verilog-auto-logic): Fix when AUTOLOGIC present to properly do
8527 AUTOINPUTs, bug411. Reported by Jonathan Greenlaw.
8528 (verilog-read-auto-lisp): Avoid syntax-ppss warning on AUTOLISP.
8529 Reported by David Kravitz.
8530
8531 2012-05-03 Michael McNamara <mac@mail.brushroad.com>
8532
8533 * progmodes/verilog-mode.el (verilog-pretty-expr): Don't line up
8534 assignment with tests in ifs and for loops.
8535 (verilog-extended-complete-re, verilog-complete-reg): Change so
8536 that DPI inport functions don't look like fuction declarations.
8537 (verilog-pretty-expr): Don't line up assignment
8538 operations to the test and increment in if and for loops
8539 (verilog-extended-complete-re, verilog-complete-reg): Change so
8540 that DPI inport functions don't look like fuction declarations.
8541
8542 2012-05-03 Kenichi Handa <handa@m17n.org>
8543
8544 * mail/rmailmm.el (rmail-show-mime): Catch an error caused by text
8545 decoding, and show a warning message without signaling an error
8546 (Bug#11282).
8547
8548 2012-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
8549
8550 * emacs-lisp/bytecomp.el
8551 (byte-compile-file-form-custom-declare-variable): Compile all elements,
8552 since cconv.el might have introduced :fun-body, internal-make-closure,
8553 and friends for bytecomp to handle (bug#11391).
8554 * custom.el (defcustom): Avoid ((λ ..) ..).
8555
8556 2012-05-02 Stefan Monnier <monnier@iro.umontreal.ca>
8557
8558 * subr.el (read-passwd): Better clean after ourselves (bug#11392).
8559
8560 2012-05-02 Juanma Barranquero <lekktu@gmail.com>
8561
8562 * notifications.el (dbus-debug):
8563 * term/linux.el (gpm-mouse-enable):
8564 * term/screen.el (xterm-register-default-colors): Declare.
8565
8566 2012-05-02 Chong Yidong <cyd@gnu.org>
8567
8568 * cus-start.el (gc-cons-percentage, exec-suffixes)
8569 (dos-display-scancodes, dos-hyper-key, dos-super-key)
8570 (dos-keypad-mode, debug-on-signal, vertical-centering-font-regexp)
8571 (make-cursor-line-fully-visible, void-text-area-pointer)
8572 (font-list-limit): Add customization data.
8573
8574 * allout.el (allout-exposure-change-functions)
8575 (allout-structure-added-functions)
8576 (allout-structure-deleted-functions)
8577 (allout-structure-shifted-functions): Rename abnormal hooks from
8578 *-hook, and convert to defcustoms.
8579 (allout-after-copy-or-kill-hook, allout-post-undo-hook):
8580 Convert to defcustoms.
8581 (allout-mode-hook, allout-mode-deactivate-hook): Doc fix.
8582
8583 * allout-widgets.el: Hook callers changed.
8584
8585 2012-05-02 Eli Zaretskii <eliz@gnu.org>
8586
8587 * mail/rmail.el (rmail-yank-current-message): Use the encoding of
8588 the yanked message in preference to the default value of
8589 buffer-file-coding-system.
8590
8591 2012-05-02 Martin Rudalics <rudalics@gmx.at>
8592
8593 * window.el (display-buffer--action-function-custom-type):
8594 Fix entry.
8595
8596 2012-05-02 Alan Mackenzie <acm@muc.de>
8597
8598 * progmodes/cc-defs.el (c-version): Update to 5.32.3.
8599
8600 2012-05-01 Glenn Morris <rgm@gnu.org>
8601
8602 * cus-start.el (suggest-key-bindings): Remove, now it is in Lisp.
8603
8604 * eshell/esh-cmd.el (eshell-debug-command): Doc fix. Add :set.
8605
8606 * cus-edit.el (custom-variable-documentation): Simplify with format.
8607
8608 2012-05-01 Aaron S. Hawley <aaron.s.hawley@gmail.com>
8609 Stefan Monnier <monnier@iro.umontreal.ca>
8610
8611 * simple.el (suggest-key-bindings, execute-extended-command):
8612 Move from keyboard.c.
8613
8614 2012-05-01 Chong Yidong <cyd@gnu.org>
8615
8616 * follow.el: Eliminate advice.
8617 (set-process-filter, process-filter, sit-for): Advice deleted.
8618 (follow-mode-off-hook): Obsolete hook removed.
8619 (follow-avoid-tail-recenter-p, follow-process-filter-alist):
8620 Vars deleted.
8621 (follow-auto): Use a :set function.
8622 (follow-mode): Rewritten. Don't advise process filters.
8623 (follow-switch-to-current-buffer-all, follow-scroll-up)
8624 (follow-scroll-down): Assume follow-mode is bound.
8625 (follow-comint-scroll-to-bottom)
8626 (follow-align-compilation-windows): New functions.
8627 (follow--window-sorter): New function.
8628 (follow-all-followers): Use it to explicitly sort windows by their
8629 positions; don't make assumptions about next-window order.
8630 (follow-windows-start-end, follow-delete-other-windows-and-split)
8631 (follow-calc-win-start): Doc fix.
8632 (follow-windows-aligned-p, follow-select-if-visible): Don't call
8633 vertical-motion unnecessarily.
8634 (follow-adjust-window): New function.
8635 (follow-post-command-hook): Use it.
8636 (follow-call-set-process-filter, follow-call-process-filter)
8637 (follow-intercept-process-output, follow-tidy-process-filter-alist)
8638 (follow-stop-intercept-process-output, follow-generic-filter):
8639 Functions deleted.
8640 (follow-scroll-bar-toolkit-scroll, follow-scroll-bar-drag)
8641 (follow-scroll-bar-scroll-up, follow-scroll-bar-scroll-down):
8642 New functions, replacing advice on scroll-bar-* commands.
8643 (follow-mwheel-scroll): New function (Bug#4112).
8644
8645 * comint.el (comint-adjust-point): New function.
8646 (comint-postoutput-scroll-to-bottom): Use it.
8647 Call follow-comint-scroll-to-bottom for Follow mode buffers.
8648
8649 2012-05-01 Glenn Morris <rgm@gnu.org>
8650
8651 * term/AT386.el, term/apollo.el, term/bobcat.el, term/cygwin.el:
8652 * term/iris-ansi.el, term/linux.el, term/lk201.el, term/news.el:
8653 * term/screen.el, term/vt102.el, term/vt125.el, term/vt200.el:
8654 * term/vt201.el, term/vt220.el, term/vt240.el, term/vt300.el:
8655 * term/vt320.el, term/vt400.el, term/vt420.el, term/wyse50.el:
8656 Remove no-byte-compile setting.
8657
8658 2012-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
8659
8660 * minibuffer.el (completion-table-with-quoting): Fix compatibility
8661 all-completions code to not return a number in the last cdr.
8662
8663 2012-04-30 Leo Liu <sdl.web@gmail.com>
8664
8665 * ibuf-ext.el (ibuffer-diff-buffer-with-file-1): Avoid buffer
8666 read-only error.
8667
8668 2012-04-29 Chong Yidong <cyd@gnu.org>
8669
8670 * follow.el (follow-calc-win-end): Rewrite to handle partial
8671 screen lines correctly (Bug#8390).
8672 (follow-avoid-tail-recenter): Minor cleanup.
8673
8674 2012-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
8675
8676 Avoid the obsolete `assoc' package.
8677 * speedbar.el (speedbar-refresh): Avoid adelete.
8678 (speedbar-file-lists): Simplify and avoid aput.
8679 * man.el (Man--sections, Man--refpages): New vars, replacing
8680 Man-sections-alist and Man-refpages-alist.
8681 (Man-build-section-alist, Man-build-references-alist):
8682 Use them; avoid aput.
8683 (Man--last-section, Man--last-refpage): New vars.
8684 (Man-follow-manual-reference): Use them.
8685 Use the `default' arg of completing-read.
8686 (Man-goto-section): Idem. Move prompt to the `interactive' spec.
8687
8688 2012-04-27 Chong Yidong <cyd@gnu.org>
8689
8690 * vc/diff.el (diff-sentinel): Go to bob (Bug#10259).
8691
8692 * startup.el (x-apply-session-resources): New function.
8693
8694 * term/ns-win.el (ns-initialize-window-system):
8695 * term/w32-win.el (w32-initialize-window-system):
8696 * term/x-win.el (x-initialize-window-system): Use it to properly
8697 set menu-bar-mode and other vars from X resources, even if the
8698 initial frame is not a window-system frame (Bug#2299).
8699
8700 * subr.el (read-key): Avoid running filter function when setting
8701 up temporary tool bar entries (Bug#9922).
8702
8703 2012-04-27 Andreas Schwab <schwab@linux-m68k.org>
8704
8705 * vc/vc-git.el (vc-git-state): Fix regexp matching diff output.
8706 (Bug#11344)
8707
8708 2012-04-27 Chong Yidong <cyd@gnu.org>
8709
8710 * select.el (xselect--encode-string): New function, split from
8711 xselect-convert-to-string.
8712 (xselect-convert-to-string): Use it.
8713 (xselect-convert-to-filename, xselect-convert-to-os)
8714 (xselect-convert-to-host, xselect-convert-to-user): Ensure that
8715 returned strings are properly encoded (Bug#11315).
8716
8717 2012-04-27 Chong Yidong <cyd@gnu.org>
8718
8719 * simple.el (delete-active-region): Move to killing custom group.
8720
8721 2012-04-27 Andreas Schwab <schwab@linux-m68k.org>
8722
8723 * progmodes/which-func.el (which-func-current): Quote %
8724 characters for mode-line processing.
8725
8726 2012-04-27 Chong Yidong <cyd@gnu.org>
8727
8728 * xml.el (xml-parse-region, xml-parse-tag): Avoid errors due to
8729 reaching eob (Bug#11286).
8730
8731 2012-04-27 Eli Zaretskii <eliz@gnu.org>
8732
8733 * progmodes/gdb-mi.el (gdb-control-level): New variable.
8734 (gdb): Make it buffer-local and init to zero.
8735 (gdb-control-commands-regexp): New variable.
8736 (gdb-send): Don't wrap in "-interpreter-exec console" if
8737 gdb-control-level is positive. Increment gdb-control-level
8738 whenever the command matches gdb-control-commands-regexp, and
8739 decrement it each time the command is "end". (Bug#11279)
8740
8741 2012-04-27 Martin Rudalics <rudalics@gmx.at>
8742
8743 * window.el (adjust-window-trailing-edge, enlarge-window)
8744 (shrink-window, window-resize):
8745 * mouse.el (mouse-drag-line): Fix resizing of minibuffer
8746 windows (Bug#11276).
8747
8748 2012-04-27 Chong Yidong <cyd@gnu.org>
8749
8750 * progmodes/pascal.el (pascal--extra-indent): Rename from ind, to
8751 fix "missing prefix" warning. All callers changed.
8752
8753 2012-04-27 Stefan Monnier <monnier@iro.umontreal.ca>
8754
8755 * emacs-lisp/assoc.el: Move to obsolete/.
8756
8757 2012-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
8758
8759 * emacs-lisp/assoc.el (aget): Fix dynamic-scoping issue (bug#11352).
8760
8761 * term/ns-win.el (ns-define-service):
8762 * progmodes/pascal.el (pascal-goto-defun):
8763 * progmodes/js.el (js--read-tab):
8764 * progmodes/etags.el (tags-lazy-completion-table):
8765 * emacs-lisp/syntax.el (syntax-propertize-via-font-lock):
8766 * emacs-lisp/ewoc.el (ewoc--wrap):
8767 * emacs-lisp/assoc.el (aput, adelete, amake):
8768 * doc-view.el (doc-view-convert-current-doc):
8769 * vc/diff.el (diff-no-select): Replace lexical-let by lexical-binding.
8770
8771 2012-04-26 Chong Yidong <cyd@gnu.org>
8772
8773 * image.el (image-type-from-buffer): Only return supported image
8774 type (Bug#9045).
8775
8776 * vc/diff-mode.el (diff-beginning-of-hunk): Return a meaningful
8777 value, for symmetry with diff-end-of-hunk.
8778 (diff-split-hunk, diff-find-source-location)
8779 (diff-ignore-whitespace-hunk, diff-refine-hunk): Use it.
8780 (diff-bounds-of-hunk, diff-bounds-of-file): New functions.
8781 (diff-restrict-view, diff-hunk-kill, diff-file-kill): Use them to
8782 compute the relevant hunk or file properly (Bug#6005).
8783 (diff-file-junk-re): Add bzr's "modified file" tag (Bug#6041).
8784
8785 2012-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
8786
8787 * vc/vc-mtn.el:
8788 * vc/vc-hg.el:
8789 * vc/vc-git.el:
8790 * vc/vc-dir.el:
8791 * vc/vc-cvs.el:
8792 * vc/vc-bzr.el:
8793 * vc/vc-arch.el:
8794 * vc/vc.el: Replace lexical-let by lexical-binding.
8795 * minibuffer.el (lazy-completion-table): Avoid ((λ ...) ...).
8796 * emacs-lisp/cl-macs.el (lexical-let): Fix use in lexical-binding.
8797 * emacs-lisp/cconv.el (cconv-analyse-form): Warn use of ((λ ...) ...).
8798
8799 2012-04-26 Chong Yidong <cyd@gnu.org>
8800
8801 * vc/diff-mode.el (diff-undo): New command (Bug#5302).
8802 (diff-mode-shared-map): Bind it to / and [remap undo].
8803
8804 * vc/ediff-wind.el (ediff-setup-windows-default): New function.
8805 (ediff-window-setup-function): Use it as the default, to set up
8806 windows based on whether the current frame is graphical (Bug#2138).
8807 (ediff-choose-window-setup-function-automatically): Make obsolete.
8808
8809 * vc/ediff-init.el: Always define ediff-pixel-width/height.
8810
8811 2012-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
8812
8813 * ffap.el: Remove old code for obsolete package.
8814 (ffap-complete-as-file-p): Remove.
8815
8816 Use completion-table-with-quoting for comint and pcomplete.
8817 * comint.el (comint--unquote&requote-argument)
8818 (comint--unquote-argument, comint--requote-argument): New functions.
8819 (comint--unquote&expand-filename, comint-unquote-filename): Obsolete.
8820 (comint-quote-filename): Use regexp-opt-charset.
8821 (comint--common-suffix, comint--common-quoted-suffix)
8822 (comint--table-subvert): Remove.
8823 (comint-unquote-function, comint-requote-function): New vars.
8824 (comint--complete-file-name-data): Use them with
8825 completion-table-with-quoting.
8826 * pcmpl-unix.el (pcomplete/scp): Use completion-table-subvert.
8827 * pcomplete.el (pcomplete-arg-quote-list)
8828 (pcomplete-quote-arg-hook, pcomplete-quote-argument): Obsolete.
8829 (pcomplete-unquote-argument-function): Default to non-nil.
8830 (pcomplete-unquote-argument): Simplify.
8831 (pcomplete--common-quoted-suffix): Remove.
8832 (pcomplete-requote-argument-function): New var.
8833 (pcomplete--common-suffix): New function.
8834 (pcomplete-completions-at-point): Use completion-table-with-quoting
8835 and completion-table-subvert.
8836
8837 * minibuffer.el: Use completion-table-with-quoting for read-file-name.
8838 (minibuffer--double-dollars): Preserve properties.
8839 (completion--sifn-requote): New function.
8840 (completion--file-name-table): Rewrite using it and c-t-with-quoting.
8841
8842 * minibuffer.el: Add support for completion of quoted/escaped data.
8843 (completion-table-with-quoting, completion-table-subvert): New funs.
8844 (completion--twq-try, completion--twq-all): New functions.
8845 (completion--nth-completion): New function.
8846 (completion-try-completion, completion-all-completions): Use it.
8847
8848 2012-04-25 Leo Liu <sdl.web@gmail.com>
8849
8850 * progmodes/python.el (python-pdbtrack-get-source-buffer):
8851 Use compilation-message if available to find real filename.
8852
8853 2012-04-25 Chong Yidong <cyd@gnu.org>
8854
8855 * vc/diff-mode.el (diff-setup-whitespace): New function.
8856 (diff-mode): Use it.
8857
8858 * vc/diff.el (diff-sentinel):
8859 * vc/vc.el (vc-diff-finish): Call diff-setup-whitespace to assign
8860 Whitespace mode variables based on diff style (Bug#8612).
8861
8862 2012-04-25 Leo Liu <sdl.web@gmail.com>
8863
8864 * progmodes/python.el (python-send-region): Add suffix .py to the
8865 temp file.
8866
8867 * files.el (auto-mode-alist): Use javascript-mode instead.
8868
8869 2012-04-25 Alex Harsanyi <AlexHarsanyi@gmail.com>
8870
8871 Sync with soap-client repository. Support SOAP simpleType (Bug#10331).
8872
8873 * net/soap-client.el (soap-resolve-references-for-sequence-type)
8874 (soap-resolve-references-for-array-type): Hack to prevent self
8875 references, see Bug#9.
8876 (soap-parse-envelope): Report the contents of the 'detail' node
8877 when receiving a fault reply.
8878 (soap-parse-envelope): Report the contents of the entire 'detail' node.
8879
8880 * net/soap-inspect.el (soap-sample-value-for-simple-type)
8881 (soap-inspect-simple-type): New function.
8882
8883 * net/soap-client.el (soap-simple-type): New struct.
8884 (soap-default-xsd-types, soap-default-soapenc-types)
8885 (soap-decode-basic-type, soap-encode-basic-type):
8886 support unsignedInt and double basic types.
8887 (soap-resolve-references-for-simple-type)
8888 (soap-parse-simple-type, soap-encode-simple-type): New function.
8889 (soap-parse-schema): Parse xsd:simpleType declarations.
8890
8891 * net/soap-client.el (soap-default-xsd-types)
8892 (soap-default-soapenc-types): Add integer, byte and anyURI types.
8893 (soap-parse-complex-type-complex-content): Use `soap-wk2l' to find
8894 the local name of "soapenc:Array".
8895 (soap-decode-basic-type, soap-encode-basic-type): Support encoding
8896 decoding integer, byte and anyURI xsd types.
8897
8898 2012-04-25 Chong Yidong <cyd@gnu.org>
8899
8900 * cus-edit.el (custom-buffer-create-internal): Update header text.
8901
8902 2012-04-25 Eli Zaretskii <eliz@gnu.org>
8903
8904 * progmodes/gdb-mi.el (gdb-init-1): Condition Windows-specific
8905 settings on 'system-type', not on 'window-system'. On MS-Windows,
8906 set interactive-mode on in GDB.
8907
8908 2012-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
8909
8910 * progmodes/ruby-mode.el: Simplify last change, and cleanup code.
8911 (ruby-syntax-propertize-regexp): Remove.
8912 (ruby-syntax-propertize-function): Split regexp into chunks.
8913 Match following code directly.
8914
8915 2012-04-24 Dmitry Gutov <dgutov@yandex.ru>
8916
8917 * progmodes/ruby-mode.el: Handle Cucumber defs (bug#6286).
8918 (ruby-syntax-propertize-regexp): New function.
8919 (ruby-syntax-propertize-function): Use it to handle regexp not preceded
8920 by a special keyword.
8921
8922 * progmodes/ruby-mode.el: Handle general delimited literals (bug#6286).
8923 (ruby-syntax-general-delimiters-goto-beg)
8924 (ruby-syntax-propertize-general-delimiters): New functions.
8925 (ruby-syntax-propertize-function): Use them to handle GDL.
8926 (ruby-font-lock-keywords): Move old handling of GDL...
8927 (ruby-font-lock-syntactic-keywords): .. to here.
8928 (ruby-calculate-indent): Adjust indentation for GDL.
8929
8930 2012-04-24 Michael Albinus <michael.albinus@gmx.de>
8931
8932 * notifications.el (top): Remove unneeded declarations.
8933 (notifications-specification-version): Change to "1.2".
8934 (notifications-interface, notifications-notify-method)
8935 (notifications-close-notification-method): Fix docstring.
8936 (notifications-get-capabilities-method): New defconst.
8937 (notifications-notify): Add :action-items, :resident and
8938 :transient hints. Change "image_data" to "image-data" and
8939 "image_path" to "image-path".
8940 (notifications-get-capabilities): New defun.
8941
8942 2012-04-24 Leo Liu <sdl.web@gmail.com>
8943
8944 * progmodes/python.el: Move hideshow setup to the end.
8945
8946 2012-04-24 Martin Rudalics <rudalics@gmx.at>
8947
8948 * window.el (handle-select-window): Clear echo area since this is
8949 no more done by read_char (Bug#11304).
8950
8951 2012-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
8952
8953 * ibuffer.el (ibuffer-mode-map): Bind `/ m' to filter-used-mode
8954 and `/ M' to filter-derived-mode.
8955 * ibuf-ext.el (ibuffer-list-buffer-modes): Simplify; avoid add-to-list.
8956 (ibuffer-filter-by-mode, ibuffer-filter-by-used-mode)
8957 (ibuffer-mark-by-mode): Use default rather than initial-input.
8958 (ibuffer-filter-by-derived-mode): Autoload and require-match.
8959
8960 2012-04-24 Ivan Andrus <darthandrus@gmail.com> (tiny change)
8961
8962 * ibuf-ext.el (ibuffer-list-buffer-modes): Add `include-parents' arg.
8963 (ibuffer-filter-by-derived-mode): New filter.
8964 * ibuffer.el (ibuffer-mode-map): Bind to `/ w'.
8965
8966 2012-04-23 Andreas Politz <politza@fh-trier.de>
8967
8968 * subr.el (accept-change-group): Fix arg usage (Bug#6095).
8969
8970 2012-04-23 Chong Yidong <cyd@gnu.org>
8971
8972 * cus-edit.el (customize-apropos, customize-apropos-options):
8973 Disable matching of non-option variables (Bug#11176).
8974 (customize-option, customize-option-other-window)
8975 (customize-changed-options): Doc fix.
8976 (customize-apropos-options, customize-apropos-faces)
8977 (customize-apropos-groups): Use apropos-read-pattern (Bug#11124).
8978
8979 * apropos.el (apropos-read-pattern): Make prompt less cryptic.
8980 Fix word list splitting (Bug#11132).
8981 (apropos-symbol, apropos-keybinding, apropos-label)
8982 (apropos-property, apropos-function-button)
8983 (apropos-variable-button, apropos-misc-button): New faces.
8984 (apropos-symbol-face, apropos-keybinding-face)
8985 (apropos-label-face, apropos-property-face, apropos-match-face):
8986 Variables removed (Bug#8396).
8987 (apropos-library-button, apropos-format-plist, apropos-print)
8988 (apropos-print-doc, apropos-describe-plist): Callers changed.
8989
8990 2012-04-23 Michael Albinus <michael.albinus@gmx.de>
8991
8992 * net/xesam.el (xesam-mode-map): Use let-bound map in
8993 initialization. (Bug#11292)
8994
8995 2012-04-23 Agustín Martín Domingo <agustin.martin@hispalinux.es>
8996
8997 Preserve ispell session localwords when switching back to
8998 original buffer.
8999
9000 * textmodes/ispell.el (ispell-buffer-session-localwords):
9001 New buffer-local variable to hold buffer session localwords.
9002 (ispell-kill-ispell): Add option 'clear to delete session
9003 localwords.
9004 (ispell-command-loop, ispell-change-dictionary)
9005 (ispell-buffer-local-words): Preserve session localwords when
9006 needed.
9007
9008 * textmodes/flyspell.el (flyspell-process-localwords)
9009 (flyspell-do-correct): Preserve session localwords when needed.
9010
9011 2012-04-23 Agustín Martín Domingo <agustin.martin@hispalinux.es>
9012
9013 * textmodes/ispell.el (ispell-insert-word) Remove unneeded function
9014 using obsolete `translation-table-for-input'.
9015 (ispell-word, ispell-process-line, ispell-complete-word):
9016 Use plain `insert' instead of removed `ispell-insert-word'.
9017
9018 2012-04-22 Chong Yidong <cyd@gnu.org>
9019
9020 * cus-edit.el (custom-variable-menu)
9021 (custom-variable-reset-saved, custom-face-menu)
9022 (custom-face-reset-saved): If there is no saved value, make the
9023 "reset-saved" operation bring back the default (Bug#9509).
9024 (custom-face-state): Properly detect themed faces.
9025
9026 * faces.el (face-spec-set): Stop supporting deprecated form of
9027 third arg.
9028
9029 2012-04-22 Michael Albinus <michael.albinus@gmx.de>
9030
9031 Move functions from C to Lisp. Make non-blocking method calls
9032 the default. Implement further D-Bus standard interfaces.
9033
9034 * net/dbus.el (dbus-message-internal): Declare function.
9035 Remove unneeded function declarations.
9036 (defvar dbus-message-type-invalid, dbus-message-type-method-call)
9037 (dbus-message-type-method-return, dbus-message-type-error)
9038 (dbus-message-type-signal): Declare variables. Remove local
9039 definitions.
9040 (dbus-interface-dbus, dbus-interface-peer)
9041 (dbus-interface-introspectable, dbus-interface-properties)
9042 (dbus-path-emacs, dbus-interface-emacs, dbus-return-values-table):
9043 Adapt docstring.
9044 (dbus-interface-objectmanager): New defconst.
9045 (dbus-call-method, dbus-call-method-asynchronously)
9046 (dbus-send-signal, dbus-method-return-internal)
9047 (dbus-method-error-internal, dbus-register-service)
9048 (dbus-register-signal, dbus-register-method): New defuns, moved
9049 from dbusbind.c
9050 (dbus-call-method-handler, dbus-setenv)
9051 (dbus-get-all-managed-objects, dbus-managed-objects-handler):
9052 New defuns.
9053 (dbus-call-method-non-blocking): Make it an obsolete function.
9054 (dbus-unregister-object, dbus-unregister-service)
9055 (dbus-handle-event, dbus-register-property)
9056 (dbus-property-handler): Obey the new structure of
9057 `bus-registered-objects'.
9058 (dbus-introspect): Use `dbus-call-method'. Use a timeout.
9059 (dbus-get-property, dbus-set-property, dbus-get-all-properties):
9060 Use `dbus-call-method'.
9061
9062 2012-04-22 Chong Yidong <cyd@gnu.org>
9063
9064 * cus-edit.el (custom-commands, custom-reset-menu)
9065 (Custom-reset-standard): Tweak labels.
9066 (custom-reset-button-menu): Change default to t.
9067 (custom-buffer-create-internal): For the custom-reset-button-menu
9068 case, put the revert button first.
9069 (custom-group-subtitle): New face.
9070 (custom-group-value-create): Align docstring to a specific column.
9071
9072 * wid-edit.el (widget-documentation-link-add): Don't handle
9073 indentation in this function.
9074 (widget-documentation-string-indent-to): New function.
9075 (widget-documentation-string-value-create): Use it.
9076
9077 * autorevert.el (auto-revert):
9078 * epg-config.el (epg):
9079 * ibuffer.el (ibuffer):
9080 * mpc.el (mpc):
9081 * ses.el (ses):
9082 * eshell/eshell.el (eshell):
9083 * net/ange-ftp.el (ange-ftp):
9084 * progmodes/ebnf2ps.el (postscript):
9085 * progmodes/flymake.el (flymake):
9086 * progmodes/prolog.el (prolog):
9087 * progmodes/verilog-mode.el (verilog-mode):
9088 * progmodes/which-func.el (which-func):
9089 * term/xterm.el (xterm):
9090 * textmodes/picture.el (picture):
9091 * textmodes/tildify.el (tildify):
9092 * vc/ediff.el (ediff): Tweak defgroups to improve presentation in
9093 customization buffers.
9094
9095 2012-04-22 Alan Mackenzie <acm@muc.de>
9096
9097 * progmodes/cc-engine.el (c-append-lower-brace-pair-to-state-cache):
9098 Adding a ) can hide the resulting (..) from searches. Fix it.
9099 Bound the backward search to the position of the existing (.
9100
9101 2012-04-21 Juanma Barranquero <lekktu@gmail.com>
9102
9103 * progmodes/verilog-mode.el (verilog-mode): Check whether
9104 which-func-modes is t before adding verilog-mode.
9105 Reported by Andy Moreton <andrewjmoreton@gmail.com>.
9106
9107 2012-04-21 Leo Liu <sdl.web@gmail.com>
9108
9109 * net/rcirc.el (rcirc): Avoid error when process-contact returns t.
9110
9111 2012-04-21 Michael Vehrs <Michael.Burschik@gmx.de>
9112
9113 * woman.el: Add support for "T{ T}" tbl syntax, and fix the
9114 filling of the last column of a table (Bug#5635).
9115 (woman-find-next-control-line): New arg, specifying an additional
9116 regexp component for the control line.
9117 (woman2-roff-buffer): Use it.
9118 (woman-break-table): New function.
9119 (woman2-TS): Use it.
9120
9121 2012-04-21 Chong Yidong <cyd@gnu.org>
9122
9123 * woman.el (woman-set-buffer-display-table, woman-decode-region)
9124 (woman-horizontal-escapes, woman-negative-vertical-space)
9125 (woman-tab-to-tab-stop, woman2-fc, woman2-TS)
9126 (WoMan-warn-ignored): Use ?\s instead of ?\ .
9127
9128 2012-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
9129
9130 * minibuffer.el (completion-file-name-table): Complete user names.
9131
9132 2012-04-20 Leo Liu <sdl.web@gmail.com>
9133
9134 * font-lock.el (lisp-font-lock-keywords-2): Add pcase, pcase-let
9135 and pcase-let*.
9136
9137 2012-04-20 Chong Yidong <cyd@gnu.org>
9138
9139 * server.el (server-execute): Respect initial-buffer-choice if it
9140 is a string and there are no files to open (Bug#2825).
9141 (server-create-window-system-frame, server-create-tty-frame):
9142 Don't switch buffers here.
9143 (server-process-filter): Only try to open a window system frame if
9144 compiled with graphical support (Bug#8314).
9145
9146 2012-04-20 Dan Nicolaescu <dann@gnu.org>
9147
9148 * battery.el (battery-echo-area-format): Display remaining time
9149 for sysfs backend too (Bug#11269).
9150 (battery-linux-sysfs): Fix conditional for the charge.
9151
9152 2012-04-20 Chong Yidong <cyd@gnu.org>
9153
9154 * progmodes/gdb-mi.el (gdb): Revert previous change.
9155 (gdb-inferior-io--init-proc): New function.
9156 (gdb-init-1): Use it.
9157 (gdb-inferior-io-sentinel): New sentinel for the gdb-inferior pty,
9158 responsible for allocating a new pty and hooking it to gdb when
9159 the old pty gets an EIO due to process exit.
9160 (gdb-delchar-or-quit): New command. Bind it in gdb-mi buffers.
9161 (gdb-tooltip-print): Don't use obsolete tooltip-use-echo-area.
9162 (gdb-inferior-io--maybe-delete-pty): Move into gdb-reset.
9163
9164 2012-04-20 Eli Zaretskii <eliz@gnu.org>
9165
9166 * window.el (window-min-size, window-sizable, window-min-delta)
9167 (window-max-delta, window--resizable, window-resizable)
9168 (window-total-size, window-full-height-p, window-full-width-p)
9169 (window-in-direction, window--resize-mini-window, window-resize)
9170 (window--resize-child-windows-normal)
9171 (window--resize-child-windows, window--resize-siblings)
9172 (window--resize-this-window, adjust-window-trailing-edge)
9173 (enlarge-window, shrink-window): Doc fixes.
9174
9175 2012-04-20 Chong Yidong <cyd@gnu.org>
9176
9177 * progmodes/gdb-mi.el (gdb-inferior-io--maybe-delete-pty):
9178 New function to call delete-process on the gdb-inferior buffer's pty.
9179 (gdb-reset): Use it, instead of relying on kill-buffer to kill the
9180 pty process (Bug#11273).
9181 (gdb-update): New arg to suppress talking to the gdb process.
9182 (gdb-done-or-error): Use it.
9183 (gdb-stopped-functions): Rename from gdb-stopped-hooks.
9184 (gdb): Call gdb-inferior-io--maybe-delete-pty as a workaround for
9185 sentinel not being called.
9186
9187 * comint.el (make-comint-in-buffer, comint-exec): Doc fix.
9188
9189 * progmodes/grep.el (grep, rgrep): Doc fix (Bug#11268).
9190
9191 2012-04-20 Glenn Morris <rgm@gnu.org>
9192
9193 * net/network-stream.el (open-network-stream): Doc fix.
9194
9195 2012-04-20 Chong Yidong <cyd@gnu.org>
9196
9197 * emacs-lisp/tabulated-list.el (tabulated-list-print): Fix typos.
9198
9199 2012-04-20 Alan Mackenzie <acm@muc.de>
9200
9201 Ensure searching for keywords is case sensitive.
9202
9203 * progmodes/cc-cmds.el (c-electric-brace, c-electric-lt-gt)
9204 (c-electric-paren, c-beginning-of-defun, c-end-of-defun)
9205 (c-defun-name, c-mark-function, c-cpp-define-name)
9206 (c-comment-indent, c-scan-conditionals, c-indent-defun)
9207 (c-context-line-break): Bind case-fold-search to nil.
9208
9209 * progmodes/cc-mode.el (c-font-lock-fontify-region):
9210 Bind case-fold-search to nil.
9211
9212 2012-04-20 Chong Yidong <cyd@gnu.org>
9213
9214 * mail/sendmail.el (mail-bury): Call return action with the right
9215 Rmail buffer (Bug#11242).
9216
9217 * server.el (server-process-filter): Handle corner case where both
9218 tty and nowait options are present (Bug#11102).
9219
9220 2012-04-20 Eli Zaretskii <eliz@gnu.org>
9221
9222 * version.el (emacs-bzr-version, emacs-bzr-get-version): Doc fixes.
9223 (top level): Put into the executable the ident-style '$Id:' tag on
9224 windows-nt as well.
9225
9226 2012-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
9227
9228 * electric.el (electric-indent-post-self-insert-function): Check that
9229 electric-indent-mode is enabled in current buffer.
9230
9231 2012-04-19 Juanma Barranquero <lekktu@gmail.com>
9232
9233 * imenu.el (imenu-progress-message): Restore; it is "used" in
9234 erc/erc-imenu.el and net/snmp-mode.el.
9235
9236 2012-04-19 Juanma Barranquero <lekktu@gmail.com>
9237
9238 * avoid.el (mouse-avoidance-mode): Mark unused arg.
9239 (mouse-avoidance-nudge-mouse): Remove unused binding.
9240
9241 * bs.el (bs-toggle-readonly): Call `toggle-read-only' interactively.
9242
9243 * descr-text.el (describe-char):
9244 * progmodes/python.el (python-describe-symbol):
9245 Don't call `toggle-read-only', set `buffer-read-only'.
9246
9247 * imenu.el (imenu-default-goto-function): Mark unused args.
9248 (imenu-progress-message): Remove obsolete macro; all callers changed.
9249
9250 * subr.el (keymap-canonicalize): Remove unused binding.
9251 (read-passwd): Mark unused arg.
9252
9253 * tutorial.el (tutorial--display-changes): Remove unused binding.
9254 (tutorial--save-tutorial-to): Remove unused variable.
9255
9256 * emacs-lisp/package.el (define-package, package-menu-mark-delete)
9257 (package-menu-mark-install, package-menu-mark-unmark): Mark unused args.
9258 (package-generate-autoloads, package-menu--generate)
9259 (package-menu--find-upgrades): Remove unused bindings.
9260
9261 * emulation/cua-rect.el (cua-restrict-regexp-rectangle)
9262 (cua-restrict-prefix-rectangle): Doc fixes. Remove unused bindings.
9263 (cua--mouse-ignore, cua--delete-rectangle, cua--extract-rectangle)
9264 (cua--indent-rectangle, cua-open-rectangle, cua-close-rectangle)
9265 (cua-blank-rectangle, cua-string-rectangle, cua-replace-in-rectangle)
9266 (cua-incr-rectangle, cua-sequence-rectangle, cua--convert-rectangle-as)
9267 (cua--rectangle-aux-replace, cua--left-fill-rectangle)
9268 (cua-scroll-rectangle-up, cua-scroll-rectangle-down)
9269 (cua-delete-char-rectangle): Mark unused args.
9270 (cua-align-rectangle): Remove unused binding.
9271
9272 * mail/rmail.el (compilation--message->loc)
9273 (epa--find-coding-system-for-mime-charset): Declare.
9274
9275 * net/dbus.el (dbus-register-service): Declare.
9276 (dbus-name-owner-changed-handler): Remove unused binding.
9277
9278 * nxml/nxml-mode.el (nxml-electric-slash, nxml-in-mixed-content-p)
9279 (nxml-compute-indent-from-matching-start-tag): Remove unused variables.
9280 (nxml-scan-backward-within): Mark unused arg.
9281 (nxml-dynamic-markup-word): Remove unused binding.
9282
9283 * mouse.el (mouse-menu-major-mode-map):
9284 * emacs-lisp/authors.el (authors-scan-change-log)
9285 (authors-add-to-author-list):
9286 * emacs-lisp/avl-tree.el (avl-tree--enter-balance):
9287 * emacs-lisp/smie.el (smie-auto-fill):
9288 * mail/sendmail.el (mail-bury):
9289 * mail/unrmail.el (unrmail):
9290 * net/tls.el (open-tls-stream):
9291 * textmodes/picture.el (picture-mouse-set-point):
9292 Remove unused bindings.
9293
9294 2012-04-19 Michael Albinus <michael.albinus@gmx.de>
9295
9296 * net/tramp.el (tramp-action-password): Let-bind
9297 `enable-recursive-minibuffers' to t.
9298
9299 2012-04-18 Sam Steingold <sds@gnu.org>
9300
9301 * progmodes/gud.el (gud-key-prefix): Use :type 'key-sequence
9302 instead of 'string to accommodate values like [f11].
9303 Always use `vconcat' instead of `concat' on it, like in `gud-def'.
9304 * progmodes/gdb-mi.el: Likewise.
9305
9306 2012-04-18 Leo Liu <sdl.web@gmail.com>
9307
9308 * abbrev.el (edit-abbrevs): Move point to the abbrev table of
9309 current buffer.
9310 (prepare-abbrev-list-buffer): Enter edit-abbrevs-mode only if
9311 LOCAL is nil.
9312
9313 2012-04-18 Chong Yidong <cyd@gnu.org>
9314
9315 * simple.el (line-move): Use forward-line if in batch mode
9316 (Bug#11053).
9317
9318 2012-04-18 Christopher Schmidt <christopher@ch.ristopher.com>
9319
9320 * files.el (after-find-file): Do not try to add a final newline if
9321 the buffer is read-only (Bug#11156).
9322
9323 2012-04-17 Richard Stallman <rms@gnu.org>
9324
9325 * mail/rmail.el (rmail-start-mail):
9326 Pass (rmail-mail-return...) for the return-action.
9327 Pass (rmail-yank-current-message...) for the yank-action.
9328 (rmail-yank-current-message): New function.
9329 (rmail-mail): Pass the Rmail buffer, not view buffer, for replybuffer.
9330 (rmail-reply): Likewise.
9331 (rmail-forward): Pass the Rmail buffer, not nil, for replybuffer.
9332
9333 * mail/sendmail.el (mail-bury): Choose the first rmail-mode
9334 buffer, not the last. Reject temp buffers. Use the rmail-mode
9335 buffer, not newbuf.
9336
9337 2012-04-17 Juanma Barranquero <lekktu@gmail.com>
9338
9339 * server.el (server-ensure-safe-dir): Simplify.
9340
9341 2012-04-17 Stefan Monnier <monnier@iro.umontreal.ca>
9342
9343 * emacs-lisp/smie.el: Provide smarter auto-filling.
9344 (smie-auto-fill): New function.
9345 (smie-setup): Use it.
9346
9347 * newcomment.el (comment-choose-indent): Obey comment-inline-offset.
9348
9349 2012-04-17 Philipp Haselwarter <philipp.haselwarter@gmx.de> (tiny change)
9350
9351 * newcomment.el (comment-inline-offset): New custom var (bug#11090).
9352 (comment-indent): Use it.
9353
9354 2012-04-17 Vincent Belaïche <vincentb1@users.sourceforge.net>
9355
9356 * ses.el: The overall change is to add cell renaming, that is
9357 setting fancy names for cell symbols other than name matching
9358 "\\`[A-Z]+[0-9]+\\'" regexp .
9359 (ses-localvars): Add ses--renamed-cell-symb-list.
9360 (ses-create-cell-variable): New defun.
9361 (ses-destroy-cell-variable-range): Respect ses--numrows, ses--numcols.
9362 (ses-relocate-formula): Relocate formulas only for cells the
9363 symbols of which are not renamed, i.e. symbols whose names do not
9364 match regexp "\\`[A-Z]+[0-9]+\\'".
9365 (ses-relocate-all): Relocate values only for cells the symbols of
9366 which are not renamed.
9367 (ses-load): Create cells variables as the (ses-cell ...) are read,
9368 in order to check row col consistency with cell symbol name only
9369 for cells that are not renamed.
9370 (ses-replace-name-in-formula): New defun.
9371 (ses-rename-cell): New defun.
9372
9373 2012-04-17 Peter Oliver <bzr@mavit.org.uk> (tiny change)
9374
9375 * progmodes/perl-mode.el (perl-indent-parens-as-block):
9376 New option (bug#11118).
9377 (perl-calculate-indent): Respect it.
9378
9379 2012-04-17 Glenn Morris <rgm@gnu.org>
9380
9381 * dired-aux.el (dired-mark-read-string): Doc fix.
9382
9383 2012-04-17 Dmitry Antipov <dmantipov@yandex.ru>
9384
9385 * dired-aux.el (dired-mark-read-string): Offer optional completion.
9386 (dired-do-chxxx): Complete chown, chgrp over users, groups. (Bug#7900)
9387
9388 2012-04-17 Glenn Morris <rgm@gnu.org>
9389
9390 * mouse.el (mouse-drag-track):
9391 * speedbar.el (speedbar-frame-mode):
9392 Use auto-hscroll-mode rather than the alias automatic-hscrolling.
9393
9394 2012-04-16 Leo Liu <sdl.web@gmail.com>
9395
9396 * progmodes/python.el: Trivial cleanup.
9397
9398 2012-04-16 Glenn Morris <rgm@gnu.org>
9399
9400 * vc/vc.el (vc-string-prefix-p):
9401 * vc/pcvs-util.el (cvs-string-prefix-p):
9402 * textmodes/tex-mode.el (latex-string-prefix-p, tex-string-prefix-p):
9403 * mpc.el (mpc-string-prefix-p):
9404 Make all of these into obsolete aliases for string-prefix-p.
9405 Update callers.
9406 * vc/pcvs.el, vc/vc-dispatcher.el, vc/vc-dir.el: Update callers.
9407
9408 * textmodes/two-column.el: Move custom options to the start.
9409 (frame-width): Remove compat definition.
9410 (2C-associate-buffer, 2C-dissociate):
9411 Use with-current-buffer rather than save-excursion.
9412 (2C-dissociate): Force a mode-line update.
9413 (2C-autoscroll): Use ignore-errors.
9414
9415 * emacs-lisp/eieio-opt.el (describe-class, describe-generic):
9416 Autoload trivia.
9417
9418 * emacs-lisp/cl-extra.el (*random-state*):
9419 Remove unnecessary declaration.
9420
9421 * calendar/cal-tex.el (cal-tex-end-document): Trivial clarification.
9422
9423 * play/cookie1.el (cookie-snarf):
9424 Give an explicit error if input file cannot be read.
9425
9426 * play/yow.el (yow-file): Use expand-file-name rather than concat.
9427
9428 * progmodes/perl-mode.el (c-macro-expand):
9429 Remove unnecessary autoload (it is in loaddefs.el).
9430
9431 * textmodes/picture.el (picture-desired-column)
9432 (picture-update-desired-column): Convert comments to doc-strings.
9433 (picture-substitute): Remove function.
9434 (picture-mode-map): Initialize in the defvar.
9435
9436 * woman.el: Remove eval-after-load for tar-mode.
9437 * tar-mode.el (tar-mode-map): Add woman binding and menu entry.
9438 (woman-tar-extract-file): Autoload it.
9439
9440 * frame.el (automatic-hscrolling): Make this alias obsolete.
9441
9442 2012-04-12 Agustín Martín Domingo <agustin.martin@hispalinux.es>
9443
9444 * textmodes/ispell.el (ispell-set-spellchecker-params): Post-process
9445 `ispell-dictionary-alist' to use [:alpha:] and utf-8 if possible.
9446 (ispell-dictionary-base-alist): Revert to original XEmacs
9447 friendly version for default. [:alpha:] will be added in
9448 `ispell-set-spellchecker-params' if needed.
9449
9450 2012-04-16 Chong Yidong <cyd@gnu.org>
9451
9452 * image.el (imagemagick--file-regexp): New variable.
9453 (imagemagick-register-types): Use it.
9454 (imagemagick-types-inhibit): Add :set function. Allow new value
9455 of t to inhibit all types.
9456
9457 * emacs-lisp/regexp-opt.el (regexp-opt-charset): Avoid cl macros,
9458 so we can preload it.
9459
9460 * loadup.el (fboundp): Preload regexp-opt, needed by
9461 imagemagick-register-types.
9462
9463 2012-04-15 Chong Yidong <cyd@gnu.org>
9464
9465 * frame.el (scrolling): Remove nearly unused customization group.
9466
9467 * scroll-all.el (scroll-all-mode): Move to windows group.
9468
9469 2012-04-15 Chong Yidong <cyd@gnu.org>
9470
9471 * bindings.el (goto-map): Bind goto-char to M-g c (Bug#11240).
9472
9473 2012-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
9474
9475 Avoid the use of ((lambda ...) ...) in lexical-binding code.
9476 * emacs-lisp/easy-mmode.el (define-minor-mode): Use funcall (bug#11241).
9477
9478 2012-04-15 Glenn Morris <rgm@gnu.org>
9479
9480 * simple.el (process-file-side-effects): Doc fix.
9481
9482 2012-04-15 Glenn Morris <rgm@gnu.org>
9483
9484 * international/mule-cmds.el (set-language-environment): Doc fix.
9485
9486 2012-04-14 Juanma Barranquero <lekktu@gmail.com>
9487
9488 * server.el (server-auth-key, server-generate-key): Doc fixes.
9489 (server-get-auth-key): Doc fix. Use `string-match-p'.
9490 (server-start): Reflow docstring.
9491
9492 2012-04-14 Lars Ingebrigtsen <larsi@gnus.org>
9493
9494 * server.el (server-generate-key): `called-interactively-p'
9495 requires a parameter.
9496
9497 2012-04-14 Michal Nazarewicz <mina86@mina86.com>
9498
9499 * server.el (server-auth-key): New variable.
9500 (server-generate-key, server-get-auth-key): New function.
9501 (server-start): Use the new variable and functions to allow
9502 setting a permanent server key (bug#9423).
9503
9504 2012-04-14 Leo Liu <sdl.web@gmail.com>
9505
9506 * vc/diff-mode.el (diff-file-prev/next): Fix typo.
9507
9508 2012-04-14 Paul Eggert <eggert@cs.ucla.edu>
9509
9510 Spelling fixes.
9511 * hexl.el (hexl-rulerize): Rename from hexl-rulerise, since
9512 Emacs uses American spelling.
9513
9514 2012-04-14 Juanma Barranquero <lekktu@gmail.com>
9515
9516 * emacs-lock.el (emacs-lock-locked-buffer-functions): New hook.
9517 (emacs-lock--exit-locked-buffer): Return the locked buffer. Doc fix.
9518 (emacs-lock--kill-emacs-hook, emacs-lock--kill-emacs-query-functions)
9519 (emacs-lock--kill-buffer-query-functions): Run new hook. (Bug#11017)
9520
9521 2012-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
9522
9523 * progmodes/which-func.el (which-func-modes): Change default.
9524
9525 2012-04-14 Kim F. Storm <storm@cua.dk>
9526
9527 * emulation/cua-base.el (cua-exchange-point-and-mark): Just call
9528 exchange-point-and-mark if cua-enable-cua-keys is nil (Bug#11191).
9529
9530 2012-04-14 Chong Yidong <cyd@gnu.org>
9531
9532 * custom.el (custom-theme-set-variables): Doc fix.
9533
9534 2012-04-14 Glenn Morris <rgm@gnu.org>
9535
9536 * international/mule.el (set-auto-coding-for-load): Doc fix.
9537
9538 2012-04-14 Alan Mackenzie <acm@muc.de>
9539
9540 * progmodes/cc-menus.el (cc-imenu-objc-generic-expression): Make
9541 imenu work again for Objective C Mode. Correct the *-index values,
9542 these having been disturbed by a previous change in 2011-08.
9543
9544 * progmodes/cc-engine.el (c-before-change-check-<>-operators):
9545 Correct two search limits.
9546
9547 2012-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
9548
9549 * startup.el (command-line-1): Inhibit splash from daemon (bug#10996).
9550
9551 2012-04-14 Andreas Schwab <schwab@linux-m68k.org>
9552
9553 * international/characters.el: Fix sorting.
9554
9555 2012-04-14 Eli Zaretskii <eliz@gnu.org>
9556
9557 * international/characters.el: Add more missing Latin case pairs.
9558
9559 2012-04-14 Glenn Morris <rgm@gnu.org>
9560
9561 * files.el (dir-locals-set-class-variables): Doc fix.
9562
9563 2012-04-14 Eli Zaretskii <eliz@gnu.org>
9564
9565 * international/characters.el: Add set-case-syntax-pair call for
9566 LATIN CAPITAL LETTER Y WITH DIAERESIS RET and its lower-case
9567 counterpart. (Bug#11209)
9568
9569 * simple.el (shell-command-on-region): Doc fix. (Bug#11208)
9570
9571 2012-04-14 Glenn Morris <rgm@gnu.org>
9572
9573 * calendar/holidays.el (calendar-check-holidays): Doc fix.
9574
9575 2012-04-14 Eli Zaretskii <eliz@gnu.org>
9576
9577 * textmodes/ispell.el (ispell-dictionary-base-alist):
9578 Add data for Hebrew.
9579
9580 2012-04-14 Chong Yidong <cyd@gnu.org>
9581
9582 * net/rcirc.el (rcirc-cmd-quit):
9583 Revert 2012-03-18 change (Bug#11192).
9584
9585 2012-04-14 Glenn Morris <rgm@gnu.org>
9586
9587 * pcmpl-rpm.el (pcomplete/rpm): Handle -qf.
9588
9589 2012-04-14 Eli Zaretskii <eliz@gnu.org>
9590
9591 * minibuffer.el (completion-in-region-mode-map):
9592 Bind completion-help-at-point to M-? rather than ?. (Bug#11182)
9593
9594 2012-04-13 Vivek Dasmohapatra <vivek@etla.org>
9595
9596 * hexl.el (hexl-insert-char): Make display sizes other than 16 work.
9597
9598 2012-04-13 Masatake YAMATO <yamato@redhat.com>
9599
9600 * minibuffer.el (minibuffer-local-filename-syntax): New variable
9601 to allow `C-M-f' and `C-M-b' to move to the nearest path
9602 separator (bug#9511).
9603
9604 2012-04-13 Lars Ingebrigtsen <larsi@gnus.org>
9605
9606 * avoid.el: Require cl when compiling. And also move the
9607 `provide' to the end.
9608
9609 2012-04-13 Thierry Volpiatto <thierry.volpiatto@gmail.com>
9610
9611 * avoid.el (mouse-avoidance-banish-position): New variable.
9612 (mouse-avoidance-banish-destination): Use it (bug#10165).
9613
9614 2012-04-13 Leo Liu <sdl.web@gmail.com>
9615
9616 * progmodes/which-func.el (which-func-modes): Add objc-mode.
9617
9618 2012-04-13 Ken Brown <kbrown@cornell.edu>
9619
9620 * net/browse-url.el (browse-url-file-url): Remove Cygwin hack;
9621 this is no longer needed now that cygstart understands file:// URLs.
9622 (browse-url-filename-alist): For the same reason, don't modify
9623 file:// URLs on Cygwin.
9624
9625 2012-04-13 Stefan Monnier <monnier@iro.umontreal.ca>
9626
9627 * emulation/cua-base.el (cua--pre-command-handler-1): Don't activate
9628 the region on shift if the binding is already shifted (bug#11221).
9629
9630 2012-04-12 Glenn Morris <rgm@gnu.org>
9631
9632 * mail/mailpost.el: Move to obsolete/.
9633
9634 2012-04-12 Drew Adams <drew.adams@oracle.com>
9635
9636 * imenu.el (imenu--generic-function): Ignore invisible definitions
9637 (bug#10123).
9638
9639 2012-04-12 Vivek Dasmohapatra <vivek@etla.org>
9640
9641 * hexl.el (hexl-bits): New variable.
9642 (hexl-options): Mention the variable in the doc string.
9643 (hexl-rulerise, hexl-line-displen): New functions.
9644 (hexl-mode): Mention the new variable.
9645 (hexl-mode, hexl-current-address, hexl-current-address):
9646 Use the displen.
9647 (hexl-ascii-start-column): New function.
9648 (hexl-address-to-marker, hexl-beginning-of-line, hexl-options)
9649 (hexl-insert-char, hexl-mode-ruler): Use the displen (bug#4941).
9650
9651 2012-04-12 Agustín Martín Domingo <agustin.martin@hispalinux.es>
9652
9653 * textmodes/flyspell.el (flyspell-large-region): For hunspell, use
9654 '("-i" ENCODING), in 2 separate command-line arguments, to specify
9655 the encoding, as expected by hunspell.
9656
9657 2012-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
9658
9659 * battery.el (battery--linux-sysfs-regexp): New const.
9660 (battery-status-function): Use it. Remove yeeloong special case.
9661 (battery-yeeloong-sysfs): Remove.
9662 (battery-echo-area-format): Remove yeeloong special case.
9663
9664 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
9665
9666 * imenu.el (imenu-add-to-menubar): `current-local-map' can be nil.
9667 Reported by Noah Friedman.
9668
9669 * subr.el (read-passwd): Use read-string.
9670
9671 2012-04-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
9672
9673 * vcursor.el (vcursor-move): Increase the priority of the overlay
9674 (bug#9663).
9675
9676 2012-04-11 Deniz Dogan <deniz.a.m.dogan@gmail.com>
9677
9678 * net/rcirc.el (rcirc-kill-channel-buffers): New variable.
9679 (rcirc-kill-buffer-hook): Use it to kill channel buffers (bug#5128).
9680
9681 2012-04-11 William Stevenson <yhvh2000@gmail.com>
9682
9683 * textmodes/artist.el (artist-mode): Convert artist-mode to use
9684 define-minor-mode (bug#10760).
9685
9686 2012-04-11 Wolfgang Jenkner <wjenkner@inode.at> (tiny change)
9687
9688 * progmodes/grep.el (rgrep): Tweak the find command line so
9689 that directories matching `grep-find-ignored-files' won't be
9690 pruned (bug#10351).
9691
9692 2012-04-11 Chong Yidong <cyd@gnu.org>
9693
9694 * startup.el (command-line): Remove support for long-obsolete
9695 variable font-lock-face-attributes.
9696
9697 2012-04-11 Glenn Morris <rgm@gnu.org>
9698
9699 * vc/vc-bzr.el (vc-bzr-status): Avoid condition-case-unless-debug.
9700
9701 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
9702
9703 * window.el (window--state-get-1): Obey window-point-insertion-type.
9704
9705 2012-04-11 Lennart Borgman <lennart.borgman@gmail.com>
9706
9707 * emacs-lisp/lisp.el (narrow-to-defun): `beginning-of-defun' goes
9708 to previous function when point is on the first character of a
9709 function. Take care of that in `narrow-to-defun' (bug#6157).
9710
9711 2012-04-11 Glenn Morris <rgm@gnu.org>
9712
9713 * vc/vc-bzr.el (vc-bzr-status): Handle all errors,
9714 not just file-errors.
9715
9716 * vc/vc-bzr.el (vc-bzr-sha1-program, sha1-program): Remove.
9717 (vc-bzr-sha1): Use internal sha1.
9718
9719 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
9720
9721 * progmodes/flymake.el (flymake-mode): Beware read-only dirs (bug#8954).
9722
9723 2012-04-10 Sébastien Gross <seb@chezwam.org> (tiny change)
9724
9725 * progmodes/hideshow.el (hs-hide-all): Don't infloop on comments
9726 that start in the middle of the line (bug#10496).
9727
9728 2012-04-10 Dan Nicolaescu <dann@gnu.org>
9729
9730 * battery.el (battery-linux-proc-acpi): Only one battery is
9731 discharged at a time, but that seems to confuse battery.el when
9732 computing `rate-type' for the battery not being discharged
9733 (bug#10332).
9734
9735 2012-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
9736
9737 * emacs-lisp/autoload.el (autoload-make-program): Remove, unused.
9738
9739 * international/quail.el: Use dolist and simplify.
9740 (quail-define-package, quail-update-keyboard-layout)
9741 (quail-define-rules): Use dolist.
9742 (quail-insert-kbd-layout, quail-get-translation): CSE.
9743
9744 * tmm.el: Use dolist, remove left over hook.
9745 (tmm-prompt, tmm-define-keys, tmm-shortcut, tmm-get-keybind):
9746 Use dolist.
9747 (calendar-load-hook): Don't mess with it.
9748
9749 * vc/vc-annotate.el (vc-annotate-show-diff-revision-at-line-internal):
9750 Use derived-mode-p. Run the diff asynchronously.
9751
9752 2012-04-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
9753
9754 * obsolete/mouse-sel.el: Add an Obsolete-since header.
9755
9756 2012-04-10 Juanma Barranquero <lekktu@gmail.com>
9757
9758 * misc.el: Display absolute path of loaded DLLs (bug#10424).
9759 (list-dynamic-libraries--loaded): New function.
9760 (list-dynamic-libraries--refresh): Use it.
9761
9762 2012-04-10 Nathan Weizenbaum <nweiz@google.com>
9763
9764 * progmodes/python.el (python-fill-paragraph):
9765 Make python-fill-region in a multiline string work when font-lock is
9766 disabled (bug#7018).
9767
9768 2012-04-10 Laimonas Vėbra <laimonas.vebra@gmail.com> (tiny change)
9769
9770 * language/european.el (cp775): Add oem/legacy (en)coding on
9771 DOS/MS Windows for the Baltic languages. There are still plenty
9772 of texts written in this encoding/codepage (bug#6519).
9773
9774 2012-04-10 Glenn Morris <rgm@gnu.org>
9775
9776 * cus-start.el (eol-mnemonic-unix, eol-mnemonic-dos, eol-mnemonic-mac):
9777 Add :standard values, reducing "rogue" customs in emacs -Q a bit more.
9778
9779 2012-04-10 Florian Adamsky <florian@adamsky.it> (tiny change)
9780
9781 * recentf.el (recentf-dialog-mode-map): Add two keybindings for
9782 next-line "n" and previous-line "p" in order to make recentf more
9783 consistent with ibuffer, dired or org-mode (bug#9387).
9784
9785 2012-04-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
9786
9787 * image.el (put-image): Return the overlay created instead of the
9788 optional input string (bug#7834). Note that this may break code
9789 that is (for some reason or other) depending on `put-image'
9790 returning the string.
9791
9792 * mouse-sel.el (mouse-sel-mode): Mark as obsolete (bug#6174).
9793
9794 * simple.el (zap-to-char): Allow zapping using input methods
9795 (bug#1580).
9796
9797 * textmodes/fill.el (fill-region): Leave point and mark where they
9798 were before filling (bug#5399).
9799
9800 2012-04-09 Glenn Morris <rgm@gnu.org>
9801
9802 * version.el (emacs-bzr-get-version):
9803 Handle lightweight checkouts of local branches.
9804
9805 2012-04-09 Andreas Schwab <schwab@linux-m68k.org>
9806
9807 * international/characters.el: Recover lost case pairs. (Bug#11209)
9808
9809 2012-04-09 Chong Yidong <cyd@gnu.org>
9810
9811 * custom.el (custom-variable-p): Return nil for non-symbol
9812 arguments instead of signaling an error.
9813 (user-variable-p): Obsolete alias for custom-variable-p.
9814
9815 * apropos.el (apropos-variable):
9816 * files-x.el (read-file-local-variable):
9817 * simple.el (set-variable):
9818 * woman.el (woman-mini-help):
9819 * emacs-lisp/byte-opt.el (side-effect-free-fns): Callers changed.
9820
9821 2012-04-09 Glenn Morris <rgm@gnu.org>
9822
9823 * startup.el (normal-top-level): Don't look for leim-list.el
9824 in places where it will not be found. (Bug#910)
9825
9826 * international/mule-cmds.el (set-default-coding-systems):
9827 * files.el (normal-mode):
9828 Remove guarded calls to ucs-set-table-for-input. (Bug#9821)
9829 This function was removed with ucs-tables.el in 2008.
9830
9831 2012-04-08 Eli Zaretskii <eliz@gnu.org>
9832
9833 * textmodes/ispell.el (ispell-check-version): For hunspell, set
9834 ispell-encoding8-command to "-i", without a trailing space.
9835 (ispell-start-process): For hunspell, use '("-i" ENCODING), in 2
9836 separate command-line arguments, to specify the encoding, since
9837 that's how hunspell expects it.
9838
9839 2012-04-08 Glenn Morris <rgm@gnu.org>
9840
9841 * loadup.el: Load bindings before cus-start.
9842 This reduces somewhat the number of "rogue" settings in emacs -Q.
9843
9844 2012-04-07 Glenn Morris <rgm@gnu.org>
9845
9846 * version.el (emacs-bzr-get-version): New function.
9847 (emacs-bzr-version): New variable.
9848 * loadup.el (emacs-bzr-version): Set it. (Bug#8054)
9849 * mail/emacsbug.el (report-emacs-bug): Include bzr version.
9850
9851 2012-04-07 Eli Zaretskii <eliz@gnu.org>
9852
9853 * international/uni-bidi.el, international/uni-category.el:
9854 * international/uni-combining.el, international/uni-decimal.el:
9855 * international/uni-decomposition.el, international/uni-digit.el:
9856 * international/uni-lowercase.el, international/uni-mirrored.el:
9857 * international/uni-name.el, international/uni-numeric.el:
9858 * international/uni-titlecase.el, international/uni-uppercase.el:
9859 Update for Unicode 6.1.
9860
9861 2012-04-07 Eli Zaretskii <eliz@gnu.org>
9862
9863 * term/w32-win.el (dynamic-library-alist): Add libxml2 DLLs.
9864
9865 2012-04-05 Lars Magne Ingebrigtsen <larsi@gnus.org>
9866
9867 * window.el (shrink-window): Mention the `window-min-height'
9868 variable in the doc string.
9869
9870 2012-04-05 Bastien Guerry <bzg@altern.org>
9871
9872 * color.el (color-lighten-name): Fix typo.
9873
9874 2012-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
9875
9876 * server.el (server--on-display-p): New function.
9877 (server--on-display-p): Use it.
9878
9879 2012-04-04 Gábor Vida <vidagabor@gmail.com> (tiny change)
9880
9881 * ido.el (ido-wide-find-dirs-or-files): Use file-name-absolute-p
9882 (bug#11145).
9883
9884 2012-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
9885
9886 * comint.el (comint--common-quoted-suffix): Check string boundary
9887 before comparing (bug#11158).
9888 * pcomplete.el (pcomplete--common-quoted-suffix): Idem.
9889
9890 2012-04-04 Chong Yidong <cyd@gnu.org>
9891
9892 * minibuffer.el (completion-extra-properties): Doc fix.
9893
9894 * subr.el (delayed-warnings-hook): Doc fix.
9895
9896 2012-04-04 Daiki Ueno <ueno@unixuser.org>
9897
9898 * epa.el (epa--select-keys): Bind C-c C-c to finish the key
9899 selection (Bug#11159).
9900 (epa-insert-keys): Inform that the default public key will be
9901 exported if no key is selected.
9902
9903 2012-04-04 Richard Stallman <rms@gnu.org>
9904
9905 * mail/emacsbug.el (report-emacs-bug): Bind inhibit-read-only.
9906
9907 2012-04-03 Chong Yidong <cyd@gnu.org>
9908
9909 * mail/sendmail.el (mail-mode-map): Bind C-c C-i to
9910 mail-insert-file, not its obsolete alias mail-attach-file.
9911
9912 2012-04-03 Michael Albinus <michael.albinus@gmx.de>
9913
9914 * notifications.el (notifications-notify): Fix docstring.
9915
9916 2012-04-02 Glenn Morris <rgm@gnu.org>
9917
9918 * emacs-lisp/authors.el (authors-aliases): Another addition.
9919
9920 2012-04-02 Michael Albinus <michael.albinus@gmx.de>
9921
9922 * net/tramp-gvfs.el (tramp-gvfs-send-command): Apply
9923 `tramp-compat-call-process' instead of `tramp-local-call-process'.
9924 Reported by Magnus Henoch <magnus.henoch@gmail.com>.
9925
9926 2012-04-01 Chong Yidong <cyd@gnu.org>
9927
9928 * files.el (file-in-directory-p): Rename from file-subdir-of-p.
9929 Handle root directory properly.
9930 (copy-directory): Caller changed.
9931
9932 * dired-aux.el (dired-copy-file-recursive, dired-create-files):
9933 * net/tramp.el (tramp-file-name-for-operation): Callers changed.
9934
9935 2012-03-31 Glenn Morris <rgm@gnu.org>
9936
9937 * term/xterm.el (xterm-extra-capabilities): Doc fix.
9938
9939 * language/indian.el ("Devanagari"): Fix typo. (Bug#11103)
9940
9941 * calendar/calendar.el (calendar-window-list)
9942 (calendar-hide-window): Restore. (Bug#11140)
9943 (calendar-exit): Use calendar-window-list, calendar-hide-window again.
9944
9945 * emacs-lisp/edebug.el (edebug-unwrap-results): Doc fix.
9946
9947 2012-03-30 Thierry Volpiatto <thierry.volpiatto@gmail.com>
9948
9949 * dired-aux.el (dired-copy-file-recursive, dired-create-files):
9950 Check if file is a symlink (Bug#10489).
9951
9952 * files.el (copy-directory): Likewise.
9953
9954 2012-03-30 Chong Yidong <cyd@gnu.org>
9955
9956 * image.el (imagemagick-types-inhibit)
9957 (imagemagick-register-types): Doc fix.
9958
9959 2012-03-30 Agustín Martín Domingo <agustin.martin@hispalinux.es>
9960
9961 * textmodes/ispell.el (ispell-get-extended-character-mode):
9962 Disable extended-char-mode for hunspell. hunspell does not support it
9963 and treats ~word as ordinary words in pipe mode.
9964
9965 2012-03-30 Glenn Morris <rgm@gnu.org>
9966
9967 * tutorial.el (help-with-tutorial): Ensure local variables don't
9968 happen to make the buffer read-only. (Bug#11127)
9969
9970 2012-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
9971
9972 * progmodes/perl-mode.el (perl-indent-line): Use `noindent' in strings.
9973 (perl-calculate-indent): Return `noindent' in strings.
9974
9975 2012-03-28 Sam Steingold <sds@gnu.org>
9976
9977 * calendar/calendar.el (calendar-exit): Use `quit-windows-on'
9978 instead of the broken adhockery which does not prevent calendar
9979 buffers from being displayed at random after exit.
9980 (calendar-window-list, calendar-hide-window): Remove the broken
9981 adhockery.
9982
9983 2012-03-28 Glenn Morris <rgm@gnu.org>
9984
9985 * replace.el (query-replace-map): Doc fix.
9986
9987 2012-03-28 Andreas Schwab <schwab@linux-m68k.org>
9988
9989 * vc/vc-git.el (vc-git-state): Don't try to match all of the diff
9990 contents. (Bug#11109)
9991
9992 2012-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
9993
9994 * emacs-lisp/avl-tree.el (avl-tree--enter-balance): Fix paren typo
9995 (bug#11077).
9996 (avl-tree--check, avl-tree--check-node): New funs.
9997
9998 2012-03-27 Martin Rudalics <rudalics@gmx.at>
9999
10000 * window.el (switch-to-visible-buffer): New option.
10001 (switch-to-prev-buffer, switch-to-next-buffer):
10002 Observe switch-to-visible-buffer. Make sure that checking for a window
10003 showing a buffer already is done on the same frame.
10004
10005 2012-03-27 Glenn Morris <rgm@gnu.org>
10006
10007 * startup.el (mail-host-address): Doc fix.
10008
10009 2012-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
10010
10011 * emacs-lisp/bytecomp.el (byte-compile-constants-vector): Allow more
10012 than 197 variables.
10013
10014 2012-03-26 Ami Fischman <ami@fischman.org>
10015
10016 * vc/vc-git.el (vc-git-state): Avoid unnecessarily locking.
10017
10018 2012-03-26 Glenn Morris <rgm@gnu.org>
10019
10020 * files.el (save-buffers-kill-emacs): Doc fix.
10021
10022 * startup.el (normal-top-level, command-line, command-line-1):
10023 Give them doc strings.
10024
10025 2012-03-25 Eli Zaretskii <eliz@gnu.org>
10026
10027 * makefile.w32-in (install): Use $(DIRNAME)_same-dir.tst instead
10028 of same-dir.tst, to avoid stepping on other (parallel) Make job's toes.
10029
10030 2012-03-25 Chong Yidong <cyd@gnu.org>
10031
10032 * custom.el (load-theme): Even if NO-ENABLE arg is t, reenable the
10033 theme if it was previously enabled before (Bug#11031).
10034
10035 * cus-theme.el (custom-theme-write-faces): Retrieve current face
10036 spec with custom-face-get-current-spec if its :shown-value is not
10037 determined yet (Bug#9337).
10038 (customize-create-theme, custom-theme-revert): Doc fixes.
10039
10040 * button.el (button-at): Minor addition to docstring.
10041
10042 2012-03-24 Simon Leinen <simon.leinen@gmail.com>
10043
10044 * vc/vc.el (vc-merge): Fix a prompt.
10045
10046 2012-03-24 Chong Yidong <cyd@gnu.org>
10047
10048 * mwheel.el (mwheel-scroll): Call deactivate-mark at the right
10049 point (Bug#9623).
10050
10051 * button.el (button-at): Minor addition to docstring.
10052
10053 2012-03-23 Stefan Monnier <monnier@iro.umontreal.ca>
10054
10055 * newcomment.el (comment-choose-indent): No space after BOL.
10056
10057 2012-03-22 Sam Steingold <sds@gnu.org>
10058
10059 * window.el (switch-to-prev-buffer): Revert last patch because the
10060 bug turned out to be an advertised feature (Elisp manual 28.14).
10061
10062 2012-03-22 Glenn Morris <rgm@gnu.org>
10063
10064 * vc/vc-bzr.el (vc-bzr-status-switches): New option. (Bug#6724)
10065 (vc-bzr-command): If running "status", pass vc-bzr-status-switches.
10066
10067 2012-03-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
10068
10069 * net/network-stream.el (network-stream-open-starttls): Make error
10070 message under Windows be less misleading.
10071
10072 2012-03-22 Liang Wang <netcasper@gmail.com> (tiny change)
10073
10074 * progmodes/etags.el (etags-list-tags): Only use tags which goto-func
10075 understands (bug#9942).
10076
10077 2012-03-22 Chong Yidong <cyd@gnu.org>
10078
10079 * simple.el (end-of-visible-line): Handle return value of
10080 next-single-property-change properly (Bug#9371).
10081
10082 2012-03-22 Kenichi Handa <handa@m17n.org>
10083
10084 * international/quail.el (quail-insert-kbd-layout): Fix previous
10085 change. To avoid unwanted bidi reordering, use
10086 bidi-string-mark-left-to-right instead of inserting LRO and PDF.
10087
10088 2012-03-21 Dmitry Gutov <dgutov@yandex.ru>
10089
10090 * progmodes/ruby-mode.el: Don't confuse "end:" for "end" (bug#10786).
10091 (ruby-block-end-re, ruby-delimiter, ruby-parse-partial)
10092 (ruby-beginning-of-indent): Be more careful with the difference
10093 between word-boundary and symbol boundary.
10094 (ruby-mode-syntax-table): Make : a symbol constituent.
10095
10096 2012-03-21 Andreas Politz <politza@fh-trier.de>
10097
10098 * outline.el (outline-flag-region): Evaporate overlays (bug#10789).
10099
10100 2012-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
10101
10102 * progmodes/etags.el (tags-completion-at-point-function):
10103 Improve last fix.
10104
10105 * files.el (move-file-to-trash): Files aren't regexps (bug#11055).
10106
10107 2012-03-21 Sam Steingold <sds@gnu.org>
10108
10109 * progmodes/etags.el (tags-completion-at-point-function):
10110 Avoid the error when point is inside the pattern.
10111
10112 2012-03-21 John Yates <john@yates-sheets.org> (tiny change)
10113
10114 * progmodes/hideshow.el (hs-inside-comment-p): Fix hiding of first
10115 line (Bug#10855).
10116
10117 2012-03-21 Drew Adams <drew.adams@oracle.com>
10118
10119 * info.el (Info-menu): Handle string value of FORK arg (Bug#10858).
10120
10121 2012-03-21 Anmol Khirbat <anmol@khirbat.net> (tiny change)
10122
10123 * ido.el (ido-set-current-directory, ido-read-internal)
10124 (ido-choose-completion-string, ido-completion-help): Handle nil
10125 value of ido-completion-buffer (Bug#11008).
10126
10127 2012-03-21 Sam Steingold <sds@gnu.org>
10128
10129 * window.el (switch-to-prev-buffer): Do not switch to a visible
10130 window previous buffer, just like with the frame previous buffers.
10131
10132 2012-03-21 Chong Yidong <cyd@gnu.org>
10133
10134 * faces.el (make-face, make-empty-face, copy-face):
10135 * face-remap.el (face-remap-add-relative, face-remap-set-base):
10136 Doc fixes.
10137
10138 2012-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
10139
10140 * wid-edit.el (widget-complete-field): Remove (bug#11051).
10141 (widget-complete): Remove broken use of it.
10142
10143 2012-03-20 Chong Yidong <cyd@gnu.org>
10144
10145 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
10146 Use string-width and truncate-string-width to handle arbitrary
10147 characters.
10148
10149 2012-03-20 Tassilo Horn <tassilo@member.fsf.org>
10150
10151 * textmodes/artist.el (artist-menu-map): Bind Rectangle menu item
10152 to draw rectangles, not squares. (Regression introduced by revno
10153 2011-03-02T03:48:01Z!cyd@stupidchicken.com)
10154
10155 2012-03-18 Chong Yidong <cyd@gnu.org>
10156
10157 * faces.el (face-spec-reset-face): Don't call display-graphic-p if
10158 it is not yet defined (for temacs).
10159
10160 2012-03-18 Leo Liu <sdl.web@gmail.com>
10161
10162 * net/rcirc.el (rcirc-cmd-quit): Allow quitting all servers with
10163 prefix.
10164
10165 2012-03-17 Eli Zaretskii <eliz@gnu.org>
10166
10167 * textmodes/ispell.el (ispell-skip-tib, ispell-keep-choices-win)
10168 (ispell-choices-win-default-height, ispell-silently-savep)
10169 (ispell-dictionary-alist, ispell-encoding8-command)
10170 (ispell-check-version, ispell-aspell-find-dictionary)
10171 (ispell-valid-dictionary-list, ispell-words-keyword)
10172 (ispell-get-word, ispell-internal-change-dictionary)
10173 (ispell-region, ispell-skip-region-list)
10174 (ispell-begin-skip-region-regexp, ispell-ignore-fcc)
10175 (ispell-process-line, ispell-minor-mode, ispell-minor-check)
10176 (ispell-message-text-end, ispell-message)
10177 (ispell-buffer-local-parsing): Doc fix.
10178
10179 2012-03-13 Jambunathan K <kjambunathan@gmail.com>
10180
10181 * htmlfontify.el: Add support for code block fontification for ODT
10182 export (Bug #9914).
10183 (hfy-optimisations): Define new option
10184 `body-text-only'
10185 (hfy-fontify-buffer): Honor above setting.
10186 (hfy-begin-span, hfy-end-span): New routines factored out form
10187 `hfy-fontify-buffer'.
10188 (hfy-begin-span-handler, hfy-end-span-handler): New variables
10189 that permit insertion of custom tags.
10190 (hfy-fontify-buffer): Use above handlers.
10191 (hfy-face-to-css-default): Same as the earlier `hfy-face-to-css'.
10192 (hfy-face-to-css): Re-defined to be a variable.
10193 (hfy-compile-stylesheet): Modify. Allow stylesheet to be built
10194 over multiple runs. This is made possible by having the caller let
10195 bind a special variable `hfy-user-sheet-assoc'.
10196 (htmlfontify-string): New defun.
10197 (hfy-compile-face-map): Make sure that the last char in the
10198 buffer is correctly fontified.
10199 (hfy-face-resolve-face): Whitespace only change.
10200
10201 2012-03-17 Eli Zaretskii <eliz@gnu.org>
10202
10203 * textmodes/ispell.el (ispell-get-decoded-string): Make the error
10204 message more clear.
10205
10206 2012-03-16 Leo Liu <sdl.web@gmail.com>
10207
10208 * emacs-lisp/copyright.el (copyright-year-ranges): Fix typo.
10209
10210 2012-03-16 Alan Mackenzie <acm@muc.de>
10211
10212 Further optimise the handling of large macros.
10213
10214 * progmodes/cc-engine.el (c-crosses-statement-barrier-p): Use a
10215 limit to a call of `c-literal-limits'.
10216 (c-determine-+ve-limit): New function.
10217 (c-at-macro-vsemi-p): Move `c-in-literal' to the bottom of an `and'.
10218 (c-guess-basic-syntax): In macros, restrict a search limit to 2000.
10219 In CASE 5B, restrict a search limit to 500.
10220 (c-just-after-func-arglist-p): Obviouly wrong `or' -> `and'.
10221
10222 * progmodes/cc-mode.el (c-neutralize-syntax-in-and-mark-CPP):
10223 Restrict macro bounds to +-500 from after-change's BEG END.
10224
10225 2012-03-16 Leo Liu <sdl.web@gmail.com>
10226
10227 * font-lock.el (lisp-font-lock-keywords-2): Add letrec.
10228
10229 2012-03-16 Aaron S. Hawley <Aaron.S.Hawley@gmail.com>
10230
10231 * tar-mode.el (tar-mode): Fix saving by conditionally undoing
10232 `special-mode' setting of `buffer-read-only'. (Bug#11010)
10233
10234 2012-03-16 Glenn Morris <rgm@gnu.org>
10235
10236 * view.el (view-buffer, view-buffer-other-window)
10237 (view-buffer-other-frame): Doc fixes re special mode-class.
10238
10239 * subr.el (eval-after-load): If named feature is provided not from
10240 a file, run after-load forms. (Bug#10946)
10241
10242 * calendar/calendar.el (calendar-insert-at-column):
10243 Handle non-unit-width characters a bit better. (Bug#10978)
10244
10245 2012-03-15 Chong Yidong <cyd@gnu.org>
10246
10247 * emacs-lisp/ring.el (ring-extend): New function.
10248 (ring-insert+extend): Extend the ring correctly (Bug#11019).
10249
10250 * comint.el (comint-read-input-ring)
10251 (comint-add-to-input-history): Grow comint-input-ring lazily.
10252
10253 2012-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
10254
10255 * progmodes/perl-mode.el (perl-syntax-propertize-special-constructs):
10256 Fix up parsing of multiline twoarg non-paired elements (bug#11014).
10257
10258 * imenu.el: Fix multiple inheritance breakage (bug#9199).
10259 (imenu-add-to-menubar): Don't add a redundant index.
10260 (imenu-update-menubar): Handle a dynamically composed keymap.
10261
10262 2012-03-13 Katsumi Yamaoka <yamaoka@jpl.org>
10263
10264 * mail/sendmail.el (mail-encode-header):
10265 Bind rfc2047-encode-encoded-words to nil.
10266
10267 2012-03-13 Glenn Morris <rgm@gnu.org>
10268
10269 * calendar/calendar.el (calendar-string-spread):
10270 Handle non-unit-width characters a bit better. (Bug#10978)
10271
10272 2012-03-13 Leo Liu <sdl.web@gmail.com>
10273
10274 * vc/vc-hg.el (vc-hg-working-revision): Rework to work with both
10275 directory and file as argument (Bug#10822).
10276
10277 2012-03-13 Kaushik Srenevasan <ksrenevasan@gmail.com> (tiny change)
10278
10279 * progmodes/gdb-mi.el (gdb-invalidate-disassembly):
10280 For dynamically generated code, follow $PC.
10281 (gdb-disassembly-handler-custom): Handle no function name case.
10282
10283 2012-03-13 Tim Landscheidt <tim@tim-landscheidt.de> (tiny change)
10284
10285 * calendar/icalendar.el (icalendar-export-file, icalendar-import-file):
10286 * emulation/ws-mode.el (ws-query-replace):
10287 * sort.el (sort-regexp-fields):
10288 Fix missing trailing whitespace in interactive prompts. (Bug#11002)
10289
10290 2012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
10291
10292 * dabbrev.el: Fix cycle completion order (bug#10963).
10293 (dabbrev--last-obarray, dabbrev--last-completion-buffer): Remove.
10294 (dabbrev-completion): Don't use an obarray; provide
10295 a cycle-sort-function.
10296
10297 2012-03-12 Leo Liu <sdl.web@gmail.com>
10298
10299 * simple.el (kill-new): Use equal-including-properties for comparison.
10300 (kill-do-not-save-duplicates): Doc fix.
10301
10302 2012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
10303
10304 * dabbrev.el: Fix cycle completion (bug#10963).
10305 Use lexical binding and wrap to 80 columns.
10306 (dabbrev-completion): Delay computing the list of completions.
10307
10308 2012-03-12 Kenichi Handa <handa@m17n.org>
10309
10310 * international/quail.el (quail-insert-kbd-layout): Surround each
10311 row by LRO and PDF instead of inserting many LRMs. Pad the left
10312 and right of each non-spacing marks. Insert invisible space
10313 between lower and upper characters to prevent composition.
10314
10315 2012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
10316
10317 * minibuffer.el (minibuffer-complete): Don't get confused when the
10318 function is run twice via different commands (bug#10958).
10319 (complete-with-action): Fix docstring.
10320
10321 2012-03-12 Chong Yidong <cyd@gnu.org>
10322
10323 * nxml/nxml-mode.el (nxml-mode-map): Do not bind C-RET (Bug#6776).
10324 (nxml-completion-at-point-function): New function.
10325 (nxml-mode): Use it.
10326 (nxml-bind-meta-tab-to-complete-flag): Default to t.
10327
10328 * emacs-lisp/package.el (package-unpack, package-unpack-single):
10329 Load generated autoloads file before byte compiling (Bug#10970).
10330 (package--make-autoloads-and-compile): New helper fun.
10331
10332 2012-03-12 Christopher Schmidt <christopher@ch.ristopher.com>
10333
10334 * ibuffer.el (ibuffer-redisplay): Remove another gratuitous error.
10335
10336 2012-03-11 Michael Albinus <michael.albinus@gmx.de>
10337
10338 * autorevert.el (auto-revert-handler): Ensure, that
10339 file-readable-p is applied only for local files or in
10340 auto-revert-tail-mode.
10341
10342 2012-03-11 Andreas Schwab <schwab@linux-m68k.org>
10343
10344 * server.el (server-eval-at): Handle non-tcp connections.
10345 Decode result string.
10346
10347 * server.el (server-msg-size): New constant.
10348 (server-reply-print): New function.
10349 (server-eval-and-print): Use it.
10350 (server-eval-at): Use server-quote-arg and server-unquote-arg.
10351 Handle -print-nonl.
10352
10353 2012-03-11 Christopher Schmidt <christopher@ch.ristopher.com>
10354
10355 * ibuffer.el (ibuffer-redisplay): Remove gratuitous error
10356 (Bug#10987).
10357
10358 2012-03-11 Chong Yidong <cyd@gnu.org>
10359
10360 * simple.el (goto-line): Doc fix (Bug#9938).
10361
10362 * subr.el (save-window-excursion): Doc fix (Bug#9979).
10363
10364 * dabbrev.el (dabbrev--find-expansion): Update progress reporter
10365 when finished (Bug#10963).
10366
10367 2012-03-11 Martin Rudalics <rudalics@gmx.at>
10368
10369 * window.el (split-window-below): Fix bug in case where
10370 split-window-keep-point is nil (Bug#10971).
10371
10372 2012-03-11 Juri Linkov <juri@jurta.org>
10373
10374 * replace.el (replace-highlight): Set isearch-word to nil
10375 unconditionally. (Bug#10887)
10376
10377 2012-03-10 Eli Zaretskii <eliz@gnu.org>
10378
10379 * net/mairix.el (mairix-replace-invalid-chars): Rename from
10380 mairix-replace-illegal-chars; all callers changed. Don't remove
10381 ^, ~, and = characters: they are meaningful in mairix search specs.
10382 (mairix-widget-create-query): Add usage information about mairix
10383 search forms: negating words, searching for substrings, etc.
10384
10385 2012-03-10 Jae-hyeon Park <jae-hyeon.park@desy.de> (tiny change)
10386
10387 * international/fontset.el (font-encoding-alist): Add an entry for
10388 ksx1001 (Bug#5667).
10389
10390 2012-03-10 Richard Stallman <rms@gnu.org>
10391
10392 * mail/sendmail.el (mail-encode-header):
10393 Set rfc2047-encode-encoded-words.
10394
10395 * mail/mail-utils.el (mail-quote-printable): Quote multibyte chars.
10396
10397 * mail/rmail.el (rmail-buffers-swapped-p): Don't assume dead
10398 view buffer means not swapped.
10399 (rmail-view-buffer-kill-buffer-hook): Give buf name in error msg.
10400 (rmail-write-region-annotate): Error if real text has disappeared.
10401
10402 * epa-mail.el (epa-mail-encrypt): Bind inhibit-read-only.
10403
10404 2012-03-10 Chong Yidong <cyd@gnu.org>
10405
10406 * emulation/cua-rect.el (cua--init-rectangles):
10407 * emulation/cua-base.el (cua--init-keymaps):
10408 Add delete-forward-char to remappings (Bug#9666).
10409
10410 2012-03-10 Martin Rudalics <rudalics@gmx.at>
10411
10412 * speedbar.el (speedbar-unhighlight-one-tag-line):
10413 Avoid unhighlighting due to frame switching (Bug#10275).
10414
10415 2012-03-10 Chong Yidong <cyd@gnu.org>
10416
10417 * minibuffer.el (completion-in-region, completion-help-at-point):
10418 Give the completion field overlay a high priority (Bug#6830).
10419
10420 * dired.el (dired-goto-file): Recognize absolute file name
10421 listings (Bug#7126).
10422 (dired-goto-file-1): New helper function.
10423 (dired-toggle-read-only): Inhibit warnings.
10424
10425 2012-03-09 Michael Albinus <michael.albinus@gmx.de>
10426
10427 * net/dbus.el (dbus-property-handler): Return empty array if
10428 there are no properties.
10429
10430 2012-03-09 Leo Liu <sdl.web@gmail.com>
10431
10432 * savehist.el (savehist-printable): Stricter check for string
10433 value (Bug#10937).
10434
10435 2012-03-09 Eli Zaretskii <eliz@gnu.org>
10436
10437 * mail/smtpmail.el (smtpmail-send-it):
10438 Bind coding-system-for-write to *-unix, so that FCC files are kept in
10439 valid mbox format.
10440
10441 2012-03-09 Glenn Morris <rgm@gnu.org>
10442
10443 * files.el (dir-locals-find-file):
10444 Don't check result is regular, readable.
10445 (dir-locals-read-from-file): Demote errors.
10446
10447 2012-03-08 Eli Zaretskii <eliz@gnu.org>
10448
10449 * international/quail.el (quail-insert-kbd-layout):
10450 Insert invisible LRM characters before each character in a keyboard
10451 layout cell, to prevent their reordering by bidi display engine.
10452 For details, see the discussion in
10453 http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00085.html.
10454
10455 2012-03-08 Alan Mackenzie <acm@muc.de>
10456
10457 * progmodes/cc-cmds.el (c-mark-function): Make it leave a mark at
10458 the starting position; make it extend the marked region when
10459 invoked repeatedly - all under appropriate circumstances.
10460 Fixes bugs #5525, #10906.
10461
10462 2012-03-08 Glenn Morris <rgm@gnu.org>
10463
10464 * files.el (locate-dominating-file, dir-locals-find-file):
10465 Undo 2012-03-06 change.
10466
10467 2012-03-07 Eli Zaretskii <eliz@gnu.org>
10468
10469 * international/quail.el (quail-help):
10470 Force bidi-paragraph-direction be left-to-right. See discussion in
10471 http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00062.html
10472 for the reason.
10473
10474 2012-03-07 Michael Albinus <michael.albinus@gmx.de>
10475
10476 Avoid superfluous registering of signals. (Bug#10807)
10477
10478 * notifications.el (notifications-on-action-object)
10479 (notifications-on-close-object): New defvars.
10480 (notifications-on-action-signal, notifications-on-closed-signal):
10481 Unregister the signal if not needed any longer.
10482 (notifications-notify): Register `notifications-action-signal' or
10483 `notifications-closed-signal', if :on-action or :on-close has been
10484 passed as argument.
10485
10486 2012-03-07 Chong Yidong <cyd@gnu.org>
10487
10488 * cus-start.el: Avoid x-select-enable-clipboard-manager warning on
10489 non-X platforms.
10490
10491 2012-03-06 Glenn Morris <rgm@gnu.org>
10492
10493 * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
10494 (x-disown-selection-internal, x-get-selection-internal):
10495 Doc fix (add arglist signatures). (Bug#10783)
10496
10497 2012-03-06 Kaushik Srenevasan <ksrenevasan@gmail.com> (tiny change)
10498
10499 * progmodes/gdb-mi.el (gdb-breakpoints-list-handler-custom):
10500 Handle breakpoints with no "type".
10501
10502 2012-03-06 Glenn Morris <rgm@gnu.org>
10503
10504 * files.el (locate-dominating-file): Add optional predicate argument.
10505 (dir-locals-find-file): Make use of above change.
10506
10507 2012-03-06 Thien-Thi Nguyen <ttn@gnuvola.org>
10508
10509 * info.el (Info-insert-dir): Also try "dir.gz".
10510
10511 2012-03-06 Glenn Morris <rgm@gnu.org>
10512
10513 * files.el (dir-locals-find-file):
10514 Ignore non-readable or non-regular files. (Bug#10928)
10515
10516 * files.el (locate-dominating-file): Doc fix.
10517
10518 2012-03-06 Adam Spiers <emacs@adamspiers.org> (tiny change)
10519
10520 * calendar/calendar.el (calendar-set-mode-line):
10521 `getenv' returns a string. (Bug#10951)
10522
10523 2012-03-05 Leo Liu <sdl.web@gmail.com>
10524
10525 * simple.el (backward-delete-char-untabify): Constrain point to
10526 field (Bug#10939).
10527
10528 * eshell/em-cmpl.el (eshell-cmpl-initialize): Fix shift-tab key.
10529
10530 2012-03-05 Chong Yidong <cyd@gnu.org>
10531
10532 * simple.el (count-words): If called from Lisp, return the word
10533 count, for symmetry with `count-lines'. Arglist changed.
10534 (count-words--message): Args changed. Consolidate counting code
10535 from count-words and count-words-region.
10536 (count-words-region): Caller changed.
10537 (count-lines-region): Make it an obsolete alias.
10538
10539 2012-03-04 Tassilo Horn <tassilo@member.fsf.org>
10540
10541 * saveplace.el (save-place-to-alist)
10542 (save-place-ignore-files-regexp): Allow value nil to disable this
10543 feature.
10544
10545 2012-03-04 Chong Yidong <cyd@gnu.org>
10546
10547 * faces.el (face-spec-reset-face): For the default face, reset the
10548 attributes to default values (Bug#10748).
10549
10550 2012-03-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
10551
10552 * mail/emacsbug.el (report-emacs-bug-hook): Fix up thinko in
10553 previous patch: Check `message-send-mail-function', and not the
10554 default function (bug#10897).
10555
10556 2012-03-04 Michael Albinus <michael.albinus@gmx.de>
10557
10558 * notifications.el (notifications-on-action-signal)
10559 (notifications-on-closed-signal): Check for unique service name of
10560 incoming event. Fix error in removing entry.
10561 (top): Register for signals with wildcard service name.
10562 (notifications-notify): Use daemon unique service name for map entries.
10563
10564 2012-03-04 Chong Yidong <cyd@gnu.org>
10565
10566 * cus-start.el: Make x-select-enable-clipboard-manager customizable.
10567
10568 2012-03-04 Glenn Morris <rgm@gnu.org>
10569
10570 * abbrev.el (copy-abbrev-table, abbrev-table-p)
10571 (abbrev-minor-mode-table-alist, define-abbrev, abbrev-insert)
10572 (expand-abbrev, define-abbrev-table): Doc fixes.
10573
10574 2012-03-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
10575
10576 * mail/emacsbug.el (report-emacs-bug-hook): Look at the value of
10577 `message-default-send-mail-function' and not `send-mail-function'
10578 when doing the prompting for `sendmail-query-once' before sending
10579 in Message buffers (bug#10897).
10580
10581 * net/tls.el (open-tls-stream): Don't set the dont-query-on-exit flag.
10582 This is inconsistent with all the other stream functions, which leave
10583 the setting up to the higher levels (if so wanted) (bug#10931).
10584
10585 2012-03-02 Alan Mackenzie <acm@muc.de>
10586
10587 Depessimize the handling of very large macros.
10588
10589 * progmodes/cc-engine.el (c-macro-cache, c-macro-cache-start-pos):
10590 (c-macro-cache-syntactic): New variables to implement a one
10591 element macro cache.
10592 (c-invalidate-macro-cache): New function.
10593 (c-beginning-of-macro, c-end-of-macro, c-syntactic-end-of-macro):
10594 Adapt to use the new cache.
10595 (c-state-safe-place): Use better the cache of safe positions.
10596 (c-state-semi-nonlit-pos-cache)
10597 (c-state-semi-nonlit-pos-cache-limit):
10598 New variables for...
10599 (c-state-semi-safe-place): New function. Here, in a macro is "safe".
10600 (c-invalidate-state-cache-1): New stuff for c-state-semi-safe-place.
10601 (c-in-literal, c-literal-limits, c-determine-limit-get-base):
10602 Use c-state-semi-safe-place.
10603
10604 * progmodes/cc-langs.el (c-get-state-before-change-functions):
10605 Add c-invalidate-macro-cache to the C, C++, Obj entries.
10606
10607 2012-03-02 Michael Albinus <michael.albinus@gmx.de>
10608
10609 * jka-compr.el (jka-compr-call-process):
10610 Apply `file-accessible-directory-p' only when the default directory is
10611 not remote.
10612
10613 2012-03-01 Michael Albinus <michael.albinus@gmx.de>
10614
10615 * files.el (file-equal-p): Fix docstring. Avoid unnecessary
10616 access of FILE2, if FILE1 does not exist.
10617
10618 * net/tramp-sh.el (tramp-remote-process-environment): Add "PAGER=\"\"".
10619 Reported by Robert Lupton the Good <rhl@astro.princeton.edu>.
10620
10621 * vc/vc-git.el (vc-git--call): Enable `inhibit-null-byte-detection'.
10622 Add "PAGER=" to `process-environment'.
10623
10624 2012-03-01 Michael R. Mauger <mmaug@yahoo.com>
10625
10626 * progmodes/sql.el: Bug fix
10627 (sql-get-login-ext): Save login values in globals.
10628 (sql-get-login): Use new version of `sql-get-login-ext'.
10629 (sql-interactive-mode): Set global `sql-connection' to nil.
10630 (sql-connect): Set global values for connection.
10631 (sql-product-interactive): Save global values as buffer local.
10632
10633 2012-02-29 Leo Liu <sdl.web@gmail.com>
10634
10635 * abbrev.el (define-abbrevs): Reset sys to nil.
10636
10637 2012-02-28 Thierry Volpiatto <thierry.volpiatto@gmail.com>
10638
10639 * files.el (file-equal-p): Rename from `files-equal-p'.
10640 Return nil when one or both files don't exist.
10641 (file-subdir-of-p): Now only top directory must exists,
10642 return nil if it doesn't.
10643 (copy-directory): No need to test with `file-subdir-of-p' after
10644 creating dir.
10645 * net/tramp.el (tramp-file-name-for-operation): Rename `files-equal-p'
10646 to `file-equal-p'.
10647
10648 2012-02-28 Glenn Morris <rgm@gnu.org>
10649
10650 * shell.el (shell-mode):
10651 * progmodes/vhdl-mode.el (wildcard-to-regexp, file-expand-wildcards):
10652 * play/landmark.el (landmark-font-lock-face-O):
10653 * play/handwrite.el (handwrite):
10654 * play/gomoku.el (gomoku-O):
10655 * net/browse-url.el (browse-url-browser-display):
10656 * international/mule.el (define-charset):
10657 * htmlfontify.el (hfy-etags-cmd, hfy-face-attr-for-class):
10658 * filesets.el (filesets-find-file-delay):
10659 * eshell/em-xtra.el (eshell-xtra):
10660 * eshell/em-unix.el (eshell-grep):
10661 * emulation/viper.el (viper-mode):
10662 * emacs-lisp/regexp-opt.el (regexp-opt-group):
10663 * emacs-lisp/easymenu.el (easy-menu-define):
10664 * calendar/timeclock.el (timeclock-use-display-time):
10665 * bs.el (bs-mode):
10666 * bookmark.el (bookmark-save-flag):
10667 Doc fix (standardize possessive apostrophe usage).
10668
10669 2012-02-27 Chong Yidong <cyd@gnu.org>
10670
10671 * emulation/viper-cmd.el (viper-intercept-ESC-key):
10672 Fix key-binding lookup for ESC key (Bug#9146).
10673
10674 * font-lock.el (font-lock-specified-p): Rename from
10675 font-lock-spec-present. Callers changed.
10676
10677 2012-02-27 Daniel Hackney <dan@haxney.org>
10678
10679 * emacs-lisp/package.el (package-compute-transaction):
10680 Handle holding a package version to t in package-load-list.
10681
10682 2012-02-26 Michael Albinus <michael.albinus@gmx.de>
10683
10684 * net/tramp.el (tramp-inodes, tramp-devices): Initialize with 0.
10685 (tramp-get-inode, tramp-get-device): Use cached values.
10686
10687 2012-02-26 Alan Mackenzie <acm@muc.de>
10688
10689 Check there is a font-lock specification before doing initial
10690 fontification.
10691
10692 * font-core.el (font-lock-mode): Move the conditional from
10693 :after-hook to font-lock-initial-fontify.
10694 (font-lock-default-function): Move the check for a specification
10695 to font-lock-spec-present.
10696
10697 * font-lock.el (font-lock-initial-fontify): Call ...
10698 (font-lock-spec-present): New function.
10699
10700 2012-02-26 Jim Blandy <jimb@red-bean.com>
10701
10702 * progmodes/gdb-mi.el (gdb-mi-quote): New function.
10703 (gdb-send): Apply it to the operand of the '-interpreter-exec
10704 console' command, so that we can pass arguments with (say) quotes
10705 in them. Store exact string sent in gdb-debug-log (Bug#10765).
10706
10707 2012-02-26 Chong Yidong <cyd@gnu.org>
10708
10709 * help-fns.el (describe-function-1): Clarify description of
10710 remapping (Bug#10844).
10711
10712 * files.el (files-equal-p): Doc fix.
10713 (file-subdir-of-p): Doc fix. Convert loop macro to plain Lisp,
10714 and quit the loop once a mismatch is found.
10715
10716 2012-02-25 Juanma Barranquero <lekktu@gmail.com>
10717
10718 * bs.el (bs--show-with-configuration): Don't throw an error
10719 if the window cannot be split; otherwise, subsequent calls to
10720 bs-show fail, restoring a stale window config. (Bug#10882)
10721
10722 2012-02-25 Jan Djärv <jan.h.d@swipnet.se>
10723
10724 * term/ns-win.el (global-map): Bind ns-drag-file to
10725 ns-find-file (Bug#5855, Bug#10050).
10726
10727 2012-02-25 Andreas Schwab <schwab@linux-m68k.org>
10728
10729 * calendar/parse-time.el (parse-time-string): Allow extractor to
10730 return nil.
10731
10732 2012-02-25 Michael Albinus <michael.albinus@gmx.de>
10733
10734 * net/tramp.el (tramp-file-name-for-operation):
10735 Add `files-equal-p' and `file-subdir-of-p'.
10736
10737 * net/tramp-sh.el (tramp-sh-handle-copy-directory):
10738 * net/tramp-smb.el (tramp-smb-handle-copy-directory):
10739 Add COPY-CONTENTS argument.
10740
10741 2012-02-25 Chong Yidong <cyd@gnu.org>
10742
10743 Add custom groups for VC backends, for consistency with vc-bzr.
10744
10745 * vc/vc-arch.el (vc-arch):
10746 * vc/vc-cvs.el (vc-cvs):
10747 * vc/vc-git.el (vc-git):
10748 * vc/vc-hg.el (vc-hg):
10749 * vc/vc-mtn.el (vc-mtn):
10750 * vc/vc-rcs.el (vc-rcs):
10751 * vc/vc-sccs.el (vc-sccs):
10752 * vc/vc-svn.el (vc-svn): New customization group (Bug#10871).
10753 All relevant defcustoms reassigned.
10754
10755 2012-02-25 Chong Yidong <cyd@gnu.org>
10756
10757 * newcomment.el (comment-styles): Add autoload (Bug#10868).
10758
10759 * term/x-win.el (x-initialize-window-system): Reduce default for
10760 x-selection-timeout to 5 seconds (Bug#8869).
10761
10762 2012-02-24 Thierry Volpiatto <thierry.volpiatto@gmail.com>
10763
10764 * files.el (files-equal-p, file-subdir-of-p): New functions.
10765 (copy-directory): Error when trying to copy a directory on itself.
10766 Add missing copy-contents arg to tramp handler.
10767 * dired-aux.el (dired-copy-file-recursive): Same.
10768 (dired-create-files): Modify destination when source is equal to
10769 dest when copying files.
10770 Return also when dest is a subdir of source. (Bug#10489)
10771
10772 2012-02-24 Michael Albinus <michael.albinus@gmx.de>
10773
10774 * net/ange-ftp.el (ange-ftp-parse-netrc): Suppress comment lines.
10775 (Bug#10874)
10776
10777 2012-02-23 Alan Mackenzie <acm@muc.de>
10778
10779 * emacs-lisp/easy-mmode.el (define-minor-mode): Add extra
10780 parameter "after-hook:" to allow the expansion to run code after
10781 the execution of the mode hooks.
10782
10783 * font-lock.el (font-lock-initial-fontify): New function extracted
10784 from font-lock-mode-internal.
10785
10786 * font-core.el (font-lock-mode): Call font-lock-initial-fontify in
10787 :after-hook.
10788
10789 2012-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
10790
10791 * minibuffer.el: Make sure cycling is reset upon edit with icomplete.el.
10792 (completion--cache-all-sorted-completions): New function.
10793 (completion-all-sorted-completions): Use it.
10794 (completion--do-completion, minibuffer-force-complete):
10795 Use it to re-instate the flush hook.
10796
10797 * icomplete.el (icomplete-completions): Replace last fix with a better
10798 one (bug#10850).
10799
10800 2012-02-23 Dmitry Gutov <dgutov@yandex.ru>
10801
10802 * emacs-lisp/lisp.el (beginning-of-defun-raw): Don't call end-of-defun
10803 when it might call us back infinitely (bug#10797).
10804
10805 2012-02-23 Glenn Morris <rgm@gnu.org>
10806
10807 * minibuffer.el (completion-category-overrides): Doc fix.
10808
10809 2012-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
10810
10811 * minibuffer.el (completion-table-with-context): Fix inf-loop.
10812 Reported by Aaron S. Hawley <aaron.s.hawley@gmail.com>.
10813
10814 2012-02-23 Glenn Morris <rgm@gnu.org>
10815
10816 * emacs-lisp/authors.el (authors-aliases, authors-fixed-case)
10817 (authors-obsolete-files-regexps, authors-ignored-files)
10818 (authors-ambiguous-files, authors-renamed-files-alist):
10819 Add more entries.
10820
10821 2012-02-23 Juri Linkov <juri@jurta.org>
10822
10823 * isearch.el (isearch-occur): Sync interactive spec with occur's
10824 new feature in `occur-read-primary-args'. Doc fix. (Bug#10705)
10825
10826 * replace.el (occur-menu-map): Add menu item for `occur-edit-mode'.
10827
10828 2012-02-22 Juri Linkov <juri@jurta.org>
10829
10830 * international/mule-cmds.el (read-char-by-name): Use \` and \'.
10831 (ucs-insert): Doc fix. Check for hex digits in the string.
10832 Don't display `nil' in the error message. (Bug#10857)
10833
10834 2012-02-22 Alan Mackenzie <acm@muc.de>
10835
10836 * progmodes/cc-mode.el: Revert change #2012-02-06T22:08:41Z!larsi@gnus.org from 2012-02-06.
10837
10838 2012-02-22 Glenn Morris <rgm@gnu.org>
10839
10840 * ffap.el (ffap-c-path):
10841 * man.el (Man-header-file-path): Handle multiarch. (Bug#10702)
10842
10843 2012-02-22 Chong Yidong <cyd@gnu.org>
10844
10845 * custom.el (load-theme): Doc fix.
10846
10847 2012-02-22 Glenn Morris <rgm@gnu.org>
10848
10849 * dired-x.el (dired-guess-shell-alist-default):
10850 Remove escape sequences from nroff output. (Bug#172)
10851
10852 2012-02-21 Glenn Morris <rgm@gnu.org>
10853
10854 * vc/emerge.el (emerge-defvar-local):
10855 Set `permanent-local' property rather than unused `preserved'.
10856
10857 * textmodes/picture.el (picture-delete-char): New alias.
10858 (picture-mode-map): Use it. (Bug#10860)
10859 (picture-mode): Doc fix.
10860
10861 2012-02-21 Juanma Barranquero <lekktu@gmail.com>
10862
10863 * newcomment.el (uncomment-region-default): Remove unused binding.
10864
10865 2012-02-21 Glenn Morris <rgm@gnu.org>
10866
10867 * textmodes/picture.el (picture-motion, picture-motion-reverse)
10868 (picture-self-insert, picture-tab-chars): Doc fix.
10869 (picture-mode-map): Fix C-a, C-e.
10870
10871 2012-02-20 Glenn Morris <rgm@gnu.org>
10872
10873 * emacs-lisp/authors.el (authors-aliases): Add another entry.
10874
10875 2012-02-20 Leo Liu <sdl.web@gmail.com>
10876
10877 * icomplete.el (icomplete-completions): Check FROM arg before
10878 passing to substring (Bug#10850).
10879
10880 2012-02-19 Chong Yidong <cyd@gnu.org>
10881
10882 * comint.el: Require ansi-color.
10883 (comint-output-filter-functions): Add ansi-color-process-output.
10884
10885 * ansi-color.el: Don't set comint-output-filter-functions; it is
10886 now in the initial value defined in comint.el.
10887 (ansi-color-apply-face-function): New variable.
10888 (ansi-color-apply-on-region): Use it.
10889 (ansi-color-apply-overlay-face): New function.
10890
10891 * shell.el (shell): No need to require ansi-color.
10892 (shell-mode): Use ansi-color-apply-face-function to highlight
10893 color escapes using font-lock-face property (Bug#10835).
10894
10895 2012-02-19 Chong Yidong <cyd@gnu.org>
10896
10897 * vc/ediff-init.el (ediff-strip-mode-line-format): Handle non-list
10898 mode-line formats (Bug#10839).
10899
10900 2012-02-18 Glenn Morris <rgm@gnu.org>
10901
10902 * mail/rmail.el (rmail-dont-reply-to-names): Mark as obsolete.
10903
10904 * mail/undigest.el (unforward-rmail-message): Doc fix.
10905
10906 * saveplace.el (save-place-ignore-files-regexp): Add :version.
10907
10908 2012-02-18 Eli Zaretskii <eliz@gnu.org>
10909
10910 * international/characters.el (script-list): Sync with the latest
10911 Unicode Character Database.
10912
10913 2012-02-18 Andreas Schwab <schwab@linux-m68k.org>
10914
10915 * international/titdic-cnv.el: Remove duplicate coding tag.
10916 * language/cham.el: Likewise.
10917 * language/tai-viet.el: Likewise.
10918
10919 2012-02-18 Glenn Morris <rgm@gnu.org>
10920
10921 * calendar/cal-menu.el (cal-menu-diary-menu, cal-menu-goto-menu):
10922 * calendar/calendar.el (diary-file, diary-bahai-entry-symbol)
10923 (calendar-bahai-all-holidays-flag, calendar-other-dates):
10924 * calendar/diary-lib.el (diary-abbreviated-year-flag):
10925 * calendar/holidays.el (holiday-bahai-holidays)
10926 (calendar-holidays, list-holidays):
10927 Use utf-8 Bahá'í in doc-strings, menus, etc.
10928
10929 2012-02-17 Tassilo Horn <tassilo@member.fsf.org>
10930
10931 * saveplace.el (save-place-ignore-files-regexp): New variable
10932 allowing for excluding files from saving their location of point.
10933 The default value matches the temporary commit message editing
10934 files from Git, SVN, Bazaar, and Mercurial.
10935 (save-place-to-alist): Use it.
10936
10937 2012-02-17 Lawrence Mitchell <wence@gmx.li>
10938 Stefan Monnier <monnier@iro.umontreal.ca>
10939
10940 * newcomment.el (uncomment-region-default): Don't leave extra space
10941 when an arg is provided (bug#8150).
10942
10943 2012-02-17 Teodor Zlatanov <tzz@lifelogs.com>
10944
10945 * net/gnutls.el (gnutls-trustfiles): Fix Cygwin bundle location.
10946
10947 2012-02-17 Glenn Morris <rgm@gnu.org>
10948
10949 * net/socks.el: Require network-stream. (Bug#10599)
10950
10951 2012-02-17 Kenichi Handa <handa@m17n.org>
10952
10953 * international/charprop.el:
10954 * international/uni-name.el:
10955 * international/uni-old-name.el:
10956 * international/uni-comment.el: Regenerate.
10957
10958 2012-02-16 Glenn Morris <rgm@gnu.org>
10959
10960 * calendar/cal-hebrew.el (calendar-hebrew-list-yahrzeits):
10961 Interactively in calendar buffer, give an error if not on a date.
10962
10963 2012-02-15 Glenn Morris <rgm@gnu.org>
10964
10965 * shell.el (shell-delimiter-argument-list):
10966 Revert 2011-02-17 change. (Bug#8027)
10967
10968 2012-02-15 Chong Yidong <cyd@gnu.org>
10969
10970 * minibuffer.el (completion-at-point-functions): Doc fix.
10971
10972 * custom.el (defcustom): Doc fix; note use of defvar.
10973
10974 2012-02-15 Glenn Morris <rgm@gnu.org>
10975
10976 * mail/smtpmail.el (smtpmail-smtp-user, smtpmail-stream-type):
10977 Doc fixes.
10978
10979 2012-02-14 Glenn Morris <rgm@gnu.org>
10980
10981 * mail/smtpmail.el (smtpmail-query-smtp-server): Give it a doc.
10982
10983 2012-02-14 Lars Ingebrigtsen <larsi@gnus.org>
10984
10985 * mail/smtpmail.el (smtpmail-query-smtp-server): Fix typo in the
10986 way the ports list is computed.
10987 (smtpmail-query-smtp-server): Prompt the user for a port number if
10988 we can't connect to any of the standard ports (bug#10810).
10989
10990 2012-02-14 Teodor Zlatanov <tzz@lifelogs.com>
10991
10992 * net/gnutls.el (gnutls-trustfiles): Add Cygwin location.
10993
10994 2012-02-13 Glenn Morris <rgm@gnu.org>
10995
10996 * minibuffer.el (read-file-name): Doc fix. (Bug#10798)
10997
10998 2012-02-13 Teodor Zlatanov <tzz@lifelogs.com>
10999
11000 * net/gnutls.el (gnutls-trustfiles): New variable.
11001 (gnutls-negotiate): Use it.
11002
11003 2012-02-13 Lars Ingebrigtsen <larsi@gnus.org>
11004
11005 * simple.el (mail-user-agent): Mention that `gnus-user-agent' only
11006 does its stuff if Gnus is running.
11007
11008 2012-02-13 Alan Mackenzie <acm@muc.de>
11009
11010 Fix a loop in c-set-fl-decl-start.
11011
11012 * progmodes/cc-engine.el (c-set-fl-decl-start): Add a check that
11013 c-backward-syntactic-ws actually moves backwards.
11014
11015 2012-02-13 Leo Liu <sdl.web@gmail.com>
11016
11017 * net/rcirc.el (rcirc-markup-attributes): Move point to the
11018 beginning so that all \C-o chars are removed.
11019
11020 2012-02-12 Teodor Zlatanov <tzz@lifelogs.com>
11021
11022 * net/gnutls.el (gnutls-algorithm-priority): Add missing :group tag.
11023
11024 2012-02-12 Alan Mackenzie <acm@muc.de>
11025
11026 Fix infinite loop with long macros.
11027 * progmodes/cc-engine.el (c-state-safe-place): Handle macros properly.
11028
11029 2012-02-12 Chong Yidong <cyd@gnu.org>
11030
11031 * window.el (display-buffer): Doc fix (Bug#10785).
11032
11033 2012-02-12 Glenn Morris <rgm@gnu.org>
11034
11035 * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
11036 (x-disown-selection-internal, x-get-selection-internal):
11037 Sync docs with the xselect.c versions.
11038
11039 * allout-widgets.el: Add missing license notice.
11040
11041 2012-02-11 Glenn Morris <rgm@gnu.org>
11042
11043 * select.el (x-get-selection-internal, x-own-selection-internal)
11044 (x-disown-selection-internal):
11045 * x-dnd.el (x-get-selection-internal): Update declarations.
11046
11047 * vc/log-view.el (vc-diff-internal): Remove unneeded declaration.
11048
11049 * window.el (window-sides-slots):
11050 * tool-bar.el (tool-bar-position):
11051 * term/xterm.el (xterm-extra-capabilities):
11052 * ses.el (ses-self-reference-early-detection):
11053 * progmodes/verilog-mode.el (verilog-auto-declare-nettype)
11054 (verilog-auto-wire-type)
11055 (verilog-auto-delete-trailing-whitespace)
11056 (verilog-auto-reset-blocking-in-non, verilog-auto-inst-sort)
11057 (verilog-auto-tieoff-declaration):
11058 * progmodes/sql.el (sql-login-hook, sql-ansi-statement-starters)
11059 (sql-oracle-statement-starters, sql-oracle-scan-on):
11060 * progmodes/prolog.el (prolog-align-comments-flag)
11061 (prolog-indent-mline-comments-flag, prolog-object-end-to-0-flag)
11062 (prolog-left-indent-regexp, prolog-paren-indent-p)
11063 (prolog-paren-indent, prolog-parse-mode, prolog-keywords)
11064 (prolog-types, prolog-mode-specificators)
11065 (prolog-determinism-specificators, prolog-directives)
11066 (prolog-electric-newline-flag, prolog-hungry-delete-key-flag)
11067 (prolog-electric-dot-flag)
11068 (prolog-electric-dot-full-predicate-template)
11069 (prolog-electric-underscore-flag, prolog-electric-tab-flag)
11070 (prolog-electric-if-then-else-flag, prolog-electric-colon-flag)
11071 (prolog-electric-dash-flag, prolog-old-sicstus-keys-flag)
11072 (prolog-program-switches, prolog-prompt-regexp)
11073 (prolog-debug-on-string, prolog-debug-off-string)
11074 (prolog-trace-on-string, prolog-trace-off-string)
11075 (prolog-zip-on-string, prolog-zip-off-string)
11076 (prolog-use-standard-consult-compile-method-flag)
11077 (prolog-use-prolog-tokenizer-flag, prolog-imenu-flag)
11078 (prolog-imenu-max-lines, prolog-info-predicate-index)
11079 (prolog-underscore-wordchar-flag, prolog-use-sicstus-sd)
11080 (prolog-char-quote-workaround):
11081 * progmodes/cc-vars.el (c-defun-tactic):
11082 * net/tramp.el (tramp-encoding-command-interactive)
11083 (tramp-local-end-of-line):
11084 * net/soap-client.el (soap-client):
11085 * net/netrc.el (netrc-file):
11086 * net/gnutls.el (gnutls):
11087 * minibuffer.el (completion-category-overrides)
11088 (completion-cycle-threshold)
11089 (completion-pcm-complete-word-inserts-delimiters):
11090 * man.el (Man-name-local-regexp):
11091 * mail/feedmail.el (feedmail-display-full-frame):
11092 * international/characters.el (glyphless-char-display-control):
11093 * eshell/em-ls.el (eshell-ls-date-format):
11094 * emacs-lisp/cl-indent.el (lisp-lambda-list-keyword-alignment)
11095 (lisp-lambda-list-keyword-parameter-indentation)
11096 (lisp-lambda-list-keyword-parameter-alignment):
11097 * doc-view.el (doc-view-image-width, doc-view-unoconv-program):
11098 * dired-x.el (dired-omit-verbose):
11099 * cus-theme.el (custom-theme-allow-multiple-selections):
11100 * calc/calc.el (calc-highlight-selections-with-faces)
11101 (calc-lu-field-reference, calc-lu-power-reference)
11102 (calc-note-threshold):
11103 * battery.el (battery-mode-line-limit):
11104 * arc-mode.el (archive-7z-extract, archive-7z-expunge)
11105 (archive-7z-update):
11106 * allout.el (allout-prefixed-keybindings)
11107 (allout-unprefixed-keybindings)
11108 (allout-inhibit-auto-fill-on-headline)
11109 (allout-flattened-numbering-abbreviation):
11110 * allout-widgets.el (allout-widgets-auto-activation)
11111 (allout-widgets-icons-dark-subdir)
11112 (allout-widgets-icons-light-subdir, allout-widgets-icon-types)
11113 (allout-widgets-theme-dark-background)
11114 (allout-widgets-theme-light-background)
11115 (allout-widgets-item-image-properties-emacs)
11116 (allout-widgets-item-image-properties-xemacs)
11117 (allout-widgets-run-unit-tests-on-load)
11118 (allout-widgets-time-decoration-activity)
11119 (allout-widgets-hook-error-post-time)
11120 (allout-widgets-track-decoration):
11121 Add missing :version tags to new defcustoms and defgroups.
11122
11123 * progmodes/sql.el (sql-ansi-statement-starters)
11124 (sql-oracle-statement-starters): Add custom type.
11125
11126 * progmodes/prolog.el: Remove leading '*' from defcustom docs.
11127 (prolog-system-version): Give it a type.
11128
11129 2012-02-11 Eli Zaretskii <eliz@gnu.org>
11130
11131 * term/pc-win.el (x-select-text, x-selection-owner-p)
11132 (x-own-selection-internal, x-disown-selection-internal)
11133 (x-get-selection-internal): Sync doc strings and argument lists
11134 with xselect.c, common-win.el and x-win.el. (Bug#10783)
11135
11136 2012-02-11 Leo Liu <sdl.web@gmail.com>
11137
11138 * progmodes/python.el (python-end-of-statement): Fix infinite
11139 loop. (Bug#10788)
11140
11141 2012-02-10 Glenn Morris <rgm@gnu.org>
11142
11143 * international/mule-cmds.el (unify-8859-on-encoding-mode)
11144 (unify-8859-on-decoding-mode): Properly mark as obsolete.
11145
11146 2012-02-10 Lars Ingebrigtsen <larsi@gnus.org>
11147
11148 * mail/emacsbug.el (report-emacs-bug-hook): Query the user first
11149 about SMTP before checking the From header.
11150
11151 * mail/sendmail.el (sendmail-query-user-about-smtp): Refactor out
11152 into own function for reuse by emacsbug.el.
11153
11154 2012-02-10 Leo Liu <sdl.web@gmail.com>
11155
11156 * subr.el (condition-case-unless-debug): Rename from
11157 condition-case-no-debug. All callers changed.
11158 (with-demoted-errors): Fix caller.
11159
11160 * vc/diff-mode.el (diff-auto-refine-mode, diff-hunk):
11161 * nxml/rng-valid.el (rng-do-some-validation):
11162 * emacs-lisp/package.el (package-refresh-contents)
11163 (package-menu-execute):
11164 * desktop.el (desktop-create-buffer):
11165 * font-lock.el (lisp-font-lock-keywords-2): Caller changed.
11166
11167 2012-02-10 Glenn Morris <rgm@gnu.org>
11168
11169 * textmodes/bibtex.el:
11170 Add missing :version tags for new/changed defcustoms.
11171
11172 * files.el (remote-file-name-inhibit-cache): Doc fixes.
11173
11174 2012-02-09 Lars Ingebrigtsen <larsi@rusty>
11175
11176 * mail/smtpmail.el (smtpmail-user-mail-address): New function.
11177 (smtpmail-via-smtp): Use it, or fall back on the From address.
11178 (smtpmail-send-it): Ditto.
11179
11180 2012-02-09 Stefan Monnier <monnier@iro.umontreal.ca>
11181
11182 * emacs-lisp/bytecomp.el (byte-compile-file-form-defvar):
11183 Don't fallback on byte-compile-defvar. Optimize (defvar foo) away.
11184 (byte-compile-tmp-var): New const.
11185 (byte-compile-defvar): Use it to minimize .elc size.
11186 Just use `defvar' rather than simulate it (bug#10761).
11187
11188 2012-02-09 Glenn Morris <rgm@gnu.org>
11189
11190 * files.el (rename-uniquely): Doc fix. (Bug#3806)
11191
11192 * progmodes/cc-guess.el (c-guess-offset-threshold, c-guess-region-max):
11193 Add :version tags.
11194
11195 * progmodes/compile.el (compilation-error-screen-columns)
11196 (compilation-first-column, compilation-filter-start): Doc fixes.
11197
11198 * vc/log-view.el (log-view-toggle-entry-display):
11199 * vc/vc.el (vc-merge, vc-pull): Doc fixes.
11200
11201 * mail/emacsbug.el (report-emacs-bug-can-use-osx-open)
11202 (report-emacs-bug-can-use-xdg-email):
11203 (report-emacs-bug-insert-to-mailer): Doc fixes.
11204 (report-emacs-bug): Message fix.
11205
11206 * net/browse-url.el (browse-url-can-use-xdg-open)
11207 (browse-url-xdg-open): Doc fixes.
11208
11209 * electric.el (electric-indent-mode, electric-pair-mode)
11210 (electric-layout-rules, electric-layout-mode): Doc fixes.
11211 (electric-pair-pairs, electric-pair-skip-self): Add :version tags.
11212
11213 2012-02-08 Martin Rudalics <rudalics@gmx.at>
11214
11215 * server.el (server-unselect-display): Don't inadvertently kill
11216 the current buffer. (Bug#10729)
11217
11218 2012-02-08 Glenn Morris <rgm@gnu.org>
11219
11220 * progmodes/sql.el (sql-port, sql-connection-alist, sql-list-all)
11221 (sql-list-table): Doc fixes.
11222
11223 * image-mode.el (image-transform-minor-mode-map, image-transform-mode):
11224 Comment out (does nothing).
11225
11226 * completion.el (dynamic-completion-mode):
11227 * dirtrack.el (dirtrack-debug-mode):
11228 * electric.el (electric-layout-mode):
11229 * epa-mail.el (epa-mail-mode, epa-global-mail-mode):
11230 * face-remap.el (text-scale-mode, buffer-face-mode):
11231 * iimage.el (iimage-mode):
11232 * image-mode.el (image-transform-mode):
11233 * minibuffer.el (completion-in-region-mode):
11234 * scroll-lock.el (scroll-lock-mode):
11235 * simple.el (next-error-follow-minor-mode):
11236 * tar-mode.el (tar-subfile-mode):
11237 * tooltip.el (tooltip-mode):
11238 * vcursor.el (vcursor-use-vcursor-map):
11239 * wid-browse.el (widget-minor-mode):
11240 * emulation/tpu-edt.el (tpu-edt-mode):
11241 * emulation/tpu-extras.el (tpu-cursor-free-mode):
11242 * international/iso-ascii.el (iso-ascii-mode):
11243 * language/thai-util.el (thai-word-mode):
11244 * mail/supercite.el (sc-minor-mode):
11245 * net/goto-addr.el (goto-address-mode):
11246 * net/rcirc.el (rcirc-multiline-minor-mode, rcirc-track-minor-mode):
11247 * progmodes/cwarn.el (cwarn-mode):
11248 * progmodes/flymake.el (flymake-mode):
11249 * progmodes/glasses.el (glasses-mode):
11250 * progmodes/hideshow.el (hs-minor-mode):
11251 * progmodes/pascal.el (pascal-outline-mode):
11252 * textmodes/enriched.el (enriched-mode):
11253 * vc/smerge-mode.el (smerge-mode):
11254 Doc fixes (minor mode argument).
11255
11256 2012-02-07 Eli Zaretskii <eliz@gnu.org>
11257
11258 * ls-lisp.el (ls-lisp-sanitize): New function.
11259 (ls-lisp-insert-directory): Use it to fix or remove any elements
11260 in file-alist with missing attributes. (Bug#4673)
11261
11262 2012-02-07 Alan Mackenzie <acm@muc.de>
11263
11264 Fix spurious recognition of c-in-knr-argdecl.
11265
11266 * progmodes/cc-engine.el (c-in-knr-argdecl): Check for '=' in a
11267 putative K&R region.
11268
11269 2012-02-07 Alan Mackenzie <acm@muc.de>
11270
11271 * progmodes/cc-engine.el (c-forward-objc-directive):
11272 Prevent looping in "#pragma mark @implementation".
11273
11274 2012-02-07 Michael Albinus <michael.albinus@gmx.de>
11275
11276 * notifications.el (notifications-on-closed-signal): Make `reason'
11277 optional. (Bug#10744)
11278
11279 2012-02-07 Glenn Morris <rgm@gnu.org>
11280
11281 * emacs-lisp/easy-mmode.el (define-minor-mode):
11282 Doc fixes for the macro and the mode it defines.
11283
11284 * image.el (imagemagick-types-inhibit): Doc fix.
11285
11286 * cus-start.el (imagemagick-render-type): Add it.
11287
11288 2012-02-06 Lars Ingebrigtsen <larsi@gnus.org>
11289
11290 * progmodes/cc-mode.el (c-standard-font-lock-fontify-region-function):
11291 Set the default at load time, too, so that `font-lock-fontify-buffer'
11292 can be called without setting up the entire mode first. This fixes
11293 a bug in `mm-inline-text' with C MIME parts.
11294
11295 2012-02-06 Chong Yidong <cyd@gnu.org>
11296
11297 * simple.el (list-processes--refresh): Delete exited processes
11298 (Bug#8094).
11299
11300 * comint.el (comint-next-prompt): next-single-char-property-change
11301 and prev-single-char-property-change never return nil (Bug#8657).
11302
11303 * custom.el (defcustom): Doc fix (Bug#9711).
11304
11305 2012-02-05 Chong Yidong <cyd@gnu.org>
11306
11307 * cus-edit.el (custom-variable-reset-backup): Quote the value
11308 before storing it in the customized-value property (Bug#6712).
11309 (custom-display): Add a customization type tag.
11310 (custom-buffer-create-internal): Improve tooltip message.
11311
11312 * wid-edit.el (widget-field-value-get): New optional arg to
11313 suppress trailing whitespace truncation.
11314 (character): Use it (Bug#2689).
11315
11316 2012-02-05 Andreas Schwab <schwab@linux-m68k.org>
11317
11318 * progmodes/gud.el (gud-pv): Use pv instead of pv1.
11319 * progmodes/gdb-mi.el (gud-pp): Use pp instead of pp1.
11320
11321 2012-02-05 Chong Yidong <cyd@gnu.org>
11322
11323 * cus-edit.el (custom-variable-value-create): For mismatched
11324 types, show the current value (Bug#7600).
11325
11326 * custom.el (defcustom): Doc fix.
11327
11328 2012-02-05 Glenn Morris <rgm@gnu.org>
11329
11330 * font-lock.el (lisp-font-lock-keywords-2): Add with-wrapper-hook.
11331
11332 2012-02-05 Juanma Barranquero <lekktu@gmail.com>
11333
11334 * emacs-lisp/pp.el (pp-to-string): Use `with-temp-buffer'.
11335 (pp-buffer): Use `ignore-errors', `looking-at-p'.
11336 (pp-last-sexp): Use `looking-at-p'.
11337
11338 2012-02-04 Glenn Morris <rgm@gnu.org>
11339
11340 * files.el (revert-buffer):
11341 Doc fix (mention revert-buffer-in-progress-p).
11342
11343 * emacs-lisp/ert-x.el (ert-simulate-command):
11344 Check deferred-action-list (which is obsolete) is bound.
11345
11346 * subr.el (with-wrapper-hook): Doc fixes.
11347
11348 * simple.el (filter-buffer-substring-functions)
11349 (buffer-substring-filters, filter-buffer-substring): Doc fixes.
11350
11351 2012-02-04 Lars Ljung <lars@matholka.se> (tiny change)
11352
11353 * eshell/esh-ext.el (eshell-windows-shell-file): Match "cmdproxy"
11354 anywhere in shell-file-name, not just at the beginning. (Bug#10523)
11355
11356 2012-02-04 Leo Liu <sdl.web@gmail.com>
11357
11358 * emacs-lisp/smie.el: Fix dead link (Bug#10711).
11359
11360 2012-02-04 Glenn Morris <rgm@gnu.org>
11361
11362 * image.el (image-extension-data): Add obsolete alias.
11363
11364 * isearch.el (isearch-update): Doc fix.
11365
11366 * facemenu.el (list-colors-display): Doc fix (minor rephrasing).
11367
11368 * ido.el (ido-find-file): Doc fix (ido-toggle-vc not on any key).
11369
11370 2012-02-03 Glenn Morris <rgm@gnu.org>
11371
11372 * image.el (image-animated-p): Doc fix. Use image-animated-types.
11373 (image-animate-timeout): Doc fix.
11374
11375 * image-mode.el (image-animate-loop, image-toggle-animation): Doc fixes.
11376
11377 2012-02-02 Glenn Morris <rgm@gnu.org>
11378
11379 * server.el (server-auth-dir): Doc fix.
11380 (server-eval-at): Doc fix. Give an explicit error if !server-use-tcp.
11381
11382 * subr.el (run-mode-hooks): Doc fix.
11383
11384 2012-02-02 Juri Linkov <juri@jurta.org>
11385
11386 * image-mode.el (image-toggle-display-image): Remove tautological
11387 `major-mode' from the `derived-mode-p' test.
11388
11389 2012-02-02 Kenichi Handa <handa@m17n.org>
11390
11391 * composite.el (compose-region): Cancel previous change.
11392
11393 2012-02-02 Kenichi Handa <handa@m17n.org>
11394
11395 * composite.el (compose-region, compose-string): Signal error for
11396 a null string component (Bug#6988).
11397
11398 2012-02-01 Chong Yidong <cyd@gnu.org>
11399
11400 * view.el (view-buffer-other-window, view-buffer-other-frame):
11401 Handle special modes like view-buffer (Bug#10650).
11402 (view-buffer): Simplify.
11403
11404 * frame.el (set-frame-font): Tweak meaning of third argument.
11405
11406 * dynamic-setting.el (font-setting-change-default-font):
11407 Use set-frame-font (Bug#9982).
11408
11409 2012-02-01 Glenn Morris <rgm@gnu.org>
11410
11411 * progmodes/compile.el (compilation-internal-error-properties):
11412 Respect compilation-first-column in the "*compilation*" buffer.
11413
11414 * emacs-lisp/easy-mmode.el (define-minor-mode):
11415 Relax :variable's test for a named function.
11416
11417 2012-01-31 Alan Mackenzie <acm@muc.de>
11418
11419 * progmodes/cc-engine.el (c-guess-basic-syntax): CASE 5B.1: Fix an
11420 off by one error.
11421
11422 2012-01-31 Chong Yidong <cyd@gnu.org>
11423
11424 * frame.el (set-frame-font): New arg ALL-FRAMES.
11425
11426 * menu-bar.el (menu-set-font): Use set-frame-font.
11427
11428 * faces.el (face-spec-reset-face): Don't apply unspecified
11429 attribute values to the default face.
11430
11431 2012-01-31 Juanma Barranquero <lekktu@gmail.com>
11432
11433 * progmodes/cwarn.el (cwarn): Remove dead link.
11434 (cwarn-configuration, cwarn-verbose, cwarn-mode-text, cwarn-load-hook):
11435 Remove * from defcustom docstrings.
11436 (turn-on-cwarn-mode): Make obsolete.
11437 (c-at-toplevel-p): Remove compatibility code for Emacs 20.3 and older.
11438 (turn-on-cwarn-mode-if-enabled): Call `cwarn-mode'.
11439
11440 2012-01-31 Glenn Morris <rgm@gnu.org>
11441
11442 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix.
11443 Fix :variable handling of mode a symbol not equal to modefun.
11444 Allow named functions to be used as the cdr of :variable.
11445
11446 2012-01-30 Glenn Morris <rgm@gnu.org>
11447
11448 * emacs-lisp/authors.el (authors-fixed-entries):
11449 Remove reference to deleted file rnewspost.el.
11450
11451 2012-01-29 Juanma Barranquero <lekktu@gmail.com>
11452
11453 * window.el (window-with-parameter): Remove unused variable `windows'.
11454 (window--side-check): Remove unused variable `code'.
11455 (window--resize-siblings): Remove unused variable `first'.
11456 (adjust-window-trailing-edge): Remove unused variable `failed'.
11457 (window-deletable-p, window--delete): Remove unused variable `buffer'.
11458 Use `let', not `let*'.
11459 (balance-windows-2): Remove unused variable `found'.
11460 (window--state-put-2): Remove unused variable `splits'.
11461 (window-state-put): Remove unused variable `selected'.
11462 (same-window-p): Use `string-match-p'.
11463 (display-buffer-assq-regexp): Remove unused variable `value'.
11464 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
11465 Mark argument ALIST as ignored.
11466 (pop-to-buffer): Remove unused variable `old-window'.
11467
11468 2012-01-29 Eli Zaretskii <eliz@gnu.org>
11469
11470 * jka-cmpr-hook.el (jka-compr-compression-info-list): Support .lz
11471 and .lzma compressed files.
11472
11473 2012-01-29 Chong Yidong <cyd@gnu.org>
11474
11475 * frame.el (window-system-default-frame-alist): Doc fix.
11476
11477 * dynamic-setting.el (font-setting-change-default-font): Don't
11478 change the default face if SET-FONT argument is non-nil (Bug#9982).
11479
11480 2012-01-29 Samuel Bronson <naesten@gmail.com> (tiny change)
11481
11482 * custom.el (defcustom): Add doc link to Lisp manual (Bug#10635).
11483
11484 2012-01-29 Syver Enstad <syver.enstad@cisco.com> (tiny change)
11485
11486 * progmodes/gud.el (pdb): Give pdb full paths, to allow setting
11487 breakpoints in files outside current directory (Bug#6098).
11488
11489 2012-01-29 Chong Yidong <cyd@gnu.org>
11490
11491 * progmodes/python.el: Require ansi-color at top-level.
11492
11493 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-abbrev-table):
11494 Define and use in Emacs Lisp mode (Bug#9360).
11495 (lisp-mode-abbrev-table): Add doc.
11496 (lisp-mode-variables): Don't set local-abbrev-table.
11497 (lisp-interaction-mode): Use emacs-lisp-mode-abbrev-table.
11498
11499 2012-01-28 Roland Winkler <winkler@gnu.org>
11500
11501 * textmodes/bibtex.el (bibtex-vec-incr): Fix docstring.
11502
11503 2012-01-28 Roland Winkler <winkler@gnu.org>
11504
11505 * textmodes/bibtex.el (bibtex-entry-alist): New function.
11506 (bibtex-set-dialect): Use it. Either set global values of
11507 dialect-dependent variables or bind these variables buffer-locally
11508 (Bug#10254).
11509 (bibtex-mode): Call bibtex-set-dialect via
11510 hack-local-variables-hook.
11511 (bibtex-dialect): Update docstring.
11512 Add safe-local-variable predicate.
11513 (bibtex-entry-alist, bibtex-field-alist): Initialize via
11514 bibtex-set-dialect.
11515 (bibtex-mode-map): Define menu for each dialect.
11516 (bibtex-entry): Fix docstring.
11517
11518 2012-01-28 Chong Yidong <cyd@gnu.org>
11519
11520 * eshell/esh-arg.el (eshell-quote-argument): New function.
11521
11522 * eshell/esh-ext.el (eshell-invoke-batch-file):
11523 * eshell/em-unix.el (eshell/cat, eshell/du): Use it to quote the
11524 first arg to eshell-parse-command (Bug#10523).
11525
11526 2012-01-28 Drew Adams <drew.adams@oracle.com>
11527
11528 * net/ange-ftp.el (ange-ftp-canonize-filename): Check, that
11529 `default-directory' is non-nil.
11530
11531 2012-01-28 Eli Zaretskii <eliz@gnu.org>
11532
11533 * mail/emacsbug.el (report-emacs-bug): Fill the potentially long
11534 line that displays system-configuration-options. (Bug#9924)
11535
11536 2012-01-28 Drew Adams <drew.adams@oracle.com>
11537
11538 * descr-text.el (describe-char): Show information about POS, in
11539 addition to information about the character at POS. Improve and
11540 update the doc string. Change "code point" to "code point in
11541 charset", to avoid confusion with the character's Unicode code
11542 point shown above that. (Bug#10129)
11543
11544 2012-01-28 Eli Zaretskii <eliz@gnu.org>
11545
11546 * descr-text.el (describe-char): Show the raw character, not only
11547 its display form at POS. Suggested by Kenichi Handa <handa@m17n.org>.
11548 See http://lists.gnu.org/archive/html/emacs-devel/2012-01/msg00760.html
11549 for the reasons.
11550
11551 2012-01-28 Phil Hagelberg <phil@hagelb.org>
11552
11553 * emacs-lisp/package.el (package-install):
11554 Run package-refresh-contents if there is no archive yet (Bug#9798).
11555
11556 2012-01-28 Chong Yidong <cyd@gnu.org>
11557
11558 * emacs-lisp/package.el (package-maybe-load-descriptor):
11559 New function, split from package-maybe-load-descriptor.
11560 (package-maybe-load-descriptor): Use it.
11561 (package-download-transaction): Fully load required packages
11562 inside the loop, so that `require' calls work (Bug#10593).
11563 (package-install): No need to call package-initialize now.
11564
11565 2012-01-28 Chong Yidong <cyd@gnu.org>
11566
11567 * simple.el (deactivate-mark): Doc fix (Bug#8614).
11568
11569 * tooltip.el (tooltip-mode): Doc fix.
11570 (tooltip-use-echo-area): Mark as obsolete (Bug#6595).
11571
11572 * frame.el (set-cursor-color): Doc fix (Bug#352).
11573
11574 * mail/rmail.el (rmail-start-mail): Add send-action again (Bug#10625).
11575 (rmail-mail-return): Switch to NEWBUF only if it is non-nil.
11576
11577 * cus-edit.el (custom-buffer-create-internal): Fix search button
11578 action (Bug#10542).
11579 (customize-unsaved, customize-saved): Doc fix (Bug#10541).
11580
11581 2012-01-27 Eduard Wiebe <usenet@pusto.de>
11582
11583 * dired.el (dired-mark-files-regexp):
11584 Include any subdirectory components. (Bug#10445)
11585
11586 2012-01-27 Mike Lamb <mrlamb@gmail.com> (tiny change)
11587
11588 * pcmpl-unix.el (pcmpl-ssh-known-hosts):
11589 Handle [host]:port syntax. (Bug#10533)
11590
11591 2012-01-27 Alex Harsanyi <harsanyi@mac.com>
11592
11593 * xml.el (xml-parse-tag): Fix parsing of comments (Bug#10405).
11594
11595 2012-01-26 Glenn Morris <rgm@gnu.org>
11596
11597 * dired-x.el (dired-bind-jump): Use ctl-x-map and ctl-x-4-map.
11598 * term.el (term-raw-escape-map): Use Control-X-prefix.
11599 * vc/vc-hooks.el (vc-prefix-map): Use ctl-x-map. (Bug#10566)
11600
11601 2012-01-25 Martin Rudalics <rudalics@gmx.at>
11602
11603 * window.el (window-state-get, window--state-get-1): Don't deal
11604 with fixed-sizeness of windows. Simplify code.
11605
11606 2012-01-25 Jérémy Compostella <jeremy.compostella@gmail.com>
11607
11608 * window.el (window--state-get-1, window--state-put-2):
11609 Don't save and restore the mark.
11610
11611 2012-01-25 Chong Yidong <cyd@gnu.org>
11612
11613 * custom.el (custom-variable-p): Doc fix.
11614
11615 2012-01-25 Glenn Morris <rgm@gnu.org>
11616
11617 * dired.el (dired-goto-file): Handle some of the more common
11618 characters that `ls -b' escapes. (Bug#10596)
11619
11620 * progmodes/compile.el (compilation-next-error-function):
11621 Respect compilation-first-column in the "*compilation*" buffer.
11622 * progmodes/grep.el (grep-first-column): New variable. (Bug#10594)
11623
11624 * vc/vc.el (vc-modify-change-comment): Scoping fix. (Bug#10513)
11625
11626 2012-01-24 Glenn Morris <rgm@gnu.org>
11627
11628 * pcmpl-gnu.el (pcomplete/tar): Handle " - ". (Bug#10457)
11629
11630 2012-01-24 Julien Danjou <julien@danjou.info>
11631
11632 * color.el (color-rgb-to-hsl): Fix value computing.
11633 (color-hue-to-rgb): New function.
11634 (color-hsl-to-rgb): New function.
11635 (color-clamp, color-saturate-hsl, color-saturate-name)
11636 (color-desaturate-hsl, color-desaturate-name, color-lighten-hsl)
11637 (color-lighten-name, color-darken-hsl, color-darken-name): New function.
11638
11639 2012-01-24 Glenn Morris <rgm@gnu.org>
11640
11641 * vc/vc-rcs.el (vc-rcs-create-tag):
11642 * vc/vc-sccs.el (vc-sccs-create-tag):
11643 Fix argument spec to be what vc-create-tag expects. (Bug#10515)
11644
11645 2012-01-23 Mike Lamb <mrlamb@gmail.com> (tiny change)
11646
11647 * eshell/esh-util.el (eshell-read-hosts-file):
11648 Skip comment lines. (Bug#10549)
11649
11650 * eshell/em-unix.el (pcomplete/ssh): Remove. (Bug#10548)
11651
11652 2012-01-23 Juanma Barranquero <lekktu@gmail.com>
11653
11654 * subr.el (display-delayed-warnings): Doc fix.
11655 (collapse-delayed-warnings): New function to collapse identical
11656 adjacent warnings.
11657 (delayed-warnings-hook): Add it.
11658
11659 2012-01-22 Michael Albinus <michael.albinus@gmx.de>
11660
11661 * net/tramp.el (tramp-action-login): Set connection property "login-as".
11662
11663 * net/tramp-sh.el (tramp-methods): Add user spec to "pscp" and "psftp".
11664 (tramp-default-user-alist): Don't add "pscp".
11665 (tramp-do-copy-or-rename-file-out-of-band): Use connection
11666 property "login-as", if set. (Bug#10530)
11667
11668 2012-01-21 Michael Albinus <michael.albinus@gmx.de>
11669
11670 * net/tramp-sh.el (tramp-default-user-alist): Don't add "plink",
11671 "plink1" and "psftp". (Bug#10530)
11672
11673 2012-01-21 Kenichi Handa <handa@m17n.org>
11674
11675 * international/mule-cmds.el (prefer-coding-system): Show a
11676 warning message if the default value of file-name-coding-system
11677 was not changed.
11678
11679 2012-01-21 Jérémy Compostella <jeremy.compostella@gmail.com>
11680
11681 * windmove.el (windmove-reference-loc):
11682 Fix windmove-reference-loc miscalculation.
11683
11684 2012-01-21 Jay Belanger <jay.p.belanger@gmail.com>
11685
11686 * calc/calc-units.el (math-put-default-units): Don't use "1" as a
11687 default unit.
11688
11689 2012-01-21 Glenn Morris <rgm@gnu.org>
11690
11691 * international/mule.el (auto-coding-alist): Add .tbz.
11692
11693 * files.el (local-enable-local-variables): Doc fix.
11694 (inhibit-local-variables-regexps): Rename from
11695 inhibit-first-line-modes-regexps. Keep old name as obsolete alias.
11696 Doc fix. Add some extensions from auto-coding-alist.
11697 (inhibit-local-variables-suffixes):
11698 Rename from inhibit-first-line-modes-suffixes. Doc fix.
11699 (inhibit-local-variables-p):
11700 New function, extracted from set-auto-mode-1.
11701 (set-auto-mode): Doc fix. Respect inhibit-local-variables-regexps.
11702 (set-auto-mode-1): Doc fix. Use inhibit-local-variables-p.
11703 (hack-local-variables): Doc fix. Make the mode-only case
11704 respect enable-local-variables and friends.
11705 Respect inhibit-local-variables-regexps for file-locals, but
11706 not for directory-locals.
11707 (set-visited-file-name):
11708 Take account of inhibit-local-variables-regexps.
11709 Whether it applies may change as the file name is changed.
11710 * jka-cmpr-hook.el (jka-compr-install):
11711 * jka-compr.el (jka-compr-uninstall):
11712 Update for inhibit-first-line-modes-suffixes name change.
11713
11714 2012-01-20 Martin Rudalics <rudalics@gmx.at>
11715
11716 * help-macro.el (make-help-screen): Temporarily restore original
11717 binding for minor-mode-map-alist (Bug#10454).
11718
11719 2012-01-19 Julien Danjou <julien@danjou.info>
11720
11721 * color.el (color-name-to-rgb): Use the white color to find the max
11722 color component value and return correctly computed values.
11723 (color-name-to-rgb): Add missing float conversion for max value.
11724
11725 2012-01-19 Martin Rudalics <rudalics@gmx.at>
11726
11727 * window.el (window--state-get-1, window-state-get): Do not use
11728 special state value for window-persistent-parameters.
11729 Rename argument IGNORE to WRITABLE. Rewrite doc-string.
11730 (window--state-put-2): Reset all window parameters to nil before
11731 assigning values of persistent parameters.
11732
11733 2012-01-18 Alan Mackenzie <acm@muc.de>
11734
11735 Eliminate sluggishness and hangs in fontification of "semicolon
11736 deserts".
11737
11738 * progmodes/cc-engine.el (c-state-nonlit-pos-interval):
11739 Change value 10000 -> 3000.
11740 (c-state-safe-place): Reformulate so it doesn't stack up an
11741 infinite number of wrong entries in c-state-nonlit-pos-cache.
11742 (c-determine-limit-get-base, c-determine-limit): New functions to
11743 determine backward search limits disregarding literals.
11744 (c-find-decl-spots): Amend commenting.
11745 (c-cheap-inside-bracelist-p): New function which detects "={".
11746
11747 * progmodes/cc-fonts.el
11748 (c-make-font-lock-BO-decl-search-function): Give a limit to a
11749 backward search.
11750 (c-font-lock-declarations): Fix an occurrence of point being
11751 undefined. Check additionally for point being in a bracelist or
11752 near a macro invocation without a semicolon so as to avoid a
11753 fruitless time consuming search for a declarator. Give a more
11754 precise search limit for declarators using the new
11755 c-determine-limit.
11756
11757 2012-01-18 Glenn Morris <rgm@gnu.org>
11758
11759 * files.el (auto-mode-alist, inhibit-first-line-modes-regexps)
11760 (set-auto-mode): Doc fixes.
11761
11762 2012-01-17 Glenn Morris <rgm@gnu.org>
11763
11764 * isearch.el (search-nonincremental-instead): Fix doc typo.
11765
11766 * dired.el (dired-insert-directory): Handle newlines in directory name.
11767 (dired-build-subdir-alist): Unescape newlines in directory name.
11768
11769 2012-01-17 Michael Albinus <michael.albinus@gmx.de>
11770
11771 * net/tramp.el (tramp-local-end-of-line): New defcustom.
11772 (tramp-action-login, tramp-action-yesno, tramp-action-yn)
11773 (tramp-action-terminal): Use it. (Bug#10530)
11774
11775 2012-01-16 Stefan Monnier <monnier@iro.umontreal.ca>
11776
11777 * minibuffer.el (completion--replace): Strip properties (bug#10062).
11778
11779 2012-01-16 Martin Rudalics <rudalics@gmx.at>
11780
11781 * window.el (window-state-ignored-parameters): Remove variable.
11782 (window--state-get-1): Rename argument MARKERS to IGNORE.
11783 Handle persistent window parameters. Make copy of clone-of
11784 parameter only if requested. (Bug#10348)
11785 (window--state-put-2): Install a window parameter only if it has
11786 a non-nil value or an existing parameter shall be overwritten.
11787
11788 2012-01-15 Michael Albinus <michael.albinus@gmx.de>
11789
11790 * net/tramp-sh.el (tramp-remote-path): Set tramp-autoload cookie.
11791
11792 2012-01-14 Eli Zaretskii <eliz@gnu.org>
11793
11794 * info.el (Info-toc-build): If the Info file has no "Up" pointer,
11795 don't pass the (nil) value of `upnode' to string-match.
11796
11797 2012-01-14 Chong Yidong <cyd@gnu.org>
11798
11799 * startup.el (command-line): Fix X resource class for cursorColor.
11800 Fix values recognized by the cursorBlink resource.
11801
11802 2012-01-14 Paul Eggert <eggert@cs.ucla.edu>
11803
11804 * epg.el (epg--make-temp-file): Avoid permission race condition
11805 when running on old Emacs versions (bug#10403).
11806
11807 2012-01-14 Glenn Morris <rgm@gnu.org>
11808
11809 * dired.el (dired-get-filename): Fix 'verbatim case of previous change.
11810
11811 2012-01-13 Alan Mackenzie <acm@muc.de>
11812
11813 Fix filling for when filladapt mode is enabled.
11814
11815 * progmodes/cc-cmds.el (c-fill-paragraph): In the invocation of
11816 c-mask-paragraph, pass in `fill-paragraph' rather than
11817 `fill-region-as-paragraph'. (This is a reversion of a previous
11818 change.)
11819 * progmodes/cc-mode.el (c-basic-common-init):
11820 Make fill-paragraph-handle-comment buffer local and set it to nil.
11821
11822 2012-01-13 Glenn Morris <rgm@gnu.org>
11823
11824 * dired.el (dired-switches-escape-p): New function.
11825 (dired-insert-directory): Use dired-switches-escape-p.
11826 (dired-get-filename): Undo "\ " quoting if needed. (Bug#10469)
11827
11828 * find-dired.el (find-ls-option): Doc fix. (Bug#10262)
11829
11830 2012-01-12 Glenn Morris <rgm@gnu.org>
11831
11832 * mail/sendmail.el (mail-mode): Update paragraph-separate for
11833 changes in adaptive-fill-regexp. (Bug#10276)
11834
11835 2012-01-11 Alan Mackenzie <acm@muc.de>
11836
11837 Fix Emacs bug #10463 - put `widen's around the critical spots.
11838
11839 * progmodes/cc-engine.el (c-in-literal, c-literal-limits): Put a
11840 widen around each invocation of c-state-pp-to-literal. Remove an
11841 unused let variable.
11842
11843 2012-01-11 Glenn Morris <rgm@gnu.org>
11844
11845 * dired-aux.el (dired-do-shell-command): Fix */? logic. (Bug#6561)
11846 Doc fix.
11847
11848 2012-01-10 Chong Yidong <cyd@gnu.org>
11849
11850 * net/network-stream.el (network-stream-open-starttls):
11851 Avoid emitting a confusing error message when the server gives a bad
11852 response to the capability command.
11853
11854 2012-01-10 Glenn Morris <rgm@gnu.org>
11855
11856 * mail/unrmail.el (unrmail): Tweak previous change.
11857
11858 2012-01-09 Chong Yidong <cyd@gnu.org>
11859
11860 * custom.el (custom-safe-themes): Use SHA-256 for hashing.
11861
11862 2012-01-08 Alan Mackenzie <acm@muc.de>
11863
11864 Optimise font locking in long enum definitions.
11865
11866 * progmodes/cc-fonts.el (c-font-lock-declarations): Add an extra
11867 arm to a cond form to handle enums.
11868 * progmodes/cc-langs.el (c-enums-contain-decls): New lang variable.
11869 * progmodes/cc-mode.el (c-font-lock-fontify-region): Correct a typo.
11870
11871 2012-01-07 Paul Eggert <eggert@cs.ucla.edu>
11872
11873 * files.el (move-file-to-trash): Preserve default file modes on error.
11874 (Bug#10401)
11875
11876 2012-01-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
11877
11878 * faces.el (set-face-attribute): Clarify the meaning of the nil
11879 frame (bug#10294).
11880
11881 * subr.el (with-selected-frame): Mention that the selected frame
11882 is restored (bug#9980).
11883
11884 * ibuffer.el (ibuffer-mode): List the bindings in the corrent map
11885 (bug#9759).
11886
11887 * mail/smtpmail.el (password-cache-add): Remove unused declaration.
11888 (password-read): Don't autoload unused function.
11889
11890 2012-01-07 Juanma Barranquero <lekktu@gmail.com>
11891
11892 * progmodes/which-func.el (which-func-mode): Turn into a
11893 non-interactive function and mark as obsolete (bug#10428).
11894
11895 2012-01-06 Chong Yidong <cyd@gnu.org>
11896
11897 * files.el (hack-dir-local-variables-non-file-buffer): Add doc.
11898 (hack-one-local-variable-eval-safep): Allow 0 arg for minor mode
11899 functions, along with 1 and -1.
11900
11901 2012-01-06 Eli Zaretskii <eliz@gnu.org>
11902
11903 * time.el (display-time-load-average)
11904 (display-time-default-load-average): Doc fixes. See the thread
11905 starting at
11906 http://lists.gnu.org/archive/html/help-gnu-emacs/2012-01/msg00059.html
11907 for the details.
11908
11909 2012-01-06 Glenn Morris <rgm@gnu.org>
11910
11911 * mail/unrmail.el (unrmail): Give an explicit error if the input file
11912 has no messages. (Bug#10377)
11913
11914 * info.el (Info-mode-map): Bind e to end-of-buffer, rather
11915 than Info-edit. (Bug#10385)
11916
11917 * time.el (display-time-load-average, display-time-next-load-average):
11918 Doc fixes.
11919
11920 * emacs-lisp/bytecomp.el (byte-compile-file): Do not propagate a file
11921 local setting of buffer-read-only to the input buffer. (Bug#10419)
11922
11923 * calendar/calendar.el (calendar-mode):
11924 Locally set scroll-margin to 0. (Bug#10379)
11925
11926 2012-01-06 Ulrich Mueller <ulm@gentoo.org>
11927
11928 * play/doctor.el (doctor-death): Escape "," characters. (Bug#10370)
11929
11930 2012-01-05 Glenn Morris <rgm@gnu.org>
11931
11932 * eshell/em-unix.el (diff-no-select): Autoload it.
11933 (eshell/diff): Use diff-no-select. (Bug#10420)
11934
11935 2012-01-05 Chong Yidong <cyd@gnu.org>
11936
11937 * shell.el (shell-dynamic-complete-functions): Revert last change.
11938 (shell-command-completion-function): New function.
11939 (shell-completion-vars): Use it to implement
11940 shell-completion-execonly (Bug#10417).
11941
11942 * custom.el (enable-theme): Don't set custom-safe-themes.
11943
11944 * cus-theme.el (custom-theme-merge-theme):
11945 Ignore custom-enabled-themes and custom-safe-themes.
11946
11947 2012-01-05 Michael R. Mauger <mmaug@yahoo.com>
11948
11949 * progmodes/sql.el (sql-login-hook): Add hook to respond to the
11950 first prompt in `sql-interacive-mode'.
11951 (sql-mode-oracle-font-lock-keywords): Add CONNECT_BY_* builtin
11952 keywords.
11953 (sql-mode-mysql-font-lock-keywords): Add ELSEIF keyword.
11954 (sql-product-interactive): Bug fix: Set `sql-buffer' in
11955 context of original buffer. Invoke `sql-login-hook'.
11956
11957 2012-01-04 Eli Zaretskii <eliz@gnu.org>
11958
11959 * mail/rmail.el (rmail-font-lock-keywords): Accept non-ASCII
11960 letters in cite-prefix.
11961
11962 2012-01-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
11963
11964 * mail/smtpmail.el (smtpmail-stream-type): Mention the `ssl' value.
11965
11966 2012-01-03 Chong Yidong <cyd@gnu.org>
11967
11968 * shell.el (shell-dynamic-complete-functions):
11969 Put pcomplete-completions-at-point, so as to try
11970 comint-filename-completion first (Bug#10417).
11971
11972 2012-01-02 Richard Stallman <rms@gnu.org>
11973
11974 * battery.el (battery-status-function):
11975 Detect when to use battery-yeeloong-sysfs.
11976 (battery-echo-area-format): Add string for Yeeloong.
11977 (battery-linux-proc-apm, battery-linux-proc-acpi): Doc fixes.
11978 (battery-yeeloong-sysfs): New function.
11979
11980 2012-01-02 Chong Yidong <cyd@gnu.org>
11981
11982 * dirtrack.el (dirtrack-list): Eliminate unused third element.
11983 (dirtrack): Merge code for handling relative filenames in prompt
11984 from shell-dir-cookie-watcher.
11985 (dirtrack-debug-message): New arg to avoid excess format calls.
11986
11987 * shell.el (shell-dir-cookie-re): Variable deleted.
11988 (shell-dir-cookie-watcher): Function deleted.
11989 (shell-mode): Don't use shell-dir-cookie-re, since it is redundant
11990 with dirtrack-mode.
11991
11992 2012-01-01 Eli Zaretskii <eliz@gnu.org>
11993
11994 * term/w32-win.el (dynamic-library-alist) <gnutls>:
11995 Load libgnutls-28.dll, from GnuTLS version 3.x, in preference to
11996 libgnutls-26.dll.
11997
11998 2011-12-31 Andreas Schwab <schwab@linux-m68k.org>
11999
12000 * emacs-lisp/bytecomp.el (byte-compile-file): Fix indentation.
12001
12002 2011-12-31 Eli Zaretskii <eliz@gnu.org>
12003
12004 * mail/rmail.el (rmail-show-message-1): Decode any RFC2047 encoded
12005 headers of non-MIME messages, when rmail-enable-mime is non-nil.
12006
12007 2011-12-29 Michael Albinus <michael.albinus@gmx.de>
12008
12009 * net/tramp-sh.el (tramp-find-shell): Set "remote-shell" property
12010 also for alternative shells.
12011 (tramp-open-connection-setup-interactive-shell): Check, whether
12012 the shell is a busybox.
12013 (tramp-send-command): Don't suppress multiple prompts for
12014 busyboxes, it hurts.
12015
12016 2011-12-28 Chong Yidong <cyd@gnu.org>
12017
12018 * progmodes/gdb-mi.el (gdb-get-source-file-list)
12019 (gdb-get-source-file): Move mode line update to
12020 gdb-get-source-file (Bug#10087).
12021
12022 2011-12-25 Chong Yidong <cyd@gnu.org>
12023
12024 * progmodes/gud.el (gud-gdb-fetch-lines-filter): Just use
12025 gud-gdb-marker-filter without taking it as an argument.
12026 (gud-gdb-run-command-fetch-lines): Caller changed.
12027 (gud-gdb-completion-function): New variable.
12028 (gud-gdb-completion-at-point): Use it.
12029 (gud-gdb-completions-1): Split from gud-gdb-completions.
12030
12031 * progmodes/gdb-mi.el (gdb-input): Accept command and handler
12032 function as separate arguments.
12033 (gdb-init-1, gdb-non-stop-handler, gdb-check-target-async)
12034 (gdb-tooltip-print-1, gud-watch, gdb-speedbar-update)
12035 (gdb-var-list-children, gdb-var-set-format, gdb-var-delete-1)
12036 (gdb-var-delete-children, gdb-edit-value, gdb-var-update)
12037 (gdb-stopped, def-gdb-auto-update-trigger)
12038 (gdb-place-breakpoints, gdb-select-thread, gdb-select-frame)
12039 (gdb-get-changed-registers, gdb-get-main-selected-frame):
12040 Callers changed.
12041 (gud-gdbmi-completions): New function.
12042 (gdb): Use it for generating the completion table.
12043
12044 2011-12-24 Alan Mackenzie <acm@muc.de>
12045
12046 Introduce a mechanism to widen the region used in context font
12047 locking. Use this to protect declarations from losing their contexts.
12048
12049 * progmodes/cc-langs.el (c-before-font-lock-functions):
12050 Replace c-set-fl-decl-start with c-change-set-fl-decl-start (Renaming).
12051 (c-before-context-fontification-functions): New defvar, a list of
12052 functions to be run just before context (etc.) font locking.
12053
12054 * progmodes/cc-mode.el (c-extend-font-lock-region-for-macros):
12055 New, functionality extracted from
12056 c-neutralize-syntax-in-and-mark-CPP.
12057 (c-in-after-change-fontification): New variable.
12058 (c-after-change): Set c-in-after-change-fontification.
12059 (c-set-fl-decl-start): Rejig its interface, so it can be called
12060 from both after-change and context fontifying.
12061 (c-change-set-fl-decl-start, c-context-set-fl-decl-start):
12062 New functions.
12063 (c-standard-font-lock-fontify-region-function): New variable.
12064 (c-font-lock-fontify-region): New function.
12065
12066 2011-12-24 Juri Linkov <juri@jurta.org>
12067
12068 * window.el (window--state-get-1): Set `FORCE' arg of `mark' to t.
12069 (Bug#10348)
12070
12071 2011-12-23 Michael Albinus <michael.albinus@gmx.de>
12072
12073 * net/ange-ftp.el (ange-ftp-copy-file-internal): Check for
12074 existence of source file. (Bug#10325)
12075
12076 2011-12-23 Alan Mackenzie <acm@muc.de>
12077
12078 Fix unstable fontification inside templates.
12079
12080 * progmodes/cc-langs.el (c-before-font-lock-functions):
12081 Newly created from the singular version. The (c c++ objc) entry now
12082 additionally has c-set-fl-decl-start. The other languages (apart
12083 from AWK) have that as a single entry.
12084
12085 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
12086 The functionality for "local" declarations has been extracted to
12087 c-set-fl-decl-start.
12088
12089 * progmodes/cc-mode.el (c-common-init, c-after-change):
12090 Changes due to pluralisation of c-before-font-lock-functions.
12091 (c-set-fl-decl-start): New function, extracted from
12092 c-font-lock-enclosing-decls and enhanced.
12093
12094 2011-12-23 Juanma Barranquero <lekktu@gmail.com>
12095
12096 * desktop.el (desktop-internal-v2s): Fix typos in docstring (bug#10353).
12097
12098 2011-12-22 Juri Linkov <juri@jurta.org>
12099
12100 * progmodes/grep.el (rgrep): Fix docstring. (Bug#10185)
12101
12102 2011-12-22 Chong Yidong <cyd@gnu.org>
12103
12104 * vc/vc-hooks.el (vc-keep-workfiles): Doc fix.
12105
12106 2011-12-21 Drew Adams <drew.adams@oracle.com>
12107
12108 * files.el (file-remote-p): Fix docstring. (Bug#10319)
12109
12110 2011-12-21 Jérémy Compostella <jeremy.compostella@gmail.com>
12111
12112 * battery.el (battery-linux-sysfs): Add missing parameters from acpi.
12113
12114 2011-12-21 Teodor Zlatanov <tzz@lifelogs.com>
12115
12116 * progmodes/cfengine.el: Add Version. Improve CFEngine 3.x syntax
12117 highlighting and support. Fix up comments for capitalization.
12118 (cfengine-mode-debug): New var.
12119 (cfengine3-mode): Change the modeline indicator to "CFE3".
12120 (cfengine3-font-lock-keywords): Improve defun highlighting.
12121 (cfengine2-actions): Rename from `cfengine-actions'.
12122 (cfengine2-font-lock-keywords): Rename from
12123 `cfengine-font-lock-keywords'.
12124 (cfengine2-imenu-expression): Rename from
12125 `cfengine-imenu-expression'.
12126 (cfengine2-outline-level): Rename from `cfengine-outline-level'.
12127 (cfengine2-beginning-of-defun): Rename from
12128 `cfengine-beginning-of-defun'.
12129 (cfengine2-end-of-defun): Rename from `cfengine-end-of-defun'.
12130 (cfengine2-indent-line): Rename from `cfengine-indent-line'.
12131 (cfengine2-mode): Rename from `cfengine-mode'. Change the
12132 modeline indicator to "CFE2".
12133 (cfengine-mode): Defalias to `cfengine-auto-mode'.
12134 (cfengine-mode-abbrevs): Mark obsolete.
12135
12136 2011-12-21 Chong Yidong <cyd@gnu.org>
12137
12138 * vc/vc-bzr.el (vc-bzr-rename-file): Don't pass ~ to Bzr in
12139 filename argument.
12140
12141 2011-12-20 Martin Rudalics <rudalics@gmx.at>
12142
12143 * window.el (window-normalize-buffer-to-display): Remove.
12144 (display-buffer): Handle buffer-or-name argument as in Emacs 23.
12145
12146 2011-12-19 Chong Yidong <cyd@gnu.org>
12147
12148 * vc/vc-dir.el (vc-dir-parent-marked-p, vc-dir-children-marked-p):
12149 Don't signal an error in a predicate function; return non-nil.
12150 (vc-dir-mark-file): Move the error here.
12151 (vc-dir-mark-unmark): If acting on the region, keep going if one
12152 of the entries cannot be marked/unmarked.
12153 (vc-dir-mark-all-files): If current entry is a directory, mark
12154 only child files, as documented.
12155
12156 2011-12-19 Vincent Belaïche <vincentb1@users.sourceforge.net>
12157
12158 * ses.el: Ooops... undo changes of 2011-12-11T14:49:48Z!vincentb1@users.sourceforge.net, as trunk
12159 branch is feature frozen, and 2011-12-11T14:49:48Z!vincentb1@users.sourceforge.net was a feature
12160 addition.
12161
12162 2011-12-18 Jan Djärv <jan.h.d@swipnet.se>
12163
12164 * term/ns-win.el (ns-get-selection-internal)
12165 (ns-store-selection-internal): Declare.
12166 (ns-store-cut-buffer-internal, ns-get-cut-buffer-internal):
12167 Declare as obsolete.
12168 (ns-get-pasteboard, ns-paste-secondary):
12169 Use ns-get-selection-internal.
12170 (ns-set-pasteboard, ns-copy-including-secondary):
12171 Use ns-store-selection-internal.
12172
12173 2011-12-17 Chong Yidong <cyd@gnu.org>
12174
12175 * vc/vc.el (vc-next-action): Doc fix; remove CVS-isms.
12176 (vc-deduce-fileset): Doc fix.
12177
12178 2011-12-16 Andreas Schwab <schwab@linux-m68k.org>
12179
12180 * calc/calc-misc.el (calc-help): Avoid wrapping help message.
12181
12182 2011-12-13 Sam Steingold <sds@gnu.org>
12183
12184 * man.el (Man-getpage-in-background): When running under a
12185 window-system, ignore $MANWIDTH and $COLUMNS.
12186
12187 2011-12-15 Kenichi Handa <handa@m17n.org>
12188
12189 * language/ethio-util.el: Change coding tag to utf-8-emacs.
12190 (setup-ethiopic-environment-internal): Comment out key-binding for
12191 ethio-toggle-punctuation.
12192
12193 2011-12-13 Alan Mackenzie <acm@muc.de>
12194
12195 Add the switch statement to AWK Mode.
12196
12197 * progmodes/cc-awk.el (awk-font-lock-keywords): Add "switch", "case",
12198 "default" to the keywords regexp.
12199
12200 * progmodes/cc-langs.el (c-label-kwds): Let AWK take the same
12201 expression as the rest.
12202 (c-nonlabel-token-key): Allow string literals for AWK.
12203 Refactor for the other modes.
12204
12205 Large brace-block initialisation makes CC Mode slow: Fix.
12206 Tidy up and accelerate c-in-literal, etc. by using the c-parse-state
12207 routines. Limit backward searching in c-font-lock-enclosing.decl.
12208
12209 * progmodes/cc-engine.el (c-state-pp-to-literal): Return the
12210 pp-state and literal type in addition to the limits.
12211 (c-state-safe-place): New defun, extracted from c-state-literal-at.
12212 (c-state-literal-at): Use the above new defun.
12213 (c-slow-in-literal, c-fast-in-literal): Remove.
12214 (c-in-literal, c-literal-limits): Amend to use c-state-pp-to-literal.
12215
12216 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls): Check for
12217 being in a literal. Add a limit for backward searching.
12218
12219 * progmodes/cc-mode.el (awk-mode): Don't alias c-in-literal to
12220 c-slow-in-literal.
12221
12222 2011-12-13 Stefan Monnier <monnier@iro.umontreal.ca>
12223
12224 * progmodes/pascal.el: Declare `ind' as dyn-bound (bug#10264).
12225
12226 2011-12-13 Martin Rudalics <rudalics@gmx.at>
12227
12228 * window.el (delete-other-windows): Use correct frame in call to
12229 window-with-parameter.
12230
12231 2011-12-12 Daniel Pfeiffer <occitan@t-online.de>
12232
12233 * progmodes/make-mode.el: Bring it up to date with makepp V2.0.
12234 (makefile-make-font-lock-keywords): Extend meaning of `keywords'.
12235 (makefile-gmake-statements, makefile-makepp-statements):
12236 Use it and add new makepp keywords.
12237 (makefile-makepp-font-lock-keywords): Add new patterns.
12238 (makefile-match-function-end): Match new [...] and [[...]].
12239
12240 2011-12-11 Juanma Barranquero <lekktu@gmail.com>
12241
12242 * ses.el (ses-call-printer-return, ses-cell-property-get)
12243 (ses-sym-rowcol, ses-printer-validate, ses-formula-record)
12244 (ses-create-cell-variable, ses-reset-header-string)
12245 (ses-cell-set-formula, ses-repair-cell-reference-all)
12246 (ses-self-reference-early-detection, ses-in-print-area, ses-set-curcell)
12247 (ses-check-curcell, ses-call-printer, ses-adjust-print-width)
12248 (ses-print-cell-new-width, ses-formula-references, ses-relocate-formula)
12249 (ses-aset-with-undo, ses-load, ses-truncate-cell)
12250 (ses-read-column-printer, ses-read-default-printer, ses-insert-row)
12251 (ses-delete-row, ses-delete-column, ses-append-row-jump-first-column)
12252 (ses-kill-override, ses-yank-pop, ses-yank-cells, ses-yank-tsf)
12253 (ses-yank-resize, ses-export-tab, ses-mark-row, ses-mark-column)
12254 (ses-renarrow-buffer, ses-insert-range, ses-insert-ses-range)
12255 (ses-safe-printer, ses-safe-formula, ses-warn-unsafe, ses--clean-!)
12256 (ses--clean-_, ses-range, ses-select, ses-center, ses-center-span)
12257 (ses-dashfill, ses-unsafe): Fix typos and reflow docstrings.
12258
12259 2011-12-11 Vincent Belaïche <vincentb1@users.sourceforge.net>
12260
12261 * ses.el: The overall change is to add cell renaming, that is
12262 setting fancy names for cell symbols other than name matching
12263 "\\`[A-Z]+[0-9]+\\'" regexp .
12264 (ses-create-cell-variable): New defun.
12265 (ses-relocate-formula): Relocate formulas only for cells the
12266 symbols of which are not renamed, i.e. symbols whose names do not
12267 match regexp "\\`[A-Z]+[0-9]+\\'".
12268 (ses-relocate-all): Relocate values only for cells the symbols of
12269 which are not renamed.
12270 (ses-load): Create cells variables as the (ses-cell ...) are read,
12271 in order to check row col consistency with cell symbol name only
12272 for cells that are not renamed.
12273 (ses-replace-name-in-formula): New defun.
12274 (ses-rename-cell): New defun.
12275
12276 2011-12-11 Chong Yidong <cyd@gnu.org>
12277
12278 * progmodes/gdb-mi.el (gdb): Set comint-prompt-regexp, required
12279 for completion via gud-gdb-fetch-lines-filter (Bug#10274).
12280
12281 2011-12-11 Eric Hanchrow <eric.hanchrow@gmail.com>
12282
12283 * window.el (other-window): Fix docstring.
12284
12285 2011-12-10 Eli Zaretskii <eliz@gnu.org>
12286
12287 * mail/rmailsum.el (rmail-header-summary): RFC2047 decode the
12288 `from' or `to' address before taking its substring.
12289 Fixes incorrect display in Rmail summary buffer whereby an RFC2047
12290 encoded name is chopped in the middle of the encoded string, and
12291 thus displayed encoded.
12292
12293 2011-12-10 Juanma Barranquero <lekktu@gmail.com>
12294
12295 * makefile.w32-in (update-subdirs-CMD): Use a Local Variables section.
12296
12297 2011-12-10 Eli Zaretskii <eliz@gnu.org>
12298
12299 * textmodes/texnfo-upd.el: Update commentary. Add a warning not
12300 to use texinfo-update-node and commands that call it if the
12301 Texinfo file uses @node lines without next/prev/up pointers.
12302 Correct outdated description about texinfo-master-menu.
12303 (texinfo-all-menus-update, texinfo-master-menu)
12304 (texinfo-update-node, texinfo-every-node-update)
12305 (texinfo-multiple-files-update): Doc fix. Warn against updating
12306 all the @node lines.
12307 (texinfo-master-menu): Only call texinfo-update-node if the prefix
12308 argument is numeric. Explain better in the doc string what the
12309 function really does.
12310 (texinfo-insert-master-menu-list): Improve the error message
12311 displayed if there's no menu in the Top node.
12312 (Bug#2975) See also this thread:
12313 http://lists.gnu.org/archive/html/emacs-devel/2011-12/msg00156.html.
12314
12315 2011-12-09 Manuel Gómez <mgrojo@gmail.com> (tiny change)
12316
12317 * speedbar.el (speedbar-supported-extension-expressions):
12318 Add .adb and .ads, commonly used for Ada source code (bug#10256).
12319
12320 2011-12-09 Juanma Barranquero <lekktu@gmail.com>
12321
12322 * printing.el (pr-mode-alist):
12323 * simple.el (filter-buffer-substring-functions)
12324 (completion-list-insert-choice-function):
12325 * window.el (window-with-parameter, window-atom-root)
12326 (window-sides-slots, window-size-fixed, window-min-delta)
12327 (window-max-delta, window--resize-mini-window)
12328 (window--resize-child-windows-normal, window-tree)
12329 (delete-other-windows, quit-window, split-window)
12330 (display-buffer-record-window, special-display-buffer-names)
12331 (special-display-regexps, special-display-popup-frame)
12332 (same-window-p, split-window-sensibly)
12333 (display-buffer-overriding-action, display-buffer-alist)
12334 (display-buffer-base-action, display-buffer, switch-to-buffer)
12335 (switch-to-buffer-other-window, switch-to-buffer-other-frame)
12336 (fit-window-to-buffer, recenter-positions)
12337 (mouse-autoselect-window-state, mouse-autoselect-window-select):
12338 * emacs-lisp/syntax.el (syntax-propertize-function): Fix typos
12339 and remove unneeded backslashes in docstrings.
12340
12341 2011-12-08 Stefan Monnier <monnier@iro.umontreal.ca>
12342
12343 * emacs-lisp/lisp-mode.el (defmethod): Add doc-string-elt (bug#10244).
12344
12345 * pcmpl-gnu.el: Don't fail when there is no Makefile nor -f arg.
12346 (pcmpl-gnu-makefile-regexps): Accept "makefile" as well as files that
12347 end in ".mk".
12348 (pcmpl-gnu-make-rule-names): Check "makefile" and ignore errors
12349 when reading the makefile (bug#10116).
12350
12351 2011-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
12352
12353 * pcmpl-gnu.el (pcomplete/make): Also allow filename arguments
12354 (bug#10116).
12355
12356 2011-12-06 Glenn Morris <rgm@gnu.org>
12357
12358 * emacs-lisp/package.el (package-archives): Doc fix re riskiness.
12359
12360 2011-12-06 Chong Yidong <cyd@gnu.org>
12361
12362 * progmodes/cc-fonts.el (c-annotation-face): Use defface.
12363
12364 2011-12-06 Juanma Barranquero <lekktu@gmail.com>
12365
12366 * textmodes/table.el (table-shorten-cell): Fix typo.
12367
12368 2011-12-05 Christopher Genovese <genovese.cr@gmail.com> (tiny change)
12369
12370 * emacs-lisp/assoc.el (aput): Fix return value (bug#10146)
12371
12372 2011-12-05 Eli Zaretskii <eliz@gnu.org>
12373
12374 * descr-text.el (describe-char): Fix display of strong
12375 right-to-left characters and directional embeddings and overrides.
12376
12377 * simple.el (what-cursor-position): Fix display of codepoints of
12378 strong right-to-left characters.
12379
12380 2011-12-05 Chong Yidong <cyd@gnu.org>
12381
12382 * faces.el (read-color): Doc fix.
12383
12384 2011-12-05 Glenn Morris <rgm@gnu.org>
12385
12386 * align.el (align--set-marker): Add doc-string.
12387 Don't try to move something that is not a marker. (Bug#10216)
12388
12389 2011-12-04 Glenn Morris <rgm@gnu.org>
12390
12391 * calendar/appt.el (appt-add): Rewrite the interactive-spec to avoid
12392 overly zealous deletion of trailing whitespace.
12393
12394 2011-12-04 Juanma Barranquero <lekktu@gmail.com>
12395
12396 * server.el (server-delete-client): On Windows, do not try to delete
12397 the only terminal.
12398 (server-process-filter): On Windows, treat requests for a tty frame as
12399 if they were for a GUI frame if the running server is in GUI mode.
12400
12401 2011-12-03 Glenn Morris <rgm@gnu.org>
12402
12403 * textmodes/texinfmt.el (batch-texinfo-format): Doc fix. (Bug#10207)
12404
12405 2011-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
12406
12407 * electric.el: Streamline electric-indent's hook.
12408 (electric-indent-chars): Revert to simple list.
12409 (electric-indent-functions): New var.
12410 (electric-indent-post-self-insert-function): Use it.
12411
12412 * progmodes/prolog.el (prolog-find-value-by-system): Avoid error when
12413 there's no inferior buffer (bug#10196).
12414 (prolog-consult-compile): Don't use toggle-read-only.
12415
12416 2011-12-02 Michael Albinus <michael.albinus@gmx.de>
12417
12418 * net/tramp-sh.el (tramp-maybe-open-connection): Handle user
12419 interrupt. (Bug#10187)
12420
12421 2011-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
12422
12423 * pcmpl-gnu.el (pcomplete/tar): large-file-warn-threshold can be nil
12424 (bug#9160).
12425
12426 * dired-aux.el (dired-query): Don't assume help-char is modifier-free
12427 (bug#10191).
12428
12429 2011-12-02 Juri Linkov <juri@jurta.org>
12430
12431 * info.el (Info-search): Display "end of manual" when Isearch
12432 reaches the end of single-file Info manual. (Bug#9918)
12433
12434 2011-12-02 Eli Zaretskii <eliz@gnu.org>
12435
12436 * isearch.el (isearch-message-prefix): Run the input method part
12437 of the prompt through bidi-string-mark-left-to-right. (Bug#10183)
12438
12439 2011-12-02 Juri Linkov <juri@jurta.org>
12440
12441 * isearch.el (isearch-occur): Use `word-search-regexp' for
12442 `isearch-word'.
12443 (isearch-search-and-update): Add condition for `isearch-word' and
12444 call `word-search-regexp'. (Bug#10145)
12445
12446 2011-12-01 Glenn Morris <rgm@gnu.org>
12447
12448 * eshell/em-hist.el (eshell-hist-initialize):
12449 Handle eshell-history-size nil and HISTSIZE set or unset.
12450 (eshell-history-file-name, eshell-history-size): Fix custom type.
12451
12452 2011-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
12453
12454 * man.el (Man-completion-table): Fix the lambda case (bug#10168).
12455
12456 2011-12-01 Michael McNamara <mac@mail.brushroad.com>
12457
12458 * progmodes/verilog-mode.el (verilog-pretty-expr):
12459 Rework verilog-pretty-expr to handle new assignment operators in system
12460 verilog, such as += *= and the like.
12461 (verilog-assignment-operator-re): Regular expression to find the
12462 assigment operator in a verilog assignment.
12463 (verilog-assignment-operation-re): Regular expression to find an
12464 assignment statement for pretty-expr.
12465 (verilog-in-attribute-p): Query returns true if point is in an
12466 attribute context; used to skip these for expression line up from
12467 pretty-expr.
12468 (verilog-in-parameter-p): Query returns true if point is in an
12469 parameter definition context; used to skip these for expression
12470 line up from pretty-expr.
12471 (verilog-in-parenthesis-p): Query returns true if point is in a
12472 parenthetical expression, specifically ( ) but not [ ] or { };
12473 used by pretty-expr.
12474 (verilog-just-one-space): If there is no space, don't add one.
12475 (verilog-get-lineup-indent-2): Specifically skip just attribute
12476 contexts for expression lineup, rather than skipping all
12477 parenthetical expressions.
12478 (verilog-calculate-indent): Fix comment, and fix indent.
12479 (verilog-do-indent): Indent declarations in lists (suggested by
12480 Joachim Lechner).
12481 (verilog-mode-abbrev-table): Populate abbrev mode with the various
12482 skeleton items.
12483 (verilog-sk-ovm-class): Add skeleton for OVM classes (reported
12484 by Alain Mellan).
12485
12486 2011-12-01 Wilson Snyder <wsnyder@wsnyder.org>
12487
12488 * progmodes/verilog-mode.el (verilog-read-defines): Fix reading
12489 parameters with embedded comments. Reported by Ray Stevens.
12490 (verilog-calc-1, verilog-fork-wait-re) (verilog-forward-sexp,
12491 verilog-wait-fork-re): Fix indentation of "wait fork", bug407.
12492 Reported by Tim Holt.
12493 (verilog-auto): Fix AUTOing a upper module then AUTOing module
12494 instantiated by upper module causing wrong expansion until AUTOed a
12495 second time. Reported by K C Buckenmaier.
12496 (verilog-diff-auto): Fix showing .* as a difference when
12497 `verilog-auto-star-save' off. Reported by Dan Dever.
12498 (verilog-auto-reset, verilog-read-always-signals)
12499 (verilog-auto-reset-blocking-in-non): Fix AUTORESET including
12500 temporary signals in reset list if
12501 verilog-auto-reset-blocking-in-non is nil, and match assignment
12502 style to each signal's assignment type, bug381.
12503 Reported by Thomas Esposito.
12504 (verilog-sk-uvm-class, verilog-uvm-begin-re, verilog-uvm-end-re)
12505 (verilog-uvm-statement-re): Support UVM indentation and
12506 highlighting, with old OVM keywords only.
12507 (verilog-auto-tieoff, verilog-auto-tieoff-declaration):
12508 Support AUTOTIEOFF creating non-wire data types.
12509 Suggested by Jonathan Greenlaw.
12510 (verilog-auto-insert-lisp, verilog-delete-to-paren)
12511 (verilog-forward-sexp-cmt, verilog-forward-sexp-ign-cmt)
12512 (verilog-inject-sense, verilog-read-inst-pins)
12513 (verilog-read-sub-decls, verilog-read-sub-decls-line):
12514 Fix mismatching parenthesis inside commented out code when deleting
12515 AUTOINST, bug383. Reported by Jonathan Greenlaw.
12516 (verilog-auto-ascii-enum): Fix AUTOASCIIENUM one-hot with
12517 non-numeric vector width. Reported by Alex Reed.
12518 (verilog-auto-ascii-enum): Add "onehot" option to work around not
12519 detecting signals with parameter widths. Reported by Alex Reed.
12520 (verilog-auto-delete-trailing-whitespace):
12521 With `verilog-auto-delete-trailing-whitespace' remove trailing
12522 whitespace in auto expansion, bug371. Reported by Brad Dobbie.
12523 (verilog-run-hooks, verilog-scan-cache-flush, verilog-syntax-ppss):
12524 Fix verilog-scan-cache corruption when running user AUTO expansion
12525 hooks that call indentation routines.
12526 (verilog-simplify-range-expression): Fix typo ignoring lower case
12527 identifiers.
12528 (verilog-delete-auto): Fix delete-autos to also remove user created
12529 automatics, as long as they start with AUTO.
12530 (verilog-batch-diff-auto, verilog-diff-auto)
12531 (verilog-diff-function): Add `verilog-diff-auto' and bind to
12532 "C-c?" to report differences in AUTO expansion, ignoring spaces.
12533 (verilog-backward-syntactic-ws-quick, verilog-beg-of-defun-quick)
12534 (verilog-in-paren-quick, verilog-re-search-backward-quick)
12535 (verilog-re-search-forward-quick, verilog-syntax-ppss):
12536 Fix calling `syntax-ppss' when inside auto expansions as the ppss hook
12537 is disabled and its cache will get corrupt, causing AUTOS not to
12538 expand. Instead use only -quick functions.
12539 (verilog-scan-region): Fix scanning over escaped quotes.
12540 (verilog-inside-comment-or-string-p, verilog-inside-comment-p)
12541 (verilog-re-search-backward-quick)
12542 (verilog-re-search-forward-quick, verilog-scan): verilog-scan and
12543 related functions now ignore strings, to fix misparsing of strings
12544 with magic comments embedded in them.
12545 (verilog-read-auto-template):
12546 Fix 'verilog-auto-inst-template-numbers' with extra newline before (.
12547 Reported by Brad Dobbie.
12548 (verilog-read-auto-template):
12549 Fix 'verilog-auto-inst-template-numbers' with comments.
12550 Reported by Brad Dobbie.
12551 (verilog-auto-inst, verilog-auto-inst-param)
12552 (verilog-auto-inst-sort): Add 'verilog-auto-inst-sort' to reduce
12553 merge conflicts with AUTOINST, bug358. Reported by Brad Dobbie.
12554 (verilog-auto-inst-template-numbers): Add 'lhs' policy for
12555 debugging templates without merge conflicts, bug357.
12556 Reported by Brad Dobbie.
12557 (verilog-read-auto-template):
12558 Fix verilog-auto-inst-template-numbers with multiple templates.
12559 Reported by Brad Dobbie.
12560 (verilog-define-abbrev): Fix verilog-mode abbrevs to be system
12561 abbrevs so user won't be asked to save.
12562 (verilog-read-auto-lisp-present): Fix to start at beginning of
12563 buffer in case called outside of verilog-auto.
12564 (verilog-simplify-range-expression): Fix AUTOWIRE expanding "X-1+1"
12565 to "X-2". Reported by Matthew Myers.
12566 (verilog-auto, verilog-auto-inout-in): Add AUTOINOUTIN for creating
12567 all inputs from module templates. Reported by Leith Johnson.
12568 (verilog-module-inside-filename-p): Fix locating programs as with
12569 modules.
12570 (verilog-auto-inst-port): Fix vl-width expressions when using
12571 verilog-auto-inst-param-value, bug331. Reported by Julian Gorfajn.
12572 (verilog-decls-get-regs, verilog-decls-get-signals,
12573 verilog-decls-get-vars, verilog-decls-get-wires, verilog-decls-new,
12574 verilog-modi-cache-add-vars, verilog-modi-cache-add-wires,
12575 verilog-read-decls): Combine reg and wire structures into one var
12576 structure to represent SystemVerilog concepts.
12577 (verilog-auto-ascii-enum, verilog-auto-logic, verilog-auto-reg)
12578 (verilog-auto-reg-input, verilog-auto-tieoff, verilog-auto-wire)
12579 (verilog-auto-wire-type, verilog-insert-definition):
12580 Add verilog-auto-wire-type and AUTOLOGIC to support using
12581 SystemVerilog "logic" keyword instead of "wire"/"reg".
12582 (verilog-auto-reg-input, verilog-decls-get-signals): Fix AUTOWIRE
12583 to declares outputs that also have assignments (presumably in an
12584 ifdef or generate if so there's not a driver conflict).
12585 Reported by Matthew Myers.
12586 (verilog-auto-declare-nettype, verilog-insert-definition):
12587 Add verilog-auto-declare-nettype to fix declarations using
12588 `default_nettype none. Reported by Julian Gorfajn.
12589 (verilog-read-always-signals-recurse, verilog-read-decls)
12590 (verilog-read-sub-decls-gate): Fix infinite loop with (*) and
12591 malformed end statement, bug325. Reported by Joshua Wise and
12592 Andrew Drake.
12593 (verilog-auto-star-safe, verilog-delete-auto-star-implicit)
12594 (verilog-inst-comment-re): Fix not deleting Interfaced comment
12595 when expanding .* in interfaces, bug320.
12596 Reported by Pierre-David Pfister.
12597 (verilog-read-module-name): Fix import statements between module
12598 name and open parenthesis, bug317.
12599 Reported by Pierre-David Pfister.
12600 (verilog-simplify-range-expression): Fix simplification of
12601 multiplications inside AUTOWIRE connections, bug303.
12602 (verilog-auto-inst-port): Support parameter expansion in
12603 multidimensional arrays.
12604 (verilog-read-decls): Fix AUTOREG etc looking for "endproperty"
12605 after "assert property". Reported by Julian Gorfajn.
12606 (verilog-simplify-range-expression): Fix "couldn't merge" errors
12607 with multiplication, bug303.
12608 (verilog-read-decls): Fix parsing of unsigned data types, bug302.
12609 Reported by Jan Frode Lonnum.
12610
12611 2011-11-30 Juanma Barranquero <lekktu@gmail.com>
12612
12613 * htmlfontify.el (hfy-page-header, hfy-post-html-hooks)
12614 (hfy-shell-file-name, hfy-shell):
12615 * international/fontset.el (x-decompose-font-name): Fix typos.
12616
12617 2011-11-29 Ken Brown <kbrown@cornell.edu>
12618
12619 * progmodes/gdb-mi.el: Fix bug#9853, bug#9858, and bug#9878.
12620 (gdb-version): Remove defvar.
12621 (gdb-supports-non-stop): New defvar, replacing `gdb-version'.
12622 (gdb-gud-context-command, gdb-non-stop-handler)
12623 (gdb-current-context-command, gdb-stopped): Use it.
12624 (gdb-init-1): Enable pretty printing here.
12625 (gdb-non-stop-handler): Don't enable pretty-printing here.
12626 Check to see if the target supports non-stop mode; if not, turn off
12627 non-stop mode. Use the following.
12628 (gdb-check-target-async): New defun.
12629 (gud-watch, gdb-stopped): Fix whitespace.
12630 (gdb-get-source-file): Don't try to display the source file if
12631 `gdb-main-file' is nil.
12632
12633 2011-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
12634
12635 * align.el: Try to generate fewer markers (bug#10047).
12636 (align--set-marker): New macro.
12637 (align-region): Use it.
12638
12639 2011-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
12640
12641 * isearch.el (isearch-yank-x-selection): Deactivate mark (bug#10022).
12642
12643 2011-11-29 Chong Yidong <cyd@gnu.org>
12644
12645 * indent.el (indent-for-tab-command, indent-according-to-mode):
12646 Doc fix.
12647 (indent-region): Doc fix. Switch nested ifs to equivalent cond.
12648
12649 2011-11-29 Michael Albinus <michael.albinus@gmx.de>
12650
12651 * vc/diff-mode.el (diff-find-file-name): Make `read-file-name'
12652 aware of remote file names. (Bug#10124)
12653
12654 2011-11-29 Chong Yidong <cyd@gnu.org>
12655
12656 * frame.el (auto-raise-mode, auto-lower-mode): Doc fix.
12657
12658 2011-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
12659
12660 * files.el (find-file): Don't use force-same-window (bug#10144).
12661 * window.el (switch-to-buffer): Better match Emacs-23 behavior and only
12662 use pop-to-buffer if the selected window can't be used.
12663 (pop-to-buffer-same-window): Use display-buffer--same-window-action.
12664
12665 2011-11-28 Eli Zaretskii <eliz@gnu.org>
12666
12667 * vc/diff-mode.el (diff-mode-map): Don't inherit 'z' => 'M-z' from
12668 special-mode-map.
12669
12670 2011-11-28 Chong Yidong <cyd@gnu.org>
12671
12672 * emacs-lisp/easy-mmode.el (define-minor-mode): Fix default doc.
12673
12674 2011-11-27 Nick Roberts <nickrob@snap.net.nz>
12675
12676 * progmodes/gdb-mi.el (gdb-init-1): Condition execution of
12677 gdb-get-source-file-list on gdb-create-source-file-list.
12678
12679 2011-11-26 Eli Zaretskii <eliz@gnu.org>
12680
12681 * whitespace.el (whitespace-newline): Use a different foreground
12682 color for 16-color light-background displays.
12683
12684 2011-11-24 Chong Yidong <cyd@gnu.org>
12685
12686 * window.el (display-buffer--special-action): Doc fix.
12687
12688 2011-11-25 Juanma Barranquero <lekktu@gmail.com>
12689
12690 * emacs-lisp/avl-tree.el (avl-tree--do-copy, avl-tree-create)
12691 (avl-tree-compare-function, avl-tree-empty, avl-tree-enter)
12692 (avl-tree-delete, avl-tree-member, avl-tree-member-p, avl-tree-map)
12693 (avl-tree-mapc, avl-tree-mapf, avl-tree-mapcar, avl-tree-copy)
12694 (avl-tree-clear, avl-tree-stack, avl-tree-stack-pop)
12695 (avl-tree-stack-first):
12696 * emacs-lisp/cconv.el (cconv--analyse-use):
12697 * net/gnutls.el (gnutls-negotiate): Fix typos.
12698
12699 2011-11-24 Glenn Morris <rgm@gnu.org>
12700
12701 * lpr.el (lpr-windows-system, lpr-lp-system):
12702 * mail/binhex.el (binhex-begin-line):
12703 * progmodes/grep.el (grep-history, grep-find-history):
12704 * textmodes/flyspell.el:
12705 * vc/pcvs-defs.el (cvs-global-menu):
12706 * vc/vc-bzr.el (vc-bzr-admin-checkout-format-file):
12707 * vc/vc-mtn.el (vc-mtn-admin-dir, vc-mtn-admin-format):
12708 * vc/vc-cvs.el (vc-cvs-registered): Give them basic doc-strings.
12709
12710 * net/tls.el: Fix case of "GnuTLS".
12711
12712 * paths.el (rmail-file-name): Format doc-string for make-docfile.
12713
12714 * version.el (emacs-build-system): Give it a doc-string.
12715
12716 2011-11-24 Juri Linkov <juri@jurta.org>
12717
12718 * view.el (view-buffer): Revert 2011-07-19T15:01:49Z!larsi@gnus.org from 2011-07-19 (bug#8615).
12719
12720 2011-11-24 Glenn Morris <rgm@gnu.org>
12721
12722 * mail/rmailmm.el (rmail-mime): When rmail-enable-mime is non-nil,
12723 if called on a non-mime message just toggle the headers. (Bug#8006)
12724
12725 2011-11-24 Juanma Barranquero <lekktu@gmail.com>
12726
12727 * allout.el (allout-setup, allout-auto-save-temporarily-disabled)
12728 (allout-lead-with-comment-string, allout-structure-deleted-hook)
12729 (allout-mode, allout-chart-subtree, allout-hotspot-key-handler)
12730 (allout-rebullet-heading, allout-open-sibtopic)
12731 (allout-toggle-current-subtree-encryption)
12732 (allout-toggle-subtree-encryption, allout-encrypt-string)
12733 (allout-next-topic-pending-encryption, allout-adjust-file-variable)
12734 (allout-distinctive-bullets-string, allout-auto-activation):
12735 * window.el (window-normalize-buffer-to-display):
12736 * progmodes/verilog-mode.el (verilog-batch-indent):
12737 * textmodes/bibtex.el (bibtex-field-braces-opt)
12738 (bibtex-field-strings-opt):
12739 * vc/cvs-status.el (cvs-tree-merge):
12740 Fix typos.
12741
12742 2011-11-23 Michael Albinus <michael.albinus@gmx.de>
12743
12744 * rfn-eshadow.el (rfn-eshadow-update-overlay): Let-bind
12745 `non-essential' to t, in order to avoid remote connections.
12746
12747 2011-11-23 Eli Zaretskii <eliz@gnu.org>
12748
12749 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
12750 On MS-DOS and MS-Windows, compare with loaddefs.el
12751 case-insensitively.
12752
12753 2011-11-23 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
12754
12755 * mail/unrmail.el (unrmail): Always add blank line. (Bug#7743)
12756
12757 2011-11-23 Glenn Morris <rgm@gnu.org>
12758
12759 * paths.el (rmail-file-name): Reformat the doc-string so that it
12760 is picked up.
12761
12762 * mail/rmail.el (rmail-message-filter, rmail-auto-file): Doc fixes.
12763 (rmail-auto-file): Ignore case in the "special" field names,
12764 as mail-fetch-field does for all others.
12765
12766 * mail/rmail.el (rmail-forward):
12767 * mail/rmailkwd.el (rmail-set-label):
12768 * mail/rmailout.el (rmail-output, rmail-output-as-seen)
12769 (rmail-output-body-to-file): Give error if no message. (Bug#10082)
12770
12771 * mail/rmail.el (rmail-current-message): Doc fix.
12772
12773 * mail/rmail.el (rmail-message-filter): Mark as obsolete. (Bug#2624)
12774
12775 2011-11-22 Stefan Monnier <monnier@iro.umontreal.ca>
12776
12777 * server.el (server-eval-and-print): Allow C-g (bug#6585).
12778
12779 2011-11-22 Glenn Morris <rgm@gnu.org>
12780
12781 * mail/rmailmm.el (test-rmail-mime-handler)
12782 (test-rmail-mime-bulk-handler)
12783 (test-rmail-mime-multipart-handler): Move tests to test/ directory.
12784
12785 2011-11-21 Juri Linkov <juri@jurta.org>
12786
12787 * calc/calc.el (calc-read-key-sequence):
12788 Let-bind `input-method-function' to nil. (Bug#10018)
12789
12790 2011-11-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
12791
12792 * emacs-lisp/cl-indent.el (common-lisp-loop-part-indentation):
12793 Tell the caller that the next line needs recomputation, even
12794 though it doesn't start a sexp (bug#10094).
12795
12796 2011-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
12797
12798 * emacs-lisp/autoload.el (autoload-generate-file-autoloads): Simplify.
12799
12800 2011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
12801
12802 * vc/pcvs-util.el (cvs-pop-to-buffer-same-frame):
12803 Use force-same-window.
12804
12805 2011-11-20 Juanma Barranquero <lekktu@gmail.com>
12806
12807 * descr-text.el (describe-char-unicode-data):
12808 * json.el (json-string-escape):
12809 * mail/footnote.el (footnote-unicode-string, footnote-unicode-regexp)
12810 (Footnote-unicode, Footnote-style-p):
12811 * net/ntlm.el (ntlm-get-password-hashes): Fix typos.
12812
12813 2011-11-20 Chong Yidong <cyd@gnu.org>
12814
12815 * window.el (replace-buffer-in-windows): Restore interactive spec.
12816
12817 2011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
12818
12819 * electric.el (electric-indent-mode): Fix last change (too optimistic).
12820
12821 * emacs-lisp/bytecomp.el: Silence obsolete warnings more reliably.
12822 (byte-compile-global-not-obsolete-vars): New var.
12823 (byte-compile-check-variable, byte-compile-make-obsolete-variable):
12824 Use it.
12825 (byte-compile-warn-obsolete): Align text with the one in *Help*.
12826
12827 2011-11-20 Juanma Barranquero <lekktu@gmail.com>
12828
12829 * progmodes/cwarn.el (cwarn-is-enabled, cwarn-font-lock-keywords):
12830 * progmodes/pascal.el (electric-pascal-equal):
12831 * textmodes/reftex-dcr.el (reftex-view-crossref-from-bibtex):
12832 * xml.el (xml-substitute-special): Fix typos.
12833
12834 2011-11-20 Glenn Morris <rgm@gnu.org>
12835
12836 * mail/rmail.el (rmail-enable-mime-composing): Make it a defcustom.
12837 (rmail-insert-mime-forwarded-message-function, rmail-mime-feature):
12838 Doc fixes.
12839 (rmail-decode-mime-charset): Mark as obsolete.
12840
12841 * mail/rmailsum.el (rmail-message-regexp-p-1):
12842 * mail/rmail.el (rmail-search-message, rmail-forward, rmail-resend):
12843 Before using mime functions, check they are set. (Bug#10077)
12844
12845 2011-11-19 Juri Linkov <juri@jurta.org>
12846
12847 * info.el (Info-finder-find-node): Use `package--builtins' instead
12848 of `package-alist'. Use node names formed by the pattern "Keyword "
12849 and the keyword name.
12850
12851 2011-11-19 Andreas Schwab <schwab@linux-m68k.org>
12852
12853 * progmodes/sh-script.el (sh-assignment-regexp): Add entry for bash.
12854
12855 2011-11-19 Juri Linkov <juri@jurta.org>
12856
12857 * info.el (Info-hide-note-references): Add `:set' tag to `defcustom'
12858 that calls `revert-buffer' on all Info buffers. (Bug#9915)
12859 (Info-revert-find-node): Remove let-bindings `old-buffer-name',
12860 `old-history', `old-history-forward'. Add let-binding
12861 `window-selected'. Remove calls to `kill-buffer',
12862 `switch-to-buffer' and `Info-mode'. Set `Info-current-file' to nil
12863 before calling `Info-find-node', so `Info-find-node-2' will reread
12864 the Info file. Restore window positions only when `window-selected'
12865 is non-nil.
12866
12867 2011-11-19 Juri Linkov <juri@jurta.org>
12868
12869 * isearch.el (isearch-lazy-highlight-new-loop):
12870 Remove condition `(not isearch-error)'. (Bug#9918)
12871
12872 * misearch.el (multi-isearch-search-fun): Add condition
12873 `(not bound)' to ignore lazy-highlighting search.
12874 Add the search-failed message "end of multi" when the end of
12875 multi-sequence is reached. Uncapitalize the search-failed
12876 message "Repeat for next buffer".
12877
12878 * info.el (Info-search): Add the search-failed message
12879 "end of the manual" when the end of the manual is reached
12880 in Isearch mode.
12881
12882 2011-11-19 Juri Linkov <juri@jurta.org>
12883
12884 * info.el (Info-find-node-2, Info-select-node, Info-history-find-node):
12885 Use non-destructive `remove' instead of `delete' because
12886 `Info-history-list' stored to `Info-isearch-initial-history-list' in
12887 `Info-isearch-start' might need to be restored in `Info-isearch-end'.
12888
12889 2011-11-19 Juri Linkov <juri@jurta.org>
12890
12891 * isearch.el (isearch-edit-string): Let-bind `history-add-new-input'
12892 to nil instead of binding `search-ring' and `regexp-search-ring'.
12893 (Bug#9185)
12894
12895 2011-11-19 Eli Zaretskii <eliz@gnu.org>
12896
12897 * simple.el (line-move): Force movement by logical lines for any
12898 hscrolled window, not only when auto-hscroll-mode is on.
12899 (line-move-visual): Update doc string to that effect. (Bug#10076)
12900
12901 2011-11-19 Andreas Schwab <schwab@linux-m68k.org>
12902
12903 * language/european.el (macintosh): Define as alias for mac-roman.
12904
12905 2011-11-19 Eli Zaretskii <eliz@gnu.org>
12906
12907 * mail/rmailmm.el (rmail-mime-display-header)
12908 (rmail-mime-display-tagline, rmail-mime-display-body): New defsubsts.
12909 (rmail-mime-entity-segment, rmail-mime-toggle-raw)
12910 (rmail-mime-toggle-hidden, rmail-mime-insert-text)
12911 (rmail-mime-insert-bulk, rmail-mime-insert-multipart)
12912 (rmail-mime-insert, rmail-mime-insert-tagline): Use them instead
12913 of a raw aref.
12914 (rmail-mime-entity-segment): To get past the tagline, move forward
12915 2 more lines, to account for the 2 empty lines that precede and
12916 follow the line with the buttons.
12917 (rmail-mime-update-tagline): Move one more line, to get past the
12918 empty line that follows the buttons in the tagline. (Bug#9520)
12919
12920 2011-11-19 Martin Rudalics <rudalics@gmx.at>
12921
12922 * window.el (window-max-delta-1, window-min-delta-1)
12923 (window-min-size-1, window-state-get-1, window-state-put-1)
12924 (window-state-put-2): Use "window--" prefix.
12925
12926 2011-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
12927
12928 * emacs-lisp/smie.el: Improve warnings and conflict detection.
12929 (smie-warning-count): New var.
12930 (smie-set-prec2tab): Use it.
12931 (smie-bnf->prec2): Improve warnings. Add docstring.
12932 (smie-bnf--closer-alist): Rename from smie-bnf-closer-alist.
12933 (smie-bnf--set-class): New function.
12934 (smie-bnf--classify): Rename from smie-bnf-classify. Rewrite to fix
12935 corner case.
12936
12937 * progmodes/compile.el: Obey compilation-first-column in dest buffer.
12938 (compilation-error-properties, compilation-move-to-column):
12939 Handle compilation-first-column while in the target buffer.
12940
12941 * progmodes/cc-engine.el (c-remove-stale-state-cache-backwards):
12942 Don't hardcode point-min==1.
12943
12944 * eshell/esh-cmd.el (eshell-do-eval): Handle `setq' (bug#9907).
12945 (eshell-rewrite-for-command): Remove workaround.
12946 (eshell-do-pipelines, eshell-do-pipelines-synchronously)
12947 (eshell-do-eval, eshell-exec-lisp): Avoid gratuitous setq.
12948 * eshell/esh-util.el (eshell-condition-case, eshell-for): Use declare.
12949
12950 * files-x.el (modify-file-local-variable): Obey commenting conventions.
12951
12952 2011-11-17 Glenn Morris <rgm@gnu.org>
12953
12954 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
12955 Ignore buffer-local generated-autoload-file if it is the same
12956 as the global value. (Bug#10049)
12957
12958 2011-11-17 Juanma Barranquero <lekktu@gmail.com>
12959
12960 * textmodes/reftex-toc.el (reftex-toc-return-marker, reftex-toc-help)
12961 (reftex-toc, reftex-toc, reftex-toc-dframe-p, reftex-toc-next-heading)
12962 (reftex-toc-previous-heading, reftex-toc-max-level)
12963 (reftex-toc-goto-line-and-hide, reftex-toc-show-calling-point)
12964 (reftex-toc-quit, reftex-toc-revert, reftex-toc-jump)
12965 (reftex-toc-do-promote, reftex-toc-promote-prepare)
12966 (reftex-toc-promote-action, reftex-toc-extract-section-number)
12967 (reftex-toc-load-all-files-for-promotion, reftex-toc-rename-label)
12968 (reftex-toc-rename-label, reftex-toc-visit-location)
12969 (reftex-toc-visit-location, reftex-toggle-auto-toc-recenter)
12970 (reftex-toggle-auto-toc-recenter, reftex-toggle-auto-toc-recenter)
12971 (reftex-make-separate-toc-frame): Fix typos, and use TOC consistently,
12972 leaving "*toc*" only for references to the buffer.
12973
12974 2011-11-17 Martin Rudalics <rudalics@gmx.at>
12975
12976 * window.el (window-resize, delete-window, split-window):
12977 Replace window-splits by window-combination-resize.
12978 * cus-start.el (window-splits): Replace by window-combination-resize.
12979
12980 2011-11-17 Glenn Morris <rgm@gnu.org>
12981
12982 * progmodes/sh-script.el (sh-font-lock-keywords-var):
12983 Make bash entry derive from sh entry, not shell entry.
12984
12985 2011-11-16 Michael Albinus <michael.albinus@gmx.de>
12986
12987 * net/tramp-sh.el (tramp-sh-handle-file-truename): Cache only the
12988 local file name.
12989
12990 2011-11-16 Juanma Barranquero <lekktu@gmail.com>
12991
12992 * menu-bar.el (menu-bar-file-menu):
12993 * printing.el (pr-ps-utility):
12994 * calendar/icalendar.el (icalendar, icalendar--convert-tz-offset)
12995 (icalendar--convert-to-ical, icalendar--convert-ordinary-to-ical)
12996 (icalendar--convert-weekly-to-ical, icalendar--convert-yearly-to-ical)
12997 (icalendar--convert-sexp-to-ical, icalendar--convert-block-to-ical)
12998 (icalendar--convert-float-to-ical, icalendar--convert-date-to-ical)
12999 (icalendar--convert-cyclic-to-ical)
13000 (icalendar--convert-anniversary-to-ical, icalendar-import-buffer)
13001 (icalendar--convert-ical-to-diary)
13002 (icalendar--convert-recurring-to-diary)
13003 (icalendar--convert-non-recurring-all-day-to-diary)
13004 (icalendar-import-format-sample):
13005 * progmodes/idlw-shell.el (idlwave-shell-mode):
13006 * progmodes/vhdl-mode.el (vhdl-mode, vhdl-print-two-column)
13007 (vhdl-print-customize-faces, vhdl-mode, vhdl-ps-print-settings)
13008 (vhdl-ps-print-init): Fix typos.
13009
13010 2011-11-16 Ken Manheimer <ken.manheimer@gmail.com>
13011
13012 * allout.el, allout-widgets.el (file metadata): Attribute copyright to
13013 FSF and collapse date sequence, obscure author/maintainer email address
13014 better, remove extra version line, track relocation of author's webpage.
13015
13016 * progmodes/python.el (python-pdbtrack-input-prompt)
13017 (python-pdbtrack-track-stack-file): Adjust to recognize ipdb as well as
13018 regular python pdb prompts. Adjustments shamelessly taken exactly as
13019 suggested in EmacsWiki page (tiny change):
13020 http://www.emacswiki.org/PythonProgrammingInEmacs#toc14
13021
13022 2011-11-16 Juanma Barranquero <lekktu@gmail.com>
13023
13024 * expand.el (expand-pos, expand-index, expand-point):
13025 Remove redundant info from docstring.
13026 (expand-add-abbrevs): Doc fix.
13027 (expand-c-sample-expand-list, expand-sample-lisp-mode-expand-list)
13028 (expand-sample-perl-mode-expand-list): Fix typos.
13029
13030 * net/dbus.el (dbus-event-member-name):
13031 * play/5x5.el (5x5-solve-rotate-left, 5x5-solver-output):
13032 * term/pc-win.el (msdos-create-frame-with-faces):
13033 * textmodes/texinfmt.el (texinfo-format-image): Fix typos.
13034
13035 2011-11-16 Martin Rudalics <rudalics@gmx.at>
13036
13037 * window.el (split-window, window-state-get-1)
13038 (window-state-put-1, window-state-put-2): Rename occurrences of
13039 window-nest to window-combination-limit.
13040 * cus-start.el (window-nest): Rename to window-combination-limit.
13041
13042 2011-11-16 Chong Yidong <cyd@gnu.org>
13043
13044 * progmodes/autoconf.el (autoconf-mode): Fix comment-start-skip
13045 regexp (Bug#10033).
13046
13047 2011-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
13048
13049 * tmm.el (tmm-prompt): Use minibuffer-with-setup-hook (bug#10053).
13050 `completing-read' will remove *Completions* and will preserve
13051 current-buffer for us.
13052 (tmm-add-prompt): Users of *Completions* will always (re)set its
13053 major mode.
13054 (tmm-old-comp-map): Remove.
13055
13056 2011-11-16 Glenn Morris <rgm@gnu.org>
13057
13058 * mail/rmailedit.el: Require rmailmm when compiling.
13059 (rmail-old-mime-state): New declaration.
13060 (rmail-edit-current-message): If editing a mime message,
13061 edit the "raw" message from the mbox buffer.
13062 (rmail-cease-edit): Handle mime messages. (Bug#9840)
13063
13064 2011-11-15 Glenn Morris <rgm@gnu.org>
13065
13066 * mail/rmailmm.el (rmail-mime-toggle-raw): Remove entity arg,
13067 which wasn't being used. Add optional arg to force given state.
13068 (rmail-mime): Add optional arg to force given state.
13069
13070 2011-11-15 Juanma Barranquero <lekktu@gmail.com>
13071
13072 * allout.el (allout-encryption-plaintext-sanitization-regexps):
13073 * frame.el (display-mm-dimensions-alist):
13074 * outline.el (outline-mode-menu-bar-map, outline-move-subtree-up)
13075 (outline-move-subtree-down):
13076 * net/newst-treeview.el (newsticker--treeview-do-get-node-of-feed)
13077 (newsticker--treeview-do-get-node):
13078 * net/quickurl.el (quickurl-list-buffer-name):
13079 * progmodes/dcl-mode.el (dcl-mode):
13080 * progmodes/gdb-mi.el (gdb-mapcar*):
13081 * progmodes/sql.el (sql-mode-oracle-font-lock-keywords): Fix typos.
13082
13083 2011-11-15 Glenn Morris <rgm@gnu.org>
13084
13085 * mail/rmail.el (rmail-file-coding-system): It's only ever used
13086 in a boolean sense, so just make it a boolean, and fix the doc.
13087 (rmail-show-mime-function, rmail-mime-feature)
13088 (rmail-require-mime-maybe): Doc fixes.
13089 (rmail-show-message-1): Check rmail-show-mime-function is non-nil.
13090
13091 * mail/rmailmm.el (rmail-show-mime): Doc fix.
13092
13093 2011-11-15 Juanma Barranquero <lekktu@gmail.com>
13094
13095 * epg.el (epg-start-decrypt, epg-start-verify, epg-start-sign)
13096 (epg-start-encrypt, epg-start-export-keys, epg-start-import-keys)
13097 (epg-start-receive-keys, epg-start-delete-keys, epg-start-sign-keys)
13098 (epg-start-generate-key, epg-context-set-progress-callback): Fix typos.
13099
13100 2011-11-15 Glenn Morris <rgm@gnu.org>
13101
13102 * mail/rmailmm.el (rmail-mime-entity, rmail-mime-entity-segment)
13103 (rmail-mime-shown-mode, rmail-mime-hidden-mode, rmail-mime-raw-mode)
13104 (rmail-mime-toggle-hidden, rmail-mime-insert-tagline)
13105 (rmail-mime-insert-header, rmail-mime-handle, rmail-mime-parse)
13106 (rmail-mime, rmail-show-mime): Doc fixes.
13107
13108 * term/ns-win.el (mode-line-frame-identification):
13109 Leave it alone. (Bug#10051)
13110
13111 * simple.el (mark-whole-buffer): Doc fix. (Bug#10023)
13112
13113 * mail/rmailout.el (rmail-output-to-rmail-buffer):
13114 Handle empty buffers. (Bug#9978)
13115
13116 2011-11-14 Juanma Barranquero <lekktu@gmail.com>
13117
13118 * international/mule.el (define-charset):
13119 * mail/rmailmm.el (rmail-mime-find-header-encoding):
13120 * progmodes/prolog.el (prolog-mode-hook, prolog-inferior-mode-hook):
13121 * progmodes/verilog-mode.el (verilog-backward-token):
13122 * textmodes/ispell.el (lookup-words):
13123 * textmodes/sgml-mode.el (sgml-guess-indent): Fix typos.
13124
13125 2011-11-14 Glenn Morris <rgm@gnu.org>
13126
13127 * progmodes/executable.el
13128 (executable-make-buffer-file-executable-if-script-p):
13129 Handle file-modes returning nil.
13130
13131 * mail/rmailsum.el (rmail-summary): Remove movement to beginning of
13132 message - not necessary, and causes problems. (Bug#9831)
13133
13134 * mail/rmailsum.el (rmail-new-summary): Preserve message number.
13135
13136 * mail/rmail.el (rmail-no-mail-p): Remove mode-line N/M indicator.
13137
13138 * mail/rmailsum.el (rmail-summary, rmail-new-summary)
13139 (rmail-new-summary-1): Allow empty summaries. (Bug#9964)
13140 (rmail-new-summary): Remember that rmail-summary-buffer is buffer-local.
13141
13142 2011-11-12 Martin Rudalics <rudalics@gmx.at>
13143
13144 * window.el (window-resize, delete-window): Use window-splits
13145 variable instead of function.
13146 (window-state-get-1, window-state-put-2, window-state-put):
13147 Don't deal with windows' splits status.
13148
13149 2011-11-12 Glenn Morris <rgm@gnu.org>
13150
13151 * apropos.el (apropos-do-all, apropos-library, apropos-value)
13152 (apropos-documentation): Doc fixes.
13153
13154 2011-11-11 Juanma Barranquero <lekktu@gmail.com>
13155
13156 * progmodes/idlw-shell.el (idlwave-shell-make-new-bp-overlay):
13157 * textmodes/sgml-mode.el (html-tag-help): Fix typos.
13158
13159 2011-11-11 Stefan Monnier <monnier@iro.umontreal.ca>
13160
13161 * electric.el (electric-indent-post-self-insert-function): Make it
13162 possible for a char to only indent in some circumstances.
13163 (electric-indent-mode): Simplify.
13164
13165 2011-11-11 Martin Rudalics <rudalics@gmx.at>
13166
13167 * window.el (windows-with-parameter): Remove unused function.
13168 (windows-at-side): Rename to window-at-side-list.
13169 (window-check, window-atom-check, window-atom-check-1)
13170 (window-side-check, window-size-ignore, window-size-fixed-1)
13171 (window-in-direction-2): Prefix with "window--".
13172 (window-tree-1): Rename to window--subtree, fix doc-string.
13173
13174 2011-11-11 Glenn Morris <rgm@gnu.org>
13175
13176 * subr.el (eval-after-load): If FILE is already loaded,
13177 evaluate FORM before it gets wrapped in more stuff. (Bug#10009)
13178
13179 2011-11-10 Glenn Morris <rgm@gnu.org>
13180
13181 * vc/vc-svn.el (vc-svn-create-repo, vc-svn-modify-change-comment):
13182 Call svn via vc-svn-command rather than vc-do-command.
13183 (vc-svn-command): Add --non-interactive. (Bug#9993)
13184 (vc-svn-update, vc-svn-merge-news): No need for --non-interactive.
13185
13186 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
13187 Add toggle-read-only. (Bug#7292)
13188 * files.el (toggle-read-only): Mention that it should only
13189 be used interactively. (Bug#10006)
13190
13191 2011-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
13192
13193 * progmodes/compile.el (compilation-error-regexp-alist-alist):
13194 Adjust regexp for OCaml warnings.
13195
13196 * electric.el (electric-pair-post-self-insert-function): Let user
13197 turn it off buffer-locally (bug#9932).
13198
13199 * progmodes/python.el (python-beginning-of-statement):
13200 Rewrite (bug#2703).
13201
13202 * progmodes/compile.el: Better handle TABs (bug#9749).
13203 (compilation-internal-error-properties)
13204 (compilation-next-error-function): Obey the target buffer's
13205 compilation-error-screen-columns.
13206
13207 2011-11-09 Juanma Barranquero <lekktu@gmail.com>
13208
13209 * progmodes/meta-mode.el: Remove obsolete comments.
13210 (meta-right-comment-regexp, meta-ignore-comment-regexp):
13211 Fix typos in docstrings.
13212
13213 2011-11-09 Martin Rudalics <rudalics@gmx.at>
13214
13215 * window.el (window-size-fixed-p): Rewrite doc-string.
13216 (window-resizable-p): Rename to window--resizable-p. Update callers.
13217 (window--resizable): New function. Make all callers of
13218 window-resizable call window--resizable instead.
13219 (window-resizable): Rewrite in terms of window--resizable.
13220
13221 2011-11-08 Glenn Morris <rgm@gnu.org>
13222
13223 * progmodes/delphi.el (delphi-mode-syntax-table):
13224 Let define-derived-mode define a proper syntax table. (Bug#9994)
13225
13226 2011-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
13227
13228 * window.el: Stay away from defsubst.
13229 (window-list-no-nils): Remove.
13230 (window-state-get-1, window-state-get): Use backquote instead.
13231
13232 2011-11-08 Thierry Volpiatto <thierry.volpiatto@gmail.com>
13233
13234 * emacs-lisp/find-func.el (find-function-read):
13235 Fix incorrect use of default argument in `completing-read'.
13236
13237 2011-11-08 Martin Rudalics <rudalics@gmx.at>
13238
13239 * window.el (display-buffer-function, special-display-function):
13240 Mention display-buffer-record-window but do not mention
13241 help-setup parameter in doc-strings.
13242 (window-min-delta): Fix doc-string typo.
13243
13244 2011-11-08 Chong Yidong <cyd@gnu.org>
13245
13246 * window.el (window-total-height, window-total-width): Doc fix.
13247 (window-body-size): Move from C.
13248 (window-body-height, window-body-width): Move to C.
13249
13250 2011-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
13251
13252 * window.el: Make special-display like display-buffer-alist (bug#9532).
13253 (display-buffer--special-action): New function, morphed
13254 from display-buffer--special.
13255 (display-buffer): Use it to handle special-display-buffers at higher
13256 priority (just after display-buffer-alist).
13257 (display-buffer-fallback-action, display-buffer--other-frame-action)
13258 (pop-to-buffer-same-window): Remove display-buffer--special.
13259
13260 2011-11-07 Glenn Morris <rgm@gnu.org>
13261
13262 * calendar/cal-menu.el (cal-menu-set-date-title):
13263 Do nothing if not in a calendar. (Bug#9976)
13264
13265 2011-11-07 Stefan Monnier <monnier@iro.umontreal.ca>
13266
13267 * files.el (find-file): Always use selected-window.
13268
13269 2011-11-07 Martin Rudalics <rudalics@gmx.at>
13270
13271 * window.el (window-combinations): Make WINDOW argument
13272 mandatory. Rewrite doc-string.
13273 (walk-window-subtree, window-atom-check, window-min-delta)
13274 (window-max-delta, window--resize-this-window)
13275 (window--resize-root-window-vertically, window-tree)
13276 (balance-windows, window-state-put): Rewrite doc-strings as to
13277 not mention the term "subwindow".
13278 (window--resize-subwindows-skip-p): Rename to
13279 window--resize-child-windows-skip-p.
13280 (window--resize-subwindows-normal): Rename to
13281 window--resize-child-windows-normal.
13282 (window--resize-subwindows): Rename to
13283 window--resize-child-windows.
13284 (window-or-subwindow-p): Rename to window--in-subtree-p.
13285
13286 2011-11-07 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
13287
13288 * mail/rmail.el (rmail-get-new-mail, rmail-insert-inbox-text):
13289 Ensure that mbox format messages end in two newlines (Bug#9974).
13290
13291 2011-11-06 Chong Yidong <cyd@gnu.org>
13292
13293 * window.el (window-combination-p): Function deleted; its
13294 side-effect is not used in any existing code.
13295 (window-combinations, window-combined-p): Call window-*-child
13296 directly.
13297
13298 2011-11-05 Chong Yidong <cyd@gnu.org>
13299
13300 * window.el (window-valid-p): Rename from window-any-p.
13301 (window-size-ignore, window-state-get): Callers changed.
13302 (window-normalize-window): Rename from window-normalize-any-window.
13303 New arg LIVE-ONLY, replacing window-normalize-live-window.
13304 (window-normalize-live-window): Delete.
13305 (window-combination-p, window-combined-p, window-combinations)
13306 (walk-window-subtree, window-atom-root, window-min-size)
13307 (window-sizable, window-sizable-p, window-size-fixed-p)
13308 (window-min-delta, window-max-delta, window-resizable)
13309 (window-resizable-p, window-full-height-p, window-full-width-p)
13310 (window-current-scroll-bars, window-point-1, set-window-point-1)
13311 (window-at-side-p, window-in-direction, window-resize)
13312 (adjust-window-trailing-edge, maximize-window, minimize-window)
13313 (window-deletable-p, delete-window, delete-other-windows)
13314 (record-window-buffer, unrecord-window-buffer)
13315 (switch-to-prev-buffer, switch-to-next-buffer, window--delete)
13316 (quit-window, split-window, window-state-put)
13317 (set-window-text-height, fit-window-to-buffer)
13318 (shrink-window-if-larger-than-buffer): Callers changed.
13319
13320 2011-11-04 Eli Zaretskii <eliz@gnu.org>
13321
13322 * mail/rmail.el (rmail-simplified-subject): Decode subject with
13323 rfc2047-decode-string.
13324 (rmail-mime-toggle-hidden): Declare to avoid byte-compilation
13325 warnings.
13326
13327 * window.el (window-body-height, window-body-width): Mention in
13328 the doc string that the return values are in frame's canonical
13329 units. (Bug#9949)
13330
13331 2011-11-03 Alan Mackenzie <acm@muc.de>
13332
13333 * progmodes/cc-langs.el (c-nonlabel-token-2-key): New variable for
13334 change in cc-engine.el.
13335
13336 2011-11-02 Stefan Monnier <monnier@iro.umontreal.ca>
13337
13338 * window.el (switch-to-buffer): Use `force-same-window' interactively.
13339
13340 2011-11-02 Martin Rudalics <rudalics@gmx.at>
13341
13342 * window.el (quit-window): Call unrecord-window-buffer after
13343 showing another buffer in the window. (Bug#9937)
13344 (bury-buffer): Call switch-to-prev-buffer with second argument `bury'.
13345
13346 2011-11-02 Juanma Barranquero <lekktu@gmail.com>
13347
13348 * vc/vc-bzr.el (vc-bzr-state, vc-bzr-after-dir-status):
13349 Accept status with more than 9 shelves. (Bug#9935)
13350 Reported by Colin D Bennett <colin@gibibit.com>.
13351
13352 2011-11-01 Martin Rudalics <rudalics@gmx.at>
13353
13354 * help.el (with-help-window): Don't reference
13355 temp-buffer-show-specifiers in doc-string.
13356
13357 2011-10-31 Andreas Schwab <schwab@linux-m68k.org>
13358
13359 * subr.el (keymap--menu-item-with-binding): Ignore item if not a
13360 menu-item.
13361
13362 2011-10-30 Vinicius Jose Latorre <viniciusjl@ig.com.br>
13363
13364 * whitespace.el: New version 13.2.2.
13365 (whitespace-newline-mode): Disable properly. Reported by Sarah
13366 <EmacsWiki>.
13367
13368 2011-10-30 Ulf Jasper <ulf.jasper@web.de>
13369
13370 * net/newst-treeview.el: Remove "Time-stamp".
13371 (newsticker--group-manage-orphan-feeds): Do not call
13372 newsticker--treeview-tree-update.
13373 (newsticker-treeview-update, newsticker-treeview):
13374 Call newsticker--treeview-tree-update if necessary.
13375
13376 2011-10-30 Martin Rudalics <rudalics@gmx.at>
13377
13378 * window.el (window-iso-combination-p, window-iso-combined-p)
13379 (window-iso-combinations): Remove "iso-" infix.
13380 Suggested by Chong Yidong.
13381 (window-min-size-1, window-size-fixed-1, window-min-delta-1)
13382 (window-max-delta-1, window-resize, window--resize-siblings)
13383 (window--resize-this-window, adjust-window-trailing-edge)
13384 (split-window, balance-windows-1)
13385 (shrink-window-if-larger-than-buffer):
13386 * calendar/calendar.el (calendar-generate-window):
13387 * help.el (resize-temp-buffer-window): Adjust callers accordingly.
13388
13389 2011-10-30 Stefan Monnier <monnier@iro.umontreal.ca>
13390
13391 * eshell/esh-cmd.el (eshell-rewrite-for-command): Don't modify the list
13392 in place (bug#9907).
13393 (eshell-subcommand-arg-values, eshell-rewrite-named-command)
13394 (eshell-rewrite-if-command, eshell-rewrite-for-command)
13395 (eshell-structure-basic-command, eshell-rewrite-while-command)
13396 (eshell-invokify-arg, eshell-parse-pipeline, eshell-parse-command)
13397 (eshell-parse-subcommand-argument, eshell-parse-lisp-argument)
13398 (eshell-trap-errors, eshell-do-pipelines, eshell-do-eval)
13399 (eshell-do-pipelines-synchronously, eshell-eval-command):
13400 Use backquotes and prefer setq to set.
13401 (eshell-lookup-function, function-p-func, eshell-functionp): Remove.
13402 (eshell-macrop): Use functionp.
13403 (eshell-do-eval): Handle multiple expressions in `while' body.
13404
13405 2011-10-30 Chong Yidong <cyd@gnu.org>
13406
13407 * emulation/viper-cmd.el (viper-exec-change): Use push-mark
13408 instead of set-mark (Bug#9810).
13409
13410 2011-10-30 Chong Yidong <cyd@gnu.org>
13411
13412 * window.el (split-window-below, split-window-right): Rename from
13413 split-window-above-each-other and split-window-side-by-side
13414 respectively. All callers changed.
13415 (split-window-sensibly, split-window-sensibly): Use them.
13416 (split-window-keep-point): Doc fix.
13417
13418 * isearch.el: Add isearch-scroll property to split-window-below
13419 and split-window-right.
13420
13421 * follow.el (follow-mode):
13422 * vc/pcvs-util.el (cvs-pop-to-buffer-same-frame):
13423 * progmodes/ada-xref.el (ada-gdb-application):
13424 * emulation/vip.el (vip-buffer-in-two-windows):
13425 * image-dired.el (image-dired-dired-with-window-configuration):
13426 * dired-x.el (dired-do-find-marked-files):
13427 * dired.el (dired-pop-to-buffer):
13428 * bs.el (bs--show-with-configuration):
13429 * vc/emerge.el (emerge-setup-windows):
13430 * textmodes/two-column.el (2C-two-columns):
13431 * textmodes/reftex-toc.el (reftex-toc):
13432 * progmodes/gdb-mi.el (gdb-setup-windows):
13433 * progmodes/fortran.el (fortran-window-create):
13434 * net/newst-treeview.el (newsticker--treeview-window-init):
13435 * emulation/ws-mode.el (wordstar-C-o-map, wordstar-mode):
13436 * emulation/tpu-edt.el (tpu-gold-map):
13437 * emulation/crisp.el (crisp-mode-map):
13438 * calendar/calendar.el (calendar-basic-setup): Callers changed.
13439
13440 2011-10-29 Chong Yidong <cyd@gnu.org>
13441
13442 * subr.el (y-or-n-p): Add code for batch mode (Bug#9818).
13443
13444 * mouse.el (mouse-yank-primary): Push the mark (Bug#9894).
13445
13446 * textmodes/flyspell.el (flyspell-word): Fix char offset for
13447 forged Ispell output (Bug#7904).
13448
13449 * emacs-lisp/package.el (package-refresh-contents): Add autoload.
13450
13451 2011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
13452
13453 * doc-view.el: Avoid ugly errors about not finding nil.
13454 (doc-view-ghostscript-program, doc-view-dvipdfm-program)
13455 (doc-view-dvipdf-program, doc-view-unoconv-program)
13456 (doc-view-ps2pdf-program, doc-view-pdftotext-program):
13457 Avoid nil or absolute file name as default value.
13458 (doc-view-pdf->txt, doc-view-ps->pdf): Use executable-find here.
13459
13460 2011-10-28 Alan Mackenzie <acm@muc.de>
13461
13462 * progmodes/cc-defs.el (c-version): -> 5.32.2.
13463
13464 2011-10-28 Alan Mackenzie <acm@muc.de>
13465
13466 Amend the handling of c-beginning/end-of-defun in nested declaration
13467 scopes.
13468
13469 * progmodes/cc-vars.el (c-defun-tactic): Move here from
13470 cc-langs.el. Change it to a defcustom.
13471
13472 * progmodes/cc-langs.el (c-defun-tactic): Move this variable to
13473 cc-vars.el.
13474
13475 * progmodes/cc-engine.el (c-beginning-of-statement-1):
13476 Prevent "class foo : bar" being spuriously recognized as a label.
13477
13478 * progmodes/cc-cmds.el (c-narrow-to-most-enclosing-decl-block):
13479 Add parameter `inclusive' (to include enclosing braces in the region).
13480 (c-widen-to-enclosing-decl-scope): New function.
13481 (c-while-widening-to-decl-block): New macro.
13482 (c-beginning-of-defun, c-end-of-defun): Change algorithm to keep going
13483 outward for defun boundaries, and correspondingly change symbol
13484 `respect-enclosure' to `go-outward'.
13485 (c-declaration-limits): Change algorithm to report only the "innermost"
13486 defun's boundaries.
13487
13488 2011-10-28 Deniz Dogan <deniz@dogan.se>
13489
13490 * net/rcirc.el (rcirc-mode): Use hard newlines.
13491
13492 2011-10-28 Alan Mackenzie <acm@muc.de>
13493
13494 Amend to indent and fontify macros "which include their own semicolon"
13495 correctly, using the "virtual semicolon" mechanism.
13496
13497 * progmodes/cc-defs.el: Update "virtual semicolon" comments.
13498
13499 * progmodes/cc-engine.el (c-crosses-statement-barrier-p):
13500 Recode to scan one line at a time rather than having \n and \r
13501 explicitly in c-stmt-delim-chars (for some modes, e.g. AWK).
13502 (c-forward-label): Amend for virtual semicolons.
13503 (c-at-macro-vsemi-p, c-macro-vsemi-status-unknown-p): New functions.
13504
13505 * progmodes/cc-fonts.el (c-font-lock-declarations): Take account
13506 of the new C macros.
13507
13508 * progmodes/cc-langs.el (c-at-vsemi-p-fn):
13509 (c-vsemi-status-unknown-p-fn): Move to earlier in the file.
13510 (c-opt-cpp-symbol, c-line-comment-start-regexp): New language vars.
13511 (c-opt-cpp-macro-define): Make into a full language variable.
13512 (c-stmt-delim-chars, c-stmt-delim-chars-with-comma): Special value for
13513 AWK Mode (including \n, \r) removed, no longer needed.
13514
13515 * progmodes/cc-mode.el (c-mode, c++-mode, objc-mode):
13516 Invoke c-make-macro-with-semi-re.
13517
13518 * progmodes/cc-vars.el (c-macro-with-semi-re):
13519 (c-macro-names-with-semicolon): New variables.
13520 (c-make-macro-with-semi-re): New function.
13521
13522 2011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
13523
13524 * vc/log-edit.el: Fill empty field rather than adding new one.
13525 (log-edit-add-field): New function.
13526 (log-edit-insert-changelog): Use it.
13527
13528 2011-10-28 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
13529
13530 * mail/rmail.el (rmail-mode-map): Add M-C-f as in rmailsum (bug#9802).
13531
13532 2011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
13533
13534 * progmodes/gdb-mi.el: Warn the user when -i=mi is missing.
13535 (gdb--check-interpreter): New function.
13536 (gdb): Use it.
13537
13538 2011-10-27 Glenn Morris <rgm@gnu.org>
13539
13540 * emacs-lisp/cl-extra.el (most-positive-float, most-negative-float)
13541 (least-positive-float, least-negative-float)
13542 (least-positive-normalized-float, least-negative-normalized-float)
13543 (float-epsilon, float-negative-epsilon):
13544 Remove unnecessary declarations.
13545
13546 * emacs-lisp/cl-extra.el (cl-float-limits): Add doc string.
13547 * emacs-lisp/cl.el (most-positive-float, most-negative-float)
13548 (least-positive-float, least-negative-float)
13549 (least-positive-normalized-float, least-negative-normalized-float)
13550 (float-epsilon, float-negative-epsilon): Add doc-strings,
13551 based on those in cl.texi.
13552
13553 * files.el (set-visited-file-name): If the major-mode changed,
13554 reload the local variables. (Bug#9796)
13555
13556 2011-10-27 Chong Yidong <cyd@gnu.org>
13557
13558 * subr.el (change-major-mode-after-body-hook): New hook.
13559 (run-mode-hooks): Run it.
13560
13561 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
13562 Use change-major-mode-before-body-hook.
13563
13564 * simple.el (fundamental-mode):
13565 * emacs-lisp/derived.el (define-derived-mode): Revert 2010-04-28
13566 change introducing fundamental-mode-hook.
13567
13568 2011-10-26 Juanma Barranquero <lekktu@gmail.com>
13569
13570 * term/w32-win.el (w32-default-color-map): Declare obsolete (Bug#9785).
13571
13572 2011-10-26 Michael Albinus <michael.albinus@gmx.de>
13573
13574 * ido.el (ido-file-name-all-completions-1): Do not require
13575 tramp.el explicitly. (Bug#7583)
13576
13577 2011-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
13578
13579 * progmodes/octave-mod.el:
13580 * progmodes/octave-inf.el: Update maintainer.
13581
13582 2011-10-26 Chong Yidong <cyd@gnu.org>
13583
13584 * subr.el (with-wrapper-hook): Rewrite doc.
13585
13586 2011-10-25 Michael Albinus <michael.albinus@gmx.de>
13587
13588 * net/tramp-sh.el (tramp-sh-handle-file-directory-p): Return t for
13589 filenames "/method:foo:". (Bug#9793)
13590
13591 2011-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
13592
13593 * comint.el (comint-get-old-input-default): Fix use-prompt-regexp case
13594 (bug#9865).
13595
13596 2011-10-24 Glenn Morris <rgm@gnu.org>
13597
13598 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix. (Bug#9819)
13599
13600 2011-10-24 Michael Albinus <michael.albinus@gmx.de>
13601
13602 * notifications.el: Add the requirement of a running D-Bus session
13603 bus to the Commentary.
13604
13605 2011-10-24 Juri Linkov <juri@jurta.org>
13606
13607 * isearch.el (isearch-occur): Let-bind `search-spaces-regexp' to
13608 `search-whitespace-regexp' only when `isearch-regexp' is non-nil.
13609 (Bug#9364)
13610
13611 2011-10-24 Juri Linkov <juri@jurta.org>
13612
13613 * info.el (Info-following-node-name-re): Add newline to the list
13614 of allowed characters for leading space. (Bug#9824)
13615
13616 2011-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
13617
13618 * progmodes/octave-inf.el (inferior-octave-mode-map):
13619 Fix C-c C-h binding.
13620 * progmodes/octave-mod.el (octave-help): Remove.
13621
13622 2011-10-23 Michael Albinus <michael.albinus@gmx.de>
13623
13624 Sync with Tramp 2.2.3.
13625
13626 * net/tramp-cache.el (top): Pacify byte-compiler using
13627 `init-file-user' and `site-run-file'.
13628
13629 * net/trampver.el: Update release number.
13630
13631 2011-10-23 Chong Yidong <cyd@gnu.org>
13632
13633 * files.el (toggle-read-only): Remove obsolete comment about
13634 version control.
13635
13636 * vc/vc-hooks.el (vc-toggle-read-only): Make it an obsolete alias
13637 for toggle-read-only. Note that this hasn't called vc-next-action
13638 since 2008-05-02, though it wasn't documented at the time.
13639
13640 * vc/ediff-init.el (ediff-toggle-read-only-function):
13641 Use toggle-read-only.
13642
13643 2011-10-22 Alan Mackenzie <bug-cc-mode@gnu.org>
13644
13645 Fix bug #9560, sporadic wrong indentation; improve instrumentation
13646 of c-parse-state.
13647
13648 * progmodes/cc-engine.el (c-append-lower-brace-pair-to-state-cache):
13649 correct faulty logical expression.
13650 (c-parse-state-state, c-record-parse-state-state):
13651 (c-replay-parse-state-state): New defvar/defuns.
13652 (c-debug-parse-state): Use new functions.
13653
13654 2011-10-22 Martin Rudalics <rudalics@gmx.at>
13655
13656 * mouse.el (mouse-drag-line): Fix minibuffer resizing broken by
13657 last fix. Use window-in-direction correctly.
13658
13659 2011-10-21 Chong Yidong <cyd@gnu.org>
13660
13661 * progmodes/idlwave.el (idlwave-mode):
13662 * progmodes/vera-mode.el (vera-mode): No need to set
13663 require-final-newline; that's done in prog-mode.
13664 Suggested by Stefan Monnier.
13665
13666 2011-10-21 Martin Rudalics <rudalics@gmx.at>
13667
13668 * mouse.el (mouse-drag-window-above)
13669 (mouse-drag-move-window-bottom, mouse-drag-move-window-top)
13670 (mouse-drag-mode-line-1, mouse-drag-header-line)
13671 (mouse-drag-vertical-line-rightward-window): Remove.
13672 (mouse-drag-line): New function.
13673 (mouse-drag-mode-line, mouse-drag-header-line)
13674 (mouse-drag-vertical-line): Call mouse-drag-line.
13675 * window.el (window-at-side-p, windows-at-side): New functions.
13676
13677 2011-10-21 Ulrich Mueller <ulm@gentoo.org>
13678
13679 * tar-mode.el (tar-grind-file-mode):
13680 Fix handling of setuid/setgid, handle sticky bit. (Bug#9817)
13681
13682 2011-10-21 Chong Yidong <cyd@gnu.org>
13683
13684 * progmodes/idlwave.el (idlwave-mode):
13685 * progmodes/vera-mode.el (vera-mode):
13686 Use mode-require-final-newline.
13687
13688 2011-10-20 Glenn Morris <rgm@gnu.org>
13689
13690 * vc/vc.el (vc-next-action): Handle removed directories. (Bug#9781)
13691
13692 2011-10-20 Christoph Scholtes <cschol2112@googlemail.com>
13693
13694 * emulation/cua-base.el (cua-set-mark): Fix case of string.
13695
13696 2011-10-20 Chong Yidong <cyd@gnu.org>
13697
13698 * emulation/cua-base.el (cua-mode):
13699 * mail/footnote.el (footnote-mode):
13700 * mail/mailabbrev.el (mail-abbrevs-mode):
13701 * net/xesam.el (xesam-minor-mode):
13702 * progmodes/bug-reference.el (bug-reference-mode):
13703 * progmodes/cap-words.el (capitalized-words-mode):
13704 * progmodes/compile.el (compilation-minor-mode)
13705 (compilation-shell-minor-mode):
13706 * progmodes/gud.el (gud-tooltip-mode):
13707 * progmodes/hideif.el (hide-ifdef-mode):
13708 * progmodes/idlw-shell.el (idlwave-shell-electric-debug-mode):
13709 * progmodes/subword.el (subword-mode):
13710 * progmodes/vhdl-mode.el (vhdl-electric-mode, vhdl-stutter-mode):
13711 * progmodes/which-func.el (which-function-mode):
13712 * term/tvi970.el (tvi970-set-keypad-mode):
13713 * term/vt100.el (vt100-wide-mode):
13714 * textmodes/flyspell.el (flyspell-mode):
13715 * textmodes/ispell.el (ispell-minor-mode):
13716 * textmodes/nroff-mode.el (nroff-electric-mode):
13717 * textmodes/paragraphs.el (use-hard-newlines):
13718 * textmodes/refill.el (refill-mode):
13719 * textmodes/reftex.el (reftex-mode):
13720 * textmodes/rst.el (rst-minor-mode):
13721 * textmodes/sgml-mode.el (html-autoview-mode)
13722 (sgml-electric-tag-pair-mode):
13723 * textmodes/tex-mode.el (latex-electric-env-pair-mode):
13724 * vc/diff-mode.el (diff-auto-refine-mode, diff-minor-mode):
13725 * emulation/crisp.el (crisp-mode):
13726 * emacs-lisp/eldoc.el (eldoc-mode):
13727 * emacs-lisp/checkdoc.el (checkdoc-minor-mode): Doc fixes for new
13728 minor mode behavior.
13729
13730 2011-10-19 Juri Linkov <juri@jurta.org>
13731
13732 * descr-text.el (describe-char): Add #x2010 and #x2011 to
13733 the list of hard-coded chars with escape-glyph face.
13734
13735 2011-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
13736
13737 * vc/log-edit.el (log-edit-empty-buffer-p): Ignore empty headers.
13738
13739 2011-10-19 Michael Albinus <michael.albinus@gmx.de>
13740
13741 * net/tramp.el (tramp-connectable-p): Make a stronger check on a
13742 running process.
13743
13744 2011-10-19 Glenn Morris <rgm@gnu.org>
13745
13746 * vc/vc-bzr.el (vc-bzr-after-dir-status):
13747 Ignore ignored files. (Bug#9726)
13748
13749 2011-10-19 Chong Yidong <cyd@gnu.org>
13750
13751 Doc fix for minor modes, stating that an omitted argument enables
13752 the mode unconditionally when called from Lisp.
13753
13754 * abbrev.el (abbrev-mode):
13755 * allout.el (allout-mode):
13756 * autoinsert.el (auto-insert-mode):
13757 * autoarg.el (autoarg-mode, autoarg-kp-mode):
13758 * autorevert.el (auto-revert-mode, auto-revert-tail-mode)
13759 (global-auto-revert-mode):
13760 * battery.el (display-battery-mode):
13761 * composite.el (global-auto-composition-mode)
13762 (auto-composition-mode):
13763 * delsel.el (delete-selection-mode):
13764 * desktop.el (desktop-save-mode):
13765 * dired-x.el (dired-omit-mode):
13766 * dirtrack.el (dirtrack-mode):
13767 * doc-view.el (doc-view-minor-mode):
13768 * double.el (double-mode):
13769 * electric.el (electric-indent-mode, electric-pair-mode):
13770 * emacs-lock.el (emacs-lock-mode):
13771 * epa-hook.el (auto-encryption-mode):
13772 * follow.el (follow-mode):
13773 * font-core.el (font-lock-mode):
13774 * frame.el (auto-raise-mode, auto-lower-mode, blink-cursor-mode):
13775 * help.el (temp-buffer-resize-mode):
13776 * hilit-chg.el (highlight-changes-mode)
13777 (highlight-changes-visible-mode):
13778 * hi-lock.el (hi-lock-mode):
13779 * hl-line.el (hl-line-mode, global-hl-line-mode):
13780 * icomplete.el (icomplete-mode):
13781 * ido.el (ido-everywhere):
13782 * image-file.el (auto-image-file-mode):
13783 * image-mode.el (image-minor-mode):
13784 * iswitchb.el (iswitchb-mode):
13785 * jka-cmpr-hook.el (auto-compression-mode):
13786 * linum.el (linum-mode):
13787 * longlines.el (longlines-mode):
13788 * master.el (master-mode):
13789 * mb-depth.el (minibuffer-depth-indicate-mode):
13790 * menu-bar.el (menu-bar-mode):
13791 * minibuf-eldef.el (minibuffer-electric-default-mode):
13792 * mouse-sel.el (mouse-sel-mode):
13793 * msb.el (msb-mode):
13794 * mwheel.el (mouse-wheel-mode):
13795 * outline.el (outline-minor-mode):
13796 * paren.el (show-paren-mode):
13797 * recentf.el (recentf-mode):
13798 * reveal.el (reveal-mode, global-reveal-mode):
13799 * rfn-eshadow.el (file-name-shadow-mode):
13800 * ruler-mode.el (ruler-mode):
13801 * savehist.el (savehist-mode):
13802 * scroll-all.el (scroll-all-mode):
13803 * scroll-bar.el (scroll-bar-mode):
13804 * server.el (server-mode):
13805 * shell.el (shell-dirtrack-mode):
13806 * simple.el (auto-fill-mode, transient-mark-mode)
13807 (visual-line-mode, overwrite-mode, binary-overwrite-mode)
13808 (line-number-mode, column-number-mode, size-indication-mode)
13809 (auto-save-mode, normal-erase-is-backspace-mode, visible-mode):
13810 * strokes.el (strokes-mode):
13811 * time.el (display-time-mode):
13812 * t-mouse.el (gpm-mouse-mode):
13813 * tool-bar.el (tool-bar-mode):
13814 * tooltip.el (tooltip-mode):
13815 * type-break.el (type-break-mode-line-message-mode)
13816 (type-break-query-mode):
13817 * view.el (view-mode):
13818 * whitespace.el (whitespace-mode, whitespace-newline-mode)
13819 (global-whitespace-mode, global-whitespace-newline-mode):
13820 * xt-mouse.el (xterm-mouse-mode): Doc fix.
13821
13822 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
13823 Fix autogenerated docstring.
13824
13825 2011-10-19 Juri Linkov <juri@jurta.org>
13826
13827 * net/browse-url.el (browse-url-can-use-xdg-open): Support LXDE
13828 by checking environment variables "DESKTOP_SESSION" and
13829 "XDG_CURRENT_DESKTOP". (Bug#9779)
13830
13831 2011-10-19 Juri Linkov <juri@jurta.org>
13832
13833 * net/browse-url.el (browse-url-browser-function): Add "Chromium".
13834 (browse-url-chromium-program, browse-url-chromium-arguments):
13835 New defcustoms.
13836 (browse-url-default-browser): Check for `browse-url-chromium' and
13837 call `browse-url-chromium-program'.
13838 (browse-url-chromium): New command. (Bug#9779)
13839
13840 2011-10-18 Juanma Barranquero <lekktu@gmail.com>
13841
13842 * facemenu.el (list-colors-duplicates): On Windows, detect more
13843 duplicates by assuming that only colors matching "^System" are
13844 special "system colors". (Bug#9722)
13845
13846 2011-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
13847
13848 * vc/log-edit.el (log-edit): Add "Author:" header to encourage people
13849 to distinguish the author from the committer.
13850
13851 2011-10-18 Michael Albinus <michael.albinus@gmx.de>
13852
13853 * net/tramp.el (tramp-file-name-handler): Load Tramp packages silently.
13854
13855 2011-10-18 Jirka Kosek <jirka@kosek.cz> (tiny change)
13856
13857 * international/mule.el (sgml-html-meta-auto-coding-function):
13858 Add support for detecting encoding in HTML5 specified only as
13859 <meta charset="UTF-8">. Implementation just makes http-equiv and
13860 content-type parts from HTML4 encoding string optional. (Bug#9716)
13861
13862 2011-10-18 Glenn Morris <rgm@gnu.org>
13863
13864 * vc/vc.el (vc-initial-comment): Mark as obsolete. (Bug#9745)
13865
13866 2011-10-18 Chong Yidong <cyd@gnu.org>
13867
13868 * faces.el (cursor): Doc fix.
13869
13870 2011-10-17 Chong Yidong <cyd@gnu.org>
13871
13872 * font-lock.el (font-lock-maximum-size): Mark as obsolete.
13873
13874 2011-10-17 Ryan Barrett <emacs@ryanb.org> (tiny change)
13875
13876 * dirtrack.el (dirtrack): Support shell buffers with path
13877 prefixes, e.g. tramp-based remote shells. (Bug#9647)
13878
13879 2011-10-17 Teodor Zlatanov <tzz@lifelogs.com>
13880
13881 * json.el: Bump version to 1.3 and note change in History.
13882 (json-alist-p, json-plist-p): Rewrite to avoid recursion.
13883
13884 2011-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
13885
13886 * comint.el (comint-insert-input, comint-send-input)
13887 (comint-get-old-input-default, comint-backward-matching-input)
13888 (comint-next-prompt): Use nil instead of `input' for field property of
13889 past user input (bug#114).
13890
13891 * minibuffer.el (completion--replace): Inherit surrounding properties
13892 (bug#114).
13893 (minibuffer-complete-and-exit): Use it.
13894
13895 * comint.el (comint--table-subvert): Quote the all-completions output
13896 (bug#9160).
13897
13898 2011-10-17 Martin Rudalics <rudalics@gmx.at>
13899
13900 * ido.el (ido-default-buffer-method): Remove redundant :type entry.
13901
13902 * menu-bar.el (menu-bar-file-menu): Add entry for making new
13903 window on right of selected. (Bug#9350) Reword other window
13904 entries and separate them from frame entries.
13905
13906 2011-10-15 Glenn Morris <rgm@gnu.org>
13907
13908 * emacs-lisp/ert.el (ert--explain-equal-rec, ert-select-tests):
13909 Doc fixes.
13910
13911 2011-10-15 Chong Yidong <cyd@stupidchicken.com>
13912
13913 * net/network-stream.el (network-stream-open-starttls):
13914 Improve detection of failure due to lack of TLS support.
13915
13916 * mail/sendmail.el (sendmail-query-once): Tweak prompt message,
13917 putting the input text in front and in bold.
13918
13919 2011-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
13920
13921 * pcmpl-unix.el (pcomplete/ssh): SSH does allow ganging.
13922
13923 * mpc.el (mpc-songs-jump-to): Don't burp if the user clicks in an
13924 empty buffer.
13925
13926 * mouse.el (mouse-drag-mode-line-1): Modify the end-event we pushed on
13927 unread-command-events rather than pushing yet-another event.
13928
13929 2011-10-14 Eli Zaretskii <eliz@gnu.org>
13930
13931 * mail/sendmail.el (sendmail-query-once): Improve the wording of
13932 the explanation of the possible choices. Make the options passed
13933 to completing-read shorter.
13934
13935 2011-10-13 Agustín Martín Domingo <agustin.martin@hispalinux.es>
13936
13937 * textmodes/flyspell.el (flyspell-large-region): Make sure
13938 extended character mode is used if defined (Bug#1339).
13939
13940 2011-10-13 Eli Zaretskii <eliz@gnu.org>
13941
13942 * simple.el (what-cursor-position): Fix the display of the
13943 character info for LRE, LRO, RLE, and RLO characters by appending
13944 an invisible PDF.
13945
13946 2011-10-13 Stefan Monnier <monnier@iro.umontreal.ca>
13947
13948 * emacs-lisp/timer.el (with-timeout): Make sure we cancel the timer
13949 even in case of error; add debug spec; simplify data flow.
13950 (with-timeout-handler): Remove.
13951
13952 2011-10-12 Michael Albinus <michael.albinus@gmx.de>
13953
13954 Fix Bug#6019, Bug#9315.
13955
13956 * files.el (set-auto-mode): Call `file-name-sans-versions' for the
13957 complete `buffer-file-name', the local file name part could look
13958 remotely (for example on VMS).
13959
13960 * net/ange-ftp.el (ange-ftp-run-real-handler): Make it an alias of
13961 `tramp-run-real-handler'.
13962 (ange-ftp-fix-name-for-vms): Handle the case, where `name' is
13963 already quoted by '"'.
13964
13965 * net/tramp.el (tramp-rfn-eshadow-update-overlay): Ignore errors.
13966 Let `file-name-handler-alist' be nil, the local file name part
13967 could look remotely (for example on VMS).
13968
13969 2011-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
13970
13971 * textmodes/flyspell.el (flyspell-word): Move with-local-quit
13972 from here...
13973 (flyspell-post-command-hook): ...to here.
13974
13975 2011-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
13976
13977 * mail/sendmail.el (send-mail-function): Don't use sendmail-query-once
13978 if not needed.
13979 (sendmail-query-once): Remove OS dependencies. Make it a 3-way choice
13980 using completion. Protect against "slow" callers.
13981 Remove the "message hack".
13982
13983 2011-10-11 Juri Linkov <juri@jurta.org>
13984
13985 * isearch.el (isearch-lazy-highlight-word): New variable.
13986 (isearch-lazy-highlight-new-loop, isearch-lazy-highlight-search):
13987 Use it. (Bug#9727)
13988
13989 2011-10-11 Glenn Morris <rgm@gnu.org>
13990
13991 * progmodes/f90.el (f90-next-statement): Ignore preprocessor lines,
13992 like f90-previous-statement does.
13993
13994 2011-10-11 Thierry Volpiatto <thierry.volpiatto@gmail.com>
13995
13996 * eshell/eshell.el (eshell-command): History should be saved
13997 only in interactive use, to avoid error.
13998
13999 2011-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
14000
14001 * minibuffer.el (completion-file-name-table): Fix last change,
14002 i.e. ignore normal errors but not the other ones.
14003
14004 2011-10-10 Martin Rudalics <rudalics@gmx.at>
14005
14006 * window.el (special-display-buffer-names)
14007 (special-display-regexps): Remove some remnants of earlier
14008 changes from doc-strings.
14009 (quit-windows-on): New function.
14010
14011 * vc/vc.el (vc-revert, vc-rollback):
14012 * vc/vc-dispatcher.el (vc-finish-logentry): Call quit-windows-on
14013 instead of deleting windows. (Bug#4557) (Bug#5310) (Bug#5556)
14014 (Bug#6183) (Bug#7074) (Bug#7447)
14015
14016 2011-10-09 Martin Rudalics <rudalics@gmx.at>
14017
14018 * window.el (frame-auto-hide-function): Add version tag.
14019 (Bug#9699)
14020
14021 2011-10-09 Michael Albinus <michael.albinus@gmx.de>
14022
14023 * net/tramp.el (tramp-file-name-handler): Add 'debug to the error
14024 condition.
14025
14026 2011-10-09 Leo Liu <sdl.web@gmail.com>
14027
14028 * mail/smtpmail.el (smtpmail-send-data): Add a missing space.
14029 (Bug#9701)
14030
14031 2011-10-08 Glenn Morris <rgm@gnu.org>
14032
14033 * progmodes/f90.el (f90-calculate-indent): Give preprocessor lines
14034 before the first code statement zero indent. (Bug#9690)
14035
14036 2011-10-08 Chong Yidong <cyd@stupidchicken.com>
14037
14038 * simple.el (count-words-region): Always count in the region.
14039 Report the number of lines and characters too.
14040 (count-words): New command, which counts in the buffer if the
14041 region is inactive, as count-words-region used to.
14042 (count-words--message): New function. Handle plurals.
14043 (count-lines-region): Make it an alias for count-words-region.
14044
14045 * bindings.el (esc-map): Replace count-lines-region with
14046 count-words-region.
14047
14048 2011-10-08 Martin Rudalics <rudalics@gmx.at>
14049
14050 * window.el (window--delete): Delete dedicated frame
14051 unconditionally when argument KILL is non-nil. (Bug#9699)
14052 (switch-to-buffer): Fix doc-string typo.
14053
14054 2011-10-08 Thierry Volpiatto <thierry.volpiatto@gmail.com>
14055
14056 * eshell/eshell.el (eshell-command): Avoid using hooks.
14057
14058 2011-10-07 Chong Yidong <cyd@stupidchicken.com>
14059
14060 * bindings.el ([M-left],[M-right]): Bind to left-word and
14061 right-word respectively.
14062
14063 2011-10-07 Glenn Morris <rgm@gnu.org>
14064
14065 * cus-start.el (debug-on-quit): Fix custom type.
14066
14067 2011-10-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
14068
14069 * subr.el (define-key-after): Clarify that the function is not
14070 useful for non-menu keymaps.
14071
14072 * progmodes/gdb-mi.el (gdb): Fix typo in doc string.
14073
14074 2011-10-06 Thierry Volpiatto <thierry.volpiatto@gmail.com>
14075
14076 * eshell/eshell.el (eshell-command): Enable `eshell-mode' only
14077 in current minibuffer (Fix bug with recursive minibuffers).
14078
14079 2011-10-06 Chong Yidong <cyd@stupidchicken.com>
14080
14081 * progmodes/gdb-mi.el (gdb): Doc fix.
14082
14083 2011-10-05 Martin Rudalics <rudalics@gmx.at>
14084
14085 * window.el (frame-auto-hide-function): New option replacing
14086 frame-auto-delete. Suggested by Stefan Monnier.
14087 (window--delete): Call frame-auto-hide-function instead of
14088 investigating frame-auto-delete.
14089 (window-point-1, set-window-point-1): New functions.
14090 (window-in-direction, record-window-buffer, window-state-get-1)
14091 (display-buffer-record-window): Use window-point-1 instead of
14092 window-point.
14093 (set-window-buffer-start-and-point): Use set-window-point-1.
14094
14095 2011-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
14096
14097 * emacs-lisp/edebug.el: Heed checkdoc recommendations.
14098
14099 2011-10-05 Glenn Morris <rgm@gnu.org>
14100
14101 * progmodes/perl-mode.el (perl-electric-terminator): Doc fix.
14102 (perl-calculate-indent): Suppress scan errors. (Bug#2205)
14103
14104 2011-10-05 Leo Liu <sdl.web@gmail.com>
14105
14106 * subr.el (read-char-choice): Fix argument to buffer-live-p which
14107 works with buffer object.
14108
14109 2011-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
14110
14111 * mpc.el (mpc-tool-bar-map): Add labels.
14112
14113 2011-10-04 Glenn Morris <rgm@gnu.org>
14114
14115 * calendar/holidays.el (calendar-check-holidays): Doc fix.
14116
14117 2011-10-04 Martin Rudalics <rudalics@gmx.at>
14118
14119 * window.el (window--delete): New function.
14120 (frame-auto-delete): Resuscitate option.
14121 (bury-buffer, replace-buffer-in-windows)
14122 (quit-window): Rewrite using window--delete.
14123 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
14124 Pass display-buffer-mark-dedicated to window--display-buffer-2
14125 (Bug#9639).
14126
14127 2011-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
14128
14129 * pcmpl-unix.el (pcomplete/scp): Don't assume pcomplete-all-entries
14130 returns a list (bug#9554). Add remote file name completion.
14131 * comint.el (comint--table-subvert): Curry and get quote&unquote
14132 functions as arguments.
14133 (comint--complete-file-name-data): Adjust call accordingly.
14134 * pcomplete.el (pcomplete--table-subvert): Remove.
14135 (pcomplete-completions-at-point): Use comint--table-subvert instead.
14136
14137 * minibuffer.el (completion-table-case-fold): Use currying.
14138 (completion--styles-type, completion--cycling-threshold-type):
14139 New constants.
14140 (completion-styles, completion-category-overrides)
14141 (completion-cycle-threshold): Use them.
14142 * pcomplete.el (pcomplete-completions-at-point): Adjust call to
14143 completion-table-case-fold.
14144
14145 2011-10-03 Stephen Berman <stephen.berman@gmx.net>
14146
14147 * minibuffer.el (completion-category-overrides): Fix type of styles
14148 and add more user friendly tags (bug#9660).
14149
14150 2011-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
14151
14152 * international/mule-cmds.el: Fix abuses of apply-partially (bug#9661).
14153 (mule-input-method-string): New widget.
14154 (default-input-method, language-info-custom-alist): Use it.
14155
14156 2011-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
14157
14158 * pcomplete.el: Require comint.
14159 (pcomplete--common-suffix): Remove.
14160 (pcomplete--common-quoted-suffix): Use comint--common-suffix instead.
14161 (pcomplete--table-subvert): Sync with comint--table-subvert.
14162 (pcomplete--entries): Use comint-completion-file-name-table.
14163 * comint.el (comint-unquote-filename): Simplify.
14164 (comint-completion-file-name-table): New function (bug#9616).
14165 (comint--complete-file-name-data): Use it.
14166
14167 * pcmpl-gnu.el (pcmpl-gnu-with-file-buffer): New macro (bug#9643).
14168 (pcmpl-gnu-tar-buffer): Remove.
14169 (pcmpl-gnu-with-file-buffer): Use it to avoid leaving the tar's buffer
14170 around. Make sure pcomplete-suffix-list is only changed temporarily.
14171 Don't look inside the tar's file if it's too large.
14172
14173 2011-10-01 Chong Yidong <cyd@stupidchicken.com>
14174
14175 * cus-edit.el (custom-mode-map):
14176 * epa.el (epa-key-list-mode-map):
14177 * man.el (Man-mode-map):
14178 * startup.el (splash-screen-keymap):
14179 * simple.el (special-mode-map): Use scroll-up-command and
14180 scroll-down-command.
14181
14182 * progmodes/idlw-help.el (idlwave-help-mode-map):
14183 * progmodes/ebrowse.el (ebrowse-electric-position-mode-map):
14184 * net/newst-plainview.el (newsticker-mode-map):
14185 * emulation/ws-mode.el (wordstar-mode-map):
14186 * emulation/vi.el (vi-com-map):
14187 * calc/calc-graph.el (calc-graph-show-dumb):
14188 * term/sun.el (terminal-init-sun):
14189 * term/ns-win.el (global-map):
14190 * progmodes/grep.el (grep-mode-map):
14191 * progmodes/ebrowse.el (ebrowse-electric-list-mode-map):
14192 * mail/rmail.el (rmail-mode-map):
14193 * progmodes/cpp.el (cpp-edit-mode-map): Likewise.
14194
14195 * custom.el (custom-safe-themes, load-theme): Treat value of t for
14196 custom-safe-themes as special.
14197
14198 2011-10-01 Julien Danjou <julien@danjou.info>
14199
14200 * notifications.el (notifications-notify): Fix docstring.
14201
14202 2011-10-01 Per Starbäck <per@starback.se>
14203
14204 * pcmpl-gnu.el (pcomplete/tar): Fix tar-header-name call. (Bug#9643)
14205
14206 2011-09-30 Martin Rudalics <rudalics@gmx.at>
14207
14208 * startup.el (command-line-1): Fix last fix by inserting
14209 initial-scratch-message into *scratch* before displaying it.
14210 (Bug#9605) and (Bug#9636)
14211
14212 2011-09-29 Eli Zaretskii <eliz@gnu.org>
14213
14214 * simple.el (line-move): If auto-hscroll-mode is disabled and the
14215 window is hscrolled, move by logical lines. (Bug#9607)
14216 (line-move-visual): Update the doc string to the above effect.
14217
14218 2011-09-29 Martin Rudalics <rudalics@gmx.at>
14219
14220 * window.el (display-buffer-record-window): When WINDOW is the
14221 selected window use `point' instead of `window-point'. (Bug#9626)
14222
14223 * startup.el (command-line-1): Use insert-before-markers when
14224 inserting initial-scratch-message. (Bug#9605)
14225
14226 * help.el (help-window): Remove variable.
14227
14228 2011-09-29 Glenn Morris <rgm@gnu.org>
14229
14230 * pcmpl-cvs.el (pcomplete/cvs): Add "status" handler.
14231
14232 2011-09-29 Juanma Barranquero <lekktu@gmail.com>
14233
14234 * descr-text.el (describe-char-categories): Accept category
14235 descriptions more than one line long.
14236
14237 2011-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
14238
14239 * simple.el (delete-trailing-whitespace): Fix last change.
14240
14241 * progmodes/perl-mode.el (perl-syntax-propertize-function):
14242 Don't confuse "y => 3" as the beginning of a `y' operation.
14243
14244 * emacs-lisp/debug.el (debug-convert-byte-code): Don't assume the
14245 object has more than 4 slots (bug#9613).
14246
14247 2011-09-28 Juanma Barranquero <lekktu@gmail.com>
14248
14249 * subr.el (with-output-to-temp-buffer):
14250 * net/quickurl.el (quickurl, quickurl-browse-url):
14251 Fix typos in docstrings.
14252
14253 2011-09-27 Eli Zaretskii <eliz@gnu.org>
14254
14255 * minibuffer.el (completion-styles)
14256 (completion-category-overrides): Cross reference each other in doc
14257 strings.
14258
14259 2011-09-27 Glenn Morris <rgm@gnu.org>
14260
14261 * pcmpl-cvs.el (pcmpl-cvs-entries): Update for Emacs 22.1 changes
14262 to split-string. (Bug#9606)
14263
14264 2011-09-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
14265
14266 * mail/smtpmail.el (smtpmail-via-smtp): Fix STARTTLS detection
14267 (bug#9615).
14268
14269 2011-09-27 Chong Yidong <cyd@stupidchicken.com>
14270
14271 * emacs-lisp/package.el (list-packages): Fix echo area message.
14272
14273 2011-09-27 Leo Liu <sdl.web@gmail.com>
14274
14275 * ido.el (ido-read-internal): Accept cons cell HIST arg.
14276
14277 2011-09-25 Michael Albinus <michael.albinus@gmx.de>
14278
14279 * net/dbus.el (dbus-unregister-object): Don't release services for
14280 registered signals. (Bug#9581)
14281
14282 2011-09-25 Teodor Zlatanov <tzz@lifelogs.com>
14283
14284 * progmodes/cfengine.el (cfengine-auto-mode): Add convenience
14285 function that picks between cfengine 2 and 3 support
14286 automatically. Update docs accordingly.
14287
14288 2011-09-22 Kenichi Handa <handa@m17n.org>
14289
14290 * language/ind-util.el (indian-tml-base-table): Add TAMIL DIGIT
14291 ZERO.
14292 (indian-itrans-v5-table-for-tamil): New variable.
14293 (indian-tml-itrans-v5-hash): Use the above variable (Bug#9336).
14294
14295 2011-09-22 Ken Manheimer <ken.manheimer@gmail.com>
14296
14297 * allout.el (allout-this-command-hid-stuff): Buffer-local variable
14298 that's true if the current command involved collapsing of text.
14299 It's reset to false at the beginning of the next command.
14300 (allout-post-command-business): Move the cursor to the beginning
14301 of entry if the cursor is hidden and collapsing activity just
14302 happened.
14303
14304 2011-09-24 Chong Yidong <cyd@stupidchicken.com>
14305
14306 * mouse.el (mouse-drag-track): Set scroll-margin to 0 while
14307 tracking (Bug#9541).
14308
14309 2011-09-24 Ulf Jasper <ulf.jasper@web.de>
14310
14311 * net/newst-reader.el (newsticker-html-renderer)
14312 (newsticker-show-news): Automatically load html rendering package
14313 if newsticker-html-renderer is set. Fixes "Warning: defvar ignored
14314 because w3m-fill-column is let-bound" and the error "Symbol's value
14315 as variable is void: w3m-fill-column".
14316
14317 2011-09-24 Michael Albinus <michael.albinus@gmx.de>
14318
14319 * net/dbus.el (dbus-unregister-object): Remove match rule of signals.
14320 Release services only if they are defined. (Bug#9581)
14321
14322 2011-09-23 Richard Stallman <rms@gnu.org>
14323
14324 * textmodes/paragraphs.el (forward-sentence): For backwards case,
14325 distinguish start of paragraph from start of its text.
14326
14327 * mail/emacsbug.el (report-emacs-bug-query-existing-bugs): Autoload.
14328
14329 * mail/rmail.el (rmail-view-buffer-kill-buffer-hook): New function.
14330 (rmail-generate-viewer-buffer): Put that hook on view buffer.
14331 (rmail-mode-kill-buffer-hook): Override that hook, to kill view buffer.
14332
14333 2011-09-23 Andreas Schwab <schwab@linux-m68k.org>
14334
14335 * international/mule-diag.el (mule-diag): Insert a newline after
14336 each fontset description.
14337
14338 2011-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
14339
14340 * simple.el (delete-trailing-whitespace):
14341 Document last change; simplify.
14342
14343 2011-09-23 Peter J. Weisberg <pj@irregularexpressions.net>
14344
14345 * simple.el (delete-trailing-whitespace): Also delete
14346 extra newlines at the end of the buffer.
14347
14348 * textmodes/picture.el: Make motion commands obey shift-select-mode.
14349 (picture-newline): Use forward-line so as to ignore fields.
14350
14351 2011-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
14352
14353 * subr.el (with-wrapper-hook): Fix edebug spec.
14354
14355 2011-09-23 Lars Magne Ingebrigtsen <larsi@gnus.org>
14356
14357 * simple.el (kill-line): Note effect of `show-trailing-whitespace'
14358 (bug#4538).
14359
14360 2011-09-23 Michael Albinus <michael.albinus@gmx.de>
14361
14362 * net/tramp-sh.el (tramp-sh-handle-file-name-all-completions):
14363 Fix nasty bug using wrong cached values.
14364
14365 2011-09-23 Alan Mackenzie <acm@muc.de>
14366
14367 * progmodes/cc-defs.el (c-version): Increase to 5.31.9.
14368
14369 2011-09-23 Chong Yidong <cyd@stupidchicken.com>
14370
14371 * window.el (pop-to-buffer): Ensure right window is selected if we
14372 chose another frame.
14373
14374 2011-09-22 Eli Zaretskii <eliz@gnu.org>
14375
14376 * simple.el (what-cursor-position): Use get-char-property-change
14377 and next-single-char-property-change, to be able to show display
14378 properties that come from overlays as well as text properties.
14379
14380 2011-09-22 Chong Yidong <cyd@stupidchicken.com>
14381
14382 * window.el (pop-to-buffer-same-window): New (reinstated) fun.
14383
14384 * cmuscheme.el (run-scheme, switch-to-scheme):
14385 * cus-edit.el (customize-group, custom-buffer-create)
14386 (customize-browse):
14387 * info.el (info):
14388 * shell.el (shell):
14389 * mail/sendmail.el (mail):
14390 * progmodes/inf-lisp.el (inferior-lisp): Use it (Bug#9532).
14391
14392 2011-09-22 Richard Stallman <rms@gnu.org>
14393
14394 * textmodes/paragraphs.el (forward-sentence): When setting PAR-BEG,
14395 move back only to line beg, don't move back over blank lines.
14396
14397 2011-09-22 Michael Albinus <michael.albinus@gmx.de>
14398
14399 * files.el (copy-directory): Set directory attributes only in case
14400 they could be retrieved from the source directory. (Bug#9565)
14401
14402 2011-09-22 Dima Kogan <dkogan@secretsauce.net> (tiny change)
14403
14404 * progmodes/hideshow.el (hs-looking-at-block-start-p)
14405 (hs-find-block-beginning, hs-hide-level-recursive):
14406 Ignore strings as well as comments. (Bug#9502)
14407
14408 2011-09-22 Andrew Schein <andrew@andrewschein.com> (tiny change)
14409
14410 * progmodes/sql.el (sql-comint-postgres):
14411 Convert port number to a string. (Bug#9566)
14412
14413 2011-09-22 Martin Rudalics <rudalics@gmx.at>
14414
14415 * window.el (quit-window): Undedicate window when switching to
14416 previous buffer. Reported by Thierry Volpiatto
14417 <thierry.volpiatto@gmail.com>.
14418 (special-display-popup-frame): When popping up a new frame reset
14419 its previous buffers to nil. Simplify code.
14420
14421 2011-09-21 Michael Albinus <michael.albinus@gmx.de>
14422
14423 * net/tramp.el (tramp-handle-shell-command): Set process sentinel
14424 and process filter, as done also in `shell-command'.
14425
14426 2011-09-21 Martin Rudalics <rudalics@gmx.at>
14427
14428 * window.el (set-window-buffer-start-and-point):
14429 Call set-window-start with NOFORCE argument t.
14430 Suggested by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
14431 (quit-window): Reword doc-string. Handle new format of
14432 quit-restore parameter. Don't delete window if it has a
14433 previous buffer we can show instead of the present one.
14434 (display-buffer-record-window): Rewrite using a new format for
14435 the quit-restore window parameter
14436 (special-display-popup-frame, display-buffer-same-window)
14437 (display-buffer-reuse-window, display-buffer-pop-up-frame)
14438 (display-buffer-pop-up-window, display-buffer-use-some-window):
14439 Adapt symbol passed to display-buffer-record-window.
14440 * help.el (help-window-setup): Handle new format of quit-restore
14441 parameter.
14442
14443 2011-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
14444
14445 * faces.el (face-list): Fix docstring (bug#9564).
14446
14447 * window.el (display-buffer--action-function-custom-type):
14448 Don't include internal functions in the Custom interface.
14449
14450 2011-09-20 Juri Linkov <juri@jurta.org>
14451
14452 * info.el (Info-history-skip-intermediate-nodes): New defcustom.
14453 (Info-forward-node, Info-backward-node, Info-next-preorder)
14454 (Info-last-preorder): Use it. (Bug#9528)
14455
14456 2011-09-20 Juri Linkov <juri@jurta.org>
14457
14458 * info.el (Info-last-preorder): Visit last menu item only when
14459 `Info-scroll-prefer-subnodes' is non-nil (third test-case of bug#9528).
14460
14461 2011-09-20 Julien Danjou <julien@danjou.info>
14462
14463 * password-cache.el (password-cache-remove): Remove entries even if the
14464 value is nil, so that password with a nil value (negative caching) is
14465 possible to invalidate.
14466
14467 2011-09-20 Lawrence Mitchell <wence@gmx.li>
14468
14469 * progmodes/f90.el (f90-break-line): If breaking inside comment delete
14470 all whitespace around breakpoint. (Bug#9553)
14471 (f90-find-breakpoint): Only break at whitespace inside a comment.
14472
14473 2011-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
14474
14475 * minibuffer.el (completion-file-name-table): Keep track of errors.
14476 (completion-table-with-predicate): Handle the case where pred1 is nil.
14477 * pcomplete.el (pcomplete-completions-at-point): Simplify.
14478
14479 2011-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
14480
14481 * emacs-lisp/debug.el (debugger-args): Give it a docstring.
14482 (debugger-return-value): Signal an error if the debugging context does
14483 not await any return value.
14484
14485 * ps-mule.el (ps-mule-plot-string): Don't inf-loop (bug#5108).
14486 * image-mode.el (image-toggle-display-text)
14487 (image-toggle-display-image): Stay away from evil `intangible'.
14488
14489 2011-09-19 Leo Liu <sdl.web@gmail.com>
14490
14491 * replace.el (occur-revert-arguments): Make it permanent-local.
14492 (occur-mode): Don't call font-lock-defontify.
14493
14494 2011-09-19 Chong Yidong <cyd@stupidchicken.com>
14495
14496 * net/ldap.el (ldap-search-internal): Don't push empty search
14497 result (Bug#9508).
14498
14499 2011-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
14500
14501 * whitespace.el (whitespace-newline-mode): Disable it right (bug#9550).
14502
14503 2011-09-19 Michael Albinus <michael.albinus@gmx.de>
14504
14505 * net/tramp-sh.el (tramp-inline-compress-commands): Add "xz".
14506 Suggested by Liam Stitt <stittl@cuug.ab.ca>.
14507
14508 2011-09-18 Juri Linkov <juri@jurta.org>
14509
14510 * buff-menu.el (Buffer-menu-mode-map):
14511 * dired.el (dired-mode-map):
14512 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map)
14513 (lisp-interaction-mode-map):
14514 * emacs-lisp/package.el (package-menu-mode-map):
14515 * epa.el (epa-key-list-mode-map):
14516 * menu-bar.el (menu-bar-showhide-tool-bar-menu)
14517 (menu-bar-options-menu):
14518 * outline.el (outline-mode-menu-bar-map):
14519 * vc/vc-bzr.el (vc-bzr-shelve-menu-map, vc-bzr-extra-menu-map):
14520 * vc/vc-dir.el (vc-dir-menu-map):
14521 * vc/vc-git.el (vc-git-stash-menu-map, vc-git-extra-menu-map):
14522 Capitalize non-function content words in menu item strings.
14523
14524 * dired.el (dired-mode-map): Add menu item for
14525 `image-dired-dired-toggle-marked-thumbs'.
14526
14527 2011-09-18 Juri Linkov <juri@jurta.org>
14528
14529 * isearch.el (isearch-edit-string): Bind `isearch-new-case-fold'
14530 to `isearch-case-fold-search' and restore its original value
14531 after the `isearch-mode' call.
14532
14533 2011-09-18 Juri Linkov <juri@jurta.org>
14534
14535 * progmodes/grep.el (grep-process-setup): Don't check code for 1
14536 because `zgrep' returns 1 for successful matches (bug#9226).
14537
14538 2011-09-18 Juri Linkov <juri@jurta.org>
14539
14540 * info.el (Info-extract-menu-node-name): Check the second match
14541 for empty string (second test-case of bug#9528).
14542 (Info-last-preorder): Let-bind `Info-history' to nil to not add
14543 intermediate nodes to the history (first test-case of bug#9528).
14544
14545 2011-09-18 Juri Linkov <juri@jurta.org>
14546
14547 * info.el (Info-mode-syntax-table): New variable.
14548 (Info-mode): Set `:syntax-table' to `Info-mode-syntax-table' (bug#3312).
14549
14550 2011-09-18 Juri Linkov <juri@jurta.org>
14551
14552 * info.el (Info-file-supports-index-cookies):
14553 Increment line-beginning-position's arg from 3 to 4 because makeinfo
14554 outputs one more line for long file names (bug#4142).
14555
14556 2011-09-18 Chong Yidong <cyd@stupidchicken.com>
14557
14558 * newcomment.el (comment-normalize-vars): If prompting for
14559 comment-start, set comment-start-skip too (Bug#8424).
14560
14561 2011-09-18 Johan Bockgård <bojohan@gnu.org>
14562
14563 * icomplete.el: Fix previous fix of Bug#5849.
14564 (icomplete-mode): Don't set completion-show-inline-help.
14565 (icomplete-minibuffer-setup): Set completion-show-inline-help
14566 locally during icompletion.
14567
14568 2011-09-18 Chong Yidong <cyd@stupidchicken.com>
14569
14570 * woman.el (woman2-process-escapes): Don't delete unrecognized
14571 escapes (Bug#7843).
14572
14573 * files.el (inhibit-first-line-modes-regexps): Add image files.
14574 (hack-local-variables-prop-line): Return nil for malformed
14575 prop-lines (Bug#9044).
14576
14577 2011-09-18 Michael Albinus <michael.albinus@gmx.de>
14578
14579 * net/tramp.el (top): Don't require 'shell.
14580 (tramp-methods): Fix docstring.
14581 (tramp-get-remote-tmpdir): New defun, moved from tramp-sh.el.
14582 Return complete remote file name. Handle "smb" case.
14583 Use `tramp-tmpdir', if defined for the respective method.
14584 (tramp-make-tramp-temp-file): Adapt call of `tramp-get-remote-tmpdir'.
14585
14586 * net/tramp-compat.el (top): Require 'shell.
14587
14588 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band)
14589 (tramp-maybe-open-connection): Use `tramp-file-name-real-host' for
14590 `tramp-current-host'.
14591 (tramp-get-remote-tmpdir): Remove.
14592
14593 * net/tramp-smb.el (tramp-methods): Add `tramp-remote-shell' and
14594 `tramp-tmpdir' entries.
14595 (tramp-smb-errors): Add "NT_STATUS_IMAGE_ALREADY_LOADED".
14596 (tramp-smb-handle-file-attributes): Ignore errors.
14597 (tramp-smb-wait-for-output): Check also for process end.
14598
14599 2011-09-18 Lars Magne Ingebrigtsen <larsi@gnus.org>
14600
14601 * mail/smtpmail.el (smtpmail-via-smtp): Ignore errors that arise
14602 when sending QUIT (bug#9312).
14603
14604 2011-09-17 Chong Yidong <cyd@stupidchicken.com>
14605
14606 * replace.el (occur-mode-map): Rebind occur-edit-mode to "e" (Bug#8463).
14607 (occur-edit-mode-map): Bind C-c C-c to occur-cease-edit and C-o to
14608 occur-mode-display-occurrence.
14609 (occur-edit-mode): Add usage message.
14610 (occur-cease-edit): New command.
14611 (occur-after-change-function): Use text properties to find the
14612 position of the prefix text.
14613 (occur-engine): Set stickiness of prefix text properties.
14614
14615 2011-09-17 Glenn Morris <rgm@gnu.org>
14616
14617 * progmodes/etags.el (complete-tag):
14618 Fix call to completion-in-region. (Bug#9526)
14619
14620 2011-09-17 Juri Linkov <juri@jurta.org>
14621
14622 * textmodes/ispell.el (ispell-word): Add to the error message
14623 the word, ispell program name and current dictionary (bug#9121).
14624 (ispell-tex-arg-end): Capitalize "error" in the error message.
14625
14626 2011-09-17 Andreas Schwab <schwab@linux-m68k.org>
14627
14628 * emacs-lisp/bytecomp.el (byte-compile-lapcode): Fix overflow
14629 check. (Bug#4251)
14630
14631 2011-09-17 Juri Linkov <juri@jurta.org>
14632
14633 * window.el (window-safe-min-height, window-safe-min-width):
14634 Fix typos (followup to bug#9522).
14635
14636 2011-09-17 Sven Joachim <svenjoac@gmx.de>
14637
14638 * window.el (window-min-width, window-state-put): Fix typos (bug#9522).
14639
14640 2011-09-16 Eli Zaretskii <eliz@gnu.org>
14641
14642 * simple.el (line-move): If goal-column is set, move by logical
14643 lines, not by display lines. (Bug#971)
14644 (next-line, previous-line, goal-column, line-move-visual): Doc fix
14645 to reflect the above change.
14646
14647 2011-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
14648
14649 * image.el (imagemagick-register-types): Use regexp-opt.
14650
14651 2011-09-15 Chong Yidong <cyd@stupidchicken.com>
14652
14653 * window.el (display-buffer-base-action): Rename from
14654 display-buffer-default-action. Make default value empty.
14655 (display-buffer-overriding-action): Convert to defvar.
14656 (display-buffer-fallback-action): New var.
14657
14658 2011-09-15 Chong Yidong <cyd@stupidchicken.com>
14659
14660 * emacs-lisp/package.el (package-alist): Fix risky-local-variable
14661 declaration.
14662 (package--add-to-archive-contents): If there is a duplicate entry
14663 with an older version, remove it.
14664 (package-menu-mark-delete, package-menu-mark-install)
14665 (package-menu-mark-unmark): Make unused args optional.
14666 (package-menu-mark-obsolete-for-deletion):
14667 Use package-menu-get-status instead of a regexp search.
14668 (package-menu-get-status): Use tabulated-list-entry.
14669 (package-menu-mark-upgrades): New command.
14670 (package-menu-mode-map): Bind it to U. Add it to menu bar.
14671 (package-menu-execute): Do installation before deletion.
14672 (package-menu-refresh, package-menu-execute): Use derived-mode-p
14673 instead of checking major-mode.
14674 (package-menu--find-upgrades): New function.
14675
14676 2011-09-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
14677
14678 * mail/smtpmail.el (smtpmail-send-command): Don't include AUTH
14679 passwords in the log buffer.
14680 (smtpmail-process-filter): Update the process marker so that the
14681 "broken by peer" status message is inserted in the right place.
14682
14683 2011-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
14684
14685 * textmodes/bibtex.el (bibtex-complete-string-cleanup)
14686 (bibtex-complete-crossref-cleanup): Adjust to accommodate needs of
14687 bibtex-completion-at-point-function.
14688 (bibtex-completion-at-point-function): Use them.
14689
14690 * newcomment.el (comment-add, comment-valid-prefix-p): Docfix.
14691
14692 * mpc.el (mpc-constraints-tag-lookup): New function.
14693 (mpc-constraints-restore): Use it to make jumping to "album=Foo" apply
14694 also to browser "album|playlist".
14695
14696 2011-09-14 Juri Linkov <juri@jurta.org>
14697
14698 * isearch.el (isearch-fail-pos): Add new arg `msg'. Doc fix.
14699 (isearch-edit-string): Use length of `isearch-string' when
14700 `isearch-fail-pos' returns nil.
14701 (isearch-message): Remove duplicate code and call
14702 `isearch-fail-pos' with arg `t'.
14703
14704 2011-09-14 Chong Yidong <cyd@stupidchicken.com>
14705
14706 * replace.el (occur-mode-goto-occurrence): Don't force using other
14707 window (Bug#9499).
14708
14709 * dired-aux.el (dired-do-chmod): Don't provide initial input.
14710
14711 2011-09-14 Martin Rudalics <rudalics@gmx.at>
14712
14713 * window.el (display-buffer-window): Remove.
14714 (display-buffer-record-window): Use help-setup window parameter
14715 instead of variable display-buffer-window.
14716 (display-buffer-function, special-display-buffer-names)
14717 (special-display-function): Mention help-setup parameter instead
14718 of display-buffer-window in doc-string.
14719 * help.el (help-window-setup): New argument help-window.
14720 Use help-window-setup parameter instead of display-buffer-window.
14721 Reword some messages.
14722 (with-help-window): Pass window used for displaying the buffer
14723 to help-window-setup. Don't set display-buffer-window.
14724
14725 2011-09-13 Glenn Morris <rgm@gnu.org>
14726
14727 * emacs-lisp/debug.el (debugger-make-xrefs):
14728 Preserve point. (Bug#9462)
14729
14730 2011-09-13 Chong Yidong <cyd@stupidchicken.com>
14731
14732 * window.el (window-deletable-p): Use next-frame.
14733
14734 2011-09-13 Martin Rudalics <rudalics@gmx.at>
14735
14736 * window.el (window-auto-delete): Remove.
14737 (window-deletable-p): Remove argument FORCE. Don't deal with
14738 dedication and previous buffers.
14739 (switch-to-prev-buffer): Don't delete window.
14740 (delete-windows-on): Delete a window's frame if and only if the
14741 window is dedicated.
14742 (replace-buffer-in-windows): Delete buffer's window or frame if
14743 and only if window is dedicated.
14744 (quit-window): Handle quit-restore as before last change.
14745 (bury-buffer): Delete window only if window-deletable-p returns t.
14746
14747 2011-09-13 Chong Yidong <cyd@stupidchicken.com>
14748
14749 * window.el (window-deletable-p): Never delete the last frame on a
14750 given terminal.
14751
14752 2011-09-13 Glenn Morris <rgm@gnu.org>
14753
14754 * help.el (describe-key-briefly): Copy previous standard-output change.
14755
14756 2011-09-13 PJ Weisberg <pj@irregularexpressions.net>
14757
14758 * help.el (where-is): Respect non-standard standard-output. (Bug#9030)
14759
14760 2011-09-13 Glenn Morris <rgm@gnu.org>
14761
14762 * emacs-lisp/lisp-mode.el (lisp-indent-function):
14763 * progmodes/scheme.el (scheme-indent-function): Doc fixes.
14764
14765 2011-09-12 Chong Yidong <cyd@stupidchicken.com>
14766
14767 * dired-aux.el (dired-mark-read-string): Don't return default
14768 value on empty input (Bug#9361).
14769 (dired-do-chxxx): Treat empty input for "touch" as no -t option.
14770 Omit initial minibuffer contents.
14771 (dired-do-chmod): Signal an error on empty input.
14772 (dired-mark-read-string): Don't return default on empty input.
14773
14774 * files.el (file-modes-symbolic-to-number): Doc fix.
14775
14776 2011-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
14777
14778 * international/mule-cmds.el (ucs-completions): Remove.
14779 (read-char-by-name): Use complete-with-action instead; add metadata.
14780
14781 2011-09-11 Chong Yidong <cyd@stupidchicken.com>
14782
14783 * window.el (display-buffer--action-function-custom-type)
14784 (display-buffer--action-custom-type): New vars.
14785 (display-buffer-alist, display-buffer-default-action)
14786 (display-buffer-overriding-action): Add defcustom types.
14787
14788 * frame.el (delete-other-frames): Doc fix (Bug#276).
14789
14790 2011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
14791
14792 * play/doctor.el (make-doctor-variables): Define `doctor-sent'.
14793
14794 2011-09-11 Chong Yidong <cyd@stupidchicken.com>
14795
14796 Change modes that used same-window-* vars to use switch-to-buffer.
14797
14798 * progmodes/gdb-mi.el (gdb-restore-windows, gdb-setup-windows):
14799 Use switch-to-buffer.
14800
14801 * cus-edit.el (customize-group, custom-buffer-create)
14802 (customize-browse, custom-buffer-create-other-window):
14803 Use switch-to-buffer or switch-to-buffer-other-window.
14804
14805 * info.el (info, Info-find-node, Info-revert-find-node, Info-next)
14806 (Info-prev, Info-up, Info-speedbar-goto-node)
14807 (info-display-manual): Use switch-to-buffer.
14808 (Info-speedbar-goto-node): Use switch-to-buffer-other-frame.
14809
14810 * mail/sendmail.el (mail): Use switch-to-buffer.
14811 (mail-recover): Use switch-to-buffer-other-window.
14812
14813 * cmuscheme.el (run-scheme, switch-to-scheme):
14814 * ielm.el (ielm):
14815 * shell.el (shell):
14816 * net/rlogin.el (rlogin):
14817 * net/telnet.el (telnet, rsh):
14818 * progmodes/inf-lisp.el (inferior-lisp): Use switch-to-buffer.
14819
14820 2011-09-11 Andreas Schwab <schwab@linux-m68k.org>
14821
14822 * dired.el (dired-sort-toggle-or-edit): Revert last changes.
14823
14824 2011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
14825
14826 * dired.el (dired-sort-toggle-or-edit): -o doesn't exist on *BSD,
14827 so don't mention it (bug#9301).
14828 (dired-sort-toggle-or-edit): Clarify string further.
14829
14830 * faces.el (face-spec-set-match-display): Make `(type graphic)'
14831 match `x', `w32' and `ns', like the manual says (bug#9029).
14832
14833 * subr.el (eval-after-load): Doc string clarification (bug#9125).
14834 (process-kill-buffer-query-function): Mention the buffer name in
14835 the query.
14836
14837 * image-mode.el (image-next-line): The line parameter is mandatory
14838 (bug#9258).
14839
14840 * dired.el (dired-sort-toggle-or-edit): Mention -o and -g, too,
14841 which can be useful (bug#9301).
14842
14843 * textmodes/flyspell.el: Remove obsolete comment (bug#9368).
14844
14845 * subr.el (match-string): Mention that the current buffer should
14846 be the same as the search was done in (bug#9282).
14847
14848 * facemenu.el: Disable the remove-* commands if the mark isn't
14849 active (bug#9162).
14850
14851 2011-09-10 Chong Yidong <cyd@stupidchicken.com>
14852
14853 * buff-menu.el (Buffer-menu-switch-other-window): Use second arg
14854 of display-buffer.
14855 (Buffer-menu-2-window): Use switch-to-buffer-other-window.
14856
14857 * replace.el (occur-mode-goto-occurrence)
14858 (occur-mode-display-occurrence) Use second arg of pop-to-buffer
14859 and display-buffer.
14860
14861 * mail/reporter.el (reporter-submit-bug-report): Use second arg of
14862 display-buffer.
14863
14864 * mail/sendmail.el (sendmail-user-agent-compose): Don't bind the
14865 special-display and same-window variables.
14866 (mail-other-window): Use switch-to-buffer-other-window.
14867 (mail-other-frame): USe switch-to-buffer-other-frame.
14868
14869 * progmodes/gdb-mi.el (gdb-frame-gdb-buffer):
14870 Use display-buffer-other-frame.
14871 (gdb-display-gdb-buffer): Use pop-to-buffer.
14872
14873 * progmodes/gud.el (gud-goto-info): Use info-other-window.
14874
14875 * progmodes/python.el: Don't set same-window-buffer-names.
14876
14877 * textmodes/bibtex.el (bibtex-search-entry): Use switch-to-buffer.
14878
14879 * window.el (display-buffer-alist): Add *Python*.
14880
14881 2011-09-10 Chong Yidong <cyd@stupidchicken.com>
14882
14883 * window.el (display-buffer-alist): Add entry for buffers
14884 previously handled same-window-*.
14885 (display-buffer-alist, display-buffer-default-action)
14886 (display-buffer-overriding-action): Mark as risky.
14887 (display-buffer-alist): Document action function changes.
14888 (display-buffer--same-window-action)
14889 (display-buffer--other-frame-action): New variables.
14890 (switch-to-buffer, display-buffer-other-frame): Use them.
14891 (display-buffer): Rename reuse-frame entry to reusable-frames.
14892 (display-buffer-reuse-selected-window): Function deleted.
14893 (display-buffer-reuse-window): Handle reusable-frames alist entry.
14894 If it's omitted, check pop-up-frames/display-buffer-reuse-frames.
14895 (display-buffer-special): New function.
14896 (display-buffer--maybe-pop-up-frame-or-window): Rename from
14897 display-buffer-reuse-or-pop-window. Split off special-display
14898 part into display-buffer-special.
14899 (display-buffer-use-some-window): Don't perform any special
14900 pop-up-frames handling.
14901 (pop-to-buffer): Use window-normalize-buffer-to-switch-to.
14902 (display-buffer--maybe-same-window): Rename from
14903 display-buffer-maybe-same-window.
14904
14905 * info.el: Don't set same-window-regexps.
14906 (info-setup): New function.
14907 (info-other-window, info): Call it.
14908
14909 * cus-edit.el: Don't set same-window-regexps.
14910 (customize-group): New argument.
14911 (customize-group-other-window): Use it.
14912 (customize-face, customize-face-other-window): Likewise.
14913 (custom-buffer-create-other-window): Use pop-to-buffer directly.
14914
14915 * net/rlogin.el:
14916 * net/telnet.el:
14917 * progmodes/gud.el: Don't set same-window-regexps.
14918
14919 * cmuscheme.el:
14920 * ielm.el:
14921 * shell.el:
14922 * mail/sendmail.el:
14923 * progmodes/inf-lisp.el: Don't set same-window-buffer-names.
14924
14925 2011-09-10 Juri Linkov <juri@jurta.org>
14926
14927 * isearch.el (isearch-edit-string): Remove obsolete mention of
14928 `C-w' (`isearch-yank-word-or-char') from docstring.
14929 (isearch-query-replace): Fix typo in docstring (bug#9466).
14930
14931 2011-09-10 Juri Linkov <juri@jurta.org>
14932
14933 * paren.el (show-paren-function): Don't show escaped parens.
14934 Let-bind `unescaped' to `t' when paren is not escaped. (Bug#9461)
14935
14936 2011-09-10 Eli Zaretskii <eliz@gnu.org>
14937
14938 * mail/sendmail.el (mml-to-mime, mml-attach-file)
14939 (mm-default-file-encoding): Remove autoload forms, they are
14940 replaced with autoload cookies in mml.el and mm-encode.el.
14941 (mail-add-attachment): New command.
14942 (mail-mode-map): Add a menu-bar item for mail-add-attachment.
14943 (mail-mode): Mention mail-insert-file and mail-add-attachment in
14944 the doc string.
14945 (mml-to-mime, mml-attach-file, mm-default-file-encoding): Declare.
14946
14947 2011-09-10 Reuben Thomas <rrt@sc3d.org>
14948
14949 * simple.el (count-words-region): Use buffer if there's no region
14950 (bug#9429).
14951
14952 2011-09-09 Juri Linkov <juri@jurta.org>
14953
14954 * wdired.el (wdired-change-to-wdired-mode): Set buffer-local
14955 `isearch-filter-predicate' to `wdired-isearch-filter-read-only'.
14956 (wdired-isearch-filter-read-only): New function. (Bug#6362)
14957
14958 2011-09-09 Alan Mackenzie <acm@muc.de>
14959
14960 * progmodes/cc-mode.el (awk-mode): Prevent `define-derived-mode'
14961 spuriously generating `awk-mode-syntax-table'. (Bug #9448).
14962
14963 2011-09-09 Eli Zaretskii <eliz@gnu.org>
14964
14965 Fix for Savannah bug#9392.
14966 * simple.el (mail-encode-mml): New defvar.
14967
14968 * mail/rmail.el (mail-encode-mml): Add a defvar.
14969 (rmail-enable-mime-composing): Default to t.
14970 (rmail-forward): Use MIME method of forwarding only if both
14971 rmail-enable-mime-composing and rmail-enable-mime are non-nil.
14972 Set mail-encode-mml non-nil if the MIME method was used.
14973
14974 * mail/sendmail.el (mml-to-mime): Add autoload form.
14975 (mail-encode-mml): Add a defvar.
14976 (mail-mode): Make mail-encode-mml buffer-local and initialize it
14977 to nil.
14978 (mail-send): If mail-encode-mml is non-nil, run the outgoing
14979 message through mml-to-mime, and reset mail-encode-mml to nil.
14980
14981 2011-09-09 Glenn Morris <rgm@gnu.org>
14982
14983 * woman.el (woman-if-body): When processing an .el block,
14984 do not delete the next .el block as well. (Bug#9447)
14985 (woman-special-characters): Add oq, cq, and hy characters.
14986
14987 2011-09-08 Martin Rudalics <rudalics@gmx.at>
14988
14989 * window.el (window-deletable-p): Make sure window is live before
14990 invoking window-prev-buffers.
14991
14992 2011-09-08 Leo Liu <sdl.web@gmail.com>
14993
14994 * net/rcirc.el (rcirc-cmd-invite): New rcirc command. (Bug#9453)
14995
14996 2011-09-08 Juri Linkov <juri@jurta.org>
14997
14998 * progmodes/compile.el (compilation-environment): Make it
14999 a defcustom (bug#8340).
15000
15001 2011-09-08 Martin Rudalics <rudalics@gmx.at>
15002
15003 * window.el (frame-auto-delete): Rename to window-auto-delete.
15004 Make it control auto-deletion of windows and/or frames.
15005 (window-deletable-p): New argument FORCE. Rewrite conditions
15006 for deleting window/frame. (Bug#9419)
15007 (switch-to-prev-buffer, replace-buffer-in-windows, quit-window):
15008 Rewrite handling of case when window/frame can be deleted.
15009 (delete-windows-on): Call window-deletable-p with new FORCE
15010 argument t. (Bug#9456)
15011
15012 2011-09-07 Chong Yidong <cyd@stupidchicken.com>
15013
15014 * help-mode.el (help-mode): Restore autoload.
15015
15016 2011-09-07 Juri Linkov <juri@jurta.org>
15017
15018 * progmodes/compile.el (compilation-start): Let-bind `thisenv' to
15019 `compilation-environment'. Set buffer-local
15020 `compilation-environment' to `thisenv' later after (funcall mode).
15021 (Bug#8340)
15022
15023 * vc/vc-git.el (vc-git-grep): Remove --no-color. (Bug#9408)
15024 (vc-git-grep): Prepend "PAGER=" to `compilation-environment'
15025 instead of replacing its value. (Bug#8340)
15026
15027 2011-09-07 Juri Linkov <juri@jurta.org>
15028
15029 * progmodes/grep.el (grep-regexp-alist): Calculate column positions
15030 based on text properties put by `grep-filter' instead of matching
15031 escape sequences.
15032 (grep-mode): Set buffer-local `compilation-error-screen-columns'
15033 to the value of `grep-error-screen-columns' (bug#9438).
15034
15035 2011-09-07 Juri Linkov <juri@jurta.org>
15036
15037 * simple.el (next-error-highlight, next-error-highlight-no-select):
15038 Doc fix (bug#9432).
15039
15040 2011-09-07 OKAZAKI Tetsurou <okazaki.tetsurou@gmail.com> (tiny change)
15041
15042 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
15043 Check for null c-opt-block-decls-with-vars-key. (Bug#9443)
15044
15045 2011-09-07 Leo Liu <sdl.web@gmail.com>
15046
15047 * net/rcirc.el (rcirc-mode): Conditionally initialize
15048 rcirc-input-ring.
15049
15050 2011-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
15051
15052 * emacs-lisp/find-func.el (find-function-C-source): Only set
15053 find-function-C-source-directory after checking that we found a source
15054 file there (bug#9440).
15055
15056 2011-09-06 Alan Mackenzie <acm@muc.de>
15057
15058 * isearch.el (isearch-other-meta-char): Wherever a key list is
15059 unread, "unread" the prefix arg, too. This fixes bug #8901.
15060
15061 2011-09-05 Oleksandr Gavenko <gavenkoa@gmail.com> (tiny change)
15062
15063 * progmodes/grep.el (rgrep): Add "-type d" (bug#9414).
15064
15065 2011-09-05 Juri Linkov <juri@jurta.org>
15066
15067 * progmodes/grep.el (grep-process-setup): Fix comments (bug#8084).
15068
15069 2011-09-05 Juri Linkov <juri@jurta.org>
15070
15071 * progmodes/grep.el (grep-filter): Avoid incomplete processing by
15072 keeping point where processing of grep matches begins, and
15073 continue to delete remaining escape sequences from the same point.
15074 (grep-filter): Make leading zero optional in "0?1;31m" because
15075 git-grep emits "\033[1;31m" escape sequences unlike expected
15076 "\033[01;31m" as GNU Grep does (bug#9408).
15077 (grep-process-setup): Replace obsolete "ml=" with newer "sl=".
15078
15079 2011-09-05 Juri Linkov <juri@jurta.org>
15080
15081 * subr.el (y-or-n-p): Capitalize "yes".
15082
15083 2011-09-04 Michael Albinus <michael.albinus@gmx.de>
15084
15085 * net/tramp.el (top): Require 'shell. Use `tramp-unload-hook' but
15086 `tramp-cache-unload-hook' where appropriate.
15087 (tramp-methods): Rename `tramp-remote-sh' to
15088 `tramp-remote-shell'. Add `tramp-remote-shell-args'.
15089 (tramp-handle-shell-command): New defun, moved from tramp-sh.el.
15090
15091 * net/tramp-sh.el (top): Don't require 'shell.
15092 (tramp-methods): Add `tramp-remote-shell' and
15093 `tramp-remote-shell-args' entries.
15094 (tramp-sh-file-name-handler-alist): Use `tramp-handle-shell-command'.
15095 (tramp-sh-handle-shell-command): Remove.
15096 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
15097 Use `tramp-remote-shell'.
15098
15099 2011-09-03 Chong Yidong <cyd@stupidchicken.com>
15100
15101 * mail/sendmail.el (sendmail-query-once-function): Delete.
15102 (sendmail-query-once): Save directly to send-mail-function.
15103 Update message-send-mail-function too.
15104
15105 * mail/smtpmail.el (smtpmail-try-auth-methods): Clarify prompt.
15106
15107 2011-09-03 Christoph Scholtes <cschol2112@googlemail.com>
15108
15109 * progmodes/python.el (python-mode-map): Use correct function to
15110 start python interpreter from menu-bar (as reported by Geert
15111 Kloosterman).
15112 (inferior-python-mode-map): Fix typo.
15113 (python-shell-map): Remove.
15114
15115 2011-09-03 Deniz Dogan <deniz@dogan.se>
15116
15117 * net/rcirc.el (rcirc-print): Simplify code for
15118 rcirc-scroll-show-maximum-output. There is no need to walk
15119 through all windows to find the right one.
15120
15121 2011-09-03 Christoph Scholtes <cschol2112@googlemail.com>
15122
15123 * help.el (help-return-method): Doc fix.
15124
15125 2011-09-03 Martin Rudalics <rudalics@gmx.at>
15126
15127 * window.el (window-deletable-p): Don't return a non-nil value
15128 when there's a buffer that was shown in the window before.
15129 (Bug#9419)
15130 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
15131 Set window's previous buffers to nil.
15132
15133 2011-09-03 Eli Zaretskii <eliz@gnu.org>
15134
15135 * mail/rmailmm.el (rmail-mime-insert-tagline): Insert an extra
15136 newline before and after the tag line, so it doesn't interfere
15137 with determining the paragraph direction of bidirectional text.
15138
15139 2011-09-03 Leo Liu <sdl.web@gmail.com>
15140
15141 * files.el (find-file-not-true-dirname-list): Remove. (Bug#9422)
15142
15143 2011-09-02 Chong Yidong <cyd@stupidchicken.com>
15144
15145 * window.el (pop-to-buffer-1, pop-to-buffer-same-window): Delete.
15146 (pop-to-buffer): Change interactive spec. Pass second argument
15147 directly to display-buffer.
15148 (display-buffer): Fix interactive spec. Use functionp to
15149 distinguish between a function and a list of functions.
15150
15151 * abbrev.el (edit-abbrevs):
15152 * arc-mode.el (archive-extract):
15153 * autoinsert.el (auto-insert):
15154 * bookmark.el (bookmark-bmenu-list):
15155 * files.el (find-file):
15156 * view.el (view-buffer):
15157 * progmodes/compile.el (compilation-goto-locus):
15158 * textmodes/bibtex.el (bibtex-initialize): Use switch-to-buffer.
15159
15160 2011-09-02 Chong Yidong <cyd@stupidchicken.com>
15161
15162 * window.el (display-buffer-alist): Doc fix.
15163 (display-buffer): Add docstring. Don't treat
15164 display-buffer-default specially.
15165 (display-buffer-reuse-selected-window)
15166 (display-buffer-same-window, display-buffer-maybe-same-window)
15167 (display-buffer-reuse-window, display-buffer-pop-up-frame)
15168 (display-buffer-pop-up-window)
15169 (display-buffer-reuse-or-pop-window)
15170 (display-buffer-use-some-window): New functions.
15171 (display-buffer-default-action): Use them.
15172 (display-buffer-default): Delete.
15173 (pop-to-buffer-1): Fix choice of actions.
15174
15175 2011-09-02 Stefan Monnier <monnier@iro.umontreal.ca>
15176
15177 * minibuffer.el (completion--insert-strings): Don't get confused by
15178 completion entries that end with an LF char.
15179
15180 2011-09-01 Eli Zaretskii <eliz@gnu.org>
15181
15182 * window.el (frame-auto-delete, window-deletable-p): Doc fix.
15183
15184 2011-09-01 Chong Yidong <cyd@stupidchicken.com>
15185
15186 * window.el (display-buffer): Restore interactive spec.
15187 (display-buffer-same-window, display-buffer-other-window):
15188 New functions.
15189 (pop-to-buffer-1): New function. Use the above.
15190 (pop-to-buffer, pop-to-buffer-same-window): Use it.
15191 (pop-to-buffer-other-window, pop-to-buffer-other-frame): Delete.
15192
15193 * view.el (view-buffer-other-window, view-buffer-other-frame):
15194 Just use pop-to-buffer.
15195
15196 2011-09-01 Thierry Volpiatto <thierry.volpiatto@gmail.com>
15197
15198 * vc/vc-rcs.el (vc-rcs-responsible-p): Handle directories. (Bug#9391)
15199
15200 2011-09-01 Wilfred Hughes <wilfred@potatolondon.com> (tiny change)
15201
15202 * vc/vc-git.el (vc-git-grep): Use --no-color. (Bug#9408)
15203
15204 2011-08-31 Richard Stallman <rms@gnu.org>
15205
15206 * mail/rmail.el (rmail-epa-decrypt): Rewrite to take account
15207 of the separation of rmail-view-buffer from rmail-buffer.
15208 If you say no to "replace original", the decrypt is in the
15209 view buffer. If you say yes, the decrypt goes into the
15210 rmail buffer also.
15211
15212 2011-08-31 Martin Rudalics <rudalics@gmx.at>
15213
15214 * window.el (display-buffer-window): Rewrite doc-string.
15215 (display-buffer-record-window): New function.
15216 (display-buffer-macro-specifiers)
15217 (display-buffer-even-window-sizes, display-buffer-set-height)
15218 (display-buffer-set-width, display-buffer-in-window)
15219 (display-buffer-reuse-window, display-buffer-split-specifiers)
15220 (display-buffer-side-specifiers, display-buffer-split-window-1)
15221 (display-buffer-split-window, display-buffer-split-atom-window)
15222 (display-buffer-pop-up-window, display-buffer-pop-up-frame)
15223 (display-buffer-pop-up-side-window, display-buffer-in-side-window)
15224 (display-buffer-other-window-means-other-frame)
15225 (display-buffer-normalize-special)
15226 (display-buffer-normalize-default)
15227 (display-buffer-normalize-argument)
15228 (display-buffer-normalize-alist-1, display-buffer-normalize-alist)
15229 (display-buffer-normalize-specifiers, display-buffer-frame)
15230 (display-buffer-same-window, display-buffer-same-frame)
15231 (display-buffer-other-window)
15232 (display-buffer-same-frame-other-window)
15233 (display-buffer-other-frame, pop-to-buffer-same-window)
15234 (pop-to-buffer-same-frame, pop-to-buffer-other-window)
15235 (pop-to-buffer-same-frame-other-window, pop-to-buffer-other-frame)
15236 (switch-to-buffer-same-frame)
15237 (switch-to-buffer-other-window-same-frame)
15238 (display-buffer-alist-of-strings-p, display-buffer-alist-add)
15239 (display-buffer-alist-set-1, display-buffer-alist-set-2)
15240 (display-buffer-alist-set): Remove.
15241 (display-buffer-function, special-display-buffer-names)
15242 (special-display-regexps, special-display-function):
15243 In doc-string refer to display-buffer-window and quit-restore
15244 parameter.
15245 (pop-up-frame-alist, pop-up-frame-function, special-display-p)
15246 (special-display-frame-alist, special-display-popup-frame)
15247 (same-window-buffer-names, same-window-regexps, same-window-p)
15248 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
15249 (split-window-preferred-function, split-height-threshold)
15250 (split-width-threshold, window-splittable-p)
15251 (split-window-sensibly, window--try-to-split-window)
15252 (window--frame-usable-p, even-window-heights)
15253 (window--even-window-heights, window--display-buffer-1)
15254 (window--display-buffer-2, display-buffer-other-frame):
15255 Restore old Emacs 23 code, order and doc-strings where applicable.
15256 (display-buffer-default, display-buffer-assq-regexp): New functions.
15257 (display-buffer-alist): Rewrite doc-string.
15258 (display-buffer-default-action)
15259 (display-buffer-overriding-action): New variables.
15260 (display-buffer, switch-to-buffer): Rewrite.
15261 (pop-to-buffer): Restore Emacs 23 behavior but use
15262 window-normalize-buffer-to-display.
15263 (switch-to-buffer-other-window, switch-to-buffer-other-frame):
15264 Restore Emacs 23 behavior but use
15265 window-normalize-buffer-to-switch-to.
15266 (pop-to-buffer-same-window): Rewrite.
15267 (pop-to-buffer-other-window, pop-to-buffer-other-frame):
15268 Rewrite using Emacs 23 options.
15269
15270 2011-08-31 Michael Albinus <michael.albinus@gmx.de>
15271
15272 * net/tramp.el (tramp-root-regexp): Remove.
15273 (tramp-completion-file-name-regexp-unified)
15274 (tramp-completion-file-name-regexp-separate)
15275 (tramp-completion-file-name-regexp-url): Don't use leading volume
15276 letter on w32 systems. (Bug#5303, Bug#9311)
15277 (tramp-drop-volume-letter): Simplify definition.
15278 Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
15279
15280 2011-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
15281
15282 * subr.el (event-modifiers): Fix "missing modifier" part of docstring
15283 (bug#9356).
15284
15285 2011-08-30 Reuben Thomas <rrt@sc3d.org> (tiny change)
15286
15287 * vc/pcvs-defs.el (cvs-find-file-and-jump): Docstring typo (bug#9369).
15288
15289 2011-08-29 Juri Linkov <juri@jurta.org>
15290
15291 * isearch.el (isearch-done): Don't display message "Mark saved"
15292 when arg `edit' is non-nil to prevent its flicker in the echo area.
15293
15294 2011-08-28 Chong Yidong <cyd@stupidchicken.com>
15295
15296 * emacs-lisp/package.el (package-menu-mark-delete): Allow marking
15297 obsolete packages for deletion.
15298
15299 2011-08-28 Christoph Scholtes <cschol2112@googlemail.com>
15300
15301 * help-mode.el (help-mode-map): Add special-mode-map to parent.
15302 (help-mode): Derive help-mode from special-mode. Don't invoke
15303 view-mode from help-mode.
15304 (help-xref-override-view-map): Remove.
15305 (help-make-xrefs): Remove minor-mode-overriding-map-alist since
15306 view-mode is not used anymore.
15307
15308 2011-08-28 Chong Yidong <cyd@stupidchicken.com>
15309
15310 * server.el (server-port): Doc fix.
15311
15312 * cus-theme.el (custom-theme-choose-mode): Inherit from
15313 special-mode (Bug#9124).
15314 (custom-theme-choose-mode-map): Add special-mode to parent.
15315
15316 2011-08-28 Alan Mackenzie <acm@muc.de>
15317
15318 * progmodes/cc-fonts.el
15319 (c-make-font-lock-BO-decl-search-function): New function.
15320 (c-basic-matchers-after - "Fontify the clauses after various
15321 keywords"): Extract the three keyword lists for the 3 erroneous
15322 constructs from the list of four, and use the new function above
15323 in place of an old one.
15324
15325 2011-08-28 Deniz Dogan <deniz@dogan.se>
15326
15327 * net/rcirc.el (rcirc-insert-prev-input)
15328 (rcirc-insert-next-input): Remove unused argument.
15329
15330 2011-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
15331
15332 * shell.el (shell-parse-pcomplete-arguments): Unquote args (bug#9160).
15333
15334 2011-08-27 Alan Mackenzie <acm@muc.de>
15335
15336 * progmodes/cc-menus.el (cc-imenu-c++-generic-expression): Make it
15337 handle function pointer parameters properly.
15338
15339 2011-08-27 Martin Rudalics <rudalics@gmx.at>
15340
15341 * window.el (display-buffer-reuse-window): Fix case where
15342 selected window was reused with non-nil OTHER-WINDOW argument.
15343 (Bug#9381)
15344
15345 2011-08-27 Deniz Dogan <deniz@dogan.se>
15346
15347 * net/rcirc.el (rcirc-check-auth-status): Adding support for
15348 oftc's NickServ messages.
15349
15350 2011-08-27 Glenn Morris <rgm@gnu.org>
15351
15352 * saveplace.el (save-place-limit): Make it finite. (Bug#9352)
15353
15354 2011-08-26 Chong Yidong <cyd@stupidchicken.com>
15355
15356 * emacs-lisp/package.el (package-install): Call package-initialize
15357 if called interactively.
15358
15359 2011-08-26 Leo Liu <sdl.web@gmail.com>
15360
15361 * emacs-lisp/cl-macs.el (defstruct): Fix format. (Bug#9357)
15362
15363 2011-08-25 Juri Linkov <juri@jurta.org>
15364
15365 * isearch.el (isearch-occur): Let-bind `search-spaces-regexp' to
15366 `search-whitespace-regexp' (bug#9364).
15367
15368 2011-08-25 Juri Linkov <juri@jurta.org>
15369
15370 * isearch.el (isearch-edit-string): Let-bind `search-ring' and
15371 `regexp-search-ring' to their global values to protect from
15372 updating by `read-from-minibuffer' (bug#9185).
15373
15374 2011-08-25 Juri Linkov <juri@jurta.org>
15375
15376 * textmodes/ispell.el (ispell-command-loop): Add newline
15377 at the end of the "Use option `i'..." line.
15378
15379 2011-08-25 Juri Linkov <juri@jurta.org>
15380
15381 * battery.el (display-battery-mode): If `battery-status-function'
15382 or `battery-mode-line-format' is nil, display the message and set
15383 `display-battery-mode' to nil (bug#9363).
15384
15385 2011-08-25 Eli Zaretskii <eliz@gnu.org>
15386
15387 * buff-menu.el (Buffer-menu-buffer+size): Remove calls to
15388 bidi-string-mark-left-to-right; they are unnecessary now.
15389
15390 2011-08-25 Deniz Dogan <deniz@dogan.se>
15391
15392 * net/quickurl.el: Documentation typo fixes.
15393
15394 2011-08-25 Chong Yidong <cyd@stupidchicken.com>
15395
15396 * window.el (bury-buffer, quit-window): Use bury-buffer-internal.
15397
15398 2011-08-25 Glenn Morris <rgm@gnu.org>
15399
15400 * emacs-lisp/derived.el (define-derived-mode): Doc fix.
15401
15402 * mail/smtpmail.el (smtpmail-smtp-user): Add version: tag.
15403 (smtpmail-via-smtp): Handle nil response from smtp.
15404
15405 2011-08-24 Juri Linkov <juri@jurta.org>
15406
15407 * proced.el (proced-marked): Inherit from `error' instead of
15408 `font-lock-warning-face'.
15409
15410 * ibuffer.el (ibuffer-marked-face): Change default face from
15411 `font-lock-warning-face' to `warning'.
15412 (ibuffer-deletion-face): Change default face from
15413 `font-lock-type-face' to `error'.
15414
15415 * battery.el (battery-update): Use the face `error' instead of
15416 `font-lock-warning-face' (bug#6117).
15417
15418 2011-08-24 Juri Linkov <juri@jurta.org>
15419
15420 * faces.el (success): Change face color from "Green3" to
15421 "ForestGreen" on light background (bug#9353).
15422
15423 2011-08-24 Chong Yidong <cyd@stupidchicken.com>
15424
15425 * window.el (quit-window): Rename from quit-restore-window.
15426 Use same arglist as old quit-window.
15427 (frame-auto-delete): Doc fix.
15428
15429 * view.el (view-mode-exit): Use quit-window.
15430
15431 2011-08-24 Juri Linkov <juri@jurta.org>
15432
15433 * isearch.el (isearch-ring-adjust1): Start visiting previous
15434 search strings from the index 0 (-1 + 1) instead of 1 (0 + 1).
15435 (isearch-repeat, isearch-edit-string): Call `isearch-ring-adjust1'
15436 for empty search string (when the last search string is reused
15437 automatically) to adjust the isearch ring to the last element and
15438 prepare the correct index for further M-p commands (bug#9185).
15439
15440 2011-08-24 Kenichi Handa <handa@m17n.org>
15441
15442 * international/ucs-normalize.el: If decomposition property of
15443 CHAR is the default one (i.e. a list of CHAR itself), treat it as
15444 nil.
15445 (nfd, nfkd): Likewise.
15446
15447 2011-08-24 Stefan Monnier <monnier@iro.umontreal.ca>
15448
15449 * mpc.el (mpc--proc-filter): Don't signal mpc-proc-error since signals
15450 from process filters aren't reliably transmitted to the surrounding
15451 accept-process-output.
15452 (mpc-proc-check): New function.
15453 (mpc-proc-sync): Use it (bug#8293)
15454
15455 2011-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
15456
15457 * emacs-lisp/eieio.el (eieio-defmethod, eieio-defgeneric):
15458 Add compatibility functions (bug#9313).
15459
15460 2011-08-23 Eli Zaretskii <eliz@gnu.org>
15461
15462 * cus-start.el (all): Add entry for bidi-paragraph-direction.
15463
15464 * international/uni-bidi.el: Regenerate.
15465
15466 2011-08-23 Kenichi Handa <handa@m17n.org>
15467
15468 * international/charprop.el:
15469 * international/uni-bidi.el:
15470 * international/uni-category.el:
15471 * international/uni-combining.el:
15472 * international/uni-comment.el:
15473 * international/uni-decimal.el:
15474 * international/uni-decomposition.el:
15475 * international/uni-digit.el:
15476 * international/uni-lowercase.el:
15477 * international/uni-mirrored.el:
15478 * international/uni-name.el:
15479 * international/uni-numeric.el:
15480 * international/uni-old-name.el:
15481 * international/uni-titlecase.el:
15482 * international/uni-uppercase.el: Regenerate.
15483
15484 2011-08-23 Martin Rudalics <rudalics@gmx.at>
15485
15486 * help.el (help-window-setup): Fix message displayed when other
15487 window is reused. (Bug#9341)
15488
15489 2011-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
15490
15491 * shell.el (shell-completion-vars): Set pcomplete-arg-quote-list.
15492 * pcomplete.el (pcomplete-quote-argument): Fix thinko (bug#9161).
15493
15494 * pcomplete.el (pcomplete-parse-comint-arguments): Fix inf-loop.
15495 Mark obsolete.
15496 * shell.el (shell-parse-pcomplete-arguments): New function.
15497 (shell-completion-vars): Use it instead (bug#9160).
15498
15499 2011-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
15500
15501 * progmodes/sh-script.el (sh-maybe-here-document): Disable magic in
15502 strings and comments (bug#9333).
15503
15504 * emacs-lisp/debug.el (debug-arglist): New function.
15505 (debug-convert-byte-code): Use it. Handle lexical byte-codes.
15506 (debug-on-entry-1): Handle interpreted closures (bug#9120).
15507
15508 2011-08-22 Juri Linkov <juri@jurta.org>
15509
15510 * progmodes/compile.el (compilation-mode-font-lock-keywords):
15511 Revert regexp that highlights output switches to its old
15512 pre-2010-10-28 value and remove one `?' from it (bug#9319).
15513
15514 * progmodes/grep.el (grep-process-setup): Use `buffer-modified-p'
15515 to check for empty output (bug#9226).
15516
15517 2011-08-22 Chong Yidong <cyd@stupidchicken.com>
15518
15519 * progmodes/scheme.el (scheme-mode-syntax-table): Don't use
15520 symbol-constituent as the default, as that stops font-lock from
15521 working properly (Bug#8843).
15522
15523 2011-08-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
15524
15525 * mail/smtpmail.el (smtpmail-via-smtp): Only bind
15526 `coding-system-for-*' around the process open call to avoid
15527 auth-source side effects.
15528 (smtpmail-try-auth-methods): Expand the secret password.
15529 (smtpmail-query-smtp-server): Allow `quit'-ing out in case the
15530 probe hangs.
15531
15532 2011-08-21 Chong Yidong <cyd@stupidchicken.com>
15533
15534 * term.el (term-mouse-paste): Yank primary selection (Bug#6845).
15535
15536 * emacs-lisp/find-func.el (find-function-noselect): New arg
15537 lisp-only.
15538
15539 * emacs-lisp/edebug.el (edebug-instrument-function): Use it to
15540 signal an error for built-in functions (Bug#6664).
15541
15542 2011-08-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
15543
15544 * mail/smtpmail.el (smtpmail-smtp-user): New variable.
15545 (smtpmail-try-auth-methods): Use it.
15546
15547 2011-08-21 Chong Yidong <cyd@stupidchicken.com>
15548
15549 * font-lock.el (font-lock-fontify-region)
15550 (font-lock-unfontify-region, font-lock-default-fontify-buffer)
15551 (font-lock-default-unfontify-buffer)
15552 (font-lock-default-fontify-region)
15553 (font-lock-default-unfontify-region): Add docstrings (Bug#8624).
15554
15555 * progmodes/compile.el (compilation-error-properties):
15556 Fix confusion between file struct and message struct (Bug#9319).
15557 (compilation-error-regexp-alist-alist): Fix 2011-05-09 change to
15558 `ant' regexp.
15559
15560 * net/browse-url.el (browse-url-firefox): Don't call
15561 browse-url-firefox-sentinel unless using -remote (Bug#9328).
15562
15563 2011-08-20 Glenn Morris <rgm@gnu.org>
15564
15565 * tutorial.el (help-with-tutorial): Avoid an error on short screens.
15566
15567 * tutorial.el (tutorial--default-keys): Update some default bindings.
15568
15569 * files.el (hack-local-variables): Fully ignore case for "mode:".
15570
15571 2011-08-20 Alan Mackenzie <acm@muc.de>
15572
15573 Resolve invalid use of a regexp in regexp-opt.
15574
15575 * progmodes/cc-fonts.el (c-complex-decl-matchers): Add in special
15576 detection for a java annotation.
15577
15578 * progmodes/cc-engine.el (c-forward-decl-or-cast-1): Add in special
15579 detection for a java annotation.
15580
15581 * progmodes/cc-langs.el (c-prefix-spec-kwds-re): Remove the special
15582 handling for java.
15583 (c-modifier-kwds): Remove the regexp "@[A-za-z0-9]+".
15584
15585 2011-08-20 Chong Yidong <cyd@stupidchicken.com>
15586
15587 * startup.el (normal-top-level-add-subdirs-to-load-path): Doc fix
15588 (Bug#9274).
15589
15590 2011-08-20 Alan Mackenzie <acm@muc.de>
15591
15592 Fontify CPP expressions correctly when starting in the middle of
15593 such a construct. Mainly for when jit-lock etc. starts a chunk
15594 here.
15595
15596 * progmodes/cc-fonts.el (c-font-lock-context): New buffer local
15597 variable.
15598 (c-make-font-lock-search-form): New function, extracted from
15599 c-make-font-lock-search-function.
15600 (c-make-font-lock-search-function): Use the above function.
15601 (c-make-font-lock-context-search-function): New function.
15602 (c-cpp-matchers): Enhance the preprocessor expression case with
15603 the above function
15604 (c-font-lock-complex-decl-prepare): Test for being in a CPP form
15605 which takes an expression.
15606
15607 * progmodes/cc-langs.el (c-cpp-expr-intro-re): New lang-variable.
15608
15609 2011-08-20 Martin Rudalics <rudalics@gmx.at>
15610
15611 * window.el (display-buffer-reuse-window)
15612 (display-buffer-pop-up-window): Don't reuse or split a side
15613 window.
15614
15615 2011-08-19 Glenn Morris <rgm@gnu.org>
15616
15617 * files.el (hack-local-variables-prop-line, hack-local-variables):
15618 Downcase "Mode:". (Bug#9331)
15619
15620 2011-08-18 Chong Yidong <cyd@stupidchicken.com>
15621
15622 * international/characters.el: Add L and R categories.
15623
15624 * subr.el (bidi-string-mark-left-to-right): Rename from
15625 string-mark-left-to-right. Use category search.
15626
15627 * buff-menu.el (Buffer-menu-buffer+size): Callers changed.
15628
15629 2011-08-18 Juri Linkov <juri@jurta.org>
15630
15631 * faces.el (error, warning, success): New faces with definitions
15632 copied from old default values of `font-lock-warning-face',
15633 `compilation-warning', `compilation-info' (bug#6117).
15634
15635 * font-lock.el (font-lock-warning-face): Inherit from `error'.
15636
15637 * progmodes/compile.el (compilation-error): Inherit from `error'.
15638 (compilation-warning): Inherit from `warning'.
15639 (compilation-info): Inherit from `success'.
15640
15641 * dired.el (dired-marked): Inherit from `warning'.
15642 (dired-flagged): Inherit from `error'.
15643
15644 2011-08-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
15645
15646 * mail/smtpmail.el (auth-source): Require to avoid problems with
15647 binding variables (bug#9298). Also clean up some unused
15648 autoloads.
15649
15650 * net/network-stream.el (network-stream-open-starttls):
15651 Support using starttls.el without using gnutls-cli.
15652
15653 2011-08-17 Juri Linkov <juri@jurta.org>
15654
15655 * progmodes/grep.el (rgrep): Handle the case when
15656 `grep-find-command' is a cons cell (bug#9278).
15657
15658 2011-08-17 Martin Rudalics <rudalics@gmx.at>
15659
15660 * window.el (display-buffer-pop-up-frame): Run frame creation
15661 function with BUFFER current (as special-display-popup-frame
15662 does). Reported by Drew Adams.
15663
15664 2011-08-17 Daiki Ueno <ueno@unixuser.org>
15665
15666 * epa-mail.el: Simplify GnuPG group expansion using
15667 epg-expand-group.
15668 (epa-mail-group-alist, epa-mail-group-modtime)
15669 (epa-mail-gnupg-conf-file, epa-mail-parse-groups)
15670 (epa-mail-sync-groups, epa-mail-expand-recipient-1)
15671 (epa-mail-expand-recipients-2, epa-mail-expand-recipients):
15672 Remove.
15673
15674 2011-08-16 Feng Li <fengli@gmail.com> (tiny change)
15675
15676 * calc/calc-ext.el (math-defintegral-2): Remove nested backquote.
15677
15678 2011-08-16 Alan Mackenzie <acm@muc.de>
15679
15680 * progmodes/cc-engine.el (c-state-cache-non-literal-place):
15681 Correct, to avoid the inside of macros.
15682
15683 2011-08-16 Richard Stallman <rms@gnu.org>
15684
15685 * epa-mail.el: Handle GnuPG group definitions.
15686 (epa-mail-group-alist, epa-mail-group-modtime)
15687 (epa-mail-gnupg-conf-file): New variables.
15688 (epa-mail-parse-groups, epa-mail-sync-groups)
15689 (epa-mail-expand-recipient-1, epa-mail-expand-recipients-2)
15690 (epa-mail-expand-recipients): New functions.
15691 (epa-mail-encrypt): Call epa-mail-expand-recipients.
15692
15693 * mail/rmail.el (rmail-epa-decrypt): New command.
15694
15695 * epa.el (epa-decrypt-region): New arg MAKE-BUFFER-FUNCTION.
15696 Don't bind buffer-read-only, just inhibit-read-only.
15697 (epa--find-coding-system-for-mime-charset): Fix the non-xemacs case.
15698 (epa-decrypt-armor-in-region): Make error message clearer.
15699
15700 2011-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
15701
15702 * minibuffer.el (completion-pcm--merge-completions): Don't merge "a1b"
15703 and "a2b" to "ab" for `prefix'.
15704
15705 2011-08-14 Chong Yidong <cyd@stupidchicken.com>
15706
15707 * ibuf-ext.el (ibuffer-filter-disable): New arg for deleting
15708 filter groups.
15709 (ibuffer-included-in-filter-p-1): Use it. Suggested by Rafaël
15710 Fourquet (Bug#8804).
15711
15712 2011-08-12 Juanma Barranquero <lekktu@gmail.com>
15713
15714 * startup.el (argi): Declare as global variable (bug#9275).
15715
15716 2011-08-12 Chong Yidong <cyd@stupidchicken.com>
15717
15718 * subr.el (string-mark-left-to-right): Search the entire string
15719 for RTL script, not just the terminating character. Doc fix.
15720
15721 2011-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
15722
15723 * progmodes/js.el (js-syntax-propertize, js-syntax-propertize-regexp):
15724 New function.
15725 (js--regexp-literal, js-syntax-propertize-function): Remove.
15726 (js-mode): Use js-syntax-propertize to handle multilines (bug#9183).
15727 (js-mode-map): Don't rebind electric keys.
15728 (js-insert-and-indent): Remove.
15729 (js-mode): Setup electric-layout and electric-indent instead.
15730
15731 * epa-file.el (epa-file-select-keys): Revert to nil default (bug#9280).
15732
15733 2011-08-12 Daiki Ueno <ueno@unixuser.org>
15734
15735 * epa.el (epa-progress-callback-function): Fix the logic of
15736 displaying progress.
15737 * epa-file.el (epa-file-insert-file-contents): Make progress
15738 display more user-friendly.
15739 (epa-file-write-region): Ditto.
15740
15741 2011-08-10 Chong Yidong <cyd@stupidchicken.com>
15742
15743 * subr.el (string-mark-left-to-right): New function.
15744
15745 * buff-menu.el (Buffer-menu-buffer+size): Remove LRM argument.
15746 Use string-mark-left-to-right.
15747 (list-buffers-noselect): Caller changed.
15748
15749 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
15750 Use string-mark-left-to-right.
15751 (tabulated-list-print): Recenter after moving point.
15752
15753 2011-08-10 Juri Linkov <juri@jurta.org>
15754
15755 * progmodes/grep.el (rgrep): Don't bind `process-connection-type'.
15756 This finishes incomplete reversion of 2011-06-30T01:09:13Z!larsi@gnus.org
15757 intended by 2011-07-06T15:49:19Z!larsi@gnus.org.
15758
15759 2011-08-09 Chong Yidong <cyd@stupidchicken.com>
15760
15761 * hi-lock.el (hi-lock-unface-buffer): Fix interactive spec
15762 (Bug#7554).
15763
15764 2011-08-09 Andreas Schwab <schwab@linux-m68k.org>
15765
15766 * xt-mouse.el (xterm-mouse-event-read): Try to recover the raw
15767 character. (Bug#6594)
15768
15769 2011-08-08 Chong Yidong <cyd@stupidchicken.com>
15770
15771 * image-dired.el: Don't use find-file for temporary work (Bug#7895).
15772 (image-dired--with-db-file): New macro.
15773 (image-dired-write-tags, image-dired-remove-tag)
15774 (image-dired-create-gallery-lists, image-dired-write-comments)
15775 (image-dired-get-comment, image-dired-mark-tagged-files)
15776 (image-dired-list-tags, image-dired-gallery-generate): Use it.
15777 (image-dired-gallery-generate): Use insert-file-contents.
15778
15779 * time.el (display-time-world-list, display-time-world-display):
15780 * time-stamp.el (time-stamp-string):
15781 * vc/add-log.el (add-change-log-entry): Use setenv instead of
15782 set-time-zone-rule (Bug#7337).
15783
15784 2011-08-08 Daiki Ueno <ueno@unixuser.org>
15785
15786 * epg.el (epg--status-KEYEXPIRED, epg--status-KEYREVOKED): Fix typo.
15787 (epg-error-to-string, epg-errors-to-string): New function.
15788 (epg-wait-for-completion): Reverse errors list.
15789 (epg--check-error-for-decrypt, epg-sign-file, epg-sign-string)
15790 (epg-encrypt-file, epg-encrypt-string, epg-export-keys-to-file)
15791 (epg--import-keys-1, epg-receive-keys, epg-delete-keys)
15792 (epg-sign-keys, epg-generate-key-from-file)
15793 (epg-generate-key-from-string): Format errors by using
15794 epg-errors-to-string (bug#9255).
15795 (epg--status-INV_SGNR, epg--status-NO_SGNR): New status handler.
15796
15797 2011-08-07 Juri Linkov <juri@jurta.org>
15798
15799 * faces.el (list-faces-display): Remove extra angle bracket
15800 from `help-mode-map'.
15801
15802 * info.el (Info-history-toc-nodes): Doc fix.
15803
15804 * longlines.el (longlines-mode): Doc fix.
15805
15806 2011-08-05 Stefan Monnier <monnier@iro.umontreal.ca>
15807
15808 * progmodes/js.el (js--regexp-literal): Accept regexps at the beginning
15809 of statements and in a few more cases (bug#9183).
15810
15811 * emacs-lisp/cl-macs.el (cl--make-usage-var, cl--make-usage-args):
15812 New functions.
15813 (cl-transform-lambda): Use them (bug#9239).
15814
15815 2011-08-05 Martin Rudalics <rudalics@gmx.at>
15816
15817 * window.el (display-buffer-same-window)
15818 (display-buffer-same-frame, display-buffer-other-window)
15819 (pop-to-buffer-same-window, pop-to-buffer-same-frame)
15820 (pop-to-buffer-other-window)
15821 (pop-to-buffer-same-frame-other-window)
15822 (pop-to-buffer-other-frame): Make them defuns.
15823 (switch-to-buffer): Don't set LABEL argument of pop-to-buffer.
15824
15825 2011-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
15826
15827 * subr.el (make-composed-keymap): Move from C. Change calling
15828 convention, and improve docstring to bring attention to a subtle point.
15829 * minibuffer.el (completing-read-default): Adjust accordingly.
15830
15831 2011-08-03 Michael Albinus <michael.albinus@gmx.de>
15832
15833 * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell)
15834 (tramp-open-shell): Use `tramp-shell-quote-argument'.
15835
15836 * net/trampver.el: Update release number.
15837
15838 2011-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
15839
15840 * progmodes/sh-script.el (sh-font-lock-paren): Don't mistake "main" for
15841 "in" (bug#9190).
15842
15843 2011-08-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
15844
15845 * mail/sendmail.el (sendmail-query-once): Restore the current
15846 buffer after querying (bug#9074).
15847
15848 * dired.el (dired-flagged): Use different faces for marked and
15849 flagged files (bug#6117).
15850
15851 * emacs-lisp/cl-macs.el (dolist): Mention that there's a nil block
15852 (bug#4433).
15853
15854 * ido.el (ido-mode): Switch off the message if called
15855 non-interactively.
15856
15857 * mail/smtpmail.el (smtpmail-query-smtp-server): Try port 25
15858 before 587, since it appears that that's more likely to work for
15859 more people.
15860
15861 * cus-edit.el (custom-file): When running under emacs -q, always
15862 refuse to save the customizations, even if the .emacs file doesn't
15863 exist.
15864
15865 * info.el: Remove the `Info-beginning-of-buffer' function
15866 (bug#8325).
15867
15868 * net/network-stream.el (network-stream-open-starttls):
15869 Use `starttls-available-p' to see whether starttls.el can be used.
15870
15871 2011-08-01 Martin Rudalics <rudalics@gmx.at>
15872
15873 * window.el (display-buffer-in-window): Don't set dedicated status
15874 of window here (Bug#9215).
15875 (display-buffer-pop-up-window, display-buffer-pop-up-frame)
15876 (display-buffer-pop-up-side-window)
15877 (display-buffer-in-side-window): Set dedicated status of window here.
15878
15879 2011-08-01 Stefan Monnier <monnier@iro.umontreal.ca>
15880
15881 * emacs-lisp/package.el (package-generate-autoloads): Load autoloads
15882 before binding generated-autoload-file.
15883
15884 2011-08-01 Deniz Dogan <deniz@dogan.se>
15885
15886 * net/rcirc.el (rcirc-handler-333): Clarify docstring.
15887
15888 2011-07-30 Michael Albinus <michael.albinus@gmx.de>
15889
15890 Sync with Tramp 2.2.2.
15891
15892 * net/trampver.el: Update release number.
15893
15894 2011-07-30 Juri Linkov <juri@jurta.org>
15895
15896 * dired-aux.el (dired-touch-initial): Remove function.
15897 (dired-do-chxxx): For op-symbol `touch', set `initial' to the
15898 current time, and `default' to the last modification time of the
15899 current marked file (bug#6887).
15900
15901 2011-07-28 Jose E. Marchesi <jemarch@gnu.org>
15902
15903 * simple.el (goto-line): Use string-to-number to provide a
15904 numeric argument to read-number (bug#9163).
15905
15906 2011-07-27 Michael Albinus <michael.albinus@gmx.de>
15907
15908 * net/tramp-sh.el (tramp-maybe-send-script): Don't let-bind the
15909 connection process, it could be nil.
15910
15911 2011-07-27 Leo Liu <sdl.web@gmail.com>
15912
15913 Simplify url handling in rcirc-mode.
15914
15915 * net/rcirc.el (rcirc-browse-url-map, rcirc-browse-url-at-point)
15916 (rcirc-browse-url-at-mouse): Remove.
15917 * net/rcirc.el (rcirc-markup-urls): Use `make-button'.
15918
15919 2011-07-26 Alan Mackenzie <acm@muc.de>
15920
15921 Fontify bitfield declarations properly.
15922
15923 * progmodes/cc-langs.el (c-has-bitfields): New lang variable.
15924 (c-symbol-chars): Now exported as a lang variable.
15925 (c-not-primitive-type-keywords): New lang variable.
15926
15927 * progmodes/cc-fonts.el (c-font-lock-declarations): Jump over the
15928 QT keyword "more" to prevent "more slots: ...." being spuriously
15929 parsed as a bitfield declaration.
15930
15931 * progmodes/cc-engine.el (c-beginning-of-statement-1):
15932 Refactor and enhance to handle bitfield declarations.
15933 (c-punctuation-in): New function.
15934 (c-forward-decl-or-cast-1): Enhance CASE 3 to handle bitfield
15935 declarations properly.
15936
15937 2011-07-26 Ulf Jasper <ulf.jasper@web.de>
15938
15939 * calendar/icalendar.el (icalendar--all-events): Take care of
15940 multiple vcalendars in a single file.
15941 (icalendar--convert-float-to-ical): Checkdoc fixes.
15942
15943 2011-07-25 Deniz Dogan <deniz@dogan.se>
15944
15945 * image.el (insert-image): Clarifying docstring.
15946
15947 2011-07-24 Michael Albinus <michael.albinus@gmx.de>
15948
15949 * net/tramp-sh.el (tramp-barf-unless-okay): Return the value of
15950 `tramp-send-command-and-check' if there is no error.
15951 (tramp-send-command-and-read): Suppress *all* errors if NOERROR.
15952
15953 2011-07-22 Alan Mackenzie <acm@muc.de>
15954
15955 Prevent cc-langs.elc being loaded at run time.
15956
15957 * progmodes/cc-mode.el: Remove two autoload forms which loaded
15958 cc-langs.
15959
15960 * progmodes/cc-langs.el (c-make-init-lang-vars-fun): Don't emit
15961 "(require 'cc-langs)". Quote a form so it will evaluate at
15962 (cc-mode's) compilation time.
15963
15964 2011-07-22 Michael Albinus <michael.albinus@gmx.de>
15965
15966 * net/tramp.el (tramp-file-name-handler): Avoid recursive
15967 loading. (Bug#9114)
15968
15969 2011-07-21 Martin Rudalics <rudalics@gmx.at>
15970
15971 * window.el (display-buffer-pop-up-window)
15972 (display-buffer-pop-up-side-window)
15973 (display-buffer-in-side-window): Call display-buffer-set-height
15974 and display-buffer-set-width after setting the new window's
15975 buffer so `fit-window-to-buffer' and friends work on the right buffer.
15976
15977 2011-07-20 Sam Steingold <sds@gnu.org>
15978
15979 * progmodes/etags.el (etags-file-of-tag, etags-tags-table-files)
15980 (etags-tags-included-tables): Call `convert-standard-filename' on
15981 the file names contained in TAGS so that windows Emacs can handle
15982 TAGS files created by cygwin ctags.
15983
15984 2011-07-20 Lars Magne Ingebrigtsen <larsi@gnus.org>
15985
15986 * proced.el (proced-update): Revert yesterday's bug#1779 patch,
15987 which apparently didn't work.
15988
15989 2011-07-19 Roland Winkler <winkler@gnu.org>
15990
15991 * proced.el (proced-send-signal): For *Marked Processes* buffer
15992 put point at beginning of buffer.
15993
15994 2011-07-19 Stephen Berman <stephen.berman@gmx.net>
15995
15996 * proced.el (proced-format): Make header lines align with the text
15997 (bug#1779).
15998
15999 2011-07-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
16000
16001 * view.el (view-buffer): Allow running in `special' modes if we're
16002 visiting a file (bug#8615).
16003
16004 2011-07-19 Martin Rudalics <rudalics@gmx.at>
16005
16006 * window.el (display-buffer-alist-of-strings-p)
16007 (display-buffer-alist-set-1, display-buffer-alist-set-2):
16008 New functions.
16009 (display-buffer-alist-set): Rewrite to handle Emacs 23 options
16010 more accurately.
16011
16012 2011-07-18 Alan Mackenzie <acm@muc.de>
16013
16014 Fontify declarators properly when, e.g., a jit-lock chunk begins
16015 inside a declaration.
16016
16017 * progmodes/cc-langs.el (c-symbol-chars): Correct a typo.
16018
16019 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
16020 New function.
16021 (c-complex-decl-matchers): Insert reference to
16022 c-font-lock-enclosing-decls.
16023
16024 * progmodes/cc-engine.el (c-backward-single-comment):
16025 (c-backward-comments): Bind open-paren-in-column-0-is-defun-start
16026 to nil around calls to (forward-comment -1).
16027
16028 2011-07-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
16029
16030 * image.el (put-image): Doc typo fix.
16031
16032 * progmodes/etags.el (tags-search): Doc typo fix.
16033
16034 * mail/smtpmail.el (smtpmail-via-smtp): Query the user for
16035 password if we get errors 550 to 554.
16036
16037 2011-07-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
16038
16039 * net/gnutls.el (gnutls-log-level): Remove.
16040
16041 * textmodes/fill.el (adaptive-fill-regexp): Include EN DASH as an
16042 indentation character (bug#6380).
16043
16044 * files.el (buffer-offer-save): Made permanently local (bug#6241).
16045
16046 * doc-view.el (doc-view-make-safe-dir): Rewrite the error message
16047 to clarify what the problem is (bug#4291).
16048
16049 * simple.el (current-kill): Clarify what
16050 `interprogram-paste-function' does (bug#7500).
16051 (auto-fill-mode): Document `auto-fill-function' in relation to
16052 `auto-fill-mode' (bug#2470).
16053
16054 2011-07-16 Lawrence Mitchell <wence@gmx.li>
16055
16056 * emacs-lisp/cl-macs.el (defstruct): Ignore argument to setf
16057 method if slot is read-only (bug#9035).
16058
16059 2011-07-16 Martin Rudalics <rudalics@gmx.at>
16060
16061 * frame.el (select-frame-set-input-focus): New argument NORECORD.
16062 * window.el (pop-to-buffer): Select window used even if it was
16063 selected before, see discussion of (Bug#8615), (Bug#6954).
16064 Pass argument NORECORD on to select-frame-set-input-focus.
16065
16066 2011-07-15 Glenn Morris <rgm@gnu.org>
16067
16068 * subr.el (read-char-choice): Allow quitting. (Bug#9001)
16069 Respect help-form.
16070
16071 2011-07-09 Lawrence Mitchell <wence@gmx.li>
16072
16073 * net/gnutls.el (gnutls-min-prime-bits): New variable.
16074 (gnutls-negotiate): Use it.
16075
16076 2011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
16077
16078 * net/gnutls.el (gnutls-negotiate):
16079 Upcase `gnutls-algorithm-priority'.
16080
16081 2011-07-15 Glenn Morris <rgm@gnu.org>
16082
16083 * jka-compr.el (jka-compr-verbose): Move from here...
16084 * jka-cmpr-hook.el (jka-compr-verbose): ... to here. (Bug#9090)
16085 Add missing :version tag.
16086 * info.el: No need to require jka-compr when compiling.
16087
16088 2011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
16089
16090 * net/gnutls.el (gnutls-algorithm-priority): New variable.
16091 (gnutls-negotiate): Use it.
16092
16093 * emacs-lisp/cl-macs.el (declare): Link to the "Declarations" node.
16094
16095 * info.el (Info-beginning-of-buffer): New command.
16096 (Info-mode-map): Use it instead of `beginning-of-buffer' to allow
16097 announcing `b' as the key (bug#8325).
16098 (Info-mode-menu): Use `Info-beginning-of-buffer' for consistency.
16099
16100 * emacs-lisp/cl-macs.el (declare): Doc string fix-up.
16101
16102 * international/mule-cmds.el
16103 (describe-specified-language-support): Make the error message
16104 clearer (bug#8905).
16105
16106 * emacs-lisp/cl-macs.el (declare): Add a doc string (bug#8690).
16107
16108 * isearch.el (isearch-barrier): Add a doc string, since it's
16109 mentioned in a function doc string (bug#8678).
16110
16111 2011-07-15 Martin Rudalics <rudalics@gmx.at>
16112
16113 * window.el (switch-to-buffer): Call pop-to-buffer with normalized
16114 buffer argument (Bug#9083) and self-identifying label argument.
16115
16116 2011-07-15 Glenn Morris <rgm@gnu.org>
16117
16118 * emacs-lisp/debug.el (debug): Doc fix. (Bug#8273)
16119
16120 2011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
16121
16122 * man.el (Man-fontify-manpage): Fix message when formatting the
16123 man page (bug#7929).
16124
16125 2011-07-14 Eli Zaretskii <eliz@gnu.org>
16126
16127 * buff-menu.el (Buffer-menu-buffer+size): Accept an additional
16128 argument LRM; if non-nil, append an invisible LRM character to the
16129 buffer name.
16130 (list-buffers-noselect): Call Buffer-menu-buffer+size with the
16131 last argument non-nil, when formatting buffer names.
16132 (Buffer-menu-mode, list-buffers-noselect): Force left-to-right
16133 paragraph direction.
16134
16135 2011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
16136
16137 * man.el (Man-bgproc-sentinel): Skip any arguments and only output
16138 the man page name (bug#7929).
16139
16140 * image.el (put-image): Mention the `put-image' overlay property
16141 (bug#7834).
16142
16143 * scroll-bar.el (set-scroll-bar-mode): Mention that
16144 `scroll-bar-mode' lists the values (bug#7772).
16145
16146 * image-mode.el (image-mode-fit-frame): Mention that it's a toggle
16147 command (bug#7729).
16148
16149 * rect.el (apply-on-rectangle): Return the point after the last
16150 operation.
16151 (string-rectangle): Go to the point after the last operation
16152 (bug#7522).
16153
16154 * printing.el (pr-toggle-region): Clarify the documentation
16155 slightly (bug#7493).
16156
16157 * time.el (display-time-update):
16158 Allow `display-time-mail-function' to return nil (bug#7158).
16159 Fix suggested by Detlev Zundel.
16160
16161 * vc/diff.el (diff): Clarify the order the file names are read
16162 (bug#7111).
16163
16164 * mouse.el (mouse-set-region): Link to `mouse-drag-copy-region' in
16165 the doc string (bug#7015).
16166
16167 * font-lock.el (font-lock-maximum-decoration): Mention what
16168 numeric levels mean (bug#6935).
16169
16170 * startup.el (initial-buffer-choice): Don't mention the `none'
16171 selection, which is against policy.
16172
16173 2011-07-14 Martin Rudalics <rudalics@gmx.at>
16174
16175 * window.el (display-buffer-normalize-special):
16176 Replace `dedicated' by `dedicate' to dedicate window (Bug#9072).
16177
16178 2011-07-14 Eli Zaretskii <eliz@gnu.org>
16179
16180 * subr.el (version<, version<=, version=): Mention "-CVS" and
16181 "-12345" alpha version numbers.
16182
16183 2011-07-14 Chong Yidong <cyd@stupidchicken.com>
16184
16185 * bindings.el: Add advertised binding for set-mark-command
16186 (Bug#5772).
16187
16188 2011-07-14 Chong Yidong <cyd@stupidchicken.com>
16189
16190 * bindings.el (mode-line-other-buffer):
16191 * bookmark.el (bookmark-bmenu-2-window):
16192 * bs.el (bs-cycle-next, bs-cycle-previous):
16193 * net/tramp-cmds.el (tramp-append-tramp-buffers): Revert to using
16194 switch-to-buffer.
16195
16196 * net/tramp-compat.el (tramp-compat-pop-to-buffer-same-window):
16197 Delete.
16198
16199 2011-07-14 Juanma Barranquero <lekktu@gmail.com>
16200
16201 * follow.el (follow-debug-message, follow-redisplay):
16202 * jka-cmpr-hook.el (with-auto-compression-mode):
16203 Fix typos in docstrings.
16204
16205 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
16206
16207 * subr.el (with-silent-modifications): Clarify somewhat what the
16208 macro inhibits (bug#6525).
16209
16210 * simple.el (eval-expression): Note what it does if called
16211 interactively (bug#6495).
16212
16213 2011-07-13 Chong Yidong <cyd@stupidchicken.com>
16214
16215 * window.el (switch-to-buffer): New arg FORCE-SAME-WINDOW.
16216 Use pop-to-buffer buffer-or-name if it is nil.
16217
16218 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
16219 Remove switch-to-buffer.
16220
16221 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
16222
16223 * files.el (make-directory): Clarify that an error will be raised
16224 if there's an error (bug#6397).
16225
16226 * startup.el (initial-buffer-choice): Add `none' as a choice
16227 (bug#6234).
16228
16229 * subr.el (add-hook): Clarify section about buffer-local hooks
16230 (bug#6218).
16231
16232 * dired.el (dired-flagged): Clarify doc string (bug#6117).
16233
16234 2011-07-13 Juanma Barranquero <lekktu@gmail.com>
16235
16236 * tabify.el (untabify): Preserve the current column so that point
16237 doesn't move (bug#6032).
16238
16239 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
16240
16241 * progmodes/cperl-mode.el (cperl-syntaxify-by-font-lock):
16242 Rewrite to avoid awkward possessive "s" (bug#5986).
16243
16244 2011-07-13 Glenn Morris <rgm@gnu.org>
16245
16246 * dired.el (dired-use-ls-dired): Doc fix. (Bug#9039).
16247 (dired-insert-directory): Give a message the first time
16248 if ls is found not to support --dired.
16249
16250 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
16251
16252 * simple.el (toggle-truncate-lines): Clarify what is toggled
16253 (bug#5580). Text by Drew Adams.
16254
16255 2011-07-13 Chong Yidong <cyd@stupidchicken.com>
16256
16257 * simple.el (blink-matching-open): Make the error message from the
16258 last change less verbose.
16259
16260 2011-07-13 Dan Nicolaescu <dann@ics.uci.edu>
16261
16262 * font-lock.el (font-lock-comment-face): Use the high contrast
16263 "yellow" color for font-lock-comment-face on low color terminals
16264 using a dark background color (bug#4221).
16265
16266 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
16267
16268 * dired.el (dired-insert-set-properties): Make the doc string
16269 reflect what it does now (bug#5325).
16270
16271 * simple.el (blink-matching-open): Say that we were unable to find
16272 the match within the limit, if we're limited (bug#5122).
16273
16274 * international/mule-cmds.el (prefer-coding-system): Add an
16275 example (bug#4869).
16276
16277 * progmodes/etags.el (tags-search): Document `file-list-form'
16278 (bug#4731).
16279
16280 2011-07-13 Lawrence Mitchell <wence@gmx.li>
16281
16282 * net/browse-url.el (browse-url-default-browser)
16283 (browse-url-browser-function): Make the default browser choice a
16284 bit more logical (bug#4300). Also clean up the doc string.
16285
16286 2011-07-13 Juanma Barranquero <lekktu@gmail.com>
16287
16288 * bindings.el (completion-ignored-extensions): Add OpenMCL/Clozure
16289 binary endings (bug#4440).
16290
16291 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
16292
16293 * info.el (info-insert-file-contents): Inhibit jka-compr messages,
16294 which can be pretty annoying (bug#8971).
16295
16296 * jka-compr.el (jka-compr-verbose): New variable, and use
16297 throughout (bug#8971).
16298
16299 * info.el (Info-find-file): Fall back on the installation
16300 directory if we can't find the info node anywhere else.
16301
16302 2011-07-13 Sergei Organov <osv@javad.com> (tiny change)
16303
16304 * vc/vc.el (vc-revert-file):
16305 Don't set file time-stamp in the past. (Bug#5181)
16306
16307 2011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
16308
16309 * files.el (after-find-file): Give a better error message when
16310 trying to find a symlink that points to a file that doesn't exist
16311 (bug#4398).
16312
16313 * progmodes/cc-vars.el: Remove (probably) misleading comment
16314 (bug#4396).
16315
16316 2011-07-12 Johan Bockgård <bojohan@gnu.org>
16317
16318 * mouse-sel.el (mouse-sel-primary-overlay): Use the `region' face.
16319
16320 2011-07-12 Chong Yidong <cyd@stupidchicken.com>
16321
16322 * mouse-sel.el: Hack restoring functionality, while keeping
16323 compatibility with 2010-07-03 changes to mouse selection.
16324 (mouse-sel-primary-overlay): New var.
16325 (mouse-sel-selection-alist): Use it.
16326 (mouse-sel-mode): Doc fix; remove points that are default features
16327 of mouse.el.
16328
16329 2011-07-12 Johan Bockgård <bojohan@gnu.org>
16330
16331 * progmodes/compile.el (compilation-error-regexp-alist-alist):
16332 Fix previous fix (bug#2490).
16333
16334 2011-07-12 Roland Winkler <winkler@gnu.org>
16335
16336 * textmodes/bibtex.el (bibtex-initialize):
16337 Use pop-to-buffer-same-window.
16338 (bibtex-search-entries): Fix interactive call.
16339
16340 2011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
16341
16342 * progmodes/compile.el (compilation-error-regexp-alist-alist):
16343 Fontise bytecomp Error lines more correctly (bug#2490).
16344 Fix suggested by Johan Bockgård.
16345
16346 * subr.el (remove-duplicates): Remove; `delete-dups' is sufficient.
16347
16348 * dired-x.el (dired-guess-default): Use `delete-dups'.
16349
16350 2011-07-12 Chong Yidong <cyd@stupidchicken.com>
16351
16352 * dired.el (dired-mark-prompt):
16353 * dired-aux.el (dired-read-shell-command): Doc fix.
16354
16355 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
16356
16357 * mail/sendmail.el (sendmail-query-once):
16358 Use `customize-save-variable' unconditionally, now that it works under
16359 emacs -Q.
16360
16361 * mail/smtpmail.el (smtpmail-query-smtp-server): Ditto.
16362
16363 * cus-edit.el (custom-file): Take an optional no-error variable.
16364 (customize-save-variable): Set the variable, and give a warning if
16365 running under "emacs -q".
16366
16367 2011-07-11 Juanma Barranquero <lekktu@gmail.com>
16368
16369 * loadhist.el (unload-feature-special-hooks):
16370 Add `auto-coding-functions', `fill-nobreak-predicate' and
16371 `find-directory-functions' (bug#5327).
16372
16373 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
16374
16375 * vc/ediff.el (ediff-patch-file): Clarify doc string (bug#3138).
16376
16377 * cus-edit.el (custom-guess-name-alist): -alist variables should
16378 use the `alist' type (bug#3120). Suggested by Drew Adams.
16379
16380 * printing.el: Add documentation to all the `pr-toggle-' commands.
16381
16382 2011-07-11 Leo Liu <sdl.web@gmail.com>
16383
16384 * files.el (toggle-read-only): Only do the `C-x C-q' warning on VC
16385 backends where it makes sense (bug#2623).
16386
16387 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
16388
16389 * dired-x.el (dired-guess-default): Remove duplicate shell command
16390 entries (bug#2028).
16391 (dired-guess-default): Fix grammar in doc string (bug#2028).
16392 (dired-guess-shell-alist-user): Clarify the example a bit (bug#2030).
16393
16394 * subr.el (remove-duplicates): New conveniency function.
16395
16396 2011-07-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
16397
16398 * tool-bar.el (tool-bar-mode): Clarify positive/negative arguments
16399 (bug#1526).
16400
16401 2011-07-10 Martin Rudalics <rudalics@gmx.at>
16402
16403 * window.el (display-buffer-normalize-default): Don't invert
16404 meaning of even-window-heights. Reported by Eli Zaretskii
16405 <eliz@gnu.org>.
16406
16407 2011-07-10 Bob Rogers <rogers@rgrjr.dyndns.org>
16408
16409 * vc/vc.el (vc-diff-internal): Fix race condition (Bug#1256).
16410
16411 2011-07-10 Chong Yidong <cyd@stupidchicken.com>
16412
16413 * window.el (display-buffer): Fix arguments to
16414 display-buffer-reuse-window in last change.
16415
16416 * faces.el (link): Use a less saturated blue on light backgrounds.
16417
16418 * startup.el (fancy-startup-text, fancy-about-text)
16419 (fancy-startup-tail): Use font-lock faces, for background safety.
16420
16421 2011-07-09 Bob Nnamtrop <bobnnamtrop@gmail.com> (tiny change)
16422
16423 * emulation/viper-cmd.el (viper-change-state-to-vi):
16424 Limit triggering of abbrev expansion (Bug#9038).
16425
16426 2011-07-09 Martin Rudalics <rudalics@gmx.at>
16427
16428 * window.el (display-buffer-default-specifiers): Remove.
16429 (display-buffer-macro-specifiers): Remove default specifiers.
16430 (display-buffer-alist): Default to nil.
16431 (display-buffer-reuse-window): New optional argument other-window.
16432 (display-buffer-pop-up-window): Allow splitting internal
16433 windows. Check whether a live window was created.
16434 (display-buffer-other-window-means-other-frame)
16435 (display-buffer-normalize-arguments): Rename to
16436 display-buffer-normalize-argument and rewrite. Set the
16437 other-window specifier.
16438 (display-buffer-normalize-special): New function.
16439 (display-buffer-normalize-options): Rename to
16440 display-buffer-normalize-default and rewrite.
16441 (display-buffer-normalize-options-inhibit): Remove.
16442 (display-buffer-normalize-specifiers): Rewrite.
16443 (display-buffer): Process other-window specifier and call
16444 display-buffer-reuse-window with it. Emulate Emacs 23 behavior
16445 more faithfully.
16446 (pop-up-windows, even-window-heights): Restore Emacs 23 default values.
16447 (display-buffer-alist-set): Don't handle 'unset default values.
16448 (display-buffer-in-window, display-buffer-alist-set):
16449 Replace symbol "dedicated" by "dedicate". Reported by Tassilo Horn
16450 <tassilo@member.fsf.org>.
16451
16452 2011-07-09 Leo Liu <sdl.web@gmail.com>
16453
16454 * register.el (insert-register): Restore accidental change on
16455 2011-06-26. (Bug#9028)
16456
16457 2011-07-09 Glenn Morris <rgm@gnu.org>
16458
16459 * subr.el (remq): Handle the empty list. (Bug#9024)
16460
16461 2011-07-08 Andreas Schwab <schwab@linux-m68k.org>
16462
16463 * mail/sendmail.el (send-mail-function): No longer delay custom
16464 initialization.
16465 * custom.el (custom-initialize-delay): Doc fix.
16466
16467 2011-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
16468
16469 * abbrev.el (expand-abbrev): Try to preserve point (bug#5805).
16470
16471 2011-07-08 Michael Albinus <michael.albinus@gmx.de>
16472
16473 * net/tramp-sh.el (tramp-sh-handle-start-file-process): Use a
16474 human-friendly prompt.
16475
16476 2011-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
16477
16478 * vc/vc-bzr.el (vc-bzr-revision-keywords): Remove svn, it's only
16479 provided by a particular plugin.
16480
16481 2011-07-08 Lars Magne Ingebrigtsen <larsi@gnus.org>
16482
16483 * mail/sendmail.el (sendmail-query-once): If we aren't allowed to
16484 save customizations (with "emacs -Q"), just set the variable
16485 instead of erroring out.
16486
16487 * mail/smtpmail.el (smtpmail-query-smtp-server): Ditto.
16488
16489 2011-07-08 Juri Linkov <juri@jurta.org>
16490
16491 * arc-mode.el (archive-zip-expunge, archive-zip-update)
16492 (archive-zip-update-case): Use 7z if found by `executable-find'.
16493 The order of searching the available programs is the same as in
16494 `archive-zip-extract' (bug#8968).
16495
16496 2011-07-07 Chong Yidong <cyd@stupidchicken.com>
16497
16498 * menu-bar.el (menu-bar-line-wrapping-menu): Revert last change.
16499 (menu-bar-options-menu): Tweak descriptions.
16500
16501 2011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
16502
16503 * menu-bar.el (menu-bar-line-wrapping-menu): Make all the Options
16504 menu items into verb phrases (bug#1421). Also refill to fit under
16505 80 columns.
16506
16507 2011-07-07 Chong Yidong <cyd@stupidchicken.com>
16508
16509 * info.el (info, Info-read-node-name-2, Info-read-node-name-1)
16510 (Info-read-node-name): Doc fix (Bug#1084).
16511
16512 * thingatpt.el (forward-thing, bounds-of-thing-at-point)
16513 (thing-at-point, beginning-of-thing, end-of-thing, in-string-p)
16514 (end-of-sexp, beginning-of-sexp)
16515 (thing-at-point-bounds-of-list-at-point, forward-whitespace)
16516 (forward-symbol, forward-same-syntax, word-at-point)
16517 (sentence-at-point): Doc fix (Bug#1144).
16518
16519 2011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
16520
16521 * info.el (Info-mode-map): Remove S-TAB binding, since [backtab]
16522 should cover it (bug#1281).
16523
16524 * cus-edit.el (custom-show): Mark as obsolete.
16525
16526 * net/network-stream.el (network-stream-open-starttls): If GnuTLS
16527 negotiation fails, then possibly try again with a non-encrypted
16528 connection (bug#9017).
16529
16530 * mail/smtpmail.el (smtpmail-stream-type): Note that `plain' can
16531 be used.
16532
16533 2011-07-07 Richard Stallman <rms@gnu.org>
16534
16535 * mail/rmail.el (rmail-next-error-move): Use `compilation-message'
16536 property, and handle its changed format.
16537 Look for the correct line number.
16538 Use file's line contents (but not past first =) to find
16539 correct line in message.
16540
16541 2011-07-07 Kenichi Handa <handa@m17n.org>
16542
16543 * international/characters.el (build-unicode-category-table):
16544 Delete it.
16545 (unicode-category-table): Set it by unicode-property-table-internal.
16546
16547 * international/mule-cmds.el (char-code-property-alist): Move to
16548 to src/chartab.c.
16549 (get-char-code-property): Call unicode-property-table-internal to
16550 load a file. Call get-unicode-property-internal where necessary.
16551 (put-char-code-property): Call unicode-property-table-internal to
16552 load a file. Call put-unicode-property-internal where necessary.
16553 put-unicode-property-internal where necessary.
16554 (char-code-property-description):
16555 Call unicode-property-table-internal to load a file.
16556
16557 * international/charprop.el:
16558 * international/uni-bidi.el:
16559 * international/uni-category.el:
16560 * international/uni-combining.el:
16561 * international/uni-comment.el:
16562 * international/uni-decimal.el:
16563 * international/uni-decomposition.el:
16564 * international/uni-digit.el:
16565 * international/uni-lowercase.el:
16566 * international/uni-mirrored.el:
16567 * international/uni-name.el:
16568 * international/uni-numeric.el:
16569 * international/uni-old-name.el:
16570 * international/uni-titlecase.el:
16571 * international/uni-uppercase.el: Regenerate.
16572
16573 * loadup.el: Load international/charprop.el before
16574 international/characters.
16575
16576 2011-07-07 Chong Yidong <cyd@stupidchicken.com>
16577
16578 * window.el (next-buffer, previous-buffer): Signal an error if
16579 called from a minibuffer window.
16580
16581 * bindings.el: Revert 2011-07-04 change.
16582
16583 2011-07-06 Richard Stallman <rms@gnu.org>
16584
16585 * mail/rmailmm.el (rmail-mime-process): Use markers for buf positions.
16586 (rmail-mime-insert-bulk, rmail-mime-insert-text):
16587 Treat markers like ints.
16588 (rmail-mime-entity): Doc fix.
16589
16590 2011-07-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
16591
16592 * mail/smtpmail.el (smtpmail-default-smtp-server): Made into a
16593 defcustom again for backwards compatibility.
16594
16595 * simple.el (shell-command-on-region): Fill.
16596
16597 * dired-aux.el (dired-kill-line): Add a doc string.
16598
16599 * dabbrev.el (dabbrev-abbrev-char-regexp): Note that nil defaults
16600 to "\\sw\\|\\s_" (bug#358).
16601
16602 * dired.el (dired-mode): Clarify "unmark or unflag" (bug#8770).
16603 (dired-unmark-backward): Ditto.
16604 (dired-flag-backup-files): Ditto.
16605
16606 * dired-x.el (dired-mark-sexp): Ditto.
16607
16608 2011-07-06 Richard Stallman <rms@gnu.org>
16609
16610 * mail/rmailmm.el: Give entity a new slot, TRUNCATED.
16611 (rmail-mime-entity): New arg TRUNCATED.
16612 (rmail-mime-entity-truncated, rmail-mime-entity-set-truncated):
16613 New functions.
16614 (rmail-mime-save): Warn if entity is truncated.
16615 (rmail-mime-toggle-hidden): Likewise, for showing.
16616 (rmail-mime-process-multipart): Record when an entity is truncated.
16617
16618 * mail/rmailmm.el (rmail-search-mime-message): Don't get confused
16619 if ENTITY is a string.
16620
16621 2011-07-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
16622
16623 * emacs-lisp/lisp-mode.el (eval-defun-1): Update the documentation
16624 of faces when `M-C-x'-ing their definitions (bug#8378).
16625 Also clean up the code slightly.
16626
16627 * progmodes/grep.el (rgrep): Don't bind `process-connection-type',
16628 because that makes the colors go away.
16629
16630 * mail/sendmail.el (send-mail-function): Change the default to
16631 `sendmail-query-once'.
16632 (sendmail-query-once): Add an autoload cookie.
16633
16634 * net/network-stream.el (network-stream-open-starttls): Try using
16635 a plain connection even if the server offered STARTTLS, and we
16636 kinda wanted to use it, if Emacs doesn't have any STARTTLS
16637 capability. This should make smtpmail.el work in slightly more
16638 configurations.
16639
16640 2011-07-06 Michael Albinus <michael.albinus@gmx.de>
16641
16642 * net/tramp-compat.el (tramp-compat-pop-to-buffer-same-window):
16643 New defun.
16644 * net/tramp-cmds.el (tramp-append-tramp-buffers): Use it.
16645
16646 2011-07-06 Michael R. Mauger <mmaug@yahoo.com>
16647
16648 * progmodes/sql.el: Version 3.0
16649 (sql-product-alist): Add product :completion-object,
16650 :completion-column, and :statement attributes.
16651 (sql-mode-menu, sql-interactive-mode-map): Fix List entries.
16652 (sql-mode-syntax-table): Mark all punctuation.
16653 (sql-font-lock-keywords-builder): Temporarily remove fallback on
16654 ansi keywords.
16655 (sql-regexp-abbrev, sql-regexp-abbrev-list): New functions.
16656 (sql-mode-oracle-font-lock-keywords): Improve.
16657 (sql-oracle-show-reserved-words): New function for development.
16658 (sql-product-font-lock): Simplify for source code buffers.
16659 (sql-product-syntax-table, sql-product-font-lock-syntax-alist):
16660 New functions.
16661 (sql-highlight-product): Set product specific syntax table.
16662 (sql-mode-map): Add statement movement functions.
16663 (sql-ansi-statement-starters, sql-oracle-statement-starters):
16664 New variable.
16665 (sql-statement-regexp, sql-beginning-of-statement)
16666 (sql-end-of-statement, sql-signum): New functions.
16667 (sql-buffer-live-p, sql=find-sqli-buffer): Add CONNECTION parameter.
16668 (sql-show-sqli-buffer): Bug fix.
16669 (sql-interactive-mode): Store connection data as buffer local.
16670 (sql-connect): Add NEW-NAME parameter. Redesign interaction
16671 with sql-interactive-mode.
16672 (sql-save-connection): Save buffer local settings.
16673 (sql-connection-menu-filter): Change menu entry name.
16674 (sql-product-interactive): Bug fix.
16675 (sql-preoutput-hold): New variable.
16676 (sql-interactive-remove-continuation-prompt): Bug fixes.
16677 (sql-debug-redirect): New variable.
16678 (sql-str-literal): New function.
16679 (sql-redirect, sql-redirect-one, sql-redirect-value, sql-execute):
16680 Redesign.
16681 (sql-oracle-save-settings, sql-oracle-restore-settings)
16682 (sql-oracle-list-all, sql-oracle-list-table): New functions.
16683 (sql-completion-object, sql-completion-column)
16684 (sql-completion-sqlbuf): New variables.
16685 (sql-build-completions-1, sql-build-completions)
16686 (sql-try-completion): New functions.
16687 (sql-read-table-name): Use them.
16688 (sql-contains-names): New buffer local variable.
16689 (sql-list-all, sql-list-table): Use it.
16690 (sql-oracle-completion-types): New variable.
16691 (sql-oracle-completion-object, sql-sqlite-completion-object)
16692 (sql-postgres-completion-object): New functions.
16693
16694 2011-07-06 Glenn Morris <rgm@gnu.org>
16695
16696 * window.el (pop-to-buffer): Doc fix.
16697
16698 2011-07-06 Markus Heiser <markus.heiser@darmarit.de> (tiny change)
16699
16700 * progmodes/gud.el (gud-pdb-marker-regexp): Accept \r char (Bug#5653).
16701
16702 2011-07-06 Chong Yidong <cyd@stupidchicken.com>
16703
16704 * window.el (special-display-popup-frame): Doc fix (Bug#8853).
16705
16706 * info.el (Info-directory-toc-nodes): Minor doc fix (Bug#8833).
16707
16708 2011-07-05 Chong Yidong <cyd@stupidchicken.com>
16709
16710 * button.el (button): Inherit from link face. Suggested by Dan
16711 Nicolaescu.
16712
16713 2011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
16714
16715 * progmodes/gdb-mi.el: Fit in 80 columns.
16716 (gdb-setup-windows, gdb-restore-windows): Avoid other-window and
16717 switch-to-buffer.
16718
16719 * progmodes/which-func.el (which-func-ff-hook): Don't output a message
16720 if imenu is simply not configured (bug#8941).
16721
16722 2011-07-05 Ken Manheimer <ken.manheimer@gmail.com>
16723
16724 * allout.el (allout-post-undo-hook): New allout outline-change
16725 event hook to signal undo activity.
16726 (allout-post-command-business): Run allout-post-undo-hook if an
16727 undo just occurred.
16728 (allout-after-copy-or-kill-hook, allout-mode): Minor docstring changes.
16729 * allout-widgets.el (allout-widgets-after-undo-function):
16730 Ensure the integrity of the current item's decoration after it has been
16731 in the vicinity of an undo.
16732 (allout-widgets-mode): Include allout-widgets-after-undo-function
16733 on the new allout-post-undo-hook.
16734
16735 2011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
16736
16737 * emacs-lisp/lisp-mode.el (lisp-interaction-mode-abbrev-table):
16738 Let define-derived-mode define it.
16739 * emacs-lisp/derived.el (define-derived-mode): Try to avoid creating
16740 cycles of abbrev-table inheritance (bug#8998).
16741
16742 2011-07-05 Roland Winkler <winkler@gnu.org>
16743
16744 * textmodes/bibtex.el: Add support for biblatex.
16745 (bibtex-BibTeX-entry-alist, bibtex-biblatex-entry-alist)
16746 (bibtex-BibTeX-field-alist, bibtex-biblatex-field-alist)
16747 (bibtex-dialect-list, bibtex-dialect, bibtex-no-opt-remove-re)
16748 (bibtex-entry-alist, bibtex-field-alist): New variables.
16749 (bibtex-entry-field-alist): Obsolete alias for
16750 bibtex-BibTeX-entry-alist.
16751 (bibtex-entry-alist, bibtex-field-alist): New widgets.
16752 (bibtex-set-dialect): New command.
16753 (bibtex-entry-type, bibtex-entry-head)
16754 (bibtex-entry-maybe-empty-head, bibtex-any-valid-entry-type):
16755 Bind via bibtex-set-dialect.
16756 (bibtex-Article, bibtex-Book, bibtex-Booklet, bibtex-InBook)
16757 (bibtex-InCollection, bibtex-InProceedings, bibtex-Manual)
16758 (bibtex-MastersThesis, bibtex-Misc, bibtex-PhdThesis)
16759 (bibtex-Proceedings, bibtex-TechReport, bibtex-Unpublished):
16760 Define via bibtex-set-dialect.
16761 (bibtex-name-in-field, bibtex-remove-OPT-or-ALT):
16762 Obey bibtex-no-opt-remove-re.
16763 (bibtex-vec-push, bibtex-vec-incr): New functions.
16764 (bibtex-format-entry, bibtex-field-list)
16765 (bibtex-print-help-message, bibtex-validate)
16766 (bibtex-search-entries): Use new format of bibtex-entry-alist.
16767
16768 2011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
16769
16770 * progmodes/compile.el (compilation-goto-locus):
16771 * net/tramp-cmds.el (tramp-append-tramp-buffers):
16772 * bs.el (bs-cycle-next, bs-cycle-previous):
16773 * bookmark.el (bookmark-bmenu-list, bookmark-bmenu-2-window):
16774 * bindings.el (mode-line-other-buffer):
16775 * autoinsert.el (auto-insert):
16776 * arc-mode.el (archive-extract):
16777 * abbrev.el (edit-abbrevs): Fix some uses of switch-to-buffer.
16778
16779 2011-07-05 Juanma Barranquero <lekktu@gmail.com>
16780
16781 * emacs-lock.el (emacs-lock-mode): Fix typo in variable name.
16782 Fix check of `emacs-lock-unlockable-modes'.
16783 Coerce true values of `emacs-lock--try-unlocking' to t.
16784
16785 2011-07-05 Juanma Barranquero <lekktu@gmail.com>
16786
16787 * obsolete/old-emacs-lock.el: Rename from emacs-lock.el.
16788 * emacs-lock.el: New file.
16789
16790 2011-07-05 Julien Danjou <julien@danjou.info>
16791
16792 * textmodes/rst.el (rst-define-level-faces): Use `facep' rather
16793 than `boundp' to check if face is set.
16794
16795 2011-07-05 Juanma Barranquero <lekktu@gmail.com>
16796
16797 * register.el (registerv-make):
16798 * window.el (window-min-height): Fix typos in docstrings.
16799
16800 2011-07-05 Jan Djärv <jan.h.d@swipnet.se>
16801
16802 * dynamic-setting.el (dynamic-setting-handle-config-changed-event):
16803 Update doc string.
16804
16805 2011-07-04 Juanma Barranquero <lekktu@gmail.com>
16806
16807 * server.el (server-execute): Catch quit and call
16808 `server-return-error' to pass the error back to emacsclient and
16809 close the connection (bug#8942).
16810
16811 2011-07-04 Ken Manheimer <ken.manheimer@gmail.com>
16812
16813 * allout.el (allout-encrypt-unencrypted-on-saves): Do not provide
16814 insecure exception for current topic. Also note that auto-saves
16815 are handled differently.
16816
16817 (allout-auto-save-temporarily-disabled, allout-just-did-undo):
16818 State variables for tracking auto-save inhibition situation.
16819
16820 (allout-write-contents-hook-handler): Rename from
16821 'allout-write-file-hook-handler', and describe how it depends on
16822 write-contents-functions sensitivity to non-nil value to prevent
16823 file write.
16824
16825 (allout-auto-save-hook-handler): Remove. auto-save does not check
16826 this in individual buffers, only in the starting buffer, so this
16827 is not the right way for us to inhibit auto-save in a buffer
16828 according to its condition.
16829
16830 (allout-mode): Use new allout-write-contents-hook-handler, and
16831 only with write-contents-functions. Remove auto-save provisions -
16832 they're implemented elsewhere.
16833
16834 (allout-before-change-handler): If undo is in progress, note that
16835 for attention of allout-post-command-business.
16836
16837 (allout-post-command-business): If the command we're following was
16838 an undo, check for change in the status of encrypted items and
16839 adjust auto-save inhibitions accordingly.
16840
16841 (allout-toggle-subtree-encryption): Adjust auto-save inhibition
16842 according to whether there are or aren't any plain-text topics
16843 pending encryption.
16844
16845 (allout-inhibit-auto-save-info-for-decryption):
16846 Adjust buffer-saved-size and some allout state to inhibit auto-saves
16847 if there are plain-text topics pending encryption.
16848
16849 (allout-maybe-resume-auto-save-info-after-encryption): Adjust
16850 buffer-saved-size and some allout state to not inhibit auto-saves
16851 if there are no longer any plain-text topics pending encryption.
16852
16853 (allout-next-topic-pending-encryption, allout-encrypt-decrypted):
16854 No longer provide for exemption of the current topic.
16855
16856 2011-07-04 Juri Linkov <juri@jurta.org>
16857
16858 Add 7z operations to delete and save changed members (bug#8968).
16859 * arc-mode.el (archive-7z-expunge, archive-7z-update):
16860 New defcustoms.
16861 (archive-7z-write-file-member): New function.
16862 (archive-7z-summarize): Fix the number of dashes in the
16863 listing output.
16864
16865 2011-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
16866
16867 * pcmpl-linux.el (pcomplete-pare-list): Re-add, from pcomplete.el
16868 (bug#8958).
16869
16870 2011-07-04 Chong Yidong <cyd@stupidchicken.com>
16871
16872 * bindings.el: Ignore next-buffer and previous-buffer in
16873 minibuffer-local-map.
16874
16875 * font-lock.el (font-lock-builtin-face): Change light background
16876 color to dark slate blue (Bug#6693).
16877
16878 2011-07-04 Wang Diancheng <dcwang@kingbase.com.cn> (tiny change)
16879
16880 * progmodes/gdb-mi.el (gdb): Use completion-at-point.
16881
16882 2011-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
16883
16884 * files.el (find-file): Use pop-to-buffer-same-window (bug#8911).
16885 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
16886 Add switch-to-buffer.
16887
16888 2011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
16889
16890 * isearch.el (isearch-search-fun-function): Clarify further the
16891 meaning of the function returned.
16892
16893 2011-07-04 Michael Albinus <michael.albinus@gmx.de>
16894
16895 * net/tramp-cmds.el (tramp-cleanup-this-connection): New command.
16896
16897 * net/tramp-sh.el (tramp-color-escape-sequence-regexp): New defconst.
16898 (tramp-sh-handle-insert-directory, tramp-convert-file-attributes):
16899 Use it.
16900 (tramp-remote-path): Add "/bin" and "/usr/bin". On busyboxes,
16901 `tramp-default-remote-path' does not exist.
16902 (tramp-send-command-and-read): New optional argument NOERROR.
16903 (tramp-open-connection-setup-interactive-shell)
16904 (tramp-get-remote-path, tramp-get-remote-stat): Use it.
16905 (tramp-get-remote-readlink): Do not mask with `ignore-errors'.
16906 (tramp-process-sentinel): Flush also process' connection property.
16907 (tramp-sh-handle-start-file-process): Do not set process
16908 sentinel. It is done now ...
16909 (tramp-maybe-open-connection): ... here. (Bug#8929)
16910
16911 2011-07-04 MON KEY <monkey@sandpframing.com>
16912
16913 * play/animate.el (animate-string): Doc fixes and allow changing
16914 the buffer name (bug#5417).
16915
16916 2011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
16917
16918 * play/animate.el (animation-buffer-name): Rename from *animate*.
16919
16920 2011-07-04 Paul Eggert <eggert@cs.ucla.edu>
16921
16922 * emacs-lisp/timer.el: Use time-date fns rather than rolling our own.
16923 This is simpler and helps future-proof the code.
16924 (timer-until): Use time-subtract and float-time.
16925 (timer--time-less-p): Use time-less-p.
16926
16927 2011-07-04 Juanma Barranquero <lekktu@gmail.com>
16928
16929 * type-break.el (timep): Use the value of `float-time' to avoid a
16930 byte-compiler warning.
16931
16932 * server.el (server-eval-and-print): Return any result, even nil.
16933
16934 2011-07-03 Paul Eggert <eggert@cs.ucla.edu>
16935
16936 * type-break.el: Accept time formats that the builtins accept.
16937 (timep, type-break-time-difference): Accept any format that
16938 float-time accepts, rather than insisting on (HIGH LOW USECS) format.
16939 This is simpler and helps future-proof the code.
16940 (type-break-time-difference): Round rather than ignoring
16941 subseconds components.
16942
16943 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
16944
16945 * info.el (Info-apropos-matches): Make non-interactive, since it
16946 doesn't seem to do anything useful as a command (bug#8829).
16947
16948 2011-07-03 Chong Yidong <cyd@stupidchicken.com>
16949
16950 * frame.el (frame-background-mode, frame-set-background-mode):
16951 Move from faces.el.
16952 (frame-default-terminal-background): New function.
16953
16954 * custom.el (custom-push-theme): Don't record faces in `changed'
16955 theme; this doesn't work correctly for per-frame face settings.
16956 (disable-theme): Use face-set-after-frame-default to reset faces.
16957 (custom--frame-color-default): New function.
16958
16959 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
16960
16961 * dired.el (dired-flagging-regexp): Remove unused variable
16962 (bug#8769).
16963
16964 2011-03-29 Kevin Ryde <user42@zip.com.au>
16965
16966 * progmodes/compile.el (compilation-error-regexp-alist-alist):
16967 `perl-Test2' extend to match possible "fail #N" rep count
16968 (bug#8377).
16969
16970 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
16971
16972 * mail/feedmail.el (feedmail-buffer-to-smtpmail):
16973 `smtpmail-via-smtp' now returns the error instead of nil.
16974
16975 * isearch.el (isearch-search-fun-function): Clarify the doc string
16976 (bug#8101).
16977
16978 2011-07-03 Richard Kim <emacs18@gmail.com> (tiny change)
16979
16980 * textmodes/texnfo-upd.el (texinfo-insert-menu): Don't insert
16981 unnecessary spaces (bug#8987).
16982
16983 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
16984
16985 * net/network-stream.el (open-network-stream): Use the
16986 :end-of-capability command thoughout.
16987
16988 2011-07-03 Wolfgang Jenkner <wjenkner@inode.at> (tiny change)
16989
16990 * net/network-stream.el (open-network-stream): Add the
16991 :end-of-capability command parameter, used by pop3.el.
16992
16993 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
16994
16995 * dired.el (dired-map-over-marks): Refill the doc string (bug#6814).
16996
16997 * fringe.el (fringe-query-style): Remove redundant text " (type ?
16998 for list)" (bug#6475).
16999
17000 * files.el (file-expand-wildcards): Ignore non-readable
17001 sub-directories while trying to find matches instead of signaling
17002 an error (bug#6297).
17003
17004 * man.el (Man-reference-regexp): Allow matching possible
17005 word-wrapped references (bug#6289).
17006
17007 * vc/vc.el (vc-modify-change-comment): Change *VC-log* to *vc-log*
17008 for consistency with the other vc buffers (bug#6197).
17009 (vc-checkin): Ditto.
17010
17011 * vc/vc-arch.el: Fix comments to match the *VC-log* name change.
17012
17013 * longlines.el (longlines-mode): Document what ARG does (bug#6150).
17014
17015 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
17016
17017 * custom.el (defcustom): Clarify that :set is only used in the
17018 Customize user interface (bug#6089).
17019
17020 * progmodes/flymake.el (flymake-mode): If the buffer isn't
17021 associated with a file, refuse to run instead of erroring out
17022 (bug#6084).
17023
17024 * textmodes/fill.el (fill-region): Remove the "Ordinarily" from
17025 the doc string, since it appears that using `fill-column' always
17026 controls the width (bug#7845).
17027
17028 * simple.el (shell-command-on-region): Say where the error output
17029 went if `shell-command-default-error-buffer' is set (bug#6857).
17030
17031 2011-07-02 Ken Manheimer <ken.manheimer@gmail.com>
17032
17033 * allout.el (allout-yank-processing): Adjust cursor position for
17034 backwards-deleted space.
17035
17036 (allout-rebullet-heading): Register changes with
17037 allout-exposure-changed-hook, so the modified topic is properly
17038 decorated.
17039
17040 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
17041
17042 * minibuffer.el (completion-in-region): Document PREDICATE
17043 (bug#7136).
17044
17045 * info-look.el (info-lookup-add-help): Clarify that ARGS is a list
17046 of keyword/argument pairs (bug#6904).
17047
17048 * replace.el (multi-occur):
17049 Mention `multi-occur-in-matching-buffers' in the doc string (bug#7566).
17050
17051 2011-07-02 Drew Adams <drew.adams@oracle.com>
17052
17053 * dired.el (dired-mark-if): Make the message about whether it's
17054 marking or unmarking clearer (bug#8523).
17055
17056 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
17057
17058 * disp-table.el (display-table-print-array): New function.
17059 (describe-display-table): Use it to print the vectors more pretty
17060 (Bug#8859).
17061
17062 2011-07-02 Martin Rudalics <rudalics@gmx.at>
17063
17064 * window.el (window-state-get-1): Don't assign clone numbers.
17065 Add clone-of item to list of window parameters.
17066 (window-state-put-2): Don't process clone numbers.
17067 (display-buffer-alist): Fix doc-string.
17068
17069 2011-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
17070
17071 * subr.el (remq): Don't allocate if it's not needed.
17072 (keymap--menu-item-binding, keymap--menu-item-with-binding)
17073 (keymap--merge-bindings): New functions.
17074 (keymap-canonicalize): Use them to refine the canonicalization.
17075 * minibuffer.el (minibuffer-local-completion-map)
17076 (minibuffer-local-must-match-map): Move initialization from C.
17077 (minibuffer-local-filename-completion-map): Move initialization from C;
17078 don't inherit from anything here.
17079 (minibuffer-local-filename-must-match-map): Make obsolete.
17080 (completing-read-default): Use make-composed-keymap to combine
17081 minibuffer-local-filename-completion-map with either
17082 minibuffer-local-must-match-map or
17083 minibuffer-local-filename-completion-map.
17084
17085 2011-07-01 Glenn Morris <rgm@gnu.org>
17086
17087 * type-break.el (type-break-time-sum): Use dolist.
17088
17089 * textmodes/flyspell.el (flyspell-word-search-backward):
17090 Replace CL function.
17091
17092 2011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
17093
17094 * mouse.el (mouse--strip-first-event): New function.
17095 (function-key-map): Use it to map fringe clicks to normal clicks
17096 by default.
17097
17098 * vc/vc-bzr.el (vc-bzr-revision-keywords): Update.
17099 (vc-bzr-revision-completion-table): Add support for annotate and date.
17100
17101 * emacs-lisp/derived.el (define-derived-mode): Make abbrev-table
17102 inherit from parent.
17103
17104 2011-07-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
17105
17106 * dired-aux.el (dired-diff): Doc fixup (bug#8816).
17107 (dired-show-file-type): Doc fixup (bug#8818).
17108
17109 * dired.el (dired-mode): Fix up the doc string as suggested by
17110 Drew Adams (bug#8817).
17111
17112 * progmodes/flymake.el (flymake-find-file-hook): Add an `autoload'
17113 cookie, since the manual says that it should be possible to add
17114 this function to `find-file-hook' (bug#8709).
17115
17116 2011-07-01 Teodor Zlatanov <tzz@lifelogs.com>
17117
17118 * progmodes/cfengine.el: Moved all cfengine3.el functionality
17119 here. Noted Ted Zlatanov as the maintainer.
17120 (cfengine-common-settings, cfengine-common-syntax): New functions
17121 to set up common things between `cfengine-mode' and
17122 `cfengine3-mode'.
17123 (cfengine3-mode): New mode.
17124 (cfengine3-defuns cfengine3-defuns-regex
17125 (cfengine3-class-selector-regex cfengine3-category-regex)
17126 (cfengine3-vartypes cfengine3-font-lock-keywords)
17127 (cfengine3-beginning-of-defun, cfengine3-end-of-defun)
17128 (cfengine3-indent-line): Add from cfengine3.el.
17129
17130 2011-07-01 Michael Albinus <michael.albinus@gmx.de>
17131
17132 * net/tramp.el (tramp-encoding-command-interactive): New defcustom.
17133
17134 * net/tramp-sh.el (tramp-maybe-open-connection): Use it.
17135
17136 2011-07-01 Martin Rudalics <rudalics@gmx.at>
17137
17138 * window.el (same-window-buffer-names, same-window-regexps)
17139 (same-window-p, special-display-frame-alist)
17140 (special-display-popup-frame, special-display-function)
17141 (special-display-buffer-names, special-display-regexps)
17142 (special-display-p, pop-up-frame-alist, pop-up-frame-function)
17143 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
17144 (split-window-preferred-function, split-height-threshold)
17145 (split-width-threshold, even-window-heights)
17146 (display-buffer-mark-dedicated, window-splittable-p)
17147 (split-window-sensibly, window-safely-shrinkable-p):
17148 Un-obsolete.
17149 (display-buffer): Don't spread args with function specifier
17150 because special-display-popup-frame won't like it.
17151
17152 2011-07-01 Paul Eggert <eggert@cs.ucla.edu>
17153
17154 Time-stamp simplifications and fixes.
17155 These improve accuracy slightly, and future-proof the code
17156 against some potential changes to current-time format.
17157
17158 * woman.el (woman-decode-buffer, WoMan-log-end): Log fractional secs
17159 by using time-since and float-time.
17160
17161 * vc/ediff-util.el (ediff-calc-command-time): Use time-since
17162 and float-time. Say "NNN.NNN seconds" rather than "NNN seconds
17163 + NNN microseconds".
17164
17165 * type-break.el (type-break-time-sum): Rewrite using time-add.
17166
17167 * play/hanoi.el (hanoi-current-time-float): Remove.
17168 All uses replaced by float-time.
17169
17170 * nxml/rng-maint.el (rng-time-function): Rewrite using time-subtract.
17171 This yields a more-accurate answer.
17172 (rng-time-to-float): Remove; no longer needed.
17173
17174 * emacs-lisp/timer.el (timer-relative-time): Use time-add.
17175
17176 * calendar/timeclock.el (timeclock-seconds-to-time):
17177 Defalias to seconds-to-time, since they're the same thing.
17178
17179 * emacs-lisp/elp.el (elp-elapsed-time):
17180 * emacs-lisp/benchmark.el (benchmark-elapse):
17181 * allout-widgets.el (allout-elapsed-time-seconds): Use float-time.
17182
17183 2011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
17184
17185 * window.el (bury-buffer): Don't iconify the only frame.
17186 (switch-to-buffer): Revert to Emacs<23 behavior, i.e. do not fallback
17187 to pop-to-buffer. Use pop-to-buffer-same-frame if you don't like that.
17188
17189 2011-07-01 Chong Yidong <cyd@stupidchicken.com>
17190
17191 * eshell/em-smart.el (eshell-smart-display-navigate-list):
17192 Add mouse-yank-primary.
17193
17194 2011-07-01 Teodor Zlatanov <tzz@lifelogs.com>
17195
17196 * progmodes/cfengine3.el: New file to support CFEngine 3.x.
17197
17198 2011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
17199
17200 * emacs-lisp/find-func.el (find-library--load-name): New fun.
17201 (find-library-name): Use it to find relative load names when provided
17202 absolute file name (bug#8803).
17203
17204 2011-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
17205
17206 * textmodes/flyspell.el (flyspell-word): Consider words that
17207 differ only in case as potential doublons (bug#5687).
17208
17209 * net/soap-client.el (soap-invoke, soap-wsdl-resolve-references):
17210 Remove two rather uninteresting debugging-like messages to make
17211 debbugs.el more silent.
17212
17213 * comint.el (comint-password-prompt-regexp): Accept "Response" as
17214 a password-like phrase.
17215
17216 2011-06-30 Masatake YAMATO <yamato@redhat.com>
17217
17218 * progmodes/cc-guess.el: New file.
17219
17220 * progmodes/cc-langs.el (c-mode-menu): Add "Style..." submenu.
17221
17222 * progmodes/cc-styles.el (cc-choose-style-for-mode): New function
17223 derived from `c-basic-common-init'.
17224
17225 * progmodes/cc-mode.el (top-level): Require cc-guess.
17226 (c-basic-common-init): Use `cc-choose-style-for-mode'.
17227
17228 2011-06-30 Lawrence Mitchell <wence@gmx.li>
17229
17230 * progmodes/js.el (js-mode): Don't stomp on global settings (bug#8933).
17231
17232 2011-06-30 Alan Mackenzie <acm@muc.de>
17233
17234 * progmodes/cc-engine.el (c-guess-continued-construct):
17235 Correct the handling of template-args-cont, particularly for when font
17236 lock is disabled. Name this case as "CASE G".
17237
17238 2011-06-30 Ken Manheimer <ken.manheimer@gmail.com>
17239
17240 * allout.el (allout-yank-processing): Fix injection of extra space
17241 between bullet and non-whitespace character in first topic when
17242 pasting, ensuring that the actual spacing in the pasted topic
17243 following the bullet char is preserved. This extra space was
17244 causing pasted encrypted topics to get a decrypted status even
17245 when the content was actually still encrypted. Now the decryption
17246 status from before the paste is preserved.
17247
17248 (allout-flag-region): Set all allout overlays so they evaporate
17249 when reduced to zero length (evanescent), to prevent overlay
17250 leakage.
17251
17252 2011-06-30 Glenn Morris <rgm@gnu.org>
17253
17254 * w32-fns.el (w32-charset-info-alist): Declare.
17255
17256 * find-dired.el (find-grep-options): Simplify.
17257
17258 * term/ns-win.el (ns-set-resource): Declare.
17259
17260 * ses.el (row, col): Declare dynamic variables honestly.
17261
17262 * textmodes/reftex-parse.el (index-tags): Declare.
17263
17264 2011-06-30 Chong Yidong <cyd@stupidchicken.com>
17265
17266 * cus-edit.el (customize-push-and-save): New function.
17267
17268 * files.el (hack-local-variables-confirm): Use it.
17269
17270 * custom.el (load-theme): New arg NO-CONFIRM.
17271 Use customize-push-and-save (Bug#8720).
17272 (custom-enabled-themes): Doc fix.
17273
17274 * cus-theme.el (customize-create-theme)
17275 (custom-theme-merge-theme): Callers to load-theme changed.
17276
17277 2011-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
17278
17279 * thingatpt.el (thing-at-point-short-url-regexp): Require that
17280 short URLs have at least one dot in them (bug #7614).
17281
17282 * progmodes/grep.el (rgrep): Bind `process-connection-type' to
17283 nil, because using a pty is apparently too slow (bug #895).
17284
17285 2011-06-29 Lars Magne Ingebrigtsen <larsi@gnus.org>
17286
17287 * mail/sendmail.el (sendmail-query-once): New function.
17288 (sendmail-query-once-function): New variable.
17289
17290 2011-06-29 Glenn Morris <rgm@gnu.org>
17291
17292 * files.el (auto-mode-alist): Add .f03, .f08 for f90-mode.
17293
17294 * ses.el (top-level): Require cl when compiling.
17295 (ses-set-localvars): Fix error statement.
17296 Call it at compile time to silence a storm of warnings.
17297
17298 2011-06-29 Martin Rudalics <rudalics@gmx.at>
17299
17300 * window.el (normalize-live-buffer): Rename to
17301 window-normalize-buffer.
17302 (normalize-live-frame): Rename to window-normalize-frame.
17303 (normalize-any-window): Rename to window-normalize-any-window.
17304 (normalize-live-window): Rename to window-normalize-live-window.
17305 (make-window-atom): Rename to window-make-atom.
17306 (window-resize-reset): Rename to window--resize-reset.
17307 (window-resize-reset-1): Rename to window--resize-reset-1.
17308 (resize-mini-window): Rename to window--resize-mini-window.
17309 (resize-subwindows-skip-p): Rename to
17310 window--resize-subwindows-skip-p.
17311 (resize-subwindows-normal): Rename to
17312 window--resize-subwindows-normal.
17313 (resize-subwindows): Rename to window--resize-subwindows.
17314 (resize-other-windows): Rename to window--resize-siblings.
17315 (resize-this-window): Rename to window--resize-this-window.
17316 (resize-root-window): Rename to window--resize-root-window.
17317 (resize-root-window-vertically): Rename to
17318 window--resize-root-window-vertically.
17319 (normalize-buffer-to-display): Rename to
17320 window-normalize-buffer-to-display.
17321 (normalize-buffer-to-switch-to): Rename to
17322 window-normalize-buffer-to-switch-to.
17323 Correspondingly update all callers of the functions listed
17324 above.
17325 (display-buffer-alist, display-buffer-normalize-arguments)
17326 (display-buffer-normalize-options, display-buffer)
17327 (display-buffer-alist-set): Use "function" instead of
17328 "fun-with-args".
17329
17330 2011-06-28 Chong Yidong <cyd@stupidchicken.com>
17331
17332 * mail/emacsbug.el (report-emacs-bug): Handle non-gnu bug
17333 addresses more clearly. Add hyperlinks for bug-gnu-emacs and
17334 debbugs.gnu.org. Mention acknowledgment email.
17335
17336 2011-06-28 Lars Magne Ingebrigtsen <larsi@gnus.org>
17337
17338 * mail/smtpmail.el (smtpmail-send-it): Leave off changing the
17339 buffer multibyteness, since it shouldn't matter.
17340
17341 2011-06-28 Martin Rudalics <rudalics@gmx.at>
17342
17343 * window.el (display-buffer-in-side-window): Handle dedicated
17344 windows as in display-buffer-reuse-window.
17345 (display-buffer-normalize-alist): Use value of override
17346 specifier.
17347 (display-buffer-normalize-specifiers): Use value of
17348 other-window-means-other-frame specifier.
17349 (display-buffer-alist): Rewrite some texts in widgets.
17350 (display-buffer): Spread arguments when calling function
17351 specified by fun-with-args.
17352
17353 2011-06-28 Deniz Dogan <deniz@dogan.se>
17354
17355 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
17356 Unnest `let'.
17357
17358 * textmodes/css-mode.el (css-font-lock-keywords): Fix grouped
17359 selectors (Bug#5732).
17360 (css-proprietary-nmstart-re): Use `regexp-opt'.
17361
17362 2011-06-27 Jari Aalto <jari.aalto@cante.net>
17363
17364 * eshell/em-ls.el: Display `ls -l' dates in ISO format (Bug#8440).
17365 (eshell-ls-date-format): New defcustom.
17366 (eshell-ls-file): Use it.
17367
17368 2011-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
17369
17370 * help-fns.el (describe-variable): Fix message for terminal-local vars.
17371
17372 2011-06-27 Katsumi Yamaoka <yamaoka@jpl.org>
17373
17374 * net/ange-ftp.el: Allow loading .gz files (Bug#6923).
17375 (ange-ftp-make-tmp-name): New arg.
17376 (ange-ftp-file-local-copy): Use it.
17377
17378 2011-06-27 Jambunathan K <kjambunathan@gmail.com>
17379
17380 * tar-mode.el (tar-untar-buffer): Set coding-system-for-write to
17381 no-conversion (Bug#8870).
17382
17383 2011-06-27 Martin Rudalics <rudalics@gmx.at>
17384
17385 * window.el (window-right, window-left, window-child)
17386 (window-child-count, window-last-child)
17387 (window-iso-combination-p, walk-window-tree-1)
17388 (window-atom-check-1, window-tree-1, delete-window)
17389 (window-state-get-1, display-buffer-even-window-sizes): Adapt to
17390 new naming conventions - window-vchild, window-hchild,
17391 window-next and window-prev are now called window-top-child,
17392 window-left-child, window-next-sibling and window-prev-sibling
17393 respectively.
17394 (resize-window-reset): Rename to window-resize-reset.
17395 (resize-window-reset-1): Rename to window-resize-reset-1.
17396 (resize-window): Rename to window-resize.
17397 (window-min-height, window-min-width)
17398 (resize-mini-window, resize-this-window, resize-root-window)
17399 (resize-root-window-vertically, adjust-window-trailing-edge)
17400 (enlarge-window, shrink-window, maximize-window)
17401 (minimize-window, delete-window, quit-restore-window)
17402 (split-window, balance-windows, balance-windows-area-adjust)
17403 (balance-windows-area, window-state-put-2)
17404 (display-buffer-even-window-sizes, display-buffer-set-height)
17405 (display-buffer-set-width, set-window-text-height)
17406 (fit-window-to-buffer): Rename all "resize-window" prefixed
17407 calls to use the "window-resize" prefix convention.
17408 (display-buffer-alist): Fix symbol for label specifier.
17409 (display-buffer-reuse-window): Set reuse-dedicated to cdr of
17410 corresponding specifier.
17411 Reported by Juanma Barranquero <lekktu@gmail.com>.
17412
17413 2011-06-27 Vincent Belaïche <vincentb1@users.sourceforge.net>
17414
17415 * ses.el (ses-destroy-cell-variable-range): Fix heading comment
17416 convention.
17417 (ses-call-printer): Does not pass an empty string to formatter when the
17418 cell is empty to keep from barking printer Calc math-format-value.
17419
17420 2011-06-27 Richard Stallman <rms@gnu.org>
17421
17422 * battery.el (battery-mode-line-limit): New variable.
17423 (battery-update): Handle it.
17424
17425 * mail/rmailmm.el (rmail-mime-process-multipart):
17426 Handle truncated messages.
17427
17428 2011-06-27 Glenn Morris <rgm@gnu.org>
17429
17430 * progmodes/flymake.el (flymake-err-line-patterns):
17431 Allow for column numbers in the ant/javac pattern. (Bug#8866)
17432
17433 2011-06-27 Vincent Belaïche <vincentb1@users.sourceforge.net>
17434
17435 * ses.el (ses-relocate-range): Keep rest of arguments for ses-range.
17436 (ses--clean-!, ses--clean-_): New functions.
17437 (ses-range): Add configurability of readout order, and conversion
17438 to Calc vector.
17439
17440 * ses.el (ses-repair-cell-reference-all): New function.
17441 (ses-cell-symbol): Set macro as safe, so that it can be used in
17442 formulas.
17443
17444 * ses.el: Update cycle detection algorithm.
17445 (ses-localvars): Add ses--Dijkstra-attempt-nb and
17446 ses--Dijkstra-weight-bound, and initial values thereof when applicable.
17447 (ses-set-localvars): New function.
17448 (ses-make-cell): Add property-list as a cell element.
17449 (ses-cell-property-get-fun, ses-cell-property-get)
17450 (ses-cell-property-delq-fun, ses-cell-property-set-fun)
17451 (ses-cell-property-pop-fun, ses-cell-property-get-handle-fun):
17452 New functions.
17453 (ses-cell-property-set, ses-cell-property-pop)
17454 (ses-cell-property-get-handle): New macro.
17455 (ses-cell-property-handle-car, ses-cell-property-handle-setcar):
17456 New aliases, used for code readability.
17457 (ses-calculate-cell, ses-update-cells): Use Dijkstra algorithm for
17458 cycle detection.
17459 (ses-self-reference-early-detection): New defcustom.
17460 (ses-formula-references): Robustify against self-referring cells.
17461 (ses-mode): Use ses-set-localvars.
17462 (ses-command-hook): Add call to ses-initialize-Dijkstra-attempt
17463 before lauching the update processing.
17464 (ses-initialize-Dijkstra-attempt): New function.
17465 (ses-recalculate-cell): Update for cycle detection based on
17466 Dijkstra algorithm.
17467
17468 * ses.el: Fix commenting and indenting convention.
17469
17470 2011-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
17471
17472 * bs.el (bs-cycle-next): Complete last change.
17473
17474 2011-06-27 Drew Adams <drew.adams@oracle.com>
17475
17476 * faces.el (list-faces-display): Add help-mode-map to output (bug#8939).
17477
17478 2011-06-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
17479
17480 * net/network-stream.el (network-stream-open-starttls):
17481 Don't re-get capabilities unless we've reestablished connection.
17482 (network-stream-open-starttls): Fix stupid typo with gnutls-clii.
17483
17484 * mail/smtpmail.el (smtpmail-via-smtp): Bind coding-system-for-*
17485 to binary to possibly avoid line encoding issues on Windows (among
17486 other things).
17487
17488 2011-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
17489
17490 * net/network-stream.el (open-network-stream): Return an :error
17491 saying what the problem was, if possible.
17492
17493 * mail/smtpmail.el (smtpmail-via-smtp): Report the error from the
17494 server.
17495
17496 * net/network-stream.el (network-stream-open-starttls): If we
17497 wanted to use STARTTLS, and the server offered it, but we weren't
17498 able to because we had no STARTTLS support, then close the connection.
17499 (open-network-stream): Return an :error element, if present.
17500
17501 2011-06-26 Chong Yidong <cyd@stupidchicken.com>
17502
17503 * hl-line.el (hl-line-sticky-flag): Doc fix.
17504 (global-hl-line-sticky-flag): New option (Bug#8323).
17505 (global-hl-line-highlight): Obey it.
17506
17507 * vc/vc.el (vc-revert-show-diff): Default to t.
17508
17509 2011-06-26 Ken Manheimer <ken.manheimer@gmail.com>
17510
17511 * allout-widgets.el (allout-widgets-post-command-business):
17512 Stop decorating intermediate isearch matches. They're not being
17513 undecorated when an isearch is continued past, and isearch
17514 automatically collapses them. This leads to "widget leaks", where
17515 decorated items accumulate in collapsed areas. Lines with lots of
17516 hidden widgets can slow down cursor travel, substantially.
17517 Too much complicated machinery would be needed to ensure undecoration,
17518 so we're doing without this nicety.
17519
17520 (allout-widgets-tally-string): Don't try to do a hash-table-count
17521 of allout-widgets-tally when it's nil. This eliminates spurious "Error
17522 during redisplay: (wrong-type-argument hash-table-p nil)" warnings in
17523 *Messages* when allout-widgets-maintain-tally is t.
17524
17525 2011-06-26 Martin Rudalics <rudalics@gmx.at>
17526
17527 * window.el (display-buffer-normalize-argument): Rename to
17528 display-buffer-normalize-arguments. Handle special meaning of
17529 LABEL argument. Respect special-display-function when popping up
17530 a new frame. Fix code searching for a window showing the buffer
17531 on another frame.
17532 (display-buffer-normalize-specifiers):
17533 Call display-buffer-normalize-arguments.
17534 (display-buffer-in-window): Don't undedicate the window if its
17535 buffer remains the same.
17536 Reported by Drew Adams <drew.adams@oracle.com>.
17537 (display-buffer-alist): Add choice for same-window macro
17538 specfier.
17539 (display-buffer): Mention special meaning of LABEL argument in
17540 doc-string. Fix quoting. Don't pop up a new frame even as
17541 fallback.
17542
17543 2011-06-26 Juanma Barranquero <lekktu@gmail.com>
17544
17545 * bs.el (bs-cycle-next): Pass current buffer to `bury-buffer' to
17546 avoid deleting the current window in some cases (bug#8911).
17547
17548 2011-06-26 Andreas Schwab <schwab@linux-m68k.org>
17549
17550 * emacs-lisp/smie.el (smie-bnf->prec2): Fix last change.
17551 (Bug#8934)
17552
17553 2011-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
17554
17555 * net/network-stream.el (network-stream-open-starttls):
17556 Use built-in TLS support if `gnutls-available-p' is true.
17557 (network-stream-open-tls): Ditto.
17558
17559 2011-06-26 Leo Liu <sdl.web@gmail.com>
17560
17561 * register.el (registerv): New struct.
17562 (registerv-make): New function.
17563 (jump-to-register, describe-register-1, insert-register):
17564 Support the jump-func, print-func and insert-func slot of a registerv
17565 struct. (Bug#8415)
17566
17567 2011-06-26 Chong Yidong <cyd@stupidchicken.com>
17568
17569 * vc/vc.el (vc-revert-show-diff): New defcustom.
17570 (vc-diff-internal): New arg specifying diff buffer.
17571 (vc-revert): Obey vc-revert-show-diff. If we show a diff, don't
17572 reuse an existing *vc-diff* buffer (Bug#8927).
17573
17574 * progmodes/cperl-mode.el (cperl-mode): Derive from prog-mode.
17575
17576 2011-06-26 Glenn Morris <rgm@gnu.org>
17577
17578 * progmodes/f90.el (f90-critical-indent): New option.
17579 (f90-font-lock-keywords-2, f90-blocks-re, f90-end-block-re)
17580 (f90-start-block-re, f90-mode-abbrev-table): Add block, critical.
17581 (f90-mode): Doc fix.
17582 (f90-looking-at-critical, f90-looking-at-end-critical): New funcs.
17583 (f90-no-block-limit, f90-calculate-indent, f90-end-of-block)
17584 (f90-beginning-of-block, f90-next-block, f90-indent-region)
17585 (f90-match-end): Handle block, critical.
17586
17587 2011-06-25 Glenn Morris <rgm@gnu.org>
17588
17589 * calendar/diary-lib.el (diary-included-files): Doc fix.
17590 (diary-include-files): New function, extracted from
17591 diary-include-other-diary-files and diary-mark-included-diary-files.
17592 (diary-include-other-diary-files, diary-mark-included-diary-files):
17593 Just call diary-include-files.
17594 (diary-mark-entries): Reset diary-included-files on first call.
17595
17596 * calendar/diary-lib.el (diary-mark-entries)
17597 (diary-mark-included-diary-files):
17598 Visit included diary-files in temp buffers.
17599
17600 * progmodes/f90.el (f90-keywords-re, f90-font-lock-keywords-1)
17601 (f90-blocks-re, f90-program-block-re, f90-end-block-re)
17602 (f90-start-block-re, f90-imenu-generic-expression)
17603 (f90-looking-at-program-block-start, f90-no-block-limit):
17604 Add support for submodules.
17605
17606 * progmodes/f90.el (f90-keywords-re, f90-keywords-level-3-re)
17607 (f90-procedures-re, f90-constants-re): Add some F2008 stuff.
17608
17609 2011-06-25 Eli Zaretskii <eliz@gnu.org>
17610
17611 * net/ange-ftp.el (ange-ftp-insert-file-contents): Let-bind
17612 buffer-file-type before setting its value, to avoid disastrous
17613 global effects on decoding files for DOS/Windows systems. (Bug#8780)
17614
17615 2011-06-25 Juanma Barranquero <lekktu@gmail.com>
17616
17617 * allout.el (allout-unload-function): Pass -1 to `allout-mode'.
17618
17619 * ses.el (ses-unload-function):
17620 * emacs-lisp/re-builder.el (re-builder-unload-function): Simplify.
17621
17622 * proced.el (proced-unload-function):
17623 * progmodes/cperl-mode.el (cperl-mode-unload-function): Remove.
17624
17625 2011-06-25 Andreas Rottmann <a.rottmann@gmx.at>
17626
17627 * server.el (server-create-window-system-frame): Add parameters arg.
17628 (server-process-filter): Doc fix. Handle frame-parameters.
17629
17630 2011-06-25 Juanma Barranquero <lekktu@gmail.com>
17631
17632 Fix bug#8730, bug#8781.
17633
17634 * loadhist.el (unload--set-major-mode): New function.
17635 (unload-feature): Use it.
17636
17637 * progmodes/python.el (python-after-info-look): Add autoload cookie.
17638 (python-unload-function): New function.
17639
17640 2011-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
17641
17642 * mail/rmail.el (rmail-show-message-1): Use restore-buffer-modified-p.
17643
17644 2011-06-25 Giuseppe Scrivano <gscrivano@gnu.org>
17645
17646 * net/browse-url.el (browse-url-firefox-program): Add icecat to
17647 the candidates list.
17648
17649 2011-06-24 Juanma Barranquero <lekktu@gmail.com>
17650
17651 * progmodes/verilog-mode.el (verilog-mode): Fix test for bound variable.
17652
17653 2011-06-23 Richard Stallman <rms@gnu.org>
17654
17655 * mail/rmail.el: Going to grep hit in Rmail buffer finds the message.
17656 (rmail-variables): Set next-error-move-function.
17657 (rmail-what-message): Take argument POS.
17658 (rmail-next-error-move): New function.
17659
17660 2011-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
17661
17662 * emacs-lisp/smie.el (smie-bnf->prec2): Give more understandable error
17663 messages for adjacent non-terminals.
17664
17665 2011-06-23 Richard Stallman <rms@gnu.org>
17666
17667 * mail/rmail.el (rmail-retry-ignored-headers): Add message-id.
17668 (rmail-show-message-1): Preserve buffer modified flag.
17669 (rmail-start-mail): Don't specify use of rmail-mail-return;
17670 that's done by mail-bury now.
17671 (rmail-mail-return): Handle arg NEWBUF.
17672
17673 2011-06-23 Michael Albinus <michael.albinus@gmx.de>
17674
17675 * net/tramp-sh.el (tramp-method-out-of-band-p): Check, whether
17676 SIZE is a number.
17677
17678 2011-06-23 Martin Rudalics <rudalics@gmx.at>
17679
17680 * window.el (get-lru-window, get-mru-window)
17681 (get-largest-window): Never return a minibuffer window.
17682 (display-buffer-pop-up-window): Fix a bug that could lead to
17683 reusing the minibuffer window.
17684 (display-buffer): Pass original specifier argument to
17685 display-buffer-function instead of the normalized one.
17686 Reported by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
17687
17688 2011-06-22 Leo Liu <sdl.web@gmail.com>
17689
17690 * minibuffer.el (completing-read-function)
17691 (completing-read-default): Move from minibuf.c.
17692
17693 2011-06-22 Richard Stallman <rms@gnu.org>
17694
17695 * mail/sendmail.el (mail-bury): If Rmail is in use, return nicely
17696 to Rmail even if not started by a special Rmail command.
17697
17698 * mail/rmailmm.el (rmail-insert-mime-forwarded-message):
17699 Copy the buffer currently showing just one message.
17700
17701 2011-06-22 Roland Winkler <winkler@gnu.org>
17702
17703 * textmodes/bibtex.el (bibtex-entry-update): Use mapc.
17704 (bibtex-clean-entry): First delete the old key so that a
17705 customized algorithm for generating the new key does not get
17706 confused by the old key.
17707 (bibtex-url): Obey regexp of first step.
17708 (bibtex-search-entries): Do not use add-to-list with local
17709 list-var.
17710
17711 2011-06-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
17712
17713 * mail/smtpmail.el (smtpmail-try-auth-methods): If the user has
17714 stored a user name, then query for the password first, instead of
17715 waiting for SMTP to give an error message and the trying again.
17716
17717 2011-06-22 Lawrence Mitchell <wence@gmx.li>
17718
17719 * net/browse-url.el (browse-url-xdg-open): Use 0, rather than nil
17720 BUFFER in call-process.
17721
17722 2011-06-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
17723
17724 * mail/smtpmail.el (smtpmail-via-smtp): Make sure we don't send
17725 QUIT twice.
17726 (smtpmail-try-auth-methods): Require user name and password from
17727 auth-source.
17728
17729 2011-06-22 Martin Rudalics <rudalics@gmx.at>
17730
17731 * window.el (display-buffer-default-specifiers)
17732 (display-buffer-alist): Remove entries for pop-up-frame-alist.
17733 Suggested by Katsumi Yamaoka <yamaoka@jpl.org>.
17734 (split-window): Normalize SIDE argument (Bug#8916).
17735
17736 * frame.el (pop-up-frame-alist, pop-up-frame-function)
17737 (special-display-frame-alist, special-display-popup-frame):
17738 Remove duplicate declarations. These are now in window.el.
17739
17740 2011-06-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
17741
17742 * mail/smtpmail.el (smtpmail-via-smtp):
17743 Set :use-starttls-if-possible so that we always use STARTTLS if the
17744 server supports it. SMTP servers that support STARTTLS commonly
17745 require it.
17746
17747 * net/network-stream.el (network-stream-open-starttls): Support
17748 upgrading to STARTTLS always, even if we don't have built-in support.
17749 (open-network-stream): Add the :always-query-capabilities keyword.
17750
17751 * mail/smtpmail.el: Rewritten to do opportunistic STARTTLS
17752 upgrades with `open-network-stream', and rely solely on
17753 auth-source for all credentials. Big changes throughout the file,
17754 but in particular:
17755 (smtpmail-auth-credentials): Remove.
17756 (smtpmail-starttls-credentials): Remove.
17757 (smtpmail-via-smtp): Check for servers saying they want AUTH after
17758 MAIL FROM, too.
17759
17760 * net/network-stream.el (network-stream-open-starttls):
17761 Provide support for client certificates both for external and built-in
17762 STARTTLS.
17763 (auth-source): Require.
17764 (open-network-stream): Document the :client-certificate keyword.
17765 (network-stream-certificate): Change cert-cert to cert and
17766 cert-key to key.
17767
17768 2011-06-21 Michael Albinus <michael.albinus@gmx.de>
17769
17770 * net/tramp-cache.el (top): Don't load the persistency file when
17771 "emacs -Q" has been called.
17772
17773 2011-06-21 Tim Harper <timcharper@gmail.com>
17774
17775 * term/ns-win.el (ns-initialize-window-system):
17776 Set application-specific `ApplePressAndHoldEnabled' system
17777 resource to NO as it is not yet supported by the NS port.
17778
17779 2011-06-21 Juanma Barranquero <lekktu@gmail.com>
17780
17781 * misc.el (list-dynamic-libraries--refresh): Compute header here...
17782 (list-dynamic-libraries): ...not here.
17783
17784 2011-06-21 Leo Liu <sdl.web@gmail.com>
17785
17786 * subr.el (sha1): Implement sha1 using secure-hash.
17787
17788 2011-06-21 Martin Rudalics <rudalics@gmx.at>
17789
17790 * window.el (display-buffer-alist): In default value do not
17791 enforce searching a window on any but the selected frame.
17792 Reported by Katsumi Yamaoka <yamaoka@jpl.org>.
17793 (display-buffer-select-window): Remove function.
17794 (display-buffer-in-window): When a window on another frame gets
17795 reused, do not select it any more but just raise its frame if
17796 necessary (Bug#8851) and (Bug#8856).
17797 (display-buffer-normalize-options): Handle pop-up-frames related
17798 options more faithfully.
17799 (pop-to-buffer): Don't rely on `display-buffer' selecting the
17800 window if it is on another frame.
17801 (display-buffer-alist, display-buffer-default-specifiers):
17802 Don't make new frame unsplittable by default.
17803 (display-buffer-normalize-argument): Fix doc-string typo and use
17804 'same-frame-other-window instead of 'other-window when associating
17805 with display-buffer-macro-specifiers.
17806
17807 2011-06-21 Vincent Belaïche <vincent.b.1@hotmail.fr>
17808
17809 * play/5x5.el (5x5-solve-rotate-left, 5x5-solve-rotate-right):
17810 New functions.
17811 (5x5-mode-map, 5x5-mode-menu): Bind them.
17812 (5x5-draw-grid): Tweak the solver's rendering.
17813
17814 2011-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
17815
17816 * progmodes/compile.el (compilation-error-regexp-alist-alist): Rename
17817 `caml' to `python-tracebacks-and-caml'; allow leading tabs (bug#8585).
17818
17819 2011-06-21 Drew Adams <drew.adams@oracle.com>
17820
17821 * menu-bar.el: Use function variable instead of switch-to-buffer.
17822 (menu-bar-select-buffer-function): New variable.
17823 (menu-bar-update-buffers): Use it (bug#8876).
17824
17825 2011-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
17826
17827 * emacs-lisp/bytecomp.el (add-to-list): Add handler to check the
17828 variable's status.
17829
17830 2011-06-20 Jan Djärv <jan.h.d@swipnet.se>
17831
17832 * x-dnd.el (x-dnd-version-from-flags)
17833 (x-dnd-more-than-3-from-flags): New functions that handle long-as-cons
17834 and long as number (Bug#8899).
17835 (x-dnd-handle-xdnd): Call functions above (Bug#8899).
17836
17837 2011-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
17838
17839 * minibuffer.el (completion-metadata): Add `metadata' to the alist.
17840 (completion-try-completion, completion-all-completions): Compute the
17841 metadata argument if it's missing; make it optional (bug#8795).
17842
17843 * wid-edit.el: Use lex-bind and move towards completion-at-point.
17844 (widget-complete): Use new :completion-function property.
17845 (widget-completions-at-point): New function.
17846 (default): Use :completion-function instead of :complete.
17847 (widget-default-completions): Rename from widget-default-complete;
17848 Rewrite.
17849 (widget-string-complete, widget-file-complete, widget-color-complete):
17850 Remove functions.
17851 (file, symbol, function, variable, coding-system, color):
17852 * international/mule-cmds.el (default-input-method, charset)
17853 (language-info-custom-alist):
17854 * cus-edit.el (face): Use new property :completions.
17855
17856 * progmodes/pascal.el (pascal-completions-at-point): New function.
17857 (pascal-mode): Use it.
17858 (pascal-mode-map): Use completion-at-point.
17859 (pascal-toggle-completions): Make obsolete.
17860 (pascal-complete-word, pascal-show-completions):
17861 * progmodes/octave-mod.el (octave-complete-symbol):
17862 Redefine as obsolete alias.
17863 * progmodes/octave-inf.el (inferior-octave-completion-at-point):
17864 Signal absence of completion info for old Octave,
17865 (inferior-octave-complete): Redefine as obsolete alias.
17866 * progmodes/meta-mode.el: Use lexical-binding and completion-at-point.
17867 (meta-completions-at-point): Rename from meta-complete-symbol and
17868 adapt it for use on completion-at-point-functions.
17869 (meta-common-mode): Use it.
17870 (meta-looking-at-backward, meta-match-buffer): Remove.
17871 (meta-complete-symbol): Redefine as obsolete alias.
17872 (meta-common-mode-map): Use completion-at-point.
17873 * progmodes/make-mode.el: Use lexical-binding and completion-at-point.
17874 (makefile-mode-map): Use completion-at-point.
17875 (makefile-completions-at-point): Rename from makefile-complete and
17876 adapt it for use on completion-at-point-functions.
17877 (makefile-mode): Use it.
17878 (makefile-complete): Redefine as obsolete alias.
17879
17880 2011-06-20 Deniz Dogan <deniz@dogan.se>
17881
17882 * net/rcirc.el: Delete trailing whitespaces once and for all.
17883
17884 2011-06-20 Daniel Colascione <dan.colascione@gmail.com>
17885
17886 * emacs-lisp/syntax.el (syntax-ppss): Further improve docstring.
17887
17888 2011-06-19 Chong Yidong <cyd@stupidchicken.com>
17889
17890 * files.el (auto-mode-alist): Entry for m2-mode (Bug#8852).
17891
17892 * info.el (Info-apropos-toc-nodes): Minor doc fix (Bug#8833).
17893
17894 2011-06-19 Martin Rudalics <rudalics@gmx.at>
17895
17896 * window.el (display-buffer-other-window-means-other-frame):
17897 Call display-buffer-normalize-alist.
17898 (display-buffer-normalize-specifiers-1): Rename to
17899 display-buffer-normalize-argument. New argument other-frame.
17900 Rewrite.
17901 (display-buffer-normalize-specifiers-2): Rename to
17902 display-buffer-normalize-options.
17903 (display-buffer-normalize-alist-1): New function.
17904 (display-buffer-normalize-specifiers-3): Rename to
17905 display-buffer-normalize-alist.
17906 Call display-buffer-normalize-alist-1.
17907 (display-buffer-normalize-options-inhibit): New variable.
17908 (display-buffer-normalize-specifiers): Rewrite calling
17909 display-buffer-normalize-alist,
17910 display-buffer-normalize-argument, and
17911 display-buffer-normalize-options. Don't call the latter if
17912 display-buffer-normalize-options-inhibit is non-nil.
17913 (frame-auto-delete): New option.
17914 (window-deletable-p): Use frame-auto-delete.
17915 (window-list-no-nils, window-state-ignored-parameters)
17916 (window-state-get-1, window-state-get, window-state-put-list)
17917 (window-state-put-1, window-state-put-2, window-state-put):
17918 New functions.
17919 (display-buffer-normalize-options): Move special-display-p group
17920 after pop-up-frame group (Bug#8851) and (Bug#8856).
17921
17922 2011-06-18 Chong Yidong <cyd@stupidchicken.com>
17923
17924 * emacs-lisp/rx.el (rx-constituents): Add support for numbered
17925 groups (Bug#8776).
17926 (rx-submatch-n): New function.
17927 (rx): Document it.
17928
17929 * dired-x.el (dired-mark-unmarked-files): Fix interactive spec
17930 (Bug#8768).
17931
17932 * replace.el (occur-mode-map): Set occur-edit-mode binding to "e".
17933
17934 * textmodes/fill.el (default-justification): Add :safe (Bug#8879).
17935
17936 * cus-face.el (custom-declare-face): Call custom-theme-recalc face
17937 anytime existing face settings are present (Bug#8889).
17938
17939 * progmodes/delphi.el (delphi-mode-syntax-table): Use defvar.
17940 (delphi-mode): Use define-derived-mode to inherit from prog-mode.
17941 Remove unused argument.
17942
17943 2011-06-18 Martin Rudalics <rudalics@gmx.at>
17944
17945 * window.el (display-buffer-default-specifiers):
17946 Remove pop-up-frame. Add pop-up-window-min-height,
17947 pop-up-window-min-width, and another reuse-window specifier
17948 (Bug#8882). Reported by Dan Nicolaescu <dann@gnu.org>.
17949 (display-buffer-normalize-specifiers-2):
17950 Handle split-height-threshold and split-width-threshold also when
17951 pop-up-windows is unset. Add a reuse-window specifier for the
17952 case popping up a new window fails.
17953 (special-display-popup-frame): Remove double quoting.
17954 (display-buffer-normalize-specifiers-1): Fix thinko.
17955
17956 2011-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
17957
17958 * shell.el (shell-completion-vars): Set pcomplete-termination-string
17959 according to comint-completion-addsuffix.
17960
17961 * pcomplete.el: Convert to lexical binding and fix bug#8819.
17962 (pcomplete-suffix-list): Mark as obsolete.
17963 (pcomplete-completions-at-point): Capture pcomplete-norm-func and
17964 pcomplete-seen in the closure.
17965 (pcomplete-comint-setup): Setup completion-at-point as well.
17966 (pcomplete--entries): New function.
17967 (pcomplete--env-regexp): New var.
17968 (pcomplete-entries): Rewrite to work with partial-completion and
17969 without relying on pcomplete-suffix-list.
17970 (pcomplete-pare-list): Remove, unused.
17971
17972 2011-06-17 Martin Rudalics <rudalics@gmx.at>
17973
17974 * window.el (display-buffer-alist): Set pop-up-window-min-height
17975 and pop-up-window-min-width in default value. Reported by
17976 Thierry Volpiatto <thierry.volpiatto@gmail.com>. New specifier
17977 other-window-means-other-frame.
17978 (display-buffer-macro-specifiers): Comment out entry for
17979 other-window specifier.
17980 (display-buffer-other-window-means-other-frame): New function.
17981 (display-buffer-normalize-specifiers-1): New arguments
17982 buffer-name and label. Treat other-window case specially.
17983 (display-buffer-normalize-specifiers-2): Treat other-window case
17984 specially.
17985 (display-buffer-normalize-specifiers-3): New function.
17986 (display-buffer-normalize-specifiers):
17987 Call display-buffer-normalize-specifiers-3.
17988
17989 2011-06-17 Martin Rudalics <rudalics@gmx.at>
17990
17991 * window.el (same-window-p): Fix two typos introduced when
17992 adding with-no-warnings.
17993 (display-buffer-normalize-specifiers-1): Don't check
17994 pop-up-frames for 'unset initialization.
17995 (display-buffer-normalize-specifiers-2): Major rewrite using
17996 special-display-p and same-window-p (Bug#8851) and (Bug#8856).
17997 (pop-up-frames, display-buffer-reuse-frames)
17998 (display-buffer-mark-dedicated): Don't initialize to 'unset.
17999 Suggested by David Engster <deng@randomsample.de>.
18000 (even-window-heights): Initialize to 'unset.
18001 (display-buffer-alist-set): Handle new 'unset initializations.
18002 (display-buffer-macro-specifiers): Don't pop up a new frame in the
18003 other window case.
18004
18005 2011-06-16 Martin Rudalics <rudalics@gmx.at>
18006
18007 * window.el (display-buffer-normalize-specifiers-1):
18008 Respect current value of pop-up-frames for most reasonable values of
18009 second argument of display-buffer (Bug#8865).
18010 (switch-to-buffer-same-frame, switch-to-buffer-other-window)
18011 (switch-to-buffer-other-window-same-frame)
18012 (switch-to-buffer-other-frame): Fix doc-strings. Reported by Drew
18013 Adams (Bug#8875).
18014 (display-buffer): Don't check noninteractive when calling
18015 display-buffer-pop-up-frame.
18016 (display-buffer-pop-up-frame): Never pop up a frame in
18017 noninteractive mode (Bug#8857).
18018 (enlarge-window, shrink-window): Don't report an error when the
18019 window can't be resized as requested (Bug#8862).
18020
18021 2011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
18022
18023 * pcmpl-rpm.el (pcomplete/rpm): Minor simplification.
18024
18025 * emacs-lisp/debug.el (debug): Don't leave the buffer in Debugger.
18026
18027 * abbrev.el (define-abbrev-table): Don't add a table multiple times.
18028
18029 2011-06-15 Alan Mackenzie <acm@muc.de>
18030
18031 * progmodes/cc-fonts.el (c-font-lock-declarations): 1: Whilst checking
18032 for declarators, disable knr checking to speed up for normal files.
18033 2: Refactor, replacing a sequence of nested if forms by a cond form.
18034
18035 2011-06-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
18036
18037 * net/network-stream.el (open-network-stream): Add the keyword
18038 :always-query-capabilities for the case where you want to force a
18039 `plain' network connection, but the protocol still requires the
18040 capabilitiy command (i.e., SMTP and EHLO).
18041
18042 * subr.el (process-live-p): Rename from `process-alive-p' for
18043 consistency with other `-live-p' functions.
18044
18045 2011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
18046
18047 * window.el (same-window-buffer-names, same-window-regexps)
18048 (special-display-frame-alist, special-display-popup-frame)
18049 (special-display-function, special-display-buffer-names)
18050 (special-display-regexps, pop-up-frame-alist)
18051 (pop-up-frame-function, pop-up-frames, display-buffer-reuse-frames)
18052 (pop-up-windows, split-window-preferred-function)
18053 (split-height-threshold, split-width-threshold, even-window-heights)
18054 (display-buffer-mark-dedicated): Don't encourage the use of
18055 display-buffer-alist from Elisp code.
18056
18057 2011-06-15 Dan Nicolaescu <dann@ics.uci.edu>
18058
18059 * progmodes/python.el (python-mode): Derive from prog-mode.
18060 * progmodes/ps-mode.el (ps-mode):
18061 * progmodes/mixal-mode.el (mixal-mode):
18062 * progmodes/cfengine.el (cfengine-mode):
18063 * progmodes/ld-script.el (ld-script-mode): Likewise.
18064
18065 2011-06-15 Martin Rudalics <rudalics@gmx.at>
18066
18067 * window.el (display-buffer-alist): Trim default value to avoid
18068 popping up a new frame (Bug#8857) or reusing an arbitrary window
18069 on another frame.
18070 (display-buffer): Do not fall back on popping up a new frame in
18071 batch mode (Bug#8857).
18072
18073 2011-06-14 Chong Yidong <cyd@stupidchicken.com>
18074
18075 * cus-theme.el (describe-theme-1): Use custom-theme-p.
18076 (custom-theme-summary): New function.
18077 (customize-themes): Use it.
18078
18079 2011-06-13 Glenn Morris <rgm@gnu.org>
18080
18081 * cus-dep.el (custom-make-dependencies): Use up command-line-args-left.
18082
18083 2011-06-13 Martin Rudalics <rudalics@gmx.at>
18084
18085 * help.el (help-window): Remove variable.
18086 (help-window-point-marker, temp-buffer-max-height)
18087 (temp-buffer-resize-mode, help-window-select): Rewrite doc-strings.
18088 (help-print-return-message): Don't set help-window.
18089 (resize-temp-buffer-window): Rewrite cod eand doc-string.
18090 (help-window-setup-finish): Remove.
18091 (help-window-display-message, help-window-setup)
18092 (with-help-window): Major rewrite based on new
18093 display-buffer-window variable.
18094
18095 * help-mode.el (help-mode-finish): Remove help-window related
18096 code.
18097
18098 * view.el (view-exits-all-viewing-windows): Remove reference to
18099 view-return-to-alist in doc-string.
18100 (view-return-to-alist): Make obsolete.
18101 (view-buffer): Call pop-to-buffer-same-window and remove
18102 undo-window code.
18103 (view-buffer-other-window): Call pop-to-buffer-other-window and
18104 simplify code. Ignore second argument.
18105 (view-buffer-other-frame): Call pop-to-buffer-other-frame and
18106 simplify code. Ignore second argument.
18107 (view-return-to-alist-update): Make obsolete.
18108 (view-mode-enter): Rename second argument to QUIT-RESTORE.
18109 Rewrite using quit-restore window parameters.
18110 (view-mode-exit): Rename second argument to EXIT-ONLY.
18111 Rewrite using quit-restore-window.
18112 (View-exit, View-exit-and-edit, View-leave, View-quit)
18113 (View-quit-all, View-kill-and-leave): Call view-mode-exit with
18114 appropriate arguments.
18115 (view-end-message): Use quit-restore window parameter.
18116
18117 * window.el (display-buffer-function): Rewrite doc-string.
18118 (display-buffer-window, display-buffer-alist): New variables.
18119 (display-buffer-split-specifiers)
18120 (display-buffer-side-specifiers)
18121 (display-buffer-macro-specifiers): New constants.
18122 (display-buffer-even-window-sizes, display-buffer-set-height)
18123 (display-buffer-set-width, display-buffer-select-window)
18124 (display-buffer-in-window, display-buffer-reuse-window)
18125 (display-buffer-split-window-1, display-buffer-split-window)
18126 (display-buffer-split-atom-window, display-buffer-pop-up-window)
18127 (display-buffer-pop-up-frame, display-buffer-pop-up-side-window)
18128 (display-buffer-in-side-window, normalize-buffer-to-display)
18129 (display-buffer-normalize-specifiers-1)
18130 (display-buffer-normalize-specifiers-2)
18131 (display-buffer-normalize-specifiers, display-buffer-frame):
18132 New functions.
18133 (display-buffer): Major rewrite.
18134 (display-buffer-other-window, display-buffer-other-frame)
18135 (pop-to-buffer, switch-to-buffer-other-window)
18136 (switch-to-buffer-other-frame): Rewrite.
18137 (display-buffer-same-window, display-buffer-same-frame)
18138 (display-buffer-same-frame-other-window)
18139 (pop-to-buffer-same-window, pop-to-buffer-same-frame)
18140 (pop-to-buffer-other-window)
18141 (pop-to-buffer-same-frame-other-window)
18142 (pop-to-buffer-other-frame, switch-to-buffer-same-frame)
18143 (switch-to-buffer-other-window-same-frame): New functions.
18144 (same-window-p, special-display-p): Rewrite disabling warnings.
18145 Make obsolete.
18146 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
18147 (display-buffer-mark-dedicated): Initialize to symbol 'unset.
18148 Make obsolete
18149 (same-window-buffer-names, same-window-regexps)
18150 (special-display-frame-alist, special-display-popup-frame)
18151 (special-display-function, special-display-buffer-names)
18152 (special-display-regexps, pop-up-frame-alist)
18153 (pop-up-frame-function, split-window-preferred-function)
18154 (split-height-threshold, split-width-threshold)
18155 (even-window-heights): Make obsolete.
18156
18157 2011-06-12 Glenn Morris <rgm@gnu.org>
18158
18159 * term/xterm.el (terminal-init-xterm): `version' may be nil. (Bug#8838)
18160 Misc simplifications.
18161
18162 2011-06-12 Martin Rudalics <rudalics@gmx.at>
18163
18164 * window.el (window-safely-shrinkable-p): Restore function which
18165 was inadvertently removed in change from 2011-06-11. Declare as
18166 obsolete.
18167
18168 * calendar/calendar.el (calendar-generate-window):
18169 Use window-iso-combined-p instead of combination of one-window-p and
18170 window-safely-shrinkable-p.
18171
18172 2011-06-12 Glenn Morris <rgm@gnu.org>
18173
18174 * progmodes/fortran.el (fortran-mode-syntax-table):
18175 * progmodes/f90.el (f90-mode-syntax-table):
18176 Set % to punctuation. (Bug#8820)
18177 (f90-find-tag-default): Remove, no longer needed.
18178
18179 2011-06-12 Daniel Colascione <dan.colascione@gmail.com>
18180
18181 * emacs-lisp/syntax.el (syntax-ppss): Clarify which items are invalid.
18182
18183 2011-06-11 Chong Yidong <cyd@stupidchicken.com>
18184
18185 * image.el (image-animated-p): Return animation delay in seconds.
18186 Avoid bit manipulation in Lisp; use `delay' entry in the metadata.
18187 (image-animate-timeout): Remove DELAY argument. Don't assume
18188 every subimage has the same delay; get it from image-animated-p.
18189 (image-animate): Caller changed.
18190
18191 2011-06-11 Michael Albinus <michael.albinus@gmx.de>
18192
18193 * net/tramp.el (tramp-debug-message): Add `tramp-with-progress-reporter'
18194 to ignored backtrace functions.
18195
18196 2011-06-11 Glenn Morris <rgm@gnu.org>
18197
18198 * calendar/appt.el (appt-disp-window-function): Doc fix.
18199 (appt-check): Handle overlapping appointments. (Bug#8337)
18200
18201 2011-06-11 Martin Rudalics <rudalics@gmx.at>
18202
18203 * window.el (window-tree-1, window-tree): New functions, moving
18204 the latter to window.el.
18205 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
18206 (bw-find-tree-sub-1, bw-l, bw-t, bw-r, bw-b, bw-dir, bw-eqdir)
18207 (bw-refresh-edges): Remove.
18208 (balance-windows-1, balance-windows-2): New functions.
18209 (balance-windows): Rewrite in terms of window tree functions,
18210 balance-windows-1 and balance-windows-2.
18211 (bw-adjust-window): Remove.
18212 (balance-windows-area-adjust): New function with functionality of
18213 bw-adjust-window but using resize-window.
18214 (set-window-text-height): Rewrite doc-string.
18215 Use normalize-live-window and resize-window.
18216 (enlarge-window-horizontally, shrink-window-horizontally):
18217 Rename argument to DELTA.
18218 (window-buffer-height): New function.
18219 (fit-window-to-buffer, shrink-window-if-larger-than-buffer):
18220 Rewrite using new window resize routines.
18221 (kill-buffer-and-window, mouse-autoselect-window-select):
18222 Use ignore-errors instead of condition-case.
18223 (quit-window): Call delete-frame instead of delete-windows-on
18224 for the only buffer on frame.
18225
18226 2011-06-10 Martin Rudalics <rudalics@gmx.at>
18227
18228 * loadup.el (top-level): Load window before files for the sake
18229 of replace-buffer-in-windows.
18230
18231 * files.el (read-buffer-to-switch)
18232 (switch-to-buffer-other-window)
18233 (switch-to-buffer-other-frame, display-buffer-other-frame):
18234 Move to window.el.
18235
18236 * simple.el (get-next-valid-buffer, last-buffer, next-buffer)
18237 (previous-buffer): Move to window.el.
18238
18239 * bindings.el (unbury-buffer): Move to window.el.
18240
18241 * window.el (delete-other-windows-vertically): Move after
18242 definition of delete-other-windows.
18243 (other-window, delete-windows-on, replace-buffer-in-windows):
18244 Move here from window.c.
18245 (record-window-buffer, unrecord-window-buffer)
18246 (set-window-buffer-start-and-point, switch-to-prev-buffer)
18247 (switch-to-next-buffer): New functions.
18248 (get-next-valid-buffer, last-buffer, next-buffer): Move here
18249 from simple.el. Call switch-to-next-buffer.
18250 (previous-buffer): Move here from simple.el.
18251 Call switch-to-prev-buffer.
18252 (bury-buffer): Move here from buffer.c. Switch to previous
18253 buffer when window cannot be deleted.
18254 (unbury-buffer): Move here from bindings.el.
18255 (ctl-x-map): Move binding for other-window from window.c to
18256 here.
18257 (read-buffer-to-switch, switch-to-buffer-other-window)
18258 (switch-to-buffer-other-frame): Move here from files.el.
18259 (normalize-buffer-to-switch-to): New functions.
18260 (switch-to-buffer): Move here from buffer.c.
18261 Use read-buffer-to-switch and normalize-buffer-to-switch-to.
18262
18263 2011-06-10 Martin Rudalics <rudalics@gmx.at>
18264
18265 * window.el (window-min-height, window-min-width): Move here
18266 from window.c. Add defcustoms and rewrite doc-strings.
18267 (resize-mini-window, resize-window): New functions.
18268 (adjust-window-trailing-edge, enlarge-window, shrink-window):
18269 Move here from window.c.
18270 (maximize-window, minimize-window): New functions.
18271 (delete-window, delete-other-windows, split-window): Move here
18272 from window.c.
18273 (window-split-min-size): New function.
18274 (split-window-keep-point): Mention split-window-above-each-other
18275 instead of split-window-vertically.
18276 (split-window-above-each-other, split-window-vertically):
18277 Rename split-window-vertically to split-window-above-each-other
18278 and provide defalias for old definition.
18279 (split-window-side-by-side, split-window-horizontally):
18280 Rename split-window-horizontally to split-window-side-by-side
18281 and provide defalias for the old definition.
18282 (ctl-x-map): Move bindings for delete-window,
18283 delete-other-windows and enlarge-window here from window.c.
18284 Replace bindings for split-window-vertically and
18285 split-window-horizontally by bindings for
18286 split-window-above-each-other and split-window-side-by-side.
18287
18288 * cus-start.el (all): Remove entries for window-min-height and
18289 window-min-width. Add entries for window-splits and
18290 window-nest.
18291
18292 2011-06-09 Glenn Morris <rgm@gnu.org>
18293
18294 * calendar/appt.el (appt-mode-line): New function.
18295 (appt-check, appt-disp-window): Use it.
18296
18297 * files.el (hack-one-local-variable-eval-safep):
18298 Allow minor-modes with explicit +/-1 arguments.
18299
18300 2011-06-09 Teodor Zlatanov <tzz@lifelogs.com>
18301
18302 * term/xterm.el (xterm): Add defgroup.
18303 (xterm-extra-capabilities): Add defcustom to supply known xterm
18304 capabilities, skip querying them, or query them (default).
18305 (terminal-init-xterm): Use it.
18306 (terminal-init-xterm-modify-other-keys): New function to set up
18307 modifyOtherKeys support to simplify `terminal-init-xterm'.
18308
18309 2011-06-09 Martin Rudalics <rudalics@gmx.at>
18310
18311 * window.el (resize-window-reset, resize-window-reset-1)
18312 (resize-subwindows-skip-p, resize-subwindows-normal)
18313 (resize-subwindows, resize-other-windows, resize-this-window)
18314 (resize-root-window, resize-root-window-vertically)
18315 (window-deletable-p, window-or-subwindow-p)
18316 (frame-root-window-p): New functions.
18317
18318 2011-06-09 Glenn Morris <rgm@gnu.org>
18319
18320 * net/ange-ftp.el (ange-ftp-switches-ok): New function.
18321 (ange-ftp-get-files): Use it.
18322
18323 2011-06-09 Alexander Klimov <alserkli@inbox.ru> (tiny change)
18324
18325 * mail/sendmail.el (mail-recover-1, mail-recover):
18326 * files.el (recover-file, recover-session):
18327 Handle dired-listing-switches not being just a single short option.
18328
18329 2011-06-09 Glenn Morris <rgm@gnu.org>
18330
18331 * calendar/appt.el (appt-display-message, appt-disp-window):
18332 Handle lists of appointments.
18333
18334 2011-06-08 Martin Rudalics <rudalics@gmx.at>
18335
18336 * window.el (one-window-p): Move down in code.
18337 Rewrite doc-string.
18338 (window-current-scroll-bars): Rewrite doc-string.
18339 Normalize live window argument.
18340 (walk-windows, get-window-with-predicate, count-windows):
18341 Rewrite doc-string. Use window-list-1.
18342 (window-in-direction-2, window-in-direction, get-mru-window):
18343 New functions.
18344
18345 2011-06-08 Reuben Thomas <rrt@sc3d.org>
18346
18347 * progmodes/flymake.el (flymake-compilation-prevents-syntax-check):
18348 Doc fix (Bug#8713).
18349
18350 2011-06-08 Chong Yidong <cyd@stupidchicken.com>
18351
18352 * repeat.el (repeat-on-final-keystroke): Fix type (Bug#8696).
18353
18354 2011-06-08 Juanma Barranquero <lekktu@gmail.com>
18355
18356 * loadhist.el (unload-feature-special-hooks):
18357 Add `comint-output-filter-functions'.
18358
18359 2011-06-08 Ivan Kanis <gnu@kanis.fr>
18360
18361 * calendar/appt.el (appt-check): Move some initializations into the let.
18362
18363 2011-06-08 Martin Rudalics <rudalics@gmx.at>
18364
18365 * window.el (window-height): Defalias to window-total-height.
18366 (window-width): Defalias to window-body-width.
18367
18368 2011-06-07 Chong Yidong <cyd@stupidchicken.com>
18369
18370 * image-mode.el (image-toggle-animation): New command.
18371 (image-mode-map): Bind it to RET.
18372 (image-mode): Update message.
18373 (image-toggle-display-image): Avoid a spurious cache flush.
18374 (image-transform-rotation): Doc fix.
18375 (image-transform-properties): Return quickly in the normal case.
18376 (image-animate-loop): Rename from image-animate-max-time.
18377
18378 * image.el (image-animate-max-time): Move to image-mode.el.
18379 (create-animated-image): Remove unnecessary function.
18380 (image-animate): Rename from image-animate-start. New arg.
18381 (image-animate-stop): Remove; just use image-animate-timer.
18382 (image-animate-timer): Use car-safe.
18383 (image-animate-timeout): Rename argument.
18384
18385 2011-06-07 Martin Rudalics <rudalics@gmx.at>
18386
18387 * window.el (get-lru-window, get-largest-window): Move here from
18388 window.c. Rename first argument to ALL-FRAMES.
18389 Rephrase doc-strings.
18390 (get-buffer-window-list): Rewrite using window-list-1.
18391 Rephrase doc-string.
18392 (window-safe-min-height, window-safe-min-width): New constants.
18393 (window-size-ignore, window-min-size, window-min-size-1)
18394 (window-sizable, window-sizable-p, window-size-fixed-1)
18395 (window-size-fixed-p, window-min-delta-1, window-min-delta)
18396 (window-max-delta-1, window-max-delta, window-resizable)
18397 (window-resizable-p, window-total-height, window-total-width)
18398 (window-body-width): New functions.
18399 (window-full-height-p, window-full-width-p): Rewrite using
18400 window-total-size.
18401 (window-body-height): Rewrite using window-body-size.
18402
18403 2011-06-06 Martin Rudalics <rudalics@gmx.at>
18404
18405 * window.el (window-right, window-left, window-child)
18406 (window-child-count, window-last-child, window-any-p)
18407 (normalize-live-buffer, normalize-live-frame)
18408 (normalize-any-window, normalize-live-window)
18409 (window-iso-combination-p, window-iso-combined-p)
18410 (window-iso-combinations)
18411 (walk-window-tree-1, walk-window-tree, walk-window-subtree)
18412 (windows-with-parameter, window-with-parameter)
18413 (window-atom-root, make-window-atom, window-atom-check-1)
18414 (window-atom-check, window-side-check, window-check):
18415 New functions.
18416 (ignore-window-parameters, window-sides, window-sides-vertical)
18417 (window-sides-slots): New variables.
18418 (window-size-fixed): Move down in code. Minor doc-string fix.
18419
18420 2011-06-05 Andreas Schwab <schwab@linux-m68k.org>
18421
18422 * comint.el (comint-dynamic-complete-as-filename)
18423 (comint-dynamic-complete-filename): Correctly call
18424 completion-in-region.
18425
18426 2011-06-05 Deniz Dogan <deniz@dogan.se>
18427
18428 * net/rcirc.el (rcirc-prompt-for-encryption): Fix bug introduced
18429 in last change.
18430
18431 2011-06-05 Deniz Dogan <deniz@dogan.se>
18432
18433 * net/rcirc.el (rcirc-prompt-for-encryption): New function.
18434 (rcirc): Use it to prompt for encryption.
18435
18436 2011-06-05 Roland Winkler <winkler@gnu.org>
18437
18438 * textmodes/bibtex.el (bibtex-search-buffer): New variable.
18439 (bibtex-search-entries): New command bound to C-c C-a.
18440 (bibtex-display-entries): New function.
18441
18442 2011-06-05 Roland Winkler <winkler@gnu.org>
18443
18444 * textmodes/bibtex.el (bibtex-generate-url-list): Fix docstring.
18445 (bibtex-insert-kill): After yanking insert newline if necessary.
18446 (bibtex-initialize): Call bibtex-string-files-init only once.
18447 (bibtex-mode): Do not call easy-menu-add.
18448 (bibtex-validate-globally): Use save-excursion in bibtex buffers.
18449 (bibtex-yank): Set arg properly if nil.
18450
18451 2011-06-05 Roland Winkler <winkler@gnu.org>
18452
18453 * textmodes/bibtex.el (bibtex-search-entry-globally):
18454 New variable.
18455 (bibtex-search-entry): Use it.
18456
18457 2011-06-05 Roland Winkler <winkler@gnu.org>
18458
18459 * textmodes/bibtex.el (bibtex-entry-format): New option
18460 sort-fields.
18461 (bibtex-format-entry, bibtex-reformat): Honor this option.
18462 (bibtex-parse-entry): Return fields in proper order.
18463
18464 2011-06-05 Juanma Barranquero <lekktu@gmail.com>
18465
18466 * doc-view.el (doc-view-remove-if): Move computation of result out
18467 of `dolist' to silence misleading lexical-binding warning.
18468
18469 2011-06-04 Chong Yidong <cyd@stupidchicken.com>
18470
18471 * emacs-lisp/timer.el (timer-activate): Remove unused arg.
18472 (timer-activate, timer-activate-when-idle): Doc fix (Bug#8793).
18473
18474 2011-06-04 Michael Albinus <michael.albinus@gmx.de>
18475
18476 * net/tramp-sh.el (tramp-find-shell): Apply workaround also for
18477 "SunOS 5.10".
18478
18479 2011-06-04 Michael Albinus <michael.albinus@gmx.de>
18480
18481 * net/tramp.el (tramp-set-completion-function, tramp-parse-rhosts)
18482 (tramp-parse-shosts, tramp-parse-sconfig, tramp-parse-shostkeys)
18483 (tramp-parse-hosts, tramp-parse-passwd, tramp-parse-netrc)
18484 (tramp-parse-putty):
18485 * net/tramp-sh.el (tramp-completion-function-alist-rsh)
18486 (tramp-completion-function-alist-ssh)
18487 (tramp-completion-function-alist-telnet)
18488 (tramp-completion-function-alist-su)
18489 (tramp-completion-function-alist-putty): Set `tramp-autoload'
18490 cookie.
18491
18492 * net/tramp-ftp.el:
18493 * net/tramp-sh.el:
18494 * net/tramp-smb.el: Set `tramp-autoload' cookie, and eval after
18495 load "tramp.el" `tramp-set-completion-function'.
18496
18497 2011-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
18498
18499 * shell.el: Require and use pcomplete.
18500 (shell-dynamic-complete-functions): Add pcomplete-completions-at-point.
18501 (shell-completion-vars): Set pcomplete-default-completion-function.
18502
18503 2011-06-04 Deniz Dogan <deniz@dogan.se>
18504
18505 * iswitchb.el (iswitchb-window-buffer-p): Use `member' instead of
18506 `memq' (Bug#8799).
18507
18508 2011-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
18509
18510 * subr.el (make-progress-reporter): Add "..." by default (bug#8785).
18511
18512 2011-06-02 Juanma Barranquero <lekktu@gmail.com>
18513
18514 * bs.el (bs--mark-unmark, bs--nth-wrapper):
18515 * mpc.el (mpc-select-extend, mpc-songpointer-context):
18516 * vc/log-view.el (log-view-beginning-of-defun):
18517 * vc/smerge-mode.el (smerge-apply-resolution-patch)
18518 (smerge-refine-forward, smerge-refine-chopup-region):
18519 Silence warning for unused `dotimes' counter variables.
18520
18521 2011-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
18522
18523 * net/tramp.el (tramp-with-progress-reporter): Rename from
18524 with-progress-reporter. Use `declare'.
18525 * net/tramp-smb.el:
18526 * net/tramp-sh.el:
18527 * net/tramp-gvfs.el: Update all uses.
18528
18529 2011-06-02 Jay Belanger <jay.p.belanger@gmail.com>
18530
18531 * calc/calc.el (calc-kill-stack-buffer): Make sure that the trail
18532 buffer isn't killed before making it current.
18533
18534 2011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
18535
18536 Silence various byte-compiler warnings.
18537 * emacs-lisp/byte-run.el (make-obsolete-variable): New argument
18538 `access-type' and new obsolescence format.
18539 * emacs-lisp/bytecomp.el (byte-compile-warn-obsolete): Adjust to
18540 new format.
18541 (byte-compile-check-variable): New `access-type' argument.
18542 Only warn if the access-type is obsolete.
18543 (byte-compile-dynamic-variable-bind, byte-compile-variable-ref)
18544 (byte-compile-variable-set): Adjust callers.
18545 * help-fns.el (describe-variable): Adjust to new obsolescence format.
18546 * mail/sendmail.el (mail-mailer-swallows-blank-line): Only mark
18547 setting it as obsolete.
18548 * simple.el (minibuffer-completing-symbol):
18549 * font-lock.el (font-lock-beginning-of-syntax-function): Only mark read
18550 access as obsolete.
18551 * minibuffer.el (minibuffer-completing-file-name): Don't make it
18552 obsolete yet.
18553 * international/quail.el (quail-mouse-choose-completion): Remove unused
18554 code referring to obsolete var.
18555 (quail-choose-completion-string): Remove.
18556 * server.el (server-clients-with, server-kill-buffer-query-function)
18557 (server-kill-emacs-query-function): Silence "unused `proc'" warnings.
18558 * proced.el (proced-send-signal):
18559 * emacs-lisp/lisp.el (lisp-complete-symbol):
18560 Replace completion-annotate-function with completion-extra-properties.
18561
18562 2011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
18563
18564 * simple.el (goto-line): Use read-number.
18565 (overriding-map-is-bound): Remove.
18566 (saved-overriding-map): Change default.
18567 (save&set-overriding-map): Rename from ensure-overriding-map-is-bound;
18568 Take the map as argument.
18569 (universal-argument, negative-argument, digit-argument): Use it.
18570 (restore-overriding-map): Adjust.
18571 (do-auto-fill): Use fill-forward-paragraph.
18572 (keyboard-quit): Don't signal an error when debug-on-quit is non-nil.
18573
18574 * minibuffer.el (minibuffer-inactive-mode-map): New var.
18575 (minibuffer-inactive-mode): New major mode.
18576 * mouse.el (mouse-drag-region): Remove the "mouse-1 pops up
18577 the *Messages* buffer" hack.
18578 (mouse-popup-menubar): Don't burp if the event is a normal key.
18579
18580 Miscellaneous tweaks.
18581 * emacs-lisp/cl-macs.el (dolist, dotimes): Use the same strategy for
18582 lexical scoping as in subr.el's dolist and dotimes.
18583 * emacs-lisp/bytecomp.el (byte-compile-unfold-bcf):
18584 Silence compiler warning.
18585 * thingatpt.el (forward-whitespace): Trivial coding style fix.
18586 * subr.el (with-output-to-temp-buffer): Provide an edebug spec.
18587 * international/ccl.el (ccl-compile): Trivial simplification.
18588 * help-fns.el (help-do-arg-highlight): Silence compiler warning.
18589 * emacs-lisp/testcover.el (testcover-end): Remove spurious
18590 `printflag' argument.
18591 * emacs-lisp/byte-run.el (make-obsolete, make-obsolete-variable):
18592 Purecopy the whole obsolescence data.
18593
18594 2011-06-01 Leo Liu <sdl.web@gmail.com>
18595
18596 * net/rcirc.el (rcirc-decode-coding-system): Revert last change;
18597 improve doc-string as suggested by Marco Pessotto
18598 <melmothx@gmail.com>.
18599 (rcirc-print): Fix last change.
18600
18601 2011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
18602
18603 * minibuffer.el (complete-with-action): Return nil for the metadata and
18604 boundaries of non-functional tables.
18605 (completion-table-dynamic): Return nil for the metadata.
18606 (completion-table-with-terminator): Add default case, using
18607 complete-with-action.
18608 (completion--metadata): New function.
18609 (completion-all-sorted-completions, minibuffer-completion-help): Use it
18610 to try and avoid pathological performance problems.
18611 (completion--embedded-envvar-table): Return `category' metadata.
18612
18613 2011-05-31 Lars Magne Ingebrigtsen <larsi@gnus.org>
18614
18615 * subr.el (process-alive-p): New tiny convenience function.
18616
18617 2011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
18618
18619 * emacs-lisp/debug.el (debug): Save&restore not just the buffer's
18620 content but also its previous major mode.
18621
18622 2011-05-31 Helmut Eller <eller.helmut@gmail.com>
18623
18624 * emacs-lisp/debug.el (debug): Restore the previous content of the
18625 *Backtrace* buffer when we exit with C-M-c.
18626
18627 2011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
18628
18629 * minibuffer.el: Add metadata method to completion tables.
18630 (completion-category-overrides): New defcustom.
18631 (completion-metadata, completion--field-metadata)
18632 (completion-metadata-get, completion--styles)
18633 (completion--cycle-threshold): New functions.
18634 (completion-try-completion, completion-all-completions):
18635 Add `metadata' argument to choose completion-styles.
18636 (completion--do-completion): Use metadata to choose cycling.
18637 (completion-all-sorted-completions): Use metadata for sorting.
18638 Remove :completion-cycle-penalty which is not needed any more.
18639 (completion--try-word-completion): Add `metadata' argument.
18640 (minibuffer-completion-help): Check metadata for annotation function
18641 and sorting.
18642 (completion-file-name-table): Return `category' metadata.
18643 (minibuffer-completing-file-name): Make obsolete.
18644 * simple.el (minibuffer-completing-symbol): Make obsolete.
18645 * icomplete.el (icomplete-completions): Pass new `metadata' param to
18646 completion-try-completion.
18647
18648 2011-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
18649
18650 * mail/smtpmail.el (smtpmail-send-data): Add progress reporter.
18651
18652 2011-05-30 Leo Liu <sdl.web@gmail.com>
18653
18654 * net/rcirc.el (rcirc-debug-buffer): Use visible buffer name.
18655 (rcirc-print): Decode all incoming messages (bug#8744).
18656 (rcirc-decode-coding-system): Allow value nil for automatic coding
18657 system detection.
18658
18659 2011-06-01 Glenn Morris <rgm@gnu.org>
18660
18661 * mail/emacsbug.el (report-emacs-bug-hook): Mailclient ignores From.
18662
18663 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
18664
18665 * image.el (image-animate-max-time): Allow nil and t values.
18666 Default to nil.
18667 (create-animated-image): Doc fix.
18668 (image-animate-start): Remove second arg; just use
18669 image-animate-max-time.
18670 (image-animate-timeout): Doc fix. Args changed.
18671
18672 * image-mode.el (image-toggle-display-image): Ensure that the
18673 image spec passed to the animate timer is the same object as in
18674 the buffer's display property (Bug#6981).
18675 (image-transform-properties): Doc fix.
18676
18677 * image.el (image-animate-max-time): Default to nil.
18678
18679 2011-05-29 Martin Rudalics <rudalics@gmx.at>
18680
18681 * menu-bar.el (kill-this-buffer-enabled-p): Avoid looping over
18682 entire buffer list (Bug#8184).
18683
18684 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
18685
18686 * image.el (imagemagick-types-inhibit)
18687 (imagemagick-register-types): Doc fix.
18688
18689 2011-05-29 Deniz Dogan <deniz@dogan.se>
18690
18691 * net/rcirc.el (rcirc): Use the user's stored encryption method by
18692 default.
18693
18694 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
18695
18696 * select.el: Don't perform clipboard-manager saving in hooks;
18697 leave the hooks empty.
18698
18699 2011-05-28 Leo Liu <sdl.web@gmail.com>
18700
18701 * replace.el (occur-menu-map, occur-edit-mode-map): New vars.
18702 (occur-mode-map): Bind occur-edit-mode. Use occur-menu-map.
18703 (occur-edit-mode): New major mode (Bug#8463).
18704 (occur-after-change-function): New function.
18705 (occur-engine): Give Occur tags a read-only property.
18706
18707 2011-05-28 Kevin Ryde <user42@zip.com.au>
18708
18709 * subr.el (def-edebug-spec): Doc fix (Bug#8430).
18710
18711 2011-05-28 Chong Yidong <cyd@stupidchicken.com>
18712
18713 * bindings.el (help-echo): Make the initial non-indicator dash
18714 empty on graphical terminals (Bug#7295).
18715
18716 * files.el (auto-mode-alist): Move config rule after the
18717 in-stripping one (Bug#8547).
18718
18719 * newcomment.el (comment-end-skip): Doc fix (Bug#8659).
18720
18721 * startup.el (normal-splash-screen): Remove gratuitous mode-line
18722 setting (Bug#8740).
18723
18724 2011-05-28 Alp Aker <aker@pitt.edu> (tiny change)
18725
18726 * buff-menu.el (Buffer-menu-revert-function, Buffer-menu-sort)
18727 (Buffer-menu-buffer+size): Use Buffer-menu-buffer-column
18728 (Bug#8539).
18729
18730 2011-05-28 Chong Yidong <cyd@stupidchicken.com>
18731
18732 * emacs-lisp/re-builder.el (re-builder): Improve doc (Bug#8286).
18733
18734 2011-05-28 Dima Kogan <dkogan@cds.caltech.edu> (tiny change)
18735
18736 * progmodes/hideshow.el (hs-looking-at-block-start-p): New fun.
18737 (hs-hide-block-at-point, hs-find-block-beginning)
18738 (hs-already-hidden-p, hs-hide-block, hs-show-block): Use it
18739 (Bug#8279).
18740
18741 2011-05-28 Glenn Morris <rgm@gnu.org>
18742
18743 * startup.el (fancy-about-screen): Use standard mode line. (Bug#8740)
18744
18745 2011-05-28 Chong Yidong <cyd@stupidchicken.com>
18746
18747 * help-fns.el (describe-function-1): If the function is a derived
18748 major mode, print the parent mode.
18749
18750 * progmodes/cc-mode.el (c-mode, c++-mode, objc-mode, java-mode)
18751 (idl-mode, pike-mode, awk-mode): Inherit from prog-mode.
18752
18753 2011-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
18754
18755 * minibuffer.el (completion--capf-wrapper): Check applicability before
18756 returning non-nil for non-exclusive completion data.
18757 * progmodes/etags.el (tags-completion-at-point-function):
18758 * info-look.el (info-lookup-completions-at-point): Mark as
18759 non-exclusive.
18760 (info-complete): Adjust accordingly.
18761
18762 * info-look.el: Convert to lexical-binding and completion-at-point.
18763 (info-lookup-completions-at-point): New function.
18764 (info-complete): Use it and completion-in-region.
18765
18766 2011-05-28 Drew Adams <drew.adams@oracle.com>
18767
18768 * isearch.el: Let M-e start with point at the first mismatched char.
18769 (isearch-fail-pos): New function.
18770 (isearch-edit-string): Use it.
18771
18772 2011-05-28 Dmitry Kurochkin <dmitry.kurochkin@gmail.com> (tiny change)
18773
18774 * isearch.el (isearch-range-invisible): Use invisible-p (bug#8721).
18775
18776 2011-05-27 Toby Cubitt <toby-predictive@dr-qubit.org>
18777
18778 * emacs-lisp/avl-tree.el: New avl-tree-stack datatype. Add new
18779 traversal functions for avl-trees.
18780 (avl-tree--stack): New struct.
18781 (avl-tree-stack-p, avl-tree--stack-repopulate): New funs.
18782 (avl-tree-enter): Add optional `updatefun' arg.
18783 (avl-tree--do-enter): Add optional `updatefun' arg.
18784 Change return value.
18785 (avl-tree-delete): Add optional `test' and `nilflag' args.
18786 (avl-tree--do-delete): Add `test' and `nilflag' args.
18787 Change return value.
18788 (avl-tree-member): Add optional `nilflag'
18789 (avl-tree-member-p): New function.
18790 (avl-tree-mapc, avl-tree-mapf, avl-tree-mapcar): New functions.
18791 (avl-tree-stack, avl-tree-stack-pop, avl-tree-stack-first)
18792 (avl-tree-stack-empty-p): New functions.
18793
18794 * emacs-lisp/avl-tree.el (avl-tree--del-balance): Rename from
18795 avl-tree--del-balance1 and make it work both ways.
18796 (avl-tree--del-balance2): Remove.
18797 (avl-tree--enter-balance): Rename from avl-tree--enter-balance1 and
18798 make it work both ways.
18799 (avl-tree--enter-balance2): Remove.
18800 (avl-tree--switch-dir, avl-tree--dir-to-sign, avl-tree--sign-to-dir):
18801 New macros.
18802 (avl-tree--mapc, avl-tree-map): Add direction argument.
18803
18804 2011-05-27 David Michael <fedora.dm0@gmail.com> (tiny change)
18805
18806 * files.el (interpreter-mode-alist): Add rbash (bug#8745).
18807
18808 2011-05-27 Chong Yidong <cyd@stupidchicken.com>
18809
18810 * select.el: Support clipboard managers with built-in function
18811 x-clipboard-manager-save, via delete-frame-functions and
18812 kill-emacs-hook.
18813 (xselect-convert-to-targets): Add MULTIPLE target to list.
18814 (xselect-convert-to-save-targets): New function.
18815
18816 2011-05-27 Kenichi Handa <handa@m17n.org>
18817
18818 * mail/sendmail.el (mail-encode-header): Avoid double encoding by
18819 let-binding rfc2047-encode-encoded-words to nil.
18820
18821 2011-05-27 Glenn Morris <rgm@gnu.org>
18822
18823 * mail/emacsbug.el: Don't require url-util.
18824
18825 * shell.el (shell-directory-tracker): Case matters. (Bug#8735)
18826
18827 * files.el (set-auto-mode):
18828 Also respect mode: entries at the end of the file. (Bug#8586)
18829
18830 2011-05-26 Glenn Morris <rgm@gnu.org>
18831
18832 * files.el (hack-local-variables-prop-line, hack-local-variables):
18833 Downcase mode names, as seems to be traditional.
18834 (hack-local-variables, hack-local-variables-apply): Doc fixes.
18835
18836 * mail/emacsbug.el (report-emacs-bug): Mention checking From address.
18837 (report-emacs-bug-hook): Try to validate the From address. (Bug#8038)
18838
18839 2011-05-25 Julien Danjou <julien@danjou.info>
18840
18841 * textmodes/rst.el (rst-define-level-faces): Do not define face
18842 symbol if it is already defined.
18843
18844 2011-05-24 Vincent Belaïche <vincentb1@users.sourceforge.net>
18845
18846 * play/5x5.el (5x5-new-game, 5x5-randomize):
18847 Reset 5x5-solver-output to nil when a new grid is cast.
18848 (5x5-log-init, 5x5-log): Use defsubst instead of defmacro to shunt
18849 these debugging traces, as defmacro breaks the compiled code.
18850
18851 2011-05-24 Dmitry Kurochkin <dmitry.kurochkin@gmail.com> (tiny change)
18852
18853 * isearch.el (isearch-range-invisible): Use invisible-p (bug#8721).
18854
18855 2011-05-24 Leo Liu <sdl.web@gmail.com>
18856
18857 * vc/vc-bzr.el (vc-bzr-sha1-program): Rename from sha1-program.
18858 (vc-bzr-sha1): Adapt.
18859
18860 * sha1.el: Remove. Function `sha1' is now builtin.
18861
18862 * bindings.el: Provide sha1 feature.
18863
18864 2011-05-24 Kenichi Handa <handa@m17n.org>
18865
18866 * mail/sendmail.el: Require `rfc2047'.
18867 (mail-insert-from-field): Do not perform RFC2047 encoding.
18868 (mail-encode-header): New function.
18869 (sendmail-send-it): Set buffer-file-coding-system of the work
18870 buffer to the return value of select-message-coding-system.
18871 Call mail-encode-header.
18872
18873 * mail/smtpmail.el (smtpmail-send-it): Call mail-encode-header.
18874
18875 2011-05-24 Sean Neakums <sneakums@zork.net> (tiny change)
18876
18877 * mail/supercite.el (sc-default-cite-frame):
18878 Handle sc-nested-citation-p when sc-cite-blank-lines-p is non-nil.
18879
18880 2011-05-24 Glenn Morris <rgm@gnu.org>
18881
18882 * progmodes/python.el (brm-menu): Declare.
18883
18884 * emulation/viper.el (viper-set-hooks): Declare.
18885
18886 * play/5x5.el (5x5-log-init, 5x5-log): Evaluate when compiling.
18887 (5x5-log-init, 5x5-log, 5x5-solver): Doc fixes.
18888 (math-map-vec, math-sub, math-mul, math-make-intv, math-reduce-vec)
18889 (math-format-number, math-pow, calcFunc-arrange, calcFunc-cvec)
18890 (calcFunc-diag, calcFunc-trn, calcFunc-inv, calcFunc-mrow)
18891 (calcFunc-mcol, calcFunc-vconcat, calcFunc-index): Declare.
18892
18893 2011-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
18894
18895 Add an :exit-function for completion-at-point.
18896
18897 * minibuffer.el (completion--done): New fun.
18898 (completion--do-completion): Use it. New arg `expect-exact'.
18899 (minibuffer-complete, minibuffer-complete-word): Don't output message,
18900 since completion--do-completion does it for us now.
18901 (minibuffer-force-complete): Use completion--done and
18902 completion--replace. Handle sole-completion case with more care.
18903 (minibuffer-complete-and-exit): Use new `expect-exact' arg.
18904 (completion-extra-properties): New var.
18905 (completion-annotate-function): Make obsolete.
18906 (minibuffer-completion-help): Adjust accordingly.
18907 Use completion-list-insert-choice-function.
18908 (completion-at-point, completion-help-at-point):
18909 Bind completion-extra-properties.
18910 (completion-pcm-word-delimiters): Add | (for uniquify, for example).
18911 * simple.el (completion-list-insert-choice-function): New var.
18912 (completion-setup-function): Preserve it.
18913 (choose-completion): Pay attention to it, shuffle the code a bit.
18914 (choose-completion-string): New arg `insert-function'.
18915
18916 * textmodes/bibtex.el: Convert to lexical binding.
18917 (bibtex-mode-map): Use completion-at-point.
18918 (bibtex-mode): Use define-derived-mode&completion-at-point-functions.
18919 (bibtex-completion-at-point-function): New fun, from bibtex-complete.
18920 (bibtex-complete): Define as obsolete alias.
18921 (bibtex-complete-internal): Remove.
18922 (bibtex-format-entry): Remove unused sub-group in regexp.
18923 * shell.el (shell--command-completion-data)
18924 (shell-environment-variable-completion):
18925 * pcomplete.el (pcomplete-completions-at-point):
18926 * comint.el (comint--complete-file-name-data): Use :exit-function
18927 instead of completion-table-with-terminator so it also works for
18928 choose-completion.
18929
18930 2011-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
18931
18932 * <lots-of-files>.el: Don't quote lambda expressions with `quote'.
18933
18934 * vc/smerge-mode.el (smerge-refine-subst): Don't deactivate the mark
18935 (bug#8710).
18936
18937 * emacs-lisp/lisp.el (up-list): Fix forward movement (bug#8708).
18938
18939 2011-05-23 Ken Manheimer <ken.manheimer@gmail.com>
18940
18941 * allout.el (allout-inhibit-auto-fill-on-headline): Create new
18942 customization variable and implement: If non-nil, auto-fill will
18943 be inhibited while on topic's header line.
18944
18945 2011-05-23 Vincent Belaïche <vincentb1@users.sourceforge.net>
18946
18947 * play/5x5.el: I/ Add an arithmetic solver to suggest positions to
18948 click on. II/ Make 5x5 multisession. III/ Ensure that random grids
18949 always have a solution in grid size = 5 cases.
18950 (5x5-mode-map): Add keybinding to function `5x5-solve-suggest'.
18951 (5x5-solver-output, 5x5-log-buffer): New vars.
18952 (5x5-grid, 5x5-x-pos, 5x5-y-pos, 5x5-moves, 5x5-cracking):
18953 Make these variables buffer local to achieve 5x5 multi-session-ness.
18954 (5x5): Set 5x5-grid-size only if SIZE is non-negative.
18955 (5x5-grid-to-vec, 5x5-vec-to-grid, 5x5-log-init, 5x5-log, 5x5-solver)
18956 (5x5-solve-suggest): New funs.
18957 (5x5-randomize): Use 5x5-make-move instead of 5x5-flip-cell to
18958 randomize a grid so that we ensure that there is always a solution.
18959 (5x5-make-random-grid): Allow other movement than flipping.
18960
18961 2011-05-23 Kevin Ryde <user42@zip.com.au>
18962
18963 * emacs-lisp/advice.el (ad-read-advised-function):
18964 Use `function-called-at-point' as the default, if it has
18965 advice and passes PREDICATE.
18966
18967 2011-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
18968
18969 * emacs-lisp/bytecomp.el (byte-compile-function-form): Only call
18970 byte-compile-lambda if it's actually a lambda.
18971
18972 * emacs-lisp/eieio.el (eieio-defgeneric-form-primary-only-one):
18973 Fix function quoting. Use backquote better.
18974
18975 2011-05-22 Yuanle Song <sylecn@gmail.com>
18976
18977 * nxml/rng-xsd.el (rng-xsd-check-pattern): Use case-sensitive
18978 matching (Bug#8516).
18979
18980 2011-05-22 Jari Aalto <jari.aalto@cante.net>
18981
18982 * vc/vc-dir.el (vc-default-dir-printer): Give edited tag a
18983 different face (Bug#8178).
18984
18985 2011-05-22 Chong Yidong <cyd@stupidchicken.com>
18986
18987 * vc/diff-mode.el (diff-changed): Don't use terminal specs for
18988 defface (Bug#8144).
18989
18990 2011-05-22 Stefan Monnier <monnier@iro.umontreal.ca>
18991
18992 * emacs-lisp/macroexp.el (macroexpand-all-1): Convert ' to #' for
18993 funcall as well (bug#8712). Warn when performing those conversions.
18994 * emacs-lisp/bytecomp.el (byte-compile-form): Fix error report.
18995
18996 * progmodes/grep.el (grep-mode): Fix it for good (bug#8684)!
18997
18998 2011-05-22 Glenn Morris <rgm@gnu.org>
18999
19000 * files.el (hack-local-variables-prop-line): Small simplifications.
19001 (hack-local-variables, hack-local-variables-prop-line):
19002 If MODE-ONLY, return the mode, rather than just `t'.
19003
19004 2011-05-21 Stefan Monnier <monnier@iro.umontreal.ca>
19005
19006 * progmodes/grep.el (grep-mode): Fix last change (bug#8684).
19007
19008 2011-05-21 Glenn Morris <rgm@gnu.org>
19009
19010 * files.el (hack-local-variables-prop-line, hack-local-variables):
19011 If only interested in the mode, don't bother doing the other stuff.
19012
19013 * image-mode.el (image-after-revert-hook):
19014 Redraw all frames on which the image is visible. (Bug#8567)
19015
19016 * dired-aux.el (dired-touch-initial): Just use current-time. (Bug#6887)
19017
19018 * wid-edit.el (widget-checklist-match-inline):
19019 Fix 2011-04-19 change. (Bug#8649)
19020
19021 2011-05-20 Stefan Monnier <monnier@iro.umontreal.ca>
19022
19023 * emacs-lisp/checkdoc.el (checkdoc-sentencespace-region-engine):
19024 Also allow singlespace after single-letter capitals followed by a dot.
19025
19026 * nxml/nxml-mode.el (nxml-electric-slash): Reindent when completion is
19027 enabled. Suggested by James Ahlborn <jahlborn@gmail.com> (bug#8704).
19028
19029 2011-05-20 Nix <nix@esperi.org.uk>
19030
19031 * files.el (basic-save-buffer-2):
19032 Fix handling of break-hardlink-on-save with non-existent files.
19033
19034 2011-05-19 Deniz Dogan <deniz@dogan.se>
19035
19036 * net/rcirc.el (rcirc-mode): Initialize rcirc-urls to nil.
19037 (rcirc-markup-urls): Check if rcirc-url-regexp is nil.
19038
19039 2011-05-19 Glenn Morris <rgm@gnu.org>
19040
19041 * progmodes/f90.el (f90-type-def-re):
19042 Handle "type, bind(c)". (Bug#8691)
19043
19044 * emacs-lisp/autoload.el (batch-update-autoloads):
19045 Set autoload-excludes by parsing loadup.el rather than Makefiles.
19046
19047 2011-05-18 Michael Albinus <michael.albinus@gmx.de>
19048
19049 * net/tramp.el (tramp-process-actions): Set "first-password-request"
19050 property for the correct connection in case of multihops.
19051
19052 2011-05-18 Glenn Morris <rgm@gnu.org>
19053
19054 * emacs-lisp/authors.el (authors-fixed-entries): Remove fakemail.c.
19055 * mail/sendmail.el (sendmail-program): Fall back to just "sendmail".
19056
19057 Rationalize calendar handling of day and month abbrev-arrays.
19058 * calendar/calendar.el (calendar-customized-p): New function.
19059 (calendar-abbrev-construct, calendar-make-alist): Change what it does.
19060 (calendar-day-name-array, calendar-month-name-array): Doc fix.
19061 Add :set function.
19062 (calendar-abbrev-length, calendar-day-abbrev-array)
19063 (calendar-month-abbrev-array): Make defcustoms, with appropriate :set.
19064 (calendar-day-abbrev-array, calendar-month-abbrev-array):
19065 Elements may no longer be nil.
19066 (calendar-day-name, calendar-month-name):
19067 Update for changed nature of abbrev arrays.
19068 * calendar/diary-lib.el (diary-name-pattern):
19069 Update for changed nature of abbrev arrays.
19070 (diary-mark-entries-1): Update calendar-make-alist calls.
19071 (diary-font-lock-date-forms): Doc fix for changed abbrev arrays.
19072 * calendar/cal-html.el (cal-html-day-abbrev-array):
19073 Simply inherit from calendar-day-abbrev-array.
19074
19075 2011-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
19076
19077 * progmodes/grep.el (grep-mode): Disable default
19078 compilation-directory-matcher setting (bug#8684).
19079
19080 2011-05-17 Michael Albinus <michael.albinus@gmx.de>
19081
19082 * net/tramp.el (tramp-handle-insert-file-contents): Use "dd"
19083 instead of "head" and "tail". There were problems with SunOS 5.9,
19084 and it performs better.
19085
19086 2011-05-17 Glenn Morris <rgm@gnu.org>
19087
19088 * mail/mail-utils.el (mail-dont-reply-to): Silence compiler.
19089
19090 * progmodes/idlw-shell.el (idlwave-shell-complete-filename):
19091 Replace obsolete function.
19092
19093 * shell.el (pcomplete-parse-arguments-function): Declare.
19094
19095 * calendar/appt.el (appt-message-warning-time, appt-display-mode-line)
19096 (appt-display-diary, appt-display-interval, appt-prev-comp-time)
19097 (appt-check): Doc fixes.
19098 (appt-disp-window-function, appt-delete-window-function):
19099 Remove needless special case in custom :type.
19100 (appt-display-count): Default to 0, not nil.
19101 (appt-check): Reset appt-display-count to 0, not nil.
19102
19103 2011-05-17 Juanma Barranquero <lekktu@gmail.com>
19104
19105 * progmodes/python.el (python-font-lock-keywords):
19106 Add the Python 3.X keyword "nonlocal" (bug#8639).
19107
19108 2011-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
19109
19110 * emacs-lisp/eieio.el (defmethod): Fix quoting of code (bug#8677).
19111
19112 2011-05-16 Kevin Ryde <user42@zip.com.au>
19113
19114 * info-look.el (makefile-automake-mode): New setups, looking in
19115 automake manual, then makefile-mode.
19116 (makefile-mode): Remove automake manual, have it just in
19117 makefile-automake-mode since there's various things different or
19118 not relevant to plain make.
19119 (makefile-mode): Remove "other-modes" non-existent automake-mode,
19120 believe a hypothetical automake-mode would go to makefile-mode,
19121 not the other way around.
19122
19123 2011-05-15 Chong Yidong <cyd@stupidchicken.com>
19124
19125 * vc/diff-mode.el (diff-fixup-modifs): Locate correct position for
19126 hunk-end tags (Bug#8672).
19127
19128 * vc/vc-annotate.el (vc-annotate-mode-map): Bind = to
19129 vc-annotate-show-diff-revision-at-line (Bug#8671).
19130
19131 2011-05-14 Glenn Morris <rgm@gnu.org>
19132
19133 * vc/add-log.el (add-change-log-entry): Don't start adding a new entry
19134 in the middle of an existing one with multiple authors. (Bug#8645)
19135 (change-log-font-lock-keywords): Also handle multiple author lines
19136 with leading tabs. (Bug#8644)
19137
19138 * calendar/appt.el (appt-check): Rename some local variables.
19139 Some simplification/reordering.
19140
19141 * mail/feedmail.el (feedmail-confirm-outgoing-timeout)
19142 (feedmail-sendmail-f-doesnt-sell-me-out)
19143 (feedmail-queue-slug-suspect-regexp, feedmail-debug)
19144 (feedmail-debug-sit-for, feedmail-queue-express-hook)
19145 (feedmail-queue-runner-message-sender): Set :version.
19146 (bbdb-search, bbdb-records, smtp-via-smtp, smtp-server)
19147 (bbdb-dwim-net-address, vm-mail): Declare.
19148 (feedmail-binmail-gnulinuxish-template):
19149 Rename from feedmail-binmail-linuxish-template.
19150 (feedmail-buffer-to-smtp, feedmail-vm-mail-mode):
19151 Use insert-buffer-substring.
19152
19153 2011-05-14 Bill Carpenter <bill@carpenter.org>
19154
19155 * mail/feedmail.el (feedmail-patch-level): Increase.
19156 (feedmail-debug): New custom group.
19157 (feedmail-confirm-outgoing-timeout)
19158 (feedmail-sendmail-f-doesnt-sell-me-out)
19159 (feedmail-queue-slug-suspect-regexp, feedmail-debug)
19160 (feedmail-debug-sit-for, feedmail-queue-express-hook): New options.
19161 (feedmail-sender-line, feedmail-from-line)
19162 (feedmail-fiddle-headers-upwardly, feedmail-enable-spray)
19163 (feedmail-spray-this-address)
19164 (feedmail-spray-address-fiddle-plex-list)
19165 (feedmail-queue-use-send-time-for-date)
19166 (feedmail-queue-use-send-time-for-message-id)
19167 (feedmail-last-chance-hook, feedmail-queue-runner-mode-setter)
19168 (feedmail-buffer-eating-function):
19169 Doc fixes.
19170 (feedmail-spray-via-bbdb, feedmail-buffer-to-smtp)
19171 (feedmail-vm-mail-mode, feedmail-message-action-scroll-up)
19172 (feedmail-message-action-scroll-down): New functions.
19173 (feedmail-queue-directory, feedmail-queue-draft-directory):
19174 Use expand-file-name.
19175 (feedmail-prompt-before-queue-standard-alist): Add scroll entries.
19176 Remove C-v help entry.
19177 (feedmail-queue-buffer-file-name): New variable.
19178 (feedmail-mail-send-hook-splitter, feedmail-buffer-to-binmail)
19179 (feedmail-buffer-to-smtpmail, feedmail-queue-express-to-draft)
19180 (feedmail-message-action-send-strong, feedmail-message-action-edit)
19181 (feedmail-message-action-draft, feedmail-message-action-draft-strong)
19182 (feedmail-message-action-queue, feedmail-message-action-queue-strong)
19183 (feedmail-message-action-toggle-spray)
19184 (feedmail-run-the-queue-no-prompts)
19185 (feedmail-run-the-queue-global-prompt, feedmail-queue-reminder)
19186 (feedmail-look-at-queue-directory, feedmail-queue-subject-slug-maker)
19187 (feedmail-create-queue-filename, feedmail-rfc822-time-zone):
19188 (feedmail-fiddle-header, feedmail-give-it-to-buffer-eater)
19189 (feedmail-envelope-deducer, feedmail-fiddle-from)
19190 (feedmail-fiddle-sender, feedmail-default-date-generator)
19191 (feedmail-fiddle-date, feedmail-fiddle-message-id)
19192 (feedmail-fiddle-spray-address)
19193 (feedmail-fiddle-list-of-spray-fiddle-plexes)
19194 (feedmail-fiddle-list-of-fiddle-plexes)
19195 (feedmail-fill-to-cc-function, feedmail-fill-this-one)
19196 (feedmail-one-last-look, feedmail-fqm-p): Add debug calls.
19197 (feedmail-queue-runner-message-sender, feedmail-binmail-template):
19198 Change default. Doc fix.
19199 (feedmail-queue-runner-cleaner-upper): Use feedmail-say-chatter.
19200 (feedmail-binmail-linuxish-template): New constant.
19201 (feedmail-buffer-to-sendmail): Doc fix. Add debug call.
19202 Respect feedmail-sendmail-f-doesnt-sell-me-out.
19203 (feedmail-send-it): Add debug call.
19204 Use feedmail-queue-buffer-file-name, and
19205 feedmail-send-it-immediately-wrapper.
19206 (feedmail-message-action-send): Add debug call.
19207 Use feedmail-send-it-immediately-wrapper.
19208 (feedmail-queue-express-to-queue): Add debug call.
19209 Run feedmail-queue-express-hook.
19210 (feedmail-message-action-help): Add debug call. Use feedmail-p-h-b-n.
19211 (feedmail-message-action-help-blat):
19212 Rename from feedmail-queue-send-edit-prompt-help-first.
19213 (feedmail-run-the-queue): Add debug call. Set buffer-file-type.
19214 Check line-endings. Handle errors better.
19215 (feedmail-queue-reminder-brief, feedmail-queue-reminder-medium):
19216 Doc fix. Add debug call.
19217 (feedmail-queue-send-edit-prompt): Doc fix. Add debug call.
19218 Use feedmail-queue-send-edit-prompt-inner.
19219 (feedmail-queue-runner-prompt, feedmail-scroll-buffer): New functions.
19220 (feedmail-queue-send-edit-prompt-inner): New function, extracted
19221 from feedmail-queue-send-edit-prompt.
19222 (feedmail-queue-send-edit-prompt-help)
19223 (feedmail-queue-send-edit-prompt-help-later): Remove functions.
19224 (feedmail-tidy-up-slug): Add debug call.
19225 Respect feedmail-queue-slug-suspect-regexp.
19226 (feedmail-queue-subject-slug-maker): Use buffer-substring-no-properties.
19227 (feedmail-dump-message-to-queue): Add debug call.
19228 Expand queue-directory.
19229 (feedmail-dump-message-to-queue): Change message slightly.
19230 Use feedmail-say-chatter.
19231 (feedmail-rfc822-date): Add debug call. Bind system-time-locale.
19232 (feedmail-send-it-immediately-wrapper): New function.
19233 (feedmail-send-it-immediately): Add debug calls. Use let not let*.
19234 Insert empty string rather than newline. Handle full-frame case.
19235 Use catch/throw. Use feedmail-say-chatter.
19236 (feedmail-fiddle-from): Try mail-host-address.
19237 (feedmail-default-message-id-generator): Doc fix.
19238 Bind system-time-locale. Handle missing end.
19239 (feedmail-fiddle-x-mailer): Add debug call.
19240 Handle feedmail-x-mailer-line being nil.
19241 (feedmail-accume-n-nuke-header, feedmail-deduce-address-list):
19242 Add debug call. Use buffer-substring-no-properties.
19243 (feedmail-say-debug, feedmail-say-chatter): New functions.
19244 (feedmail-find-eoh): Give an explicit error.
19245
19246 2011-05-13 Ulf Jasper <ulf.jasper@web.de>
19247
19248 * net/newst-treeview.el (newsticker-treeview-face): Change default
19249 family from helvetica to sans.
19250 (newsticker-treeview-tool-bar-map): Move tool-bar icons to
19251 etc/images/newsticker.
19252
19253 * net/newst-reader.el (newsticker-feed-face): Change default
19254 family from helvetica to sans.
19255
19256 * net/newst-plainview.el (newsticker-new-item-face)
19257 (newsticker-old-item-face, newsticker-immortal-item-face)
19258 (newsticker-obsolete-item-face, newsticker-date-face)
19259 (newsticker-statistics-face): Change default family from
19260 helvetica to sans.
19261 (newsticker--plainview-tool-bar-map): Move tool-bar icons to
19262 etc/images/newsticker.
19263
19264 * net/newst-backend.el (newsticker--do-run-auto-mark-filter)
19265 (newsticker--process-auto-mark-filter-match): Tell user about
19266 auto-marking.
19267
19268 2011-05-13 Didier Verna <didier@xemacs.org>
19269
19270 Common Lisp indentation improvements on defmethod and lambda-lists.
19271 * emacs-lisp/cl-indent.el: Advertise the changes and remove obsolete
19272 TODO entries.
19273 (lisp-lambda-list-keyword-parameter-indentation)
19274 (lisp-lambda-list-keyword-parameter-alignment)
19275 (lisp-lambda-list-keyword-alignment): New customizable user options.
19276 (lisp-indent-defun-method): Improve docstring.
19277 (extended-loop-p): Fix comment.
19278 (lisp-indent-lambda-list-keywords-regexp): New variable.
19279 (lisp-indent-lambda-list): New function.
19280 (lisp-indent-259): Use it.
19281 (lisp-indent-defmethod): Support for more than one
19282 method qualifier and properly indent methods lambda-lists.
19283 (defgeneric): Provide a missing common-lisp-indent-function property.
19284
19285 2011-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
19286
19287 * thingatpt.el (bounds-of-thing-at-point): Return nil rather than
19288 bounds for the empty string (bug#8667).
19289
19290 2011-05-13 Glenn Morris <rgm@gnu.org>
19291
19292 * mail/feedmail.el (feedmail-buffer-to-sendmail): Require sendmail.
19293
19294 * mail/sendmail.el (sendmail-program): Try executable-find first.
19295 (sendmail-send-it): `sendmail-program' cannot be unbound.
19296
19297 * calendar/appt.el (appt-make-list): Simplify.
19298 (appt-time-msg-list): Doc fix.
19299 (appt-check): Change mode-line message at the time of the appointment.
19300
19301 2011-05-12 Andreas Schwab <schwab@linux-m68k.org>
19302
19303 * progmodes/ld-script.el (ld-script-keywords)
19304 (ld-script-builtins): Update keywords list.
19305
19306 2011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
19307
19308 * progmodes/grep.el (grep-filter): Don't trip on partial lines.
19309
19310 * shell.el (shell-completion-vars): New function.
19311 (shell-mode):
19312 * simple.el (read-shell-command): Use it.
19313 (blink-matching-open): No need for " [...]" in minibuffer-message.
19314
19315 2011-05-12 Glenn Morris <rgm@gnu.org>
19316
19317 * calendar/appt.el (appt-now-displayed): Remove pointless variable.
19318 (appt-check): Simplify.
19319
19320 2011-05-12 Eli Zaretskii <eliz@gnu.org>
19321
19322 * vc/smerge-mode.el (smerge-resolve): Use null-device rather than a
19323 literal "/dev/null".
19324
19325 2011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
19326
19327 * emacs-lisp/lisp.el (lisp-complete-symbol, lisp-completion-at-point):
19328 Fix typo.
19329
19330 2011-05-12 Ralph Schleicher <rs@ralph-schleicher.de>
19331
19332 * progmodes/which-func.el (which-function):
19333 Use add-log-current-defun instead of add-log-current-defun-function,
19334 which might not be defined (Bug#8260).
19335
19336 2011-05-12 Glenn Morris <rgm@gnu.org>
19337
19338 * emacs-lisp/bytecomp.el (byte-compile-file-form-defmumble):
19339 Let byte-compile-initial-macro-environment always take precedence.
19340
19341 2011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
19342
19343 * net/rcirc.el: Add support for SSL/TLS connections.
19344 (rcirc-server-alist): New field `encryption'.
19345 (rcirc): Check `encryption' settings.
19346 (rcirc-connect): New arg `encryption'. Use open-network-stream.
19347 Merge make-local-variable into `set'.
19348 (rcirc--connection-open-p): New function.
19349 (rcirc-send-string, rcirc-clean-up-buffer): Use it to handle case where
19350 the process is not a network process (e.g. running gnutls-cli).
19351 (set-rcirc-decode-coding-system, set-rcirc-encode-coding-system):
19352 Make rcirc-(en|de)code-coding-system local here.
19353 (rcirc-mode): Merge make-local-variable into `set'.
19354 (rcirc-parent-buffer): Make permanent buffer-local.
19355 (rcirc-multiline-minor-mode): Don't do it here.
19356 (rcirc-switch-to-server-buffer): Don't switch to a random buffer if
19357 there's no server buffer.
19358
19359 2011-05-11 Glenn Morris <rgm@gnu.org>
19360
19361 * newcomment.el (comment-kill): Prefix "unused" local.
19362
19363 * term/w32console.el (get-screen-color): Declare.
19364
19365 * emacs-lisp/bytecomp.el (byte-compile-arglist-warn):
19366 Handle symbol elements of byte-compile-initial-macro-environment.
19367
19368 2011-05-10 Leo Liu <sdl.web@gmail.com>
19369
19370 * bookmark.el (bookmark-bmenu-mode-map):
19371 Bind bookmark-bmenu-search to `/'.
19372
19373 * mail/footnote.el: Convert to utf-8 encoding.
19374 (footnote-unicode-string, footnote-unicode-regexp): New variable.
19375 (Footnote-unicode): New function.
19376 (footnote-style-alist): Add unicode style to the list.
19377 (footnote-style): Doc fix.
19378
19379 2011-05-10 Jim Meyering <meyering@redhat.com>
19380
19381 Fix doubled-word typos.
19382 * international/quail.el (quail-insert-kbd-layout): and and -> and
19383 * kermit.el: and and -> and
19384 * net/ldap.el (ldap-search-internal): to to -> to
19385 * progmodes/vhdl-mode.el (vhdl-offsets-alist): Likewise.
19386 * progmodes/js.el (js-mode): and and -> and
19387 * textmodes/artist.el (artist-move-to-xy): at at -> at
19388 (artist-draw-region-trim-line-endings): if if -> if
19389 And Safetyc -> Safety.
19390 * textmodes/reftex-dcr.el (reftex-view-crossref): at at -> at a
19391
19392 2011-05-10 Glenn Morris <rgm@gnu.org>
19393 Stefan Monnier <monnier@iro.umontreal.ca>
19394
19395 * files.el (hack-one-local-variable-eval-safep):
19396 Consider "eval: (foo-mode)" to be safe. (Bug#8613)
19397
19398 2011-05-10 Glenn Morris <rgm@gnu.org>
19399
19400 * calendar/diary-lib.el (diary-list-entries-hook)
19401 (diary-mark-entries-hook, diary-nongregorian-listing-hook)
19402 (diary-nongregorian-marking-hook, diary-list-entries)
19403 (diary-include-other-diary-files, diary-mark-entries)
19404 (diary-mark-included-diary-files): Doc fixes.
19405
19406 2011-05-09 Juanma Barranquero <lekktu@gmail.com>
19407
19408 * misc.el: Require tabulated-list.el during compilation.
19409
19410 2011-05-09 Chong Yidong <cyd@stupidchicken.com>
19411
19412 * progmodes/compile.el (compilation-start):
19413 Run compilation-filter-hook for the async case too.
19414 (compilation-filter-hook): Doc fix.
19415
19416 2011-05-09 Deniz Dogan <deniz@dogan.se>
19417
19418 * wdired.el: Remove outdated installation comment. Fix usage
19419 comment.
19420
19421 2011-05-09 Juanma Barranquero <lekktu@gmail.com>
19422
19423 * misc.el: Implement new command `list-dynamic-libraries'.
19424 (list-dynamic-libraries--loaded-only-p): New variable.
19425 (list-dynamic-libraries--refresh): New function.
19426 (list-dynamic-libraries): New command.
19427
19428 2011-05-09 Chong Yidong <cyd@stupidchicken.com>
19429
19430 * progmodes/compile.el (compilation-error-regexp-alist-alist):
19431 Fix the ant regexp to handle end-line and end-column info from jikes.
19432 Re-introduce maven regexp. Give the ruby-Test::Unit regexp a
19433 higher priority to avoid clobbering by gnu.
19434
19435 2011-05-08 Chong Yidong <cyd@stupidchicken.com>
19436
19437 * cus-face.el (custom-declare-face): Call custom-theme-recalc-face
19438 if the face has existing theme settings (Bug#8454).
19439
19440 2011-05-08 Ralph Schleicher <rs@ralph-schleicher.de>
19441
19442 * progmodes/perl-mode.el (perl-imenu-generic-expression):
19443 Only match variables declared via `my' or `our' (Bug#8261).
19444
19445 * net/browse-url.el (browse-url-of-dired-file): Allow browsing of
19446 special file names `.' and `..' (Bug#8259).
19447
19448 2011-05-08 Chong Yidong <cyd@stupidchicken.com>
19449
19450 * progmodes/grep.el (grep-mode-font-lock-keywords):
19451 Remove buffer-changing entries.
19452 (grep-filter): New function.
19453 (grep-mode): Add it to compilation-filter-hook.
19454
19455 * progmodes/compile.el (compilation-filter-hook)
19456 (compilation-filter-start): New defvars.
19457 (compilation-filter): Call compilation-filter-hook prior to
19458 updating the process mark.
19459
19460 2011-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
19461
19462 * emacs-lisp/eieio.el (defmethod): Fix typo in last change.
19463
19464 2011-05-07 Eli Zaretskii <eliz@gnu.org>
19465
19466 * mail/sendmail.el (send-mail-function): On MS-Windows, default to
19467 mailclient-send-it even if window-system is nil. (Bug#8595)
19468
19469 * term/w32console.el (terminal-init-w32console):
19470 Call get-screen-color and use its output to set the frame
19471 background-mode. (Bug#8597)
19472
19473 2011-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
19474
19475 Make bytecomp.el understand that defmethod defines funs (bug#8631).
19476 * emacs-lisp/eieio.el (eieio--defalias, eieio--defgeneric-init-form):
19477 New functions.
19478 (defgeneric, eieio--defmethod): Use them.
19479 (eieio-defgeneric): Remove.
19480 (defmethod): Call defgeneric in a way visible to the byte-compiler.
19481
19482 2011-05-07 Glenn Morris <rgm@gnu.org>
19483
19484 * calendar/timeclock.el (timeclock-log-data): Remove unused local.
19485 Use let rather than let*.
19486 (timeclock-find-discrep): Remove unused local.
19487
19488 * calendar/diary-lib.el (diary-comment-start): Doc fix.
19489
19490 * calendar/appt.el (appt-time-msg-list): Doc fix.
19491
19492 2011-05-06 Noah Friedman <friedman@splode.com>
19493
19494 * apropos.el (apropos-print-doc): Only use
19495 emacs-lisp-docstring-fill-column when it is bound to an integer,
19496 per that variable's documentation.
19497
19498 2011-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
19499
19500 * lpr.el (print-region-1): Echo lpr-program's output, so error messages
19501 and warnings are not silently discarded (e.g. use -d instead of -P).
19502
19503 2011-05-06 Glenn Morris <rgm@gnu.org>
19504
19505 * calendar/appt.el (appt-message-warning-time): Doc fix.
19506 (appt-warning-time-regexp): New option.
19507 (appt-make-list): Respect appt-message-warning-time.
19508
19509 * calendar/diary-lib.el (diary-comment-start, diary-comment-end):
19510 New options.
19511 (diary-add-to-list): Strip comments from the displayed string.
19512 (diary-mode): Set comment-start and comment-end.
19513
19514 * vc/diff-mode.el (smerge-refine-subst): Declare.
19515 (diff-refine-hunk): Don't require smerge-mode when compiling.
19516
19517 2011-05-06 Juanma Barranquero <lekktu@gmail.com>
19518
19519 * simple.el (list-processes): Return nil as the docstring says.
19520
19521 2011-05-05 Michael Albinus <michael.albinus@gmx.de>
19522
19523 * net/ange-ftp.el (ange-ftp-binary-file-name-regexp): Set default
19524 to "".
19525 (ange-ftp-write-region, ange-ftp-insert-file-contents)
19526 (ange-ftp-copy-file-internal): Use only `ange-ftp-binary-file' for
19527 determining of binary transfer. (Bug#7383)
19528
19529 2011-05-05 Michael Albinus <michael.albinus@gmx.de>
19530
19531 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
19532 Fix port computation bug. (Bug#8618)
19533
19534 2011-05-05 Glenn Morris <rgm@gnu.org>
19535
19536 * allout-widgets.el (allout-widgets-mode-inhibit): Declare before use.
19537
19538 * simple.el (shell-dynamic-complete-functions)
19539 (comint-dynamic-complete-functions): Declare.
19540
19541 * net/network-stream.el (gnutls-negotiate):
19542 * simple.el (tabulated-list-print): Fix declarations.
19543
19544 * progmodes/gud.el (syntax-symbol, syntax-point):
19545 Remove unnecessary and incorrect declarations.
19546
19547 * emacs-lisp/check-declare.el (check-declare-scan):
19548 Handle byte-compile-initial-macro-environment in bytecomp.el.
19549
19550 2011-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
19551
19552 Fix earlier half-done eieio-defmethod change (bug#8338).
19553 * emacs-lisp/eieio.el (eieio--defmethod): Rename from eieio-defmethod.
19554 Streamline and change calling convention.
19555 (defmethod): Adjust accordingly and simplify.
19556 (eieio-defclass): Fix broken calls to eieio-defmethod and redirect to
19557 new eieio--defmethod.
19558 (slot-boundp): Minor CSE simplification.
19559
19560 2011-05-05 Milan Zamazal <pdm@zamazal.org>
19561
19562 * progmodes/glasses.el (glasses-separate-capital-groups): New option.
19563 (glasses-make-readable): Use glasses-separate-capital-groups.
19564
19565 2011-05-05 Juanma Barranquero <lekktu@gmail.com>
19566
19567 * emacs-lisp/warnings.el (warning-level-aliases): Reflow docstring.
19568 (warning-series): Doc fix.
19569 (display-warning): Don't try to create the buffer if we just found it.
19570
19571 2011-05-04 Chong Yidong <cyd@stupidchicken.com>
19572
19573 * emacs-lisp/autoload.el (generated-autoload-file): Set to nil.
19574 (autoload-find-generated-file): New function.
19575 (generate-file-autoloads): Bind generated-autoload-file to
19576 buffer-file-name.
19577 (update-file-autoloads, update-directory-autoloads):
19578 Use autoload-find-generated-file. If called interactively, prompt for
19579 output file (Bug#7989).
19580 (batch-update-autoloads): Doc fix.
19581
19582 2011-05-04 Juanma Barranquero <lekktu@gmail.com>
19583
19584 * term/w32-win.el (dynamic-library-alist): Add `gnutls'.
19585
19586 2011-05-04 Glenn Morris <rgm@gnu.org>
19587
19588 * calendar/diary-lib.el (diary-fancy-date-pattern): Turn it into a
19589 function, so it follows changes in calendar-date-style.
19590 (diary-fancy-date-matcher): New function.
19591 (diary-fancy-font-lock-keywords): Use diary-fancy-date-matcher.
19592 (diary-fancy-font-lock-fontify-region-function):
19593 Use diary-fancy-date-pattern as a function.
19594
19595 * calendar/diary-lib.el (diary-fancy-date-pattern): Do not use
19596 non-numbers for `year' etc pseudo-variables. (Bug#8583)
19597
19598 2011-05-04 Teodor Zlatanov <tzz@lifelogs.com>
19599
19600 * net/gnutls.el (gnutls-negotiate): Use CL-style keyword arguments
19601 instead of positional arguments. Allow :keylist and :crlfiles
19602 arguments.
19603 (open-gnutls-stream): Call it.
19604
19605 * net/network-stream.el (network-stream-open-starttls): Adjust to
19606 call `gnutls-negotiate' with :process and :hostname arguments.
19607
19608 2011-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
19609
19610 * minibuffer.el (completion--message): New function.
19611 (completion--do-completion, minibuffer-complete)
19612 (minibuffer-force-complete, minibuffer-complete-word): Use it.
19613 (completion--do-completion): Don't ignore completion-auto-help when in
19614 icomplete-mode.
19615
19616 * whitespace.el (whitespace-trailing-regexp): Don't rely on the
19617 internal encoding (e.g. tibetan zero is not whitespace).
19618 (global-whitespace-mode): Prefer save-current-buffer.
19619 (whitespace-trailing-regexp): Remove useless save-match-data.
19620 (whitespace-empty-at-bob-regexp): Minor simplification.
19621
19622 2011-05-03 Chong Yidong <cyd@stupidchicken.com>
19623
19624 * emacs-lisp/autoload.el (generated-autoload-file): Doc fix (Bug#7989).
19625
19626 2011-05-03 Agustín Martín Domingo <agustin.martin@hispalinux.es>
19627
19628 * textmodes/ispell.el (ispell-add-per-file-word-list):
19629 Use `concat' to create string for insertion.
19630
19631 2011-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
19632
19633 * textmodes/bibtex.el (bibtex-fill-field-bounds, bibtex-fill-entry):
19634 Avoid open-line which runs post-self-insert-hook.
19635 (bibtex-fill-entry): Remove unused `end' var.
19636
19637 2011-05-03 Dirk Ullrich <dirk.ullrich@googlemail.com> (tiny change)
19638
19639 * textmodes/ispell.el (ispell-add-per-file-word-list):
19640 Protect against `nil' value of `comment-start' (Bug#8579).
19641
19642 2011-05-03 Leo Liu <sdl.web@gmail.com>
19643
19644 * isearch.el (isearch-yank-pop): New command.
19645 (isearch-mode-map): Bind it to `M-y'.
19646 (isearch-forward): Mention it.
19647
19648 2011-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
19649
19650 * simple.el (minibuffer-complete-shell-command): Remove.
19651 (minibuffer-local-shell-command-map): Use completion-at-point.
19652 (read-shell-command): Setup completion vars here instead.
19653 (read-expression-map): Bind TAB to symbol completion.
19654
19655 * textmodes/ispell.el (lookup-words): Use with-temp-buffer; signal
19656 error directly rather via storing it into `results'.
19657
19658 2011-05-02 Leo Liu <sdl.web@gmail.com>
19659
19660 * vc/diff.el: Fix description.
19661
19662 2011-05-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
19663
19664 * server.el (server-eval-at): New function.
19665
19666 2011-05-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
19667
19668 * net/network-stream.el (open-network-stream): Take a :nowait
19669 parameter and pass it on to `make-network-process'.
19670 (network-stream-open-plain): Ditto.
19671
19672 2011-04-30 Andreas Schwab <schwab@linux-m68k.org>
19673
19674 * faces.el (face-spec-set-match-display): Don't match toolkit
19675 options on terminal frames.
19676
19677 2011-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
19678
19679 * progmodes/pascal.el: Use lexical binding.
19680 (pascal-mode-map): Remove author preferences.
19681
19682 * pcomplete.el (pcomplete-std-complete): Don't abuse
19683 completion-at-point.
19684
19685 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
19686
19687 * calc/calccomp.el (math-comp-to-string-flat-term): Simplify by
19688 removing code that has been dead since 1991 or so.
19689
19690 * startup.el (command-line): When warning about "_emacs", use a
19691 delayed warning to allow the user to filter it out.
19692
19693 2011-04-28 Deniz Dogan <deniz@dogan.se>
19694
19695 * net/rcirc.el (rcirc-handler-353): Fix bug for channels which the
19696 user has not joined.
19697
19698 2011-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
19699
19700 * pcomplete.el (pcomplete-completions-at-point): Return nil if there
19701 aren't any completions at point.
19702
19703 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
19704
19705 * subr.el (display-delayed-warnings): New function.
19706 (delayed-warnings-hook): New variable.
19707
19708 2011-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
19709
19710 * minibuffer.el (completion-at-point, completion-help-at-point):
19711 Don't presume that a given completion-at-point-function will always
19712 use the same calling convention.
19713
19714 * pcomplete.el (pcomplete-completions-at-point):
19715 Obey pcomplete-ignore-case. Don't call pcomplete-norm-func unless
19716 pcomplete-seen is non-nil.
19717 (pcomplete-comint-setup): Also recognize the new comint/shell
19718 completion functions.
19719 (pcomplete-do-complete): Don't call pcomplete-norm-func unless
19720 pcomplete-seen is non-nil.
19721
19722 2011-04-27 Niels Giesen <niels.giesen@gmail.com>
19723
19724 * calendar/icalendar.el (diary-lib): Add require statement.
19725 (icalendar--create-uid): Read out a uid from a text-property on
19726 the first character in the entry. This allows for code to add its
19727 own uid to the entry.
19728 (icalendar--convert-float-to-ical): Add export of
19729 `diary-float'-entries save for those with the optional DAY
19730 argument.
19731
19732 2011-04-27 Daniel Colascione <dan.colascione@gmail.com>
19733
19734 * subr.el (shell-quote-argument): Use alternate escaping strategy
19735 when we spot a variable reference in a string.
19736
19737 2011-04-26 Daniel Colascione <dan.colascione@gmail.com>
19738
19739 * cus-start.el (all): Define customization for debug-on-event.
19740
19741 2011-04-26 Daniel Colascione <dan.colascione@gmail.com>
19742
19743 * subr.el (shell-quote-argument): Escape correctly under Windows.
19744
19745 2011-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
19746
19747 * emulation/cua-base.el (cua-selection-mode): Make it toggle again.
19748
19749 2011-04-25 Michael Albinus <michael.albinus@gmx.de>
19750
19751 * net/tramp.el (tramp-process-actions): Add POS argument.
19752 Delete region between POS and (pos).
19753
19754 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
19755 Use `nil' position in `tramp-process-actions' call.
19756 (tramp-maybe-open-connection): Call `tramp-process-actions' with pos.
19757
19758 * net/tramp-smb.el (tramp-smb-maybe-open-connection): Use `nil'
19759 position in `tramp-process-actions' call.
19760
19761 * net/trampver.el: Update release number.
19762
19763 2011-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
19764
19765 * custom.el (defcustom): Obey lexical-binding.
19766
19767 Fix octave-inf completion problems reported by Alexander Klimov.
19768 * progmodes/octave-inf.el (inferior-octave-mode-syntax-table):
19769 Inherit from octave-mode-syntax-table.
19770 (inferior-octave-mode): Set info-lookup-mode.
19771 (inferior-octave-completion-at-point): New function.
19772 (inferior-octave-complete): Use it and completion-in-region.
19773 (inferior-octave-dynamic-complete-functions): Use it as well, and use
19774 comint-filename-completion.
19775 * progmodes/octave-mod.el (octave-mode-syntax-table): Use _ syntax for
19776 symbol elements which shouldn't be word elements.
19777 (octave-font-lock-keywords, octave-beginning-of-defun)
19778 (octave-function-header-regexp): Adjust regexps accordingly.
19779 (octave-mode-map): Also use info-lookup-symbol for C-c C-h.
19780
19781 2011-04-25 Juanma Barranquero <lekktu@gmail.com>
19782
19783 * net/gnutls.el (gnutls-errorp): Declare before first use.
19784
19785 2011-04-24 Teodor Zlatanov <tzz@lifelogs.com>
19786
19787 * net/gnutls.el (gnutls-negotiate): Add hostname, verify-flags,
19788 verify-error, and verify-hostname-error parameters. Check whether
19789 default trustfile exists before going to use it. Add missing
19790 argument to gnutls-message-maybe call. Return value.
19791 Reported by Claudio Bley <claudio.bley@gmail.com>.
19792 (open-gnutls-stream): Add usage example.
19793
19794 * net/network-stream.el (network-stream-open-starttls): Give host
19795 parameter to `gnutls-negotiate'.
19796 (gnutls-negotiate): Adjust `gnutls-negotiate' declaration.
19797 * subr.el (shell-quote-argument): Escape correctly under Windows.
19798
19799 2011-04-24 Daniel Colascione <dan.colascione@gmail.com>
19800
19801 * progmodes/cc-engine.el (c-forward-decl-or-cast-1):
19802 Use correct match group (bug#8438).
19803
19804 2011-04-24 Chong Yidong <cyd@stupidchicken.com>
19805
19806 * emacs-lisp/package.el (package-built-in-p): Fix typo.
19807 (package-menu--generate): New arg specifying packages to show.
19808 (package-menu-refresh, package-menu-execute, list-packages):
19809 Callers changed.
19810 (package-show-package-list): New function, replacing deleted
19811 package--list-packages (renamed because it is non-internal).
19812
19813 * finder.el (finder-list-matches): Use package-show-package-list
19814 instead of deleted package--list-packages.
19815
19816 * vc/vc-annotate.el (vc-annotate-goto-line): New command.
19817 Based on a previous implementation by Juanma Barranquero (Bug#8366).
19818 (vc-annotate-mode-map): Bind it to RET.
19819
19820 2011-04-24 Uday S Reddy <u.s.reddy@cs.bham.ac.uk> (tiny change)
19821
19822 * progmodes/etags.el (next-file): Don't use set-buffer to change
19823 buffers (Bug#8478).
19824
19825 2011-04-24 Chong Yidong <cyd@stupidchicken.com>
19826
19827 * files.el (auto-mode-alist): Use js-mode for .json (Bug#8529).
19828
19829 * apropos.el (apropos-label-face): Avoid variable-pitch face.
19830 (apropos-accumulator): Doc fix.
19831 (apropos-function, apropos-macro, apropos-command)
19832 (apropos-variable, apropos-face, apropos-group, apropos-widget)
19833 (apropos-plist): Add face property.
19834 (apropos-symbols-internal): Fix indentation.
19835 (apropos-print): Simplify help, and recognize apropos-multi-type.
19836 (apropos-print-doc): Use button-type-get to extract the button's
19837 face property. Fill docstring (Bug#8352).
19838
19839 2011-04-23 Juanma Barranquero <lekktu@gmail.com>
19840
19841 * buff-menu.el (Buffer-menu--buffers): Fix typo in docstring (bug#8535).
19842
19843 * play/mpuz.el (mpuz-silent): Doc fix.
19844 (mpuz-mode-map): Use mapc.
19845 (mpuz-put-number-on-board): Rename parameter L to COLUMNS.
19846 (mpuz-letter-to-digit, mpuz-check-all-solved, mpuz-create-buffer):
19847 Fix typos in docstrings.
19848
19849 * play/doctor.el (doc$, doctor-$, doctor-read-print, doctor-read-token)
19850 (doctor-nounp, doctor-pronounp): Fix typos in docstrings.
19851
19852 * mouse-drag.el (mouse-drag-throw): Fix typo in docstring.
19853
19854 2011-04-23 Chong Yidong <cyd@stupidchicken.com>
19855
19856 * minibuffer.el (completion--do-completion): Avoid the "Next char
19857 not unique" prompt if icomplete-mode is enabled (Bug#5849).
19858
19859 * mouse.el (mouse-drag-mode-line-1): Make sure that if we push
19860 mouse-2 into unread-command-events, it is interpreted correctly.
19861
19862 * image-mode.el (image-type, image-mode-map, image-minor-mode-map)
19863 (image-toggle-display): Doc fix.
19864
19865 2011-04-23 Stephen Berman <stephen.berman@gmx.net>
19866
19867 * textmodes/page.el (what-page): Use line-number-at-pos to
19868 calculate line number (Bug#6825).
19869
19870 2011-04-22 Juanma Barranquero <lekktu@gmail.com>
19871
19872 * eshell/esh-mode.el (find-tag-interactive): Declare function.
19873 (eshell-find-tag): Remove `with-no-warnings', unneeded now.
19874 Pass argument NO-DEFAULT to `find-tag-interactive'.
19875
19876 2011-04-22 Juanma Barranquero <lekktu@gmail.com>
19877
19878 Lexical-binding cleanup.
19879
19880 * progmodes/ada-mode.el (ada-after-change-function, ada-loose-case-word)
19881 (ada-no-auto-case, ada-capitalize-word, ada-untab, ada-narrow-to-defun):
19882 * progmodes/ada-prj.el (ada-prj-initialize-values)
19883 (ada-prj-display-page, ada-prj-field-modified, ada-prj-display-help)
19884 (ada-prj-show-value):
19885 * progmodes/ada-xref.el (ada-find-any-references, ada-gdb-application):
19886 * progmodes/antlr-mode.el (antlr-with-displaying-help-buffer)
19887 (antlr-invalidate-context-cache, antlr-options-menu-filter)
19888 (antlr-language-option-extra, antlr-c++-mode-extra, antlr-run-tool):
19889 * progmodes/bug-reference.el (bug-reference-push-button):
19890 * progmodes/fortran.el (fortran-line-length):
19891 * progmodes/glasses.el (glasses-change):
19892 * progmodes/octave-mod.el (octave-fill-paragraph):
19893 * progmodes/python.el (python-mode, python-pdbtrack-track-stack-file)
19894 (python-pdbtrack-grub-for-buffer, python-sentinel):
19895 * progmodes/sql.el (sql-save-connection):
19896 * progmodes/tcl.el (tcl-indent-command, tcl-popup-menu):
19897 * progmodes/xscheme.el (xscheme-enter-debugger-mode):
19898 Mark unused parameters.
19899
19900 * progmodes/compile.el (compilation--flush-directory-cache)
19901 (compilation--flush-parse, compile-internal): Mark unused parameters.
19902 (compilation-buffer-name): Rename parameter MODE-NAME to NAME-OF-MODE.
19903 (compilation-next-error-function): Remove unused variable `timestamp'.
19904
19905 * progmodes/cpp.el (cpp-parse-close): Remove unused variable `begin'.
19906 (cpp-signal-read-only, cpp-grow-overlay): Mark unused parameters.
19907
19908 * progmodes/dcl-mode.el (dcl-end-of-command):
19909 Remove unused variable `start'.
19910 (dcl-calc-command-indent-multiple, dcl-calc-cont-indent-relative)
19911 (dcl-option-value-basic, dcl-option-value-offset)
19912 (dcl-option-value-margin-offset, dcl-option-value-comment-line):
19913 Mark unused parameters.
19914 (dcl-save-local-variable): Remove unused variable `val'.
19915 (mode): Declare.
19916
19917 * progmodes/delphi.el (delphi-save-state, delphi-after-change):
19918 Mark unused parameters.
19919 (delphi-ignore-changes): Move before first use.
19920 (delphi-charset-token-at): Remove unused variable `start'.
19921 (delphi-else-start): Remove unused variable `if-count'.
19922 (delphi-comment-block-start, delphi-comment-block-end):
19923 Remove unused variable `kind'.
19924 (delphi-indent-line): Remove unused variable `new-point'.
19925
19926 * progmodes/ebrowse.el (ebrowse-files-list)
19927 (ebrowse-list-of-matching-members, ebrowse-tags-list-members-in-file):
19928 Mark unused parameters. Don't quote `lambda'.
19929 (ebrowse-sort-tree-list, ebrowse-same-tree-member-buffer-list):
19930 Don't quote `lambda'.
19931 (ebrowse-revert-tree-buffer-from-file, ebrowse-tags-choose-class)
19932 (ebrowse-goto-visible-member/all-member-lists): Mark unused parameters.
19933 (ebrowse-create-tree-buffer): Rename parameter OBARRAY to CLASSES.
19934 (ebrowse-toggle-mark-at-point): Remove unused variable `pnt'.
19935 Use `ignore-errors'.
19936 (ebrowse-frozen-tree-buffer-name, ebrowse-find-source-file)
19937 (ebrowse-view/find-file-and-search-pattern)
19938 (ebrowse-view/find-member-declaration/definition):
19939 Rename parameter TAGS-FILE-NAME to TAGS-FILE.
19940 (ebrowse-find-class-declaration, ebrowse-view-class-declaration):
19941 Rename parameter PREFIX-ARG to PREFIX.
19942 (ebrowse-tags-read-name): Remove unused variables `start' and
19943 `member-info'.
19944 (ebrowse-display-member-buffer): Rename variable `tags-file-name'
19945 to `tags-file'.
19946
19947 * progmodes/etags.el (local-find-tag-hook): Declare.
19948 (tag-partial-file-name-match-p, tag-any-match-p, list-tags):
19949 Mark unused parameters.
19950
19951 * progmodes/executable.el (compilation-error-regexp-alist): Declare.
19952 (executable-interpret): Mark unused parameter.
19953
19954 * progmodes/flymake.el (flymake-process-sentinel)
19955 (flymake-after-change-function)
19956 (flymake-create-temp-with-folder-structure)
19957 (flymake-get-include-dirs-dot): Mark unused parameters.
19958 (flymake-safe-delete-directory): Remove unused variable `err'.
19959
19960 * progmodes/gdb-mi.el (speedbar-change-initial-expansion-list)
19961 (speedbar-timer-fn, speedbar-line-text)
19962 (speedbar-change-expand-button-char, speedbar-delete-subblock)
19963 (speedbar-center-buffer-smartly): Declare functions.
19964 (gdb-find-watch-expression): Remove unused variable `array'.
19965 (gdb-edit-value, gdb-gdb, gdb-ignored-notification, gdb-thread-created)
19966 (gdb-starting): Mark unused parameters.
19967 (gud-gdbmi-marker-filter): Remove unused variable `output-record'.
19968 (gdb-table-string): Remove unused variable `res'.
19969 (gdb-place-breakpoints): Remove unused variables `flag' and `bptno'.
19970 (gdb-disassembly-handler-custom): Remove unused variable `pos'.
19971 (gdb-display-buffer): Remove unused variable `cur-size'.
19972
19973 * progmodes/gud.el (gud-def): Use `defalias' instead of `defun' to
19974 allow lexical-binding compilation.
19975 (gud-expansion-speedbar-buttons, gud-gdb-goto-stackframe)
19976 (gud-dbx-massage-args, gud-xdb-massage-args, gud-perldb-massage-args)
19977 (gud-jdb-massage-args, gud-jdb-find-source, gud-find-class):
19978 Mark unused parameters.
19979 (gud-gdb-marker-filter): Remove unused variable `match'.
19980 (gud-find-class): Bind `syntax-symbol' and `syntax-point' to suitable
19981 lambda expressions and funcall them, instead of using `fset'.
19982
19983 * progmodes/hideif.el (hif-parse-if-exp): Rename parameter
19984 HIF-TOKEN-LIST to TOKEN-LIST and let-bind `hif-token-list'.
19985
19986 * progmodes/hideshow.el (hs-hide-block-at-point): Remove unused
19987 variable `header-beg'; use `let'.
19988
19989 * progmodes/icon.el (indent-icon-exp): Remove unused variables
19990 `restart', `last-sexp' and `at-do'.
19991
19992 * progmodes/js.el (js--debug): Mark unused parameter.
19993 (js--parse-state-at-point): Remove unused variable `bound'; use `let'.
19994 (js--splice-into-items): Remove unused variable `item'.
19995 (js--read-symbol, js--read-tab): Pass 1/-1 to `ido-mode', not t/nil.
19996
19997 * progmodes/make-mode.el (makefile-make-font-lock-keywords):
19998 Rename parameter FONT-LOCK-KEYWORDS to FL-KEYWORDS.
19999 (makefile-complete): Remove unused variable `try'.
20000 (makefile-fill-paragraph, makefile-match-function-end):
20001 Mark unused parameters.
20002
20003 * progmodes/octave-inf.el (inferior-octave-complete):
20004 Remove unused variable `proc'.
20005 (inferior-octave-output-digest): Mark unused parameter.
20006
20007 * progmodes/perl-mode.el (perl-calculate-indent):
20008 Remove unused variable `err'.
20009
20010 * progmodes/prolog.el (prolog-mode-keybindings-inferior)
20011 (prolog-indent-line): Mark unused parameters.
20012 (prolog-indent-line): Remove unused variable `beg'.
20013
20014 * progmodes/ps-mode.el (reporter-prompt-for-summary-p)
20015 (reporter-dont-compact-list): Declare.
20016
20017 * progmodes/sh-script.el (sh-font-lock-quoted-subshell):
20018 Remove unused variable `char'.
20019 (sh-debug): Mark unused parameter.
20020 (sh-get-indent-info): Remove unused variable `start'.
20021 (sh-calculate-indent): Remove unused variable `var'.
20022
20023 * progmodes/simula.el (simula-popup-menu): Mark unused parameter.
20024 (simula-electric-keyword): Remove unused variable `null'.
20025 (simula-search-backward, simula-search-forward): Remove unused
20026 variables `begin' and `end'.
20027
20028 * progmodes/vera-mode.el (vera-guess-basic-syntax):
20029 Remove unused variable `pos'.
20030 (vera-electric-tab, vera-comment-uncomment-region):
20031 Mark unused parameters.
20032 (vera-electric-tab): Rename parameter PREFIX-ARG to PREFIX.
20033
20034 2011-04-22 Chong Yidong <cyd@stupidchicken.com>
20035
20036 * emacs-lisp/package.el (package--builtins, package-alist)
20037 (package-load-descriptor, package-built-in-p, package-activate)
20038 (define-package, package-installed-p)
20039 (package-compute-transaction, package-buffer-info)
20040 (package--push): Doc fix. Distinguish more clearly between
20041 version strings and version lists.
20042
20043 2011-04-21 Juanma Barranquero <lekktu@gmail.com>
20044
20045 Lexical-binding cleanup.
20046
20047 * play/5x5.el (5x5-make-random-solution, 5x5-make-mutate-current)
20048 (5x5-make-mutate-best):
20049 * play/fortune.el (fortune-in-buffer):
20050 * play/gomoku.el (gomoku-init-display):
20051 * play/solitaire.el (solitaire, solitaire-do-check):
20052 * play/tetris.el (tetris-default-update-speed-function):
20053 Mark unused parameters.
20054
20055 * play/bubbles.el (bubbles-mode): Set `show-trailing-whitespace'.
20056 (bubbles--shift): Remove unused variable `char-org'.
20057 (bubbles--set-faces): Remove unused variable `fg-col'. Simplify.
20058 (bubbles--show-images): Remove unused variable `char'.
20059
20060 * play/decipher.el (decipher-keypress, decipher-alphabet-keypress)
20061 (decipher-get-undo, decipher-set-map, decipher-complete-alphabet)
20062 (decipher-resync, decipher-loop-with-breaks, decipher--analyze)
20063 (decipher-analyze-buffer): Use ?\s.
20064 (decipher-make-checkpoint): Remove unused variable `mapping'.
20065
20066 * play/doctor.el (doctor-doc): Rename parameter DOCTOR-SENT to SENT.
20067
20068 * play/gamegrid.el (gamegrid-add-score-with-update-game-score):
20069 Remove unused variable `result'; use `let'.
20070
20071 * play/gametree.el (gametree-current-layout, gametree-apply-layout):
20072 Rename parameter TOP-LEVEL to FROM-TOP-LEVEL; use `ignore-errors'.
20073 (gametree-children-shown-p, gametree-compute-reduced-score):
20074 Use `ignore-errors'.
20075
20076 * play/handwrite.el (ps-lpr-switches): Declare.
20077 (handwrite): Remove unused variables `pmin' and `lastp'.
20078
20079 * play/hanoi.el (hanoi-move-ring): Remove unused variable `total-steps'.
20080
20081 * play/landmark.el (landmark-init-display)
20082 (landmark-update-naught-weights): Mark unused parameters.
20083 (landmark-y): Remove unused variable `noise'. Simplify.
20084 (landmark-human-plays): Remove unused variable `score'.
20085
20086 * play/mpuz.el (mpuz-try-letter): Remove unused variable `message'.
20087 (mpuz-try-proposal): Remove unused variable `game'.
20088
20089 * play/zone.el (life-patterns): Declare.
20090
20091 2011-04-20 Juanma Barranquero <lekktu@gmail.com>
20092
20093 * vc/vc.el (ediff-vc-internal): Declare function.
20094
20095 2011-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
20096
20097 * shell.el: Use lexical-binding and std completion UI.
20098 (shell-filter-ctrl-a-ctrl-b): Work as a preoutput filter.
20099 (shell-mode): Put shell-filter-ctrl-a-ctrl-b on
20100 comint-preoutput-filter-functions rather than on
20101 comint-output-filter-functions.
20102 (shell-command-completion, shell--command-completion-data)
20103 (shell-filename-completion, shell-environment-variable-completion)
20104 (shell-c-a-p-replace-by-expanded-directory): New functions.
20105 (shell-dynamic-complete-functions, shell-dynamic-complete-command)
20106 (shell-dynamic-complete-filename, shell-replace-by-expanded-directory)
20107 (shell-dynamic-complete-environment-variable): Use them.
20108 (shell-dynamic-complete-as-environment-variable)
20109 (shell-dynamic-complete-as-command): Remove.
20110 (shell-match-partial-variable): Match past point.
20111 * comint.el: Clean up use of completion-at-point-functions.
20112 (comint-completion-at-point): New function.
20113 (comint-mode): Use it completion-at-point-functions.
20114 (comint-dynamic-complete): Make it obsolete.
20115 (comint-replace-by-expanded-history-before-point): Add dry-run arg.
20116 (comint-c-a-p-replace-by-expanded-history): New function.
20117 (comint-dynamic-complete-functions)
20118 (comint-replace-by-expanded-history): Use it.
20119 * minibuffer.el (completion-table-with-terminator): Allow dynamic
20120 termination strings. Try harder to avoid second try-completion.
20121 (completion-in-region-mode-map): Disable bindings that don't work yet.
20122
20123 * comint.el: Use lexical-binding. Require CL.
20124 (comint-dynamic-complete-functions): Use comint-filename-completion.
20125 (comint-completion-addsuffix): Tweak custom type.
20126 (comint-filename-completion, comint--common-suffix)
20127 (comint--common-quoted-suffix, comint--table-subvert)
20128 (comint--complete-file-name-data): New functions.
20129 (comint-dynamic-complete-as-filename, comint-dynamic-complete-filename)
20130 (comint-dynamic-list-filename-completions): Use them.
20131 (comint-dynamic-simple-complete): Make obsolete.
20132
20133 * minibuffer.el (completion-in-region-mode):
20134 Keep completion-in-region-mode--predicate global.
20135 (completion-in-region--postch):
20136 Assume completion-in-region-mode--predicate is not null.
20137
20138 * progmodes/flymake.el (flymake-start-syntax-check-process):
20139 Obey `dir'. Simplify.
20140
20141 * vc/vc.el (vc-version-ediff): Call ediff-vc-internal directly, since
20142 we're in VC after all.
20143
20144 2011-04-20 Christoph Scholtes <cschol2112@googlemail.com>
20145
20146 * vc/vc.el (vc-diff-build-argument-list-internal)
20147 (vc-version-ediff, vc-ediff): New commands.
20148 (vc-version-diff): Use vc-diff-build-argument-list-internal.
20149
20150 2011-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
20151
20152 * emacs-lisp/byte-opt.el (byte-decompile-bytecode-1): Remove dead code,
20153 add sanity check.
20154
20155 * obsolete/erc-hecomplete.el: Make obsolete.
20156 * obsolete/: Standardize obsolescence info in the header.
20157
20158 2011-04-20 Glenn Morris <rgm@gnu.org>
20159
20160 * calendar/solar.el (solar-horizontal-coordinates):
20161 Use the longitude argument rather than `calendar-longitude'.
20162 (solar-date-next-longitude): Remove unused locals.
20163
20164 2011-04-20 Vinicius Jose Latorre <viniciusjl@ig.com.br>
20165
20166 * whitespace.el: New version 13.2.1.
20167
20168 2011-04-20 felix <EmacsWiki> (tiny change)
20169
20170 * whitespace.el (global-whitespace-mode): Keep highlight when
20171 switching between major modes on a file.
20172
20173 2011-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
20174
20175 * progmodes/octave-mod.el (octave-in-comment-p, octave-in-string-p)
20176 (octave-not-in-string-or-comment-p): Use syntax-ppss so it works with
20177 multi-line comments as well.
20178
20179 2011-04-19 Juanma Barranquero <lekktu@gmail.com>
20180
20181 Lexical-binding cleanup.
20182
20183 * arc-mode.el (archive-mode-revert):
20184 * cmuscheme.el (scheme-interactively-start-process):
20185 * custom.el (custom-initialize-delay):
20186 * dnd.el (dnd-open-local-file, dnd-open-remote-url):
20187 * dos-w32.el (direct-print-region-helper, direct-print-region-function):
20188 * emacs-lock.el (emacs-lock-clear-sentinel):
20189 * ezimage.el (defezimage):
20190 * follow.el (follow-avoid-tail-recenter):
20191 * fringe.el (set-fringe-mode-1):
20192 * generic-x.el (bat-generic-mode-compile):
20193 * help-mode.el (help-info-variable, help-do-xref)
20194 (help-mode-revert-buffer):
20195 * help.el (view-emacs-todo):
20196 * iswitchb.el (iswitchb-completion-help):
20197 * jka-compr.el (jka-compr-make-temp-name, jka-compr-load):
20198 * kmacro.el (kmacro-cycle-ring-next, kmacro-cycle-ring-previous)
20199 (kmacro-delete-ring-head, kmacro-bind-to-key, kmacro-view-macro):
20200 * locate.el (locate-update):
20201 * longlines.el (longlines-encode-region)
20202 (longlines-after-change-function):
20203 * outline.el (outline-isearch-open-invisible):
20204 * ps-def.el (declare-function, charset-dimension, char-width)
20205 (encode-char):
20206 * ps-mule.el (ps-mule-plot-string):
20207 * recentf.el (recentf-make-menu-items, recentf-cancel-dialog)
20208 (recentf-edit-list-select, recentf-edit-list-validate)
20209 (recentf-open-files-action):
20210 * rect.el (delete-whitespace-rectangle-line)
20211 (rectangle-number-line-callback):
20212 * register.el (window-configuration-to-register)
20213 (frame-configuration-to-register):
20214 * scroll-bar.el (scroll-bar-mode, toggle-horizontal-scroll-bar):
20215 * select.el (xselect-convert-to-string, xselect-convert-to-length)
20216 (xselect-convert-to-targets, xselect-convert-to-delete)
20217 (xselect-convert-to-filename, xselect-convert-to-charpos)
20218 (xselect-convert-to-lineno, xselect-convert-to-colno)
20219 (xselect-convert-to-os, xselect-convert-to-host)
20220 (xselect-convert-to-user, xselect-convert-to-class)
20221 (xselect-convert-to-name, xselect-convert-to-integer)
20222 (xselect-convert-to-atom, xselect-convert-to-identity):
20223 * subr.el (declare, ignore, process-kill-without-query)
20224 (text-clone-maintain):
20225 * terminal.el (te-get-char, te-tic-sentinel):
20226 * tool-bar.el (tool-bar-make-keymap):
20227 * tooltip.el (tooltip-timeout, tooltip-hide, tooltip-help-tips):
20228 * type-break.el (type-break-mode, type-break-noninteractive-query):
20229 * view.el (View-back-to-mark):
20230 * wid-browse.el (widget-browse-action, widget-browse-widget)
20231 (widget-browse-widgets, widget-browse-sexp):
20232 * widget.el (define-widget-keywords):
20233 * xt-mouse.el (xterm-mouse-translate, turn-off-xterm-mouse-tracking):
20234 Mark unused parameters.
20235
20236 * align.el (align-adjust-col-for-rule): Mark unused parameter.
20237 (align-areas): Remove unused variable `look'.
20238 (align-region): Remove unused variables `real-end' and `pos-list'.
20239
20240 * apropos.el (apropos-score-doc): Remove unused variable `i'.
20241
20242 * bindings.el (mode-line-modified, mode-line-remote):
20243 Mark unused parameters.
20244 (mode-line-mule-info): Mark unused parameter; don't quote `lambda'.
20245
20246 * buff-menu.el (Buffer-menu-revert-function): Mark unused parameters.
20247 (Buffer-menu-mode): Mark unused parameter; don't quote `lambda'.
20248
20249 * comint.el (comint-history-isearch-pop-state)
20250 (comint-postoutput-scroll-to-bottom, comint-truncate-buffer)
20251 (comint-strip-ctrl-m, comint-read-noecho): Mark unused parameters.
20252 (comint-substitute-in-file-name): Doc fix.
20253
20254 * completion.el (cmpl-statistics-block): Mark unused parameter.
20255 (add-completions-from-tags-table, add-completions-from-lisp-buffer)
20256 (save-completions-to-file, load-completions-from-file):
20257 Remove unused local variable `e'.
20258
20259 * composite.el (compose-chars): Remove unused variable `len'.
20260 (lgstring-insert-glyph): Remove unused variable `g'.
20261 (compose-glyph-string): Remove unused variables `ascent',
20262 `descent', `lbearing' and `rbearing'.
20263 (compose-glyph-string-relative): Remove unused variables
20264 `lbearing', `rbearing' and `wadjust'.
20265 (compose-gstring-for-graphic): Remove unused variables `header',
20266 `wadjust', `xoff' and `yoff'. Use `let', not `let*'.
20267 (compose-gstring-for-terminal): Remove unused variables `header'
20268 and `nchars'. Use `let', not `let*'.
20269
20270 * cus-edit.el (Custom-set, Custom-save, custom-reset)
20271 (Custom-reset-current, Custom-reset-saved, Custom-reset-standard)
20272 (Custom-buffer-done, custom-buffer-create-internal)
20273 (custom-browse-visibility-action, custom-browse-group-tag-action)
20274 (custom-browse-variable-tag-action, custom-browse-face-tag-action)
20275 (widget-magic-mouse-down-action, custom-toggle-parent)
20276 (custom-add-parent-links, custom-toggle-hide-variable)
20277 (custom-face-edit-value-visibility-action, custom-face-edit-fix-value)
20278 (custom-toggle-hide-face, face, hook, custom-group-link-action)
20279 (custom-face-menu-create, custom-variable-menu-create, get)
20280 (custom-group-menu-create, Custom-no-edit): Mark unused parameters.
20281 (custom-reset-standard-save-and-update): Remove unused variable `value'.
20282 (customize-apropos): Remove unused variable `tests'.
20283 (custom-group-value-create): Remove unused variable `hidden-p'.
20284 (sort-fold-case): Declare.
20285
20286 * cus-theme.el (custom-reset-standard-faces-list)
20287 (custom-reset-standard-variables-list): Declare.
20288 (customize-create-theme, custom-theme-revert, custom-theme-write)
20289 (custom-theme-choose-mode, customize-themes, custom-theme-save):
20290 Mark unused parameters.
20291
20292 * dabbrev.el (dabbrev-completion): Remove unused variable `init'.
20293
20294 * delim-col.el (delimit-columns-max): Move defvar before first use.
20295
20296 * descr-text.el (describe-char-categories): Don't quote `lambda'.
20297 (describe-char): Don't quote `lambda'. Mark unused parameter.
20298
20299 * desktop.el (desktop-save-buffer-p): Mark unused parameter.
20300 (auto-insert): Declare.
20301 (desktop-restore-file-buffer): Rename desktop-* parameters;
20302 mark unused ones.
20303 (desktop-create-buffer): Rename desktop-* parameters and bind them.
20304 (desktop-buffer): Rename desktop-* parameters.
20305
20306 * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape): Declare.
20307 (dframe-reposition-frame-xemacs, dframe-help-echo)
20308 (dframe-hack-buffer-menu, dframe-set-timer, dframe-set-timer-internal):
20309 Mark unused parameters.
20310
20311 * dired-aux.el (backup-extract-version-start, overwrite-query)
20312 (overwrite-backup-query, rename-regexp-query)
20313 (rename-non-directory-query): Declare.
20314 (dired-shell-stuff-it, dired-do-create-files): Mark unused parameters.
20315 (dired-add-entry): Remove unused variable `orig-file-name'.
20316 (dired-copy-file-recursive): Remove unused variable `dirfailed'.
20317 Use parameter PRESERVE-TIME instead of accessing dynamic variable
20318 `dired-copy-preserve-time' directly.
20319 (dired-do-create-files-regexp): Remove unused variable `fn-count'.
20320 (dired-insert-subdir-newpos): Rename unused variable `pos'.
20321
20322 * dired-x.el (dired-omit-size-limit): Move defcustom before first use.
20323 (dired-virtual-revert, dired-make-relative-symlink):
20324 Mark unused parameters.
20325 (manual-program): Declare.
20326 (dired-x-hands-off-my-keys): Rename parameters of lambda expression.
20327 (inode, s, mode, nlink, uid, gid, size, time, name, sym): Declare them,
20328 wrapped in `with-no-warnings' to avoid replacing one warning by another.
20329
20330 * dirtrack.el (dirtrack): Remove unused variable `multi-line'.
20331
20332 * dos-fns.el (dos-8+3-filename): Remove unused variable `i'.
20333
20334 * echistory.el (electric-history-in-progress, Helper-return-blurb):
20335 Declare.
20336
20337 * edmacro.el (edmacro-finish-edit): Remove unused variable `kmacro'.
20338
20339 * electric.el (Electric-command-loop): Rename parameter
20340 INHIBIT-QUIT to INHIBIT-QUITTING and bind `inhibit-quit'.
20341
20342 * expand.el (expand-in-literal): Remove unused variable `here'.
20343
20344 * facemenu.el (facemenu-add-new-color):
20345 Remove unused variable `docstring'.
20346
20347 * faces.el (face-id, make-face-bold, make-face-unbold, make-face-italic)
20348 (make-face-unitalic, make-face-bold-italic): Mark unused parameters.
20349 (face-attr-construct): Mark unused parameter. Doc fix.
20350 (read-color): Remove unused variable `hex-string'.
20351
20352 * files.el (parse-colon-path): Rename argument CD-PATH to SEARCH-PATH.
20353 (locate-dominating-file): Remove unused vars `prev-file' and `user'.
20354 (remote-file-name-inhibit-cache, revert-buffer): Clean up docstrings.
20355 (display-buffer-other-frame): Remove unused variable `old-window'.
20356 (kill-buffer-hook): Declare.
20357 (insert-file-contents-literally, set-auto-mode, risky-local-variable-p):
20358 Mark unused parameters.
20359 (after-find-file): Pass 1 to `auto-save-mode', not t.
20360
20361 * files-x.el (auto-insert): Declare.
20362 (modify-file-local-variable-prop-line): Remove unused variable `val'.
20363
20364 * find-lisp.el (find-lisp-find-dired-internal): Remove unused
20365 variable `buf'. Mark unused parameter.
20366 (find-lisp-insert-directory): Mark unused parameter.
20367
20368 * format.el (format-decode-run-method): Mark unused parameter; doc fix.
20369 (format-encode-region): Remove unused variables `cur-buf' and `result'.
20370 (format-common-tail): Remove, unused.
20371 (format-deannotate-region): Remove unused variable `loc'.
20372 (format-annotate-region): Remove unused variable `p'.
20373 (format-annotate-single-property-change): Remove unused variables
20374 `default' and `tail'.
20375
20376 * forms.el (read-file-filter): Declare.
20377 (forms--iif-hook, forms--revert-buffer): Mark unused parameters.
20378
20379 * frame.el (frame-creation-function-alist): Mark unused parameter.
20380 (frame-geom-spec-cons): Pass FRAME to `frame-geom-value-cons'.
20381
20382 * hilit-chg.el (hilit-chg-cust-fix-changes-face-list, hilit-chg-clear):
20383 Remove unused parameters.
20384 (hilit-chg-set-face-on-change): Remove unused variable `beg-decr'.
20385 (highlight-compare-with-file): Remove unused variable `buf-b-read-only'.
20386
20387 * htmlfontify.el (hfy-default-footer, hfy-decor, hfy-invisible)
20388 (hfy-parse-tags-buffer, hfy-prepare-index-i, hfy-prepare-index)
20389 (hfy-prepare-tag-map): Mark unused parameters.
20390 (htmlfontify-buffer): Use `called-interactively-p'.
20391
20392 * ibuf-ext.el (ibuffer-do-kill-lines, ibuffer-jump-to-buffer)
20393 (ibuffer-copy-filename-as-kill, ibuffer-mark-on-buffer)
20394 (ibuffer-do-occur): Mark unused parameters.
20395 (ibuffer-forward-next-marked): Remove unused variable `curmark'.
20396 (ibuffer-diff-buffer-with-file-1): Remove unused variable `proc'.
20397
20398 * ibuffer.el: Don't quote `lambda'.
20399 (ibuffer-count-marked-lines, ibuffer-count-deletion-lines)
20400 (ibuffer-unmark-all, ibuffer-toggle-marks, ibuffer-redisplay-engine):
20401 Mark unused parameters.
20402
20403 * ido.el (ido-mode, ido-wide-find-dir-or-delete-dir)
20404 (ido-completing-read): Mark unused parameters.
20405 (ido-copy-current-word): Mark unused parameters;
20406 remove unused variable `name'.
20407 (ido-sort-merged-list): Remove unused parameter `dirs'.
20408
20409 * ielm.el (ielm-input-sender): Mark unused parameter.
20410 (ielm-string, ielm-form, ielm-pos, ielm-result, ielm-error-type)
20411 (ielm-output, ielm-wbuf, ielm-pmark): Declare.
20412 (ielm-eval-input): Rename argument IELM-STRING to INPUT-STRING to keep
20413 `ielm-string' as a dynamic variable accessible from the IELM prompt.
20414 Bind `ielm-string' to INPUT-STRING. Remove unused variable `err'.
20415
20416 * image-dired.el (image-dired-display-thumbs): Remove unused
20417 variables `curr-file' and `count'.
20418 (image-dired-remove-tag): Remove unused variable `start'.
20419 (image-dired-tag-files, image-dired-create-thumbs): Remove unused
20420 variable `curr-file'
20421 (image-dired-rotate-original): Remove unused variable `temp-file'.
20422 (image-dired-mouse-select-thumbnail, image-dired-mouse-toggle-mark):
20423 Remove unused variable `file'.
20424 (image-dired-gallery-generate): Remove unused variable `curr'.
20425 (image-dired-dired-edit-comment-and-tags): Mark unused parameters.
20426
20427 * indent.el (tab-to-tab-stop): Remove unused variable `opoint'.
20428
20429 * info-xref.el (info-xref-goto-node-p): Remove unused variable `err'.
20430
20431 * informat.el (texinfo-command-start, texinfo-command-end): Declare.
20432
20433 * isearch.el (minibuffer-history-symbol): Declare.
20434 (isearch-edit-string): Remove unused variable `err'.
20435 (isearch-message-prefix, isearch-message-suffix):
20436 Mark unused parameters.
20437
20438 * ls-lisp.el (ls-lisp-insert-directory): Remove unused variable `fil'.
20439
20440 * macros.el (insert-kbd-macro): Remove unused variable `mods'.
20441
20442 * makesum.el (double-column): Remove unused variable `cnt'.
20443
20444 * misearch.el (multi-isearch-pop-state): Mark unused parameter.
20445 (ido-ignore-item-temp-list): Declare.
20446
20447 * mouse-drag.el (mouse-drag-throw): Remove unused variables
20448 `mouse-delta', `window-last-row', `mouse-col-delta', `window-last-col',
20449 `adjusted-mouse-col-delta' and `adjusted-mouse-delta'.
20450 (mouse-drag-drag): Remove unused variables `mouse-delta' and
20451 `mouse-col-delta'.
20452
20453 * mouse-sel.el (mouse-extend-internal):
20454 Remove unused variable `orig-window-frame'.
20455
20456 * pcomplete.el (pcomplete-args, pcomplete-begins, pcomplete-last)
20457 (pcomplete-index, pcomplete-stub, pcomplete-seen, pcomplete-norm-func):
20458 Move declarations before first use.
20459 (pcomplete-opt): Mark unused parameters; doc fix.
20460
20461 * proced.el (proced-revert): Mark unused parameter.
20462 (proced-send-signal): Remove unused variable `err'.
20463
20464 * ps-print.el (ps-print-preprint-region, ps-print-preprint):
20465 Rename parameter PREFIX-ARG to ARG.
20466 (ps-basic-plot-string, ps-basic-plot-whitespace):
20467 Mark unused parameters.
20468
20469 * replace.el (replace-count): Define.
20470 (occur-revert-function): Mark unused parameters.
20471 (ido-ignore-item-temp-list, isearch-error, isearch-forward)
20472 (isearch-case-fold-search, isearch-string): Declare.
20473 (occur-engine): Rename parameter CASE-FOLD-SEARCH to CASE-FOLD and
20474 bind `case-fold-search'. Remove unused variables `beg' and `end',
20475 and simplify.
20476 (replace-eval-replacement): Rename parameter REPLACE-COUNT to
20477 COUNT and bind `replace-count'.
20478 (replace-loop-through-replacements): Rename parameter REPLACE-COUNT
20479 to COUNT.
20480
20481 * savehist.el (print-readably, print-string-length): Declare.
20482
20483 * shadowfile.el (shadow-expand-cluster-in-file-name):
20484 Remove unused variable `cluster'.
20485 (shadow-copy-file): Remove unused variable `i'.
20486 (shadow-noquery, shadow-clusters, shadow-site-cluster)
20487 (shadow-parse-fullname, shadow-parse-name, shadow-define-cluster)
20488 (shadow-define-literal-group, shadow-define-regexp-group)
20489 (shadow-make-group, shadow-shadows-of): Clean up docstrings.
20490
20491 * shell.el (shell-filter-ctrl-a-ctrl-b): Mark unused parameter.
20492 (shell): Use `called-interactively-p'.
20493 (shell-directory-tracker): Remove unused variable `chdir-failure'.
20494
20495 * simple.el (compilation-context-lines, comint-file-name-quote-list)
20496 (comint-file-name-chars, comint-delimiter-argument-list): Declare.
20497 (delete-backward-char): Remove unused variable `ocol'.
20498 (minibuffer-avoid-prompt, minibuffer-history-isearch-pop-state)
20499 (line-move-1, event-apply-alt-modifier, event-apply-super-modifier)
20500 (event-apply-hyper-modifier, event-apply-shift-modifier)
20501 (event-apply-control-modifier, event-apply-meta-modifier):
20502 Mark unused parameters.
20503 (undo-make-selective-list): Remove duplicate variable `undo-elt'.
20504 (normal-erase-is-backspace-mode): Remove unused variable `old-state'.
20505
20506 * speedbar.el (speedbar-ignored-directory-expressions)
20507 (speedbar-supported-extension-expressions, speedbar-directory-buttons)
20508 (speedbar-find-file, speedbar-dir-follow)
20509 (speedbar-directory-buttons-follow, speedbar-tag-find)
20510 (speedbar-buffer-buttons, speedbar-buffer-buttons-temp)
20511 (speedbar-buffers-line-directory, speedbar-buffer-click):
20512 Mark unused parameters.
20513 (speedbar-tag-file): Remove unused variable `mode'.
20514 (speedbar-buffers-tail-notes): Remove unused variable `mod'; simplify.
20515
20516 * strokes.el (strokes-decode-buffer): Remove unused variable `ext'.
20517
20518 * talk.el (talk): Remove unused variable `display'.
20519
20520 * tar-mode.el (tar-subfile-save-buffer): Remove unused variable `name'.
20521 (tar-write-region-annotate): Mark unused parameter.
20522
20523 * time.el (now, time, load, mail, 24-hours, hour, 12-hours, am-pm)
20524 (minutes, seconds, time-zone, day, year, monthname, month, dayname):
20525 Declare them, wrapped in `with-no-warnings' to avoid replacing one
20526 warning by another.
20527
20528 * time-stamp.el (time-stamp-string-preprocess):
20529 Remove unused variable `require-padding'.
20530
20531 * tree-widget.el (widget-glyph-enable): Declare.
20532 (tree-widget-action): Mark unused parameter.
20533
20534 * w32-fns.el (x-get-selection): Mark unused parameter.
20535 (autoload-make-program, generated-autoload-file): Declare.
20536
20537 * wdired.el (wdired-revert): Mark unused parameters.
20538 (wdired-xcase-word): Remove unused variable `err'.
20539
20540 * whitespace.el (whitespace-buffer-changed): Mark unused parameters.
20541 (whitespace-help-scroll): Remove unused variable `data-help'.
20542
20543 * wid-edit.el (widget-mouse-help, widget-overlay-inactive)
20544 (widget-image-insert, widget-after-change, default)
20545 (widget-default-format-handler, widget-default-notify)
20546 (widget-default-prompt-value, widget-info-link-action)
20547 (widget-url-link-action, widget-function-link-action)
20548 (widget-variable-link-action, widget-file-link-action)
20549 (widget-emacs-library-link-action, widget-emacs-commentary-link-action)
20550 (widget-field-prompt-internal, widget-field-action, widget-field-match)
20551 (widget-choice-mouse-down-action, toggle, widget-radio-button-notify)
20552 (widget-insert-button-action, widget-delete-button-action, visibility)
20553 (widget-documentation-link-action, widget-documentation-string-action)
20554 (widget-const-prompt-value, widget-regexp-match, symbol)
20555 (widget-coding-system-prompt-value)
20556 (widget-key-sequence-value-to-external, sexp)
20557 (widget-sexp-value-to-internal, character, vector, cons)
20558 (widget-choice-prompt-value, widget-boolean-prompt-value)
20559 (widget-color--choose-action): Mark unused parameters.
20560 (widget-item-match-inline, widget-choice-match-inline)
20561 (widget-checklist-match, widget-checklist-match-inline)
20562 (widget-group-match): Rename parameter VALUES to VALS.
20563 (widget-field-value-set): Remove unused variable `size'.
20564 (widget-color-action): Remove unused variables `value' and `start'.
20565
20566 * windmove.el (windmove-wrap-loc-for-movement): Remove unused
20567 variable `dir'. Doc fix.
20568 (windmove-find-other-window): Don't pass it.
20569
20570 * window.el (count-windows): Mark unused parameter.
20571 (bw-adjust-window): Remove unused variable `err'.
20572
20573 * woman.el (woman-file-name): Remove unused variable `default'.
20574 (woman-expand-directory-path): Rename parameters WOMAN-MANPATH and
20575 WOMAN-PATH to PATH-DIRS and PATH-REGEXPS, respectively.
20576 (global-font-lock-mode): Declare.
20577 (woman-decode-region): Mark unused parameter.
20578 (woman-get-tab-stop): Rename parameter TAB-STOP-LIST to TAB-STOPS.
20579
20580 * x-dnd.el (x-dnd-default-test-function, x-dnd-handle-old-kde)
20581 (x-dnd-handle-xdnd, x-dnd-handle-motif): Mark unused parameters.
20582 (x-dnd-handle-moz-url): Remove unused variable `title'.
20583 (x-dnd-handle-xdnd): Remove unused variables `x', `y' and `ret-action'.
20584
20585 * xml.el (xml-parse-tag, xml-parse-attlist):
20586 Remove unused variable `pos'.
20587
20588 2011-04-19 Glenn Morris <rgm@gnu.org>
20589
20590 * calendar/cal-tex.el (cal-tex-list-holidays, cal-tex-cursor-month)
20591 (cal-tex-cursor-week, cal-tex-cursor-week2, cal-tex-cursor-week-iso)
20592 (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
20593 (cal-tex-cursor-filofax-daily, cal-tex-mini-calendar)
20594 * calendar/cal-html.el (cal-html-insert-minical):
20595 * calendar/diary-lib.el (diary-list-entries-1, diary-list-entries)
20596 (calendar-mark-date-pattern):
20597 Prefix "unused" locals.
20598
20599 * calendar/cal-dst.el (dst-adjust-time): Remove never-implemented
20600 optional argument `style'.
20601
20602 * calendar/appt.el (appt-make-list):
20603 * calendar/cal-china.el (calendar-chinese-date-string):
20604 * calendar/cal-hebrew.el (calendar-hebrew-list-yahrzeits)
20605 (diary-hebrew-yahrzeit):
20606 * calendar/cal-tex.el (cal-tex-last-blank-p, cal-tex-cursor-week2):
20607 * calendar/calendar.el (calendar-generate-window):
20608 * calendar/time-date.el (time-to-days):
20609 Remove unused local variables.
20610
20611 2011-04-18 Chong Yidong <cyd@stupidchicken.com>
20612
20613 * emacs-lisp/tabulated-list.el (tabulated-list-mode): Use a custom
20614 glyphless-char-display table.
20615 (tabulated-list-glyphless-char-display): New var.
20616
20617 2011-04-18 Sam Steingold <sds@gnu.org>
20618
20619 * vc/add-log.el (change-log-font-lock-keywords): Add "Thanks to"
20620 to acknowledgments.
20621
20622 2011-04-17 Glenn Morris <rgm@gnu.org>
20623
20624 * calendar/diary-lib.el (diary-sexp-entry):
20625 * calendar/holidays.el (holiday-sexp):
20626 Set debug-on-error rather than the removed stack-trace-on-error.
20627
20628 2011-04-16 Glenn Morris <rgm@gnu.org>
20629
20630 * progmodes/f90.el: Use lexical-binding.
20631 (f90-get-correct-indent): Remove unnecessary local variable `cont'.
20632
20633 2011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
20634
20635 * mail/sendmail.el (mail-mode-map): Use completion-at-point.
20636 (mail-mode): Setup mailalias completion here instead.
20637 * mail/mailalias.el: Use lexical-binding.
20638 (pattern, mailalias-done): Declare dynamic.
20639 (mail-completion-at-point-function): New function, from mail-complete.
20640 (mail-complete): Use it.
20641 (mail-completion-expand): New function.
20642 (mail-get-names): Use it.
20643 (mail-directory, mail-directory-process, mail-directory-stream):
20644 Don't use `pattern' for lexically bound arg.
20645
20646 * emacs-lisp/lisp-mode.el (eval-defun-2): Use eval-sexp-add-defvars.
20647
20648 * htmlfontify.el (hfy-etags-cmd): Remove inoperant eval-and-compile.
20649 (hfy-e2x-etags-cmd, hfy-etags-cmd-alist-default)
20650 (hfy-etags-cmd-alist): Don't eval-and-compile any more.
20651
20652 * emacs-lisp/bytecomp.el (byte-temp-output-buffer-show)
20653 (byte-save-window-excursion, byte-temp-output-buffer-setup)
20654 (byte-interactive-p): Define them again, for use when inlining
20655 old code.
20656
20657 2011-04-15 Juanma Barranquero <lekktu@gmail.com>
20658
20659 * loadup.el: Use `string-to-number', not `string-to-int'.
20660
20661 2011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
20662
20663 * progmodes/gud.el (gud-gdb): Use completion-at-point instead of
20664 gud-gdb-complete-command.
20665 (gud-gdb-completions): New function, from gud-gdb-complete-command.
20666 (gud-gdb-completion-at-point): New function.
20667 (gud-gdb-completions): Remove.
20668
20669 2011-04-14 Michael Albinus <michael.albinus@gmx.de>
20670
20671 * net/tramp-sh.el (tramp-sh-handle-file-attributes): Handle the case
20672 when the scripts fail. Use `tramp-do-file-attributes-with-ls' then.
20673 (tramp-do-copy-or-rename-file-out-of-band): Do not check any longer
20674 whether `executable-find' is bound.
20675
20676 * net/tramp-smb.el (tramp-smb-handle-copy-file): Fix docstring.
20677
20678 2011-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
20679
20680 * minibuffer.el (completion-in-region-mode-predicate)
20681 (completion-in-region-mode--predicate): New vars.
20682 (completion-in-region, completion-in-region--postch)
20683 (completion-in-region-mode): Use them.
20684 (completion--capf-wrapper): Also return the hook function.
20685 (completion-at-point, completion-help-at-point):
20686 Adjust and provide a predicate.
20687
20688 Preserve arg names for advice of subr and lexical functions (bug#8457).
20689 * help-fns.el (help-function-arglist): Consolidate the subr and
20690 new-byte-code cases. Add argument `preserve-names' to extract names
20691 from the docstring when needed.
20692 * emacs-lisp/advice.el (ad-define-subr-args, ad-undefine-subr-args)
20693 (ad-subr-args-defined-p, ad-get-subr-args, ad-subr-arglist): Remove.
20694 (ad-arglist): Use help-function-arglist's new arg.
20695 (ad-definition-type): Use cond.
20696
20697 2011-04-13 Juanma Barranquero <lekktu@gmail.com>
20698
20699 * autorevert.el (auto-revert-handler):
20700 Bind `remote-file-name-inhibit-cache', not `tramp-cache-inhibit-cache',
20701 which was removed in 2010-10-02T13:21:43Z!michael.albinus@gmx.de.
20702 Don't quote lambda.
20703
20704 * image-mode.el (image-transform-set-scale):
20705 Fix change in 2011-04-09T20:28:01Z!cyd@stupidchicken.com.
20706
20707 2011-04-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
20708
20709 * net/network-stream.el (network-stream-open-starttls): Only do
20710 opportunistic STARTTLS upgrades if we have built-in GnuTLS support.
20711 Upgrades via gnutls-cli are too slow to be done opportunistically.
20712
20713 2011-04-12 Juanma Barranquero <lekktu@gmail.com>
20714
20715 * dframe.el (dframe-current-frame): Remove spurious quote.
20716
20717 2011-04-12 Glenn Morris <rgm@gnu.org>
20718
20719 * calendar/cal-tex.el (cal-tex-end-document):
20720 Try to automatically use latin1 input if needed.
20721
20722 * calendar/cal-hebrew.el (diary-hebrew-rosh-hodesh):
20723 Don't try to cons a mark onto an empty element.
20724
20725 2011-04-11 Leo Liu <sdl.web@gmail.com>
20726
20727 * ido.el (ido-buffer-internal): Allow method 'kill for virtual
20728 buffers.
20729 (ido-kill-buffer-at-head): Support killing virtual buffers.
20730
20731 2011-04-10 Chong Yidong <cyd@stupidchicken.com>
20732
20733 * minibuffer.el (completion-show-inline-help): New var.
20734 (completion--do-completion, minibuffer-complete)
20735 (minibuffer-force-complete, minibuffer-complete-word):
20736 Inhibit minibuffer messages if completion-show-inline-help is nil.
20737
20738 * icomplete.el (icomplete-mode): Bind completion-show-inline-help
20739 to avoid interference from inline help (Bug#5849).
20740
20741 2011-04-10 Leo Liu <sdl.web@gmail.com>
20742
20743 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
20744 Fix typo.
20745
20746 2011-04-09 Chong Yidong <cyd@stupidchicken.com>
20747
20748 * image-mode.el (image-toggle-display-image): Signal an error if
20749 not in Image mode.
20750 (image-transform-mode, image-transform-resize)
20751 (image-transform-set-rotation): Doc fix.
20752 (image-transform-set-resize): Delete.
20753 (image-transform-set-scale, image-transform-fit-to-height)
20754 (image-transform-fit-to-width): Handle image-toggle-display-image
20755 and image-transform-resize directly.
20756
20757 2011-04-08 Sho Nakatani <lay.sakura@gmail.com>
20758
20759 * doc-view.el (doc-view-fit-width-to-window)
20760 (doc-view-fit-height-to-window, doc-view-fit-page-to-window):
20761 New functions for fitting the shown image to the Emacs window size.
20762 (doc-view-mode-map): Add bindings for the new functions.
20763
20764 2011-04-08 Juanma Barranquero <lekktu@gmail.com>
20765
20766 * vc/vc-annotate.el (vc-annotate-show-log-revision-at-line):
20767 Fix typo in docstring.
20768
20769 2011-04-08 Eli Zaretskii <eliz@gnu.org>
20770
20771 * files.el (file-size-human-readable): Produce one digit after
20772 decimal, like "ls -lh" does.
20773
20774 * ls-lisp.el (ls-lisp-format-file-size): Allow for 7 characters in
20775 the file size representation.
20776
20777 * simple.el (list-processes): If async subprocesses are not
20778 available, error out with a clear error message.
20779
20780 2011-04-08 Chong Yidong <cyd@stupidchicken.com>
20781
20782 * help.el (help-form-show): New function, to be called from C.
20783 Put help-form output in a buffer named differently than *Help*.
20784
20785 2011-04-08 Eli Zaretskii <eliz@gnu.org>
20786
20787 * files.el (file-size-human-readable): New function.
20788
20789 * ls-lisp.el (ls-lisp-format-file-size): Use it, instead of
20790 computing the representation inline. Don't require `cl'.
20791
20792 2011-04-08 Glenn Morris <rgm@gnu.org>
20793
20794 * man.el (Man-page-header-regexp): Solaris < 2.6 no longer supported.
20795
20796 * net/browse-url.el (browse-url-firefox):
20797 Test system-type, not system-configuration.
20798
20799 * vc/log-edit.el (log-edit-empty-buffer-p): New function.
20800 (log-edit-insert-cvs-template, log-edit-insert-cvs-rcstemplate):
20801 Use log-edit-empty-buffer-p. (Bug#7598)
20802
20803 * net/rlogin.el (rlogin-process-connection-type): Simplify.
20804 (rlogin-mode-map): Initialize in the defvar.
20805 (rlogin): Use ignore-errors.
20806
20807 * replace.el (occur-mode-map): Some fixes for menu items.
20808
20809 2011-04-07 Aaron S. Hawley <aaron.s.hawley@gmail.com>
20810
20811 * play/morse.el (denato-region): Handle varying case. (Bug#8386)
20812
20813 2011-04-06 Chong Yidong <cyd@stupidchicken.com>
20814
20815 * emacs-lisp/cconv.el (cconv--analyse-use): Ignore "ignored" when
20816 issuing unused warnings.
20817
20818 * emacs-lisp/tabulated-list.el (tabulated-list-print): Use lambda
20819 macro directly.
20820
20821 * simple.el: Lisp reimplement of list-processes. Based on an
20822 earlier reimplementation by Leo Liu, but using tabulated-list.el.
20823 (process-menu-mode): New major mode.
20824 (list-processes--refresh, list-processes):
20825 (process-menu-visit-buffer): New functions.
20826
20827 * files.el (save-buffers-kill-emacs): Don't assume any return
20828 value of list-processes, which is undocumented anyway.
20829
20830 2011-04-06 Chong Yidong <cyd@stupidchicken.com>
20831
20832 * emacs-lisp/tabulated-list.el: New file.
20833
20834 * emacs-lisp/package.el: Use Tabulated List mode.
20835 (package-menu-mode-map): Inherit from tabulated-list-mode-map.
20836 (package-menu-mode): Derive from tabulated-list-mode. Set up the
20837 table format using Tabulated List mode variables.
20838 (package--push): New macro, replacing package-list-maybe-add.
20839 (package-menu--generate): Use package--push. Renamed from
20840 package--generate-package-list.
20841 (package-menu-refresh, list-packages): Use it.
20842 (package-menu--print-info): Rename from package-print-package.
20843 Return insertion data instead of inserting it directly.
20844 (package-menu-describe-package, package-menu-execute):
20845 Use tabulated-list-get-id.
20846 (package-menu-mark-delete, package-menu-mark-install)
20847 (package-menu-mark-unmark, package-menu-backup-unmark)
20848 (package-menu-mark-obsolete-for-deletion):
20849 Use tabulated-list-put-tag.
20850 (package--list-packages, package-menu-revert)
20851 (package-menu-get-package, package-menu-get-version)
20852 (package-menu-sort-by-column): Functions deleted.
20853 (package-menu-package-list, package-menu-sort-key): Vars deleted.
20854 (package-menu--status-predicate, package-menu--version-predicate)
20855 (package-menu--name-predicate)
20856 (package-menu--description-predicate): Handle arguments in the
20857 Tabulated List format.
20858 (package-list-packages-no-fetch): Call list-packages.
20859
20860 2011-04-06 Juanma Barranquero <lekktu@gmail.com>
20861
20862 * files.el (after-find-file-from-revert-buffer): Remove variable.
20863 (after-find-file): Don't bind it.
20864 (revert-buffer-in-progress-p): New variable.
20865 (revert-buffer): Bind it.
20866 Pass nil for `after-find-file-from-revert-buffer'.
20867
20868 * saveplace.el (save-place-find-file-hook): Use new variable
20869 `rever-buffer-in-progress-p', not `after-find-file-from-revert-buffer'.
20870
20871 2011-04-06 Glenn Morris <rgm@gnu.org>
20872
20873 * Makefile.in (AUTOGEN_VCS): New variable.
20874 (autoloads): Use $AUTOGEN_VCS.
20875
20876 * calendar/cal-move.el (calendar-scroll-toolkit-scroll): New function.
20877 * calendar/calendar.el (calendar-mode-map):
20878 Check for toolkit scroll bars. (Bug#8305)
20879
20880 2011-04-05 Chong Yidong <cyd@stupidchicken.com>
20881
20882 * minibuffer.el (completion-in-region--postch)
20883 (completion-in-region-mode): Remove unnecessary messages.
20884
20885 2011-04-05 Juanma Barranquero <lekktu@gmail.com>
20886
20887 * font-lock.el (font-lock-refresh-defaults):
20888 Don't bind `hi-lock--inhibit-font-lock-hook', removed in
20889 2010-10-09T04:09:19Z!cyd@stupidchicken.com and 2010-10-11T23:57:49Z!lekktu@gmail.com (2010-10-12).
20890
20891 * info.el (Info-directory-list, Info-read-node-name-2)
20892 (Info-split-parameter-string): Doc fixes.
20893 (Info-virtual-nodes): Reflow docstring.
20894 (Info-find-file, Info-directory-toc-nodes, Info-history-toc-nodes)
20895 (Info-apropos-toc-nodes, info-finder, Info-get-token)
20896 (Info-find-emacs-command-nodes, Info-speedbar-key-map):
20897 Fix typos in docstrings.
20898 (Info-revert-buffer-function, Info-search, Info-isearch-pop-state)
20899 (Info-speedbar-hierarchy-buttons, Info-speedbar-goto-node)
20900 (Info-speedbar-buttons, Info-desktop-buffer-misc-data)
20901 (Info-restore-desktop-buffer): Mark unused parameters.
20902 (Info-directory-find-file, Info-directory-find-node)
20903 (Info-history-find-file, Info-history-find-node, Info-toc-find-node)
20904 (Info-virtual-index-find-node, Info-apropos-find-file)
20905 (Info-apropos-find-node, Info-finder-find-file, Info-finder-find-node):
20906 Mark unused parameters; fix typos in docstrings.
20907 (Info-virtual-index): Remove unused local variable `nodename'.
20908
20909 2011-04-05 Deniz Dogan <deniz@dogan.se>
20910
20911 * net/rcirc.el: Update my e-mail address.
20912 (rcirc-mode-map): Remove M-o binding.
20913
20914 2011-04-05 Chong Yidong <cyd@stupidchicken.com>
20915
20916 * startup.el (command-line): Save the cursor's theme-face
20917 directly, instead of using face-override-spec.
20918
20919 * custom.el (load-theme): Minor optimization in assigning faces.
20920
20921 2011-04-04 Juanma Barranquero <lekktu@gmail.com>
20922
20923 * help-fns.el (describe-variable): Complete all variables having
20924 documentation, including keywords.
20925 http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00112.html
20926
20927 2011-04-04 Juanma Barranquero <lekktu@gmail.com>
20928
20929 Convert to lexical-binding.
20930
20931 * bs.el (bs-refresh, bs-sort-buffer-interns-are-last)
20932 (bs--get-marked-string, bs--get-modified-string)
20933 (bs--get-readonly-string, bs--get-size-string, bs--get-name)
20934 (bs--get-mode-name, bs--get-file-name): Mark unused arguments.
20935 (bs--configuration-name-for-prefix-arg): Rename argument PREFIX-ARG.
20936
20937 * ehelp.el (electric-help-execute-extended)
20938 (electric-help-ctrl-x-prefix):
20939 * hexl.el (hexl-revert-buffer-function):
20940 * linum.el (linum-after-change, linum-after-scroll):
20941 * emacs-lisp/re-builder.el (reb-auto-update): Mark unused arguments.
20942
20943 * help-fns.el (help-describe-category-set): Remove unused ERR variable.
20944
20945 2011-04-04 Daiki Ueno <ueno@unixuser.org>
20946
20947 * epa-dired.el:
20948 * epa-mail.el:
20949 * epa-hook.el:
20950 * epa-file.el:
20951 * epa.el:
20952 * epg.el: Use lexical binding.
20953
20954 2011-04-03 Chong Yidong <cyd@stupidchicken.com>
20955
20956 * dired-aux.el (dired-create-files): Add docstring (Bug#7970).
20957
20958 * textmodes/flyspell.el (flyspell-word): Recognize default
20959 dictionary case for flyspell-mark-duplications-exceptions.
20960 Use regexp matching for languages.
20961 (flyspell-mark-duplications-exceptions): Add "that" and "had" for
20962 default dictionary (Bug#7926).
20963
20964 2011-04-02 Chong Yidong <cyd@stupidchicken.com>
20965
20966 * emacs-lisp/package.el (package--with-work-buffer):
20967 Recognize https URLs.
20968
20969 * net/network-stream.el: Move from gnus/proto-stream.el.
20970 Change prefix to network-stream throughout.
20971 (open-protocol-stream): Merge into open-network-stream, leaving
20972 open-protocol-stream as an alias. Handle nil BUFFER args.
20973
20974 * subr.el (open-network-stream): Move to net/network-stream.el.
20975
20976 2011-04-02 Glenn Morris <rgm@gnu.org>
20977
20978 * find-dired.el (find-exec-terminator): New option.
20979 (find-ls-option): Test for -ls support.
20980 (find-ls-subdir-switches): Test for -b in find-ls-option.
20981 (find-dired, find-grep-dired): Doc fixes.
20982 (find-dired): Use find-exec-terminator.
20983
20984 * find-dired.el (find-ls-option, find-ls-subdir-switches)
20985 (find-grep-options): Do not autoload these defcustoms, remove purecopy.
20986 (find-name-arg): Remove purecopy.
20987
20988 * progmodes/grep.el (grep-find-use-xargs): Doc fix.
20989 (grep-compute-defaults): Check for `-exec COMMAND +' support.
20990 Set grep-find-use-xargs, grep-find-command, and grep-find-template
20991 accordingly. Don't add the null-device if not needed.
20992
20993 * files.el (save-some-buffers): Doc fix.
20994
20995 2011-04-02 Eli Zaretskii <eliz@gnu.org>
20996
20997 * makefile.w32-in (EMACS): Default to ../src/$(BLD)/emacs.exe.
20998
20999 2011-04-01 Juanma Barranquero <lekktu@gmail.com>
21000
21001 * progmodes/idlwave.el (idlwave-one-key-select, idlwave-list-abbrevs):
21002 Use `dolist' rather than `mapcar'.
21003
21004 2011-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
21005
21006 Add lexical binding.
21007
21008 * subr.el (apply-partially): Use new closures rather than CL.
21009 (--dolist-tail--, --dotimes-limit--): Don't declare dynamic.
21010 (dolist, dotimes): Use slightly different expansion for lexical code.
21011 (functionp): Move to C.
21012 (letrec): New macro.
21013 (with-wrapper-hook): Use it and apply-partially instead of CL.
21014 (eval-after-load): Preserve lexical-binding.
21015 (save-window-excursion, with-output-to-temp-buffer): Turn them
21016 into macros.
21017
21018 * simple.el (with-wrapper-hook, apply-partially): Move to subr.el.
21019
21020 * help-fns.el (help-split-fundoc): Return nil if there's nothing else
21021 than the arglist.
21022 (help-add-fundoc-usage): Don't add `Not documented'.
21023 (help-function-arglist): Handle closures, subroutines, and new
21024 byte-code-functions.
21025 (help-make-usage): Remove leading underscores.
21026 (describe-function-1): Handle closures.
21027 (describe-variable): Use special-variable-p for completion.
21028
21029 * files.el (lexical-binding): Declare safe.
21030
21031 * emacs-lisp/pcase.el: Don't use destructuring-bind.
21032 (pcase--memoize): Rename from pcase-memoize. Change weakness.
21033 (pcase): Add `let' pattern.
21034 Change memoization so it actually works.
21035 (pcase-mutually-exclusive-predicates): Add byte-code-function-p.
21036 (pcase--u1) <guard, pred>: Fix possible shadowing problem.
21037 <let>: New case.
21038
21039 * emacs-lisp/macroexp.el: Use lexical binding.
21040 (macroexpand-all-1): Check obsolete macros. Expand compiler-macros.
21041 Don't convert ' to #' without checking that it's indeed quoting
21042 a lambda.
21043
21044 * emacs-lisp/lisp-mode.el (eval-last-sexp-1):
21045 Use eval-sexp-add-defvars.
21046 (eval-sexp-add-defvars): New fun.
21047
21048 * emacs-lisp/float-sup.el (pi): Don't declare as dynamically bound.
21049
21050 * emacs-lisp/eieio.el (byte-compile-file-form-defmethod):
21051 Don't autoload.
21052 (eieio-defgeneric-form-primary-only-one): Use `byte-compile' rather
21053 than the internal `byte-compile-lambda'.
21054 (defmethod): Don't hide code under quotes.
21055 (eieio-defmethod): New `code' argument.
21056
21057 * emacs-lisp/eieio-comp.el: Remove.
21058
21059 * emacs-lisp/edebug.el (edebug-eval-defun)
21060 (edebug-eval-top-level-form): Use eval-sexp-add-defvars.
21061 (edebug-toggle): Avoid `eval'.
21062
21063 * emacs-lisp/disass.el (disassemble-internal): Handle new
21064 `closure' objects.
21065 (disassemble-1): Handle new byte codes.
21066
21067 * emacs-lisp/cl.el (pushnew): Silence warning.
21068
21069 * emacs-lisp/cl-macs.el (cl-byte-compile-block)
21070 (cl-byte-compile-throw): Remove.
21071 (cl-block-wrapper, cl-block-throw): Use compiler-macros instead.
21072
21073 * emacs-lisp/cl-extra.el (cl-macroexpand-all): Properly quote CL
21074 closures.
21075
21076 * emacs-lisp/cconv.el: New file.
21077
21078 * emacs-lisp/bytecomp.el: Use lexical binding instead of
21079 a "bytecomp-" prefix. Macroexpand everything as a separate phase.
21080 (byte-compile-initial-macro-environment):
21081 Handle declare-function here.
21082 (byte-compile--lexical-environment): New var.
21083 (byte-stack-ref, byte-stack-set, byte-discardN)
21084 (byte-discardN-preserve-tos): New lap codes.
21085 (byte-interactive-p): Don't use any more.
21086 (byte-compile-push-bytecodes, byte-compile-push-bytecode-const2):
21087 New macros.
21088 (byte-compile-lapcode): Use them and handle new lap codes.
21089 (byte-compile-obsolete): Remove.
21090 (byte-compile-arglist-signature): Handle new byte-code arg"lists".
21091 (byte-compile-arglist-warn): Check late def of inlinable funs.
21092 (byte-compile-cl-warn): Don't silence warnings for compiler-macros
21093 since they should have been expanded by now.
21094 (byte-compile--outbuffer): Rename from bytecomp-outbuffer.
21095 (byte-compile-from-buffer): Remove unused second arg.
21096 (byte-compile-preprocess): New function.
21097 (byte-compile-toplevel-file-form): New function to distinguish
21098 file-form calls from outside from file-form calls from hunk-handlers.
21099 (byte-compile-file-form): Simplify.
21100 (byte-compile-file-form-defsubst): Remove.
21101 (byte-compile-file-form-defmumble): Simplify now that
21102 byte-compile-lambda always returns a byte-code-function.
21103 (byte-compile): Preprocess.
21104 (byte-compile-byte-code-maker, byte-compile-byte-code-unmake):
21105 Remove, not used any more.
21106 (byte-compile-arglist-vars, byte-compile-make-lambda-lexenv)
21107 (byte-compile-make-args-desc): New funs.
21108 (byte-compile-lambda): Handle lexical functions. Always return
21109 a byte-code-function.
21110 (byte-compile-reserved-constants): New var, to make up room for
21111 closed-over variables.
21112 (byte-compile-constants-vector): Obey it.
21113 (byte-compile-top-level): New args `lexenv' and `reserved-csts'.
21114 (byte-compile-macroexpand-declare-function): New function.
21115 (byte-compile-form): Call byte-compile-unfold-bcf to inline immediate
21116 byte-code-functions.
21117 (byte-compile-form): Check obsolescence here.
21118 (byte-compile-inline-lapcode, byte-compile-unfold-bcf): New functions.
21119 (byte-compile-variable-ref): Remove.
21120 (byte-compile-dynamic-variable-op): New fun.
21121 (byte-compile-dynamic-variable-bind, byte-compile-variable-ref)
21122 (byte-compile-variable-set): New funs.
21123 (byte-compile-discard): Add 2 args.
21124 (byte-compile-stack-ref, byte-compile-stack-set)
21125 (byte-compile-make-closure, byte-compile-get-closed-var): New funs.
21126 (byte-compile-funarg, byte-compile-funarg-2): Remove, handled in
21127 macroexpand-all instead.
21128 (byte-compile-quote-form): Remove.
21129 (byte-compile-push-binding-init, byte-compile-not-lexical-var-p)
21130 (byte-compile-bind, byte-compile-unbind): New funs.
21131 (byte-compile-let): Handle let* and lexical binding.
21132 (byte-compile-let*): Remove.
21133 (byte-compile-catch, byte-compile-unwind-protect)
21134 (byte-compile-track-mouse, byte-compile-condition-case):
21135 Handle a new :fun-body form, used for lexical scoping.
21136 (byte-compile-save-window-excursion)
21137 (byte-compile-with-output-to-temp-buffer): Remove.
21138 (byte-compile-defun): Simplify.
21139 (byte-compile-stack-adjustment): New fun.
21140 (byte-compile-out): Use it.
21141 (byte-compile-refresh-preloaded): Don't reload byte-compiler files.
21142
21143 * emacs-lisp/byte-run.el (make-obsolete): Don't set the `byte-compile'
21144 handler any more.
21145
21146 * emacs-lisp/byte-opt.el: Use lexical binding.
21147 (byte-inline-lapcode): Remove (to bytecomp).
21148 (byte-compile-inline-expand): Pay attention to inlining to/from
21149 lexically bound code.
21150 (byte-compile-unfold-lambda): Don't handle byte-code-functions
21151 any more.
21152 (byte-optimize-form-code-walker): Don't handle save-window-excursion
21153 any more and don't call compiler-macros.
21154 (byte-compile-splice-in-already-compiled-code): Remove.
21155 (byte-code): Don't inline any more.
21156 (disassemble-offset): Receive `bytes' as argument rather than via
21157 dynamic scoping.
21158 (byte-compile-tag-number): Declare before first use.
21159 (byte-decompile-bytecode-1): Handle new byte-codes, don't change
21160 `return' even if make-spliceable.
21161 (byte-compile-side-effect-and-error-free-ops): Add stack-ref, remove
21162 obsolete interactive-p.
21163 (byte-optimize-lapcode): Optimize new lap-codes.
21164 Don't trip up on new form of `byte-constant' lap code.
21165
21166 * emacs-lisp/autoload.el (make-autoload): Don't burp on trivial macros.
21167
21168 * emacs-lisp/advice.el (ad-arglist): Use help-function-arglist.
21169
21170 * custom.el (custom-initialize-default, custom-declare-variable):
21171 Use `defvar'.
21172
21173 * Makefile.in (BIG_STACK_DEPTH, BIG_STACK_OPTS, BYTE_COMPILE_FLAGS):
21174 New variables.
21175 (compile-onefile, .el.elc, compile-calc, recompile): Use them.
21176 (COMPILE_FIRST): Add macroexp and cconv.
21177 * makefile.w32-in: Mirror changes in Makefile.in.
21178
21179 * vc/cvs-status.el:
21180 * vc/diff-mode.el:
21181 * vc/log-edit.el:
21182 * vc/log-view.el:
21183 * vc/smerge-mode.el:
21184 * textmodes/bibtex-style.el:
21185 * textmodes/css-mode.el:
21186 * startup.el:
21187 * uniquify.el:
21188 * minibuffer.el:
21189 * newcomment.el:
21190 * reveal.el:
21191 * server.el:
21192 * mpc.el:
21193 * emacs-lisp/smie.el:
21194 * doc-view.el:
21195 * dired.el:
21196 * abbrev.el: Use lexical binding.
21197
21198 2011-04-01 Eli Zaretskii <eliz@gnu.org>
21199
21200 * info.el (info-display-manual): New function.
21201
21202 2011-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
21203
21204 * loadup.el: Load minibuffer after loaddefs, to use define-minor-mode.
21205
21206 2011-03-31 Tassilo Horn <tassilo@member.fsf.org>
21207
21208 * net/rcirc.el (rcirc-handler-001): Only authenticate, if there's
21209 an entry for that server in rcirc-authinfo. (Bug#8385)
21210
21211 2011-03-31 Glenn Morris <rgm@gnu.org>
21212
21213 * progmodes/f90.el (f90-find-tag-default): Handle multiple `%'.
21214
21215 * generic-x.el (etc-fstab-generic-mode): Add ext4, sysfs keywords.
21216
21217 2011-03-30 Christoph Scholtes <cschol2112@googlemail.com>
21218
21219 * progmodes/python.el (python-default-interpreter)
21220 (python-python-command-args, python-jython-command-args)
21221 (python-which-shell, python-which-args, python-which-bufname)
21222 (python-file-queue, python-comint-output-filter-function)
21223 (python-toggle-shells, python-shell): Remove obsolete defcustoms,
21224 variables and functions.
21225
21226 2011-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
21227
21228 * minibuffer.el (completion-table-dynamic): Optimize `boundaries'.
21229 (completion-in-region-mode): New minor mode.
21230 (completion-in-region): Use it.
21231 (completion-in-region--data, completion-in-region-mode-map): New vars.
21232 (completion-in-region--postch): New function.
21233 (completion--capf-misbehave-funs, completion--capf-safe-funs):
21234 New vars.
21235 (completion--capf-wrapper): New function.
21236 (completion-at-point): Use it to track well-behavedness of
21237 hook functions.
21238 (completion-help-at-point): New command.
21239
21240 2011-03-30 Jason Merrill <jason@redhat.com> (tiny change)
21241
21242 * vc/add-log.el (add-change-log-entry): Don't use whitespace
21243 syntax class to search for whitespace on a single line
21244 (Message-ID: <4D938140.4030905@redhat.com>).
21245
21246 2011-03-30 Leo Liu <sdl.web@gmail.com>
21247
21248 * abbrev.el (abbrev-edit-save-to-file, abbrev-edit-save-buffer):
21249 New commands.
21250 (edit-abbrevs-map): Bind them here.
21251 (write-abbrev-file): New optinal arg VERBOSE. (Bug#5937)
21252
21253 2011-03-29 Ken Manheimer <ken.manheimer@gmail.com>
21254
21255 * allout.el (allout-hide-by-annotation, allout-flag-region):
21256 Reduce possibility of overlay leakage by making them volatile.
21257
21258 * allout-widgets.el (allout-widgets-tally): Define as nil so the
21259 hash is not shared between buffers. Mode initialization is
21260 responsible for giving it a useful starting value.
21261 (allout-item-span): Reduce possibility of overlay leakage by
21262 making them volatile.
21263 (allout-widgets-count-buttons-in-region): Add diagnostic function
21264 for tracking down button overlay leaks.
21265
21266 2011-03-29 Leo Liu <sdl.web@gmail.com>
21267
21268 * ido.el (ido-read-internal): Use the default history var
21269 minibuffer-history if no HISTORY is specified.
21270
21271 2011-03-28 Brian T. Sniffen <bsniffen@akamai.com> (tiny change)
21272
21273 * net/imap.el (imap-shell-open, imap-process-connection-type):
21274 Use imap-process-connection-type for 'shell' streams as well as
21275 Kerberos, SSL, other subprocesses.
21276
21277 2011-03-28 Leo Liu <sdl.web@gmail.com>
21278
21279 * abbrev.el (abbrev-table-empty-p): New function.
21280 (prepare-abbrev-list-buffer): Place empty abbrev tables after
21281 nonempty ones. (Bug#5937)
21282
21283 2011-03-27 Jan Djärv <jan.h.d@swipnet.se>
21284
21285 * cus-start.el (all): Add boolean ns-auto-hide-menu-bar.
21286
21287 2011-03-27 Leo Liu <sdl.web@gmail.com>
21288
21289 * ansi-color.el (ansi-color-names-vector): Allow cons cell value
21290 for foreground and background colors.
21291 (ansi-color-make-color-map): Adapt.
21292
21293 2011-03-25 Leo Liu <sdl.web@gmail.com>
21294
21295 * midnight.el (midnight-time-float): Remove. Note it calculates
21296 the microsecond component incorrectly and seconds-to-time does the
21297 same job.
21298 Remove redundant (require 'timer).
21299
21300 * ido.el (ido-read-internal): Simplify with read-from-minibuffer.
21301 (ido-completions): Remove unused arguments. (Bug#8329)
21302
21303 2011-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
21304
21305 * minibuffer.el (completion--flush-all-sorted-completions):
21306 Remove itself from hook.
21307 (completion-at-point): Let the functions perform the completion
21308 immediately and return nil or t.
21309 * comint.el (comint-dynamic-complete-functions): Now identical to
21310 completion-at-point-functions.
21311 (comint-dynamic-list-input-ring): Remove unused var `index'.
21312 (comint--match-partial-filename, comint--unquote&expand-filename):
21313 New funs, split from comint-match-partial-filename.
21314 (comint-dynamic-complete): Use completion-at-point.
21315 (comint-dynamic-complete-filename): Use comint--match-partial-filename.
21316
21317 2011-03-24 Drew Adams <drew.adams@oracle.com>
21318
21319 * thingatpt.el: Support `defun'.
21320
21321 2011-03-23 Leo Liu <sdl.web@gmail.com>
21322
21323 * abbrevlist.el: Move to obsolete/abbrevlist.el.
21324
21325 * help-mode.el (help-mode-finish): Tweak regexp.
21326
21327 2011-03-23 Glenn Morris <rgm@gnu.org>
21328
21329 * eshell/esh-opt.el (eshell-eval-using-options):
21330 Do not bind unused local variable `eshell-option-stub'.
21331
21332 * progmodes/gdb-mi.el (gdb): Fix typo in previous change.
21333
21334 2011-03-22 Juanma Barranquero <lekktu@gmail.com>
21335
21336 * emacs-lisp/derived.el (define-derived-mode): Wrap declaration of
21337 keymap variable in `with-no-warnings' to avoid a warning when the
21338 keymap has been already `defconst'ed.
21339
21340 2011-03-22 Leo Liu <sdl.web@gmail.com>
21341
21342 * abbrev.el (write-abbrev-file): Use utf-8 for writing if it can
21343 encode all chars in abbrevs; otherwise use emacs-mule or
21344 utf-8-emacs. (Bug#8308)
21345
21346 2011-03-22 Juanma Barranquero <lekktu@gmail.com>
21347
21348 * simple.el (backward-delete-char-untabify):
21349 Avoid warning about using `delete-backward-char'.
21350
21351 * image.el (image-type-file-name-regexps): Make it variable.
21352 `imagemagick-register-types' modifies it, and the user may want
21353 to add new extensions for known image types.
21354 (imagemagick-register-types): Throw error if not using ImageMagick.
21355
21356 2011-03-22 Leo Liu <sdl.web@gmail.com>
21357
21358 * net/rcirc.el (rcirc-completion-at-point): Return nil if point is
21359 located before rcirc-prompt-end-marker.
21360 (rcirc-complete): Error if point is not after rcirc prompt.
21361 Handle the case when table is nil.
21362 (rcirc-user-authenticated): Define to fix compiler warning.
21363
21364 2011-03-22 Chong Yidong <cyd@stupidchicken.com>
21365
21366 * custom.el (custom--inhibit-theme-enable): Make it affect only
21367 custom-theme-set-variables and custom-theme-set-faces.
21368 (provide-theme): Ignore custom--inhibit-theme-enable.
21369 (load-theme): Enable the theme explicitly if NO-ENABLE is non-nil.
21370 (custom-enabling-themes): Delete variable.
21371 (enable-theme): Accept only loaded themes as arguments.
21372 Ignore the special custom-enabled-themes variable.
21373 (custom-enabled-themes): Forbid themes from setting this.
21374 Eliminate use of custom-enabling-themes.
21375 (custom-push-theme): Quote "changed" custom var entry.
21376
21377 2011-03-21 Leo Liu <sdl.web@gmail.com>
21378
21379 * ido.el (ido-read-internal): Add ido-selected to history instead
21380 of user input.
21381
21382 2011-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
21383
21384 * subr.el (deferred-action-list, deferred-action-function):
21385 Mark obsolete.
21386
21387 2011-03-21 Leo Liu <sdl.web@gmail.com>
21388
21389 * vc/log-view.el: Remove (require 'wid-edit), not needed after the
21390 change on 2011-02-13 (bug#8309).
21391
21392 * minibuffer.el (read-file-name-function): Change default value.
21393 (read-file-name--defaults): Rename from read-file-name-defaults.
21394 (read-file-name-default): Rename from read-file-name.
21395 (read-file-name): Call read-file-name-function.
21396
21397 2011-03-21 Glenn Morris <rgm@gnu.org>
21398
21399 * eshell/esh-opt.el (eshell-eval-using-options, eshell-process-args):
21400 Doc fixes.
21401
21402 2011-03-21 Chong Yidong <cyd@stupidchicken.com>
21403
21404 * cus-theme.el: Add missing provide statement.
21405 (customize-create-theme): Extract theme value correctly.
21406 (custom-theme-visit-theme): Autoload.
21407 (customize-create-theme): Prompt before inserting default faces.
21408
21409 2011-03-20 Jay Belanger <jay.p.belanger@gmail.com>
21410
21411 * calc/calc-menu.el (calc-units-menu): Add entries for logarithmic
21412 units and musical notes.
21413
21414 2011-03-20 Leo Liu <sdl.web@gmail.com>
21415
21416 * ido.el (ido-read-internal): Use completing-read-default.
21417 (ido-completing-read): Fix compatibility with completing-read.
21418
21419 2011-03-20 Christian Ohler <ohler@gnu.org>
21420
21421 * emacs-lisp/ert.el (ert-run-tests-batch): Remove unused variable.
21422 (ert-delete-all-tests): Use `called-interactively-p' rather than
21423 `interactive-p'.
21424 (ert--make-xrefs-region): Respect END.
21425
21426 2011-03-19 Chong Yidong <cyd@stupidchicken.com>
21427
21428 * dired-aux.el (dired-create-directory): Signal an error if the
21429 directory already exists (Bug#8246).
21430
21431 * facemenu.el (list-colors-display): Call list-faces-display
21432 inside with-help-window.
21433 (list-colors-print): Use display property to align the final
21434 column, instead of checking window-width.
21435
21436 2011-03-19 Eli Zaretskii <eliz@gnu.org>
21437
21438 * vc/emerge.el (emerge-metachars): Separate value for ms-dos and
21439 windows-nt systems.
21440 (emerge-protect-metachars): Quote correctly for ms-dos and
21441 windows-nt systems.
21442
21443 2011-03-19 Ralph Schleicher <rs@ralph-schleicher.de>
21444
21445 * info.el (info-initialize): Replace all uses of `:' with
21446 path-separator for compatibility with non-Unix systems.
21447 Cache quoting of path-separator. (Bug#8258)
21448
21449 2011-03-19 Juanma Barranquero <lekktu@gmail.com>
21450
21451 * avoid.el (mouse-avoidance-mode, mouse-avoidance-nudge-dist)
21452 (mouse-avoidance-threshold, mouse-avoidance-banish-destination)
21453 (mouse-avoidance-mode): Fix typos in docstrings.
21454
21455 2011-03-19 Chong Yidong <cyd@stupidchicken.com>
21456
21457 * startup.el (package-subdirectory-regexp): Move from package.el.
21458 Omit \\` and \\', and let callers add them.
21459
21460 * emacs-lisp/package.el (package-strip-version)
21461 (package-load-all-descriptors): Add \\` and \\' to
21462 package-subdirectory-regexp before using it.
21463 (package-untar-buffer): New arg DIR; ensure that file untars only
21464 into this expected directory. Remove superfluous delete-region.
21465 (package-unpack): Caller changed.
21466 (package-tar-file-info): Use package-subdirectory-regexp.
21467
21468 2011-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
21469
21470 * vc/diff-mode.el (diff-mode-map): Shadow problematic bindings from
21471 diff-mode-shared-map (bug#8284).
21472 (diff-mode-shared-map): Re-introduce some bindings that were problematic.
21473
21474 2011-03-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
21475
21476 * calendar/time-date.el (format-seconds): Use assoc instead of
21477 assoc-string, since assoc-string doesn't exist in XEmacs.
21478
21479 2011-03-17 Juanma Barranquero <lekktu@gmail.com>
21480
21481 * custom.el (custom-known-themes): Reflow docstring.
21482 (custom-theme-load-path): Fix typo in docstring.
21483 (load-theme): Fix typo in error message.
21484 (custom-available-themes, custom-variable-theme-value):
21485 Use `let', not `let*'.
21486
21487 2011-03-17 Jay Belanger <jay.p.belanger@gmail.com>
21488
21489 * calc/README: Mention inclusion of musical notes.
21490
21491 * calc/calc-units.el (calc-lu-quant): Rename from
21492 `calc-logunits-quantity'.
21493 (calcFunc-lupquant): Rename from `calcFunc-powerquant'.
21494 (calcFunc-lufquant): Rename from `calcFunc-fieldquant'.
21495 (calc-db): Rename from `calc-dblevel'.
21496 (calcFunc-dbpower): Rename from `calcFunc-dbpowerlevel'.
21497 (calcFunc-dbfield): Rename from `calcFunc-dbfieldlevel'.
21498 (calc-np): Rename from `calc-nplevel'.
21499 (calcFunc-nppower): Rename from `calcFunc-nppowerlevel'.
21500 (calcFunc-npfield): Rename from `calcFunc-npfieldlevel'.
21501 (calc-lu-plus): Rename from `calc-logunits-add'.
21502 (calcFunc-lupadd): Rename from `calcFunc-lupoweradd'.
21503 (calcFunc-lufadd): Rename from `calcFunc-lufieldadd'.
21504 (calc-lu-minus): Rename from `calc-logunits-sub'.
21505 (calcFunc-lupsub): Rename from `calcFunc-lupowersub'.
21506 (calcFunc-lufsub): Rename from `calcFunc-lufieldsub'.
21507 (calc-lu-times): Rename from `calc-logunits-mul'.
21508 (calcFunc-lupmul): Rename from `calcFunc-lupowermul'.
21509 (calcFunc-lufmul): Rename from `calcFunc-lufieldmul'.
21510 (calc-lu-divide): Rename from `calc-logunits-div'.
21511 (calcFunc-lupdiv): Rename from `calcFunc-lupowerdiv'.
21512 (calcFunc-lufdiv): Rename from `calcFunc-lufielddiv'.
21513
21514 * calc/calc-ext.el (calc-init-extensions): Update the names of the
21515 functions being autoloaded.
21516
21517 * calc/calc.el (calc-lu-power-reference): Rename from
21518 `calc-logunits-power-reference'.
21519 (calc-lu-field-reference): Rename from
21520 `calc-logunits-field-reference'.
21521
21522 * calc/calc-help.el (calc-l-prefix-help):
21523 Mention musical note functions.
21524
21525 2011-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
21526
21527 * minibuffer.el (completion-all-sorted-completions):
21528 Use :completion-cycle-penalty text property if present.
21529
21530 2011-03-16 Ken Manheimer <ken.manheimer@gmail.com>
21531
21532 * allout.el (allout-yank-processing): Adjust for new rebulleting
21533 regime so bullet being yanked is used without prompting the user
21534 for a choice.
21535
21536 2011-03-16 Juanma Barranquero <lekktu@gmail.com>
21537
21538 * startup.el (command-line): Warn the user that _emacs is deprecated.
21539
21540 2011-03-16 Juanma Barranquero <lekktu@gmail.com>
21541
21542 * progmodes/delphi.el (delphi-search-path, delphi-indent-level)
21543 (delphi-verbose, delphi-comment-face, delphi-string-face)
21544 (delphi-keyword-face, delphi-ignore-changes, delphi-indent-line)
21545 (delphi-mode-abbrev-table, delphi-debug-buffer, delphi-tab)
21546 (delphi-find-unit, delphi-find-current-xdef, delphi-fill-comment)
21547 (delphi-new-comment-line, delphi-font-lock-defaults)
21548 (delphi-debug-mode-map, delphi-mode-syntax-table, delphi-mode):
21549 Fix typos in docstrings.
21550
21551 2011-03-15 Ken Manheimer <ken.manheimer@gmail.com>
21552
21553 * allout.el (allout-make-topic-prefix, allout-rebullet-heading):
21554 Invert the roles of character and string values for INSTEAD, so a
21555 string is used for the more common case of a defaulting prompt.
21556
21557 2011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
21558
21559 * progmodes/ruby-mode.el (ruby-backward-sexp):
21560 * progmodes/ebrowse.el (ebrowse-draw-file-member-info):
21561 * play/gamegrid.el (gamegrid-make-face):
21562 * play/bubbles.el (bubbles--grid-width, bubbles--grid-height)
21563 (bubbles--colors, bubbles--shift-mode, bubbles--initialize-images):
21564 * notifications.el (notifications-notify):
21565 * net/xesam.el (xesam-search-engines):
21566 * net/quickurl.el (quickurl-list-insert):
21567 * vc/vc-hg.el (vc-hg-dir-printer): Fix use of case.
21568
21569 2011-03-15 Chong Yidong <cyd@stupidchicken.com>
21570
21571 * startup.el (command-line): Update package subdirectory regexp.
21572
21573 2011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
21574
21575 * allout.el (allout-abbreviate-flattened-numbering)
21576 (allout-mode-deactivate-hook): Fix up obsolescence "date".
21577
21578 * subr.el (read-char-choice): Only show the cursor after the prompt,
21579 not after the answer.
21580
21581 2011-03-15 Kevin Ryde <user42@zip.com.au>
21582
21583 * help-fns.el (variable-at-point): Skip leading quotes, if any
21584 (bug#8253).
21585
21586 2011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
21587
21588 * emacs-lisp/bytecomp.el (byte-compile-save-excursion): Change the
21589 warning message.
21590
21591 2011-03-14 Michael Albinus <michael.albinus@gmx.de>
21592
21593 * shell.el (shell): When called interactively, offer to change the
21594 shell file name on remote hosts.
21595
21596 2011-03-13 Teodor Zlatanov <tzz@lifelogs.com>
21597
21598 * net/ldap.el (ldap-search-internal): Add `auth-source-search'
21599 integration for LDAP parameters. The host, base, user or binddn,
21600 and secret tokens can be specified in a netrc file, for instance.
21601 This is optional because an `auth-source' parameter must be
21602 specified in the search attributes.
21603
21604 2011-03-13 Juanma Barranquero <lekktu@gmail.com>
21605
21606 * help.el (describe-mode): Link to the mode's definition (bug#8185).
21607
21608 2011-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
21609
21610 * ebuff-menu.el (electric-buffer-menu-mode-map): Move initialization
21611 into declaration. Remove redundant and harmful binding.
21612
21613 2011-03-12 Eli Zaretskii <eliz@gnu.org>
21614
21615 * files.el (file-ownership-preserved-p): Pass `integer' as an
21616 explicit 2nd argument to `file-attributes'. If the file's owner
21617 is the Administrators group on Windows, and the current user is
21618 Administrator, consider that a match.
21619
21620 * server.el (server-ensure-safe-dir): Consider server directory
21621 safe on MS-Windows if its owner is the Administrators group while
21622 the current Emacs user is Administrator. Use `=' to compare
21623 numerical UIDs, since they could be integers or floats.
21624
21625 2011-03-12 Juanma Barranquero <lekktu@gmail.com>
21626
21627 * vc/vc-bzr.el (vc-bzr-state): Handle bzr 2.3.0 (follow-up to bug#8170).
21628
21629 2011-03-12 Michael Albinus <michael.albinus@gmx.de>
21630
21631 Sync with Tramp 2.2.1.
21632
21633 * net/tramp-sh.el (tramp-methods): Exchange "%k" marker with options.
21634
21635 * net/trampver.el: Update release number.
21636
21637 2011-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
21638
21639 * progmodes/compile.el (compilation--previous-directory): Fix up
21640 various nil/dead-marker mismatches (bug#8014).
21641 (compilation-directory-properties, compilation-error-properties):
21642 Don't call it at a position past the one we're about to change.
21643
21644 * emacs-lisp/bytecomp.el (byte-compile-make-obsolete-variable):
21645 Disable obsolescence warnings in the file that declares it.
21646
21647 2011-03-11 Ken Manheimer <ken.manheimer@gmail.com>
21648
21649 * allout-widgets.el (allout-widgets-tally):
21650 Initialize allout-widgets-tally as a hash table rather than nil to
21651 prevent mode-line redisplay warnings. Also, clarify the module
21652 description and fix a comment typo.
21653
21654 2011-03-11 Juanma Barranquero <lekktu@gmail.com>
21655
21656 * help-fns.el (describe-variable): Don't complete keywords.
21657 Suggested by Teodor Zlatanov <tzz@lifelogs.com>.
21658
21659 2011-03-10 Chong Yidong <cyd@stupidchicken.com>
21660
21661 * emacs-lisp/package.el (package-version-join): Impose a standard
21662 string representation for pre/alpha/beta version lists.
21663 (package-unpack-single): Standardize the directory name by passing
21664 it through package-version-join.
21665 (package-strip-rcs-id): Accept any version string that does not
21666 signal an error in version-to-list.
21667
21668 2011-03-10 Michael Albinus <michael.albinus@gmx.de>
21669
21670 * simple.el (delete-trailing-whitespace): Return nil for the
21671 benefit of `write-file-functions'.
21672
21673 2011-03-10 Glenn Morris <rgm@gnu.org>
21674
21675 * vc/vc-hg.el (vc-hg-pull, vc-hg-merge-branch): Use vc-hg-program.
21676
21677 * vc/vc-git.el (vc-git-program): New option.
21678 (vc-git-branches, vc-git-pull, vc-git-merge-branch, vc-git-command)
21679 (vc-git--call): Use it.
21680
21681 * eshell/esh-util.el (eshell-condition-case): Doc fix.
21682
21683 * cus-edit.el (Custom-newline): If no button at point, look
21684 for a subgroup button at start-of-line. (Bug#2298)
21685
21686 * mail/rmail.el (rmail-msgend, rmail-msgbeg): Doc fixes.
21687
21688 2011-03-10 Julien Danjou <julien@danjou.info>
21689
21690 * avoid.el (mouse-avoidance-ignore-p): Do not move the cursor if
21691 `cursor-type' is nil.
21692
21693 2011-03-09 Jay Belanger <jay.p.belanger@gmail.com>
21694
21695 * calc/calc.el (calc-mode-map): Don't bind "C-_" to `calc-missing-key'.
21696
21697 2011-03-09 Ken Manheimer <ken.manheimer@gmail.com>
21698
21699 * allout.el: Change so yank of distinctive-bullet items
21700 preserves the existing header prefix, rebulleting it if necessary,
21701 rather than replacing it. This is necessary for proper operation
21702 of cooperative addons like allout-widgets.
21703 (allout-make-topic-prefix, allout-rebullet-heading):
21704 Change SOLICIT arg to INSTEAD, and interpret additionally a string
21705 value as alternate bullet to be used, instead of prompting the user
21706 for a bullet character.
21707
21708 2011-03-09 Michael Albinus <michael.albinus@gmx.de>
21709
21710 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
21711 Do not use `tramp-file-name-port', because this returns also
21712 `tramp-default-port'.
21713
21714 2011-03-09 Deniz Dogan <deniz.a.m.dogan@gmail.com>
21715
21716 * net/rcirc.el (rcirc-handler-001): Remove useless
21717 with-rcirc-process-buffer.
21718 (rcirc-check-auth-status): Swap arguments to string-match.
21719
21720 2011-03-09 Glenn Morris <rgm@gnu.org>
21721
21722 * shell.el (shell-mode):
21723 Set comint-input-ring-size from HISTSIZE. (Bug#7889)
21724
21725 * progmodes/gdb-mi.el (gdb): Improve 2010-12-08 change.
21726 Check for GDBHISTFILE, HISTSIZE, etc. (Bug#7889)
21727
21728 2011-03-08 Chong Yidong <cyd@stupidchicken.com>
21729
21730 * emacs-lisp/package.el (package-refresh-contents)
21731 (package-menu-execute): Use condition-case-no-debug.
21732
21733 2011-03-08 Michael Albinus <michael.albinus@gmx.de>
21734
21735 * simple.el (shell-command-to-string): Use `process-file'.
21736
21737 * emacs-lisp/package.el (package-tar-file-info): Handle also
21738 remote files.
21739
21740 * emacs-lisp/package-x.el (package-upload-buffer-internal):
21741 Use `equal' for upload base check.
21742
21743 2011-03-08 Arni Magnusson <arnima@hafro.is> (tiny change)
21744
21745 * textmodes/texinfo.el (texinfo-environments):
21746 Add deftypecv, deftypeivar, deftypemethod, deftypeop, html. (Bug#2783)
21747
21748 2011-03-08 Glenn Morris <rgm@gnu.org>
21749
21750 * cus-start.el (cursor-in-non-selected-windows):
21751 Fix :set quoting oddness. (Bug#8192)
21752
21753 * font-lock.el (lisp-font-lock-keywords-1): Don't highlight `)'
21754 in some setf expressions. (Bug#2159)
21755
21756 2011-03-08 Chong Yidong <cyd@stupidchicken.com>
21757
21758 * custom.el (custom-available-themes): Return themes in
21759 alphabetical order.
21760
21761 See ChangeLog.15 for earlier changes.
21762
21763 ;; Local Variables:
21764 ;; coding: utf-8
21765 ;; End:
21766
21767 Copyright (C) 2011-2013 Free Software Foundation, Inc.
21768
21769 This file is part of GNU Emacs.
21770
21771 GNU Emacs is free software: you can redistribute it and/or modify
21772 it under the terms of the GNU General Public License as published by
21773 the Free Software Foundation, either version 3 of the License, or
21774 (at your option) any later version.
21775
21776 GNU Emacs is distributed in the hope that it will be useful,
21777 but WITHOUT ANY WARRANTY; without even the implied warranty of
21778 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21779 GNU General Public License for more details.
21780
21781 You should have received a copy of the GNU General Public License
21782 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.