]> code.delx.au - gnu-emacs/blob - lisp/ChangeLog
* progmodes/python.el: Explain how to restore "cc-mode"-like
[gnu-emacs] / lisp / ChangeLog
1 2013-02-14 Fabián Ezequiel Gallina <fgallina@cuca>
2
3 * progmodes/python.el: Explain how to restore "cc-mode"-like
4 forward-sexp movement in header documentation (Bug#13642).
5 (python-nav--forward-sexp): Behave like emacs-lisp-mode in
6 comments and strings (GH bug 114).
7
8 2013-02-13 Fabián Ezequiel Gallina <fgallina@cuca>
9
10 * progmodes/python.el (python-info-current-defun): Fix current
11 defun detection (Bug#13618).
12
13 2013-02-13 Chong Yidong <cyd@gnu.org>
14
15 * xml.el (xml-parse-string): Fix typo in handling of bad character
16 references.
17
18 2013-02-10 Michael Albinus <michael.albinus@gmx.de>
19
20 * net/ange-ftp.el (ange-ftp-make-directory): Don't raise an error,
21 if DIR exists and PARENTS is non-nil.
22
23 2013-02-09 Chong Yidong <cyd@gnu.org>
24
25 * mail/emacsbug.el (report-emacs-bug): Change binding of
26 report-emacs-bug-insert-to-mailer to C-c M-i (Bug#13510).
27
28 2013-02-02 Alan Mackenzie <acm@muc.de>
29
30 Fix bug in the state cache mechanism. Remove 'BOD "strategy". Refactor.
31 * progmodes/cc-engine.el (c-get-fallback-scan-pos): Remove.
32 (c-parse-state-get-strategy): Don't return 'BOD any more.
33 (c-append-lower-brace-pair-to-state-cache): Extra parameter HERE
34 instead of narrowing. Widen to top of buffer before searching
35 backwards for a brace pair.
36 (c-state-push-any-brace-pair): Add HERE parameter to function
37 call.
38 (c-append-to-state-cache): Extra parameter HERE in place of
39 narrowing. Narrow to parameter HERE, in place of being called
40 narrowed.
41 (c-remove-stale-state-cache): Extra parameter HERE in place of
42 narrowing. Check there's an open brace in the cache before
43 searching for its match.
44 (c-invalidate-state-cache-1): Add HERE parameter to function call.
45 (c-parse-state-1): Don't narrow here for 'forward strategy,
46 instead passing extra parameter HERE to several functions. Remove
47 'BOD strategy.
48
49 2013-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
50
51 * mouse.el (mouse-drag-track): Always deactivate the mark before
52 running the final event's command since that command is in charge of
53 activating the mark if needed (bug#13523).
54
55 2013-02-01 Juri Linkov <juri@jurta.org>
56
57 * replace.el (perform-replace): Move let-bindings of isearch-*
58 variables deeper to the loop that searches for the next match.
59 Add bindings for `isearch-nonincremental' and `isearch-adjusted'.
60 Use `isearch-search-fun-default' instead of `isearch-search-fun'.
61 (Bug#13579)
62
63 * isearch.el (isearch-search-fun-default): Check for null
64 first element of isearch-cmds as a precaution when it's used
65 with inactive isearch.
66
67 2013-02-01 Andrew W. Nosenko <andrew.w.nosenko@gmail.com> (tiny change)
68
69 * net/tramp.el (tramp-check-for-regexp): Avoid "Args out of range"
70 error when buffer in question is narrowed so position 1 is out of
71 visible part.
72
73 2013-01-31 Glenn Morris <rgm@gnu.org>
74
75 * textmodes/remember.el (remember-clipboard): Doc fix.
76
77 2013-01-30 Stefan Monnier <monnier@iro.umontreal.ca>
78
79 * progmodes/make-mode.el (makefile-fill-paragraph): Reset syntax-table
80 properties (bug#13179).
81
82 2013-01-30 Glenn Morris <rgm@gnu.org>
83
84 * mouse.el (mouse-drag-line): Avoid pushing same event onto
85 unread-command-events twice in some cases. This tries to implement
86 the 2012-07-26 changes in a different way. (Bug#13560)
87
88 2013-01-30 Fabián Ezequiel Gallina <fgallina@cuca>
89
90 * progmodes/python.el
91 (python-pdbtrack-comint-output-filter-function): Enhancements on
92 stacktrace detection. (thanks @gnovak)
93
94 2013-01-30 Glenn Morris <rgm@gnu.org>
95
96 * imenu.el (imenu-default-create-index-function):
97 Put back a version of the infinite loop test removed 2013-01-23.
98
99 2013-01-28 Fabián Ezequiel Gallina <fgallina@cuca>
100
101 * progmodes/python.el (python-shell-parse-command):
102 Find python-shell-interpreter with modified environment.
103
104 2013-01-26 Stefan Monnier <monnier@iro.umontreal.ca>
105
106 * emacs-lisp/cl.el (cl-set-getf): Add compatibility alias.
107
108 2013-01-24 Fabián Ezequiel Gallina <fgallina@cuca>
109
110 * progmodes/python.el: Enhancements to header documentation about
111 skeletons. (Bug#5716)
112
113 2013-01-23 Fabián Ezequiel Gallina <fgallina@cuca>
114
115 * imenu.el (imenu-default-create-index-function): Remove useless
116 infinite loop check. (Bug#13438)
117
118 2013-01-23 Alan Mackenzie <acm@muc.de>
119
120 Fix a bug in the state cache mechanism. Refactor this a bit.
121
122 * progmodes/cc-engine.el (c-parse-state-get-strategy): Remove the
123 `cache-pos' element from the return value.
124 (c-append-lower-brace-pair-to-state-cache): "Narrow" to end of
125 buffer to enable proper searching from beyond HERE. Amend the
126 test for detecting the sought brace pair. Amend the value written
127 to the "brace desert cache" when the brace isn't found.
128 (c-remove-stale-state-cache): Rename `good-pos' to `start-point',
129 and several other variables analogously.
130 (c-remove-stale-state-cache-backwards): Change `cache-pos' from a
131 parameter to a locally calculated variable.
132 (c-parse-state-1): Change the calling conventions to the two
133 defuns involving `cache-pos'.
134
135 2013-01-23 Chong Yidong <cyd@gnu.org>
136
137 * xml.el (xml-entity-or-char-ref-re): Fix regexp.
138
139 2013-01-18 Leo Liu <sdl.web@gmail.com>
140
141 * dired.el (dired-get-marked-files): Prune erroneous values due to
142 last change. (Bug#13152)
143
144 2013-01-17 Glenn Morris <rgm@gnu.org>
145
146 * progmodes/etags.el (tags-table-check-computed-list):
147 Preserve point in tags buffer. (Bug#13412)
148
149 2013-01-16 Glenn Morris <rgm@gnu.org>
150
151 * emacs-lisp/lisp-mode.el (lisp-indent-function): Doc fix.
152
153 * mail/rmailmm.el (rmail-insert-mime-forwarded-message):
154 Revert 2012-12-29 change. Ref:
155 <http://lists.gnu.org/archive/html/emacs-devel/2013-01/msg00360.html>
156
157 2013-01-10 Fabián Ezequiel Gallina <fgallina@cuca>
158
159 * progmodes/python.el (python-nav-end-of-statement):
160 Fix cornercase when handling multiline strings.
161
162 2013-01-10 Glenn Morris <rgm@gnu.org>
163
164 * emacs-lisp/authors.el (authors-ignored-files)
165 (authors-valid-file-names, authors-renamed-files-alist):
166 Add some more entries.
167
168 2013-01-09 Stefan Monnier <monnier@iro.umontreal.ca>
169
170 * image-mode.el (image-mode-winprops): Don't throw away the fallback
171 `t' pseudo-window entry.
172
173 2013-01-09 Alan Mackenzie <acm@muc.de>
174
175 Fix bugs in the c-parse-state mechanism. Reuse some markers
176 instead of continually generating new ones.
177
178 * progmodes/cc-engine.el (c-state-old-cpp-beg-marker)
179 (c-state-old-cpp-end-marker): New variables.
180 (c-append-lower-brace-pair-to-state-cache): Start a backward
181 search for "}" definitively outside CPP constructs.
182 (c-remove-stale-state-cache): Inform the caller of a need to
183 search back for a brace pair in certain circumstances.
184 (c-state-maybe-marker): New macro.
185 (c-parse-state): Reuse markers when appropriate.
186
187 2013-01-09 Glenn Morris <rgm@gnu.org>
188
189 * simple.el (execute-extended-command): Doc fix.
190 Bind prefix-arg around read-extended-command, for prompt. (Bug#13395)
191
192 2013-01-09 Chong Yidong <cyd@gnu.org>
193
194 * faces.el (read-face-name): Doc fix.
195
196 2013-01-09 Glenn Morris <rgm@gnu.org>
197
198 * emacs-lisp/trace.el (trace-function, trace-function-background):
199 Doc fix.
200
201 2013-01-09 Juri Linkov <juri@jurta.org>
202
203 * international/mule-cmds.el (read-char-by-name): Move let-binding
204 of completion-ignore-case around completing-read to fix regression
205 exhibited by the test case `C-x 8 RET *acc TAB' and caused by
206 `string-match-p' using the nil value of `case-fold-search' and
207 `completion-ignore-case' in `completion-pcm--all-completions'.
208 (Bug#12615).
209
210 2013-01-07 Glenn Morris <rgm@gnu.org>
211
212 * progmodes/compile.el (compilation-parse-errors):
213 Fix typo. (Bug#13369)
214
215 2013-01-07 Vitalie Spinu <spinuvit@gmail.com> (tiny change)
216
217 * comint.el (comint-send-input): Check size of buffer before
218 waiting for process output, in case already accepted. (Bug#13290)
219
220 2013-01-04 Michael Albinus <michael.albinus@gmx.de>
221
222 * net/tramp-sh.el (tramp-set-file-uid-gid): UID and GID must be
223 non-negative integers. Otherwise, the default values are used.
224 (tramp-convert-file-attributes): Convert uid and gid to integers.
225
226 2013-01-03 Glenn Morris <rgm@gnu.org>
227
228 * term.el (term-handle-colors-array): Ensure face attributes
229 are fully specified, not nil. (Bug#13337)
230
231 * term.el (term-default-fg-color, term-default-bg-color):
232 Fix custom type.
233
234 * progmodes/etags.el (tags-compression-info-list): Doc fix.
235 (tag-find-file-of-tag-noselect): Check auto-compression-mode
236 rather than 'jka-compr being loaded. (Bug#13338)
237
238 * subr.el (eval-after-load): Don't purecopy the form, so that it
239 can be nconc'd later on; reverts 2009-11-11 change. (Bug#13331)
240
241 * emacs-lisp/byte-run.el (defun): Place cl declarations
242 after any interactive spec. (Bug#13265)
243
244 2012-12-31 Andreas Schwab <schwab@linux-m68k.org>
245
246 * emacs-lisp/byte-run.el (defmacro): Use same argument parsing as
247 defun. Don't check for DECL if DOCSTRING isn't a string.
248 (defun): Likewise.
249
250 2012-12-31 Glenn Morris <rgm@gnu.org>
251
252 * eshell/em-cmpl.el (eshell-pcomplete):
253 More thoroughly imitate pcomplete. (Bug#13293)
254
255 * files.el (parse-colon-path): Doc fix. (Bug#12351)
256 Return nil for empty path elements. (Bug#13296)
257
258 2012-12-31 Fabián Ezequiel Gallina <fgallina@cuca>
259
260 * progmodes/python.el (python-nav-end-of-statement): Rewrite in
261 order to improve efficiency (Based on Daniel Colascione's
262 <dancol@dancol.org> patch). (Bug#13182)
263
264 2012-12-31 Glenn Morris <rgm@gnu.org>
265
266 * vc/log-edit.el (log-edit-header-contents-regexp): Add doc string.
267
268 2012-12-31 Fabián Ezequiel Gallina <fgallina@cuca>
269
270 * progmodes/python.el: Support other commands triggering
271 python-indent-line so indentation cycling continues to work.
272 (python-indent-trigger-commands): New defcustom.
273 (python-indent-line): Use it.
274
275 2012-12-31 Fabián Ezequiel Gallina <fgallina@cuca>
276
277 * progmodes/python.el (python-shell-send-region): Add blank lines
278 for non sent code so backtraces remain correct.
279
280 2012-12-31 Andreas Schwab <schwab@linux-m68k.org>
281
282 * emacs-lisp/byte-run.el (defmacro): Don't lose final nil if
283 neither DOCSTRING nor DECL was given. (Bug#13316)
284
285 2012-12-30 Glenn Morris <rgm@gnu.org>
286
287 * net/mairix.el (rmail, rmail-summary-displayed, rmail-summary):
288 Remove unnecessary/buggy autoloads (missing interactive). (Bug#13294)
289 (rmail-summary-displayed, rmail-summary): Declare.
290 (mairix-rmail-display): Just require rmail.
291
292 2012-12-29 Chong Yidong <cyd@gnu.org>
293
294 * emacs-lisp/package.el (package-untar-buffer): Improve integrity
295 check for the tarball contents.
296
297 2012-12-29 Matt Fidler <matt.fidler@alcon.com> (tiny change)
298
299 * emacs-lisp/package.el (package-untar-buffer): Handle problematic
300 tarfile content listings (Bug#13136).
301
302 2012-12-29 Mark Lillibridge <mark.lillibridge@hp.com>
303
304 * mail/rmailmm.el (rmail-insert-mime-forwarded-message):
305 Insert the undecoded text of the message being forwarded. (Bug#9521)
306
307 2012-12-28 Michael Albinus <michael.albinus@gmx.de>
308
309 * net/tramp-sh.el (tramp-set-file-uid-gid): Convert UID and GID to
310 integers, if they are real numbers. (Bug#13282)
311
312 2012-12-26 Dmitry Gutov <dgutov@yandex.ru>
313
314 * progmodes/ruby-mode.el (ruby-indent-beg-re): Only allow "class",
315 "module" and "def" to have indentation before them.
316 Regression from 109911 (see the new test).
317
318 2012-12-24 Dmitry Gutov <dgutov@yandex.ru>
319
320 * progmodes/ruby-mode.el: Bump the version to 1.2 (Bug#13200).
321
322 2012-12-23 Alan Mackenzie <acm@muc.de>
323
324 Speed up fontification where there's large brace blocks.
325 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls): Add a limit
326 to a call of c-beginning-of-decl-1.
327
328 2012-12-21 Chong Yidong <cyd@gnu.org>
329
330 * sort.el (sort-subr): Doc fix (Bug#13056).
331
332 2012-12-20 Bastien Guerry <bzg@gnu.org>
333
334 * progmodes/etags.el (tags-search): Fix typo. Bug #13232.
335
336 2012-12-11 Alan Mackenzie <acm@muc.de>
337
338 Make CC Mode not hang when _some_ lines end in CRLF. Bug #11841.
339 * progmodes/cc-engine.el (c-backward-comments): Add code to work
340 around `forward-comment' not recognizing ^M as whitespace.
341
342 2012-12-11 Fabián Ezequiel Gallina <fgallina@cuca>
343
344 * progmodes/python.el (python-skeleton-class)
345 (python-skeleton-def): Do not add space after defun name.
346
347 2012-12-09 Chong Yidong <cyd@gnu.org>
348
349 * simple.el (set-mark-default-inactive): Mark as obsolete, for
350 removal after 24.3.
351
352 2012-12-08 Dani Moncayo <dmoncayo@gmail.com>
353
354 * simple.el (just-one-space): Doc fix.
355
356 2012-12-07 Eli Zaretskii <eliz@gnu.org>
357
358 * textmodes/texinfo.el (texinfo-enable-quote-envs):
359 Add "smallexample".
360
361 2012-12-07 Le Wang <l26wang@gmail.com>
362
363 * hilit-chg.el (hilit-chg-set-face-on-change): Don't burp in
364 narrowed buffer (bug#12361).
365
366 2012-12-07 Michael Heerdegen <michael_heerdegen@web.de>
367
368 * emacs-lisp/debug.el (debug): Fix hard-coded frame counts (bug#10025).
369 Virtually backported from trunk.
370
371 2012-12-07 Juanma Barranquero <lekktu@gmail.com>
372
373 * vc/vc-hooks.el (vc-state): Doc fix.
374
375 2012-12-06 Glenn Morris <rgm@gnu.org>
376
377 * mail/rmail.el (rmail-maybe-display-summary):
378 Preserve buffer, in case select-window changes it. (Bug#13066)
379
380 2012-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
381
382 * emacs-lisp/cl.el, emacs-lisp/cl-lib.el: Move cl-unload-function and
383 cl-load-hook where they belong.
384
385 2012-12-06 Chong Yidong <cyd@gnu.org>
386
387 * ffap.el (ffap-replace-file-component): Fix typo.
388
389 2012-12-05 Stefan Monnier <monnier@iro.umontreal.ca>
390
391 * progmodes/octave-mod.el (octave-mark-block): Move out of tokens and
392 fix open-paren-like token test (bug#12785).
393
394 2012-12-04 Glenn Morris <rgm@gnu.org>
395
396 * mail/rmailsum.el (rmail-new-summary): Tweak for
397 rmail-maybe-display-summary changing buffer. (Bug#13066)
398
399 2012-12-03 Juri Linkov <juri@jurta.org>
400
401 * info.el (Info-fontify-node): Don't hide the last newline.
402 (Bug#12272)
403
404 2012-12-01 Leo Liu <sdl.web@gmail.com>
405
406 * files.el (dir-locals-read-from-file): Check file non-empty
407 before reading. (Bug#13038)
408
409 2012-11-28 Glenn Morris <rgm@gnu.org>
410
411 * jka-cmpr-hook.el (jka-compr-get-compression-info):
412 Remove any version extension before checking filename. (Bug#13006)
413 (jka-compr-compression-info-list): Belated :version bump.
414
415 2012-11-28 Chong Yidong <cyd@gnu.org>
416
417 * simple.el (transient-mark-mode): Doc fix (Bug#11523).
418
419 * buff-menu.el (Buffer-menu-delete-backwards, Buffer-menu-mode)
420 (buffer-menu): Doc fix (Bug#12294).
421
422 2012-11-27 Roland Winkler <winkler@gnu.org>
423
424 * calendar/diary-lib.el (diary-header-line-format): Use keybinding
425 of diary-show-all-entries in the diary buffer (Bug#12994).
426
427 2012-11-27 Michael Albinus <michael.albinus@gmx.de>
428
429 * net/tramp-sh.el (tramp-perl-encode): Use "read STDIN" instead of
430 "<STDIN>". This is binary safe.
431
432 2012-11-27 Stefan Monnier <monnier@iro.umontreal.ca>
433
434 * textmodes/table.el (table-insert): Don't use `symbol-name' on
435 lexically scoped variables (bug#13005).
436
437 2012-11-26 Glenn Morris <rgm@gnu.org>
438
439 * vc/vc-hooks.el (vc-mistrust-permissions):
440 Default to t, to avoid data-loss. (Bug#11490)
441
442 2012-11-26 Fabián Ezequiel Gallina <fgallina@cuca>
443
444 * progmodes/python.el (python-indent-guess-indent-offset):
445 If indentation is guessed make python-indent-offset buffer-local.
446
447 Fix Imenu regression.
448 * progmodes/python.el (python-nav-beginning-of-defun):
449 Fix forward movement when statement(s) separates point from defun.
450 (python-imenu-prev-index-position): New function.
451
452 2012-11-26 Eli Zaretskii <eliz@gnu.org>
453
454 * subr.el (buffer-file-type): Declare with defvar-local. Doc fix.
455
456 * dos-w32.el (find-file-not-found-set-buffer-file-coding-system):
457 Don't set buffer-file-type. Return nil. (Bug#12989)
458
459 2012-11-26 Glenn Morris <rgm@gnu.org>
460
461 * hippie-exp.el (hippie-expand-try-functions-list):
462 Re-autoload it. (Bug#12982)
463
464 2012-11-25 Eli Zaretskii <eliz@gnu.org>
465
466 * descr-text.el (describe-char-padded-string):
467 Call internal-char-font only on GUI frames. (Bug#11964)
468
469 2012-11-24 Andreas Schwab <schwab@linux-m68k.org>
470
471 * buff-menu.el (Buffer-menu-buffer+size-width): Fix customize type
472 and obsoletion message.
473
474 2012-11-24 Stefan Monnier <monnier@iro.umontreal.ca>
475
476 * emacs-lisp/cl-macs.el (cl--transform-lambda): Add back `declare' in
477 the constructs to keep outside of the `cl-block' (bug#12977).
478
479 2012-11-24 Chong Yidong <cyd@gnu.org>
480
481 * mouse.el (mouse-drag-line): Even if the line is not draggable,
482 keep reading until we get the up-event anyway, in order to process
483 the up-event for mouse-1-click-follows-link (Bug#12971).
484
485 2012-11-23 Stefan Monnier <monnier@iro.umontreal.ca>
486
487 * emacs-lisp/bytecomp.el (byte-compile-file): Setup default value for
488 lexical-binding (bug#12938).
489
490 2012-11-23 Wolfgang Jenkner <wjenkner@inode.at>
491
492 * image-mode.el (image-transform-check-size): Use assertions only
493 for images of type imagemagick.
494
495 Otherwise no error, image-transform-fit-to-{width,height} is
496 silently ignored, as before. Doc fix.
497
498 2012-11-23 Chong Yidong <cyd@gnu.org>
499
500 * faces.el (color-defined-p): Doc fix (Bug#12853).
501
502 2012-11-23 Juri Linkov <juri@jurta.org>
503
504 * dired.el (dired-mark): Add optional arg `interactive'.
505 Check for `use-region-p' if `interactive' is non-nil.
506 (dired-unmark, dired-flag-file-deletion): Add optional arg
507 `interactive'. Call `dired-mark' with the arg `interactive'.
508 (Bug#10624)
509
510 2012-11-23 Juri Linkov <juri@jurta.org>
511
512 * wdired.el: Revert 2012-10-17 change partly and replace it with
513 Patch by Christopher Schmidt <christopher@ch.ristopher.com>.
514 (wdired-finish-edit): Add marks for new file names to
515 `wdired-old-marks'. Restore marks using `dired-mark-remembered'
516 after `revert-buffer'.
517 (wdired-do-renames): Remove calls to `dired-remove-file',
518 `dired-add-file', `dired-add-entry'. (Bug#11795)
519
520 2012-11-21 Alan Mackenzie <acm@muc.de>
521
522 * progmodes/cc-defs.el (c-version): Bump to 5.32.4.
523
524 Fix bugs in the state cache. Enhance a debugging mechanism.
525 * progmodes/cc-engine.el (c-parse-state-get-strategy): Don't use
526 "brace at column zero" strategy for C++.
527 (c-append-lower-brace-pair-to-state-cache): Repair algorithm.
528 (c-parse-state-point): New variable.
529 (c-record-parse-state-state): Record old parse state with
530 `copy-tree'. Record previous value of point.
531 (c-debug-parse-state-double-cons): New debugging function.
532 (c-debug-parse-state): Call the above new function.
533 (c-toggle-parse-state-debug): Output a confirmatory message.
534
535 * progmodes/cc-mode.el (c-before-change, c-after-change):
536 Call c-invalidate-state-cache from `c-before-change' instead of
537 `c-after-change'.
538
539 2012-11-20 Daniel Colascione <dancol@dancol.org>
540
541 * term/w32-win.el (cygwin-convert-path-from-windows):
542 Accomodate rename of cygwin_convert_path* to cygwin_convert_file_name*.
543 This change is a backport from trunk.
544
545 2012-11-20 Eli Zaretskii <eliz@gnu.org>
546
547 * simple.el (line-move): Don't call line-move-partial if
548 scroll-conservatively is in effect. (Bug#12927)
549
550 2012-11-20 Michael Albinus <michael.albinus@gmx.de>
551
552 * net/trampver.el (tramp-version): Downgrade to 2.2.6-24.3, in
553 order to distinguish from trunk.
554
555 2012-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
556
557 * emacs-lisp/byte-run.el (defun-declarations-alist): Don't accept
558 non-symbols for compiler macros (yet).
559
560 * eshell/em-cmpl.el (eshell-pcomplete): Refine fix for bug#12838:
561 Fallback on completion-at-point rather than
562 pcomplete-expand-and-complete, and only if pcomplete actually failed.
563 (eshell-cmpl-initialize): Setup completion-at-point.
564
565 * pcomplete.el (pcomplete--entries): Obey pcomplete-ignore-case.
566
567 * emacs-lisp/ert.el (ert--expand-should-1): Adapt to cl-lib.
568
569 2012-11-19 Michael Albinus <michael.albinus@gmx.de>
570
571 * net/tramp-sh.el (tramp-do-copy-or-rename-file): If both files
572 are remote, check out-of-band property for both.
573
574 2012-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
575
576 * window.el (switch-to-buffer): Re-add the warning that was lost in the
577 code rewrite.
578
579 2012-11-18 Paul Eggert <eggert@cs.ucla.edu>
580
581 More minor time fixes.
582 * calendar/time-date.el: Commentary fix.
583 * net/tramp-sh.el (tramp-do-file-attributes-with-ls): Undo last change;
584 too much other code depends on (0 0) time stamps.
585 * net/tramp.el (tramp-time-less-p, tramp-time-subtract):
586 Add a couple of FIXME comments.
587
588 Minor cleanup for times as lists of four integers.
589 * files.el (dir-locals-directory-cache):
590 * ps-bdf.el (bdf-file-mod-time, bdf-read-font-info):
591 Doc fixes.
592 * net/tramp-sh.el (tramp-do-file-attributes-with-ls):
593 * ps-bdf.el (bdf-file-newer-than-time):
594 Process four-integers time stamps, not two. Doc fixes.
595
596 2012-11-18 Glenn Morris <rgm@gnu.org>
597
598 * image.el (insert-image, insert-sliced-image): Doc fix.
599
600 2012-11-17 Chong Yidong <cyd@gnu.org>
601
602 * emacs-lisp/syntax.el (syntax-propertize-function): Doc fix
603 (Bug#12810).
604
605 2012-11-17 OKAZAKI Tetsurou <okazaki.tetsurou@gmail.com> (tiny change)
606
607 * vc/vc-svn.el (vc-svn-merge-news): Properly parse the merge
608 response when the target file is in a subdirectory (Bug#12757).
609
610 2012-11-17 Chong Yidong <cyd@gnu.org>
611
612 * filecache.el (file-cache-add-file-list): Doc fix (Bug#12694).
613
614 2012-11-17 Glenn Morris <rgm@gnu.org>
615
616 * woman.el (woman-non-underline-faces):
617 * emacs-lisp/cl-lib.el (face-underline-p):
618 Use set-face-underline rather than the alias set-face-underline-p.
619
620 * window.el (with-temp-buffer-window): Doc fix.
621 * subr.el (with-output-to-temp-buffer):
622 Add doc xref to with-temp-buffer-window.
623
624 2012-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
625
626 * emacs-lisp/cl-lib.el: Set more meaningful version number.
627
628 2012-11-16 Martin Rudalics <rudalics@gmx.at>
629
630 * window.el (enlarge-window, shrink-window): Don't mention return
631 value in doc-string (Bug#12896).
632 (window--display-buffer): Don't resize frames - it won't work
633 with all window managers and defeat pop-up-frame-alist.
634 (display-buffer-alist): In doc-string explain that CONDITION can
635 be a function and which arguments are passed to it (Bug#12854).
636 (display-buffer-assq-regexp): New argument ACTION. Handle lambda
637 expressions (Bug#12854).
638 (display-buffer): Pass ACTION argument to
639 display-buffer-assq-regexp.
640
641 2012-11-16 Glenn Morris <rgm@gnu.org>
642
643 * window.el (fit-frame-to-buffer-bottom-margin)
644 (fit-frame-to-buffer, fit-window-to-buffer): Doc fixes.
645
646 * faces.el (face-underline-p): Use face-attribute-specified-or.
647
648 2012-11-15 Juanma Barranquero <lekktu@gmail.com>
649
650 * emacs-lisp/cl-macs.el (cl-loop, cl-do, cl-do*): Doc fixes.
651
652 2012-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
653
654 * emacs-lisp/cl-macs.el (cl-flet, cl-flet*): Fix docstring (bug#12895).
655
656 2012-11-15 Glenn Morris <rgm@gnu.org>
657
658 * eshell/em-cmpl.el (eshell-pcomplete): New command. (Bug#12838)
659 (eshell-cmpl-initialize): Bind eshell-pcomplete to TAB, C-i.
660
661 * faces.el (face-underline-p): Doc fix. Handle :underline being
662 things other than `t' (a string, a list).
663 (face-inverse-video-p): Doc fix.
664 (set-face-underline): Rename it back from set-face-underline-p.
665 Doc fix. Allow interactive input of values other than t.
666 (read-face-attribute): Apply formatting to :underline,
667 since like :box and :stipple it can take list values.
668
669 * term.el (ansi-term): Don't let C-x escape-char binding
670 clobber the more standard C-c binding. (Bug#12842)
671
672 2012-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
673
674 * emacs-lisp/gv.el (setf): Fix debug spec for multiple assignments
675 (bug#12879).
676
677 2012-11-14 Glenn Morris <rgm@gnu.org>
678
679 * subr.el (set-temporary-overlay-map): Doc fix.
680
681 2012-11-13 Martin Rudalics <rudalics@gmx.at>
682
683 * window.el (record-window-buffer)
684 (display-buffer-record-window): When copying the markers to
685 window-point preserve window-point-insertion-type. (Bug#12588)
686
687 2012-11-13 Glenn Morris <rgm@gnu.org>
688
689 * emacs-lisp/eieio-datadebug.el (eieio-debug-methodinvoke):
690 * net/tramp-gvfs.el (tramp-gvfs-dbus-event-error):
691 Use new names for hooks rather than obsolete aliases.
692
693 2012-11-12 Stefan Monnier <monnier@iro.umontreal.ca>
694
695 * emacs-lisp/gv.el (gv-define-simple-setter): One more fix (bug#12871).
696
697 2012-11-12 Wolfgang Jenkner <wjenkner@inode.at>
698
699 * ansi-color.el (ansi-color-apply-sequence): Implement SGR codes
700 39 and 49. This fixes bug#12792. Also, treat unimplemented
701 parameters as 0, thereby restoring the behavior of revisions prior
702 to 2012-08-15T03:33:55Z!monnier@iro.umontreal.ca.
703
704 2012-11-12 Fabián Ezequiel Gallina <fgallina@cuca>
705
706 Fix end-of-defun misbehavior.
707 * progmodes/python.el (python-nav-beginning-of-defun): Rename from
708 python-beginning-of-defun-function. Handle nested defuns
709 correctly.
710 (python-nav-end-of-defun): Rename from
711 python-end-of-defun-function. Ensure forward movement.
712 (python-info-current-defun): Reimplement to work as intended
713 with new fixed python-nav-{end,beginning}-of-defun. Stop scanning
714 parent defuns as soon as possible.
715
716 2012-11-12 Glenn Morris <rgm@gnu.org>
717
718 * progmodes/flymake.el (flymake-error-bitmap)
719 (flymake-warning-bitmap, flymake-fringe-indicator-position): Doc fixes.
720 (flymake-error-bitmap, flymake-warning-bitmap): Fix :types.
721
722 2012-11-12 Dmitry Gutov <dgutov@yandex.ru>
723
724 * progmodes/ruby-mode.el (ruby-move-to-block): When moving
725 backward, always stop at indentation. Reverts the change from
726 2012-08-12T22:06:56Z!monnier@iro.umontreal.ca (Bug#12851).
727
728 2012-11-11 Glenn Morris <rgm@gnu.org>
729
730 * ibuffer.el (ibuffer-mode-map, ibuffer-mode):
731 Add ibuffer-filter-by-derived-mode.
732
733 * ibuffer.el (ibuffer-mode-map): Don't have two menu items with
734 the same name shadowing each other.
735
736 * window.el (with-temp-buffer-window): Doc tweak.
737
738 * emacs-lisp/debug.el (debugger-bury-or-kill): Doc tweak.
739
740 * help.el (temp-buffer-max-height):
741 * window.el (fit-frame-to-buffer, fit-frame-to-buffer-bottom-margin):
742 * emacs-lisp/debug.el (debugger-bury-or-kill): Fix :version.
743
744 2012-11-10 Leo Liu <sdl.web@gmail.com>
745
746 * ido.el (ido-set-matches-1): Fix split-string args to avoid
747 performance issue. (Bug#12796)
748
749 2012-11-10 Glenn Morris <rgm@gnu.org>
750
751 * term.el (term-default-fg-color, term-default-bg-color):
752 Make obsolete, rather than just saying "deprecated" in the doc.
753
754 * term.el (term): Rename from `term-face'.
755 (term-current-face, ansi-term-color-vector)
756 (term-default-fg-color, term-default-bg-color, term-ansi-reset):
757 Update all users.
758
759 2012-11-09 Jan Djärv <jan.h.d@swipnet.se>
760
761 * server.el (server-create-window-system-frame): Improve comment.
762
763 2012-11-08 Jan Djärv <jan.h.d@swipnet.se>
764
765 * server.el (server-create-window-system-frame): Handle Nextstep
766 specially (Bug#12780).
767
768 2012-11-08 Glenn Morris <rgm@gnu.org>
769
770 * mail/emacsbug.el (report-emacs-bug-query-existing-bugs):
771 Unautoload, and make obsolete. (Bug#7449)
772
773 2012-11-08 Chong Yidong <cyd@gnu.org>
774
775 * vc/diff-mode.el (diff-delete-trailing-whitespace): Rewrite, and
776 rename from diff-remove-trailing-whitespace (Bug#12831).
777
778 2012-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
779
780 * emacs-lisp/advice.el: Require `cl-lib' at run-time to fix
781 miscompilation of trace.el.
782
783 2012-11-08 Glenn Morris <rgm@gnu.org>
784
785 * vc/diff-mode.el (diff-remove-trailing-whitespace): Doc fix.
786
787 2012-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
788
789 * emacs-lisp/gv.el (gv-define-simple-setter): Fix last change
790 (bug#12812).
791
792 2012-11-07 Chong Yidong <cyd@gnu.org>
793
794 * minibuf-eldef.el (minibuffer-eldef-shorten-default): Convert to
795 a defcustom with an appropriate :set function.
796 (minibuffer-default--in-prompt-regexps): New function.
797
798 2012-11-07 Glenn Morris <rgm@gnu.org>
799
800 * emacs-lisp/cl.el (define-setf-expander, defsetf)
801 (define-modify-macro): Doc fixes.
802
803 * emacs-lisp/gv.el (gv-letplace): Fix doc typo.
804 (gv-define-simple-setter): Update doc of `fix-return'.
805
806 2012-11-07 Stefan Monnier <monnier@iro.umontreal.ca>
807
808 * emacs-lisp/gv.el (gv-define-simple-setter): Don't evaluate `val'
809 twice when `fix-return' is set (bug#12813).
810
811 * emacs-lisp/cl.el (defsetf): Pass the third arg to
812 gv-define-simple-setter (bug#12812).
813
814 2012-11-06 Stefan Monnier <monnier@iro.umontreal.ca>
815
816 * woman.el (woman-decode-region): Disable adaptive-fill when rendering
817 (bug#12756).
818
819 2012-11-06 Glenn Morris <rgm@gnu.org>
820
821 * emacs-lisp/gv.el (gv-define-setter): Fix doc typo.
822
823 2012-11-05 Glenn Morris <rgm@gnu.org>
824
825 * emacs-lisp/cl-extra.el (cl-prettyexpand):
826 * emacs-lisp/cl-lib.el (cl-proclaim, cl-declaim):
827 * emacs-lisp/cl-macs.el (cl-destructuring-bind, cl-locally)
828 (cl-the, cl-compiler-macroexpand): Add basic doc strings.
829
830 * emacs-lisp/cl-extra.el (cl-maplist, cl-mapcan): Doc fix.
831
832 2012-11-03 Glenn Morris <rgm@gnu.org>
833
834 * emacs-lisp/cl-macs.el (cl-parse-loop-clause):
835 Rename handler properties back from cl-- to cl-. (Bug#12788)
836
837 * emacs-lisp/cl-macs.el (cl-do-all-symbols): Add doc string.
838
839 2012-11-03 Eli Zaretskii <eliz@gnu.org>
840
841 * term/pc-win.el: Don't load term/internal from here.
842
843 * loadup.el: Load term/internal from here.
844
845 2012-11-03 Fabián Ezequiel Gallina <fgallina@cuca>
846
847 * progmodes/python.el (inferior-python-mode): Fix hang in
848 jit-lock (Bug#12645).
849
850 2012-11-03 Martin Rudalics <rudalics@gmx.at>
851
852 * window.el (switch-to-visible-buffer)
853 (switch-to-buffer-preserve-window-point): Fix doc-strings.
854
855 2012-11-01 Stephen Berman <stephen.berman@gmx.net>
856
857 * play/gomoku.el (gomoku-display-statistics): Update mode line
858 only if in Gomoku buffer; don't capitalize "won" (Bug#12771).
859
860 2012-10-31 Martin Rudalics <rudalics@gmx.at>
861
862 * window.el (quit-restore-window): If the window has been
863 created on an existing frame and ended up as the sole window on
864 that frame, do not delete it (Bug#12764).
865
866 2012-10-31 Stefan Monnier <monnier@iro.umontreal.ca>
867
868 * progmodes/sh-script.el (sh--inside-noncommand-expression):
869 Rename from sh--inside-arithmetic-expression, handle more cases
870 (bug#11263).
871
872 * progmodes/sh-script.el (sh--inside-arithmetic-expression): New func.
873 (sh-font-lock-open-heredoc): Use it (bug#12770).
874
875 2012-10-30 Glenn Morris <rgm@gnu.org>
876
877 * emacs-lisp/cl-extra.el (cl-mapc): Add autoload cookie. Doc fix.
878
879 * emacs-lisp/cl.el (letf): Doc fix. (Bug#12760)
880
881 2012-10-29 Chong Yidong <cyd@gnu.org>
882
883 * isearch.el (isearch-other-meta-char): Ensure that a reprocessed
884 function key is stored in a keyboard macro (Bug#4894).
885
886 * thingatpt.el (number-at-point): Apply a thing-at-point property.
887
888 2012-10-29 Stefan Monnier <monnier@iro.umontreal.ca>
889
890 * vc/diff-mode.el (diff-context->unified): Don't get confused by "hunk
891 header comments".
892 (diff-unified->context, diff-context->unified)
893 (diff-reverse-direction, diff-fixup-modifs): Use `use-region-p'.
894
895 * emacs-lisp/cl.el (letf): Add missing indent rules (bug#12759).
896
897 * files.el (find-alternate-file): Only ask one question (bug#12487).
898
899 2012-10-29 Chong Yidong <cyd@gnu.org>
900
901 * vc/vc-hooks.el (vc-file-clearprops): Kill vc-parent-buffer.
902 Suggested by Dan Nicolaescu (Bug#6326).
903
904 * info.el (Info-complete-menu-item): Avoid duplicates (Bug#12705).
905
906 * startup.el (fancy-about-screen): Don't message (Bug#12680).
907
908 * thingatpt.el (thing-at-point): Doc fix (Bug#12691).
909
910 * imenu.el (imenu): Inhibit push-mark message (Bug#12726).
911
912 * face-remap.el (face-remap-add-relative): Handle the case where a
913 face-remapping-alist entry is a cons cell (Bug#12762).
914
915 2012-10-29 Kevin Ryde <user42@zip.com.au>
916
917 * woman.el (woman-parse-numeric-value): Handle picas correctly
918 (Bug#12639).
919
920 2012-10-29 Glenn Morris <rgm@gnu.org>
921
922 * emacs-lisp/cl.el (defsetf): Doc fix.
923
924 2012-10-29 Stefan Monnier <monnier@iro.umontreal.ca>
925
926 * progmodes/sh-script.el (sh-font-lock-paren): Also put punctuation
927 syntax to the matching opener, if any (bug#12547).
928 (sh-smie-sh-forward-token, sh-smie-sh-backward-token): Recognize this
929 matching open as a "case-(".
930 (sh-smie-rc-grammar): Add a corresponding rule for it.
931
932 2012-10-28 Daniel Hackney <dan@haxney.org>
933
934 * emacs-lisp/package.el (package-generate-autoloads): Kill buffer
935 "PKGNAME-autoloads.el" in case we created it.
936
937 2012-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
938
939 * minibuffer.el (completion--sifn-requote): Rewrite to handle things
940 like Tramp's "/foo:~bar//baz" -> "/scpc:foo:/baz" mapping (bug#11714).
941 (completion--twq-all): Disable too-strict assertions.
942
943 * tmm.el (tmm-prompt): Use map-keymap (bug#12744).
944
945 2012-10-27 Eli Zaretskii <eliz@gnu.org>
946
947 * profiler.el (profiler-report-make-entry-part): Fix help-echo
948 text to match the real keybindings.
949
950 2012-10-27 Juri Linkov <juri@jurta.org>
951
952 * wdired.el (wdired-keep-marker-rename): New defcustom.
953 (wdired-do-renames): Use it instead of `dired-keep-marker-rename'.
954 (Bug#11795)
955
956 * dired.el (dired-keep-marker-rename): Add reference to
957 `wdired-keep-marker-rename' in the docstring.
958 Add default character value ?R to display initially in
959 Customization UI instead of ?@.
960
961 2012-10-27 Martin Rudalics <rudalics@gmx.at>
962
963 * window.el (display-buffer): In doc-string describe
964 window-height and window-width alist entries.
965
966 * time.el (display-time-world): Restore fit-window-to-buffer
967 behavior.
968
969 2012-10-27 Chong Yidong <cyd@gnu.org>
970
971 * subr.el (insert-buffer-substring-as-yank): Doc fix.
972
973 2012-10-26 Jambunathan K <kjambunathan@gmail.com>
974
975 * minibuffer.el (completion-category-overrides): New completion
976 category `bookmark' (bug#11131).
977
978 2012-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
979
980 * emacs-lisp/advice.el (ad-assemble-advised-definition):
981 Silence bogus compiler warnings for ad-do-it.
982
983 * bookmark.el (bookmark-completing-read): Set the completion category
984 to `bookmark' (bug#11131).
985
986 2012-10-26 Bastien <bzg@altern.org>
987 Stefan Monnier <monnier@iro.umontreal.ca>
988
989 * face-remap.el: Use lexical-binding.
990 (text-scale-adjust): Improve docstring. Use itself for the temporary
991 overlay-map bindings, so as to repeat the "Use..." message each time.
992
993 2012-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
994
995 * emacs-lisp/macroexp.el (macroexp--expand-all):
996 Obey byte-compile-warning-enabled-p (bug#12486).
997
998 * vc/diff-mode.el (diff-end-of-hunk): Also skip potential "no LF at eol".
999 (diff-refine-hunk): Similarly, handle the "no LF at eol" (bug#12584).
1000
1001 2012-10-26 Martin Rudalics <rudalics@gmx.at>
1002
1003 * mouse.el (mouse-drag-line): Move last form into preceding when
1004 clause (Bug#12731).
1005
1006 * help.el (resize-temp-buffer-window): Fix doc-string.
1007
1008 2012-10-25 David Engster <deng@randomsample.de>
1009
1010 * emacs-lisp/eieio.el (eieio-update-lisp-imenu-expression):
1011 Remove. This feature is already integrated in imenu.
1012
1013 * emacs-lisp/eieio-opt.el: Remove require for `button' since it is
1014 always loaded. Require `speedbar' unconditionally.
1015
1016 2012-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
1017
1018 * dired.el (dired-get-marked-files): Allow ! on . and .. (bug#12725).
1019
1020 * minibuffer.el (minibuffer-force-complete): Fix thinko.
1021
1022 * net/ldap.el (ldap-search-internal): The official ldif format starts
1023 with a "version: 1" header (bug#12724).
1024
1025 * emacs-lisp/package.el (package-installed-p): Warn if not ready
1026 (bug#12721).
1027
1028 2012-10-25 Glenn Morris <rgm@gnu.org>
1029
1030 * emacs-lisp/cl-macs.el (cl-progv): Doc fix.
1031
1032 2012-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
1033
1034 * minibuffer.el (minibuffer-force-complete): Use one more marker
1035 for the temporary-overlay-map command (bug#12619).
1036
1037 2012-10-24 Chong Yidong <cyd@gnu.org>
1038
1039 * time.el (display-time-world-mode): Derive from special-mode.
1040 (display-time-world): Use display-buffer (Bug#12708).
1041 (display-time-world-mode-map): Variable deleted.
1042 (display-time-world-display): Wrap the final delete-char inside
1043 inhibit-read-only.
1044
1045 2012-10-24 Chong Yidong <cyd@gnu.org>
1046
1047 * dired.el (dired-mark, dired-unmark, dired-flag-file-deletion):
1048 Doc fix.
1049
1050 * emacs-lisp/easymenu.el (easy-menu-define): Doc fix (Bug#12628).
1051
1052 2012-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
1053
1054 * minibuffer.el (completion--all-sorted-completions-location): New var.
1055 (completion--cache-all-sorted-completions)
1056 (completion--flush-all-sorted-completions): Use it.
1057 (completion-in-region, completion-in-region--postch)
1058 (completion-at-point, completion-help-at-point): Use markers in
1059 completion-in-region--data (bug#12619).
1060
1061 2012-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
1062
1063 * progmodes/compile.el (compilation-start): Try to handle common
1064 quoting of `cd' argument (bug#12640).
1065
1066 * vc/diff-mode.el (diff-hunk): `save-excursion' while refining
1067 (bug#12671).
1068
1069 2012-10-23 Glenn Morris <rgm@gnu.org>
1070
1071 * progmodes/gud.el (gud-menu-map):
1072 Check gdb-active-process is bound. (Bug#12358)
1073
1074 2012-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
1075
1076 * repeat.el (repeat): Set real-this-command (bug#12232).
1077
1078 * htmlfontify.el (hfy-post-html-hook):
1079 * filesets.el (filesets-cache-fill-content-hook):
1080 * arc-mode.el (archive-extract-hook):
1081 * progmodes/cc-mode.el (c-prepare-bug-report-hook):
1082 * net/rcirc.el (rcirc-sentinel-functions)
1083 (rcirc-receive-message-functions, rcirc-activity-functions)
1084 (rcirc-print-functions):
1085 * net/dbus.el (dbus-event-error-functions):
1086 * emacs-lisp/eieio.el (eieio-pre-method-execution-functions):
1087 * emacs-lisp/checkdoc.el (checkdoc-style-functions)
1088 (checkdoc-comment-style-functions): Don't use "-hooks" suffix.
1089 * term/sun.el (sun-raw-prefix-hooks):
1090 * mail/sendmail.el (mail-yank-hooks): Use make-obsolete-variable.
1091
1092 2012-10-23 Michael Albinus <michael.albinus@gmx.de>
1093
1094 * net/tramp-smb.el (tramp-smb-maybe-open-connection):
1095 Set `tramp-chunksize' to 1. This improves the performance.
1096 (tramp-smb-wait-for-output): Add timeout to
1097 `tramp-accept-process-output' calls.
1098
1099 2012-10-23 Chong Yidong <cyd@gnu.org>
1100
1101 * faces.el (font-list-limit): Define as an obsolete variable.
1102
1103 * startup.el (command-line):
1104 * cus-start.el: Don't refer to font-list-limit.
1105
1106 * newcomment.el (comment-normalize-vars): Doc fix (Bug#12583).
1107
1108 2012-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
1109
1110 * subr.el (internal-temp-output-buffer-show): Rename from
1111 temp-output-buffer-show, since previously compiled files expect this name.
1112
1113 2012-10-23 Glenn Morris <rgm@gnu.org>
1114
1115 * image.el (image-type-from-file-name): If multiple types match,
1116 return the first one that is supported. (Bug#9045)
1117
1118 2012-10-22 Glenn Morris <rgm@gnu.org>
1119
1120 * image.el (imagemagick-enabled-types): Doc fix.
1121
1122 2012-10-22 Takafumi Arakaki <aka.tkf@gmail.com> (tiny change)
1123
1124 * progmodes/which-func.el (which-func-current): The hash-table may have
1125 an explicit nil (bug#12338).
1126
1127 2012-10-22 Stefan Monnier <monnier@iro.umontreal.ca>
1128
1129 * electric.el (electric-pair-delete-selection-self-insert-function):
1130 Rename to electric-pair-will-use-region, return a boolean.
1131 (electric-pair-mode): Adjust accordingly. Don't require delsel.
1132
1133 * delsel.el (delete-selection-helper): Use a function instead of a hook.
1134 (delete-selection-pre-hook): Use use-region-p.
1135 (delete-selection-self-insert-function): Remove.
1136 (self-insert-command): Obey self-insert-uses-region-functions.
1137 (self-insert-iso): Revert to previous setting, since we don't actually
1138 know what that command does.
1139 (delete-selection-self-insert-hooks): Remove.
1140
1141 2012-10-22 Simon Law <sfllaw@sfllaw.ca> (tiny change)
1142
1143 * delsel.el (delete-selection-helper): New function, extracted from
1144 delete-selection-pre-hook.
1145 (delete-selection-pre-hook): Use it.
1146 (delete-selection-self-insert-function): New function.
1147 (delete-selection-self-insert-hooks): New hook.
1148 (self-insert-command, self-insert-iso): Use it.
1149 * electric.el (electric-pair-syntax): New function, extracted from
1150 electric-pair-post-self-insert-function.
1151 (electric-pair-post-self-insert-function): Use it.
1152 (electric-pair-delete-selection-self-insert-function): New function.
1153 (electric-pair-mode): Require delsel and setup
1154 delete-selection-self-insert-hooks (bug#11520).
1155
1156 2012-10-20 Chong Yidong <cyd@gnu.org>
1157
1158 * vc/vc.el (vc-diff-internal): Set up Diff mode even if there are
1159 no changes to show (Bug#12586).
1160
1161 * eshell/esh-cmd.el (eshell-rewrite-for-command): Copy the body
1162 list explicitly (Bug#12571).
1163
1164 2012-10-20 Arne Jørgensen <arne@arnested.dk>
1165
1166 * progmodes/flymake.el (flymake-create-temp-inplace):
1167 Use file-truename.
1168
1169 2012-10-20 Eli Zaretskii <eliz@gnu.org>
1170
1171 * loadup.el: Update comment about uncompiled Lisp files. (Bug#12395)
1172
1173 2012-10-20 Jay Belanger <jay.p.belanger@gmail.com>
1174
1175 * calc/calc-units.el (math-extract-units): Properly extract powers
1176 of units.
1177
1178 2012-10-20 Daniel Colascione <dancol@dancol.org>
1179
1180 * frame.el (make-frame): Set x-display-name as we used to in order
1181 to unbreak creating an X11 frame from an Emacs daemon started
1182 without a display.
1183
1184 2012-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
1185
1186 * minibuffer.el (minibuffer-force-complete): Make the next completion use
1187 the same completion-field (bug@12221).
1188
1189 2012-10-19 Martin Rudalics <rudalics@gmx.at>
1190
1191 * emacs-lisp/debug.el (debug): Record height of debugger window
1192 also when debugger will be back (Bug#8789).
1193
1194 2012-10-18 Chong Yidong <cyd@gnu.org>
1195
1196 * progmodes/gdb-mi.el (gdb-display-buffer-other-frame-action):
1197 Convert to defcustom.
1198 (gdb-get-source-file): Don't bind pop-up-windows.
1199
1200 * progmodes/gud.el (gud-display-line): Don't specially re-use
1201 other frames for the gdb-mi case (Bug#12648).
1202
1203 2012-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
1204
1205 * emacs-lisp/advice.el: Clean up commentary a bit.
1206 (ad-do-advised-functions, ad-with-originals): Use `declare'.
1207 (byte-code-function-p): Never redefine.
1208
1209 * emacs-lisp/gv.el (cond): Same fix as before for `if'.
1210
1211 2012-10-18 Glenn Morris <rgm@gnu.org>
1212
1213 * dired.el (dired-sort-toggle): Some ls implementations only allow
1214 a single option string. (Bug#12666)
1215
1216 * minibuffer.el (completion-cycle-threshold): Doc fix.
1217
1218 2012-10-17 Kenichi Handa <handa@gnu.org>
1219
1220 * international/mule.el (set-keyboard-coding-system):
1221 Recover input meta mode when the new coding system doesn not use 8-bit.
1222 Supply TERMINAL arg to set-input-meta-mode.
1223
1224 2012-10-17 Michael Heerdegen <michael_heerdegen@web.de>
1225
1226 * wdired.el (wdired-old-marks): New variable.
1227 (wdired-change-to-wdired-mode): Locally set wdired-old-marks.
1228 (wdired-do-renames): Move point with renamed file and don't lose
1229 mark status (Bug#11795).
1230
1231 2012-10-16 Juri Linkov <juri@jurta.org>
1232
1233 * replace.el (query-replace-help): Mention multi-buffer replacement
1234 keys in the Help message. (Bug#12655)
1235
1236 2012-10-15 Chong Yidong <cyd@gnu.org>
1237
1238 * emacs-lisp/byte-run.el (defsubst): Doc fix.
1239
1240 2012-10-14 Eli Zaretskii <eliz@gnu.org>
1241
1242 * window.el (display-buffer): Doc fix.
1243
1244 * progmodes/compile.el (compilation-error-regexp-alist-alist):
1245 Adjust the msft regexp to the output of Studio 2010, and move msft
1246 before edg-1. See the discussion on emacs-devel,
1247 http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00579.html,
1248 for the details.
1249
1250 2012-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
1251
1252 * emacs-lisp/eieio.el (eieio-oset-default, eieio-oset, oset-default)
1253 (oset): Move uses of object-class-fast macro after its definition.
1254
1255 * emacs-lisp/gv.el (if): Don't use closures in non-lexical-binding code.
1256
1257 2012-10-13 Chong Yidong <cyd@gnu.org>
1258
1259 * textmodes/ispell.el (ispell-pdict-save): If flyspell-mode is
1260 enabled, re-enable it (Bug#11963).
1261
1262 2012-10-13 Martin Rudalics <rudalics@gmx.at>
1263
1264 * emacs-lisp/debug.el (debug): When debugger-will-be-back is
1265 non-nil, restore window configuration (Bug#12623).
1266
1267 2012-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
1268
1269 * help-fns.el (describe-variable, describe-function-1):
1270 * help-mode.el (help-make-xrefs): Remove error handler, made unneeded.
1271
1272 * emacs-lisp/eieio.el (lisp-imenu-generic-expression): Fix typo.
1273
1274 2012-10-12 Glenn Morris <rgm@gnu.org>
1275
1276 * mail/rmailsum.el (rmail-header-summary):
1277 Fix 2010-11-26 test for multiline Subject: field. (Bug#12625)
1278
1279 2012-10-12 Fabián Ezequiel Gallina <fgallina@cuca>
1280
1281 * progmodes/python.el (python-mode-map):
1282 Replace subtitute-key-definition with proper command remapping.
1283 (python-nav--up-list): Fix behavior for blocks on the same level.
1284
1285 2012-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
1286
1287 * help-fns.el (describe-function-1): Handle autoloads w/o docstrings.
1288
1289 * emacs-lisp/bytecomp.el (byte-compile-eval): Adjust to long-ago
1290 changes to the format of load-history.
1291
1292 * international/mule-cmds.el (read-char-by-name): Move let-binding of
1293 completion-ignore-case in case that var is buffer-local (bug#12615).
1294
1295 2012-10-11 Kenichi Handa <handa@gnu.org>
1296
1297 * international/eucjp-ms.el: Re-generated.
1298
1299 2012-10-10 Kenichi Handa <handa@gnu.org>
1300
1301 * select.el (xselect--encode-string): If a coding is specified for
1302 selection, and that is compatible with COMPOUND_TEXT, use it.
1303
1304 2012-10-10 Martin Rudalics <rudalics@gmx.at>
1305
1306 * window.el (switch-to-buffer-preserve-window-point): New option.
1307 (switch-to-buffer):
1308 Obey `switch-to-buffer-preserve-window-point' (Bug#4041).
1309
1310 2012-10-09 Stefan Monnier <monnier@iro.umontreal.ca>
1311
1312 * newcomment.el (comment-start-skip, comment-end-skip, comment-end):
1313 Don't document nil as a useful value (bug#12583).
1314
1315 2012-10-09 Michael Albinus <michael.albinus@gmx.de>
1316
1317 * net/tramp.el (tramp-debug-message):
1318 Remove "tramp-with-progress-reporter" from regexp of ignored functions.
1319 (with-tramp-progress-reporter): Rename from
1320 `tramp-with-progress-reporter'.
1321 (with-tramp-file-property, with-tramp-connection-property):
1322 Move from tramp-cache.el, rename from `with-file-property' and
1323 `with-connection-property', respectively.
1324
1325 * net/tramp-cache.el: Remove `with-file-property' and
1326 `with-connection-property'.
1327
1328 * net/tramp.el:
1329 * net/tramp-gvfs.el:
1330 * net/tramp-sh.el:
1331 * net/tramp-smb.el: Adapt callees.
1332
1333 * net/trampver.el: Update release number.
1334
1335 2012-10-09 Glenn Morris <rgm@gnu.org>
1336
1337 * w32-fns.el (set-message-beep):
1338 * term/w32-win.el (set-message-beep): Update declarations.
1339
1340 2012-10-09 Stefan Monnier <monnier@iro.umontreal.ca>
1341
1342 * bindings.el (mode-line-toggle-read-only, mode-line-toggle-modified)
1343 (mode-line-widen, mode-line-input-method-map)
1344 (mode-line-coding-system-map, mode-line-remote)
1345 (mode-line-unbury-buffer, mode-line-bury-buffer)
1346 (mode-line-next-buffer, mode-line-previous-buffer):
1347 Replace save-selected-window+select-window => with-selected-window.
1348
1349 * progmodes/cc-bytecomp.el (cc-bytecomp-defmacro): Remove, unused.
1350 * progmodes/cc-vars.el (bq-process): Remove, unused.
1351
1352 * emacs-lisp/cl-macs.el (cl-defstruct): Obey the :read-only property.
1353
1354 2012-10-09 Fabián Ezequiel Gallina <fgallina@cuca>
1355
1356 Implemented `backward-up-list'-like navigation.
1357 * progmodes/python.el (python-nav-up-list)
1358 (python-nav-backward-up-list): New functions.
1359 (python-mode-map): Define substitute key for backward-up-list to
1360 python-nav-backward-up-list.
1361
1362 2012-10-08 Fabián Ezequiel Gallina <fgallina@cuca>
1363
1364 * progmodes/python.el (python-fill-paragraph): Rename from
1365 python-fill-paragraph-function. Fixed fill-paragraph for
1366 decorators (Bug#12605).
1367
1368 2012-10-08 Fabián Ezequiel Gallina <fgallina@cuca>
1369
1370 * progmodes/python.el (python-shell-output-filter): Handle extra
1371 carriage return in OSX (Bug#12409).
1372
1373 2012-10-08 Fabián Ezequiel Gallina <fgallina@cuca>
1374
1375 Fix shell handling of unbalanced quotes and parens in output.
1376 * progmodes/python.el (python-rx-constituents): Add string-delimiter.
1377 (python-syntax-propertize-function): Use it.
1378 (python-shell-output-syntax-table): New var.
1379 (inferior-python-mode): Prevent unbalanced parens/quotes from
1380 previous output mess with current input context.
1381
1382 2012-10-08 Juanma Barranquero <lekktu@gmail.com>
1383
1384 * generic-x.el (javascript-generic-mode, javascript-generic-mode-hook):
1385 Make obsolete aliases of js-mode and js-mode-hook (from js.el).
1386
1387 2012-10-08 Michael Albinus <michael.albinus@gmx.de>
1388
1389 * ffap.el (ffap-replace-file-component): Support Tramp file name
1390 syntax, not only ange-ftp's one.
1391
1392 2012-10-08 Glenn Morris <rgm@gnu.org>
1393
1394 * cus-start.el (message-log-max): Set :version.
1395
1396 * calendar/calendar.el (calendar-intermonth-header): Doc fix.
1397
1398 2012-10-08 Martin Rudalics <rudalics@gmx.at>
1399
1400 * emacs-lisp/edebug.el (edebug-pop-to-buffer): Don't try to split
1401 the minibuffer window (Bug#10851).
1402
1403 2012-10-08 Fabián Ezequiel Gallina <fgallina@cuca>
1404
1405 Enhancements on forward-sexp movement.
1406 * progmodes/python.el (python-nav-beginning-of-statement)
1407 (python-nav-end-of-statement): Return point-marker.
1408 (python-nav-forward-sexp): lisp-like forward-sexp behavior.
1409 (python-info-current-symbol)
1410 (python-info-statement-starts-block-p): Rename from
1411 python-info-beginning-of-block-p.
1412 (python-info-statement-ends-block-p): Rename from
1413 python-info-end-of-block-p.
1414 (python-info-beginning-of-statement-p)
1415 (python-info-end-of-statement-p)
1416 (python-info-beginning-of-block-p, python-info-end-of-block-p):
1417 New functions.
1418
1419 2012-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
1420
1421 * comint.el (comint-preinput-scroll-to-bottom): Preserve the
1422 frame-selected-windows.
1423
1424 2012-10-08 Daniel Colascione <dancol@dancol.org>
1425
1426 * battery.el (battery-status-function): Check for
1427 w32-battery-status itself, not system-time windows-nt.
1428
1429 * frame.el: Require cl-lib.
1430 (display-format-alist): New variable mapping frame types to
1431 functions that initialize them.
1432 (window-system-for-display): New function: interprets
1433 display-format-alist.
1434 (make-frame-on-display): Remove existing display-selection logic
1435 and just forward to make-frame, which will now DTRT.
1436 (make-frame): Restructure to use window-system-for-display to
1437 figure out how to create a frame on a given display.
1438 (display-mouse-p): Look for frame-type w32, not a particular
1439 system-type.
1440
1441 * loadup.el: Load w32 lisp code when we have the w32 feature.
1442
1443 * mouse.el (mouse-yank-primarY): Look for frame-type w32, not
1444 system-type windows-nt.
1445
1446 * server.el (server-create-window-system-frame): Look for window
1447 type.
1448 (server-proces-filter): Only force a window system when windows-nt
1449 _and_ w32. Explain why.
1450
1451 * simple.el (normal-erase-is-backspace-mode): Add w32 to the list
1452 of window systems we configure for the mode.
1453
1454 * startup.el (command-line): Mark window system is initialized
1455 after we've done it.
1456
1457 * common-win.el (x-select-text): Look for w32, not windows-nt.
1458
1459 * ns-win.el: Require cl-lib. Add ourselves to
1460 display-format-alist.
1461 (ns-initialize-window-system): Assert we're not initialized twice.
1462
1463 * w32-win.el: Enable lexical binding; require cl-lib; add
1464 ourselves to display-format-alist.
1465 (w32-handle-dropped-file): Convert incoming dropped files from
1466 Windows paths to Cygwin ones before passing them on to the rest of
1467 Emacs.
1468 (w32-drag-n-drop): New paramter new-frame. Simplify logic.
1469 (w32-initialize-window-system): Assert we're not initialized twice.
1470
1471 * x-win.el: Require cl-lib; add ourselves to display-format-alist.
1472 (x-initialize-window-system): Assert we're not initialized twice.
1473
1474 * w32-common-fns.el: New File.
1475 (w32-version, w32-using-nt, w32-get-clipboard-data)
1476 (w32-set-clipboard-data, x-set-selection, x-get-selection)
1477 (w32-charset-info-alist, x-last-selected, text)
1478 (x-get-selection-value, x-selection-value): Move here.
1479
1480 * w32-fns.el: Require w32-common-fns.
1481 (w32-version, w32-using-nt, w32-get-clipboard-data)
1482 (w32-set-clipboard-data, x-set-selection, x-get-selection)
1483 (w32-charset-info-alist, x-last-selected, text)
1484 (x-get-selection-value, x-selection-value): Move to
1485 w32-common-fns.
1486
1487 * w32-vars.el:
1488 (w32-allow-system-shell, w32-system-shells): Define only in
1489 non-cygwin case.
1490
1491 2012-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
1492
1493 * subr.el (read-passwd-map): Don't use `defconst' (bug#12597).
1494 (read-passwd): Remove a few more potential sources of leaks.
1495
1496 2012-10-07 Fabián Ezequiel Gallina <fgallina@cuca>
1497
1498 * progmodes/python.el (inferior-python-mode)
1499 (python-shell-make-comint): Fix initialization of local
1500 variables copied from parent buffer.
1501
1502 2012-10-07 Jan Djärv <jan.h.d@swipnet.se>
1503
1504 * term/ns-win.el (ns-read-file-name): Update declaration to match
1505 nsfns.m.
1506 (ns-respond-to-change-font): Change fontsize separatly so we are sure
1507 it is set when font is acted upon.
1508
1509 2012-10-07 Fabián Ezequiel Gallina <fgallina@cuca>
1510
1511 Enhancements to indentation.
1512 * progmodes/python.el (python-indent-context): Give priority to
1513 inside-string context. Make comments indentation markers.
1514 (python-indent-region): Do not mess with strings, unless it's the
1515 enclosing set of quotes.
1516
1517 2012-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
1518
1519 * window.el (internal--before-save-selected-window)
1520 (internal--after-save-selected-window): New functions extracted from
1521 save-selected-window. Make sure we return the `alist' we construct.
1522 (save-selected-window): Use them.
1523
1524 * textmodes/tex-mode.el (tex-recenter-output-buffer):
1525 Use with-selected-window.
1526
1527 * emacs-lisp/autoload.el (make-autoload): Add `cl-defmacro' to the
1528 forms that define macros (bug#12593).
1529
1530 2012-10-07 Kenichi Handa <handa@gnu.org>
1531
1532 * international/mule-conf.el (compound-text-with-extensions):
1533 Add :mime-charset property as x-ctext.
1534
1535 2012-10-07 Stefan Merten <smerten@oekonux.de>
1536
1537 * textmodes/rst.el (rst-new-adornment-down, rst-indent-field)
1538 (rst-indent-literal-normal, rst-indent-literal-minimized)
1539 (rst-indent-comment): Correct :version tag.
1540 (rst-official-cvs-rev): Correct version string.
1541
1542 2012-10-07 Glenn Morris <rgm@gnu.org>
1543
1544 * mail/rmailmm.el (rmail-mime-process-multipart):
1545 Do not confuse a multipart message with an epilogue
1546 with a "truncated" one; fixes 2011-06-27 change. (Bug#10101)
1547
1548 2012-10-07 Fabián Ezequiel Gallina <fgallina@cuca>
1549
1550 Fix shell output retrieval and comint-prompt-regexp init.
1551 * progmodes/python.el (inferior-python-mode):
1552 (python-shell-make-comint): Fix initialization of
1553 comint-prompt-regexp from copied file local variables.
1554 (python-shell-fetched-lines): Remove var.
1555 (python-shell-output-filter-in-progress): Rename from
1556 python-shell-fetch-lines-in-progress.
1557 (python-shell-output-filter-buffer): Rename from
1558 python-shell-fetch-lines-string.
1559 (python-shell-fetch-lines-filter): Delete function.
1560 (python-shell-output-filter): New function.
1561 (python-shell-send-string-no-output): Use them.
1562
1563 2012-10-07 Glenn Morris <rgm@gnu.org>
1564
1565 * hi-lock.el (hi-lock-process-phrase):
1566 Try to make it less fragile. (Bug#7161)
1567
1568 * hi-lock.el (hi-lock-face-phrase-buffer): Doc fix.
1569
1570 2012-10-06 Glenn Morris <rgm@gnu.org>
1571
1572 * ehelp.el (electric-help-mode): Use help-mode rather than
1573 non-existent mode `help'.
1574 (electric-help-map): Use button-buffer-map. (Bug#10917)
1575
1576 * textmodes/reftex-vars.el (reftex-create-bibtex-header)
1577 (reftex-create-bibtex-footer): Fix custom types.
1578
1579 * progmodes/sh-script.el (sh-indent-after-continuation):
1580 Add explicit :group.
1581
1582 * textmodes/rst.el (rst-preferred-decorations)
1583 (rst-shift-basic-offset): Clarify obsolescence versions.
1584
1585 * profiler.el (profiler): Add missing group :version tag.
1586 * avoid.el (mouse-avoidance-banish-position):
1587 * proced.el (proced-renice-command):
1588 * calc/calc.el (calc-ensure-consistent-units):
1589 * calendar/icalendar.el (icalendar-import-format-uid):
1590 * net/tramp.el (tramp-save-ad-hoc-proxies):
1591 * progmodes/bug-reference.el (bug-reference-bug-regexp):
1592 * progmodes/flymake.el (flymake-error-bitmap)
1593 (flymake-warning-bitmap, flymake-fringe-indicator-position):
1594 * progmodes/sh-script.el (sh-indent-after-continuation):
1595 * progmodes/verilog-mode.el (verilog-auto-template-warn-unused)
1596 (verilog-before-save-font-hook, verilog-after-save-font-hook):
1597 * progmodes/vhdl-mode.el (vhdl-makefile-default-targets)
1598 (vhdl-array-index-record-field-in-sensitivity-list)
1599 (vhdl-indent-comment-like-next-code-line):
1600 * textmodes/reftex-vars.el (reftex-ref-style-alist)
1601 (reftex-ref-macro-prompt, reftex-ref-style-default-list)
1602 (reftex-cite-key-separator, reftex-create-bibtex-header)
1603 (reftex-create-bibtex-footer):
1604 * textmodes/rst.el (rst-new-adornment-down, rst-indent-field)
1605 (rst-indent-literal-normal, rst-indent-literal-minimized)
1606 (rst-indent-comment): Add missing custom :version tags.
1607
1608 * calendar/timeclock.el (timeclock-modeline-display):
1609 Add missing obsolete alias for renamed user option.
1610
1611 * strokes.el (strokes-modeline-string):
1612 * emulation/crisp.el (crisp-mode-modeline-string):
1613 * eshell/esh-mode.el (eshell-status-in-modeline):
1614 Aliases to defcustoms must come before the defcustom.
1615
1616 * calendar/cal-tex.el (cal-tex-diary, cal-tex-cursor-week)
1617 (cal-tex-cursor-week2, cal-tex-cursor-week-iso)
1618 (cal-tex-cursor-week-monday): Doc fixes.
1619 (cal-tex-cursor-week2-summary): Doc fix.
1620 Rename from cal-tex-cursor-week-at-a-glance.
1621
1622 * calendar/cal-menu.el (cal-menu-context-mouse-menu):
1623 Tweak week descriptions. Add cal-tex-cursor-week2-summary.
1624
1625 * calendar/calendar.el (calendar-mode-map):
1626 Add cal-tex-cursor-week2-summary.
1627
1628 2012-10-06 Stefan Monnier <monnier@iro.umontreal.ca>
1629
1630 * emacs-lisp/cl-macs.el (cl-defstruct): Improve docstring.
1631
1632 * subr.el (read-passwd-map): New var.
1633 (read-passwd): Use `read-string' again.
1634 * minibuffer.el (delete-minibuffer-contents): Make it interactive.
1635
1636 2012-10-06 Jambunathan K <kjambunathan@gmail.com>
1637
1638 * register.el (append-to-register, prepend-to-register):
1639 Deactivate mark, as does `copy-to-register' (bug#12389).
1640
1641 2012-10-06 Chong Yidong <cyd@gnu.org>
1642
1643 * files.el (auto-mode-alist): Add .by and .wy (Semantic grammars).
1644
1645 2012-10-06 Ikumi Keita <ikumi@ikumi.que.jp> (tiny change)
1646
1647 * international/characters.el: Fix simple mistake ((car chars) ->
1648 elt), delete duplicated code.
1649
1650 2012-10-06 Glenn Morris <rgm@gnu.org>
1651
1652 * subr.el (read-passwd): Allow C-u to erase entry. (Bug#12570)
1653
1654 2012-10-06 Julian Scheid <julians37@gmail.com> (tiny change)
1655
1656 * color.el (color-hsl-to-rgb): Fix incorrect results for
1657 small and large hue values. (Bug#12559)
1658
1659 2012-10-05 Fabián Ezequiel Gallina <fgallina@cuca>
1660
1661 Enhancements to docstring formatting when filling paragraphs.
1662 * progmodes/python.el (python-fill-docstring-style): Rename from
1663 python-fill-string-style. Added new style.
1664 (python-fill-string): Use new style. Better checks for
1665 docstrings.
1666
1667 2012-10-05 Glenn Morris <rgm@gnu.org>
1668
1669 * net/newst-treeview.el (newsticker-group-move-feed): Doc fix.
1670
1671 * color.el (color-name-to-rgb, color-rgb-to-hex)
1672 (color-hue-to-rgb, color-hsl-to-rgb, color-rgb-to-hsv)
1673 (color-rgb-to-hsl, color-srgb-to-xyz, color-saturate-hsl)
1674 (color-desaturate-hsl, color-desaturate-name, color-lighten-hsl)
1675 (color-lighten-name, color-darken-hsl, color-darken-name): Doc fixes.
1676
1677 * emacs-lisp/timer.el (with-timeout): Add missing progn. (Bug#12577)
1678
1679 2012-10-05 Juanma Barranquero <lekktu@gmail.com>
1680
1681 * ido.el (ido-directory-too-big-p): Pass dir through file-truename
1682 to get the correct size across symlinks.
1683
1684 * ido.el (ido-buffer-disable-smart-matches): Fix typo in docstring.
1685
1686 2012-10-04 Juri Linkov <juri@jurta.org>
1687
1688 * replace.el (query-replace-interactive): Declare obsolete.
1689 (query-replace-read-from): Add the last incremental search string
1690 to the list of default values accessible via M-n.
1691 (map-query-replace-regexp): Use `read-regexp'.
1692 (query-replace, query-replace-regexp, query-replace-regexp-eval)
1693 (map-query-replace-regexp, replace-string, replace-regexp):
1694 Fix docstrings to replace mentions of `query-replace-interactive'
1695 with alternatives. (Bug#12526)
1696
1697 2012-10-04 Juri Linkov <juri@jurta.org>
1698
1699 * dired.el (dired-shrink-to-fit): Declare obsolete. (Bug#1806)
1700 (dired-pop-to-buffer): Declare obsolete.
1701 (dired-mark-pop-up): Doc fix.
1702
1703 2012-10-04 Fabián Ezequiel Gallina <fgallina@cuca>
1704
1705 Allow user to set docstring style for fill-paragraph.
1706 * progmodes/python.el
1707 (python-fill-comment-function, python-fill-string-function)
1708 (python-fill-decorator-function, python-fill-paren-function):
1709 Remove :safe for defcustoms.
1710 (python-fill-string-style): New defcustom
1711 (python-fill-paragraph-function): Enhance context detection.
1712 (python-fill-string): Honor python-fill-string-style settings.
1713
1714 2012-10-04 Martin Rudalics <rudalics@gmx.at>
1715
1716 * emacs-lisp/edebug.el (edebug-pop-to-buffer): Select window
1717 after setting its buffer (Bug#10805).
1718
1719 2012-10-03 Fabián Ezequiel Gallina <fgallina@cuca>
1720
1721 Fix cornercase for string syntax.
1722 * progmodes/python.el (python-syntax-propertize-function):
1723 Simplify and enhance the regexp for unescaped quotes. Now it also
1724 matches quotes in weird situations like the single quote in
1725 "something\"'".
1726 (python-syntax-stringify): Simplify num-quotes detecting code.
1727
1728 2012-10-03 Glenn Morris <rgm@gnu.org>
1729
1730 * help-macro.el (three-step-help):
1731 Revert 2012-09-29 change. (Bug#12567)
1732
1733 2012-10-03 Martin Rudalics <rudalics@gmx.at>
1734
1735 * menu-bar.el (kill-this-buffer): Don't do anything when
1736 `menu-frame' is not alive or visible (Bug#8184).
1737
1738 * emacs-lisp/debug.el (debug): When quitting the debugger window
1739 restore current buffer (Bug#12502).
1740
1741 2012-10-02 Chong Yidong <cyd@gnu.org>
1742
1743 * progmodes/hideif.el (hif-lookup, hif-defined):
1744 Handle semantic-c-takeover-hideif.
1745
1746 2012-10-02 Paul Eggert <eggert@cs.ucla.edu>
1747
1748 Change sampling interval units from ms to ns.
1749 * profiler.el (profiler-sampling-interval): Change units
1750 from ms to ns, multiplying the default by 1000000 so that
1751 it remains 1 ms.
1752 (profiler-report-cpu-line-format): Give enough room for
1753 the maximum counters on 64-bit hosts.
1754 (profiler-report-render-calltree-1): Call them "CPU samples",
1755 not "Time (ms)", since they are not milliseconds now (and
1756 never really were).
1757
1758 2012-10-02 Sergio Durigan Junior <sergiodj@riseup.net> (tiny change)
1759
1760 * net/eudcb-bbdb.el (eudc-bbdb-format-record-as-result):
1761 Fix querying BBDB for entries without a last name (Bug#11580).
1762
1763 2012-10-02 Chong Yidong <cyd@gnu.org>
1764
1765 * emacs-lisp/eieio.el: Restore Version header.
1766
1767 2012-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
1768
1769 * vc/diff-mode.el (diff--auto-refine-data): New var.
1770 (diff-hunk): Use it to delay refinement.
1771 (diff-mode): Remove overlays when we turn off font-lock.
1772
1773 * textmodes/table.el: Use lexical-binding, dolist, define-minor-mode.
1774 (table-initialize-table-fixed-width-mode)
1775 (table-set-table-fixed-width-mode): Remove functions.
1776 (table-command-list): Move initialization into declaration.
1777 (table--tweak-menu-for-xemacs): Move defun outside mapcar.
1778 (table-with-cache-buffer): Use `declare'.
1779 (table-span-cell): Simplify via CSE.
1780 (table-fixed-width-mode): Use define-minor-mode.
1781 (table-call-interactively, table-funcall, table-apply): Remove.
1782 (table-function): New function, to replace them.
1783
1784 * bookmark.el (bookmark-search-pattern): Remove var.
1785 (bookmark-read-search-input): Remove function.
1786 (bookmark-bmenu-search): Reimplement using a minibuffer.
1787
1788 * faces.el (modeline): Remove obsolete face name.
1789
1790 * vc/add-log.el (add-log-buffer-file-name-function): Demote to defvar
1791 and give a non-nil default value.
1792 (add-change-log-entry): Simplify accordingly.
1793
1794 2012-10-01 Dmitry Gutov <dgutov@yandex.ru>
1795
1796 * vc/vc-git.el (vc-git-log-edit-toggle-signoff): New function.
1797 (vc-git-log-edit-toggle-amend): New function.
1798 (vc-git-log-edit-toggle-signoff): New function.
1799 (vc-git-log-edit-mode): New major mode.
1800 (vc-git-log-edit-mode-map): Keymap for it.
1801 (vc-git-checkin): Handle "Amend" and "Sign-Off" headers.
1802
1803 * vc/log-edit.el (log-edit-font-lock-keywords): Allow hyphens in
1804 header names.
1805 (log-edit-toggle-header): New function.
1806 (log-edit-extract-headers): Accept function values in HEADERS alist.
1807
1808 2012-10-01 David Engster <deng@randomsample.de>
1809
1810 * emacs-lisp/eieio-opt.el (eieio-describe-class): Add filename
1811 from symbol property and change message to be more consistent with
1812 Emacs proper.
1813 (eieio-describe-generic): Add filename for each implementation.
1814 Fix indices for generic and normal methods.
1815 (eieio-method-def, eieio-class-def): New buttons.
1816 (eieio-help-find-method-definition)
1817 (eieio-help-find-class-definition): New functions.
1818 (eieio-help-mode-augmentation-maybee): Add buttons to filenames of
1819 class, constructor and method definitions.
1820
1821 * emacs-lisp/eieio.el (eieiomt-add, eieio-defclass): Save file
1822 information in symbol property.
1823 (scoped-class): Remove.
1824 (eieio-slot-name-index, call-next-method): Check if it is bound.
1825
1826 2012-10-01 Leo P. White <lpw25@cam.ac.uk>
1827
1828 * emacs-lisp/eieio-custom.el (eieio-custom-mode-map): New option.
1829 (eieio-custom-mode): New major mode.
1830 (eieio-customize-object): Use it.
1831
1832 2012-10-01 Eric Ludlam <zappo@gnu.org>
1833
1834 * emacs-lisp/eieio-base.el (eieio-persistent-read): New input args
1835 specifying the expected class, and whether subclassing is allowed.
1836 (eieio-persistent-convert-list-to-object):
1837 (eieio-persistent-validate/fix-slot-value)
1838 (eieio-persistent-slot-type-is-class-p): New functions.
1839 (eieio-named::slot-missing): Doc fix.
1840
1841 * emacs-lisp/eieio-datadebug.el (data-debug/eieio-insert-slots):
1842 Stop using unused publd variable.
1843
1844 * emacs-lisp/eieio-speedbar.el (eieio-speedbar-handle-click):
1845 (eieio-speedbar-description, eieio-speedbar-derive-line-path)
1846 (eieio-speedbar-object-buttonname, eieio-speedbar-make-tag-line)
1847 (eieio-speedbar-handle-click): Do not specify a class for the
1848 method. Fixes method invocation order problems with EDE.
1849
1850 2012-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
1851
1852 * emacs-lisp/bytecomp.el (byte-compiler-abbreviate-file): New function.
1853 (byte-compile-warning-prefix, byte-compile-file): Use it (bug#12508).
1854
1855 2012-10-01 Karl Fogel <kfogel@red-bean.com>
1856
1857 * bookmark.el (bookmark-version-control): Give tags in the
1858 :type choices (Bug#12309), and improve doc string.
1859 (bookmark-write-file): Bind `print-circle' to `t' to allow
1860 circular custom bookmark types. (Bug#12503)
1861
1862 2012-10-01 Paul Eggert <eggert@cs.ucla.edu>
1863
1864 Revert the FOLLOW-SYMLINKS change for file-attributes.
1865 * files.el (remote-file-name-inhibit-cache, after-find-file):
1866 * time.el (display-time-file-nonempty-p): Undo last change.
1867
1868 * profiler.el (profiler-sampling-interval): Change default back to 1.
1869 See Stefan Monnier in
1870 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00863.html>.
1871
1872 2012-10-01 Fabián Ezequiel Gallina <fgallina@cuca>
1873
1874 Shell output catching a la gud-gdb.
1875 * progmodes/python.el (python-shell-fetch-lines-in-progress)
1876 (python-shell-fetch-lines-string, python-shell-fetched-lines):
1877 New Vars.
1878 (python-shell-fetch-lines-filter): New function.
1879 (python-shell-send-string-no-output): Use them.
1880
1881 2012-09-30 Tomohiro Matsuyama <tomo@cx4a.org>
1882
1883 * profiler.el (profiler-sampling-interval): Rename from
1884 profiler-sample-interval.
1885 (profiler-sampling-interval): Default to 10.
1886 (profiler-find-profile): New command (was profiler-find-log).
1887 (profiler-find-profile-other-window): New command.
1888 (profiler-find-profile-other-frame): New command.
1889 (profiler-profile): Introduce API-level data structure.
1890
1891 2012-09-30 Paul Eggert <eggert@cs.ucla.edu>
1892
1893 file-attributes has a new optional arg FOLLOW-SYMLINKS.
1894 * files.el (remote-file-name-inhibit-cache):
1895 * time.el (display-time-file-nonempty-p): Use it.
1896 * files.el (after-find-file): Don't chase links before calling
1897 file-exists-p, as file-exists-p already does the right thing.
1898
1899 2012-09-30 Ralf Angeli <angeli@caeruleus.net>
1900
1901 Merge from standalone RefTeX repository.
1902
1903 The following ChangeLog entries are shortened versions of the
1904 original ones with file paths adapted. A not so strongly edited
1905 version of the original ChangeLog can be found in the commit log.
1906
1907 * textmodes/reftex-auc.el: Move `provide' call to bottom of file.
1908 (reftex-arg-cite): Use `reftex-cite-key-separator'.
1909 Correctly handle new value type returned by `reftex-citation'.
1910
1911 * textmodes/reftex-cite.el (reftex-create-bibtex-file): Make sure
1912 that entries with whitespace at various places are found.
1913 Doc fix. Include entries that are cross-referenced from cited entries.
1914 Include @String definitions in the resulting bib file. Add header
1915 and footer defined in `reftex-create-bibtex-header' and
1916 `reftex-create-bibtex-footer'.
1917 (reftex-do-citation): Make it possible again to insert
1918 non-existent entries. Save match data when asking for optional
1919 arguments. Return all keys, not just the first one.
1920 (reftex-all-used-citation-keys): Fix regexp to correctly extract
1921 all citations in the same line.
1922 (reftex-parse-bibtex-entry): Accept additional optional argument
1923 `raw' and keep quotes or braces if it is non-nil. Match fields
1924 containing hyphens besides word constituents.
1925 (reftex-get-string-refs): New function.
1926 (reftex-extract-bib-entries): Check if BibTeX file changed on disk
1927 and ask if it should be reread in case it did.
1928 (reftex-pop-to-bibtex-entry)
1929 (reftex-extract-bib-entries-from-thebibliography): Match \bibitem
1930 entries with spaces or tabs in front of arguments.
1931 (reftex-pop-to-bibtex-entry, reftex-extract-bib-entries)
1932 (reftex-parse-bibtex-entry, reftex-create-bibtex-file):
1933 Match entries containing numbers and symbol constituents.
1934 (reftex-do-citation, reftex-figure-out-cite-format):
1935 Use `reftex-cite-key-separator'.
1936
1937 * textmodes/reftex-dcr.el: Move provide statement to end of file.
1938 (reftex-mouse-view-crossref): Explain why point is set.
1939
1940 * textmodes/reftex-global.el: Whitespace changes.
1941
1942 * textmodes/reftex-index.el: Move provide statement to end of
1943 file.
1944 (reftex-index-selection-or-word): Use `reftex-region-active-p'.
1945 (reftex-index-visit-phrases-buffer): Set marker when visiting
1946 buffer. This allows for returning from the phrases file to the
1947 file one was just editing instead of the file where the last
1948 phrases was added from.
1949 (reftex-index-phrases-syntax-table): New variable. Give ?\"
1950 punctuation syntax as it usually is not used as string quote in
1951 TeX-related modes and may occur unmatched. The change also
1952 prevents fontification of quoted content.
1953 (reftex-index-phrases-mode): Use it.
1954
1955 * textmodes/reftex-parse.el (reftex-parse-from-file):
1956 Move backward one char if a `\' was matched after a section macro.
1957 (reftex-parse-from-file): Use beginning of match instead of end as
1958 bound.
1959
1960 * textmodes/reftex-ref.el: Adapt creation of
1961 `reftex-<package>-<macro>' functions to new structure of
1962 `reftex-ref-style-alist'.
1963 (reftex-reference): Use `reftex-ref-style-list' function.
1964 Adapt to new structure of `reftex-ref-style-alist'. Prompt for a
1965 reference macro if `reftex-ref-macro-prompt' is non-nil.
1966 (reftex-reference): Pass refstyle to `reftex-format-special'.
1967 Determine reference macro by looking at
1968 `reftex-ref-style-default-list' and `reftex-ref-style-alist'.
1969 Use only one special format function.
1970 (reftex-varioref-vref, reftex-fancyref-fref)
1971 (reftex-fancyref-Fref): Remove definitions. The functions are now
1972 generated from `reftex-ref-style-alist'.
1973 (reftex-format-vref, reftex-format-Fref, reftex-format-fref):
1974 Remove.
1975 (reftex-format-special): New function.
1976
1977 * textmodes/reftex-sel.el
1978 (reftex-select-cycle-ref-style-internal): Adapt to new structure
1979 of `reftex-ref-style-alist'. Remove code for testing macro type.
1980 (reftex-select-toggle-varioref)
1981 (reftex-select-toggle-fancyref): Remove.
1982 (reftex-select-cycle-ref-style-internal)
1983 (reftex-select-cycle-ref-style-forward)
1984 (reftex-select-cycle-ref-style-backward): New functions.
1985 (reftex-select-label-map): Use `v' and `V' for general cycling
1986 through reference styles. Add `p' for switching between number
1987 and page reference types.
1988
1989 * textmodes/reftex-toc.el (reftex-re-enlarge):
1990 Call `enlarge-window' only if there is something to do because in Emacs
1991 the horizontal version throws an error even if the parameter is 0.
1992
1993 * textmodes/reftex-vars.el (reftex-label-alist): Doc fix.
1994 (reftex-plug-into-AUCTeX): Doc fix.
1995 (reftex-vref-is-default, reftex-fref-is-default): Adapt doc
1996 string. Adapt to new name.
1997 (reftex-ref-style-alist): Change structure so that it is not
1998 possible to use multiple different package names within a style.
1999 Remove the symbols for symbols for macro type distinction.
2000 Add characters for macro selection.
2001 (reftex-ref-macro-prompt, reftex-create-bibtex-header)
2002 (reftex-create-bibtex-footer): New variables.
2003 (reftex-format-ref-function): Mention third argument of special
2004 format function.
2005 (reftex-ref-style-alist, reftex-ref-style-default-list):
2006 New variables.
2007 (reftex-vref-is-default, reftex-fref-is-default): Adapt doc string
2008 to new implementation. Mark as obsolete. Add compatibility code
2009 for honoring the variable values in case they are set.
2010 (reftex-cite-format-builtin, reftex-bibliography-commands):
2011 Add support for ConTeXt.
2012 (reftex-format-ref-function, reftex-format-cite-function):
2013 Fix custom type.
2014 (reftex-cite-key-separator): New variable.
2015
2016 * textmodes/reftex.el (reftex-syntax-table-for-bib)
2017 (reftex-mode): Do not derive `reftex-syntax-table-for-bib' from
2018 `reftex-syntax-table' because parens have to retain their paren
2019 syntax in order for parsing of BibTeX entries like @book(...) to
2020 work.
2021 (reftex-in-comment): Do not error out if `comment-start-skip' is
2022 not set. Deal correctly with escaped comment characters.
2023 (reftex-tie-multifile-symbols): Add doc string.
2024 Initialize `reftex-ref-style-list'.
2025 (reftex-untie-multifile-symbols): Add doc string.
2026 (reftex-add-index-macros): Doc fix.
2027 (reftex-ref-style-activate, reftex-ref-style-toggle)
2028 (reftex-ref-style-list): New functions.
2029 (reftex-mode-menu): Use them. Adapt to new structure of
2030 `reftex-ref-style-alist'.
2031 (reftex-select-with-char): Kill the RefTeX Select buffer when
2032 done.
2033 (reftex-remove-if): New function.
2034 (reftex-erase-all-selection-and-index-buffers)
2035 (reftex-mode-menu): Reference styles are now computed from
2036 `reftex-ref-style-alist'. Fix typo.
2037 (reftex-report-bug): New function.
2038 (reftex-uniquify, reftex-uniquify-by-car): Replace O(n^2)
2039 algorithms with O(n log n). Introduce optional argument SORT (not
2040 yet used).
2041
2042 2012-09-30 Fabián Ezequiel Gallina <fgallina@cuca>
2043
2044 Enhancements for triple-quote string syntax.
2045 * progmodes/python.el (python-syntax-propertize-function):
2046 Match both quote cases in one regexp.
2047 (python-syntax-stringify): Handle matches properly.
2048
2049 2012-09-30 Juri Linkov <juri@jurta.org>
2050
2051 * arc-mode.el (archive-summarize): Let-bind `buffer-file-truename'
2052 to nil around the call to `insert' to prevent
2053 directory time modification by lock_file. (Bug#2295)
2054 * tar-mode.el (tar-summarize-buffer): Idem.
2055
2056 2012-09-30 Juri Linkov <juri@jurta.org>
2057
2058 * facemenu.el (list-colors-sort): Add option "Luminance".
2059 (list-colors-sort-key): Implement it.
2060
2061 * vc/diff-mode.el (diff-refine-removed):
2062 * vc/ediff-init.el (ediff-fine-diff-A):
2063 * vc/smerge-mode.el (smerge-refined-removed):
2064 Change background color "#ffaaaa" to "#ffbbbb". (Bug#10181)
2065
2066 2012-09-30 Jan Djärv <jan.h.d@swipnet.se>
2067
2068 * term/ns-win.el (x-file-dialog): New function.
2069
2070 2012-09-30 Juanma Barranquero <lekktu@gmail.com>
2071
2072 * ido.el (ido-max-directory-size): Default to nil; the current
2073 default is small for POSIX systems, and impractical on Windows 7
2074 now that lstat returns directory sizes for NTFS.
2075
2076 2012-09-30 Martin Rudalics <rudalics@gmx.at>
2077
2078 In buffer display functions handle window-height/window-width
2079 alist entries. Suggested by Juri Linkov as fix for Bug#1806.
2080 * window.el (window--display-buffer): New argument ALIST.
2081 Obey window-height and window-width alist entries.
2082 (window--try-to-split-window): New argument ALIST.
2083 Bind window-combination-limit to t when the window's size shall be
2084 changed and window-combination-limit equals `window-size'.
2085 (display-buffer-in-atom-window)
2086 (display-buffer-in-major-side-window)
2087 (display-buffer-in-side-window, display-buffer-same-window)
2088 (display-buffer-reuse-window, display-buffer-pop-up-frame)
2089 (display-buffer-pop-up-window, display-buffer-below-selected)
2090 (display-buffer-at-bottom, display-buffer-in-previous-window)
2091 (display-buffer-use-some-window): Adjust all callers of
2092 window--display-buffer and window--try-to-split-window.
2093 (fit-frame-to-buffer): New option.
2094 (fit-window-to-buffer): Can resize frames if fit-frame-to-buffer
2095 is non-nil.
2096 (display-buffer-in-major-side-window): Evaluate window-height /
2097 window-width alist entries.
2098
2099 * help.el (temp-buffer-resize-frames)
2100 (temp-buffer-resize-regexps): Remove options.
2101 (temp-buffer-resize-mode): Adjust doc-string.
2102 (resize-temp-buffer-window): Don't consult
2103 temp-buffer-resize-regexps. Use fit-frame-to-buffer instead of
2104 temp-buffer-resize-frames.
2105
2106 * dired.el (dired-mark-pop-up):
2107 Call display-buffer-below-selected with a fit-window-to-buffer alist
2108 entry.
2109
2110 2012-09-30 Chong Yidong <cyd@gnu.org>
2111
2112 * server.el (server-host): Document the security implications.
2113 (server-auth-key): Doc fix.
2114
2115 * startup.el (initial-buffer-choice): Doc fix.
2116
2117 * minibuffer.el (minibuffer-local-filename-syntax): Doc fix.
2118
2119 * simple.el (delete-trailing-whitespace): Avoid an unnecessary
2120 restriction change.
2121
2122 * bindings.el (goto-map): Bind M-g TAB to move-to-column.
2123
2124 * help-fns.el (help-fns--obsolete): Fix last change.
2125
2126 2012-09-30 Stefan Monnier <monnier@iro.umontreal.ca>
2127
2128 * winner.el (winner-mode-map): Obey winner-dont-bind-my-keys here.
2129 (minor-mode-map-alist): Remove redundant code.
2130
2131 * vc/pcvs.el (cvs-cleanup-collection): Keep entries that are currently
2132 visited in a buffer.
2133 (cvs-insert-visited-file): New function.
2134 (find-file-hook): Use it.
2135
2136 * vc/pcvs-info.el (cvs-fileinfo-pp): Don't use non-existent faces.
2137
2138 * vc/log-edit.el (log-edit-font-lock-keywords): Ignore case to
2139 chose face.
2140 (log-edit-empty-buffer-p): Don't require a space after a header.
2141
2142 * vc/ediff-util.el (ediff-diff-at-point): Don't assume point-min==1.
2143
2144 * tutorial.el (help-with-tutorial): Use minibuffer-with-setup-hook.
2145
2146 * textmodes/text-mode.el (paragraph-indent-minor-mode): Make it
2147 a proper minor-mode.
2148
2149 * textmodes/tex-mode.el (tex-mode-map): Don't bind paren keys.
2150
2151 2012-09-29 Glenn Morris <rgm@gnu.org>
2152
2153 * winner.el (winner-mode): Remove variable (let define-minor-mode
2154 handle it).
2155 (winner-dont-bind-my-keys, winner-boring-buffers, winner-mode-hook):
2156 Doc fixes.
2157 (winner-mode-leave-hook): Rename to winner-mode-off-hook.
2158 (winner-mode): Use define-minor-mode.
2159
2160 * vc/vc-sccs.el (vc-sccs-registered): Use the progn trick to get
2161 the full definition in loaddefs, rather than duplicating it.
2162
2163 * help-macro.el (three-step-help): No need to autoload defcustom.
2164
2165 * progmodes/inf-lisp.el (inferior-lisp-filter-regexp)
2166 (inferior-lisp-program, inferior-lisp-load-command)
2167 (inferior-lisp-prompt, inferior-lisp-mode-hook):
2168 No need to autoload defcustoms.
2169
2170 * hippie-exp.el (hippie-expand-try-functions-list)
2171 (hippie-expand-verbose, hippie-expand-dabbrev-skip-space)
2172 (hippie-expand-dabbrev-as-symbol, hippie-expand-no-restriction)
2173 (hippie-expand-max-buffers, hippie-expand-ignore-buffers)
2174 (hippie-expand-only-buffers): No need to autoload defcustoms.
2175 * progmodes/vhdl-mode.el (vhdl-line-expand):
2176 Explicitly load hippie-exp, so it does not get autoloaded
2177 while hippie-expand-try-functions-list is let-bound.
2178
2179 2012-09-28 Glenn Morris <rgm@gnu.org>
2180
2181 * emacs-lisp/cl.el (flet): Fix case of obsolescence message.
2182
2183 * emacs-lisp/bytecomp.el (byte-compile-cl-file-p):
2184 Only "cl.el" counts as cl these days.
2185
2186 2012-09-28 Juri Linkov <juri@jurta.org>
2187
2188 Display archive errors in the echo area instead of inserting
2189 to the file buffer.
2190
2191 * arc-mode.el (archive-extract-by-stdout): Change arg STDERR-FILE
2192 to STDERR-TEST that can be a regexp matching a successful output.
2193 Create a temporary file and redirect stderr to it. Search for
2194 STDERR-TEST in the stderr output and display it in the echo area
2195 if no match is found.
2196 (archive-extract-by-file): New function like
2197 `archive-extract-by-stdout' but extracting archives to files
2198 and looking for successful matches in stdout. Function body is
2199 mostly copied from `archive-rar-extract'.
2200 (archive-rar-extract): Use `archive-extract-by-file'.
2201 (archive-7z-extract): Use `archive-extract-by-stdout'. (Bug#10347)
2202
2203 2012-09-28 Leo Liu <sdl.web@gmail.com>
2204
2205 * pcomplete.el (pcomplete-show-completions):
2206 Use minibuffer-message to make pcomplete usable in minibuffer.
2207
2208 * ido.el (ido-set-matches-1): Fix 2012-09-11 change.
2209
2210 2012-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
2211
2212 * type-break.el: Use lexical-binding.
2213 (type-break-mode): Use define-minor-mode.
2214
2215 * emacs-lisp/pcase.el (pcase--mark-used): New.
2216 (pcase--u1): Use it (bug#12512).
2217
2218 * custom.el (load-theme): Set buffer-file-name so the load is recorded
2219 in load-history with the right file name.
2220
2221 2012-09-28 Tassilo Horn <tsdh@gnu.org>
2222
2223 * doc-view.el (doc-view-current-cache-doc-pdf): New function.
2224 (doc-view-doc->txt, doc-view-convert-current-doc): Use it.
2225 (doc-view-get-bounding-box): Make bounding box slicing work for
2226 ODF and DVI documents.
2227
2228 2012-09-28 Glenn Morris <rgm@gnu.org>
2229
2230 * type-break.el (type-break-mode, type-break-interval)
2231 (type-break-good-rest-interval, type-break-keystroke-threshold):
2232 No need to autoload.
2233 (type-break-good-rest-interval, type-break-keystroke-threshold):
2234 Add :set-after.
2235
2236 2012-09-28 Chong Yidong <cyd@gnu.org>
2237
2238 * progmodes/verilog-mode.el (verilog-auto-inst-interfaced-ports):
2239 Add :version tag.
2240
2241 2012-09-27 Stefan Monnier <monnier@iro.umontreal.ca>
2242
2243 * json.el (json-encode-char): Codes 127-160 aren't "ASCII printable".
2244
2245 2012-09-27 Glenn Morris <rgm@gnu.org>
2246
2247 * faces.el (x-display-name): Declare (for without-x builds).
2248
2249 * linum.el (linum-format): Don't autoload it. Improve :type.
2250
2251 * progmodes/tcl.el: Don't require outline when compiling.
2252 (outline-regexp, outline-level): Declare.
2253 * textmodes/sgml-mode.el: Don't require outline when compiling.
2254 (outline-regexp, outline-heading-end-regexp, outline-level): Declare.
2255
2256 * term.el (term-ansi-reset):
2257 Try setting term-ansi-face-already-done to nil. (Bug#11785)
2258
2259 * vc/vc.el (vc-next-action): Only gripe about committing read-only
2260 files for RCS and SCCS. (Bug#9781)
2261
2262 2012-09-27 Chong Yidong <cyd@gnu.org>
2263
2264 * progmodes/verilog-mode.el (verilog-mode-release-emacs): Fix last
2265 change; value should be t.
2266
2267 2012-09-27 Stefan Monnier <monnier@iro.umontreal.ca>
2268
2269 * image-mode.el: Use lexical-binding.
2270 (image-mode-winprops): Use t to stand for the window of
2271 a buffer that's not displayed.
2272 * doc-view.el (doc-view-new-window-function): Handle the new
2273 t in winprops.
2274 (doc-view-enlarge): Make it a real nop if the size is not changed.
2275 (doc-view-display): Handle the case where the buffer is not (yet?)
2276 displayed in any window.
2277 (doc-view-saved-settings): New var.
2278 (doc-view-mode): Use it.
2279 (doc-view-fallback-mode): Set it.
2280
2281 * minibuf-eldef.el: Make it possible to replace (default ...) with [...].
2282 Set lexical-binding.
2283 (minibuffer-eldef-shorten-default): New var.
2284 (minibuffer-default-in-prompt-regexps): Use it for new default.
2285 (minibuf-eldef-setup-minibuffer): Add replacement functionality.
2286
2287 2012-09-26 Juanma Barranquero <lekktu@gmail.com>
2288
2289 * international/uni-bidi.el:
2290 * international/uni-category.el:
2291 * international/uni-name.el:
2292 * international/uni-numeric.el: Regenerate.
2293
2294 2012-09-26 Tomohiro Matsuyama <tomo@cx4a.org>
2295 Stefan Monnier <monnier@iro.umontreal.ca>
2296
2297 * profiler.el: New file.
2298
2299 2012-09-26 Stefan Monnier <monnier@iro.umontreal.ca>
2300
2301 * emacs-lisp/testcover.el (testcover-after): Add gv-expander.
2302 (testcover-reinstrument): Simplify with CSE.
2303
2304 2012-09-26 Juanma Barranquero <lekktu@gmail.com>
2305
2306 * window.el (temp-buffer-window-setup): Fix typo in docstring.
2307
2308 2012-09-25 Wilson Snyder <wsnyder@wsnyder.org>
2309
2310 * verilog-mode.el (verilog-auto-ascii-enum, verilog-auto-inout)
2311 (verilog-auto-input, verilog-auto-insert-lisp)
2312 (verilog-auto-output, verilog-auto-output-every, verilog-auto-reg)
2313 (verilog-auto-reg-input, verilog-auto-tieoff, verilog-auto-undef)
2314 (verilog-auto-unused, verilog-auto-wire)
2315 (verilog-forward-or-insert-line): Fix AUTOs with no trailing
2316 newline. Reported by Andrew Jones.
2317 (verilog-auto-inst) Support expanding $clog2 in AUTOINST.
2318 Reported by Brad Dobbie.
2319 (verilog-batch-delete-trailing-whitespace):
2320 Create verilog-batch-delete-trailing-whitespace.
2321 Reported by Brad Dobbie.
2322 (verilog-auto-inout-param): Support AUTOINOUTPARAM for copying
2323 parameters from another module. Reported by Dan Katz.
2324 (verilog-auto, verilog-auto-assign-modport)
2325 (verilog-auto-inout-modport): Add AUTOASSIGNMODPORT and
2326 AUTOINOUTMODPORT for UVM interface module shell generation.
2327 Reported by Brad Dobbie.
2328 (verilog-auto-inst-interfaced-ports): Make default nil, as more
2329 standard behavior.
2330 (verilog-auto): Fix AUTO parameters with parenthesis arguments.
2331 Reported by Matt Martin.
2332
2333 2012-09-25 Martin Rudalics <rudalics@gmx.at>
2334
2335 * window.el (window--resize-child-windows): When resizing child
2336 windows proportionally, process them in reverse order to
2337 preserve the "when splitting a window the new one gets the odd
2338 line" behavior.
2339 (window--resize-root-window-vertically): When resizing the
2340 minibuffer window try to affect only windows at the bottom of the
2341 frame. (Bug#12419)
2342
2343 2012-09-25 Chong Yidong <cyd@gnu.org>
2344
2345 * subr.el (declare): Doc fix.
2346
2347 * help-fns.el (help-fns--obsolete): Handle macros properly.
2348
2349 2012-09-25 Chong Yidong <cyd@gnu.org>
2350
2351 * bookmark.el (bookmark-jump-noselect): Use a declare form to mark
2352 this function obsolete.
2353
2354 * calendar/cal-x.el (calendar-two-frame-setup)
2355 (calendar-only-one-frame-setup, calendar-one-frame-setup):
2356 * calendar/calendar.el (american-calendar, european-calendar)
2357 (calendar-for-loop):
2358 * comint.el (comint-dynamic-simple-complete)
2359 (comint-dynamic-complete-as-filename, comint-unquote-filename):
2360 * desktop.el (desktop-load-default):
2361 * dired-x.el (dired-omit-here-always)
2362 (dired-hack-local-variables, dired-default-directory):
2363 * emacs-lisp/derived.el (derived-mode-class):
2364 * emacs-lisp/timer.el (timer-set-time-with-usecs):
2365 * emacs-lock.el (toggle-emacs-lock):
2366 * epa.el (epa-display-verify-result):
2367 * epg.el (epg-sign-keys, epg-start-sign-keys)
2368 (epg-passphrase-callback-function):
2369 * eshell/esh-util.el (eshell-for):
2370 * eshell/eshell.el (eshell-remove-from-window-buffer-names)
2371 (eshell-add-to-window-buffer-names):
2372 * files.el (locate-file-completion):
2373 * imenu.el (imenu-example--create-c-index)
2374 (imenu-example--create-lisp-index)
2375 (imenu-example--lisp-extract-index-name)
2376 (imenu-example--name-and-position):
2377 * international/mule-cmds.el (princ-list):
2378 * international/mule-diag.el (decode-codepage-char):
2379 * international/mule-util.el (detect-coding-with-priority):
2380 * iswitchb.el (iswitchb-read-buffer):
2381 * mail/mailalias.el (mail-complete):
2382 * mail/sendmail.el (mail-sent-via):
2383 * mouse.el (mouse-popup-menubar-stuff, mouse-popup-menubar)
2384 (mouse-major-mode-menu):
2385 * password-cache.el (password-read-and-add):
2386 * pcomplete.el (pcomplete-parse-comint-arguments):
2387 * progmodes/sh-script.el (sh-maybe-here-document):
2388 * replace.el (query-replace-regexp-eval):
2389 * savehist.el (savehist-load):
2390 * simple.el (choose-completion-delete-max-match):
2391 * term.el (term-dynamic-simple-complete):
2392 * vc/ediff-init.el (ediff-check-version):
2393 * vc/ediff-wind.el (ediff-choose-window-setup-function-automatically):
2394 * vc/vc.el (vc-diff-switches-list):
2395 * view.el (view-return-to-alist-update): Likewise.
2396
2397 * subr.el (eval-next-after-load, makehash, insert-string)
2398 (assoc-ignore-representation, assoc-ignore-case): Use declare to
2399 mark obsolete.
2400 (mode-line-inverse-video): Variable deleted.
2401
2402 * international/mule-util.el (string-to-sequence): Remove.
2403
2404 * calendar/calendar.el (calendar-version):
2405 * calendar/icalendar.el (icalendar-extract-ical-from-buffer)
2406 (icalendar-convert-diary-to-ical):
2407 * cus-edit.el (custom-mode):
2408 * ansi-color.el (ansi-color-unfontify-region):
2409 * international/latin1-disp.el (latin1-char-displayable-p):
2410 * progmodes/cwarn.el (turn-on-cwarn-mode):
2411 * progmodes/which-func.el (which-func-update-1):
2412 Use define-obsolete-function-alias.
2413
2414 * net/newst-backend.el (newsticker-cache-filename):
2415 * net/newst-treeview.el (newsticker-groups-filename):
2416 Fix incorrect obsolescence declaration.
2417
2418 * allout.el (allout-passphrase-hint-string): Likewise.
2419 (allout-init): Use a declare form to mark obsolete.
2420
2421 * emacs-lisp/byte-run.el (make-obsolete): Doc fix; emphasize that
2422 this applies to functions.
2423
2424 * iswitchb.el (iswitchb-read-buffer): Move code of
2425 iswitchb-define-mode-map here, and delete that obsolete function.
2426
2427 * net/snmp-mode.el (snmp-font-lock-keywords-3): Don't use obsolete
2428 font-lock-reference-face.
2429
2430 2012-09-25 Glenn Morris <rgm@gnu.org>
2431
2432 * buff-menu.el (Buffer-menu-name-width, Buffer-menu-size-width):
2433 Doc fixes.
2434
2435 * eshell/em-term.el (eshell-term-name):
2436 Default to term-term-name. (Bug#12485)
2437
2438 2012-09-24 Fabián Ezequiel Gallina <fgallina@cuca>
2439
2440 * progmodes/python.el (python-shell-send-buffer): Better handling
2441 of "if __name__ == '__main__':" conditionals when sending the buffer.
2442
2443 2012-09-24 Glenn Morris <rgm@gnu.org>
2444
2445 * eshell/esh-cmd.el (eshell-find-alias-function):
2446 Tighten up file-name regexp. (Bug#12499)
2447
2448 2012-09-24 Fabián Ezequiel Gallina <fgallina@cuca>
2449
2450 Enhancements for triple-quote string syntax.
2451 * progmodes/python.el (python-quote-syntax): Remove.
2452 (python-syntax-propertize-function): New value.
2453 (python-syntax-count-quotes, python-syntax-stringify):
2454 New functions.
2455
2456 2012-09-24 Chong Yidong <cyd@gnu.org>
2457
2458 * mail/supercite.el (sc-version): Remove obsolete function.
2459 (sc-describe): Don't mark as obsolete, since it is bound.
2460 (sc-submit-bug-report): Remove.
2461
2462 * vc/log-edit.el (cvs-changelog-full-paragraphs)
2463 (cvs-commit-buffer-require-final-newline): Remove.
2464 (log-edit-require-final-newline)
2465 (log-edit-changelog-full-paragraphs): Default to t.
2466
2467 * vc/pcvs-defs.el (cvs-diff-buffer-name, cvs-diff-ignore-marks)
2468 * vc/vc-hooks.el (vc-ignore-vc-files, vc-master-templates)
2469 * vc/vc.el (vc-checkout-carefully): Likewise.
2470
2471 * vc/emerge.el (emerge-mode): Make it an obsolete alias.
2472 (emerge-version): Remove.
2473
2474 * progmodes/compile.el (compile-internal): Remove.
2475 (compilation-parse-errors-function): Fix typo.
2476
2477 * international/mule.el (set-char-table-default): Remove.
2478 (set-coding-priority, make-coding-system, generic-char-p)
2479 (charset-list, charset-bytes, charset-id): Use declare to mark
2480 functions as obsolete.
2481
2482 * vc/pcvs-defs.el (cvs-buffer-name-alist)
2483 (cvs-invert-ignore-marks): Remove references to obsolete vars.
2484 * vc/vc-hooks.el (vc-default-registered): Don't use
2485 vc-master-templates.
2486
2487 * font-lock.el (font-lock-reference-face):
2488 Use define-obsolete-variable-alias.
2489
2490 * generic-x.el (rul-generic-mode): Use font-lock-constant-face.
2491 * calendar/calendar.el (calendar-font-lock-keywords):
2492 * calendar/diary-lib.el (diary-font-lock-keywords)
2493 (diary-fancy-font-lock-keywords):
2494 * textmodes/reftex-sel.el (reftex-insert-docstruct):
2495 * textmodes/reftex-index.el (reftex-insert-index):
2496 * textmodes/reftex-cite.el (reftex-format-bib-entry):
2497 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
2498 * progmodes/ps-mode.el (ps-mode-font-lock-keywords-1):
2499 * progmodes/prolog.el (prolog-font-lock-keywords):
2500 * progmodes/idlwave.el (idlwave-idl-keywords):
2501 * progmodes/ada-mode.el (ada-font-lock-keywords):
2502 * net/snmp-mode.el (snmp-font-lock-keywords-3): Likewise.
2503
2504 2012-09-24 Glenn Morris <rgm@gnu.org>
2505
2506 * mail/emacsbug.el (report-emacs-bug): Include `lsb_release -d'.
2507
2508 2012-09-23 Fabián Ezequiel Gallina <fgallina@cuca>
2509
2510 * progmodes/python.el (python-indent-line): More consistent cursor
2511 movement behavior.
2512
2513 2012-09-23 Stefan Merten <smerten@oekonux.de>
2514
2515 * textmodes/rst.el: Fix compiler warning.
2516
2517 2012-09-23 Roland Winkler <winkler@gnu.org>
2518
2519 * textmodes/bibtex.el (bibtex-autokey-transcriptions):
2520 Transcribe also LaTeX hyphenation.
2521 (bibtex-reformat): Bug fix. Do not quote twice the elements of
2522 bibtex-reformat-previous-options.
2523
2524 2012-09-23 Roland Winkler <winkler@gnu.org>
2525
2526 * proced.el (proced-renice-command): New variable.
2527 (proced-marked-processes): New function.
2528 (proced-with-processes-buffer): New macro.
2529 (proced-send-signal): Use them.
2530 (proced-renice): New command bound to r.
2531
2532 2012-09-23 Roland Winkler <winkler@gnu.org>
2533
2534 * ibuf-ext.el (ibuffer-switch-to-saved-filter-groups): If list
2535 ibuffer-saved-filter-groups has one element, shortcut the call of
2536 completing-read. (Bug#12331)
2537
2538 2012-09-23 Chong Yidong <cyd@gnu.org>
2539
2540 * bindings.el (mode-line-toggle-read-only):
2541 * bs.el (bs-toggle-readonly):
2542 * buff-menu.el (Buffer-menu-toggle-read-only):
2543 * dired.el (dired-toggle-read-only):
2544 * ibuffer.el (ibuffer-do-toggle-read-only): Use read-only-mode.
2545
2546 2012-09-23 Chong Yidong <cyd@gnu.org>
2547
2548 * image.el (image-type-available-p): Adapt to init-image-library
2549 argument changes.
2550
2551 2012-09-22 Juri Linkov <juri@jurta.org>
2552
2553 * dired.el (dired-mode-map): Add [remap read-only-mode] for
2554 `dired-toggle-read-only'. (Bug#12462)
2555
2556 2012-09-22 Martin Rudalics <rudalics@gmx.at>
2557
2558 * subr.el (temp-output-buffer-show): New function.
2559 (with-output-to-temp-buffer): Call temp-output-buffer-show
2560 instead of internal-temp-output-buffer-show.
2561
2562 2012-09-22 Chong Yidong <cyd@gnu.org>
2563
2564 * files.el (ctl-x-map): Bind C-x C-q to read-only-mode
2565 (Bug#12462).
2566
2567 * repeat.el (repeat): Doc fix (Bug#12348).
2568
2569 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix
2570 (Bug#10909).
2571
2572 * simple.el (shell-command-on-region): Doc fix.
2573 (read-only-mode): Doc fix.
2574
2575 2012-09-22 Eli Zaretskii <eliz@gnu.org>
2576
2577 * emacs-lisp/timer.el (run-with-idle-timer)
2578 (timer-activate-when-idle): Warn against reinvoking an idle timer
2579 from within its own timer action. (Bug#12447)
2580
2581 2012-09-22 Martin Rudalics <rudalics@gmx.at>
2582
2583 * cus-start.el (window-combination-limit): Add new optional
2584 values.
2585 * window.el (temp-buffer-window-show)
2586 (window--try-to-split-window): Handle new values of
2587 window-combination-limit (Bug#1806).
2588 (split-window): Test window-combination-limit for t instead of
2589 non-nil.
2590 (display-buffer-at-bottom): New buffer display action function.
2591 * help.el (temp-buffer-resize-regexps): New option.
2592 (temp-buffer-resize-mode): Rewrite doc-string.
2593 (resize-temp-buffer-window): Obey temp-buffer-resize-regexps.
2594 Don't resize reused window. Suggested by Glenn Morris.
2595
2596 2012-09-22 Stefan Merten <smerten@oekonux.de>
2597
2598 * textmodes/rst.el: Revamp section title faces.
2599 (rst-official-version)
2600 (rst-package-emacs-version-alist): Sync with official version
2601 V1.4.0.
2602 (rst-faces-defaults, rst-set-level-default)
2603 (rst-level-face-max, rst-level-face-base-color)
2604 (rst-level-face-base-light, rst-level-face-format-light)
2605 (rst-level-face-step-light, rst-define-level-faces): Obsolete.
2606 (rst-adornment-faces-alist): Match new setup.
2607 (rst-level-1, rst-level-2, rst-level-3, rst-level-4)
2608 (rst-level-5, rst-level-6): New faces.
2609
2610 2012-09-22 Chong Yidong <cyd@gnu.org>
2611
2612 * simple.el (undo): Handle indirect buffers (Bug#8207).
2613
2614 2012-09-21 Leo Liu <sdl.web@gmail.com>
2615
2616 IDO: Disable match re-ordering for buffer switching.
2617 * ido.el (ido-buffer-disable-smart-matches): New variable.
2618 (ido-set-matches-1): Use it. (Bug#2042)
2619
2620 2012-09-21 Jose Marino <marinoj@nso.edu> (tiny change)
2621
2622 * progmodes/idlw-shell.el (idlwave-shell-complete-filename):
2623 Fix 2011-05-17 change. (Bug#12418)
2624
2625 2012-09-21 Leo Liu <sdl.web@gmail.com>
2626
2627 * subr.el (ignore-errors): Mention with-demoted-errors in doc-string.
2628
2629 2012-09-21 Glenn Morris <rgm@gnu.org>
2630
2631 * emacs-lisp/shadow.el (load-path-shadows-font-lock-keywords):
2632 Be more robust about locating simple.el.
2633
2634 2012-09-21 Glenn Morris <rgm@gnu.org>
2635
2636 * mail/emacsbug.el (report-emacs-bug): Trap load-path-shadows errors.
2637
2638 2012-09-21 Joel Bion <jpbion@westvi.com> (tiny change)
2639
2640 * pcmpl-gnu.el (pcmpl-gnu-tarfile-regexp): Add tar.xz. (Bug#12382)
2641
2642 2012-09-20 Juri Linkov <juri@jurta.org>
2643
2644 * replace.el (query-replace-read-from): Use `read-regexp' instead
2645 of `read-from-minibuffer' when `regexp-flag' is non-nil.
2646 (occur-read-primary-args): Use `read-regexp' instead of
2647 `read-string'.
2648 (multi-occur-in-matching-buffers): Use `read-regexp' instead of
2649 `read-from-minibuffer'.
2650 * isearch.el (isearch-occur): Use `read-regexp' instead of
2651 `read-string'.
2652 * dired.el (dired-read-regexp): Use `read-regexp' instead of
2653 `read-from-minibuffer'.
2654 * progmodes/grep.el (grep-read-regexp): Use `read-regexp' instead
2655 of `read-string'. (Bug#7567)
2656
2657 * replace.el (read-regexp): Rename DEFAULT-VALUE arg to DEFAULTS
2658 and allow accepting a list of strings prepended to a list of
2659 standard default values. Doc fix. (Bug#12321)
2660
2661 * replace.el (read-regexp): Add HISTORY arg. (Bug#7567)
2662
2663 * replace.el (read-regexp): Don't add ": " when PROMPT already
2664 ends with a colon and space. (Bug#12321)
2665
2666 2012-09-20 Tassilo Horn <tsdh@gnu.org>
2667
2668 * doc-view.el (doc-view-display): Better fix for the cl-assertion
2669 error.
2670
2671 2012-09-20 Stefan Merten <smerten@oekonux.de>
2672
2673 * textmodes/rst.el: Integrate support for `imenu' and `which-function'.
2674 Fixes feature request bug#11711.
2675 (rst-mode): Create `imenu-create-index-function'.
2676 (rst-get-stripped-line): Delete after refactoring.
2677 (rst-section-tree, rst-section-tree-rec)
2678 (rst-section-tree-point): Refactor and document properly.
2679 (rst-imenu-find-adornments-for-position)
2680 (rst-imenu-convert-cell, rst-imenu-create-index):
2681 New function.
2682
2683 2012-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
2684
2685 * emacs-lisp/macroexp.el (macroexp--obsolete-warning): New function.
2686 (macroexp--expand-all): Use it.
2687 (macroexp--funcall-and-return): Remove by folding it into its sole
2688 caller (macroexp--warn-and-return).
2689 * emacs-lisp/bytecomp.el (byte-compile-warn-obsolete):
2690 Use macroexp--obsolete-warning.
2691
2692 * calc/calc.el: Fix last change by removing the whole chunk, since it
2693 was only needed back when Calc was not bundled.
2694
2695 2012-09-20 Martin Rudalics <rudalics@gmx.at>
2696
2697 * emacs-lisp/debug.el (debug): Restore assignment to
2698 debugger-old-buffer removed on 2012-09-08.
2699
2700 2012-09-20 Juri Linkov <juri@jurta.org>
2701
2702 * dired-aux.el (dired-diff): Remove (require 'diff) since
2703 `diff-latest-backup-file' is now autoloaded.
2704
2705 2012-09-20 Chong Yidong <cyd@gnu.org>
2706
2707 * vc/diff.el (diff-latest-backup-file): Autoload.
2708
2709 2012-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
2710
2711 * calc/calc.el: Remove redundant autoload shape check.
2712 (sel-mode): Don't defvar.
2713 (calc-get-stack-element): Add `sel-mode' arg instead.
2714 (calc-top, calc-top-list): Pass it this additional argument.
2715 * calc/calc-store.el (calc-store-map):
2716 * calc/calc-map.el (calc-apply, calc-reduce, calc-map)
2717 (calc-map-equation, calc-outer-product, calc-inner-product):
2718 * calc/calc-aent.el (calc-alg-entry): Don't bind sel-mode.
2719
2720 * emacs-lisp/macroexp.el (macroexp--expand-all): Fix last change.
2721
2722 2012-09-19 Juri Linkov <juri@jurta.org>
2723
2724 * dired-aux.el (dired-diff): Add (require 'diff) because
2725 `diff-latest-backup-file' is not autoloaded.
2726 (dired-do-chxxx, dired-do-chmod): Set `no-error-if-not-filep' arg
2727 of `dired-get-filename' to t to not report error when there is
2728 no default file on the current line.
2729
2730 2012-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
2731
2732 * emacs-lisp/macroexp.el (macroexp--funcall-if-compiled): Rename from
2733 macroexp--eval-if-compile.
2734 (macroexp--funcall-and-return, macroexp--warn-and-return): New funs.
2735 (macroexp--expand-all): Use them (bug#12371).
2736
2737 * doc-view.el (doc-view-guess-paper-size)
2738 (doc-view-scale-bounding-box): Fix unbound `caddr'.
2739
2740 2012-09-19 Tassilo Horn <tsdh@gnu.org>
2741
2742 New feature: set optimal slice from BoundingBox information.
2743 * doc-view.el (doc-view-mode-map): Add keybinding.
2744 (doc-view-menu): Add menu entry.
2745 (doc-view-set-slice): Adapt docstring.
2746 (doc-view-get-bounding-box, doc-view-guess-paper-size)
2747 (doc-view-scale-bounding-box)
2748 (doc-view-set-slice-from-bounding-box): New functions.
2749 (doc-view-paper-sizes): New defvar.
2750
2751 2012-09-19 Glenn Morris <rgm@gnu.org>
2752
2753 * emacs-lisp/macroexp.el (byte-compile-warn-obsolete)
2754 (byte-compile-log-warning): Autoload. (Bug#12371)
2755
2756 * calendar/calendar.el (calendar-american-month-header)
2757 (calendar-european-month-header, calendar-iso-month-header)
2758 (calendar-month-header): New options.
2759 (calendar-set-date-style): Set calendar-month-header. Redraw calendar.
2760 (calendar-generate-month): Use calendar-month-header. (Bug#9510)
2761
2762 2012-09-19 Jan Djärv <jan.h.d@swipnet.se>
2763
2764 * startup.el (command-line-ns-option-alist): Add -g and --geometry.
2765
2766 2012-09-18 Juri Linkov <juri@jurta.org>
2767
2768 * dired-aux.el (dired-diff): Restore original functionality of
2769 getting the default value, but keep new feature of using the
2770 latest existing backup file (`diff-latest-backup-file').
2771
2772 2012-09-18 Juri Linkov <juri@jurta.org>
2773
2774 * dired.el (dired-mark): If the region is active in Transient Mark
2775 mode, mark all files in the active region. Doc fix.
2776 (dired-unmark, dired-flag-file-deletion, dired-unmark-backward):
2777 Doc fix. (Bug#10624)
2778
2779 2012-09-18 Juri Linkov <juri@jurta.org>
2780
2781 * dired-aux.el (dired-do-chxxx, dired-do-chmod): Default file
2782 attributes for M-n are pulled from the file at point.
2783 (dired-do-chgrp, dired-do-chown, dired-do-touch): Doc fix.
2784 Suggested by Drew Adams. (Bug#10624)
2785
2786 2012-09-18 Dmitry Gutov <dgutov@yandex.ru>
2787
2788 * progmodes/ruby-mode.el (ruby-brace-to-do-end): Don't add extra
2789 whitespace after "end".
2790 (ruby-do-end-to-brace): Collapse block to one line if it fits
2791 within fill-column.
2792
2793 2012-09-18 Martin Rudalics <rudalics@gmx.at>
2794
2795 * emacs-lisp/debug.el (debugger-bury-or-kill): Fix customization
2796 value.
2797 (debug): Don't remove debugger window when debugger is expected
2798 to be back.
2799
2800 2012-09-18 Chong Yidong <cyd@gnu.org>
2801
2802 * custom.el (defface): Doc fix.
2803
2804 * cus-edit.el (custom-unlispify-remove-prefixes): Add warning.
2805
2806 2012-09-18 Martin Blais <blais@furius.ca> (tiny change)
2807
2808 * progmodes/compile.el (compilation-start): Use compilation-always-kill
2809 to initialize query-on-exit; then test that instead (bug#12288).
2810
2811 2012-09-17 Stefan Merten <smerten@oekonux.de>
2812
2813 * textmodes/rst.el: Add support for `testcover'.
2814 (rst-defcustom-testcover, rst-testcover-add-compose)
2815 (rst-testcover-add-1value): New functions.
2816 (rst-portable-mark-active-p): Replace by `use-region-p'.
2817 (rst-update-section, rst-classify-adornment)
2818 (rst-find-title-line): Mark `1value' forms.
2819 (rst-classify-adornment): Remove superfluous form.
2820 (rst-update-section, rst-get-adornments-around)
2821 (rst-adornment-complete-p, rst-get-next-adornment)
2822 (rst-adjust, rst-promote-region)
2823 (rst-display-adornments-hierarchy, rst-straighten-adornments)
2824 (rst-find-pfx-in-region, rst-section-tree-rec)
2825 (rst-section-tree-point, rst-toc-insert, rst-toc-insert-node)
2826 (rst-toc-node, rst-toc, rst-forward-section)
2827 (rst-iterate-leftmost-paragraphs)
2828 (rst-iterate-leftmost-paragraphs-2, rst-enumerate-region)
2829 (rst-bullet-list-region)
2830 (rst-convert-bullets-to-enumeration, rst-font-lock-keywords)
2831 (rst-compile-find-conf, rst-compile)
2832 (rst-repeat-last-character): Fix style.
2833
2834 2012-09-17 Chong Yidong <cyd@gnu.org>
2835
2836 * comint.el (comint--complete-file-name-data): Don't add a space
2837 if the status is `sole'; that adds a gratuitous space in the
2838 completion-cycling case (Bug#12092).
2839
2840 * pcomplete.el (pcomplete-completions-at-point): Likewise.
2841
2842 2012-09-17 Richard Stallman <rms@gnu.org>
2843
2844 * mail/rmailmm.el (rmail-mime-toggle-raw): Do rmail-mime-insert
2845 only in the mime-shown mode, not in raw mode.
2846 (rmail-mime): Toggle off mime by displaying the message without
2847 mime processing. (Bug#12305)
2848
2849 * mail/rmail.el (rmail-retry-failure):
2850 Turn off mime processing first. (Bug#12037)
2851
2852 * epa-mail.el (epa-mail-encrypt): Fix bug when a name has no key.
2853
2854 2012-09-17 Chong Yidong <cyd@gnu.org>
2855
2856 * shell.el (shell-file-name-chars, shell-file-name-quote-list)
2857 (shell-dynamic-complete-functions): Convert to defcustom.
2858 (shell-prompt-pattern, shell-completion-fignore): Doc fix.
2859
2860 * bookmark.el (bookmark-bmenu-toggle-filenames): Doc fixes.
2861 * comint.el (comint-prompt-read-only):
2862 * custom.el (defcustom):
2863 * hi-lock.el (hi-lock-mode):
2864 * ibuffer.el (ibuffer-formats):
2865 * ielm.el (ielm-prompt-read-only):
2866 * novice.el (disable-command):
2867 * saveplace.el (toggle-save-place):
2868 * speedbar.el (speedbar-supported-extension-expressions):
2869 * startup.el (auto-save-list-file-prefix, init-file-user)
2870 (after-init-hook, inhibit-startup-echo-area-message):
2871 * strokes.el (strokes-help):
2872 * time-stamp.el (time-stamp):
2873 * calendar/calendar.el (calendar, diary-file):
2874 * calendar/diary-lib.el (diary-mail-entries, diary)
2875 (diary-list-entries-hook):
2876 * calendar/holidays.el (holidays, calendar-holidays):
2877 * calendar/lunar.el (lunar-phases):
2878 * calendar/solar.el (sunrise-sunset):
2879 * emulation/edt.el (edt-load-keys):
2880 * emulation/viper.el (viper-mode):
2881 * eshell/em-alias.el (eshell-command-aliases-list):
2882 * eshell/esh-util.el (eshell-convert-numeric-arguments):
2883 * international/ogonek.el (ogonek-information):
2884 * net/tramp-cmds.el (tramp-bug):
2885 * net/quickurl.el (quickurl-reread-hook-postfix):
2886 * play/decipher.el (decipher-font-lock-keywords):
2887 * progmodes/cc-styles.el (c-set-style):
2888 * progmodes/idlw-shell.el (idlwave-shell-prompt-pattern):
2889 * progmodes/inf-lisp.el (inferior-lisp-prompt):
2890 * progmodes/octave-mod.el (octave-mode):
2891 * progmodes/sql.el (sql-mode, sql-interactive-mode, sql-password):
2892 * progmodes/verilog-mode.el (verilog-read-defines):
2893 * textmodes/two-column.el (2C-mode): Likewise.
2894
2895 2012-09-16 Katsumi Yamaoka <yamaoka@jpl.org>
2896
2897 * mail/mailabbrev.el (mail-abbrev-expand-hook): Work for a mail aliasee
2898 that holds many addresses.
2899
2900 2012-09-16 Chong Yidong <cyd@gnu.org>
2901
2902 * align.el (align-areas): Call the indication function with
2903 positions instead of markers for arguments (Bug#12343).
2904
2905 * files.el (parse-colon-path): Use split-string (Bug#12351).
2906
2907 * window.el (special-display-popup-frame): Doc fix (Bug#8853).
2908 (display-buffer-function): Mark as obsolete.
2909
2910 * progmodes/compile.el (compilation-parse-errors): Accept list
2911 values similar to font-lock-keywords (Bug#12136).
2912 Suggested by Oleksandr Manzyuk.
2913 (compilation-error-regexp-alist): Doc fix.
2914
2915 2012-09-15 Glenn Morris <rgm@gnu.org>
2916
2917 * version.el (emacs-bzr-version-bzr): New function.
2918 (emacs-bzr-get-version): Add optional EXTERNAL argument.
2919
2920 * vc/vc-bzr.el (vc-bzr-working-revision): For lightweight local
2921 checkouts, check the parent dirstate matches the branch.
2922 Add "--tree" to "bzr revno" arguments. Don't try to shorten the
2923 empty string.
2924
2925 * version.el (emacs-bzr-version): Doc fix.
2926 (emacs-bzr-version-dirstate): New function.
2927 (emacs-bzr-get-version): For lightweight checkouts, if the parent
2928 is local try and check that it matches the branch. If not, just
2929 use dirstate information. (Bug#12441)
2930
2931 2012-09-14 Juri Linkov <juri@jurta.org>
2932
2933 * dired-aux.el (dired-do-chmod): Use `eq' to detect empty input.
2934 (Bug#12399)
2935
2936 2012-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
2937
2938 * emacs-lisp/advice.el (ad-prognify): Remove, use macroexp-progn.
2939
2940 * emacs-lisp/edebug.el: Miscellaneous cleanup.
2941 Remove obsolete byte-compiler hack that tried to silence some warnings.
2942 (edebug-submit-bug-report): Remove.
2943 (edebug-get-buffer-window, edebug-sit-for, edebug-input-pending-p):
2944 Remove aliases, use the un-prefixed name instead.
2945 (edebug-pop-to-buffer): Consider other frames.
2946 (edebug-original-read):: Make it more obvious that it's always defined.
2947 (edebug--make-form-data-entry, edebug--form-data-name)
2948 (edebug--form-data-begin, edebug--form-data-end): Rename from the
2949 single-dashed name, and implement with cl-defstruct.
2950 (edebug-set-form-data-entry): Use the standard accessors.
2951 (edebug-make-top-form-data-entry): Use push.
2952 (edebug-no-match): Drop useless `funcall'.
2953 (mapcar, mapconcat, mapatoms, apply, funcall): Don't add debug specs
2954 to functions.
2955 (defsubst, dont-compile, eval-when-compile, eval-and-compile)
2956 (delay-mode-hooks, with-temp-file, with-temp-message, ad-dolist)
2957 (with-syntax-table, push, pop, 1value, noreturn, defadvice)
2958 (easy-menu-define, with-custom-print): Remove redundant specs.
2959 (edebug-outside-overriding-local-map)
2960 (edebug-outside-overriding-terminal-local-map): Remove, unused.
2961 (edebug--display): Bind unread-command-events directly to nil rather
2962 than binding it to unread-command-events and later setting it to nil.
2963 (edebug--display): Kill edebug-eval-buffer here...
2964 (edebug--recursive-edit): ...rather than here.
2965 Bind standard-output and standard-input.
2966 (edebug-eval): Check cl-macroexpand-all is fboundp.
2967 (edebug-temp-display-freq-count): Fix last change.
2968
2969 * emacs-lisp/easymenu.el (easy-menu-define): Add `debug' spec.
2970 * subr.el (noreturn, 1value): Add `debug' spec.
2971 * emacs-lisp/advice.el: Require cl-lib.
2972 (ad-copy-tree): Remove, use copy-tree instead.
2973 (ad-dolist): Remove use dolist or cl-dolist instead.
2974 (ad-do-return): Remove, use cl-return instead.
2975 (defadvice): Add `debug' spec.
2976
2977 2012-09-13 Juri Linkov <juri@jurta.org>
2978
2979 * dired-aux.el (dired-do-chxxx): Use `eq' to detect empty input.
2980 (Bug#12399)
2981
2982 2012-09-13 Glenn Morris <rgm@gnu.org>
2983
2984 * calc/calc.el (math-compose-expr):
2985 * calc/calc-ext.el (math-compose-expr):
2986 * progmodes/cc-defs.el (cl-macroexpand-all):
2987 * progmodes/cc-langs.el (delete-duplicates, mapcan)
2988 (cl-macroexpand-all): Update declarations.
2989
2990 * vc/vc.el: No need to require ediff.
2991 (ediff-load-version-control): Declare.
2992 (ediff-vc-internal): Fix declaration.
2993 (vc-version-ediff): Require ediff.
2994
2995 2012-09-13 Paul Eggert <eggert@cs.ucla.edu>
2996
2997 Use a more backwards-compatible timer format (Bug#12430).
2998 * emacs-lisp/timer.el (timer): PSECS is now at the end, rather than
2999 being right after USECS, as that better supports old code that
3000 inadvisedly looked directly at the timer vector.
3001
3002 2012-09-13 Kenichi Handa <handa@gnu.org>
3003
3004 * language/chinese.el ("Chinese-GB", "Chinese-BIG5")
3005 ("Chinese-CNS", "Chinese-EUC-TW"): Add chinese-gbk to
3006 `coding-priority' property of these language environment.
3007
3008 2012-09-13 Paul Eggert <eggert@cs.ucla.edu>
3009
3010 Fix glitches caused by addition of psec to timers (Bug#12430).
3011 * image.el (image-animate-timer):
3012 * time.el (display-time-world-timer):
3013 Use timer--function and timer--args rather than raw access to
3014 timer vector.
3015
3016 2012-09-13 Glenn Morris <rgm@gnu.org>
3017
3018 * emacs-lisp/bytecomp.el (byte-compile-warning-prefix):
3019 If not compiling a file, try using load-file-name.
3020
3021 2012-09-13 Stefan Monnier <monnier@iro.umontreal.ca>
3022
3023 * emacs-lisp/edebug.el (edebug-outside-unread-command-events):
3024 Fix last change.
3025 (edebug-update-eval-list): Use `push'.
3026
3027 * emacs-lisp/edebug.el: Use lexical-binding.
3028 Remove the "edebug-" prefix from non-dynamically-scoped variables.
3029 Mark unused args with underscore.
3030 (edebug-save-restriction, edebug-outside-excursion): Use `declare'.
3031 (edebug-form-data): Use defvar-local.
3032 (edebug-make-before-and-after-form, edebug-make-after-form):
3033 Use backquote.
3034 (edebug-args, edebug-value, edebug-after-index, edebug-arg-mode):
3035 Not dynamically scoped any more.
3036 (edebug--enter-trace): Add arguments `function' and `args'.
3037 Rename from edebug-enter-trace.
3038 (edebug-enter): Call it accordingly. Bind edebug-function explicitly.
3039 (edebug--update-coverage): Add `after-index' and `value' args.
3040 Rename from edebug-update-coverage.
3041 (edebug-slow-after): Call it accordingly.
3042 (edebug--recursive-edit): Add arg `arg-mode'. Rename from
3043 edebug-recursive-edit.
3044 (edebug--display): Call it accordingly. Add args `value',
3045 `offset-index', and `arg-mode'. Rename from edebug-display.
3046 (edebug-debugger, edebug): Call it accordingly.
3047 (edebug-eval-display-list): Use dolist.
3048
3049 2012-09-12 Juri Linkov <juri@jurta.org>
3050
3051 * info.el (Info-search): Don't check for isearch-mode and
3052 isearch-regexp before let-binding search-spaces-regexp to
3053 Info-search-whitespace-regexp.
3054 (Info-isearch-search): Let-bind Info-search-whitespace-regexp to
3055 search-whitespace-regexp if isearch-lax-whitespace or
3056 isearch-regexp-lax-whitespace is non-nil.
3057 (Info-mode): Don't set local variable search-whitespace-regexp.
3058 http://lists.gnu.org/archive/html/emacs-devel/2012-08/msg00811.html
3059
3060 2012-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
3061
3062 * emacs-lisp/debug.el (debugger-outer-unread-command-char, debug)
3063 (debugger-env-macro): Remove support for unread-command-char.
3064
3065 * subr.el (set-temporary-overlay-map): Minimize slightly the impact of
3066 the temporary map re-appearing on emulation-mode-map-alists.
3067
3068 * emacs-lisp/edebug.el (def-edebug-form-spec): Remove, it's been broken
3069 since 22.1.
3070
3071 * ehelp.el (with-electric-help): Accept functions in
3072 electric-help-form-to-execute.
3073 (electric-help-execute-extended, electric-help-ctrl-x-prefix): Use it.
3074 And replace unread-command-char -> unread-command-events.
3075
3076 2012-09-12 Michael Albinus <michael.albinus@gmx.de>
3077
3078 Sync with Tramp 2.2.6.
3079
3080 * net/tramp.el (tramp-accept-process-output): Don't use
3081 JUST-THIS-ONE in the XEmacs case.
3082
3083 * net/trampver.el: Update release number.
3084
3085 2012-09-12 Martin Rudalics <rudalics@gmx.at>
3086
3087 * emacs-lisp/debug.el (debugger-previous-window-height):
3088 New variable.
3089 (debug): When debugger-jumping-flag is non-nil try to restore
3090 height of debugger window. (Bug#8789)
3091
3092 2012-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
3093
3094 * emacs-lisp/edebug.el (edebug-enter): Don't mess with
3095 overriding-local-map and pre/post-command-hook here.
3096 (edebug-recursive-edit): Do it here instead (bug#12345).
3097 (edebug-outside-unread-command-char): Remove all uses of
3098 unread-command-char.
3099
3100 * emacs-lisp/debug.el (debug): Don't bind debug-on-error since
3101 inhibit-debugger is bound instead.
3102
3103 2012-09-11 Bastien Guerry <bzg@gnu.org>
3104
3105 * subr.el (set-temporary-overlay-map): Add a docstring.
3106 (Bug#12346)
3107
3108 2012-09-11 Bastien Guerry <bzg@gnu.org>
3109
3110 * minibuffer.el (completion-table-subvert): Fix docstring.
3111 (Bug#12347)
3112
3113 2012-09-11 Bastien Guerry <bzg@gnu.org>
3114
3115 * help-fns.el (describe-variable): Fix typo. (Bug#12346)
3116
3117 2012-09-10 Michael R. Mauger <mmaug@yahoo.com>
3118
3119 * progmodes/sql.el: Version 3.1
3120 (sql-db2-escape-newlines): New variable.
3121 (sql-escape-newlines-filter): Use it.
3122
3123 2012-09-10 Juanma Barranquero <lekktu@gmail.com>
3124
3125 * custom.el (custom-theme-load-confirm): Remove unneeded assignment.
3126
3127 2012-09-10 Dan Nicolaescu <dann@gnu.org>
3128
3129 * vc/diff-mode.el (diff-mode-menu):
3130 Bind diff-remove-trailing-whitespace.
3131
3132 2012-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
3133
3134 * emacs-lisp/lisp-mode.el (emacs-list-byte-code-comment-re): New var.
3135 (emacs-lisp-byte-code-comment, emacs-lisp-byte-code-syntax-propertize)
3136 (emacs-lisp-byte-code-mode): New functions.
3137 (eval-sexp-add-defvars): Don't skip defvars in column >0.
3138 (eval-defun-2): Remove bogus interactive spec.
3139 (lisp-indent-line): Remove redundant whole-exp code, now done in
3140 indent-according-to-mode.
3141 (save-match-data): Remove redundant indent data.
3142
3143 * emacs-lisp/benchmark.el (benchmark-run, benchmark-run-compiled):
3144 Use `declare'.
3145
3146 2012-09-09 Juri Linkov <juri@jurta.org>
3147
3148 * replace.el (replace-regexp-lax-whitespace): New defcustom.
3149 (replace-lax-whitespace, query-replace-regexp)
3150 (query-replace-regexp-eval, replace-regexp): Doc fix.
3151 (perform-replace, replace-highlight): Let-bind
3152 isearch-lax-whitespace to replace-lax-whitespace and
3153 isearch-regexp-lax-whitespace to replace-regexp-lax-whitespace.
3154
3155 * isearch.el (isearch-query-replace): Let-bind
3156 replace-lax-whitespace to isearch-lax-whitespace and
3157 replace-regexp-lax-whitespace to
3158 isearch-regexp-lax-whitespace. (Bug#10885)
3159
3160 2012-09-09 Stefan Monnier <monnier@iro.umontreal.ca>
3161
3162 * eshell/em-unix.el (eshell/sudo): Explicitly drop return value.
3163
3164 2012-09-09 Alan Mackenzie <acm@muc.de>
3165
3166 * progmodes/cc-engine.el (c-state-cache-init):
3167 Initialise c-state-semi-nonlit-pos-cache\(-limit\)? properly.
3168 (c-record-parse-state-state):
3169 Record c-state-semi-nonlit-pos-cache\(-limit\)?.
3170
3171 2012-09-09 Andreas Schwab <schwab@linux-m68k.org>
3172
3173 * register.el (register-separator): Rename from
3174 separator-register. All uses changed. Doc fix.
3175 (register): Fix version.
3176
3177 2012-09-09 Chong Yidong <cyd@gnu.org>
3178
3179 * replace.el (query-replace-map): Bind four new symbols for
3180 requesting window scrolling.
3181
3182 * subr.el (y-or-n-p): Handle the window-scrolling bindings in
3183 query-replace-map (Bug#8948).
3184
3185 * custom.el (custom-theme-load-confirm): Use y-or-n-p.
3186
3187 * emacs-lisp/map-ynp.el (map-y-or-n-p): Don't bind scrolling keys
3188 since they are now in query-replace-map.
3189
3190 * window.el (scroll-other-window-down): Make the arg optional.
3191
3192 2012-09-09 Chong Yidong <cyd@gnu.org>
3193
3194 * files.el (hack-local-variables-confirm): Use quit-window to kill
3195 the *Local Variables* buffer.
3196
3197 2012-09-08 Dmitry Gutov <dgutov@yandex.ru>
3198
3199 * progmodes/ruby-mode.el (ruby-toggle-block): Guess the current block,
3200 not just expect to be at its beginning. Adjust callees.
3201 Succeed when do-end block has no space before the pipe character.
3202 (ruby-brace-to-do-end): When the original block is one-liner,
3203 convert to multiline. Reindent the result.
3204
3205 2012-09-08 Jambunathan K <kjambunathan@gmail.com>
3206
3207 * register.el (register): New group.
3208 (separator-register): New user option.
3209 (increment-register): Route it to `append-to-register', if
3210 register contains text. Implication is that `C-x r +' can now be
3211 used for appending to a text register (bug#12217).
3212 (append-to-register, prepend-to-register): Add separator based on
3213 `separator-register'.
3214
3215 2012-09-08 Alan Mackenzie <acm@muc.de>
3216
3217 AWK Mode: make auto-newline work when there's "==" in the pattern.
3218 * progmodes/cc-cmds.el (c-point-syntax): Handle virtual semicolons
3219 correctly.
3220 * progmodes/cc-engine.el (c-guess-basic-syntax CASE 5A.3):
3221 Test more rigorously for "=" token.
3222
3223 2012-09-08 Dmitry Gutov <dgutov@yandex.ru>
3224
3225 * progmodes/ruby-mode.el (ruby-match-expression-expansion):
3226 Only fail when reached LIMIT.
3227
3228 2012-09-08 Chong Yidong <cyd@gnu.org>
3229
3230 * dired.el (dired-mode-map): Don't bind M-=.
3231
3232 * dired-aux.el (dired-diff): Use backup file as default.
3233
3234 2012-09-08 Drew Adams <drew.adams@oracle.com>
3235
3236 * subr.el (add-to-history): Fix delete usage (Bug#12314).
3237
3238 2012-09-08 Chong Yidong <cyd@gnu.org>
3239
3240 * subr.el (syntax-after, syntax-class): Doc fix.
3241
3242 2012-09-08 Martin Rudalics <rudalics@gmx.at>
3243
3244 * window.el (display-buffer-in-previous-window): New buffer
3245 display action function.
3246
3247 * emacs-lisp/debug.el (debugger-bury-or-kill): New option.
3248 (debugger-previous-window): New variable.
3249 (debug): Rewrite using display-buffer-in-previous-window,
3250 quit-restore-window and debugger-bury-or-kill. (Bug#8789)
3251
3252 2012-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
3253
3254 * emacs-lisp/byte-run.el (defun): Tweak message. Simplify code.
3255
3256 2012-09-07 Matt McClure <mlm@aya.yale.edu> (tiny change)
3257
3258 * progmodes/python.el (python-shell-send-string):
3259 When default-directory is remote, create temp file on remote
3260 filesystem.
3261 (python-shell-send-file): When file is remote, pass local view of
3262 file paths to remote Python interpreter. (Bug#12340)
3263
3264 2012-09-07 Chong Yidong <cyd@gnu.org>
3265
3266 * window.el (switch-to-buffer): Doc fix (Bug#12181).
3267
3268 * files.el (after-find-file): Don't fail on a read-only buffer if
3269 require-final-newline is `visit' or `visit-save' (Bug#11156).
3270
3271 * subr.el (read-char-choice): Allow quitting via ESC ESC.
3272
3273 * userlock.el (ask-user-about-supersession-threat):
3274 Use read-char-choice (Bug#12093).
3275
3276 2012-09-07 Chong Yidong <cyd@gnu.org>
3277
3278 * subr.el (buffer-narrowed-p): New function.
3279
3280 * ses.el (ses-widen):
3281 * simple.el (count-words--buffer-message):
3282 * net/browse-url.el (browse-url-of-buffer): Use it.
3283
3284 * simple.el (count-words-region): Don't signal an error if there
3285 is a non-nil prefix arg and the mark is not set.
3286
3287 * help.el (describe-key-briefly): Allow the message to be seen
3288 when invoked from the minibuffer (Bug#7014).
3289
3290 2012-09-07 Dmitry Gutov <dgutov@yandex.ru>
3291
3292 * progmodes/ruby-mode.el (ruby-end-of-defun)
3293 (ruby-beginning-of-defun): Simplify, allow indentation before
3294 block beginning and end keywords.
3295 (ruby-beginning-of-defun): Only consider 3 keywords defun beginners.
3296 (ruby-end-of-defun): Expect that the point is at the beginning of
3297 the defun.
3298
3299 2012-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
3300
3301 * emacs-lisp/cl-macs.el (cl--do-arglist): Understand _ on &key args
3302 (bug#12367).
3303 (cl--make-usage-args): Strip _ from argument names.
3304
3305 2012-09-06 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
3306
3307 * progmodes/vhdl-mode.el (vhdl-speedbar-initialize): Don't use
3308 obsolete alias speedbar-key-map.
3309 (vhdl-doc-variable, vhdl-doc-mode): Use called-interactively-p.
3310 (vhdl-index-menu-init): Don't use obsolete variable
3311 font-lock-maximum-size.
3312
3313 2012-09-06 Chong Yidong <cyd@gnu.org>
3314
3315 * frame.el (window-system-version): Mark as obsolete.
3316
3317 * speedbar.el (speedbar-update-flag, speedbar-mode): Remove uses
3318 of obsolete variable speedbar-key-map.
3319
3320 2012-09-06 Juri Linkov <juri@jurta.org>
3321
3322 * replace.el (replace-lax-whitespace): New defcustom.
3323 (query-replace, query-replace-regexp, query-replace-regexp-eval)
3324 (replace-string, replace-regexp): Mention it in docstrings.
3325 (perform-replace, replace-highlight): Let-bind
3326 isearch-lax-whitespace and isearch-regexp-lax-whitespace according
3327 to the values of replace-lax-whitespace and regexp-flag.
3328 Don't let-bind search-whitespace-regexp. (Bug#10885)
3329
3330 * isearch.el (isearch-query-replace): Let-bind
3331 replace-lax-whitespace instead of let-binding
3332 replace-search-function and replace-re-search-function.
3333 (isearch-lazy-highlight-search): Let-bind isearch-lax-whitespace
3334 and isearch-regexp-lax-whitespace to lazy-highlight variables.
3335 (isearch-toggle-symbol): Set isearch-regexp to nil
3336 in isearch-word mode (like in isearch-toggle-word).
3337
3338 2012-09-06 Juri Linkov <juri@jurta.org>
3339
3340 * replace.el (replace-search-function)
3341 (replace-re-search-function): Set default values to nil.
3342 (perform-replace): Let-bind isearch-related variables based on
3343 replace-related values, call `isearch-search-fun' and let-bind
3344 the result to `search-function'. Remove code that sets
3345 `search-function' and `search-string' separately for
3346 `delimited-flag'.
3347 (replace-highlight): Add new argument `delimited-flag' and
3348 rename other arguments to the names used in `perform-replace'.
3349 Let-bind `isearch-word' to the argument `delimited-flag'.
3350 (Bug#10885, bug#10887)
3351
3352 2012-09-07 Dmitry Gutov <dgutov@yandex.ru>
3353
3354 * progmodes/ruby-mode.el (ruby-indent-beg-re): Add pieces from
3355 ruby-beginning-of-indent, simplify, allow all keywords to have
3356 indentation before them.
3357 (ruby-beginning-of-indent): Adjust for above. Search until the
3358 found point is not inside a string or comment.
3359 (ruby-font-lock-keywords): Allow symbols to start with "@"
3360 character, give them higher priority than variables.
3361 (ruby-syntax-propertize-function)
3362 (ruby-font-lock-syntactic-keywords): Remove the "not comments"
3363 matchers. Expression expansions are not comments when inside a
3364 string, and there comment syntax status is irrelevant.
3365 (ruby-match-expression-expansion): New function. Check that
3366 expression expansion is inside a string, and it's not escaped.
3367 (ruby-font-lock-keywords): Use it.
3368
3369 2012-09-05 Martin Rudalics <rudalics@gmx.at>
3370
3371 * help.el (temp-buffer-max-height): New default value.
3372 (temp-buffer-resize-frames): New option.
3373 (resize-temp-buffer-window): Optionally resize frame.
3374
3375 * window.el (fit-frame-to-buffer-bottom-margin): New option.
3376 (fit-frame-to-buffer): New function.
3377
3378 2012-09-05 Glenn Morris <rgm@gnu.org>
3379
3380 * emulation/cua-rect.el (cua--init-rectangles):
3381 * textmodes/picture.el (picture-mode-map):
3382 * play/blackbox.el (blackbox-mode-map): Remap right-char and left-char
3383 like forward-char and backward-char. (Bug#12317)
3384
3385 2012-09-05 Leo Liu <sdl.web@gmail.com>
3386
3387 * progmodes/flymake.el (flymake-warning-re): New variable.
3388 (flymake-parse-line): Use it.
3389
3390 2012-09-05 Glenn Morris <rgm@gnu.org>
3391
3392 * calendar/holidays.el (holiday-christian-holidays):
3393 Rename an entry. (Bug#12289)
3394
3395 2012-09-05 Stefan Monnier <monnier@iro.umontreal.ca>
3396
3397 * progmodes/sh-script.el (sh-font-lock-paren): Don't burp at BOB
3398 (bug#12222).
3399
3400 2012-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
3401
3402 * loadup.el: Load macroexp. Remove hack.
3403 * emacs-lisp/macroexp.el (macroexp--eval-if-compile): New function.
3404 (macroexp--expand-all): Use it to get better warnings.
3405 (macroexp--backtrace, macroexp--trim-backtrace-frame)
3406 (internal-macroexpand-for-load): New functions.
3407 (macroexp--pending-eager-loads): New var.
3408 (emacs-startup-hook): New hack to replace one in loadup.el.
3409 * emacs-lisp/cl-macs.el (cl--compiler-macro-list*)
3410 (cl--compiler-macro-cXXr): Move to top, before they can be used.
3411 (cl-psetf): Simplify.
3412 (cl-defstruct): Add indent rule.
3413
3414 2012-09-04 Lars Ingebrigtsen <larsi@gnus.org>
3415
3416 * mail/smtpmail.el (smtpmail-send-it): Prefer the From: header
3417 over `user-mail-address' for the SMTP MAIL FROM envelope.
3418 (smtpmail-via-smtp): Ditto.
3419
3420 2012-09-04 Dmitry Gutov <dgutov@yandex.ru>
3421
3422 * progmodes/ruby-mode.el: Clean up keybindings.
3423 (ruby-mode-map): Don't bind ruby-electric-brace,
3424 ruby-beginning-of-defun, ruby-end-of-defun, ruby-mark-defun,
3425 backward-kill-word, reindent-then-newline-and-indent.
3426 (ruby-mark-defun): Remove.
3427 (ruby-electric-brace): Remove. Obsoleted by electric-indent-chars.
3428 (ruby-mode): Set local beginning-of-defun-function and
3429 end-of-defun-function values.
3430
3431 2012-09-03 Martin Rudalics <rudalics@gmx.at>
3432
3433 * window.el (temp-buffer-window-setup-hook)
3434 (temp-buffer-window-show-hook): New hooks.
3435 (temp-buffer-window-setup, temp-buffer-window-show)
3436 (with-temp-buffer-window): New functions.
3437 (fit-window-to-buffer): Remove unused optional argument OVERRIDE.
3438 (special-display-popup-frame): Make sure the window used shows BUFFER.
3439
3440 * help.el (temp-buffer-resize-mode): Fix doc-string.
3441 (resize-temp-buffer-window): New optional argument WINDOW.
3442
3443 * files.el (recover-file, save-buffers-kill-emacs):
3444 * dired.el (dired-mark-pop-up): Use with-temp-buffer-window.
3445
3446 2012-09-02 Michael Albinus <michael.albinus@gmx.de>
3447
3448 * eshell/em-unix.el (eshell/sudo): When we have an ad-hoc
3449 remote definition of `default-directory', ensure we can connect.
3450
3451 2012-09-02 Juri Linkov <juri@jurta.org>
3452
3453 Toggle whitespace matching mode with M-s SPC.
3454 http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00008.html
3455
3456 * isearch.el (search-whitespace-regexp): Doc fix.
3457 Remove cons cell customization.
3458 (isearch-mode-map): Bind "\M-s " to isearch-toggle-lax-whitespace.
3459 (isearch-lax-whitespace, isearch-regexp-lax-whitespace):
3460 New variables.
3461 (isearch-forward, isearch-forward-regexp): Doc fix.
3462 (isearch-toggle-lax-whitespace): New command.
3463 (search-forward-lax-whitespace, search-backward-lax-whitespace)
3464 (re-search-forward-lax-whitespace)
3465 (re-search-backward-lax-whitespace): New functions.
3466 (isearch-whitespace-regexp): Remove function.
3467 (isearch-query-replace): Let-bind replace-search-function and
3468 replace-re-search-function.
3469 (isearch-occur): Let-bind search-spaces-regexp according to the
3470 value of isearch-lax-whitespace and isearch-regexp-lax-whitespace.
3471 (isearch-quote-char): Check isearch-regexp-lax-whitespace in the
3472 condition for C-q SPC.
3473 (isearch-search-fun-default): Use new functions mentioned above.
3474 (isearch-search-forward, isearch-search-backward): Remove functions.
3475 (isearch-search): Don't let-bind search-spaces-regexp.
3476 (isearch-lazy-highlight-space-regexp): Remove variable.
3477 (isearch-lazy-highlight-lax-whitespace)
3478 (isearch-lazy-highlight-regexp-lax-whitespace): New variables.
3479 (isearch-lazy-highlight-new-loop): Use them.
3480 (isearch-lazy-highlight-search): Don't let-bind search-spaces-regexp.
3481
3482 2012-09-02 Chong Yidong <cyd@gnu.org>
3483
3484 * dired.el (dired-mode-map): Menu string fixes (Bug#11616).
3485
3486 2012-09-02 Glenn Morris <rgm@gnu.org>
3487
3488 * simple.el (undo): Tweak message in undo-only case. (Bug#12283)
3489
3490 2012-09-01 Glenn Morris <rgm@gnu.org>
3491
3492 * term.el: Tidy up menu definitions.
3493 (term-mode-map): Use easymenu for In/Out, Complete menus.
3494 (term-pager-break-map): Initialize in the defvar.
3495 (term-terminal-menu, term-signals-menu): Define with easymenu.
3496 (term-terminal-menu): Also show it in line-mode. (Bug#11957)
3497 (term-pager-menu): New, extracted from term-process-pager.
3498 (term-mode, term-char-mode, term-process-pager): Use easymenu-add.
3499 (term-update-mode-line): Propertize line/char and page items.
3500 (term-process-pager): Move keymap initialization elsewhere.
3501
3502 2012-09-01 Martin Rudalics <rudalics@gmx.at>
3503
3504 * window.el (switch-to-prev-buffer): Handle additional values of
3505 BURY-OR-KILL argument. Don't switch in minibuffer window.
3506 (switch-to-next-buffer): Don't switch in minibuffer window.
3507 (quit-restore-window): New function based on quit-window.
3508 Handle additional values of former KILL argument.
3509 (quit-window): Call quit-restore-window with appropriate
3510 interpretation of KILL argument.
3511 (display-buffer-below-selected): New buffer display action
3512 function.
3513
3514 2012-09-01 Stefan Monnier <monnier@iro.umontreal.ca>
3515
3516 * minibuffer.el (completion-at-point-functions): Complete docstring
3517 (bug#12254).
3518
3519 2012-09-01 Paul Eggert <eggert@cs.ucla.edu>
3520
3521 Better seed support for (random).
3522 * play/5x5.el, play/animate.el, play/cookie1.el, play/dissociate.el:
3523 * play/doctor.el, play/dunnet.el, play/gomoku.el, play/landmark.el:
3524 * play/mpuz.el, play/tetris.el, play/zone.el:
3525 * calc/calc-comb.el (math-init-random-base):
3526 * play/blackbox.el (bb-init-board):
3527 * play/life.el (life):
3528 * server.el (server-use-tcp):
3529 * type-break.el (type-break):
3530 Remove unnecessary call to (random t).
3531 * net/sasl.el (sasl-unique-id-function):
3532 Change (random t) to (random), now that the latter is more random.
3533 * play/life.el (life-initialized): Remove no-longer-needed var.
3534
3535 2012-08-31 Alp Aker <alp.tekin.aker@gmail.com>
3536
3537 * window.el (switch-to-prev-buffer, switch-to-next-buffer):
3538 Consider frame's buffer predicate when choosing the buffer.
3539 (Bug#12081)
3540
3541 2012-08-30 Richard Stallman <rms@gnu.org>
3542
3543 * simple.el (special-mode-map): Delete binding for `z'.
3544
3545 2012-08-30 Andreas Schwab <schwab@linux-m68k.org>
3546
3547 * progmodes/compile.el (compilation-always-kill): Doc fix.
3548
3549 2012-08-30 Chong Yidong <cyd@gnu.org>
3550
3551 * window.el (display-buffer-reuse-frames): Make the obsolescence
3552 message more informative.
3553
3554 2012-08-30 Glenn Morris <rgm@gnu.org>
3555
3556 * paren.el (show-paren-delay):
3557 Add a :set function. Doc fix. (Bug#12297)
3558
3559 2012-08-29 Martin Blais <blais@furius.ca> (tiny change)
3560
3561 * progmodes/compile.el (compilation-always-kill): New var.
3562 (compilation-start): Use it.
3563
3564 2012-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
3565
3566 * simple.el (read-only-mode): Move from files.el for bootstrapping.
3567 * files.el (read-only-mode): Move to simple.el.
3568
3569 * files.el (read-only-mode): New minor mode.
3570 (toggle-read-only): Use it and mark obsolete.
3571 (find-file--read-only):
3572 * vc/vc.el (vc-next-action, vc-checkout):
3573 * vc/vc-cvs.el (vc-cvs-checkout):
3574 * obsolete/vc-mcvs.el (vc-mcvs-update):
3575 * ffap.el (ffap--toggle-read-only): Update callers.
3576
3577 2012-08-29 Michael Albinus <michael.albinus@gmx.de>
3578
3579 * eshell/esh-ext.el (eshell-external-command): Do not examine
3580 remote shell scripts.
3581 See <https://bugs.launchpad.net/ubuntu/+source/emacs23/+bug/1035790>.
3582
3583 * net/tramp-sh.el (tramp-remote-path): Add "/sbin" and
3584 "/usr/local/sbin".
3585
3586 2012-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
3587
3588 * emacs-lisp/cl-lib.el (buffer-string): Fix setter macro (bug#12293).
3589
3590 2012-08-28 Leo Liu <sdl.web@gmail.com>
3591
3592 * progmodes/sh-script.el (sh-dynamic-complete-functions): Adapt to
3593 completion-at-point. (Bug#12220)
3594
3595 * skeleton.el (skeleton-untabify): Change to nil (bug#12223).
3596
3597 * progmodes/sh-script.el (sh-indent-comment): Change to t (bug#12267).
3598
3599 2012-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
3600
3601 * files.el (safe-local-eval-forms): Fix before-save-hook entry to
3602 be buffer-local; add delete-trailing-whitespace (bug#12259).
3603
3604 2012-08-28 Jeremy Moore <jmoore@ieee.org> (tiny change)
3605
3606 * progmodes/hideif.el (hif-compress-define-list):
3607 Fix typo. (Bug#11951)
3608
3609 2012-08-28 Dan Nicolaescu <dann@gnu.org>
3610
3611 * progmodes/hideshow.el (hs-block-end-regexp): Restore lost
3612 buffer local setting.
3613
3614 * net/rcirc.el (rcirc-split-message): Fix for buffer-local
3615 rcirc-encode-coding-system.
3616
3617 2012-08-28 Leo Liu <sdl.web@gmail.com>
3618
3619 * net/rcirc.el (rcirc-split-message): New function.
3620 (rcirc-send-message): Use it. (Bug#12051)
3621
3622 2012-08-28 Juri Linkov <juri@jurta.org>
3623
3624 * info.el (Info-fontify-node): Hide empty lines at the end of
3625 the node. (Bug#12272)
3626
3627 2012-08-27 Drew Adams <drew.adams@oracle.com>
3628
3629 * dired.el (dired-pop-to-buffer): Make window start at beginning
3630 of buffer (Bug#12281).
3631
3632 2012-08-26 Chong Yidong <cyd@gnu.org>
3633
3634 * window.el (special-display-regexps, special-display-frame-alist)
3635 (special-display-buffer-names, special-display-function)
3636 (display-buffer-reuse-frames): Mark as obsolete.
3637
3638 * progmodes/compile.el: Don't use display-buffer-reuse-frames.
3639
3640 * help.el (help-print-return-message): Don't treat
3641 display-buffer-reuse-frames specially.
3642
3643 2012-08-26 Chong Yidong <cyd@gnu.org>
3644
3645 * progmodes/gdb-mi.el (gdb-display-buffer-other-frame-action):
3646 New variable, replacing gdb-frame-parameters.
3647 (gdb-frame-io-buffer, gdb-frame-breakpoints-buffer)
3648 (gdb-frame-threads-buffer, gdb-frame-memory-buffer)
3649 (gdb-frame-disassembly-buffer, gdb-frame-stack-buffer)
3650 (gdb-frame-locals-buffer, gdb-frame-registers-buffer): Use it.
3651 (def-gdb-frame-for-buffer): Macro deleted. It is easier to define
3652 the functions directly with gdb-display-buffer-other-frame-action.
3653 (gdb-display-breakpoints-buffer, gdb-display-threads-buffer)
3654 (gdb-display-memory-buffer, gdb-display-disassembly-buffer)
3655 (gdb-display-stack-buffer, gdb-display-locals-buffer)
3656 (gdb-display-registers-buffer): Define directly.
3657 (def-gdb-display-buffer): Macro deleted.
3658 (gdb-display-buffer): Remove second and third args, callers don't
3659 use them. Defer to the default display-buffer behavior, apart
3660 from making windows dedicated.
3661 (gdb-setup-windows): Don't call display-buffer unnecessarily.
3662
3663 * progmodes/gud.el (gud-display-line): Just use display-buffer.
3664
3665 * window.el (display-buffer-pop-up-frame): Handle a
3666 pop-up-frame-parameters alist entry.
3667 (display-buffer): Document it.
3668
3669 2012-08-26 Chong Yidong <cyd@gnu.org>
3670
3671 * isearch.el (search-whitespace-regexp): Make string and nil
3672 values apply to both ordinary and regexp search. Allow a cons
3673 cell value to distinguish between the two.
3674 (isearch-whitespace-regexp, isearch-search-forward)
3675 (isearch-search-backward): New functions.
3676 (isearch-occur, isearch-search-fun-default, isearch-search)
3677 (isearch-lazy-highlight-new-loop): Use them.
3678 (isearch-forward, isearch-forward-regexp): Doc fix.
3679
3680 2012-08-26 Chong Yidong <cyd@gnu.org>
3681
3682 * faces.el (help-argument-name): Always inherit from italic
3683 (Bug#12213).
3684
3685 2012-08-25 Martin Rudalics <rudalics@gmx.at>
3686
3687 * window.el (window--even-window-heights): Even heights when
3688 WINDOW and the selected window form a vertical combination.
3689 (display-buffer-use-some-window): Provide that window used gets
3690 sized back by quit-window. (Bug#11880) and (Bug#12091)
3691
3692 2012-08-24 Paul Eggert <eggert@cs.ucla.edu>
3693
3694 Fix file time stamp problem with bzr and CVS (Bug#12001).
3695 * vc/vc-cvs.el (vc-cvs-parse-entry): Ignore subsecond information
3696 in the file's time stamp, since the version control system loses
3697 that information.
3698
3699 2012-08-22 Juri Linkov <juri@jurta.org>
3700
3701 * info.el (Info-fontify-node): Hide the suffix of the
3702 Info file name in the header line. (Bug#12187)
3703
3704 2012-08-22 Glenn Morris <rgm@gnu.org>
3705
3706 * calendar/cal-tex.el (cal-tex-weekly-common):
3707 Restore leading blank page.
3708
3709 2012-08-22 Le Wang <l26wang@gmail.com>
3710
3711 * misc.el (forward-to-word, backward-to-word): Activate or extend
3712 the region under `shift-select-mode'. (Bug#12231)
3713
3714 2012-08-22 Bastien Guerry <bzg@gnu.org>
3715
3716 * progmodes/executable.el (executable-prefix): Set to "#!" instead
3717 of "#! ". http://www.in-ulm.de/~mascheck/various/shebang/#details
3718 gives details on why the space is never needed.
3719
3720 2012-08-22 Martin Rudalics <rudalics@gmx.at>
3721
3722 * window.el (walk-window-tree, window-with-parameter):
3723 New optional argument MINIBUF to control whether these functions
3724 should run on the minibuffer window.
3725 (window-at-side-list): Don't operate on minibuffer window.
3726 (window-in-direction): Simplify and rewrite doc-string.
3727 (window--size-ignore): Rename to window--size-ignore-p.
3728 Update callers.
3729 (display-buffer-in-atom-window, window--major-non-side-window)
3730 (window--major-side-window, display-buffer-in-major-side-window)
3731 (delete-side-window, display-buffer-in-side-window):
3732 New functions.
3733 (window--side-check, window-deletable-p, delete-window)
3734 (delete-other-windows, split-window): Handle side windows and
3735 atomic windows appropriately.
3736 (window--display-buffer): Call display-buffer-record-window also
3737 when the window buffer did not change.
3738
3739 2012-08-22 Christopher Schmidt <christopher@ch.ristopher.com>
3740
3741 * help-fns.el (help-fns--key-bindings):
3742 Abbreviate non-symbol remap targets. (Bug#12174)
3743
3744 2012-08-22 Martin Rudalics <rudalics@gmx.at>
3745
3746 * dired.el (dired-mark-remembered): Don't clobber point.
3747 (Bug#11795)
3748
3749 2012-08-22 Glenn Morris <rgm@gnu.org>
3750
3751 * progmodes/bug-reference.el (bug-reference): New custom group.
3752 (bug-reference-bug-regexp): Make it a defcustom.
3753
3754 2012-08-22 Daiki Ueno <ueno@unixuser.org>
3755
3756 * progmodes/js.el (js-indent-level, js-expr-indent-offset)
3757 (js-paren-indent-offset, js-square-indent-offset)
3758 (js-curly-indent-offset): Add :safe (Bug#12257).
3759
3760 2012-08-22 Edward O'Connor <hober0@gmail.com>
3761
3762 * json.el (json-key-format): Add error properties.
3763 (json-encode-key): New function.
3764 (json-encode-hash-table, json-encode-alist, json-encode-plist):
3765 Use json-encode-key.
3766
3767 2012-08-22 Glenn Morris <rgm@gnu.org>
3768
3769 * calendar/cal-tex.el (cal-tex-longday): New function, replacing...
3770 (cal-tex-leftday, cal-tex-rightday): Remove functions.
3771 (cal-tex-weekly-common, cal-tex-cursor-filofax-2week):
3772 Update for above change.
3773
3774 2012-08-21 Andreas Schwab <schwab@linux-m68k.org>
3775
3776 * cus-face.el (custom-face-attributes): Fix customize type for the
3777 :underline attribute. (Bug#11805)
3778
3779 2012-08-21 Martin Rudalics <rudalics@gmx.at>
3780
3781 * window.el (window-point-1, set-window-point-1): Remove.
3782 (window-in-direction, record-window-buffer)
3783 (set-window-buffer-start-and-point, split-window-below)
3784 (window--state-get-1, display-buffer-record-window):
3785 Replace calls to window-point-1 and set-window-point-1 by calls to
3786 window-point and set-window-point respectively.
3787
3788 2012-08-21 Glenn Morris <rgm@gnu.org>
3789
3790 * calendar/cal-tex.el (cal-tex-weekly-common): New function.
3791 (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-week):
3792 Use it.
3793
3794 * calendar/cal-tex.el (cal-tex-rightday): Add optional funcname arg.
3795 (cal-tex-shortday): New function.
3796 (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-week)
3797 (cal-tex-cursor-filofax-daily): Use the above.
3798
3799 * calendar/cal-tex.el (cal-tex-leftday, cal-tex-rightday):
3800 New functions.
3801 (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-2week)
3802 (cal-tex-cursor-filofax-week): Use them.
3803
3804 * calendar/cal-tex.el (cal-tex-lefthead, cal-tex-righthead):
3805 New constants.
3806 (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-2week)
3807 (cal-tex-cursor-filofax-week, cal-tex-cursor-filofax-daily): Use them.
3808
3809 * calendar/cal-tex.el (cal-tex-preamble): Generate new buffers.
3810 (cal-tex-end-document): Don't rely on buffer name.
3811
3812 * calendar/cal-tex.el (cal-tex-cursor-filofax-year):
3813 Use cal-tex-vspace.
3814 (cal-tex-vspace, cal-tex-hspace, cal-tex-em, cal-tex-bf)
3815 (cal-tex-Huge-bf, cal-tex-large-bf): Use cal-tex-cmd.
3816 (cal-tex-scriptsize, cal-tex-huge, cal-tex-Huge, cal-tex-large):
3817 Use cal-tex-arg.
3818
3819 * calendar/cal-tex.el (cal-tex-cursor-filofax-year)
3820 (cal-tex-cursor-week, cal-tex-cursor-week2)
3821 (cal-tex-cursor-week-iso, cal-tex-cursor-week-at-a-glance)
3822 (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
3823 (cal-tex-cursor-filofax-daily, cal-tex-cursor-day)
3824 (cal-tex-insert-preamble, cal-tex-b-document)
3825 (cal-tex-e-document, cal-tex-b-center, cal-tex-e-center):
3826 Improve cal-tex-cmd usage.
3827
3828 * calendar/cal-tex.el (cal-tex-filofax-paper): New function.
3829 (cal-tex-cursor-filofax-year, cal-tex-cursor-filofax-2week)
3830 (cal-tex-cursor-filofax-week, cal-tex-cursor-filofax-daily): Use it.
3831 (cal-tex-weekly-paper): New function.
3832 (cal-tex-cursor-week, cal-tex-cursor-week2)
3833 (cal-tex-cursor-week-iso, cal-tex-cursor-week-monday)
3834 (cal-tex-cursor-day): Use it.
3835
3836 * calendar/cal-tex.el (cal-tex-cursor-week-at-a-glance)
3837 (cal-tex-cursor-filofax-week): Remove leading blank page.
3838
3839 * calendar/cal-tex.el (cal-tex-cursor-week-at-a-glance):
3840 Add autoload cookie. For now at least, don't use color, since
3841 no other cal-tex function does.
3842
3843 * calendar/cal-tex.el (cal-tex-cursor-week-iso)
3844 (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
3845 (cal-tex-cursor-filofax-daily): Correct start date for diary entries.
3846
3847 2012-08-21 Juri Linkov <juri@jurta.org>
3848
3849 * info.el (Info-file-attributes): New variable.
3850 (info-insert-file-contents): Add file attributes to
3851 `Info-file-attributes'. Clear the caches `Info-index-nodes' and
3852 `Info-toc-nodes' when previous modtime of the Info file is less
3853 than new modtime.
3854 (Info-toc-nodes, Info-index-nodes): Move definitions up to the top
3855 of info.el. (Bug#12230)
3856
3857 2012-08-20 Glenn Morris <rgm@gnu.org>
3858
3859 * calendar/diary-lib.el (diary-include-files, diary-sexp-entry):
3860 * calendar/holidays.el (calendar-holiday-list):
3861 Report errors with display-warning rather than beep'n'sleep.
3862
3863 2012-08-20 Michael Albinus <michael.albinus@gmx.de>
3864
3865 * net/tramp.el (tramp-accept-process-output): Accept only output
3866 from PROC. Otherwise, process filters and sentinels might be
3867 confused. (Bug#12145)
3868
3869 2012-08-20 Chong Yidong <cyd@gnu.org>
3870
3871 * descr-text.el (describe-text-properties-1): Use overlays-in to
3872 report on empty overlays (Bug#3322).
3873
3874 2012-08-20 Glenn Morris <rgm@gnu.org>
3875
3876 * mail/rmailout.el (rmail-output-read-file-name):
3877 Trap and report errors in rmail-output-file-alist elements.
3878
3879 * font-lock.el (font-lock-add-keywords): Doc fix (quote face names
3880 since most non-font-lock faces are not also variables).
3881
3882 2012-08-20 Edward Reingold <reingold@iit.edu>
3883
3884 * calendar/cal-tex.el (cal-tex-cursor-week-at-a-glance):
3885 New function. (Bug12160)
3886
3887 2012-08-19 Glenn Morris <rgm@gnu.org>
3888
3889 * mail/rmailout.el (rmail-output-read-file-name):
3890 Fix previous change (when the alist is nil or does not match).
3891
3892 2012-08-19 Chong Yidong <cyd@gnu.org>
3893
3894 * xml.el (xml-escape-string): Don't refer to xml-entity-alist
3895 (Bug#12228).
3896
3897 2012-08-18 Chong Yidong <cyd@gnu.org>
3898
3899 * simple.el (yank-handled-properties): New defcustom.
3900 (yank-excluded-properties): Add font-lock-face and category.
3901 (yank): Doc fix.
3902
3903 * subr.el (remove-yank-excluded-properties):
3904 Obey yank-handled-properties. The special handling of font-lock-face
3905 and category is now done this way, instead of being hard-coded.
3906 (insert-for-yank-1): Remove font-lock-face handling.
3907 (yank-handle-font-lock-face-property)
3908 (yank-handle-category-property): New function.
3909
3910 2012-08-17 Glenn Morris <rgm@gnu.org>
3911
3912 * mail/rmailout.el (rmail-output-read-file-name):
3913 Check rmail-output-file-alist against the full message body
3914 in the correct rmail buffer. (Bug#12214)
3915
3916 2012-08-17 Michael Albinus <michael.albinus@gmx.de>
3917
3918 * net/tramp-sh.el (tramp-sh-handle-start-file-process):
3919 Eliminate superfluous prompt. (Bug#12203)
3920
3921 2012-08-17 Chong Yidong <cyd@gnu.org>
3922
3923 * mouse.el (mouse-appearance-menu): If x-select-font returns a
3924 font spec, set the font directly (Bug#3228).
3925
3926 2012-08-17 Martin Rudalics <rudalics@gmx.at>
3927
3928 * window.el (delete-window): Fix last fix.
3929
3930 2012-08-16 Martin Rudalics <rudalics@gmx.at>
3931
3932 * window.el (window-valid-p): Move to window.c.
3933 (window-child, window-child-count, window-last-child)
3934 (window-normalize-window, window-combined-p)
3935 (window-combinations, window-atom-root, window-min-size)
3936 (window-sizable, window-sizable-p, window-size-fixed-p)
3937 (window-min-delta, window-max-delta, window--resizable)
3938 (window--resizable-p, window-resizable, window-total-size)
3939 (window-full-height-p, window-full-width-p, window-body-size)
3940 (window-at-side-p, adjust-window-trailing-edge, maximize-window)
3941 (minimize-window, window-deletable-p, delete-window)
3942 (delete-other-windows, set-window-buffer-start-and-point)
3943 (next-buffer, previous-buffer, split-window, balance-windows-2)
3944 (set-window-text-height, window-buffer-height)
3945 (fit-window-to-buffer, shrink-window-if-larger-than-buffer)
3946 (truncated-partial-width-window-p): Minor code adjustments.
3947 In doc-strings state whether the argument window has to denote a
3948 live, valid or any window.
3949
3950 2012-08-16 Phil Sainty <psainty@orcon.net.nz> (tiny change)
3951
3952 * progmodes/subword.el (subword-forward-function)
3953 (subword-backward-function, subword-forward-regexp)
3954 (subword-backward-regexp): New variables.
3955 (subword-forward, subword-forward-internal, subword-backward-internal):
3956 Use new variables, eg so that different "word" definitions
3957 can be easily used. (Bug#11411)
3958
3959 2012-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
3960
3961 * vc/vc-mtn.el (vc-mtn-revision-completion-table): Handle completion
3962 for composite selectors.
3963 * vc/vc.el (vc-diff-build-argument-list-internal): Don't prevent
3964 operation just because we can't find a previous revision.
3965
3966 2012-08-15 Chong Yidong <cyd@gnu.org>
3967
3968 * frame.el (set-frame-font): Accept font objects.
3969
3970 2012-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
3971
3972 * textmodes/tex-mode.el (tex-insert-quote): ~ is a space (bug#12137).
3973
3974 2012-08-15 Wolfgang Jenkner <wjenkner@inode.at>
3975
3976 * man.el (Man-overstrike-face, Man-underline-face)
3977 (Man-reverse-face): Remove variables.
3978 (Man-overstrike, Man-underline, Man-reverse): New faces.
3979 (Man-fontify-manpage): Use them instead of the variables.
3980 (Man-cleanup-manpage): Comment change.
3981 (Man-ansi-color-map): New variable.
3982 (Man-fontify-manpage): Use it.
3983 Call ansi-color-apply-on-region to replace ad hoc code (bug#12147).
3984
3985 Implement ANSI SGR parameters 22-27 (bug#12146).
3986 * ansi-color.el (ansi-colors): Doc fix.
3987 (ansi-color-context, ansi-color-context-region): Doc fix.
3988 (ansi-color--find-face): New function.
3989 (ansi-color-apply, ansi-color-apply-on-region): Use it.
3990 Rename the local variable `face' to `codes' since it is now a list of
3991 ansi codes. Doc fix.
3992 (ansi-color-get-face): Remove.
3993 (ansi-color-parse-sequence): New function, derived from
3994 ansi-color-get-face.
3995 (ansi-color-apply-sequence): Use it. Rewrite, and support ansi
3996 codes 22-27.
3997
3998 2012-08-14 Stefan Monnier <monnier@iro.umontreal.ca>
3999
4000 * subr.el (read-passwd): Allow use from a minibuffer.
4001
4002 2012-08-14 Eli Zaretskii <eliz@gnu.org>
4003
4004 * tooltip.el (tooltip-identifier-from-point): Don't treat tokens
4005 inside comments and strings as identifiers.
4006
4007 * progmodes/gud.el (gud-tooltip-print-command): Quote the
4008 expression to evaluate. This allows to evaluate expressions with
4009 embedded whitespace.
4010 (gud-tooltip-tips): Add a blank before the newline in the
4011 message-box text, for the benefit of message-box emulation on
4012 MS-Windows.
4013
4014 * progmodes/gdb-mi.el (gdb-tooltip-print): Don't ignore error
4015 messages from GDB, pop them up in a tooltip to give feedback to
4016 user.
4017 (gdb-tooltip-print-1): Quote the expression to evaluate.
4018 This allows to evaluate expressions with embedded whitespace.
4019 (gdb-inferior-io--init-proc): Don't send "-inferior-tty" command
4020 if the TTY name is nil or empty (which happens when communicating
4021 with the inferior via pipes, e.g. on MS-Windows).
4022 (gdb-internals): If GDB sends a "&\n" empty debugging message,
4023 don't send that to the GUD buffer.
4024
4025 2012-08-14 Glenn Morris <rgm@gnu.org>
4026
4027 * emacs-lisp/bytecomp.el (byte-compile-setq-default):
4028 Optimize away setq-default with no args, as for setq. (Bug#12195)
4029
4030 2012-08-14 Chong Yidong <cyd@gnu.org>
4031
4032 * minibuffer.el (read-file-name): Doc fix (Bug#10881).
4033
4034 * emacs-lisp/regexp-opt.el (regexp-opt-charset): Doc fix
4035 (Bug#12085).
4036
4037 2012-08-14 Glenn Morris <rgm@gnu.org>
4038
4039 * emacs-lisp/bytecomp.el (byte-recompile-file): Doc fix.
4040
4041 2012-08-14 Michael Albinus <michael.albinus@gmx.de>
4042
4043 * net/tramp-sh.el (tramp-open-shell): Cache the shell name.
4044 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
4045 Use cached shell name.
4046
4047 2012-08-14 Fabián Ezequiel Gallina <fgallina@cuca>
4048
4049 * progmodes/python.el (python-shell-send-string):
4050 (python-shell-send-setup-code): Do not use `format' with `message'.
4051
4052 2012-08-14 Dmitry Gutov <dgutov@yandex.ru>
4053
4054 * progmodes/ruby-mode.el: Improve percent literals (bug#6286).
4055 (ruby-percent-literal-beg-re): New constant.
4056 (ruby-syntax-general-delimiters-goto-beg): Rename to
4057 `ruby-syntax-enclosing-percent-literal', improve literal type check.
4058 (ruby-syntax-propertize-general-delimiters): Rename to
4059 `ruby-syntax-propertize-percent-literal', it's a shorter and more
4060 popular term. Adjust comments everywhere.
4061 (ruby-syntax-propertize-percent-literal): Only propertize when not
4062 inside a simple string or comment. When the literal is unclosed,
4063 leave the text after it unpropertized.
4064 (ruby-syntax-methods-before-regexp): New constant.
4065 (ruby-syntax-propertize-function): Use it to recognize regexps.
4066 Don't look at the text after regexp, just use the whitelist.
4067
4068 2012-08-14 Andreas Schwab <schwab@linux-m68k.org>
4069
4070 * emacs-lisp/bytecomp.el (byte-recompile-file): When LOAD is
4071 non-nil always load the compiled file if it exists. (Bug#12197)
4072
4073 2012-08-14 Chong Yidong <cyd@gnu.org>
4074
4075 * hi-lock.el (hi-lock-mode): Do not unilaterally enable font lock.
4076 (hi-lock-set-pattern): When deciding whether to use font lock or
4077 overlays, look at font-lock-mode instead of font-lock-fontified
4078 (Bug#12168).
4079 (hi-lock-mode, hi-lock-line-face-buffer, hi-lock-unface-buffer)
4080 (hi-lock-face-buffer, hi-lock-face-phrase-buffer): Doc fix.
4081
4082 2012-08-14 Daiki Ueno <ueno@unixuser.org>
4083
4084 * subr.el (internal--after-with-selected-window): Fix typo
4085 (Bug#12193).
4086
4087 2012-08-14 Fabián Ezequiel Gallina <fgallina@cuca>
4088
4089 Use `completion-table-dynamic' for completion functions.
4090 * progmodes/python.el
4091 (python-shell-completion--do-completion-at-point)
4092 (python-shell-completion--get-completions):
4093 Remove functions.
4094 (python-shell-completion-complete-at-point): New function.
4095 (python-completion-complete-at-point): Use it.
4096
4097 2012-08-13 Jambunathan K <kjambunathan@gmail.com>
4098
4099 * vc/vc-dir.el (vc-dir-hide-state): New command (bug#12159).
4100 (vc-dir-hide-up-to-date): Route it to `vc-dir-hide-state'.
4101
4102 2012-08-13 Stefan Monnier <monnier@iro.umontreal.ca>
4103
4104 * subr.el (function-get): Refine `autoload' arg so it can also
4105 autoload functions for gv.el (bug#12191).
4106 * emacs-lisp/edebug.el (get-edebug-spec): Adjust so it only
4107 autoloads macros.
4108
4109 * color.el (color-xyz-to-lab, color-lab-to-xyz, color-cie-de2000):
4110 Prefer pcase-let over destructuring-bind.
4111 * vc/diff-mode.el (diff-remove-trailing-whitespace): Same.
4112 Also, remove whitespace as we go, rather than after accumulating the
4113 various places.
4114
4115 * subr.el (internal--before-with-selected-window)
4116 (internal--after-with-selected-window): Fix typo seleted->selected.
4117 (with-selected-window): Adjust callers.
4118 Reported by Dmitry Gutov <dgutov@yandex.ru>.
4119
4120 2012-08-13 Bastien Guerry <bzg@gnu.org>
4121
4122 * window.el (special-display-popup-frame): Minor docstring
4123 enhancement. (Bug#12172)
4124
4125 2012-08-13 Andreas Schwab <schwab@linux-m68k.org>
4126
4127 * tar-mode.el (tar-header-data-end): Only ignore size for files of
4128 type 1-6.
4129 (tar-header-block-summarize, tar-get-descriptor): Handle pax
4130 extended headers.
4131
4132 * files.el (hack-local-variables-filter): Remove useless eval.
4133
4134 2012-08-13 Martin Rudalics <rudalics@gmx.at>
4135
4136 * subr.el (with-selected-window): Fix last change.
4137
4138 2012-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
4139
4140 * subr.el (internal--before-with-seleted-window)
4141 (internal--after-with-seleted-window): New functions.
4142 (with-selected-window): Use them, to replace dependency on
4143 tty-top-frame.
4144
4145 2012-08-12 Nobuyoshi Nakada <nobu@ruby-lang.org>
4146
4147 * progmodes/ruby-mode.el (ruby-mode-map): Remove unnecessary
4148 binding for `newline'.
4149 (ruby-move-to-block): When moving backward, stop at block opening,
4150 not indentation.
4151 * progmodes/ruby-mode.el (ruby-brace-to-do-end)
4152 (ruby-do-end-to-brace, ruby-toggle-block): New functions.
4153 * progmodes/ruby-mode.el (ruby-mode-map): Add binding for
4154 `ruby-toggle-block'.
4155
4156 2012-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
4157
4158 * ibuffer.el (ibuffer-do-toggle-read-only):
4159 * dired.el (dired-toggle-read-only):
4160 * buff-menu.el (Buffer-menu-toggle-read-only):
4161 * bindings.el (mode-line-toggle-read-only):
4162 * bs.el (bs-toggle-readonly): Call toggle-read-only interactively.
4163
4164 2012-08-12 Andreas Schwab <schwab@linux-m68k.org>
4165
4166 * descr-text.el (describe-char): Put the overlays over the
4167 "displayed as" character.
4168
4169 2012-08-12 Jay Belanger <jay.p.belanger@gmail.com>
4170
4171 * calc/calc-units.el (math-default-units-table): Give an
4172 initial value.
4173 (math-put-default-units): Add options to put composite units and
4174 unit systems in the default units table.
4175 (calc-convert-units): Send composite units to
4176 `math-put-default-units' when appropriate.
4177
4178 2012-08-11 Glenn Morris <rgm@gnu.org>
4179
4180 * emacs-lisp/copyright.el (copyright-update-directory): Logic fix.
4181
4182 * tutorial.el (help-with-tutorial):
4183 * emacs-lisp/copyright.el (copyright-update-directory):
4184 * emacs-lisp/autoload.el (autoload-find-generated-file)
4185 (autoload-find-file): Disable local eval: (for insurance).
4186
4187 * files.el (hack-local-variables-filter): If an eval: form is not
4188 known to be safe, and enable-local-variables is :safe, then ignore
4189 the form totally, as is done for non-eval forms. (Bug#12155)
4190 This is CVE-2012-3479.
4191
4192 2012-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
4193
4194 * emacs-lisp/rx.el (rx-constituents): Don't define as constant.
4195 (rx-form): Simplify.
4196
4197 2012-08-09 Dmitry Gutov <dgutov@yandex.ru>
4198
4199 * progmodes/ruby-mode.el (ruby-expr-beg, ruby-parse-partial):
4200 ?, _, and : are symbol constituents, ! is not (but kinda should be).
4201 (ruby-syntax-propertize-heredoc): Use ruby-singleton-class-p.
4202 (ruby-syntax-propertize-function): Adjust for changes in
4203 `ruby-syntax-propertize-heredoc'.
4204
4205 2012-08-09 Nobuyoshi Nakada <nobu@ruby-lang.org>
4206
4207 * progmodes/ruby-mode.el (ruby-mode-map): Remove deprecated
4208 binding (use `M-;' instead).
4209 (ruby-singleton-class-p): New function.
4210 (ruby-expr-beg, ruby-in-here-doc-p) Use it.
4211
4212 2012-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
4213
4214 * emacs-lisp/cl-macs.el (cl-loop): Improve debug spec.
4215
4216 2012-08-10 Chong Yidong <cyd@gnu.org>
4217
4218 * progmodes/python.el (python-shell-get-process-name): Don't mess
4219 with same-window-buffer-names.
4220
4221 * eshell/eshell.el (eshell-add-to-window-buffer-names)
4222 (eshell-remove-from-window-buffer-names): Make obsolete.
4223 (eshell-buffer-name, eshell-unload-hook): Don't use them.
4224 (eshell): Just use pop-to-buffer-same-window instead.
4225
4226 2012-08-10 Chong Yidong <cyd@gnu.org>
4227
4228 * bindings.el: Bind M-= back to count-words-region.
4229
4230 * simple.el (count-words-region): Accept a prefix arg for acting
4231 on the entire buffer.
4232 (count-words--buffer-message): New helper function.
4233
4234 2012-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
4235
4236 * term/x-win.el (x-menu-bar-open): Always pass last-nonmenu-event.
4237 * subr.el (eventp): `nil' is not an event, and eventp is not hot.
4238 (event-start, event-end): Use posn-at-point to return a more
4239 informative posn.
4240 (posnp): New function.
4241 * mouse.el (popup-menu-normalize-position): Use it.
4242
4243 2012-08-10 Masatake YAMATO <yamato@redhat.com>
4244
4245 * mouse.el (popup-menu-normalize-position): New function.
4246 (popup-menu): Use `popup-menu-normalize-position' to normalize
4247 the form for POSITION argument.
4248
4249 * term/x-win.el (x-menu-bar-open):
4250 Use the value returend from (posn-at-point) as position
4251 passed to `popup-menu'.
4252
4253 2012-08-09 Jay Belanger <jay.p.belanger@gmail.com>
4254
4255 * calc/calccomp.el (math-compose-expr): Add extra argument
4256 indicating that parentheses should be put around products in
4257 denominators. Give multiplication precedence over division during
4258 composition.
4259
4260 2012-08-09 Chong Yidong <cyd@gnu.org>
4261
4262 * man.el (Man-switches, Man-sed-command, Man-awk-command)
4263 (Man-mode-hook, Man-cooked-hook, Man-untabify-command-args)
4264 (Man-untabify-command, manual-program): Convert to defcustom
4265 (Bug#10429).
4266
4267 * vc/add-log.el (change-log-mode): Bind comment-start to nil.
4268
4269 * descr-text.el (describe-char): Don't insert extra newlines
4270 (Bug#10127).
4271
4272 * vc/log-view.el (log-view-diff): Use use-region-p (Bug#10133).
4273 (log-view-diff-changeset, log-view-minor-wrap): Likewise.
4274
4275 * align.el (align-region): Delete temporary markers (Bug#10047).
4276 Plus some code cleanups.
4277
4278 2012-08-09 Fabián Ezequiel Gallina <fgallina@cuca>
4279
4280 * progmodes/python.el (python-pdbtrack-tracked-buffer)
4281 (python-pdbtrack-buffers-to-kill, python-shell-internal-buffer)
4282 (python-shell-internal-last-output): Use make-local-variable
4283 instead of make-variable-buffer-local.
4284
4285 2012-08-09 Fabián Ezequiel Gallina <fgallina@cuca>
4286
4287 * progmodes/python.el: Enhancements to forward-sexp.
4288 (python-nav-forward-sexp): Rename from
4289 python-nav-forward-sexp-function.
4290 (python-nav--forward-sexp, python-nav--backward-sexp):
4291 New functions.
4292
4293 2012-08-09 Jay Belanger <jay.p.belanger@gmail.com>
4294
4295 * calc/calc-menu.el (calc-modes-menu): Add entries for matrix
4296 modes and simplification modes.
4297
4298 2012-08-09 Stefan Monnier <monnier@iro.umontreal.ca>
4299
4300 * delsel.el (delete-selection-pre-hook): Don't propagate the
4301 file-supersession signals (bug#12161).
4302
4303 2012-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
4304
4305 * emacs-lisp/cl.el (cl-map-keymap-recursively, cl-map-intervals)
4306 (cl-map-extents): Add compatibility aliases (bug#12135).
4307
4308 2012-08-08 Michael Albinus <michael.albinus@gmx.de>
4309
4310 * net/tramp-sh.el (tramp-find-file-exists-command): Protect the
4311 tests by `ignore-error'.
4312 (tramp-find-shell): Open also a new shell, when cache is already
4313 set. Reported by Carsten Bormann <cabo@tzi.org>. (Bug#12148)
4314
4315 2012-08-08 Juri Linkov <juri@jurta.org>
4316
4317 * bookmark.el: Add `defaults' property to the bookmark record.
4318 (bookmark-current-buffer): Doc fix.
4319 (bookmark-make-record): Add `defaults' property with default values
4320 to the bookmark record.
4321 (bookmark-minibuffer-read-name-map): Remove key binding "\C-u"
4322 with `bookmark-insert-current-bookmark'.
4323 (bookmark-set): Get `defaults' property from the bookmark record
4324 and use it in `read-from-minibuffer'.
4325 (bookmark-insert-current-bookmark): Remove function.
4326
4327 * info.el (Info-bookmark-make-record): Add `defaults' property
4328 with values of canonical Info node name, the current Info file
4329 name and the current Info node name. (Bug#12107)
4330
4331 2012-08-08 Juri Linkov <juri@jurta.org>
4332
4333 * files.el (basic-save-buffer): Use `buffer-name' as the default
4334 of `read-file-name' when buffer is not visiting a file (bug#12128).
4335
4336 2012-08-08 Juri Linkov <juri@jurta.org>
4337
4338 * info.el (Info-isearch-search): Doc fix.
4339 (Info-search): Change search-failed message from "initial node" to
4340 "end of node" (bug#12078).
4341 (Info-isearch-search): Change `isearch-string-state' to
4342 `isearch--state-string'.
4343
4344 2012-08-08 Glenn Morris <rgm@gnu.org>
4345
4346 * language/persian.el: Remove file.
4347 * language/misc-lang.el: Move unique part of persian.el here.
4348 * loadup.el: Remove language/persian.
4349
4350 2012-08-08 Óscar Fuentes <ofv@wanadoo.es>
4351
4352 * vc/diff-mode.el (diff-remove-trailing-whitespace): New function.
4353
4354 2012-08-08 Fabián Ezequiel Gallina <fgallina@cuca>
4355
4356 * progmodes/python.el: Fix defsubst warning.
4357 (python-syntax-context) Rename from python-info-ppss-context.
4358 (python-syntax-context-type): Rename from
4359 python-info-ppss-context-type.
4360 (python-syntax-comment-or-string-p): Rename from
4361 python-info-ppss-comment-or-string-p.
4362
4363 2012-08-08 Jay Belanger <jay.p.belanger@gmail.com>
4364
4365 * calc/calc-misc.el (calc-record-why): Don't record a message twice.
4366
4367 2012-08-07 Andreas Schwab <schwab@linux-m68k.org>
4368
4369 * emacs-lisp/lisp-mode.el (eval-defun-1): Handle standard value of
4370 a defcustom that is quoted with backquote.
4371
4372 * calc/calc-prog.el (math-do-defmath): Use backquote forms.
4373 Fix handling of interactive spec when the body uses return.
4374 (math-do-arg-check, math-define-function-body): Use backquote forms.
4375 * calc/calc-ext.el (math-defcache): Likewise.
4376 * calc/calc-rewr.el (math-rwfail, math-rweval): Likewise.
4377 * allout.el (allout-new-exposure): Likewise.
4378 * calc/calcalg2.el (math-tracing-integral): Likewise.
4379 * info.el (Info-last-menu-item): Likewise.
4380 * emulation/vip.el (vip-loop): Likewise.
4381 * textmodes/artist.el (artist-funcall): Likewise.
4382 * menu-bar.el (menu-bar-make-mm-toggle, menu-bar-make-toggle):
4383 Construct menu-item directly.
4384
4385 * progmodes/autoconf.el (font-lock-syntactic-keywords):
4386 Don't declare.
4387
4388 2012-08-07 Chong Yidong <cyd@gnu.org>
4389
4390 * simple.el (deactivate-mark): Preserve text properties when
4391 saving the primary selection (Bug#8384).
4392
4393 2012-08-07 Kevin Ryde <user42@zip.com.au>
4394
4395 * woman.el (woman0-if): Quietly treat ".if v" as false (Bug#12109).
4396 (woman-parse-numeric-value): On a bad .IP line, issue a warning
4397 and continue processing (Bug#12110).
4398
4399 2012-08-06 Stefan Monnier <monnier@iro.umontreal.ca>
4400
4401 * progmodes/cperl-mode.el (cperl-mode): Yet another fix for
4402 syntax-propertize-function (bug#10095).
4403
4404 2012-08-06 Stefan Monnier <monnier@iro.umontreal.ca>
4405
4406 * help-fns.el (help-fns--key-bindings, help-fns--signature)
4407 (help-fns--parent-mode, help-fns--obsolete): New funs, extracted from
4408 describe-function-1.
4409 (describe-function-1): Use them. Move compiler macro after sig.
4410 (help-fns--compiler-macro): Use function-get. Assume we're already in
4411 standard-output. Adjust layout to new call order.
4412
4413 * emacs-lisp/cl-macs.el (cl--sm-macroexpand): Fix handling of
4414 re-binding a symbol that has a symbol-macro (bug#12119).
4415
4416 2012-08-06 Mohsen BANAN <libre@mohsen.1.banan.byname.net>
4417
4418 * language/persian.el: New file. (Bug#11812)
4419 * loadup.el: Add language/persian.el.
4420
4421 2012-08-06 Chong Yidong <cyd@gnu.org>
4422
4423 * window.el (window--maybe-raise-frame): New function.
4424 (window--display-buffer): Split off from here.
4425 (display-buffer-reuse-window, display-buffer-pop-up-frame)
4426 (display-buffer-pop-up-window, display-buffer-use-some-window):
4427 Obey an inhibit-switch-frame action alist entry.
4428 (display-buffer): Update doc.
4429
4430 * replace.el (occur-after-change-function): Avoid losing focus by
4431 using the inhibit-switch-frame display parameter (Bug#12139).
4432
4433 2012-08-06 Fabián Ezequiel Gallina <fgallina@cuca>
4434
4435 Make internal shell process buffer names start with space.
4436 * progmodes/python.el (python-shell-make-comint): Add optional
4437 argument INTERNAL.
4438 (run-python-internal): Use it.
4439 (python-shell-internal-get-or-create-process): Check for new
4440 internal buffer names.
4441
4442 2012-08-06 Glenn Morris <rgm@gnu.org>
4443
4444 * eshell/esh-ext.el (eshell/addpath): Use dolist and mapconcat.
4445 Do less getting and setting of environment variables.
4446
4447 2012-08-05 Chong Yidong <cyd@gnu.org>
4448
4449 * proced.el (proced): Add substitution string to docstring to
4450 trigger autoloading of the proced library on C-h f (Bug#1768).
4451
4452 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
4453 Don't show defvars which have no second argument (Bug#8638).
4454
4455 * imenu.el (imenu-generic-expression): Move documentation here
4456 from imenu--generic-function.
4457 (imenu--generic-function): Refer to imenu-generic-expression.
4458
4459 2012-08-05 Vegard Øye <vegard_oye@hotmail.com> (tiny change)
4460
4461 * emulation/viper-init.el (viper-deflocalvar): Add docstring and
4462 indentation declaration.
4463 (viper-loop): Add indentation declaration (Bug#7025).
4464
4465 2012-08-05 Chong Yidong <cyd@gnu.org>
4466
4467 * help-fns.el (describe-variable): Add hyperlink for
4468 directory-local variables files. Improve buffer-local and
4469 permanent-local reporting; suggested by MON KEY (Bug#6644).
4470
4471 * help-mode.el (help-dir-local-var-def): New button type.
4472
4473 * files.el (kill-buffer-hook): Provide a defvar.
4474
4475 2012-08-05 Glenn Morris <rgm@gnu.org>
4476
4477 * eshell/esh-ext.el (eshell/addpath):
4478 Also update eshell-path-env. (Bug#12013)
4479
4480 2012-08-05 Chong Yidong <cyd@gnu.org>
4481
4482 * wdired.el (wdired-mode, wdired-change-to-wdired-mode): Doc fixes.
4483
4484 * fringe.el (fringe-styles): Add docstring.
4485 (fringe--check-mode): New function.
4486 (set-fringe-mode, set-fringe-style): Use it.
4487 (fringe-mode, set-fringe-style): Doc fixes (Bug#6480).
4488
4489 * files.el (set-auto-mode): Fix invalid setq call.
4490
4491 2012-08-04 Stefan Monnier <monnier@iro.umontreal.ca>
4492
4493 * isearch.el: Misc simplification; use defstruct.
4494 (isearch-mode-map): Dense maps now work like sparse ones.
4495 (isearch--state): New defstruct.
4496 (isearch-string-state, isearch-message-state, isearch-point-state)
4497 (isearch-success-state, isearch-forward-state)
4498 (isearch-other-end-state, isearch-word-state, isearch-error-state)
4499 (isearch-wrapped-state, isearch-barrier-state)
4500 (isearch-case-fold-search-state, isearch-pop-fun-state): Remove,
4501 replaced by defstruct's accessors.
4502 (isearch--set-state): Rename from isearch-top-state and change
4503 calling convention.
4504 (isearch-push-state): Use new isearch--get-state.
4505 (isearch-toggle-word): Disable regexp when enabling word.
4506 (isearch-message-prefix): Remove unused arg _c-q-hack.
4507 (isearch-message-suffix): Remove unused arg _ellipsis.
4508
4509 2012-08-04 Andreas Schwab <schwab@linux-m68k.org>
4510
4511 * simple.el (list-processes--refresh): For a server use :host or
4512 :local as the address.
4513 (list-processes): Doc fix.
4514
4515 2012-08-04 Michal Nazarewicz <mina86@mina86.com>
4516
4517 * lisp/mpc.el: Support password in host argument.
4518 (mpc--proc-connect): Parse and use new password element.
4519 Set mpc-proc variable instead of returning process.
4520 (mpc-proc): Adjust accordingly.
4521
4522 2012-08-03 Eli Zaretskii <eliz@gnu.org>
4523
4524 * whitespace.el (whitespace-display-mappings): Use Unicode
4525 codepoints, instead of emacs-mule codepoints. See
4526 http://lists.gnu.org/archive/html/help-gnu-emacs/2012-07/msg00366.html
4527 for the details.
4528
4529 * files.el (file-truename): Don't skip symlink-chasing part on
4530 windows-nt. Incorporate the resolution of 8+3 short aliases on
4531 Windows into the loop that recursively chases symlinks.
4532 Compare directory and its parent case-insensitively on MS-Windows and
4533 MS-DOS.
4534
4535 2012-08-03 Chong Yidong <cyd@gnu.org>
4536
4537 * menu-bar.el (menu-bar-tools-menu): Remove PCL-CVS.
4538
4539 * sort.el (sort-regexp-fields): Doc fix.
4540
4541 2012-08-03 Tassilo Horn <tsdh@gnu.org>
4542
4543 * textmodes/reftex.el (reftex-compile-variables): Make keyvals
4544 labels regex position point at the expected place.
4545
4546 2012-08-03 MON KEY <monkey@sandpframing.com>
4547
4548 * net/imap.el (imap-interactive-login, imap-authenticate)
4549 (imap-mailbox-lsub, imap-mailbox-list)
4550 (imap-mailbox-status-asynch, imap-mailbox-acl-delete)
4551 (imap-fetch, imap-message-flag-permanent-p, imap-envelope-from)
4552 (imap-parse-response): Doc fix.
4553
4554 2012-08-03 João Távora <joaotavora@gmail.com>
4555
4556 * textmodes/tex-mode.el (latex-forward-sexp): Terminate the loop
4557 if sexp scanning does not move point (Bug#5734).
4558
4559 2012-08-02 Tassilo Horn <tsdh@gnu.org>
4560
4561 * textmodes/reftex-vars.el (reftex-default-label-alist-entries):
4562 Add listings, minted, and ctable packages.
4563 (reftex-label-alist-builtin): Move listings, minted, and ctable
4564 entries before LaTeX.
4565 (reftex-label-alist): Docfix.
4566
4567 2012-08-02 Bastien Guerry <bzg@gnu.org>
4568
4569 * replace.el (occur): Fix docstring (bug#12122).
4570
4571 2012-08-02 Glenn Morris <rgm@gnu.org>
4572
4573 * emacs-lisp/authors.el (authors-renamed-files-alist): Add ms-w32.h.
4574
4575 2012-08-02 Paul Eggert <eggert@cs.ucla.edu>
4576
4577 Obsolete alias inactivate-current-input-method-function (Bug#10150).
4578 * international/mule-cmds.el: Create
4579 inactivate-current-input-method-function as an obsolete alias for
4580 deactivate-current-input-method-function. See Katsumi Yamaoka in
4581 <http://bugs.gnu.org/10150#46>.
4582
4583 2012-08-01 Jay Belanger <jay.p.belanger@gmail.com>
4584
4585 * calc/calc-mode.el (calc-set-simplify-mode): Use `cond' instead
4586 of nested `if's.
4587
4588 2012-08-01 Glenn Morris <rgm@gnu.org>
4589
4590 * progmodes/autoconf.el (autoconf-definition-regexp):
4591 Add AH_TEMPLATE, adjust submatch numbering.
4592 (autoconf-font-lock-keywords, autoconf-imenu-generic-expression)
4593 (autoconf-current-defun-function): Update for above change.
4594 (autoconf-current-defun-function): First skip to end of current word.
4595
4596 2012-08-01 Rupert Swarbrick <rswarbrick@gmail.com> (tiny change)
4597
4598 * calendar/cal-html.el (cal-html-insert-agenda-days):
4599 Fix typo. (Bug#12018)
4600
4601 2012-07-31 Fabián Ezequiel Gallina <fgallina@cuca>
4602
4603 Shell processes: enhancements to startup and CEDET compatibility.
4604 * progmodes/python.el (python-shell-send-setup-max-wait): Delete var.
4605 (python-shell-make-comint): accept-process-output at startup.
4606 (run-python-internal): Set inferior-python-mode-hook to nil.
4607 (python-shell-internal-get-or-create-process): call sit-for.
4608 (python-preoutput-result): Add obsolete alias.
4609 (python-shell-internal-send-string): Use it.
4610 (python-shell-send-setup-code): Remove call to
4611 accept-process-output.
4612
4613 2012-07-31 Andreas Schwab <schwab@linux-m68k.org>
4614
4615 * buff-menu.el (list-buffers-noselect): Use prefix-numeric-value.
4616 (Bug#12108)
4617
4618 2012-07-31 Jay Belanger <jay.p.belanger@gmail.com>
4619
4620 * calc-mode.el (calc-basic-simplification-mode): Rename from
4621 `calc-limited-simplification-mode'.
4622 (calc-alg-simplification-mode): New function.
4623 (calc-set-simplify-mode): Adjust message.
4624
4625 * calc.el (calc-set-mode-line): Adjust mode line display for
4626 basic simplification mode.
4627
4628 * calc-help.el (calc-m-prefix-help): Update help message.
4629
4630 * calc-ext.el (calc-init-extensions): Add bindings and autoloads
4631 for `calc-basic-simplify-mode' and `calc-alg-simplify-mode'.
4632
4633 2012-07-31 Bastien Guerry <bzg@gnu.org>
4634
4635 * man.el (man): Fix comment. (bug#12101)
4636
4637 2012-07-31 Martin Rudalics <rudalics@gmx.at>
4638
4639 * window.el (switch-to-prev-buffer, switch-to-next-buffer):
4640 Don't return a non-nil value when no suitable buffer was found.
4641
4642 2012-07-31 Fabián Ezequiel Gallina <fgallina@cuca>
4643
4644 * progmodes/python.el (run-python-internal): Disable font lock for
4645 internal shells.
4646
4647 2012-07-30 Stefan Merten <smerten@oekonux.de>
4648
4649 * textmodes/rst.el: Silence `checkdoc-ispell'.
4650 (rst-cvs-header, rst-svn-rev, rst-svn-timestamp)
4651 (rst-official-version, rst-official-cvs-rev)
4652 (rst-package-emacs-version-alist): Update to upstream V1.3.1.
4653 (rst-mode-map): New key binding.
4654
4655 2012-07-30 Paul Eggert <eggert@cs.ucla.edu>
4656
4657 Update .PHONY listings in makefiles.
4658 * Makefile.in (.PHONY): Add all, doit, custom-deps, finder-data,
4659 autoloads, update-subdirs, updates, bzr-update, update-authors,
4660 compile-onefile, compile-calc, backup-compiled-files,
4661 compile-after-backup, compile-one-process, mh-autoloads,
4662 bootstrap-clean, distclean, maintainer-clean.
4663
4664 2012-07-29 Jay Belanger <jay.p.belanger@gmail.com>
4665
4666 * calc/calc.el (calc-simplify-mode): Make 'alg the default value.
4667 (calc-set-mode-line): Don't display "AlgSimp ".
4668
4669 * calc/calc-mode.el (calc-alg-simplify-mode): Remove function.
4670 (calc-lim-simplify-mode): New function.
4671 (calc-set-simplify-mode): Default to 'alg.
4672 (calc-default-simplify-mode): Make algebraic simplifications
4673 the default.
4674
4675 * calc/calc-ext.el (calc-init-extensions): Remove binding for
4676 `calc-alg-simplify-mode'. Add binding for `calc-lim-simplify-mode'.
4677
4678 * calc/calc-help.el (calc-m-prefix-help): Change messages to
4679 indicate new simplification modes.
4680
4681 * calc/README: Mention new default simplification mode.
4682
4683 * calc/calc.el (math-normalize-error): New variable.
4684 (math-normalize): Set `math-normalize-error' to t
4685 when there's an error.
4686
4687 * calc/calc-alg.el (math-simplify): Don't simplify when
4688 `math-normalize' returns an error.
4689
4690 2012-07-29 Eli Zaretskii <eliz@gnu.org>
4691
4692 * international/mule-cmds.el (set-locale-environment): Revert last
4693 change, since display-graphic-p returns nil when this function is
4694 called during startup. Instead...
4695
4696 * term/w32console.el (terminal-init-w32console): ...setup the
4697 keyboard and terminal encoding for TTY sessions here. (Bug#12082)
4698
4699 2012-07-29 Juri Linkov <juri@jurta.org>
4700
4701 * simple.el (goto-line): Don't display default line number in the
4702 prompt because it should be displayed by `read-number' (bug#9952).
4703 Add the current line number to the defaults of `goto-line' to
4704 allow its easier modification by users with `M-n' (bug#9201).
4705
4706 * subr.el (read-number): Support multiple default values like in
4707 other minibuffer reading functions. Replace `read' with
4708 `string-to-number' for consistency with `number-to-string'.
4709
4710 2012-07-29 Paul Eggert <eggert@cs.ucla.edu>
4711
4712 deactive->inactive, inactivate->deactivate spelling fixes (Bug#10150)
4713 * emulation/viper-init.el (viper-deactivate-input-method-action):
4714 Rename from viper-inactivate-input-method-action.
4715 (viper-deactivate-input-method):
4716 Rename from viper-inactivate-input-method.
4717 * follow.el (follow-inactive-menu): Rename from follow-deactive-menu.
4718 * international/mule-cmds.el (deactivate-input-method):
4719 Rename from inactivate-input-method.
4720 Also run input-method-deactivate-hook.
4721 (deactivate-current-input-method-function):
4722 Rename from inactivate-current-input-method-function.
4723 (input-method-deactivate-hook): New hook.
4724 (input-method-inactivate-hook): Mark obsolete.
4725 (inactivate-input-method): Mark obsolete.
4726
4727 * international/quail.el (quail-activate):
4728 Also run quail-deactivate-hook.
4729 (quail-deactivate): Rename from quail-inactivate.
4730 * international/robin.el (robin-activate):
4731 Also run robin-deactivate-hook.
4732 (robin-deactivate): Rename from robin-inactivate.
4733
4734 2012-07-29 Chong Yidong <cyd@gnu.org>
4735
4736 * simple.el (indicate-copied-region): New function.
4737 (kill-ring-save): Split off from here.
4738
4739 * rect.el (copy-rectangle-as-kill): Call indicate-copied-region.
4740 (kill-rectangle): Set deactivate-mark to t on read-only error.
4741
4742 * register.el (copy-to-register, copy-rectangle-to-register):
4743 Deactivate the mark, and use indicate-copied-region (Bug#10056).
4744 (append-to-register, prepend-to-register): Call indicate-copied-region.
4745
4746 2012-07-29 Juri Linkov <juri@jurta.org>
4747
4748 * simple.el (async-shell-command-buffer): New defcustom.
4749 (shell-command): Use it. (Bug#4719)
4750
4751 2012-07-28 Eli Zaretskii <eliz@gnu.org>
4752
4753 * international/mule-cmds.el (set-locale-environment): In a
4754 console session on MS-Windows, set up keyboard and terminal
4755 encoding from the OEM codepage, not the ANSI codepage.
4756 (Bug#12055)
4757
4758 2012-07-28 Chong Yidong <cyd@gnu.org>
4759
4760 * progmodes/gdb-mi.el (gdb-place-breakpoints): Fix the call to
4761 gdb-get-location.
4762
4763 2012-07-28 Leo Liu <sdl.web@gmail.com>
4764
4765 * progmodes/cc-menus.el (cc-imenu-objc-function): Avoid leaving nil in
4766 the alist (bug#12029).
4767
4768 2012-07-28 Eli Zaretskii <eliz@gnu.org>
4769
4770 * makefile.w32-in (custom-deps, finder-data, updates, compile)
4771 (compile-always, compile-first)
4772 ($(lisp)/calendar/cal-loaddefs.el)
4773 ($(lisp)/calendar/diary-loaddefs.el)
4774 ($(lisp)/calendar/hol-loaddefs.el, $(lisp)/mh-e/mh-loaddefs.el)
4775 ($(lisp)/net/tramp-loaddefs.el, bootstrap)
4776 ($(lisp)/progmodes/cc-mode.elc): Depend on $(lisp)subdirs.el,
4777 instead of on update-subdirs.
4778 (bootstrap-clean): Delete $(lisp)/subdirs.el.
4779
4780 2012-07-28 Chong Yidong <cyd@gnu.org>
4781
4782 * vc/vc.el (vc-root-diff, vc-print-root-log): Prompt for a
4783 directory if vc-deduce-backend returns nil (Bug#7350).
4784
4785 * simple.el (delete-trailing-lines): New option.
4786 (delete-trailing-whitespace): Obey it (Bug#11879).
4787
4788 2012-07-28 David Engster <deng@randomsample.de>
4789
4790 * xml.el (xml-node-name, xml-parse-file, xml-parse-region):
4791 Explanation of new 'symbol-qnames feature in doc-strings.
4792 (xml-maybe-do-ns): Return expanded names as plain symbols if
4793 'symbol-qnames was provided in XML-NS argument (Bug#11916).
4794 (xml-parse-tag-1): Deal with new definition of PARSE-NS argument.
4795
4796 2012-07-27 Fabián Ezequiel Gallina <fgallina@cuca>
4797
4798 Consistent completion in inferior python with emacs -nw.
4799 * progmodes/python.el (inferior-python-mode): replace "<tab>"
4800 binding in inferior-python-mode-map with "\t".
4801 (python-shell-completion-complete-at-point)
4802 (python-completion-complete-at-point): Remove interactive spec.
4803
4804 2012-07-27 Jay Belanger <jay.p.belanger@gmail.com>
4805
4806 * calc/calccomp.el (math-compose-expr): Undo previous change.
4807
4808 2012-07-27 Fabián Ezequiel Gallina <fgallina@cuca>
4809
4810 * progmodes/python.el (python-mode-map): Add keybinding for
4811 run-python.
4812 (python-shell-make-comint): Fix pop-to-buffer call.
4813 (run-python): Autoload. New arg SHOW.
4814 (python-shell-get-or-create-process): Do not pop python process
4815 buffer.
4816
4817 2012-07-27 Michael Albinus <michael.albinus@gmx.de>
4818
4819 * notifications.el (notifications-on-action-signal)
4820 (notifications-on-closed-signal): Use also the bus address for the map.
4821 (notifications-notify, notifications-close-notification)
4822 (notifications-get-capabilities): Add optional argument BUS.
4823
4824 2012-07-27 Tassilo Horn <tsdh@gnu.org>
4825
4826 * textmodes/reftex-vars.el (reftex-label-alist-builtin):
4827 Add support for the lstlisting and minted environments, and for the
4828 ctable macro.
4829 * textmodes/reftex.el (reftex-compile-variables): Also recognize
4830 labels written in keyvals syntax.
4831
4832 2012-07-27 Jay Belanger <jay.p.belanger@gmail.com>
4833
4834 * calc/calccomp.el (math-compose-expr): Use parentheses when
4835 there is a product in the denominator of a fraction.
4836
4837 2012-07-26 Eli Zaretskii <eliz@gnu.org>
4838
4839 * makefile.w32-in ($(lisp)/calendar/cal-loaddefs.el)
4840 ($(lisp)/calendar/diary-loaddefs.el)
4841 ($(lisp)/calendar/hol-loaddefs.el, $(lisp)/mh-e/mh-loaddefs.el)
4842 ($(lisp)/net/tramp-loaddefs.el): Depend on update-subdirs.
4843 Fixes failures in parallel bootstrap because subdirs.el is being
4844 rewritten while the autoload files are built at the same time,
4845 which needs to load subdirs.el.
4846
4847 2012-07-26 Martin Rudalics <rudalics@gmx.at>
4848
4849 * mouse.el (popup-menu): Fix doc-string and re-indent code.
4850 (mouse-drag-line): Don't exit tracking when a switch-frame or
4851 switch-window event occurs (Bug#12006).
4852
4853 2012-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
4854
4855 * mouse.el (popup-menu): Fix last change.
4856
4857 2012-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
4858
4859 Autoload from Lisp with more care. Follow aliases when looking for
4860 function properties.
4861 * subr.el (autoloadp): New function.
4862 (symbol-file): Use it.
4863 (function-get): New function.
4864 * emacs-lisp/macroexp.el (macroexp--expand-all): Use function-get and
4865 autoload-do-load.
4866 * emacs-lisp/lisp-mode.el (lisp-font-lock-syntactic-face-function)
4867 (lisp-indent-function):
4868 * emacs-lisp/gv.el (gv-get):
4869 * emacs-lisp/edebug.el (get-edebug-spec, edebug-basic-spec):
4870 * emacs-lisp/byte-opt.el (byte-optimize-form):
4871 * emacs-lisp/bytecomp.el (byte-compile-arglist-warn):
4872 * emacs-lisp/autoload.el (make-autoload, autoload-print-form):
4873 Use function-get.
4874 * emacs-lisp/cl.el: Don't propagate function properties any more.
4875
4876 * speedbar.el (speedbar-add-localized-speedbar-support):
4877 * emacs-lisp/disass.el (disassemble-internal):
4878 * desktop.el (desktop-load-file):
4879 * help-fns.el (help-function-arglist, find-lisp-object-file-name)
4880 (describe-function-1):
4881 * emacs-lisp/find-func.el (find-function-noselect):
4882 * emacs-lisp/elp.el (elp-instrument-function):
4883 * emacs-lisp/advice.el (ad-has-proper-definition):
4884 * apropos.el (apropos-safe-documentation, apropos-macrop):
4885 * emacs-lisp/debug.el (debug-on-entry):
4886 * emacs-lisp/cl-macs.el (cl-compiler-macroexpand):
4887 * emacs-lisp/byte-opt.el (byte-compile-inline-expand):
4888 * calc/calc.el (name): Use autoloadp & autoload-do-load.
4889
4890 2012-07-25 Alp Aker <alp.tekin.aker@gmail.com>
4891
4892 * international/mule-cmds.el (ucs-insert): Mark it as an obsolete
4893 function, not an obsolete variable (Bug#12046).
4894
4895 2012-07-25 Andreas Schwab <schwab@linux-m68k.org>
4896
4897 * faces.el (face-spec-reset-face): Fix last change. (Bug#12042)
4898
4899 2012-07-25 Christopher Schmidt <christopher@ch.ristopher.com>
4900
4901 * emacs-lisp/pp.el (pp-display-expression): Select old selected
4902 window only if it is still live (Bug#12034).
4903
4904 2012-07-25 Martin Rudalics <rudalics@gmx.at>
4905
4906 * subr.el (redirect-frame-focus): Add advertised calling
4907 convention (Bug#12030).
4908
4909 2012-07-25 Paul Eggert <eggert@cs.ucla.edu>
4910
4911 Prefer typical American spelling for "acknowledgment".
4912 * vc/add-log.el (change-log-acknowledgment): Rename from
4913 change-log-acknowledgement, with an alias for the old name.
4914
4915 2012-07-25 Jay Belanger <jay.p.belanger@gmail.com>
4916
4917 * calc-alg.el (math-simplify-divide): Don't cross multiply
4918 in an equation when the lhs is a variable.
4919
4920 2012-07-24 Julien Danjou <julien@danjou.info>
4921
4922 * net/netrc.el (netrc-find-service-number, netrc-store-data):
4923 Remove, unused.
4924
4925 2012-07-23 Eli Zaretskii <eliz@gnu.org>
4926
4927 * startup.el (command-line): Don't display an empty user name in
4928 the error message about non-existent home directory, when
4929 init-file-user was set to an empty string. See
4930 http://lists.gnu.org/archive/html/bug-gnu-emacs/2012-07/msg00835.html
4931 for the details and context.
4932
4933 2012-07-22 Vincent Belaïche <vincentb1@users.sourceforge.net>
4934
4935 * ses.el (ses-cell-formula-aset): New macro.
4936 (ses-cell-references-aset): New macro.
4937 (ses-cell-p): New function.
4938 (ses-rename-cell): Do no longer rely on complex operations like
4939 ses-cell-set-formula or ses-set-cell to change the cell and handle
4940 the undo at the same time, but rather use lower level new macros
4941 `ses-cell-formula-aset' and `ses-cell-references-aset' and handle
4942 the undo directly. Refresh the mode line.
4943
4944 2012-07-21 Leo Liu <sdl.web@gmail.com>
4945
4946 * progmodes/cc-cmds.el (c-defun-name):
4947 Use match-string-no-properties instead for consistency.
4948
4949 2012-07-20 Leo Liu <sdl.web@gmail.com>
4950
4951 * progmodes/cc-cmds.el (c-defun-name): Handle objc selectors properly.
4952 (Bug#7879)
4953
4954 * progmodes/cc-langs.el (c-symbol-start): Include char _ (bug#11986).
4955
4956 2012-07-20 Stefan Monnier <monnier@iro.umontreal.ca>
4957
4958 * userlock.el, emacs-lisp/map-ynp.el: Declare part of `emacs' package.
4959 * progmodes/bug-reference.el, misearch.el: Provide themselves
4960 (bug#11915).
4961
4962 * progmodes/cperl-mode.el (cperl-unwind-to-safe): Don't inf-loop at end
4963 of narrowed buffer (bug#11966).
4964
4965 2012-07-20 Vincent Belaïche <vincentb1@users.sourceforge.net>
4966
4967 * ses.el (ses-rename-cell): Set new name also in reference list of
4968 cells of which the renamed cell depends.
4969
4970 2012-07-20 Masatake YAMATO <yamato@redhat.com>
4971
4972 * term/x-win.el (x-menu-bar-open): Use `frame-parameter'
4973 to check whether menu-bar is shown or not. If not shown,
4974 show the menu-bar as a popup menu instead of using tmm.
4975 * mouse.el (popup-menu): Accept `point' as `position' argument.
4976
4977 2012-07-20 Dmitry Gutov <dgutov@yandex.ru>
4978
4979 * progmodes/ruby-mode.el (ruby-parse-partial): No error when end
4980 up inside string symbol literal (bug#11923).
4981
4982 2012-07-20 Eli Zaretskii <eliz@gnu.org>
4983
4984 * startup.el (fancy-startup-text): Read the whole tutorial, not
4985 just its first 256 bytes. Prevents gibberish in display of the
4986 tutorial title.
4987
4988 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
4989
4990 Drop idle buffer compaction due to an absence of the
4991 proved efficiency.
4992 * compact.el: Remove.
4993
4994 2012-07-19 Sam Steingold <sds@gnu.org>
4995
4996 * vc/vc-dispatcher.el (vc-compilation-mode): Add, based on
4997 vc-bzr-pull & vc-bzr-merge-branch.
4998 * vc/vc-bzr.el (vc-bzr-pull, vc-bzr-merge-branch): Use it.
4999 (vc-bzr-error-regexp-alist): Rename from vc-bzr-error-regex-alist
5000 for consistency with compilation-error-regexp-alist.
5001 * vc/vc-git.el (vc-git-error-regexp-alist): Add.
5002 (vc-git-pull, vc-git-merge-branch): Call vc-compilation-mode.
5003 * vc/vc-hg.el (vc-hg-error-regexp-alist): Add.
5004 (vc-hg-pull, vc-hg-merge-branch): Call vc-compilation-mode.
5005
5006 2012-07-19 Stefan Monnier <monnier@iro.umontreal.ca>
5007
5008 * emacs-lisp/chart.el: Use lexical-binding.
5009 (chart-emacs-storage): Don't hardcode the list of entries.
5010
5011 2012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
5012
5013 Next round of tweaks caused by Fgarbage_collect changes.
5014 * emacs-lisp/chart.el (chart-emacs-storage): Adjust again.
5015
5016 2012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
5017
5018 Compact buffers when idle.
5019 * compact.el: New file.
5020
5021 2012-07-19 Stefan Monnier <monnier@iro.umontreal.ca>
5022
5023 * subr.el (eventp): Presume that if it looks vaguely like an event,
5024 it's an event (bug#10190).
5025
5026 2012-07-19 Fabián Ezequiel Gallina <fgallina@cuca>
5027
5028 Enhancements to ppss related code (thanks Stefan).
5029 * progmodes/python.el (python-indent-context)
5030 (python-indent-calculate-indentation, python-indent-dedent-line)
5031 (python-indent-electric-colon, python-nav-forward-block)
5032 (python-mode-abbrev-table)
5033 (python-info-assignment-continuation-line-p): Simplify checks
5034 for ppss context.
5035 (python-info-continuation-line-p): Cleanup.
5036 (python-info-ppss-context): Do not catch 'quote.
5037 (python-info-ppss-context-type)
5038 (python-info-ppss-comment-or-string-p): Simplify.
5039
5040 2012-07-18 Fabián Ezequiel Gallina <fgallina@cuca>
5041
5042 * progmodes/python.el: Enhancements to eldoc support.
5043 (python-info-current-symbol): New function.
5044 (python-eldoc-at-point): Use python-info-current-symbol.
5045 (python-info-current-defun): Fix cornercase on first defun scan.
5046 (python-eldoc--get-doc-at-point): Use python-info-current-symbol
5047 and signal error when no inferior python process is available.
5048
5049 2012-07-18 Dmitry Gutov <dgutov@yandex.ru>
5050
5051 * vc/vc-git.el (vc-git-state): Don't call `vc-git-registered',
5052 assume it's always t.
5053 (vc-git-registered): Remove caching, the function is only called
5054 once.
5055 (vc-git-branches): Use `vc-git--call' instead of `call-process'.
5056
5057 2012-07-18 Chong Yidong <cyd@gnu.org>
5058
5059 * subr.el (last-input-char, last-command-char): Remove (Bug#9195).
5060
5061 * simple.el (count-words): Report on narrowing (Bug#9959).
5062
5063 * bindings.el: Bind M-= to count-words.
5064
5065 * faces.el (face-spec-reset-face): Handle reverse video (Bug#4238).
5066
5067 2012-07-18 Masatake YAMATO <yamato@redhat.com>
5068
5069 * progmodes/sh-script.el (sh-imenu-generic-expression):
5070 Capture a function with `function' keyword and without parentheses
5071 like "function FOO" (bug#11856).
5072
5073 2012-07-18 Tassilo Horn <tassilo@member.fsf.org>
5074
5075 * window.el (split-window-sensibly): Make WINDOW argument
5076 optional.
5077
5078 2012-07-18 Chong Yidong <cyd@gnu.org>
5079
5080 * subr.el (keyboard-translate): Doc fix (Bug#7261).
5081
5082 * isearch.el (isearch-mode-map): Handle C-x 8 key translations,
5083 and make C-x 8 RET exit isearch (Bug#11439).
5084
5085 * international/iso-transl.el: Move isearch-mode-map key
5086 definitions to isearch.el.
5087
5088 2012-07-18 Stefan Monnier <monnier@iro.umontreal.ca>
5089
5090 * emacs-lisp/eieio.el: Adapt further to gv.el (bug#11970).
5091 (eieio-defclass): Use gv-define-setter when possible.
5092
5093 2012-07-18 Dmitry Antipov <dmantipov@yandex.ru>
5094
5095 Reflect recent changes in Fgarbage_collect.
5096 * emacs-lisp/chart.el (chart-emacs-storage): Change to
5097 reflect new format of data returned by Fgarbage_collect.
5098
5099 2012-07-17 Fabián Ezequiel Gallina <fgallina@cuca>
5100
5101 New utility functions + python-info-ppss-context fix (Bug#11910).
5102 * progmodes/python.el (python-info-beginning-of-block-statement-p)
5103 (python-info-ppss-comment-or-string-p): New functions.
5104 (python-info-ppss-context): Small fix for string check.
5105
5106 2012-07-17 Juri Linkov <juri@jurta.org>
5107
5108 * dired-aux.el (dired-do-async-shell-command): Doc fix.
5109 (dired-do-async-shell-command): Don't add `*' at the end of the
5110 command (Bug#11815).
5111 (dired-do-shell-command): Doc fix.
5112 (dired-shell-stuff-it): Strip the trailing "&" and ";" if any.
5113 Join the individual commands using either "&" or ";" as the
5114 separator depending on the values of these trailing characters.
5115 At the end re-add the trailing "&". (Bug#10598)
5116
5117 * simple.el (async-shell-command): Sync the interactive spec with
5118 `shell-command'. Doc fix.
5119 (shell-command): Doc fix.
5120
5121 2012-07-17 Juri Linkov <juri@jurta.org>
5122
5123 * descr-text.el (describe-char): Fix format args. (Bug#10129)
5124
5125 2012-07-17 Fabián Ezequiel Gallina <fgallina@cuca>
5126
5127 Final renames and doc fixes for movement commands (bug#11899).
5128 * progmodes/python.el (python-nav-beginning-of-statement):
5129 Rename from python-nav-statement-start.
5130 (python-nav-end-of-statement): Rename from
5131 python-nav-statement-end.
5132 (python-nav-beginning-of-block): Rename from
5133 python-nav-block-start.
5134 (python-nav-end-of-block): Rename from python-nav-block-end.
5135
5136 2012-07-17 Fabián Ezequiel Gallina <fgallina@cuca>
5137
5138 * progmodes/python.el (python-shell-send-string-no-output):
5139 Allow accept-process-output to quit, keeping shell process ready for
5140 future interactions (Bug#11868).
5141
5142 2012-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
5143
5144 * emacs-lisp/cl-macs.el (cl-progv): Use a properly prefixed var name.
5145
5146 * emacs-lisp/elint.el (elint-find-args-in-code):
5147 Use help-function-arglist, so as to handle lexical byte-code.
5148
5149 * progmodes/sh-script.el (sh-syntax-propertize-function): Fix last
5150 change (bug#11826).
5151
5152 2012-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
5153
5154 * progmodes/cc-engine.el (c-forward-sws, c-backward-sws):
5155 Avoid spuriously marking the buffer as modified because of c-is-sws.
5156
5157 * progmodes/sh-script.el (sh-syntax-propertize-function): Mark "${#VAR"
5158 as not-a-comment (bug#11946).
5159
5160 * emacs-lisp/macroexp.el (macroexp-let2): Use more informative names
5161 for uninterned vars.
5162
5163 * xt-mouse.el (xterm-mouse-translate-1, xterm-mouse-event-read):
5164 Use read-event since we don't really want to read chars but bytes.
5165
5166 * textmodes/tex-mode.el (tex-font-lock-keywords-1): Highlight not only
5167 $$..$$ but also $..$ using regexps (bug#11953).
5168 Use tex-verbatim for \url and \path.
5169 (tex-font-lock-keywords): Define as defconst like the others.
5170 (tex-common-initialization): Don't use font-lock-syntax-table any more.
5171
5172 2012-07-16 René Kyllingstad <Rene@Kyllingstad.com> (tiny change)
5173
5174 * international/mule-cmds.el (ucs-insert): Make it an obsolete
5175 alias for insert-char.
5176
5177 2012-07-16 Fabián Ezequiel Gallina <fgallina@cuca>
5178
5179 * progmodes/python.el: Simplified imenu implementation.
5180 (python-nav-jump-to-defun): Remove command.
5181 (python-mode-map): Use `imenu' instead.
5182 (python-nav-list-defun-positions-cache)
5183 (python-imenu-include-defun-type, python-imenu-make-tree)
5184 (python-imenu-subtree-root-label, python-imenu-index-alist):
5185 Remove vars.
5186 (python-nav-list-defun-positions, python-nav-read-defun)
5187 (python-imenu-tree-assoc, python-imenu-make-element-tree)
5188 (python-imenu-make-tree, python-imenu-create-index):
5189 Remove functions.
5190 (python-mode): Update to interact with imenu by setting
5191 `imenu-extract-index-name-function' only.
5192
5193 2012-07-16 Fabián Ezequiel Gallina <fgallina@cuca>
5194
5195 * progmodes/python.el: Enhancements to navigation commands.
5196 (python-nav-backward-sentence)
5197 (python-nav-forward-sentence): Remove.
5198 (python-nav-backward-statement, python-nav-forward-statement)
5199 (python-nav-statement-start, python-nav-statement-end)
5200 (python-nav-backward-block, python-nav-forward-block)
5201 (python-nav-block-start, python-nav-block-end)
5202 (python-nav-forward-sexp-function)
5203 (python-info-current-line-comment-p)
5204 (python-info-current-line-empty-p): New functions.
5205 (python-indent-context): Use `python-nav-statement-start'.
5206
5207 2012-07-16 Michael Albinus <michael.albinus@gmx.de>
5208
5209 * eshell/em-ls.el (eshell/ls): Use `apply'.
5210
5211 * eshell/em-unix.el (eshell/su, eshell/sudo): Apply Tramp's ad-hoc
5212 multi-hops, instead of Tramp internals.
5213
5214 * vc/ediff.el (ediff-directories): Add trailing space to prompts.
5215
5216 * vc/ediff-diff.el (ediff-same-file-contents): Handle the case,
5217 when F1 and F2 are located on different hosts.
5218
5219 2012-07-14 Chong Yidong <cyd@gnu.org>
5220
5221 * xt-mouse.el: Implement extended mouse coordinates (Bug#10642).
5222 (xterm-mouse-translate): Move code into xterm-mouse-translate-1.
5223 (xterm-mouse-translate-extended, xterm-mouse-translate-1)
5224 (xterm-mouse--read-event-sequence-1000)
5225 (xterm-mouse--read-event-sequence-1006): New functions. For old
5226 mouse protocol, handle M-mouse-X events correctly.
5227 (xterm-mouse-event): New arg specifying mouse protocol.
5228 (turn-on-xterm-mouse-tracking-on-terminal)
5229 (turn-off-xterm-mouse-tracking-on-terminal): Send DEC 1006
5230 sequence to toggle extended coordinates on newer XTerms.
5231 This appears to be harmless on terminals which do not support this.
5232
5233 2012-07-14 Leo Liu <sdl.web@gmail.com>
5234
5235 Add fringe bitmap indicators for flymake. (Bug#11253)
5236 * progmodes/flymake.el (flymake-highlight-line): Use fringe bitmaps.
5237 (flymake-make-overlay): New arg BITMAP.
5238 (flymake-error-bitmap, flymake-warning-bitmap)
5239 (flymake-fringe-indicator-position): New user variables.
5240
5241 * fringe.el: New bitmap exclamation-mark.
5242
5243 2012-07-14 Jan Djärv <jan.h.d@swipnet.se>
5244
5245 * progmodes/cc-cmds.el (c-defun-name): Recognize Objective-C methods
5246 also (Bug#7879).
5247
5248 2012-07-14 Chong Yidong <cyd@gnu.org>
5249
5250 * electric.el (electric-pair-post-self-insert-function): Fix pair
5251 insertion in empty-region case (Bug#11520).
5252
5253 2012-07-14 Chong Yidong <cyd@gnu.org>
5254
5255 * bindings.el: Consolidate ctl-x-r-map bindings.
5256 Bind copy-rectangle-as-kill to C-x r w.
5257
5258 * rect.el, register.el: Move bindings to bindings.el.
5259
5260 2012-07-14 Reuben Thomas <rrt@sc3d.org>
5261
5262 * rect.el (copy-rectangle-as-kill): New command (Bug#739).
5263
5264 2012-07-13 Andreas Schwab <schwab@linux-m68k.org>
5265
5266 * emacs-lisp/cl.el (labels): Remove spurious quote. (Bug#11938)
5267
5268 2012-07-13 Juanma Barranquero <lekktu@gmail.com>
5269
5270 * bindings.el (top): Use `mapc' instead of `mapcar'.
5271
5272 * loadup.el (top): Remove bogus `if' choice (brought by 2008-06-21T01:38:39Z!monnier@iro.umontreal.ca).
5273
5274 2012-07-13 Michael Albinus <michael.albinus@gmx.de>
5275
5276 * progmodes/sql.el (sql-comint): Suppress the check for program on
5277 remote hosts. Reported by Francis Devereux <francis@devrx.org>.
5278 (Bug#11908)
5279
5280 2012-07-13 Chong Yidong <cyd@gnu.org>
5281
5282 * bindings.el: Assign a non-nil permanent-local property to
5283 per-buffer variables which lack a default value (Bug#11930).
5284
5285 * help-fns.el (describe-variable): In the "automatically becomes
5286 local" notice, take note of permanent-local variables.
5287
5288 2012-07-13 Chong Yidong <cyd@gnu.org>
5289
5290 * files.el (toggle-read-only): Doc fix and code cleanup. New arg
5291 to allow printing the message when called from Lisp.
5292
5293 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
5294 Remove toggle-read-only.
5295
5296 * bs.el (bs-toggle-readonly):
5297 * buff-menu.el (Buffer-menu-toggle-read-only):
5298 Remove with-no-warnings around toggle-read-only.
5299
5300 * ffap.el (ffap--toggle-read-only): Accept a list of buffers.
5301 Remove with-no-warnings around toggle-read-only.
5302 (ffap-read-only, ffap-read-only-other-window)
5303 (ffap-read-only-other-frame): Callers changed.
5304
5305 * help-mode.el: Don't require view package.
5306 (help-mode-finish): Set buffer-read-only instead of calling
5307 toggle-read-only.
5308
5309 * bindings.el (mode-line-toggle-read-only):
5310 * dired.el (dired-toggle-read-only):
5311 * ibuffer.el (ibuffer-do-toggle-read-only): Call toggle-read-only
5312 with non-nil second arg.
5313
5314 * emacs-lisp/eieio-custom.el (eieio-customize-object):
5315 * vc/ediff.el (ediff-set-read-only-in-buf-A): Set buffer-read-only
5316 directly.
5317
5318 2012-07-12 Eli Zaretskii <eliz@gnu.org>
5319
5320 * emacs-lisp/bytecomp.el (byte-recompile-directory): Use cl-incf,
5321 not incf.
5322
5323 2012-07-11 Stefan Monnier <monnier@iro.umontreal.ca>
5324
5325 More CL cleanups and reduction of use of cl.el.
5326 * woman.el, winner.el, vc/vc-rcs.el, vc/vc-hooks.el, vc/vc-hg.el:
5327 * vc/vc-git.el, vc/vc-dir.el, vc/vc-bzr.el, vc/vc-annotate.el:
5328 * textmodes/tex-mode.el, textmodes/sgml-mode.el, tar-mode.el:
5329 * strokes.el, ses.el, server.el, progmodes/js.el, progmodes/gdb-mi.el:
5330 * progmodes/flymake.el, progmodes/ebrowse.el, progmodes/compile.el:
5331 * play/tetris.el, play/snake.el, play/pong.el, play/landmark.el:
5332 * play/hanoi.el, play/decipher.el, play/5x5.el, nxml/nxml-mode.el:
5333 * net/secrets.el, net/quickurl.el, midnight.el, mail/footnote.el:
5334 * image-dired.el, ibuffer.el, ibuf-macs.el, ibuf-ext.el, hexl.el:
5335 * eshell/eshell.el, eshell/esh-io.el, eshell/esh-ext.el:
5336 * eshell/esh-cmd.el, eshell/em-ls.el, eshell/em-hist.el:
5337 * eshell/em-cmpl.el, eshell/em-banner.el:
5338 * calendar/parse-time.el: Use cl-lib.
5339 * wid-browse.el, wdired.el, vc/vc.el, vc/vc-mtn.el, vc/vc-cvs.el:
5340 * vc/vc-arch.el, tree-widget.el, textmodes/texinfo.el:
5341 * textmodes/refill.el, textmodes/css-mode.el, term/tvi970.el:
5342 * term/ns-win.el, term.el, shell.el, ps-samp.el:
5343 * progmodes/perl-mode.el, progmodes/pascal.el, progmodes/gud.el:
5344 * progmodes/glasses.el, progmodes/etags.el, progmodes/cwarn.el:
5345 * play/gamegrid.el, play/bubbles.el, novice.el, notifications.el:
5346 * net/zeroconf.el, net/xesam.el, net/snmp-mode.el, net/mairix.el:
5347 * net/ldap.el, net/eudc.el, net/browse-url.el, man.el:
5348 * mail/mailheader.el, mail/feedmail.el: Don't use CL.
5349 * ibuf-ext.el (ibuffer-mark-old-buffers): Use float-time.
5350 * eshell/esh-opt.el (eshell-eval-using-options): Quote code with
5351 `lambda' rather than with `quote'.
5352 (eshell-do-opt): Adjust accordingly.
5353 (eshell-process-option): Simplify.
5354 * eshell/esh-var.el:
5355 * eshell/em-script.el: Require `esh-opt' for eshell-eval-using-options.
5356 * emacs-lisp/pcase.el (pcase--dontcare-upats, pcase--let*)
5357 (pcase--expand, pcase--u1): Rename pcase's internal `dontcare' pattern
5358 to `pcase--dontcare'.
5359 * emacs-lisp/cl.el (labels): Mark obsolete.
5360 (cl--letf, letf): Move to cl-lib.
5361 (cl--letf*, letf*): Remove.
5362 * emacs-lisp/cl-lib.el (cl-nth-value): Use defalias.
5363 * emacs-lisp/cl-macs.el (cl-dolist, cl-dotimes): Add indent rule.
5364 (cl-progv): Rewrite.
5365 (cl--letf, cl-letf): Move from cl.el.
5366 (cl-letf*): New macro.
5367 * emacs-lisp/cl-extra.el (cl--progv-before, cl--progv-after): Remove.
5368
5369 2012-07-11 Michael Albinus <michael.albinus@gmx.de>
5370
5371 * net/ange-ftp.el (ange-ftp-cf1): Update the files cache.
5372
5373 2012-07-11 Chong Yidong <cyd@gnu.org>
5374
5375 * vc/log-edit.el (log-edit-vc-backend): New variable.
5376 (log-edit): Doc fix.
5377
5378 * vc/vc-dispatcher.el (vc-log-edit): New args. Use PARAMS
5379 argument of log-edit to set up all local variables.
5380 (vc-start-logentry): New optional arg specifying VC backend.
5381
5382 * vc/vc.el (vc-checkin): Use it.
5383 (vc-deduce-fileset): Handle Log Edit buffers.
5384 (vc-diff): Make first argument optional too.
5385
5386 * vc/log-view.el (log-view-vc-fileset, log-view-vc-backend): Doc fix.
5387
5388 2012-07-10 Michael Albinus <michael.albinus@gmx.de>
5389
5390 * eshell/esh-ext.el (eshell-remote-command): Remove remote part of
5391 command, just in case. The function is not needed anymore.
5392 (eshell-external-command): Do not call `eshell-remote-command'.
5393
5394 2012-07-10 Stefan Monnier <monnier@iro.umontreal.ca>
5395
5396 Reduce use of (require 'cl).
5397 * vc/smerge-mode.el, vc/pcvs.el, vc/pcvs-util.el, vc/pcvs-info.el:
5398 * vc/diff-mode.el, vc/cvs-status.el, uniquify.el, scroll-bar.el:
5399 * register.el, progmodes/sh-script.el, net/gnutls.el, net/dbus.el:
5400 * msb.el, mpc.el, minibuffer.el, international/ucs-normalize.el:
5401 * international/quail.el, info-xref.el, imenu.el, image-mode.el:
5402 * font-lock.el, filesets.el, edmacro.el, doc-view.el, bookmark.el:
5403 * battery.el, avoid.el, abbrev.el: Use cl-lib.
5404 * vc/pcvs-parse.el, vc/pcvs-defs.el, vc/log-view.el, vc/log-edit.el:
5405 * vc/diff.el, simple.el, pcomplete.el, lpr.el, comint.el, loadhist.el:
5406 * jit-lock.el, international/iso-ascii.el, info.el, frame.el, bs.el:
5407 * emulation/crisp.el, electric.el, dired.el, cus-dep.el, composite.el:
5408 * calculator.el, autorevert.el, apropos.el: Don't require CL.
5409 * emacs-lisp/bytecomp.el (byte-recompile-directory, display-call-tree)
5410 (byte-compile-unfold-bcf, byte-compile-check-variable):
5411 * emacs-lisp/byte-opt.el (byte-compile-trueconstp)
5412 (byte-compile-nilconstp):
5413 * emacs-lisp/autoload.el (make-autoload): Use pcase.
5414 * face-remap.el (text-scale-adjust): Simplify pcase patterns.
5415
5416 * emacs-lisp/gv.el (cond): Make it a valid place.
5417 (if): Simplify slightly.
5418
5419 * emacs-lisp/pcase.el (pcase): Accept self-quoting exps as "upatterns".
5420 (pcase--self-quoting-p): New function.
5421 (pcase--u1): Use it.
5422
5423 2012-07-10 Glenn Morris <rgm@gnu.org>
5424
5425 * emacs-lisp/authors.el (authors-fixed-entries):
5426 (authors-renamed-files-alist): Update for configure.in -> configure.ac.
5427
5428 2012-07-09 Paul Eggert <eggert@cs.ucla.edu>
5429
5430 Rename configure.in to configure.ac (Bug#11603).
5431 * emacs-lisp/authors.el (authors-canonical-file-name):
5432 * progmodes/autoconf.el (autoconf-mode):
5433 Prefer configure.ac to configure.in.
5434
5435 2012-07-08 Chong Yidong <cyd@gnu.org>
5436
5437 * mouse.el (mouse-drag-line): Rewrite the track-mouse loop.
5438 Implement the mouse-1-click-follows-link handling properly.
5439
5440 * info.el (Info-link-keymap): Use follow-link mechanism for
5441 header-line links (Bug#374).
5442
5443 * simple.el (deactivate-mark): Do not set the primary selection
5444 if another program has acquired it (Bug#11772).
5445
5446 2012-07-07 Kevin Ryde <user42@zip.com.au>
5447
5448 * woman.el (woman-strings): Fix double-quote handling (Bug#1151).
5449 (woman-decode-region): Replace escaped-escapes without destroying
5450 bold or underline (Bug#11552).
5451 (woman2-process-escapes): Handle nofill regions (Bug#11591).
5452
5453 2012-07-07 Chong Yidong <cyd@gnu.org>
5454
5455 * simple.el (yank-pop-change-selection): Doc fix (Bug#11361).
5456 (interprogram-cut-function, interprogram-paste-function):
5457 Mention that we typically mean the clipboard.
5458
5459 2012-07-06 Glenn Morris <rgm@gnu.org>
5460
5461 * kmacro.el (kmacro-call-macro): Restore repeat message. (Bug#11817)
5462
5463 * files.el (toggle-read-only): Restrict message to interactive use.
5464
5465 2012-07-06 Michael Albinus <michael.albinus@gmx.de>
5466
5467 * net/tramp.el (tramp-restricted-shell-hosts-alist): New defcustom.
5468
5469 * net/tramp-sh.el (tramp-maybe-open-connection): Handle it.
5470
5471 2012-07-06 Glenn Morris <rgm@gnu.org>
5472
5473 * Makefile.in (compile-one-process): Rename from "recompile".
5474
5475 * Makefile.in (bzr-update): "compile" is the same as "recompile
5476 autoloads", but parallelizable, so use that instead.
5477
5478 2012-07-06 Dmitry Gutov <dgutov@yandex.ru>
5479
5480 * window.el (quit-window): Always restore window height when
5481 it's saved in quit-restore parameter (Bug#11810).
5482
5483 2012-07-06 Glenn Morris <rgm@gnu.org>
5484
5485 * simple.el (kill-whole-line): Doc tweak.
5486
5487 2012-07-06 Eli Zaretskii <eliz@gnu.org>
5488
5489 * files.el (file-relative-name): Compare file names
5490 case-insensitively if on MS-Windows or MS-DOS, or if
5491 read-file-name-completion-ignore-case is non-nil. Don't use
5492 case-fold-search for this purpose. (Bug#11827)
5493
5494 2012-07-17 Andreas Schwab <schwab@linux-m68k.org>
5495
5496 * calendar/cal-dst.el (calendar-current-time-zone):
5497 Return calendar-current-time-zone-cache if non-nil.
5498
5499 2012-07-17 Masatake YAMATO <yamato@redhat.com>
5500 2012-07-06 Andreas Schwab <schwab@linux-m68k.org>
5501
5502 * calendar/cal-dst.el (calendar-current-time-zone):
5503 Return calendar-current-time-zone-cache if non-nil.
5504
5505 2012-07-06 Glenn Morris <rgm@gnu.org>
5506
5507 * Makefile.in (cvs-update): Remove old alias.
5508
5509 2012-07-05 Michael Albinus <michael.albinus@gmx.de>
5510
5511 Sync with Tramp 2.2.6-pre.
5512
5513 * net/tramp.el (tramp-drop-volume-letter): Provide an XEmacs
5514 compatible declaration.
5515
5516 * net/tramp-cmds.el (tramp-append-tramp-buffers):
5517 Protect `list-load-path-shadows' call.
5518
5519 * net/tramp-compat.el (top): Require packages, which aren't
5520 autoloaded anymore for XEmacs. Protect call of
5521 `tramp-file-name-handler' by `tramp-compat-funcall', pacifying the
5522 compiler. Do not require tramp-util.el and tramp-vc.el anymore,
5523 it hurts at least for SXEmacs.
5524 (tramp-compat-temporary-file-directory): In XEmacs, there is no
5525 standard-value for `temporary-file-directory'.
5526
5527 * net/tramp-sh.el (tramp-do-directory-files-and-attributes-with-stat):
5528 Redirect stderr to /dev/null.
5529 (tramp-sh-handle-write-region): uid and gid can be floats.
5530 Reported by Russell Sim <russell.sim@gmail.com>.
5531 (tramp-sh-handle-vc-registered): Hide errors.
5532 (tramp-vc-file-name-handler): Use dummy results for `process-file'
5533 and `start-file-process'.
5534 (tramp-maybe-open-connection): Check also whether `non-essential'
5535 is bound.
5536
5537 2012-07-04 Chong Yidong <cyd@gnu.org>
5538
5539 * xml.el (xml--parse-buffer): Use xml-syntax-table.
5540 (xml-parse-tag): Likewise, and avoid changing entity tables.
5541 (xml-syntax-table): Define from scratch, making sure not to give
5542 x2000 and other Unicode spaces whitespace syntax, since those are
5543 not spaces in XML.
5544 (xml-parse-fragment): Delete unused function.
5545 (xml-name-start-char-re, xml-name-char-re, xml-name-re)
5546 (xml-names-re, xml-nmtoken-re, xml-nmtokens-re, xml-char-ref-re)
5547 (xml-entity-ref, xml-pe-reference-re)
5548 (xml-reference-re,xml-att-value-re, xml-tokenized-type-re)
5549 (xml-notation-type-re, xml-enumeration-re, xml-enumerated-type-re)
5550 (xml-att-type-re, xml-default-decl-re, xml-att-def-re)
5551 (xml-entity-value-re): Use syntax references in regexps where
5552 possible; no need to define inside a let-binding.
5553 (xml-parse-dtd): Use xml-pe-reference-re.
5554 (xml-entity-or-char-ref-re): New defconst.
5555 (xml-parse-string, xml-substitute-special): Use it.
5556
5557 2012-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
5558
5559 * files.el (locate-dominating-file): Allow `name' to be a predicate.
5560 (find-file--read-only): New function.
5561 (find-file-read-only, find-file-read-only-other-window)
5562 (find-file-read-only-other-frame): Use it.
5563 (insert-file-contents-literally): Don't `fset'.
5564 (get-free-disk-space): Use locate-dominating-file.
5565
5566 * emacs-lisp/bytecomp.el (byte-compile): Don't signal an error if the
5567 function is already compiled.
5568
5569 * xml.el (xml-name-regexp): Remove, redundant. Use xml-name-re.
5570
5571 2012-07-03 Michael Albinus <michael.albinus@gmx.de>
5572
5573 * vc/ediff-diff.el (ediff-same-file-contents): Fix it for remote
5574 files on the same host.
5575
5576 2012-07-03 Andreas Schwab <schwab@linux-m68k.org>
5577
5578 * help-fns.el (describe-function-1): Only call
5579 help-fns--autoloaded-p when we have a file name. (Bug#11848)
5580
5581 2012-07-03 Chong Yidong <cyd@gnu.org>
5582
5583 * xml.el: Protect parser against XML bombs.
5584 (xml-entity-expansion-limit): New variable.
5585 (xml-parse-string, xml-substitute-special): Use it.
5586 (xml-parse-dtd): Avoid infloop if the DTD is not terminated.
5587
5588 2012-07-03 Glenn Morris <rgm@gnu.org>
5589
5590 * progmodes/bug-reference.el (bug-reference-bug-regexp):
5591 Allow linking to specific messages in debbugs reports (eg 123#5).
5592
5593 2012-07-02 Chong Yidong <cyd@gnu.org>
5594
5595 * xml.el: Fix entity and character reference expansion, allowing
5596 them to expand into markup as per XML spec.
5597 (xml-default-ns): New variable.
5598 (xml-entity-alist): Use XML spec definitions for lt and amp.
5599 (xml-parse-region): Make first two arguments optional.
5600 Discard text properties.
5601 (xml-parse-tag-1): New function, spun off from xml-parse-tag.
5602 All callers changed.
5603 (xml-parse-tag): Call xml-parse-tag-1. For backward
5604 compatibility, this function should not modify buffer contents.
5605 (xml-parse-tag-1): Fix opening-tag regexp.
5606 (xml-parse-string): Rewrite, handling entity and character
5607 references properly.
5608 (xml--entity-replacement-text): Signal an error if a parameter
5609 entity is undefined.
5610
5611 2012-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
5612
5613 * comint.el (comint-output-filter): Filter out repeated prompts.
5614
5615 * net/ange-ftp.el (ange-ftp-expand-file-name): Use ange-ftp-ftp-name
5616 and file-name-absolute-p.
5617 (ange-ftp-file-exists-p): Use ange-ftp-file-exists-p for
5618 internal calls.
5619
5620 2012-07-02 Paul Eggert <eggert@cs.ucla.edu>
5621
5622 Spelling fixes.
5623 * emacs-lisp/bytecomp.el (byte-compile--reify-function):
5624 Rename from byte-compile--refiy-function. All uses changed.
5625
5626 2012-07-01 Chong Yidong <cyd@gnu.org>
5627
5628 * xml.el (xml--parse-buffer): New function. Move most of
5629 xml-parse-region here.
5630 (xml-parse-region): Copy region into a temporary buffer, since
5631 parameter entity substitution requires changing buffer contents.
5632 Use xml--parse-buffer.
5633 (xml-parse-file): Use xml--parse-buffer.
5634 (xml-parse-dtd): Make parameter entity substitution work right.
5635 Use proper regexps for ELEMENT declarations (Bug#7172).
5636
5637 2012-06-30 Glenn Morris <rgm@gnu.org>
5638
5639 * comint.el (follow-comint-scroll-to-bottom): Fix declaration.
5640
5641 * net/secrets.el, net/tramp-gvfs.el, net/xesam.el, net/zeroconf.el:
5642 Remove outdated and unnecessary dbus declarations.
5643
5644 2012-06-30 Eli Zaretskii <eliz@gnu.org>
5645
5646 * emacs-lisp/timer.el (timer-until): Subtract results of
5647 float-time, instead of taking float-time of the result of
5648 time-subtract, since float-time signals an error for negative time
5649 arguments.
5650
5651 2012-06-30 Chong Yidong <cyd@gnu.org>
5652
5653 * xml.el (xml-*-re): Convert defvars into defconsts, and
5654 eval-and-compile them so eval-and-compile works on derivatives.
5655 (xml--entity-replacement-text): Use eval-and-comple.
5656
5657 2012-06-30 Michael Albinus <michael.albinus@gmx.de>
5658
5659 * vc/vc-git.el (vc-git-registered): Use cache property
5660 `git-registered'.
5661 (vc-git-mode-line-string): Call `vc-working-revision' instead of
5662 `vc-git-working-revision' in order to benefit from the cache.
5663 (vc-git-root): Use cache property `git-root'. (Bug#11757)
5664
5665 2012-06-30 Dmitry Gutov <dgutov@yandex.ru>
5666
5667 * vc/vc-hooks.el (vc-before-save): Clear cache if file has been
5668 removed (likely outside Emacs). (Bug#11757)
5669
5670 2012-06-30 Stefan Monnier <monnier@iro.umontreal.ca>
5671
5672 * emacs-lisp/cl-lib.el: Require macroexp.
5673
5674 2012-06-30 Chong Yidong <cyd@gnu.org>
5675
5676 * xml.el: Implement XML parameter entities.
5677 (xml-parameter-entity-alist): New variable.
5678 (xml-parse-region, xml-parse-fragment): Preserve previous values
5679 of xml-entity-alist and xml-parameter-entity-alist, so that
5680 repeated calls on different documents do not change them.
5681 (xml-parse-tag): Fix doctype regexp.
5682 (xml--entity-replacement-text): New function.
5683 (xml-parse-dtd): Use it. Don't handle system entities; doing that
5684 properly requires url retrieval which is unimplemented.
5685 (xml-escape-string): Doc fix.
5686
5687 2012-06-30 Stefan Monnier <monnier@iro.umontreal.ca>
5688
5689 * emacs-lisp/cl-lib.el (cl-pushnew): Use macroexp-let2.
5690
5691 2012-06-29 Dmitry Antipov <dmantipov@yandex.ru>
5692
5693 * fringe.el (fringe-mode): Doc fix.
5694
5695 2012-06-29 Michael Albinus <michael.albinus@gmx.de>
5696
5697 * net/ange-ftp.el (ange-ftp-get-passwd): Throw if `non-essential'
5698 is non-nil.
5699 (ange-ftp-ignore-errors-if-non-essential): New defmacro.
5700 (ange-ftp-file-name-all-completions): Use it. (Bug#11808)
5701
5702 2012-06-29 Andreas Schwab <schwab@linux-m68k.org>
5703
5704 * calendar/cal-dst.el (calendar-current-time-zone):
5705 Return calendar-current-time-zone-cache if non-nil.
5706
5707 2012-06-29 Masatake YAMATO <yamato@redhat.com>
5708
5709 * progmodes/which-func.el (which-func-format):
5710 Add mouse-face. (Bug#11698)
5711
5712 2012-06-29 Leo Liu <sdl.web@gmail.com>
5713
5714 * textmodes/enriched.el (enriched-next-annotation): Use eq (Bug#11528).
5715
5716 2012-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
5717
5718 * minibuffer.el (minibuffer-confirm-exit-commands):
5719 Add completion-at-point (bug#11725).
5720
5721 2012-06-29 Glenn Morris <rgm@gnu.org>
5722
5723 * progmodes/f90.el (f90-font-lock-keywords-2):
5724 Add some preprocessor elements. (Bug#10499)
5725
5726 2012-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
5727
5728 * progmodes/cperl-mode.el (cperl-update-syntaxification):
5729 Use syntax-propertize (bug#11739).
5730
5731 2012-06-28 Juanma Barranquero <lekktu@gmail.com>
5732
5733 * emacs-lisp/cl-lib.el (cl-pushnew): Don't capture X (bug#11811).
5734
5735 2012-06-28 Julien Danjou <julien@danjou.info>
5736
5737 * term.el (term-handle-colors-array): Use a set of new faces to
5738 color the terminal. Also uses :inverse-video property.
5739 (term-default-fg-color): Set to nil by default, deprecate in favor
5740 of `term-face'.
5741 (term-default-bg-color): Set to nil by default, deprecate in favor
5742 of `term-face'.
5743 (term-current-face): Use `term-face' by default.
5744 (term-bold-attribute): Variable deleted.
5745
5746 2012-06-28 Glenn Morris <rgm@gnu.org>
5747
5748 * simple.el (completion-list-mode-finish):
5749 Don't use toggle-read-only. (Since completion-list-mode has
5750 a special mode-class, it wasn't doing anything extra anyway.)
5751
5752 2012-06-28 Stefan Monnier <monnier@iro.umontreal.ca>
5753
5754 Make inlining of other-mode interpreted functions work (bug#11799).
5755 * emacs-lisp/bytecomp.el (byte-compile--refiy-function): New fun.
5756 (byte-compile): Use it to fix compilation of lexical-binding closures.
5757 * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Compile the
5758 function, if needed.
5759
5760 2012-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
5761
5762 * help-mode.el (help-make-xrefs): Don't just withstand
5763 cyclic-variable-indirection but any error in documentation-property.
5764
5765 * loadup.el (purify-flag): Pre-grow the hash-table to reduce the
5766 memory use.
5767 * bindings.el (bindings--define-key): New function.
5768 * vc/vc-hooks.el, replace.el, menu-bar.el, international/mule-cmds.el:
5769 * emacs-lisp/lisp-mode.el, buff-menu.el, bookmark.el:
5770 * bindings.el: Use it to purecopy define-key bindings.
5771
5772 * textmodes/rst.el (rst-adornment-faces-alist): Avoid copy-list.
5773
5774 * emacs-lisp/cl.el (flet): Mark obsolete.
5775 * emacs-lisp/cl-macs.el (cl-flet*): New macro.
5776 * vc/vc-rcs.el (vc-rcs-annotate-command, vc-rcs-parse):
5777 * progmodes/js.el (js-c-fill-paragraph):
5778 * progmodes/ebrowse.el (ebrowse-switch-member-buffer-to-sibling-class)
5779 (ebrowse-switch-member-buffer-to-derived-class):
5780 * play/5x5.el (5x5-solver): Use cl-flet.
5781
5782 * emacs-lisp/cl.el: Use lexical-binding. Fix flet (bug#11780).
5783 (cl--symbol-function): New macro.
5784 (cl--letf, cl--letf*): Use it.
5785
5786 * emacs-lisp/easy-mmode.el (easy-mmode-pretty-mode-name):
5787 Strip "toggle-" if any.
5788
5789 2012-06-27 Glenn Morris <rgm@gnu.org>
5790
5791 * info.el (Info-default-directory-list): Move here from paths.el.
5792 * paths.el: Remove file, which is now empty.
5793 * loadup.el: No longer load "paths".
5794
5795 * custom.el (custom-initialize-delay): Doc fix.
5796
5797 * eshell/em-alias.el, eshell/em-banner.el, eshell/em-basic.el:
5798 * eshell/em-cmpl.el, eshell/em-dirs.el, eshell/em-glob.el:
5799 * eshell/em-hist.el, eshell/em-ls.el, eshell/em-pred.el:
5800 * eshell/em-prompt.el, eshell/em-rebind.el, eshell/em-script.el:
5801 * eshell/em-smart.el, eshell/em-term.el, eshell/em-unix.el:
5802 * eshell/em-xtra.el: Replace eshell-defgroup with "(progn (defgroup".
5803 * eshell/eshell.el (eshell-defgroup): Remove alias.
5804
5805 2012-06-27 Chong Yidong <cyd@gnu.org>
5806
5807 * help.el (help-enable-auto-load): New variable.
5808
5809 * help-fns.el (help-fns--autoloaded-p): New function.
5810 (describe-function-1): Refer to a function as "autoloaded" if it
5811 was autoloaded at any time in the past. Perform autoloading if
5812 help-enable-auto-load is non-nil.
5813
5814 2012-06-26 Eli Zaretskii <eliz@gnu.org>
5815
5816 * makefile.w32-in (compile, compile-always): Depend on
5817 update-subdirs, not on subdirs.el. Otherwise, several different
5818 sub-targets of 'bootstrap' running in parallel could
5819 simultaneously write to subdirs.el, producing a garbled file.
5820
5821 2012-06-26 Sam Steingold <sds@gnu.org>
5822
5823 * files.el (file-name-base): New convenience function.
5824 * autoinsert.el, cus-dep.el, doc-view.el, image-dired.el:
5825 * woman.el, eshell/esh-cmd.el, progmodes/ada-xref.el:
5826 * progmodes/cc-defs.el, progmodes/cperl-mode.el:
5827 * progmodes/flymake.el, progmodes/gud.el, progmodes/idlwave.el:
5828 * textmodes/ispell.el, textmodes/reftex-ref.el:
5829 * textmodes/tex-mode.el: Use it.
5830 Did not touch cedet and org because they are maintained elsewhere.
5831
5832 2012-06-26 Martin Rudalics <rudalics@gmx.at>
5833
5834 * calendar/calendar.el (calendar-exit): Don't try to delete or
5835 iconify last frame. See:
5836 http://lists.gnu.org/archive/html/emacs-devel/2012-06/msg00372.html
5837
5838 2012-06-25 Jim Diamond <Jim.Diamond@AcadiaU.ca> (tiny change)
5839
5840 * server.el (server-process-filter): Remember dir in the
5841 process's `server-client-directory' properties.
5842
5843 2012-06-24 Chong Yidong <cyd@gnu.org>
5844
5845 * xml.el (xml-parse-tag): Correctly handle comment embedded in
5846 non-tag text.
5847
5848 2012-06-23 Juanma Barranquero <lekktu@gmail.com>
5849
5850 * makefile.w32-in (COMPILE_FIRST): Synch with changes in 2012-06-22T21:24:54Z!monnier@iro.umontreal.ca.
5851
5852 2012-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
5853
5854 * help-fns.el (describe-variable): Don't croak when doc is not found.
5855 * vc/pcvs.el (cvs-retrieve-revision): Avoid toggle-read-only.
5856 * menu-bar.el (menu-bar-line-wrapping-menu): Purecopy a tiny bit more.
5857 * emacs-lisp/syntax.el (syntax-ppss): Simplify with new `if' place.
5858 * emacs-lisp/smie.el (smie-next-sexp): CSE.
5859 * emacs-lisp/macroexp.el (macroexp-let2): Fix edebug spec and avoid
5860 ((lambda ..) ..).
5861 * emacs-lisp/eieio.el (eieio-oref, slot-value): Use simpler defsetf.
5862
5863 2012-06-23 Chong Yidong <cyd@gnu.org>
5864
5865 * info.el (Info-mouse-follow-link): Accept symbol values of
5866 link-args. Select window; suggested by Gerhard Kahl (Bug#11672).
5867 (Info-fontify-node): Use Info-link-keymap for all navigation
5868 buttons, with link-args property to perform the desired action.
5869 (Info-link-keymap): Doc fix.
5870 (Info-next-link-keymap, Info-prev-link-keymap)
5871 (Info-up-link-keymap): Delete now-unused keymaps.
5872
5873 2012-06-23 Chong Yidong <cyd@gnu.org>
5874
5875 * mouse.el (mouse-drag-track): Deactivate the mark before popping.
5876
5877 * progmodes/python.el (python-skeleton-define): Mark abbrevs as
5878 system abbrevs.
5879
5880 * ansi-color.el (ansi-color-apply-on-region): Doc fix.
5881
5882 2012-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
5883
5884 * emacs-lisp/cl-macs.el (cl--make-usage-args): Handle improper lists
5885 (bug#11719).
5886
5887 * minibuffer.el (completion--twq-try): Try to fail more gracefully when
5888 the requote function doesn't work properly (bug#11714).
5889
5890 2012-06-23 Glenn Morris <rgm@gnu.org>
5891
5892 * pcmpl-rpm.el (pcmpl-rpm-packages): Give status messages.
5893
5894 2012-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
5895
5896 Further GV/CL cleanups.
5897 * emacs-lisp/gv.el (gv-get): Autoload functions to find their
5898 gv-expander.
5899 (gv--defun-declaration): New function.
5900 (defun-declarations-alist): Use it.
5901 (gv-define-modify-macro, gv-pushnew!, gv-inc!, gv-dec!): Remove.
5902 (gv-place): Autoload.
5903 * emacs-lisp/cl.el (cl--dotimes, cl--dolist): Remember subr.el's
5904 original definition of dotimes and dolist.
5905 * emacs-lisp/cl-macs.el (cl-expr-access-order): Remove unused.
5906 (cl-dolist, cl-dotimes): Use `dolist' and `dotimes'.
5907 * emacs-lisp/cl-lib.el: Move gv handlers from cl-macs to here.
5908 (cl-fifth, cl-sixth, cl-seventh, cl-eighth)
5909 (cl-ninth, cl-tenth): Move gv handler to the function's definition.
5910 * emacs-lisp/cl-extra.el (cl-subseq, cl-get, cl-getf): Move gv handler
5911 to the function's definition.
5912 * Makefile.in (COMPILE_FIRST): Re-order to speed it up by about 50%.
5913 * window.el:
5914 * files.el:
5915 * faces.el:
5916 * env.el: Don't use CL.
5917
5918 2012-06-22 Paul Eggert <eggert@cs.ucla.edu>
5919
5920 Support higher-resolution time stamps (Bug#9000).
5921
5922 * calendar/time-date.el (with-decoded-time-value): New arg
5923 PICO-SYMBOL in VARLIST. It's optional, for backward compatibility.
5924 (encode-time-value): New optional arg PICO. New type 3.
5925 (time-to-seconds) [!float-time]: Support the new picoseconds
5926 component if it's used.
5927 (seconds-to-time, time-subtract, time-add):
5928 Support ps-resolution time stamps as well.
5929
5930 * emacs-lisp/timer.el (timer): New component psecs. All uses changed.
5931 (timerp): Timer vectors now have length 9, not 8.
5932 (timer--time): Support new-style (4-part) time stamps.
5933 (timer-next-integral-multiple-of-time): Time stamps now have
5934 picosecond resolution, so take a bit more care about rounding.
5935 (timer-relative-time, timer-inc-time): New optional arg psecs.
5936 (timer-set-time-with-usecs): Set psecs to 0.
5937 (timer--activate): Check psecs component, too.
5938
5939 * proced.el (proced-time-lessp): Support ps-resolution stamps.
5940
5941 2012-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
5942
5943 * icomplete.el (icomplete-minibuffer-setup, icomplete-completions):
5944 Move the non-essential binding to the post/pre-command-hook where it is
5945 more obviously correct.
5946
5947 * subr.el (read-passwd): Don't use a history at all.
5948 * savehist.el (savehist-save): Remove password saved accidentally
5949 because of the above bug.
5950
5951 2012-06-22 Bastien Guerry <bzg@gnu.org>
5952
5953 * files.el (toggle-read-only): Display a message telling whether
5954 the buffer is read-only or not (bug#11726).
5955
5956 2012-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
5957
5958 * emacs-lisp/gv.el: New file.
5959 * subr.el (push, pop): Extend to generalized variables.
5960 * loadup.el (macroexp): Unload if preloaded and uncompiled (bug#11657).
5961 * emacs-lisp/cl-lib.el (cl-pop, cl-push, cl--set-nthcdr): Remove.
5962 * emacs-lisp/cl-macs.el: Require gv. Use gv-define-setter,
5963 gv-define-simple-setter, and gv-define-expander.
5964 Remove setf-methods defined in gv. Rename cl-setf -> setf.
5965 (cl-setf, cl-do-pop, cl-get-setf-method): Remove.
5966 (cl-letf, cl-letf*, cl-define-modify-macro, cl-defsetf)
5967 (cl-define-setf-expander, cl-struct-setf-expander): Move to cl.el.
5968 (cl-remf, cl-shiftf, cl-rotatef, cl-callf, cl-callf2): Rewrite with
5969 gv-letplace.
5970 (cl-defstruct): Don't define setf-method any more.
5971 * emacs-lisp/cl.el (flet): Don't autoload.
5972 (cl--letf, letf, cl--letf*, letf*, cl--gv-adapt)
5973 (define-setf-expander, defsetf, define-modify-macro)
5974 (cl-struct-setf-expander): Move from cl-lib.el.
5975 * emacs-lisp/syntax.el:
5976 * emacs-lisp/ewoc.el:
5977 * emacs-lisp/smie.el:
5978 * emacs-lisp/cconv.el:
5979 * emacs-lisp/timer.el: Rename cl-setf -> setf, cl-push -> push.
5980 (timer--time): Use gv-define-simple-setter.
5981 * emacs-lisp/macroexp.el (macroexp-let2): Rename from macroexp-let²
5982 to avoid coding-system problems in subr.el. Adjust all users.
5983 (macroexp--maxsize, macroexp-small-p): New functions.
5984 * emacs-lisp/bytecomp.el (byte-compile-file): Don't use cl-letf.
5985 * scroll-bar.el (scroll-bar-mode):
5986 * simple.el (auto-fill-mode, overwrite-mode, binary-overwrite-mode)
5987 (normal-erase-is-backspace-mode): Don't use the `eq' place.
5988 * winner.el (winner-configuration, winner-make-point-alist)
5989 (winner-set-conf, winner-get-point, winner-set): Don't abuse letf.
5990 * files.el (locate-file-completion-table): Avoid list*.
5991
5992 2012-06-22 Chong Yidong <cyd@gnu.org>
5993
5994 * dired-aux.el (dired-do-create-files): Doc fix (Bug#11327).
5995 (dired-create-files): Doc fix (Bug#11329).
5996 (dired-do-copy): Doc fix (Bug#11334).
5997 (dired-mark-read-string): Doc fix (Bug#11553).
5998
5999 * dired.el (dired-recursive-copies, dired-recursive-deletes):
6000 Doc fix (Bug#11326).
6001 (dired-make-relative): Doc fix (Bug#11332). Remove unused arg.
6002 (dired-dwim-target): Doc fix.
6003
6004 * wdired.el (wdired-mode): Doc fix.
6005
6006 2012-06-22 Glenn Morris <rgm@gnu.org>
6007
6008 * pcmpl-rpm.el (pcmpl-rpm-cache): New option.
6009 (pcmpl-rpm-cache-stamp-file): New constant.
6010 (pcmpl-rpm-cache-time, pcmpl-rpm-packages): New variables.
6011 (pcmpl-rpm-packages): Optionally cache list of packages.
6012
6013 * pcmpl-rpm.el (pcmpl-rpm): New group.
6014 (pcmpl-rpm-query-options): New option.
6015 (pcmpl-rpm-packages): No need to inline it.
6016 Use pcmpl-rpm-query-options.
6017
6018 * calendar/calendar.el (calendar-in-read-only-buffer):
6019 Avoid some needless mode changes.
6020
6021 2012-06-21 Chong Yidong <cyd@gnu.org>
6022
6023 * desktop.el (desktop-read): Don't prompt if daemon (Bug#11674).
6024 (desktop-path): Remove . from the default value (Bug#10977).
6025 (desktop-read): Use user-emacs-directory if desktop-path is nil.
6026
6027 2012-06-20 Chong Yidong <cyd@gnu.org>
6028
6029 * term.el (term-send-raw-meta): Make C-M-<char> keys work (Bug#8172).
6030
6031 2012-06-20 David Röthlisberger <david@rothlis.net> (tiny change)
6032
6033 * ido.el (ido-switch-buffer, ido-find-file): Fix up doc of C-j
6034 (bug#11201).
6035
6036 2012-06-20 Chong Yidong <cyd@gnu.org>
6037
6038 * term.el (term-window-width): Handle the case of a missing right
6039 fringe (Bug#8837).
6040 (term-check-size): Use window-text-height (Bug#5445).
6041 (term-mode): Use define-derived-mode. Minor cleanups.
6042 Set font-lock-defaults (Bug#7692).
6043 (term-move-columns, term-insert-char, term-emulate-terminal)
6044 (term-erase-in-line, term-insert-spaces): Use font-lock-face.
6045
6046 2012-06-20 Michael Albinus <michael.albinus@gmx.de>
6047
6048 * net/ange-ftp.el (ange-ftp-get-passwd):
6049 Bind `enable-recursive-minibuffers'.
6050 (ange-ftp-get-process): Throw if `non-essential' is non-nil.
6051
6052 2012-06-19 David Röthlisberger <david@rothlis.net> (tiny change)
6053
6054 * ido.el (ido-find-file): Mention C-d binding in docstring (bug#11244).
6055
6056 2012-06-19 Glenn Morris <rgm@gnu.org>
6057
6058 * progmodes/python.el (python-mode): Derive from prog-mode.
6059
6060 2012-06-19 Kevin Gallagher <Kevin.Gallagher@boeing.com>
6061
6062 * emulation/edt.el (edt-default-menu-bar-update-buffers)
6063 (edt-user-menu-bar-update-buffers): New functions.
6064 (edt-default-emulation-setup, edt-user-emulation-setup): Use them.
6065
6066 2012-06-19 Chong Yidong <cyd@gnu.org>
6067
6068 * subr.el (with-selected-window): Preserve the selected window's
6069 terminal's top-frame (Bug#4702).
6070
6071 * window.el (save-selected-window): Likewise.
6072
6073 2012-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
6074
6075 * progmodes/python.el (python-rx-constituents): Move backquote.
6076 (python-skeleton-define, python-define-auxiliary-skeleton):
6077 Use `declare'.
6078
6079 2012-06-18 Michael Albinus <michael.albinus@gmx.de>
6080
6081 * minibuffer.el (read-file-name-default): Revert the patch from
6082 2012-06-17.
6083
6084 2012-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
6085
6086 * emacs-lisp/pcase.el (pcase--expand): Warn for unused pattern.
6087 (pcase--u1, pcase--q1): Don't use apply-partially.
6088
6089 2012-06-18 Glenn Morris <rgm@gnu.org>
6090
6091 * progmodes/python.el (python-proc, python-buffer)
6092 (python-send-receive, python-send-string): Fix obsolete versions.
6093
6094 2012-06-18 Martin Rudalics <rudalics@gmx.at>
6095
6096 * window.el (special-display-p): Completely remove stringp
6097 check. Suggested by Andreas Schwab <schwab@linux-m68k.org>.
6098
6099 2012-06-17 Michael Albinus <michael.albinus@gmx.de>
6100
6101 * minibuffer.el (read-file-name-default): Bind `non-essential' to `t'.
6102
6103 * net/tramp.el (tramp-file-name-handler): Catch 'non-essential.
6104
6105 * net/ange-ftp.el (ange-ftp-gwp-start, ange-ftp-start-process):
6106 * net/tramp-sh.el (tramp-maybe-open-connection):
6107 Throw if `non-essential' is non-nil.
6108
6109 2012-06-17 Martin Rudalics <rudalics@gmx.at>
6110
6111 * window.el (special-display-p): Signal an error if BUFFER-NAME
6112 is not a string (Bug#11713).
6113
6114 2012-06-17 Paul Eggert <eggert@cs.ucla.edu>
6115
6116 * progmodes/python.el (python-info-beginning-of-backslash):
6117 Rename from python-info-beginning-of-backlash, as a spelling fix.
6118
6119 2012-06-17 Chong Yidong <cyd@gnu.org>
6120
6121 * term.el (term-emulate-terminal): If term-check-size is called,
6122 move point to the process mark without resetting point (Bug#4635).
6123
6124 2012-06-17 Glenn Morris <rgm@gnu.org>
6125
6126 * international/mule-cmds.el (mule-menu-keymap)
6127 (set-language-environment, set-locale-environment): Doc tweaks.
6128
6129 2012-06-16 Aurelien Aptel <aurelien.aptel@gmail.com>
6130
6131 * cus-face.el (custom-face-attributes): Add wave-style underline
6132 attribute.
6133 * faces.el (set-face-attribute): Update docstring to describe
6134 wave-style underline attribute.
6135
6136 2012-06-16 Chong Yidong <cyd@gnu.org>
6137
6138 * term/xterm.el (terminal-init-xterm): Discard input before
6139 querying background mode (Bug#10959).
6140
6141 2012-06-16 Stefan Merten <smerten@oekonux.de>
6142
6143 * textmodes/rst.el: Added and corrected some comments.
6144 (rst-re-alist-def): Improve symbol syntax.
6145 (rst-mode-syntax-table): Correct syntax entries.
6146 (rst-cvs-header, rst-svn-rev, rst-svn-timestamp)
6147 (rst-official-version, rst-official-cvs-rev): Update version
6148 information.
6149
6150 2012-06-15 Juanma Barranquero <lekktu@gmail.com>
6151
6152 * makefile.w32-in (COMPILE_FIRST): Synch with makefile.in changes
6153 in 2008-06-22T13:57:28Z!monnier@iro.umontreal.ca.
6154
6155 2012-06-15 Fabián Ezequiel Gallina <fgallina@cuca>
6156
6157 * progmodes/python.el: New python.el merge.
6158 (python-guess-indent): Obsolete var.
6159 (python-indent-guess-indent-offset): New defcustom.
6160 (python-indent): Obsolete var.
6161 (python-indent-offset): New defcustom.
6162 (python-python-command, python-jython-command): Delete var.
6163 (python-shell-interpreter): New defcustom.
6164 (python-pdbtrack-do-tracking-p): Delete var.
6165 (python-pdbtrack-activate): New defcustom.
6166 (python-use-skeletons): Obsolete var.
6167 (python-skeleton-autoinsert): New defcustom.
6168 (inferior-python-filter-regexp, python-continuation-offset)
6169 (python-honour-comment-indentation, python-indent-string-contents)
6170 (python-jython-packages, python-mode-hook)
6171 (python-pdbtrack-minor-mode-string, python-remove-cwd-from-path)
6172 (python-shell-prompt-alist)
6173 (python-source-modes): Delete defcustoms.
6174 (python-check-buffer-name, python-eldoc-setup-code)
6175 (python-eldoc-string-code, python-ffap-setup-code)
6176 (python-ffap-string-code, python-fill-comment-function)
6177 (python-fill-decorator-function, python-fill-paren-function)
6178 (python-fill-string-function, python-imenu-include-defun-type)
6179 (python-imenu-make-tree, python-imenu-subtree-root-label)
6180 (python-pdbtrack-stacktrace-info-regexp, python-shell-buffer-name)
6181 (python-shell-compilation-regexp-alist)
6182 (python-shell-completion-module-string-code)
6183 (python-shell-completion-pdb-string-code)
6184 (python-shell-completion-setup-code)
6185 (python-shell-completion-string-code)
6186 (python-shell-enable-font-lock, python-shell-exec-path)
6187 (python-shell-extra-pythonpaths)
6188 (python-shell-internal-buffer-name, python-shell-interpreter-args)
6189 (python-shell-process-environment)
6190 (python-shell-prompt-block-regexp)
6191 (python-shell-prompt-output-regexp)
6192 (python-shell-prompt-pdb-regexp, python-shell-prompt-regexp)
6193 (python-shell-send-setup-max-wait, python-shell-setup-codes)
6194 (python-shell-virtualenv-path): New defcustoms.
6195 (brm-menu, eldoc-documentation-function, inferior-python-mode-map)
6196 (inferior-python-mode-syntax-table, python--prompt-regexp)
6197 (python-buffer, python-command python-python-command)
6198 (python-default-template, python-imports, python-indent-index)
6199 (python-indent-list, python-indent-list-length)
6200 (python-mode-running, python-pdbtrack-is-tracking-p)
6201 (python-preoutput-continuation, python-preoutput-leftover)
6202 (python-preoutput-result, python-preoutput-skip-next-prompt)
6203 (python-prev-dir/file, python-recursing)
6204 (python-saved-check-command, python-version-checked)
6205 (python-which-func-length-limit)
6206 (view-return-to-alist): Delete vars.
6207 (python-check-custom-command, python-dotty-syntax-table)
6208 (python-imenu-index-alist, python-indent-current-level)
6209 (python-indent-dedenters, python-indent-levels)
6210 (python-nav-beginning-of-defun-regexp)
6211 (python-nav-list-defun-positions-cache)
6212 (python-pdbtrack-buffers-to-kill, python-pdbtrack-tracked-buffer)
6213 (python-shell-internal-buffer)
6214 (python-skeleton-available): New vars.
6215 (def-python-skeleton): Delete macro.
6216 (python-skeleton-define): New macro.
6217 (python-define-auxiliary-skeleton, python-rx): New macros.
6218 (python-insert-class): Delete command.
6219 (python-skeleton-class): New command.
6220 (python-insert-def): Delete command.
6221 (python-skeleton-def): New command.
6222 (python-insert-for): Delete command.
6223 (python-skeleton-for): New command.
6224 (python-insert-if): Delete command.
6225 (python-skeleton-if): New command.
6226 (python-insert-try/except, python-insert-try/finally): Delete commands.
6227 (python-skeleton-try): New command.
6228 (python-insert-while): Delete command.
6229 (python-skeleton-while): New command.
6230 (python-backspace): Delete command.
6231 (python-indent-dedent-line-backspace): New command.
6232 (python-electric-colon): Delete command.
6233 (python-indent-electric-colon): New command.
6234 (python-guess-indent): Delete command.
6235 (python-indent-guess-indent-offset): New command.
6236 (python-shift-left): Delete command.
6237 (python-indent-shift-left): New command.
6238 (python-shift-right): Delete command.
6239 (python-indent-shift-right): New command.
6240 (python-find-function): Delete command.
6241 (python-nav-jump-to-defun): New command.
6242 (python-next-statement): Delete command.
6243 (python-nav-forward-sentence): New command.
6244 (python-previous-statement): Delete command.
6245 (python-nav-backward-sentence): New command.
6246 (python-fill-paragraph): Delete command.
6247 (python-fill-paragraph-function): New command.
6248 (python-send-buffer): Delete command.
6249 (python-shell-send-buffer): New command.
6250 (python-send-defun): Delete command.
6251 (python-shell-send-defun): New command.
6252 (python-send-region, python-send-region-and-go): Delete commands.
6253 (python-shell-send-region)
6254 (python-shell-switch-to-shell): New commands.
6255 (python-send-string): Delete command.
6256 (python-shell-send-string): New command.
6257 (python-switch-to-python): Delete command.
6258 (python-shell-switch-to-shell): New command.
6259 (python-describe-symbol): Delete command.
6260 (python-eldoc-at-point): New command.
6261 (python--set-prompt-regexp, python-args-to-list)
6262 (python-after-info-look, python-check-version)
6263 (python-check-comint-prompt, python-find-imports)
6264 (python-execute-file, turn-off-pdbtrack, turn-on-pdbtrack)
6265 (python-unload-function, python-expand-template)
6266 (python-maybe-jython, python-preoutput-filter)
6267 (python-pdbtrack-get-source-buffer)
6268 (python-pdbtrack-grub-for-buffer, python-pdbtrack-overlay-arrow)
6269 (python-pdbtrack-toggle-stack-tracking)
6270 (python-pdbtrack-track-stack-file, python-initial-text)
6271 (python-first-word, python-comment-line-p, python-send-command)
6272 (python-setup-brm, python-sentinel, python-set-proc)
6273 (python-skip-out, python-input-filter, python-outdent-p)
6274 (python-outline-level, python-backslash-continuation-line-p)
6275 (python-end-of-block, python-end-of-statement, python-mark-block)
6276 (python-beginning-of-block, python-beginning-of-statement)
6277 (python-blank-line-p, python-beginning-of-string)
6278 (python-open-block-statement-p): Delete functions.
6279 (python-indent-line, python-indent-line-1): Delete functions.
6280 (python-indent-line): New function.
6281 (python-indentation-levels): Delete function.
6282 (python-indent-calculate-levels): New function.
6283 (python-proc): Delete function.
6284 (python-shell-get-process): New function.
6285 (python-send-receive): Delete function.
6286 (python-shell-send-string-no-output): New function.
6287 (python-module-path): Delete function.
6288 (python-ffap-module-path): New function.
6289 (python-completion-at-point)
6290 (python-symbol-completions): Delete functions.
6291 (python-completion-complete-at-point): New function.
6292 (python-load-file): Delete function.
6293 (python-shell-send-file): New function.
6294 (python-calculate-indentation): Delete function.
6295 (python-indent-calculate-indentation): New function.
6296 (python-skip-comments/blanks): Delete function.
6297 (python-util-forward-comment): New function.
6298 (python-continuation-line-p): Delete function.
6299 (python-info-continuation-line-p): New function.
6300 (python-which-func, python-current-defun): Delete function.
6301 (python-info-current-defun): New function.
6302 (python-beginning-of-defun): Delete function.
6303 (python-nav-beginning-of-defun): New function.
6304 (python-close-block-statement-p)
6305 (python-block-end-p): Delete function.
6306 (python-info-closing-block): New function.
6307 (python-comint-output-filter-function)
6308 (python-eldoc--get-doc-at-point, python-end-of-defun-function)
6309 (python-fill-comment, python-fill-decorator, python-fill-paren)
6310 (python-fill-string, python-imenu-make-element-tree)
6311 (python-imenu-make-tree, python-imenu-tree-assoc)
6312 (python-indent-context, python-indent-dedent-line)
6313 (python-indent-line-function)
6314 (python-indent-post-self-insert-function)
6315 (python-indent-toggle-levels)
6316 (python-info-assignment-continuation-line-p)
6317 (python-info-beginning-of-backlash)
6318 (python-info-block-continuation-line-p)
6319 (python-info-closing-block-message)
6320 (python-info-line-ends-backslash-p)
6321 (python-info-looking-at-beginning-of-defun)
6322 (python-info-ppss-context, python-info-ppss-context-type)
6323 (python-nav-list-defun-positions, python-nav-read-defun)
6324 (python-nav-sentence-end, python-nav-sentence-start)
6325 (python-pdbtrack-comint-output-filter-function)
6326 (python-pdbtrack-set-tracked-buffer)
6327 (python-shell-calculate-exec-path)
6328 (python-shell-calculate-process-environment)
6329 (python-shell-completion--do-completion-at-point)
6330 (python-shell-completion--get-completions)
6331 (python-shell-completion-complete-at-point)
6332 (python-shell-completion-complete-or-indent)
6333 (python-shell-get-or-create-process)
6334 (python-shell-get-process-name)
6335 (python-shell-internal-get-or-create-process)
6336 (python-shell-internal-get-process-name)
6337 (python-shell-internal-send-string, python-shell-make-comint)
6338 (python-shell-parse-command, python-shell-send-setup-code)
6339 (python-skeleton-add-menu-items)
6340 (python-util-clone-local-variables, python-util-position)
6341 (run-python-internal, python-indentation-levels)
6342 (python-nav-beginning-of-defun)
6343 (python-completion-complete-at-point): New functions.
6344 (run-python): Change arguments. New API requirements.
6345
6346 2012-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
6347
6348 * emacs-lisp/cl-lib.el (cl--defsubst-expand): Autoload inliner
6349 (bug#11649).
6350
6351 * emacs-lisp/macroexp.el (macroexp--compiler-macro): New function.
6352 (macroexp--expand-all): Use it.
6353
6354 * emacs-lisp/cl-macs.el (cl--transform-function-property): Remove.
6355 (cl-define-setf-expander, cl-deftype, cl-define-compiler-macro):
6356 Use `cl-function' instead.
6357
6358 2012-06-14 Juanma Barranquero <lekktu@gmail.com>
6359
6360 * makefile.w32-in (COMPILE_FIRST): Remove subr.el.
6361 Suggested by Stefan Monnier while discussing bug#11657.
6362
6363 2012-06-14 Sam Steingold <sds@gnu.org>
6364
6365 * files.el (abort-if-file-too-large): Use `file-size-human-readable'.
6366
6367 2012-06-14 Andreas Schwab <schwab@linux-m68k.org>
6368
6369 * play/doctor.el (doctor-doc): Remove parameter and use
6370 doctor-sent instead of sent.
6371 (doctor-read-print): Use doctor-sent instead of sent. (Bug#11708)
6372
6373 2012-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
6374
6375 * files.el: Require cl-lib.
6376 (file-name-non-special): Replace case -> cl-case.
6377
6378 * emacs-lisp/cl-macs.el (cl-defstruct): Don't add print-func.
6379
6380 * emacs-lisp/edebug.el (edebug-read-function): Remove old incorrect
6381 mapping from #' to function*.
6382
6383 2012-06-13 Chong Yidong <cyd@gnu.org>
6384
6385 * mouse.el (mouse-drag-track): Do not set the mark if the user
6386 releases the mouse without selecting anything (Bug#11588).
6387
6388 2012-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
6389
6390 * textmodes/tex-mode.el (latex-indent): Recognize tex-verbatim at EOB
6391 as well (bug#11646).
6392
6393 * loadup.el: Count byte-code functions as well.
6394
6395 * emacs-lisp/byte-opt.el (featurep): Move compiler-macro...
6396 * emacs-lisp/bytecomp.el (featurep): ...here (bug#11692).
6397
6398 * emacs-lisp/autoload.el (make-autoload): Accept nil doc-string-elt
6399 (bug#11649). Add cl-defun and cl-defmacro.
6400
6401 2012-06-13 Drew Adams <drew.adams@oracle.com>
6402
6403 * help-mode.el (help-bookmark-make-record, help-bookmark-jump):
6404 Fix last change.
6405
6406 2012-06-13 Michael Albinus <michael.albinus@gmx.de>
6407
6408 * net/dbus.el (dbus-call-method): Use timeout for `read-event'.
6409 Otherwise, it blocks in batch mode.
6410
6411 2012-06-13 Juanma Barranquero <lekktu@gmail.com>
6412
6413 * help-mode.el (bookmark-make-record-default): Declare.
6414
6415 2012-06-13 Chong Yidong <cyd@gnu.org>
6416
6417 * emacs-lisp/package.el (list-packages): Compute a list of
6418 packages that are newly-available since the last list-packages
6419 invocation.
6420 (package-menu--new-package-list): New var.
6421 (package-menu--generate, package-menu--print-info)
6422 (package-menu--status-predicate, package-menu-mark-install):
6423 Handle new status label "new".
6424
6425 2012-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
6426
6427 * emacs-lisp/cl-macs.el (cl-remf): Fix error in recent
6428 conversion to backquotes.
6429
6430 2012-06-12 Chong Yidong <cyd@gnu.org>
6431
6432 * emacs-lisp/edebug.el (edebug-inhibit-emacs-lisp-mode-bindings):
6433 Rename from gud-inhibit-global-bindings.
6434
6435 * emacs-lisp/eieio.el (eieio-pre-method-execution-hooks): Doc fix.
6436
6437 * nxml/nxml-glyph.el (nxml-glyph-set-functions): Rename abnormal
6438 hook from nxml-glyph-set-hook.
6439
6440 * progmodes/cwarn.el (cwarn-mode): Remove redundant variable
6441 declaration.
6442
6443 * progmodes/pascal.el (pascal-toggle-completions): Doc fix.
6444
6445 * textmodes/bibtex.el (bibtex-string-file-path, bibtex-file-path):
6446 Convert to defcustom.
6447
6448 2012-06-12 Drew Adams <drew.adams@oracle.com>
6449
6450 * help-mode.el (help-bookmark-make-record, help-bookmark-jump):
6451 New functions.
6452 (help-mode): Use them.
6453
6454 2012-06-11 Glenn Morris <rgm@gnu.org>
6455
6456 * progmodes/fortran.el (fortran-font-lock-keywords-3):
6457 Use preprocessor face for directives.
6458 (fortran-directive-re): Doc fix.
6459
6460 2012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
6461
6462 * emacs-lisp/cl-macs.el (cl-parse-loop-clause): Fix error in recent
6463 conversion to backquotes (bug#11652).
6464
6465 Fix compiler-expansion of CL's cXXr functions (bug#11673).
6466 * emacs-lisp/cl-lib.el (cl--defalias): New function.
6467 (cl-values, cl-values-list, cl-copy-seq, cl-svref, cl-first)
6468 (cl-second, cl-rest, cl-endp, cl-third, cl-fourth): Use it.
6469 (cl-plusp, cl-minusp, cl-fifth, cl-sixth, cl-seventh, cl-eighth)
6470 (cl-ninth, cl-tenth): Mark them as inlinable.
6471 (cl-caaar, cl-caadr, cl-cadar, cl-caddr, cl-cdaar, cl-cdadr)
6472 (cl-cddar, cl-cdddr, cl-caaaar, cl-caaadr, cl-caadar, cl-caaddr)
6473 (cl-cadaar, cl-cadadr, cl-caddar, cl-cadddr, cl-cdaaar, cl-cdaadr)
6474 (cl-cdadar, cl-cdaddr, cl-cddaar, cl-cddadr, cl-cdddar, cl-cddddr):
6475 Add a compiler-macro declaration to use cl--compiler-macro-cXXr.
6476 (cl-list*, cl-adjoin): Don't put an autoload manually.
6477 * emacs-lisp/cl-macs.el (cl--compiler-macro-adjoin)
6478 (cl--compiler-macro-list*): Add autoload cookie.
6479 (cl--compiler-macro-cXXr): New function.
6480
6481 * help-fns.el (help-fns--compiler-macro): New function extracted from
6482 describe-function-1; follow aliases and use `compiler-macro' property.
6483 (describe-function-1): Use it.
6484
6485 2012-06-11 Chong Yidong <cyd@gnu.org>
6486
6487 * startup.el (fancy-splash-head): Use splash.svg even if librsvg
6488 is uninstalled, if imagemagick is installed.
6489
6490 2012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
6491
6492 * emacs-lisp/cl-lib.el: Use lexical-binding.
6493 (cl-map-extents, cl-maclisp-member): Remove.
6494 (cl--set-elt, cl--set-nthcdr, cl--set-buffer-substring)
6495 (cl--set-substring, cl--block-wrapper, cl--block-throw)
6496 (cl--compiling-file, cl--mapcar-many, cl--do-subst): Use "cl--" prefix.
6497 * emacs-lisp/cl-extra.el: Use lexical-binding.
6498 (cl--mapcar-many, cl--map-keymap-recursively, cl--map-intervals)
6499 (cl--map-overlays, cl--set-frame-visible-p, cl--progv-save)
6500 (cl--progv-before, cl--progv-after, cl--finite-do, cl--set-getf)
6501 (cl--do-remf, cl--do-prettyprint): Use "cl--" prefix.
6502 * emacs-lisp/cl-seq.el: Use lexical-binding.
6503 (cl--parsing-keywords, cl--check-key, cl--check-test-nokey)
6504 (cl--check-test, cl--check-match): Use "cl--" prefix and backquotes.
6505 (cl--alist, cl--sublis-rec, cl--nsublis-rec, cl--tree-equal-rec):
6506 * emacs-lisp/cl-macs.el (cl--lambda-list-keywords): Use "cl--" prefix.
6507 * edmacro.el (edmacro-mismatch): Simplify to remove dependence on
6508 CL's internals.
6509
6510 2012-06-11 Michael Albinus <michael.albinus@gmx.de>
6511
6512 Sync with Tramp 2.2.6-pre.
6513
6514 * net/tramp-cache.el (tramp-dump-connection-properties): Let-bind
6515 `print-length' and `print-level' to nil, in order to avoid
6516 truncation. Reported by Christopher Schmidt
6517 <christopher@ristopher.com>.
6518
6519 * net/tramp-cmds.el (tramp-cleanup-connection): Delete also process.
6520
6521 * net/tramp-compat.el (tramp-compat-condition-case-unless-debug):
6522 New defmacro.
6523 (tramp-compat-copy-directory): Add optional argument
6524 COPY-CONTENTS. It is not handled yet.
6525
6526 * net/tramp-ftp.el (tramp-disable-ange-ftp): Fix docstring.
6527 (tramp-ftp-file-name-p): Simplify.
6528
6529 * net/tramp-gvfs.el (tramp-gvfs-handle-expand-file-name):
6530 * net/tramp-gw.el (tramp-gw-open-connection): Add hop to
6531 connection vector.
6532
6533 * net/tramp-sh.el (tramp-copy-size-limit): Fix docstring.
6534 (tramp-methods): Do not use `tramp-password-end-of-line'.
6535 (tramp-completion-function-alist-putty): Handle UNIX case.
6536 (tramp-remote-path): Add "/opt/bin", "/opt/sbin" and "/opt/local/bin".
6537 (tramp-do-file-attributes-with-stat)
6538 (tramp-do-directory-files-and-attributes-with-stat) Return uid and
6539 gid as real numbers. They could run out of integer range on cygwin.
6540 (tramp-do-copy-or-rename-file-out-of-band): Better trace format.
6541 (tramp-sh-handle-expand-file-name): Handle hops.
6542 (tramp-open-connection-setup-interactive-shell):
6543 Use `tramp-cleanup'. Move check for busyboxes ...
6544 (tramp-find-shell): ... here. Simplify implementation.
6545 Set "remote-shell" property also for alternative shells.
6546 (tramp-remote-coding-commands): Check "test -c /dev/stdout".
6547 If failing, a regular file would be written otherwise.
6548 Reported by Dmitry Kurochkin <dmitry.kurochkin@gmail.com>.
6549 (tramp-find-inline-encoding): Cache the coding commands in the
6550 process cache. Apply test command on the remote side, if defined.
6551 (tramp-find-inline-compress): Cache the compress commands in the
6552 process cache.
6553 (tramp-compute-multi-hops): Save `tramp-default-proxies-alist'
6554 when requested. Handle hops.
6555 (tramp-current-connection): New defvar.
6556 (tramp-maybe-open-connection): Use `tramp-cleanup'.
6557 Throw `suppress', if there was a failed connection shortly before.
6558 Handle user interrupt. (Bug#10187)
6559 (tramp-get-inline-compress, tramp-get-inline-coding):
6560 Read connection properties from the process cache.
6561
6562 * net/tramp-smb.el (tramp-smb-server-version)
6563 (tramp-smb-wrong-passwd-regexp, tramp-smb-actions-with-tar):
6564 New defconsts.
6565 (tramp-smb-prompt): Extend for powershell prompt.
6566 (tramp-smb-file-name-handler-alist): Add handlers for
6567 `process-file', `shell-command' and `start-file-process'.
6568 (tramp-smb-winexe-program, tramp-smb-winexe-shell-command)
6569 (tramp-smb-winexe-shell-command-switch): New defcustoms.
6570 (tramp-smb-file-name-p): Simplify.
6571 (tramp-smb-action-with-tar, tramp-smb-handle-process-file)
6572 (tramp-smb-kill-winexe-function, tramp-smb-call-winexe)
6573 (tramp-smb-shell-quote-argument): New defuns.
6574 (tramp-smb-handle-copy-directory): Add COPY-CONTENTS argument.
6575 Implement using "tar". By this, time-stamps are preserved.
6576 (tramp-smb-handle-copy-file): Handle also the case of directories.
6577 (tramp-smb-do-file-attributes-with-stat)
6578 (tramp-smb-get-file-entries, tramp-smb-get-cifs-capabilities):
6579 Use `tramp-get-connection-buffer').
6580 (tramp-smb-handle-rename-file): Use "rename", when source and
6581 target are on the same share.
6582 (tramp-smb-maybe-open-connection): Handle wrong passwords.
6583 Use `tramp-smb-server-version'.
6584 (tramp-smb-wait-for-output): Remove prompt.
6585
6586 * net/tramp.el (top): Require 'cl.
6587 (tramp-methods, tramp-rsh-end-of-line):
6588 Remove `tramp-password-end-of-line' from docstring.
6589 (tramp-save-ad-hoc-proxies): New defcustom.
6590 (tramp-completion-function-alist): Adapt docstring.
6591 (tramp-default-password-end-of-line): Remove defcustom.
6592 (tramp-shell-prompt-pattern): Allow "[]" style prompts. (Bug#11065)
6593 (tramp-user-regexp, tramp-file-name-regexp-unified)
6594 (tramp-file-name-regexp-url): Extend regexp by hop separator.
6595 (tramp-postfix-hop-format, tramp-postfix-hop-regexp)
6596 (tramp-remote-file-name-spec-regexp): New defconst.
6597 (tramp-file-name-structure): Extend structure for hops.
6598 (tramp-get-method-parameter): Move up.
6599 (tramp-file-name-p, tramp-dissect-file-name)
6600 (with-parsed-tramp-file-name): Handle hops.
6601 (tramp-file-name-hop): New defun.
6602 (tramp-make-tramp-file-name): New optional arg HOP.
6603 (tramp-message-show-progress-reporter-message): New defvar.
6604 (tramp-with-progress-reporter): Use it. We cannot use
6605 `tramp-message-show-message' here, because this suppresses also
6606 error buffers.
6607 (tramp-error-with-buffer): Suppress buffer view, if
6608 `tramp-message-show-message' is nil.
6609 Use `tramp-get-connection-buffer'.
6610 (tramp-cleanup): New defun.
6611 (tramp-rfn-eshadow-update-overlay): Let-bind `non-essential' to `t'.
6612 (tramp-file-name-handler): If `debug-on-error' is set, propagate
6613 an error unchanged.
6614 (tramp-completion-handle-file-name-all-completions): Handle hops.
6615 Fix an error when called from ido.
6616 (tramp-completion-dissect-file-name): Use better local variable
6617 name. Add hop to the vector.
6618 (tramp-handle-insert-file-contents): Use progress-reporter for the
6619 whole scenario.
6620 (tramp-action-password): Let-bind `enable-recursive-minibuffers'
6621 to `t'.
6622 (tramp-check-for-regexp): Simplify search.
6623 (tramp-enter-password): Remove it. Move implementation ...
6624 (tramp-action-password): ... here.
6625 (tramp-mode-string-to-int, tramp-local-host-p)
6626 (tramp-make-tramp-temp-file, tramp-read-passwd)
6627 (tramp-clear-passwd, tramp-time-less-p, tramp-time-diff):
6628 Set tramp-autoload cookie.
6629
6630 * net/trampver.el: Update release number.
6631
6632 2012-06-11 Thierry Volpiatto <thierry.volpiatto@gmail.com>
6633 Michael Albinus <michael.albinus@gmx.de>
6634
6635 * net/tramp.el (tramp-set-completion-function): Fix docstring.
6636 (tramp-parse-group, tramp-parse-file)
6637 (tramp-parse-shostkeys-sknownhosts): New defuns.
6638 (tramp-parse-rhosts, tramp-parse-rhosts-group, tramp-parse-shosts)
6639 (tramp-parse-shosts-group, tramp-parse-sconfig)
6640 (tramp-parse-sconfig-group, tramp-parse-shostkeys)
6641 (tramp-parse-sknownhosts, tramp-parse-hosts)
6642 (tramp-parse-hosts-group, tramp-parse-passwd, tramp-parse-netrc):
6643 Use them.
6644 (tramp-parse-passwd-group, tramp-parse-netrc-group)
6645 (tramp-parse-putty-group): Don't narrow.
6646 (tramp-parse-putty): Make a loop.
6647 (tramp-file-name-handler): Catch the `suppress' signal.
6648
6649 2012-06-11 Chong Yidong <cyd@gnu.org>
6650
6651 * image.el (imagemagick-register-types): Put the ImageMagick entry
6652 at the end of image-type-file-name-regexps.
6653
6654 2012-06-11 Johan Bockgård <bojohan@gnu.org>
6655
6656 * emacs-lisp/pcase.el (pcase-UPAT, pcase-QPAT): New edebug specs.
6657 (pcase, pcase-let*, pcase-dolist): Use them.
6658
6659 2012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
6660
6661 * emacs-lisp/pcase.el (pcase--let*): New function.
6662 (pcase-let*): Use it. Use pcase--memoize to avoid repeated expansions.
6663 (pcase--expand): Use macroexp-let².
6664
6665 2012-06-10 Stefan Monnier <monnier@iro.umontreal.ca>
6666
6667 * emacs-lisp/timer.el, emacs-lisp/syntax.el, emacs-lisp/smie.el:
6668 * emacs-lisp/ewoc.el, emacs-lisp/cconv.el, emacs-lisp/bytecomp.el:
6669 * emacs-lisp/byte-opt.el, emacs-lisp/autoload.el: Convert to cl-lib.
6670 * emacs-lisp/easymenu.el, emacs-lisp/easy-mmode.el:
6671 * emacs-lisp/derived.el: Use pcase instead of `cl'.
6672 * emacs-lisp/cl-lib.el: Get rid of special cl-macs auto load.
6673
6674 2012-06-10 Glenn Morris <rgm@gnu.org>
6675
6676 * mail/rmail.el (rmail-yank-current-message): Leave point at
6677 correct position. (Bug#11660)
6678
6679 2012-06-10 Chong Yidong <cyd@gnu.org>
6680
6681 * allout-widgets.el: Fix code header.
6682
6683 2012-06-10 Chong Yidong <cyd@gnu.org>
6684
6685 * cus-edit.el (customize-changed-options-previous-release):
6686 Bump to 24.1.
6687
6688 2012-06-09 Andreas Schwab <schwab@linux-m68k.org>
6689
6690 * Makefile.in (BIG_STACK_DEPTH): Enlarge to 2200.
6691
6692 2012-06-09 Chong Yidong <cyd@gnu.org>
6693
6694 * ebuff-menu.el (electric-buffer-list): Preserve header line.
6695
6696 2012-06-09 Martin Rudalics <rudalics@gmx.at>
6697
6698 * window.el (special-display-popup-frame): Don't use
6699 window--display-buffer (Bug#11651).
6700
6701 2012-06-09 Eli Zaretskii <eliz@gnu.org>
6702
6703 Fix parallel builds: make sure loaddefs.el is not being written
6704 while Lisp files are compiled.
6705 (compile): Don't depend on 'mh-autoloads'.
6706 (compile-CMD, compile-SH): Depend on 'autoloads'.
6707 (bootstrap): Don't depend on 'autoloads' and 'mh-autoloads'.
6708
6709 * makefile.w32-in (BIG_STACK_DEPTH): Enlarge to 2200. (Bug#11649)
6710
6711 2012-06-09 Chong Yidong <cyd@gnu.org>
6712
6713 * face-remap.el (face-remap-add-relative, face-remap-set-base)
6714 (buffer-face-set, buffer-face-toggle, buffer-face-mode-invoke):
6715 Doc fixes (Bug#11225).
6716
6717 2012-06-09 Stefan Monnier <monnier@iro.umontreal.ca>
6718
6719 * emacs-lisp/macroexp.el (macroexp--expand-all): Only autoload
6720 a function if there's a clear indication that it has a compiler-macro.
6721 * emacs-lisp/byte-run.el (defun-declarations-alist, defmacro, defun)
6722 (macro-declarations-alist): Add arglist to declaration functions.
6723 (defun-declarations-alist): Add `obsolete' and `compiler-macro'.
6724 * emacs-lisp/cl-seq.el (cl-member, cl-assoc):
6725 * emacs-lisp/cl-lib.el (cl-list*, cl-adjoin):
6726 * emacs-lisp/cl-extra.el (cl-get): Use the new `declare' statement.
6727 Also add autoload to find the compiler macro.
6728 * emacs-lisp/cl-macs.el (eql) [compiler-macro]: Remove.
6729 (cl--compiler-macro-member, cl--compiler-macro-assoc)
6730 (cl--compiler-macro-adjoin, cl--compiler-macro-list*)
6731 (cl--compiler-macro-get): New functions, replacing calls to
6732 cl-define-compiler-macro.
6733 (cl-typep) [compiler-macro]: Use macroexp-let².
6734
6735 2012-06-08 Nick Dokos <nicholas.dokos@hp.com> (tiny change)
6736
6737 * calendar/icalendar.el (icalendar--parse-vtimezone): Import TZID
6738 string properly, fixes Bug#11473.
6739
6740 2012-06-08 Chong Yidong <cyd@gnu.org>
6741
6742 * faces.el (set-face-attribute): Doc fix.
6743 (modify-face): Don't use :bold and :italic.
6744 (error, warning, success): Tweak definitions.
6745
6746 * cus-edit.el (custom-modified, custom-invalid, custom-rogue)
6747 (custom-modified, custom-set, custom-changed, custom-themed)
6748 (custom-saved, custom-button, custom-button-mouse)
6749 (custom-button-pressed, custom-state, custom-comment-tag)
6750 (custom-variable-tag, custom-group-tag-1, custom-group-tag)
6751 (custom-group-subtitle): Use new-style face specs.
6752 (custom-invalid-face, custom-rogue-face, custom-modified-face)
6753 (custom-set-face, custom-changed-face, custom-saved-face)
6754 (custom-button-face, custom-button-pressed-face)
6755 (custom-documentation-face, custom-state-face)
6756 (custom-comment-face, custom-comment-tag-face)
6757 (custom-variable-tag-face, custom-variable-button-face)
6758 (custom-face-tag-face, custom-group-tag-face-1)
6759 (custom-group-tag-face): Remove obsolete face alias.
6760
6761 * epa.el (epa-validity-high, epa-validity-medium)
6762 (epa-validity-low, epa-mark, epa-field-name, epa-string)
6763 (epa-field-name, epa-field-body):
6764 * font-lock.el (font-lock-comment-face, font-lock-string-face)
6765 (font-lock-keyword-face, font-lock-builtin-face)
6766 (font-lock-function-name-face, font-lock-variable-name-face)
6767 (font-lock-type-face, font-lock-constant-face):
6768 * ido.el (ido-first-match, ido-only-match, ido-subdir)
6769 (ido-virtual, ido-indicator, ido-incomplete-regexp):
6770 * speedbar.el (speedbar-button-face, speedbar-file-face)
6771 (speedbar-directory-face, speedbar-tag-face)
6772 (speedbar-selected-face, speedbar-highlight-face)
6773 (speedbar-separator-face):
6774 * whitespace.el (whitespace-newline, whitespace-space)
6775 (whitespace-hspace, whitespace-tab, whitespace-trailing)
6776 (whitespace-line, whitespace-space-before-tab)
6777 (whitespace-space-after-tab, whitespace-indentation)
6778 (whitespace-empty):
6779 * emulation/cua-base.el (cua-global-mark):
6780 * eshell/em-prompt.el (eshell-prompt):
6781 * net/newst-plainview.el (newsticker-new-item-face)
6782 (newsticker-old-item-face, newsticker-immortal-item-face)
6783 (newsticker-obsolete-item-face, newsticker-date-face)
6784 (newsticker-statistics-face, newsticker-default-face):
6785 * net/newst-reader.el (newsticker-feed-face)
6786 (newsticker-extra-face, newsticker-enclosure-face):
6787 * net/newst-treeview.el (newsticker-treeview-face)
6788 (newsticker-treeview-new-face, newsticker-treeview-old-face)
6789 (newsticker-treeview-immortal-face)
6790 (newsticker-treeview-obsolete-face)
6791 (newsticker-treeview-selection-face):
6792 * net/rcirc.el (rcirc-my-nick, rcirc-other-nick)
6793 (rcirc-bright-nick, rcirc-server, rcirc-timestamp)
6794 (rcirc-nick-in-message, rcirc-nick-in-message-full-line)
6795 (rcirc-prompt, rcirc-track-keyword, rcirc-url, rcirc-keyword):
6796 * nxml/nxml-outln.el (nxml-heading, nxml-outline-indicator)
6797 (nxml-outline-active-indicator, nxml-outline-ellipsis):
6798 * play/mpuz.el (mpuz-unsolved, mpuz-solved, mpuz-trivial)
6799 (mpuz-text):
6800 * progmodes/vera-mode.el (vera-font-lock-number)
6801 (vera-font-lock-function, vera-font-lock-interface):
6802 * textmodes/table.el (table-cell): Use new-style face specs, and
6803 don't use the old :bold and :italic attributes.
6804
6805 * progmodes/ebrowse.el (ebrowse-tree-mark, ebrowse-root-class)
6806 (ebrowse-member-attribute, ebrowse-default, ebrowse-file-name)
6807 (ebrowse-member-class, ebrowse-progress): Likewise.
6808 (ebrowse-tree-mark-face, ebrowse-root-class-face)
6809 (ebrowse-file-name-face, ebrowse-default-face)
6810 (ebrowse-member-attribute-face, ebrowse-member-class-face)
6811 (ebrowse-progress-face): Remove obsolete faces.
6812
6813 * progmodes/flymake.el (flymake-errline, flymake-warnline):
6814 Inherit from error and warning faces respectively.
6815
6816 * textmodes/flyspell.el (flyspell-incorrect, flyspell-duplicate):
6817 Likewise.
6818 (flyspell-incorrect-face, flyspell-duplicate-face):
6819 Remove obsolete aliases.
6820
6821 2012-06-08 Michael Albinus <michael.albinus@gmx.de>
6822
6823 * net/tramp-compat.el (tramp-compat-temporary-file-directory):
6824 Avoid infloop.
6825
6826 2012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
6827
6828 * startup.el (argv, argi): Make lexically scoped.
6829 * emacs-lisp/float-sup.el (pi): Use internal-make-var-non-special.
6830 * emacs-lisp/cl-macs.el: Use lexical-binding.
6831 Rename cl-bind-* to cl--bind-*.
6832 * files.el: Don't require `cl' since it doesn't use it.
6833 * emacs-lisp/pcase.el, emacs-lisp/macroexp.el: Add coding cookie.
6834
6835 2012-06-08 Juanma Barranquero <lekktu@gmail.com>
6836
6837 * textmodes/texinfmt.el: Fix bug#11640 (reverts part of 2008-07-31T05:33:56Z!dann@ics.uci.edu).
6838 (texinfo-format-printindex): Use `texinfo-sort-region' in all platforms,
6839 instead of calling external sort utility.
6840 (texinfo-sort-region, texinfo-sort-startkeyfun): Restore functions.
6841
6842 2012-06-08 Eli Zaretskii <eliz@gnu.org>
6843
6844 * descr-text.el (describe-char): Mention how to insert the
6845 character, if the current input method doesn't support it.
6846 See the discussion in this thread for the details:
6847 http://lists.gnu.org/archive/html/emacs-devel/2012-05/msg00533.html.
6848
6849 2012-06-08 Sam Steingold <sds@gnu.org>
6850
6851 * bindings.el (global-map): Bind XF86Forward to next-buffer and
6852 XF86Back to previous-buffer.
6853 (minibuffer-local-map): Bind them to next-history-element and
6854 previous-history-element respectively.
6855 * help-mode.el (help-mode-map): Bind them to help-go-forward and
6856 help-go-back respectively.
6857 * info.el (Info-mode-map): Bind them to Info-history-forward and
6858 Info-history-back respectively.
6859 These are the keys next to Up on the ThinkPad keyboard.
6860
6861 2012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
6862
6863 Get rid of cl-lexical-let, keeping only lexical-let for compatibility.
6864 * emacs-lisp/cl-macs.el: Provide itself.
6865 (cl--labels-convert-cache): New var.
6866 (cl--labels-convert): New function.
6867 (cl-flet, cl-labels): New implementation with new semantics, relying on
6868 lexical-binding.
6869 * emacs-lisp/cl.el: Mark compatibility aliases as obsolete.
6870 (cl-closure-vars, cl--function-convert-cache)
6871 (cl--function-convert): Move from cl-macs.el.
6872 (lexical-let, lexical-let*, flet, labels): Move from cl-macs.el and
6873 rename by removing the "cl-" prefix.
6874 * emacs-lisp/macroexp.el (macroexp-unprogn): New function.
6875
6876 2012-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
6877
6878 * emacs-lisp/cl.el (cl-macroexpand, cl-macro-environment)
6879 (cl-macroexpand-all, cl-not-hash-table, cl-builtin-gethash)
6880 (cl-builtin-remhash, cl-builtin-clrhash, cl-builtin-maphash)
6881 (cl-map-keymap, cl-copy-tree, cl-gethash, cl-puthash, cl-remhash)
6882 (cl-clrhash, cl-maphash, cl-make-hash-table, cl-hash-table-p)
6883 (cl-hash-table-count): Add old compatibility aliases.
6884
6885 * emacs-lisp/cl-macs.el (cl-macro-environment): Remove var.
6886 Use macroexpand-all-environment instead.
6887 (cl--old-macroexpand): New var.
6888 (cl--sm-macroexpand): New function.
6889 (cl-symbol-macrolet): Use it during macro expansion.
6890 (cl--function-convert-cache): New var.
6891 (cl--function-convert): New function, extracted from
6892 cl-macroexpand-all.
6893 (cl-lexical-let): Use it.
6894
6895 * emacs-lisp/cl-lib.el (cl-macro-environment): Remove decl.
6896 (cl-macroexpand): Move to cl-macs.el and rename to cl--sm-macroexpand.
6897 (cl-member): Remove old alias.
6898
6899 * emacs-lisp/cl-extra.el (cl-map-keymap, cl-copy-tree)
6900 (cl-not-hash-table, cl-builtin-gethash, cl-builtin-remhash)
6901 (cl-builtin-clrhash, cl-builtin-maphash, cl-gethash, cl-puthash)
6902 (cl-remhash, cl-clrhash, cl-maphash, cl-make-hash-table)
6903 (cl-hash-table-p, cl-hash-table-count): Move to cl.el.
6904 (cl-macroexpand-cmacs): Remove var.
6905 (cl-macroexpand-all, cl-macroexpand-body): Remove funs.
6906 Use macroexpand-all instead.
6907
6908 2012-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
6909
6910 * emacs-lisp/macroexp.el (macroexp-progn, macroexp-let*, macroexp-if)
6911 (macroexp-let², macroexp--const-symbol-p, macroexp-const-p)
6912 (macroexp-copyable-p): New functions and macros.
6913 * emacs-lisp/edebug.el (edebug-unwrap):
6914 * emacs-lisp/disass.el (disassemble-internal): Use macroexp-progn.
6915 * emacs-lisp/pcase.el: Use macroexp-let*, macroexp-if, ...
6916 (pcase--let*): Remove.
6917 * emacs-lisp/bytecomp.el (byte-compile-const-symbol-p)
6918 (byte-compile-constp): Remove. Use macroexp--const-symbol-p and
6919 macroexp-const-p instead.
6920 * emacs-lisp/byte-opt.el: Use macroexp-const-p and macroexp-progn.
6921
6922 * emacs-lisp/cl-macs.el: Clean up the name space by using "cl--"
6923 instead of "cl-" for internal definitions. Use macroexp-const-p.
6924 (cl-old-bc-file-form): Remove var.
6925 (cl-const-exprs-p): Remove fun.
6926 (cl-labels, cl-macrolet): Use backquote.
6927 (cl-lexical-let): Use cl-symbol-macrolet. Don't use cl-defun-expander.
6928 (cl-defun-expander, cl-byte-compile-compiler-macro): Remove fun.
6929 (cl-define-setf-expander): Rename from cl-define-setf-method.
6930 * emacs-lisp/cl.el: Adjust alias for define-setf-method.
6931
6932 * international/mule-cmds.el: Don't require CL.
6933 (view-hello-file): Don't use `letf'.
6934
6935 2012-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
6936
6937 * tmm.el (tmm-prompt): Use string-prefix-p.
6938 (tmm-completion-delete-prompt): Don't affect current-buffer outside.
6939 (tmm-add-prompt): Use minibuffer-completion-help.
6940 (tmm-delete-map): Remove.
6941
6942 * subr.el (kbd): Make it its own function.
6943
6944 2012-06-07 Stefan Merten <smerten@oekonux.de>
6945
6946 * textmodes/rst.el: Use `eval-when-compile' for requiring `cl.el'.
6947 Silence compiler warnings. Fix versions.
6948 (rst-position-if, rst-position, rst-some, rst-signum): New functions.
6949 (rst-shift-region, rst-adornment-level, rst-compute-tabs)
6950 (rst-indent-line, rst-shift-region, rst-forward-line): Use them.
6951 (rst-package-emacs-version-alist): Correct Emacs version to
6952 represent major merge with upstream.
6953 (rst-transition, rst-adornment, rst-compile-toolsets): Fix versions.
6954
6955 2012-06-06 Glenn Morris <rgm@gnu.org>
6956
6957 * mail/emacsbug.el (report-emacs-bug): Add relevant EMACS env-vars.
6958 Only print environment variables if set.
6959
6960 2012-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
6961
6962 * emacs-lisp/macroexp.el: Don't require CL since we don't use it.
6963 (macroexp--cons): Rename from maybe-cons.
6964 (macroexp--accumulate): Rename from macroexp-accumulate.
6965 (macroexp--all-forms): Rename from macroexpand-all-forms.
6966 (macroexp--all-clauses): Rename from macroexpand-all-clauses.
6967 (macroexp--expand-all): Rename from macroexpand-all-1.
6968
6969 2012-06-06 Sam Steingold <sds@gnu.org>
6970
6971 * calendar/calendar.el (calendar-in-read-only-buffer):
6972 Call `special-mode' to enable the standard read-only keybindings.
6973
6974 2012-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
6975
6976 * emacs-lisp/macroexp.el (macroexpand-all-1): Don't spam the output
6977 with "loading" messages (bug#11635).
6978
6979 2012-06-06 Michael Albinus <michael.albinus@gmx.de>
6980
6981 * files.el (enable-remote-dir-locals): New option.
6982 (hack-dir-local-variables): Use it. (Bug#1933, Bug#6731)
6983
6984 * net/tramp-compat.el (tramp-compat-temporary-file-directory):
6985 Ensure, that the temp directory is local.
6986
6987 * net/tramp-sh.el (tramp-sh-handle-write-region): Let-bind
6988 `temporary-file-directory'.
6989
6990 * progmodes/python.el (python-send-region): Ensure, that the
6991 temporary file is created also in the remote case.
6992
6993 2012-06-06 Glenn Morris <rgm@gnu.org>
6994
6995 * vc/vc-rcs.el (vc-rcs-rcs2log-program): New.
6996 (vc-rcs-update-changelog): Use it.
6997
6998 * emacs-lisp/authors.el (authors-fixed-entries): Remove vcdiff.
6999
7000 * vc/vc-sccs.el (vc-sccs-write-revision): New function.
7001 (vc-sccs-workfile-unchanged-p): Use vc-sccs-write-revision.
7002 (vc-sccs-diff): Replace use of the external vcdiff script.
7003
7004 2012-06-05 Glenn Morris <rgm@gnu.org>
7005
7006 * ledit.el: Move to obsolete/.
7007
7008 2012-06-05 Sam Steingold <sds@gnu.org>
7009
7010 * calendar/calendar.el (calendar-exit): Reinstate the 2012-03-28
7011 patch (Bug#11140).
7012
7013 2012-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
7014
7015 * emacs-lisp/cust-print.el: Move to obsolete.
7016
7017 * emacs-lisp/macroexp.el (macroexpand-all-1): Tolerate errors during
7018 compiler-macro expansion.
7019
7020 Add native compiler-macro support.
7021 * emacs-lisp/macroexp.el (macroexpand-all-1):
7022 Support compiler-macros directly. Properly follow aliases and apply
7023 the compiler macros more thoroughly.
7024 * emacs-lisp/cl.el: Don't copy compiler-macro properties any more since
7025 macroexpand now properly follows aliases.
7026 * emacs-lisp/cl-macs.el (toplevel, cl-define-compiler-macro)
7027 (cl-compiler-macroexpand): Use new prop.
7028 * emacs-lisp/byte-opt.el (featurep): Optimize earlier.
7029
7030 * emacs-lisp/cl-lib.el (custom-print-functions): Add alias.
7031
7032 2012-06-05 Martin Rudalics <rudalics@gmx.at>
7033
7034 * window.el (get-lru-window, get-mru-window, get-largest-window):
7035 New argument NOT-SELECTED to avoid picking the selected window.
7036 (window--display-buffer-1, window--display-buffer-2): Replace by
7037 new function window--display-buffer
7038 (display-buffer-same-window, display-buffer-reuse-window)
7039 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
7040 Use window--display-buffer.
7041 (display-buffer-use-some-window): Remove temporary dedication
7042 hack by calling get-lru-window and get-largest-window with
7043 NOT-SELECTED argument non-nil. Call window--display-buffer.
7044
7045 2012-06-05 Glenn Morris <rgm@gnu.org>
7046
7047 * vc/vc-sccs.el (vc-sccs-workfile-unchanged-p):
7048 Replace external vcdiff script.
7049
7050 2012-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
7051
7052 * emacs-lisp/cl-lib.el (cl-values, cl-values-list): Fix up last change.
7053
7054 2012-06-04 Chong Yidong <cyd@gnu.org>
7055
7056 * image.el (imagemagick-types-inhibit): Revert last change.
7057 Add INFO and M.
7058 (imagemagick-enabled-types): Remove CIN and EPS*.
7059
7060 2012-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
7061
7062 * emacs-lisp/cl-lib.el: Rename from cl.el.
7063 * emacs-lisp/cl.el: New compatibility file.
7064 * emacs-lisp/cl-lib.el, emacs-lisp/cl-seq.el, emacs-lisp/cl-macs.el:
7065 * emacs-lisp/cl-extra.el: Rename all top-level functions and variables
7066 to obey the "cl-" prefix.
7067 * emacs-lisp/macroexp.el (macroexpand-all-1): Adjust to new name.
7068
7069 2012-06-03 Glenn Morris <rgm@gnu.org>
7070
7071 * emacs-lisp/authors.el (authors-aliases): Addition.
7072
7073 * cus-start.el (tool-bar-style, tool-bar-max-label-size):
7074 Fix :version.
7075
7076 2012-06-03 Stefan Merten <smerten@oekonux.de>
7077
7078 * textmodes/rst.el: Add comments.
7079 (rst-transition, rst-adornment): New faces.
7080 (rst-adornment-faces-alist): Make default safe to reevaluate.
7081 Fixes
7082 http://sourceforge.net/tracker/?func=detail&atid=422030&aid=3479603&group_id=38414.
7083 Improve customization tags.
7084 (rst-define-level-faces): Clarify meaning.
7085
7086 2012-06-03 Chong Yidong <cyd@gnu.org>
7087
7088 * progmodes/compile.el (compilation-mode-line-fail)
7089 (compilation-mode-line-run, compilation-mode-line-exit):
7090 New faces.
7091 (compilation-start, compilation-handle-exit): Use them (Bug#11032).
7092
7093 2012-06-03 Jack Duthen <duthen.mac.01@gmail.com> (tiny change)
7094
7095 * progmodes/which-func.el (which-func-update-ediff-windows):
7096 New function. Use it in ediff-select-hook (Bug#11478).
7097
7098 2012-06-03 Chong Yidong <cyd@gnu.org>
7099
7100 * bindings.el: Remove explicit help text from format-mode-line.
7101 It is now supplied by mode-line-default-help-echo.
7102 (mode-line-front-space, mode-line-end-spaces)
7103 (mode-line-misc-info): New variables.
7104 (mode-line-modes, mode-line-position): Move the default value to
7105 the variable definition.
7106 (mode-line-default-help-echo): New defcustom.
7107 (mode-line-mule-info-help-echo, mode-line-read-only-help-echo)
7108 (mode-line-modified-help-echo): New functions.
7109 (mode-line-mule-info, mode-line-modified): Use them.
7110 (mode-line-eol-desc, propertized-buffer-identification):
7111 Consistency fixes for help text.
7112 (mode-line-coding-system-map): Allow using mouse-3 to invoke
7113 set-buffer-file-coding-system (Bug#289).
7114 (mode-line-mule-info-help-echo): Update help text.
7115
7116 2012-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
7117
7118 * simple.el (execute-extended-command): Set real-this-command
7119 (bug#11506).
7120
7121 2012-06-02 Chong Yidong <cyd@gnu.org>
7122
7123 Remove incorrect uses of "modeline" in comments, docstrings, and
7124 function/variable names (Bug#10329).
7125
7126 * cus-edit.el (mode-line):
7127 * dframe.el (dframe-mouse-hscroll):
7128 * emacs-lisp/re-builder.el:
7129 * emacs-lisp/easy-mmode.el (define-minor-mode):
7130 * frame.el (set-frame-name):
7131 * help.el (lookup-minor-mode-from-indicator):
7132 * net/rcirc.el (rcirc-activity-string, rcirc-short-buffer-name):
7133 * progmodes/cc-cmds.el (c-toggle-auto-newline)
7134 (c-toggle-hungry-state):
7135 * progmodes/antlr-mode.el (antlr-language-alist):
7136 * progmodes/idlw-shell.el (idlwave-shell-electric-stop-line-face):
7137 * progmodes/vhdl-mode.el (vhdl-mode):
7138 * progmodes/which-func.el (which-func, which-func-cleanup-function):
7139 * term/ns-win.el (ns-face-at-pos):
7140 * term/sup-mouse.el (sup-mouse-report):
7141 * textmodes/flyspell.el (flyspell-mode-line-string):
7142 * textmodes/ispell.el (ispell-highlight-face):
7143 * textmodes/reftex-global.el:
7144 * vc/vc-arch.el (vc-arch-mode-line-string):
7145 * vc/vc-cvs.el (vc-cvs-mode-line-string):
7146 * vc/vc-git.el (vc-git-mode-line-string):
7147 * vc/vc-hooks.el (vc-display-status)
7148 (vc-default-mode-line-string):
7149 * vc/vc-mtn.el (vc-mtn-mode-line-string): Doc fixes.
7150
7151 * ansi-color.el (ansi-color-faces-vector): Change default faces.
7152
7153 * dired.el (dired-sort-set-mode-line): Rename from
7154 dired-sort-set-modeline. All callers changed.
7155
7156 * eshell/esh-mode.el (eshell-status-in-mode-line): Rename from
7157 eshell-status-in-modeline.
7158
7159 * foldout.el (foldout-mode-line-string): Rename from
7160 foldout-modeline-string. All callers changed.
7161 (foldout-update-mode-line): Rename from foldout-update-modeline.
7162
7163 * subr.el (redraw-modeline): Make into obsolete alias.
7164
7165 * calendar/timeclock.el (timeclock-mode-line-display): Rename from
7166 timeclock-modeline-display. Make old name an alias.
7167 (timeclock-update-mode-line): Likewise. All callers changed.
7168 (timeclock-mode-line-display): No need to check before using
7169 add-hook.
7170 (timeclock-relative, timeclock-day-over-hook)
7171 (timeclock-use-elapsed, timeclock-mode-string)
7172 (timeclock-mode-line-display): Doc fix, "modeline" -> "mode line".
7173
7174 * emulation/crisp.el (crisp-mode-mode-line-string): Rename from
7175 crisp-mode-modeline-string.
7176
7177 * play/solitaire.el (solitaire-build-mode-line): Rename from
7178 solitaire-build-modeline. All callers changed.
7179
7180 * play/zone.el (zone-hiding-mode-line): Rename from
7181 zone-hiding-modeline. All callers changed.
7182 (zone): Remove unusued `modeline-hidden-level' property.
7183
7184 * progmodes/xscheme.el (xscheme-mode-line-initialize): Rename from
7185 xscheme-modeline-initialize. All callers changed.
7186
7187 * strokes.el (strokes-lighter): Rename from
7188 strokes-modeline-string.
7189
7190 * textmodes/sgml-mode.el (html-face-tag-alist)
7191 (html-tag-face-alist): Use mode-line face instead of obsolete
7192 alias modeline.
7193
7194 2012-06-02 Stefan Merten <smerten@oekonux.de>
7195
7196 * textmodes/rst.el: Always require `cl'.
7197 (rst-mode-map): Fix meaning of C-M-a / C-M-e.
7198
7199 2012-06-02 Chong Yidong <cyd@gnu.org>
7200
7201 * image.el (imagemagick-enabled-types): Rename from
7202 imagemagick-types-enable. Add many more types.
7203 (imagemagick-types-inhibit): Change default to nil.
7204 (imagemagick-filter-types): Caller changed.
7205
7206 2012-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
7207
7208 * emacs-lisp/cl-macs.el: Use backquotes.
7209 (cl-transform-function-property): Use eval-and-compile rather than
7210 abusing `require'.
7211 (defstruct): Use declare-function instead of with-no-warnings.
7212
7213 * emacs-lisp/bytecomp.el: Fix last change (bug#11594).
7214 (byte-compile-output-docform): Re-add the print-circle bindings.
7215 (byte-compile-fix-header): Use #$ just because it's shorter.
7216 (byte-compile-output-file-form): Remove defun/defmacro.
7217
7218 2012-06-01 Martin Rudalics <rudalics@gmx.at>
7219
7220 * simple.el (choose-completion): Remove now obsolete binding for
7221 owindow.
7222
7223 2012-06-01 Michael Albinus <michael.albinus@gmx.de>
7224
7225 * net/tramp.el (tramp-check-for-regexp): Search from buffer end,
7226 in order to avoid "Stack overflow in regexp matcher".
7227
7228 2012-05-31 Glenn Morris <rgm@gnu.org>
7229
7230 * image.el: For clarity, call imagemagick-register-types at
7231 top-level, rather than relying on a custom :initialize.
7232 (imagemagick-types-enable): New option. (Bug#11557)
7233 (imagemagick-filter-types): New function. (Bug#7406)
7234 (imagemagick-register-types): Use imagemagick-filter-types.
7235 If disabling support, remove elements altogether rather
7236 than using an impossible regexp.
7237 (imagemagick-types-inhibit): Give it the default init function.
7238
7239 2012-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
7240
7241 * emacs-lisp/bytecomp.el (byte-compile-fix-header):
7242 Handle arbitrary file name lengths (Bug#11585).
7243
7244 2012-05-31 Martin Rudalics <rudalics@gmx.at>
7245
7246 * desktop.el (desktop-read): Clear previous and next buffers for
7247 all windows and bury *Messages* buffer (bug#11556).
7248
7249 2012-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
7250
7251 Add `declare' for `defun'. Align `defmacro's with it.
7252 * emacs-lisp/easy-mmode.el (define-minor-mode)
7253 (define-globalized-minor-mode): Don't autoload the var definitions.
7254 * emacs-lisp/byte-run.el: Use lexical-binding.
7255 (defun-declarations-alist, macro-declarations-alist): New vars.
7256 (defmacro, defun): Use them.
7257 (make-obsolete, define-obsolete-function-alias)
7258 (make-obsolete-variable, define-obsolete-variable-alias):
7259 Use `declare'.
7260 (macro-declaration-function): Mark obsolete.
7261 * emacs-lisp/autoload.el: Use lexical-binding.
7262 (make-autoload): Add `expansion' arg. Rely more on macro expansion.
7263
7264 2012-05-30 Agustín Martín Domingo <agustin.martin@hispalinux.es>
7265
7266 * textmodes/ispell.el (ispell-with-no-warnings):
7267 Define as a macro.
7268 (ispell-kill-ispell, ispell-change-dictionary):
7269 Use `called-interactively-p' for Emacs instead of obsolete
7270 `interactive-p'.
7271
7272 2012-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
7273
7274 * emacs-lisp/byte-run.el (defmacro, defun): Move from C.
7275 (macro-declaration-function): Move var from C code.
7276 (macro-declaration-function): Define function with defalias.
7277 * emacs-lisp/macroexp.el (macroexpand-all-1):
7278 * emacs-lisp/cconv.el (cconv-convert, cconv-analyse-form):
7279 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker): Don't handle
7280 defun/defmacro any more.
7281 * emacs-lisp/bytecomp.el (byte-compile-arglist-signature):
7282 Provide fallback for unknown arglist.
7283 (byte-compile-arglist-warn): Change calling convention.
7284 (byte-compile-output-file-form): Move print-vars binding.
7285 (byte-compile-output-docform): Simplify accordingly.
7286 (byte-compile-file-form-defun, byte-compile-file-form-defmacro)
7287 (byte-compile-defmacro-declaration): Remove.
7288 (byte-compile-file-form-defmumble): Generalize to defalias.
7289 (byte-compile-output-as-comment): Return byte-positions.
7290 Simplify callers accordingly.
7291 (byte-compile-lambda): Use `assert'.
7292 (byte-compile-defun, byte-compile-defmacro): Remove.
7293 (byte-compile-file-form-defalias):
7294 Use byte-compile-file-form-defmumble.
7295 (byte-compile-defalias-warn): Remove.
7296
7297 2012-05-29 Stefan Merten <smerten@oekonux.de>
7298
7299 * textmodes/rst.el: Silence `checkdoc-ispell' errors where
7300 possible. Fix authors. Improve comments. Improve loading of `cl'.
7301
7302 (rst-mode-abbrev-table): Merge definition.
7303 (rst-mode): Make sure `font-lock-defaults' is buffer local.
7304 (rst-define-key, rst-deprecated-keys, rst-call-deprecated): Refactor.
7305
7306 2012-05-29 Ulf Jasper <ulf.jasper@web.de>
7307
7308 * calendar/icalendar.el
7309 (icalendar-export-region): Export UID properly.
7310
7311 2012-05-29 Leo Liu <sdl.web@gmail.com>
7312 * calendar/icalendar.el (icalendar-import-format):
7313 Add `icalendar-import-format-uid' (Bug#11525).
7314 (icalendar-import-format-uid): New.
7315 (icalendar--parse-summary-and-rest, icalendar--format-ical-event):
7316 Export UID.
7317
7318 2012-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
7319
7320 * emacs-lisp/pcase.el (pcase--expand): Accept different sets of vars in
7321 different alternative patterns.
7322 (pcase-codegen): Be more careful to preserve identity.
7323 (pcase--u1): Don't forget to mark vars as used.
7324
7325 * emacs-lisp/bytecomp.el (byte-compile-constp): Treat #'v as a constant.
7326 (byte-compile-close-variables): Bind byte-compile--outbuffer here...
7327 (byte-compile-from-buffer): ...rather than here.
7328
7329 * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Don't re-preprocess
7330 functions from byte-compile-function-environment.
7331
7332 2012-05-29 Troels Nielsen <bn.troels@gmail.com>
7333
7334 * window.el (window-deletable-p): Avoid deleting the root window
7335 of a frame with an active minibuffer.
7336
7337 2012-05-29 Martin Rudalics <rudalics@gmx.at>
7338
7339 * simple.el (choose-completion): Use quit-window (Bug#11567).
7340
7341 2012-05-29 Chong Yidong <cyd@gnu.org>
7342
7343 * whitespace.el (whitespace-cleanup): Fix usage of
7344 whitespace-empty-at-bob-regexp (Bug#11492).
7345
7346 2012-05-29 Aaron S. Hawley <aaron.s.hawley@gmail.com>
7347
7348 * vc/vc.el (vc-revert, vc-rollback): Dont kill vc-diff buffer on
7349 revert (Bug#11488).
7350
7351 2012-05-29 Juri Linkov <juri@jurta.org>
7352
7353 * isearch.el (isearch-mode-map): Bind `M-s _' to
7354 `isearch-toggle-symbol'. Bind `M-s c' to
7355 `isearch-toggle-case-fold'.
7356 (search-map): Bind `M-s _' to `isearch-forward-symbol'.
7357 (isearch-forward): Add `M-s _' to the docstring.
7358 (isearch-forward-symbol, isearch-toggle-case-fold)
7359 (isearch-symbol-regexp): New functions. (Bug#11381)
7360
7361 2012-05-29 Juri Linkov <juri@jurta.org>
7362
7363 * isearch.el (isearch-word): Add docstring. (Bug#11381)
7364 (isearch-occur, isearch-search-and-update): If `isearch-word' is
7365 a function, call it to get the regexp.
7366 (isearch-message-prefix): If `isearch-word' holds a symbol, use its
7367 property `isearch-message-prefix' instead of the string "word ".
7368 (isearch-search-fun-default): For the case of `isearch-word',
7369 return a lambda that calls re-search-forward/re-search-backward
7370 with a regexp returned by `word-search-regexp' or by the function
7371 in `isearch-word'.
7372
7373 2012-05-29 Juri Linkov <juri@jurta.org>
7374
7375 * isearch.el (isearch-search-fun-default): New function.
7376 (isearch-search-fun): Move default part to the new function
7377 `isearch-search-fun-default'.
7378 (isearch-search-fun-function): Set the default value to
7379 `isearch-search-fun-default'. (Bug#11381)
7380
7381 * comint.el (comint-history-isearch-end):
7382 Use `isearch-search-fun-default'.
7383 (comint-history-isearch-search): Use `isearch-search-fun-default'
7384 and remove spacial case for `isearch-word'.
7385 (comint-history-isearch-wrap): Remove spacial case for
7386 `isearch-word'.
7387
7388 * hexl.el (hexl-isearch-search-function):
7389 Use `isearch-search-fun-default'.
7390
7391 * info.el (Info-isearch-search): Use `isearch-search-fun-default'.
7392 Use `word-search-regexp' for `isearch-word'.
7393
7394 * misearch.el (multi-isearch-search-fun):
7395 Use `isearch-search-fun-default'.
7396
7397 * simple.el (minibuffer-history-isearch-search):
7398 Use `isearch-search-fun-default' and remove spacial case for
7399 `isearch-word'.
7400 (minibuffer-history-isearch-wrap): Remove spacial case for
7401 `isearch-word'.
7402
7403 * textmodes/reftex-global.el (reftex-isearch-wrap-function):
7404 Remove spacial case for `isearch-word'.
7405 (reftex-isearch-isearch-search): Use `isearch-search-fun-default'.
7406
7407 2012-05-28 Agustín Martín Domingo <agustin.martin@hispalinux.es>
7408
7409 Decrease XEmacs incompatibilities.
7410 * textmodes/flyspell.el (flyspell-check-pre-word-p):
7411 Use `string-match'.
7412 (flyspell-delete-region-overlays): Use alternative definition for
7413 XEmacs.
7414 (flyspell-delete-all-overlays): Use `flyspell-delete-region-overlays'.
7415 (flyspell-word): Use `process-kill-without-query' if XEmacs.
7416 (flyspell-mode-on): Use `interactive-p' if XEmacs.
7417 (flyspell-incorrect-face, flyspell-duplicate-face): Do not use
7418 `define-obsolete-face-alias' under XEmacs, but old method.
7419
7420 * textmodes/ispell.el (ispell-with-no-warnings): XEmacs alternative
7421 `with-no-warnings' definition or Emacs alias.
7422 (ispell-command-loop, ispell-message): Use `ispell-with-no-warnings'.
7423 (ispell-word): Do not use `region-p' if XEmacs.
7424
7425 2012-05-28 Agustín Martín Domingo <agustin.martin@hispalinux.es>
7426
7427 * textmodes/ispell.el (ispell-find-aspell-dictionaries):
7428 Check for `ispell-dictionary-base-alist' instead of full
7429 `ispell-dictionary-alist'.
7430 (ispell-init-process): Show spellchecker when starting new Ispell
7431 process.
7432
7433 2012-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
7434
7435 * progmodes/vhdl-mode.el: Sync with upstream 3.33.28.
7436 http://www.iis.ee.ethz.ch/~zimmi/emacs/vhdl-mode.html#release-notes-3.33
7437
7438 2012-05-27 Juanma Barranquero <lekktu@gmail.com>
7439
7440 * version.el (motif-version-string, gtk-version-string)
7441 (ns-version-string): Declare.
7442
7443 2012-05-27 Juri Linkov <juri@jurta.org>
7444
7445 * emacs-lisp/lisp-mode.el (eval-defun-2): Use `eval-sexp-add-defvars'
7446 after the `eval-defun-1' specialcaseing
7447 like in `edebug-eval-defun' (bug#10181).
7448
7449 * emacs-lisp/edebug.el (edebug-eval-defun): Set `face-documentation'
7450 like in `eval-defun-1'.
7451
7452 2012-05-27 Eli Zaretskii <eliz@gnu.org>
7453
7454 * mail/sendmail.el (mail-yank-region):
7455 Recognize rmail-yank-current-message in addition to insert-buffer.
7456 Fixes mail-mode's "C-c C-r" that otherwise does nothing when invoked in
7457 a *mail* buffer created through rmail-start-mail with sendmail as
7458 mail-user-agent.
7459
7460 2012-05-27 Chong Yidong <cyd@gnu.org>
7461
7462 * net/gnutls.el (gnutls-min-prime-bits): Improve docstring.
7463 Default to 256 (Bug#11267).
7464
7465 * help.el (describe-mode): Doc fix.
7466
7467 2012-05-26 Glenn Morris <rgm@gnu.org>
7468
7469 * w32-fns.el (w32-init-info): Remove.
7470 * paths.el (Info-default-directory-list): Add w32-init-info equivalent.
7471
7472 * info.el (info-initialize): For self-contained NS builds, put the
7473 included info/ directory at the front. (Bug#2791)
7474
7475 * paths.el (Info-default-directory-list): Make it a defcustom,
7476 mainly so that we can use custom-initialize-delay.
7477
7478 2012-05-26 Stefan Monnier <monnier@iro.umontreal.ca>
7479
7480 * subr.el (buffer-has-markers-at): Mark obsolete.
7481
7482 * subr.el (lambda): Use declare.
7483
7484 * emacs-lisp/lisp-mode.el (lambda):
7485 * emacs-lisp/edebug.el (lambda): Move properties to its definition.
7486
7487 2012-05-26 Aaron S. Hawley <aaron.s.hawley@gmail.com>
7488
7489 * thingatpt.el (forward-same-syntax): Handle no ARG case. (Bug#11560)
7490
7491 2012-05-26 Glenn Morris <rgm@gnu.org>
7492
7493 * progmodes/cc-mode.el (auto-mode-alist): Fix typo.
7494
7495 2012-05-25 Glenn Morris <rgm@gnu.org>
7496
7497 * paths.el: Remove no-byte-compile.
7498 * loadup.el: No need to load paths.el uncompiled.
7499
7500 * image.el (imagemagick-types-inhibit): Doc fix.
7501
7502 * version.el: Remove no-byte-compile and associated formatting.
7503 * loadup.el: No need to load version.el uncompiled. AFAICS, this
7504 is ancient code from when there was an "inc-vers.el".
7505
7506 2012-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
7507
7508 * progmodes/gdb-mi.el: Minor style changes.
7509 (gdb-enable-debug, gdb-speedbar-auto-raise, gdb-many-windows):
7510 Turn into minor modes.
7511 (gdb--if-arrow): Rename from gdb-if-arrow, make it hygienic.
7512 (gdb-mouse-until, gdb-mouse-jump): Adjust uses accordingly.
7513 (gdb-shell): Remove unneeded let-binding.
7514 (gdb-get-many-fields): Eliminate O(n²) behavior.
7515
7516 2012-05-25 Eli Zaretskii <eliz@gnu.org>
7517
7518 * cus-start.el <vertical-centering-font-regexp>: Avoid warning on
7519 platforms that don't link in fontset.c.
7520
7521 2012-05-25 Juri Linkov <juri@jurta.org>
7522
7523 Use the same diff color scheme as in modern VCSes (bug#10181).
7524
7525 * vc/diff-mode.el (diff-header, diff-file-header): Remove "green"
7526 to avoid confusion with `diff-added' that now uses green colors.
7527 (diff-removed): Use shades of red.
7528 (diff-added): Use shades of green.
7529 (diff-changed): Leave just the yellow color.
7530 (diff-use-changed-face): New variable.
7531 (diff-font-lock-keywords): Use `diff-use-changed-face' to decide
7532 how to highlight context diff changes.
7533 (diff-refine-change): Use shades of yellow.
7534 (diff-refine-removed): New face that uses shades of red.
7535 (diff-refine-added): New face that uses shades of green.
7536 (diff-refine-hunk): Use `diff-refine-change', `diff-refine-added',
7537 `diff-refine-removed' in the call to `smerge-refine-subst'
7538 depending on the value of `diff-use-changed-face'.
7539
7540 * vc/smerge-mode.el (smerge-mine): Use shades of red.
7541 (smerge-other): Use shades of green.
7542 (smerge-base): Use shades of yellow.
7543 (smerge-refined-change): Empty face.
7544 (smerge-refined-removed): New face that uses shades of red.
7545 (smerge-refined-added): New face that uses shades of green.
7546 (smerge-refine-subst): Rename arg `props' to `props-c'. Add new
7547 args `props-r' and `props-a', and use them. Doc fix.
7548 (smerge-refine): Evaluate `smerge-use-changed-face' and depending
7549 on its value use different faces `smerge-refined-change',
7550 `smerge-refined-removed', `smerge-refined-added' in the call to
7551 `smerge-refine-subst'.
7552
7553 * vc/ediff-init.el (ediff-current-diff-A, ediff-fine-diff-A):
7554 Add face condition `min-colors 88' with shades of red.
7555 (ediff-current-diff-B, ediff-fine-diff-B): Add face condition
7556 `min-colors 88' with shades of green.
7557 (ediff-current-diff-C, ediff-fine-diff-C): Add face condition
7558 `min-colors 88' with shades of yellow.
7559
7560 2012-05-24 Glenn Morris <rgm@gnu.org>
7561
7562 * paths.el (prune-directory-list, remote-shell-program): Move to...
7563 * files.el (prune-directory-list, remote-shell-program): ...here.
7564 For the latter, delay initialization, prefer ssh, just search PATH.
7565
7566 * paths.el (term-file-prefix): Move to faces.el (the only user).
7567 * faces.el (term-file-prefix): Move here, make it a defcustom.
7568
7569 * paths.el (news-directory, news-path, news-inews-program):
7570 Move to gnus/nnspool.el.
7571
7572 * paths.el (gnus-default-nntp-server): Remove (gnus.el defines it).
7573
7574 * paths.el (rmail-file-name, rmail-spool-directory): Move from here...
7575 * mail/rmail.el (rmail-file-name, rmail-spool-directory): ... to here.
7576 Make the latter a defcustom, with a delayed initialization.
7577
7578 * paths.el (gnus-nntp-service, gnus-local-organization): Remove.
7579 These were deleted from Gnus itself late 2010.
7580
7581 2012-05-22 Juanma Barranquero <lekktu@gmail.com>
7582
7583 * progmodes/which-func.el (which-func-ff-hook):
7584 Check against user-error, not error.
7585
7586 * emacs-lisp/edebug.el (top): Do not load or set up loading of
7587 cl-specs.el, which no longer exists.
7588
7589 2012-05-22 Glenn Morris <rgm@gnu.org>
7590
7591 * info.el (info-emacs-bug): New command.
7592 * menu-bar.el (menu-bar-help-menu): Add "How to Report a Bug" to Help.
7593 * mail/emacsbug.el (report-emacs-bug): Replace with info-emacs-bug.
7594
7595 2012-05-21 Glenn Morris <rgm@gnu.org>
7596
7597 * makefile.w32-in (update-subdirs-SH):
7598 * Makefile.in (update-subdirs): Update for moved update-subdirs.
7599
7600 2012-05-21 Stefan Monnier <monnier@iro.umontreal.ca>
7601
7602 * hi-lock.el (hi-lock-face-defaults): Move obsolete before definition.
7603
7604 * progmodes/compile.el (compilation-error-regexp-alist-alist):
7605 Simplify Maven regexp, and make sure the file can't start with a space
7606 (bug#11517).
7607
7608 2012-05-21 Glenn Morris <rgm@gnu.org>
7609
7610 * Makefile.in (setwins, setwins_almost, setwins_for_subdirs):
7611 Scrap superfluous subshells.
7612
7613 2012-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
7614
7615 * emacs-lisp/bytecomp.el (byte-compile-root-dir): New var.
7616 (byte-compile-warning-prefix, batch-byte-compile-file): Use it.
7617
7618 2012-05-19 Jay Belanger <jay.p.belanger@gmail.com>
7619
7620 * calc/calc.el (calc-ensure-consistent-units): New variable.
7621
7622 * calc/calc-units.el (math-consistent-units-p)
7623 (math-check-unit-consistency): New functions.
7624 (calc-quick-units, calc-convert-units):
7625 Use `math-check-unit-consistency' when `calc-ensure-consistent-units'
7626 is non-nil.
7627 (calc-extract-units): Fix typo.
7628
7629 2012-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
7630
7631 * vc/vc-bzr.el (vc-bzr-state-heuristic): Save match-data around sha1.
7632
7633 * textmodes/flyspell.el: Commenting style, plus code simplifications.
7634 (flyspell-default-deplacement-commands): Don't spell check after
7635 repeated window/frame switches (e.g. triggered by mouse-movement).
7636 (flyspell-delay-commands, flyspell-deplacement-commands): Use mapc.
7637 (flyspell-debug-signal-word-checked): Simplify and fit in 80 cols.
7638 (flyspell-casechars-cache, flyspell-ispell-casechars-cache)
7639 (flyspell-not-casechars-cache, flyspell-ispell-not-casechars-cache):
7640 Remove unused vars.
7641 (flyspell-get-casechars, flyspell-get-not-casechars):
7642 Simplify; Don't bother removing a ] just to add it back.
7643 * textmodes/ispell.el (ispell-program-name): Use executable-find.
7644
7645 2012-05-18 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
7646
7647 * calc/calc-lang.el (math-C-parse-bess, math-C-parse-fma):
7648 New functions.
7649 (math-function-table): Add support for more C functions.
7650
7651 2012-05-18 Agustín Martín Domingo <agustin.martin@hispalinux.es>
7652
7653 * textmodes/flyspell.el (flyspell-check-pre-word-p)
7654 (flyspell-check-word-p, flyspell-debug-signal-word-checked):
7655 Protect delay handling for otherchars against empty otherchars.
7656
7657 2012-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
7658
7659 * emacs-lisp/lisp-mode.el (doc-string-elt): Move those properties to
7660 their respective macro declarations.
7661 * skeleton.el (define-skeleton):
7662 * progmodes/compile.el (define-compilation-mode):
7663 * ibuf-macs.el (define-ibuffer-sorter, define-ibuffer-op)
7664 (define-ibuffer-filter):
7665 * emacs-lisp/generic.el (define-generic-mode):
7666 * emacs-lisp/easy-mmode.el (define-minor-mode)
7667 (define-globalized-minor-mode):
7668 * emacs-lisp/cl-macs.el (defun*, defmacro*, defstruct, deftype):
7669 * emacs-lisp/byte-run.el (defsubst):
7670 * custom.el (deftheme): Add doc-string metadata.
7671
7672 2012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
7673
7674 * emacs-lisp/cl-macs.el, emacs-lisp/cl.el: Move indent info.
7675
7676 2012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
7677
7678 * emacs-lisp/pcase.el (pcase--u1): Avoid ((lambda ...) ...).
7679
7680 * emacs-lisp/cl.el: Add edebug specs from cl-specs.el.
7681 * emacs-lisp/cl-macs.el: Idem.
7682 * emacs-lisp/cl-specs.el: Remove.
7683
7684 2012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
7685
7686 Minor renaming of internal CL functions and variables.
7687 * emacs-lisp/cl-seq.el (cl--adjoin): Rename from cl-adjoin.
7688 (cl--position): Rename from cl-position.
7689 (cl--delete-duplicates): Rename from cl-delete-duplicates.
7690 * emacs-lisp/cl.el (cl--gensym-counter): Rename from *gensym-counter*.
7691 (cl--random-state): Rename from *random-state*.
7692
7693 2012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
7694
7695 * emacs-lisp/cl-macs.el (cl-transform-lambda): Don't add spurious
7696 parens around the arg list (bug#11499).
7697
7698 2012-05-17 Juri Linkov <juri@jurta.org>
7699
7700 * isearch.el (word-search-regexp, word-search-backward)
7701 (word-search-forward, word-search-backward-lax)
7702 (word-search-forward-lax): Move functions from search.c
7703 (bug#10145, bug#11381).
7704
7705 2012-05-16 Agustín Martín Domingo <agustin.martin@hispalinux.es>
7706
7707 * textmodes/flyspell.el (flyspell-check-pre-word-p)
7708 (flyspell-check-word-p, flyspell-debug-signal-word-checked):
7709 Delay for otherchars as for normal word components.
7710
7711 2012-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
7712
7713 * minibuffer.el (completion--sifn-requote): Fix last change.
7714 (minibuffer-local-must-match-filename-map):
7715 Move define-obsolete-variable-alias before its var.
7716
7717 2012-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
7718
7719 * emacs-lisp/pcase.el (pcase-let*, pcase-let): Fix edebug spec.
7720
7721 * minibuffer.el (completion--sifn-requote): Handle sifn's truncation
7722 behavior.
7723 (completion--string-equal-p): New function.
7724 (completion--twq-all): Use it to get better assertion failure data.
7725
7726 Only handle ".." and '..' quoting in shell-mode (bug#11466).
7727 * shell.el (shell--unquote&requote-argument, shell--unquote-argument)
7728 (shell--requote-argument): New functions.
7729 (shell-completion-vars): Use them.
7730 (shell--parse-pcomplete-arguments): Rename from
7731 shell-parse-pcomplete-arguments.
7732 * comint.el (comint-word): Obey comint-file-name-quote-list. Simplify.
7733 (comint--unquote&requote-argument): Don't handle ".." and '..' quoting.
7734 Obey comint-file-name-quote-list.
7735
7736 * emacs-lisp/smie.el (smie-indent--bolp-1): New function.
7737 (smie-indent-keyword): Use it.
7738
7739 2012-05-14 Stefan Merten <smerten@oekonux.de>
7740
7741 * textmodes/rst.el (rst-re-alist): Fix loading (bug#11462).
7742
7743 2012-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
7744
7745 * net/rlogin.el (rlogin-mode-map): Fix last change.
7746
7747 2012-05-14 Jason L. Wright <jason.wright@inl.gov> (tiny change)
7748
7749 * mail/smtpmail.el (smtpmail-send-command): Send the command and
7750 the following \r\n using a single `process-send-string', since the
7751 Lotus SMTP server refuses to accept any commands if they are sent
7752 with two `process-send-string's (Bug#11444).
7753
7754 2012-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
7755
7756 * shell.el (shell-parse-pcomplete-arguments):
7757 Obey pcomplete-arg-quote-list inside double-quoted args (Bug#11348).
7758
7759 2012-05-14 Wolfgang Jenkner <wjenkner@inode.at>
7760
7761 * image-mode.el: Fit to width/height for rotated images (Bug#11431).
7762 (image-transform-scale, image-transform-right-angle-fudge): New vars.
7763 (image-transform-width, image-transform-fit-width): New functions.
7764 (image-transform-properties): Use them.
7765 (image-transform-check-size): New function.
7766 (image-toggle-display-image): Use it (for testing).
7767 (image-transform-set-rotation): Reduce angle mod 360.
7768 Delete obsolete comment.
7769
7770 2012-05-14 Wolfgang Jenkner <wjenkner@inode.at>
7771
7772 * image-mode.el: Fix scaling (bug#11399).
7773 (image-transform-resize): Doc fix.
7774 (image-transform-properties): Default scale is 1 and height should
7775 be an integer.
7776
7777 2012-05-13 Johan Bockgård <bojohan@gnu.org>
7778
7779 * emacs-lisp/smie.el (smie-next-sexp): Use accessor `op-forw' rather
7780 than hard-coding `car', to fix misbehavior when moving forward.
7781
7782 2012-05-13 Chong Yidong <cyd@gnu.org>
7783
7784 * emacs-lisp/tabulated-list.el (tabulated-list-format)
7785 (tabulated-list-entries, tabulated-list-padding)
7786 (tabulated-list-sort-key): Make permanent-local.
7787
7788 * ebuff-menu.el: Adapt to Buffer Menu changes (Bug#11455).
7789 (electric-buffer-list): Put electric buffer menu
7790 command descriptions in this docstring, instead of the docstring
7791 of electric-buffer-menu-mode. Code cleanups.
7792 (electric-buffer-menu-mode): Use define-derived-mode. Rename from
7793 Electric-buffer-menu-mode.
7794 (electric-buffer-update-highlight): Minor code cleanup.
7795
7796 2012-05-13 Michael Albinus <michael.albinus@gmx.de>
7797
7798 * net/dbus.el (dbus-call-method): Restore events not from D-Bus.
7799 (Bug#11447)
7800
7801 2012-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
7802
7803 Move define-obsolete-variable-alias before the var's definition.
7804 * vc/log-edit.el (vc-comment-ring, vc-comment-ring-index):
7805 * tooltip.el (tooltip-hook):
7806 * textmodes/reftex-toc.el (reftex-toc-map):
7807 * textmodes/reftex-sel.el (reftex-select-label-map)
7808 (reftex-select-bib-map):
7809 * textmodes/reftex-index.el (reftex-index-map)
7810 (reftex-index-phrases-map):
7811 * speedbar.el (speedbar-syntax-table, speedbar-key-map):
7812 * progmodes/meta-mode.el (meta-mode-map):
7813 * novice.el (disabled-command-hook):
7814 * loadhist.el (unload-hook-features-list):
7815 * frame.el (blink-cursor):
7816 * files.el (find-file-not-found-hooks, write-file-hooks)
7817 (write-contents-hooks):
7818 * emulation/tpu-edt.el (GOLD-map):
7819 * emacs-lock.el (emacs-lock-from-exiting):
7820 * emacs-lisp/generic.el (generic-font-lock-defaults):
7821 * emacs-lisp/chart.el (chart-map):
7822 * dos-fns.el (register-name-alist):
7823 * dired-x.el (dired-omit-files-p):
7824 * desktop.el (desktop-enable):
7825 * cus-edit.el (custom-mode-hook):
7826 * buff-menu.el (buffer-menu-mode-hook):
7827 * bookmark.el (bookmark-read-annotation-text-func)
7828 (bookmark-exit-hooks):
7829 * allout.el (allout-mode-deactivate-hook)
7830 (allout-exposure-change-hook, allout-structure-added-hook)
7831 (allout-structure-deleted-hook, allout-structure-shifted-hook):
7832 * dirtrack.el (dirtrack-toggle, dirtrackp, dirtrack-debug-toggle)
7833 (dirtrack-debug): Move call to define-obsolete-variable-alias so it
7834 comes before the corresponding variable's definition.
7835
7836 2012-05-12 Chong Yidong <cyd@gnu.org>
7837
7838 * buff-menu.el (Buffer-menu-buffer+size-width): Doc fix (Bug#11454).
7839 (Buffer-menu-mouse-select): Restore function (Bug#11459).
7840 (Buffer-menu-mode-map): Bind it.
7841 (Buffer-menu--pretty-name): Add a mouse-face property.
7842
7843 2012-05-11 Stefan Monnier <monnier@iro.umontreal.ca>
7844
7845 * progmodes/prolog.el: Use SMIE. Cleanup regexp setup.
7846 (prolog-upper-case-string, prolog-lower-case-string)
7847 (prolog-atom-char-regexp, prolog-atom-regexp): Initialize in defconst.
7848 (prolog-use-smie, prolog-smie-grammar): New vars.
7849 (prolog-smie-forward-token, prolog-smie-backward-token)
7850 (prolog-smie-rules): New funs.
7851 (prolog-comment-indent): Remove.
7852 (prolog-mode-variables): Use default comment indentation instead.
7853 Setup SMIE.
7854 (prolog-build-case-strings, prolog-set-atom-regexps): Remove.
7855 (prolog-mode): Don't call them any more.
7856 (prolog-electric-colon, prolog-electric-dash)
7857 (prolog-edit-menu-insert-move): Use indent-according-to-mode.
7858
7859 * dabbrev.el (dabbrev-expand): Make "no expansion found" a user-error.
7860
7861 * minibuffer.el (completion--twq-all): Again, allow case differences.
7862
7863 * term.el: Move keymap initialization code to be more idiomatic.
7864 (term-signals-menu, term-mode-map, term-raw-map, term-raw-escape-map)
7865 (term-terminal-menu): Move initialization into declaration.
7866 (term-escape-char): Let the user set it in her .emacs.
7867
7868 * progmodes/sh-script.el: Use post-self-insert-hook&electric-pair-mode.
7869 Provide SMIE-based indentation (not enabled by default yet).
7870 (sh-mode-map): Don't bind electric keys.
7871 Use electric-pair-mode instead of skeleton-pair.
7872 (sh-assignment-regexp): Fit within 80 columns.
7873 (sh-indent-supported): Specify actual shell name instead of boolean.
7874 (sh--maybe-here-document): New fun, from sh-maybe-here-document.
7875 (sh-maybe-here-document): Use it. Make obsolete.
7876 (sh-electric-here-document-mode) New minor mode.
7877 (sh-mode): Use it. Don't set sh-indent-supported-here here.
7878 (sh-smie-sh-grammar, sh-smie--sh-operators, sh-smie--sh-operators-re)
7879 (sh-smie--sh-operators-back-re, sh-indent-after-continuation)
7880 (sh-smie-rc-grammar, sh-use-smie): New vars.
7881 (sh-smie--keyword-p, sh-smie--newline-semi-p, sh-smie--sh-keyword-p)
7882 (sh-smie-sh-forward-token, sh-smie--looking-back-at-continuation-p)
7883 (sh-smie-sh-backward-token, sh-smie--continuation-start-indent)
7884 (sh-smie-sh-rules, sh-smie-rc-rules, sh-smie--sh-keyword-in-p)
7885 (sh-smie--rc-after-special-arg-p, sh-smie-rc-backward-token)
7886 (sh-smie-sh-rules, sh-smie--rc-newline-semi-p): New functions.
7887 (sh-set-shell): Use smie-setup if requested.
7888
7889 * term.el (term-set-escape-char): Properly set term-escape-char.
7890 See http://stackoverflow.com/questions/10524656.
7891
7892 2012-05-10 Chong Yidong <cyd@gnu.org>
7893
7894 * ffap.el (ffap-url-unwrap-local): Make it work right (Bug#9131).
7895 Use url-generic-parse-url, and handle host names and Windows
7896 filenames properly.
7897 (ffap-url-unwrap-remote): Use url-generic-parse-url.
7898 (ffap-url-unwrap-remote): Accept list values, specifying a list of
7899 URL schemes to work on.
7900 (ffap--toggle-read-only): New function.
7901 (ffap-read-only, ffap-read-only-other-window)
7902 (ffap-read-only-other-frame): Use it.
7903 (ffap-fixup-url): Don't check ffap-ftp-regexp, since it is not
7904 necessary for ffap-url-unwrap-remote.
7905
7906 2012-05-10 Dave Abrahams <dave@boostpro.com>
7907
7908 * cus-start.el (create-lockfiles): Add it.
7909
7910 2012-05-09 Chong Yidong <cyd@gnu.org>
7911
7912 * net/browse-url.el (browse-url-url-encode-chars): Use upper-case.
7913 (browse-url-encode-url): Encode spaces and quotes (Bug#6300).
7914
7915 2012-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
7916
7917 * shell.el (shell-completion-vars): Fix last change (bug#11348).
7918
7919 2012-05-09 Chong Yidong <cyd@gnu.org>
7920
7921 * ansi-color.el (ansi-color-process-output): Check for validity of
7922 comint-last-output-start before using it. This avoids a bad
7923 interaction with gdb-mi's input/output buffer.
7924
7925 2012-05-09 Glenn Morris <rgm@gnu.org>
7926
7927 * files.el (dir-locals-read-from-file):
7928 Mention dir-locals in any error message.
7929
7930 2012-05-09 Chong Yidong <cyd@gnu.org>
7931
7932 * emacs-lisp/package.el (package-built-in-p): Handle the `emacs'
7933 package (Bug#11410).
7934
7935 * emacs-lisp/package.el (package-buffer-info): Avoid putting local
7936 variables into description.
7937
7938 2012-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
7939
7940 * shell.el (shell-completion-vars): Set pcomplete-arg-quote-list like
7941 shell-delimiter-argument-list (bug#11348).
7942 (shell-parse-pcomplete-arguments): Obey pcomplete-arg-quote-list.
7943
7944 2012-05-09 Juanma Barranquero <lekktu@gmail.com>
7945
7946 * textmodes/rst.el: Silence byte-compiler warnings.
7947 (rst-re-alist, rst-reset-section-caches): Move around.
7948 (rst-re): Use `characterp', not `char-valid-p'.
7949 (font-lock-beg, font-lock-end): Declare.
7950
7951 * progmodes/idlw-shell.el (specs): Remove reference to deleted
7952 variable `idlwave-shell-activate-alt-keybindings' and simplify.
7953
7954 * eshell/esh-cmd.el (eshell-debug-command): Fix typo in previous change.
7955
7956 2012-05-08 Glenn Morris <rgm@gnu.org>
7957
7958 * files.el (auto-mode-alist): Treat ".make" like ".mk".
7959
7960 2012-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
7961
7962 * vc/log-edit.el: Add GNU coding standards highlighting.
7963 (log-edit-font-lock-gnu-style)
7964 (log-edit-font-lock-gnu-keywords): New vars.
7965 (log-edit-font-lock-keywords): New fun.
7966 (log-edit-mode): Don't fold case in font-lock.
7967 (log-edit-font-lock-keywords): Do not assume case-folding.
7968
7969 * imenu.el: Misc cleanup. Make docstrings out of comments.
7970 Use lexical-binding.
7971 (imenu--index-alist, imenu--last-menubar-index-alist)
7972 (imenu-menubar-modified-tick): Use defvar-local.
7973 (imenu--split-menu): Remove unused var.
7974 (imenu--cleanup-seen): Declare as global.
7975 (imenu--cleanup): Use dolist.
7976
7977 * subr.el (defvar-local): Add debug spec and doc-string position.
7978
7979 2012-05-08 Glenn Morris <rgm@gnu.org>
7980
7981 * language/burmese.el, language/cham.el, language/czech.el:
7982 * language/english.el, language/georgian.el, language/greek.el:
7983 * language/japanese.el, language/khmer.el, language/korean.el:
7984 * language/lao.el, language/misc-lang.el, language/romanian.el:
7985 * language/sinhala.el, language/slovak.el, language/tai-viet.el:
7986 * language/thai.el, language/utf-8-lang.el:
7987 Remove no-byte-compile setting.
7988
7989 * play/zone.el (zone-pgm-stress): Don't pollute kill-ring. (Bug#11388)
7990
7991 2012-05-08 Aaron S. Hawley <aaron.s.hawley@gmail.com>
7992
7993 * progmodes/make-mode.el (makefile-browse):
7994 Remove unnecessary interactive. (Bug#11324)
7995
7996 2012-05-07 Glenn Morris <rgm@gnu.org>
7997
7998 * forms-d2.el, forms-pass.el: Move to ../etc/forms directory.
7999
8000 * international/mule.el (find-auto-coding): Make "unibyte: t" obsolete.
8001
8002 2012-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
8003
8004 * loadup.el: Preload newcomment.el.
8005 * newcomment.el: Move autoload-only code to toplevel.
8006
8007 * buff-menu.el (list-buffers--refresh): Mark `size' as right-align.
8008 * emacs-lisp/tabulated-list.el (tabulated-list-init-header):
8009 Handle new :right-align column property.
8010 (tabulated-list-print-col): Idem, plus use `display' text-property to
8011 try and preserve alignment for variable pitch fonts.
8012
8013 2012-05-07 Chong Yidong <cyd@gnu.org>
8014
8015 * emacs-lisp/tabulated-list.el: Add no-header-line alternative.
8016 (tabulated-list-use-header-line): New var.
8017 (tabulated-list-init-header): Use it.
8018 (tabulated-list-print-fake-header): New function.
8019 (tabulated-list-print): Use it.
8020 (tabulated-list-sort-button-map): Add non-header-line commands.
8021 (tabulated-list-init-header): Add column name property to basic
8022 labels as well.
8023 (tabulated-list-col-sort): Handle non-header-line button case.
8024 (tabulated-list--sort-by-column-name): Fix a corner case.
8025
8026 * buff-menu.el (list-buffers--refresh):
8027 Handle Buffer-menu-use-header-line.
8028
8029 2012-05-06 Chong Yidong <cyd@gnu.org>
8030
8031 * buff-menu.el: Convert to Tabulated List mode.
8032 (Buffer-menu-buffer+size-width): Make obsolete.
8033 (Buffer-menu-name-width, Buffer-menu-size-width): New variables.
8034 (Buffer-menu-mode-map): Inherit from tabulated-list-mode-map.
8035 (Buffer-menu-mode): Derive from tabulated-list-mode. Move command
8036 documentation into docstring of buffer-menu.
8037 (Buffer-menu-toggle-files-only): Add an informative message.
8038 (Buffer-menu-sort): Convert to alias for tabulated-list-sort.
8039 (Buffer-menu-buffer, Buffer-menu-beginning, Buffer-menu-mark)
8040 (Buffer-menu-unmark, Buffer-menu-backup-unmark)
8041 (Buffer-menu-delete, Buffer-menu-save, Buffer-menu-not-modified)
8042 (Buffer-menu-execute, Buffer-menu-select)
8043 (Buffer-menu-marked-buffers, Buffer-menu-toggle-read-only)
8044 (Buffer-menu-bury): Use Tabulated List machinery.
8045 (Buffer-menu-mouse-select, Buffer-menu-sort-by-column)
8046 (Buffer-menu-sort-button-map, Buffer-menu-make-sort-button):
8047 Delete.
8048 (list-buffers--refresh): New function.
8049 (list-buffers-noselect): Use it.
8050 (tabulated-list-entry-size->, Buffer-menu--pretty-name)
8051 (Buffer-menu--pretty-file-name): New helper functions.
8052
8053 * loadup.el: Preload tabulated-list.
8054
8055 * emacs-lisp/tabulated-list.el (tabulated-list-sort): Rename from
8056 tabulated-list-sort-column.
8057 (tabulated-list-init-header): Add the initial aligning space even
8058 if tabulated-list-padding is zero.
8059
8060 2012-05-06 Christopher Schmidt <christopher@ch.ristopher.com>
8061
8062 * emacs-lisp/cl-macs.el (cl-expr-contains): Handle cons cells
8063 whose cdr is not a cons cell correctly (bug#11038).
8064
8065 2012-05-06 Chong Yidong <cyd@gnu.org>
8066
8067 * emacs-lisp/tabulated-list.el (tabulated-list-format):
8068 Accept additional plist in column descriptors.
8069 (tabulated-list-init-header): Obey it.
8070 (tabulated-list-get-entry): New function.
8071 (tabulated-list-put-tag): Use it. Use string-width instead of
8072 length.
8073 (tabulated-list--column-number): New function.
8074 (tabulated-list-print): Use it.
8075 (tabulated-list-print-col): New function.
8076 Set `tabulated-list-column-name' property on each column's text.
8077 (tabulated-list-print-entry): Use it.
8078 (tabulated-list-delete-entry, tabulated-list-set-col):
8079 New functions.
8080 (tabulated-list-sort-column): New command (Bug#11337).
8081
8082 * buff-menu.el (list-buffers): Move C-x C-b binding from
8083 buff-menu.el to bindings.el.
8084
8085 * ebuff-menu.el (Electric-buffer-menu-undefined): Use the
8086 :advertised-binding feature.
8087
8088 2012-05-06 Troels Nielsen <bn.troels@gmail.com> (tiny change)
8089
8090 * progmodes/compile.el (compilation-internal-error-properties):
8091 Calculate start position correctly when end-col is set but
8092 end-line is not (Bug#11382).
8093
8094 2012-05-06 Wolfgang Jenkner <wjenkner@inode.at>
8095
8096 * man.el (Man-unindent): Use text-property-default-nonsticky to
8097 prevent untabify from inheriting face properties (Bug#11408).
8098
8099 2012-05-05 Stefan Merten <smerten@oekonux.de>
8100
8101 * textmodes/rst.el: Major merge with upstream development up to
8102 Docutils SVN r7399 / rst.el V1.2.1.
8103
8104 Clarify maintainership and authors.
8105
8106 (rst-extract-version, rst-cvs-header, rst-cvs-rev)
8107 (rst-cvs-timestamp, rst-svn-rev, rst-svn-timestamp)
8108 (rst-official-version, rst-official-cvs-rev, rst-version)
8109 (rst-package-emacs-version-alist): New functions and variables
8110 for version information.
8111
8112 (rst-bullets, rst-uri-schemes, rst-adornment-chars)
8113 (rst-max-inline-length, rst-re-alist-def, rst-re-alist)
8114 (rst-mode-syntax-table, rst-mode): New and corrected functions
8115 and variables representing reStructuredText features.
8116
8117 (rst-re): New function for reStructuredText regexes. Use in
8118 many places.
8119
8120 (rst-deprecated-keys, rst-call-deprecated, rst-define-key)
8121 (rst-mode-map): Rebind keys.
8122
8123 (rst-mode-lazy, rst-font-lock-keywords)
8124 (rst-font-lock-extend-region)
8125 (rst-font-lock-extend-region-internal)
8126 (rst-font-lock-extend-region-extend)
8127 (rst-font-lock-find-unindented-line-limit)
8128 (rst-font-lock-find-unindented-line-match)
8129 (rst-adornment-level, rst-font-lock-adornment-level)
8130 (rst-font-lock-adornment-match)
8131 (rst-font-lock-handle-adornment-pre-match-form)
8132 (rst-font-lock-handle-adornment-matcher): Major revision of
8133 font-locking. Integrate with other code. Use `jit-lock-mode'.
8134
8135 (rst-preferred-adornments, rst-adjust-hook)
8136 (rst-new-adornment-down, rst-preferred-bullets)
8137 (rst-preferred-bullets, rst-indent, rst-indent-width)
8138 (rst-indent-field, rst-indent-literal-normal)
8139 (rst-indent-literal-minimized, rst-indent-comment): Change,
8140 extend and improve customization.
8141
8142 (rst-line-homogeneous-p, rst-line-homogeneous-nodent-p)
8143 (rst-normalize-cursor-position, rst-get-decoration)
8144 (rst-straighten-deco-spacing, rst-re-bullets, rst-re-items)
8145 (rst-rstrip, rst-toc-insert-find-delete-contents)
8146 (rst-shift-fill-region, rst-compute-bullet-tabs)
8147 (rst-debug-print-tabs, rst-debug-mark-found)
8148 (rst-shift-region-guts, rst-shift-region-right)
8149 (rst-shift-region-left, rst-use-char-classes)
8150 (rst-font-lock-keywords-function)
8151 (rst-font-lock-indentation-point)
8152 (rst-font-lock-find-unindented-line-begin)
8153 (rst-font-lock-find-unindented-line-end)
8154 (rst-font-lock-find-unindented-line)
8155 (rst-font-lock-adornment-point, rst-font-lock-level)
8156 (rst-adornment-level-alist): Remove functions and variables.
8157
8158 (rst-compare-adornments, rst-get-adornment-match)
8159 (rst-suggest-new-adornment, rst-get-adornments-around)
8160 (rst-adornment-complete-p, rst-get-next-adornment)
8161 (rst-adjust-adornment, rst-display-adornments-hierarchy)
8162 (rst-straighten-adornments): Standardize function names to
8163 use "adornment" instead of "decoration". Correct callers.
8164 Similar standardizing in many places.
8165
8166 (rst-update-section, rst-adjust, rst-promote-region)
8167 (rst-enumerate-region, rst-bullet-list-region)
8168 (rst-repeat-last-character): Correct use of `interactive'.
8169
8170 (rst-classify-adornment, rst-find-all-adornments)
8171 (rst-get-hierarchy, rst-adjust-adornment, rst-toc-update)
8172 (rst-find-leftmost-column, rst-repeat-last-character):
8173 Refactor functions.
8174
8175 (rst-find-title-line, rst-reset-section-caches)
8176 (rst-get-adornments-around, rst-adjust-adornment-work)
8177 (rst-arabic-to-roman, rst-roman-to-arabic)
8178 (rst-insert-list-pos, rst-insert-list-new-item)
8179 (rst-insert-list-continue, rst-insert-list, rst-forward-line):
8180 New functions.
8181
8182 (rst-all-sections, rst-section-hierarchy)
8183 (rst-arabic-to-roman, rst-initial-enums, rst-initial-items):
8184 New variables.
8185
8186 (rst-toc-return-wincfg, rst-toc-quit-window): Use window
8187 configuration instead of only buffer. Change where necessary.
8188
8189 (rst-line-tabs, rst-compute-tabs, rst-indent-line)
8190 (rst-shift-region, rst-adaptive-fill): New functions for
8191 indentation and filling.
8192
8193 (rst-comment-line-break, rst-comment-indent)
8194 (rst-comment-insert-comment, rst-comment-region)
8195 (rst-uncomment-region): New functions for handling comments.
8196
8197 (rst-compile): Quote shell arguments.
8198
8199 (rst-compile-pdf-preview, rst-compile-slides-preview):
8200 Delete temporary files after use.
8201
8202 2012-05-05 Glenn Morris <rgm@gnu.org>
8203
8204 * calendar/cal-html.el: Optionally include holidays in the output.
8205 Suggested by Ed Reingold <reingold@emr.cs.iit.edu>.
8206 (cal-html-holidays): New option.
8207 (cal-html-css-default): Add holiday entry.
8208 (holiday-in-range): Autoload it.
8209 (cal-html-htmlify-entry): Add optional class argument.
8210 (cal-html-htmlify-list): Add optional holidays argument.
8211 (cal-html-insert-agenda-days): Include holidays in the output.
8212 (cal-html-one-month): Maybe include holidays.
8213
8214 * calendar/holidays.el (holiday-in-range):
8215 Move here from cal-tex-list-holidays.
8216 * calendar/cal-tex.el (cal-tex-list-holidays):
8217 Make it an obsolete alias for holiday-in-range. Update all callers.
8218
8219 2012-05-05 Chong Yidong <cyd@gnu.org>
8220
8221 * select.el (xselect--encode-string): Always use utf-8 for TEXT on
8222 Nextstep.
8223
8224 2012-05-05 Ransom Williams <auvergnerw@gmail.com> (tiny change)
8225
8226 * files.el (file-auto-mode-skip): New var.
8227 (set-auto-mode-1): Use it.
8228
8229 2012-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
8230
8231 * repeat.el: Use lexical-binding.
8232 (repeat-last-self-insert, repeat-num-input-keys-at-self-insert)
8233 (repeat-undo-count): Remove.
8234 (repeat):
8235 * progmodes/octave-mod.el (octave-abbrev-start):
8236 * progmodes/f90.el (f90-abbrev-start):
8237 * face-remap.el (text-scale-adjust):
8238 * kmacro.el (kmacro-call-macro): Use set-temporary-overlay-map.
8239
8240 * emacs-lisp/pcase.el (pcase--let*): New function.
8241 (pcase--expand, pcase-codegen, pcase--q1): Use it to reduce nesting
8242 a bit more.
8243 (pcase--split-pred): Be more clever about ruling out overlap between
8244 a predicate and some constant pattern.
8245 (pcase--q1): Use `null' instead of (eq foo nil).
8246
8247 * subr.el (setq-local, defvar-local): New macros.
8248 (kbd): Redefine as an alias.
8249 (with-selected-window): Leave unrelated frames alone.
8250 (set-temporary-overlay-map): New function.
8251
8252 2012-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
8253
8254 * subr.el (user-error): New function.
8255 * window.el (switch-to-buffer):
8256 * vc/smerge-mode.el (smerge-resolve-function, smerge-resolve)
8257 (smerge-match-conflict):
8258 * simple.el (previous-matching-history-element)
8259 (next-matching-history-element, goto-history-element, undo-more)
8260 (undo-start):
8261 * progmodes/etags.el (visit-tags-table-buffer, find-tag-tag)
8262 (find-tag-noselect, find-tag-in-order, etags-goto-tag-location)
8263 (next-file, tags-loop-scan, list-tags, complete-tag):
8264 * progmodes/compile.el (compilation-loop):
8265 * mouse.el (mouse-minibuffer-check):
8266 * man.el (Man-bgproc-sentinel, Man-goto-page):
8267 * info.el (Info-find-node-2, Info-extract-pointer, Info-history-back)
8268 (Info-history-forward, Info-follow-reference, Info-menu)
8269 (Info-extract-menu-item, Info-extract-menu-counting)
8270 (Info-forward-node, Info-backward-node, Info-next-menu-item)
8271 (Info-last-menu-item, Info-next-preorder, Info-last-preorder)
8272 (Info-next-reference, Info-prev-reference, Info-index)
8273 (Info-index-next, Info-follow-nearest-node)
8274 (Info-copy-current-node-name):
8275 * imenu.el (imenu--make-index-alist)
8276 (imenu-default-create-index-function, imenu-add-to-menubar):
8277 * files.el (basic-save-buffer, recover-file):
8278 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
8279 * emacs-lisp/checkdoc.el (checkdoc-continue, checkdoc-comments)
8280 (checkdoc-message-text, checkdoc-defun):
8281 * dabbrev.el (dabbrev-completion, dabbrev--abbrev-at-point):
8282 * cus-edit.el (customize-changed-options, customize-rogue)
8283 (customize-saved, custom-variable-set, custom-variable-mark-to-save)
8284 (custom-variable-mark-to-reset-standard)
8285 (custom-variable-reset-backup, custom-face-mark-to-reset-standard)
8286 (custom-file):
8287 * completion.el (check-completion-length):
8288 * comint.el (comint-search-arg)
8289 (comint-previous-matching-input-string-position)
8290 (comint-previous-matching-input)
8291 (comint-replace-by-expanded-history-before-point, comint-send-input)
8292 (comint-copy-old-input, comint-backward-matching-input)
8293 (comint-goto-process-mark, comint-set-process-mark):
8294 * calendar/calendar.el (calendar-cursor-to-date): Use it.
8295 * bindings.el (debug-ignored-errors): Remove regexps, add `user-error'.
8296
8297 2012-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
8298
8299 * dabbrev.el (dabbrev--ignore-case-p): New function.
8300 (dabbrev-completion, dabbrev-expand, dabbrev--substitute-expansion):
8301 Use it.
8302
8303 * files.el (automount-dir-prefix): Mark as obsolete.
8304
8305 2012-05-04 Glenn Morris <rgm@gnu.org>
8306
8307 * patcomp.el, play/bruce.el: Move to obsolete/.
8308
8309 2012-05-04 Paul Eggert <eggert@cs.ucla.edu>
8310
8311 Fix minor Y10k bugs.
8312 * arc-mode.el (archive-unixdate):
8313 * autoinsert.el (auto-insert-alist):
8314 * calc/calc-forms.el (math-this-year):
8315 * emacs-lisp/copyright.el (copyright-current-year)
8316 (copyright-update-year, copyright):
8317 * tar-mode.el (tar-clip-time-string):
8318 * time.el (display-time-update):
8319 Don't assume years have 4 digits.
8320
8321 2012-05-04 Chong Yidong <cyd@gnu.org>
8322
8323 * dos-w32.el (file-name-buffer-file-type-alist)
8324 (direct-print-region-use-command-dot-com):
8325 * ffap.el (ffap-menu-regexp):
8326 * find-file.el (ff-special-constructs):
8327 * follow.el (follow-debug):
8328 * forms.el (forms--debug):
8329 * iswitchb.el (iswitchb-all-frames):
8330 * ido.el (ido-all-frames):
8331 * emacs-lisp/timer.el (timer-max-repeats):
8332 * mail/feedmail.el (feedmail-mail-send-hook)
8333 (feedmail-mail-send-hook-queued):
8334 * mail/footnote.el (footnote-signature-separator):
8335 * mail/mailabbrev.el (mail-alias-separator-string)
8336 (mail-abbrev-mode-regexp):
8337 * mail/rmail.el (rmail-speedbar-match-folder-regexp):
8338 * progmodes/idlwave.el (idlwave-libinfo-file)
8339 (idlwave-default-completion-case-is-down)
8340 (idlwave-library-routines): Convert defvars to defcustoms.
8341
8342 * mail/rmail.el (rmail-decode-mime-charset):
8343 * progmodes/idlw-shell.el (idlwave-shell-print-expression-function)
8344 (idlwave-shell-fix-inserted-breaks)
8345 (idlwave-shell-activate-alt-keybindings)
8346 (idlwave-shell-use-breakpoint-glyph):
8347 * facemenu.el (facemenu-unlisted-faces): Delete obsolete vars.
8348
8349 2012-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
8350
8351 * minibuffer.el (completion--twq-all): Beware completion-ignore-case.
8352
8353 2012-05-03 Wilson Snyder <wsnyder@wsnyder.org>
8354
8355 * progmodes/verilog-mode.el (font-lock-keywords):
8356 Fix mis-highligting auto. Reported by Craig Barner.
8357 (verilog-auto, verilog-auto-undef): Add AUTOUNDEF to remove
8358 defines from global name space. Reported by Dan Dever.
8359 (verilog-auto-reset, verilog-auto-reset-widths)
8360 (verilog-auto-tieoff): Support using unbased numbers for
8361 AUTORESET and AUTOTIEOFF.
8362 (verilog-submit-bug-report): Update variable list.
8363 (verilog-read-auto-params): Fix AUTOINPUT regexps containing
8364 parenthesis from not matching. Reported by Michael Rytting.
8365 (verilog-auto-template-lint): Fix hash error when linting modules
8366 with no used templates.
8367 (verilog-warn, verilog-warn-error)
8368 (verilog-warn-fatal): When non-interactive report multiple
8369 warnings before exiting. Suggested by Brad Dobbie.
8370 (verilog-auto-template-lint, verilog-auto-template-warn-unused)
8371 (verilog-read-auto-template): Add `verilog-auto-template-warn-unused'
8372 to report unused template errors. Reported by Brad Dobbie.
8373 (verilog-read-decls): Fix AUTOWIRE etc on supply0, supply1 type
8374 nets, bug438. Reported by Vns Blore.
8375 (verilog-auto-inout-module, verilog-auto-reg)
8376 (verilog-read-decls, verilog-read-sub-decls-sig)
8377 (verilog-signals-edit-wire-reg, verilog-signals-with):
8378 Fix passing of Verilog data types in ANSI input/output ports
8379 such as "output logic" into the AUTOs. Special case "wire" and
8380 "reg" for backwards compatibility presuming Verilog 2001.
8381 (verilog-auto-ascii-enum): Add "auto enum" as alias.
8382 (verilog-preprocess): Fix replication of preprocess output.
8383 Reported by Brad Dobbie.
8384 (verilog-auto-inst-interfaced-ports):
8385 Create verilog-auto-inst-interfaced-ports, bug429.
8386 Reported by Julian Gorfajn.
8387 (verilog-after-save-font-hook)
8388 (verilog-before-save-font-hook): New variable.
8389 (verilog-modi-cache-results, verilog-save-font-mod-hooked)
8390 (verilog-save-font-mods): Wrap disabling fontification, reported
8391 by David Rogoff.
8392 (verilog-do-indent, verilog-pretty-declarations-auto)
8393 (verilog-sk-def-reg): Fix obeying `verilog-auto-lineup', bug305.
8394 Reported by Pierre-David Pfister.
8395 (verilog-set-auto-endcomments): Fix endtask auto comments outside
8396 of class declarations, bug292. Reported by Kevin Heilman.
8397 (verilog-read-decls): Fix 'parameter type' not appearing in
8398 AUTOINSTPARAM, bug340. Reported by Jonathan Greenlaw.
8399 (verilog-auto-logic): Fix when AUTOLOGIC present to properly do
8400 AUTOINPUTs, bug411. Reported by Jonathan Greenlaw.
8401 (verilog-read-auto-lisp): Avoid syntax-ppss warning on AUTOLISP.
8402 Reported by David Kravitz.
8403
8404 2012-05-03 Michael McNamara <mac@mail.brushroad.com>
8405
8406 * progmodes/verilog-mode.el (verilog-pretty-expr): Don't line up
8407 assignment with tests in ifs and for loops.
8408 (verilog-extended-complete-re, verilog-complete-reg): Change so
8409 that DPI inport functions don't look like fuction declarations.
8410 (verilog-pretty-expr): Don't line up assignment
8411 operations to the test and increment in if and for loops
8412 (verilog-extended-complete-re, verilog-complete-reg): Change so
8413 that DPI inport functions don't look like fuction declarations.
8414
8415 2012-05-03 Kenichi Handa <handa@m17n.org>
8416
8417 * mail/rmailmm.el (rmail-show-mime): Catch an error caused by text
8418 decoding, and show a warning message without signaling an error
8419 (Bug#11282).
8420
8421 2012-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
8422
8423 * emacs-lisp/bytecomp.el
8424 (byte-compile-file-form-custom-declare-variable): Compile all elements,
8425 since cconv.el might have introduced :fun-body, internal-make-closure,
8426 and friends for bytecomp to handle (bug#11391).
8427 * custom.el (defcustom): Avoid ((λ ..) ..).
8428
8429 2012-05-02 Stefan Monnier <monnier@iro.umontreal.ca>
8430
8431 * subr.el (read-passwd): Better clean after ourselves (bug#11392).
8432
8433 2012-05-02 Juanma Barranquero <lekktu@gmail.com>
8434
8435 * notifications.el (dbus-debug):
8436 * term/linux.el (gpm-mouse-enable):
8437 * term/screen.el (xterm-register-default-colors): Declare.
8438
8439 2012-05-02 Chong Yidong <cyd@gnu.org>
8440
8441 * cus-start.el (gc-cons-percentage, exec-suffixes)
8442 (dos-display-scancodes, dos-hyper-key, dos-super-key)
8443 (dos-keypad-mode, debug-on-signal, vertical-centering-font-regexp)
8444 (make-cursor-line-fully-visible, void-text-area-pointer)
8445 (font-list-limit): Add customization data.
8446
8447 * allout.el (allout-exposure-change-functions)
8448 (allout-structure-added-functions)
8449 (allout-structure-deleted-functions)
8450 (allout-structure-shifted-functions): Rename abnormal hooks from
8451 *-hook, and convert to defcustoms.
8452 (allout-after-copy-or-kill-hook, allout-post-undo-hook):
8453 Convert to defcustoms.
8454 (allout-mode-hook, allout-mode-deactivate-hook): Doc fix.
8455
8456 * allout-widgets.el: Hook callers changed.
8457
8458 2012-05-02 Eli Zaretskii <eliz@gnu.org>
8459
8460 * mail/rmail.el (rmail-yank-current-message): Use the encoding of
8461 the yanked message in preference to the default value of
8462 buffer-file-coding-system.
8463
8464 2012-05-02 Martin Rudalics <rudalics@gmx.at>
8465
8466 * window.el (display-buffer--action-function-custom-type):
8467 Fix entry.
8468
8469 2012-05-02 Alan Mackenzie <acm@muc.de>
8470
8471 * progmodes/cc-defs.el (c-version): Update to 5.32.3.
8472
8473 2012-05-01 Glenn Morris <rgm@gnu.org>
8474
8475 * cus-start.el (suggest-key-bindings): Remove, now it is in Lisp.
8476
8477 * eshell/esh-cmd.el (eshell-debug-command): Doc fix. Add :set.
8478
8479 * cus-edit.el (custom-variable-documentation): Simplify with format.
8480
8481 2012-05-01 Aaron S. Hawley <aaron.s.hawley@gmail.com>
8482 Stefan Monnier <monnier@iro.umontreal.ca>
8483
8484 * simple.el (suggest-key-bindings, execute-extended-command):
8485 Move from keyboard.c.
8486
8487 2012-05-01 Chong Yidong <cyd@gnu.org>
8488
8489 * follow.el: Eliminate advice.
8490 (set-process-filter, process-filter, sit-for): Advice deleted.
8491 (follow-mode-off-hook): Obsolete hook removed.
8492 (follow-avoid-tail-recenter-p, follow-process-filter-alist):
8493 Vars deleted.
8494 (follow-auto): Use a :set function.
8495 (follow-mode): Rewritten. Don't advise process filters.
8496 (follow-switch-to-current-buffer-all, follow-scroll-up)
8497 (follow-scroll-down): Assume follow-mode is bound.
8498 (follow-comint-scroll-to-bottom)
8499 (follow-align-compilation-windows): New functions.
8500 (follow--window-sorter): New function.
8501 (follow-all-followers): Use it to explicitly sort windows by their
8502 positions; don't make assumptions about next-window order.
8503 (follow-windows-start-end, follow-delete-other-windows-and-split)
8504 (follow-calc-win-start): Doc fix.
8505 (follow-windows-aligned-p, follow-select-if-visible): Don't call
8506 vertical-motion unnecessarily.
8507 (follow-adjust-window): New function.
8508 (follow-post-command-hook): Use it.
8509 (follow-call-set-process-filter, follow-call-process-filter)
8510 (follow-intercept-process-output, follow-tidy-process-filter-alist)
8511 (follow-stop-intercept-process-output, follow-generic-filter):
8512 Functions deleted.
8513 (follow-scroll-bar-toolkit-scroll, follow-scroll-bar-drag)
8514 (follow-scroll-bar-scroll-up, follow-scroll-bar-scroll-down):
8515 New functions, replacing advice on scroll-bar-* commands.
8516 (follow-mwheel-scroll): New function (Bug#4112).
8517
8518 * comint.el (comint-adjust-point): New function.
8519 (comint-postoutput-scroll-to-bottom): Use it.
8520 Call follow-comint-scroll-to-bottom for Follow mode buffers.
8521
8522 2012-05-01 Glenn Morris <rgm@gnu.org>
8523
8524 * term/AT386.el, term/apollo.el, term/bobcat.el, term/cygwin.el:
8525 * term/iris-ansi.el, term/linux.el, term/lk201.el, term/news.el:
8526 * term/screen.el, term/vt102.el, term/vt125.el, term/vt200.el:
8527 * term/vt201.el, term/vt220.el, term/vt240.el, term/vt300.el:
8528 * term/vt320.el, term/vt400.el, term/vt420.el, term/wyse50.el:
8529 Remove no-byte-compile setting.
8530
8531 2012-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
8532
8533 * minibuffer.el (completion-table-with-quoting): Fix compatibility
8534 all-completions code to not return a number in the last cdr.
8535
8536 2012-04-30 Leo Liu <sdl.web@gmail.com>
8537
8538 * ibuf-ext.el (ibuffer-diff-buffer-with-file-1): Avoid buffer
8539 read-only error.
8540
8541 2012-04-29 Chong Yidong <cyd@gnu.org>
8542
8543 * follow.el (follow-calc-win-end): Rewrite to handle partial
8544 screen lines correctly (Bug#8390).
8545 (follow-avoid-tail-recenter): Minor cleanup.
8546
8547 2012-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
8548
8549 Avoid the obsolete `assoc' package.
8550 * speedbar.el (speedbar-refresh): Avoid adelete.
8551 (speedbar-file-lists): Simplify and avoid aput.
8552 * man.el (Man--sections, Man--refpages): New vars, replacing
8553 Man-sections-alist and Man-refpages-alist.
8554 (Man-build-section-alist, Man-build-references-alist):
8555 Use them; avoid aput.
8556 (Man--last-section, Man--last-refpage): New vars.
8557 (Man-follow-manual-reference): Use them.
8558 Use the `default' arg of completing-read.
8559 (Man-goto-section): Idem. Move prompt to the `interactive' spec.
8560
8561 2012-04-27 Chong Yidong <cyd@gnu.org>
8562
8563 * vc/diff.el (diff-sentinel): Go to bob (Bug#10259).
8564
8565 * startup.el (x-apply-session-resources): New function.
8566
8567 * term/ns-win.el (ns-initialize-window-system):
8568 * term/w32-win.el (w32-initialize-window-system):
8569 * term/x-win.el (x-initialize-window-system): Use it to properly
8570 set menu-bar-mode and other vars from X resources, even if the
8571 initial frame is not a window-system frame (Bug#2299).
8572
8573 * subr.el (read-key): Avoid running filter function when setting
8574 up temporary tool bar entries (Bug#9922).
8575
8576 2012-04-27 Andreas Schwab <schwab@linux-m68k.org>
8577
8578 * vc/vc-git.el (vc-git-state): Fix regexp matching diff output.
8579 (Bug#11344)
8580
8581 2012-04-27 Chong Yidong <cyd@gnu.org>
8582
8583 * select.el (xselect--encode-string): New function, split from
8584 xselect-convert-to-string.
8585 (xselect-convert-to-string): Use it.
8586 (xselect-convert-to-filename, xselect-convert-to-os)
8587 (xselect-convert-to-host, xselect-convert-to-user): Ensure that
8588 returned strings are properly encoded (Bug#11315).
8589
8590 2012-04-27 Chong Yidong <cyd@gnu.org>
8591
8592 * simple.el (delete-active-region): Move to killing custom group.
8593
8594 2012-04-27 Andreas Schwab <schwab@linux-m68k.org>
8595
8596 * progmodes/which-func.el (which-func-current): Quote %
8597 characters for mode-line processing.
8598
8599 2012-04-27 Chong Yidong <cyd@gnu.org>
8600
8601 * xml.el (xml-parse-region, xml-parse-tag): Avoid errors due to
8602 reaching eob (Bug#11286).
8603
8604 2012-04-27 Eli Zaretskii <eliz@gnu.org>
8605
8606 * progmodes/gdb-mi.el (gdb-control-level): New variable.
8607 (gdb): Make it buffer-local and init to zero.
8608 (gdb-control-commands-regexp): New variable.
8609 (gdb-send): Don't wrap in "-interpreter-exec console" if
8610 gdb-control-level is positive. Increment gdb-control-level
8611 whenever the command matches gdb-control-commands-regexp, and
8612 decrement it each time the command is "end". (Bug#11279)
8613
8614 2012-04-27 Martin Rudalics <rudalics@gmx.at>
8615
8616 * window.el (adjust-window-trailing-edge, enlarge-window)
8617 (shrink-window, window-resize):
8618 * mouse.el (mouse-drag-line): Fix resizing of minibuffer
8619 windows (Bug#11276).
8620
8621 2012-04-27 Chong Yidong <cyd@gnu.org>
8622
8623 * progmodes/pascal.el (pascal--extra-indent): Rename from ind, to
8624 fix "missing prefix" warning. All callers changed.
8625
8626 2012-04-27 Stefan Monnier <monnier@iro.umontreal.ca>
8627
8628 * emacs-lisp/assoc.el: Move to obsolete/.
8629
8630 2012-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
8631
8632 * emacs-lisp/assoc.el (aget): Fix dynamic-scoping issue (bug#11352).
8633
8634 * term/ns-win.el (ns-define-service):
8635 * progmodes/pascal.el (pascal-goto-defun):
8636 * progmodes/js.el (js--read-tab):
8637 * progmodes/etags.el (tags-lazy-completion-table):
8638 * emacs-lisp/syntax.el (syntax-propertize-via-font-lock):
8639 * emacs-lisp/ewoc.el (ewoc--wrap):
8640 * emacs-lisp/assoc.el (aput, adelete, amake):
8641 * doc-view.el (doc-view-convert-current-doc):
8642 * vc/diff.el (diff-no-select): Replace lexical-let by lexical-binding.
8643
8644 2012-04-26 Chong Yidong <cyd@gnu.org>
8645
8646 * image.el (image-type-from-buffer): Only return supported image
8647 type (Bug#9045).
8648
8649 * vc/diff-mode.el (diff-beginning-of-hunk): Return a meaningful
8650 value, for symmetry with diff-end-of-hunk.
8651 (diff-split-hunk, diff-find-source-location)
8652 (diff-ignore-whitespace-hunk, diff-refine-hunk): Use it.
8653 (diff-bounds-of-hunk, diff-bounds-of-file): New functions.
8654 (diff-restrict-view, diff-hunk-kill, diff-file-kill): Use them to
8655 compute the relevant hunk or file properly (Bug#6005).
8656 (diff-file-junk-re): Add bzr's "modified file" tag (Bug#6041).
8657
8658 2012-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
8659
8660 * vc/vc-mtn.el:
8661 * vc/vc-hg.el:
8662 * vc/vc-git.el:
8663 * vc/vc-dir.el:
8664 * vc/vc-cvs.el:
8665 * vc/vc-bzr.el:
8666 * vc/vc-arch.el:
8667 * vc/vc.el: Replace lexical-let by lexical-binding.
8668 * minibuffer.el (lazy-completion-table): Avoid ((λ ...) ...).
8669 * emacs-lisp/cl-macs.el (lexical-let): Fix use in lexical-binding.
8670 * emacs-lisp/cconv.el (cconv-analyse-form): Warn use of ((λ ...) ...).
8671
8672 2012-04-26 Chong Yidong <cyd@gnu.org>
8673
8674 * vc/diff-mode.el (diff-undo): New command (Bug#5302).
8675 (diff-mode-shared-map): Bind it to / and [remap undo].
8676
8677 * vc/ediff-wind.el (ediff-setup-windows-default): New function.
8678 (ediff-window-setup-function): Use it as the default, to set up
8679 windows based on whether the current frame is graphical (Bug#2138).
8680 (ediff-choose-window-setup-function-automatically): Make obsolete.
8681
8682 * vc/ediff-init.el: Always define ediff-pixel-width/height.
8683
8684 2012-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
8685
8686 * ffap.el: Remove old code for obsolete package.
8687 (ffap-complete-as-file-p): Remove.
8688
8689 Use completion-table-with-quoting for comint and pcomplete.
8690 * comint.el (comint--unquote&requote-argument)
8691 (comint--unquote-argument, comint--requote-argument): New functions.
8692 (comint--unquote&expand-filename, comint-unquote-filename): Obsolete.
8693 (comint-quote-filename): Use regexp-opt-charset.
8694 (comint--common-suffix, comint--common-quoted-suffix)
8695 (comint--table-subvert): Remove.
8696 (comint-unquote-function, comint-requote-function): New vars.
8697 (comint--complete-file-name-data): Use them with
8698 completion-table-with-quoting.
8699 * pcmpl-unix.el (pcomplete/scp): Use completion-table-subvert.
8700 * pcomplete.el (pcomplete-arg-quote-list)
8701 (pcomplete-quote-arg-hook, pcomplete-quote-argument): Obsolete.
8702 (pcomplete-unquote-argument-function): Default to non-nil.
8703 (pcomplete-unquote-argument): Simplify.
8704 (pcomplete--common-quoted-suffix): Remove.
8705 (pcomplete-requote-argument-function): New var.
8706 (pcomplete--common-suffix): New function.
8707 (pcomplete-completions-at-point): Use completion-table-with-quoting
8708 and completion-table-subvert.
8709
8710 * minibuffer.el: Use completion-table-with-quoting for read-file-name.
8711 (minibuffer--double-dollars): Preserve properties.
8712 (completion--sifn-requote): New function.
8713 (completion--file-name-table): Rewrite using it and c-t-with-quoting.
8714
8715 * minibuffer.el: Add support for completion of quoted/escaped data.
8716 (completion-table-with-quoting, completion-table-subvert): New funs.
8717 (completion--twq-try, completion--twq-all): New functions.
8718 (completion--nth-completion): New function.
8719 (completion-try-completion, completion-all-completions): Use it.
8720
8721 2012-04-25 Leo Liu <sdl.web@gmail.com>
8722
8723 * progmodes/python.el (python-pdbtrack-get-source-buffer):
8724 Use compilation-message if available to find real filename.
8725
8726 2012-04-25 Chong Yidong <cyd@gnu.org>
8727
8728 * vc/diff-mode.el (diff-setup-whitespace): New function.
8729 (diff-mode): Use it.
8730
8731 * vc/diff.el (diff-sentinel):
8732 * vc/vc.el (vc-diff-finish): Call diff-setup-whitespace to assign
8733 Whitespace mode variables based on diff style (Bug#8612).
8734
8735 2012-04-25 Leo Liu <sdl.web@gmail.com>
8736
8737 * progmodes/python.el (python-send-region): Add suffix .py to the
8738 temp file.
8739
8740 * files.el (auto-mode-alist): Use javascript-mode instead.
8741
8742 2012-04-25 Alex Harsanyi <AlexHarsanyi@gmail.com>
8743
8744 Sync with soap-client repository. Support SOAP simpleType (Bug#10331).
8745
8746 * net/soap-client.el (soap-resolve-references-for-sequence-type)
8747 (soap-resolve-references-for-array-type): Hack to prevent self
8748 references, see Bug#9.
8749 (soap-parse-envelope): Report the contents of the 'detail' node
8750 when receiving a fault reply.
8751 (soap-parse-envelope): Report the contents of the entire 'detail' node.
8752
8753 * net/soap-inspect.el (soap-sample-value-for-simple-type)
8754 (soap-inspect-simple-type): New function.
8755
8756 * net/soap-client.el (soap-simple-type): New struct.
8757 (soap-default-xsd-types, soap-default-soapenc-types)
8758 (soap-decode-basic-type, soap-encode-basic-type):
8759 support unsignedInt and double basic types.
8760 (soap-resolve-references-for-simple-type)
8761 (soap-parse-simple-type, soap-encode-simple-type): New function.
8762 (soap-parse-schema): Parse xsd:simpleType declarations.
8763
8764 * net/soap-client.el (soap-default-xsd-types)
8765 (soap-default-soapenc-types): Add integer, byte and anyURI types.
8766 (soap-parse-complex-type-complex-content): Use `soap-wk2l' to find
8767 the local name of "soapenc:Array".
8768 (soap-decode-basic-type, soap-encode-basic-type): Support encoding
8769 decoding integer, byte and anyURI xsd types.
8770
8771 2012-04-25 Chong Yidong <cyd@gnu.org>
8772
8773 * cus-edit.el (custom-buffer-create-internal): Update header text.
8774
8775 2012-04-25 Eli Zaretskii <eliz@gnu.org>
8776
8777 * progmodes/gdb-mi.el (gdb-init-1): Condition Windows-specific
8778 settings on 'system-type', not on 'window-system'. On MS-Windows,
8779 set interactive-mode on in GDB.
8780
8781 2012-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
8782
8783 * progmodes/ruby-mode.el: Simplify last change, and cleanup code.
8784 (ruby-syntax-propertize-regexp): Remove.
8785 (ruby-syntax-propertize-function): Split regexp into chunks.
8786 Match following code directly.
8787
8788 2012-04-24 Dmitry Gutov <dgutov@yandex.ru>
8789
8790 * progmodes/ruby-mode.el: Handle Cucumber defs (bug#6286).
8791 (ruby-syntax-propertize-regexp): New function.
8792 (ruby-syntax-propertize-function): Use it to handle regexp not preceded
8793 by a special keyword.
8794
8795 * progmodes/ruby-mode.el: Handle general delimited literals (bug#6286).
8796 (ruby-syntax-general-delimiters-goto-beg)
8797 (ruby-syntax-propertize-general-delimiters): New functions.
8798 (ruby-syntax-propertize-function): Use them to handle GDL.
8799 (ruby-font-lock-keywords): Move old handling of GDL...
8800 (ruby-font-lock-syntactic-keywords): .. to here.
8801 (ruby-calculate-indent): Adjust indentation for GDL.
8802
8803 2012-04-24 Michael Albinus <michael.albinus@gmx.de>
8804
8805 * notifications.el (top): Remove unneeded declarations.
8806 (notifications-specification-version): Change to "1.2".
8807 (notifications-interface, notifications-notify-method)
8808 (notifications-close-notification-method): Fix docstring.
8809 (notifications-get-capabilities-method): New defconst.
8810 (notifications-notify): Add :action-items, :resident and
8811 :transient hints. Change "image_data" to "image-data" and
8812 "image_path" to "image-path".
8813 (notifications-get-capabilities): New defun.
8814
8815 2012-04-24 Leo Liu <sdl.web@gmail.com>
8816
8817 * progmodes/python.el: Move hideshow setup to the end.
8818
8819 2012-04-24 Martin Rudalics <rudalics@gmx.at>
8820
8821 * window.el (handle-select-window): Clear echo area since this is
8822 no more done by read_char (Bug#11304).
8823
8824 2012-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
8825
8826 * ibuffer.el (ibuffer-mode-map): Bind `/ m' to filter-used-mode
8827 and `/ M' to filter-derived-mode.
8828 * ibuf-ext.el (ibuffer-list-buffer-modes): Simplify; avoid add-to-list.
8829 (ibuffer-filter-by-mode, ibuffer-filter-by-used-mode)
8830 (ibuffer-mark-by-mode): Use default rather than initial-input.
8831 (ibuffer-filter-by-derived-mode): Autoload and require-match.
8832
8833 2012-04-24 Ivan Andrus <darthandrus@gmail.com> (tiny change)
8834
8835 * ibuf-ext.el (ibuffer-list-buffer-modes): Add `include-parents' arg.
8836 (ibuffer-filter-by-derived-mode): New filter.
8837 * ibuffer.el (ibuffer-mode-map): Bind to `/ w'.
8838
8839 2012-04-23 Andreas Politz <politza@fh-trier.de>
8840
8841 * subr.el (accept-change-group): Fix arg usage (Bug#6095).
8842
8843 2012-04-23 Chong Yidong <cyd@gnu.org>
8844
8845 * cus-edit.el (customize-apropos, customize-apropos-options):
8846 Disable matching of non-option variables (Bug#11176).
8847 (customize-option, customize-option-other-window)
8848 (customize-changed-options): Doc fix.
8849 (customize-apropos-options, customize-apropos-faces)
8850 (customize-apropos-groups): Use apropos-read-pattern (Bug#11124).
8851
8852 * apropos.el (apropos-read-pattern): Make prompt less cryptic.
8853 Fix word list splitting (Bug#11132).
8854 (apropos-symbol, apropos-keybinding, apropos-label)
8855 (apropos-property, apropos-function-button)
8856 (apropos-variable-button, apropos-misc-button): New faces.
8857 (apropos-symbol-face, apropos-keybinding-face)
8858 (apropos-label-face, apropos-property-face, apropos-match-face):
8859 Variables removed (Bug#8396).
8860 (apropos-library-button, apropos-format-plist, apropos-print)
8861 (apropos-print-doc, apropos-describe-plist): Callers changed.
8862
8863 2012-04-23 Michael Albinus <michael.albinus@gmx.de>
8864
8865 * net/xesam.el (xesam-mode-map): Use let-bound map in
8866 initialization. (Bug#11292)
8867
8868 2012-04-23 Agustín Martín Domingo <agustin.martin@hispalinux.es>
8869
8870 Preserve ispell session localwords when switching back to
8871 original buffer.
8872
8873 * textmodes/ispell.el (ispell-buffer-session-localwords):
8874 New buffer-local variable to hold buffer session localwords.
8875 (ispell-kill-ispell): Add option 'clear to delete session
8876 localwords.
8877 (ispell-command-loop, ispell-change-dictionary)
8878 (ispell-buffer-local-words): Preserve session localwords when
8879 needed.
8880
8881 * textmodes/flyspell.el (flyspell-process-localwords)
8882 (flyspell-do-correct): Preserve session localwords when needed.
8883
8884 2012-04-23 Agustín Martín Domingo <agustin.martin@hispalinux.es>
8885
8886 * textmodes/ispell.el (ispell-insert-word) Remove unneeded function
8887 using obsolete `translation-table-for-input'.
8888 (ispell-word, ispell-process-line, ispell-complete-word):
8889 Use plain `insert' instead of removed `ispell-insert-word'.
8890
8891 2012-04-22 Chong Yidong <cyd@gnu.org>
8892
8893 * cus-edit.el (custom-variable-menu)
8894 (custom-variable-reset-saved, custom-face-menu)
8895 (custom-face-reset-saved): If there is no saved value, make the
8896 "reset-saved" operation bring back the default (Bug#9509).
8897 (custom-face-state): Properly detect themed faces.
8898
8899 * faces.el (face-spec-set): Stop supporting deprecated form of
8900 third arg.
8901
8902 2012-04-22 Michael Albinus <michael.albinus@gmx.de>
8903
8904 Move functions from C to Lisp. Make non-blocking method calls
8905 the default. Implement further D-Bus standard interfaces.
8906
8907 * net/dbus.el (dbus-message-internal): Declare function.
8908 Remove unneeded function declarations.
8909 (defvar dbus-message-type-invalid, dbus-message-type-method-call)
8910 (dbus-message-type-method-return, dbus-message-type-error)
8911 (dbus-message-type-signal): Declare variables. Remove local
8912 definitions.
8913 (dbus-interface-dbus, dbus-interface-peer)
8914 (dbus-interface-introspectable, dbus-interface-properties)
8915 (dbus-path-emacs, dbus-interface-emacs, dbus-return-values-table):
8916 Adapt docstring.
8917 (dbus-interface-objectmanager): New defconst.
8918 (dbus-call-method, dbus-call-method-asynchronously)
8919 (dbus-send-signal, dbus-method-return-internal)
8920 (dbus-method-error-internal, dbus-register-service)
8921 (dbus-register-signal, dbus-register-method): New defuns, moved
8922 from dbusbind.c
8923 (dbus-call-method-handler, dbus-setenv)
8924 (dbus-get-all-managed-objects, dbus-managed-objects-handler):
8925 New defuns.
8926 (dbus-call-method-non-blocking): Make it an obsolete function.
8927 (dbus-unregister-object, dbus-unregister-service)
8928 (dbus-handle-event, dbus-register-property)
8929 (dbus-property-handler): Obey the new structure of
8930 `bus-registered-objects'.
8931 (dbus-introspect): Use `dbus-call-method'. Use a timeout.
8932 (dbus-get-property, dbus-set-property, dbus-get-all-properties):
8933 Use `dbus-call-method'.
8934
8935 2012-04-22 Chong Yidong <cyd@gnu.org>
8936
8937 * cus-edit.el (custom-commands, custom-reset-menu)
8938 (Custom-reset-standard): Tweak labels.
8939 (custom-reset-button-menu): Change default to t.
8940 (custom-buffer-create-internal): For the custom-reset-button-menu
8941 case, put the revert button first.
8942 (custom-group-subtitle): New face.
8943 (custom-group-value-create): Align docstring to a specific column.
8944
8945 * wid-edit.el (widget-documentation-link-add): Don't handle
8946 indentation in this function.
8947 (widget-documentation-string-indent-to): New function.
8948 (widget-documentation-string-value-create): Use it.
8949
8950 * autorevert.el (auto-revert):
8951 * epg-config.el (epg):
8952 * ibuffer.el (ibuffer):
8953 * mpc.el (mpc):
8954 * ses.el (ses):
8955 * eshell/eshell.el (eshell):
8956 * net/ange-ftp.el (ange-ftp):
8957 * progmodes/ebnf2ps.el (postscript):
8958 * progmodes/flymake.el (flymake):
8959 * progmodes/prolog.el (prolog):
8960 * progmodes/verilog-mode.el (verilog-mode):
8961 * progmodes/which-func.el (which-func):
8962 * term/xterm.el (xterm):
8963 * textmodes/picture.el (picture):
8964 * textmodes/tildify.el (tildify):
8965 * vc/ediff.el (ediff): Tweak defgroups to improve presentation in
8966 customization buffers.
8967
8968 2012-04-22 Alan Mackenzie <acm@muc.de>
8969
8970 * progmodes/cc-engine.el (c-append-lower-brace-pair-to-state-cache):
8971 Adding a ) can hide the resulting (..) from searches. Fix it.
8972 Bound the backward search to the position of the existing (.
8973
8974 2012-04-21 Juanma Barranquero <lekktu@gmail.com>
8975
8976 * progmodes/verilog-mode.el (verilog-mode): Check whether
8977 which-func-modes is t before adding verilog-mode.
8978 Reported by Andy Moreton <andrewjmoreton@gmail.com>.
8979
8980 2012-04-21 Leo Liu <sdl.web@gmail.com>
8981
8982 * net/rcirc.el (rcirc): Avoid error when process-contact returns t.
8983
8984 2012-04-21 Michael Vehrs <Michael.Burschik@gmx.de>
8985
8986 * woman.el: Add support for "T{ T}" tbl syntax, and fix the
8987 filling of the last column of a table (Bug#5635).
8988 (woman-find-next-control-line): New arg, specifying an additional
8989 regexp component for the control line.
8990 (woman2-roff-buffer): Use it.
8991 (woman-break-table): New function.
8992 (woman2-TS): Use it.
8993
8994 2012-04-21 Chong Yidong <cyd@gnu.org>
8995
8996 * woman.el (woman-set-buffer-display-table, woman-decode-region)
8997 (woman-horizontal-escapes, woman-negative-vertical-space)
8998 (woman-tab-to-tab-stop, woman2-fc, woman2-TS)
8999 (WoMan-warn-ignored): Use ?\s instead of ?\ .
9000
9001 2012-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
9002
9003 * minibuffer.el (completion-file-name-table): Complete user names.
9004
9005 2012-04-20 Leo Liu <sdl.web@gmail.com>
9006
9007 * font-lock.el (lisp-font-lock-keywords-2): Add pcase, pcase-let
9008 and pcase-let*.
9009
9010 2012-04-20 Chong Yidong <cyd@gnu.org>
9011
9012 * server.el (server-execute): Respect initial-buffer-choice if it
9013 is a string and there are no files to open (Bug#2825).
9014 (server-create-window-system-frame, server-create-tty-frame):
9015 Don't switch buffers here.
9016 (server-process-filter): Only try to open a window system frame if
9017 compiled with graphical support (Bug#8314).
9018
9019 2012-04-20 Dan Nicolaescu <dann@gnu.org>
9020
9021 * battery.el (battery-echo-area-format): Display remaining time
9022 for sysfs backend too (Bug#11269).
9023 (battery-linux-sysfs): Fix conditional for the charge.
9024
9025 2012-04-20 Chong Yidong <cyd@gnu.org>
9026
9027 * progmodes/gdb-mi.el (gdb): Revert previous change.
9028 (gdb-inferior-io--init-proc): New function.
9029 (gdb-init-1): Use it.
9030 (gdb-inferior-io-sentinel): New sentinel for the gdb-inferior pty,
9031 responsible for allocating a new pty and hooking it to gdb when
9032 the old pty gets an EIO due to process exit.
9033 (gdb-delchar-or-quit): New command. Bind it in gdb-mi buffers.
9034 (gdb-tooltip-print): Don't use obsolete tooltip-use-echo-area.
9035 (gdb-inferior-io--maybe-delete-pty): Move into gdb-reset.
9036
9037 2012-04-20 Eli Zaretskii <eliz@gnu.org>
9038
9039 * window.el (window-min-size, window-sizable, window-min-delta)
9040 (window-max-delta, window--resizable, window-resizable)
9041 (window-total-size, window-full-height-p, window-full-width-p)
9042 (window-in-direction, window--resize-mini-window, window-resize)
9043 (window--resize-child-windows-normal)
9044 (window--resize-child-windows, window--resize-siblings)
9045 (window--resize-this-window, adjust-window-trailing-edge)
9046 (enlarge-window, shrink-window): Doc fixes.
9047
9048 2012-04-20 Chong Yidong <cyd@gnu.org>
9049
9050 * progmodes/gdb-mi.el (gdb-inferior-io--maybe-delete-pty):
9051 New function to call delete-process on the gdb-inferior buffer's pty.
9052 (gdb-reset): Use it, instead of relying on kill-buffer to kill the
9053 pty process (Bug#11273).
9054 (gdb-update): New arg to suppress talking to the gdb process.
9055 (gdb-done-or-error): Use it.
9056 (gdb-stopped-functions): Rename from gdb-stopped-hooks.
9057 (gdb): Call gdb-inferior-io--maybe-delete-pty as a workaround for
9058 sentinel not being called.
9059
9060 * comint.el (make-comint-in-buffer, comint-exec): Doc fix.
9061
9062 * progmodes/grep.el (grep, rgrep): Doc fix (Bug#11268).
9063
9064 2012-04-20 Glenn Morris <rgm@gnu.org>
9065
9066 * net/network-stream.el (open-network-stream): Doc fix.
9067
9068 2012-04-20 Chong Yidong <cyd@gnu.org>
9069
9070 * emacs-lisp/tabulated-list.el (tabulated-list-print): Fix typos.
9071
9072 2012-04-20 Alan Mackenzie <acm@muc.de>
9073
9074 Ensure searching for keywords is case sensitive.
9075
9076 * progmodes/cc-cmds.el (c-electric-brace, c-electric-lt-gt)
9077 (c-electric-paren, c-beginning-of-defun, c-end-of-defun)
9078 (c-defun-name, c-mark-function, c-cpp-define-name)
9079 (c-comment-indent, c-scan-conditionals, c-indent-defun)
9080 (c-context-line-break): Bind case-fold-search to nil.
9081
9082 * progmodes/cc-mode.el (c-font-lock-fontify-region):
9083 Bind case-fold-search to nil.
9084
9085 2012-04-20 Chong Yidong <cyd@gnu.org>
9086
9087 * mail/sendmail.el (mail-bury): Call return action with the right
9088 Rmail buffer (Bug#11242).
9089
9090 * server.el (server-process-filter): Handle corner case where both
9091 tty and nowait options are present (Bug#11102).
9092
9093 2012-04-20 Eli Zaretskii <eliz@gnu.org>
9094
9095 * version.el (emacs-bzr-version, emacs-bzr-get-version): Doc fixes.
9096 (top level): Put into the executable the ident-style '$Id:' tag on
9097 windows-nt as well.
9098
9099 2012-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
9100
9101 * electric.el (electric-indent-post-self-insert-function): Check that
9102 electric-indent-mode is enabled in current buffer.
9103
9104 2012-04-19 Juanma Barranquero <lekktu@gmail.com>
9105
9106 * imenu.el (imenu-progress-message): Restore; it is "used" in
9107 erc/erc-imenu.el and net/snmp-mode.el.
9108
9109 2012-04-19 Juanma Barranquero <lekktu@gmail.com>
9110
9111 * avoid.el (mouse-avoidance-mode): Mark unused arg.
9112 (mouse-avoidance-nudge-mouse): Remove unused binding.
9113
9114 * bs.el (bs-toggle-readonly): Call `toggle-read-only' interactively.
9115
9116 * descr-text.el (describe-char):
9117 * progmodes/python.el (python-describe-symbol):
9118 Don't call `toggle-read-only', set `buffer-read-only'.
9119
9120 * imenu.el (imenu-default-goto-function): Mark unused args.
9121 (imenu-progress-message): Remove obsolete macro; all callers changed.
9122
9123 * subr.el (keymap-canonicalize): Remove unused binding.
9124 (read-passwd): Mark unused arg.
9125
9126 * tutorial.el (tutorial--display-changes): Remove unused binding.
9127 (tutorial--save-tutorial-to): Remove unused variable.
9128
9129 * emacs-lisp/package.el (define-package, package-menu-mark-delete)
9130 (package-menu-mark-install, package-menu-mark-unmark): Mark unused args.
9131 (package-generate-autoloads, package-menu--generate)
9132 (package-menu--find-upgrades): Remove unused bindings.
9133
9134 * emulation/cua-rect.el (cua-restrict-regexp-rectangle)
9135 (cua-restrict-prefix-rectangle): Doc fixes. Remove unused bindings.
9136 (cua--mouse-ignore, cua--delete-rectangle, cua--extract-rectangle)
9137 (cua--indent-rectangle, cua-open-rectangle, cua-close-rectangle)
9138 (cua-blank-rectangle, cua-string-rectangle, cua-replace-in-rectangle)
9139 (cua-incr-rectangle, cua-sequence-rectangle, cua--convert-rectangle-as)
9140 (cua--rectangle-aux-replace, cua--left-fill-rectangle)
9141 (cua-scroll-rectangle-up, cua-scroll-rectangle-down)
9142 (cua-delete-char-rectangle): Mark unused args.
9143 (cua-align-rectangle): Remove unused binding.
9144
9145 * mail/rmail.el (compilation--message->loc)
9146 (epa--find-coding-system-for-mime-charset): Declare.
9147
9148 * net/dbus.el (dbus-register-service): Declare.
9149 (dbus-name-owner-changed-handler): Remove unused binding.
9150
9151 * nxml/nxml-mode.el (nxml-electric-slash, nxml-in-mixed-content-p)
9152 (nxml-compute-indent-from-matching-start-tag): Remove unused variables.
9153 (nxml-scan-backward-within): Mark unused arg.
9154 (nxml-dynamic-markup-word): Remove unused binding.
9155
9156 * mouse.el (mouse-menu-major-mode-map):
9157 * emacs-lisp/authors.el (authors-scan-change-log)
9158 (authors-add-to-author-list):
9159 * emacs-lisp/avl-tree.el (avl-tree--enter-balance):
9160 * emacs-lisp/smie.el (smie-auto-fill):
9161 * mail/sendmail.el (mail-bury):
9162 * mail/unrmail.el (unrmail):
9163 * net/tls.el (open-tls-stream):
9164 * textmodes/picture.el (picture-mouse-set-point):
9165 Remove unused bindings.
9166
9167 2012-04-19 Michael Albinus <michael.albinus@gmx.de>
9168
9169 * net/tramp.el (tramp-action-password): Let-bind
9170 `enable-recursive-minibuffers' to t.
9171
9172 2012-04-18 Sam Steingold <sds@gnu.org>
9173
9174 * progmodes/gud.el (gud-key-prefix): Use :type 'key-sequence
9175 instead of 'string to accommodate values like [f11].
9176 Always use `vconcat' instead of `concat' on it, like in `gud-def'.
9177 * progmodes/gdb-mi.el: Likewise.
9178
9179 2012-04-18 Leo Liu <sdl.web@gmail.com>
9180
9181 * abbrev.el (edit-abbrevs): Move point to the abbrev table of
9182 current buffer.
9183 (prepare-abbrev-list-buffer): Enter edit-abbrevs-mode only if
9184 LOCAL is nil.
9185
9186 2012-04-18 Chong Yidong <cyd@gnu.org>
9187
9188 * simple.el (line-move): Use forward-line if in batch mode
9189 (Bug#11053).
9190
9191 2012-04-18 Christopher Schmidt <christopher@ch.ristopher.com>
9192
9193 * files.el (after-find-file): Do not try to add a final newline if
9194 the buffer is read-only (Bug#11156).
9195
9196 2012-04-17 Richard Stallman <rms@gnu.org>
9197
9198 * mail/rmail.el (rmail-start-mail):
9199 Pass (rmail-mail-return...) for the return-action.
9200 Pass (rmail-yank-current-message...) for the yank-action.
9201 (rmail-yank-current-message): New function.
9202 (rmail-mail): Pass the Rmail buffer, not view buffer, for replybuffer.
9203 (rmail-reply): Likewise.
9204 (rmail-forward): Pass the Rmail buffer, not nil, for replybuffer.
9205
9206 * mail/sendmail.el (mail-bury): Choose the first rmail-mode
9207 buffer, not the last. Reject temp buffers. Use the rmail-mode
9208 buffer, not newbuf.
9209
9210 2012-04-17 Juanma Barranquero <lekktu@gmail.com>
9211
9212 * server.el (server-ensure-safe-dir): Simplify.
9213
9214 2012-04-17 Stefan Monnier <monnier@iro.umontreal.ca>
9215
9216 * emacs-lisp/smie.el: Provide smarter auto-filling.
9217 (smie-auto-fill): New function.
9218 (smie-setup): Use it.
9219
9220 * newcomment.el (comment-choose-indent): Obey comment-inline-offset.
9221
9222 2012-04-17 Philipp Haselwarter <philipp.haselwarter@gmx.de> (tiny change)
9223
9224 * newcomment.el (comment-inline-offset): New custom var (bug#11090).
9225 (comment-indent): Use it.
9226
9227 2012-04-17 Vincent Belaïche <vincentb1@users.sourceforge.net>
9228
9229 * ses.el: The overall change is to add cell renaming, that is
9230 setting fancy names for cell symbols other than name matching
9231 "\\`[A-Z]+[0-9]+\\'" regexp .
9232 (ses-localvars): Add ses--renamed-cell-symb-list.
9233 (ses-create-cell-variable): New defun.
9234 (ses-destroy-cell-variable-range): Respect ses--numrows, ses--numcols.
9235 (ses-relocate-formula): Relocate formulas only for cells the
9236 symbols of which are not renamed, i.e. symbols whose names do not
9237 match regexp "\\`[A-Z]+[0-9]+\\'".
9238 (ses-relocate-all): Relocate values only for cells the symbols of
9239 which are not renamed.
9240 (ses-load): Create cells variables as the (ses-cell ...) are read,
9241 in order to check row col consistency with cell symbol name only
9242 for cells that are not renamed.
9243 (ses-replace-name-in-formula): New defun.
9244 (ses-rename-cell): New defun.
9245
9246 2012-04-17 Peter Oliver <bzr@mavit.org.uk> (tiny change)
9247
9248 * progmodes/perl-mode.el (perl-indent-parens-as-block):
9249 New option (bug#11118).
9250 (perl-calculate-indent): Respect it.
9251
9252 2012-04-17 Glenn Morris <rgm@gnu.org>
9253
9254 * dired-aux.el (dired-mark-read-string): Doc fix.
9255
9256 2012-04-17 Dmitry Antipov <dmantipov@yandex.ru>
9257
9258 * dired-aux.el (dired-mark-read-string): Offer optional completion.
9259 (dired-do-chxxx): Complete chown, chgrp over users, groups. (Bug#7900)
9260
9261 2012-04-17 Glenn Morris <rgm@gnu.org>
9262
9263 * mouse.el (mouse-drag-track):
9264 * speedbar.el (speedbar-frame-mode):
9265 Use auto-hscroll-mode rather than the alias automatic-hscrolling.
9266
9267 2012-04-16 Leo Liu <sdl.web@gmail.com>
9268
9269 * progmodes/python.el: Trivial cleanup.
9270
9271 2012-04-16 Glenn Morris <rgm@gnu.org>
9272
9273 * vc/vc.el (vc-string-prefix-p):
9274 * vc/pcvs-util.el (cvs-string-prefix-p):
9275 * textmodes/tex-mode.el (latex-string-prefix-p, tex-string-prefix-p):
9276 * mpc.el (mpc-string-prefix-p):
9277 Make all of these into obsolete aliases for string-prefix-p.
9278 Update callers.
9279 * vc/pcvs.el, vc/vc-dispatcher.el, vc/vc-dir.el: Update callers.
9280
9281 * textmodes/two-column.el: Move custom options to the start.
9282 (frame-width): Remove compat definition.
9283 (2C-associate-buffer, 2C-dissociate):
9284 Use with-current-buffer rather than save-excursion.
9285 (2C-dissociate): Force a mode-line update.
9286 (2C-autoscroll): Use ignore-errors.
9287
9288 * emacs-lisp/eieio-opt.el (describe-class, describe-generic):
9289 Autoload trivia.
9290
9291 * emacs-lisp/cl-extra.el (*random-state*):
9292 Remove unnecessary declaration.
9293
9294 * calendar/cal-tex.el (cal-tex-end-document): Trivial clarification.
9295
9296 * play/cookie1.el (cookie-snarf):
9297 Give an explicit error if input file cannot be read.
9298
9299 * play/yow.el (yow-file): Use expand-file-name rather than concat.
9300
9301 * progmodes/perl-mode.el (c-macro-expand):
9302 Remove unnecessary autoload (it is in loaddefs.el).
9303
9304 * textmodes/picture.el (picture-desired-column)
9305 (picture-update-desired-column): Convert comments to doc-strings.
9306 (picture-substitute): Remove function.
9307 (picture-mode-map): Initialize in the defvar.
9308
9309 * woman.el: Remove eval-after-load for tar-mode.
9310 * tar-mode.el (tar-mode-map): Add woman binding and menu entry.
9311 (woman-tar-extract-file): Autoload it.
9312
9313 * frame.el (automatic-hscrolling): Make this alias obsolete.
9314
9315 2012-04-12 Agustín Martín Domingo <agustin.martin@hispalinux.es>
9316
9317 * textmodes/ispell.el (ispell-set-spellchecker-params): Post-process
9318 `ispell-dictionary-alist' to use [:alpha:] and utf-8 if possible.
9319 (ispell-dictionary-base-alist): Revert to original XEmacs
9320 friendly version for default. [:alpha:] will be added in
9321 `ispell-set-spellchecker-params' if needed.
9322
9323 2012-04-16 Chong Yidong <cyd@gnu.org>
9324
9325 * image.el (imagemagick--file-regexp): New variable.
9326 (imagemagick-register-types): Use it.
9327 (imagemagick-types-inhibit): Add :set function. Allow new value
9328 of t to inhibit all types.
9329
9330 * emacs-lisp/regexp-opt.el (regexp-opt-charset): Avoid cl macros,
9331 so we can preload it.
9332
9333 * loadup.el (fboundp): Preload regexp-opt, needed by
9334 imagemagick-register-types.
9335
9336 2012-04-15 Chong Yidong <cyd@gnu.org>
9337
9338 * frame.el (scrolling): Remove nearly unused customization group.
9339
9340 * scroll-all.el (scroll-all-mode): Move to windows group.
9341
9342 2012-04-15 Chong Yidong <cyd@gnu.org>
9343
9344 * bindings.el (goto-map): Bind goto-char to M-g c (Bug#11240).
9345
9346 2012-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
9347
9348 Avoid the use of ((lambda ...) ...) in lexical-binding code.
9349 * emacs-lisp/easy-mmode.el (define-minor-mode): Use funcall (bug#11241).
9350
9351 2012-04-15 Glenn Morris <rgm@gnu.org>
9352
9353 * simple.el (process-file-side-effects): Doc fix.
9354
9355 2012-04-15 Glenn Morris <rgm@gnu.org>
9356
9357 * international/mule-cmds.el (set-language-environment): Doc fix.
9358
9359 2012-04-14 Juanma Barranquero <lekktu@gmail.com>
9360
9361 * server.el (server-auth-key, server-generate-key): Doc fixes.
9362 (server-get-auth-key): Doc fix. Use `string-match-p'.
9363 (server-start): Reflow docstring.
9364
9365 2012-04-14 Lars Ingebrigtsen <larsi@gnus.org>
9366
9367 * server.el (server-generate-key): `called-interactively-p'
9368 requires a parameter.
9369
9370 2012-04-14 Michal Nazarewicz <mina86@mina86.com>
9371
9372 * server.el (server-auth-key): New variable.
9373 (server-generate-key, server-get-auth-key): New function.
9374 (server-start): Use the new variable and functions to allow
9375 setting a permanent server key (bug#9423).
9376
9377 2012-04-14 Leo Liu <sdl.web@gmail.com>
9378
9379 * vc/diff-mode.el (diff-file-prev/next): Fix typo.
9380
9381 2012-04-14 Paul Eggert <eggert@cs.ucla.edu>
9382
9383 Spelling fixes.
9384 * hexl.el (hexl-rulerize): Rename from hexl-rulerise, since
9385 Emacs uses American spelling.
9386
9387 2012-04-14 Juanma Barranquero <lekktu@gmail.com>
9388
9389 * emacs-lock.el (emacs-lock-locked-buffer-functions): New hook.
9390 (emacs-lock--exit-locked-buffer): Return the locked buffer. Doc fix.
9391 (emacs-lock--kill-emacs-hook, emacs-lock--kill-emacs-query-functions)
9392 (emacs-lock--kill-buffer-query-functions): Run new hook. (Bug#11017)
9393
9394 2012-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
9395
9396 * progmodes/which-func.el (which-func-modes): Change default.
9397
9398 2012-04-14 Kim F. Storm <storm@cua.dk>
9399
9400 * emulation/cua-base.el (cua-exchange-point-and-mark): Just call
9401 exchange-point-and-mark if cua-enable-cua-keys is nil (Bug#11191).
9402
9403 2012-04-14 Chong Yidong <cyd@gnu.org>
9404
9405 * custom.el (custom-theme-set-variables): Doc fix.
9406
9407 2012-04-14 Glenn Morris <rgm@gnu.org>
9408
9409 * international/mule.el (set-auto-coding-for-load): Doc fix.
9410
9411 2012-04-14 Alan Mackenzie <acm@muc.de>
9412
9413 * progmodes/cc-menus.el (cc-imenu-objc-generic-expression): Make
9414 imenu work again for Objective C Mode. Correct the *-index values,
9415 these having been disturbed by a previous change in 2011-08.
9416
9417 * progmodes/cc-engine.el (c-before-change-check-<>-operators):
9418 Correct two search limits.
9419
9420 2012-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
9421
9422 * startup.el (command-line-1): Inhibit splash from daemon (bug#10996).
9423
9424 2012-04-14 Andreas Schwab <schwab@linux-m68k.org>
9425
9426 * international/characters.el: Fix sorting.
9427
9428 2012-04-14 Eli Zaretskii <eliz@gnu.org>
9429
9430 * international/characters.el: Add more missing Latin case pairs.
9431
9432 2012-04-14 Glenn Morris <rgm@gnu.org>
9433
9434 * files.el (dir-locals-set-class-variables): Doc fix.
9435
9436 2012-04-14 Eli Zaretskii <eliz@gnu.org>
9437
9438 * international/characters.el: Add set-case-syntax-pair call for
9439 LATIN CAPITAL LETTER Y WITH DIAERESIS RET and its lower-case
9440 counterpart. (Bug#11209)
9441
9442 * simple.el (shell-command-on-region): Doc fix. (Bug#11208)
9443
9444 2012-04-14 Glenn Morris <rgm@gnu.org>
9445
9446 * calendar/holidays.el (calendar-check-holidays): Doc fix.
9447
9448 2012-04-14 Eli Zaretskii <eliz@gnu.org>
9449
9450 * textmodes/ispell.el (ispell-dictionary-base-alist):
9451 Add data for Hebrew.
9452
9453 2012-04-14 Chong Yidong <cyd@gnu.org>
9454
9455 * net/rcirc.el (rcirc-cmd-quit):
9456 Revert 2012-03-18 change (Bug#11192).
9457
9458 2012-04-14 Glenn Morris <rgm@gnu.org>
9459
9460 * pcmpl-rpm.el (pcomplete/rpm): Handle -qf.
9461
9462 2012-04-14 Eli Zaretskii <eliz@gnu.org>
9463
9464 * minibuffer.el (completion-in-region-mode-map):
9465 Bind completion-help-at-point to M-? rather than ?. (Bug#11182)
9466
9467 2012-04-13 Vivek Dasmohapatra <vivek@etla.org>
9468
9469 * hexl.el (hexl-insert-char): Make display sizes other than 16 work.
9470
9471 2012-04-13 Masatake YAMATO <yamato@redhat.com>
9472
9473 * minibuffer.el (minibuffer-local-filename-syntax): New variable
9474 to allow `C-M-f' and `C-M-b' to move to the nearest path
9475 separator (bug#9511).
9476
9477 2012-04-13 Lars Ingebrigtsen <larsi@gnus.org>
9478
9479 * avoid.el: Require cl when compiling. And also move the
9480 `provide' to the end.
9481
9482 2012-04-13 Thierry Volpiatto <thierry.volpiatto@gmail.com>
9483
9484 * avoid.el (mouse-avoidance-banish-position): New variable.
9485 (mouse-avoidance-banish-destination): Use it (bug#10165).
9486
9487 2012-04-13 Leo Liu <sdl.web@gmail.com>
9488
9489 * progmodes/which-func.el (which-func-modes): Add objc-mode.
9490
9491 2012-04-13 Ken Brown <kbrown@cornell.edu>
9492
9493 * net/browse-url.el (browse-url-file-url): Remove Cygwin hack;
9494 this is no longer needed now that cygstart understands file:// URLs.
9495 (browse-url-filename-alist): For the same reason, don't modify
9496 file:// URLs on Cygwin.
9497
9498 2012-04-13 Stefan Monnier <monnier@iro.umontreal.ca>
9499
9500 * emulation/cua-base.el (cua--pre-command-handler-1): Don't activate
9501 the region on shift if the binding is already shifted (bug#11221).
9502
9503 2012-04-12 Glenn Morris <rgm@gnu.org>
9504
9505 * mail/mailpost.el: Move to obsolete/.
9506
9507 2012-04-12 Drew Adams <drew.adams@oracle.com>
9508
9509 * imenu.el (imenu--generic-function): Ignore invisible definitions
9510 (bug#10123).
9511
9512 2012-04-12 Vivek Dasmohapatra <vivek@etla.org>
9513
9514 * hexl.el (hexl-bits): New variable.
9515 (hexl-options): Mention the variable in the doc string.
9516 (hexl-rulerise, hexl-line-displen): New functions.
9517 (hexl-mode): Mention the new variable.
9518 (hexl-mode, hexl-current-address, hexl-current-address):
9519 Use the displen.
9520 (hexl-ascii-start-column): New function.
9521 (hexl-address-to-marker, hexl-beginning-of-line, hexl-options)
9522 (hexl-insert-char, hexl-mode-ruler): Use the displen (bug#4941).
9523
9524 2012-04-12 Agustín Martín Domingo <agustin.martin@hispalinux.es>
9525
9526 * textmodes/flyspell.el (flyspell-large-region): For hunspell, use
9527 '("-i" ENCODING), in 2 separate command-line arguments, to specify
9528 the encoding, as expected by hunspell.
9529
9530 2012-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
9531
9532 * battery.el (battery--linux-sysfs-regexp): New const.
9533 (battery-status-function): Use it. Remove yeeloong special case.
9534 (battery-yeeloong-sysfs): Remove.
9535 (battery-echo-area-format): Remove yeeloong special case.
9536
9537 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
9538
9539 * imenu.el (imenu-add-to-menubar): `current-local-map' can be nil.
9540 Reported by Noah Friedman.
9541
9542 * subr.el (read-passwd): Use read-string.
9543
9544 2012-04-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
9545
9546 * vcursor.el (vcursor-move): Increase the priority of the overlay
9547 (bug#9663).
9548
9549 2012-04-11 Deniz Dogan <deniz.a.m.dogan@gmail.com>
9550
9551 * net/rcirc.el (rcirc-kill-channel-buffers): New variable.
9552 (rcirc-kill-buffer-hook): Use it to kill channel buffers (bug#5128).
9553
9554 2012-04-11 William Stevenson <yhvh2000@gmail.com>
9555
9556 * textmodes/artist.el (artist-mode): Convert artist-mode to use
9557 define-minor-mode (bug#10760).
9558
9559 2012-04-11 Wolfgang Jenkner <wjenkner@inode.at> (tiny change)
9560
9561 * progmodes/grep.el (rgrep): Tweak the find command line so
9562 that directories matching `grep-find-ignored-files' won't be
9563 pruned (bug#10351).
9564
9565 2012-04-11 Chong Yidong <cyd@gnu.org>
9566
9567 * startup.el (command-line): Remove support for long-obsolete
9568 variable font-lock-face-attributes.
9569
9570 2012-04-11 Glenn Morris <rgm@gnu.org>
9571
9572 * vc/vc-bzr.el (vc-bzr-status): Avoid condition-case-unless-debug.
9573
9574 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
9575
9576 * window.el (window--state-get-1): Obey window-point-insertion-type.
9577
9578 2012-04-11 Lennart Borgman <lennart.borgman@gmail.com>
9579
9580 * emacs-lisp/lisp.el (narrow-to-defun): `beginning-of-defun' goes
9581 to previous function when point is on the first character of a
9582 function. Take care of that in `narrow-to-defun' (bug#6157).
9583
9584 2012-04-11 Glenn Morris <rgm@gnu.org>
9585
9586 * vc/vc-bzr.el (vc-bzr-status): Handle all errors,
9587 not just file-errors.
9588
9589 * vc/vc-bzr.el (vc-bzr-sha1-program, sha1-program): Remove.
9590 (vc-bzr-sha1): Use internal sha1.
9591
9592 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
9593
9594 * progmodes/flymake.el (flymake-mode): Beware read-only dirs (bug#8954).
9595
9596 2012-04-10 Sébastien Gross <seb@chezwam.org> (tiny change)
9597
9598 * progmodes/hideshow.el (hs-hide-all): Don't infloop on comments
9599 that start in the middle of the line (bug#10496).
9600
9601 2012-04-10 Dan Nicolaescu <dann@gnu.org>
9602
9603 * battery.el (battery-linux-proc-acpi): Only one battery is
9604 discharged at a time, but that seems to confuse battery.el when
9605 computing `rate-type' for the battery not being discharged
9606 (bug#10332).
9607
9608 2012-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
9609
9610 * emacs-lisp/autoload.el (autoload-make-program): Remove, unused.
9611
9612 * international/quail.el: Use dolist and simplify.
9613 (quail-define-package, quail-update-keyboard-layout)
9614 (quail-define-rules): Use dolist.
9615 (quail-insert-kbd-layout, quail-get-translation): CSE.
9616
9617 * tmm.el: Use dolist, remove left over hook.
9618 (tmm-prompt, tmm-define-keys, tmm-shortcut, tmm-get-keybind):
9619 Use dolist.
9620 (calendar-load-hook): Don't mess with it.
9621
9622 * vc/vc-annotate.el (vc-annotate-show-diff-revision-at-line-internal):
9623 Use derived-mode-p. Run the diff asynchronously.
9624
9625 2012-04-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
9626
9627 * obsolete/mouse-sel.el: Add an Obsolete-since header.
9628
9629 2012-04-10 Juanma Barranquero <lekktu@gmail.com>
9630
9631 * misc.el: Display absolute path of loaded DLLs (bug#10424).
9632 (list-dynamic-libraries--loaded): New function.
9633 (list-dynamic-libraries--refresh): Use it.
9634
9635 2012-04-10 Nathan Weizenbaum <nweiz@google.com>
9636
9637 * progmodes/python.el (python-fill-paragraph):
9638 Make python-fill-region in a multiline string work when font-lock is
9639 disabled (bug#7018).
9640
9641 2012-04-10 Laimonas Vėbra <laimonas.vebra@gmail.com> (tiny change)
9642
9643 * language/european.el (cp775): Add oem/legacy (en)coding on
9644 DOS/MS Windows for the Baltic languages. There are still plenty
9645 of texts written in this encoding/codepage (bug#6519).
9646
9647 2012-04-10 Glenn Morris <rgm@gnu.org>
9648
9649 * cus-start.el (eol-mnemonic-unix, eol-mnemonic-dos, eol-mnemonic-mac):
9650 Add :standard values, reducing "rogue" customs in emacs -Q a bit more.
9651
9652 2012-04-10 Florian Adamsky <florian@adamsky.it> (tiny change)
9653
9654 * recentf.el (recentf-dialog-mode-map): Add two keybindings for
9655 next-line "n" and previous-line "p" in order to make recentf more
9656 consistent with ibuffer, dired or org-mode (bug#9387).
9657
9658 2012-04-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
9659
9660 * image.el (put-image): Return the overlay created instead of the
9661 optional input string (bug#7834). Note that this may break code
9662 that is (for some reason or other) depending on `put-image'
9663 returning the string.
9664
9665 * mouse-sel.el (mouse-sel-mode): Mark as obsolete (bug#6174).
9666
9667 * simple.el (zap-to-char): Allow zapping using input methods
9668 (bug#1580).
9669
9670 * textmodes/fill.el (fill-region): Leave point and mark where they
9671 were before filling (bug#5399).
9672
9673 2012-04-09 Glenn Morris <rgm@gnu.org>
9674
9675 * version.el (emacs-bzr-get-version):
9676 Handle lightweight checkouts of local branches.
9677
9678 2012-04-09 Andreas Schwab <schwab@linux-m68k.org>
9679
9680 * international/characters.el: Recover lost case pairs. (Bug#11209)
9681
9682 2012-04-09 Chong Yidong <cyd@gnu.org>
9683
9684 * custom.el (custom-variable-p): Return nil for non-symbol
9685 arguments instead of signaling an error.
9686 (user-variable-p): Obsolete alias for custom-variable-p.
9687
9688 * apropos.el (apropos-variable):
9689 * files-x.el (read-file-local-variable):
9690 * simple.el (set-variable):
9691 * woman.el (woman-mini-help):
9692 * emacs-lisp/byte-opt.el (side-effect-free-fns): Callers changed.
9693
9694 2012-04-09 Glenn Morris <rgm@gnu.org>
9695
9696 * startup.el (normal-top-level): Don't look for leim-list.el
9697 in places where it will not be found. (Bug#910)
9698
9699 * international/mule-cmds.el (set-default-coding-systems):
9700 * files.el (normal-mode):
9701 Remove guarded calls to ucs-set-table-for-input. (Bug#9821)
9702 This function was removed with ucs-tables.el in 2008.
9703
9704 2012-04-08 Eli Zaretskii <eliz@gnu.org>
9705
9706 * textmodes/ispell.el (ispell-check-version): For hunspell, set
9707 ispell-encoding8-command to "-i", without a trailing space.
9708 (ispell-start-process): For hunspell, use '("-i" ENCODING), in 2
9709 separate command-line arguments, to specify the encoding, since
9710 that's how hunspell expects it.
9711
9712 2012-04-08 Glenn Morris <rgm@gnu.org>
9713
9714 * loadup.el: Load bindings before cus-start.
9715 This reduces somewhat the number of "rogue" settings in emacs -Q.
9716
9717 2012-04-07 Glenn Morris <rgm@gnu.org>
9718
9719 * version.el (emacs-bzr-get-version): New function.
9720 (emacs-bzr-version): New variable.
9721 * loadup.el (emacs-bzr-version): Set it. (Bug#8054)
9722 * mail/emacsbug.el (report-emacs-bug): Include bzr version.
9723
9724 2012-04-07 Eli Zaretskii <eliz@gnu.org>
9725
9726 * international/uni-bidi.el, international/uni-category.el:
9727 * international/uni-combining.el, international/uni-decimal.el:
9728 * international/uni-decomposition.el, international/uni-digit.el:
9729 * international/uni-lowercase.el, international/uni-mirrored.el:
9730 * international/uni-name.el, international/uni-numeric.el:
9731 * international/uni-titlecase.el, international/uni-uppercase.el:
9732 Update for Unicode 6.1.
9733
9734 2012-04-07 Eli Zaretskii <eliz@gnu.org>
9735
9736 * term/w32-win.el (dynamic-library-alist): Add libxml2 DLLs.
9737
9738 2012-04-05 Lars Magne Ingebrigtsen <larsi@gnus.org>
9739
9740 * window.el (shrink-window): Mention the `window-min-height'
9741 variable in the doc string.
9742
9743 2012-04-05 Bastien Guerry <bzg@altern.org>
9744
9745 * color.el (color-lighten-name): Fix typo.
9746
9747 2012-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
9748
9749 * server.el (server--on-display-p): New function.
9750 (server--on-display-p): Use it.
9751
9752 2012-04-04 Gábor Vida <vidagabor@gmail.com> (tiny change)
9753
9754 * ido.el (ido-wide-find-dirs-or-files): Use file-name-absolute-p
9755 (bug#11145).
9756
9757 2012-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
9758
9759 * comint.el (comint--common-quoted-suffix): Check string boundary
9760 before comparing (bug#11158).
9761 * pcomplete.el (pcomplete--common-quoted-suffix): Idem.
9762
9763 2012-04-04 Chong Yidong <cyd@gnu.org>
9764
9765 * minibuffer.el (completion-extra-properties): Doc fix.
9766
9767 * subr.el (delayed-warnings-hook): Doc fix.
9768
9769 2012-04-04 Daiki Ueno <ueno@unixuser.org>
9770
9771 * epa.el (epa--select-keys): Bind C-c C-c to finish the key
9772 selection (Bug#11159).
9773 (epa-insert-keys): Inform that the default public key will be
9774 exported if no key is selected.
9775
9776 2012-04-04 Richard Stallman <rms@gnu.org>
9777
9778 * mail/emacsbug.el (report-emacs-bug): Bind inhibit-read-only.
9779
9780 2012-04-03 Chong Yidong <cyd@gnu.org>
9781
9782 * mail/sendmail.el (mail-mode-map): Bind C-c C-i to
9783 mail-insert-file, not its obsolete alias mail-attach-file.
9784
9785 2012-04-03 Michael Albinus <michael.albinus@gmx.de>
9786
9787 * notifications.el (notifications-notify): Fix docstring.
9788
9789 2012-04-02 Glenn Morris <rgm@gnu.org>
9790
9791 * emacs-lisp/authors.el (authors-aliases): Another addition.
9792
9793 2012-04-02 Michael Albinus <michael.albinus@gmx.de>
9794
9795 * net/tramp-gvfs.el (tramp-gvfs-send-command): Apply
9796 `tramp-compat-call-process' instead of `tramp-local-call-process'.
9797 Reported by Magnus Henoch <magnus.henoch@gmail.com>.
9798
9799 2012-04-01 Chong Yidong <cyd@gnu.org>
9800
9801 * files.el (file-in-directory-p): Rename from file-subdir-of-p.
9802 Handle root directory properly.
9803 (copy-directory): Caller changed.
9804
9805 * dired-aux.el (dired-copy-file-recursive, dired-create-files):
9806 * net/tramp.el (tramp-file-name-for-operation): Callers changed.
9807
9808 2012-03-31 Glenn Morris <rgm@gnu.org>
9809
9810 * term/xterm.el (xterm-extra-capabilities): Doc fix.
9811
9812 * language/indian.el ("Devanagari"): Fix typo. (Bug#11103)
9813
9814 * calendar/calendar.el (calendar-window-list)
9815 (calendar-hide-window): Restore. (Bug#11140)
9816 (calendar-exit): Use calendar-window-list, calendar-hide-window again.
9817
9818 * emacs-lisp/edebug.el (edebug-unwrap-results): Doc fix.
9819
9820 2012-03-30 Thierry Volpiatto <thierry.volpiatto@gmail.com>
9821
9822 * dired-aux.el (dired-copy-file-recursive, dired-create-files):
9823 Check if file is a symlink (Bug#10489).
9824
9825 * files.el (copy-directory): Likewise.
9826
9827 2012-03-30 Chong Yidong <cyd@gnu.org>
9828
9829 * image.el (imagemagick-types-inhibit)
9830 (imagemagick-register-types): Doc fix.
9831
9832 2012-03-30 Agustín Martín Domingo <agustin.martin@hispalinux.es>
9833
9834 * textmodes/ispell.el (ispell-get-extended-character-mode):
9835 Disable extended-char-mode for hunspell. hunspell does not support it
9836 and treats ~word as ordinary words in pipe mode.
9837
9838 2012-03-30 Glenn Morris <rgm@gnu.org>
9839
9840 * tutorial.el (help-with-tutorial): Ensure local variables don't
9841 happen to make the buffer read-only. (Bug#11127)
9842
9843 2012-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
9844
9845 * progmodes/perl-mode.el (perl-indent-line): Use `noindent' in strings.
9846 (perl-calculate-indent): Return `noindent' in strings.
9847
9848 2012-03-28 Sam Steingold <sds@gnu.org>
9849
9850 * calendar/calendar.el (calendar-exit): Use `quit-windows-on'
9851 instead of the broken adhockery which does not prevent calendar
9852 buffers from being displayed at random after exit.
9853 (calendar-window-list, calendar-hide-window): Remove the broken
9854 adhockery.
9855
9856 2012-03-28 Glenn Morris <rgm@gnu.org>
9857
9858 * replace.el (query-replace-map): Doc fix.
9859
9860 2012-03-28 Andreas Schwab <schwab@linux-m68k.org>
9861
9862 * vc/vc-git.el (vc-git-state): Don't try to match all of the diff
9863 contents. (Bug#11109)
9864
9865 2012-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
9866
9867 * emacs-lisp/avl-tree.el (avl-tree--enter-balance): Fix paren typo
9868 (bug#11077).
9869 (avl-tree--check, avl-tree--check-node): New funs.
9870
9871 2012-03-27 Martin Rudalics <rudalics@gmx.at>
9872
9873 * window.el (switch-to-visible-buffer): New option.
9874 (switch-to-prev-buffer, switch-to-next-buffer):
9875 Observe switch-to-visible-buffer. Make sure that checking for a window
9876 showing a buffer already is done on the same frame.
9877
9878 2012-03-27 Glenn Morris <rgm@gnu.org>
9879
9880 * startup.el (mail-host-address): Doc fix.
9881
9882 2012-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
9883
9884 * emacs-lisp/bytecomp.el (byte-compile-constants-vector): Allow more
9885 than 197 variables.
9886
9887 2012-03-26 Ami Fischman <ami@fischman.org>
9888
9889 * vc/vc-git.el (vc-git-state): Avoid unnecessarily locking.
9890
9891 2012-03-26 Glenn Morris <rgm@gnu.org>
9892
9893 * files.el (save-buffers-kill-emacs): Doc fix.
9894
9895 * startup.el (normal-top-level, command-line, command-line-1):
9896 Give them doc strings.
9897
9898 2012-03-25 Eli Zaretskii <eliz@gnu.org>
9899
9900 * makefile.w32-in (install): Use $(DIRNAME)_same-dir.tst instead
9901 of same-dir.tst, to avoid stepping on other (parallel) Make job's toes.
9902
9903 2012-03-25 Chong Yidong <cyd@gnu.org>
9904
9905 * custom.el (load-theme): Even if NO-ENABLE arg is t, reenable the
9906 theme if it was previously enabled before (Bug#11031).
9907
9908 * cus-theme.el (custom-theme-write-faces): Retrieve current face
9909 spec with custom-face-get-current-spec if its :shown-value is not
9910 determined yet (Bug#9337).
9911 (customize-create-theme, custom-theme-revert): Doc fixes.
9912
9913 * button.el (button-at): Minor addition to docstring.
9914
9915 2012-03-24 Simon Leinen <simon.leinen@gmail.com>
9916
9917 * vc/vc.el (vc-merge): Fix a prompt.
9918
9919 2012-03-24 Chong Yidong <cyd@gnu.org>
9920
9921 * mwheel.el (mwheel-scroll): Call deactivate-mark at the right
9922 point (Bug#9623).
9923
9924 * button.el (button-at): Minor addition to docstring.
9925
9926 2012-03-23 Stefan Monnier <monnier@iro.umontreal.ca>
9927
9928 * newcomment.el (comment-choose-indent): No space after BOL.
9929
9930 2012-03-22 Sam Steingold <sds@gnu.org>
9931
9932 * window.el (switch-to-prev-buffer): Revert last patch because the
9933 bug turned out to be an advertised feature (Elisp manual 28.14).
9934
9935 2012-03-22 Glenn Morris <rgm@gnu.org>
9936
9937 * vc/vc-bzr.el (vc-bzr-status-switches): New option. (Bug#6724)
9938 (vc-bzr-command): If running "status", pass vc-bzr-status-switches.
9939
9940 2012-03-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
9941
9942 * net/network-stream.el (network-stream-open-starttls): Make error
9943 message under Windows be less misleading.
9944
9945 2012-03-22 Liang Wang <netcasper@gmail.com> (tiny change)
9946
9947 * progmodes/etags.el (etags-list-tags): Only use tags which goto-func
9948 understands (bug#9942).
9949
9950 2012-03-22 Chong Yidong <cyd@gnu.org>
9951
9952 * simple.el (end-of-visible-line): Handle return value of
9953 next-single-property-change properly (Bug#9371).
9954
9955 2012-03-22 Kenichi Handa <handa@m17n.org>
9956
9957 * international/quail.el (quail-insert-kbd-layout): Fix previous
9958 change. To avoid unwanted bidi reordering, use
9959 bidi-string-mark-left-to-right instead of inserting LRO and PDF.
9960
9961 2012-03-21 Dmitry Gutov <dgutov@yandex.ru>
9962
9963 * progmodes/ruby-mode.el: Don't confuse "end:" for "end" (bug#10786).
9964 (ruby-block-end-re, ruby-delimiter, ruby-parse-partial)
9965 (ruby-beginning-of-indent): Be more careful with the difference
9966 between word-boundary and symbol boundary.
9967 (ruby-mode-syntax-table): Make : a symbol constituent.
9968
9969 2012-03-21 Andreas Politz <politza@fh-trier.de>
9970
9971 * outline.el (outline-flag-region): Evaporate overlays (bug#10789).
9972
9973 2012-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
9974
9975 * progmodes/etags.el (tags-completion-at-point-function):
9976 Improve last fix.
9977
9978 * files.el (move-file-to-trash): Files aren't regexps (bug#11055).
9979
9980 2012-03-21 Sam Steingold <sds@gnu.org>
9981
9982 * progmodes/etags.el (tags-completion-at-point-function):
9983 Avoid the error when point is inside the pattern.
9984
9985 2012-03-21 John Yates <john@yates-sheets.org> (tiny change)
9986
9987 * progmodes/hideshow.el (hs-inside-comment-p): Fix hiding of first
9988 line (Bug#10855).
9989
9990 2012-03-21 Drew Adams <drew.adams@oracle.com>
9991
9992 * info.el (Info-menu): Handle string value of FORK arg (Bug#10858).
9993
9994 2012-03-21 Anmol Khirbat <anmol@khirbat.net> (tiny change)
9995
9996 * ido.el (ido-set-current-directory, ido-read-internal)
9997 (ido-choose-completion-string, ido-completion-help): Handle nil
9998 value of ido-completion-buffer (Bug#11008).
9999
10000 2012-03-21 Sam Steingold <sds@gnu.org>
10001
10002 * window.el (switch-to-prev-buffer): Do not switch to a visible
10003 window previous buffer, just like with the frame previous buffers.
10004
10005 2012-03-21 Chong Yidong <cyd@gnu.org>
10006
10007 * faces.el (make-face, make-empty-face, copy-face):
10008 * face-remap.el (face-remap-add-relative, face-remap-set-base):
10009 Doc fixes.
10010
10011 2012-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
10012
10013 * wid-edit.el (widget-complete-field): Remove (bug#11051).
10014 (widget-complete): Remove broken use of it.
10015
10016 2012-03-20 Chong Yidong <cyd@gnu.org>
10017
10018 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
10019 Use string-width and truncate-string-width to handle arbitrary
10020 characters.
10021
10022 2012-03-20 Tassilo Horn <tassilo@member.fsf.org>
10023
10024 * textmodes/artist.el (artist-menu-map): Bind Rectangle menu item
10025 to draw rectangles, not squares. (Regression introduced by revno
10026 2011-03-02T03:48:01Z!cyd@stupidchicken.com)
10027
10028 2012-03-18 Chong Yidong <cyd@gnu.org>
10029
10030 * faces.el (face-spec-reset-face): Don't call display-graphic-p if
10031 it is not yet defined (for temacs).
10032
10033 2012-03-18 Leo Liu <sdl.web@gmail.com>
10034
10035 * net/rcirc.el (rcirc-cmd-quit): Allow quitting all servers with
10036 prefix.
10037
10038 2012-03-17 Eli Zaretskii <eliz@gnu.org>
10039
10040 * textmodes/ispell.el (ispell-skip-tib, ispell-keep-choices-win)
10041 (ispell-choices-win-default-height, ispell-silently-savep)
10042 (ispell-dictionary-alist, ispell-encoding8-command)
10043 (ispell-check-version, ispell-aspell-find-dictionary)
10044 (ispell-valid-dictionary-list, ispell-words-keyword)
10045 (ispell-get-word, ispell-internal-change-dictionary)
10046 (ispell-region, ispell-skip-region-list)
10047 (ispell-begin-skip-region-regexp, ispell-ignore-fcc)
10048 (ispell-process-line, ispell-minor-mode, ispell-minor-check)
10049 (ispell-message-text-end, ispell-message)
10050 (ispell-buffer-local-parsing): Doc fix.
10051
10052 2012-03-13 Jambunathan K <kjambunathan@gmail.com>
10053
10054 * htmlfontify.el: Add support for code block fontification for ODT
10055 export (Bug #9914).
10056 (hfy-optimisations): Define new option
10057 `body-text-only'
10058 (hfy-fontify-buffer): Honor above setting.
10059 (hfy-begin-span, hfy-end-span): New routines factored out form
10060 `hfy-fontify-buffer'.
10061 (hfy-begin-span-handler, hfy-end-span-handler): New variables
10062 that permit insertion of custom tags.
10063 (hfy-fontify-buffer): Use above handlers.
10064 (hfy-face-to-css-default): Same as the earlier `hfy-face-to-css'.
10065 (hfy-face-to-css): Re-defined to be a variable.
10066 (hfy-compile-stylesheet): Modify. Allow stylesheet to be built
10067 over multiple runs. This is made possible by having the caller let
10068 bind a special variable `hfy-user-sheet-assoc'.
10069 (htmlfontify-string): New defun.
10070 (hfy-compile-face-map): Make sure that the last char in the
10071 buffer is correctly fontified.
10072 (hfy-face-resolve-face): Whitespace only change.
10073
10074 2012-03-17 Eli Zaretskii <eliz@gnu.org>
10075
10076 * textmodes/ispell.el (ispell-get-decoded-string): Make the error
10077 message more clear.
10078
10079 2012-03-16 Leo Liu <sdl.web@gmail.com>
10080
10081 * emacs-lisp/copyright.el (copyright-year-ranges): Fix typo.
10082
10083 2012-03-16 Alan Mackenzie <acm@muc.de>
10084
10085 Further optimise the handling of large macros.
10086
10087 * progmodes/cc-engine.el (c-crosses-statement-barrier-p): Use a
10088 limit to a call of `c-literal-limits'.
10089 (c-determine-+ve-limit): New function.
10090 (c-at-macro-vsemi-p): Move `c-in-literal' to the bottom of an `and'.
10091 (c-guess-basic-syntax): In macros, restrict a search limit to 2000.
10092 In CASE 5B, restrict a search limit to 500.
10093 (c-just-after-func-arglist-p): Obviouly wrong `or' -> `and'.
10094
10095 * progmodes/cc-mode.el (c-neutralize-syntax-in-and-mark-CPP):
10096 Restrict macro bounds to +-500 from after-change's BEG END.
10097
10098 2012-03-16 Leo Liu <sdl.web@gmail.com>
10099
10100 * font-lock.el (lisp-font-lock-keywords-2): Add letrec.
10101
10102 2012-03-16 Aaron S. Hawley <Aaron.S.Hawley@gmail.com>
10103
10104 * tar-mode.el (tar-mode): Fix saving by conditionally undoing
10105 `special-mode' setting of `buffer-read-only'. (Bug#11010)
10106
10107 2012-03-16 Glenn Morris <rgm@gnu.org>
10108
10109 * view.el (view-buffer, view-buffer-other-window)
10110 (view-buffer-other-frame): Doc fixes re special mode-class.
10111
10112 * subr.el (eval-after-load): If named feature is provided not from
10113 a file, run after-load forms. (Bug#10946)
10114
10115 * calendar/calendar.el (calendar-insert-at-column):
10116 Handle non-unit-width characters a bit better. (Bug#10978)
10117
10118 2012-03-15 Chong Yidong <cyd@gnu.org>
10119
10120 * emacs-lisp/ring.el (ring-extend): New function.
10121 (ring-insert+extend): Extend the ring correctly (Bug#11019).
10122
10123 * comint.el (comint-read-input-ring)
10124 (comint-add-to-input-history): Grow comint-input-ring lazily.
10125
10126 2012-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
10127
10128 * progmodes/perl-mode.el (perl-syntax-propertize-special-constructs):
10129 Fix up parsing of multiline twoarg non-paired elements (bug#11014).
10130
10131 * imenu.el: Fix multiple inheritance breakage (bug#9199).
10132 (imenu-add-to-menubar): Don't add a redundant index.
10133 (imenu-update-menubar): Handle a dynamically composed keymap.
10134
10135 2012-03-13 Katsumi Yamaoka <yamaoka@jpl.org>
10136
10137 * mail/sendmail.el (mail-encode-header):
10138 Bind rfc2047-encode-encoded-words to nil.
10139
10140 2012-03-13 Glenn Morris <rgm@gnu.org>
10141
10142 * calendar/calendar.el (calendar-string-spread):
10143 Handle non-unit-width characters a bit better. (Bug#10978)
10144
10145 2012-03-13 Leo Liu <sdl.web@gmail.com>
10146
10147 * vc/vc-hg.el (vc-hg-working-revision): Rework to work with both
10148 directory and file as argument (Bug#10822).
10149
10150 2012-03-13 Kaushik Srenevasan <ksrenevasan@gmail.com> (tiny change)
10151
10152 * progmodes/gdb-mi.el (gdb-invalidate-disassembly):
10153 For dynamically generated code, follow $PC.
10154 (gdb-disassembly-handler-custom): Handle no function name case.
10155
10156 2012-03-13 Tim Landscheidt <tim@tim-landscheidt.de> (tiny change)
10157
10158 * calendar/icalendar.el (icalendar-export-file, icalendar-import-file):
10159 * emulation/ws-mode.el (ws-query-replace):
10160 * sort.el (sort-regexp-fields):
10161 Fix missing trailing whitespace in interactive prompts. (Bug#11002)
10162
10163 2012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
10164
10165 * dabbrev.el: Fix cycle completion order (bug#10963).
10166 (dabbrev--last-obarray, dabbrev--last-completion-buffer): Remove.
10167 (dabbrev-completion): Don't use an obarray; provide
10168 a cycle-sort-function.
10169
10170 2012-03-12 Leo Liu <sdl.web@gmail.com>
10171
10172 * simple.el (kill-new): Use equal-including-properties for comparison.
10173 (kill-do-not-save-duplicates): Doc fix.
10174
10175 2012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
10176
10177 * dabbrev.el: Fix cycle completion (bug#10963).
10178 Use lexical binding and wrap to 80 columns.
10179 (dabbrev-completion): Delay computing the list of completions.
10180
10181 2012-03-12 Kenichi Handa <handa@m17n.org>
10182
10183 * international/quail.el (quail-insert-kbd-layout): Surround each
10184 row by LRO and PDF instead of inserting many LRMs. Pad the left
10185 and right of each non-spacing marks. Insert invisible space
10186 between lower and upper characters to prevent composition.
10187
10188 2012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
10189
10190 * minibuffer.el (minibuffer-complete): Don't get confused when the
10191 function is run twice via different commands (bug#10958).
10192 (complete-with-action): Fix docstring.
10193
10194 2012-03-12 Chong Yidong <cyd@gnu.org>
10195
10196 * nxml/nxml-mode.el (nxml-mode-map): Do not bind C-RET (Bug#6776).
10197 (nxml-completion-at-point-function): New function.
10198 (nxml-mode): Use it.
10199 (nxml-bind-meta-tab-to-complete-flag): Default to t.
10200
10201 * emacs-lisp/package.el (package-unpack, package-unpack-single):
10202 Load generated autoloads file before byte compiling (Bug#10970).
10203 (package--make-autoloads-and-compile): New helper fun.
10204
10205 2012-03-12 Christopher Schmidt <christopher@ch.ristopher.com>
10206
10207 * ibuffer.el (ibuffer-redisplay): Remove another gratuitous error.
10208
10209 2012-03-11 Michael Albinus <michael.albinus@gmx.de>
10210
10211 * autorevert.el (auto-revert-handler): Ensure, that
10212 file-readable-p is applied only for local files or in
10213 auto-revert-tail-mode.
10214
10215 2012-03-11 Andreas Schwab <schwab@linux-m68k.org>
10216
10217 * server.el (server-eval-at): Handle non-tcp connections.
10218 Decode result string.
10219
10220 * server.el (server-msg-size): New constant.
10221 (server-reply-print): New function.
10222 (server-eval-and-print): Use it.
10223 (server-eval-at): Use server-quote-arg and server-unquote-arg.
10224 Handle -print-nonl.
10225
10226 2012-03-11 Christopher Schmidt <christopher@ch.ristopher.com>
10227
10228 * ibuffer.el (ibuffer-redisplay): Remove gratuitous error
10229 (Bug#10987).
10230
10231 2012-03-11 Chong Yidong <cyd@gnu.org>
10232
10233 * simple.el (goto-line): Doc fix (Bug#9938).
10234
10235 * subr.el (save-window-excursion): Doc fix (Bug#9979).
10236
10237 * dabbrev.el (dabbrev--find-expansion): Update progress reporter
10238 when finished (Bug#10963).
10239
10240 2012-03-11 Martin Rudalics <rudalics@gmx.at>
10241
10242 * window.el (split-window-below): Fix bug in case where
10243 split-window-keep-point is nil (Bug#10971).
10244
10245 2012-03-11 Juri Linkov <juri@jurta.org>
10246
10247 * replace.el (replace-highlight): Set isearch-word to nil
10248 unconditionally. (Bug#10887)
10249
10250 2012-03-10 Eli Zaretskii <eliz@gnu.org>
10251
10252 * net/mairix.el (mairix-replace-invalid-chars): Rename from
10253 mairix-replace-illegal-chars; all callers changed. Don't remove
10254 ^, ~, and = characters: they are meaningful in mairix search specs.
10255 (mairix-widget-create-query): Add usage information about mairix
10256 search forms: negating words, searching for substrings, etc.
10257
10258 2012-03-10 Jae-hyeon Park <jae-hyeon.park@desy.de> (tiny change)
10259
10260 * international/fontset.el (font-encoding-alist): Add an entry for
10261 ksx1001 (Bug#5667).
10262
10263 2012-03-10 Richard Stallman <rms@gnu.org>
10264
10265 * mail/sendmail.el (mail-encode-header):
10266 Set rfc2047-encode-encoded-words.
10267
10268 * mail/mail-utils.el (mail-quote-printable): Quote multibyte chars.
10269
10270 * mail/rmail.el (rmail-buffers-swapped-p): Don't assume dead
10271 view buffer means not swapped.
10272 (rmail-view-buffer-kill-buffer-hook): Give buf name in error msg.
10273 (rmail-write-region-annotate): Error if real text has disappeared.
10274
10275 * epa-mail.el (epa-mail-encrypt): Bind inhibit-read-only.
10276
10277 2012-03-10 Chong Yidong <cyd@gnu.org>
10278
10279 * emulation/cua-rect.el (cua--init-rectangles):
10280 * emulation/cua-base.el (cua--init-keymaps):
10281 Add delete-forward-char to remappings (Bug#9666).
10282
10283 2012-03-10 Martin Rudalics <rudalics@gmx.at>
10284
10285 * speedbar.el (speedbar-unhighlight-one-tag-line):
10286 Avoid unhighlighting due to frame switching (Bug#10275).
10287
10288 2012-03-10 Chong Yidong <cyd@gnu.org>
10289
10290 * minibuffer.el (completion-in-region, completion-help-at-point):
10291 Give the completion field overlay a high priority (Bug#6830).
10292
10293 * dired.el (dired-goto-file): Recognize absolute file name
10294 listings (Bug#7126).
10295 (dired-goto-file-1): New helper function.
10296 (dired-toggle-read-only): Inhibit warnings.
10297
10298 2012-03-09 Michael Albinus <michael.albinus@gmx.de>
10299
10300 * net/dbus.el (dbus-property-handler): Return empty array if
10301 there are no properties.
10302
10303 2012-03-09 Leo Liu <sdl.web@gmail.com>
10304
10305 * savehist.el (savehist-printable): Stricter check for string
10306 value (Bug#10937).
10307
10308 2012-03-09 Eli Zaretskii <eliz@gnu.org>
10309
10310 * mail/smtpmail.el (smtpmail-send-it):
10311 Bind coding-system-for-write to *-unix, so that FCC files are kept in
10312 valid mbox format.
10313
10314 2012-03-09 Glenn Morris <rgm@gnu.org>
10315
10316 * files.el (dir-locals-find-file):
10317 Don't check result is regular, readable.
10318 (dir-locals-read-from-file): Demote errors.
10319
10320 2012-03-08 Eli Zaretskii <eliz@gnu.org>
10321
10322 * international/quail.el (quail-insert-kbd-layout):
10323 Insert invisible LRM characters before each character in a keyboard
10324 layout cell, to prevent their reordering by bidi display engine.
10325 For details, see the discussion in
10326 http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00085.html.
10327
10328 2012-03-08 Alan Mackenzie <acm@muc.de>
10329
10330 * progmodes/cc-cmds.el (c-mark-function): Make it leave a mark at
10331 the starting position; make it extend the marked region when
10332 invoked repeatedly - all under appropriate circumstances.
10333 Fixes bugs #5525, #10906.
10334
10335 2012-03-08 Glenn Morris <rgm@gnu.org>
10336
10337 * files.el (locate-dominating-file, dir-locals-find-file):
10338 Undo 2012-03-06 change.
10339
10340 2012-03-07 Eli Zaretskii <eliz@gnu.org>
10341
10342 * international/quail.el (quail-help):
10343 Force bidi-paragraph-direction be left-to-right. See discussion in
10344 http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00062.html
10345 for the reason.
10346
10347 2012-03-07 Michael Albinus <michael.albinus@gmx.de>
10348
10349 Avoid superfluous registering of signals. (Bug#10807)
10350
10351 * notifications.el (notifications-on-action-object)
10352 (notifications-on-close-object): New defvars.
10353 (notifications-on-action-signal, notifications-on-closed-signal):
10354 Unregister the signal if not needed any longer.
10355 (notifications-notify): Register `notifications-action-signal' or
10356 `notifications-closed-signal', if :on-action or :on-close has been
10357 passed as argument.
10358
10359 2012-03-07 Chong Yidong <cyd@gnu.org>
10360
10361 * cus-start.el: Avoid x-select-enable-clipboard-manager warning on
10362 non-X platforms.
10363
10364 2012-03-06 Glenn Morris <rgm@gnu.org>
10365
10366 * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
10367 (x-disown-selection-internal, x-get-selection-internal):
10368 Doc fix (add arglist signatures). (Bug#10783)
10369
10370 2012-03-06 Kaushik Srenevasan <ksrenevasan@gmail.com> (tiny change)
10371
10372 * progmodes/gdb-mi.el (gdb-breakpoints-list-handler-custom):
10373 Handle breakpoints with no "type".
10374
10375 2012-03-06 Glenn Morris <rgm@gnu.org>
10376
10377 * files.el (locate-dominating-file): Add optional predicate argument.
10378 (dir-locals-find-file): Make use of above change.
10379
10380 2012-03-06 Thien-Thi Nguyen <ttn@gnuvola.org>
10381
10382 * info.el (Info-insert-dir): Also try "dir.gz".
10383
10384 2012-03-06 Glenn Morris <rgm@gnu.org>
10385
10386 * files.el (dir-locals-find-file):
10387 Ignore non-readable or non-regular files. (Bug#10928)
10388
10389 * files.el (locate-dominating-file): Doc fix.
10390
10391 2012-03-06 Adam Spiers <emacs@adamspiers.org> (tiny change)
10392
10393 * calendar/calendar.el (calendar-set-mode-line):
10394 `getenv' returns a string. (Bug#10951)
10395
10396 2012-03-05 Leo Liu <sdl.web@gmail.com>
10397
10398 * simple.el (backward-delete-char-untabify): Constrain point to
10399 field (Bug#10939).
10400
10401 * eshell/em-cmpl.el (eshell-cmpl-initialize): Fix shift-tab key.
10402
10403 2012-03-05 Chong Yidong <cyd@gnu.org>
10404
10405 * simple.el (count-words): If called from Lisp, return the word
10406 count, for symmetry with `count-lines'. Arglist changed.
10407 (count-words--message): Args changed. Consolidate counting code
10408 from count-words and count-words-region.
10409 (count-words-region): Caller changed.
10410 (count-lines-region): Make it an obsolete alias.
10411
10412 2012-03-04 Tassilo Horn <tassilo@member.fsf.org>
10413
10414 * saveplace.el (save-place-to-alist)
10415 (save-place-ignore-files-regexp): Allow value nil to disable this
10416 feature.
10417
10418 2012-03-04 Chong Yidong <cyd@gnu.org>
10419
10420 * faces.el (face-spec-reset-face): For the default face, reset the
10421 attributes to default values (Bug#10748).
10422
10423 2012-03-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
10424
10425 * mail/emacsbug.el (report-emacs-bug-hook): Fix up thinko in
10426 previous patch: Check `message-send-mail-function', and not the
10427 default function (bug#10897).
10428
10429 2012-03-04 Michael Albinus <michael.albinus@gmx.de>
10430
10431 * notifications.el (notifications-on-action-signal)
10432 (notifications-on-closed-signal): Check for unique service name of
10433 incoming event. Fix error in removing entry.
10434 (top): Register for signals with wildcard service name.
10435 (notifications-notify): Use daemon unique service name for map entries.
10436
10437 2012-03-04 Chong Yidong <cyd@gnu.org>
10438
10439 * cus-start.el: Make x-select-enable-clipboard-manager customizable.
10440
10441 2012-03-04 Glenn Morris <rgm@gnu.org>
10442
10443 * abbrev.el (copy-abbrev-table, abbrev-table-p)
10444 (abbrev-minor-mode-table-alist, define-abbrev, abbrev-insert)
10445 (expand-abbrev, define-abbrev-table): Doc fixes.
10446
10447 2012-03-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
10448
10449 * mail/emacsbug.el (report-emacs-bug-hook): Look at the value of
10450 `message-default-send-mail-function' and not `send-mail-function'
10451 when doing the prompting for `sendmail-query-once' before sending
10452 in Message buffers (bug#10897).
10453
10454 * net/tls.el (open-tls-stream): Don't set the dont-query-on-exit flag.
10455 This is inconsistent with all the other stream functions, which leave
10456 the setting up to the higher levels (if so wanted) (bug#10931).
10457
10458 2012-03-02 Alan Mackenzie <acm@muc.de>
10459
10460 Depessimize the handling of very large macros.
10461
10462 * progmodes/cc-engine.el (c-macro-cache, c-macro-cache-start-pos):
10463 (c-macro-cache-syntactic): New variables to implement a one
10464 element macro cache.
10465 (c-invalidate-macro-cache): New function.
10466 (c-beginning-of-macro, c-end-of-macro, c-syntactic-end-of-macro):
10467 Adapt to use the new cache.
10468 (c-state-safe-place): Use better the cache of safe positions.
10469 (c-state-semi-nonlit-pos-cache)
10470 (c-state-semi-nonlit-pos-cache-limit):
10471 New variables for...
10472 (c-state-semi-safe-place): New function. Here, in a macro is "safe".
10473 (c-invalidate-state-cache-1): New stuff for c-state-semi-safe-place.
10474 (c-in-literal, c-literal-limits, c-determine-limit-get-base):
10475 Use c-state-semi-safe-place.
10476
10477 * progmodes/cc-langs.el (c-get-state-before-change-functions):
10478 Add c-invalidate-macro-cache to the C, C++, Obj entries.
10479
10480 2012-03-02 Michael Albinus <michael.albinus@gmx.de>
10481
10482 * jka-compr.el (jka-compr-call-process):
10483 Apply `file-accessible-directory-p' only when the default directory is
10484 not remote.
10485
10486 2012-03-01 Michael Albinus <michael.albinus@gmx.de>
10487
10488 * files.el (file-equal-p): Fix docstring. Avoid unnecessary
10489 access of FILE2, if FILE1 does not exist.
10490
10491 * net/tramp-sh.el (tramp-remote-process-environment): Add "PAGER=\"\"".
10492 Reported by Robert Lupton the Good <rhl@astro.princeton.edu>.
10493
10494 * vc/vc-git.el (vc-git--call): Enable `inhibit-null-byte-detection'.
10495 Add "PAGER=" to `process-environment'.
10496
10497 2012-03-01 Michael R. Mauger <mmaug@yahoo.com>
10498
10499 * progmodes/sql.el: Bug fix
10500 (sql-get-login-ext): Save login values in globals.
10501 (sql-get-login): Use new version of `sql-get-login-ext'.
10502 (sql-interactive-mode): Set global `sql-connection' to nil.
10503 (sql-connect): Set global values for connection.
10504 (sql-product-interactive): Save global values as buffer local.
10505
10506 2012-02-29 Leo Liu <sdl.web@gmail.com>
10507
10508 * abbrev.el (define-abbrevs): Reset sys to nil.
10509
10510 2012-02-28 Thierry Volpiatto <thierry.volpiatto@gmail.com>
10511
10512 * files.el (file-equal-p): Rename from `files-equal-p'.
10513 Return nil when one or both files don't exist.
10514 (file-subdir-of-p): Now only top directory must exists,
10515 return nil if it doesn't.
10516 (copy-directory): No need to test with `file-subdir-of-p' after
10517 creating dir.
10518 * net/tramp.el (tramp-file-name-for-operation): Rename `files-equal-p'
10519 to `file-equal-p'.
10520
10521 2012-02-28 Glenn Morris <rgm@gnu.org>
10522
10523 * shell.el (shell-mode):
10524 * progmodes/vhdl-mode.el (wildcard-to-regexp, file-expand-wildcards):
10525 * play/landmark.el (landmark-font-lock-face-O):
10526 * play/handwrite.el (handwrite):
10527 * play/gomoku.el (gomoku-O):
10528 * net/browse-url.el (browse-url-browser-display):
10529 * international/mule.el (define-charset):
10530 * htmlfontify.el (hfy-etags-cmd, hfy-face-attr-for-class):
10531 * filesets.el (filesets-find-file-delay):
10532 * eshell/em-xtra.el (eshell-xtra):
10533 * eshell/em-unix.el (eshell-grep):
10534 * emulation/viper.el (viper-mode):
10535 * emacs-lisp/regexp-opt.el (regexp-opt-group):
10536 * emacs-lisp/easymenu.el (easy-menu-define):
10537 * calendar/timeclock.el (timeclock-use-display-time):
10538 * bs.el (bs-mode):
10539 * bookmark.el (bookmark-save-flag):
10540 Doc fix (standardize possessive apostrophe usage).
10541
10542 2012-02-27 Chong Yidong <cyd@gnu.org>
10543
10544 * emulation/viper-cmd.el (viper-intercept-ESC-key):
10545 Fix key-binding lookup for ESC key (Bug#9146).
10546
10547 * font-lock.el (font-lock-specified-p): Rename from
10548 font-lock-spec-present. Callers changed.
10549
10550 2012-02-27 Daniel Hackney <dan@haxney.org>
10551
10552 * emacs-lisp/package.el (package-compute-transaction):
10553 Handle holding a package version to t in package-load-list.
10554
10555 2012-02-26 Michael Albinus <michael.albinus@gmx.de>
10556
10557 * net/tramp.el (tramp-inodes, tramp-devices): Initialize with 0.
10558 (tramp-get-inode, tramp-get-device): Use cached values.
10559
10560 2012-02-26 Alan Mackenzie <acm@muc.de>
10561
10562 Check there is a font-lock specification before doing initial
10563 fontification.
10564
10565 * font-core.el (font-lock-mode): Move the conditional from
10566 :after-hook to font-lock-initial-fontify.
10567 (font-lock-default-function): Move the check for a specification
10568 to font-lock-spec-present.
10569
10570 * font-lock.el (font-lock-initial-fontify): Call ...
10571 (font-lock-spec-present): New function.
10572
10573 2012-02-26 Jim Blandy <jimb@red-bean.com>
10574
10575 * progmodes/gdb-mi.el (gdb-mi-quote): New function.
10576 (gdb-send): Apply it to the operand of the '-interpreter-exec
10577 console' command, so that we can pass arguments with (say) quotes
10578 in them. Store exact string sent in gdb-debug-log (Bug#10765).
10579
10580 2012-02-26 Chong Yidong <cyd@gnu.org>
10581
10582 * help-fns.el (describe-function-1): Clarify description of
10583 remapping (Bug#10844).
10584
10585 * files.el (files-equal-p): Doc fix.
10586 (file-subdir-of-p): Doc fix. Convert loop macro to plain Lisp,
10587 and quit the loop once a mismatch is found.
10588
10589 2012-02-25 Juanma Barranquero <lekktu@gmail.com>
10590
10591 * bs.el (bs--show-with-configuration): Don't throw an error
10592 if the window cannot be split; otherwise, subsequent calls to
10593 bs-show fail, restoring a stale window config. (Bug#10882)
10594
10595 2012-02-25 Jan Djärv <jan.h.d@swipnet.se>
10596
10597 * term/ns-win.el (global-map): Bind ns-drag-file to
10598 ns-find-file (Bug#5855, Bug#10050).
10599
10600 2012-02-25 Andreas Schwab <schwab@linux-m68k.org>
10601
10602 * calendar/parse-time.el (parse-time-string): Allow extractor to
10603 return nil.
10604
10605 2012-02-25 Michael Albinus <michael.albinus@gmx.de>
10606
10607 * net/tramp.el (tramp-file-name-for-operation):
10608 Add `files-equal-p' and `file-subdir-of-p'.
10609
10610 * net/tramp-sh.el (tramp-sh-handle-copy-directory):
10611 * net/tramp-smb.el (tramp-smb-handle-copy-directory):
10612 Add COPY-CONTENTS argument.
10613
10614 2012-02-25 Chong Yidong <cyd@gnu.org>
10615
10616 Add custom groups for VC backends, for consistency with vc-bzr.
10617
10618 * vc/vc-arch.el (vc-arch):
10619 * vc/vc-cvs.el (vc-cvs):
10620 * vc/vc-git.el (vc-git):
10621 * vc/vc-hg.el (vc-hg):
10622 * vc/vc-mtn.el (vc-mtn):
10623 * vc/vc-rcs.el (vc-rcs):
10624 * vc/vc-sccs.el (vc-sccs):
10625 * vc/vc-svn.el (vc-svn): New customization group (Bug#10871).
10626 All relevant defcustoms reassigned.
10627
10628 2012-02-25 Chong Yidong <cyd@gnu.org>
10629
10630 * newcomment.el (comment-styles): Add autoload (Bug#10868).
10631
10632 * term/x-win.el (x-initialize-window-system): Reduce default for
10633 x-selection-timeout to 5 seconds (Bug#8869).
10634
10635 2012-02-24 Thierry Volpiatto <thierry.volpiatto@gmail.com>
10636
10637 * files.el (files-equal-p, file-subdir-of-p): New functions.
10638 (copy-directory): Error when trying to copy a directory on itself.
10639 Add missing copy-contents arg to tramp handler.
10640 * dired-aux.el (dired-copy-file-recursive): Same.
10641 (dired-create-files): Modify destination when source is equal to
10642 dest when copying files.
10643 Return also when dest is a subdir of source. (Bug#10489)
10644
10645 2012-02-24 Michael Albinus <michael.albinus@gmx.de>
10646
10647 * net/ange-ftp.el (ange-ftp-parse-netrc): Suppress comment lines.
10648 (Bug#10874)
10649
10650 2012-02-23 Alan Mackenzie <acm@muc.de>
10651
10652 * emacs-lisp/easy-mmode.el (define-minor-mode): Add extra
10653 parameter "after-hook:" to allow the expansion to run code after
10654 the execution of the mode hooks.
10655
10656 * font-lock.el (font-lock-initial-fontify): New function extracted
10657 from font-lock-mode-internal.
10658
10659 * font-core.el (font-lock-mode): Call font-lock-initial-fontify in
10660 :after-hook.
10661
10662 2012-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
10663
10664 * minibuffer.el: Make sure cycling is reset upon edit with icomplete.el.
10665 (completion--cache-all-sorted-completions): New function.
10666 (completion-all-sorted-completions): Use it.
10667 (completion--do-completion, minibuffer-force-complete):
10668 Use it to re-instate the flush hook.
10669
10670 * icomplete.el (icomplete-completions): Replace last fix with a better
10671 one (bug#10850).
10672
10673 2012-02-23 Dmitry Gutov <dgutov@yandex.ru>
10674
10675 * emacs-lisp/lisp.el (beginning-of-defun-raw): Don't call end-of-defun
10676 when it might call us back infinitely (bug#10797).
10677
10678 2012-02-23 Glenn Morris <rgm@gnu.org>
10679
10680 * minibuffer.el (completion-category-overrides): Doc fix.
10681
10682 2012-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
10683
10684 * minibuffer.el (completion-table-with-context): Fix inf-loop.
10685 Reported by Aaron S. Hawley <aaron.s.hawley@gmail.com>.
10686
10687 2012-02-23 Glenn Morris <rgm@gnu.org>
10688
10689 * emacs-lisp/authors.el (authors-aliases, authors-fixed-case)
10690 (authors-obsolete-files-regexps, authors-ignored-files)
10691 (authors-ambiguous-files, authors-renamed-files-alist):
10692 Add more entries.
10693
10694 2012-02-23 Juri Linkov <juri@jurta.org>
10695
10696 * isearch.el (isearch-occur): Sync interactive spec with occur's
10697 new feature in `occur-read-primary-args'. Doc fix. (Bug#10705)
10698
10699 * replace.el (occur-menu-map): Add menu item for `occur-edit-mode'.
10700
10701 2012-02-22 Juri Linkov <juri@jurta.org>
10702
10703 * international/mule-cmds.el (read-char-by-name): Use \` and \'.
10704 (ucs-insert): Doc fix. Check for hex digits in the string.
10705 Don't display `nil' in the error message. (Bug#10857)
10706
10707 2012-02-22 Alan Mackenzie <acm@muc.de>
10708
10709 * progmodes/cc-mode.el: Revert change #2012-02-06T22:08:41Z!larsi@gnus.org from 2012-02-06.
10710
10711 2012-02-22 Glenn Morris <rgm@gnu.org>
10712
10713 * ffap.el (ffap-c-path):
10714 * man.el (Man-header-file-path): Handle multiarch. (Bug#10702)
10715
10716 2012-02-22 Chong Yidong <cyd@gnu.org>
10717
10718 * custom.el (load-theme): Doc fix.
10719
10720 2012-02-22 Glenn Morris <rgm@gnu.org>
10721
10722 * dired-x.el (dired-guess-shell-alist-default):
10723 Remove escape sequences from nroff output. (Bug#172)
10724
10725 2012-02-21 Glenn Morris <rgm@gnu.org>
10726
10727 * vc/emerge.el (emerge-defvar-local):
10728 Set `permanent-local' property rather than unused `preserved'.
10729
10730 * textmodes/picture.el (picture-delete-char): New alias.
10731 (picture-mode-map): Use it. (Bug#10860)
10732 (picture-mode): Doc fix.
10733
10734 2012-02-21 Juanma Barranquero <lekktu@gmail.com>
10735
10736 * newcomment.el (uncomment-region-default): Remove unused binding.
10737
10738 2012-02-21 Glenn Morris <rgm@gnu.org>
10739
10740 * textmodes/picture.el (picture-motion, picture-motion-reverse)
10741 (picture-self-insert, picture-tab-chars): Doc fix.
10742 (picture-mode-map): Fix C-a, C-e.
10743
10744 2012-02-20 Glenn Morris <rgm@gnu.org>
10745
10746 * emacs-lisp/authors.el (authors-aliases): Add another entry.
10747
10748 2012-02-20 Leo Liu <sdl.web@gmail.com>
10749
10750 * icomplete.el (icomplete-completions): Check FROM arg before
10751 passing to substring (Bug#10850).
10752
10753 2012-02-19 Chong Yidong <cyd@gnu.org>
10754
10755 * comint.el: Require ansi-color.
10756 (comint-output-filter-functions): Add ansi-color-process-output.
10757
10758 * ansi-color.el: Don't set comint-output-filter-functions; it is
10759 now in the initial value defined in comint.el.
10760 (ansi-color-apply-face-function): New variable.
10761 (ansi-color-apply-on-region): Use it.
10762 (ansi-color-apply-overlay-face): New function.
10763
10764 * shell.el (shell): No need to require ansi-color.
10765 (shell-mode): Use ansi-color-apply-face-function to highlight
10766 color escapes using font-lock-face property (Bug#10835).
10767
10768 2012-02-19 Chong Yidong <cyd@gnu.org>
10769
10770 * vc/ediff-init.el (ediff-strip-mode-line-format): Handle non-list
10771 mode-line formats (Bug#10839).
10772
10773 2012-02-18 Glenn Morris <rgm@gnu.org>
10774
10775 * mail/rmail.el (rmail-dont-reply-to-names): Mark as obsolete.
10776
10777 * mail/undigest.el (unforward-rmail-message): Doc fix.
10778
10779 * saveplace.el (save-place-ignore-files-regexp): Add :version.
10780
10781 2012-02-18 Eli Zaretskii <eliz@gnu.org>
10782
10783 * international/characters.el (script-list): Sync with the latest
10784 Unicode Character Database.
10785
10786 2012-02-18 Andreas Schwab <schwab@linux-m68k.org>
10787
10788 * international/titdic-cnv.el: Remove duplicate coding tag.
10789 * language/cham.el: Likewise.
10790 * language/tai-viet.el: Likewise.
10791
10792 2012-02-18 Glenn Morris <rgm@gnu.org>
10793
10794 * calendar/cal-menu.el (cal-menu-diary-menu, cal-menu-goto-menu):
10795 * calendar/calendar.el (diary-file, diary-bahai-entry-symbol)
10796 (calendar-bahai-all-holidays-flag, calendar-other-dates):
10797 * calendar/diary-lib.el (diary-abbreviated-year-flag):
10798 * calendar/holidays.el (holiday-bahai-holidays)
10799 (calendar-holidays, list-holidays):
10800 Use utf-8 Bahá'í in doc-strings, menus, etc.
10801
10802 2012-02-17 Tassilo Horn <tassilo@member.fsf.org>
10803
10804 * saveplace.el (save-place-ignore-files-regexp): New variable
10805 allowing for excluding files from saving their location of point.
10806 The default value matches the temporary commit message editing
10807 files from Git, SVN, Bazaar, and Mercurial.
10808 (save-place-to-alist): Use it.
10809
10810 2012-02-17 Lawrence Mitchell <wence@gmx.li>
10811 Stefan Monnier <monnier@iro.umontreal.ca>
10812
10813 * newcomment.el (uncomment-region-default): Don't leave extra space
10814 when an arg is provided (bug#8150).
10815
10816 2012-02-17 Teodor Zlatanov <tzz@lifelogs.com>
10817
10818 * net/gnutls.el (gnutls-trustfiles): Fix Cygwin bundle location.
10819
10820 2012-02-17 Glenn Morris <rgm@gnu.org>
10821
10822 * net/socks.el: Require network-stream. (Bug#10599)
10823
10824 2012-02-17 Kenichi Handa <handa@m17n.org>
10825
10826 * international/charprop.el:
10827 * international/uni-name.el:
10828 * international/uni-old-name.el:
10829 * international/uni-comment.el: Regenerate.
10830
10831 2012-02-16 Glenn Morris <rgm@gnu.org>
10832
10833 * calendar/cal-hebrew.el (calendar-hebrew-list-yahrzeits):
10834 Interactively in calendar buffer, give an error if not on a date.
10835
10836 2012-02-15 Glenn Morris <rgm@gnu.org>
10837
10838 * shell.el (shell-delimiter-argument-list):
10839 Revert 2011-02-17 change. (Bug#8027)
10840
10841 2012-02-15 Chong Yidong <cyd@gnu.org>
10842
10843 * minibuffer.el (completion-at-point-functions): Doc fix.
10844
10845 * custom.el (defcustom): Doc fix; note use of defvar.
10846
10847 2012-02-15 Glenn Morris <rgm@gnu.org>
10848
10849 * mail/smtpmail.el (smtpmail-smtp-user, smtpmail-stream-type):
10850 Doc fixes.
10851
10852 2012-02-14 Glenn Morris <rgm@gnu.org>
10853
10854 * mail/smtpmail.el (smtpmail-query-smtp-server): Give it a doc.
10855
10856 2012-02-14 Lars Ingebrigtsen <larsi@gnus.org>
10857
10858 * mail/smtpmail.el (smtpmail-query-smtp-server): Fix typo in the
10859 way the ports list is computed.
10860 (smtpmail-query-smtp-server): Prompt the user for a port number if
10861 we can't connect to any of the standard ports (bug#10810).
10862
10863 2012-02-14 Teodor Zlatanov <tzz@lifelogs.com>
10864
10865 * net/gnutls.el (gnutls-trustfiles): Add Cygwin location.
10866
10867 2012-02-13 Glenn Morris <rgm@gnu.org>
10868
10869 * minibuffer.el (read-file-name): Doc fix. (Bug#10798)
10870
10871 2012-02-13 Teodor Zlatanov <tzz@lifelogs.com>
10872
10873 * net/gnutls.el (gnutls-trustfiles): New variable.
10874 (gnutls-negotiate): Use it.
10875
10876 2012-02-13 Lars Ingebrigtsen <larsi@gnus.org>
10877
10878 * simple.el (mail-user-agent): Mention that `gnus-user-agent' only
10879 does its stuff if Gnus is running.
10880
10881 2012-02-13 Alan Mackenzie <acm@muc.de>
10882
10883 Fix a loop in c-set-fl-decl-start.
10884
10885 * progmodes/cc-engine.el (c-set-fl-decl-start): Add a check that
10886 c-backward-syntactic-ws actually moves backwards.
10887
10888 2012-02-13 Leo Liu <sdl.web@gmail.com>
10889
10890 * net/rcirc.el (rcirc-markup-attributes): Move point to the
10891 beginning so that all \C-o chars are removed.
10892
10893 2012-02-12 Teodor Zlatanov <tzz@lifelogs.com>
10894
10895 * net/gnutls.el (gnutls-algorithm-priority): Add missing :group tag.
10896
10897 2012-02-12 Alan Mackenzie <acm@muc.de>
10898
10899 Fix infinite loop with long macros.
10900 * progmodes/cc-engine.el (c-state-safe-place): Handle macros properly.
10901
10902 2012-02-12 Chong Yidong <cyd@gnu.org>
10903
10904 * window.el (display-buffer): Doc fix (Bug#10785).
10905
10906 2012-02-12 Glenn Morris <rgm@gnu.org>
10907
10908 * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
10909 (x-disown-selection-internal, x-get-selection-internal):
10910 Sync docs with the xselect.c versions.
10911
10912 * allout-widgets.el: Add missing license notice.
10913
10914 2012-02-11 Glenn Morris <rgm@gnu.org>
10915
10916 * select.el (x-get-selection-internal, x-own-selection-internal)
10917 (x-disown-selection-internal):
10918 * x-dnd.el (x-get-selection-internal): Update declarations.
10919
10920 * vc/log-view.el (vc-diff-internal): Remove unneeded declaration.
10921
10922 * window.el (window-sides-slots):
10923 * tool-bar.el (tool-bar-position):
10924 * term/xterm.el (xterm-extra-capabilities):
10925 * ses.el (ses-self-reference-early-detection):
10926 * progmodes/verilog-mode.el (verilog-auto-declare-nettype)
10927 (verilog-auto-wire-type)
10928 (verilog-auto-delete-trailing-whitespace)
10929 (verilog-auto-reset-blocking-in-non, verilog-auto-inst-sort)
10930 (verilog-auto-tieoff-declaration):
10931 * progmodes/sql.el (sql-login-hook, sql-ansi-statement-starters)
10932 (sql-oracle-statement-starters, sql-oracle-scan-on):
10933 * progmodes/prolog.el (prolog-align-comments-flag)
10934 (prolog-indent-mline-comments-flag, prolog-object-end-to-0-flag)
10935 (prolog-left-indent-regexp, prolog-paren-indent-p)
10936 (prolog-paren-indent, prolog-parse-mode, prolog-keywords)
10937 (prolog-types, prolog-mode-specificators)
10938 (prolog-determinism-specificators, prolog-directives)
10939 (prolog-electric-newline-flag, prolog-hungry-delete-key-flag)
10940 (prolog-electric-dot-flag)
10941 (prolog-electric-dot-full-predicate-template)
10942 (prolog-electric-underscore-flag, prolog-electric-tab-flag)
10943 (prolog-electric-if-then-else-flag, prolog-electric-colon-flag)
10944 (prolog-electric-dash-flag, prolog-old-sicstus-keys-flag)
10945 (prolog-program-switches, prolog-prompt-regexp)
10946 (prolog-debug-on-string, prolog-debug-off-string)
10947 (prolog-trace-on-string, prolog-trace-off-string)
10948 (prolog-zip-on-string, prolog-zip-off-string)
10949 (prolog-use-standard-consult-compile-method-flag)
10950 (prolog-use-prolog-tokenizer-flag, prolog-imenu-flag)
10951 (prolog-imenu-max-lines, prolog-info-predicate-index)
10952 (prolog-underscore-wordchar-flag, prolog-use-sicstus-sd)
10953 (prolog-char-quote-workaround):
10954 * progmodes/cc-vars.el (c-defun-tactic):
10955 * net/tramp.el (tramp-encoding-command-interactive)
10956 (tramp-local-end-of-line):
10957 * net/soap-client.el (soap-client):
10958 * net/netrc.el (netrc-file):
10959 * net/gnutls.el (gnutls):
10960 * minibuffer.el (completion-category-overrides)
10961 (completion-cycle-threshold)
10962 (completion-pcm-complete-word-inserts-delimiters):
10963 * man.el (Man-name-local-regexp):
10964 * mail/feedmail.el (feedmail-display-full-frame):
10965 * international/characters.el (glyphless-char-display-control):
10966 * eshell/em-ls.el (eshell-ls-date-format):
10967 * emacs-lisp/cl-indent.el (lisp-lambda-list-keyword-alignment)
10968 (lisp-lambda-list-keyword-parameter-indentation)
10969 (lisp-lambda-list-keyword-parameter-alignment):
10970 * doc-view.el (doc-view-image-width, doc-view-unoconv-program):
10971 * dired-x.el (dired-omit-verbose):
10972 * cus-theme.el (custom-theme-allow-multiple-selections):
10973 * calc/calc.el (calc-highlight-selections-with-faces)
10974 (calc-lu-field-reference, calc-lu-power-reference)
10975 (calc-note-threshold):
10976 * battery.el (battery-mode-line-limit):
10977 * arc-mode.el (archive-7z-extract, archive-7z-expunge)
10978 (archive-7z-update):
10979 * allout.el (allout-prefixed-keybindings)
10980 (allout-unprefixed-keybindings)
10981 (allout-inhibit-auto-fill-on-headline)
10982 (allout-flattened-numbering-abbreviation):
10983 * allout-widgets.el (allout-widgets-auto-activation)
10984 (allout-widgets-icons-dark-subdir)
10985 (allout-widgets-icons-light-subdir, allout-widgets-icon-types)
10986 (allout-widgets-theme-dark-background)
10987 (allout-widgets-theme-light-background)
10988 (allout-widgets-item-image-properties-emacs)
10989 (allout-widgets-item-image-properties-xemacs)
10990 (allout-widgets-run-unit-tests-on-load)
10991 (allout-widgets-time-decoration-activity)
10992 (allout-widgets-hook-error-post-time)
10993 (allout-widgets-track-decoration):
10994 Add missing :version tags to new defcustoms and defgroups.
10995
10996 * progmodes/sql.el (sql-ansi-statement-starters)
10997 (sql-oracle-statement-starters): Add custom type.
10998
10999 * progmodes/prolog.el: Remove leading '*' from defcustom docs.
11000 (prolog-system-version): Give it a type.
11001
11002 2012-02-11 Eli Zaretskii <eliz@gnu.org>
11003
11004 * term/pc-win.el (x-select-text, x-selection-owner-p)
11005 (x-own-selection-internal, x-disown-selection-internal)
11006 (x-get-selection-internal): Sync doc strings and argument lists
11007 with xselect.c, common-win.el and x-win.el. (Bug#10783)
11008
11009 2012-02-11 Leo Liu <sdl.web@gmail.com>
11010
11011 * progmodes/python.el (python-end-of-statement): Fix infinite
11012 loop. (Bug#10788)
11013
11014 2012-02-10 Glenn Morris <rgm@gnu.org>
11015
11016 * international/mule-cmds.el (unify-8859-on-encoding-mode)
11017 (unify-8859-on-decoding-mode): Properly mark as obsolete.
11018
11019 2012-02-10 Lars Ingebrigtsen <larsi@gnus.org>
11020
11021 * mail/emacsbug.el (report-emacs-bug-hook): Query the user first
11022 about SMTP before checking the From header.
11023
11024 * mail/sendmail.el (sendmail-query-user-about-smtp): Refactor out
11025 into own function for reuse by emacsbug.el.
11026
11027 2012-02-10 Leo Liu <sdl.web@gmail.com>
11028
11029 * subr.el (condition-case-unless-debug): Rename from
11030 condition-case-no-debug. All callers changed.
11031 (with-demoted-errors): Fix caller.
11032
11033 * vc/diff-mode.el (diff-auto-refine-mode, diff-hunk):
11034 * nxml/rng-valid.el (rng-do-some-validation):
11035 * emacs-lisp/package.el (package-refresh-contents)
11036 (package-menu-execute):
11037 * desktop.el (desktop-create-buffer):
11038 * font-lock.el (lisp-font-lock-keywords-2): Caller changed.
11039
11040 2012-02-10 Glenn Morris <rgm@gnu.org>
11041
11042 * textmodes/bibtex.el:
11043 Add missing :version tags for new/changed defcustoms.
11044
11045 * files.el (remote-file-name-inhibit-cache): Doc fixes.
11046
11047 2012-02-09 Lars Ingebrigtsen <larsi@rusty>
11048
11049 * mail/smtpmail.el (smtpmail-user-mail-address): New function.
11050 (smtpmail-via-smtp): Use it, or fall back on the From address.
11051 (smtpmail-send-it): Ditto.
11052
11053 2012-02-09 Stefan Monnier <monnier@iro.umontreal.ca>
11054
11055 * emacs-lisp/bytecomp.el (byte-compile-file-form-defvar):
11056 Don't fallback on byte-compile-defvar. Optimize (defvar foo) away.
11057 (byte-compile-tmp-var): New const.
11058 (byte-compile-defvar): Use it to minimize .elc size.
11059 Just use `defvar' rather than simulate it (bug#10761).
11060
11061 2012-02-09 Glenn Morris <rgm@gnu.org>
11062
11063 * files.el (rename-uniquely): Doc fix. (Bug#3806)
11064
11065 * progmodes/cc-guess.el (c-guess-offset-threshold, c-guess-region-max):
11066 Add :version tags.
11067
11068 * progmodes/compile.el (compilation-error-screen-columns)
11069 (compilation-first-column, compilation-filter-start): Doc fixes.
11070
11071 * vc/log-view.el (log-view-toggle-entry-display):
11072 * vc/vc.el (vc-merge, vc-pull): Doc fixes.
11073
11074 * mail/emacsbug.el (report-emacs-bug-can-use-osx-open)
11075 (report-emacs-bug-can-use-xdg-email):
11076 (report-emacs-bug-insert-to-mailer): Doc fixes.
11077 (report-emacs-bug): Message fix.
11078
11079 * net/browse-url.el (browse-url-can-use-xdg-open)
11080 (browse-url-xdg-open): Doc fixes.
11081
11082 * electric.el (electric-indent-mode, electric-pair-mode)
11083 (electric-layout-rules, electric-layout-mode): Doc fixes.
11084 (electric-pair-pairs, electric-pair-skip-self): Add :version tags.
11085
11086 2012-02-08 Martin Rudalics <rudalics@gmx.at>
11087
11088 * server.el (server-unselect-display): Don't inadvertently kill
11089 the current buffer. (Bug#10729)
11090
11091 2012-02-08 Glenn Morris <rgm@gnu.org>
11092
11093 * progmodes/sql.el (sql-port, sql-connection-alist, sql-list-all)
11094 (sql-list-table): Doc fixes.
11095
11096 * image-mode.el (image-transform-minor-mode-map, image-transform-mode):
11097 Comment out (does nothing).
11098
11099 * completion.el (dynamic-completion-mode):
11100 * dirtrack.el (dirtrack-debug-mode):
11101 * electric.el (electric-layout-mode):
11102 * epa-mail.el (epa-mail-mode, epa-global-mail-mode):
11103 * face-remap.el (text-scale-mode, buffer-face-mode):
11104 * iimage.el (iimage-mode):
11105 * image-mode.el (image-transform-mode):
11106 * minibuffer.el (completion-in-region-mode):
11107 * scroll-lock.el (scroll-lock-mode):
11108 * simple.el (next-error-follow-minor-mode):
11109 * tar-mode.el (tar-subfile-mode):
11110 * tooltip.el (tooltip-mode):
11111 * vcursor.el (vcursor-use-vcursor-map):
11112 * wid-browse.el (widget-minor-mode):
11113 * emulation/tpu-edt.el (tpu-edt-mode):
11114 * emulation/tpu-extras.el (tpu-cursor-free-mode):
11115 * international/iso-ascii.el (iso-ascii-mode):
11116 * language/thai-util.el (thai-word-mode):
11117 * mail/supercite.el (sc-minor-mode):
11118 * net/goto-addr.el (goto-address-mode):
11119 * net/rcirc.el (rcirc-multiline-minor-mode, rcirc-track-minor-mode):
11120 * progmodes/cwarn.el (cwarn-mode):
11121 * progmodes/flymake.el (flymake-mode):
11122 * progmodes/glasses.el (glasses-mode):
11123 * progmodes/hideshow.el (hs-minor-mode):
11124 * progmodes/pascal.el (pascal-outline-mode):
11125 * textmodes/enriched.el (enriched-mode):
11126 * vc/smerge-mode.el (smerge-mode):
11127 Doc fixes (minor mode argument).
11128
11129 2012-02-07 Eli Zaretskii <eliz@gnu.org>
11130
11131 * ls-lisp.el (ls-lisp-sanitize): New function.
11132 (ls-lisp-insert-directory): Use it to fix or remove any elements
11133 in file-alist with missing attributes. (Bug#4673)
11134
11135 2012-02-07 Alan Mackenzie <acm@muc.de>
11136
11137 Fix spurious recognition of c-in-knr-argdecl.
11138
11139 * progmodes/cc-engine.el (c-in-knr-argdecl): Check for '=' in a
11140 putative K&R region.
11141
11142 2012-02-07 Alan Mackenzie <acm@muc.de>
11143
11144 * progmodes/cc-engine.el (c-forward-objc-directive):
11145 Prevent looping in "#pragma mark @implementation".
11146
11147 2012-02-07 Michael Albinus <michael.albinus@gmx.de>
11148
11149 * notifications.el (notifications-on-closed-signal): Make `reason'
11150 optional. (Bug#10744)
11151
11152 2012-02-07 Glenn Morris <rgm@gnu.org>
11153
11154 * emacs-lisp/easy-mmode.el (define-minor-mode):
11155 Doc fixes for the macro and the mode it defines.
11156
11157 * image.el (imagemagick-types-inhibit): Doc fix.
11158
11159 * cus-start.el (imagemagick-render-type): Add it.
11160
11161 2012-02-06 Lars Ingebrigtsen <larsi@gnus.org>
11162
11163 * progmodes/cc-mode.el (c-standard-font-lock-fontify-region-function):
11164 Set the default at load time, too, so that `font-lock-fontify-buffer'
11165 can be called without setting up the entire mode first. This fixes
11166 a bug in `mm-inline-text' with C MIME parts.
11167
11168 2012-02-06 Chong Yidong <cyd@gnu.org>
11169
11170 * simple.el (list-processes--refresh): Delete exited processes
11171 (Bug#8094).
11172
11173 * comint.el (comint-next-prompt): next-single-char-property-change
11174 and prev-single-char-property-change never return nil (Bug#8657).
11175
11176 * custom.el (defcustom): Doc fix (Bug#9711).
11177
11178 2012-02-05 Chong Yidong <cyd@gnu.org>
11179
11180 * cus-edit.el (custom-variable-reset-backup): Quote the value
11181 before storing it in the customized-value property (Bug#6712).
11182 (custom-display): Add a customization type tag.
11183 (custom-buffer-create-internal): Improve tooltip message.
11184
11185 * wid-edit.el (widget-field-value-get): New optional arg to
11186 suppress trailing whitespace truncation.
11187 (character): Use it (Bug#2689).
11188
11189 2012-02-05 Andreas Schwab <schwab@linux-m68k.org>
11190
11191 * progmodes/gud.el (gud-pv): Use pv instead of pv1.
11192 * progmodes/gdb-mi.el (gud-pp): Use pp instead of pp1.
11193
11194 2012-02-05 Chong Yidong <cyd@gnu.org>
11195
11196 * cus-edit.el (custom-variable-value-create): For mismatched
11197 types, show the current value (Bug#7600).
11198
11199 * custom.el (defcustom): Doc fix.
11200
11201 2012-02-05 Glenn Morris <rgm@gnu.org>
11202
11203 * font-lock.el (lisp-font-lock-keywords-2): Add with-wrapper-hook.
11204
11205 2012-02-05 Juanma Barranquero <lekktu@gmail.com>
11206
11207 * emacs-lisp/pp.el (pp-to-string): Use `with-temp-buffer'.
11208 (pp-buffer): Use `ignore-errors', `looking-at-p'.
11209 (pp-last-sexp): Use `looking-at-p'.
11210
11211 2012-02-04 Glenn Morris <rgm@gnu.org>
11212
11213 * files.el (revert-buffer):
11214 Doc fix (mention revert-buffer-in-progress-p).
11215
11216 * emacs-lisp/ert-x.el (ert-simulate-command):
11217 Check deferred-action-list (which is obsolete) is bound.
11218
11219 * subr.el (with-wrapper-hook): Doc fixes.
11220
11221 * simple.el (filter-buffer-substring-functions)
11222 (buffer-substring-filters, filter-buffer-substring): Doc fixes.
11223
11224 2012-02-04 Lars Ljung <lars@matholka.se> (tiny change)
11225
11226 * eshell/esh-ext.el (eshell-windows-shell-file): Match "cmdproxy"
11227 anywhere in shell-file-name, not just at the beginning. (Bug#10523)
11228
11229 2012-02-04 Leo Liu <sdl.web@gmail.com>
11230
11231 * emacs-lisp/smie.el: Fix dead link (Bug#10711).
11232
11233 2012-02-04 Glenn Morris <rgm@gnu.org>
11234
11235 * image.el (image-extension-data): Add obsolete alias.
11236
11237 * isearch.el (isearch-update): Doc fix.
11238
11239 * facemenu.el (list-colors-display): Doc fix (minor rephrasing).
11240
11241 * ido.el (ido-find-file): Doc fix (ido-toggle-vc not on any key).
11242
11243 2012-02-03 Glenn Morris <rgm@gnu.org>
11244
11245 * image.el (image-animated-p): Doc fix. Use image-animated-types.
11246 (image-animate-timeout): Doc fix.
11247
11248 * image-mode.el (image-animate-loop, image-toggle-animation): Doc fixes.
11249
11250 2012-02-02 Glenn Morris <rgm@gnu.org>
11251
11252 * server.el (server-auth-dir): Doc fix.
11253 (server-eval-at): Doc fix. Give an explicit error if !server-use-tcp.
11254
11255 * subr.el (run-mode-hooks): Doc fix.
11256
11257 2012-02-02 Juri Linkov <juri@jurta.org>
11258
11259 * image-mode.el (image-toggle-display-image): Remove tautological
11260 `major-mode' from the `derived-mode-p' test.
11261
11262 2012-02-02 Kenichi Handa <handa@m17n.org>
11263
11264 * composite.el (compose-region): Cancel previous change.
11265
11266 2012-02-02 Kenichi Handa <handa@m17n.org>
11267
11268 * composite.el (compose-region, compose-string): Signal error for
11269 a null string component (Bug#6988).
11270
11271 2012-02-01 Chong Yidong <cyd@gnu.org>
11272
11273 * view.el (view-buffer-other-window, view-buffer-other-frame):
11274 Handle special modes like view-buffer (Bug#10650).
11275 (view-buffer): Simplify.
11276
11277 * frame.el (set-frame-font): Tweak meaning of third argument.
11278
11279 * dynamic-setting.el (font-setting-change-default-font):
11280 Use set-frame-font (Bug#9982).
11281
11282 2012-02-01 Glenn Morris <rgm@gnu.org>
11283
11284 * progmodes/compile.el (compilation-internal-error-properties):
11285 Respect compilation-first-column in the "*compilation*" buffer.
11286
11287 * emacs-lisp/easy-mmode.el (define-minor-mode):
11288 Relax :variable's test for a named function.
11289
11290 2012-01-31 Alan Mackenzie <acm@muc.de>
11291
11292 * progmodes/cc-engine.el (c-guess-basic-syntax): CASE 5B.1: Fix an
11293 off by one error.
11294
11295 2012-01-31 Chong Yidong <cyd@gnu.org>
11296
11297 * frame.el (set-frame-font): New arg ALL-FRAMES.
11298
11299 * menu-bar.el (menu-set-font): Use set-frame-font.
11300
11301 * faces.el (face-spec-reset-face): Don't apply unspecified
11302 attribute values to the default face.
11303
11304 2012-01-31 Juanma Barranquero <lekktu@gmail.com>
11305
11306 * progmodes/cwarn.el (cwarn): Remove dead link.
11307 (cwarn-configuration, cwarn-verbose, cwarn-mode-text, cwarn-load-hook):
11308 Remove * from defcustom docstrings.
11309 (turn-on-cwarn-mode): Make obsolete.
11310 (c-at-toplevel-p): Remove compatibility code for Emacs 20.3 and older.
11311 (turn-on-cwarn-mode-if-enabled): Call `cwarn-mode'.
11312
11313 2012-01-31 Glenn Morris <rgm@gnu.org>
11314
11315 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix.
11316 Fix :variable handling of mode a symbol not equal to modefun.
11317 Allow named functions to be used as the cdr of :variable.
11318
11319 2012-01-30 Glenn Morris <rgm@gnu.org>
11320
11321 * emacs-lisp/authors.el (authors-fixed-entries):
11322 Remove reference to deleted file rnewspost.el.
11323
11324 2012-01-29 Juanma Barranquero <lekktu@gmail.com>
11325
11326 * window.el (window-with-parameter): Remove unused variable `windows'.
11327 (window--side-check): Remove unused variable `code'.
11328 (window--resize-siblings): Remove unused variable `first'.
11329 (adjust-window-trailing-edge): Remove unused variable `failed'.
11330 (window-deletable-p, window--delete): Remove unused variable `buffer'.
11331 Use `let', not `let*'.
11332 (balance-windows-2): Remove unused variable `found'.
11333 (window--state-put-2): Remove unused variable `splits'.
11334 (window-state-put): Remove unused variable `selected'.
11335 (same-window-p): Use `string-match-p'.
11336 (display-buffer-assq-regexp): Remove unused variable `value'.
11337 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
11338 Mark argument ALIST as ignored.
11339 (pop-to-buffer): Remove unused variable `old-window'.
11340
11341 2012-01-29 Eli Zaretskii <eliz@gnu.org>
11342
11343 * jka-cmpr-hook.el (jka-compr-compression-info-list): Support .lz
11344 and .lzma compressed files.
11345
11346 2012-01-29 Chong Yidong <cyd@gnu.org>
11347
11348 * frame.el (window-system-default-frame-alist): Doc fix.
11349
11350 * dynamic-setting.el (font-setting-change-default-font): Don't
11351 change the default face if SET-FONT argument is non-nil (Bug#9982).
11352
11353 2012-01-29 Samuel Bronson <naesten@gmail.com> (tiny change)
11354
11355 * custom.el (defcustom): Add doc link to Lisp manual (Bug#10635).
11356
11357 2012-01-29 Syver Enstad <syver.enstad@cisco.com> (tiny change)
11358
11359 * progmodes/gud.el (pdb): Give pdb full paths, to allow setting
11360 breakpoints in files outside current directory (Bug#6098).
11361
11362 2012-01-29 Chong Yidong <cyd@gnu.org>
11363
11364 * progmodes/python.el: Require ansi-color at top-level.
11365
11366 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-abbrev-table):
11367 Define and use in Emacs Lisp mode (Bug#9360).
11368 (lisp-mode-abbrev-table): Add doc.
11369 (lisp-mode-variables): Don't set local-abbrev-table.
11370 (lisp-interaction-mode): Use emacs-lisp-mode-abbrev-table.
11371
11372 2012-01-28 Roland Winkler <winkler@gnu.org>
11373
11374 * textmodes/bibtex.el (bibtex-vec-incr): Fix docstring.
11375
11376 2012-01-28 Roland Winkler <winkler@gnu.org>
11377
11378 * textmodes/bibtex.el (bibtex-entry-alist): New function.
11379 (bibtex-set-dialect): Use it. Either set global values of
11380 dialect-dependent variables or bind these variables buffer-locally
11381 (Bug#10254).
11382 (bibtex-mode): Call bibtex-set-dialect via
11383 hack-local-variables-hook.
11384 (bibtex-dialect): Update docstring.
11385 Add safe-local-variable predicate.
11386 (bibtex-entry-alist, bibtex-field-alist): Initialize via
11387 bibtex-set-dialect.
11388 (bibtex-mode-map): Define menu for each dialect.
11389 (bibtex-entry): Fix docstring.
11390
11391 2012-01-28 Chong Yidong <cyd@gnu.org>
11392
11393 * eshell/esh-arg.el (eshell-quote-argument): New function.
11394
11395 * eshell/esh-ext.el (eshell-invoke-batch-file):
11396 * eshell/em-unix.el (eshell/cat, eshell/du): Use it to quote the
11397 first arg to eshell-parse-command (Bug#10523).
11398
11399 2012-01-28 Drew Adams <drew.adams@oracle.com>
11400
11401 * net/ange-ftp.el (ange-ftp-canonize-filename): Check, that
11402 `default-directory' is non-nil.
11403
11404 2012-01-28 Eli Zaretskii <eliz@gnu.org>
11405
11406 * mail/emacsbug.el (report-emacs-bug): Fill the potentially long
11407 line that displays system-configuration-options. (Bug#9924)
11408
11409 2012-01-28 Drew Adams <drew.adams@oracle.com>
11410
11411 * descr-text.el (describe-char): Show information about POS, in
11412 addition to information about the character at POS. Improve and
11413 update the doc string. Change "code point" to "code point in
11414 charset", to avoid confusion with the character's Unicode code
11415 point shown above that. (Bug#10129)
11416
11417 2012-01-28 Eli Zaretskii <eliz@gnu.org>
11418
11419 * descr-text.el (describe-char): Show the raw character, not only
11420 its display form at POS. Suggested by Kenichi Handa <handa@m17n.org>.
11421 See http://lists.gnu.org/archive/html/emacs-devel/2012-01/msg00760.html
11422 for the reasons.
11423
11424 2012-01-28 Phil Hagelberg <phil@hagelb.org>
11425
11426 * emacs-lisp/package.el (package-install):
11427 Run package-refresh-contents if there is no archive yet (Bug#9798).
11428
11429 2012-01-28 Chong Yidong <cyd@gnu.org>
11430
11431 * emacs-lisp/package.el (package-maybe-load-descriptor):
11432 New function, split from package-maybe-load-descriptor.
11433 (package-maybe-load-descriptor): Use it.
11434 (package-download-transaction): Fully load required packages
11435 inside the loop, so that `require' calls work (Bug#10593).
11436 (package-install): No need to call package-initialize now.
11437
11438 2012-01-28 Chong Yidong <cyd@gnu.org>
11439
11440 * simple.el (deactivate-mark): Doc fix (Bug#8614).
11441
11442 * tooltip.el (tooltip-mode): Doc fix.
11443 (tooltip-use-echo-area): Mark as obsolete (Bug#6595).
11444
11445 * frame.el (set-cursor-color): Doc fix (Bug#352).
11446
11447 * mail/rmail.el (rmail-start-mail): Add send-action again (Bug#10625).
11448 (rmail-mail-return): Switch to NEWBUF only if it is non-nil.
11449
11450 * cus-edit.el (custom-buffer-create-internal): Fix search button
11451 action (Bug#10542).
11452 (customize-unsaved, customize-saved): Doc fix (Bug#10541).
11453
11454 2012-01-27 Eduard Wiebe <usenet@pusto.de>
11455
11456 * dired.el (dired-mark-files-regexp):
11457 Include any subdirectory components. (Bug#10445)
11458
11459 2012-01-27 Mike Lamb <mrlamb@gmail.com> (tiny change)
11460
11461 * pcmpl-unix.el (pcmpl-ssh-known-hosts):
11462 Handle [host]:port syntax. (Bug#10533)
11463
11464 2012-01-27 Alex Harsanyi <harsanyi@mac.com>
11465
11466 * xml.el (xml-parse-tag): Fix parsing of comments (Bug#10405).
11467
11468 2012-01-26 Glenn Morris <rgm@gnu.org>
11469
11470 * dired-x.el (dired-bind-jump): Use ctl-x-map and ctl-x-4-map.
11471 * term.el (term-raw-escape-map): Use Control-X-prefix.
11472 * vc/vc-hooks.el (vc-prefix-map): Use ctl-x-map. (Bug#10566)
11473
11474 2012-01-25 Martin Rudalics <rudalics@gmx.at>
11475
11476 * window.el (window-state-get, window--state-get-1): Don't deal
11477 with fixed-sizeness of windows. Simplify code.
11478
11479 2012-01-25 Jérémy Compostella <jeremy.compostella@gmail.com>
11480
11481 * window.el (window--state-get-1, window--state-put-2):
11482 Don't save and restore the mark.
11483
11484 2012-01-25 Chong Yidong <cyd@gnu.org>
11485
11486 * custom.el (custom-variable-p): Doc fix.
11487
11488 2012-01-25 Glenn Morris <rgm@gnu.org>
11489
11490 * dired.el (dired-goto-file): Handle some of the more common
11491 characters that `ls -b' escapes. (Bug#10596)
11492
11493 * progmodes/compile.el (compilation-next-error-function):
11494 Respect compilation-first-column in the "*compilation*" buffer.
11495 * progmodes/grep.el (grep-first-column): New variable. (Bug#10594)
11496
11497 * vc/vc.el (vc-modify-change-comment): Scoping fix. (Bug#10513)
11498
11499 2012-01-24 Glenn Morris <rgm@gnu.org>
11500
11501 * pcmpl-gnu.el (pcomplete/tar): Handle " - ". (Bug#10457)
11502
11503 2012-01-24 Julien Danjou <julien@danjou.info>
11504
11505 * color.el (color-rgb-to-hsl): Fix value computing.
11506 (color-hue-to-rgb): New function.
11507 (color-hsl-to-rgb): New function.
11508 (color-clamp, color-saturate-hsl, color-saturate-name)
11509 (color-desaturate-hsl, color-desaturate-name, color-lighten-hsl)
11510 (color-lighten-name, color-darken-hsl, color-darken-name): New function.
11511
11512 2012-01-24 Glenn Morris <rgm@gnu.org>
11513
11514 * vc/vc-rcs.el (vc-rcs-create-tag):
11515 * vc/vc-sccs.el (vc-sccs-create-tag):
11516 Fix argument spec to be what vc-create-tag expects. (Bug#10515)
11517
11518 2012-01-23 Mike Lamb <mrlamb@gmail.com> (tiny change)
11519
11520 * eshell/esh-util.el (eshell-read-hosts-file):
11521 Skip comment lines. (Bug#10549)
11522
11523 * eshell/em-unix.el (pcomplete/ssh): Remove. (Bug#10548)
11524
11525 2012-01-23 Juanma Barranquero <lekktu@gmail.com>
11526
11527 * subr.el (display-delayed-warnings): Doc fix.
11528 (collapse-delayed-warnings): New function to collapse identical
11529 adjacent warnings.
11530 (delayed-warnings-hook): Add it.
11531
11532 2012-01-22 Michael Albinus <michael.albinus@gmx.de>
11533
11534 * net/tramp.el (tramp-action-login): Set connection property "login-as".
11535
11536 * net/tramp-sh.el (tramp-methods): Add user spec to "pscp" and "psftp".
11537 (tramp-default-user-alist): Don't add "pscp".
11538 (tramp-do-copy-or-rename-file-out-of-band): Use connection
11539 property "login-as", if set. (Bug#10530)
11540
11541 2012-01-21 Michael Albinus <michael.albinus@gmx.de>
11542
11543 * net/tramp-sh.el (tramp-default-user-alist): Don't add "plink",
11544 "plink1" and "psftp". (Bug#10530)
11545
11546 2012-01-21 Kenichi Handa <handa@m17n.org>
11547
11548 * international/mule-cmds.el (prefer-coding-system): Show a
11549 warning message if the default value of file-name-coding-system
11550 was not changed.
11551
11552 2012-01-21 Jérémy Compostella <jeremy.compostella@gmail.com>
11553
11554 * windmove.el (windmove-reference-loc):
11555 Fix windmove-reference-loc miscalculation.
11556
11557 2012-01-21 Jay Belanger <jay.p.belanger@gmail.com>
11558
11559 * calc/calc-units.el (math-put-default-units): Don't use "1" as a
11560 default unit.
11561
11562 2012-01-21 Glenn Morris <rgm@gnu.org>
11563
11564 * international/mule.el (auto-coding-alist): Add .tbz.
11565
11566 * files.el (local-enable-local-variables): Doc fix.
11567 (inhibit-local-variables-regexps): Rename from
11568 inhibit-first-line-modes-regexps. Keep old name as obsolete alias.
11569 Doc fix. Add some extensions from auto-coding-alist.
11570 (inhibit-local-variables-suffixes):
11571 Rename from inhibit-first-line-modes-suffixes. Doc fix.
11572 (inhibit-local-variables-p):
11573 New function, extracted from set-auto-mode-1.
11574 (set-auto-mode): Doc fix. Respect inhibit-local-variables-regexps.
11575 (set-auto-mode-1): Doc fix. Use inhibit-local-variables-p.
11576 (hack-local-variables): Doc fix. Make the mode-only case
11577 respect enable-local-variables and friends.
11578 Respect inhibit-local-variables-regexps for file-locals, but
11579 not for directory-locals.
11580 (set-visited-file-name):
11581 Take account of inhibit-local-variables-regexps.
11582 Whether it applies may change as the file name is changed.
11583 * jka-cmpr-hook.el (jka-compr-install):
11584 * jka-compr.el (jka-compr-uninstall):
11585 Update for inhibit-first-line-modes-suffixes name change.
11586
11587 2012-01-20 Martin Rudalics <rudalics@gmx.at>
11588
11589 * help-macro.el (make-help-screen): Temporarily restore original
11590 binding for minor-mode-map-alist (Bug#10454).
11591
11592 2012-01-19 Julien Danjou <julien@danjou.info>
11593
11594 * color.el (color-name-to-rgb): Use the white color to find the max
11595 color component value and return correctly computed values.
11596 (color-name-to-rgb): Add missing float conversion for max value.
11597
11598 2012-01-19 Martin Rudalics <rudalics@gmx.at>
11599
11600 * window.el (window--state-get-1, window-state-get): Do not use
11601 special state value for window-persistent-parameters.
11602 Rename argument IGNORE to WRITABLE. Rewrite doc-string.
11603 (window--state-put-2): Reset all window parameters to nil before
11604 assigning values of persistent parameters.
11605
11606 2012-01-18 Alan Mackenzie <acm@muc.de>
11607
11608 Eliminate sluggishness and hangs in fontification of "semicolon
11609 deserts".
11610
11611 * progmodes/cc-engine.el (c-state-nonlit-pos-interval):
11612 Change value 10000 -> 3000.
11613 (c-state-safe-place): Reformulate so it doesn't stack up an
11614 infinite number of wrong entries in c-state-nonlit-pos-cache.
11615 (c-determine-limit-get-base, c-determine-limit): New functions to
11616 determine backward search limits disregarding literals.
11617 (c-find-decl-spots): Amend commenting.
11618 (c-cheap-inside-bracelist-p): New function which detects "={".
11619
11620 * progmodes/cc-fonts.el
11621 (c-make-font-lock-BO-decl-search-function): Give a limit to a
11622 backward search.
11623 (c-font-lock-declarations): Fix an occurrence of point being
11624 undefined. Check additionally for point being in a bracelist or
11625 near a macro invocation without a semicolon so as to avoid a
11626 fruitless time consuming search for a declarator. Give a more
11627 precise search limit for declarators using the new
11628 c-determine-limit.
11629
11630 2012-01-18 Glenn Morris <rgm@gnu.org>
11631
11632 * files.el (auto-mode-alist, inhibit-first-line-modes-regexps)
11633 (set-auto-mode): Doc fixes.
11634
11635 2012-01-17 Glenn Morris <rgm@gnu.org>
11636
11637 * isearch.el (search-nonincremental-instead): Fix doc typo.
11638
11639 * dired.el (dired-insert-directory): Handle newlines in directory name.
11640 (dired-build-subdir-alist): Unescape newlines in directory name.
11641
11642 2012-01-17 Michael Albinus <michael.albinus@gmx.de>
11643
11644 * net/tramp.el (tramp-local-end-of-line): New defcustom.
11645 (tramp-action-login, tramp-action-yesno, tramp-action-yn)
11646 (tramp-action-terminal): Use it. (Bug#10530)
11647
11648 2012-01-16 Stefan Monnier <monnier@iro.umontreal.ca>
11649
11650 * minibuffer.el (completion--replace): Strip properties (bug#10062).
11651
11652 2012-01-16 Martin Rudalics <rudalics@gmx.at>
11653
11654 * window.el (window-state-ignored-parameters): Remove variable.
11655 (window--state-get-1): Rename argument MARKERS to IGNORE.
11656 Handle persistent window parameters. Make copy of clone-of
11657 parameter only if requested. (Bug#10348)
11658 (window--state-put-2): Install a window parameter only if it has
11659 a non-nil value or an existing parameter shall be overwritten.
11660
11661 2012-01-15 Michael Albinus <michael.albinus@gmx.de>
11662
11663 * net/tramp-sh.el (tramp-remote-path): Set tramp-autoload cookie.
11664
11665 2012-01-14 Eli Zaretskii <eliz@gnu.org>
11666
11667 * info.el (Info-toc-build): If the Info file has no "Up" pointer,
11668 don't pass the (nil) value of `upnode' to string-match.
11669
11670 2012-01-14 Chong Yidong <cyd@gnu.org>
11671
11672 * startup.el (command-line): Fix X resource class for cursorColor.
11673 Fix values recognized by the cursorBlink resource.
11674
11675 2012-01-14 Paul Eggert <eggert@cs.ucla.edu>
11676
11677 * epg.el (epg--make-temp-file): Avoid permission race condition
11678 when running on old Emacs versions (bug#10403).
11679
11680 2012-01-14 Glenn Morris <rgm@gnu.org>
11681
11682 * dired.el (dired-get-filename): Fix 'verbatim case of previous change.
11683
11684 2012-01-13 Alan Mackenzie <acm@muc.de>
11685
11686 Fix filling for when filladapt mode is enabled.
11687
11688 * progmodes/cc-cmds.el (c-fill-paragraph): In the invocation of
11689 c-mask-paragraph, pass in `fill-paragraph' rather than
11690 `fill-region-as-paragraph'. (This is a reversion of a previous
11691 change.)
11692 * progmodes/cc-mode.el (c-basic-common-init):
11693 Make fill-paragraph-handle-comment buffer local and set it to nil.
11694
11695 2012-01-13 Glenn Morris <rgm@gnu.org>
11696
11697 * dired.el (dired-switches-escape-p): New function.
11698 (dired-insert-directory): Use dired-switches-escape-p.
11699 (dired-get-filename): Undo "\ " quoting if needed. (Bug#10469)
11700
11701 * find-dired.el (find-ls-option): Doc fix. (Bug#10262)
11702
11703 2012-01-12 Glenn Morris <rgm@gnu.org>
11704
11705 * mail/sendmail.el (mail-mode): Update paragraph-separate for
11706 changes in adaptive-fill-regexp. (Bug#10276)
11707
11708 2012-01-11 Alan Mackenzie <acm@muc.de>
11709
11710 Fix Emacs bug #10463 - put `widen's around the critical spots.
11711
11712 * progmodes/cc-engine.el (c-in-literal, c-literal-limits): Put a
11713 widen around each invocation of c-state-pp-to-literal. Remove an
11714 unused let variable.
11715
11716 2012-01-11 Glenn Morris <rgm@gnu.org>
11717
11718 * dired-aux.el (dired-do-shell-command): Fix */? logic. (Bug#6561)
11719 Doc fix.
11720
11721 2012-01-10 Chong Yidong <cyd@gnu.org>
11722
11723 * net/network-stream.el (network-stream-open-starttls):
11724 Avoid emitting a confusing error message when the server gives a bad
11725 response to the capability command.
11726
11727 2012-01-10 Glenn Morris <rgm@gnu.org>
11728
11729 * mail/unrmail.el (unrmail): Tweak previous change.
11730
11731 2012-01-09 Chong Yidong <cyd@gnu.org>
11732
11733 * custom.el (custom-safe-themes): Use SHA-256 for hashing.
11734
11735 2012-01-08 Alan Mackenzie <acm@muc.de>
11736
11737 Optimise font locking in long enum definitions.
11738
11739 * progmodes/cc-fonts.el (c-font-lock-declarations): Add an extra
11740 arm to a cond form to handle enums.
11741 * progmodes/cc-langs.el (c-enums-contain-decls): New lang variable.
11742 * progmodes/cc-mode.el (c-font-lock-fontify-region): Correct a typo.
11743
11744 2012-01-07 Paul Eggert <eggert@cs.ucla.edu>
11745
11746 * files.el (move-file-to-trash): Preserve default file modes on error.
11747 (Bug#10401)
11748
11749 2012-01-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
11750
11751 * faces.el (set-face-attribute): Clarify the meaning of the nil
11752 frame (bug#10294).
11753
11754 * subr.el (with-selected-frame): Mention that the selected frame
11755 is restored (bug#9980).
11756
11757 * ibuffer.el (ibuffer-mode): List the bindings in the corrent map
11758 (bug#9759).
11759
11760 * mail/smtpmail.el (password-cache-add): Remove unused declaration.
11761 (password-read): Don't autoload unused function.
11762
11763 2012-01-07 Juanma Barranquero <lekktu@gmail.com>
11764
11765 * progmodes/which-func.el (which-func-mode): Turn into a
11766 non-interactive function and mark as obsolete (bug#10428).
11767
11768 2012-01-06 Chong Yidong <cyd@gnu.org>
11769
11770 * files.el (hack-dir-local-variables-non-file-buffer): Add doc.
11771 (hack-one-local-variable-eval-safep): Allow 0 arg for minor mode
11772 functions, along with 1 and -1.
11773
11774 2012-01-06 Eli Zaretskii <eliz@gnu.org>
11775
11776 * time.el (display-time-load-average)
11777 (display-time-default-load-average): Doc fixes. See the thread
11778 starting at
11779 http://lists.gnu.org/archive/html/help-gnu-emacs/2012-01/msg00059.html
11780 for the details.
11781
11782 2012-01-06 Glenn Morris <rgm@gnu.org>
11783
11784 * mail/unrmail.el (unrmail): Give an explicit error if the input file
11785 has no messages. (Bug#10377)
11786
11787 * info.el (Info-mode-map): Bind e to end-of-buffer, rather
11788 than Info-edit. (Bug#10385)
11789
11790 * time.el (display-time-load-average, display-time-next-load-average):
11791 Doc fixes.
11792
11793 * emacs-lisp/bytecomp.el (byte-compile-file): Do not propagate a file
11794 local setting of buffer-read-only to the input buffer. (Bug#10419)
11795
11796 * calendar/calendar.el (calendar-mode):
11797 Locally set scroll-margin to 0. (Bug#10379)
11798
11799 2012-01-06 Ulrich Mueller <ulm@gentoo.org>
11800
11801 * play/doctor.el (doctor-death): Escape "," characters. (Bug#10370)
11802
11803 2012-01-05 Glenn Morris <rgm@gnu.org>
11804
11805 * eshell/em-unix.el (diff-no-select): Autoload it.
11806 (eshell/diff): Use diff-no-select. (Bug#10420)
11807
11808 2012-01-05 Chong Yidong <cyd@gnu.org>
11809
11810 * shell.el (shell-dynamic-complete-functions): Revert last change.
11811 (shell-command-completion-function): New function.
11812 (shell-completion-vars): Use it to implement
11813 shell-completion-execonly (Bug#10417).
11814
11815 * custom.el (enable-theme): Don't set custom-safe-themes.
11816
11817 * cus-theme.el (custom-theme-merge-theme):
11818 Ignore custom-enabled-themes and custom-safe-themes.
11819
11820 2012-01-05 Michael R. Mauger <mmaug@yahoo.com>
11821
11822 * progmodes/sql.el (sql-login-hook): Add hook to respond to the
11823 first prompt in `sql-interacive-mode'.
11824 (sql-mode-oracle-font-lock-keywords): Add CONNECT_BY_* builtin
11825 keywords.
11826 (sql-mode-mysql-font-lock-keywords): Add ELSEIF keyword.
11827 (sql-product-interactive): Bug fix: Set `sql-buffer' in
11828 context of original buffer. Invoke `sql-login-hook'.
11829
11830 2012-01-04 Eli Zaretskii <eliz@gnu.org>
11831
11832 * mail/rmail.el (rmail-font-lock-keywords): Accept non-ASCII
11833 letters in cite-prefix.
11834
11835 2012-01-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
11836
11837 * mail/smtpmail.el (smtpmail-stream-type): Mention the `ssl' value.
11838
11839 2012-01-03 Chong Yidong <cyd@gnu.org>
11840
11841 * shell.el (shell-dynamic-complete-functions):
11842 Put pcomplete-completions-at-point, so as to try
11843 comint-filename-completion first (Bug#10417).
11844
11845 2012-01-02 Richard Stallman <rms@gnu.org>
11846
11847 * battery.el (battery-status-function):
11848 Detect when to use battery-yeeloong-sysfs.
11849 (battery-echo-area-format): Add string for Yeeloong.
11850 (battery-linux-proc-apm, battery-linux-proc-acpi): Doc fixes.
11851 (battery-yeeloong-sysfs): New function.
11852
11853 2012-01-02 Chong Yidong <cyd@gnu.org>
11854
11855 * dirtrack.el (dirtrack-list): Eliminate unused third element.
11856 (dirtrack): Merge code for handling relative filenames in prompt
11857 from shell-dir-cookie-watcher.
11858 (dirtrack-debug-message): New arg to avoid excess format calls.
11859
11860 * shell.el (shell-dir-cookie-re): Variable deleted.
11861 (shell-dir-cookie-watcher): Function deleted.
11862 (shell-mode): Don't use shell-dir-cookie-re, since it is redundant
11863 with dirtrack-mode.
11864
11865 2012-01-01 Eli Zaretskii <eliz@gnu.org>
11866
11867 * term/w32-win.el (dynamic-library-alist) <gnutls>:
11868 Load libgnutls-28.dll, from GnuTLS version 3.x, in preference to
11869 libgnutls-26.dll.
11870
11871 2011-12-31 Andreas Schwab <schwab@linux-m68k.org>
11872
11873 * emacs-lisp/bytecomp.el (byte-compile-file): Fix indentation.
11874
11875 2011-12-31 Eli Zaretskii <eliz@gnu.org>
11876
11877 * mail/rmail.el (rmail-show-message-1): Decode any RFC2047 encoded
11878 headers of non-MIME messages, when rmail-enable-mime is non-nil.
11879
11880 2011-12-29 Michael Albinus <michael.albinus@gmx.de>
11881
11882 * net/tramp-sh.el (tramp-find-shell): Set "remote-shell" property
11883 also for alternative shells.
11884 (tramp-open-connection-setup-interactive-shell): Check, whether
11885 the shell is a busybox.
11886 (tramp-send-command): Don't suppress multiple prompts for
11887 busyboxes, it hurts.
11888
11889 2011-12-28 Chong Yidong <cyd@gnu.org>
11890
11891 * progmodes/gdb-mi.el (gdb-get-source-file-list)
11892 (gdb-get-source-file): Move mode line update to
11893 gdb-get-source-file (Bug#10087).
11894
11895 2011-12-25 Chong Yidong <cyd@gnu.org>
11896
11897 * progmodes/gud.el (gud-gdb-fetch-lines-filter): Just use
11898 gud-gdb-marker-filter without taking it as an argument.
11899 (gud-gdb-run-command-fetch-lines): Caller changed.
11900 (gud-gdb-completion-function): New variable.
11901 (gud-gdb-completion-at-point): Use it.
11902 (gud-gdb-completions-1): Split from gud-gdb-completions.
11903
11904 * progmodes/gdb-mi.el (gdb-input): Accept command and handler
11905 function as separate arguments.
11906 (gdb-init-1, gdb-non-stop-handler, gdb-check-target-async)
11907 (gdb-tooltip-print-1, gud-watch, gdb-speedbar-update)
11908 (gdb-var-list-children, gdb-var-set-format, gdb-var-delete-1)
11909 (gdb-var-delete-children, gdb-edit-value, gdb-var-update)
11910 (gdb-stopped, def-gdb-auto-update-trigger)
11911 (gdb-place-breakpoints, gdb-select-thread, gdb-select-frame)
11912 (gdb-get-changed-registers, gdb-get-main-selected-frame):
11913 Callers changed.
11914 (gud-gdbmi-completions): New function.
11915 (gdb): Use it for generating the completion table.
11916
11917 2011-12-24 Alan Mackenzie <acm@muc.de>
11918
11919 Introduce a mechanism to widen the region used in context font
11920 locking. Use this to protect declarations from losing their contexts.
11921
11922 * progmodes/cc-langs.el (c-before-font-lock-functions):
11923 Replace c-set-fl-decl-start with c-change-set-fl-decl-start (Renaming).
11924 (c-before-context-fontification-functions): New defvar, a list of
11925 functions to be run just before context (etc.) font locking.
11926
11927 * progmodes/cc-mode.el (c-extend-font-lock-region-for-macros):
11928 New, functionality extracted from
11929 c-neutralize-syntax-in-and-mark-CPP.
11930 (c-in-after-change-fontification): New variable.
11931 (c-after-change): Set c-in-after-change-fontification.
11932 (c-set-fl-decl-start): Rejig its interface, so it can be called
11933 from both after-change and context fontifying.
11934 (c-change-set-fl-decl-start, c-context-set-fl-decl-start):
11935 New functions.
11936 (c-standard-font-lock-fontify-region-function): New variable.
11937 (c-font-lock-fontify-region): New function.
11938
11939 2011-12-24 Juri Linkov <juri@jurta.org>
11940
11941 * window.el (window--state-get-1): Set `FORCE' arg of `mark' to t.
11942 (Bug#10348)
11943
11944 2011-12-23 Michael Albinus <michael.albinus@gmx.de>
11945
11946 * net/ange-ftp.el (ange-ftp-copy-file-internal): Check for
11947 existence of source file. (Bug#10325)
11948
11949 2011-12-23 Alan Mackenzie <acm@muc.de>
11950
11951 Fix unstable fontification inside templates.
11952
11953 * progmodes/cc-langs.el (c-before-font-lock-functions):
11954 Newly created from the singular version. The (c c++ objc) entry now
11955 additionally has c-set-fl-decl-start. The other languages (apart
11956 from AWK) have that as a single entry.
11957
11958 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
11959 The functionality for "local" declarations has been extracted to
11960 c-set-fl-decl-start.
11961
11962 * progmodes/cc-mode.el (c-common-init, c-after-change):
11963 Changes due to pluralisation of c-before-font-lock-functions.
11964 (c-set-fl-decl-start): New function, extracted from
11965 c-font-lock-enclosing-decls and enhanced.
11966
11967 2011-12-23 Juanma Barranquero <lekktu@gmail.com>
11968
11969 * desktop.el (desktop-internal-v2s): Fix typos in docstring (bug#10353).
11970
11971 2011-12-22 Juri Linkov <juri@jurta.org>
11972
11973 * progmodes/grep.el (rgrep): Fix docstring. (Bug#10185)
11974
11975 2011-12-22 Chong Yidong <cyd@gnu.org>
11976
11977 * vc/vc-hooks.el (vc-keep-workfiles): Doc fix.
11978
11979 2011-12-21 Drew Adams <drew.adams@oracle.com>
11980
11981 * files.el (file-remote-p): Fix docstring. (Bug#10319)
11982
11983 2011-12-21 Jérémy Compostella <jeremy.compostella@gmail.com>
11984
11985 * battery.el (battery-linux-sysfs): Add missing parameters from acpi.
11986
11987 2011-12-21 Teodor Zlatanov <tzz@lifelogs.com>
11988
11989 * progmodes/cfengine.el: Add Version. Improve CFEngine 3.x syntax
11990 highlighting and support. Fix up comments for capitalization.
11991 (cfengine-mode-debug): New var.
11992 (cfengine3-mode): Change the modeline indicator to "CFE3".
11993 (cfengine3-font-lock-keywords): Improve defun highlighting.
11994 (cfengine2-actions): Rename from `cfengine-actions'.
11995 (cfengine2-font-lock-keywords): Rename from
11996 `cfengine-font-lock-keywords'.
11997 (cfengine2-imenu-expression): Rename from
11998 `cfengine-imenu-expression'.
11999 (cfengine2-outline-level): Rename from `cfengine-outline-level'.
12000 (cfengine2-beginning-of-defun): Rename from
12001 `cfengine-beginning-of-defun'.
12002 (cfengine2-end-of-defun): Rename from `cfengine-end-of-defun'.
12003 (cfengine2-indent-line): Rename from `cfengine-indent-line'.
12004 (cfengine2-mode): Rename from `cfengine-mode'. Change the
12005 modeline indicator to "CFE2".
12006 (cfengine-mode): Defalias to `cfengine-auto-mode'.
12007 (cfengine-mode-abbrevs): Mark obsolete.
12008
12009 2011-12-21 Chong Yidong <cyd@gnu.org>
12010
12011 * vc/vc-bzr.el (vc-bzr-rename-file): Don't pass ~ to Bzr in
12012 filename argument.
12013
12014 2011-12-20 Martin Rudalics <rudalics@gmx.at>
12015
12016 * window.el (window-normalize-buffer-to-display): Remove.
12017 (display-buffer): Handle buffer-or-name argument as in Emacs 23.
12018
12019 2011-12-19 Chong Yidong <cyd@gnu.org>
12020
12021 * vc/vc-dir.el (vc-dir-parent-marked-p, vc-dir-children-marked-p):
12022 Don't signal an error in a predicate function; return non-nil.
12023 (vc-dir-mark-file): Move the error here.
12024 (vc-dir-mark-unmark): If acting on the region, keep going if one
12025 of the entries cannot be marked/unmarked.
12026 (vc-dir-mark-all-files): If current entry is a directory, mark
12027 only child files, as documented.
12028
12029 2011-12-19 Vincent Belaïche <vincentb1@users.sourceforge.net>
12030
12031 * ses.el: Ooops... undo changes of 2011-12-11T14:49:48Z!vincentb1@users.sourceforge.net, as trunk
12032 branch is feature frozen, and 2011-12-11T14:49:48Z!vincentb1@users.sourceforge.net was a feature
12033 addition.
12034
12035 2011-12-18 Jan Djärv <jan.h.d@swipnet.se>
12036
12037 * term/ns-win.el (ns-get-selection-internal)
12038 (ns-store-selection-internal): Declare.
12039 (ns-store-cut-buffer-internal, ns-get-cut-buffer-internal):
12040 Declare as obsolete.
12041 (ns-get-pasteboard, ns-paste-secondary):
12042 Use ns-get-selection-internal.
12043 (ns-set-pasteboard, ns-copy-including-secondary):
12044 Use ns-store-selection-internal.
12045
12046 2011-12-17 Chong Yidong <cyd@gnu.org>
12047
12048 * vc/vc.el (vc-next-action): Doc fix; remove CVS-isms.
12049 (vc-deduce-fileset): Doc fix.
12050
12051 2011-12-16 Andreas Schwab <schwab@linux-m68k.org>
12052
12053 * calc/calc-misc.el (calc-help): Avoid wrapping help message.
12054
12055 2011-12-13 Sam Steingold <sds@gnu.org>
12056
12057 * man.el (Man-getpage-in-background): When running under a
12058 window-system, ignore $MANWIDTH and $COLUMNS.
12059
12060 2011-12-15 Kenichi Handa <handa@m17n.org>
12061
12062 * language/ethio-util.el: Change coding tag to utf-8-emacs.
12063 (setup-ethiopic-environment-internal): Comment out key-binding for
12064 ethio-toggle-punctuation.
12065
12066 2011-12-13 Alan Mackenzie <acm@muc.de>
12067
12068 Add the switch statement to AWK Mode.
12069
12070 * progmodes/cc-awk.el (awk-font-lock-keywords): Add "switch", "case",
12071 "default" to the keywords regexp.
12072
12073 * progmodes/cc-langs.el (c-label-kwds): Let AWK take the same
12074 expression as the rest.
12075 (c-nonlabel-token-key): Allow string literals for AWK.
12076 Refactor for the other modes.
12077
12078 Large brace-block initialisation makes CC Mode slow: Fix.
12079 Tidy up and accelerate c-in-literal, etc. by using the c-parse-state
12080 routines. Limit backward searching in c-font-lock-enclosing.decl.
12081
12082 * progmodes/cc-engine.el (c-state-pp-to-literal): Return the
12083 pp-state and literal type in addition to the limits.
12084 (c-state-safe-place): New defun, extracted from c-state-literal-at.
12085 (c-state-literal-at): Use the above new defun.
12086 (c-slow-in-literal, c-fast-in-literal): Remove.
12087 (c-in-literal, c-literal-limits): Amend to use c-state-pp-to-literal.
12088
12089 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls): Check for
12090 being in a literal. Add a limit for backward searching.
12091
12092 * progmodes/cc-mode.el (awk-mode): Don't alias c-in-literal to
12093 c-slow-in-literal.
12094
12095 2011-12-13 Stefan Monnier <monnier@iro.umontreal.ca>
12096
12097 * progmodes/pascal.el: Declare `ind' as dyn-bound (bug#10264).
12098
12099 2011-12-13 Martin Rudalics <rudalics@gmx.at>
12100
12101 * window.el (delete-other-windows): Use correct frame in call to
12102 window-with-parameter.
12103
12104 2011-12-12 Daniel Pfeiffer <occitan@t-online.de>
12105
12106 * progmodes/make-mode.el: Bring it up to date with makepp V2.0.
12107 (makefile-make-font-lock-keywords): Extend meaning of `keywords'.
12108 (makefile-gmake-statements, makefile-makepp-statements):
12109 Use it and add new makepp keywords.
12110 (makefile-makepp-font-lock-keywords): Add new patterns.
12111 (makefile-match-function-end): Match new [...] and [[...]].
12112
12113 2011-12-11 Juanma Barranquero <lekktu@gmail.com>
12114
12115 * ses.el (ses-call-printer-return, ses-cell-property-get)
12116 (ses-sym-rowcol, ses-printer-validate, ses-formula-record)
12117 (ses-create-cell-variable, ses-reset-header-string)
12118 (ses-cell-set-formula, ses-repair-cell-reference-all)
12119 (ses-self-reference-early-detection, ses-in-print-area, ses-set-curcell)
12120 (ses-check-curcell, ses-call-printer, ses-adjust-print-width)
12121 (ses-print-cell-new-width, ses-formula-references, ses-relocate-formula)
12122 (ses-aset-with-undo, ses-load, ses-truncate-cell)
12123 (ses-read-column-printer, ses-read-default-printer, ses-insert-row)
12124 (ses-delete-row, ses-delete-column, ses-append-row-jump-first-column)
12125 (ses-kill-override, ses-yank-pop, ses-yank-cells, ses-yank-tsf)
12126 (ses-yank-resize, ses-export-tab, ses-mark-row, ses-mark-column)
12127 (ses-renarrow-buffer, ses-insert-range, ses-insert-ses-range)
12128 (ses-safe-printer, ses-safe-formula, ses-warn-unsafe, ses--clean-!)
12129 (ses--clean-_, ses-range, ses-select, ses-center, ses-center-span)
12130 (ses-dashfill, ses-unsafe): Fix typos and reflow docstrings.
12131
12132 2011-12-11 Vincent Belaïche <vincentb1@users.sourceforge.net>
12133
12134 * ses.el: The overall change is to add cell renaming, that is
12135 setting fancy names for cell symbols other than name matching
12136 "\\`[A-Z]+[0-9]+\\'" regexp .
12137 (ses-create-cell-variable): New defun.
12138 (ses-relocate-formula): Relocate formulas only for cells the
12139 symbols of which are not renamed, i.e. symbols whose names do not
12140 match regexp "\\`[A-Z]+[0-9]+\\'".
12141 (ses-relocate-all): Relocate values only for cells the symbols of
12142 which are not renamed.
12143 (ses-load): Create cells variables as the (ses-cell ...) are read,
12144 in order to check row col consistency with cell symbol name only
12145 for cells that are not renamed.
12146 (ses-replace-name-in-formula): New defun.
12147 (ses-rename-cell): New defun.
12148
12149 2011-12-11 Chong Yidong <cyd@gnu.org>
12150
12151 * progmodes/gdb-mi.el (gdb): Set comint-prompt-regexp, required
12152 for completion via gud-gdb-fetch-lines-filter (Bug#10274).
12153
12154 2011-12-11 Eric Hanchrow <eric.hanchrow@gmail.com>
12155
12156 * window.el (other-window): Fix docstring.
12157
12158 2011-12-10 Eli Zaretskii <eliz@gnu.org>
12159
12160 * mail/rmailsum.el (rmail-header-summary): RFC2047 decode the
12161 `from' or `to' address before taking its substring.
12162 Fixes incorrect display in Rmail summary buffer whereby an RFC2047
12163 encoded name is chopped in the middle of the encoded string, and
12164 thus displayed encoded.
12165
12166 2011-12-10 Juanma Barranquero <lekktu@gmail.com>
12167
12168 * makefile.w32-in (update-subdirs-CMD): Use a Local Variables section.
12169
12170 2011-12-10 Eli Zaretskii <eliz@gnu.org>
12171
12172 * textmodes/texnfo-upd.el: Update commentary. Add a warning not
12173 to use texinfo-update-node and commands that call it if the
12174 Texinfo file uses @node lines without next/prev/up pointers.
12175 Correct outdated description about texinfo-master-menu.
12176 (texinfo-all-menus-update, texinfo-master-menu)
12177 (texinfo-update-node, texinfo-every-node-update)
12178 (texinfo-multiple-files-update): Doc fix. Warn against updating
12179 all the @node lines.
12180 (texinfo-master-menu): Only call texinfo-update-node if the prefix
12181 argument is numeric. Explain better in the doc string what the
12182 function really does.
12183 (texinfo-insert-master-menu-list): Improve the error message
12184 displayed if there's no menu in the Top node.
12185 (Bug#2975) See also this thread:
12186 http://lists.gnu.org/archive/html/emacs-devel/2011-12/msg00156.html.
12187
12188 2011-12-09 Manuel Gómez <mgrojo@gmail.com> (tiny change)
12189
12190 * speedbar.el (speedbar-supported-extension-expressions):
12191 Add .adb and .ads, commonly used for Ada source code (bug#10256).
12192
12193 2011-12-09 Juanma Barranquero <lekktu@gmail.com>
12194
12195 * printing.el (pr-mode-alist):
12196 * simple.el (filter-buffer-substring-functions)
12197 (completion-list-insert-choice-function):
12198 * window.el (window-with-parameter, window-atom-root)
12199 (window-sides-slots, window-size-fixed, window-min-delta)
12200 (window-max-delta, window--resize-mini-window)
12201 (window--resize-child-windows-normal, window-tree)
12202 (delete-other-windows, quit-window, split-window)
12203 (display-buffer-record-window, special-display-buffer-names)
12204 (special-display-regexps, special-display-popup-frame)
12205 (same-window-p, split-window-sensibly)
12206 (display-buffer-overriding-action, display-buffer-alist)
12207 (display-buffer-base-action, display-buffer, switch-to-buffer)
12208 (switch-to-buffer-other-window, switch-to-buffer-other-frame)
12209 (fit-window-to-buffer, recenter-positions)
12210 (mouse-autoselect-window-state, mouse-autoselect-window-select):
12211 * emacs-lisp/syntax.el (syntax-propertize-function): Fix typos
12212 and remove unneeded backslashes in docstrings.
12213
12214 2011-12-08 Stefan Monnier <monnier@iro.umontreal.ca>
12215
12216 * emacs-lisp/lisp-mode.el (defmethod): Add doc-string-elt (bug#10244).
12217
12218 * pcmpl-gnu.el: Don't fail when there is no Makefile nor -f arg.
12219 (pcmpl-gnu-makefile-regexps): Accept "makefile" as well as files that
12220 end in ".mk".
12221 (pcmpl-gnu-make-rule-names): Check "makefile" and ignore errors
12222 when reading the makefile (bug#10116).
12223
12224 2011-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
12225
12226 * pcmpl-gnu.el (pcomplete/make): Also allow filename arguments
12227 (bug#10116).
12228
12229 2011-12-06 Glenn Morris <rgm@gnu.org>
12230
12231 * emacs-lisp/package.el (package-archives): Doc fix re riskiness.
12232
12233 2011-12-06 Chong Yidong <cyd@gnu.org>
12234
12235 * progmodes/cc-fonts.el (c-annotation-face): Use defface.
12236
12237 2011-12-06 Juanma Barranquero <lekktu@gmail.com>
12238
12239 * textmodes/table.el (table-shorten-cell): Fix typo.
12240
12241 2011-12-05 Christopher Genovese <genovese.cr@gmail.com> (tiny change)
12242
12243 * emacs-lisp/assoc.el (aput): Fix return value (bug#10146)
12244
12245 2011-12-05 Eli Zaretskii <eliz@gnu.org>
12246
12247 * descr-text.el (describe-char): Fix display of strong
12248 right-to-left characters and directional embeddings and overrides.
12249
12250 * simple.el (what-cursor-position): Fix display of codepoints of
12251 strong right-to-left characters.
12252
12253 2011-12-05 Chong Yidong <cyd@gnu.org>
12254
12255 * faces.el (read-color): Doc fix.
12256
12257 2011-12-05 Glenn Morris <rgm@gnu.org>
12258
12259 * align.el (align--set-marker): Add doc-string.
12260 Don't try to move something that is not a marker. (Bug#10216)
12261
12262 2011-12-04 Glenn Morris <rgm@gnu.org>
12263
12264 * calendar/appt.el (appt-add): Rewrite the interactive-spec to avoid
12265 overly zealous deletion of trailing whitespace.
12266
12267 2011-12-04 Juanma Barranquero <lekktu@gmail.com>
12268
12269 * server.el (server-delete-client): On Windows, do not try to delete
12270 the only terminal.
12271 (server-process-filter): On Windows, treat requests for a tty frame as
12272 if they were for a GUI frame if the running server is in GUI mode.
12273
12274 2011-12-03 Glenn Morris <rgm@gnu.org>
12275
12276 * textmodes/texinfmt.el (batch-texinfo-format): Doc fix. (Bug#10207)
12277
12278 2011-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
12279
12280 * electric.el: Streamline electric-indent's hook.
12281 (electric-indent-chars): Revert to simple list.
12282 (electric-indent-functions): New var.
12283 (electric-indent-post-self-insert-function): Use it.
12284
12285 * progmodes/prolog.el (prolog-find-value-by-system): Avoid error when
12286 there's no inferior buffer (bug#10196).
12287 (prolog-consult-compile): Don't use toggle-read-only.
12288
12289 2011-12-02 Michael Albinus <michael.albinus@gmx.de>
12290
12291 * net/tramp-sh.el (tramp-maybe-open-connection): Handle user
12292 interrupt. (Bug#10187)
12293
12294 2011-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
12295
12296 * pcmpl-gnu.el (pcomplete/tar): large-file-warn-threshold can be nil
12297 (bug#9160).
12298
12299 * dired-aux.el (dired-query): Don't assume help-char is modifier-free
12300 (bug#10191).
12301
12302 2011-12-02 Juri Linkov <juri@jurta.org>
12303
12304 * info.el (Info-search): Display "end of manual" when Isearch
12305 reaches the end of single-file Info manual. (Bug#9918)
12306
12307 2011-12-02 Eli Zaretskii <eliz@gnu.org>
12308
12309 * isearch.el (isearch-message-prefix): Run the input method part
12310 of the prompt through bidi-string-mark-left-to-right. (Bug#10183)
12311
12312 2011-12-02 Juri Linkov <juri@jurta.org>
12313
12314 * isearch.el (isearch-occur): Use `word-search-regexp' for
12315 `isearch-word'.
12316 (isearch-search-and-update): Add condition for `isearch-word' and
12317 call `word-search-regexp'. (Bug#10145)
12318
12319 2011-12-01 Glenn Morris <rgm@gnu.org>
12320
12321 * eshell/em-hist.el (eshell-hist-initialize):
12322 Handle eshell-history-size nil and HISTSIZE set or unset.
12323 (eshell-history-file-name, eshell-history-size): Fix custom type.
12324
12325 2011-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
12326
12327 * man.el (Man-completion-table): Fix the lambda case (bug#10168).
12328
12329 2011-12-01 Michael McNamara <mac@mail.brushroad.com>
12330
12331 * progmodes/verilog-mode.el (verilog-pretty-expr):
12332 Rework verilog-pretty-expr to handle new assignment operators in system
12333 verilog, such as += *= and the like.
12334 (verilog-assignment-operator-re): Regular expression to find the
12335 assigment operator in a verilog assignment.
12336 (verilog-assignment-operation-re): Regular expression to find an
12337 assignment statement for pretty-expr.
12338 (verilog-in-attribute-p): Query returns true if point is in an
12339 attribute context; used to skip these for expression line up from
12340 pretty-expr.
12341 (verilog-in-parameter-p): Query returns true if point is in an
12342 parameter definition context; used to skip these for expression
12343 line up from pretty-expr.
12344 (verilog-in-parenthesis-p): Query returns true if point is in a
12345 parenthetical expression, specifically ( ) but not [ ] or { };
12346 used by pretty-expr.
12347 (verilog-just-one-space): If there is no space, don't add one.
12348 (verilog-get-lineup-indent-2): Specifically skip just attribute
12349 contexts for expression lineup, rather than skipping all
12350 parenthetical expressions.
12351 (verilog-calculate-indent): Fix comment, and fix indent.
12352 (verilog-do-indent): Indent declarations in lists (suggested by
12353 Joachim Lechner).
12354 (verilog-mode-abbrev-table): Populate abbrev mode with the various
12355 skeleton items.
12356 (verilog-sk-ovm-class): Add skeleton for OVM classes (reported
12357 by Alain Mellan).
12358
12359 2011-12-01 Wilson Snyder <wsnyder@wsnyder.org>
12360
12361 * progmodes/verilog-mode.el (verilog-read-defines): Fix reading
12362 parameters with embedded comments. Reported by Ray Stevens.
12363 (verilog-calc-1, verilog-fork-wait-re) (verilog-forward-sexp,
12364 verilog-wait-fork-re): Fix indentation of "wait fork", bug407.
12365 Reported by Tim Holt.
12366 (verilog-auto): Fix AUTOing a upper module then AUTOing module
12367 instantiated by upper module causing wrong expansion until AUTOed a
12368 second time. Reported by K C Buckenmaier.
12369 (verilog-diff-auto): Fix showing .* as a difference when
12370 `verilog-auto-star-save' off. Reported by Dan Dever.
12371 (verilog-auto-reset, verilog-read-always-signals)
12372 (verilog-auto-reset-blocking-in-non): Fix AUTORESET including
12373 temporary signals in reset list if
12374 verilog-auto-reset-blocking-in-non is nil, and match assignment
12375 style to each signal's assignment type, bug381.
12376 Reported by Thomas Esposito.
12377 (verilog-sk-uvm-class, verilog-uvm-begin-re, verilog-uvm-end-re)
12378 (verilog-uvm-statement-re): Support UVM indentation and
12379 highlighting, with old OVM keywords only.
12380 (verilog-auto-tieoff, verilog-auto-tieoff-declaration):
12381 Support AUTOTIEOFF creating non-wire data types.
12382 Suggested by Jonathan Greenlaw.
12383 (verilog-auto-insert-lisp, verilog-delete-to-paren)
12384 (verilog-forward-sexp-cmt, verilog-forward-sexp-ign-cmt)
12385 (verilog-inject-sense, verilog-read-inst-pins)
12386 (verilog-read-sub-decls, verilog-read-sub-decls-line):
12387 Fix mismatching parenthesis inside commented out code when deleting
12388 AUTOINST, bug383. Reported by Jonathan Greenlaw.
12389 (verilog-auto-ascii-enum): Fix AUTOASCIIENUM one-hot with
12390 non-numeric vector width. Reported by Alex Reed.
12391 (verilog-auto-ascii-enum): Add "onehot" option to work around not
12392 detecting signals with parameter widths. Reported by Alex Reed.
12393 (verilog-auto-delete-trailing-whitespace):
12394 With `verilog-auto-delete-trailing-whitespace' remove trailing
12395 whitespace in auto expansion, bug371. Reported by Brad Dobbie.
12396 (verilog-run-hooks, verilog-scan-cache-flush, verilog-syntax-ppss):
12397 Fix verilog-scan-cache corruption when running user AUTO expansion
12398 hooks that call indentation routines.
12399 (verilog-simplify-range-expression): Fix typo ignoring lower case
12400 identifiers.
12401 (verilog-delete-auto): Fix delete-autos to also remove user created
12402 automatics, as long as they start with AUTO.
12403 (verilog-batch-diff-auto, verilog-diff-auto)
12404 (verilog-diff-function): Add `verilog-diff-auto' and bind to
12405 "C-c?" to report differences in AUTO expansion, ignoring spaces.
12406 (verilog-backward-syntactic-ws-quick, verilog-beg-of-defun-quick)
12407 (verilog-in-paren-quick, verilog-re-search-backward-quick)
12408 (verilog-re-search-forward-quick, verilog-syntax-ppss):
12409 Fix calling `syntax-ppss' when inside auto expansions as the ppss hook
12410 is disabled and its cache will get corrupt, causing AUTOS not to
12411 expand. Instead use only -quick functions.
12412 (verilog-scan-region): Fix scanning over escaped quotes.
12413 (verilog-inside-comment-or-string-p, verilog-inside-comment-p)
12414 (verilog-re-search-backward-quick)
12415 (verilog-re-search-forward-quick, verilog-scan): verilog-scan and
12416 related functions now ignore strings, to fix misparsing of strings
12417 with magic comments embedded in them.
12418 (verilog-read-auto-template):
12419 Fix 'verilog-auto-inst-template-numbers' with extra newline before (.
12420 Reported by Brad Dobbie.
12421 (verilog-read-auto-template):
12422 Fix 'verilog-auto-inst-template-numbers' with comments.
12423 Reported by Brad Dobbie.
12424 (verilog-auto-inst, verilog-auto-inst-param)
12425 (verilog-auto-inst-sort): Add 'verilog-auto-inst-sort' to reduce
12426 merge conflicts with AUTOINST, bug358. Reported by Brad Dobbie.
12427 (verilog-auto-inst-template-numbers): Add 'lhs' policy for
12428 debugging templates without merge conflicts, bug357.
12429 Reported by Brad Dobbie.
12430 (verilog-read-auto-template):
12431 Fix verilog-auto-inst-template-numbers with multiple templates.
12432 Reported by Brad Dobbie.
12433 (verilog-define-abbrev): Fix verilog-mode abbrevs to be system
12434 abbrevs so user won't be asked to save.
12435 (verilog-read-auto-lisp-present): Fix to start at beginning of
12436 buffer in case called outside of verilog-auto.
12437 (verilog-simplify-range-expression): Fix AUTOWIRE expanding "X-1+1"
12438 to "X-2". Reported by Matthew Myers.
12439 (verilog-auto, verilog-auto-inout-in): Add AUTOINOUTIN for creating
12440 all inputs from module templates. Reported by Leith Johnson.
12441 (verilog-module-inside-filename-p): Fix locating programs as with
12442 modules.
12443 (verilog-auto-inst-port): Fix vl-width expressions when using
12444 verilog-auto-inst-param-value, bug331. Reported by Julian Gorfajn.
12445 (verilog-decls-get-regs, verilog-decls-get-signals,
12446 verilog-decls-get-vars, verilog-decls-get-wires, verilog-decls-new,
12447 verilog-modi-cache-add-vars, verilog-modi-cache-add-wires,
12448 verilog-read-decls): Combine reg and wire structures into one var
12449 structure to represent SystemVerilog concepts.
12450 (verilog-auto-ascii-enum, verilog-auto-logic, verilog-auto-reg)
12451 (verilog-auto-reg-input, verilog-auto-tieoff, verilog-auto-wire)
12452 (verilog-auto-wire-type, verilog-insert-definition):
12453 Add verilog-auto-wire-type and AUTOLOGIC to support using
12454 SystemVerilog "logic" keyword instead of "wire"/"reg".
12455 (verilog-auto-reg-input, verilog-decls-get-signals): Fix AUTOWIRE
12456 to declares outputs that also have assignments (presumably in an
12457 ifdef or generate if so there's not a driver conflict).
12458 Reported by Matthew Myers.
12459 (verilog-auto-declare-nettype, verilog-insert-definition):
12460 Add verilog-auto-declare-nettype to fix declarations using
12461 `default_nettype none. Reported by Julian Gorfajn.
12462 (verilog-read-always-signals-recurse, verilog-read-decls)
12463 (verilog-read-sub-decls-gate): Fix infinite loop with (*) and
12464 malformed end statement, bug325. Reported by Joshua Wise and
12465 Andrew Drake.
12466 (verilog-auto-star-safe, verilog-delete-auto-star-implicit)
12467 (verilog-inst-comment-re): Fix not deleting Interfaced comment
12468 when expanding .* in interfaces, bug320.
12469 Reported by Pierre-David Pfister.
12470 (verilog-read-module-name): Fix import statements between module
12471 name and open parenthesis, bug317.
12472 Reported by Pierre-David Pfister.
12473 (verilog-simplify-range-expression): Fix simplification of
12474 multiplications inside AUTOWIRE connections, bug303.
12475 (verilog-auto-inst-port): Support parameter expansion in
12476 multidimensional arrays.
12477 (verilog-read-decls): Fix AUTOREG etc looking for "endproperty"
12478 after "assert property". Reported by Julian Gorfajn.
12479 (verilog-simplify-range-expression): Fix "couldn't merge" errors
12480 with multiplication, bug303.
12481 (verilog-read-decls): Fix parsing of unsigned data types, bug302.
12482 Reported by Jan Frode Lonnum.
12483
12484 2011-11-30 Juanma Barranquero <lekktu@gmail.com>
12485
12486 * htmlfontify.el (hfy-page-header, hfy-post-html-hooks)
12487 (hfy-shell-file-name, hfy-shell):
12488 * international/fontset.el (x-decompose-font-name): Fix typos.
12489
12490 2011-11-29 Ken Brown <kbrown@cornell.edu>
12491
12492 * progmodes/gdb-mi.el: Fix bug#9853, bug#9858, and bug#9878.
12493 (gdb-version): Remove defvar.
12494 (gdb-supports-non-stop): New defvar, replacing `gdb-version'.
12495 (gdb-gud-context-command, gdb-non-stop-handler)
12496 (gdb-current-context-command, gdb-stopped): Use it.
12497 (gdb-init-1): Enable pretty printing here.
12498 (gdb-non-stop-handler): Don't enable pretty-printing here.
12499 Check to see if the target supports non-stop mode; if not, turn off
12500 non-stop mode. Use the following.
12501 (gdb-check-target-async): New defun.
12502 (gud-watch, gdb-stopped): Fix whitespace.
12503 (gdb-get-source-file): Don't try to display the source file if
12504 `gdb-main-file' is nil.
12505
12506 2011-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
12507
12508 * align.el: Try to generate fewer markers (bug#10047).
12509 (align--set-marker): New macro.
12510 (align-region): Use it.
12511
12512 2011-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
12513
12514 * isearch.el (isearch-yank-x-selection): Deactivate mark (bug#10022).
12515
12516 2011-11-29 Chong Yidong <cyd@gnu.org>
12517
12518 * indent.el (indent-for-tab-command, indent-according-to-mode):
12519 Doc fix.
12520 (indent-region): Doc fix. Switch nested ifs to equivalent cond.
12521
12522 2011-11-29 Michael Albinus <michael.albinus@gmx.de>
12523
12524 * vc/diff-mode.el (diff-find-file-name): Make `read-file-name'
12525 aware of remote file names. (Bug#10124)
12526
12527 2011-11-29 Chong Yidong <cyd@gnu.org>
12528
12529 * frame.el (auto-raise-mode, auto-lower-mode): Doc fix.
12530
12531 2011-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
12532
12533 * files.el (find-file): Don't use force-same-window (bug#10144).
12534 * window.el (switch-to-buffer): Better match Emacs-23 behavior and only
12535 use pop-to-buffer if the selected window can't be used.
12536 (pop-to-buffer-same-window): Use display-buffer--same-window-action.
12537
12538 2011-11-28 Eli Zaretskii <eliz@gnu.org>
12539
12540 * vc/diff-mode.el (diff-mode-map): Don't inherit 'z' => 'M-z' from
12541 special-mode-map.
12542
12543 2011-11-28 Chong Yidong <cyd@gnu.org>
12544
12545 * emacs-lisp/easy-mmode.el (define-minor-mode): Fix default doc.
12546
12547 2011-11-27 Nick Roberts <nickrob@snap.net.nz>
12548
12549 * progmodes/gdb-mi.el (gdb-init-1): Condition execution of
12550 gdb-get-source-file-list on gdb-create-source-file-list.
12551
12552 2011-11-26 Eli Zaretskii <eliz@gnu.org>
12553
12554 * whitespace.el (whitespace-newline): Use a different foreground
12555 color for 16-color light-background displays.
12556
12557 2011-11-24 Chong Yidong <cyd@gnu.org>
12558
12559 * window.el (display-buffer--special-action): Doc fix.
12560
12561 2011-11-25 Juanma Barranquero <lekktu@gmail.com>
12562
12563 * emacs-lisp/avl-tree.el (avl-tree--do-copy, avl-tree-create)
12564 (avl-tree-compare-function, avl-tree-empty, avl-tree-enter)
12565 (avl-tree-delete, avl-tree-member, avl-tree-member-p, avl-tree-map)
12566 (avl-tree-mapc, avl-tree-mapf, avl-tree-mapcar, avl-tree-copy)
12567 (avl-tree-clear, avl-tree-stack, avl-tree-stack-pop)
12568 (avl-tree-stack-first):
12569 * emacs-lisp/cconv.el (cconv--analyse-use):
12570 * net/gnutls.el (gnutls-negotiate): Fix typos.
12571
12572 2011-11-24 Glenn Morris <rgm@gnu.org>
12573
12574 * lpr.el (lpr-windows-system, lpr-lp-system):
12575 * mail/binhex.el (binhex-begin-line):
12576 * progmodes/grep.el (grep-history, grep-find-history):
12577 * textmodes/flyspell.el:
12578 * vc/pcvs-defs.el (cvs-global-menu):
12579 * vc/vc-bzr.el (vc-bzr-admin-checkout-format-file):
12580 * vc/vc-mtn.el (vc-mtn-admin-dir, vc-mtn-admin-format):
12581 * vc/vc-cvs.el (vc-cvs-registered): Give them basic doc-strings.
12582
12583 * net/tls.el: Fix case of "GnuTLS".
12584
12585 * paths.el (rmail-file-name): Format doc-string for make-docfile.
12586
12587 * version.el (emacs-build-system): Give it a doc-string.
12588
12589 2011-11-24 Juri Linkov <juri@jurta.org>
12590
12591 * view.el (view-buffer): Revert 2011-07-19T15:01:49Z!larsi@gnus.org from 2011-07-19 (bug#8615).
12592
12593 2011-11-24 Glenn Morris <rgm@gnu.org>
12594
12595 * mail/rmailmm.el (rmail-mime): When rmail-enable-mime is non-nil,
12596 if called on a non-mime message just toggle the headers. (Bug#8006)
12597
12598 2011-11-24 Juanma Barranquero <lekktu@gmail.com>
12599
12600 * allout.el (allout-setup, allout-auto-save-temporarily-disabled)
12601 (allout-lead-with-comment-string, allout-structure-deleted-hook)
12602 (allout-mode, allout-chart-subtree, allout-hotspot-key-handler)
12603 (allout-rebullet-heading, allout-open-sibtopic)
12604 (allout-toggle-current-subtree-encryption)
12605 (allout-toggle-subtree-encryption, allout-encrypt-string)
12606 (allout-next-topic-pending-encryption, allout-adjust-file-variable)
12607 (allout-distinctive-bullets-string, allout-auto-activation):
12608 * window.el (window-normalize-buffer-to-display):
12609 * progmodes/verilog-mode.el (verilog-batch-indent):
12610 * textmodes/bibtex.el (bibtex-field-braces-opt)
12611 (bibtex-field-strings-opt):
12612 * vc/cvs-status.el (cvs-tree-merge):
12613 Fix typos.
12614
12615 2011-11-23 Michael Albinus <michael.albinus@gmx.de>
12616
12617 * rfn-eshadow.el (rfn-eshadow-update-overlay): Let-bind
12618 `non-essential' to t, in order to avoid remote connections.
12619
12620 2011-11-23 Eli Zaretskii <eliz@gnu.org>
12621
12622 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
12623 On MS-DOS and MS-Windows, compare with loaddefs.el
12624 case-insensitively.
12625
12626 2011-11-23 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
12627
12628 * mail/unrmail.el (unrmail): Always add blank line. (Bug#7743)
12629
12630 2011-11-23 Glenn Morris <rgm@gnu.org>
12631
12632 * paths.el (rmail-file-name): Reformat the doc-string so that it
12633 is picked up.
12634
12635 * mail/rmail.el (rmail-message-filter, rmail-auto-file): Doc fixes.
12636 (rmail-auto-file): Ignore case in the "special" field names,
12637 as mail-fetch-field does for all others.
12638
12639 * mail/rmail.el (rmail-forward):
12640 * mail/rmailkwd.el (rmail-set-label):
12641 * mail/rmailout.el (rmail-output, rmail-output-as-seen)
12642 (rmail-output-body-to-file): Give error if no message. (Bug#10082)
12643
12644 * mail/rmail.el (rmail-current-message): Doc fix.
12645
12646 * mail/rmail.el (rmail-message-filter): Mark as obsolete. (Bug#2624)
12647
12648 2011-11-22 Stefan Monnier <monnier@iro.umontreal.ca>
12649
12650 * server.el (server-eval-and-print): Allow C-g (bug#6585).
12651
12652 2011-11-22 Glenn Morris <rgm@gnu.org>
12653
12654 * mail/rmailmm.el (test-rmail-mime-handler)
12655 (test-rmail-mime-bulk-handler)
12656 (test-rmail-mime-multipart-handler): Move tests to test/ directory.
12657
12658 2011-11-21 Juri Linkov <juri@jurta.org>
12659
12660 * calc/calc.el (calc-read-key-sequence):
12661 Let-bind `input-method-function' to nil. (Bug#10018)
12662
12663 2011-11-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
12664
12665 * emacs-lisp/cl-indent.el (common-lisp-loop-part-indentation):
12666 Tell the caller that the next line needs recomputation, even
12667 though it doesn't start a sexp (bug#10094).
12668
12669 2011-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
12670
12671 * emacs-lisp/autoload.el (autoload-generate-file-autoloads): Simplify.
12672
12673 2011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
12674
12675 * vc/pcvs-util.el (cvs-pop-to-buffer-same-frame):
12676 Use force-same-window.
12677
12678 2011-11-20 Juanma Barranquero <lekktu@gmail.com>
12679
12680 * descr-text.el (describe-char-unicode-data):
12681 * json.el (json-string-escape):
12682 * mail/footnote.el (footnote-unicode-string, footnote-unicode-regexp)
12683 (Footnote-unicode, Footnote-style-p):
12684 * net/ntlm.el (ntlm-get-password-hashes): Fix typos.
12685
12686 2011-11-20 Chong Yidong <cyd@gnu.org>
12687
12688 * window.el (replace-buffer-in-windows): Restore interactive spec.
12689
12690 2011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
12691
12692 * electric.el (electric-indent-mode): Fix last change (too optimistic).
12693
12694 * emacs-lisp/bytecomp.el: Silence obsolete warnings more reliably.
12695 (byte-compile-global-not-obsolete-vars): New var.
12696 (byte-compile-check-variable, byte-compile-make-obsolete-variable):
12697 Use it.
12698 (byte-compile-warn-obsolete): Align text with the one in *Help*.
12699
12700 2011-11-20 Juanma Barranquero <lekktu@gmail.com>
12701
12702 * progmodes/cwarn.el (cwarn-is-enabled, cwarn-font-lock-keywords):
12703 * progmodes/pascal.el (electric-pascal-equal):
12704 * textmodes/reftex-dcr.el (reftex-view-crossref-from-bibtex):
12705 * xml.el (xml-substitute-special): Fix typos.
12706
12707 2011-11-20 Glenn Morris <rgm@gnu.org>
12708
12709 * mail/rmail.el (rmail-enable-mime-composing): Make it a defcustom.
12710 (rmail-insert-mime-forwarded-message-function, rmail-mime-feature):
12711 Doc fixes.
12712 (rmail-decode-mime-charset): Mark as obsolete.
12713
12714 * mail/rmailsum.el (rmail-message-regexp-p-1):
12715 * mail/rmail.el (rmail-search-message, rmail-forward, rmail-resend):
12716 Before using mime functions, check they are set. (Bug#10077)
12717
12718 2011-11-19 Juri Linkov <juri@jurta.org>
12719
12720 * info.el (Info-finder-find-node): Use `package--builtins' instead
12721 of `package-alist'. Use node names formed by the pattern "Keyword "
12722 and the keyword name.
12723
12724 2011-11-19 Andreas Schwab <schwab@linux-m68k.org>
12725
12726 * progmodes/sh-script.el (sh-assignment-regexp): Add entry for bash.
12727
12728 2011-11-19 Juri Linkov <juri@jurta.org>
12729
12730 * info.el (Info-hide-note-references): Add `:set' tag to `defcustom'
12731 that calls `revert-buffer' on all Info buffers. (Bug#9915)
12732 (Info-revert-find-node): Remove let-bindings `old-buffer-name',
12733 `old-history', `old-history-forward'. Add let-binding
12734 `window-selected'. Remove calls to `kill-buffer',
12735 `switch-to-buffer' and `Info-mode'. Set `Info-current-file' to nil
12736 before calling `Info-find-node', so `Info-find-node-2' will reread
12737 the Info file. Restore window positions only when `window-selected'
12738 is non-nil.
12739
12740 2011-11-19 Juri Linkov <juri@jurta.org>
12741
12742 * isearch.el (isearch-lazy-highlight-new-loop):
12743 Remove condition `(not isearch-error)'. (Bug#9918)
12744
12745 * misearch.el (multi-isearch-search-fun): Add condition
12746 `(not bound)' to ignore lazy-highlighting search.
12747 Add the search-failed message "end of multi" when the end of
12748 multi-sequence is reached. Uncapitalize the search-failed
12749 message "Repeat for next buffer".
12750
12751 * info.el (Info-search): Add the search-failed message
12752 "end of the manual" when the end of the manual is reached
12753 in Isearch mode.
12754
12755 2011-11-19 Juri Linkov <juri@jurta.org>
12756
12757 * info.el (Info-find-node-2, Info-select-node, Info-history-find-node):
12758 Use non-destructive `remove' instead of `delete' because
12759 `Info-history-list' stored to `Info-isearch-initial-history-list' in
12760 `Info-isearch-start' might need to be restored in `Info-isearch-end'.
12761
12762 2011-11-19 Juri Linkov <juri@jurta.org>
12763
12764 * isearch.el (isearch-edit-string): Let-bind `history-add-new-input'
12765 to nil instead of binding `search-ring' and `regexp-search-ring'.
12766 (Bug#9185)
12767
12768 2011-11-19 Eli Zaretskii <eliz@gnu.org>
12769
12770 * simple.el (line-move): Force movement by logical lines for any
12771 hscrolled window, not only when auto-hscroll-mode is on.
12772 (line-move-visual): Update doc string to that effect. (Bug#10076)
12773
12774 2011-11-19 Andreas Schwab <schwab@linux-m68k.org>
12775
12776 * language/european.el (macintosh): Define as alias for mac-roman.
12777
12778 2011-11-19 Eli Zaretskii <eliz@gnu.org>
12779
12780 * mail/rmailmm.el (rmail-mime-display-header)
12781 (rmail-mime-display-tagline, rmail-mime-display-body): New defsubsts.
12782 (rmail-mime-entity-segment, rmail-mime-toggle-raw)
12783 (rmail-mime-toggle-hidden, rmail-mime-insert-text)
12784 (rmail-mime-insert-bulk, rmail-mime-insert-multipart)
12785 (rmail-mime-insert, rmail-mime-insert-tagline): Use them instead
12786 of a raw aref.
12787 (rmail-mime-entity-segment): To get past the tagline, move forward
12788 2 more lines, to account for the 2 empty lines that precede and
12789 follow the line with the buttons.
12790 (rmail-mime-update-tagline): Move one more line, to get past the
12791 empty line that follows the buttons in the tagline. (Bug#9520)
12792
12793 2011-11-19 Martin Rudalics <rudalics@gmx.at>
12794
12795 * window.el (window-max-delta-1, window-min-delta-1)
12796 (window-min-size-1, window-state-get-1, window-state-put-1)
12797 (window-state-put-2): Use "window--" prefix.
12798
12799 2011-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
12800
12801 * emacs-lisp/smie.el: Improve warnings and conflict detection.
12802 (smie-warning-count): New var.
12803 (smie-set-prec2tab): Use it.
12804 (smie-bnf->prec2): Improve warnings. Add docstring.
12805 (smie-bnf--closer-alist): Rename from smie-bnf-closer-alist.
12806 (smie-bnf--set-class): New function.
12807 (smie-bnf--classify): Rename from smie-bnf-classify. Rewrite to fix
12808 corner case.
12809
12810 * progmodes/compile.el: Obey compilation-first-column in dest buffer.
12811 (compilation-error-properties, compilation-move-to-column):
12812 Handle compilation-first-column while in the target buffer.
12813
12814 * progmodes/cc-engine.el (c-remove-stale-state-cache-backwards):
12815 Don't hardcode point-min==1.
12816
12817 * eshell/esh-cmd.el (eshell-do-eval): Handle `setq' (bug#9907).
12818 (eshell-rewrite-for-command): Remove workaround.
12819 (eshell-do-pipelines, eshell-do-pipelines-synchronously)
12820 (eshell-do-eval, eshell-exec-lisp): Avoid gratuitous setq.
12821 * eshell/esh-util.el (eshell-condition-case, eshell-for): Use declare.
12822
12823 * files-x.el (modify-file-local-variable): Obey commenting conventions.
12824
12825 2011-11-17 Glenn Morris <rgm@gnu.org>
12826
12827 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
12828 Ignore buffer-local generated-autoload-file if it is the same
12829 as the global value. (Bug#10049)
12830
12831 2011-11-17 Juanma Barranquero <lekktu@gmail.com>
12832
12833 * textmodes/reftex-toc.el (reftex-toc-return-marker, reftex-toc-help)
12834 (reftex-toc, reftex-toc, reftex-toc-dframe-p, reftex-toc-next-heading)
12835 (reftex-toc-previous-heading, reftex-toc-max-level)
12836 (reftex-toc-goto-line-and-hide, reftex-toc-show-calling-point)
12837 (reftex-toc-quit, reftex-toc-revert, reftex-toc-jump)
12838 (reftex-toc-do-promote, reftex-toc-promote-prepare)
12839 (reftex-toc-promote-action, reftex-toc-extract-section-number)
12840 (reftex-toc-load-all-files-for-promotion, reftex-toc-rename-label)
12841 (reftex-toc-rename-label, reftex-toc-visit-location)
12842 (reftex-toc-visit-location, reftex-toggle-auto-toc-recenter)
12843 (reftex-toggle-auto-toc-recenter, reftex-toggle-auto-toc-recenter)
12844 (reftex-make-separate-toc-frame): Fix typos, and use TOC consistently,
12845 leaving "*toc*" only for references to the buffer.
12846
12847 2011-11-17 Martin Rudalics <rudalics@gmx.at>
12848
12849 * window.el (window-resize, delete-window, split-window):
12850 Replace window-splits by window-combination-resize.
12851 * cus-start.el (window-splits): Replace by window-combination-resize.
12852
12853 2011-11-17 Glenn Morris <rgm@gnu.org>
12854
12855 * progmodes/sh-script.el (sh-font-lock-keywords-var):
12856 Make bash entry derive from sh entry, not shell entry.
12857
12858 2011-11-16 Michael Albinus <michael.albinus@gmx.de>
12859
12860 * net/tramp-sh.el (tramp-sh-handle-file-truename): Cache only the
12861 local file name.
12862
12863 2011-11-16 Juanma Barranquero <lekktu@gmail.com>
12864
12865 * menu-bar.el (menu-bar-file-menu):
12866 * printing.el (pr-ps-utility):
12867 * calendar/icalendar.el (icalendar, icalendar--convert-tz-offset)
12868 (icalendar--convert-to-ical, icalendar--convert-ordinary-to-ical)
12869 (icalendar--convert-weekly-to-ical, icalendar--convert-yearly-to-ical)
12870 (icalendar--convert-sexp-to-ical, icalendar--convert-block-to-ical)
12871 (icalendar--convert-float-to-ical, icalendar--convert-date-to-ical)
12872 (icalendar--convert-cyclic-to-ical)
12873 (icalendar--convert-anniversary-to-ical, icalendar-import-buffer)
12874 (icalendar--convert-ical-to-diary)
12875 (icalendar--convert-recurring-to-diary)
12876 (icalendar--convert-non-recurring-all-day-to-diary)
12877 (icalendar-import-format-sample):
12878 * progmodes/idlw-shell.el (idlwave-shell-mode):
12879 * progmodes/vhdl-mode.el (vhdl-mode, vhdl-print-two-column)
12880 (vhdl-print-customize-faces, vhdl-mode, vhdl-ps-print-settings)
12881 (vhdl-ps-print-init): Fix typos.
12882
12883 2011-11-16 Ken Manheimer <ken.manheimer@gmail.com>
12884
12885 * allout.el, allout-widgets.el (file metadata): Attribute copyright to
12886 FSF and collapse date sequence, obscure author/maintainer email address
12887 better, remove extra version line, track relocation of author's webpage.
12888
12889 * progmodes/python.el (python-pdbtrack-input-prompt)
12890 (python-pdbtrack-track-stack-file): Adjust to recognize ipdb as well as
12891 regular python pdb prompts. Adjustments shamelessly taken exactly as
12892 suggested in EmacsWiki page (tiny change):
12893 http://www.emacswiki.org/PythonProgrammingInEmacs#toc14
12894
12895 2011-11-16 Juanma Barranquero <lekktu@gmail.com>
12896
12897 * expand.el (expand-pos, expand-index, expand-point):
12898 Remove redundant info from docstring.
12899 (expand-add-abbrevs): Doc fix.
12900 (expand-c-sample-expand-list, expand-sample-lisp-mode-expand-list)
12901 (expand-sample-perl-mode-expand-list): Fix typos.
12902
12903 * net/dbus.el (dbus-event-member-name):
12904 * play/5x5.el (5x5-solve-rotate-left, 5x5-solver-output):
12905 * term/pc-win.el (msdos-create-frame-with-faces):
12906 * textmodes/texinfmt.el (texinfo-format-image): Fix typos.
12907
12908 2011-11-16 Martin Rudalics <rudalics@gmx.at>
12909
12910 * window.el (split-window, window-state-get-1)
12911 (window-state-put-1, window-state-put-2): Rename occurrences of
12912 window-nest to window-combination-limit.
12913 * cus-start.el (window-nest): Rename to window-combination-limit.
12914
12915 2011-11-16 Chong Yidong <cyd@gnu.org>
12916
12917 * progmodes/autoconf.el (autoconf-mode): Fix comment-start-skip
12918 regexp (Bug#10033).
12919
12920 2011-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
12921
12922 * tmm.el (tmm-prompt): Use minibuffer-with-setup-hook (bug#10053).
12923 `completing-read' will remove *Completions* and will preserve
12924 current-buffer for us.
12925 (tmm-add-prompt): Users of *Completions* will always (re)set its
12926 major mode.
12927 (tmm-old-comp-map): Remove.
12928
12929 2011-11-16 Glenn Morris <rgm@gnu.org>
12930
12931 * mail/rmailedit.el: Require rmailmm when compiling.
12932 (rmail-old-mime-state): New declaration.
12933 (rmail-edit-current-message): If editing a mime message,
12934 edit the "raw" message from the mbox buffer.
12935 (rmail-cease-edit): Handle mime messages. (Bug#9840)
12936
12937 2011-11-15 Glenn Morris <rgm@gnu.org>
12938
12939 * mail/rmailmm.el (rmail-mime-toggle-raw): Remove entity arg,
12940 which wasn't being used. Add optional arg to force given state.
12941 (rmail-mime): Add optional arg to force given state.
12942
12943 2011-11-15 Juanma Barranquero <lekktu@gmail.com>
12944
12945 * allout.el (allout-encryption-plaintext-sanitization-regexps):
12946 * frame.el (display-mm-dimensions-alist):
12947 * outline.el (outline-mode-menu-bar-map, outline-move-subtree-up)
12948 (outline-move-subtree-down):
12949 * net/newst-treeview.el (newsticker--treeview-do-get-node-of-feed)
12950 (newsticker--treeview-do-get-node):
12951 * net/quickurl.el (quickurl-list-buffer-name):
12952 * progmodes/dcl-mode.el (dcl-mode):
12953 * progmodes/gdb-mi.el (gdb-mapcar*):
12954 * progmodes/sql.el (sql-mode-oracle-font-lock-keywords): Fix typos.
12955
12956 2011-11-15 Glenn Morris <rgm@gnu.org>
12957
12958 * mail/rmail.el (rmail-file-coding-system): It's only ever used
12959 in a boolean sense, so just make it a boolean, and fix the doc.
12960 (rmail-show-mime-function, rmail-mime-feature)
12961 (rmail-require-mime-maybe): Doc fixes.
12962 (rmail-show-message-1): Check rmail-show-mime-function is non-nil.
12963
12964 * mail/rmailmm.el (rmail-show-mime): Doc fix.
12965
12966 2011-11-15 Juanma Barranquero <lekktu@gmail.com>
12967
12968 * epg.el (epg-start-decrypt, epg-start-verify, epg-start-sign)
12969 (epg-start-encrypt, epg-start-export-keys, epg-start-import-keys)
12970 (epg-start-receive-keys, epg-start-delete-keys, epg-start-sign-keys)
12971 (epg-start-generate-key, epg-context-set-progress-callback): Fix typos.
12972
12973 2011-11-15 Glenn Morris <rgm@gnu.org>
12974
12975 * mail/rmailmm.el (rmail-mime-entity, rmail-mime-entity-segment)
12976 (rmail-mime-shown-mode, rmail-mime-hidden-mode, rmail-mime-raw-mode)
12977 (rmail-mime-toggle-hidden, rmail-mime-insert-tagline)
12978 (rmail-mime-insert-header, rmail-mime-handle, rmail-mime-parse)
12979 (rmail-mime, rmail-show-mime): Doc fixes.
12980
12981 * term/ns-win.el (mode-line-frame-identification):
12982 Leave it alone. (Bug#10051)
12983
12984 * simple.el (mark-whole-buffer): Doc fix. (Bug#10023)
12985
12986 * mail/rmailout.el (rmail-output-to-rmail-buffer):
12987 Handle empty buffers. (Bug#9978)
12988
12989 2011-11-14 Juanma Barranquero <lekktu@gmail.com>
12990
12991 * international/mule.el (define-charset):
12992 * mail/rmailmm.el (rmail-mime-find-header-encoding):
12993 * progmodes/prolog.el (prolog-mode-hook, prolog-inferior-mode-hook):
12994 * progmodes/verilog-mode.el (verilog-backward-token):
12995 * textmodes/ispell.el (lookup-words):
12996 * textmodes/sgml-mode.el (sgml-guess-indent): Fix typos.
12997
12998 2011-11-14 Glenn Morris <rgm@gnu.org>
12999
13000 * progmodes/executable.el
13001 (executable-make-buffer-file-executable-if-script-p):
13002 Handle file-modes returning nil.
13003
13004 * mail/rmailsum.el (rmail-summary): Remove movement to beginning of
13005 message - not necessary, and causes problems. (Bug#9831)
13006
13007 * mail/rmailsum.el (rmail-new-summary): Preserve message number.
13008
13009 * mail/rmail.el (rmail-no-mail-p): Remove mode-line N/M indicator.
13010
13011 * mail/rmailsum.el (rmail-summary, rmail-new-summary)
13012 (rmail-new-summary-1): Allow empty summaries. (Bug#9964)
13013 (rmail-new-summary): Remember that rmail-summary-buffer is buffer-local.
13014
13015 2011-11-12 Martin Rudalics <rudalics@gmx.at>
13016
13017 * window.el (window-resize, delete-window): Use window-splits
13018 variable instead of function.
13019 (window-state-get-1, window-state-put-2, window-state-put):
13020 Don't deal with windows' splits status.
13021
13022 2011-11-12 Glenn Morris <rgm@gnu.org>
13023
13024 * apropos.el (apropos-do-all, apropos-library, apropos-value)
13025 (apropos-documentation): Doc fixes.
13026
13027 2011-11-11 Juanma Barranquero <lekktu@gmail.com>
13028
13029 * progmodes/idlw-shell.el (idlwave-shell-make-new-bp-overlay):
13030 * textmodes/sgml-mode.el (html-tag-help): Fix typos.
13031
13032 2011-11-11 Stefan Monnier <monnier@iro.umontreal.ca>
13033
13034 * electric.el (electric-indent-post-self-insert-function): Make it
13035 possible for a char to only indent in some circumstances.
13036 (electric-indent-mode): Simplify.
13037
13038 2011-11-11 Martin Rudalics <rudalics@gmx.at>
13039
13040 * window.el (windows-with-parameter): Remove unused function.
13041 (windows-at-side): Rename to window-at-side-list.
13042 (window-check, window-atom-check, window-atom-check-1)
13043 (window-side-check, window-size-ignore, window-size-fixed-1)
13044 (window-in-direction-2): Prefix with "window--".
13045 (window-tree-1): Rename to window--subtree, fix doc-string.
13046
13047 2011-11-11 Glenn Morris <rgm@gnu.org>
13048
13049 * subr.el (eval-after-load): If FILE is already loaded,
13050 evaluate FORM before it gets wrapped in more stuff. (Bug#10009)
13051
13052 2011-11-10 Glenn Morris <rgm@gnu.org>
13053
13054 * vc/vc-svn.el (vc-svn-create-repo, vc-svn-modify-change-comment):
13055 Call svn via vc-svn-command rather than vc-do-command.
13056 (vc-svn-command): Add --non-interactive. (Bug#9993)
13057 (vc-svn-update, vc-svn-merge-news): No need for --non-interactive.
13058
13059 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
13060 Add toggle-read-only. (Bug#7292)
13061 * files.el (toggle-read-only): Mention that it should only
13062 be used interactively. (Bug#10006)
13063
13064 2011-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
13065
13066 * progmodes/compile.el (compilation-error-regexp-alist-alist):
13067 Adjust regexp for OCaml warnings.
13068
13069 * electric.el (electric-pair-post-self-insert-function): Let user
13070 turn it off buffer-locally (bug#9932).
13071
13072 * progmodes/python.el (python-beginning-of-statement):
13073 Rewrite (bug#2703).
13074
13075 * progmodes/compile.el: Better handle TABs (bug#9749).
13076 (compilation-internal-error-properties)
13077 (compilation-next-error-function): Obey the target buffer's
13078 compilation-error-screen-columns.
13079
13080 2011-11-09 Juanma Barranquero <lekktu@gmail.com>
13081
13082 * progmodes/meta-mode.el: Remove obsolete comments.
13083 (meta-right-comment-regexp, meta-ignore-comment-regexp):
13084 Fix typos in docstrings.
13085
13086 2011-11-09 Martin Rudalics <rudalics@gmx.at>
13087
13088 * window.el (window-size-fixed-p): Rewrite doc-string.
13089 (window-resizable-p): Rename to window--resizable-p. Update callers.
13090 (window--resizable): New function. Make all callers of
13091 window-resizable call window--resizable instead.
13092 (window-resizable): Rewrite in terms of window--resizable.
13093
13094 2011-11-08 Glenn Morris <rgm@gnu.org>
13095
13096 * progmodes/delphi.el (delphi-mode-syntax-table):
13097 Let define-derived-mode define a proper syntax table. (Bug#9994)
13098
13099 2011-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
13100
13101 * window.el: Stay away from defsubst.
13102 (window-list-no-nils): Remove.
13103 (window-state-get-1, window-state-get): Use backquote instead.
13104
13105 2011-11-08 Thierry Volpiatto <thierry.volpiatto@gmail.com>
13106
13107 * emacs-lisp/find-func.el (find-function-read):
13108 Fix incorrect use of default argument in `completing-read'.
13109
13110 2011-11-08 Martin Rudalics <rudalics@gmx.at>
13111
13112 * window.el (display-buffer-function, special-display-function):
13113 Mention display-buffer-record-window but do not mention
13114 help-setup parameter in doc-strings.
13115 (window-min-delta): Fix doc-string typo.
13116
13117 2011-11-08 Chong Yidong <cyd@gnu.org>
13118
13119 * window.el (window-total-height, window-total-width): Doc fix.
13120 (window-body-size): Move from C.
13121 (window-body-height, window-body-width): Move to C.
13122
13123 2011-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
13124
13125 * window.el: Make special-display like display-buffer-alist (bug#9532).
13126 (display-buffer--special-action): New function, morphed
13127 from display-buffer--special.
13128 (display-buffer): Use it to handle special-display-buffers at higher
13129 priority (just after display-buffer-alist).
13130 (display-buffer-fallback-action, display-buffer--other-frame-action)
13131 (pop-to-buffer-same-window): Remove display-buffer--special.
13132
13133 2011-11-07 Glenn Morris <rgm@gnu.org>
13134
13135 * calendar/cal-menu.el (cal-menu-set-date-title):
13136 Do nothing if not in a calendar. (Bug#9976)
13137
13138 2011-11-07 Stefan Monnier <monnier@iro.umontreal.ca>
13139
13140 * files.el (find-file): Always use selected-window.
13141
13142 2011-11-07 Martin Rudalics <rudalics@gmx.at>
13143
13144 * window.el (window-combinations): Make WINDOW argument
13145 mandatory. Rewrite doc-string.
13146 (walk-window-subtree, window-atom-check, window-min-delta)
13147 (window-max-delta, window--resize-this-window)
13148 (window--resize-root-window-vertically, window-tree)
13149 (balance-windows, window-state-put): Rewrite doc-strings as to
13150 not mention the term "subwindow".
13151 (window--resize-subwindows-skip-p): Rename to
13152 window--resize-child-windows-skip-p.
13153 (window--resize-subwindows-normal): Rename to
13154 window--resize-child-windows-normal.
13155 (window--resize-subwindows): Rename to
13156 window--resize-child-windows.
13157 (window-or-subwindow-p): Rename to window--in-subtree-p.
13158
13159 2011-11-07 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
13160
13161 * mail/rmail.el (rmail-get-new-mail, rmail-insert-inbox-text):
13162 Ensure that mbox format messages end in two newlines (Bug#9974).
13163
13164 2011-11-06 Chong Yidong <cyd@gnu.org>
13165
13166 * window.el (window-combination-p): Function deleted; its
13167 side-effect is not used in any existing code.
13168 (window-combinations, window-combined-p): Call window-*-child
13169 directly.
13170
13171 2011-11-05 Chong Yidong <cyd@gnu.org>
13172
13173 * window.el (window-valid-p): Rename from window-any-p.
13174 (window-size-ignore, window-state-get): Callers changed.
13175 (window-normalize-window): Rename from window-normalize-any-window.
13176 New arg LIVE-ONLY, replacing window-normalize-live-window.
13177 (window-normalize-live-window): Delete.
13178 (window-combination-p, window-combined-p, window-combinations)
13179 (walk-window-subtree, window-atom-root, window-min-size)
13180 (window-sizable, window-sizable-p, window-size-fixed-p)
13181 (window-min-delta, window-max-delta, window-resizable)
13182 (window-resizable-p, window-full-height-p, window-full-width-p)
13183 (window-current-scroll-bars, window-point-1, set-window-point-1)
13184 (window-at-side-p, window-in-direction, window-resize)
13185 (adjust-window-trailing-edge, maximize-window, minimize-window)
13186 (window-deletable-p, delete-window, delete-other-windows)
13187 (record-window-buffer, unrecord-window-buffer)
13188 (switch-to-prev-buffer, switch-to-next-buffer, window--delete)
13189 (quit-window, split-window, window-state-put)
13190 (set-window-text-height, fit-window-to-buffer)
13191 (shrink-window-if-larger-than-buffer): Callers changed.
13192
13193 2011-11-04 Eli Zaretskii <eliz@gnu.org>
13194
13195 * mail/rmail.el (rmail-simplified-subject): Decode subject with
13196 rfc2047-decode-string.
13197 (rmail-mime-toggle-hidden): Declare to avoid byte-compilation
13198 warnings.
13199
13200 * window.el (window-body-height, window-body-width): Mention in
13201 the doc string that the return values are in frame's canonical
13202 units. (Bug#9949)
13203
13204 2011-11-03 Alan Mackenzie <acm@muc.de>
13205
13206 * progmodes/cc-langs.el (c-nonlabel-token-2-key): New variable for
13207 change in cc-engine.el.
13208
13209 2011-11-02 Stefan Monnier <monnier@iro.umontreal.ca>
13210
13211 * window.el (switch-to-buffer): Use `force-same-window' interactively.
13212
13213 2011-11-02 Martin Rudalics <rudalics@gmx.at>
13214
13215 * window.el (quit-window): Call unrecord-window-buffer after
13216 showing another buffer in the window. (Bug#9937)
13217 (bury-buffer): Call switch-to-prev-buffer with second argument `bury'.
13218
13219 2011-11-02 Juanma Barranquero <lekktu@gmail.com>
13220
13221 * vc/vc-bzr.el (vc-bzr-state, vc-bzr-after-dir-status):
13222 Accept status with more than 9 shelves. (Bug#9935)
13223 Reported by Colin D Bennett <colin@gibibit.com>.
13224
13225 2011-11-01 Martin Rudalics <rudalics@gmx.at>
13226
13227 * help.el (with-help-window): Don't reference
13228 temp-buffer-show-specifiers in doc-string.
13229
13230 2011-10-31 Andreas Schwab <schwab@linux-m68k.org>
13231
13232 * subr.el (keymap--menu-item-with-binding): Ignore item if not a
13233 menu-item.
13234
13235 2011-10-30 Vinicius Jose Latorre <viniciusjl@ig.com.br>
13236
13237 * whitespace.el: New version 13.2.2.
13238 (whitespace-newline-mode): Disable properly. Reported by Sarah
13239 <EmacsWiki>.
13240
13241 2011-10-30 Ulf Jasper <ulf.jasper@web.de>
13242
13243 * net/newst-treeview.el: Remove "Time-stamp".
13244 (newsticker--group-manage-orphan-feeds): Do not call
13245 newsticker--treeview-tree-update.
13246 (newsticker-treeview-update, newsticker-treeview):
13247 Call newsticker--treeview-tree-update if necessary.
13248
13249 2011-10-30 Martin Rudalics <rudalics@gmx.at>
13250
13251 * window.el (window-iso-combination-p, window-iso-combined-p)
13252 (window-iso-combinations): Remove "iso-" infix.
13253 Suggested by Chong Yidong.
13254 (window-min-size-1, window-size-fixed-1, window-min-delta-1)
13255 (window-max-delta-1, window-resize, window--resize-siblings)
13256 (window--resize-this-window, adjust-window-trailing-edge)
13257 (split-window, balance-windows-1)
13258 (shrink-window-if-larger-than-buffer):
13259 * calendar/calendar.el (calendar-generate-window):
13260 * help.el (resize-temp-buffer-window): Adjust callers accordingly.
13261
13262 2011-10-30 Stefan Monnier <monnier@iro.umontreal.ca>
13263
13264 * eshell/esh-cmd.el (eshell-rewrite-for-command): Don't modify the list
13265 in place (bug#9907).
13266 (eshell-subcommand-arg-values, eshell-rewrite-named-command)
13267 (eshell-rewrite-if-command, eshell-rewrite-for-command)
13268 (eshell-structure-basic-command, eshell-rewrite-while-command)
13269 (eshell-invokify-arg, eshell-parse-pipeline, eshell-parse-command)
13270 (eshell-parse-subcommand-argument, eshell-parse-lisp-argument)
13271 (eshell-trap-errors, eshell-do-pipelines, eshell-do-eval)
13272 (eshell-do-pipelines-synchronously, eshell-eval-command):
13273 Use backquotes and prefer setq to set.
13274 (eshell-lookup-function, function-p-func, eshell-functionp): Remove.
13275 (eshell-macrop): Use functionp.
13276 (eshell-do-eval): Handle multiple expressions in `while' body.
13277
13278 2011-10-30 Chong Yidong <cyd@gnu.org>
13279
13280 * emulation/viper-cmd.el (viper-exec-change): Use push-mark
13281 instead of set-mark (Bug#9810).
13282
13283 2011-10-30 Chong Yidong <cyd@gnu.org>
13284
13285 * window.el (split-window-below, split-window-right): Rename from
13286 split-window-above-each-other and split-window-side-by-side
13287 respectively. All callers changed.
13288 (split-window-sensibly, split-window-sensibly): Use them.
13289 (split-window-keep-point): Doc fix.
13290
13291 * isearch.el: Add isearch-scroll property to split-window-below
13292 and split-window-right.
13293
13294 * follow.el (follow-mode):
13295 * vc/pcvs-util.el (cvs-pop-to-buffer-same-frame):
13296 * progmodes/ada-xref.el (ada-gdb-application):
13297 * emulation/vip.el (vip-buffer-in-two-windows):
13298 * image-dired.el (image-dired-dired-with-window-configuration):
13299 * dired-x.el (dired-do-find-marked-files):
13300 * dired.el (dired-pop-to-buffer):
13301 * bs.el (bs--show-with-configuration):
13302 * vc/emerge.el (emerge-setup-windows):
13303 * textmodes/two-column.el (2C-two-columns):
13304 * textmodes/reftex-toc.el (reftex-toc):
13305 * progmodes/gdb-mi.el (gdb-setup-windows):
13306 * progmodes/fortran.el (fortran-window-create):
13307 * net/newst-treeview.el (newsticker--treeview-window-init):
13308 * emulation/ws-mode.el (wordstar-C-o-map, wordstar-mode):
13309 * emulation/tpu-edt.el (tpu-gold-map):
13310 * emulation/crisp.el (crisp-mode-map):
13311 * calendar/calendar.el (calendar-basic-setup): Callers changed.
13312
13313 2011-10-29 Chong Yidong <cyd@gnu.org>
13314
13315 * subr.el (y-or-n-p): Add code for batch mode (Bug#9818).
13316
13317 * mouse.el (mouse-yank-primary): Push the mark (Bug#9894).
13318
13319 * textmodes/flyspell.el (flyspell-word): Fix char offset for
13320 forged Ispell output (Bug#7904).
13321
13322 * emacs-lisp/package.el (package-refresh-contents): Add autoload.
13323
13324 2011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
13325
13326 * doc-view.el: Avoid ugly errors about not finding nil.
13327 (doc-view-ghostscript-program, doc-view-dvipdfm-program)
13328 (doc-view-dvipdf-program, doc-view-unoconv-program)
13329 (doc-view-ps2pdf-program, doc-view-pdftotext-program):
13330 Avoid nil or absolute file name as default value.
13331 (doc-view-pdf->txt, doc-view-ps->pdf): Use executable-find here.
13332
13333 2011-10-28 Alan Mackenzie <acm@muc.de>
13334
13335 * progmodes/cc-defs.el (c-version): -> 5.32.2.
13336
13337 2011-10-28 Alan Mackenzie <acm@muc.de>
13338
13339 Amend the handling of c-beginning/end-of-defun in nested declaration
13340 scopes.
13341
13342 * progmodes/cc-vars.el (c-defun-tactic): Move here from
13343 cc-langs.el. Change it to a defcustom.
13344
13345 * progmodes/cc-langs.el (c-defun-tactic): Move this variable to
13346 cc-vars.el.
13347
13348 * progmodes/cc-engine.el (c-beginning-of-statement-1):
13349 Prevent "class foo : bar" being spuriously recognized as a label.
13350
13351 * progmodes/cc-cmds.el (c-narrow-to-most-enclosing-decl-block):
13352 Add parameter `inclusive' (to include enclosing braces in the region).
13353 (c-widen-to-enclosing-decl-scope): New function.
13354 (c-while-widening-to-decl-block): New macro.
13355 (c-beginning-of-defun, c-end-of-defun): Change algorithm to keep going
13356 outward for defun boundaries, and correspondingly change symbol
13357 `respect-enclosure' to `go-outward'.
13358 (c-declaration-limits): Change algorithm to report only the "innermost"
13359 defun's boundaries.
13360
13361 2011-10-28 Deniz Dogan <deniz@dogan.se>
13362
13363 * net/rcirc.el (rcirc-mode): Use hard newlines.
13364
13365 2011-10-28 Alan Mackenzie <acm@muc.de>
13366
13367 Amend to indent and fontify macros "which include their own semicolon"
13368 correctly, using the "virtual semicolon" mechanism.
13369
13370 * progmodes/cc-defs.el: Update "virtual semicolon" comments.
13371
13372 * progmodes/cc-engine.el (c-crosses-statement-barrier-p):
13373 Recode to scan one line at a time rather than having \n and \r
13374 explicitly in c-stmt-delim-chars (for some modes, e.g. AWK).
13375 (c-forward-label): Amend for virtual semicolons.
13376 (c-at-macro-vsemi-p, c-macro-vsemi-status-unknown-p): New functions.
13377
13378 * progmodes/cc-fonts.el (c-font-lock-declarations): Take account
13379 of the new C macros.
13380
13381 * progmodes/cc-langs.el (c-at-vsemi-p-fn):
13382 (c-vsemi-status-unknown-p-fn): Move to earlier in the file.
13383 (c-opt-cpp-symbol, c-line-comment-start-regexp): New language vars.
13384 (c-opt-cpp-macro-define): Make into a full language variable.
13385 (c-stmt-delim-chars, c-stmt-delim-chars-with-comma): Special value for
13386 AWK Mode (including \n, \r) removed, no longer needed.
13387
13388 * progmodes/cc-mode.el (c-mode, c++-mode, objc-mode):
13389 Invoke c-make-macro-with-semi-re.
13390
13391 * progmodes/cc-vars.el (c-macro-with-semi-re):
13392 (c-macro-names-with-semicolon): New variables.
13393 (c-make-macro-with-semi-re): New function.
13394
13395 2011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
13396
13397 * vc/log-edit.el: Fill empty field rather than adding new one.
13398 (log-edit-add-field): New function.
13399 (log-edit-insert-changelog): Use it.
13400
13401 2011-10-28 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
13402
13403 * mail/rmail.el (rmail-mode-map): Add M-C-f as in rmailsum (bug#9802).
13404
13405 2011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
13406
13407 * progmodes/gdb-mi.el: Warn the user when -i=mi is missing.
13408 (gdb--check-interpreter): New function.
13409 (gdb): Use it.
13410
13411 2011-10-27 Glenn Morris <rgm@gnu.org>
13412
13413 * emacs-lisp/cl-extra.el (most-positive-float, most-negative-float)
13414 (least-positive-float, least-negative-float)
13415 (least-positive-normalized-float, least-negative-normalized-float)
13416 (float-epsilon, float-negative-epsilon):
13417 Remove unnecessary declarations.
13418
13419 * emacs-lisp/cl-extra.el (cl-float-limits): Add doc string.
13420 * emacs-lisp/cl.el (most-positive-float, most-negative-float)
13421 (least-positive-float, least-negative-float)
13422 (least-positive-normalized-float, least-negative-normalized-float)
13423 (float-epsilon, float-negative-epsilon): Add doc-strings,
13424 based on those in cl.texi.
13425
13426 * files.el (set-visited-file-name): If the major-mode changed,
13427 reload the local variables. (Bug#9796)
13428
13429 2011-10-27 Chong Yidong <cyd@gnu.org>
13430
13431 * subr.el (change-major-mode-after-body-hook): New hook.
13432 (run-mode-hooks): Run it.
13433
13434 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
13435 Use change-major-mode-before-body-hook.
13436
13437 * simple.el (fundamental-mode):
13438 * emacs-lisp/derived.el (define-derived-mode): Revert 2010-04-28
13439 change introducing fundamental-mode-hook.
13440
13441 2011-10-26 Juanma Barranquero <lekktu@gmail.com>
13442
13443 * term/w32-win.el (w32-default-color-map): Declare obsolete (Bug#9785).
13444
13445 2011-10-26 Michael Albinus <michael.albinus@gmx.de>
13446
13447 * ido.el (ido-file-name-all-completions-1): Do not require
13448 tramp.el explicitly. (Bug#7583)
13449
13450 2011-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
13451
13452 * progmodes/octave-mod.el:
13453 * progmodes/octave-inf.el: Update maintainer.
13454
13455 2011-10-26 Chong Yidong <cyd@gnu.org>
13456
13457 * subr.el (with-wrapper-hook): Rewrite doc.
13458
13459 2011-10-25 Michael Albinus <michael.albinus@gmx.de>
13460
13461 * net/tramp-sh.el (tramp-sh-handle-file-directory-p): Return t for
13462 filenames "/method:foo:". (Bug#9793)
13463
13464 2011-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
13465
13466 * comint.el (comint-get-old-input-default): Fix use-prompt-regexp case
13467 (bug#9865).
13468
13469 2011-10-24 Glenn Morris <rgm@gnu.org>
13470
13471 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix. (Bug#9819)
13472
13473 2011-10-24 Michael Albinus <michael.albinus@gmx.de>
13474
13475 * notifications.el: Add the requirement of a running D-Bus session
13476 bus to the Commentary.
13477
13478 2011-10-24 Juri Linkov <juri@jurta.org>
13479
13480 * isearch.el (isearch-occur): Let-bind `search-spaces-regexp' to
13481 `search-whitespace-regexp' only when `isearch-regexp' is non-nil.
13482 (Bug#9364)
13483
13484 2011-10-24 Juri Linkov <juri@jurta.org>
13485
13486 * info.el (Info-following-node-name-re): Add newline to the list
13487 of allowed characters for leading space. (Bug#9824)
13488
13489 2011-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
13490
13491 * progmodes/octave-inf.el (inferior-octave-mode-map):
13492 Fix C-c C-h binding.
13493 * progmodes/octave-mod.el (octave-help): Remove.
13494
13495 2011-10-23 Michael Albinus <michael.albinus@gmx.de>
13496
13497 Sync with Tramp 2.2.3.
13498
13499 * net/tramp-cache.el (top): Pacify byte-compiler using
13500 `init-file-user' and `site-run-file'.
13501
13502 * net/trampver.el: Update release number.
13503
13504 2011-10-23 Chong Yidong <cyd@gnu.org>
13505
13506 * files.el (toggle-read-only): Remove obsolete comment about
13507 version control.
13508
13509 * vc/vc-hooks.el (vc-toggle-read-only): Make it an obsolete alias
13510 for toggle-read-only. Note that this hasn't called vc-next-action
13511 since 2008-05-02, though it wasn't documented at the time.
13512
13513 * vc/ediff-init.el (ediff-toggle-read-only-function):
13514 Use toggle-read-only.
13515
13516 2011-10-22 Alan Mackenzie <bug-cc-mode@gnu.org>
13517
13518 Fix bug #9560, sporadic wrong indentation; improve instrumentation
13519 of c-parse-state.
13520
13521 * progmodes/cc-engine.el (c-append-lower-brace-pair-to-state-cache):
13522 correct faulty logical expression.
13523 (c-parse-state-state, c-record-parse-state-state):
13524 (c-replay-parse-state-state): New defvar/defuns.
13525 (c-debug-parse-state): Use new functions.
13526
13527 2011-10-22 Martin Rudalics <rudalics@gmx.at>
13528
13529 * mouse.el (mouse-drag-line): Fix minibuffer resizing broken by
13530 last fix. Use window-in-direction correctly.
13531
13532 2011-10-21 Chong Yidong <cyd@gnu.org>
13533
13534 * progmodes/idlwave.el (idlwave-mode):
13535 * progmodes/vera-mode.el (vera-mode): No need to set
13536 require-final-newline; that's done in prog-mode.
13537 Suggested by Stefan Monnier.
13538
13539 2011-10-21 Martin Rudalics <rudalics@gmx.at>
13540
13541 * mouse.el (mouse-drag-window-above)
13542 (mouse-drag-move-window-bottom, mouse-drag-move-window-top)
13543 (mouse-drag-mode-line-1, mouse-drag-header-line)
13544 (mouse-drag-vertical-line-rightward-window): Remove.
13545 (mouse-drag-line): New function.
13546 (mouse-drag-mode-line, mouse-drag-header-line)
13547 (mouse-drag-vertical-line): Call mouse-drag-line.
13548 * window.el (window-at-side-p, windows-at-side): New functions.
13549
13550 2011-10-21 Ulrich Mueller <ulm@gentoo.org>
13551
13552 * tar-mode.el (tar-grind-file-mode):
13553 Fix handling of setuid/setgid, handle sticky bit. (Bug#9817)
13554
13555 2011-10-21 Chong Yidong <cyd@gnu.org>
13556
13557 * progmodes/idlwave.el (idlwave-mode):
13558 * progmodes/vera-mode.el (vera-mode):
13559 Use mode-require-final-newline.
13560
13561 2011-10-20 Glenn Morris <rgm@gnu.org>
13562
13563 * vc/vc.el (vc-next-action): Handle removed directories. (Bug#9781)
13564
13565 2011-10-20 Christoph Scholtes <cschol2112@googlemail.com>
13566
13567 * emulation/cua-base.el (cua-set-mark): Fix case of string.
13568
13569 2011-10-20 Chong Yidong <cyd@gnu.org>
13570
13571 * emulation/cua-base.el (cua-mode):
13572 * mail/footnote.el (footnote-mode):
13573 * mail/mailabbrev.el (mail-abbrevs-mode):
13574 * net/xesam.el (xesam-minor-mode):
13575 * progmodes/bug-reference.el (bug-reference-mode):
13576 * progmodes/cap-words.el (capitalized-words-mode):
13577 * progmodes/compile.el (compilation-minor-mode)
13578 (compilation-shell-minor-mode):
13579 * progmodes/gud.el (gud-tooltip-mode):
13580 * progmodes/hideif.el (hide-ifdef-mode):
13581 * progmodes/idlw-shell.el (idlwave-shell-electric-debug-mode):
13582 * progmodes/subword.el (subword-mode):
13583 * progmodes/vhdl-mode.el (vhdl-electric-mode, vhdl-stutter-mode):
13584 * progmodes/which-func.el (which-function-mode):
13585 * term/tvi970.el (tvi970-set-keypad-mode):
13586 * term/vt100.el (vt100-wide-mode):
13587 * textmodes/flyspell.el (flyspell-mode):
13588 * textmodes/ispell.el (ispell-minor-mode):
13589 * textmodes/nroff-mode.el (nroff-electric-mode):
13590 * textmodes/paragraphs.el (use-hard-newlines):
13591 * textmodes/refill.el (refill-mode):
13592 * textmodes/reftex.el (reftex-mode):
13593 * textmodes/rst.el (rst-minor-mode):
13594 * textmodes/sgml-mode.el (html-autoview-mode)
13595 (sgml-electric-tag-pair-mode):
13596 * textmodes/tex-mode.el (latex-electric-env-pair-mode):
13597 * vc/diff-mode.el (diff-auto-refine-mode, diff-minor-mode):
13598 * emulation/crisp.el (crisp-mode):
13599 * emacs-lisp/eldoc.el (eldoc-mode):
13600 * emacs-lisp/checkdoc.el (checkdoc-minor-mode): Doc fixes for new
13601 minor mode behavior.
13602
13603 2011-10-19 Juri Linkov <juri@jurta.org>
13604
13605 * descr-text.el (describe-char): Add #x2010 and #x2011 to
13606 the list of hard-coded chars with escape-glyph face.
13607
13608 2011-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
13609
13610 * vc/log-edit.el (log-edit-empty-buffer-p): Ignore empty headers.
13611
13612 2011-10-19 Michael Albinus <michael.albinus@gmx.de>
13613
13614 * net/tramp.el (tramp-connectable-p): Make a stronger check on a
13615 running process.
13616
13617 2011-10-19 Glenn Morris <rgm@gnu.org>
13618
13619 * vc/vc-bzr.el (vc-bzr-after-dir-status):
13620 Ignore ignored files. (Bug#9726)
13621
13622 2011-10-19 Chong Yidong <cyd@gnu.org>
13623
13624 Doc fix for minor modes, stating that an omitted argument enables
13625 the mode unconditionally when called from Lisp.
13626
13627 * abbrev.el (abbrev-mode):
13628 * allout.el (allout-mode):
13629 * autoinsert.el (auto-insert-mode):
13630 * autoarg.el (autoarg-mode, autoarg-kp-mode):
13631 * autorevert.el (auto-revert-mode, auto-revert-tail-mode)
13632 (global-auto-revert-mode):
13633 * battery.el (display-battery-mode):
13634 * composite.el (global-auto-composition-mode)
13635 (auto-composition-mode):
13636 * delsel.el (delete-selection-mode):
13637 * desktop.el (desktop-save-mode):
13638 * dired-x.el (dired-omit-mode):
13639 * dirtrack.el (dirtrack-mode):
13640 * doc-view.el (doc-view-minor-mode):
13641 * double.el (double-mode):
13642 * electric.el (electric-indent-mode, electric-pair-mode):
13643 * emacs-lock.el (emacs-lock-mode):
13644 * epa-hook.el (auto-encryption-mode):
13645 * follow.el (follow-mode):
13646 * font-core.el (font-lock-mode):
13647 * frame.el (auto-raise-mode, auto-lower-mode, blink-cursor-mode):
13648 * help.el (temp-buffer-resize-mode):
13649 * hilit-chg.el (highlight-changes-mode)
13650 (highlight-changes-visible-mode):
13651 * hi-lock.el (hi-lock-mode):
13652 * hl-line.el (hl-line-mode, global-hl-line-mode):
13653 * icomplete.el (icomplete-mode):
13654 * ido.el (ido-everywhere):
13655 * image-file.el (auto-image-file-mode):
13656 * image-mode.el (image-minor-mode):
13657 * iswitchb.el (iswitchb-mode):
13658 * jka-cmpr-hook.el (auto-compression-mode):
13659 * linum.el (linum-mode):
13660 * longlines.el (longlines-mode):
13661 * master.el (master-mode):
13662 * mb-depth.el (minibuffer-depth-indicate-mode):
13663 * menu-bar.el (menu-bar-mode):
13664 * minibuf-eldef.el (minibuffer-electric-default-mode):
13665 * mouse-sel.el (mouse-sel-mode):
13666 * msb.el (msb-mode):
13667 * mwheel.el (mouse-wheel-mode):
13668 * outline.el (outline-minor-mode):
13669 * paren.el (show-paren-mode):
13670 * recentf.el (recentf-mode):
13671 * reveal.el (reveal-mode, global-reveal-mode):
13672 * rfn-eshadow.el (file-name-shadow-mode):
13673 * ruler-mode.el (ruler-mode):
13674 * savehist.el (savehist-mode):
13675 * scroll-all.el (scroll-all-mode):
13676 * scroll-bar.el (scroll-bar-mode):
13677 * server.el (server-mode):
13678 * shell.el (shell-dirtrack-mode):
13679 * simple.el (auto-fill-mode, transient-mark-mode)
13680 (visual-line-mode, overwrite-mode, binary-overwrite-mode)
13681 (line-number-mode, column-number-mode, size-indication-mode)
13682 (auto-save-mode, normal-erase-is-backspace-mode, visible-mode):
13683 * strokes.el (strokes-mode):
13684 * time.el (display-time-mode):
13685 * t-mouse.el (gpm-mouse-mode):
13686 * tool-bar.el (tool-bar-mode):
13687 * tooltip.el (tooltip-mode):
13688 * type-break.el (type-break-mode-line-message-mode)
13689 (type-break-query-mode):
13690 * view.el (view-mode):
13691 * whitespace.el (whitespace-mode, whitespace-newline-mode)
13692 (global-whitespace-mode, global-whitespace-newline-mode):
13693 * xt-mouse.el (xterm-mouse-mode): Doc fix.
13694
13695 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
13696 Fix autogenerated docstring.
13697
13698 2011-10-19 Juri Linkov <juri@jurta.org>
13699
13700 * net/browse-url.el (browse-url-can-use-xdg-open): Support LXDE
13701 by checking environment variables "DESKTOP_SESSION" and
13702 "XDG_CURRENT_DESKTOP". (Bug#9779)
13703
13704 2011-10-19 Juri Linkov <juri@jurta.org>
13705
13706 * net/browse-url.el (browse-url-browser-function): Add "Chromium".
13707 (browse-url-chromium-program, browse-url-chromium-arguments):
13708 New defcustoms.
13709 (browse-url-default-browser): Check for `browse-url-chromium' and
13710 call `browse-url-chromium-program'.
13711 (browse-url-chromium): New command. (Bug#9779)
13712
13713 2011-10-18 Juanma Barranquero <lekktu@gmail.com>
13714
13715 * facemenu.el (list-colors-duplicates): On Windows, detect more
13716 duplicates by assuming that only colors matching "^System" are
13717 special "system colors". (Bug#9722)
13718
13719 2011-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
13720
13721 * vc/log-edit.el (log-edit): Add "Author:" header to encourage people
13722 to distinguish the author from the committer.
13723
13724 2011-10-18 Michael Albinus <michael.albinus@gmx.de>
13725
13726 * net/tramp.el (tramp-file-name-handler): Load Tramp packages silently.
13727
13728 2011-10-18 Jirka Kosek <jirka@kosek.cz> (tiny change)
13729
13730 * international/mule.el (sgml-html-meta-auto-coding-function):
13731 Add support for detecting encoding in HTML5 specified only as
13732 <meta charset="UTF-8">. Implementation just makes http-equiv and
13733 content-type parts from HTML4 encoding string optional. (Bug#9716)
13734
13735 2011-10-18 Glenn Morris <rgm@gnu.org>
13736
13737 * vc/vc.el (vc-initial-comment): Mark as obsolete. (Bug#9745)
13738
13739 2011-10-18 Chong Yidong <cyd@gnu.org>
13740
13741 * faces.el (cursor): Doc fix.
13742
13743 2011-10-17 Chong Yidong <cyd@gnu.org>
13744
13745 * font-lock.el (font-lock-maximum-size): Mark as obsolete.
13746
13747 2011-10-17 Ryan Barrett <emacs@ryanb.org> (tiny change)
13748
13749 * dirtrack.el (dirtrack): Support shell buffers with path
13750 prefixes, e.g. tramp-based remote shells. (Bug#9647)
13751
13752 2011-10-17 Teodor Zlatanov <tzz@lifelogs.com>
13753
13754 * json.el: Bump version to 1.3 and note change in History.
13755 (json-alist-p, json-plist-p): Rewrite to avoid recursion.
13756
13757 2011-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
13758
13759 * comint.el (comint-insert-input, comint-send-input)
13760 (comint-get-old-input-default, comint-backward-matching-input)
13761 (comint-next-prompt): Use nil instead of `input' for field property of
13762 past user input (bug#114).
13763
13764 * minibuffer.el (completion--replace): Inherit surrounding properties
13765 (bug#114).
13766 (minibuffer-complete-and-exit): Use it.
13767
13768 * comint.el (comint--table-subvert): Quote the all-completions output
13769 (bug#9160).
13770
13771 2011-10-17 Martin Rudalics <rudalics@gmx.at>
13772
13773 * ido.el (ido-default-buffer-method): Remove redundant :type entry.
13774
13775 * menu-bar.el (menu-bar-file-menu): Add entry for making new
13776 window on right of selected. (Bug#9350) Reword other window
13777 entries and separate them from frame entries.
13778
13779 2011-10-15 Glenn Morris <rgm@gnu.org>
13780
13781 * emacs-lisp/ert.el (ert--explain-equal-rec, ert-select-tests):
13782 Doc fixes.
13783
13784 2011-10-15 Chong Yidong <cyd@stupidchicken.com>
13785
13786 * net/network-stream.el (network-stream-open-starttls):
13787 Improve detection of failure due to lack of TLS support.
13788
13789 * mail/sendmail.el (sendmail-query-once): Tweak prompt message,
13790 putting the input text in front and in bold.
13791
13792 2011-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
13793
13794 * pcmpl-unix.el (pcomplete/ssh): SSH does allow ganging.
13795
13796 * mpc.el (mpc-songs-jump-to): Don't burp if the user clicks in an
13797 empty buffer.
13798
13799 * mouse.el (mouse-drag-mode-line-1): Modify the end-event we pushed on
13800 unread-command-events rather than pushing yet-another event.
13801
13802 2011-10-14 Eli Zaretskii <eliz@gnu.org>
13803
13804 * mail/sendmail.el (sendmail-query-once): Improve the wording of
13805 the explanation of the possible choices. Make the options passed
13806 to completing-read shorter.
13807
13808 2011-10-13 Agustín Martín Domingo <agustin.martin@hispalinux.es>
13809
13810 * textmodes/flyspell.el (flyspell-large-region): Make sure
13811 extended character mode is used if defined (Bug#1339).
13812
13813 2011-10-13 Eli Zaretskii <eliz@gnu.org>
13814
13815 * simple.el (what-cursor-position): Fix the display of the
13816 character info for LRE, LRO, RLE, and RLO characters by appending
13817 an invisible PDF.
13818
13819 2011-10-13 Stefan Monnier <monnier@iro.umontreal.ca>
13820
13821 * emacs-lisp/timer.el (with-timeout): Make sure we cancel the timer
13822 even in case of error; add debug spec; simplify data flow.
13823 (with-timeout-handler): Remove.
13824
13825 2011-10-12 Michael Albinus <michael.albinus@gmx.de>
13826
13827 Fix Bug#6019, Bug#9315.
13828
13829 * files.el (set-auto-mode): Call `file-name-sans-versions' for the
13830 complete `buffer-file-name', the local file name part could look
13831 remotely (for example on VMS).
13832
13833 * net/ange-ftp.el (ange-ftp-run-real-handler): Make it an alias of
13834 `tramp-run-real-handler'.
13835 (ange-ftp-fix-name-for-vms): Handle the case, where `name' is
13836 already quoted by '"'.
13837
13838 * net/tramp.el (tramp-rfn-eshadow-update-overlay): Ignore errors.
13839 Let `file-name-handler-alist' be nil, the local file name part
13840 could look remotely (for example on VMS).
13841
13842 2011-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
13843
13844 * textmodes/flyspell.el (flyspell-word): Move with-local-quit
13845 from here...
13846 (flyspell-post-command-hook): ...to here.
13847
13848 2011-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
13849
13850 * mail/sendmail.el (send-mail-function): Don't use sendmail-query-once
13851 if not needed.
13852 (sendmail-query-once): Remove OS dependencies. Make it a 3-way choice
13853 using completion. Protect against "slow" callers.
13854 Remove the "message hack".
13855
13856 2011-10-11 Juri Linkov <juri@jurta.org>
13857
13858 * isearch.el (isearch-lazy-highlight-word): New variable.
13859 (isearch-lazy-highlight-new-loop, isearch-lazy-highlight-search):
13860 Use it. (Bug#9727)
13861
13862 2011-10-11 Glenn Morris <rgm@gnu.org>
13863
13864 * progmodes/f90.el (f90-next-statement): Ignore preprocessor lines,
13865 like f90-previous-statement does.
13866
13867 2011-10-11 Thierry Volpiatto <thierry.volpiatto@gmail.com>
13868
13869 * eshell/eshell.el (eshell-command): History should be saved
13870 only in interactive use, to avoid error.
13871
13872 2011-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
13873
13874 * minibuffer.el (completion-file-name-table): Fix last change,
13875 i.e. ignore normal errors but not the other ones.
13876
13877 2011-10-10 Martin Rudalics <rudalics@gmx.at>
13878
13879 * window.el (special-display-buffer-names)
13880 (special-display-regexps): Remove some remnants of earlier
13881 changes from doc-strings.
13882 (quit-windows-on): New function.
13883
13884 * vc/vc.el (vc-revert, vc-rollback):
13885 * vc/vc-dispatcher.el (vc-finish-logentry): Call quit-windows-on
13886 instead of deleting windows. (Bug#4557) (Bug#5310) (Bug#5556)
13887 (Bug#6183) (Bug#7074) (Bug#7447)
13888
13889 2011-10-09 Martin Rudalics <rudalics@gmx.at>
13890
13891 * window.el (frame-auto-hide-function): Add version tag.
13892 (Bug#9699)
13893
13894 2011-10-09 Michael Albinus <michael.albinus@gmx.de>
13895
13896 * net/tramp.el (tramp-file-name-handler): Add 'debug to the error
13897 condition.
13898
13899 2011-10-09 Leo Liu <sdl.web@gmail.com>
13900
13901 * mail/smtpmail.el (smtpmail-send-data): Add a missing space.
13902 (Bug#9701)
13903
13904 2011-10-08 Glenn Morris <rgm@gnu.org>
13905
13906 * progmodes/f90.el (f90-calculate-indent): Give preprocessor lines
13907 before the first code statement zero indent. (Bug#9690)
13908
13909 2011-10-08 Chong Yidong <cyd@stupidchicken.com>
13910
13911 * simple.el (count-words-region): Always count in the region.
13912 Report the number of lines and characters too.
13913 (count-words): New command, which counts in the buffer if the
13914 region is inactive, as count-words-region used to.
13915 (count-words--message): New function. Handle plurals.
13916 (count-lines-region): Make it an alias for count-words-region.
13917
13918 * bindings.el (esc-map): Replace count-lines-region with
13919 count-words-region.
13920
13921 2011-10-08 Martin Rudalics <rudalics@gmx.at>
13922
13923 * window.el (window--delete): Delete dedicated frame
13924 unconditionally when argument KILL is non-nil. (Bug#9699)
13925 (switch-to-buffer): Fix doc-string typo.
13926
13927 2011-10-08 Thierry Volpiatto <thierry.volpiatto@gmail.com>
13928
13929 * eshell/eshell.el (eshell-command): Avoid using hooks.
13930
13931 2011-10-07 Chong Yidong <cyd@stupidchicken.com>
13932
13933 * bindings.el ([M-left],[M-right]): Bind to left-word and
13934 right-word respectively.
13935
13936 2011-10-07 Glenn Morris <rgm@gnu.org>
13937
13938 * cus-start.el (debug-on-quit): Fix custom type.
13939
13940 2011-10-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
13941
13942 * subr.el (define-key-after): Clarify that the function is not
13943 useful for non-menu keymaps.
13944
13945 * progmodes/gdb-mi.el (gdb): Fix typo in doc string.
13946
13947 2011-10-06 Thierry Volpiatto <thierry.volpiatto@gmail.com>
13948
13949 * eshell/eshell.el (eshell-command): Enable `eshell-mode' only
13950 in current minibuffer (Fix bug with recursive minibuffers).
13951
13952 2011-10-06 Chong Yidong <cyd@stupidchicken.com>
13953
13954 * progmodes/gdb-mi.el (gdb): Doc fix.
13955
13956 2011-10-05 Martin Rudalics <rudalics@gmx.at>
13957
13958 * window.el (frame-auto-hide-function): New option replacing
13959 frame-auto-delete. Suggested by Stefan Monnier.
13960 (window--delete): Call frame-auto-hide-function instead of
13961 investigating frame-auto-delete.
13962 (window-point-1, set-window-point-1): New functions.
13963 (window-in-direction, record-window-buffer, window-state-get-1)
13964 (display-buffer-record-window): Use window-point-1 instead of
13965 window-point.
13966 (set-window-buffer-start-and-point): Use set-window-point-1.
13967
13968 2011-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
13969
13970 * emacs-lisp/edebug.el: Heed checkdoc recommendations.
13971
13972 2011-10-05 Glenn Morris <rgm@gnu.org>
13973
13974 * progmodes/perl-mode.el (perl-electric-terminator): Doc fix.
13975 (perl-calculate-indent): Suppress scan errors. (Bug#2205)
13976
13977 2011-10-05 Leo Liu <sdl.web@gmail.com>
13978
13979 * subr.el (read-char-choice): Fix argument to buffer-live-p which
13980 works with buffer object.
13981
13982 2011-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
13983
13984 * mpc.el (mpc-tool-bar-map): Add labels.
13985
13986 2011-10-04 Glenn Morris <rgm@gnu.org>
13987
13988 * calendar/holidays.el (calendar-check-holidays): Doc fix.
13989
13990 2011-10-04 Martin Rudalics <rudalics@gmx.at>
13991
13992 * window.el (window--delete): New function.
13993 (frame-auto-delete): Resuscitate option.
13994 (bury-buffer, replace-buffer-in-windows)
13995 (quit-window): Rewrite using window--delete.
13996 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
13997 Pass display-buffer-mark-dedicated to window--display-buffer-2
13998 (Bug#9639).
13999
14000 2011-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
14001
14002 * pcmpl-unix.el (pcomplete/scp): Don't assume pcomplete-all-entries
14003 returns a list (bug#9554). Add remote file name completion.
14004 * comint.el (comint--table-subvert): Curry and get quote&unquote
14005 functions as arguments.
14006 (comint--complete-file-name-data): Adjust call accordingly.
14007 * pcomplete.el (pcomplete--table-subvert): Remove.
14008 (pcomplete-completions-at-point): Use comint--table-subvert instead.
14009
14010 * minibuffer.el (completion-table-case-fold): Use currying.
14011 (completion--styles-type, completion--cycling-threshold-type):
14012 New constants.
14013 (completion-styles, completion-category-overrides)
14014 (completion-cycle-threshold): Use them.
14015 * pcomplete.el (pcomplete-completions-at-point): Adjust call to
14016 completion-table-case-fold.
14017
14018 2011-10-03 Stephen Berman <stephen.berman@gmx.net>
14019
14020 * minibuffer.el (completion-category-overrides): Fix type of styles
14021 and add more user friendly tags (bug#9660).
14022
14023 2011-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
14024
14025 * international/mule-cmds.el: Fix abuses of apply-partially (bug#9661).
14026 (mule-input-method-string): New widget.
14027 (default-input-method, language-info-custom-alist): Use it.
14028
14029 2011-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
14030
14031 * pcomplete.el: Require comint.
14032 (pcomplete--common-suffix): Remove.
14033 (pcomplete--common-quoted-suffix): Use comint--common-suffix instead.
14034 (pcomplete--table-subvert): Sync with comint--table-subvert.
14035 (pcomplete--entries): Use comint-completion-file-name-table.
14036 * comint.el (comint-unquote-filename): Simplify.
14037 (comint-completion-file-name-table): New function (bug#9616).
14038 (comint--complete-file-name-data): Use it.
14039
14040 * pcmpl-gnu.el (pcmpl-gnu-with-file-buffer): New macro (bug#9643).
14041 (pcmpl-gnu-tar-buffer): Remove.
14042 (pcmpl-gnu-with-file-buffer): Use it to avoid leaving the tar's buffer
14043 around. Make sure pcomplete-suffix-list is only changed temporarily.
14044 Don't look inside the tar's file if it's too large.
14045
14046 2011-10-01 Chong Yidong <cyd@stupidchicken.com>
14047
14048 * cus-edit.el (custom-mode-map):
14049 * epa.el (epa-key-list-mode-map):
14050 * man.el (Man-mode-map):
14051 * startup.el (splash-screen-keymap):
14052 * simple.el (special-mode-map): Use scroll-up-command and
14053 scroll-down-command.
14054
14055 * progmodes/idlw-help.el (idlwave-help-mode-map):
14056 * progmodes/ebrowse.el (ebrowse-electric-position-mode-map):
14057 * net/newst-plainview.el (newsticker-mode-map):
14058 * emulation/ws-mode.el (wordstar-mode-map):
14059 * emulation/vi.el (vi-com-map):
14060 * calc/calc-graph.el (calc-graph-show-dumb):
14061 * term/sun.el (terminal-init-sun):
14062 * term/ns-win.el (global-map):
14063 * progmodes/grep.el (grep-mode-map):
14064 * progmodes/ebrowse.el (ebrowse-electric-list-mode-map):
14065 * mail/rmail.el (rmail-mode-map):
14066 * progmodes/cpp.el (cpp-edit-mode-map): Likewise.
14067
14068 * custom.el (custom-safe-themes, load-theme): Treat value of t for
14069 custom-safe-themes as special.
14070
14071 2011-10-01 Julien Danjou <julien@danjou.info>
14072
14073 * notifications.el (notifications-notify): Fix docstring.
14074
14075 2011-10-01 Per Starbäck <per@starback.se>
14076
14077 * pcmpl-gnu.el (pcomplete/tar): Fix tar-header-name call. (Bug#9643)
14078
14079 2011-09-30 Martin Rudalics <rudalics@gmx.at>
14080
14081 * startup.el (command-line-1): Fix last fix by inserting
14082 initial-scratch-message into *scratch* before displaying it.
14083 (Bug#9605) and (Bug#9636)
14084
14085 2011-09-29 Eli Zaretskii <eliz@gnu.org>
14086
14087 * simple.el (line-move): If auto-hscroll-mode is disabled and the
14088 window is hscrolled, move by logical lines. (Bug#9607)
14089 (line-move-visual): Update the doc string to the above effect.
14090
14091 2011-09-29 Martin Rudalics <rudalics@gmx.at>
14092
14093 * window.el (display-buffer-record-window): When WINDOW is the
14094 selected window use `point' instead of `window-point'. (Bug#9626)
14095
14096 * startup.el (command-line-1): Use insert-before-markers when
14097 inserting initial-scratch-message. (Bug#9605)
14098
14099 * help.el (help-window): Remove variable.
14100
14101 2011-09-29 Glenn Morris <rgm@gnu.org>
14102
14103 * pcmpl-cvs.el (pcomplete/cvs): Add "status" handler.
14104
14105 2011-09-29 Juanma Barranquero <lekktu@gmail.com>
14106
14107 * descr-text.el (describe-char-categories): Accept category
14108 descriptions more than one line long.
14109
14110 2011-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
14111
14112 * simple.el (delete-trailing-whitespace): Fix last change.
14113
14114 * progmodes/perl-mode.el (perl-syntax-propertize-function):
14115 Don't confuse "y => 3" as the beginning of a `y' operation.
14116
14117 * emacs-lisp/debug.el (debug-convert-byte-code): Don't assume the
14118 object has more than 4 slots (bug#9613).
14119
14120 2011-09-28 Juanma Barranquero <lekktu@gmail.com>
14121
14122 * subr.el (with-output-to-temp-buffer):
14123 * net/quickurl.el (quickurl, quickurl-browse-url):
14124 Fix typos in docstrings.
14125
14126 2011-09-27 Eli Zaretskii <eliz@gnu.org>
14127
14128 * minibuffer.el (completion-styles)
14129 (completion-category-overrides): Cross reference each other in doc
14130 strings.
14131
14132 2011-09-27 Glenn Morris <rgm@gnu.org>
14133
14134 * pcmpl-cvs.el (pcmpl-cvs-entries): Update for Emacs 22.1 changes
14135 to split-string. (Bug#9606)
14136
14137 2011-09-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
14138
14139 * mail/smtpmail.el (smtpmail-via-smtp): Fix STARTTLS detection
14140 (bug#9615).
14141
14142 2011-09-27 Chong Yidong <cyd@stupidchicken.com>
14143
14144 * emacs-lisp/package.el (list-packages): Fix echo area message.
14145
14146 2011-09-27 Leo Liu <sdl.web@gmail.com>
14147
14148 * ido.el (ido-read-internal): Accept cons cell HIST arg.
14149
14150 2011-09-25 Michael Albinus <michael.albinus@gmx.de>
14151
14152 * net/dbus.el (dbus-unregister-object): Don't release services for
14153 registered signals. (Bug#9581)
14154
14155 2011-09-25 Teodor Zlatanov <tzz@lifelogs.com>
14156
14157 * progmodes/cfengine.el (cfengine-auto-mode): Add convenience
14158 function that picks between cfengine 2 and 3 support
14159 automatically. Update docs accordingly.
14160
14161 2011-09-22 Kenichi Handa <handa@m17n.org>
14162
14163 * language/ind-util.el (indian-tml-base-table): Add TAMIL DIGIT
14164 ZERO.
14165 (indian-itrans-v5-table-for-tamil): New variable.
14166 (indian-tml-itrans-v5-hash): Use the above variable (Bug#9336).
14167
14168 2011-09-22 Ken Manheimer <ken.manheimer@gmail.com>
14169
14170 * allout.el (allout-this-command-hid-stuff): Buffer-local variable
14171 that's true if the current command involved collapsing of text.
14172 It's reset to false at the beginning of the next command.
14173 (allout-post-command-business): Move the cursor to the beginning
14174 of entry if the cursor is hidden and collapsing activity just
14175 happened.
14176
14177 2011-09-24 Chong Yidong <cyd@stupidchicken.com>
14178
14179 * mouse.el (mouse-drag-track): Set scroll-margin to 0 while
14180 tracking (Bug#9541).
14181
14182 2011-09-24 Ulf Jasper <ulf.jasper@web.de>
14183
14184 * net/newst-reader.el (newsticker-html-renderer)
14185 (newsticker-show-news): Automatically load html rendering package
14186 if newsticker-html-renderer is set. Fixes "Warning: defvar ignored
14187 because w3m-fill-column is let-bound" and the error "Symbol's value
14188 as variable is void: w3m-fill-column".
14189
14190 2011-09-24 Michael Albinus <michael.albinus@gmx.de>
14191
14192 * net/dbus.el (dbus-unregister-object): Remove match rule of signals.
14193 Release services only if they are defined. (Bug#9581)
14194
14195 2011-09-23 Richard Stallman <rms@gnu.org>
14196
14197 * textmodes/paragraphs.el (forward-sentence): For backwards case,
14198 distinguish start of paragraph from start of its text.
14199
14200 * mail/emacsbug.el (report-emacs-bug-query-existing-bugs): Autoload.
14201
14202 * mail/rmail.el (rmail-view-buffer-kill-buffer-hook): New function.
14203 (rmail-generate-viewer-buffer): Put that hook on view buffer.
14204 (rmail-mode-kill-buffer-hook): Override that hook, to kill view buffer.
14205
14206 2011-09-23 Andreas Schwab <schwab@linux-m68k.org>
14207
14208 * international/mule-diag.el (mule-diag): Insert a newline after
14209 each fontset description.
14210
14211 2011-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
14212
14213 * simple.el (delete-trailing-whitespace):
14214 Document last change; simplify.
14215
14216 2011-09-23 Peter J. Weisberg <pj@irregularexpressions.net>
14217
14218 * simple.el (delete-trailing-whitespace): Also delete
14219 extra newlines at the end of the buffer.
14220
14221 * textmodes/picture.el: Make motion commands obey shift-select-mode.
14222 (picture-newline): Use forward-line so as to ignore fields.
14223
14224 2011-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
14225
14226 * subr.el (with-wrapper-hook): Fix edebug spec.
14227
14228 2011-09-23 Lars Magne Ingebrigtsen <larsi@gnus.org>
14229
14230 * simple.el (kill-line): Note effect of `show-trailing-whitespace'
14231 (bug#4538).
14232
14233 2011-09-23 Michael Albinus <michael.albinus@gmx.de>
14234
14235 * net/tramp-sh.el (tramp-sh-handle-file-name-all-completions):
14236 Fix nasty bug using wrong cached values.
14237
14238 2011-09-23 Alan Mackenzie <acm@muc.de>
14239
14240 * progmodes/cc-defs.el (c-version): Increase to 5.31.9.
14241
14242 2011-09-23 Chong Yidong <cyd@stupidchicken.com>
14243
14244 * window.el (pop-to-buffer): Ensure right window is selected if we
14245 chose another frame.
14246
14247 2011-09-22 Eli Zaretskii <eliz@gnu.org>
14248
14249 * simple.el (what-cursor-position): Use get-char-property-change
14250 and next-single-char-property-change, to be able to show display
14251 properties that come from overlays as well as text properties.
14252
14253 2011-09-22 Chong Yidong <cyd@stupidchicken.com>
14254
14255 * window.el (pop-to-buffer-same-window): New (reinstated) fun.
14256
14257 * cmuscheme.el (run-scheme, switch-to-scheme):
14258 * cus-edit.el (customize-group, custom-buffer-create)
14259 (customize-browse):
14260 * info.el (info):
14261 * shell.el (shell):
14262 * mail/sendmail.el (mail):
14263 * progmodes/inf-lisp.el (inferior-lisp): Use it (Bug#9532).
14264
14265 2011-09-22 Richard Stallman <rms@gnu.org>
14266
14267 * textmodes/paragraphs.el (forward-sentence): When setting PAR-BEG,
14268 move back only to line beg, don't move back over blank lines.
14269
14270 2011-09-22 Michael Albinus <michael.albinus@gmx.de>
14271
14272 * files.el (copy-directory): Set directory attributes only in case
14273 they could be retrieved from the source directory. (Bug#9565)
14274
14275 2011-09-22 Dima Kogan <dkogan@secretsauce.net> (tiny change)
14276
14277 * progmodes/hideshow.el (hs-looking-at-block-start-p)
14278 (hs-find-block-beginning, hs-hide-level-recursive):
14279 Ignore strings as well as comments. (Bug#9502)
14280
14281 2011-09-22 Andrew Schein <andrew@andrewschein.com> (tiny change)
14282
14283 * progmodes/sql.el (sql-comint-postgres):
14284 Convert port number to a string. (Bug#9566)
14285
14286 2011-09-22 Martin Rudalics <rudalics@gmx.at>
14287
14288 * window.el (quit-window): Undedicate window when switching to
14289 previous buffer. Reported by Thierry Volpiatto
14290 <thierry.volpiatto@gmail.com>.
14291 (special-display-popup-frame): When popping up a new frame reset
14292 its previous buffers to nil. Simplify code.
14293
14294 2011-09-21 Michael Albinus <michael.albinus@gmx.de>
14295
14296 * net/tramp.el (tramp-handle-shell-command): Set process sentinel
14297 and process filter, as done also in `shell-command'.
14298
14299 2011-09-21 Martin Rudalics <rudalics@gmx.at>
14300
14301 * window.el (set-window-buffer-start-and-point):
14302 Call set-window-start with NOFORCE argument t.
14303 Suggested by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
14304 (quit-window): Reword doc-string. Handle new format of
14305 quit-restore parameter. Don't delete window if it has a
14306 previous buffer we can show instead of the present one.
14307 (display-buffer-record-window): Rewrite using a new format for
14308 the quit-restore window parameter
14309 (special-display-popup-frame, display-buffer-same-window)
14310 (display-buffer-reuse-window, display-buffer-pop-up-frame)
14311 (display-buffer-pop-up-window, display-buffer-use-some-window):
14312 Adapt symbol passed to display-buffer-record-window.
14313 * help.el (help-window-setup): Handle new format of quit-restore
14314 parameter.
14315
14316 2011-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
14317
14318 * faces.el (face-list): Fix docstring (bug#9564).
14319
14320 * window.el (display-buffer--action-function-custom-type):
14321 Don't include internal functions in the Custom interface.
14322
14323 2011-09-20 Juri Linkov <juri@jurta.org>
14324
14325 * info.el (Info-history-skip-intermediate-nodes): New defcustom.
14326 (Info-forward-node, Info-backward-node, Info-next-preorder)
14327 (Info-last-preorder): Use it. (Bug#9528)
14328
14329 2011-09-20 Juri Linkov <juri@jurta.org>
14330
14331 * info.el (Info-last-preorder): Visit last menu item only when
14332 `Info-scroll-prefer-subnodes' is non-nil (third test-case of bug#9528).
14333
14334 2011-09-20 Julien Danjou <julien@danjou.info>
14335
14336 * password-cache.el (password-cache-remove): Remove entries even if the
14337 value is nil, so that password with a nil value (negative caching) is
14338 possible to invalidate.
14339
14340 2011-09-20 Lawrence Mitchell <wence@gmx.li>
14341
14342 * progmodes/f90.el (f90-break-line): If breaking inside comment delete
14343 all whitespace around breakpoint. (Bug#9553)
14344 (f90-find-breakpoint): Only break at whitespace inside a comment.
14345
14346 2011-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
14347
14348 * minibuffer.el (completion-file-name-table): Keep track of errors.
14349 (completion-table-with-predicate): Handle the case where pred1 is nil.
14350 * pcomplete.el (pcomplete-completions-at-point): Simplify.
14351
14352 2011-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
14353
14354 * emacs-lisp/debug.el (debugger-args): Give it a docstring.
14355 (debugger-return-value): Signal an error if the debugging context does
14356 not await any return value.
14357
14358 * ps-mule.el (ps-mule-plot-string): Don't inf-loop (bug#5108).
14359 * image-mode.el (image-toggle-display-text)
14360 (image-toggle-display-image): Stay away from evil `intangible'.
14361
14362 2011-09-19 Leo Liu <sdl.web@gmail.com>
14363
14364 * replace.el (occur-revert-arguments): Make it permanent-local.
14365 (occur-mode): Don't call font-lock-defontify.
14366
14367 2011-09-19 Chong Yidong <cyd@stupidchicken.com>
14368
14369 * net/ldap.el (ldap-search-internal): Don't push empty search
14370 result (Bug#9508).
14371
14372 2011-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
14373
14374 * whitespace.el (whitespace-newline-mode): Disable it right (bug#9550).
14375
14376 2011-09-19 Michael Albinus <michael.albinus@gmx.de>
14377
14378 * net/tramp-sh.el (tramp-inline-compress-commands): Add "xz".
14379 Suggested by Liam Stitt <stittl@cuug.ab.ca>.
14380
14381 2011-09-18 Juri Linkov <juri@jurta.org>
14382
14383 * buff-menu.el (Buffer-menu-mode-map):
14384 * dired.el (dired-mode-map):
14385 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map)
14386 (lisp-interaction-mode-map):
14387 * emacs-lisp/package.el (package-menu-mode-map):
14388 * epa.el (epa-key-list-mode-map):
14389 * menu-bar.el (menu-bar-showhide-tool-bar-menu)
14390 (menu-bar-options-menu):
14391 * outline.el (outline-mode-menu-bar-map):
14392 * vc/vc-bzr.el (vc-bzr-shelve-menu-map, vc-bzr-extra-menu-map):
14393 * vc/vc-dir.el (vc-dir-menu-map):
14394 * vc/vc-git.el (vc-git-stash-menu-map, vc-git-extra-menu-map):
14395 Capitalize non-function content words in menu item strings.
14396
14397 * dired.el (dired-mode-map): Add menu item for
14398 `image-dired-dired-toggle-marked-thumbs'.
14399
14400 2011-09-18 Juri Linkov <juri@jurta.org>
14401
14402 * isearch.el (isearch-edit-string): Bind `isearch-new-case-fold'
14403 to `isearch-case-fold-search' and restore its original value
14404 after the `isearch-mode' call.
14405
14406 2011-09-18 Juri Linkov <juri@jurta.org>
14407
14408 * progmodes/grep.el (grep-process-setup): Don't check code for 1
14409 because `zgrep' returns 1 for successful matches (bug#9226).
14410
14411 2011-09-18 Juri Linkov <juri@jurta.org>
14412
14413 * info.el (Info-extract-menu-node-name): Check the second match
14414 for empty string (second test-case of bug#9528).
14415 (Info-last-preorder): Let-bind `Info-history' to nil to not add
14416 intermediate nodes to the history (first test-case of bug#9528).
14417
14418 2011-09-18 Juri Linkov <juri@jurta.org>
14419
14420 * info.el (Info-mode-syntax-table): New variable.
14421 (Info-mode): Set `:syntax-table' to `Info-mode-syntax-table' (bug#3312).
14422
14423 2011-09-18 Juri Linkov <juri@jurta.org>
14424
14425 * info.el (Info-file-supports-index-cookies):
14426 Increment line-beginning-position's arg from 3 to 4 because makeinfo
14427 outputs one more line for long file names (bug#4142).
14428
14429 2011-09-18 Chong Yidong <cyd@stupidchicken.com>
14430
14431 * newcomment.el (comment-normalize-vars): If prompting for
14432 comment-start, set comment-start-skip too (Bug#8424).
14433
14434 2011-09-18 Johan Bockgård <bojohan@gnu.org>
14435
14436 * icomplete.el: Fix previous fix of Bug#5849.
14437 (icomplete-mode): Don't set completion-show-inline-help.
14438 (icomplete-minibuffer-setup): Set completion-show-inline-help
14439 locally during icompletion.
14440
14441 2011-09-18 Chong Yidong <cyd@stupidchicken.com>
14442
14443 * woman.el (woman2-process-escapes): Don't delete unrecognized
14444 escapes (Bug#7843).
14445
14446 * files.el (inhibit-first-line-modes-regexps): Add image files.
14447 (hack-local-variables-prop-line): Return nil for malformed
14448 prop-lines (Bug#9044).
14449
14450 2011-09-18 Michael Albinus <michael.albinus@gmx.de>
14451
14452 * net/tramp.el (top): Don't require 'shell.
14453 (tramp-methods): Fix docstring.
14454 (tramp-get-remote-tmpdir): New defun, moved from tramp-sh.el.
14455 Return complete remote file name. Handle "smb" case.
14456 Use `tramp-tmpdir', if defined for the respective method.
14457 (tramp-make-tramp-temp-file): Adapt call of `tramp-get-remote-tmpdir'.
14458
14459 * net/tramp-compat.el (top): Require 'shell.
14460
14461 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band)
14462 (tramp-maybe-open-connection): Use `tramp-file-name-real-host' for
14463 `tramp-current-host'.
14464 (tramp-get-remote-tmpdir): Remove.
14465
14466 * net/tramp-smb.el (tramp-methods): Add `tramp-remote-shell' and
14467 `tramp-tmpdir' entries.
14468 (tramp-smb-errors): Add "NT_STATUS_IMAGE_ALREADY_LOADED".
14469 (tramp-smb-handle-file-attributes): Ignore errors.
14470 (tramp-smb-wait-for-output): Check also for process end.
14471
14472 2011-09-18 Lars Magne Ingebrigtsen <larsi@gnus.org>
14473
14474 * mail/smtpmail.el (smtpmail-via-smtp): Ignore errors that arise
14475 when sending QUIT (bug#9312).
14476
14477 2011-09-17 Chong Yidong <cyd@stupidchicken.com>
14478
14479 * replace.el (occur-mode-map): Rebind occur-edit-mode to "e" (Bug#8463).
14480 (occur-edit-mode-map): Bind C-c C-c to occur-cease-edit and C-o to
14481 occur-mode-display-occurrence.
14482 (occur-edit-mode): Add usage message.
14483 (occur-cease-edit): New command.
14484 (occur-after-change-function): Use text properties to find the
14485 position of the prefix text.
14486 (occur-engine): Set stickiness of prefix text properties.
14487
14488 2011-09-17 Glenn Morris <rgm@gnu.org>
14489
14490 * progmodes/etags.el (complete-tag):
14491 Fix call to completion-in-region. (Bug#9526)
14492
14493 2011-09-17 Juri Linkov <juri@jurta.org>
14494
14495 * textmodes/ispell.el (ispell-word): Add to the error message
14496 the word, ispell program name and current dictionary (bug#9121).
14497 (ispell-tex-arg-end): Capitalize "error" in the error message.
14498
14499 2011-09-17 Andreas Schwab <schwab@linux-m68k.org>
14500
14501 * emacs-lisp/bytecomp.el (byte-compile-lapcode): Fix overflow
14502 check. (Bug#4251)
14503
14504 2011-09-17 Juri Linkov <juri@jurta.org>
14505
14506 * window.el (window-safe-min-height, window-safe-min-width):
14507 Fix typos (followup to bug#9522).
14508
14509 2011-09-17 Sven Joachim <svenjoac@gmx.de>
14510
14511 * window.el (window-min-width, window-state-put): Fix typos (bug#9522).
14512
14513 2011-09-16 Eli Zaretskii <eliz@gnu.org>
14514
14515 * simple.el (line-move): If goal-column is set, move by logical
14516 lines, not by display lines. (Bug#971)
14517 (next-line, previous-line, goal-column, line-move-visual): Doc fix
14518 to reflect the above change.
14519
14520 2011-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
14521
14522 * image.el (imagemagick-register-types): Use regexp-opt.
14523
14524 2011-09-15 Chong Yidong <cyd@stupidchicken.com>
14525
14526 * window.el (display-buffer-base-action): Rename from
14527 display-buffer-default-action. Make default value empty.
14528 (display-buffer-overriding-action): Convert to defvar.
14529 (display-buffer-fallback-action): New var.
14530
14531 2011-09-15 Chong Yidong <cyd@stupidchicken.com>
14532
14533 * emacs-lisp/package.el (package-alist): Fix risky-local-variable
14534 declaration.
14535 (package--add-to-archive-contents): If there is a duplicate entry
14536 with an older version, remove it.
14537 (package-menu-mark-delete, package-menu-mark-install)
14538 (package-menu-mark-unmark): Make unused args optional.
14539 (package-menu-mark-obsolete-for-deletion):
14540 Use package-menu-get-status instead of a regexp search.
14541 (package-menu-get-status): Use tabulated-list-entry.
14542 (package-menu-mark-upgrades): New command.
14543 (package-menu-mode-map): Bind it to U. Add it to menu bar.
14544 (package-menu-execute): Do installation before deletion.
14545 (package-menu-refresh, package-menu-execute): Use derived-mode-p
14546 instead of checking major-mode.
14547 (package-menu--find-upgrades): New function.
14548
14549 2011-09-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
14550
14551 * mail/smtpmail.el (smtpmail-send-command): Don't include AUTH
14552 passwords in the log buffer.
14553 (smtpmail-process-filter): Update the process marker so that the
14554 "broken by peer" status message is inserted in the right place.
14555
14556 2011-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
14557
14558 * textmodes/bibtex.el (bibtex-complete-string-cleanup)
14559 (bibtex-complete-crossref-cleanup): Adjust to accommodate needs of
14560 bibtex-completion-at-point-function.
14561 (bibtex-completion-at-point-function): Use them.
14562
14563 * newcomment.el (comment-add, comment-valid-prefix-p): Docfix.
14564
14565 * mpc.el (mpc-constraints-tag-lookup): New function.
14566 (mpc-constraints-restore): Use it to make jumping to "album=Foo" apply
14567 also to browser "album|playlist".
14568
14569 2011-09-14 Juri Linkov <juri@jurta.org>
14570
14571 * isearch.el (isearch-fail-pos): Add new arg `msg'. Doc fix.
14572 (isearch-edit-string): Use length of `isearch-string' when
14573 `isearch-fail-pos' returns nil.
14574 (isearch-message): Remove duplicate code and call
14575 `isearch-fail-pos' with arg `t'.
14576
14577 2011-09-14 Chong Yidong <cyd@stupidchicken.com>
14578
14579 * replace.el (occur-mode-goto-occurrence): Don't force using other
14580 window (Bug#9499).
14581
14582 * dired-aux.el (dired-do-chmod): Don't provide initial input.
14583
14584 2011-09-14 Martin Rudalics <rudalics@gmx.at>
14585
14586 * window.el (display-buffer-window): Remove.
14587 (display-buffer-record-window): Use help-setup window parameter
14588 instead of variable display-buffer-window.
14589 (display-buffer-function, special-display-buffer-names)
14590 (special-display-function): Mention help-setup parameter instead
14591 of display-buffer-window in doc-string.
14592 * help.el (help-window-setup): New argument help-window.
14593 Use help-window-setup parameter instead of display-buffer-window.
14594 Reword some messages.
14595 (with-help-window): Pass window used for displaying the buffer
14596 to help-window-setup. Don't set display-buffer-window.
14597
14598 2011-09-13 Glenn Morris <rgm@gnu.org>
14599
14600 * emacs-lisp/debug.el (debugger-make-xrefs):
14601 Preserve point. (Bug#9462)
14602
14603 2011-09-13 Chong Yidong <cyd@stupidchicken.com>
14604
14605 * window.el (window-deletable-p): Use next-frame.
14606
14607 2011-09-13 Martin Rudalics <rudalics@gmx.at>
14608
14609 * window.el (window-auto-delete): Remove.
14610 (window-deletable-p): Remove argument FORCE. Don't deal with
14611 dedication and previous buffers.
14612 (switch-to-prev-buffer): Don't delete window.
14613 (delete-windows-on): Delete a window's frame if and only if the
14614 window is dedicated.
14615 (replace-buffer-in-windows): Delete buffer's window or frame if
14616 and only if window is dedicated.
14617 (quit-window): Handle quit-restore as before last change.
14618 (bury-buffer): Delete window only if window-deletable-p returns t.
14619
14620 2011-09-13 Chong Yidong <cyd@stupidchicken.com>
14621
14622 * window.el (window-deletable-p): Never delete the last frame on a
14623 given terminal.
14624
14625 2011-09-13 Glenn Morris <rgm@gnu.org>
14626
14627 * help.el (describe-key-briefly): Copy previous standard-output change.
14628
14629 2011-09-13 PJ Weisberg <pj@irregularexpressions.net>
14630
14631 * help.el (where-is): Respect non-standard standard-output. (Bug#9030)
14632
14633 2011-09-13 Glenn Morris <rgm@gnu.org>
14634
14635 * emacs-lisp/lisp-mode.el (lisp-indent-function):
14636 * progmodes/scheme.el (scheme-indent-function): Doc fixes.
14637
14638 2011-09-12 Chong Yidong <cyd@stupidchicken.com>
14639
14640 * dired-aux.el (dired-mark-read-string): Don't return default
14641 value on empty input (Bug#9361).
14642 (dired-do-chxxx): Treat empty input for "touch" as no -t option.
14643 Omit initial minibuffer contents.
14644 (dired-do-chmod): Signal an error on empty input.
14645 (dired-mark-read-string): Don't return default on empty input.
14646
14647 * files.el (file-modes-symbolic-to-number): Doc fix.
14648
14649 2011-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
14650
14651 * international/mule-cmds.el (ucs-completions): Remove.
14652 (read-char-by-name): Use complete-with-action instead; add metadata.
14653
14654 2011-09-11 Chong Yidong <cyd@stupidchicken.com>
14655
14656 * window.el (display-buffer--action-function-custom-type)
14657 (display-buffer--action-custom-type): New vars.
14658 (display-buffer-alist, display-buffer-default-action)
14659 (display-buffer-overriding-action): Add defcustom types.
14660
14661 * frame.el (delete-other-frames): Doc fix (Bug#276).
14662
14663 2011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
14664
14665 * play/doctor.el (make-doctor-variables): Define `doctor-sent'.
14666
14667 2011-09-11 Chong Yidong <cyd@stupidchicken.com>
14668
14669 Change modes that used same-window-* vars to use switch-to-buffer.
14670
14671 * progmodes/gdb-mi.el (gdb-restore-windows, gdb-setup-windows):
14672 Use switch-to-buffer.
14673
14674 * cus-edit.el (customize-group, custom-buffer-create)
14675 (customize-browse, custom-buffer-create-other-window):
14676 Use switch-to-buffer or switch-to-buffer-other-window.
14677
14678 * info.el (info, Info-find-node, Info-revert-find-node, Info-next)
14679 (Info-prev, Info-up, Info-speedbar-goto-node)
14680 (info-display-manual): Use switch-to-buffer.
14681 (Info-speedbar-goto-node): Use switch-to-buffer-other-frame.
14682
14683 * mail/sendmail.el (mail): Use switch-to-buffer.
14684 (mail-recover): Use switch-to-buffer-other-window.
14685
14686 * cmuscheme.el (run-scheme, switch-to-scheme):
14687 * ielm.el (ielm):
14688 * shell.el (shell):
14689 * net/rlogin.el (rlogin):
14690 * net/telnet.el (telnet, rsh):
14691 * progmodes/inf-lisp.el (inferior-lisp): Use switch-to-buffer.
14692
14693 2011-09-11 Andreas Schwab <schwab@linux-m68k.org>
14694
14695 * dired.el (dired-sort-toggle-or-edit): Revert last changes.
14696
14697 2011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
14698
14699 * dired.el (dired-sort-toggle-or-edit): -o doesn't exist on *BSD,
14700 so don't mention it (bug#9301).
14701 (dired-sort-toggle-or-edit): Clarify string further.
14702
14703 * faces.el (face-spec-set-match-display): Make `(type graphic)'
14704 match `x', `w32' and `ns', like the manual says (bug#9029).
14705
14706 * subr.el (eval-after-load): Doc string clarification (bug#9125).
14707 (process-kill-buffer-query-function): Mention the buffer name in
14708 the query.
14709
14710 * image-mode.el (image-next-line): The line parameter is mandatory
14711 (bug#9258).
14712
14713 * dired.el (dired-sort-toggle-or-edit): Mention -o and -g, too,
14714 which can be useful (bug#9301).
14715
14716 * textmodes/flyspell.el: Remove obsolete comment (bug#9368).
14717
14718 * subr.el (match-string): Mention that the current buffer should
14719 be the same as the search was done in (bug#9282).
14720
14721 * facemenu.el: Disable the remove-* commands if the mark isn't
14722 active (bug#9162).
14723
14724 2011-09-10 Chong Yidong <cyd@stupidchicken.com>
14725
14726 * buff-menu.el (Buffer-menu-switch-other-window): Use second arg
14727 of display-buffer.
14728 (Buffer-menu-2-window): Use switch-to-buffer-other-window.
14729
14730 * replace.el (occur-mode-goto-occurrence)
14731 (occur-mode-display-occurrence) Use second arg of pop-to-buffer
14732 and display-buffer.
14733
14734 * mail/reporter.el (reporter-submit-bug-report): Use second arg of
14735 display-buffer.
14736
14737 * mail/sendmail.el (sendmail-user-agent-compose): Don't bind the
14738 special-display and same-window variables.
14739 (mail-other-window): Use switch-to-buffer-other-window.
14740 (mail-other-frame): USe switch-to-buffer-other-frame.
14741
14742 * progmodes/gdb-mi.el (gdb-frame-gdb-buffer):
14743 Use display-buffer-other-frame.
14744 (gdb-display-gdb-buffer): Use pop-to-buffer.
14745
14746 * progmodes/gud.el (gud-goto-info): Use info-other-window.
14747
14748 * progmodes/python.el: Don't set same-window-buffer-names.
14749
14750 * textmodes/bibtex.el (bibtex-search-entry): Use switch-to-buffer.
14751
14752 * window.el (display-buffer-alist): Add *Python*.
14753
14754 2011-09-10 Chong Yidong <cyd@stupidchicken.com>
14755
14756 * window.el (display-buffer-alist): Add entry for buffers
14757 previously handled same-window-*.
14758 (display-buffer-alist, display-buffer-default-action)
14759 (display-buffer-overriding-action): Mark as risky.
14760 (display-buffer-alist): Document action function changes.
14761 (display-buffer--same-window-action)
14762 (display-buffer--other-frame-action): New variables.
14763 (switch-to-buffer, display-buffer-other-frame): Use them.
14764 (display-buffer): Rename reuse-frame entry to reusable-frames.
14765 (display-buffer-reuse-selected-window): Function deleted.
14766 (display-buffer-reuse-window): Handle reusable-frames alist entry.
14767 If it's omitted, check pop-up-frames/display-buffer-reuse-frames.
14768 (display-buffer-special): New function.
14769 (display-buffer--maybe-pop-up-frame-or-window): Rename from
14770 display-buffer-reuse-or-pop-window. Split off special-display
14771 part into display-buffer-special.
14772 (display-buffer-use-some-window): Don't perform any special
14773 pop-up-frames handling.
14774 (pop-to-buffer): Use window-normalize-buffer-to-switch-to.
14775 (display-buffer--maybe-same-window): Rename from
14776 display-buffer-maybe-same-window.
14777
14778 * info.el: Don't set same-window-regexps.
14779 (info-setup): New function.
14780 (info-other-window, info): Call it.
14781
14782 * cus-edit.el: Don't set same-window-regexps.
14783 (customize-group): New argument.
14784 (customize-group-other-window): Use it.
14785 (customize-face, customize-face-other-window): Likewise.
14786 (custom-buffer-create-other-window): Use pop-to-buffer directly.
14787
14788 * net/rlogin.el:
14789 * net/telnet.el:
14790 * progmodes/gud.el: Don't set same-window-regexps.
14791
14792 * cmuscheme.el:
14793 * ielm.el:
14794 * shell.el:
14795 * mail/sendmail.el:
14796 * progmodes/inf-lisp.el: Don't set same-window-buffer-names.
14797
14798 2011-09-10 Juri Linkov <juri@jurta.org>
14799
14800 * isearch.el (isearch-edit-string): Remove obsolete mention of
14801 `C-w' (`isearch-yank-word-or-char') from docstring.
14802 (isearch-query-replace): Fix typo in docstring (bug#9466).
14803
14804 2011-09-10 Juri Linkov <juri@jurta.org>
14805
14806 * paren.el (show-paren-function): Don't show escaped parens.
14807 Let-bind `unescaped' to `t' when paren is not escaped. (Bug#9461)
14808
14809 2011-09-10 Eli Zaretskii <eliz@gnu.org>
14810
14811 * mail/sendmail.el (mml-to-mime, mml-attach-file)
14812 (mm-default-file-encoding): Remove autoload forms, they are
14813 replaced with autoload cookies in mml.el and mm-encode.el.
14814 (mail-add-attachment): New command.
14815 (mail-mode-map): Add a menu-bar item for mail-add-attachment.
14816 (mail-mode): Mention mail-insert-file and mail-add-attachment in
14817 the doc string.
14818 (mml-to-mime, mml-attach-file, mm-default-file-encoding): Declare.
14819
14820 2011-09-10 Reuben Thomas <rrt@sc3d.org>
14821
14822 * simple.el (count-words-region): Use buffer if there's no region
14823 (bug#9429).
14824
14825 2011-09-09 Juri Linkov <juri@jurta.org>
14826
14827 * wdired.el (wdired-change-to-wdired-mode): Set buffer-local
14828 `isearch-filter-predicate' to `wdired-isearch-filter-read-only'.
14829 (wdired-isearch-filter-read-only): New function. (Bug#6362)
14830
14831 2011-09-09 Alan Mackenzie <acm@muc.de>
14832
14833 * progmodes/cc-mode.el (awk-mode): Prevent `define-derived-mode'
14834 spuriously generating `awk-mode-syntax-table'. (Bug #9448).
14835
14836 2011-09-09 Eli Zaretskii <eliz@gnu.org>
14837
14838 Fix for Savannah bug#9392.
14839 * simple.el (mail-encode-mml): New defvar.
14840
14841 * mail/rmail.el (mail-encode-mml): Add a defvar.
14842 (rmail-enable-mime-composing): Default to t.
14843 (rmail-forward): Use MIME method of forwarding only if both
14844 rmail-enable-mime-composing and rmail-enable-mime are non-nil.
14845 Set mail-encode-mml non-nil if the MIME method was used.
14846
14847 * mail/sendmail.el (mml-to-mime): Add autoload form.
14848 (mail-encode-mml): Add a defvar.
14849 (mail-mode): Make mail-encode-mml buffer-local and initialize it
14850 to nil.
14851 (mail-send): If mail-encode-mml is non-nil, run the outgoing
14852 message through mml-to-mime, and reset mail-encode-mml to nil.
14853
14854 2011-09-09 Glenn Morris <rgm@gnu.org>
14855
14856 * woman.el (woman-if-body): When processing an .el block,
14857 do not delete the next .el block as well. (Bug#9447)
14858 (woman-special-characters): Add oq, cq, and hy characters.
14859
14860 2011-09-08 Martin Rudalics <rudalics@gmx.at>
14861
14862 * window.el (window-deletable-p): Make sure window is live before
14863 invoking window-prev-buffers.
14864
14865 2011-09-08 Leo Liu <sdl.web@gmail.com>
14866
14867 * net/rcirc.el (rcirc-cmd-invite): New rcirc command. (Bug#9453)
14868
14869 2011-09-08 Juri Linkov <juri@jurta.org>
14870
14871 * progmodes/compile.el (compilation-environment): Make it
14872 a defcustom (bug#8340).
14873
14874 2011-09-08 Martin Rudalics <rudalics@gmx.at>
14875
14876 * window.el (frame-auto-delete): Rename to window-auto-delete.
14877 Make it control auto-deletion of windows and/or frames.
14878 (window-deletable-p): New argument FORCE. Rewrite conditions
14879 for deleting window/frame. (Bug#9419)
14880 (switch-to-prev-buffer, replace-buffer-in-windows, quit-window):
14881 Rewrite handling of case when window/frame can be deleted.
14882 (delete-windows-on): Call window-deletable-p with new FORCE
14883 argument t. (Bug#9456)
14884
14885 2011-09-07 Chong Yidong <cyd@stupidchicken.com>
14886
14887 * help-mode.el (help-mode): Restore autoload.
14888
14889 2011-09-07 Juri Linkov <juri@jurta.org>
14890
14891 * progmodes/compile.el (compilation-start): Let-bind `thisenv' to
14892 `compilation-environment'. Set buffer-local
14893 `compilation-environment' to `thisenv' later after (funcall mode).
14894 (Bug#8340)
14895
14896 * vc/vc-git.el (vc-git-grep): Remove --no-color. (Bug#9408)
14897 (vc-git-grep): Prepend "PAGER=" to `compilation-environment'
14898 instead of replacing its value. (Bug#8340)
14899
14900 2011-09-07 Juri Linkov <juri@jurta.org>
14901
14902 * progmodes/grep.el (grep-regexp-alist): Calculate column positions
14903 based on text properties put by `grep-filter' instead of matching
14904 escape sequences.
14905 (grep-mode): Set buffer-local `compilation-error-screen-columns'
14906 to the value of `grep-error-screen-columns' (bug#9438).
14907
14908 2011-09-07 Juri Linkov <juri@jurta.org>
14909
14910 * simple.el (next-error-highlight, next-error-highlight-no-select):
14911 Doc fix (bug#9432).
14912
14913 2011-09-07 OKAZAKI Tetsurou <okazaki.tetsurou@gmail.com> (tiny change)
14914
14915 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
14916 Check for null c-opt-block-decls-with-vars-key. (Bug#9443)
14917
14918 2011-09-07 Leo Liu <sdl.web@gmail.com>
14919
14920 * net/rcirc.el (rcirc-mode): Conditionally initialize
14921 rcirc-input-ring.
14922
14923 2011-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
14924
14925 * emacs-lisp/find-func.el (find-function-C-source): Only set
14926 find-function-C-source-directory after checking that we found a source
14927 file there (bug#9440).
14928
14929 2011-09-06 Alan Mackenzie <acm@muc.de>
14930
14931 * isearch.el (isearch-other-meta-char): Wherever a key list is
14932 unread, "unread" the prefix arg, too. This fixes bug #8901.
14933
14934 2011-09-05 Oleksandr Gavenko <gavenkoa@gmail.com> (tiny change)
14935
14936 * progmodes/grep.el (rgrep): Add "-type d" (bug#9414).
14937
14938 2011-09-05 Juri Linkov <juri@jurta.org>
14939
14940 * progmodes/grep.el (grep-process-setup): Fix comments (bug#8084).
14941
14942 2011-09-05 Juri Linkov <juri@jurta.org>
14943
14944 * progmodes/grep.el (grep-filter): Avoid incomplete processing by
14945 keeping point where processing of grep matches begins, and
14946 continue to delete remaining escape sequences from the same point.
14947 (grep-filter): Make leading zero optional in "0?1;31m" because
14948 git-grep emits "\033[1;31m" escape sequences unlike expected
14949 "\033[01;31m" as GNU Grep does (bug#9408).
14950 (grep-process-setup): Replace obsolete "ml=" with newer "sl=".
14951
14952 2011-09-05 Juri Linkov <juri@jurta.org>
14953
14954 * subr.el (y-or-n-p): Capitalize "yes".
14955
14956 2011-09-04 Michael Albinus <michael.albinus@gmx.de>
14957
14958 * net/tramp.el (top): Require 'shell. Use `tramp-unload-hook' but
14959 `tramp-cache-unload-hook' where appropriate.
14960 (tramp-methods): Rename `tramp-remote-sh' to
14961 `tramp-remote-shell'. Add `tramp-remote-shell-args'.
14962 (tramp-handle-shell-command): New defun, moved from tramp-sh.el.
14963
14964 * net/tramp-sh.el (top): Don't require 'shell.
14965 (tramp-methods): Add `tramp-remote-shell' and
14966 `tramp-remote-shell-args' entries.
14967 (tramp-sh-file-name-handler-alist): Use `tramp-handle-shell-command'.
14968 (tramp-sh-handle-shell-command): Remove.
14969 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
14970 Use `tramp-remote-shell'.
14971
14972 2011-09-03 Chong Yidong <cyd@stupidchicken.com>
14973
14974 * mail/sendmail.el (sendmail-query-once-function): Delete.
14975 (sendmail-query-once): Save directly to send-mail-function.
14976 Update message-send-mail-function too.
14977
14978 * mail/smtpmail.el (smtpmail-try-auth-methods): Clarify prompt.
14979
14980 2011-09-03 Christoph Scholtes <cschol2112@googlemail.com>
14981
14982 * progmodes/python.el (python-mode-map): Use correct function to
14983 start python interpreter from menu-bar (as reported by Geert
14984 Kloosterman).
14985 (inferior-python-mode-map): Fix typo.
14986 (python-shell-map): Remove.
14987
14988 2011-09-03 Deniz Dogan <deniz@dogan.se>
14989
14990 * net/rcirc.el (rcirc-print): Simplify code for
14991 rcirc-scroll-show-maximum-output. There is no need to walk
14992 through all windows to find the right one.
14993
14994 2011-09-03 Christoph Scholtes <cschol2112@googlemail.com>
14995
14996 * help.el (help-return-method): Doc fix.
14997
14998 2011-09-03 Martin Rudalics <rudalics@gmx.at>
14999
15000 * window.el (window-deletable-p): Don't return a non-nil value
15001 when there's a buffer that was shown in the window before.
15002 (Bug#9419)
15003 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
15004 Set window's previous buffers to nil.
15005
15006 2011-09-03 Eli Zaretskii <eliz@gnu.org>
15007
15008 * mail/rmailmm.el (rmail-mime-insert-tagline): Insert an extra
15009 newline before and after the tag line, so it doesn't interfere
15010 with determining the paragraph direction of bidirectional text.
15011
15012 2011-09-03 Leo Liu <sdl.web@gmail.com>
15013
15014 * files.el (find-file-not-true-dirname-list): Remove. (Bug#9422)
15015
15016 2011-09-02 Chong Yidong <cyd@stupidchicken.com>
15017
15018 * window.el (pop-to-buffer-1, pop-to-buffer-same-window): Delete.
15019 (pop-to-buffer): Change interactive spec. Pass second argument
15020 directly to display-buffer.
15021 (display-buffer): Fix interactive spec. Use functionp to
15022 distinguish between a function and a list of functions.
15023
15024 * abbrev.el (edit-abbrevs):
15025 * arc-mode.el (archive-extract):
15026 * autoinsert.el (auto-insert):
15027 * bookmark.el (bookmark-bmenu-list):
15028 * files.el (find-file):
15029 * view.el (view-buffer):
15030 * progmodes/compile.el (compilation-goto-locus):
15031 * textmodes/bibtex.el (bibtex-initialize): Use switch-to-buffer.
15032
15033 2011-09-02 Chong Yidong <cyd@stupidchicken.com>
15034
15035 * window.el (display-buffer-alist): Doc fix.
15036 (display-buffer): Add docstring. Don't treat
15037 display-buffer-default specially.
15038 (display-buffer-reuse-selected-window)
15039 (display-buffer-same-window, display-buffer-maybe-same-window)
15040 (display-buffer-reuse-window, display-buffer-pop-up-frame)
15041 (display-buffer-pop-up-window)
15042 (display-buffer-reuse-or-pop-window)
15043 (display-buffer-use-some-window): New functions.
15044 (display-buffer-default-action): Use them.
15045 (display-buffer-default): Delete.
15046 (pop-to-buffer-1): Fix choice of actions.
15047
15048 2011-09-02 Stefan Monnier <monnier@iro.umontreal.ca>
15049
15050 * minibuffer.el (completion--insert-strings): Don't get confused by
15051 completion entries that end with an LF char.
15052
15053 2011-09-01 Eli Zaretskii <eliz@gnu.org>
15054
15055 * window.el (frame-auto-delete, window-deletable-p): Doc fix.
15056
15057 2011-09-01 Chong Yidong <cyd@stupidchicken.com>
15058
15059 * window.el (display-buffer): Restore interactive spec.
15060 (display-buffer-same-window, display-buffer-other-window):
15061 New functions.
15062 (pop-to-buffer-1): New function. Use the above.
15063 (pop-to-buffer, pop-to-buffer-same-window): Use it.
15064 (pop-to-buffer-other-window, pop-to-buffer-other-frame): Delete.
15065
15066 * view.el (view-buffer-other-window, view-buffer-other-frame):
15067 Just use pop-to-buffer.
15068
15069 2011-09-01 Thierry Volpiatto <thierry.volpiatto@gmail.com>
15070
15071 * vc/vc-rcs.el (vc-rcs-responsible-p): Handle directories. (Bug#9391)
15072
15073 2011-09-01 Wilfred Hughes <wilfred@potatolondon.com> (tiny change)
15074
15075 * vc/vc-git.el (vc-git-grep): Use --no-color. (Bug#9408)
15076
15077 2011-08-31 Richard Stallman <rms@gnu.org>
15078
15079 * mail/rmail.el (rmail-epa-decrypt): Rewrite to take account
15080 of the separation of rmail-view-buffer from rmail-buffer.
15081 If you say no to "replace original", the decrypt is in the
15082 view buffer. If you say yes, the decrypt goes into the
15083 rmail buffer also.
15084
15085 2011-08-31 Martin Rudalics <rudalics@gmx.at>
15086
15087 * window.el (display-buffer-window): Rewrite doc-string.
15088 (display-buffer-record-window): New function.
15089 (display-buffer-macro-specifiers)
15090 (display-buffer-even-window-sizes, display-buffer-set-height)
15091 (display-buffer-set-width, display-buffer-in-window)
15092 (display-buffer-reuse-window, display-buffer-split-specifiers)
15093 (display-buffer-side-specifiers, display-buffer-split-window-1)
15094 (display-buffer-split-window, display-buffer-split-atom-window)
15095 (display-buffer-pop-up-window, display-buffer-pop-up-frame)
15096 (display-buffer-pop-up-side-window, display-buffer-in-side-window)
15097 (display-buffer-other-window-means-other-frame)
15098 (display-buffer-normalize-special)
15099 (display-buffer-normalize-default)
15100 (display-buffer-normalize-argument)
15101 (display-buffer-normalize-alist-1, display-buffer-normalize-alist)
15102 (display-buffer-normalize-specifiers, display-buffer-frame)
15103 (display-buffer-same-window, display-buffer-same-frame)
15104 (display-buffer-other-window)
15105 (display-buffer-same-frame-other-window)
15106 (display-buffer-other-frame, pop-to-buffer-same-window)
15107 (pop-to-buffer-same-frame, pop-to-buffer-other-window)
15108 (pop-to-buffer-same-frame-other-window, pop-to-buffer-other-frame)
15109 (switch-to-buffer-same-frame)
15110 (switch-to-buffer-other-window-same-frame)
15111 (display-buffer-alist-of-strings-p, display-buffer-alist-add)
15112 (display-buffer-alist-set-1, display-buffer-alist-set-2)
15113 (display-buffer-alist-set): Remove.
15114 (display-buffer-function, special-display-buffer-names)
15115 (special-display-regexps, special-display-function):
15116 In doc-string refer to display-buffer-window and quit-restore
15117 parameter.
15118 (pop-up-frame-alist, pop-up-frame-function, special-display-p)
15119 (special-display-frame-alist, special-display-popup-frame)
15120 (same-window-buffer-names, same-window-regexps, same-window-p)
15121 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
15122 (split-window-preferred-function, split-height-threshold)
15123 (split-width-threshold, window-splittable-p)
15124 (split-window-sensibly, window--try-to-split-window)
15125 (window--frame-usable-p, even-window-heights)
15126 (window--even-window-heights, window--display-buffer-1)
15127 (window--display-buffer-2, display-buffer-other-frame):
15128 Restore old Emacs 23 code, order and doc-strings where applicable.
15129 (display-buffer-default, display-buffer-assq-regexp): New functions.
15130 (display-buffer-alist): Rewrite doc-string.
15131 (display-buffer-default-action)
15132 (display-buffer-overriding-action): New variables.
15133 (display-buffer, switch-to-buffer): Rewrite.
15134 (pop-to-buffer): Restore Emacs 23 behavior but use
15135 window-normalize-buffer-to-display.
15136 (switch-to-buffer-other-window, switch-to-buffer-other-frame):
15137 Restore Emacs 23 behavior but use
15138 window-normalize-buffer-to-switch-to.
15139 (pop-to-buffer-same-window): Rewrite.
15140 (pop-to-buffer-other-window, pop-to-buffer-other-frame):
15141 Rewrite using Emacs 23 options.
15142
15143 2011-08-31 Michael Albinus <michael.albinus@gmx.de>
15144
15145 * net/tramp.el (tramp-root-regexp): Remove.
15146 (tramp-completion-file-name-regexp-unified)
15147 (tramp-completion-file-name-regexp-separate)
15148 (tramp-completion-file-name-regexp-url): Don't use leading volume
15149 letter on w32 systems. (Bug#5303, Bug#9311)
15150 (tramp-drop-volume-letter): Simplify definition.
15151 Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
15152
15153 2011-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
15154
15155 * subr.el (event-modifiers): Fix "missing modifier" part of docstring
15156 (bug#9356).
15157
15158 2011-08-30 Reuben Thomas <rrt@sc3d.org> (tiny change)
15159
15160 * vc/pcvs-defs.el (cvs-find-file-and-jump): Docstring typo (bug#9369).
15161
15162 2011-08-29 Juri Linkov <juri@jurta.org>
15163
15164 * isearch.el (isearch-done): Don't display message "Mark saved"
15165 when arg `edit' is non-nil to prevent its flicker in the echo area.
15166
15167 2011-08-28 Chong Yidong <cyd@stupidchicken.com>
15168
15169 * emacs-lisp/package.el (package-menu-mark-delete): Allow marking
15170 obsolete packages for deletion.
15171
15172 2011-08-28 Christoph Scholtes <cschol2112@googlemail.com>
15173
15174 * help-mode.el (help-mode-map): Add special-mode-map to parent.
15175 (help-mode): Derive help-mode from special-mode. Don't invoke
15176 view-mode from help-mode.
15177 (help-xref-override-view-map): Remove.
15178 (help-make-xrefs): Remove minor-mode-overriding-map-alist since
15179 view-mode is not used anymore.
15180
15181 2011-08-28 Chong Yidong <cyd@stupidchicken.com>
15182
15183 * server.el (server-port): Doc fix.
15184
15185 * cus-theme.el (custom-theme-choose-mode): Inherit from
15186 special-mode (Bug#9124).
15187 (custom-theme-choose-mode-map): Add special-mode to parent.
15188
15189 2011-08-28 Alan Mackenzie <acm@muc.de>
15190
15191 * progmodes/cc-fonts.el
15192 (c-make-font-lock-BO-decl-search-function): New function.
15193 (c-basic-matchers-after - "Fontify the clauses after various
15194 keywords"): Extract the three keyword lists for the 3 erroneous
15195 constructs from the list of four, and use the new function above
15196 in place of an old one.
15197
15198 2011-08-28 Deniz Dogan <deniz@dogan.se>
15199
15200 * net/rcirc.el (rcirc-insert-prev-input)
15201 (rcirc-insert-next-input): Remove unused argument.
15202
15203 2011-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
15204
15205 * shell.el (shell-parse-pcomplete-arguments): Unquote args (bug#9160).
15206
15207 2011-08-27 Alan Mackenzie <acm@muc.de>
15208
15209 * progmodes/cc-menus.el (cc-imenu-c++-generic-expression): Make it
15210 handle function pointer parameters properly.
15211
15212 2011-08-27 Martin Rudalics <rudalics@gmx.at>
15213
15214 * window.el (display-buffer-reuse-window): Fix case where
15215 selected window was reused with non-nil OTHER-WINDOW argument.
15216 (Bug#9381)
15217
15218 2011-08-27 Deniz Dogan <deniz@dogan.se>
15219
15220 * net/rcirc.el (rcirc-check-auth-status): Adding support for
15221 oftc's NickServ messages.
15222
15223 2011-08-27 Glenn Morris <rgm@gnu.org>
15224
15225 * saveplace.el (save-place-limit): Make it finite. (Bug#9352)
15226
15227 2011-08-26 Chong Yidong <cyd@stupidchicken.com>
15228
15229 * emacs-lisp/package.el (package-install): Call package-initialize
15230 if called interactively.
15231
15232 2011-08-26 Leo Liu <sdl.web@gmail.com>
15233
15234 * emacs-lisp/cl-macs.el (defstruct): Fix format. (Bug#9357)
15235
15236 2011-08-25 Juri Linkov <juri@jurta.org>
15237
15238 * isearch.el (isearch-occur): Let-bind `search-spaces-regexp' to
15239 `search-whitespace-regexp' (bug#9364).
15240
15241 2011-08-25 Juri Linkov <juri@jurta.org>
15242
15243 * isearch.el (isearch-edit-string): Let-bind `search-ring' and
15244 `regexp-search-ring' to their global values to protect from
15245 updating by `read-from-minibuffer' (bug#9185).
15246
15247 2011-08-25 Juri Linkov <juri@jurta.org>
15248
15249 * textmodes/ispell.el (ispell-command-loop): Add newline
15250 at the end of the "Use option `i'..." line.
15251
15252 2011-08-25 Juri Linkov <juri@jurta.org>
15253
15254 * battery.el (display-battery-mode): If `battery-status-function'
15255 or `battery-mode-line-format' is nil, display the message and set
15256 `display-battery-mode' to nil (bug#9363).
15257
15258 2011-08-25 Eli Zaretskii <eliz@gnu.org>
15259
15260 * buff-menu.el (Buffer-menu-buffer+size): Remove calls to
15261 bidi-string-mark-left-to-right; they are unnecessary now.
15262
15263 2011-08-25 Deniz Dogan <deniz@dogan.se>
15264
15265 * net/quickurl.el: Documentation typo fixes.
15266
15267 2011-08-25 Chong Yidong <cyd@stupidchicken.com>
15268
15269 * window.el (bury-buffer, quit-window): Use bury-buffer-internal.
15270
15271 2011-08-25 Glenn Morris <rgm@gnu.org>
15272
15273 * emacs-lisp/derived.el (define-derived-mode): Doc fix.
15274
15275 * mail/smtpmail.el (smtpmail-smtp-user): Add version: tag.
15276 (smtpmail-via-smtp): Handle nil response from smtp.
15277
15278 2011-08-24 Juri Linkov <juri@jurta.org>
15279
15280 * proced.el (proced-marked): Inherit from `error' instead of
15281 `font-lock-warning-face'.
15282
15283 * ibuffer.el (ibuffer-marked-face): Change default face from
15284 `font-lock-warning-face' to `warning'.
15285 (ibuffer-deletion-face): Change default face from
15286 `font-lock-type-face' to `error'.
15287
15288 * battery.el (battery-update): Use the face `error' instead of
15289 `font-lock-warning-face' (bug#6117).
15290
15291 2011-08-24 Juri Linkov <juri@jurta.org>
15292
15293 * faces.el (success): Change face color from "Green3" to
15294 "ForestGreen" on light background (bug#9353).
15295
15296 2011-08-24 Chong Yidong <cyd@stupidchicken.com>
15297
15298 * window.el (quit-window): Rename from quit-restore-window.
15299 Use same arglist as old quit-window.
15300 (frame-auto-delete): Doc fix.
15301
15302 * view.el (view-mode-exit): Use quit-window.
15303
15304 2011-08-24 Juri Linkov <juri@jurta.org>
15305
15306 * isearch.el (isearch-ring-adjust1): Start visiting previous
15307 search strings from the index 0 (-1 + 1) instead of 1 (0 + 1).
15308 (isearch-repeat, isearch-edit-string): Call `isearch-ring-adjust1'
15309 for empty search string (when the last search string is reused
15310 automatically) to adjust the isearch ring to the last element and
15311 prepare the correct index for further M-p commands (bug#9185).
15312
15313 2011-08-24 Kenichi Handa <handa@m17n.org>
15314
15315 * international/ucs-normalize.el: If decomposition property of
15316 CHAR is the default one (i.e. a list of CHAR itself), treat it as
15317 nil.
15318 (nfd, nfkd): Likewise.
15319
15320 2011-08-24 Stefan Monnier <monnier@iro.umontreal.ca>
15321
15322 * mpc.el (mpc--proc-filter): Don't signal mpc-proc-error since signals
15323 from process filters aren't reliably transmitted to the surrounding
15324 accept-process-output.
15325 (mpc-proc-check): New function.
15326 (mpc-proc-sync): Use it (bug#8293)
15327
15328 2011-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
15329
15330 * emacs-lisp/eieio.el (eieio-defmethod, eieio-defgeneric):
15331 Add compatibility functions (bug#9313).
15332
15333 2011-08-23 Eli Zaretskii <eliz@gnu.org>
15334
15335 * cus-start.el (all): Add entry for bidi-paragraph-direction.
15336
15337 * international/uni-bidi.el: Regenerate.
15338
15339 2011-08-23 Kenichi Handa <handa@m17n.org>
15340
15341 * international/charprop.el:
15342 * international/uni-bidi.el:
15343 * international/uni-category.el:
15344 * international/uni-combining.el:
15345 * international/uni-comment.el:
15346 * international/uni-decimal.el:
15347 * international/uni-decomposition.el:
15348 * international/uni-digit.el:
15349 * international/uni-lowercase.el:
15350 * international/uni-mirrored.el:
15351 * international/uni-name.el:
15352 * international/uni-numeric.el:
15353 * international/uni-old-name.el:
15354 * international/uni-titlecase.el:
15355 * international/uni-uppercase.el: Regenerate.
15356
15357 2011-08-23 Martin Rudalics <rudalics@gmx.at>
15358
15359 * help.el (help-window-setup): Fix message displayed when other
15360 window is reused. (Bug#9341)
15361
15362 2011-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
15363
15364 * shell.el (shell-completion-vars): Set pcomplete-arg-quote-list.
15365 * pcomplete.el (pcomplete-quote-argument): Fix thinko (bug#9161).
15366
15367 * pcomplete.el (pcomplete-parse-comint-arguments): Fix inf-loop.
15368 Mark obsolete.
15369 * shell.el (shell-parse-pcomplete-arguments): New function.
15370 (shell-completion-vars): Use it instead (bug#9160).
15371
15372 2011-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
15373
15374 * progmodes/sh-script.el (sh-maybe-here-document): Disable magic in
15375 strings and comments (bug#9333).
15376
15377 * emacs-lisp/debug.el (debug-arglist): New function.
15378 (debug-convert-byte-code): Use it. Handle lexical byte-codes.
15379 (debug-on-entry-1): Handle interpreted closures (bug#9120).
15380
15381 2011-08-22 Juri Linkov <juri@jurta.org>
15382
15383 * progmodes/compile.el (compilation-mode-font-lock-keywords):
15384 Revert regexp that highlights output switches to its old
15385 pre-2010-10-28 value and remove one `?' from it (bug#9319).
15386
15387 * progmodes/grep.el (grep-process-setup): Use `buffer-modified-p'
15388 to check for empty output (bug#9226).
15389
15390 2011-08-22 Chong Yidong <cyd@stupidchicken.com>
15391
15392 * progmodes/scheme.el (scheme-mode-syntax-table): Don't use
15393 symbol-constituent as the default, as that stops font-lock from
15394 working properly (Bug#8843).
15395
15396 2011-08-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
15397
15398 * mail/smtpmail.el (smtpmail-via-smtp): Only bind
15399 `coding-system-for-*' around the process open call to avoid
15400 auth-source side effects.
15401 (smtpmail-try-auth-methods): Expand the secret password.
15402 (smtpmail-query-smtp-server): Allow `quit'-ing out in case the
15403 probe hangs.
15404
15405 2011-08-21 Chong Yidong <cyd@stupidchicken.com>
15406
15407 * term.el (term-mouse-paste): Yank primary selection (Bug#6845).
15408
15409 * emacs-lisp/find-func.el (find-function-noselect): New arg
15410 lisp-only.
15411
15412 * emacs-lisp/edebug.el (edebug-instrument-function): Use it to
15413 signal an error for built-in functions (Bug#6664).
15414
15415 2011-08-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
15416
15417 * mail/smtpmail.el (smtpmail-smtp-user): New variable.
15418 (smtpmail-try-auth-methods): Use it.
15419
15420 2011-08-21 Chong Yidong <cyd@stupidchicken.com>
15421
15422 * font-lock.el (font-lock-fontify-region)
15423 (font-lock-unfontify-region, font-lock-default-fontify-buffer)
15424 (font-lock-default-unfontify-buffer)
15425 (font-lock-default-fontify-region)
15426 (font-lock-default-unfontify-region): Add docstrings (Bug#8624).
15427
15428 * progmodes/compile.el (compilation-error-properties):
15429 Fix confusion between file struct and message struct (Bug#9319).
15430 (compilation-error-regexp-alist-alist): Fix 2011-05-09 change to
15431 `ant' regexp.
15432
15433 * net/browse-url.el (browse-url-firefox): Don't call
15434 browse-url-firefox-sentinel unless using -remote (Bug#9328).
15435
15436 2011-08-20 Glenn Morris <rgm@gnu.org>
15437
15438 * tutorial.el (help-with-tutorial): Avoid an error on short screens.
15439
15440 * tutorial.el (tutorial--default-keys): Update some default bindings.
15441
15442 * files.el (hack-local-variables): Fully ignore case for "mode:".
15443
15444 2011-08-20 Alan Mackenzie <acm@muc.de>
15445
15446 Resolve invalid use of a regexp in regexp-opt.
15447
15448 * progmodes/cc-fonts.el (c-complex-decl-matchers): Add in special
15449 detection for a java annotation.
15450
15451 * progmodes/cc-engine.el (c-forward-decl-or-cast-1): Add in special
15452 detection for a java annotation.
15453
15454 * progmodes/cc-langs.el (c-prefix-spec-kwds-re): Remove the special
15455 handling for java.
15456 (c-modifier-kwds): Remove the regexp "@[A-za-z0-9]+".
15457
15458 2011-08-20 Chong Yidong <cyd@stupidchicken.com>
15459
15460 * startup.el (normal-top-level-add-subdirs-to-load-path): Doc fix
15461 (Bug#9274).
15462
15463 2011-08-20 Alan Mackenzie <acm@muc.de>
15464
15465 Fontify CPP expressions correctly when starting in the middle of
15466 such a construct. Mainly for when jit-lock etc. starts a chunk
15467 here.
15468
15469 * progmodes/cc-fonts.el (c-font-lock-context): New buffer local
15470 variable.
15471 (c-make-font-lock-search-form): New function, extracted from
15472 c-make-font-lock-search-function.
15473 (c-make-font-lock-search-function): Use the above function.
15474 (c-make-font-lock-context-search-function): New function.
15475 (c-cpp-matchers): Enhance the preprocessor expression case with
15476 the above function
15477 (c-font-lock-complex-decl-prepare): Test for being in a CPP form
15478 which takes an expression.
15479
15480 * progmodes/cc-langs.el (c-cpp-expr-intro-re): New lang-variable.
15481
15482 2011-08-20 Martin Rudalics <rudalics@gmx.at>
15483
15484 * window.el (display-buffer-reuse-window)
15485 (display-buffer-pop-up-window): Don't reuse or split a side
15486 window.
15487
15488 2011-08-19 Glenn Morris <rgm@gnu.org>
15489
15490 * files.el (hack-local-variables-prop-line, hack-local-variables):
15491 Downcase "Mode:". (Bug#9331)
15492
15493 2011-08-18 Chong Yidong <cyd@stupidchicken.com>
15494
15495 * international/characters.el: Add L and R categories.
15496
15497 * subr.el (bidi-string-mark-left-to-right): Rename from
15498 string-mark-left-to-right. Use category search.
15499
15500 * buff-menu.el (Buffer-menu-buffer+size): Callers changed.
15501
15502 2011-08-18 Juri Linkov <juri@jurta.org>
15503
15504 * faces.el (error, warning, success): New faces with definitions
15505 copied from old default values of `font-lock-warning-face',
15506 `compilation-warning', `compilation-info' (bug#6117).
15507
15508 * font-lock.el (font-lock-warning-face): Inherit from `error'.
15509
15510 * progmodes/compile.el (compilation-error): Inherit from `error'.
15511 (compilation-warning): Inherit from `warning'.
15512 (compilation-info): Inherit from `success'.
15513
15514 * dired.el (dired-marked): Inherit from `warning'.
15515 (dired-flagged): Inherit from `error'.
15516
15517 2011-08-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
15518
15519 * mail/smtpmail.el (auth-source): Require to avoid problems with
15520 binding variables (bug#9298). Also clean up some unused
15521 autoloads.
15522
15523 * net/network-stream.el (network-stream-open-starttls):
15524 Support using starttls.el without using gnutls-cli.
15525
15526 2011-08-17 Juri Linkov <juri@jurta.org>
15527
15528 * progmodes/grep.el (rgrep): Handle the case when
15529 `grep-find-command' is a cons cell (bug#9278).
15530
15531 2011-08-17 Martin Rudalics <rudalics@gmx.at>
15532
15533 * window.el (display-buffer-pop-up-frame): Run frame creation
15534 function with BUFFER current (as special-display-popup-frame
15535 does). Reported by Drew Adams.
15536
15537 2011-08-17 Daiki Ueno <ueno@unixuser.org>
15538
15539 * epa-mail.el: Simplify GnuPG group expansion using
15540 epg-expand-group.
15541 (epa-mail-group-alist, epa-mail-group-modtime)
15542 (epa-mail-gnupg-conf-file, epa-mail-parse-groups)
15543 (epa-mail-sync-groups, epa-mail-expand-recipient-1)
15544 (epa-mail-expand-recipients-2, epa-mail-expand-recipients):
15545 Remove.
15546
15547 2011-08-16 Feng Li <fengli@gmail.com> (tiny change)
15548
15549 * calc/calc-ext.el (math-defintegral-2): Remove nested backquote.
15550
15551 2011-08-16 Alan Mackenzie <acm@muc.de>
15552
15553 * progmodes/cc-engine.el (c-state-cache-non-literal-place):
15554 Correct, to avoid the inside of macros.
15555
15556 2011-08-16 Richard Stallman <rms@gnu.org>
15557
15558 * epa-mail.el: Handle GnuPG group definitions.
15559 (epa-mail-group-alist, epa-mail-group-modtime)
15560 (epa-mail-gnupg-conf-file): New variables.
15561 (epa-mail-parse-groups, epa-mail-sync-groups)
15562 (epa-mail-expand-recipient-1, epa-mail-expand-recipients-2)
15563 (epa-mail-expand-recipients): New functions.
15564 (epa-mail-encrypt): Call epa-mail-expand-recipients.
15565
15566 * mail/rmail.el (rmail-epa-decrypt): New command.
15567
15568 * epa.el (epa-decrypt-region): New arg MAKE-BUFFER-FUNCTION.
15569 Don't bind buffer-read-only, just inhibit-read-only.
15570 (epa--find-coding-system-for-mime-charset): Fix the non-xemacs case.
15571 (epa-decrypt-armor-in-region): Make error message clearer.
15572
15573 2011-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
15574
15575 * minibuffer.el (completion-pcm--merge-completions): Don't merge "a1b"
15576 and "a2b" to "ab" for `prefix'.
15577
15578 2011-08-14 Chong Yidong <cyd@stupidchicken.com>
15579
15580 * ibuf-ext.el (ibuffer-filter-disable): New arg for deleting
15581 filter groups.
15582 (ibuffer-included-in-filter-p-1): Use it. Suggested by Rafaël
15583 Fourquet (Bug#8804).
15584
15585 2011-08-12 Juanma Barranquero <lekktu@gmail.com>
15586
15587 * startup.el (argi): Declare as global variable (bug#9275).
15588
15589 2011-08-12 Chong Yidong <cyd@stupidchicken.com>
15590
15591 * subr.el (string-mark-left-to-right): Search the entire string
15592 for RTL script, not just the terminating character. Doc fix.
15593
15594 2011-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
15595
15596 * progmodes/js.el (js-syntax-propertize, js-syntax-propertize-regexp):
15597 New function.
15598 (js--regexp-literal, js-syntax-propertize-function): Remove.
15599 (js-mode): Use js-syntax-propertize to handle multilines (bug#9183).
15600 (js-mode-map): Don't rebind electric keys.
15601 (js-insert-and-indent): Remove.
15602 (js-mode): Setup electric-layout and electric-indent instead.
15603
15604 * epa-file.el (epa-file-select-keys): Revert to nil default (bug#9280).
15605
15606 2011-08-12 Daiki Ueno <ueno@unixuser.org>
15607
15608 * epa.el (epa-progress-callback-function): Fix the logic of
15609 displaying progress.
15610 * epa-file.el (epa-file-insert-file-contents): Make progress
15611 display more user-friendly.
15612 (epa-file-write-region): Ditto.
15613
15614 2011-08-10 Chong Yidong <cyd@stupidchicken.com>
15615
15616 * subr.el (string-mark-left-to-right): New function.
15617
15618 * buff-menu.el (Buffer-menu-buffer+size): Remove LRM argument.
15619 Use string-mark-left-to-right.
15620 (list-buffers-noselect): Caller changed.
15621
15622 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
15623 Use string-mark-left-to-right.
15624 (tabulated-list-print): Recenter after moving point.
15625
15626 2011-08-10 Juri Linkov <juri@jurta.org>
15627
15628 * progmodes/grep.el (rgrep): Don't bind `process-connection-type'.
15629 This finishes incomplete reversion of 2011-06-30T01:09:13Z!larsi@gnus.org
15630 intended by 2011-07-06T15:49:19Z!larsi@gnus.org.
15631
15632 2011-08-09 Chong Yidong <cyd@stupidchicken.com>
15633
15634 * hi-lock.el (hi-lock-unface-buffer): Fix interactive spec
15635 (Bug#7554).
15636
15637 2011-08-09 Andreas Schwab <schwab@linux-m68k.org>
15638
15639 * xt-mouse.el (xterm-mouse-event-read): Try to recover the raw
15640 character. (Bug#6594)
15641
15642 2011-08-08 Chong Yidong <cyd@stupidchicken.com>
15643
15644 * image-dired.el: Don't use find-file for temporary work (Bug#7895).
15645 (image-dired--with-db-file): New macro.
15646 (image-dired-write-tags, image-dired-remove-tag)
15647 (image-dired-create-gallery-lists, image-dired-write-comments)
15648 (image-dired-get-comment, image-dired-mark-tagged-files)
15649 (image-dired-list-tags, image-dired-gallery-generate): Use it.
15650 (image-dired-gallery-generate): Use insert-file-contents.
15651
15652 * time.el (display-time-world-list, display-time-world-display):
15653 * time-stamp.el (time-stamp-string):
15654 * vc/add-log.el (add-change-log-entry): Use setenv instead of
15655 set-time-zone-rule (Bug#7337).
15656
15657 2011-08-08 Daiki Ueno <ueno@unixuser.org>
15658
15659 * epg.el (epg--status-KEYEXPIRED, epg--status-KEYREVOKED): Fix typo.
15660 (epg-error-to-string, epg-errors-to-string): New function.
15661 (epg-wait-for-completion): Reverse errors list.
15662 (epg--check-error-for-decrypt, epg-sign-file, epg-sign-string)
15663 (epg-encrypt-file, epg-encrypt-string, epg-export-keys-to-file)
15664 (epg--import-keys-1, epg-receive-keys, epg-delete-keys)
15665 (epg-sign-keys, epg-generate-key-from-file)
15666 (epg-generate-key-from-string): Format errors by using
15667 epg-errors-to-string (bug#9255).
15668 (epg--status-INV_SGNR, epg--status-NO_SGNR): New status handler.
15669
15670 2011-08-07 Juri Linkov <juri@jurta.org>
15671
15672 * faces.el (list-faces-display): Remove extra angle bracket
15673 from `help-mode-map'.
15674
15675 * info.el (Info-history-toc-nodes): Doc fix.
15676
15677 * longlines.el (longlines-mode): Doc fix.
15678
15679 2011-08-05 Stefan Monnier <monnier@iro.umontreal.ca>
15680
15681 * progmodes/js.el (js--regexp-literal): Accept regexps at the beginning
15682 of statements and in a few more cases (bug#9183).
15683
15684 * emacs-lisp/cl-macs.el (cl--make-usage-var, cl--make-usage-args):
15685 New functions.
15686 (cl-transform-lambda): Use them (bug#9239).
15687
15688 2011-08-05 Martin Rudalics <rudalics@gmx.at>
15689
15690 * window.el (display-buffer-same-window)
15691 (display-buffer-same-frame, display-buffer-other-window)
15692 (pop-to-buffer-same-window, pop-to-buffer-same-frame)
15693 (pop-to-buffer-other-window)
15694 (pop-to-buffer-same-frame-other-window)
15695 (pop-to-buffer-other-frame): Make them defuns.
15696 (switch-to-buffer): Don't set LABEL argument of pop-to-buffer.
15697
15698 2011-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
15699
15700 * subr.el (make-composed-keymap): Move from C. Change calling
15701 convention, and improve docstring to bring attention to a subtle point.
15702 * minibuffer.el (completing-read-default): Adjust accordingly.
15703
15704 2011-08-03 Michael Albinus <michael.albinus@gmx.de>
15705
15706 * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell)
15707 (tramp-open-shell): Use `tramp-shell-quote-argument'.
15708
15709 * net/trampver.el: Update release number.
15710
15711 2011-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
15712
15713 * progmodes/sh-script.el (sh-font-lock-paren): Don't mistake "main" for
15714 "in" (bug#9190).
15715
15716 2011-08-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
15717
15718 * mail/sendmail.el (sendmail-query-once): Restore the current
15719 buffer after querying (bug#9074).
15720
15721 * dired.el (dired-flagged): Use different faces for marked and
15722 flagged files (bug#6117).
15723
15724 * emacs-lisp/cl-macs.el (dolist): Mention that there's a nil block
15725 (bug#4433).
15726
15727 * ido.el (ido-mode): Switch off the message if called
15728 non-interactively.
15729
15730 * mail/smtpmail.el (smtpmail-query-smtp-server): Try port 25
15731 before 587, since it appears that that's more likely to work for
15732 more people.
15733
15734 * cus-edit.el (custom-file): When running under emacs -q, always
15735 refuse to save the customizations, even if the .emacs file doesn't
15736 exist.
15737
15738 * info.el: Remove the `Info-beginning-of-buffer' function
15739 (bug#8325).
15740
15741 * net/network-stream.el (network-stream-open-starttls):
15742 Use `starttls-available-p' to see whether starttls.el can be used.
15743
15744 2011-08-01 Martin Rudalics <rudalics@gmx.at>
15745
15746 * window.el (display-buffer-in-window): Don't set dedicated status
15747 of window here (Bug#9215).
15748 (display-buffer-pop-up-window, display-buffer-pop-up-frame)
15749 (display-buffer-pop-up-side-window)
15750 (display-buffer-in-side-window): Set dedicated status of window here.
15751
15752 2011-08-01 Stefan Monnier <monnier@iro.umontreal.ca>
15753
15754 * emacs-lisp/package.el (package-generate-autoloads): Load autoloads
15755 before binding generated-autoload-file.
15756
15757 2011-08-01 Deniz Dogan <deniz@dogan.se>
15758
15759 * net/rcirc.el (rcirc-handler-333): Clarify docstring.
15760
15761 2011-07-30 Michael Albinus <michael.albinus@gmx.de>
15762
15763 Sync with Tramp 2.2.2.
15764
15765 * net/trampver.el: Update release number.
15766
15767 2011-07-30 Juri Linkov <juri@jurta.org>
15768
15769 * dired-aux.el (dired-touch-initial): Remove function.
15770 (dired-do-chxxx): For op-symbol `touch', set `initial' to the
15771 current time, and `default' to the last modification time of the
15772 current marked file (bug#6887).
15773
15774 2011-07-28 Jose E. Marchesi <jemarch@gnu.org>
15775
15776 * simple.el (goto-line): Use string-to-number to provide a
15777 numeric argument to read-number (bug#9163).
15778
15779 2011-07-27 Michael Albinus <michael.albinus@gmx.de>
15780
15781 * net/tramp-sh.el (tramp-maybe-send-script): Don't let-bind the
15782 connection process, it could be nil.
15783
15784 2011-07-27 Leo Liu <sdl.web@gmail.com>
15785
15786 Simplify url handling in rcirc-mode.
15787
15788 * net/rcirc.el (rcirc-browse-url-map, rcirc-browse-url-at-point)
15789 (rcirc-browse-url-at-mouse): Remove.
15790 * net/rcirc.el (rcirc-markup-urls): Use `make-button'.
15791
15792 2011-07-26 Alan Mackenzie <acm@muc.de>
15793
15794 Fontify bitfield declarations properly.
15795
15796 * progmodes/cc-langs.el (c-has-bitfields): New lang variable.
15797 (c-symbol-chars): Now exported as a lang variable.
15798 (c-not-primitive-type-keywords): New lang variable.
15799
15800 * progmodes/cc-fonts.el (c-font-lock-declarations): Jump over the
15801 QT keyword "more" to prevent "more slots: ...." being spuriously
15802 parsed as a bitfield declaration.
15803
15804 * progmodes/cc-engine.el (c-beginning-of-statement-1):
15805 Refactor and enhance to handle bitfield declarations.
15806 (c-punctuation-in): New function.
15807 (c-forward-decl-or-cast-1): Enhance CASE 3 to handle bitfield
15808 declarations properly.
15809
15810 2011-07-26 Ulf Jasper <ulf.jasper@web.de>
15811
15812 * calendar/icalendar.el (icalendar--all-events): Take care of
15813 multiple vcalendars in a single file.
15814 (icalendar--convert-float-to-ical): Checkdoc fixes.
15815
15816 2011-07-25 Deniz Dogan <deniz@dogan.se>
15817
15818 * image.el (insert-image): Clarifying docstring.
15819
15820 2011-07-24 Michael Albinus <michael.albinus@gmx.de>
15821
15822 * net/tramp-sh.el (tramp-barf-unless-okay): Return the value of
15823 `tramp-send-command-and-check' if there is no error.
15824 (tramp-send-command-and-read): Suppress *all* errors if NOERROR.
15825
15826 2011-07-22 Alan Mackenzie <acm@muc.de>
15827
15828 Prevent cc-langs.elc being loaded at run time.
15829
15830 * progmodes/cc-mode.el: Remove two autoload forms which loaded
15831 cc-langs.
15832
15833 * progmodes/cc-langs.el (c-make-init-lang-vars-fun): Don't emit
15834 "(require 'cc-langs)". Quote a form so it will evaluate at
15835 (cc-mode's) compilation time.
15836
15837 2011-07-22 Michael Albinus <michael.albinus@gmx.de>
15838
15839 * net/tramp.el (tramp-file-name-handler): Avoid recursive
15840 loading. (Bug#9114)
15841
15842 2011-07-21 Martin Rudalics <rudalics@gmx.at>
15843
15844 * window.el (display-buffer-pop-up-window)
15845 (display-buffer-pop-up-side-window)
15846 (display-buffer-in-side-window): Call display-buffer-set-height
15847 and display-buffer-set-width after setting the new window's
15848 buffer so `fit-window-to-buffer' and friends work on the right buffer.
15849
15850 2011-07-20 Sam Steingold <sds@gnu.org>
15851
15852 * progmodes/etags.el (etags-file-of-tag, etags-tags-table-files)
15853 (etags-tags-included-tables): Call `convert-standard-filename' on
15854 the file names contained in TAGS so that windows Emacs can handle
15855 TAGS files created by cygwin ctags.
15856
15857 2011-07-20 Lars Magne Ingebrigtsen <larsi@gnus.org>
15858
15859 * proced.el (proced-update): Revert yesterday's bug#1779 patch,
15860 which apparently didn't work.
15861
15862 2011-07-19 Roland Winkler <winkler@gnu.org>
15863
15864 * proced.el (proced-send-signal): For *Marked Processes* buffer
15865 put point at beginning of buffer.
15866
15867 2011-07-19 Stephen Berman <stephen.berman@gmx.net>
15868
15869 * proced.el (proced-format): Make header lines align with the text
15870 (bug#1779).
15871
15872 2011-07-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
15873
15874 * view.el (view-buffer): Allow running in `special' modes if we're
15875 visiting a file (bug#8615).
15876
15877 2011-07-19 Martin Rudalics <rudalics@gmx.at>
15878
15879 * window.el (display-buffer-alist-of-strings-p)
15880 (display-buffer-alist-set-1, display-buffer-alist-set-2):
15881 New functions.
15882 (display-buffer-alist-set): Rewrite to handle Emacs 23 options
15883 more accurately.
15884
15885 2011-07-18 Alan Mackenzie <acm@muc.de>
15886
15887 Fontify declarators properly when, e.g., a jit-lock chunk begins
15888 inside a declaration.
15889
15890 * progmodes/cc-langs.el (c-symbol-chars): Correct a typo.
15891
15892 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
15893 New function.
15894 (c-complex-decl-matchers): Insert reference to
15895 c-font-lock-enclosing-decls.
15896
15897 * progmodes/cc-engine.el (c-backward-single-comment):
15898 (c-backward-comments): Bind open-paren-in-column-0-is-defun-start
15899 to nil around calls to (forward-comment -1).
15900
15901 2011-07-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
15902
15903 * image.el (put-image): Doc typo fix.
15904
15905 * progmodes/etags.el (tags-search): Doc typo fix.
15906
15907 * mail/smtpmail.el (smtpmail-via-smtp): Query the user for
15908 password if we get errors 550 to 554.
15909
15910 2011-07-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
15911
15912 * net/gnutls.el (gnutls-log-level): Remove.
15913
15914 * textmodes/fill.el (adaptive-fill-regexp): Include EN DASH as an
15915 indentation character (bug#6380).
15916
15917 * files.el (buffer-offer-save): Made permanently local (bug#6241).
15918
15919 * doc-view.el (doc-view-make-safe-dir): Rewrite the error message
15920 to clarify what the problem is (bug#4291).
15921
15922 * simple.el (current-kill): Clarify what
15923 `interprogram-paste-function' does (bug#7500).
15924 (auto-fill-mode): Document `auto-fill-function' in relation to
15925 `auto-fill-mode' (bug#2470).
15926
15927 2011-07-16 Lawrence Mitchell <wence@gmx.li>
15928
15929 * emacs-lisp/cl-macs.el (defstruct): Ignore argument to setf
15930 method if slot is read-only (bug#9035).
15931
15932 2011-07-16 Martin Rudalics <rudalics@gmx.at>
15933
15934 * frame.el (select-frame-set-input-focus): New argument NORECORD.
15935 * window.el (pop-to-buffer): Select window used even if it was
15936 selected before, see discussion of (Bug#8615), (Bug#6954).
15937 Pass argument NORECORD on to select-frame-set-input-focus.
15938
15939 2011-07-15 Glenn Morris <rgm@gnu.org>
15940
15941 * subr.el (read-char-choice): Allow quitting. (Bug#9001)
15942 Respect help-form.
15943
15944 2011-07-09 Lawrence Mitchell <wence@gmx.li>
15945
15946 * net/gnutls.el (gnutls-min-prime-bits): New variable.
15947 (gnutls-negotiate): Use it.
15948
15949 2011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
15950
15951 * net/gnutls.el (gnutls-negotiate):
15952 Upcase `gnutls-algorithm-priority'.
15953
15954 2011-07-15 Glenn Morris <rgm@gnu.org>
15955
15956 * jka-compr.el (jka-compr-verbose): Move from here...
15957 * jka-cmpr-hook.el (jka-compr-verbose): ... to here. (Bug#9090)
15958 Add missing :version tag.
15959 * info.el: No need to require jka-compr when compiling.
15960
15961 2011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
15962
15963 * net/gnutls.el (gnutls-algorithm-priority): New variable.
15964 (gnutls-negotiate): Use it.
15965
15966 * emacs-lisp/cl-macs.el (declare): Link to the "Declarations" node.
15967
15968 * info.el (Info-beginning-of-buffer): New command.
15969 (Info-mode-map): Use it instead of `beginning-of-buffer' to allow
15970 announcing `b' as the key (bug#8325).
15971 (Info-mode-menu): Use `Info-beginning-of-buffer' for consistency.
15972
15973 * emacs-lisp/cl-macs.el (declare): Doc string fix-up.
15974
15975 * international/mule-cmds.el
15976 (describe-specified-language-support): Make the error message
15977 clearer (bug#8905).
15978
15979 * emacs-lisp/cl-macs.el (declare): Add a doc string (bug#8690).
15980
15981 * isearch.el (isearch-barrier): Add a doc string, since it's
15982 mentioned in a function doc string (bug#8678).
15983
15984 2011-07-15 Martin Rudalics <rudalics@gmx.at>
15985
15986 * window.el (switch-to-buffer): Call pop-to-buffer with normalized
15987 buffer argument (Bug#9083) and self-identifying label argument.
15988
15989 2011-07-15 Glenn Morris <rgm@gnu.org>
15990
15991 * emacs-lisp/debug.el (debug): Doc fix. (Bug#8273)
15992
15993 2011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
15994
15995 * man.el (Man-fontify-manpage): Fix message when formatting the
15996 man page (bug#7929).
15997
15998 2011-07-14 Eli Zaretskii <eliz@gnu.org>
15999
16000 * buff-menu.el (Buffer-menu-buffer+size): Accept an additional
16001 argument LRM; if non-nil, append an invisible LRM character to the
16002 buffer name.
16003 (list-buffers-noselect): Call Buffer-menu-buffer+size with the
16004 last argument non-nil, when formatting buffer names.
16005 (Buffer-menu-mode, list-buffers-noselect): Force left-to-right
16006 paragraph direction.
16007
16008 2011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
16009
16010 * man.el (Man-bgproc-sentinel): Skip any arguments and only output
16011 the man page name (bug#7929).
16012
16013 * image.el (put-image): Mention the `put-image' overlay property
16014 (bug#7834).
16015
16016 * scroll-bar.el (set-scroll-bar-mode): Mention that
16017 `scroll-bar-mode' lists the values (bug#7772).
16018
16019 * image-mode.el (image-mode-fit-frame): Mention that it's a toggle
16020 command (bug#7729).
16021
16022 * rect.el (apply-on-rectangle): Return the point after the last
16023 operation.
16024 (string-rectangle): Go to the point after the last operation
16025 (bug#7522).
16026
16027 * printing.el (pr-toggle-region): Clarify the documentation
16028 slightly (bug#7493).
16029
16030 * time.el (display-time-update):
16031 Allow `display-time-mail-function' to return nil (bug#7158).
16032 Fix suggested by Detlev Zundel.
16033
16034 * vc/diff.el (diff): Clarify the order the file names are read
16035 (bug#7111).
16036
16037 * mouse.el (mouse-set-region): Link to `mouse-drag-copy-region' in
16038 the doc string (bug#7015).
16039
16040 * font-lock.el (font-lock-maximum-decoration): Mention what
16041 numeric levels mean (bug#6935).
16042
16043 * startup.el (initial-buffer-choice): Don't mention the `none'
16044 selection, which is against policy.
16045
16046 2011-07-14 Martin Rudalics <rudalics@gmx.at>
16047
16048 * window.el (display-buffer-normalize-special):
16049 Replace `dedicated' by `dedicate' to dedicate window (Bug#9072).
16050
16051 2011-07-14 Eli Zaretskii <eliz@gnu.org>
16052
16053 * subr.el (version<, version<=, version=): Mention "-CVS" and
16054 "-12345" alpha version numbers.
16055
16056 2011-07-14 Chong Yidong <cyd@stupidchicken.com>
16057
16058 * bindings.el: Add advertised binding for set-mark-command
16059 (Bug#5772).
16060
16061 2011-07-14 Chong Yidong <cyd@stupidchicken.com>
16062
16063 * bindings.el (mode-line-other-buffer):
16064 * bookmark.el (bookmark-bmenu-2-window):
16065 * bs.el (bs-cycle-next, bs-cycle-previous):
16066 * net/tramp-cmds.el (tramp-append-tramp-buffers): Revert to using
16067 switch-to-buffer.
16068
16069 * net/tramp-compat.el (tramp-compat-pop-to-buffer-same-window):
16070 Delete.
16071
16072 2011-07-14 Juanma Barranquero <lekktu@gmail.com>
16073
16074 * follow.el (follow-debug-message, follow-redisplay):
16075 * jka-cmpr-hook.el (with-auto-compression-mode):
16076 Fix typos in docstrings.
16077
16078 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
16079
16080 * subr.el (with-silent-modifications): Clarify somewhat what the
16081 macro inhibits (bug#6525).
16082
16083 * simple.el (eval-expression): Note what it does if called
16084 interactively (bug#6495).
16085
16086 2011-07-13 Chong Yidong <cyd@stupidchicken.com>
16087
16088 * window.el (switch-to-buffer): New arg FORCE-SAME-WINDOW.
16089 Use pop-to-buffer buffer-or-name if it is nil.
16090
16091 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
16092 Remove switch-to-buffer.
16093
16094 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
16095
16096 * files.el (make-directory): Clarify that an error will be raised
16097 if there's an error (bug#6397).
16098
16099 * startup.el (initial-buffer-choice): Add `none' as a choice
16100 (bug#6234).
16101
16102 * subr.el (add-hook): Clarify section about buffer-local hooks
16103 (bug#6218).
16104
16105 * dired.el (dired-flagged): Clarify doc string (bug#6117).
16106
16107 2011-07-13 Juanma Barranquero <lekktu@gmail.com>
16108
16109 * tabify.el (untabify): Preserve the current column so that point
16110 doesn't move (bug#6032).
16111
16112 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
16113
16114 * progmodes/cperl-mode.el (cperl-syntaxify-by-font-lock):
16115 Rewrite to avoid awkward possessive "s" (bug#5986).
16116
16117 2011-07-13 Glenn Morris <rgm@gnu.org>
16118
16119 * dired.el (dired-use-ls-dired): Doc fix. (Bug#9039).
16120 (dired-insert-directory): Give a message the first time
16121 if ls is found not to support --dired.
16122
16123 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
16124
16125 * simple.el (toggle-truncate-lines): Clarify what is toggled
16126 (bug#5580). Text by Drew Adams.
16127
16128 2011-07-13 Chong Yidong <cyd@stupidchicken.com>
16129
16130 * simple.el (blink-matching-open): Make the error message from the
16131 last change less verbose.
16132
16133 2011-07-13 Dan Nicolaescu <dann@ics.uci.edu>
16134
16135 * font-lock.el (font-lock-comment-face): Use the high contrast
16136 "yellow" color for font-lock-comment-face on low color terminals
16137 using a dark background color (bug#4221).
16138
16139 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
16140
16141 * dired.el (dired-insert-set-properties): Make the doc string
16142 reflect what it does now (bug#5325).
16143
16144 * simple.el (blink-matching-open): Say that we were unable to find
16145 the match within the limit, if we're limited (bug#5122).
16146
16147 * international/mule-cmds.el (prefer-coding-system): Add an
16148 example (bug#4869).
16149
16150 * progmodes/etags.el (tags-search): Document `file-list-form'
16151 (bug#4731).
16152
16153 2011-07-13 Lawrence Mitchell <wence@gmx.li>
16154
16155 * net/browse-url.el (browse-url-default-browser)
16156 (browse-url-browser-function): Make the default browser choice a
16157 bit more logical (bug#4300). Also clean up the doc string.
16158
16159 2011-07-13 Juanma Barranquero <lekktu@gmail.com>
16160
16161 * bindings.el (completion-ignored-extensions): Add OpenMCL/Clozure
16162 binary endings (bug#4440).
16163
16164 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
16165
16166 * info.el (info-insert-file-contents): Inhibit jka-compr messages,
16167 which can be pretty annoying (bug#8971).
16168
16169 * jka-compr.el (jka-compr-verbose): New variable, and use
16170 throughout (bug#8971).
16171
16172 * info.el (Info-find-file): Fall back on the installation
16173 directory if we can't find the info node anywhere else.
16174
16175 2011-07-13 Sergei Organov <osv@javad.com> (tiny change)
16176
16177 * vc/vc.el (vc-revert-file):
16178 Don't set file time-stamp in the past. (Bug#5181)
16179
16180 2011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
16181
16182 * files.el (after-find-file): Give a better error message when
16183 trying to find a symlink that points to a file that doesn't exist
16184 (bug#4398).
16185
16186 * progmodes/cc-vars.el: Remove (probably) misleading comment
16187 (bug#4396).
16188
16189 2011-07-12 Johan Bockgård <bojohan@gnu.org>
16190
16191 * mouse-sel.el (mouse-sel-primary-overlay): Use the `region' face.
16192
16193 2011-07-12 Chong Yidong <cyd@stupidchicken.com>
16194
16195 * mouse-sel.el: Hack restoring functionality, while keeping
16196 compatibility with 2010-07-03 changes to mouse selection.
16197 (mouse-sel-primary-overlay): New var.
16198 (mouse-sel-selection-alist): Use it.
16199 (mouse-sel-mode): Doc fix; remove points that are default features
16200 of mouse.el.
16201
16202 2011-07-12 Johan Bockgård <bojohan@gnu.org>
16203
16204 * progmodes/compile.el (compilation-error-regexp-alist-alist):
16205 Fix previous fix (bug#2490).
16206
16207 2011-07-12 Roland Winkler <winkler@gnu.org>
16208
16209 * textmodes/bibtex.el (bibtex-initialize):
16210 Use pop-to-buffer-same-window.
16211 (bibtex-search-entries): Fix interactive call.
16212
16213 2011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
16214
16215 * progmodes/compile.el (compilation-error-regexp-alist-alist):
16216 Fontise bytecomp Error lines more correctly (bug#2490).
16217 Fix suggested by Johan Bockgård.
16218
16219 * subr.el (remove-duplicates): Remove; `delete-dups' is sufficient.
16220
16221 * dired-x.el (dired-guess-default): Use `delete-dups'.
16222
16223 2011-07-12 Chong Yidong <cyd@stupidchicken.com>
16224
16225 * dired.el (dired-mark-prompt):
16226 * dired-aux.el (dired-read-shell-command): Doc fix.
16227
16228 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
16229
16230 * mail/sendmail.el (sendmail-query-once):
16231 Use `customize-save-variable' unconditionally, now that it works under
16232 emacs -Q.
16233
16234 * mail/smtpmail.el (smtpmail-query-smtp-server): Ditto.
16235
16236 * cus-edit.el (custom-file): Take an optional no-error variable.
16237 (customize-save-variable): Set the variable, and give a warning if
16238 running under "emacs -q".
16239
16240 2011-07-11 Juanma Barranquero <lekktu@gmail.com>
16241
16242 * loadhist.el (unload-feature-special-hooks):
16243 Add `auto-coding-functions', `fill-nobreak-predicate' and
16244 `find-directory-functions' (bug#5327).
16245
16246 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
16247
16248 * vc/ediff.el (ediff-patch-file): Clarify doc string (bug#3138).
16249
16250 * cus-edit.el (custom-guess-name-alist): -alist variables should
16251 use the `alist' type (bug#3120). Suggested by Drew Adams.
16252
16253 * printing.el: Add documentation to all the `pr-toggle-' commands.
16254
16255 2011-07-11 Leo Liu <sdl.web@gmail.com>
16256
16257 * files.el (toggle-read-only): Only do the `C-x C-q' warning on VC
16258 backends where it makes sense (bug#2623).
16259
16260 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
16261
16262 * dired-x.el (dired-guess-default): Remove duplicate shell command
16263 entries (bug#2028).
16264 (dired-guess-default): Fix grammar in doc string (bug#2028).
16265 (dired-guess-shell-alist-user): Clarify the example a bit (bug#2030).
16266
16267 * subr.el (remove-duplicates): New conveniency function.
16268
16269 2011-07-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
16270
16271 * tool-bar.el (tool-bar-mode): Clarify positive/negative arguments
16272 (bug#1526).
16273
16274 2011-07-10 Martin Rudalics <rudalics@gmx.at>
16275
16276 * window.el (display-buffer-normalize-default): Don't invert
16277 meaning of even-window-heights. Reported by Eli Zaretskii
16278 <eliz@gnu.org>.
16279
16280 2011-07-10 Bob Rogers <rogers@rgrjr.dyndns.org>
16281
16282 * vc/vc.el (vc-diff-internal): Fix race condition (Bug#1256).
16283
16284 2011-07-10 Chong Yidong <cyd@stupidchicken.com>
16285
16286 * window.el (display-buffer): Fix arguments to
16287 display-buffer-reuse-window in last change.
16288
16289 * faces.el (link): Use a less saturated blue on light backgrounds.
16290
16291 * startup.el (fancy-startup-text, fancy-about-text)
16292 (fancy-startup-tail): Use font-lock faces, for background safety.
16293
16294 2011-07-09 Bob Nnamtrop <bobnnamtrop@gmail.com> (tiny change)
16295
16296 * emulation/viper-cmd.el (viper-change-state-to-vi):
16297 Limit triggering of abbrev expansion (Bug#9038).
16298
16299 2011-07-09 Martin Rudalics <rudalics@gmx.at>
16300
16301 * window.el (display-buffer-default-specifiers): Remove.
16302 (display-buffer-macro-specifiers): Remove default specifiers.
16303 (display-buffer-alist): Default to nil.
16304 (display-buffer-reuse-window): New optional argument other-window.
16305 (display-buffer-pop-up-window): Allow splitting internal
16306 windows. Check whether a live window was created.
16307 (display-buffer-other-window-means-other-frame)
16308 (display-buffer-normalize-arguments): Rename to
16309 display-buffer-normalize-argument and rewrite. Set the
16310 other-window specifier.
16311 (display-buffer-normalize-special): New function.
16312 (display-buffer-normalize-options): Rename to
16313 display-buffer-normalize-default and rewrite.
16314 (display-buffer-normalize-options-inhibit): Remove.
16315 (display-buffer-normalize-specifiers): Rewrite.
16316 (display-buffer): Process other-window specifier and call
16317 display-buffer-reuse-window with it. Emulate Emacs 23 behavior
16318 more faithfully.
16319 (pop-up-windows, even-window-heights): Restore Emacs 23 default values.
16320 (display-buffer-alist-set): Don't handle 'unset default values.
16321 (display-buffer-in-window, display-buffer-alist-set):
16322 Replace symbol "dedicated" by "dedicate". Reported by Tassilo Horn
16323 <tassilo@member.fsf.org>.
16324
16325 2011-07-09 Leo Liu <sdl.web@gmail.com>
16326
16327 * register.el (insert-register): Restore accidental change on
16328 2011-06-26. (Bug#9028)
16329
16330 2011-07-09 Glenn Morris <rgm@gnu.org>
16331
16332 * subr.el (remq): Handle the empty list. (Bug#9024)
16333
16334 2011-07-08 Andreas Schwab <schwab@linux-m68k.org>
16335
16336 * mail/sendmail.el (send-mail-function): No longer delay custom
16337 initialization.
16338 * custom.el (custom-initialize-delay): Doc fix.
16339
16340 2011-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
16341
16342 * abbrev.el (expand-abbrev): Try to preserve point (bug#5805).
16343
16344 2011-07-08 Michael Albinus <michael.albinus@gmx.de>
16345
16346 * net/tramp-sh.el (tramp-sh-handle-start-file-process): Use a
16347 human-friendly prompt.
16348
16349 2011-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
16350
16351 * vc/vc-bzr.el (vc-bzr-revision-keywords): Remove svn, it's only
16352 provided by a particular plugin.
16353
16354 2011-07-08 Lars Magne Ingebrigtsen <larsi@gnus.org>
16355
16356 * mail/sendmail.el (sendmail-query-once): If we aren't allowed to
16357 save customizations (with "emacs -Q"), just set the variable
16358 instead of erroring out.
16359
16360 * mail/smtpmail.el (smtpmail-query-smtp-server): Ditto.
16361
16362 2011-07-08 Juri Linkov <juri@jurta.org>
16363
16364 * arc-mode.el (archive-zip-expunge, archive-zip-update)
16365 (archive-zip-update-case): Use 7z if found by `executable-find'.
16366 The order of searching the available programs is the same as in
16367 `archive-zip-extract' (bug#8968).
16368
16369 2011-07-07 Chong Yidong <cyd@stupidchicken.com>
16370
16371 * menu-bar.el (menu-bar-line-wrapping-menu): Revert last change.
16372 (menu-bar-options-menu): Tweak descriptions.
16373
16374 2011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
16375
16376 * menu-bar.el (menu-bar-line-wrapping-menu): Make all the Options
16377 menu items into verb phrases (bug#1421). Also refill to fit under
16378 80 columns.
16379
16380 2011-07-07 Chong Yidong <cyd@stupidchicken.com>
16381
16382 * info.el (info, Info-read-node-name-2, Info-read-node-name-1)
16383 (Info-read-node-name): Doc fix (Bug#1084).
16384
16385 * thingatpt.el (forward-thing, bounds-of-thing-at-point)
16386 (thing-at-point, beginning-of-thing, end-of-thing, in-string-p)
16387 (end-of-sexp, beginning-of-sexp)
16388 (thing-at-point-bounds-of-list-at-point, forward-whitespace)
16389 (forward-symbol, forward-same-syntax, word-at-point)
16390 (sentence-at-point): Doc fix (Bug#1144).
16391
16392 2011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
16393
16394 * info.el (Info-mode-map): Remove S-TAB binding, since [backtab]
16395 should cover it (bug#1281).
16396
16397 * cus-edit.el (custom-show): Mark as obsolete.
16398
16399 * net/network-stream.el (network-stream-open-starttls): If GnuTLS
16400 negotiation fails, then possibly try again with a non-encrypted
16401 connection (bug#9017).
16402
16403 * mail/smtpmail.el (smtpmail-stream-type): Note that `plain' can
16404 be used.
16405
16406 2011-07-07 Richard Stallman <rms@gnu.org>
16407
16408 * mail/rmail.el (rmail-next-error-move): Use `compilation-message'
16409 property, and handle its changed format.
16410 Look for the correct line number.
16411 Use file's line contents (but not past first =) to find
16412 correct line in message.
16413
16414 2011-07-07 Kenichi Handa <handa@m17n.org>
16415
16416 * international/characters.el (build-unicode-category-table):
16417 Delete it.
16418 (unicode-category-table): Set it by unicode-property-table-internal.
16419
16420 * international/mule-cmds.el (char-code-property-alist): Move to
16421 to src/chartab.c.
16422 (get-char-code-property): Call unicode-property-table-internal to
16423 load a file. Call get-unicode-property-internal where necessary.
16424 (put-char-code-property): Call unicode-property-table-internal to
16425 load a file. Call put-unicode-property-internal where necessary.
16426 put-unicode-property-internal where necessary.
16427 (char-code-property-description):
16428 Call unicode-property-table-internal to load a file.
16429
16430 * international/charprop.el:
16431 * international/uni-bidi.el:
16432 * international/uni-category.el:
16433 * international/uni-combining.el:
16434 * international/uni-comment.el:
16435 * international/uni-decimal.el:
16436 * international/uni-decomposition.el:
16437 * international/uni-digit.el:
16438 * international/uni-lowercase.el:
16439 * international/uni-mirrored.el:
16440 * international/uni-name.el:
16441 * international/uni-numeric.el:
16442 * international/uni-old-name.el:
16443 * international/uni-titlecase.el:
16444 * international/uni-uppercase.el: Regenerate.
16445
16446 * loadup.el: Load international/charprop.el before
16447 international/characters.
16448
16449 2011-07-07 Chong Yidong <cyd@stupidchicken.com>
16450
16451 * window.el (next-buffer, previous-buffer): Signal an error if
16452 called from a minibuffer window.
16453
16454 * bindings.el: Revert 2011-07-04 change.
16455
16456 2011-07-06 Richard Stallman <rms@gnu.org>
16457
16458 * mail/rmailmm.el (rmail-mime-process): Use markers for buf positions.
16459 (rmail-mime-insert-bulk, rmail-mime-insert-text):
16460 Treat markers like ints.
16461 (rmail-mime-entity): Doc fix.
16462
16463 2011-07-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
16464
16465 * mail/smtpmail.el (smtpmail-default-smtp-server): Made into a
16466 defcustom again for backwards compatibility.
16467
16468 * simple.el (shell-command-on-region): Fill.
16469
16470 * dired-aux.el (dired-kill-line): Add a doc string.
16471
16472 * dabbrev.el (dabbrev-abbrev-char-regexp): Note that nil defaults
16473 to "\\sw\\|\\s_" (bug#358).
16474
16475 * dired.el (dired-mode): Clarify "unmark or unflag" (bug#8770).
16476 (dired-unmark-backward): Ditto.
16477 (dired-flag-backup-files): Ditto.
16478
16479 * dired-x.el (dired-mark-sexp): Ditto.
16480
16481 2011-07-06 Richard Stallman <rms@gnu.org>
16482
16483 * mail/rmailmm.el: Give entity a new slot, TRUNCATED.
16484 (rmail-mime-entity): New arg TRUNCATED.
16485 (rmail-mime-entity-truncated, rmail-mime-entity-set-truncated):
16486 New functions.
16487 (rmail-mime-save): Warn if entity is truncated.
16488 (rmail-mime-toggle-hidden): Likewise, for showing.
16489 (rmail-mime-process-multipart): Record when an entity is truncated.
16490
16491 * mail/rmailmm.el (rmail-search-mime-message): Don't get confused
16492 if ENTITY is a string.
16493
16494 2011-07-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
16495
16496 * emacs-lisp/lisp-mode.el (eval-defun-1): Update the documentation
16497 of faces when `M-C-x'-ing their definitions (bug#8378).
16498 Also clean up the code slightly.
16499
16500 * progmodes/grep.el (rgrep): Don't bind `process-connection-type',
16501 because that makes the colors go away.
16502
16503 * mail/sendmail.el (send-mail-function): Change the default to
16504 `sendmail-query-once'.
16505 (sendmail-query-once): Add an autoload cookie.
16506
16507 * net/network-stream.el (network-stream-open-starttls): Try using
16508 a plain connection even if the server offered STARTTLS, and we
16509 kinda wanted to use it, if Emacs doesn't have any STARTTLS
16510 capability. This should make smtpmail.el work in slightly more
16511 configurations.
16512
16513 2011-07-06 Michael Albinus <michael.albinus@gmx.de>
16514
16515 * net/tramp-compat.el (tramp-compat-pop-to-buffer-same-window):
16516 New defun.
16517 * net/tramp-cmds.el (tramp-append-tramp-buffers): Use it.
16518
16519 2011-07-06 Michael R. Mauger <mmaug@yahoo.com>
16520
16521 * progmodes/sql.el: Version 3.0
16522 (sql-product-alist): Add product :completion-object,
16523 :completion-column, and :statement attributes.
16524 (sql-mode-menu, sql-interactive-mode-map): Fix List entries.
16525 (sql-mode-syntax-table): Mark all punctuation.
16526 (sql-font-lock-keywords-builder): Temporarily remove fallback on
16527 ansi keywords.
16528 (sql-regexp-abbrev, sql-regexp-abbrev-list): New functions.
16529 (sql-mode-oracle-font-lock-keywords): Improve.
16530 (sql-oracle-show-reserved-words): New function for development.
16531 (sql-product-font-lock): Simplify for source code buffers.
16532 (sql-product-syntax-table, sql-product-font-lock-syntax-alist):
16533 New functions.
16534 (sql-highlight-product): Set product specific syntax table.
16535 (sql-mode-map): Add statement movement functions.
16536 (sql-ansi-statement-starters, sql-oracle-statement-starters):
16537 New variable.
16538 (sql-statement-regexp, sql-beginning-of-statement)
16539 (sql-end-of-statement, sql-signum): New functions.
16540 (sql-buffer-live-p, sql=find-sqli-buffer): Add CONNECTION parameter.
16541 (sql-show-sqli-buffer): Bug fix.
16542 (sql-interactive-mode): Store connection data as buffer local.
16543 (sql-connect): Add NEW-NAME parameter. Redesign interaction
16544 with sql-interactive-mode.
16545 (sql-save-connection): Save buffer local settings.
16546 (sql-connection-menu-filter): Change menu entry name.
16547 (sql-product-interactive): Bug fix.
16548 (sql-preoutput-hold): New variable.
16549 (sql-interactive-remove-continuation-prompt): Bug fixes.
16550 (sql-debug-redirect): New variable.
16551 (sql-str-literal): New function.
16552 (sql-redirect, sql-redirect-one, sql-redirect-value, sql-execute):
16553 Redesign.
16554 (sql-oracle-save-settings, sql-oracle-restore-settings)
16555 (sql-oracle-list-all, sql-oracle-list-table): New functions.
16556 (sql-completion-object, sql-completion-column)
16557 (sql-completion-sqlbuf): New variables.
16558 (sql-build-completions-1, sql-build-completions)
16559 (sql-try-completion): New functions.
16560 (sql-read-table-name): Use them.
16561 (sql-contains-names): New buffer local variable.
16562 (sql-list-all, sql-list-table): Use it.
16563 (sql-oracle-completion-types): New variable.
16564 (sql-oracle-completion-object, sql-sqlite-completion-object)
16565 (sql-postgres-completion-object): New functions.
16566
16567 2011-07-06 Glenn Morris <rgm@gnu.org>
16568
16569 * window.el (pop-to-buffer): Doc fix.
16570
16571 2011-07-06 Markus Heiser <markus.heiser@darmarit.de> (tiny change)
16572
16573 * progmodes/gud.el (gud-pdb-marker-regexp): Accept \r char (Bug#5653).
16574
16575 2011-07-06 Chong Yidong <cyd@stupidchicken.com>
16576
16577 * window.el (special-display-popup-frame): Doc fix (Bug#8853).
16578
16579 * info.el (Info-directory-toc-nodes): Minor doc fix (Bug#8833).
16580
16581 2011-07-05 Chong Yidong <cyd@stupidchicken.com>
16582
16583 * button.el (button): Inherit from link face. Suggested by Dan
16584 Nicolaescu.
16585
16586 2011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
16587
16588 * progmodes/gdb-mi.el: Fit in 80 columns.
16589 (gdb-setup-windows, gdb-restore-windows): Avoid other-window and
16590 switch-to-buffer.
16591
16592 * progmodes/which-func.el (which-func-ff-hook): Don't output a message
16593 if imenu is simply not configured (bug#8941).
16594
16595 2011-07-05 Ken Manheimer <ken.manheimer@gmail.com>
16596
16597 * allout.el (allout-post-undo-hook): New allout outline-change
16598 event hook to signal undo activity.
16599 (allout-post-command-business): Run allout-post-undo-hook if an
16600 undo just occurred.
16601 (allout-after-copy-or-kill-hook, allout-mode): Minor docstring changes.
16602 * allout-widgets.el (allout-widgets-after-undo-function):
16603 Ensure the integrity of the current item's decoration after it has been
16604 in the vicinity of an undo.
16605 (allout-widgets-mode): Include allout-widgets-after-undo-function
16606 on the new allout-post-undo-hook.
16607
16608 2011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
16609
16610 * emacs-lisp/lisp-mode.el (lisp-interaction-mode-abbrev-table):
16611 Let define-derived-mode define it.
16612 * emacs-lisp/derived.el (define-derived-mode): Try to avoid creating
16613 cycles of abbrev-table inheritance (bug#8998).
16614
16615 2011-07-05 Roland Winkler <winkler@gnu.org>
16616
16617 * textmodes/bibtex.el: Add support for biblatex.
16618 (bibtex-BibTeX-entry-alist, bibtex-biblatex-entry-alist)
16619 (bibtex-BibTeX-field-alist, bibtex-biblatex-field-alist)
16620 (bibtex-dialect-list, bibtex-dialect, bibtex-no-opt-remove-re)
16621 (bibtex-entry-alist, bibtex-field-alist): New variables.
16622 (bibtex-entry-field-alist): Obsolete alias for
16623 bibtex-BibTeX-entry-alist.
16624 (bibtex-entry-alist, bibtex-field-alist): New widgets.
16625 (bibtex-set-dialect): New command.
16626 (bibtex-entry-type, bibtex-entry-head)
16627 (bibtex-entry-maybe-empty-head, bibtex-any-valid-entry-type):
16628 Bind via bibtex-set-dialect.
16629 (bibtex-Article, bibtex-Book, bibtex-Booklet, bibtex-InBook)
16630 (bibtex-InCollection, bibtex-InProceedings, bibtex-Manual)
16631 (bibtex-MastersThesis, bibtex-Misc, bibtex-PhdThesis)
16632 (bibtex-Proceedings, bibtex-TechReport, bibtex-Unpublished):
16633 Define via bibtex-set-dialect.
16634 (bibtex-name-in-field, bibtex-remove-OPT-or-ALT):
16635 Obey bibtex-no-opt-remove-re.
16636 (bibtex-vec-push, bibtex-vec-incr): New functions.
16637 (bibtex-format-entry, bibtex-field-list)
16638 (bibtex-print-help-message, bibtex-validate)
16639 (bibtex-search-entries): Use new format of bibtex-entry-alist.
16640
16641 2011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
16642
16643 * progmodes/compile.el (compilation-goto-locus):
16644 * net/tramp-cmds.el (tramp-append-tramp-buffers):
16645 * bs.el (bs-cycle-next, bs-cycle-previous):
16646 * bookmark.el (bookmark-bmenu-list, bookmark-bmenu-2-window):
16647 * bindings.el (mode-line-other-buffer):
16648 * autoinsert.el (auto-insert):
16649 * arc-mode.el (archive-extract):
16650 * abbrev.el (edit-abbrevs): Fix some uses of switch-to-buffer.
16651
16652 2011-07-05 Juanma Barranquero <lekktu@gmail.com>
16653
16654 * emacs-lock.el (emacs-lock-mode): Fix typo in variable name.
16655 Fix check of `emacs-lock-unlockable-modes'.
16656 Coerce true values of `emacs-lock--try-unlocking' to t.
16657
16658 2011-07-05 Juanma Barranquero <lekktu@gmail.com>
16659
16660 * obsolete/old-emacs-lock.el: Rename from emacs-lock.el.
16661 * emacs-lock.el: New file.
16662
16663 2011-07-05 Julien Danjou <julien@danjou.info>
16664
16665 * textmodes/rst.el (rst-define-level-faces): Use `facep' rather
16666 than `boundp' to check if face is set.
16667
16668 2011-07-05 Juanma Barranquero <lekktu@gmail.com>
16669
16670 * register.el (registerv-make):
16671 * window.el (window-min-height): Fix typos in docstrings.
16672
16673 2011-07-05 Jan Djärv <jan.h.d@swipnet.se>
16674
16675 * dynamic-setting.el (dynamic-setting-handle-config-changed-event):
16676 Update doc string.
16677
16678 2011-07-04 Juanma Barranquero <lekktu@gmail.com>
16679
16680 * server.el (server-execute): Catch quit and call
16681 `server-return-error' to pass the error back to emacsclient and
16682 close the connection (bug#8942).
16683
16684 2011-07-04 Ken Manheimer <ken.manheimer@gmail.com>
16685
16686 * allout.el (allout-encrypt-unencrypted-on-saves): Do not provide
16687 insecure exception for current topic. Also note that auto-saves
16688 are handled differently.
16689
16690 (allout-auto-save-temporarily-disabled, allout-just-did-undo):
16691 State variables for tracking auto-save inhibition situation.
16692
16693 (allout-write-contents-hook-handler): Rename from
16694 'allout-write-file-hook-handler', and describe how it depends on
16695 write-contents-functions sensitivity to non-nil value to prevent
16696 file write.
16697
16698 (allout-auto-save-hook-handler): Remove. auto-save does not check
16699 this in individual buffers, only in the starting buffer, so this
16700 is not the right way for us to inhibit auto-save in a buffer
16701 according to its condition.
16702
16703 (allout-mode): Use new allout-write-contents-hook-handler, and
16704 only with write-contents-functions. Remove auto-save provisions -
16705 they're implemented elsewhere.
16706
16707 (allout-before-change-handler): If undo is in progress, note that
16708 for attention of allout-post-command-business.
16709
16710 (allout-post-command-business): If the command we're following was
16711 an undo, check for change in the status of encrypted items and
16712 adjust auto-save inhibitions accordingly.
16713
16714 (allout-toggle-subtree-encryption): Adjust auto-save inhibition
16715 according to whether there are or aren't any plain-text topics
16716 pending encryption.
16717
16718 (allout-inhibit-auto-save-info-for-decryption):
16719 Adjust buffer-saved-size and some allout state to inhibit auto-saves
16720 if there are plain-text topics pending encryption.
16721
16722 (allout-maybe-resume-auto-save-info-after-encryption): Adjust
16723 buffer-saved-size and some allout state to not inhibit auto-saves
16724 if there are no longer any plain-text topics pending encryption.
16725
16726 (allout-next-topic-pending-encryption, allout-encrypt-decrypted):
16727 No longer provide for exemption of the current topic.
16728
16729 2011-07-04 Juri Linkov <juri@jurta.org>
16730
16731 Add 7z operations to delete and save changed members (bug#8968).
16732 * arc-mode.el (archive-7z-expunge, archive-7z-update):
16733 New defcustoms.
16734 (archive-7z-write-file-member): New function.
16735 (archive-7z-summarize): Fix the number of dashes in the
16736 listing output.
16737
16738 2011-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
16739
16740 * pcmpl-linux.el (pcomplete-pare-list): Re-add, from pcomplete.el
16741 (bug#8958).
16742
16743 2011-07-04 Chong Yidong <cyd@stupidchicken.com>
16744
16745 * bindings.el: Ignore next-buffer and previous-buffer in
16746 minibuffer-local-map.
16747
16748 * font-lock.el (font-lock-builtin-face): Change light background
16749 color to dark slate blue (Bug#6693).
16750
16751 2011-07-04 Wang Diancheng <dcwang@kingbase.com.cn> (tiny change)
16752
16753 * progmodes/gdb-mi.el (gdb): Use completion-at-point.
16754
16755 2011-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
16756
16757 * files.el (find-file): Use pop-to-buffer-same-window (bug#8911).
16758 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
16759 Add switch-to-buffer.
16760
16761 2011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
16762
16763 * isearch.el (isearch-search-fun-function): Clarify further the
16764 meaning of the function returned.
16765
16766 2011-07-04 Michael Albinus <michael.albinus@gmx.de>
16767
16768 * net/tramp-cmds.el (tramp-cleanup-this-connection): New command.
16769
16770 * net/tramp-sh.el (tramp-color-escape-sequence-regexp): New defconst.
16771 (tramp-sh-handle-insert-directory, tramp-convert-file-attributes):
16772 Use it.
16773 (tramp-remote-path): Add "/bin" and "/usr/bin". On busyboxes,
16774 `tramp-default-remote-path' does not exist.
16775 (tramp-send-command-and-read): New optional argument NOERROR.
16776 (tramp-open-connection-setup-interactive-shell)
16777 (tramp-get-remote-path, tramp-get-remote-stat): Use it.
16778 (tramp-get-remote-readlink): Do not mask with `ignore-errors'.
16779 (tramp-process-sentinel): Flush also process' connection property.
16780 (tramp-sh-handle-start-file-process): Do not set process
16781 sentinel. It is done now ...
16782 (tramp-maybe-open-connection): ... here. (Bug#8929)
16783
16784 2011-07-04 MON KEY <monkey@sandpframing.com>
16785
16786 * play/animate.el (animate-string): Doc fixes and allow changing
16787 the buffer name (bug#5417).
16788
16789 2011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
16790
16791 * play/animate.el (animation-buffer-name): Rename from *animate*.
16792
16793 2011-07-04 Paul Eggert <eggert@cs.ucla.edu>
16794
16795 * emacs-lisp/timer.el: Use time-date fns rather than rolling our own.
16796 This is simpler and helps future-proof the code.
16797 (timer-until): Use time-subtract and float-time.
16798 (timer--time-less-p): Use time-less-p.
16799
16800 2011-07-04 Juanma Barranquero <lekktu@gmail.com>
16801
16802 * type-break.el (timep): Use the value of `float-time' to avoid a
16803 byte-compiler warning.
16804
16805 * server.el (server-eval-and-print): Return any result, even nil.
16806
16807 2011-07-03 Paul Eggert <eggert@cs.ucla.edu>
16808
16809 * type-break.el: Accept time formats that the builtins accept.
16810 (timep, type-break-time-difference): Accept any format that
16811 float-time accepts, rather than insisting on (HIGH LOW USECS) format.
16812 This is simpler and helps future-proof the code.
16813 (type-break-time-difference): Round rather than ignoring
16814 subseconds components.
16815
16816 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
16817
16818 * info.el (Info-apropos-matches): Make non-interactive, since it
16819 doesn't seem to do anything useful as a command (bug#8829).
16820
16821 2011-07-03 Chong Yidong <cyd@stupidchicken.com>
16822
16823 * frame.el (frame-background-mode, frame-set-background-mode):
16824 Move from faces.el.
16825 (frame-default-terminal-background): New function.
16826
16827 * custom.el (custom-push-theme): Don't record faces in `changed'
16828 theme; this doesn't work correctly for per-frame face settings.
16829 (disable-theme): Use face-set-after-frame-default to reset faces.
16830 (custom--frame-color-default): New function.
16831
16832 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
16833
16834 * dired.el (dired-flagging-regexp): Remove unused variable
16835 (bug#8769).
16836
16837 2011-03-29 Kevin Ryde <user42@zip.com.au>
16838
16839 * progmodes/compile.el (compilation-error-regexp-alist-alist):
16840 `perl-Test2' extend to match possible "fail #N" rep count
16841 (bug#8377).
16842
16843 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
16844
16845 * mail/feedmail.el (feedmail-buffer-to-smtpmail):
16846 `smtpmail-via-smtp' now returns the error instead of nil.
16847
16848 * isearch.el (isearch-search-fun-function): Clarify the doc string
16849 (bug#8101).
16850
16851 2011-07-03 Richard Kim <emacs18@gmail.com> (tiny change)
16852
16853 * textmodes/texnfo-upd.el (texinfo-insert-menu): Don't insert
16854 unnecessary spaces (bug#8987).
16855
16856 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
16857
16858 * net/network-stream.el (open-network-stream): Use the
16859 :end-of-capability command thoughout.
16860
16861 2011-07-03 Wolfgang Jenkner <wjenkner@inode.at> (tiny change)
16862
16863 * net/network-stream.el (open-network-stream): Add the
16864 :end-of-capability command parameter, used by pop3.el.
16865
16866 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
16867
16868 * dired.el (dired-map-over-marks): Refill the doc string (bug#6814).
16869
16870 * fringe.el (fringe-query-style): Remove redundant text " (type ?
16871 for list)" (bug#6475).
16872
16873 * files.el (file-expand-wildcards): Ignore non-readable
16874 sub-directories while trying to find matches instead of signaling
16875 an error (bug#6297).
16876
16877 * man.el (Man-reference-regexp): Allow matching possible
16878 word-wrapped references (bug#6289).
16879
16880 * vc/vc.el (vc-modify-change-comment): Change *VC-log* to *vc-log*
16881 for consistency with the other vc buffers (bug#6197).
16882 (vc-checkin): Ditto.
16883
16884 * vc/vc-arch.el: Fix comments to match the *VC-log* name change.
16885
16886 * longlines.el (longlines-mode): Document what ARG does (bug#6150).
16887
16888 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
16889
16890 * custom.el (defcustom): Clarify that :set is only used in the
16891 Customize user interface (bug#6089).
16892
16893 * progmodes/flymake.el (flymake-mode): If the buffer isn't
16894 associated with a file, refuse to run instead of erroring out
16895 (bug#6084).
16896
16897 * textmodes/fill.el (fill-region): Remove the "Ordinarily" from
16898 the doc string, since it appears that using `fill-column' always
16899 controls the width (bug#7845).
16900
16901 * simple.el (shell-command-on-region): Say where the error output
16902 went if `shell-command-default-error-buffer' is set (bug#6857).
16903
16904 2011-07-02 Ken Manheimer <ken.manheimer@gmail.com>
16905
16906 * allout.el (allout-yank-processing): Adjust cursor position for
16907 backwards-deleted space.
16908
16909 (allout-rebullet-heading): Register changes with
16910 allout-exposure-changed-hook, so the modified topic is properly
16911 decorated.
16912
16913 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
16914
16915 * minibuffer.el (completion-in-region): Document PREDICATE
16916 (bug#7136).
16917
16918 * info-look.el (info-lookup-add-help): Clarify that ARGS is a list
16919 of keyword/argument pairs (bug#6904).
16920
16921 * replace.el (multi-occur):
16922 Mention `multi-occur-in-matching-buffers' in the doc string (bug#7566).
16923
16924 2011-07-02 Drew Adams <drew.adams@oracle.com>
16925
16926 * dired.el (dired-mark-if): Make the message about whether it's
16927 marking or unmarking clearer (bug#8523).
16928
16929 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
16930
16931 * disp-table.el (display-table-print-array): New function.
16932 (describe-display-table): Use it to print the vectors more pretty
16933 (Bug#8859).
16934
16935 2011-07-02 Martin Rudalics <rudalics@gmx.at>
16936
16937 * window.el (window-state-get-1): Don't assign clone numbers.
16938 Add clone-of item to list of window parameters.
16939 (window-state-put-2): Don't process clone numbers.
16940 (display-buffer-alist): Fix doc-string.
16941
16942 2011-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
16943
16944 * subr.el (remq): Don't allocate if it's not needed.
16945 (keymap--menu-item-binding, keymap--menu-item-with-binding)
16946 (keymap--merge-bindings): New functions.
16947 (keymap-canonicalize): Use them to refine the canonicalization.
16948 * minibuffer.el (minibuffer-local-completion-map)
16949 (minibuffer-local-must-match-map): Move initialization from C.
16950 (minibuffer-local-filename-completion-map): Move initialization from C;
16951 don't inherit from anything here.
16952 (minibuffer-local-filename-must-match-map): Make obsolete.
16953 (completing-read-default): Use make-composed-keymap to combine
16954 minibuffer-local-filename-completion-map with either
16955 minibuffer-local-must-match-map or
16956 minibuffer-local-filename-completion-map.
16957
16958 2011-07-01 Glenn Morris <rgm@gnu.org>
16959
16960 * type-break.el (type-break-time-sum): Use dolist.
16961
16962 * textmodes/flyspell.el (flyspell-word-search-backward):
16963 Replace CL function.
16964
16965 2011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
16966
16967 * mouse.el (mouse--strip-first-event): New function.
16968 (function-key-map): Use it to map fringe clicks to normal clicks
16969 by default.
16970
16971 * vc/vc-bzr.el (vc-bzr-revision-keywords): Update.
16972 (vc-bzr-revision-completion-table): Add support for annotate and date.
16973
16974 * emacs-lisp/derived.el (define-derived-mode): Make abbrev-table
16975 inherit from parent.
16976
16977 2011-07-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
16978
16979 * dired-aux.el (dired-diff): Doc fixup (bug#8816).
16980 (dired-show-file-type): Doc fixup (bug#8818).
16981
16982 * dired.el (dired-mode): Fix up the doc string as suggested by
16983 Drew Adams (bug#8817).
16984
16985 * progmodes/flymake.el (flymake-find-file-hook): Add an `autoload'
16986 cookie, since the manual says that it should be possible to add
16987 this function to `find-file-hook' (bug#8709).
16988
16989 2011-07-01 Teodor Zlatanov <tzz@lifelogs.com>
16990
16991 * progmodes/cfengine.el: Moved all cfengine3.el functionality
16992 here. Noted Ted Zlatanov as the maintainer.
16993 (cfengine-common-settings, cfengine-common-syntax): New functions
16994 to set up common things between `cfengine-mode' and
16995 `cfengine3-mode'.
16996 (cfengine3-mode): New mode.
16997 (cfengine3-defuns cfengine3-defuns-regex
16998 (cfengine3-class-selector-regex cfengine3-category-regex)
16999 (cfengine3-vartypes cfengine3-font-lock-keywords)
17000 (cfengine3-beginning-of-defun, cfengine3-end-of-defun)
17001 (cfengine3-indent-line): Add from cfengine3.el.
17002
17003 2011-07-01 Michael Albinus <michael.albinus@gmx.de>
17004
17005 * net/tramp.el (tramp-encoding-command-interactive): New defcustom.
17006
17007 * net/tramp-sh.el (tramp-maybe-open-connection): Use it.
17008
17009 2011-07-01 Martin Rudalics <rudalics@gmx.at>
17010
17011 * window.el (same-window-buffer-names, same-window-regexps)
17012 (same-window-p, special-display-frame-alist)
17013 (special-display-popup-frame, special-display-function)
17014 (special-display-buffer-names, special-display-regexps)
17015 (special-display-p, pop-up-frame-alist, pop-up-frame-function)
17016 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
17017 (split-window-preferred-function, split-height-threshold)
17018 (split-width-threshold, even-window-heights)
17019 (display-buffer-mark-dedicated, window-splittable-p)
17020 (split-window-sensibly, window-safely-shrinkable-p):
17021 Un-obsolete.
17022 (display-buffer): Don't spread args with function specifier
17023 because special-display-popup-frame won't like it.
17024
17025 2011-07-01 Paul Eggert <eggert@cs.ucla.edu>
17026
17027 Time-stamp simplifications and fixes.
17028 These improve accuracy slightly, and future-proof the code
17029 against some potential changes to current-time format.
17030
17031 * woman.el (woman-decode-buffer, WoMan-log-end): Log fractional secs
17032 by using time-since and float-time.
17033
17034 * vc/ediff-util.el (ediff-calc-command-time): Use time-since
17035 and float-time. Say "NNN.NNN seconds" rather than "NNN seconds
17036 + NNN microseconds".
17037
17038 * type-break.el (type-break-time-sum): Rewrite using time-add.
17039
17040 * play/hanoi.el (hanoi-current-time-float): Remove.
17041 All uses replaced by float-time.
17042
17043 * nxml/rng-maint.el (rng-time-function): Rewrite using time-subtract.
17044 This yields a more-accurate answer.
17045 (rng-time-to-float): Remove; no longer needed.
17046
17047 * emacs-lisp/timer.el (timer-relative-time): Use time-add.
17048
17049 * calendar/timeclock.el (timeclock-seconds-to-time):
17050 Defalias to seconds-to-time, since they're the same thing.
17051
17052 * emacs-lisp/elp.el (elp-elapsed-time):
17053 * emacs-lisp/benchmark.el (benchmark-elapse):
17054 * allout-widgets.el (allout-elapsed-time-seconds): Use float-time.
17055
17056 2011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
17057
17058 * window.el (bury-buffer): Don't iconify the only frame.
17059 (switch-to-buffer): Revert to Emacs<23 behavior, i.e. do not fallback
17060 to pop-to-buffer. Use pop-to-buffer-same-frame if you don't like that.
17061
17062 2011-07-01 Chong Yidong <cyd@stupidchicken.com>
17063
17064 * eshell/em-smart.el (eshell-smart-display-navigate-list):
17065 Add mouse-yank-primary.
17066
17067 2011-07-01 Teodor Zlatanov <tzz@lifelogs.com>
17068
17069 * progmodes/cfengine3.el: New file to support CFEngine 3.x.
17070
17071 2011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
17072
17073 * emacs-lisp/find-func.el (find-library--load-name): New fun.
17074 (find-library-name): Use it to find relative load names when provided
17075 absolute file name (bug#8803).
17076
17077 2011-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
17078
17079 * textmodes/flyspell.el (flyspell-word): Consider words that
17080 differ only in case as potential doublons (bug#5687).
17081
17082 * net/soap-client.el (soap-invoke, soap-wsdl-resolve-references):
17083 Remove two rather uninteresting debugging-like messages to make
17084 debbugs.el more silent.
17085
17086 * comint.el (comint-password-prompt-regexp): Accept "Response" as
17087 a password-like phrase.
17088
17089 2011-06-30 Masatake YAMATO <yamato@redhat.com>
17090
17091 * progmodes/cc-guess.el: New file.
17092
17093 * progmodes/cc-langs.el (c-mode-menu): Add "Style..." submenu.
17094
17095 * progmodes/cc-styles.el (cc-choose-style-for-mode): New function
17096 derived from `c-basic-common-init'.
17097
17098 * progmodes/cc-mode.el (top-level): Require cc-guess.
17099 (c-basic-common-init): Use `cc-choose-style-for-mode'.
17100
17101 2011-06-30 Lawrence Mitchell <wence@gmx.li>
17102
17103 * progmodes/js.el (js-mode): Don't stomp on global settings (bug#8933).
17104
17105 2011-06-30 Alan Mackenzie <acm@muc.de>
17106
17107 * progmodes/cc-engine.el (c-guess-continued-construct):
17108 Correct the handling of template-args-cont, particularly for when font
17109 lock is disabled. Name this case as "CASE G".
17110
17111 2011-06-30 Ken Manheimer <ken.manheimer@gmail.com>
17112
17113 * allout.el (allout-yank-processing): Fix injection of extra space
17114 between bullet and non-whitespace character in first topic when
17115 pasting, ensuring that the actual spacing in the pasted topic
17116 following the bullet char is preserved. This extra space was
17117 causing pasted encrypted topics to get a decrypted status even
17118 when the content was actually still encrypted. Now the decryption
17119 status from before the paste is preserved.
17120
17121 (allout-flag-region): Set all allout overlays so they evaporate
17122 when reduced to zero length (evanescent), to prevent overlay
17123 leakage.
17124
17125 2011-06-30 Glenn Morris <rgm@gnu.org>
17126
17127 * w32-fns.el (w32-charset-info-alist): Declare.
17128
17129 * find-dired.el (find-grep-options): Simplify.
17130
17131 * term/ns-win.el (ns-set-resource): Declare.
17132
17133 * ses.el (row, col): Declare dynamic variables honestly.
17134
17135 * textmodes/reftex-parse.el (index-tags): Declare.
17136
17137 2011-06-30 Chong Yidong <cyd@stupidchicken.com>
17138
17139 * cus-edit.el (customize-push-and-save): New function.
17140
17141 * files.el (hack-local-variables-confirm): Use it.
17142
17143 * custom.el (load-theme): New arg NO-CONFIRM.
17144 Use customize-push-and-save (Bug#8720).
17145 (custom-enabled-themes): Doc fix.
17146
17147 * cus-theme.el (customize-create-theme)
17148 (custom-theme-merge-theme): Callers to load-theme changed.
17149
17150 2011-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
17151
17152 * thingatpt.el (thing-at-point-short-url-regexp): Require that
17153 short URLs have at least one dot in them (bug #7614).
17154
17155 * progmodes/grep.el (rgrep): Bind `process-connection-type' to
17156 nil, because using a pty is apparently too slow (bug #895).
17157
17158 2011-06-29 Lars Magne Ingebrigtsen <larsi@gnus.org>
17159
17160 * mail/sendmail.el (sendmail-query-once): New function.
17161 (sendmail-query-once-function): New variable.
17162
17163 2011-06-29 Glenn Morris <rgm@gnu.org>
17164
17165 * files.el (auto-mode-alist): Add .f03, .f08 for f90-mode.
17166
17167 * ses.el (top-level): Require cl when compiling.
17168 (ses-set-localvars): Fix error statement.
17169 Call it at compile time to silence a storm of warnings.
17170
17171 2011-06-29 Martin Rudalics <rudalics@gmx.at>
17172
17173 * window.el (normalize-live-buffer): Rename to
17174 window-normalize-buffer.
17175 (normalize-live-frame): Rename to window-normalize-frame.
17176 (normalize-any-window): Rename to window-normalize-any-window.
17177 (normalize-live-window): Rename to window-normalize-live-window.
17178 (make-window-atom): Rename to window-make-atom.
17179 (window-resize-reset): Rename to window--resize-reset.
17180 (window-resize-reset-1): Rename to window--resize-reset-1.
17181 (resize-mini-window): Rename to window--resize-mini-window.
17182 (resize-subwindows-skip-p): Rename to
17183 window--resize-subwindows-skip-p.
17184 (resize-subwindows-normal): Rename to
17185 window--resize-subwindows-normal.
17186 (resize-subwindows): Rename to window--resize-subwindows.
17187 (resize-other-windows): Rename to window--resize-siblings.
17188 (resize-this-window): Rename to window--resize-this-window.
17189 (resize-root-window): Rename to window--resize-root-window.
17190 (resize-root-window-vertically): Rename to
17191 window--resize-root-window-vertically.
17192 (normalize-buffer-to-display): Rename to
17193 window-normalize-buffer-to-display.
17194 (normalize-buffer-to-switch-to): Rename to
17195 window-normalize-buffer-to-switch-to.
17196 Correspondingly update all callers of the functions listed
17197 above.
17198 (display-buffer-alist, display-buffer-normalize-arguments)
17199 (display-buffer-normalize-options, display-buffer)
17200 (display-buffer-alist-set): Use "function" instead of
17201 "fun-with-args".
17202
17203 2011-06-28 Chong Yidong <cyd@stupidchicken.com>
17204
17205 * mail/emacsbug.el (report-emacs-bug): Handle non-gnu bug
17206 addresses more clearly. Add hyperlinks for bug-gnu-emacs and
17207 debbugs.gnu.org. Mention acknowledgment email.
17208
17209 2011-06-28 Lars Magne Ingebrigtsen <larsi@gnus.org>
17210
17211 * mail/smtpmail.el (smtpmail-send-it): Leave off changing the
17212 buffer multibyteness, since it shouldn't matter.
17213
17214 2011-06-28 Martin Rudalics <rudalics@gmx.at>
17215
17216 * window.el (display-buffer-in-side-window): Handle dedicated
17217 windows as in display-buffer-reuse-window.
17218 (display-buffer-normalize-alist): Use value of override
17219 specifier.
17220 (display-buffer-normalize-specifiers): Use value of
17221 other-window-means-other-frame specifier.
17222 (display-buffer-alist): Rewrite some texts in widgets.
17223 (display-buffer): Spread arguments when calling function
17224 specified by fun-with-args.
17225
17226 2011-06-28 Deniz Dogan <deniz@dogan.se>
17227
17228 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
17229 Unnest `let'.
17230
17231 * textmodes/css-mode.el (css-font-lock-keywords): Fix grouped
17232 selectors (Bug#5732).
17233 (css-proprietary-nmstart-re): Use `regexp-opt'.
17234
17235 2011-06-27 Jari Aalto <jari.aalto@cante.net>
17236
17237 * eshell/em-ls.el: Display `ls -l' dates in ISO format (Bug#8440).
17238 (eshell-ls-date-format): New defcustom.
17239 (eshell-ls-file): Use it.
17240
17241 2011-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
17242
17243 * help-fns.el (describe-variable): Fix message for terminal-local vars.
17244
17245 2011-06-27 Katsumi Yamaoka <yamaoka@jpl.org>
17246
17247 * net/ange-ftp.el: Allow loading .gz files (Bug#6923).
17248 (ange-ftp-make-tmp-name): New arg.
17249 (ange-ftp-file-local-copy): Use it.
17250
17251 2011-06-27 Jambunathan K <kjambunathan@gmail.com>
17252
17253 * tar-mode.el (tar-untar-buffer): Set coding-system-for-write to
17254 no-conversion (Bug#8870).
17255
17256 2011-06-27 Martin Rudalics <rudalics@gmx.at>
17257
17258 * window.el (window-right, window-left, window-child)
17259 (window-child-count, window-last-child)
17260 (window-iso-combination-p, walk-window-tree-1)
17261 (window-atom-check-1, window-tree-1, delete-window)
17262 (window-state-get-1, display-buffer-even-window-sizes): Adapt to
17263 new naming conventions - window-vchild, window-hchild,
17264 window-next and window-prev are now called window-top-child,
17265 window-left-child, window-next-sibling and window-prev-sibling
17266 respectively.
17267 (resize-window-reset): Rename to window-resize-reset.
17268 (resize-window-reset-1): Rename to window-resize-reset-1.
17269 (resize-window): Rename to window-resize.
17270 (window-min-height, window-min-width)
17271 (resize-mini-window, resize-this-window, resize-root-window)
17272 (resize-root-window-vertically, adjust-window-trailing-edge)
17273 (enlarge-window, shrink-window, maximize-window)
17274 (minimize-window, delete-window, quit-restore-window)
17275 (split-window, balance-windows, balance-windows-area-adjust)
17276 (balance-windows-area, window-state-put-2)
17277 (display-buffer-even-window-sizes, display-buffer-set-height)
17278 (display-buffer-set-width, set-window-text-height)
17279 (fit-window-to-buffer): Rename all "resize-window" prefixed
17280 calls to use the "window-resize" prefix convention.
17281 (display-buffer-alist): Fix symbol for label specifier.
17282 (display-buffer-reuse-window): Set reuse-dedicated to cdr of
17283 corresponding specifier.
17284 Reported by Juanma Barranquero <lekktu@gmail.com>.
17285
17286 2011-06-27 Vincent Belaïche <vincentb1@users.sourceforge.net>
17287
17288 * ses.el (ses-destroy-cell-variable-range): Fix heading comment
17289 convention.
17290 (ses-call-printer): Does not pass an empty string to formatter when the
17291 cell is empty to keep from barking printer Calc math-format-value.
17292
17293 2011-06-27 Richard Stallman <rms@gnu.org>
17294
17295 * battery.el (battery-mode-line-limit): New variable.
17296 (battery-update): Handle it.
17297
17298 * mail/rmailmm.el (rmail-mime-process-multipart):
17299 Handle truncated messages.
17300
17301 2011-06-27 Glenn Morris <rgm@gnu.org>
17302
17303 * progmodes/flymake.el (flymake-err-line-patterns):
17304 Allow for column numbers in the ant/javac pattern. (Bug#8866)
17305
17306 2011-06-27 Vincent Belaïche <vincentb1@users.sourceforge.net>
17307
17308 * ses.el (ses-relocate-range): Keep rest of arguments for ses-range.
17309 (ses--clean-!, ses--clean-_): New functions.
17310 (ses-range): Add configurability of readout order, and conversion
17311 to Calc vector.
17312
17313 * ses.el (ses-repair-cell-reference-all): New function.
17314 (ses-cell-symbol): Set macro as safe, so that it can be used in
17315 formulas.
17316
17317 * ses.el: Update cycle detection algorithm.
17318 (ses-localvars): Add ses--Dijkstra-attempt-nb and
17319 ses--Dijkstra-weight-bound, and initial values thereof when applicable.
17320 (ses-set-localvars): New function.
17321 (ses-make-cell): Add property-list as a cell element.
17322 (ses-cell-property-get-fun, ses-cell-property-get)
17323 (ses-cell-property-delq-fun, ses-cell-property-set-fun)
17324 (ses-cell-property-pop-fun, ses-cell-property-get-handle-fun):
17325 New functions.
17326 (ses-cell-property-set, ses-cell-property-pop)
17327 (ses-cell-property-get-handle): New macro.
17328 (ses-cell-property-handle-car, ses-cell-property-handle-setcar):
17329 New aliases, used for code readability.
17330 (ses-calculate-cell, ses-update-cells): Use Dijkstra algorithm for
17331 cycle detection.
17332 (ses-self-reference-early-detection): New defcustom.
17333 (ses-formula-references): Robustify against self-referring cells.
17334 (ses-mode): Use ses-set-localvars.
17335 (ses-command-hook): Add call to ses-initialize-Dijkstra-attempt
17336 before lauching the update processing.
17337 (ses-initialize-Dijkstra-attempt): New function.
17338 (ses-recalculate-cell): Update for cycle detection based on
17339 Dijkstra algorithm.
17340
17341 * ses.el: Fix commenting and indenting convention.
17342
17343 2011-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
17344
17345 * bs.el (bs-cycle-next): Complete last change.
17346
17347 2011-06-27 Drew Adams <drew.adams@oracle.com>
17348
17349 * faces.el (list-faces-display): Add help-mode-map to output (bug#8939).
17350
17351 2011-06-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
17352
17353 * net/network-stream.el (network-stream-open-starttls):
17354 Don't re-get capabilities unless we've reestablished connection.
17355 (network-stream-open-starttls): Fix stupid typo with gnutls-clii.
17356
17357 * mail/smtpmail.el (smtpmail-via-smtp): Bind coding-system-for-*
17358 to binary to possibly avoid line encoding issues on Windows (among
17359 other things).
17360
17361 2011-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
17362
17363 * net/network-stream.el (open-network-stream): Return an :error
17364 saying what the problem was, if possible.
17365
17366 * mail/smtpmail.el (smtpmail-via-smtp): Report the error from the
17367 server.
17368
17369 * net/network-stream.el (network-stream-open-starttls): If we
17370 wanted to use STARTTLS, and the server offered it, but we weren't
17371 able to because we had no STARTTLS support, then close the connection.
17372 (open-network-stream): Return an :error element, if present.
17373
17374 2011-06-26 Chong Yidong <cyd@stupidchicken.com>
17375
17376 * hl-line.el (hl-line-sticky-flag): Doc fix.
17377 (global-hl-line-sticky-flag): New option (Bug#8323).
17378 (global-hl-line-highlight): Obey it.
17379
17380 * vc/vc.el (vc-revert-show-diff): Default to t.
17381
17382 2011-06-26 Ken Manheimer <ken.manheimer@gmail.com>
17383
17384 * allout-widgets.el (allout-widgets-post-command-business):
17385 Stop decorating intermediate isearch matches. They're not being
17386 undecorated when an isearch is continued past, and isearch
17387 automatically collapses them. This leads to "widget leaks", where
17388 decorated items accumulate in collapsed areas. Lines with lots of
17389 hidden widgets can slow down cursor travel, substantially.
17390 Too much complicated machinery would be needed to ensure undecoration,
17391 so we're doing without this nicety.
17392
17393 (allout-widgets-tally-string): Don't try to do a hash-table-count
17394 of allout-widgets-tally when it's nil. This eliminates spurious "Error
17395 during redisplay: (wrong-type-argument hash-table-p nil)" warnings in
17396 *Messages* when allout-widgets-maintain-tally is t.
17397
17398 2011-06-26 Martin Rudalics <rudalics@gmx.at>
17399
17400 * window.el (display-buffer-normalize-argument): Rename to
17401 display-buffer-normalize-arguments. Handle special meaning of
17402 LABEL argument. Respect special-display-function when popping up
17403 a new frame. Fix code searching for a window showing the buffer
17404 on another frame.
17405 (display-buffer-normalize-specifiers):
17406 Call display-buffer-normalize-arguments.
17407 (display-buffer-in-window): Don't undedicate the window if its
17408 buffer remains the same.
17409 Reported by Drew Adams <drew.adams@oracle.com>.
17410 (display-buffer-alist): Add choice for same-window macro
17411 specfier.
17412 (display-buffer): Mention special meaning of LABEL argument in
17413 doc-string. Fix quoting. Don't pop up a new frame even as
17414 fallback.
17415
17416 2011-06-26 Juanma Barranquero <lekktu@gmail.com>
17417
17418 * bs.el (bs-cycle-next): Pass current buffer to `bury-buffer' to
17419 avoid deleting the current window in some cases (bug#8911).
17420
17421 2011-06-26 Andreas Schwab <schwab@linux-m68k.org>
17422
17423 * emacs-lisp/smie.el (smie-bnf->prec2): Fix last change.
17424 (Bug#8934)
17425
17426 2011-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
17427
17428 * net/network-stream.el (network-stream-open-starttls):
17429 Use built-in TLS support if `gnutls-available-p' is true.
17430 (network-stream-open-tls): Ditto.
17431
17432 2011-06-26 Leo Liu <sdl.web@gmail.com>
17433
17434 * register.el (registerv): New struct.
17435 (registerv-make): New function.
17436 (jump-to-register, describe-register-1, insert-register):
17437 Support the jump-func, print-func and insert-func slot of a registerv
17438 struct. (Bug#8415)
17439
17440 2011-06-26 Chong Yidong <cyd@stupidchicken.com>
17441
17442 * vc/vc.el (vc-revert-show-diff): New defcustom.
17443 (vc-diff-internal): New arg specifying diff buffer.
17444 (vc-revert): Obey vc-revert-show-diff. If we show a diff, don't
17445 reuse an existing *vc-diff* buffer (Bug#8927).
17446
17447 * progmodes/cperl-mode.el (cperl-mode): Derive from prog-mode.
17448
17449 2011-06-26 Glenn Morris <rgm@gnu.org>
17450
17451 * progmodes/f90.el (f90-critical-indent): New option.
17452 (f90-font-lock-keywords-2, f90-blocks-re, f90-end-block-re)
17453 (f90-start-block-re, f90-mode-abbrev-table): Add block, critical.
17454 (f90-mode): Doc fix.
17455 (f90-looking-at-critical, f90-looking-at-end-critical): New funcs.
17456 (f90-no-block-limit, f90-calculate-indent, f90-end-of-block)
17457 (f90-beginning-of-block, f90-next-block, f90-indent-region)
17458 (f90-match-end): Handle block, critical.
17459
17460 2011-06-25 Glenn Morris <rgm@gnu.org>
17461
17462 * calendar/diary-lib.el (diary-included-files): Doc fix.
17463 (diary-include-files): New function, extracted from
17464 diary-include-other-diary-files and diary-mark-included-diary-files.
17465 (diary-include-other-diary-files, diary-mark-included-diary-files):
17466 Just call diary-include-files.
17467 (diary-mark-entries): Reset diary-included-files on first call.
17468
17469 * calendar/diary-lib.el (diary-mark-entries)
17470 (diary-mark-included-diary-files):
17471 Visit included diary-files in temp buffers.
17472
17473 * progmodes/f90.el (f90-keywords-re, f90-font-lock-keywords-1)
17474 (f90-blocks-re, f90-program-block-re, f90-end-block-re)
17475 (f90-start-block-re, f90-imenu-generic-expression)
17476 (f90-looking-at-program-block-start, f90-no-block-limit):
17477 Add support for submodules.
17478
17479 * progmodes/f90.el (f90-keywords-re, f90-keywords-level-3-re)
17480 (f90-procedures-re, f90-constants-re): Add some F2008 stuff.
17481
17482 2011-06-25 Eli Zaretskii <eliz@gnu.org>
17483
17484 * net/ange-ftp.el (ange-ftp-insert-file-contents): Let-bind
17485 buffer-file-type before setting its value, to avoid disastrous
17486 global effects on decoding files for DOS/Windows systems. (Bug#8780)
17487
17488 2011-06-25 Juanma Barranquero <lekktu@gmail.com>
17489
17490 * allout.el (allout-unload-function): Pass -1 to `allout-mode'.
17491
17492 * ses.el (ses-unload-function):
17493 * emacs-lisp/re-builder.el (re-builder-unload-function): Simplify.
17494
17495 * proced.el (proced-unload-function):
17496 * progmodes/cperl-mode.el (cperl-mode-unload-function): Remove.
17497
17498 2011-06-25 Andreas Rottmann <a.rottmann@gmx.at>
17499
17500 * server.el (server-create-window-system-frame): Add parameters arg.
17501 (server-process-filter): Doc fix. Handle frame-parameters.
17502
17503 2011-06-25 Juanma Barranquero <lekktu@gmail.com>
17504
17505 Fix bug#8730, bug#8781.
17506
17507 * loadhist.el (unload--set-major-mode): New function.
17508 (unload-feature): Use it.
17509
17510 * progmodes/python.el (python-after-info-look): Add autoload cookie.
17511 (python-unload-function): New function.
17512
17513 2011-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
17514
17515 * mail/rmail.el (rmail-show-message-1): Use restore-buffer-modified-p.
17516
17517 2011-06-25 Giuseppe Scrivano <gscrivano@gnu.org>
17518
17519 * net/browse-url.el (browse-url-firefox-program): Add icecat to
17520 the candidates list.
17521
17522 2011-06-24 Juanma Barranquero <lekktu@gmail.com>
17523
17524 * progmodes/verilog-mode.el (verilog-mode): Fix test for bound variable.
17525
17526 2011-06-23 Richard Stallman <rms@gnu.org>
17527
17528 * mail/rmail.el: Going to grep hit in Rmail buffer finds the message.
17529 (rmail-variables): Set next-error-move-function.
17530 (rmail-what-message): Take argument POS.
17531 (rmail-next-error-move): New function.
17532
17533 2011-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
17534
17535 * emacs-lisp/smie.el (smie-bnf->prec2): Give more understandable error
17536 messages for adjacent non-terminals.
17537
17538 2011-06-23 Richard Stallman <rms@gnu.org>
17539
17540 * mail/rmail.el (rmail-retry-ignored-headers): Add message-id.
17541 (rmail-show-message-1): Preserve buffer modified flag.
17542 (rmail-start-mail): Don't specify use of rmail-mail-return;
17543 that's done by mail-bury now.
17544 (rmail-mail-return): Handle arg NEWBUF.
17545
17546 2011-06-23 Michael Albinus <michael.albinus@gmx.de>
17547
17548 * net/tramp-sh.el (tramp-method-out-of-band-p): Check, whether
17549 SIZE is a number.
17550
17551 2011-06-23 Martin Rudalics <rudalics@gmx.at>
17552
17553 * window.el (get-lru-window, get-mru-window)
17554 (get-largest-window): Never return a minibuffer window.
17555 (display-buffer-pop-up-window): Fix a bug that could lead to
17556 reusing the minibuffer window.
17557 (display-buffer): Pass original specifier argument to
17558 display-buffer-function instead of the normalized one.
17559 Reported by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
17560
17561 2011-06-22 Leo Liu <sdl.web@gmail.com>
17562
17563 * minibuffer.el (completing-read-function)
17564 (completing-read-default): Move from minibuf.c.
17565
17566 2011-06-22 Richard Stallman <rms@gnu.org>
17567
17568 * mail/sendmail.el (mail-bury): If Rmail is in use, return nicely
17569 to Rmail even if not started by a special Rmail command.
17570
17571 * mail/rmailmm.el (rmail-insert-mime-forwarded-message):
17572 Copy the buffer currently showing just one message.
17573
17574 2011-06-22 Roland Winkler <winkler@gnu.org>
17575
17576 * textmodes/bibtex.el (bibtex-entry-update): Use mapc.
17577 (bibtex-clean-entry): First delete the old key so that a
17578 customized algorithm for generating the new key does not get
17579 confused by the old key.
17580 (bibtex-url): Obey regexp of first step.
17581 (bibtex-search-entries): Do not use add-to-list with local
17582 list-var.
17583
17584 2011-06-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
17585
17586 * mail/smtpmail.el (smtpmail-try-auth-methods): If the user has
17587 stored a user name, then query for the password first, instead of
17588 waiting for SMTP to give an error message and the trying again.
17589
17590 2011-06-22 Lawrence Mitchell <wence@gmx.li>
17591
17592 * net/browse-url.el (browse-url-xdg-open): Use 0, rather than nil
17593 BUFFER in call-process.
17594
17595 2011-06-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
17596
17597 * mail/smtpmail.el (smtpmail-via-smtp): Make sure we don't send
17598 QUIT twice.
17599 (smtpmail-try-auth-methods): Require user name and password from
17600 auth-source.
17601
17602 2011-06-22 Martin Rudalics <rudalics@gmx.at>
17603
17604 * window.el (display-buffer-default-specifiers)
17605 (display-buffer-alist): Remove entries for pop-up-frame-alist.
17606 Suggested by Katsumi Yamaoka <yamaoka@jpl.org>.
17607 (split-window): Normalize SIDE argument (Bug#8916).
17608
17609 * frame.el (pop-up-frame-alist, pop-up-frame-function)
17610 (special-display-frame-alist, special-display-popup-frame):
17611 Remove duplicate declarations. These are now in window.el.
17612
17613 2011-06-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
17614
17615 * mail/smtpmail.el (smtpmail-via-smtp):
17616 Set :use-starttls-if-possible so that we always use STARTTLS if the
17617 server supports it. SMTP servers that support STARTTLS commonly
17618 require it.
17619
17620 * net/network-stream.el (network-stream-open-starttls): Support
17621 upgrading to STARTTLS always, even if we don't have built-in support.
17622 (open-network-stream): Add the :always-query-capabilities keyword.
17623
17624 * mail/smtpmail.el: Rewritten to do opportunistic STARTTLS
17625 upgrades with `open-network-stream', and rely solely on
17626 auth-source for all credentials. Big changes throughout the file,
17627 but in particular:
17628 (smtpmail-auth-credentials): Remove.
17629 (smtpmail-starttls-credentials): Remove.
17630 (smtpmail-via-smtp): Check for servers saying they want AUTH after
17631 MAIL FROM, too.
17632
17633 * net/network-stream.el (network-stream-open-starttls):
17634 Provide support for client certificates both for external and built-in
17635 STARTTLS.
17636 (auth-source): Require.
17637 (open-network-stream): Document the :client-certificate keyword.
17638 (network-stream-certificate): Change cert-cert to cert and
17639 cert-key to key.
17640
17641 2011-06-21 Michael Albinus <michael.albinus@gmx.de>
17642
17643 * net/tramp-cache.el (top): Don't load the persistency file when
17644 "emacs -Q" has been called.
17645
17646 2011-06-21 Tim Harper <timcharper@gmail.com>
17647
17648 * term/ns-win.el (ns-initialize-window-system):
17649 Set application-specific `ApplePressAndHoldEnabled' system
17650 resource to NO as it is not yet supported by the NS port.
17651
17652 2011-06-21 Juanma Barranquero <lekktu@gmail.com>
17653
17654 * misc.el (list-dynamic-libraries--refresh): Compute header here...
17655 (list-dynamic-libraries): ...not here.
17656
17657 2011-06-21 Leo Liu <sdl.web@gmail.com>
17658
17659 * subr.el (sha1): Implement sha1 using secure-hash.
17660
17661 2011-06-21 Martin Rudalics <rudalics@gmx.at>
17662
17663 * window.el (display-buffer-alist): In default value do not
17664 enforce searching a window on any but the selected frame.
17665 Reported by Katsumi Yamaoka <yamaoka@jpl.org>.
17666 (display-buffer-select-window): Remove function.
17667 (display-buffer-in-window): When a window on another frame gets
17668 reused, do not select it any more but just raise its frame if
17669 necessary (Bug#8851) and (Bug#8856).
17670 (display-buffer-normalize-options): Handle pop-up-frames related
17671 options more faithfully.
17672 (pop-to-buffer): Don't rely on `display-buffer' selecting the
17673 window if it is on another frame.
17674 (display-buffer-alist, display-buffer-default-specifiers):
17675 Don't make new frame unsplittable by default.
17676 (display-buffer-normalize-argument): Fix doc-string typo and use
17677 'same-frame-other-window instead of 'other-window when associating
17678 with display-buffer-macro-specifiers.
17679
17680 2011-06-21 Vincent Belaïche <vincent.b.1@hotmail.fr>
17681
17682 * play/5x5.el (5x5-solve-rotate-left, 5x5-solve-rotate-right):
17683 New functions.
17684 (5x5-mode-map, 5x5-mode-menu): Bind them.
17685 (5x5-draw-grid): Tweak the solver's rendering.
17686
17687 2011-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
17688
17689 * progmodes/compile.el (compilation-error-regexp-alist-alist): Rename
17690 `caml' to `python-tracebacks-and-caml'; allow leading tabs (bug#8585).
17691
17692 2011-06-21 Drew Adams <drew.adams@oracle.com>
17693
17694 * menu-bar.el: Use function variable instead of switch-to-buffer.
17695 (menu-bar-select-buffer-function): New variable.
17696 (menu-bar-update-buffers): Use it (bug#8876).
17697
17698 2011-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
17699
17700 * emacs-lisp/bytecomp.el (add-to-list): Add handler to check the
17701 variable's status.
17702
17703 2011-06-20 Jan Djärv <jan.h.d@swipnet.se>
17704
17705 * x-dnd.el (x-dnd-version-from-flags)
17706 (x-dnd-more-than-3-from-flags): New functions that handle long-as-cons
17707 and long as number (Bug#8899).
17708 (x-dnd-handle-xdnd): Call functions above (Bug#8899).
17709
17710 2011-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
17711
17712 * minibuffer.el (completion-metadata): Add `metadata' to the alist.
17713 (completion-try-completion, completion-all-completions): Compute the
17714 metadata argument if it's missing; make it optional (bug#8795).
17715
17716 * wid-edit.el: Use lex-bind and move towards completion-at-point.
17717 (widget-complete): Use new :completion-function property.
17718 (widget-completions-at-point): New function.
17719 (default): Use :completion-function instead of :complete.
17720 (widget-default-completions): Rename from widget-default-complete;
17721 Rewrite.
17722 (widget-string-complete, widget-file-complete, widget-color-complete):
17723 Remove functions.
17724 (file, symbol, function, variable, coding-system, color):
17725 * international/mule-cmds.el (default-input-method, charset)
17726 (language-info-custom-alist):
17727 * cus-edit.el (face): Use new property :completions.
17728
17729 * progmodes/pascal.el (pascal-completions-at-point): New function.
17730 (pascal-mode): Use it.
17731 (pascal-mode-map): Use completion-at-point.
17732 (pascal-toggle-completions): Make obsolete.
17733 (pascal-complete-word, pascal-show-completions):
17734 * progmodes/octave-mod.el (octave-complete-symbol):
17735 Redefine as obsolete alias.
17736 * progmodes/octave-inf.el (inferior-octave-completion-at-point):
17737 Signal absence of completion info for old Octave,
17738 (inferior-octave-complete): Redefine as obsolete alias.
17739 * progmodes/meta-mode.el: Use lexical-binding and completion-at-point.
17740 (meta-completions-at-point): Rename from meta-complete-symbol and
17741 adapt it for use on completion-at-point-functions.
17742 (meta-common-mode): Use it.
17743 (meta-looking-at-backward, meta-match-buffer): Remove.
17744 (meta-complete-symbol): Redefine as obsolete alias.
17745 (meta-common-mode-map): Use completion-at-point.
17746 * progmodes/make-mode.el: Use lexical-binding and completion-at-point.
17747 (makefile-mode-map): Use completion-at-point.
17748 (makefile-completions-at-point): Rename from makefile-complete and
17749 adapt it for use on completion-at-point-functions.
17750 (makefile-mode): Use it.
17751 (makefile-complete): Redefine as obsolete alias.
17752
17753 2011-06-20 Deniz Dogan <deniz@dogan.se>
17754
17755 * net/rcirc.el: Delete trailing whitespaces once and for all.
17756
17757 2011-06-20 Daniel Colascione <dan.colascione@gmail.com>
17758
17759 * emacs-lisp/syntax.el (syntax-ppss): Further improve docstring.
17760
17761 2011-06-19 Chong Yidong <cyd@stupidchicken.com>
17762
17763 * files.el (auto-mode-alist): Entry for m2-mode (Bug#8852).
17764
17765 * info.el (Info-apropos-toc-nodes): Minor doc fix (Bug#8833).
17766
17767 2011-06-19 Martin Rudalics <rudalics@gmx.at>
17768
17769 * window.el (display-buffer-other-window-means-other-frame):
17770 Call display-buffer-normalize-alist.
17771 (display-buffer-normalize-specifiers-1): Rename to
17772 display-buffer-normalize-argument. New argument other-frame.
17773 Rewrite.
17774 (display-buffer-normalize-specifiers-2): Rename to
17775 display-buffer-normalize-options.
17776 (display-buffer-normalize-alist-1): New function.
17777 (display-buffer-normalize-specifiers-3): Rename to
17778 display-buffer-normalize-alist.
17779 Call display-buffer-normalize-alist-1.
17780 (display-buffer-normalize-options-inhibit): New variable.
17781 (display-buffer-normalize-specifiers): Rewrite calling
17782 display-buffer-normalize-alist,
17783 display-buffer-normalize-argument, and
17784 display-buffer-normalize-options. Don't call the latter if
17785 display-buffer-normalize-options-inhibit is non-nil.
17786 (frame-auto-delete): New option.
17787 (window-deletable-p): Use frame-auto-delete.
17788 (window-list-no-nils, window-state-ignored-parameters)
17789 (window-state-get-1, window-state-get, window-state-put-list)
17790 (window-state-put-1, window-state-put-2, window-state-put):
17791 New functions.
17792 (display-buffer-normalize-options): Move special-display-p group
17793 after pop-up-frame group (Bug#8851) and (Bug#8856).
17794
17795 2011-06-18 Chong Yidong <cyd@stupidchicken.com>
17796
17797 * emacs-lisp/rx.el (rx-constituents): Add support for numbered
17798 groups (Bug#8776).
17799 (rx-submatch-n): New function.
17800 (rx): Document it.
17801
17802 * dired-x.el (dired-mark-unmarked-files): Fix interactive spec
17803 (Bug#8768).
17804
17805 * replace.el (occur-mode-map): Set occur-edit-mode binding to "e".
17806
17807 * textmodes/fill.el (default-justification): Add :safe (Bug#8879).
17808
17809 * cus-face.el (custom-declare-face): Call custom-theme-recalc face
17810 anytime existing face settings are present (Bug#8889).
17811
17812 * progmodes/delphi.el (delphi-mode-syntax-table): Use defvar.
17813 (delphi-mode): Use define-derived-mode to inherit from prog-mode.
17814 Remove unused argument.
17815
17816 2011-06-18 Martin Rudalics <rudalics@gmx.at>
17817
17818 * window.el (display-buffer-default-specifiers):
17819 Remove pop-up-frame. Add pop-up-window-min-height,
17820 pop-up-window-min-width, and another reuse-window specifier
17821 (Bug#8882). Reported by Dan Nicolaescu <dann@gnu.org>.
17822 (display-buffer-normalize-specifiers-2):
17823 Handle split-height-threshold and split-width-threshold also when
17824 pop-up-windows is unset. Add a reuse-window specifier for the
17825 case popping up a new window fails.
17826 (special-display-popup-frame): Remove double quoting.
17827 (display-buffer-normalize-specifiers-1): Fix thinko.
17828
17829 2011-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
17830
17831 * shell.el (shell-completion-vars): Set pcomplete-termination-string
17832 according to comint-completion-addsuffix.
17833
17834 * pcomplete.el: Convert to lexical binding and fix bug#8819.
17835 (pcomplete-suffix-list): Mark as obsolete.
17836 (pcomplete-completions-at-point): Capture pcomplete-norm-func and
17837 pcomplete-seen in the closure.
17838 (pcomplete-comint-setup): Setup completion-at-point as well.
17839 (pcomplete--entries): New function.
17840 (pcomplete--env-regexp): New var.
17841 (pcomplete-entries): Rewrite to work with partial-completion and
17842 without relying on pcomplete-suffix-list.
17843 (pcomplete-pare-list): Remove, unused.
17844
17845 2011-06-17 Martin Rudalics <rudalics@gmx.at>
17846
17847 * window.el (display-buffer-alist): Set pop-up-window-min-height
17848 and pop-up-window-min-width in default value. Reported by
17849 Thierry Volpiatto <thierry.volpiatto@gmail.com>. New specifier
17850 other-window-means-other-frame.
17851 (display-buffer-macro-specifiers): Comment out entry for
17852 other-window specifier.
17853 (display-buffer-other-window-means-other-frame): New function.
17854 (display-buffer-normalize-specifiers-1): New arguments
17855 buffer-name and label. Treat other-window case specially.
17856 (display-buffer-normalize-specifiers-2): Treat other-window case
17857 specially.
17858 (display-buffer-normalize-specifiers-3): New function.
17859 (display-buffer-normalize-specifiers):
17860 Call display-buffer-normalize-specifiers-3.
17861
17862 2011-06-17 Martin Rudalics <rudalics@gmx.at>
17863
17864 * window.el (same-window-p): Fix two typos introduced when
17865 adding with-no-warnings.
17866 (display-buffer-normalize-specifiers-1): Don't check
17867 pop-up-frames for 'unset initialization.
17868 (display-buffer-normalize-specifiers-2): Major rewrite using
17869 special-display-p and same-window-p (Bug#8851) and (Bug#8856).
17870 (pop-up-frames, display-buffer-reuse-frames)
17871 (display-buffer-mark-dedicated): Don't initialize to 'unset.
17872 Suggested by David Engster <deng@randomsample.de>.
17873 (even-window-heights): Initialize to 'unset.
17874 (display-buffer-alist-set): Handle new 'unset initializations.
17875 (display-buffer-macro-specifiers): Don't pop up a new frame in the
17876 other window case.
17877
17878 2011-06-16 Martin Rudalics <rudalics@gmx.at>
17879
17880 * window.el (display-buffer-normalize-specifiers-1):
17881 Respect current value of pop-up-frames for most reasonable values of
17882 second argument of display-buffer (Bug#8865).
17883 (switch-to-buffer-same-frame, switch-to-buffer-other-window)
17884 (switch-to-buffer-other-window-same-frame)
17885 (switch-to-buffer-other-frame): Fix doc-strings. Reported by Drew
17886 Adams (Bug#8875).
17887 (display-buffer): Don't check noninteractive when calling
17888 display-buffer-pop-up-frame.
17889 (display-buffer-pop-up-frame): Never pop up a frame in
17890 noninteractive mode (Bug#8857).
17891 (enlarge-window, shrink-window): Don't report an error when the
17892 window can't be resized as requested (Bug#8862).
17893
17894 2011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
17895
17896 * pcmpl-rpm.el (pcomplete/rpm): Minor simplification.
17897
17898 * emacs-lisp/debug.el (debug): Don't leave the buffer in Debugger.
17899
17900 * abbrev.el (define-abbrev-table): Don't add a table multiple times.
17901
17902 2011-06-15 Alan Mackenzie <acm@muc.de>
17903
17904 * progmodes/cc-fonts.el (c-font-lock-declarations): 1: Whilst checking
17905 for declarators, disable knr checking to speed up for normal files.
17906 2: Refactor, replacing a sequence of nested if forms by a cond form.
17907
17908 2011-06-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
17909
17910 * net/network-stream.el (open-network-stream): Add the keyword
17911 :always-query-capabilities for the case where you want to force a
17912 `plain' network connection, but the protocol still requires the
17913 capabilitiy command (i.e., SMTP and EHLO).
17914
17915 * subr.el (process-live-p): Rename from `process-alive-p' for
17916 consistency with other `-live-p' functions.
17917
17918 2011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
17919
17920 * window.el (same-window-buffer-names, same-window-regexps)
17921 (special-display-frame-alist, special-display-popup-frame)
17922 (special-display-function, special-display-buffer-names)
17923 (special-display-regexps, pop-up-frame-alist)
17924 (pop-up-frame-function, pop-up-frames, display-buffer-reuse-frames)
17925 (pop-up-windows, split-window-preferred-function)
17926 (split-height-threshold, split-width-threshold, even-window-heights)
17927 (display-buffer-mark-dedicated): Don't encourage the use of
17928 display-buffer-alist from Elisp code.
17929
17930 2011-06-15 Dan Nicolaescu <dann@ics.uci.edu>
17931
17932 * progmodes/python.el (python-mode): Derive from prog-mode.
17933 * progmodes/ps-mode.el (ps-mode):
17934 * progmodes/mixal-mode.el (mixal-mode):
17935 * progmodes/cfengine.el (cfengine-mode):
17936 * progmodes/ld-script.el (ld-script-mode): Likewise.
17937
17938 2011-06-15 Martin Rudalics <rudalics@gmx.at>
17939
17940 * window.el (display-buffer-alist): Trim default value to avoid
17941 popping up a new frame (Bug#8857) or reusing an arbitrary window
17942 on another frame.
17943 (display-buffer): Do not fall back on popping up a new frame in
17944 batch mode (Bug#8857).
17945
17946 2011-06-14 Chong Yidong <cyd@stupidchicken.com>
17947
17948 * cus-theme.el (describe-theme-1): Use custom-theme-p.
17949 (custom-theme-summary): New function.
17950 (customize-themes): Use it.
17951
17952 2011-06-13 Glenn Morris <rgm@gnu.org>
17953
17954 * cus-dep.el (custom-make-dependencies): Use up command-line-args-left.
17955
17956 2011-06-13 Martin Rudalics <rudalics@gmx.at>
17957
17958 * help.el (help-window): Remove variable.
17959 (help-window-point-marker, temp-buffer-max-height)
17960 (temp-buffer-resize-mode, help-window-select): Rewrite doc-strings.
17961 (help-print-return-message): Don't set help-window.
17962 (resize-temp-buffer-window): Rewrite cod eand doc-string.
17963 (help-window-setup-finish): Remove.
17964 (help-window-display-message, help-window-setup)
17965 (with-help-window): Major rewrite based on new
17966 display-buffer-window variable.
17967
17968 * help-mode.el (help-mode-finish): Remove help-window related
17969 code.
17970
17971 * view.el (view-exits-all-viewing-windows): Remove reference to
17972 view-return-to-alist in doc-string.
17973 (view-return-to-alist): Make obsolete.
17974 (view-buffer): Call pop-to-buffer-same-window and remove
17975 undo-window code.
17976 (view-buffer-other-window): Call pop-to-buffer-other-window and
17977 simplify code. Ignore second argument.
17978 (view-buffer-other-frame): Call pop-to-buffer-other-frame and
17979 simplify code. Ignore second argument.
17980 (view-return-to-alist-update): Make obsolete.
17981 (view-mode-enter): Rename second argument to QUIT-RESTORE.
17982 Rewrite using quit-restore window parameters.
17983 (view-mode-exit): Rename second argument to EXIT-ONLY.
17984 Rewrite using quit-restore-window.
17985 (View-exit, View-exit-and-edit, View-leave, View-quit)
17986 (View-quit-all, View-kill-and-leave): Call view-mode-exit with
17987 appropriate arguments.
17988 (view-end-message): Use quit-restore window parameter.
17989
17990 * window.el (display-buffer-function): Rewrite doc-string.
17991 (display-buffer-window, display-buffer-alist): New variables.
17992 (display-buffer-split-specifiers)
17993 (display-buffer-side-specifiers)
17994 (display-buffer-macro-specifiers): New constants.
17995 (display-buffer-even-window-sizes, display-buffer-set-height)
17996 (display-buffer-set-width, display-buffer-select-window)
17997 (display-buffer-in-window, display-buffer-reuse-window)
17998 (display-buffer-split-window-1, display-buffer-split-window)
17999 (display-buffer-split-atom-window, display-buffer-pop-up-window)
18000 (display-buffer-pop-up-frame, display-buffer-pop-up-side-window)
18001 (display-buffer-in-side-window, normalize-buffer-to-display)
18002 (display-buffer-normalize-specifiers-1)
18003 (display-buffer-normalize-specifiers-2)
18004 (display-buffer-normalize-specifiers, display-buffer-frame):
18005 New functions.
18006 (display-buffer): Major rewrite.
18007 (display-buffer-other-window, display-buffer-other-frame)
18008 (pop-to-buffer, switch-to-buffer-other-window)
18009 (switch-to-buffer-other-frame): Rewrite.
18010 (display-buffer-same-window, display-buffer-same-frame)
18011 (display-buffer-same-frame-other-window)
18012 (pop-to-buffer-same-window, pop-to-buffer-same-frame)
18013 (pop-to-buffer-other-window)
18014 (pop-to-buffer-same-frame-other-window)
18015 (pop-to-buffer-other-frame, switch-to-buffer-same-frame)
18016 (switch-to-buffer-other-window-same-frame): New functions.
18017 (same-window-p, special-display-p): Rewrite disabling warnings.
18018 Make obsolete.
18019 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
18020 (display-buffer-mark-dedicated): Initialize to symbol 'unset.
18021 Make obsolete
18022 (same-window-buffer-names, same-window-regexps)
18023 (special-display-frame-alist, special-display-popup-frame)
18024 (special-display-function, special-display-buffer-names)
18025 (special-display-regexps, pop-up-frame-alist)
18026 (pop-up-frame-function, split-window-preferred-function)
18027 (split-height-threshold, split-width-threshold)
18028 (even-window-heights): Make obsolete.
18029
18030 2011-06-12 Glenn Morris <rgm@gnu.org>
18031
18032 * term/xterm.el (terminal-init-xterm): `version' may be nil. (Bug#8838)
18033 Misc simplifications.
18034
18035 2011-06-12 Martin Rudalics <rudalics@gmx.at>
18036
18037 * window.el (window-safely-shrinkable-p): Restore function which
18038 was inadvertently removed in change from 2011-06-11. Declare as
18039 obsolete.
18040
18041 * calendar/calendar.el (calendar-generate-window):
18042 Use window-iso-combined-p instead of combination of one-window-p and
18043 window-safely-shrinkable-p.
18044
18045 2011-06-12 Glenn Morris <rgm@gnu.org>
18046
18047 * progmodes/fortran.el (fortran-mode-syntax-table):
18048 * progmodes/f90.el (f90-mode-syntax-table):
18049 Set % to punctuation. (Bug#8820)
18050 (f90-find-tag-default): Remove, no longer needed.
18051
18052 2011-06-12 Daniel Colascione <dan.colascione@gmail.com>
18053
18054 * emacs-lisp/syntax.el (syntax-ppss): Clarify which items are invalid.
18055
18056 2011-06-11 Chong Yidong <cyd@stupidchicken.com>
18057
18058 * image.el (image-animated-p): Return animation delay in seconds.
18059 Avoid bit manipulation in Lisp; use `delay' entry in the metadata.
18060 (image-animate-timeout): Remove DELAY argument. Don't assume
18061 every subimage has the same delay; get it from image-animated-p.
18062 (image-animate): Caller changed.
18063
18064 2011-06-11 Michael Albinus <michael.albinus@gmx.de>
18065
18066 * net/tramp.el (tramp-debug-message): Add `tramp-with-progress-reporter'
18067 to ignored backtrace functions.
18068
18069 2011-06-11 Glenn Morris <rgm@gnu.org>
18070
18071 * calendar/appt.el (appt-disp-window-function): Doc fix.
18072 (appt-check): Handle overlapping appointments. (Bug#8337)
18073
18074 2011-06-11 Martin Rudalics <rudalics@gmx.at>
18075
18076 * window.el (window-tree-1, window-tree): New functions, moving
18077 the latter to window.el.
18078 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
18079 (bw-find-tree-sub-1, bw-l, bw-t, bw-r, bw-b, bw-dir, bw-eqdir)
18080 (bw-refresh-edges): Remove.
18081 (balance-windows-1, balance-windows-2): New functions.
18082 (balance-windows): Rewrite in terms of window tree functions,
18083 balance-windows-1 and balance-windows-2.
18084 (bw-adjust-window): Remove.
18085 (balance-windows-area-adjust): New function with functionality of
18086 bw-adjust-window but using resize-window.
18087 (set-window-text-height): Rewrite doc-string.
18088 Use normalize-live-window and resize-window.
18089 (enlarge-window-horizontally, shrink-window-horizontally):
18090 Rename argument to DELTA.
18091 (window-buffer-height): New function.
18092 (fit-window-to-buffer, shrink-window-if-larger-than-buffer):
18093 Rewrite using new window resize routines.
18094 (kill-buffer-and-window, mouse-autoselect-window-select):
18095 Use ignore-errors instead of condition-case.
18096 (quit-window): Call delete-frame instead of delete-windows-on
18097 for the only buffer on frame.
18098
18099 2011-06-10 Martin Rudalics <rudalics@gmx.at>
18100
18101 * loadup.el (top-level): Load window before files for the sake
18102 of replace-buffer-in-windows.
18103
18104 * files.el (read-buffer-to-switch)
18105 (switch-to-buffer-other-window)
18106 (switch-to-buffer-other-frame, display-buffer-other-frame):
18107 Move to window.el.
18108
18109 * simple.el (get-next-valid-buffer, last-buffer, next-buffer)
18110 (previous-buffer): Move to window.el.
18111
18112 * bindings.el (unbury-buffer): Move to window.el.
18113
18114 * window.el (delete-other-windows-vertically): Move after
18115 definition of delete-other-windows.
18116 (other-window, delete-windows-on, replace-buffer-in-windows):
18117 Move here from window.c.
18118 (record-window-buffer, unrecord-window-buffer)
18119 (set-window-buffer-start-and-point, switch-to-prev-buffer)
18120 (switch-to-next-buffer): New functions.
18121 (get-next-valid-buffer, last-buffer, next-buffer): Move here
18122 from simple.el. Call switch-to-next-buffer.
18123 (previous-buffer): Move here from simple.el.
18124 Call switch-to-prev-buffer.
18125 (bury-buffer): Move here from buffer.c. Switch to previous
18126 buffer when window cannot be deleted.
18127 (unbury-buffer): Move here from bindings.el.
18128 (ctl-x-map): Move binding for other-window from window.c to
18129 here.
18130 (read-buffer-to-switch, switch-to-buffer-other-window)
18131 (switch-to-buffer-other-frame): Move here from files.el.
18132 (normalize-buffer-to-switch-to): New functions.
18133 (switch-to-buffer): Move here from buffer.c.
18134 Use read-buffer-to-switch and normalize-buffer-to-switch-to.
18135
18136 2011-06-10 Martin Rudalics <rudalics@gmx.at>
18137
18138 * window.el (window-min-height, window-min-width): Move here
18139 from window.c. Add defcustoms and rewrite doc-strings.
18140 (resize-mini-window, resize-window): New functions.
18141 (adjust-window-trailing-edge, enlarge-window, shrink-window):
18142 Move here from window.c.
18143 (maximize-window, minimize-window): New functions.
18144 (delete-window, delete-other-windows, split-window): Move here
18145 from window.c.
18146 (window-split-min-size): New function.
18147 (split-window-keep-point): Mention split-window-above-each-other
18148 instead of split-window-vertically.
18149 (split-window-above-each-other, split-window-vertically):
18150 Rename split-window-vertically to split-window-above-each-other
18151 and provide defalias for old definition.
18152 (split-window-side-by-side, split-window-horizontally):
18153 Rename split-window-horizontally to split-window-side-by-side
18154 and provide defalias for the old definition.
18155 (ctl-x-map): Move bindings for delete-window,
18156 delete-other-windows and enlarge-window here from window.c.
18157 Replace bindings for split-window-vertically and
18158 split-window-horizontally by bindings for
18159 split-window-above-each-other and split-window-side-by-side.
18160
18161 * cus-start.el (all): Remove entries for window-min-height and
18162 window-min-width. Add entries for window-splits and
18163 window-nest.
18164
18165 2011-06-09 Glenn Morris <rgm@gnu.org>
18166
18167 * calendar/appt.el (appt-mode-line): New function.
18168 (appt-check, appt-disp-window): Use it.
18169
18170 * files.el (hack-one-local-variable-eval-safep):
18171 Allow minor-modes with explicit +/-1 arguments.
18172
18173 2011-06-09 Teodor Zlatanov <tzz@lifelogs.com>
18174
18175 * term/xterm.el (xterm): Add defgroup.
18176 (xterm-extra-capabilities): Add defcustom to supply known xterm
18177 capabilities, skip querying them, or query them (default).
18178 (terminal-init-xterm): Use it.
18179 (terminal-init-xterm-modify-other-keys): New function to set up
18180 modifyOtherKeys support to simplify `terminal-init-xterm'.
18181
18182 2011-06-09 Martin Rudalics <rudalics@gmx.at>
18183
18184 * window.el (resize-window-reset, resize-window-reset-1)
18185 (resize-subwindows-skip-p, resize-subwindows-normal)
18186 (resize-subwindows, resize-other-windows, resize-this-window)
18187 (resize-root-window, resize-root-window-vertically)
18188 (window-deletable-p, window-or-subwindow-p)
18189 (frame-root-window-p): New functions.
18190
18191 2011-06-09 Glenn Morris <rgm@gnu.org>
18192
18193 * net/ange-ftp.el (ange-ftp-switches-ok): New function.
18194 (ange-ftp-get-files): Use it.
18195
18196 2011-06-09 Alexander Klimov <alserkli@inbox.ru> (tiny change)
18197
18198 * mail/sendmail.el (mail-recover-1, mail-recover):
18199 * files.el (recover-file, recover-session):
18200 Handle dired-listing-switches not being just a single short option.
18201
18202 2011-06-09 Glenn Morris <rgm@gnu.org>
18203
18204 * calendar/appt.el (appt-display-message, appt-disp-window):
18205 Handle lists of appointments.
18206
18207 2011-06-08 Martin Rudalics <rudalics@gmx.at>
18208
18209 * window.el (one-window-p): Move down in code.
18210 Rewrite doc-string.
18211 (window-current-scroll-bars): Rewrite doc-string.
18212 Normalize live window argument.
18213 (walk-windows, get-window-with-predicate, count-windows):
18214 Rewrite doc-string. Use window-list-1.
18215 (window-in-direction-2, window-in-direction, get-mru-window):
18216 New functions.
18217
18218 2011-06-08 Reuben Thomas <rrt@sc3d.org>
18219
18220 * progmodes/flymake.el (flymake-compilation-prevents-syntax-check):
18221 Doc fix (Bug#8713).
18222
18223 2011-06-08 Chong Yidong <cyd@stupidchicken.com>
18224
18225 * repeat.el (repeat-on-final-keystroke): Fix type (Bug#8696).
18226
18227 2011-06-08 Juanma Barranquero <lekktu@gmail.com>
18228
18229 * loadhist.el (unload-feature-special-hooks):
18230 Add `comint-output-filter-functions'.
18231
18232 2011-06-08 Ivan Kanis <gnu@kanis.fr>
18233
18234 * calendar/appt.el (appt-check): Move some initializations into the let.
18235
18236 2011-06-08 Martin Rudalics <rudalics@gmx.at>
18237
18238 * window.el (window-height): Defalias to window-total-height.
18239 (window-width): Defalias to window-body-width.
18240
18241 2011-06-07 Chong Yidong <cyd@stupidchicken.com>
18242
18243 * image-mode.el (image-toggle-animation): New command.
18244 (image-mode-map): Bind it to RET.
18245 (image-mode): Update message.
18246 (image-toggle-display-image): Avoid a spurious cache flush.
18247 (image-transform-rotation): Doc fix.
18248 (image-transform-properties): Return quickly in the normal case.
18249 (image-animate-loop): Rename from image-animate-max-time.
18250
18251 * image.el (image-animate-max-time): Move to image-mode.el.
18252 (create-animated-image): Remove unnecessary function.
18253 (image-animate): Rename from image-animate-start. New arg.
18254 (image-animate-stop): Remove; just use image-animate-timer.
18255 (image-animate-timer): Use car-safe.
18256 (image-animate-timeout): Rename argument.
18257
18258 2011-06-07 Martin Rudalics <rudalics@gmx.at>
18259
18260 * window.el (get-lru-window, get-largest-window): Move here from
18261 window.c. Rename first argument to ALL-FRAMES.
18262 Rephrase doc-strings.
18263 (get-buffer-window-list): Rewrite using window-list-1.
18264 Rephrase doc-string.
18265 (window-safe-min-height, window-safe-min-width): New constants.
18266 (window-size-ignore, window-min-size, window-min-size-1)
18267 (window-sizable, window-sizable-p, window-size-fixed-1)
18268 (window-size-fixed-p, window-min-delta-1, window-min-delta)
18269 (window-max-delta-1, window-max-delta, window-resizable)
18270 (window-resizable-p, window-total-height, window-total-width)
18271 (window-body-width): New functions.
18272 (window-full-height-p, window-full-width-p): Rewrite using
18273 window-total-size.
18274 (window-body-height): Rewrite using window-body-size.
18275
18276 2011-06-06 Martin Rudalics <rudalics@gmx.at>
18277
18278 * window.el (window-right, window-left, window-child)
18279 (window-child-count, window-last-child, window-any-p)
18280 (normalize-live-buffer, normalize-live-frame)
18281 (normalize-any-window, normalize-live-window)
18282 (window-iso-combination-p, window-iso-combined-p)
18283 (window-iso-combinations)
18284 (walk-window-tree-1, walk-window-tree, walk-window-subtree)
18285 (windows-with-parameter, window-with-parameter)
18286 (window-atom-root, make-window-atom, window-atom-check-1)
18287 (window-atom-check, window-side-check, window-check):
18288 New functions.
18289 (ignore-window-parameters, window-sides, window-sides-vertical)
18290 (window-sides-slots): New variables.
18291 (window-size-fixed): Move down in code. Minor doc-string fix.
18292
18293 2011-06-05 Andreas Schwab <schwab@linux-m68k.org>
18294
18295 * comint.el (comint-dynamic-complete-as-filename)
18296 (comint-dynamic-complete-filename): Correctly call
18297 completion-in-region.
18298
18299 2011-06-05 Deniz Dogan <deniz@dogan.se>
18300
18301 * net/rcirc.el (rcirc-prompt-for-encryption): Fix bug introduced
18302 in last change.
18303
18304 2011-06-05 Deniz Dogan <deniz@dogan.se>
18305
18306 * net/rcirc.el (rcirc-prompt-for-encryption): New function.
18307 (rcirc): Use it to prompt for encryption.
18308
18309 2011-06-05 Roland Winkler <winkler@gnu.org>
18310
18311 * textmodes/bibtex.el (bibtex-search-buffer): New variable.
18312 (bibtex-search-entries): New command bound to C-c C-a.
18313 (bibtex-display-entries): New function.
18314
18315 2011-06-05 Roland Winkler <winkler@gnu.org>
18316
18317 * textmodes/bibtex.el (bibtex-generate-url-list): Fix docstring.
18318 (bibtex-insert-kill): After yanking insert newline if necessary.
18319 (bibtex-initialize): Call bibtex-string-files-init only once.
18320 (bibtex-mode): Do not call easy-menu-add.
18321 (bibtex-validate-globally): Use save-excursion in bibtex buffers.
18322 (bibtex-yank): Set arg properly if nil.
18323
18324 2011-06-05 Roland Winkler <winkler@gnu.org>
18325
18326 * textmodes/bibtex.el (bibtex-search-entry-globally):
18327 New variable.
18328 (bibtex-search-entry): Use it.
18329
18330 2011-06-05 Roland Winkler <winkler@gnu.org>
18331
18332 * textmodes/bibtex.el (bibtex-entry-format): New option
18333 sort-fields.
18334 (bibtex-format-entry, bibtex-reformat): Honor this option.
18335 (bibtex-parse-entry): Return fields in proper order.
18336
18337 2011-06-05 Juanma Barranquero <lekktu@gmail.com>
18338
18339 * doc-view.el (doc-view-remove-if): Move computation of result out
18340 of `dolist' to silence misleading lexical-binding warning.
18341
18342 2011-06-04 Chong Yidong <cyd@stupidchicken.com>
18343
18344 * emacs-lisp/timer.el (timer-activate): Remove unused arg.
18345 (timer-activate, timer-activate-when-idle): Doc fix (Bug#8793).
18346
18347 2011-06-04 Michael Albinus <michael.albinus@gmx.de>
18348
18349 * net/tramp-sh.el (tramp-find-shell): Apply workaround also for
18350 "SunOS 5.10".
18351
18352 2011-06-04 Michael Albinus <michael.albinus@gmx.de>
18353
18354 * net/tramp.el (tramp-set-completion-function, tramp-parse-rhosts)
18355 (tramp-parse-shosts, tramp-parse-sconfig, tramp-parse-shostkeys)
18356 (tramp-parse-hosts, tramp-parse-passwd, tramp-parse-netrc)
18357 (tramp-parse-putty):
18358 * net/tramp-sh.el (tramp-completion-function-alist-rsh)
18359 (tramp-completion-function-alist-ssh)
18360 (tramp-completion-function-alist-telnet)
18361 (tramp-completion-function-alist-su)
18362 (tramp-completion-function-alist-putty): Set `tramp-autoload'
18363 cookie.
18364
18365 * net/tramp-ftp.el:
18366 * net/tramp-sh.el:
18367 * net/tramp-smb.el: Set `tramp-autoload' cookie, and eval after
18368 load "tramp.el" `tramp-set-completion-function'.
18369
18370 2011-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
18371
18372 * shell.el: Require and use pcomplete.
18373 (shell-dynamic-complete-functions): Add pcomplete-completions-at-point.
18374 (shell-completion-vars): Set pcomplete-default-completion-function.
18375
18376 2011-06-04 Deniz Dogan <deniz@dogan.se>
18377
18378 * iswitchb.el (iswitchb-window-buffer-p): Use `member' instead of
18379 `memq' (Bug#8799).
18380
18381 2011-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
18382
18383 * subr.el (make-progress-reporter): Add "..." by default (bug#8785).
18384
18385 2011-06-02 Juanma Barranquero <lekktu@gmail.com>
18386
18387 * bs.el (bs--mark-unmark, bs--nth-wrapper):
18388 * mpc.el (mpc-select-extend, mpc-songpointer-context):
18389 * vc/log-view.el (log-view-beginning-of-defun):
18390 * vc/smerge-mode.el (smerge-apply-resolution-patch)
18391 (smerge-refine-forward, smerge-refine-chopup-region):
18392 Silence warning for unused `dotimes' counter variables.
18393
18394 2011-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
18395
18396 * net/tramp.el (tramp-with-progress-reporter): Rename from
18397 with-progress-reporter. Use `declare'.
18398 * net/tramp-smb.el:
18399 * net/tramp-sh.el:
18400 * net/tramp-gvfs.el: Update all uses.
18401
18402 2011-06-02 Jay Belanger <jay.p.belanger@gmail.com>
18403
18404 * calc/calc.el (calc-kill-stack-buffer): Make sure that the trail
18405 buffer isn't killed before making it current.
18406
18407 2011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
18408
18409 Silence various byte-compiler warnings.
18410 * emacs-lisp/byte-run.el (make-obsolete-variable): New argument
18411 `access-type' and new obsolescence format.
18412 * emacs-lisp/bytecomp.el (byte-compile-warn-obsolete): Adjust to
18413 new format.
18414 (byte-compile-check-variable): New `access-type' argument.
18415 Only warn if the access-type is obsolete.
18416 (byte-compile-dynamic-variable-bind, byte-compile-variable-ref)
18417 (byte-compile-variable-set): Adjust callers.
18418 * help-fns.el (describe-variable): Adjust to new obsolescence format.
18419 * mail/sendmail.el (mail-mailer-swallows-blank-line): Only mark
18420 setting it as obsolete.
18421 * simple.el (minibuffer-completing-symbol):
18422 * font-lock.el (font-lock-beginning-of-syntax-function): Only mark read
18423 access as obsolete.
18424 * minibuffer.el (minibuffer-completing-file-name): Don't make it
18425 obsolete yet.
18426 * international/quail.el (quail-mouse-choose-completion): Remove unused
18427 code referring to obsolete var.
18428 (quail-choose-completion-string): Remove.
18429 * server.el (server-clients-with, server-kill-buffer-query-function)
18430 (server-kill-emacs-query-function): Silence "unused `proc'" warnings.
18431 * proced.el (proced-send-signal):
18432 * emacs-lisp/lisp.el (lisp-complete-symbol):
18433 Replace completion-annotate-function with completion-extra-properties.
18434
18435 2011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
18436
18437 * simple.el (goto-line): Use read-number.
18438 (overriding-map-is-bound): Remove.
18439 (saved-overriding-map): Change default.
18440 (save&set-overriding-map): Rename from ensure-overriding-map-is-bound;
18441 Take the map as argument.
18442 (universal-argument, negative-argument, digit-argument): Use it.
18443 (restore-overriding-map): Adjust.
18444 (do-auto-fill): Use fill-forward-paragraph.
18445 (keyboard-quit): Don't signal an error when debug-on-quit is non-nil.
18446
18447 * minibuffer.el (minibuffer-inactive-mode-map): New var.
18448 (minibuffer-inactive-mode): New major mode.
18449 * mouse.el (mouse-drag-region): Remove the "mouse-1 pops up
18450 the *Messages* buffer" hack.
18451 (mouse-popup-menubar): Don't burp if the event is a normal key.
18452
18453 Miscellaneous tweaks.
18454 * emacs-lisp/cl-macs.el (dolist, dotimes): Use the same strategy for
18455 lexical scoping as in subr.el's dolist and dotimes.
18456 * emacs-lisp/bytecomp.el (byte-compile-unfold-bcf):
18457 Silence compiler warning.
18458 * thingatpt.el (forward-whitespace): Trivial coding style fix.
18459 * subr.el (with-output-to-temp-buffer): Provide an edebug spec.
18460 * international/ccl.el (ccl-compile): Trivial simplification.
18461 * help-fns.el (help-do-arg-highlight): Silence compiler warning.
18462 * emacs-lisp/testcover.el (testcover-end): Remove spurious
18463 `printflag' argument.
18464 * emacs-lisp/byte-run.el (make-obsolete, make-obsolete-variable):
18465 Purecopy the whole obsolescence data.
18466
18467 2011-06-01 Leo Liu <sdl.web@gmail.com>
18468
18469 * net/rcirc.el (rcirc-decode-coding-system): Revert last change;
18470 improve doc-string as suggested by Marco Pessotto
18471 <melmothx@gmail.com>.
18472 (rcirc-print): Fix last change.
18473
18474 2011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
18475
18476 * minibuffer.el (complete-with-action): Return nil for the metadata and
18477 boundaries of non-functional tables.
18478 (completion-table-dynamic): Return nil for the metadata.
18479 (completion-table-with-terminator): Add default case, using
18480 complete-with-action.
18481 (completion--metadata): New function.
18482 (completion-all-sorted-completions, minibuffer-completion-help): Use it
18483 to try and avoid pathological performance problems.
18484 (completion--embedded-envvar-table): Return `category' metadata.
18485
18486 2011-05-31 Lars Magne Ingebrigtsen <larsi@gnus.org>
18487
18488 * subr.el (process-alive-p): New tiny convenience function.
18489
18490 2011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
18491
18492 * emacs-lisp/debug.el (debug): Save&restore not just the buffer's
18493 content but also its previous major mode.
18494
18495 2011-05-31 Helmut Eller <eller.helmut@gmail.com>
18496
18497 * emacs-lisp/debug.el (debug): Restore the previous content of the
18498 *Backtrace* buffer when we exit with C-M-c.
18499
18500 2011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
18501
18502 * minibuffer.el: Add metadata method to completion tables.
18503 (completion-category-overrides): New defcustom.
18504 (completion-metadata, completion--field-metadata)
18505 (completion-metadata-get, completion--styles)
18506 (completion--cycle-threshold): New functions.
18507 (completion-try-completion, completion-all-completions):
18508 Add `metadata' argument to choose completion-styles.
18509 (completion--do-completion): Use metadata to choose cycling.
18510 (completion-all-sorted-completions): Use metadata for sorting.
18511 Remove :completion-cycle-penalty which is not needed any more.
18512 (completion--try-word-completion): Add `metadata' argument.
18513 (minibuffer-completion-help): Check metadata for annotation function
18514 and sorting.
18515 (completion-file-name-table): Return `category' metadata.
18516 (minibuffer-completing-file-name): Make obsolete.
18517 * simple.el (minibuffer-completing-symbol): Make obsolete.
18518 * icomplete.el (icomplete-completions): Pass new `metadata' param to
18519 completion-try-completion.
18520
18521 2011-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
18522
18523 * mail/smtpmail.el (smtpmail-send-data): Add progress reporter.
18524
18525 2011-05-30 Leo Liu <sdl.web@gmail.com>
18526
18527 * net/rcirc.el (rcirc-debug-buffer): Use visible buffer name.
18528 (rcirc-print): Decode all incoming messages (bug#8744).
18529 (rcirc-decode-coding-system): Allow value nil for automatic coding
18530 system detection.
18531
18532 2011-06-01 Glenn Morris <rgm@gnu.org>
18533
18534 * mail/emacsbug.el (report-emacs-bug-hook): Mailclient ignores From.
18535
18536 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
18537
18538 * image.el (image-animate-max-time): Allow nil and t values.
18539 Default to nil.
18540 (create-animated-image): Doc fix.
18541 (image-animate-start): Remove second arg; just use
18542 image-animate-max-time.
18543 (image-animate-timeout): Doc fix. Args changed.
18544
18545 * image-mode.el (image-toggle-display-image): Ensure that the
18546 image spec passed to the animate timer is the same object as in
18547 the buffer's display property (Bug#6981).
18548 (image-transform-properties): Doc fix.
18549
18550 * image.el (image-animate-max-time): Default to nil.
18551
18552 2011-05-29 Martin Rudalics <rudalics@gmx.at>
18553
18554 * menu-bar.el (kill-this-buffer-enabled-p): Avoid looping over
18555 entire buffer list (Bug#8184).
18556
18557 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
18558
18559 * image.el (imagemagick-types-inhibit)
18560 (imagemagick-register-types): Doc fix.
18561
18562 2011-05-29 Deniz Dogan <deniz@dogan.se>
18563
18564 * net/rcirc.el (rcirc): Use the user's stored encryption method by
18565 default.
18566
18567 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
18568
18569 * select.el: Don't perform clipboard-manager saving in hooks;
18570 leave the hooks empty.
18571
18572 2011-05-28 Leo Liu <sdl.web@gmail.com>
18573
18574 * replace.el (occur-menu-map, occur-edit-mode-map): New vars.
18575 (occur-mode-map): Bind occur-edit-mode. Use occur-menu-map.
18576 (occur-edit-mode): New major mode (Bug#8463).
18577 (occur-after-change-function): New function.
18578 (occur-engine): Give Occur tags a read-only property.
18579
18580 2011-05-28 Kevin Ryde <user42@zip.com.au>
18581
18582 * subr.el (def-edebug-spec): Doc fix (Bug#8430).
18583
18584 2011-05-28 Chong Yidong <cyd@stupidchicken.com>
18585
18586 * bindings.el (help-echo): Make the initial non-indicator dash
18587 empty on graphical terminals (Bug#7295).
18588
18589 * files.el (auto-mode-alist): Move config rule after the
18590 in-stripping one (Bug#8547).
18591
18592 * newcomment.el (comment-end-skip): Doc fix (Bug#8659).
18593
18594 * startup.el (normal-splash-screen): Remove gratuitous mode-line
18595 setting (Bug#8740).
18596
18597 2011-05-28 Alp Aker <aker@pitt.edu> (tiny change)
18598
18599 * buff-menu.el (Buffer-menu-revert-function, Buffer-menu-sort)
18600 (Buffer-menu-buffer+size): Use Buffer-menu-buffer-column
18601 (Bug#8539).
18602
18603 2011-05-28 Chong Yidong <cyd@stupidchicken.com>
18604
18605 * emacs-lisp/re-builder.el (re-builder): Improve doc (Bug#8286).
18606
18607 2011-05-28 Dima Kogan <dkogan@cds.caltech.edu> (tiny change)
18608
18609 * progmodes/hideshow.el (hs-looking-at-block-start-p): New fun.
18610 (hs-hide-block-at-point, hs-find-block-beginning)
18611 (hs-already-hidden-p, hs-hide-block, hs-show-block): Use it
18612 (Bug#8279).
18613
18614 2011-05-28 Glenn Morris <rgm@gnu.org>
18615
18616 * startup.el (fancy-about-screen): Use standard mode line. (Bug#8740)
18617
18618 2011-05-28 Chong Yidong <cyd@stupidchicken.com>
18619
18620 * help-fns.el (describe-function-1): If the function is a derived
18621 major mode, print the parent mode.
18622
18623 * progmodes/cc-mode.el (c-mode, c++-mode, objc-mode, java-mode)
18624 (idl-mode, pike-mode, awk-mode): Inherit from prog-mode.
18625
18626 2011-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
18627
18628 * minibuffer.el (completion--capf-wrapper): Check applicability before
18629 returning non-nil for non-exclusive completion data.
18630 * progmodes/etags.el (tags-completion-at-point-function):
18631 * info-look.el (info-lookup-completions-at-point): Mark as
18632 non-exclusive.
18633 (info-complete): Adjust accordingly.
18634
18635 * info-look.el: Convert to lexical-binding and completion-at-point.
18636 (info-lookup-completions-at-point): New function.
18637 (info-complete): Use it and completion-in-region.
18638
18639 2011-05-28 Drew Adams <drew.adams@oracle.com>
18640
18641 * isearch.el: Let M-e start with point at the first mismatched char.
18642 (isearch-fail-pos): New function.
18643 (isearch-edit-string): Use it.
18644
18645 2011-05-28 Dmitry Kurochkin <dmitry.kurochkin@gmail.com> (tiny change)
18646
18647 * isearch.el (isearch-range-invisible): Use invisible-p (bug#8721).
18648
18649 2011-05-27 Toby Cubitt <toby-predictive@dr-qubit.org>
18650
18651 * emacs-lisp/avl-tree.el: New avl-tree-stack datatype. Add new
18652 traversal functions for avl-trees.
18653 (avl-tree--stack): New struct.
18654 (avl-tree-stack-p, avl-tree--stack-repopulate): New funs.
18655 (avl-tree-enter): Add optional `updatefun' arg.
18656 (avl-tree--do-enter): Add optional `updatefun' arg.
18657 Change return value.
18658 (avl-tree-delete): Add optional `test' and `nilflag' args.
18659 (avl-tree--do-delete): Add `test' and `nilflag' args.
18660 Change return value.
18661 (avl-tree-member): Add optional `nilflag'
18662 (avl-tree-member-p): New function.
18663 (avl-tree-mapc, avl-tree-mapf, avl-tree-mapcar): New functions.
18664 (avl-tree-stack, avl-tree-stack-pop, avl-tree-stack-first)
18665 (avl-tree-stack-empty-p): New functions.
18666
18667 * emacs-lisp/avl-tree.el (avl-tree--del-balance): Rename from
18668 avl-tree--del-balance1 and make it work both ways.
18669 (avl-tree--del-balance2): Remove.
18670 (avl-tree--enter-balance): Rename from avl-tree--enter-balance1 and
18671 make it work both ways.
18672 (avl-tree--enter-balance2): Remove.
18673 (avl-tree--switch-dir, avl-tree--dir-to-sign, avl-tree--sign-to-dir):
18674 New macros.
18675 (avl-tree--mapc, avl-tree-map): Add direction argument.
18676
18677 2011-05-27 David Michael <fedora.dm0@gmail.com> (tiny change)
18678
18679 * files.el (interpreter-mode-alist): Add rbash (bug#8745).
18680
18681 2011-05-27 Chong Yidong <cyd@stupidchicken.com>
18682
18683 * select.el: Support clipboard managers with built-in function
18684 x-clipboard-manager-save, via delete-frame-functions and
18685 kill-emacs-hook.
18686 (xselect-convert-to-targets): Add MULTIPLE target to list.
18687 (xselect-convert-to-save-targets): New function.
18688
18689 2011-05-27 Kenichi Handa <handa@m17n.org>
18690
18691 * mail/sendmail.el (mail-encode-header): Avoid double encoding by
18692 let-binding rfc2047-encode-encoded-words to nil.
18693
18694 2011-05-27 Glenn Morris <rgm@gnu.org>
18695
18696 * mail/emacsbug.el: Don't require url-util.
18697
18698 * shell.el (shell-directory-tracker): Case matters. (Bug#8735)
18699
18700 * files.el (set-auto-mode):
18701 Also respect mode: entries at the end of the file. (Bug#8586)
18702
18703 2011-05-26 Glenn Morris <rgm@gnu.org>
18704
18705 * files.el (hack-local-variables-prop-line, hack-local-variables):
18706 Downcase mode names, as seems to be traditional.
18707 (hack-local-variables, hack-local-variables-apply): Doc fixes.
18708
18709 * mail/emacsbug.el (report-emacs-bug): Mention checking From address.
18710 (report-emacs-bug-hook): Try to validate the From address. (Bug#8038)
18711
18712 2011-05-25 Julien Danjou <julien@danjou.info>
18713
18714 * textmodes/rst.el (rst-define-level-faces): Do not define face
18715 symbol if it is already defined.
18716
18717 2011-05-24 Vincent Belaïche <vincentb1@users.sourceforge.net>
18718
18719 * play/5x5.el (5x5-new-game, 5x5-randomize):
18720 Reset 5x5-solver-output to nil when a new grid is cast.
18721 (5x5-log-init, 5x5-log): Use defsubst instead of defmacro to shunt
18722 these debugging traces, as defmacro breaks the compiled code.
18723
18724 2011-05-24 Dmitry Kurochkin <dmitry.kurochkin@gmail.com> (tiny change)
18725
18726 * isearch.el (isearch-range-invisible): Use invisible-p (bug#8721).
18727
18728 2011-05-24 Leo Liu <sdl.web@gmail.com>
18729
18730 * vc/vc-bzr.el (vc-bzr-sha1-program): Rename from sha1-program.
18731 (vc-bzr-sha1): Adapt.
18732
18733 * sha1.el: Remove. Function `sha1' is now builtin.
18734
18735 * bindings.el: Provide sha1 feature.
18736
18737 2011-05-24 Kenichi Handa <handa@m17n.org>
18738
18739 * mail/sendmail.el: Require `rfc2047'.
18740 (mail-insert-from-field): Do not perform RFC2047 encoding.
18741 (mail-encode-header): New function.
18742 (sendmail-send-it): Set buffer-file-coding-system of the work
18743 buffer to the return value of select-message-coding-system.
18744 Call mail-encode-header.
18745
18746 * mail/smtpmail.el (smtpmail-send-it): Call mail-encode-header.
18747
18748 2011-05-24 Sean Neakums <sneakums@zork.net> (tiny change)
18749
18750 * mail/supercite.el (sc-default-cite-frame):
18751 Handle sc-nested-citation-p when sc-cite-blank-lines-p is non-nil.
18752
18753 2011-05-24 Glenn Morris <rgm@gnu.org>
18754
18755 * progmodes/python.el (brm-menu): Declare.
18756
18757 * emulation/viper.el (viper-set-hooks): Declare.
18758
18759 * play/5x5.el (5x5-log-init, 5x5-log): Evaluate when compiling.
18760 (5x5-log-init, 5x5-log, 5x5-solver): Doc fixes.
18761 (math-map-vec, math-sub, math-mul, math-make-intv, math-reduce-vec)
18762 (math-format-number, math-pow, calcFunc-arrange, calcFunc-cvec)
18763 (calcFunc-diag, calcFunc-trn, calcFunc-inv, calcFunc-mrow)
18764 (calcFunc-mcol, calcFunc-vconcat, calcFunc-index): Declare.
18765
18766 2011-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
18767
18768 Add an :exit-function for completion-at-point.
18769
18770 * minibuffer.el (completion--done): New fun.
18771 (completion--do-completion): Use it. New arg `expect-exact'.
18772 (minibuffer-complete, minibuffer-complete-word): Don't output message,
18773 since completion--do-completion does it for us now.
18774 (minibuffer-force-complete): Use completion--done and
18775 completion--replace. Handle sole-completion case with more care.
18776 (minibuffer-complete-and-exit): Use new `expect-exact' arg.
18777 (completion-extra-properties): New var.
18778 (completion-annotate-function): Make obsolete.
18779 (minibuffer-completion-help): Adjust accordingly.
18780 Use completion-list-insert-choice-function.
18781 (completion-at-point, completion-help-at-point):
18782 Bind completion-extra-properties.
18783 (completion-pcm-word-delimiters): Add | (for uniquify, for example).
18784 * simple.el (completion-list-insert-choice-function): New var.
18785 (completion-setup-function): Preserve it.
18786 (choose-completion): Pay attention to it, shuffle the code a bit.
18787 (choose-completion-string): New arg `insert-function'.
18788
18789 * textmodes/bibtex.el: Convert to lexical binding.
18790 (bibtex-mode-map): Use completion-at-point.
18791 (bibtex-mode): Use define-derived-mode&completion-at-point-functions.
18792 (bibtex-completion-at-point-function): New fun, from bibtex-complete.
18793 (bibtex-complete): Define as obsolete alias.
18794 (bibtex-complete-internal): Remove.
18795 (bibtex-format-entry): Remove unused sub-group in regexp.
18796 * shell.el (shell--command-completion-data)
18797 (shell-environment-variable-completion):
18798 * pcomplete.el (pcomplete-completions-at-point):
18799 * comint.el (comint--complete-file-name-data): Use :exit-function
18800 instead of completion-table-with-terminator so it also works for
18801 choose-completion.
18802
18803 2011-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
18804
18805 * <lots-of-files>.el: Don't quote lambda expressions with `quote'.
18806
18807 * vc/smerge-mode.el (smerge-refine-subst): Don't deactivate the mark
18808 (bug#8710).
18809
18810 * emacs-lisp/lisp.el (up-list): Fix forward movement (bug#8708).
18811
18812 2011-05-23 Ken Manheimer <ken.manheimer@gmail.com>
18813
18814 * allout.el (allout-inhibit-auto-fill-on-headline): Create new
18815 customization variable and implement: If non-nil, auto-fill will
18816 be inhibited while on topic's header line.
18817
18818 2011-05-23 Vincent Belaïche <vincentb1@users.sourceforge.net>
18819
18820 * play/5x5.el: I/ Add an arithmetic solver to suggest positions to
18821 click on. II/ Make 5x5 multisession. III/ Ensure that random grids
18822 always have a solution in grid size = 5 cases.
18823 (5x5-mode-map): Add keybinding to function `5x5-solve-suggest'.
18824 (5x5-solver-output, 5x5-log-buffer): New vars.
18825 (5x5-grid, 5x5-x-pos, 5x5-y-pos, 5x5-moves, 5x5-cracking):
18826 Make these variables buffer local to achieve 5x5 multi-session-ness.
18827 (5x5): Set 5x5-grid-size only if SIZE is non-negative.
18828 (5x5-grid-to-vec, 5x5-vec-to-grid, 5x5-log-init, 5x5-log, 5x5-solver)
18829 (5x5-solve-suggest): New funs.
18830 (5x5-randomize): Use 5x5-make-move instead of 5x5-flip-cell to
18831 randomize a grid so that we ensure that there is always a solution.
18832 (5x5-make-random-grid): Allow other movement than flipping.
18833
18834 2011-05-23 Kevin Ryde <user42@zip.com.au>
18835
18836 * emacs-lisp/advice.el (ad-read-advised-function):
18837 Use `function-called-at-point' as the default, if it has
18838 advice and passes PREDICATE.
18839
18840 2011-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
18841
18842 * emacs-lisp/bytecomp.el (byte-compile-function-form): Only call
18843 byte-compile-lambda if it's actually a lambda.
18844
18845 * emacs-lisp/eieio.el (eieio-defgeneric-form-primary-only-one):
18846 Fix function quoting. Use backquote better.
18847
18848 2011-05-22 Yuanle Song <sylecn@gmail.com>
18849
18850 * nxml/rng-xsd.el (rng-xsd-check-pattern): Use case-sensitive
18851 matching (Bug#8516).
18852
18853 2011-05-22 Jari Aalto <jari.aalto@cante.net>
18854
18855 * vc/vc-dir.el (vc-default-dir-printer): Give edited tag a
18856 different face (Bug#8178).
18857
18858 2011-05-22 Chong Yidong <cyd@stupidchicken.com>
18859
18860 * vc/diff-mode.el (diff-changed): Don't use terminal specs for
18861 defface (Bug#8144).
18862
18863 2011-05-22 Stefan Monnier <monnier@iro.umontreal.ca>
18864
18865 * emacs-lisp/macroexp.el (macroexpand-all-1): Convert ' to #' for
18866 funcall as well (bug#8712). Warn when performing those conversions.
18867 * emacs-lisp/bytecomp.el (byte-compile-form): Fix error report.
18868
18869 * progmodes/grep.el (grep-mode): Fix it for good (bug#8684)!
18870
18871 2011-05-22 Glenn Morris <rgm@gnu.org>
18872
18873 * files.el (hack-local-variables-prop-line): Small simplifications.
18874 (hack-local-variables, hack-local-variables-prop-line):
18875 If MODE-ONLY, return the mode, rather than just `t'.
18876
18877 2011-05-21 Stefan Monnier <monnier@iro.umontreal.ca>
18878
18879 * progmodes/grep.el (grep-mode): Fix last change (bug#8684).
18880
18881 2011-05-21 Glenn Morris <rgm@gnu.org>
18882
18883 * files.el (hack-local-variables-prop-line, hack-local-variables):
18884 If only interested in the mode, don't bother doing the other stuff.
18885
18886 * image-mode.el (image-after-revert-hook):
18887 Redraw all frames on which the image is visible. (Bug#8567)
18888
18889 * dired-aux.el (dired-touch-initial): Just use current-time. (Bug#6887)
18890
18891 * wid-edit.el (widget-checklist-match-inline):
18892 Fix 2011-04-19 change. (Bug#8649)
18893
18894 2011-05-20 Stefan Monnier <monnier@iro.umontreal.ca>
18895
18896 * emacs-lisp/checkdoc.el (checkdoc-sentencespace-region-engine):
18897 Also allow singlespace after single-letter capitals followed by a dot.
18898
18899 * nxml/nxml-mode.el (nxml-electric-slash): Reindent when completion is
18900 enabled. Suggested by James Ahlborn <jahlborn@gmail.com> (bug#8704).
18901
18902 2011-05-20 Nix <nix@esperi.org.uk>
18903
18904 * files.el (basic-save-buffer-2):
18905 Fix handling of break-hardlink-on-save with non-existent files.
18906
18907 2011-05-19 Deniz Dogan <deniz@dogan.se>
18908
18909 * net/rcirc.el (rcirc-mode): Initialize rcirc-urls to nil.
18910 (rcirc-markup-urls): Check if rcirc-url-regexp is nil.
18911
18912 2011-05-19 Glenn Morris <rgm@gnu.org>
18913
18914 * progmodes/f90.el (f90-type-def-re):
18915 Handle "type, bind(c)". (Bug#8691)
18916
18917 * emacs-lisp/autoload.el (batch-update-autoloads):
18918 Set autoload-excludes by parsing loadup.el rather than Makefiles.
18919
18920 2011-05-18 Michael Albinus <michael.albinus@gmx.de>
18921
18922 * net/tramp.el (tramp-process-actions): Set "first-password-request"
18923 property for the correct connection in case of multihops.
18924
18925 2011-05-18 Glenn Morris <rgm@gnu.org>
18926
18927 * emacs-lisp/authors.el (authors-fixed-entries): Remove fakemail.c.
18928 * mail/sendmail.el (sendmail-program): Fall back to just "sendmail".
18929
18930 Rationalize calendar handling of day and month abbrev-arrays.
18931 * calendar/calendar.el (calendar-customized-p): New function.
18932 (calendar-abbrev-construct, calendar-make-alist): Change what it does.
18933 (calendar-day-name-array, calendar-month-name-array): Doc fix.
18934 Add :set function.
18935 (calendar-abbrev-length, calendar-day-abbrev-array)
18936 (calendar-month-abbrev-array): Make defcustoms, with appropriate :set.
18937 (calendar-day-abbrev-array, calendar-month-abbrev-array):
18938 Elements may no longer be nil.
18939 (calendar-day-name, calendar-month-name):
18940 Update for changed nature of abbrev arrays.
18941 * calendar/diary-lib.el (diary-name-pattern):
18942 Update for changed nature of abbrev arrays.
18943 (diary-mark-entries-1): Update calendar-make-alist calls.
18944 (diary-font-lock-date-forms): Doc fix for changed abbrev arrays.
18945 * calendar/cal-html.el (cal-html-day-abbrev-array):
18946 Simply inherit from calendar-day-abbrev-array.
18947
18948 2011-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
18949
18950 * progmodes/grep.el (grep-mode): Disable default
18951 compilation-directory-matcher setting (bug#8684).
18952
18953 2011-05-17 Michael Albinus <michael.albinus@gmx.de>
18954
18955 * net/tramp.el (tramp-handle-insert-file-contents): Use "dd"
18956 instead of "head" and "tail". There were problems with SunOS 5.9,
18957 and it performs better.
18958
18959 2011-05-17 Glenn Morris <rgm@gnu.org>
18960
18961 * mail/mail-utils.el (mail-dont-reply-to): Silence compiler.
18962
18963 * progmodes/idlw-shell.el (idlwave-shell-complete-filename):
18964 Replace obsolete function.
18965
18966 * shell.el (pcomplete-parse-arguments-function): Declare.
18967
18968 * calendar/appt.el (appt-message-warning-time, appt-display-mode-line)
18969 (appt-display-diary, appt-display-interval, appt-prev-comp-time)
18970 (appt-check): Doc fixes.
18971 (appt-disp-window-function, appt-delete-window-function):
18972 Remove needless special case in custom :type.
18973 (appt-display-count): Default to 0, not nil.
18974 (appt-check): Reset appt-display-count to 0, not nil.
18975
18976 2011-05-17 Juanma Barranquero <lekktu@gmail.com>
18977
18978 * progmodes/python.el (python-font-lock-keywords):
18979 Add the Python 3.X keyword "nonlocal" (bug#8639).
18980
18981 2011-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
18982
18983 * emacs-lisp/eieio.el (defmethod): Fix quoting of code (bug#8677).
18984
18985 2011-05-16 Kevin Ryde <user42@zip.com.au>
18986
18987 * info-look.el (makefile-automake-mode): New setups, looking in
18988 automake manual, then makefile-mode.
18989 (makefile-mode): Remove automake manual, have it just in
18990 makefile-automake-mode since there's various things different or
18991 not relevant to plain make.
18992 (makefile-mode): Remove "other-modes" non-existent automake-mode,
18993 believe a hypothetical automake-mode would go to makefile-mode,
18994 not the other way around.
18995
18996 2011-05-15 Chong Yidong <cyd@stupidchicken.com>
18997
18998 * vc/diff-mode.el (diff-fixup-modifs): Locate correct position for
18999 hunk-end tags (Bug#8672).
19000
19001 * vc/vc-annotate.el (vc-annotate-mode-map): Bind = to
19002 vc-annotate-show-diff-revision-at-line (Bug#8671).
19003
19004 2011-05-14 Glenn Morris <rgm@gnu.org>
19005
19006 * vc/add-log.el (add-change-log-entry): Don't start adding a new entry
19007 in the middle of an existing one with multiple authors. (Bug#8645)
19008 (change-log-font-lock-keywords): Also handle multiple author lines
19009 with leading tabs. (Bug#8644)
19010
19011 * calendar/appt.el (appt-check): Rename some local variables.
19012 Some simplification/reordering.
19013
19014 * mail/feedmail.el (feedmail-confirm-outgoing-timeout)
19015 (feedmail-sendmail-f-doesnt-sell-me-out)
19016 (feedmail-queue-slug-suspect-regexp, feedmail-debug)
19017 (feedmail-debug-sit-for, feedmail-queue-express-hook)
19018 (feedmail-queue-runner-message-sender): Set :version.
19019 (bbdb-search, bbdb-records, smtp-via-smtp, smtp-server)
19020 (bbdb-dwim-net-address, vm-mail): Declare.
19021 (feedmail-binmail-gnulinuxish-template):
19022 Rename from feedmail-binmail-linuxish-template.
19023 (feedmail-buffer-to-smtp, feedmail-vm-mail-mode):
19024 Use insert-buffer-substring.
19025
19026 2011-05-14 Bill Carpenter <bill@carpenter.org>
19027
19028 * mail/feedmail.el (feedmail-patch-level): Increase.
19029 (feedmail-debug): New custom group.
19030 (feedmail-confirm-outgoing-timeout)
19031 (feedmail-sendmail-f-doesnt-sell-me-out)
19032 (feedmail-queue-slug-suspect-regexp, feedmail-debug)
19033 (feedmail-debug-sit-for, feedmail-queue-express-hook): New options.
19034 (feedmail-sender-line, feedmail-from-line)
19035 (feedmail-fiddle-headers-upwardly, feedmail-enable-spray)
19036 (feedmail-spray-this-address)
19037 (feedmail-spray-address-fiddle-plex-list)
19038 (feedmail-queue-use-send-time-for-date)
19039 (feedmail-queue-use-send-time-for-message-id)
19040 (feedmail-last-chance-hook, feedmail-queue-runner-mode-setter)
19041 (feedmail-buffer-eating-function):
19042 Doc fixes.
19043 (feedmail-spray-via-bbdb, feedmail-buffer-to-smtp)
19044 (feedmail-vm-mail-mode, feedmail-message-action-scroll-up)
19045 (feedmail-message-action-scroll-down): New functions.
19046 (feedmail-queue-directory, feedmail-queue-draft-directory):
19047 Use expand-file-name.
19048 (feedmail-prompt-before-queue-standard-alist): Add scroll entries.
19049 Remove C-v help entry.
19050 (feedmail-queue-buffer-file-name): New variable.
19051 (feedmail-mail-send-hook-splitter, feedmail-buffer-to-binmail)
19052 (feedmail-buffer-to-smtpmail, feedmail-queue-express-to-draft)
19053 (feedmail-message-action-send-strong, feedmail-message-action-edit)
19054 (feedmail-message-action-draft, feedmail-message-action-draft-strong)
19055 (feedmail-message-action-queue, feedmail-message-action-queue-strong)
19056 (feedmail-message-action-toggle-spray)
19057 (feedmail-run-the-queue-no-prompts)
19058 (feedmail-run-the-queue-global-prompt, feedmail-queue-reminder)
19059 (feedmail-look-at-queue-directory, feedmail-queue-subject-slug-maker)
19060 (feedmail-create-queue-filename, feedmail-rfc822-time-zone):
19061 (feedmail-fiddle-header, feedmail-give-it-to-buffer-eater)
19062 (feedmail-envelope-deducer, feedmail-fiddle-from)
19063 (feedmail-fiddle-sender, feedmail-default-date-generator)
19064 (feedmail-fiddle-date, feedmail-fiddle-message-id)
19065 (feedmail-fiddle-spray-address)
19066 (feedmail-fiddle-list-of-spray-fiddle-plexes)
19067 (feedmail-fiddle-list-of-fiddle-plexes)
19068 (feedmail-fill-to-cc-function, feedmail-fill-this-one)
19069 (feedmail-one-last-look, feedmail-fqm-p): Add debug calls.
19070 (feedmail-queue-runner-message-sender, feedmail-binmail-template):
19071 Change default. Doc fix.
19072 (feedmail-queue-runner-cleaner-upper): Use feedmail-say-chatter.
19073 (feedmail-binmail-linuxish-template): New constant.
19074 (feedmail-buffer-to-sendmail): Doc fix. Add debug call.
19075 Respect feedmail-sendmail-f-doesnt-sell-me-out.
19076 (feedmail-send-it): Add debug call.
19077 Use feedmail-queue-buffer-file-name, and
19078 feedmail-send-it-immediately-wrapper.
19079 (feedmail-message-action-send): Add debug call.
19080 Use feedmail-send-it-immediately-wrapper.
19081 (feedmail-queue-express-to-queue): Add debug call.
19082 Run feedmail-queue-express-hook.
19083 (feedmail-message-action-help): Add debug call. Use feedmail-p-h-b-n.
19084 (feedmail-message-action-help-blat):
19085 Rename from feedmail-queue-send-edit-prompt-help-first.
19086 (feedmail-run-the-queue): Add debug call. Set buffer-file-type.
19087 Check line-endings. Handle errors better.
19088 (feedmail-queue-reminder-brief, feedmail-queue-reminder-medium):
19089 Doc fix. Add debug call.
19090 (feedmail-queue-send-edit-prompt): Doc fix. Add debug call.
19091 Use feedmail-queue-send-edit-prompt-inner.
19092 (feedmail-queue-runner-prompt, feedmail-scroll-buffer): New functions.
19093 (feedmail-queue-send-edit-prompt-inner): New function, extracted
19094 from feedmail-queue-send-edit-prompt.
19095 (feedmail-queue-send-edit-prompt-help)
19096 (feedmail-queue-send-edit-prompt-help-later): Remove functions.
19097 (feedmail-tidy-up-slug): Add debug call.
19098 Respect feedmail-queue-slug-suspect-regexp.
19099 (feedmail-queue-subject-slug-maker): Use buffer-substring-no-properties.
19100 (feedmail-dump-message-to-queue): Add debug call.
19101 Expand queue-directory.
19102 (feedmail-dump-message-to-queue): Change message slightly.
19103 Use feedmail-say-chatter.
19104 (feedmail-rfc822-date): Add debug call. Bind system-time-locale.
19105 (feedmail-send-it-immediately-wrapper): New function.
19106 (feedmail-send-it-immediately): Add debug calls. Use let not let*.
19107 Insert empty string rather than newline. Handle full-frame case.
19108 Use catch/throw. Use feedmail-say-chatter.
19109 (feedmail-fiddle-from): Try mail-host-address.
19110 (feedmail-default-message-id-generator): Doc fix.
19111 Bind system-time-locale. Handle missing end.
19112 (feedmail-fiddle-x-mailer): Add debug call.
19113 Handle feedmail-x-mailer-line being nil.
19114 (feedmail-accume-n-nuke-header, feedmail-deduce-address-list):
19115 Add debug call. Use buffer-substring-no-properties.
19116 (feedmail-say-debug, feedmail-say-chatter): New functions.
19117 (feedmail-find-eoh): Give an explicit error.
19118
19119 2011-05-13 Ulf Jasper <ulf.jasper@web.de>
19120
19121 * net/newst-treeview.el (newsticker-treeview-face): Change default
19122 family from helvetica to sans.
19123 (newsticker-treeview-tool-bar-map): Move tool-bar icons to
19124 etc/images/newsticker.
19125
19126 * net/newst-reader.el (newsticker-feed-face): Change default
19127 family from helvetica to sans.
19128
19129 * net/newst-plainview.el (newsticker-new-item-face)
19130 (newsticker-old-item-face, newsticker-immortal-item-face)
19131 (newsticker-obsolete-item-face, newsticker-date-face)
19132 (newsticker-statistics-face): Change default family from
19133 helvetica to sans.
19134 (newsticker--plainview-tool-bar-map): Move tool-bar icons to
19135 etc/images/newsticker.
19136
19137 * net/newst-backend.el (newsticker--do-run-auto-mark-filter)
19138 (newsticker--process-auto-mark-filter-match): Tell user about
19139 auto-marking.
19140
19141 2011-05-13 Didier Verna <didier@xemacs.org>
19142
19143 Common Lisp indentation improvements on defmethod and lambda-lists.
19144 * emacs-lisp/cl-indent.el: Advertise the changes and remove obsolete
19145 TODO entries.
19146 (lisp-lambda-list-keyword-parameter-indentation)
19147 (lisp-lambda-list-keyword-parameter-alignment)
19148 (lisp-lambda-list-keyword-alignment): New customizable user options.
19149 (lisp-indent-defun-method): Improve docstring.
19150 (extended-loop-p): Fix comment.
19151 (lisp-indent-lambda-list-keywords-regexp): New variable.
19152 (lisp-indent-lambda-list): New function.
19153 (lisp-indent-259): Use it.
19154 (lisp-indent-defmethod): Support for more than one
19155 method qualifier and properly indent methods lambda-lists.
19156 (defgeneric): Provide a missing common-lisp-indent-function property.
19157
19158 2011-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
19159
19160 * thingatpt.el (bounds-of-thing-at-point): Return nil rather than
19161 bounds for the empty string (bug#8667).
19162
19163 2011-05-13 Glenn Morris <rgm@gnu.org>
19164
19165 * mail/feedmail.el (feedmail-buffer-to-sendmail): Require sendmail.
19166
19167 * mail/sendmail.el (sendmail-program): Try executable-find first.
19168 (sendmail-send-it): `sendmail-program' cannot be unbound.
19169
19170 * calendar/appt.el (appt-make-list): Simplify.
19171 (appt-time-msg-list): Doc fix.
19172 (appt-check): Change mode-line message at the time of the appointment.
19173
19174 2011-05-12 Andreas Schwab <schwab@linux-m68k.org>
19175
19176 * progmodes/ld-script.el (ld-script-keywords)
19177 (ld-script-builtins): Update keywords list.
19178
19179 2011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
19180
19181 * progmodes/grep.el (grep-filter): Don't trip on partial lines.
19182
19183 * shell.el (shell-completion-vars): New function.
19184 (shell-mode):
19185 * simple.el (read-shell-command): Use it.
19186 (blink-matching-open): No need for " [...]" in minibuffer-message.
19187
19188 2011-05-12 Glenn Morris <rgm@gnu.org>
19189
19190 * calendar/appt.el (appt-now-displayed): Remove pointless variable.
19191 (appt-check): Simplify.
19192
19193 2011-05-12 Eli Zaretskii <eliz@gnu.org>
19194
19195 * vc/smerge-mode.el (smerge-resolve): Use null-device rather than a
19196 literal "/dev/null".
19197
19198 2011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
19199
19200 * emacs-lisp/lisp.el (lisp-complete-symbol, lisp-completion-at-point):
19201 Fix typo.
19202
19203 2011-05-12 Ralph Schleicher <rs@ralph-schleicher.de>
19204
19205 * progmodes/which-func.el (which-function):
19206 Use add-log-current-defun instead of add-log-current-defun-function,
19207 which might not be defined (Bug#8260).
19208
19209 2011-05-12 Glenn Morris <rgm@gnu.org>
19210
19211 * emacs-lisp/bytecomp.el (byte-compile-file-form-defmumble):
19212 Let byte-compile-initial-macro-environment always take precedence.
19213
19214 2011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
19215
19216 * net/rcirc.el: Add support for SSL/TLS connections.
19217 (rcirc-server-alist): New field `encryption'.
19218 (rcirc): Check `encryption' settings.
19219 (rcirc-connect): New arg `encryption'. Use open-network-stream.
19220 Merge make-local-variable into `set'.
19221 (rcirc--connection-open-p): New function.
19222 (rcirc-send-string, rcirc-clean-up-buffer): Use it to handle case where
19223 the process is not a network process (e.g. running gnutls-cli).
19224 (set-rcirc-decode-coding-system, set-rcirc-encode-coding-system):
19225 Make rcirc-(en|de)code-coding-system local here.
19226 (rcirc-mode): Merge make-local-variable into `set'.
19227 (rcirc-parent-buffer): Make permanent buffer-local.
19228 (rcirc-multiline-minor-mode): Don't do it here.
19229 (rcirc-switch-to-server-buffer): Don't switch to a random buffer if
19230 there's no server buffer.
19231
19232 2011-05-11 Glenn Morris <rgm@gnu.org>
19233
19234 * newcomment.el (comment-kill): Prefix "unused" local.
19235
19236 * term/w32console.el (get-screen-color): Declare.
19237
19238 * emacs-lisp/bytecomp.el (byte-compile-arglist-warn):
19239 Handle symbol elements of byte-compile-initial-macro-environment.
19240
19241 2011-05-10 Leo Liu <sdl.web@gmail.com>
19242
19243 * bookmark.el (bookmark-bmenu-mode-map):
19244 Bind bookmark-bmenu-search to `/'.
19245
19246 * mail/footnote.el: Convert to utf-8 encoding.
19247 (footnote-unicode-string, footnote-unicode-regexp): New variable.
19248 (Footnote-unicode): New function.
19249 (footnote-style-alist): Add unicode style to the list.
19250 (footnote-style): Doc fix.
19251
19252 2011-05-10 Jim Meyering <meyering@redhat.com>
19253
19254 Fix doubled-word typos.
19255 * international/quail.el (quail-insert-kbd-layout): and and -> and
19256 * kermit.el: and and -> and
19257 * net/ldap.el (ldap-search-internal): to to -> to
19258 * progmodes/vhdl-mode.el (vhdl-offsets-alist): Likewise.
19259 * progmodes/js.el (js-mode): and and -> and
19260 * textmodes/artist.el (artist-move-to-xy): at at -> at
19261 (artist-draw-region-trim-line-endings): if if -> if
19262 And Safetyc -> Safety.
19263 * textmodes/reftex-dcr.el (reftex-view-crossref): at at -> at a
19264
19265 2011-05-10 Glenn Morris <rgm@gnu.org>
19266 Stefan Monnier <monnier@iro.umontreal.ca>
19267
19268 * files.el (hack-one-local-variable-eval-safep):
19269 Consider "eval: (foo-mode)" to be safe. (Bug#8613)
19270
19271 2011-05-10 Glenn Morris <rgm@gnu.org>
19272
19273 * calendar/diary-lib.el (diary-list-entries-hook)
19274 (diary-mark-entries-hook, diary-nongregorian-listing-hook)
19275 (diary-nongregorian-marking-hook, diary-list-entries)
19276 (diary-include-other-diary-files, diary-mark-entries)
19277 (diary-mark-included-diary-files): Doc fixes.
19278
19279 2011-05-09 Juanma Barranquero <lekktu@gmail.com>
19280
19281 * misc.el: Require tabulated-list.el during compilation.
19282
19283 2011-05-09 Chong Yidong <cyd@stupidchicken.com>
19284
19285 * progmodes/compile.el (compilation-start):
19286 Run compilation-filter-hook for the async case too.
19287 (compilation-filter-hook): Doc fix.
19288
19289 2011-05-09 Deniz Dogan <deniz@dogan.se>
19290
19291 * wdired.el: Remove outdated installation comment. Fix usage
19292 comment.
19293
19294 2011-05-09 Juanma Barranquero <lekktu@gmail.com>
19295
19296 * misc.el: Implement new command `list-dynamic-libraries'.
19297 (list-dynamic-libraries--loaded-only-p): New variable.
19298 (list-dynamic-libraries--refresh): New function.
19299 (list-dynamic-libraries): New command.
19300
19301 2011-05-09 Chong Yidong <cyd@stupidchicken.com>
19302
19303 * progmodes/compile.el (compilation-error-regexp-alist-alist):
19304 Fix the ant regexp to handle end-line and end-column info from jikes.
19305 Re-introduce maven regexp. Give the ruby-Test::Unit regexp a
19306 higher priority to avoid clobbering by gnu.
19307
19308 2011-05-08 Chong Yidong <cyd@stupidchicken.com>
19309
19310 * cus-face.el (custom-declare-face): Call custom-theme-recalc-face
19311 if the face has existing theme settings (Bug#8454).
19312
19313 2011-05-08 Ralph Schleicher <rs@ralph-schleicher.de>
19314
19315 * progmodes/perl-mode.el (perl-imenu-generic-expression):
19316 Only match variables declared via `my' or `our' (Bug#8261).
19317
19318 * net/browse-url.el (browse-url-of-dired-file): Allow browsing of
19319 special file names `.' and `..' (Bug#8259).
19320
19321 2011-05-08 Chong Yidong <cyd@stupidchicken.com>
19322
19323 * progmodes/grep.el (grep-mode-font-lock-keywords):
19324 Remove buffer-changing entries.
19325 (grep-filter): New function.
19326 (grep-mode): Add it to compilation-filter-hook.
19327
19328 * progmodes/compile.el (compilation-filter-hook)
19329 (compilation-filter-start): New defvars.
19330 (compilation-filter): Call compilation-filter-hook prior to
19331 updating the process mark.
19332
19333 2011-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
19334
19335 * emacs-lisp/eieio.el (defmethod): Fix typo in last change.
19336
19337 2011-05-07 Eli Zaretskii <eliz@gnu.org>
19338
19339 * mail/sendmail.el (send-mail-function): On MS-Windows, default to
19340 mailclient-send-it even if window-system is nil. (Bug#8595)
19341
19342 * term/w32console.el (terminal-init-w32console):
19343 Call get-screen-color and use its output to set the frame
19344 background-mode. (Bug#8597)
19345
19346 2011-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
19347
19348 Make bytecomp.el understand that defmethod defines funs (bug#8631).
19349 * emacs-lisp/eieio.el (eieio--defalias, eieio--defgeneric-init-form):
19350 New functions.
19351 (defgeneric, eieio--defmethod): Use them.
19352 (eieio-defgeneric): Remove.
19353 (defmethod): Call defgeneric in a way visible to the byte-compiler.
19354
19355 2011-05-07 Glenn Morris <rgm@gnu.org>
19356
19357 * calendar/timeclock.el (timeclock-log-data): Remove unused local.
19358 Use let rather than let*.
19359 (timeclock-find-discrep): Remove unused local.
19360
19361 * calendar/diary-lib.el (diary-comment-start): Doc fix.
19362
19363 * calendar/appt.el (appt-time-msg-list): Doc fix.
19364
19365 2011-05-06 Noah Friedman <friedman@splode.com>
19366
19367 * apropos.el (apropos-print-doc): Only use
19368 emacs-lisp-docstring-fill-column when it is bound to an integer,
19369 per that variable's documentation.
19370
19371 2011-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
19372
19373 * lpr.el (print-region-1): Echo lpr-program's output, so error messages
19374 and warnings are not silently discarded (e.g. use -d instead of -P).
19375
19376 2011-05-06 Glenn Morris <rgm@gnu.org>
19377
19378 * calendar/appt.el (appt-message-warning-time): Doc fix.
19379 (appt-warning-time-regexp): New option.
19380 (appt-make-list): Respect appt-message-warning-time.
19381
19382 * calendar/diary-lib.el (diary-comment-start, diary-comment-end):
19383 New options.
19384 (diary-add-to-list): Strip comments from the displayed string.
19385 (diary-mode): Set comment-start and comment-end.
19386
19387 * vc/diff-mode.el (smerge-refine-subst): Declare.
19388 (diff-refine-hunk): Don't require smerge-mode when compiling.
19389
19390 2011-05-06 Juanma Barranquero <lekktu@gmail.com>
19391
19392 * simple.el (list-processes): Return nil as the docstring says.
19393
19394 2011-05-05 Michael Albinus <michael.albinus@gmx.de>
19395
19396 * net/ange-ftp.el (ange-ftp-binary-file-name-regexp): Set default
19397 to "".
19398 (ange-ftp-write-region, ange-ftp-insert-file-contents)
19399 (ange-ftp-copy-file-internal): Use only `ange-ftp-binary-file' for
19400 determining of binary transfer. (Bug#7383)
19401
19402 2011-05-05 Michael Albinus <michael.albinus@gmx.de>
19403
19404 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
19405 Fix port computation bug. (Bug#8618)
19406
19407 2011-05-05 Glenn Morris <rgm@gnu.org>
19408
19409 * allout-widgets.el (allout-widgets-mode-inhibit): Declare before use.
19410
19411 * simple.el (shell-dynamic-complete-functions)
19412 (comint-dynamic-complete-functions): Declare.
19413
19414 * net/network-stream.el (gnutls-negotiate):
19415 * simple.el (tabulated-list-print): Fix declarations.
19416
19417 * progmodes/gud.el (syntax-symbol, syntax-point):
19418 Remove unnecessary and incorrect declarations.
19419
19420 * emacs-lisp/check-declare.el (check-declare-scan):
19421 Handle byte-compile-initial-macro-environment in bytecomp.el.
19422
19423 2011-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
19424
19425 Fix earlier half-done eieio-defmethod change (bug#8338).
19426 * emacs-lisp/eieio.el (eieio--defmethod): Rename from eieio-defmethod.
19427 Streamline and change calling convention.
19428 (defmethod): Adjust accordingly and simplify.
19429 (eieio-defclass): Fix broken calls to eieio-defmethod and redirect to
19430 new eieio--defmethod.
19431 (slot-boundp): Minor CSE simplification.
19432
19433 2011-05-05 Milan Zamazal <pdm@zamazal.org>
19434
19435 * progmodes/glasses.el (glasses-separate-capital-groups): New option.
19436 (glasses-make-readable): Use glasses-separate-capital-groups.
19437
19438 2011-05-05 Juanma Barranquero <lekktu@gmail.com>
19439
19440 * emacs-lisp/warnings.el (warning-level-aliases): Reflow docstring.
19441 (warning-series): Doc fix.
19442 (display-warning): Don't try to create the buffer if we just found it.
19443
19444 2011-05-04 Chong Yidong <cyd@stupidchicken.com>
19445
19446 * emacs-lisp/autoload.el (generated-autoload-file): Set to nil.
19447 (autoload-find-generated-file): New function.
19448 (generate-file-autoloads): Bind generated-autoload-file to
19449 buffer-file-name.
19450 (update-file-autoloads, update-directory-autoloads):
19451 Use autoload-find-generated-file. If called interactively, prompt for
19452 output file (Bug#7989).
19453 (batch-update-autoloads): Doc fix.
19454
19455 2011-05-04 Juanma Barranquero <lekktu@gmail.com>
19456
19457 * term/w32-win.el (dynamic-library-alist): Add `gnutls'.
19458
19459 2011-05-04 Glenn Morris <rgm@gnu.org>
19460
19461 * calendar/diary-lib.el (diary-fancy-date-pattern): Turn it into a
19462 function, so it follows changes in calendar-date-style.
19463 (diary-fancy-date-matcher): New function.
19464 (diary-fancy-font-lock-keywords): Use diary-fancy-date-matcher.
19465 (diary-fancy-font-lock-fontify-region-function):
19466 Use diary-fancy-date-pattern as a function.
19467
19468 * calendar/diary-lib.el (diary-fancy-date-pattern): Do not use
19469 non-numbers for `year' etc pseudo-variables. (Bug#8583)
19470
19471 2011-05-04 Teodor Zlatanov <tzz@lifelogs.com>
19472
19473 * net/gnutls.el (gnutls-negotiate): Use CL-style keyword arguments
19474 instead of positional arguments. Allow :keylist and :crlfiles
19475 arguments.
19476 (open-gnutls-stream): Call it.
19477
19478 * net/network-stream.el (network-stream-open-starttls): Adjust to
19479 call `gnutls-negotiate' with :process and :hostname arguments.
19480
19481 2011-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
19482
19483 * minibuffer.el (completion--message): New function.
19484 (completion--do-completion, minibuffer-complete)
19485 (minibuffer-force-complete, minibuffer-complete-word): Use it.
19486 (completion--do-completion): Don't ignore completion-auto-help when in
19487 icomplete-mode.
19488
19489 * whitespace.el (whitespace-trailing-regexp): Don't rely on the
19490 internal encoding (e.g. tibetan zero is not whitespace).
19491 (global-whitespace-mode): Prefer save-current-buffer.
19492 (whitespace-trailing-regexp): Remove useless save-match-data.
19493 (whitespace-empty-at-bob-regexp): Minor simplification.
19494
19495 2011-05-03 Chong Yidong <cyd@stupidchicken.com>
19496
19497 * emacs-lisp/autoload.el (generated-autoload-file): Doc fix (Bug#7989).
19498
19499 2011-05-03 Agustín Martín Domingo <agustin.martin@hispalinux.es>
19500
19501 * textmodes/ispell.el (ispell-add-per-file-word-list):
19502 Use `concat' to create string for insertion.
19503
19504 2011-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
19505
19506 * textmodes/bibtex.el (bibtex-fill-field-bounds, bibtex-fill-entry):
19507 Avoid open-line which runs post-self-insert-hook.
19508 (bibtex-fill-entry): Remove unused `end' var.
19509
19510 2011-05-03 Dirk Ullrich <dirk.ullrich@googlemail.com> (tiny change)
19511
19512 * textmodes/ispell.el (ispell-add-per-file-word-list):
19513 Protect against `nil' value of `comment-start' (Bug#8579).
19514
19515 2011-05-03 Leo Liu <sdl.web@gmail.com>
19516
19517 * isearch.el (isearch-yank-pop): New command.
19518 (isearch-mode-map): Bind it to `M-y'.
19519 (isearch-forward): Mention it.
19520
19521 2011-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
19522
19523 * simple.el (minibuffer-complete-shell-command): Remove.
19524 (minibuffer-local-shell-command-map): Use completion-at-point.
19525 (read-shell-command): Setup completion vars here instead.
19526 (read-expression-map): Bind TAB to symbol completion.
19527
19528 * textmodes/ispell.el (lookup-words): Use with-temp-buffer; signal
19529 error directly rather via storing it into `results'.
19530
19531 2011-05-02 Leo Liu <sdl.web@gmail.com>
19532
19533 * vc/diff.el: Fix description.
19534
19535 2011-05-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
19536
19537 * server.el (server-eval-at): New function.
19538
19539 2011-05-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
19540
19541 * net/network-stream.el (open-network-stream): Take a :nowait
19542 parameter and pass it on to `make-network-process'.
19543 (network-stream-open-plain): Ditto.
19544
19545 2011-04-30 Andreas Schwab <schwab@linux-m68k.org>
19546
19547 * faces.el (face-spec-set-match-display): Don't match toolkit
19548 options on terminal frames.
19549
19550 2011-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
19551
19552 * progmodes/pascal.el: Use lexical binding.
19553 (pascal-mode-map): Remove author preferences.
19554
19555 * pcomplete.el (pcomplete-std-complete): Don't abuse
19556 completion-at-point.
19557
19558 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
19559
19560 * calc/calccomp.el (math-comp-to-string-flat-term): Simplify by
19561 removing code that has been dead since 1991 or so.
19562
19563 * startup.el (command-line): When warning about "_emacs", use a
19564 delayed warning to allow the user to filter it out.
19565
19566 2011-04-28 Deniz Dogan <deniz@dogan.se>
19567
19568 * net/rcirc.el (rcirc-handler-353): Fix bug for channels which the
19569 user has not joined.
19570
19571 2011-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
19572
19573 * pcomplete.el (pcomplete-completions-at-point): Return nil if there
19574 aren't any completions at point.
19575
19576 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
19577
19578 * subr.el (display-delayed-warnings): New function.
19579 (delayed-warnings-hook): New variable.
19580
19581 2011-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
19582
19583 * minibuffer.el (completion-at-point, completion-help-at-point):
19584 Don't presume that a given completion-at-point-function will always
19585 use the same calling convention.
19586
19587 * pcomplete.el (pcomplete-completions-at-point):
19588 Obey pcomplete-ignore-case. Don't call pcomplete-norm-func unless
19589 pcomplete-seen is non-nil.
19590 (pcomplete-comint-setup): Also recognize the new comint/shell
19591 completion functions.
19592 (pcomplete-do-complete): Don't call pcomplete-norm-func unless
19593 pcomplete-seen is non-nil.
19594
19595 2011-04-27 Niels Giesen <niels.giesen@gmail.com>
19596
19597 * calendar/icalendar.el (diary-lib): Add require statement.
19598 (icalendar--create-uid): Read out a uid from a text-property on
19599 the first character in the entry. This allows for code to add its
19600 own uid to the entry.
19601 (icalendar--convert-float-to-ical): Add export of
19602 `diary-float'-entries save for those with the optional DAY
19603 argument.
19604
19605 2011-04-27 Daniel Colascione <dan.colascione@gmail.com>
19606
19607 * subr.el (shell-quote-argument): Use alternate escaping strategy
19608 when we spot a variable reference in a string.
19609
19610 2011-04-26 Daniel Colascione <dan.colascione@gmail.com>
19611
19612 * cus-start.el (all): Define customization for debug-on-event.
19613
19614 2011-04-26 Daniel Colascione <dan.colascione@gmail.com>
19615
19616 * subr.el (shell-quote-argument): Escape correctly under Windows.
19617
19618 2011-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
19619
19620 * emulation/cua-base.el (cua-selection-mode): Make it toggle again.
19621
19622 2011-04-25 Michael Albinus <michael.albinus@gmx.de>
19623
19624 * net/tramp.el (tramp-process-actions): Add POS argument.
19625 Delete region between POS and (pos).
19626
19627 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
19628 Use `nil' position in `tramp-process-actions' call.
19629 (tramp-maybe-open-connection): Call `tramp-process-actions' with pos.
19630
19631 * net/tramp-smb.el (tramp-smb-maybe-open-connection): Use `nil'
19632 position in `tramp-process-actions' call.
19633
19634 * net/trampver.el: Update release number.
19635
19636 2011-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
19637
19638 * custom.el (defcustom): Obey lexical-binding.
19639
19640 Fix octave-inf completion problems reported by Alexander Klimov.
19641 * progmodes/octave-inf.el (inferior-octave-mode-syntax-table):
19642 Inherit from octave-mode-syntax-table.
19643 (inferior-octave-mode): Set info-lookup-mode.
19644 (inferior-octave-completion-at-point): New function.
19645 (inferior-octave-complete): Use it and completion-in-region.
19646 (inferior-octave-dynamic-complete-functions): Use it as well, and use
19647 comint-filename-completion.
19648 * progmodes/octave-mod.el (octave-mode-syntax-table): Use _ syntax for
19649 symbol elements which shouldn't be word elements.
19650 (octave-font-lock-keywords, octave-beginning-of-defun)
19651 (octave-function-header-regexp): Adjust regexps accordingly.
19652 (octave-mode-map): Also use info-lookup-symbol for C-c C-h.
19653
19654 2011-04-25 Juanma Barranquero <lekktu@gmail.com>
19655
19656 * net/gnutls.el (gnutls-errorp): Declare before first use.
19657
19658 2011-04-24 Teodor Zlatanov <tzz@lifelogs.com>
19659
19660 * net/gnutls.el (gnutls-negotiate): Add hostname, verify-flags,
19661 verify-error, and verify-hostname-error parameters. Check whether
19662 default trustfile exists before going to use it. Add missing
19663 argument to gnutls-message-maybe call. Return value.
19664 Reported by Claudio Bley <claudio.bley@gmail.com>.
19665 (open-gnutls-stream): Add usage example.
19666
19667 * net/network-stream.el (network-stream-open-starttls): Give host
19668 parameter to `gnutls-negotiate'.
19669 (gnutls-negotiate): Adjust `gnutls-negotiate' declaration.
19670 * subr.el (shell-quote-argument): Escape correctly under Windows.
19671
19672 2011-04-24 Daniel Colascione <dan.colascione@gmail.com>
19673
19674 * progmodes/cc-engine.el (c-forward-decl-or-cast-1):
19675 Use correct match group (bug#8438).
19676
19677 2011-04-24 Chong Yidong <cyd@stupidchicken.com>
19678
19679 * emacs-lisp/package.el (package-built-in-p): Fix typo.
19680 (package-menu--generate): New arg specifying packages to show.
19681 (package-menu-refresh, package-menu-execute, list-packages):
19682 Callers changed.
19683 (package-show-package-list): New function, replacing deleted
19684 package--list-packages (renamed because it is non-internal).
19685
19686 * finder.el (finder-list-matches): Use package-show-package-list
19687 instead of deleted package--list-packages.
19688
19689 * vc/vc-annotate.el (vc-annotate-goto-line): New command.
19690 Based on a previous implementation by Juanma Barranquero (Bug#8366).
19691 (vc-annotate-mode-map): Bind it to RET.
19692
19693 2011-04-24 Uday S Reddy <u.s.reddy@cs.bham.ac.uk> (tiny change)
19694
19695 * progmodes/etags.el (next-file): Don't use set-buffer to change
19696 buffers (Bug#8478).
19697
19698 2011-04-24 Chong Yidong <cyd@stupidchicken.com>
19699
19700 * files.el (auto-mode-alist): Use js-mode for .json (Bug#8529).
19701
19702 * apropos.el (apropos-label-face): Avoid variable-pitch face.
19703 (apropos-accumulator): Doc fix.
19704 (apropos-function, apropos-macro, apropos-command)
19705 (apropos-variable, apropos-face, apropos-group, apropos-widget)
19706 (apropos-plist): Add face property.
19707 (apropos-symbols-internal): Fix indentation.
19708 (apropos-print): Simplify help, and recognize apropos-multi-type.
19709 (apropos-print-doc): Use button-type-get to extract the button's
19710 face property. Fill docstring (Bug#8352).
19711
19712 2011-04-23 Juanma Barranquero <lekktu@gmail.com>
19713
19714 * buff-menu.el (Buffer-menu--buffers): Fix typo in docstring (bug#8535).
19715
19716 * play/mpuz.el (mpuz-silent): Doc fix.
19717 (mpuz-mode-map): Use mapc.
19718 (mpuz-put-number-on-board): Rename parameter L to COLUMNS.
19719 (mpuz-letter-to-digit, mpuz-check-all-solved, mpuz-create-buffer):
19720 Fix typos in docstrings.
19721
19722 * play/doctor.el (doc$, doctor-$, doctor-read-print, doctor-read-token)
19723 (doctor-nounp, doctor-pronounp): Fix typos in docstrings.
19724
19725 * mouse-drag.el (mouse-drag-throw): Fix typo in docstring.
19726
19727 2011-04-23 Chong Yidong <cyd@stupidchicken.com>
19728
19729 * minibuffer.el (completion--do-completion): Avoid the "Next char
19730 not unique" prompt if icomplete-mode is enabled (Bug#5849).
19731
19732 * mouse.el (mouse-drag-mode-line-1): Make sure that if we push
19733 mouse-2 into unread-command-events, it is interpreted correctly.
19734
19735 * image-mode.el (image-type, image-mode-map, image-minor-mode-map)
19736 (image-toggle-display): Doc fix.
19737
19738 2011-04-23 Stephen Berman <stephen.berman@gmx.net>
19739
19740 * textmodes/page.el (what-page): Use line-number-at-pos to
19741 calculate line number (Bug#6825).
19742
19743 2011-04-22 Juanma Barranquero <lekktu@gmail.com>
19744
19745 * eshell/esh-mode.el (find-tag-interactive): Declare function.
19746 (eshell-find-tag): Remove `with-no-warnings', unneeded now.
19747 Pass argument NO-DEFAULT to `find-tag-interactive'.
19748
19749 2011-04-22 Juanma Barranquero <lekktu@gmail.com>
19750
19751 Lexical-binding cleanup.
19752
19753 * progmodes/ada-mode.el (ada-after-change-function, ada-loose-case-word)
19754 (ada-no-auto-case, ada-capitalize-word, ada-untab, ada-narrow-to-defun):
19755 * progmodes/ada-prj.el (ada-prj-initialize-values)
19756 (ada-prj-display-page, ada-prj-field-modified, ada-prj-display-help)
19757 (ada-prj-show-value):
19758 * progmodes/ada-xref.el (ada-find-any-references, ada-gdb-application):
19759 * progmodes/antlr-mode.el (antlr-with-displaying-help-buffer)
19760 (antlr-invalidate-context-cache, antlr-options-menu-filter)
19761 (antlr-language-option-extra, antlr-c++-mode-extra, antlr-run-tool):
19762 * progmodes/bug-reference.el (bug-reference-push-button):
19763 * progmodes/fortran.el (fortran-line-length):
19764 * progmodes/glasses.el (glasses-change):
19765 * progmodes/octave-mod.el (octave-fill-paragraph):
19766 * progmodes/python.el (python-mode, python-pdbtrack-track-stack-file)
19767 (python-pdbtrack-grub-for-buffer, python-sentinel):
19768 * progmodes/sql.el (sql-save-connection):
19769 * progmodes/tcl.el (tcl-indent-command, tcl-popup-menu):
19770 * progmodes/xscheme.el (xscheme-enter-debugger-mode):
19771 Mark unused parameters.
19772
19773 * progmodes/compile.el (compilation--flush-directory-cache)
19774 (compilation--flush-parse, compile-internal): Mark unused parameters.
19775 (compilation-buffer-name): Rename parameter MODE-NAME to NAME-OF-MODE.
19776 (compilation-next-error-function): Remove unused variable `timestamp'.
19777
19778 * progmodes/cpp.el (cpp-parse-close): Remove unused variable `begin'.
19779 (cpp-signal-read-only, cpp-grow-overlay): Mark unused parameters.
19780
19781 * progmodes/dcl-mode.el (dcl-end-of-command):
19782 Remove unused variable `start'.
19783 (dcl-calc-command-indent-multiple, dcl-calc-cont-indent-relative)
19784 (dcl-option-value-basic, dcl-option-value-offset)
19785 (dcl-option-value-margin-offset, dcl-option-value-comment-line):
19786 Mark unused parameters.
19787 (dcl-save-local-variable): Remove unused variable `val'.
19788 (mode): Declare.
19789
19790 * progmodes/delphi.el (delphi-save-state, delphi-after-change):
19791 Mark unused parameters.
19792 (delphi-ignore-changes): Move before first use.
19793 (delphi-charset-token-at): Remove unused variable `start'.
19794 (delphi-else-start): Remove unused variable `if-count'.
19795 (delphi-comment-block-start, delphi-comment-block-end):
19796 Remove unused variable `kind'.
19797 (delphi-indent-line): Remove unused variable `new-point'.
19798
19799 * progmodes/ebrowse.el (ebrowse-files-list)
19800 (ebrowse-list-of-matching-members, ebrowse-tags-list-members-in-file):
19801 Mark unused parameters. Don't quote `lambda'.
19802 (ebrowse-sort-tree-list, ebrowse-same-tree-member-buffer-list):
19803 Don't quote `lambda'.
19804 (ebrowse-revert-tree-buffer-from-file, ebrowse-tags-choose-class)
19805 (ebrowse-goto-visible-member/all-member-lists): Mark unused parameters.
19806 (ebrowse-create-tree-buffer): Rename parameter OBARRAY to CLASSES.
19807 (ebrowse-toggle-mark-at-point): Remove unused variable `pnt'.
19808 Use `ignore-errors'.
19809 (ebrowse-frozen-tree-buffer-name, ebrowse-find-source-file)
19810 (ebrowse-view/find-file-and-search-pattern)
19811 (ebrowse-view/find-member-declaration/definition):
19812 Rename parameter TAGS-FILE-NAME to TAGS-FILE.
19813 (ebrowse-find-class-declaration, ebrowse-view-class-declaration):
19814 Rename parameter PREFIX-ARG to PREFIX.
19815 (ebrowse-tags-read-name): Remove unused variables `start' and
19816 `member-info'.
19817 (ebrowse-display-member-buffer): Rename variable `tags-file-name'
19818 to `tags-file'.
19819
19820 * progmodes/etags.el (local-find-tag-hook): Declare.
19821 (tag-partial-file-name-match-p, tag-any-match-p, list-tags):
19822 Mark unused parameters.
19823
19824 * progmodes/executable.el (compilation-error-regexp-alist): Declare.
19825 (executable-interpret): Mark unused parameter.
19826
19827 * progmodes/flymake.el (flymake-process-sentinel)
19828 (flymake-after-change-function)
19829 (flymake-create-temp-with-folder-structure)
19830 (flymake-get-include-dirs-dot): Mark unused parameters.
19831 (flymake-safe-delete-directory): Remove unused variable `err'.
19832
19833 * progmodes/gdb-mi.el (speedbar-change-initial-expansion-list)
19834 (speedbar-timer-fn, speedbar-line-text)
19835 (speedbar-change-expand-button-char, speedbar-delete-subblock)
19836 (speedbar-center-buffer-smartly): Declare functions.
19837 (gdb-find-watch-expression): Remove unused variable `array'.
19838 (gdb-edit-value, gdb-gdb, gdb-ignored-notification, gdb-thread-created)
19839 (gdb-starting): Mark unused parameters.
19840 (gud-gdbmi-marker-filter): Remove unused variable `output-record'.
19841 (gdb-table-string): Remove unused variable `res'.
19842 (gdb-place-breakpoints): Remove unused variables `flag' and `bptno'.
19843 (gdb-disassembly-handler-custom): Remove unused variable `pos'.
19844 (gdb-display-buffer): Remove unused variable `cur-size'.
19845
19846 * progmodes/gud.el (gud-def): Use `defalias' instead of `defun' to
19847 allow lexical-binding compilation.
19848 (gud-expansion-speedbar-buttons, gud-gdb-goto-stackframe)
19849 (gud-dbx-massage-args, gud-xdb-massage-args, gud-perldb-massage-args)
19850 (gud-jdb-massage-args, gud-jdb-find-source, gud-find-class):
19851 Mark unused parameters.
19852 (gud-gdb-marker-filter): Remove unused variable `match'.
19853 (gud-find-class): Bind `syntax-symbol' and `syntax-point' to suitable
19854 lambda expressions and funcall them, instead of using `fset'.
19855
19856 * progmodes/hideif.el (hif-parse-if-exp): Rename parameter
19857 HIF-TOKEN-LIST to TOKEN-LIST and let-bind `hif-token-list'.
19858
19859 * progmodes/hideshow.el (hs-hide-block-at-point): Remove unused
19860 variable `header-beg'; use `let'.
19861
19862 * progmodes/icon.el (indent-icon-exp): Remove unused variables
19863 `restart', `last-sexp' and `at-do'.
19864
19865 * progmodes/js.el (js--debug): Mark unused parameter.
19866 (js--parse-state-at-point): Remove unused variable `bound'; use `let'.
19867 (js--splice-into-items): Remove unused variable `item'.
19868 (js--read-symbol, js--read-tab): Pass 1/-1 to `ido-mode', not t/nil.
19869
19870 * progmodes/make-mode.el (makefile-make-font-lock-keywords):
19871 Rename parameter FONT-LOCK-KEYWORDS to FL-KEYWORDS.
19872 (makefile-complete): Remove unused variable `try'.
19873 (makefile-fill-paragraph, makefile-match-function-end):
19874 Mark unused parameters.
19875
19876 * progmodes/octave-inf.el (inferior-octave-complete):
19877 Remove unused variable `proc'.
19878 (inferior-octave-output-digest): Mark unused parameter.
19879
19880 * progmodes/perl-mode.el (perl-calculate-indent):
19881 Remove unused variable `err'.
19882
19883 * progmodes/prolog.el (prolog-mode-keybindings-inferior)
19884 (prolog-indent-line): Mark unused parameters.
19885 (prolog-indent-line): Remove unused variable `beg'.
19886
19887 * progmodes/ps-mode.el (reporter-prompt-for-summary-p)
19888 (reporter-dont-compact-list): Declare.
19889
19890 * progmodes/sh-script.el (sh-font-lock-quoted-subshell):
19891 Remove unused variable `char'.
19892 (sh-debug): Mark unused parameter.
19893 (sh-get-indent-info): Remove unused variable `start'.
19894 (sh-calculate-indent): Remove unused variable `var'.
19895
19896 * progmodes/simula.el (simula-popup-menu): Mark unused parameter.
19897 (simula-electric-keyword): Remove unused variable `null'.
19898 (simula-search-backward, simula-search-forward): Remove unused
19899 variables `begin' and `end'.
19900
19901 * progmodes/vera-mode.el (vera-guess-basic-syntax):
19902 Remove unused variable `pos'.
19903 (vera-electric-tab, vera-comment-uncomment-region):
19904 Mark unused parameters.
19905 (vera-electric-tab): Rename parameter PREFIX-ARG to PREFIX.
19906
19907 2011-04-22 Chong Yidong <cyd@stupidchicken.com>
19908
19909 * emacs-lisp/package.el (package--builtins, package-alist)
19910 (package-load-descriptor, package-built-in-p, package-activate)
19911 (define-package, package-installed-p)
19912 (package-compute-transaction, package-buffer-info)
19913 (package--push): Doc fix. Distinguish more clearly between
19914 version strings and version lists.
19915
19916 2011-04-21 Juanma Barranquero <lekktu@gmail.com>
19917
19918 Lexical-binding cleanup.
19919
19920 * play/5x5.el (5x5-make-random-solution, 5x5-make-mutate-current)
19921 (5x5-make-mutate-best):
19922 * play/fortune.el (fortune-in-buffer):
19923 * play/gomoku.el (gomoku-init-display):
19924 * play/solitaire.el (solitaire, solitaire-do-check):
19925 * play/tetris.el (tetris-default-update-speed-function):
19926 Mark unused parameters.
19927
19928 * play/bubbles.el (bubbles-mode): Set `show-trailing-whitespace'.
19929 (bubbles--shift): Remove unused variable `char-org'.
19930 (bubbles--set-faces): Remove unused variable `fg-col'. Simplify.
19931 (bubbles--show-images): Remove unused variable `char'.
19932
19933 * play/decipher.el (decipher-keypress, decipher-alphabet-keypress)
19934 (decipher-get-undo, decipher-set-map, decipher-complete-alphabet)
19935 (decipher-resync, decipher-loop-with-breaks, decipher--analyze)
19936 (decipher-analyze-buffer): Use ?\s.
19937 (decipher-make-checkpoint): Remove unused variable `mapping'.
19938
19939 * play/doctor.el (doctor-doc): Rename parameter DOCTOR-SENT to SENT.
19940
19941 * play/gamegrid.el (gamegrid-add-score-with-update-game-score):
19942 Remove unused variable `result'; use `let'.
19943
19944 * play/gametree.el (gametree-current-layout, gametree-apply-layout):
19945 Rename parameter TOP-LEVEL to FROM-TOP-LEVEL; use `ignore-errors'.
19946 (gametree-children-shown-p, gametree-compute-reduced-score):
19947 Use `ignore-errors'.
19948
19949 * play/handwrite.el (ps-lpr-switches): Declare.
19950 (handwrite): Remove unused variables `pmin' and `lastp'.
19951
19952 * play/hanoi.el (hanoi-move-ring): Remove unused variable `total-steps'.
19953
19954 * play/landmark.el (landmark-init-display)
19955 (landmark-update-naught-weights): Mark unused parameters.
19956 (landmark-y): Remove unused variable `noise'. Simplify.
19957 (landmark-human-plays): Remove unused variable `score'.
19958
19959 * play/mpuz.el (mpuz-try-letter): Remove unused variable `message'.
19960 (mpuz-try-proposal): Remove unused variable `game'.
19961
19962 * play/zone.el (life-patterns): Declare.
19963
19964 2011-04-20 Juanma Barranquero <lekktu@gmail.com>
19965
19966 * vc/vc.el (ediff-vc-internal): Declare function.
19967
19968 2011-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
19969
19970 * shell.el: Use lexical-binding and std completion UI.
19971 (shell-filter-ctrl-a-ctrl-b): Work as a preoutput filter.
19972 (shell-mode): Put shell-filter-ctrl-a-ctrl-b on
19973 comint-preoutput-filter-functions rather than on
19974 comint-output-filter-functions.
19975 (shell-command-completion, shell--command-completion-data)
19976 (shell-filename-completion, shell-environment-variable-completion)
19977 (shell-c-a-p-replace-by-expanded-directory): New functions.
19978 (shell-dynamic-complete-functions, shell-dynamic-complete-command)
19979 (shell-dynamic-complete-filename, shell-replace-by-expanded-directory)
19980 (shell-dynamic-complete-environment-variable): Use them.
19981 (shell-dynamic-complete-as-environment-variable)
19982 (shell-dynamic-complete-as-command): Remove.
19983 (shell-match-partial-variable): Match past point.
19984 * comint.el: Clean up use of completion-at-point-functions.
19985 (comint-completion-at-point): New function.
19986 (comint-mode): Use it completion-at-point-functions.
19987 (comint-dynamic-complete): Make it obsolete.
19988 (comint-replace-by-expanded-history-before-point): Add dry-run arg.
19989 (comint-c-a-p-replace-by-expanded-history): New function.
19990 (comint-dynamic-complete-functions)
19991 (comint-replace-by-expanded-history): Use it.
19992 * minibuffer.el (completion-table-with-terminator): Allow dynamic
19993 termination strings. Try harder to avoid second try-completion.
19994 (completion-in-region-mode-map): Disable bindings that don't work yet.
19995
19996 * comint.el: Use lexical-binding. Require CL.
19997 (comint-dynamic-complete-functions): Use comint-filename-completion.
19998 (comint-completion-addsuffix): Tweak custom type.
19999 (comint-filename-completion, comint--common-suffix)
20000 (comint--common-quoted-suffix, comint--table-subvert)
20001 (comint--complete-file-name-data): New functions.
20002 (comint-dynamic-complete-as-filename, comint-dynamic-complete-filename)
20003 (comint-dynamic-list-filename-completions): Use them.
20004 (comint-dynamic-simple-complete): Make obsolete.
20005
20006 * minibuffer.el (completion-in-region-mode):
20007 Keep completion-in-region-mode--predicate global.
20008 (completion-in-region--postch):
20009 Assume completion-in-region-mode--predicate is not null.
20010
20011 * progmodes/flymake.el (flymake-start-syntax-check-process):
20012 Obey `dir'. Simplify.
20013
20014 * vc/vc.el (vc-version-ediff): Call ediff-vc-internal directly, since
20015 we're in VC after all.
20016
20017 2011-04-20 Christoph Scholtes <cschol2112@googlemail.com>
20018
20019 * vc/vc.el (vc-diff-build-argument-list-internal)
20020 (vc-version-ediff, vc-ediff): New commands.
20021 (vc-version-diff): Use vc-diff-build-argument-list-internal.
20022
20023 2011-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
20024
20025 * emacs-lisp/byte-opt.el (byte-decompile-bytecode-1): Remove dead code,
20026 add sanity check.
20027
20028 * obsolete/erc-hecomplete.el: Make obsolete.
20029 * obsolete/: Standardize obsolescence info in the header.
20030
20031 2011-04-20 Glenn Morris <rgm@gnu.org>
20032
20033 * calendar/solar.el (solar-horizontal-coordinates):
20034 Use the longitude argument rather than `calendar-longitude'.
20035 (solar-date-next-longitude): Remove unused locals.
20036
20037 2011-04-20 Vinicius Jose Latorre <viniciusjl@ig.com.br>
20038
20039 * whitespace.el: New version 13.2.1.
20040
20041 2011-04-20 felix <EmacsWiki> (tiny change)
20042
20043 * whitespace.el (global-whitespace-mode): Keep highlight when
20044 switching between major modes on a file.
20045
20046 2011-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
20047
20048 * progmodes/octave-mod.el (octave-in-comment-p, octave-in-string-p)
20049 (octave-not-in-string-or-comment-p): Use syntax-ppss so it works with
20050 multi-line comments as well.
20051
20052 2011-04-19 Juanma Barranquero <lekktu@gmail.com>
20053
20054 Lexical-binding cleanup.
20055
20056 * arc-mode.el (archive-mode-revert):
20057 * cmuscheme.el (scheme-interactively-start-process):
20058 * custom.el (custom-initialize-delay):
20059 * dnd.el (dnd-open-local-file, dnd-open-remote-url):
20060 * dos-w32.el (direct-print-region-helper, direct-print-region-function):
20061 * emacs-lock.el (emacs-lock-clear-sentinel):
20062 * ezimage.el (defezimage):
20063 * follow.el (follow-avoid-tail-recenter):
20064 * fringe.el (set-fringe-mode-1):
20065 * generic-x.el (bat-generic-mode-compile):
20066 * help-mode.el (help-info-variable, help-do-xref)
20067 (help-mode-revert-buffer):
20068 * help.el (view-emacs-todo):
20069 * iswitchb.el (iswitchb-completion-help):
20070 * jka-compr.el (jka-compr-make-temp-name, jka-compr-load):
20071 * kmacro.el (kmacro-cycle-ring-next, kmacro-cycle-ring-previous)
20072 (kmacro-delete-ring-head, kmacro-bind-to-key, kmacro-view-macro):
20073 * locate.el (locate-update):
20074 * longlines.el (longlines-encode-region)
20075 (longlines-after-change-function):
20076 * outline.el (outline-isearch-open-invisible):
20077 * ps-def.el (declare-function, charset-dimension, char-width)
20078 (encode-char):
20079 * ps-mule.el (ps-mule-plot-string):
20080 * recentf.el (recentf-make-menu-items, recentf-cancel-dialog)
20081 (recentf-edit-list-select, recentf-edit-list-validate)
20082 (recentf-open-files-action):
20083 * rect.el (delete-whitespace-rectangle-line)
20084 (rectangle-number-line-callback):
20085 * register.el (window-configuration-to-register)
20086 (frame-configuration-to-register):
20087 * scroll-bar.el (scroll-bar-mode, toggle-horizontal-scroll-bar):
20088 * select.el (xselect-convert-to-string, xselect-convert-to-length)
20089 (xselect-convert-to-targets, xselect-convert-to-delete)
20090 (xselect-convert-to-filename, xselect-convert-to-charpos)
20091 (xselect-convert-to-lineno, xselect-convert-to-colno)
20092 (xselect-convert-to-os, xselect-convert-to-host)
20093 (xselect-convert-to-user, xselect-convert-to-class)
20094 (xselect-convert-to-name, xselect-convert-to-integer)
20095 (xselect-convert-to-atom, xselect-convert-to-identity):
20096 * subr.el (declare, ignore, process-kill-without-query)
20097 (text-clone-maintain):
20098 * terminal.el (te-get-char, te-tic-sentinel):
20099 * tool-bar.el (tool-bar-make-keymap):
20100 * tooltip.el (tooltip-timeout, tooltip-hide, tooltip-help-tips):
20101 * type-break.el (type-break-mode, type-break-noninteractive-query):
20102 * view.el (View-back-to-mark):
20103 * wid-browse.el (widget-browse-action, widget-browse-widget)
20104 (widget-browse-widgets, widget-browse-sexp):
20105 * widget.el (define-widget-keywords):
20106 * xt-mouse.el (xterm-mouse-translate, turn-off-xterm-mouse-tracking):
20107 Mark unused parameters.
20108
20109 * align.el (align-adjust-col-for-rule): Mark unused parameter.
20110 (align-areas): Remove unused variable `look'.
20111 (align-region): Remove unused variables `real-end' and `pos-list'.
20112
20113 * apropos.el (apropos-score-doc): Remove unused variable `i'.
20114
20115 * bindings.el (mode-line-modified, mode-line-remote):
20116 Mark unused parameters.
20117 (mode-line-mule-info): Mark unused parameter; don't quote `lambda'.
20118
20119 * buff-menu.el (Buffer-menu-revert-function): Mark unused parameters.
20120 (Buffer-menu-mode): Mark unused parameter; don't quote `lambda'.
20121
20122 * comint.el (comint-history-isearch-pop-state)
20123 (comint-postoutput-scroll-to-bottom, comint-truncate-buffer)
20124 (comint-strip-ctrl-m, comint-read-noecho): Mark unused parameters.
20125 (comint-substitute-in-file-name): Doc fix.
20126
20127 * completion.el (cmpl-statistics-block): Mark unused parameter.
20128 (add-completions-from-tags-table, add-completions-from-lisp-buffer)
20129 (save-completions-to-file, load-completions-from-file):
20130 Remove unused local variable `e'.
20131
20132 * composite.el (compose-chars): Remove unused variable `len'.
20133 (lgstring-insert-glyph): Remove unused variable `g'.
20134 (compose-glyph-string): Remove unused variables `ascent',
20135 `descent', `lbearing' and `rbearing'.
20136 (compose-glyph-string-relative): Remove unused variables
20137 `lbearing', `rbearing' and `wadjust'.
20138 (compose-gstring-for-graphic): Remove unused variables `header',
20139 `wadjust', `xoff' and `yoff'. Use `let', not `let*'.
20140 (compose-gstring-for-terminal): Remove unused variables `header'
20141 and `nchars'. Use `let', not `let*'.
20142
20143 * cus-edit.el (Custom-set, Custom-save, custom-reset)
20144 (Custom-reset-current, Custom-reset-saved, Custom-reset-standard)
20145 (Custom-buffer-done, custom-buffer-create-internal)
20146 (custom-browse-visibility-action, custom-browse-group-tag-action)
20147 (custom-browse-variable-tag-action, custom-browse-face-tag-action)
20148 (widget-magic-mouse-down-action, custom-toggle-parent)
20149 (custom-add-parent-links, custom-toggle-hide-variable)
20150 (custom-face-edit-value-visibility-action, custom-face-edit-fix-value)
20151 (custom-toggle-hide-face, face, hook, custom-group-link-action)
20152 (custom-face-menu-create, custom-variable-menu-create, get)
20153 (custom-group-menu-create, Custom-no-edit): Mark unused parameters.
20154 (custom-reset-standard-save-and-update): Remove unused variable `value'.
20155 (customize-apropos): Remove unused variable `tests'.
20156 (custom-group-value-create): Remove unused variable `hidden-p'.
20157 (sort-fold-case): Declare.
20158
20159 * cus-theme.el (custom-reset-standard-faces-list)
20160 (custom-reset-standard-variables-list): Declare.
20161 (customize-create-theme, custom-theme-revert, custom-theme-write)
20162 (custom-theme-choose-mode, customize-themes, custom-theme-save):
20163 Mark unused parameters.
20164
20165 * dabbrev.el (dabbrev-completion): Remove unused variable `init'.
20166
20167 * delim-col.el (delimit-columns-max): Move defvar before first use.
20168
20169 * descr-text.el (describe-char-categories): Don't quote `lambda'.
20170 (describe-char): Don't quote `lambda'. Mark unused parameter.
20171
20172 * desktop.el (desktop-save-buffer-p): Mark unused parameter.
20173 (auto-insert): Declare.
20174 (desktop-restore-file-buffer): Rename desktop-* parameters;
20175 mark unused ones.
20176 (desktop-create-buffer): Rename desktop-* parameters and bind them.
20177 (desktop-buffer): Rename desktop-* parameters.
20178
20179 * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape): Declare.
20180 (dframe-reposition-frame-xemacs, dframe-help-echo)
20181 (dframe-hack-buffer-menu, dframe-set-timer, dframe-set-timer-internal):
20182 Mark unused parameters.
20183
20184 * dired-aux.el (backup-extract-version-start, overwrite-query)
20185 (overwrite-backup-query, rename-regexp-query)
20186 (rename-non-directory-query): Declare.
20187 (dired-shell-stuff-it, dired-do-create-files): Mark unused parameters.
20188 (dired-add-entry): Remove unused variable `orig-file-name'.
20189 (dired-copy-file-recursive): Remove unused variable `dirfailed'.
20190 Use parameter PRESERVE-TIME instead of accessing dynamic variable
20191 `dired-copy-preserve-time' directly.
20192 (dired-do-create-files-regexp): Remove unused variable `fn-count'.
20193 (dired-insert-subdir-newpos): Rename unused variable `pos'.
20194
20195 * dired-x.el (dired-omit-size-limit): Move defcustom before first use.
20196 (dired-virtual-revert, dired-make-relative-symlink):
20197 Mark unused parameters.
20198 (manual-program): Declare.
20199 (dired-x-hands-off-my-keys): Rename parameters of lambda expression.
20200 (inode, s, mode, nlink, uid, gid, size, time, name, sym): Declare them,
20201 wrapped in `with-no-warnings' to avoid replacing one warning by another.
20202
20203 * dirtrack.el (dirtrack): Remove unused variable `multi-line'.
20204
20205 * dos-fns.el (dos-8+3-filename): Remove unused variable `i'.
20206
20207 * echistory.el (electric-history-in-progress, Helper-return-blurb):
20208 Declare.
20209
20210 * edmacro.el (edmacro-finish-edit): Remove unused variable `kmacro'.
20211
20212 * electric.el (Electric-command-loop): Rename parameter
20213 INHIBIT-QUIT to INHIBIT-QUITTING and bind `inhibit-quit'.
20214
20215 * expand.el (expand-in-literal): Remove unused variable `here'.
20216
20217 * facemenu.el (facemenu-add-new-color):
20218 Remove unused variable `docstring'.
20219
20220 * faces.el (face-id, make-face-bold, make-face-unbold, make-face-italic)
20221 (make-face-unitalic, make-face-bold-italic): Mark unused parameters.
20222 (face-attr-construct): Mark unused parameter. Doc fix.
20223 (read-color): Remove unused variable `hex-string'.
20224
20225 * files.el (parse-colon-path): Rename argument CD-PATH to SEARCH-PATH.
20226 (locate-dominating-file): Remove unused vars `prev-file' and `user'.
20227 (remote-file-name-inhibit-cache, revert-buffer): Clean up docstrings.
20228 (display-buffer-other-frame): Remove unused variable `old-window'.
20229 (kill-buffer-hook): Declare.
20230 (insert-file-contents-literally, set-auto-mode, risky-local-variable-p):
20231 Mark unused parameters.
20232 (after-find-file): Pass 1 to `auto-save-mode', not t.
20233
20234 * files-x.el (auto-insert): Declare.
20235 (modify-file-local-variable-prop-line): Remove unused variable `val'.
20236
20237 * find-lisp.el (find-lisp-find-dired-internal): Remove unused
20238 variable `buf'. Mark unused parameter.
20239 (find-lisp-insert-directory): Mark unused parameter.
20240
20241 * format.el (format-decode-run-method): Mark unused parameter; doc fix.
20242 (format-encode-region): Remove unused variables `cur-buf' and `result'.
20243 (format-common-tail): Remove, unused.
20244 (format-deannotate-region): Remove unused variable `loc'.
20245 (format-annotate-region): Remove unused variable `p'.
20246 (format-annotate-single-property-change): Remove unused variables
20247 `default' and `tail'.
20248
20249 * forms.el (read-file-filter): Declare.
20250 (forms--iif-hook, forms--revert-buffer): Mark unused parameters.
20251
20252 * frame.el (frame-creation-function-alist): Mark unused parameter.
20253 (frame-geom-spec-cons): Pass FRAME to `frame-geom-value-cons'.
20254
20255 * hilit-chg.el (hilit-chg-cust-fix-changes-face-list, hilit-chg-clear):
20256 Remove unused parameters.
20257 (hilit-chg-set-face-on-change): Remove unused variable `beg-decr'.
20258 (highlight-compare-with-file): Remove unused variable `buf-b-read-only'.
20259
20260 * htmlfontify.el (hfy-default-footer, hfy-decor, hfy-invisible)
20261 (hfy-parse-tags-buffer, hfy-prepare-index-i, hfy-prepare-index)
20262 (hfy-prepare-tag-map): Mark unused parameters.
20263 (htmlfontify-buffer): Use `called-interactively-p'.
20264
20265 * ibuf-ext.el (ibuffer-do-kill-lines, ibuffer-jump-to-buffer)
20266 (ibuffer-copy-filename-as-kill, ibuffer-mark-on-buffer)
20267 (ibuffer-do-occur): Mark unused parameters.
20268 (ibuffer-forward-next-marked): Remove unused variable `curmark'.
20269 (ibuffer-diff-buffer-with-file-1): Remove unused variable `proc'.
20270
20271 * ibuffer.el: Don't quote `lambda'.
20272 (ibuffer-count-marked-lines, ibuffer-count-deletion-lines)
20273 (ibuffer-unmark-all, ibuffer-toggle-marks, ibuffer-redisplay-engine):
20274 Mark unused parameters.
20275
20276 * ido.el (ido-mode, ido-wide-find-dir-or-delete-dir)
20277 (ido-completing-read): Mark unused parameters.
20278 (ido-copy-current-word): Mark unused parameters;
20279 remove unused variable `name'.
20280 (ido-sort-merged-list): Remove unused parameter `dirs'.
20281
20282 * ielm.el (ielm-input-sender): Mark unused parameter.
20283 (ielm-string, ielm-form, ielm-pos, ielm-result, ielm-error-type)
20284 (ielm-output, ielm-wbuf, ielm-pmark): Declare.
20285 (ielm-eval-input): Rename argument IELM-STRING to INPUT-STRING to keep
20286 `ielm-string' as a dynamic variable accessible from the IELM prompt.
20287 Bind `ielm-string' to INPUT-STRING. Remove unused variable `err'.
20288
20289 * image-dired.el (image-dired-display-thumbs): Remove unused
20290 variables `curr-file' and `count'.
20291 (image-dired-remove-tag): Remove unused variable `start'.
20292 (image-dired-tag-files, image-dired-create-thumbs): Remove unused
20293 variable `curr-file'
20294 (image-dired-rotate-original): Remove unused variable `temp-file'.
20295 (image-dired-mouse-select-thumbnail, image-dired-mouse-toggle-mark):
20296 Remove unused variable `file'.
20297 (image-dired-gallery-generate): Remove unused variable `curr'.
20298 (image-dired-dired-edit-comment-and-tags): Mark unused parameters.
20299
20300 * indent.el (tab-to-tab-stop): Remove unused variable `opoint'.
20301
20302 * info-xref.el (info-xref-goto-node-p): Remove unused variable `err'.
20303
20304 * informat.el (texinfo-command-start, texinfo-command-end): Declare.
20305
20306 * isearch.el (minibuffer-history-symbol): Declare.
20307 (isearch-edit-string): Remove unused variable `err'.
20308 (isearch-message-prefix, isearch-message-suffix):
20309 Mark unused parameters.
20310
20311 * ls-lisp.el (ls-lisp-insert-directory): Remove unused variable `fil'.
20312
20313 * macros.el (insert-kbd-macro): Remove unused variable `mods'.
20314
20315 * makesum.el (double-column): Remove unused variable `cnt'.
20316
20317 * misearch.el (multi-isearch-pop-state): Mark unused parameter.
20318 (ido-ignore-item-temp-list): Declare.
20319
20320 * mouse-drag.el (mouse-drag-throw): Remove unused variables
20321 `mouse-delta', `window-last-row', `mouse-col-delta', `window-last-col',
20322 `adjusted-mouse-col-delta' and `adjusted-mouse-delta'.
20323 (mouse-drag-drag): Remove unused variables `mouse-delta' and
20324 `mouse-col-delta'.
20325
20326 * mouse-sel.el (mouse-extend-internal):
20327 Remove unused variable `orig-window-frame'.
20328
20329 * pcomplete.el (pcomplete-args, pcomplete-begins, pcomplete-last)
20330 (pcomplete-index, pcomplete-stub, pcomplete-seen, pcomplete-norm-func):
20331 Move declarations before first use.
20332 (pcomplete-opt): Mark unused parameters; doc fix.
20333
20334 * proced.el (proced-revert): Mark unused parameter.
20335 (proced-send-signal): Remove unused variable `err'.
20336
20337 * ps-print.el (ps-print-preprint-region, ps-print-preprint):
20338 Rename parameter PREFIX-ARG to ARG.
20339 (ps-basic-plot-string, ps-basic-plot-whitespace):
20340 Mark unused parameters.
20341
20342 * replace.el (replace-count): Define.
20343 (occur-revert-function): Mark unused parameters.
20344 (ido-ignore-item-temp-list, isearch-error, isearch-forward)
20345 (isearch-case-fold-search, isearch-string): Declare.
20346 (occur-engine): Rename parameter CASE-FOLD-SEARCH to CASE-FOLD and
20347 bind `case-fold-search'. Remove unused variables `beg' and `end',
20348 and simplify.
20349 (replace-eval-replacement): Rename parameter REPLACE-COUNT to
20350 COUNT and bind `replace-count'.
20351 (replace-loop-through-replacements): Rename parameter REPLACE-COUNT
20352 to COUNT.
20353
20354 * savehist.el (print-readably, print-string-length): Declare.
20355
20356 * shadowfile.el (shadow-expand-cluster-in-file-name):
20357 Remove unused variable `cluster'.
20358 (shadow-copy-file): Remove unused variable `i'.
20359 (shadow-noquery, shadow-clusters, shadow-site-cluster)
20360 (shadow-parse-fullname, shadow-parse-name, shadow-define-cluster)
20361 (shadow-define-literal-group, shadow-define-regexp-group)
20362 (shadow-make-group, shadow-shadows-of): Clean up docstrings.
20363
20364 * shell.el (shell-filter-ctrl-a-ctrl-b): Mark unused parameter.
20365 (shell): Use `called-interactively-p'.
20366 (shell-directory-tracker): Remove unused variable `chdir-failure'.
20367
20368 * simple.el (compilation-context-lines, comint-file-name-quote-list)
20369 (comint-file-name-chars, comint-delimiter-argument-list): Declare.
20370 (delete-backward-char): Remove unused variable `ocol'.
20371 (minibuffer-avoid-prompt, minibuffer-history-isearch-pop-state)
20372 (line-move-1, event-apply-alt-modifier, event-apply-super-modifier)
20373 (event-apply-hyper-modifier, event-apply-shift-modifier)
20374 (event-apply-control-modifier, event-apply-meta-modifier):
20375 Mark unused parameters.
20376 (undo-make-selective-list): Remove duplicate variable `undo-elt'.
20377 (normal-erase-is-backspace-mode): Remove unused variable `old-state'.
20378
20379 * speedbar.el (speedbar-ignored-directory-expressions)
20380 (speedbar-supported-extension-expressions, speedbar-directory-buttons)
20381 (speedbar-find-file, speedbar-dir-follow)
20382 (speedbar-directory-buttons-follow, speedbar-tag-find)
20383 (speedbar-buffer-buttons, speedbar-buffer-buttons-temp)
20384 (speedbar-buffers-line-directory, speedbar-buffer-click):
20385 Mark unused parameters.
20386 (speedbar-tag-file): Remove unused variable `mode'.
20387 (speedbar-buffers-tail-notes): Remove unused variable `mod'; simplify.
20388
20389 * strokes.el (strokes-decode-buffer): Remove unused variable `ext'.
20390
20391 * talk.el (talk): Remove unused variable `display'.
20392
20393 * tar-mode.el (tar-subfile-save-buffer): Remove unused variable `name'.
20394 (tar-write-region-annotate): Mark unused parameter.
20395
20396 * time.el (now, time, load, mail, 24-hours, hour, 12-hours, am-pm)
20397 (minutes, seconds, time-zone, day, year, monthname, month, dayname):
20398 Declare them, wrapped in `with-no-warnings' to avoid replacing one
20399 warning by another.
20400
20401 * time-stamp.el (time-stamp-string-preprocess):
20402 Remove unused variable `require-padding'.
20403
20404 * tree-widget.el (widget-glyph-enable): Declare.
20405 (tree-widget-action): Mark unused parameter.
20406
20407 * w32-fns.el (x-get-selection): Mark unused parameter.
20408 (autoload-make-program, generated-autoload-file): Declare.
20409
20410 * wdired.el (wdired-revert): Mark unused parameters.
20411 (wdired-xcase-word): Remove unused variable `err'.
20412
20413 * whitespace.el (whitespace-buffer-changed): Mark unused parameters.
20414 (whitespace-help-scroll): Remove unused variable `data-help'.
20415
20416 * wid-edit.el (widget-mouse-help, widget-overlay-inactive)
20417 (widget-image-insert, widget-after-change, default)
20418 (widget-default-format-handler, widget-default-notify)
20419 (widget-default-prompt-value, widget-info-link-action)
20420 (widget-url-link-action, widget-function-link-action)
20421 (widget-variable-link-action, widget-file-link-action)
20422 (widget-emacs-library-link-action, widget-emacs-commentary-link-action)
20423 (widget-field-prompt-internal, widget-field-action, widget-field-match)
20424 (widget-choice-mouse-down-action, toggle, widget-radio-button-notify)
20425 (widget-insert-button-action, widget-delete-button-action, visibility)
20426 (widget-documentation-link-action, widget-documentation-string-action)
20427 (widget-const-prompt-value, widget-regexp-match, symbol)
20428 (widget-coding-system-prompt-value)
20429 (widget-key-sequence-value-to-external, sexp)
20430 (widget-sexp-value-to-internal, character, vector, cons)
20431 (widget-choice-prompt-value, widget-boolean-prompt-value)
20432 (widget-color--choose-action): Mark unused parameters.
20433 (widget-item-match-inline, widget-choice-match-inline)
20434 (widget-checklist-match, widget-checklist-match-inline)
20435 (widget-group-match): Rename parameter VALUES to VALS.
20436 (widget-field-value-set): Remove unused variable `size'.
20437 (widget-color-action): Remove unused variables `value' and `start'.
20438
20439 * windmove.el (windmove-wrap-loc-for-movement): Remove unused
20440 variable `dir'. Doc fix.
20441 (windmove-find-other-window): Don't pass it.
20442
20443 * window.el (count-windows): Mark unused parameter.
20444 (bw-adjust-window): Remove unused variable `err'.
20445
20446 * woman.el (woman-file-name): Remove unused variable `default'.
20447 (woman-expand-directory-path): Rename parameters WOMAN-MANPATH and
20448 WOMAN-PATH to PATH-DIRS and PATH-REGEXPS, respectively.
20449 (global-font-lock-mode): Declare.
20450 (woman-decode-region): Mark unused parameter.
20451 (woman-get-tab-stop): Rename parameter TAB-STOP-LIST to TAB-STOPS.
20452
20453 * x-dnd.el (x-dnd-default-test-function, x-dnd-handle-old-kde)
20454 (x-dnd-handle-xdnd, x-dnd-handle-motif): Mark unused parameters.
20455 (x-dnd-handle-moz-url): Remove unused variable `title'.
20456 (x-dnd-handle-xdnd): Remove unused variables `x', `y' and `ret-action'.
20457
20458 * xml.el (xml-parse-tag, xml-parse-attlist):
20459 Remove unused variable `pos'.
20460
20461 2011-04-19 Glenn Morris <rgm@gnu.org>
20462
20463 * calendar/cal-tex.el (cal-tex-list-holidays, cal-tex-cursor-month)
20464 (cal-tex-cursor-week, cal-tex-cursor-week2, cal-tex-cursor-week-iso)
20465 (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
20466 (cal-tex-cursor-filofax-daily, cal-tex-mini-calendar)
20467 * calendar/cal-html.el (cal-html-insert-minical):
20468 * calendar/diary-lib.el (diary-list-entries-1, diary-list-entries)
20469 (calendar-mark-date-pattern):
20470 Prefix "unused" locals.
20471
20472 * calendar/cal-dst.el (dst-adjust-time): Remove never-implemented
20473 optional argument `style'.
20474
20475 * calendar/appt.el (appt-make-list):
20476 * calendar/cal-china.el (calendar-chinese-date-string):
20477 * calendar/cal-hebrew.el (calendar-hebrew-list-yahrzeits)
20478 (diary-hebrew-yahrzeit):
20479 * calendar/cal-tex.el (cal-tex-last-blank-p, cal-tex-cursor-week2):
20480 * calendar/calendar.el (calendar-generate-window):
20481 * calendar/time-date.el (time-to-days):
20482 Remove unused local variables.
20483
20484 2011-04-18 Chong Yidong <cyd@stupidchicken.com>
20485
20486 * emacs-lisp/tabulated-list.el (tabulated-list-mode): Use a custom
20487 glyphless-char-display table.
20488 (tabulated-list-glyphless-char-display): New var.
20489
20490 2011-04-18 Sam Steingold <sds@gnu.org>
20491
20492 * vc/add-log.el (change-log-font-lock-keywords): Add "Thanks to"
20493 to acknowledgments.
20494
20495 2011-04-17 Glenn Morris <rgm@gnu.org>
20496
20497 * calendar/diary-lib.el (diary-sexp-entry):
20498 * calendar/holidays.el (holiday-sexp):
20499 Set debug-on-error rather than the removed stack-trace-on-error.
20500
20501 2011-04-16 Glenn Morris <rgm@gnu.org>
20502
20503 * progmodes/f90.el: Use lexical-binding.
20504 (f90-get-correct-indent): Remove unnecessary local variable `cont'.
20505
20506 2011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
20507
20508 * mail/sendmail.el (mail-mode-map): Use completion-at-point.
20509 (mail-mode): Setup mailalias completion here instead.
20510 * mail/mailalias.el: Use lexical-binding.
20511 (pattern, mailalias-done): Declare dynamic.
20512 (mail-completion-at-point-function): New function, from mail-complete.
20513 (mail-complete): Use it.
20514 (mail-completion-expand): New function.
20515 (mail-get-names): Use it.
20516 (mail-directory, mail-directory-process, mail-directory-stream):
20517 Don't use `pattern' for lexically bound arg.
20518
20519 * emacs-lisp/lisp-mode.el (eval-defun-2): Use eval-sexp-add-defvars.
20520
20521 * htmlfontify.el (hfy-etags-cmd): Remove inoperant eval-and-compile.
20522 (hfy-e2x-etags-cmd, hfy-etags-cmd-alist-default)
20523 (hfy-etags-cmd-alist): Don't eval-and-compile any more.
20524
20525 * emacs-lisp/bytecomp.el (byte-temp-output-buffer-show)
20526 (byte-save-window-excursion, byte-temp-output-buffer-setup)
20527 (byte-interactive-p): Define them again, for use when inlining
20528 old code.
20529
20530 2011-04-15 Juanma Barranquero <lekktu@gmail.com>
20531
20532 * loadup.el: Use `string-to-number', not `string-to-int'.
20533
20534 2011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
20535
20536 * progmodes/gud.el (gud-gdb): Use completion-at-point instead of
20537 gud-gdb-complete-command.
20538 (gud-gdb-completions): New function, from gud-gdb-complete-command.
20539 (gud-gdb-completion-at-point): New function.
20540 (gud-gdb-completions): Remove.
20541
20542 2011-04-14 Michael Albinus <michael.albinus@gmx.de>
20543
20544 * net/tramp-sh.el (tramp-sh-handle-file-attributes): Handle the case
20545 when the scripts fail. Use `tramp-do-file-attributes-with-ls' then.
20546 (tramp-do-copy-or-rename-file-out-of-band): Do not check any longer
20547 whether `executable-find' is bound.
20548
20549 * net/tramp-smb.el (tramp-smb-handle-copy-file): Fix docstring.
20550
20551 2011-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
20552
20553 * minibuffer.el (completion-in-region-mode-predicate)
20554 (completion-in-region-mode--predicate): New vars.
20555 (completion-in-region, completion-in-region--postch)
20556 (completion-in-region-mode): Use them.
20557 (completion--capf-wrapper): Also return the hook function.
20558 (completion-at-point, completion-help-at-point):
20559 Adjust and provide a predicate.
20560
20561 Preserve arg names for advice of subr and lexical functions (bug#8457).
20562 * help-fns.el (help-function-arglist): Consolidate the subr and
20563 new-byte-code cases. Add argument `preserve-names' to extract names
20564 from the docstring when needed.
20565 * emacs-lisp/advice.el (ad-define-subr-args, ad-undefine-subr-args)
20566 (ad-subr-args-defined-p, ad-get-subr-args, ad-subr-arglist): Remove.
20567 (ad-arglist): Use help-function-arglist's new arg.
20568 (ad-definition-type): Use cond.
20569
20570 2011-04-13 Juanma Barranquero <lekktu@gmail.com>
20571
20572 * autorevert.el (auto-revert-handler):
20573 Bind `remote-file-name-inhibit-cache', not `tramp-cache-inhibit-cache',
20574 which was removed in 2010-10-02T13:21:43Z!michael.albinus@gmx.de.
20575 Don't quote lambda.
20576
20577 * image-mode.el (image-transform-set-scale):
20578 Fix change in 2011-04-09T20:28:01Z!cyd@stupidchicken.com.
20579
20580 2011-04-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
20581
20582 * net/network-stream.el (network-stream-open-starttls): Only do
20583 opportunistic STARTTLS upgrades if we have built-in GnuTLS support.
20584 Upgrades via gnutls-cli are too slow to be done opportunistically.
20585
20586 2011-04-12 Juanma Barranquero <lekktu@gmail.com>
20587
20588 * dframe.el (dframe-current-frame): Remove spurious quote.
20589
20590 2011-04-12 Glenn Morris <rgm@gnu.org>
20591
20592 * calendar/cal-tex.el (cal-tex-end-document):
20593 Try to automatically use latin1 input if needed.
20594
20595 * calendar/cal-hebrew.el (diary-hebrew-rosh-hodesh):
20596 Don't try to cons a mark onto an empty element.
20597
20598 2011-04-11 Leo Liu <sdl.web@gmail.com>
20599
20600 * ido.el (ido-buffer-internal): Allow method 'kill for virtual
20601 buffers.
20602 (ido-kill-buffer-at-head): Support killing virtual buffers.
20603
20604 2011-04-10 Chong Yidong <cyd@stupidchicken.com>
20605
20606 * minibuffer.el (completion-show-inline-help): New var.
20607 (completion--do-completion, minibuffer-complete)
20608 (minibuffer-force-complete, minibuffer-complete-word):
20609 Inhibit minibuffer messages if completion-show-inline-help is nil.
20610
20611 * icomplete.el (icomplete-mode): Bind completion-show-inline-help
20612 to avoid interference from inline help (Bug#5849).
20613
20614 2011-04-10 Leo Liu <sdl.web@gmail.com>
20615
20616 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
20617 Fix typo.
20618
20619 2011-04-09 Chong Yidong <cyd@stupidchicken.com>
20620
20621 * image-mode.el (image-toggle-display-image): Signal an error if
20622 not in Image mode.
20623 (image-transform-mode, image-transform-resize)
20624 (image-transform-set-rotation): Doc fix.
20625 (image-transform-set-resize): Delete.
20626 (image-transform-set-scale, image-transform-fit-to-height)
20627 (image-transform-fit-to-width): Handle image-toggle-display-image
20628 and image-transform-resize directly.
20629
20630 2011-04-08 Sho Nakatani <lay.sakura@gmail.com>
20631
20632 * doc-view.el (doc-view-fit-width-to-window)
20633 (doc-view-fit-height-to-window, doc-view-fit-page-to-window):
20634 New functions for fitting the shown image to the Emacs window size.
20635 (doc-view-mode-map): Add bindings for the new functions.
20636
20637 2011-04-08 Juanma Barranquero <lekktu@gmail.com>
20638
20639 * vc/vc-annotate.el (vc-annotate-show-log-revision-at-line):
20640 Fix typo in docstring.
20641
20642 2011-04-08 Eli Zaretskii <eliz@gnu.org>
20643
20644 * files.el (file-size-human-readable): Produce one digit after
20645 decimal, like "ls -lh" does.
20646
20647 * ls-lisp.el (ls-lisp-format-file-size): Allow for 7 characters in
20648 the file size representation.
20649
20650 * simple.el (list-processes): If async subprocesses are not
20651 available, error out with a clear error message.
20652
20653 2011-04-08 Chong Yidong <cyd@stupidchicken.com>
20654
20655 * help.el (help-form-show): New function, to be called from C.
20656 Put help-form output in a buffer named differently than *Help*.
20657
20658 2011-04-08 Eli Zaretskii <eliz@gnu.org>
20659
20660 * files.el (file-size-human-readable): New function.
20661
20662 * ls-lisp.el (ls-lisp-format-file-size): Use it, instead of
20663 computing the representation inline. Don't require `cl'.
20664
20665 2011-04-08 Glenn Morris <rgm@gnu.org>
20666
20667 * man.el (Man-page-header-regexp): Solaris < 2.6 no longer supported.
20668
20669 * net/browse-url.el (browse-url-firefox):
20670 Test system-type, not system-configuration.
20671
20672 * vc/log-edit.el (log-edit-empty-buffer-p): New function.
20673 (log-edit-insert-cvs-template, log-edit-insert-cvs-rcstemplate):
20674 Use log-edit-empty-buffer-p. (Bug#7598)
20675
20676 * net/rlogin.el (rlogin-process-connection-type): Simplify.
20677 (rlogin-mode-map): Initialize in the defvar.
20678 (rlogin): Use ignore-errors.
20679
20680 * replace.el (occur-mode-map): Some fixes for menu items.
20681
20682 2011-04-07 Aaron S. Hawley <aaron.s.hawley@gmail.com>
20683
20684 * play/morse.el (denato-region): Handle varying case. (Bug#8386)
20685
20686 2011-04-06 Chong Yidong <cyd@stupidchicken.com>
20687
20688 * emacs-lisp/cconv.el (cconv--analyse-use): Ignore "ignored" when
20689 issuing unused warnings.
20690
20691 * emacs-lisp/tabulated-list.el (tabulated-list-print): Use lambda
20692 macro directly.
20693
20694 * simple.el: Lisp reimplement of list-processes. Based on an
20695 earlier reimplementation by Leo Liu, but using tabulated-list.el.
20696 (process-menu-mode): New major mode.
20697 (list-processes--refresh, list-processes):
20698 (process-menu-visit-buffer): New functions.
20699
20700 * files.el (save-buffers-kill-emacs): Don't assume any return
20701 value of list-processes, which is undocumented anyway.
20702
20703 2011-04-06 Chong Yidong <cyd@stupidchicken.com>
20704
20705 * emacs-lisp/tabulated-list.el: New file.
20706
20707 * emacs-lisp/package.el: Use Tabulated List mode.
20708 (package-menu-mode-map): Inherit from tabulated-list-mode-map.
20709 (package-menu-mode): Derive from tabulated-list-mode. Set up the
20710 table format using Tabulated List mode variables.
20711 (package--push): New macro, replacing package-list-maybe-add.
20712 (package-menu--generate): Use package--push. Renamed from
20713 package--generate-package-list.
20714 (package-menu-refresh, list-packages): Use it.
20715 (package-menu--print-info): Rename from package-print-package.
20716 Return insertion data instead of inserting it directly.
20717 (package-menu-describe-package, package-menu-execute):
20718 Use tabulated-list-get-id.
20719 (package-menu-mark-delete, package-menu-mark-install)
20720 (package-menu-mark-unmark, package-menu-backup-unmark)
20721 (package-menu-mark-obsolete-for-deletion):
20722 Use tabulated-list-put-tag.
20723 (package--list-packages, package-menu-revert)
20724 (package-menu-get-package, package-menu-get-version)
20725 (package-menu-sort-by-column): Functions deleted.
20726 (package-menu-package-list, package-menu-sort-key): Vars deleted.
20727 (package-menu--status-predicate, package-menu--version-predicate)
20728 (package-menu--name-predicate)
20729 (package-menu--description-predicate): Handle arguments in the
20730 Tabulated List format.
20731 (package-list-packages-no-fetch): Call list-packages.
20732
20733 2011-04-06 Juanma Barranquero <lekktu@gmail.com>
20734
20735 * files.el (after-find-file-from-revert-buffer): Remove variable.
20736 (after-find-file): Don't bind it.
20737 (revert-buffer-in-progress-p): New variable.
20738 (revert-buffer): Bind it.
20739 Pass nil for `after-find-file-from-revert-buffer'.
20740
20741 * saveplace.el (save-place-find-file-hook): Use new variable
20742 `rever-buffer-in-progress-p', not `after-find-file-from-revert-buffer'.
20743
20744 2011-04-06 Glenn Morris <rgm@gnu.org>
20745
20746 * Makefile.in (AUTOGEN_VCS): New variable.
20747 (autoloads): Use $AUTOGEN_VCS.
20748
20749 * calendar/cal-move.el (calendar-scroll-toolkit-scroll): New function.
20750 * calendar/calendar.el (calendar-mode-map):
20751 Check for toolkit scroll bars. (Bug#8305)
20752
20753 2011-04-05 Chong Yidong <cyd@stupidchicken.com>
20754
20755 * minibuffer.el (completion-in-region--postch)
20756 (completion-in-region-mode): Remove unnecessary messages.
20757
20758 2011-04-05 Juanma Barranquero <lekktu@gmail.com>
20759
20760 * font-lock.el (font-lock-refresh-defaults):
20761 Don't bind `hi-lock--inhibit-font-lock-hook', removed in
20762 2010-10-09T04:09:19Z!cyd@stupidchicken.com and 2010-10-11T23:57:49Z!lekktu@gmail.com (2010-10-12).
20763
20764 * info.el (Info-directory-list, Info-read-node-name-2)
20765 (Info-split-parameter-string): Doc fixes.
20766 (Info-virtual-nodes): Reflow docstring.
20767 (Info-find-file, Info-directory-toc-nodes, Info-history-toc-nodes)
20768 (Info-apropos-toc-nodes, info-finder, Info-get-token)
20769 (Info-find-emacs-command-nodes, Info-speedbar-key-map):
20770 Fix typos in docstrings.
20771 (Info-revert-buffer-function, Info-search, Info-isearch-pop-state)
20772 (Info-speedbar-hierarchy-buttons, Info-speedbar-goto-node)
20773 (Info-speedbar-buttons, Info-desktop-buffer-misc-data)
20774 (Info-restore-desktop-buffer): Mark unused parameters.
20775 (Info-directory-find-file, Info-directory-find-node)
20776 (Info-history-find-file, Info-history-find-node, Info-toc-find-node)
20777 (Info-virtual-index-find-node, Info-apropos-find-file)
20778 (Info-apropos-find-node, Info-finder-find-file, Info-finder-find-node):
20779 Mark unused parameters; fix typos in docstrings.
20780 (Info-virtual-index): Remove unused local variable `nodename'.
20781
20782 2011-04-05 Deniz Dogan <deniz@dogan.se>
20783
20784 * net/rcirc.el: Update my e-mail address.
20785 (rcirc-mode-map): Remove M-o binding.
20786
20787 2011-04-05 Chong Yidong <cyd@stupidchicken.com>
20788
20789 * startup.el (command-line): Save the cursor's theme-face
20790 directly, instead of using face-override-spec.
20791
20792 * custom.el (load-theme): Minor optimization in assigning faces.
20793
20794 2011-04-04 Juanma Barranquero <lekktu@gmail.com>
20795
20796 * help-fns.el (describe-variable): Complete all variables having
20797 documentation, including keywords.
20798 http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00112.html
20799
20800 2011-04-04 Juanma Barranquero <lekktu@gmail.com>
20801
20802 Convert to lexical-binding.
20803
20804 * bs.el (bs-refresh, bs-sort-buffer-interns-are-last)
20805 (bs--get-marked-string, bs--get-modified-string)
20806 (bs--get-readonly-string, bs--get-size-string, bs--get-name)
20807 (bs--get-mode-name, bs--get-file-name): Mark unused arguments.
20808 (bs--configuration-name-for-prefix-arg): Rename argument PREFIX-ARG.
20809
20810 * ehelp.el (electric-help-execute-extended)
20811 (electric-help-ctrl-x-prefix):
20812 * hexl.el (hexl-revert-buffer-function):
20813 * linum.el (linum-after-change, linum-after-scroll):
20814 * emacs-lisp/re-builder.el (reb-auto-update): Mark unused arguments.
20815
20816 * help-fns.el (help-describe-category-set): Remove unused ERR variable.
20817
20818 2011-04-04 Daiki Ueno <ueno@unixuser.org>
20819
20820 * epa-dired.el:
20821 * epa-mail.el:
20822 * epa-hook.el:
20823 * epa-file.el:
20824 * epa.el:
20825 * epg.el: Use lexical binding.
20826
20827 2011-04-03 Chong Yidong <cyd@stupidchicken.com>
20828
20829 * dired-aux.el (dired-create-files): Add docstring (Bug#7970).
20830
20831 * textmodes/flyspell.el (flyspell-word): Recognize default
20832 dictionary case for flyspell-mark-duplications-exceptions.
20833 Use regexp matching for languages.
20834 (flyspell-mark-duplications-exceptions): Add "that" and "had" for
20835 default dictionary (Bug#7926).
20836
20837 2011-04-02 Chong Yidong <cyd@stupidchicken.com>
20838
20839 * emacs-lisp/package.el (package--with-work-buffer):
20840 Recognize https URLs.
20841
20842 * net/network-stream.el: Move from gnus/proto-stream.el.
20843 Change prefix to network-stream throughout.
20844 (open-protocol-stream): Merge into open-network-stream, leaving
20845 open-protocol-stream as an alias. Handle nil BUFFER args.
20846
20847 * subr.el (open-network-stream): Move to net/network-stream.el.
20848
20849 2011-04-02 Glenn Morris <rgm@gnu.org>
20850
20851 * find-dired.el (find-exec-terminator): New option.
20852 (find-ls-option): Test for -ls support.
20853 (find-ls-subdir-switches): Test for -b in find-ls-option.
20854 (find-dired, find-grep-dired): Doc fixes.
20855 (find-dired): Use find-exec-terminator.
20856
20857 * find-dired.el (find-ls-option, find-ls-subdir-switches)
20858 (find-grep-options): Do not autoload these defcustoms, remove purecopy.
20859 (find-name-arg): Remove purecopy.
20860
20861 * progmodes/grep.el (grep-find-use-xargs): Doc fix.
20862 (grep-compute-defaults): Check for `-exec COMMAND +' support.
20863 Set grep-find-use-xargs, grep-find-command, and grep-find-template
20864 accordingly. Don't add the null-device if not needed.
20865
20866 * files.el (save-some-buffers): Doc fix.
20867
20868 2011-04-02 Eli Zaretskii <eliz@gnu.org>
20869
20870 * makefile.w32-in (EMACS): Default to ../src/$(BLD)/emacs.exe.
20871
20872 2011-04-01 Juanma Barranquero <lekktu@gmail.com>
20873
20874 * progmodes/idlwave.el (idlwave-one-key-select, idlwave-list-abbrevs):
20875 Use `dolist' rather than `mapcar'.
20876
20877 2011-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
20878
20879 Add lexical binding.
20880
20881 * subr.el (apply-partially): Use new closures rather than CL.
20882 (--dolist-tail--, --dotimes-limit--): Don't declare dynamic.
20883 (dolist, dotimes): Use slightly different expansion for lexical code.
20884 (functionp): Move to C.
20885 (letrec): New macro.
20886 (with-wrapper-hook): Use it and apply-partially instead of CL.
20887 (eval-after-load): Preserve lexical-binding.
20888 (save-window-excursion, with-output-to-temp-buffer): Turn them
20889 into macros.
20890
20891 * simple.el (with-wrapper-hook, apply-partially): Move to subr.el.
20892
20893 * help-fns.el (help-split-fundoc): Return nil if there's nothing else
20894 than the arglist.
20895 (help-add-fundoc-usage): Don't add `Not documented'.
20896 (help-function-arglist): Handle closures, subroutines, and new
20897 byte-code-functions.
20898 (help-make-usage): Remove leading underscores.
20899 (describe-function-1): Handle closures.
20900 (describe-variable): Use special-variable-p for completion.
20901
20902 * files.el (lexical-binding): Declare safe.
20903
20904 * emacs-lisp/pcase.el: Don't use destructuring-bind.
20905 (pcase--memoize): Rename from pcase-memoize. Change weakness.
20906 (pcase): Add `let' pattern.
20907 Change memoization so it actually works.
20908 (pcase-mutually-exclusive-predicates): Add byte-code-function-p.
20909 (pcase--u1) <guard, pred>: Fix possible shadowing problem.
20910 <let>: New case.
20911
20912 * emacs-lisp/macroexp.el: Use lexical binding.
20913 (macroexpand-all-1): Check obsolete macros. Expand compiler-macros.
20914 Don't convert ' to #' without checking that it's indeed quoting
20915 a lambda.
20916
20917 * emacs-lisp/lisp-mode.el (eval-last-sexp-1):
20918 Use eval-sexp-add-defvars.
20919 (eval-sexp-add-defvars): New fun.
20920
20921 * emacs-lisp/float-sup.el (pi): Don't declare as dynamically bound.
20922
20923 * emacs-lisp/eieio.el (byte-compile-file-form-defmethod):
20924 Don't autoload.
20925 (eieio-defgeneric-form-primary-only-one): Use `byte-compile' rather
20926 than the internal `byte-compile-lambda'.
20927 (defmethod): Don't hide code under quotes.
20928 (eieio-defmethod): New `code' argument.
20929
20930 * emacs-lisp/eieio-comp.el: Remove.
20931
20932 * emacs-lisp/edebug.el (edebug-eval-defun)
20933 (edebug-eval-top-level-form): Use eval-sexp-add-defvars.
20934 (edebug-toggle): Avoid `eval'.
20935
20936 * emacs-lisp/disass.el (disassemble-internal): Handle new
20937 `closure' objects.
20938 (disassemble-1): Handle new byte codes.
20939
20940 * emacs-lisp/cl.el (pushnew): Silence warning.
20941
20942 * emacs-lisp/cl-macs.el (cl-byte-compile-block)
20943 (cl-byte-compile-throw): Remove.
20944 (cl-block-wrapper, cl-block-throw): Use compiler-macros instead.
20945
20946 * emacs-lisp/cl-extra.el (cl-macroexpand-all): Properly quote CL
20947 closures.
20948
20949 * emacs-lisp/cconv.el: New file.
20950
20951 * emacs-lisp/bytecomp.el: Use lexical binding instead of
20952 a "bytecomp-" prefix. Macroexpand everything as a separate phase.
20953 (byte-compile-initial-macro-environment):
20954 Handle declare-function here.
20955 (byte-compile--lexical-environment): New var.
20956 (byte-stack-ref, byte-stack-set, byte-discardN)
20957 (byte-discardN-preserve-tos): New lap codes.
20958 (byte-interactive-p): Don't use any more.
20959 (byte-compile-push-bytecodes, byte-compile-push-bytecode-const2):
20960 New macros.
20961 (byte-compile-lapcode): Use them and handle new lap codes.
20962 (byte-compile-obsolete): Remove.
20963 (byte-compile-arglist-signature): Handle new byte-code arg"lists".
20964 (byte-compile-arglist-warn): Check late def of inlinable funs.
20965 (byte-compile-cl-warn): Don't silence warnings for compiler-macros
20966 since they should have been expanded by now.
20967 (byte-compile--outbuffer): Rename from bytecomp-outbuffer.
20968 (byte-compile-from-buffer): Remove unused second arg.
20969 (byte-compile-preprocess): New function.
20970 (byte-compile-toplevel-file-form): New function to distinguish
20971 file-form calls from outside from file-form calls from hunk-handlers.
20972 (byte-compile-file-form): Simplify.
20973 (byte-compile-file-form-defsubst): Remove.
20974 (byte-compile-file-form-defmumble): Simplify now that
20975 byte-compile-lambda always returns a byte-code-function.
20976 (byte-compile): Preprocess.
20977 (byte-compile-byte-code-maker, byte-compile-byte-code-unmake):
20978 Remove, not used any more.
20979 (byte-compile-arglist-vars, byte-compile-make-lambda-lexenv)
20980 (byte-compile-make-args-desc): New funs.
20981 (byte-compile-lambda): Handle lexical functions. Always return
20982 a byte-code-function.
20983 (byte-compile-reserved-constants): New var, to make up room for
20984 closed-over variables.
20985 (byte-compile-constants-vector): Obey it.
20986 (byte-compile-top-level): New args `lexenv' and `reserved-csts'.
20987 (byte-compile-macroexpand-declare-function): New function.
20988 (byte-compile-form): Call byte-compile-unfold-bcf to inline immediate
20989 byte-code-functions.
20990 (byte-compile-form): Check obsolescence here.
20991 (byte-compile-inline-lapcode, byte-compile-unfold-bcf): New functions.
20992 (byte-compile-variable-ref): Remove.
20993 (byte-compile-dynamic-variable-op): New fun.
20994 (byte-compile-dynamic-variable-bind, byte-compile-variable-ref)
20995 (byte-compile-variable-set): New funs.
20996 (byte-compile-discard): Add 2 args.
20997 (byte-compile-stack-ref, byte-compile-stack-set)
20998 (byte-compile-make-closure, byte-compile-get-closed-var): New funs.
20999 (byte-compile-funarg, byte-compile-funarg-2): Remove, handled in
21000 macroexpand-all instead.
21001 (byte-compile-quote-form): Remove.
21002 (byte-compile-push-binding-init, byte-compile-not-lexical-var-p)
21003 (byte-compile-bind, byte-compile-unbind): New funs.
21004 (byte-compile-let): Handle let* and lexical binding.
21005 (byte-compile-let*): Remove.
21006 (byte-compile-catch, byte-compile-unwind-protect)
21007 (byte-compile-track-mouse, byte-compile-condition-case):
21008 Handle a new :fun-body form, used for lexical scoping.
21009 (byte-compile-save-window-excursion)
21010 (byte-compile-with-output-to-temp-buffer): Remove.
21011 (byte-compile-defun): Simplify.
21012 (byte-compile-stack-adjustment): New fun.
21013 (byte-compile-out): Use it.
21014 (byte-compile-refresh-preloaded): Don't reload byte-compiler files.
21015
21016 * emacs-lisp/byte-run.el (make-obsolete): Don't set the `byte-compile'
21017 handler any more.
21018
21019 * emacs-lisp/byte-opt.el: Use lexical binding.
21020 (byte-inline-lapcode): Remove (to bytecomp).
21021 (byte-compile-inline-expand): Pay attention to inlining to/from
21022 lexically bound code.
21023 (byte-compile-unfold-lambda): Don't handle byte-code-functions
21024 any more.
21025 (byte-optimize-form-code-walker): Don't handle save-window-excursion
21026 any more and don't call compiler-macros.
21027 (byte-compile-splice-in-already-compiled-code): Remove.
21028 (byte-code): Don't inline any more.
21029 (disassemble-offset): Receive `bytes' as argument rather than via
21030 dynamic scoping.
21031 (byte-compile-tag-number): Declare before first use.
21032 (byte-decompile-bytecode-1): Handle new byte-codes, don't change
21033 `return' even if make-spliceable.
21034 (byte-compile-side-effect-and-error-free-ops): Add stack-ref, remove
21035 obsolete interactive-p.
21036 (byte-optimize-lapcode): Optimize new lap-codes.
21037 Don't trip up on new form of `byte-constant' lap code.
21038
21039 * emacs-lisp/autoload.el (make-autoload): Don't burp on trivial macros.
21040
21041 * emacs-lisp/advice.el (ad-arglist): Use help-function-arglist.
21042
21043 * custom.el (custom-initialize-default, custom-declare-variable):
21044 Use `defvar'.
21045
21046 * Makefile.in (BIG_STACK_DEPTH, BIG_STACK_OPTS, BYTE_COMPILE_FLAGS):
21047 New variables.
21048 (compile-onefile, .el.elc, compile-calc, recompile): Use them.
21049 (COMPILE_FIRST): Add macroexp and cconv.
21050 * makefile.w32-in: Mirror changes in Makefile.in.
21051
21052 * vc/cvs-status.el:
21053 * vc/diff-mode.el:
21054 * vc/log-edit.el:
21055 * vc/log-view.el:
21056 * vc/smerge-mode.el:
21057 * textmodes/bibtex-style.el:
21058 * textmodes/css-mode.el:
21059 * startup.el:
21060 * uniquify.el:
21061 * minibuffer.el:
21062 * newcomment.el:
21063 * reveal.el:
21064 * server.el:
21065 * mpc.el:
21066 * emacs-lisp/smie.el:
21067 * doc-view.el:
21068 * dired.el:
21069 * abbrev.el: Use lexical binding.
21070
21071 2011-04-01 Eli Zaretskii <eliz@gnu.org>
21072
21073 * info.el (info-display-manual): New function.
21074
21075 2011-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
21076
21077 * loadup.el: Load minibuffer after loaddefs, to use define-minor-mode.
21078
21079 2011-03-31 Tassilo Horn <tassilo@member.fsf.org>
21080
21081 * net/rcirc.el (rcirc-handler-001): Only authenticate, if there's
21082 an entry for that server in rcirc-authinfo. (Bug#8385)
21083
21084 2011-03-31 Glenn Morris <rgm@gnu.org>
21085
21086 * progmodes/f90.el (f90-find-tag-default): Handle multiple `%'.
21087
21088 * generic-x.el (etc-fstab-generic-mode): Add ext4, sysfs keywords.
21089
21090 2011-03-30 Christoph Scholtes <cschol2112@googlemail.com>
21091
21092 * progmodes/python.el (python-default-interpreter)
21093 (python-python-command-args, python-jython-command-args)
21094 (python-which-shell, python-which-args, python-which-bufname)
21095 (python-file-queue, python-comint-output-filter-function)
21096 (python-toggle-shells, python-shell): Remove obsolete defcustoms,
21097 variables and functions.
21098
21099 2011-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
21100
21101 * minibuffer.el (completion-table-dynamic): Optimize `boundaries'.
21102 (completion-in-region-mode): New minor mode.
21103 (completion-in-region): Use it.
21104 (completion-in-region--data, completion-in-region-mode-map): New vars.
21105 (completion-in-region--postch): New function.
21106 (completion--capf-misbehave-funs, completion--capf-safe-funs):
21107 New vars.
21108 (completion--capf-wrapper): New function.
21109 (completion-at-point): Use it to track well-behavedness of
21110 hook functions.
21111 (completion-help-at-point): New command.
21112
21113 2011-03-30 Jason Merrill <jason@redhat.com> (tiny change)
21114
21115 * vc/add-log.el (add-change-log-entry): Don't use whitespace
21116 syntax class to search for whitespace on a single line
21117 (Message-ID: <4D938140.4030905@redhat.com>).
21118
21119 2011-03-30 Leo Liu <sdl.web@gmail.com>
21120
21121 * abbrev.el (abbrev-edit-save-to-file, abbrev-edit-save-buffer):
21122 New commands.
21123 (edit-abbrevs-map): Bind them here.
21124 (write-abbrev-file): New optinal arg VERBOSE. (Bug#5937)
21125
21126 2011-03-29 Ken Manheimer <ken.manheimer@gmail.com>
21127
21128 * allout.el (allout-hide-by-annotation, allout-flag-region):
21129 Reduce possibility of overlay leakage by making them volatile.
21130
21131 * allout-widgets.el (allout-widgets-tally): Define as nil so the
21132 hash is not shared between buffers. Mode initialization is
21133 responsible for giving it a useful starting value.
21134 (allout-item-span): Reduce possibility of overlay leakage by
21135 making them volatile.
21136 (allout-widgets-count-buttons-in-region): Add diagnostic function
21137 for tracking down button overlay leaks.
21138
21139 2011-03-29 Leo Liu <sdl.web@gmail.com>
21140
21141 * ido.el (ido-read-internal): Use the default history var
21142 minibuffer-history if no HISTORY is specified.
21143
21144 2011-03-28 Brian T. Sniffen <bsniffen@akamai.com> (tiny change)
21145
21146 * net/imap.el (imap-shell-open, imap-process-connection-type):
21147 Use imap-process-connection-type for 'shell' streams as well as
21148 Kerberos, SSL, other subprocesses.
21149
21150 2011-03-28 Leo Liu <sdl.web@gmail.com>
21151
21152 * abbrev.el (abbrev-table-empty-p): New function.
21153 (prepare-abbrev-list-buffer): Place empty abbrev tables after
21154 nonempty ones. (Bug#5937)
21155
21156 2011-03-27 Jan Djärv <jan.h.d@swipnet.se>
21157
21158 * cus-start.el (all): Add boolean ns-auto-hide-menu-bar.
21159
21160 2011-03-27 Leo Liu <sdl.web@gmail.com>
21161
21162 * ansi-color.el (ansi-color-names-vector): Allow cons cell value
21163 for foreground and background colors.
21164 (ansi-color-make-color-map): Adapt.
21165
21166 2011-03-25 Leo Liu <sdl.web@gmail.com>
21167
21168 * midnight.el (midnight-time-float): Remove. Note it calculates
21169 the microsecond component incorrectly and seconds-to-time does the
21170 same job.
21171 Remove redundant (require 'timer).
21172
21173 * ido.el (ido-read-internal): Simplify with read-from-minibuffer.
21174 (ido-completions): Remove unused arguments. (Bug#8329)
21175
21176 2011-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
21177
21178 * minibuffer.el (completion--flush-all-sorted-completions):
21179 Remove itself from hook.
21180 (completion-at-point): Let the functions perform the completion
21181 immediately and return nil or t.
21182 * comint.el (comint-dynamic-complete-functions): Now identical to
21183 completion-at-point-functions.
21184 (comint-dynamic-list-input-ring): Remove unused var `index'.
21185 (comint--match-partial-filename, comint--unquote&expand-filename):
21186 New funs, split from comint-match-partial-filename.
21187 (comint-dynamic-complete): Use completion-at-point.
21188 (comint-dynamic-complete-filename): Use comint--match-partial-filename.
21189
21190 2011-03-24 Drew Adams <drew.adams@oracle.com>
21191
21192 * thingatpt.el: Support `defun'.
21193
21194 2011-03-23 Leo Liu <sdl.web@gmail.com>
21195
21196 * abbrevlist.el: Move to obsolete/abbrevlist.el.
21197
21198 * help-mode.el (help-mode-finish): Tweak regexp.
21199
21200 2011-03-23 Glenn Morris <rgm@gnu.org>
21201
21202 * eshell/esh-opt.el (eshell-eval-using-options):
21203 Do not bind unused local variable `eshell-option-stub'.
21204
21205 * progmodes/gdb-mi.el (gdb): Fix typo in previous change.
21206
21207 2011-03-22 Juanma Barranquero <lekktu@gmail.com>
21208
21209 * emacs-lisp/derived.el (define-derived-mode): Wrap declaration of
21210 keymap variable in `with-no-warnings' to avoid a warning when the
21211 keymap has been already `defconst'ed.
21212
21213 2011-03-22 Leo Liu <sdl.web@gmail.com>
21214
21215 * abbrev.el (write-abbrev-file): Use utf-8 for writing if it can
21216 encode all chars in abbrevs; otherwise use emacs-mule or
21217 utf-8-emacs. (Bug#8308)
21218
21219 2011-03-22 Juanma Barranquero <lekktu@gmail.com>
21220
21221 * simple.el (backward-delete-char-untabify):
21222 Avoid warning about using `delete-backward-char'.
21223
21224 * image.el (image-type-file-name-regexps): Make it variable.
21225 `imagemagick-register-types' modifies it, and the user may want
21226 to add new extensions for known image types.
21227 (imagemagick-register-types): Throw error if not using ImageMagick.
21228
21229 2011-03-22 Leo Liu <sdl.web@gmail.com>
21230
21231 * net/rcirc.el (rcirc-completion-at-point): Return nil if point is
21232 located before rcirc-prompt-end-marker.
21233 (rcirc-complete): Error if point is not after rcirc prompt.
21234 Handle the case when table is nil.
21235 (rcirc-user-authenticated): Define to fix compiler warning.
21236
21237 2011-03-22 Chong Yidong <cyd@stupidchicken.com>
21238
21239 * custom.el (custom--inhibit-theme-enable): Make it affect only
21240 custom-theme-set-variables and custom-theme-set-faces.
21241 (provide-theme): Ignore custom--inhibit-theme-enable.
21242 (load-theme): Enable the theme explicitly if NO-ENABLE is non-nil.
21243 (custom-enabling-themes): Delete variable.
21244 (enable-theme): Accept only loaded themes as arguments.
21245 Ignore the special custom-enabled-themes variable.
21246 (custom-enabled-themes): Forbid themes from setting this.
21247 Eliminate use of custom-enabling-themes.
21248 (custom-push-theme): Quote "changed" custom var entry.
21249
21250 2011-03-21 Leo Liu <sdl.web@gmail.com>
21251
21252 * ido.el (ido-read-internal): Add ido-selected to history instead
21253 of user input.
21254
21255 2011-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
21256
21257 * subr.el (deferred-action-list, deferred-action-function):
21258 Mark obsolete.
21259
21260 2011-03-21 Leo Liu <sdl.web@gmail.com>
21261
21262 * vc/log-view.el: Remove (require 'wid-edit), not needed after the
21263 change on 2011-02-13 (bug#8309).
21264
21265 * minibuffer.el (read-file-name-function): Change default value.
21266 (read-file-name--defaults): Rename from read-file-name-defaults.
21267 (read-file-name-default): Rename from read-file-name.
21268 (read-file-name): Call read-file-name-function.
21269
21270 2011-03-21 Glenn Morris <rgm@gnu.org>
21271
21272 * eshell/esh-opt.el (eshell-eval-using-options, eshell-process-args):
21273 Doc fixes.
21274
21275 2011-03-21 Chong Yidong <cyd@stupidchicken.com>
21276
21277 * cus-theme.el: Add missing provide statement.
21278 (customize-create-theme): Extract theme value correctly.
21279 (custom-theme-visit-theme): Autoload.
21280 (customize-create-theme): Prompt before inserting default faces.
21281
21282 2011-03-20 Jay Belanger <jay.p.belanger@gmail.com>
21283
21284 * calc/calc-menu.el (calc-units-menu): Add entries for logarithmic
21285 units and musical notes.
21286
21287 2011-03-20 Leo Liu <sdl.web@gmail.com>
21288
21289 * ido.el (ido-read-internal): Use completing-read-default.
21290 (ido-completing-read): Fix compatibility with completing-read.
21291
21292 2011-03-20 Christian Ohler <ohler@gnu.org>
21293
21294 * emacs-lisp/ert.el (ert-run-tests-batch): Remove unused variable.
21295 (ert-delete-all-tests): Use `called-interactively-p' rather than
21296 `interactive-p'.
21297 (ert--make-xrefs-region): Respect END.
21298
21299 2011-03-19 Chong Yidong <cyd@stupidchicken.com>
21300
21301 * dired-aux.el (dired-create-directory): Signal an error if the
21302 directory already exists (Bug#8246).
21303
21304 * facemenu.el (list-colors-display): Call list-faces-display
21305 inside with-help-window.
21306 (list-colors-print): Use display property to align the final
21307 column, instead of checking window-width.
21308
21309 2011-03-19 Eli Zaretskii <eliz@gnu.org>
21310
21311 * vc/emerge.el (emerge-metachars): Separate value for ms-dos and
21312 windows-nt systems.
21313 (emerge-protect-metachars): Quote correctly for ms-dos and
21314 windows-nt systems.
21315
21316 2011-03-19 Ralph Schleicher <rs@ralph-schleicher.de>
21317
21318 * info.el (info-initialize): Replace all uses of `:' with
21319 path-separator for compatibility with non-Unix systems.
21320 Cache quoting of path-separator. (Bug#8258)
21321
21322 2011-03-19 Juanma Barranquero <lekktu@gmail.com>
21323
21324 * avoid.el (mouse-avoidance-mode, mouse-avoidance-nudge-dist)
21325 (mouse-avoidance-threshold, mouse-avoidance-banish-destination)
21326 (mouse-avoidance-mode): Fix typos in docstrings.
21327
21328 2011-03-19 Chong Yidong <cyd@stupidchicken.com>
21329
21330 * startup.el (package-subdirectory-regexp): Move from package.el.
21331 Omit \\` and \\', and let callers add them.
21332
21333 * emacs-lisp/package.el (package-strip-version)
21334 (package-load-all-descriptors): Add \\` and \\' to
21335 package-subdirectory-regexp before using it.
21336 (package-untar-buffer): New arg DIR; ensure that file untars only
21337 into this expected directory. Remove superfluous delete-region.
21338 (package-unpack): Caller changed.
21339 (package-tar-file-info): Use package-subdirectory-regexp.
21340
21341 2011-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
21342
21343 * vc/diff-mode.el (diff-mode-map): Shadow problematic bindings from
21344 diff-mode-shared-map (bug#8284).
21345 (diff-mode-shared-map): Re-introduce some bindings that were problematic.
21346
21347 2011-03-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
21348
21349 * calendar/time-date.el (format-seconds): Use assoc instead of
21350 assoc-string, since assoc-string doesn't exist in XEmacs.
21351
21352 2011-03-17 Juanma Barranquero <lekktu@gmail.com>
21353
21354 * custom.el (custom-known-themes): Reflow docstring.
21355 (custom-theme-load-path): Fix typo in docstring.
21356 (load-theme): Fix typo in error message.
21357 (custom-available-themes, custom-variable-theme-value):
21358 Use `let', not `let*'.
21359
21360 2011-03-17 Jay Belanger <jay.p.belanger@gmail.com>
21361
21362 * calc/README: Mention inclusion of musical notes.
21363
21364 * calc/calc-units.el (calc-lu-quant): Rename from
21365 `calc-logunits-quantity'.
21366 (calcFunc-lupquant): Rename from `calcFunc-powerquant'.
21367 (calcFunc-lufquant): Rename from `calcFunc-fieldquant'.
21368 (calc-db): Rename from `calc-dblevel'.
21369 (calcFunc-dbpower): Rename from `calcFunc-dbpowerlevel'.
21370 (calcFunc-dbfield): Rename from `calcFunc-dbfieldlevel'.
21371 (calc-np): Rename from `calc-nplevel'.
21372 (calcFunc-nppower): Rename from `calcFunc-nppowerlevel'.
21373 (calcFunc-npfield): Rename from `calcFunc-npfieldlevel'.
21374 (calc-lu-plus): Rename from `calc-logunits-add'.
21375 (calcFunc-lupadd): Rename from `calcFunc-lupoweradd'.
21376 (calcFunc-lufadd): Rename from `calcFunc-lufieldadd'.
21377 (calc-lu-minus): Rename from `calc-logunits-sub'.
21378 (calcFunc-lupsub): Rename from `calcFunc-lupowersub'.
21379 (calcFunc-lufsub): Rename from `calcFunc-lufieldsub'.
21380 (calc-lu-times): Rename from `calc-logunits-mul'.
21381 (calcFunc-lupmul): Rename from `calcFunc-lupowermul'.
21382 (calcFunc-lufmul): Rename from `calcFunc-lufieldmul'.
21383 (calc-lu-divide): Rename from `calc-logunits-div'.
21384 (calcFunc-lupdiv): Rename from `calcFunc-lupowerdiv'.
21385 (calcFunc-lufdiv): Rename from `calcFunc-lufielddiv'.
21386
21387 * calc/calc-ext.el (calc-init-extensions): Update the names of the
21388 functions being autoloaded.
21389
21390 * calc/calc.el (calc-lu-power-reference): Rename from
21391 `calc-logunits-power-reference'.
21392 (calc-lu-field-reference): Rename from
21393 `calc-logunits-field-reference'.
21394
21395 * calc/calc-help.el (calc-l-prefix-help):
21396 Mention musical note functions.
21397
21398 2011-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
21399
21400 * minibuffer.el (completion-all-sorted-completions):
21401 Use :completion-cycle-penalty text property if present.
21402
21403 2011-03-16 Ken Manheimer <ken.manheimer@gmail.com>
21404
21405 * allout.el (allout-yank-processing): Adjust for new rebulleting
21406 regime so bullet being yanked is used without prompting the user
21407 for a choice.
21408
21409 2011-03-16 Juanma Barranquero <lekktu@gmail.com>
21410
21411 * startup.el (command-line): Warn the user that _emacs is deprecated.
21412
21413 2011-03-16 Juanma Barranquero <lekktu@gmail.com>
21414
21415 * progmodes/delphi.el (delphi-search-path, delphi-indent-level)
21416 (delphi-verbose, delphi-comment-face, delphi-string-face)
21417 (delphi-keyword-face, delphi-ignore-changes, delphi-indent-line)
21418 (delphi-mode-abbrev-table, delphi-debug-buffer, delphi-tab)
21419 (delphi-find-unit, delphi-find-current-xdef, delphi-fill-comment)
21420 (delphi-new-comment-line, delphi-font-lock-defaults)
21421 (delphi-debug-mode-map, delphi-mode-syntax-table, delphi-mode):
21422 Fix typos in docstrings.
21423
21424 2011-03-15 Ken Manheimer <ken.manheimer@gmail.com>
21425
21426 * allout.el (allout-make-topic-prefix, allout-rebullet-heading):
21427 Invert the roles of character and string values for INSTEAD, so a
21428 string is used for the more common case of a defaulting prompt.
21429
21430 2011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
21431
21432 * progmodes/ruby-mode.el (ruby-backward-sexp):
21433 * progmodes/ebrowse.el (ebrowse-draw-file-member-info):
21434 * play/gamegrid.el (gamegrid-make-face):
21435 * play/bubbles.el (bubbles--grid-width, bubbles--grid-height)
21436 (bubbles--colors, bubbles--shift-mode, bubbles--initialize-images):
21437 * notifications.el (notifications-notify):
21438 * net/xesam.el (xesam-search-engines):
21439 * net/quickurl.el (quickurl-list-insert):
21440 * vc/vc-hg.el (vc-hg-dir-printer): Fix use of case.
21441
21442 2011-03-15 Chong Yidong <cyd@stupidchicken.com>
21443
21444 * startup.el (command-line): Update package subdirectory regexp.
21445
21446 2011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
21447
21448 * allout.el (allout-abbreviate-flattened-numbering)
21449 (allout-mode-deactivate-hook): Fix up obsolescence "date".
21450
21451 * subr.el (read-char-choice): Only show the cursor after the prompt,
21452 not after the answer.
21453
21454 2011-03-15 Kevin Ryde <user42@zip.com.au>
21455
21456 * help-fns.el (variable-at-point): Skip leading quotes, if any
21457 (bug#8253).
21458
21459 2011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
21460
21461 * emacs-lisp/bytecomp.el (byte-compile-save-excursion): Change the
21462 warning message.
21463
21464 2011-03-14 Michael Albinus <michael.albinus@gmx.de>
21465
21466 * shell.el (shell): When called interactively, offer to change the
21467 shell file name on remote hosts.
21468
21469 2011-03-13 Teodor Zlatanov <tzz@lifelogs.com>
21470
21471 * net/ldap.el (ldap-search-internal): Add `auth-source-search'
21472 integration for LDAP parameters. The host, base, user or binddn,
21473 and secret tokens can be specified in a netrc file, for instance.
21474 This is optional because an `auth-source' parameter must be
21475 specified in the search attributes.
21476
21477 2011-03-13 Juanma Barranquero <lekktu@gmail.com>
21478
21479 * help.el (describe-mode): Link to the mode's definition (bug#8185).
21480
21481 2011-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
21482
21483 * ebuff-menu.el (electric-buffer-menu-mode-map): Move initialization
21484 into declaration. Remove redundant and harmful binding.
21485
21486 2011-03-12 Eli Zaretskii <eliz@gnu.org>
21487
21488 * files.el (file-ownership-preserved-p): Pass `integer' as an
21489 explicit 2nd argument to `file-attributes'. If the file's owner
21490 is the Administrators group on Windows, and the current user is
21491 Administrator, consider that a match.
21492
21493 * server.el (server-ensure-safe-dir): Consider server directory
21494 safe on MS-Windows if its owner is the Administrators group while
21495 the current Emacs user is Administrator. Use `=' to compare
21496 numerical UIDs, since they could be integers or floats.
21497
21498 2011-03-12 Juanma Barranquero <lekktu@gmail.com>
21499
21500 * vc/vc-bzr.el (vc-bzr-state): Handle bzr 2.3.0 (follow-up to bug#8170).
21501
21502 2011-03-12 Michael Albinus <michael.albinus@gmx.de>
21503
21504 Sync with Tramp 2.2.1.
21505
21506 * net/tramp-sh.el (tramp-methods): Exchange "%k" marker with options.
21507
21508 * net/trampver.el: Update release number.
21509
21510 2011-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
21511
21512 * progmodes/compile.el (compilation--previous-directory): Fix up
21513 various nil/dead-marker mismatches (bug#8014).
21514 (compilation-directory-properties, compilation-error-properties):
21515 Don't call it at a position past the one we're about to change.
21516
21517 * emacs-lisp/bytecomp.el (byte-compile-make-obsolete-variable):
21518 Disable obsolescence warnings in the file that declares it.
21519
21520 2011-03-11 Ken Manheimer <ken.manheimer@gmail.com>
21521
21522 * allout-widgets.el (allout-widgets-tally):
21523 Initialize allout-widgets-tally as a hash table rather than nil to
21524 prevent mode-line redisplay warnings. Also, clarify the module
21525 description and fix a comment typo.
21526
21527 2011-03-11 Juanma Barranquero <lekktu@gmail.com>
21528
21529 * help-fns.el (describe-variable): Don't complete keywords.
21530 Suggested by Teodor Zlatanov <tzz@lifelogs.com>.
21531
21532 2011-03-10 Chong Yidong <cyd@stupidchicken.com>
21533
21534 * emacs-lisp/package.el (package-version-join): Impose a standard
21535 string representation for pre/alpha/beta version lists.
21536 (package-unpack-single): Standardize the directory name by passing
21537 it through package-version-join.
21538 (package-strip-rcs-id): Accept any version string that does not
21539 signal an error in version-to-list.
21540
21541 2011-03-10 Michael Albinus <michael.albinus@gmx.de>
21542
21543 * simple.el (delete-trailing-whitespace): Return nil for the
21544 benefit of `write-file-functions'.
21545
21546 2011-03-10 Glenn Morris <rgm@gnu.org>
21547
21548 * vc/vc-hg.el (vc-hg-pull, vc-hg-merge-branch): Use vc-hg-program.
21549
21550 * vc/vc-git.el (vc-git-program): New option.
21551 (vc-git-branches, vc-git-pull, vc-git-merge-branch, vc-git-command)
21552 (vc-git--call): Use it.
21553
21554 * eshell/esh-util.el (eshell-condition-case): Doc fix.
21555
21556 * cus-edit.el (Custom-newline): If no button at point, look
21557 for a subgroup button at start-of-line. (Bug#2298)
21558
21559 * mail/rmail.el (rmail-msgend, rmail-msgbeg): Doc fixes.
21560
21561 2011-03-10 Julien Danjou <julien@danjou.info>
21562
21563 * avoid.el (mouse-avoidance-ignore-p): Do not move the cursor if
21564 `cursor-type' is nil.
21565
21566 2011-03-09 Jay Belanger <jay.p.belanger@gmail.com>
21567
21568 * calc/calc.el (calc-mode-map): Don't bind "C-_" to `calc-missing-key'.
21569
21570 2011-03-09 Ken Manheimer <ken.manheimer@gmail.com>
21571
21572 * allout.el: Change so yank of distinctive-bullet items
21573 preserves the existing header prefix, rebulleting it if necessary,
21574 rather than replacing it. This is necessary for proper operation
21575 of cooperative addons like allout-widgets.
21576 (allout-make-topic-prefix, allout-rebullet-heading):
21577 Change SOLICIT arg to INSTEAD, and interpret additionally a string
21578 value as alternate bullet to be used, instead of prompting the user
21579 for a bullet character.
21580
21581 2011-03-09 Michael Albinus <michael.albinus@gmx.de>
21582
21583 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
21584 Do not use `tramp-file-name-port', because this returns also
21585 `tramp-default-port'.
21586
21587 2011-03-09 Deniz Dogan <deniz.a.m.dogan@gmail.com>
21588
21589 * net/rcirc.el (rcirc-handler-001): Remove useless
21590 with-rcirc-process-buffer.
21591 (rcirc-check-auth-status): Swap arguments to string-match.
21592
21593 2011-03-09 Glenn Morris <rgm@gnu.org>
21594
21595 * shell.el (shell-mode):
21596 Set comint-input-ring-size from HISTSIZE. (Bug#7889)
21597
21598 * progmodes/gdb-mi.el (gdb): Improve 2010-12-08 change.
21599 Check for GDBHISTFILE, HISTSIZE, etc. (Bug#7889)
21600
21601 2011-03-08 Chong Yidong <cyd@stupidchicken.com>
21602
21603 * emacs-lisp/package.el (package-refresh-contents)
21604 (package-menu-execute): Use condition-case-no-debug.
21605
21606 2011-03-08 Michael Albinus <michael.albinus@gmx.de>
21607
21608 * simple.el (shell-command-to-string): Use `process-file'.
21609
21610 * emacs-lisp/package.el (package-tar-file-info): Handle also
21611 remote files.
21612
21613 * emacs-lisp/package-x.el (package-upload-buffer-internal):
21614 Use `equal' for upload base check.
21615
21616 2011-03-08 Arni Magnusson <arnima@hafro.is> (tiny change)
21617
21618 * textmodes/texinfo.el (texinfo-environments):
21619 Add deftypecv, deftypeivar, deftypemethod, deftypeop, html. (Bug#2783)
21620
21621 2011-03-08 Glenn Morris <rgm@gnu.org>
21622
21623 * cus-start.el (cursor-in-non-selected-windows):
21624 Fix :set quoting oddness. (Bug#8192)
21625
21626 * font-lock.el (lisp-font-lock-keywords-1): Don't highlight `)'
21627 in some setf expressions. (Bug#2159)
21628
21629 2011-03-08 Chong Yidong <cyd@stupidchicken.com>
21630
21631 * custom.el (custom-available-themes): Return themes in
21632 alphabetical order.
21633
21634 See ChangeLog.15 for earlier changes.
21635
21636 ;; Local Variables:
21637 ;; coding: utf-8
21638 ;; End:
21639
21640 Copyright (C) 2011-2013 Free Software Foundation, Inc.
21641
21642 This file is part of GNU Emacs.
21643
21644 GNU Emacs is free software: you can redistribute it and/or modify
21645 it under the terms of the GNU General Public License as published by
21646 the Free Software Foundation, either version 3 of the License, or
21647 (at your option) any later version.
21648
21649 GNU Emacs is distributed in the hope that it will be useful,
21650 but WITHOUT ANY WARRANTY; without even the implied warranty of
21651 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21652 GNU General Public License for more details.
21653
21654 You should have received a copy of the GNU General Public License
21655 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.