]> code.delx.au - gnu-emacs/blob - lisp/ChangeLog
* src/keyboard.c (input-decode-map, key-translation-map): Doc fixes.
[gnu-emacs] / lisp / ChangeLog
1 2013-02-10 Michael Albinus <michael.albinus@gmx.de>
2
3 * net/ange-ftp.el (ange-ftp-make-directory): Don't raise an error,
4 if DIR exists and PARENTS is non-nil.
5
6 2013-02-09 Chong Yidong <cyd@gnu.org>
7
8 * mail/emacsbug.el (report-emacs-bug): Change binding of
9 report-emacs-bug-insert-to-mailer to C-c M-i (Bug#13510).
10
11 2013-02-02 Alan Mackenzie <acm@muc.de>
12
13 Fix bug in the state cache mechanism. Remove 'BOD "strategy". Refactor.
14 * progmodes/cc-engine.el (c-get-fallback-scan-pos): Remove.
15 (c-parse-state-get-strategy): Don't return 'BOD any more.
16 (c-append-lower-brace-pair-to-state-cache): Extra parameter HERE
17 instead of narrowing. Widen to top of buffer before searching
18 backwards for a brace pair.
19 (c-state-push-any-brace-pair): Add HERE parameter to function
20 call.
21 (c-append-to-state-cache): Extra parameter HERE in place of
22 narrowing. Narrow to parameter HERE, in place of being called
23 narrowed.
24 (c-remove-stale-state-cache): Extra parameter HERE in place of
25 narrowing. Check there's an open brace in the cache before
26 searching for its match.
27 (c-invalidate-state-cache-1): Add HERE parameter to function call.
28 (c-parse-state-1): Don't narrow here for 'forward strategy,
29 instead passing extra parameter HERE to several functions. Remove
30 'BOD strategy.
31
32 2013-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
33
34 * mouse.el (mouse-drag-track): Always deactivate the mark before
35 running the final event's command since that command is in charge of
36 activating the mark if needed (bug#13523).
37
38 2013-02-01 Juri Linkov <juri@jurta.org>
39
40 * replace.el (perform-replace): Move let-bindings of isearch-*
41 variables deeper to the loop that searches for the next match.
42 Add bindings for `isearch-nonincremental' and `isearch-adjusted'.
43 Use `isearch-search-fun-default' instead of `isearch-search-fun'.
44 (Bug#13579)
45
46 * isearch.el (isearch-search-fun-default): Check for null
47 first element of isearch-cmds as a precaution when it's used
48 with inactive isearch.
49
50 2013-02-01 Andrew W. Nosenko <andrew.w.nosenko@gmail.com> (tiny change)
51
52 * net/tramp.el (tramp-check-for-regexp): Avoid "Args out of range"
53 error when buffer in question is narrowed so position 1 is out of
54 visible part.
55
56 2013-01-31 Glenn Morris <rgm@gnu.org>
57
58 * textmodes/remember.el (remember-clipboard): Doc fix.
59
60 2013-01-30 Stefan Monnier <monnier@iro.umontreal.ca>
61
62 * progmodes/make-mode.el (makefile-fill-paragraph): Reset syntax-table
63 properties (bug#13179).
64
65 2013-01-30 Glenn Morris <rgm@gnu.org>
66
67 * mouse.el (mouse-drag-line): Avoid pushing same event onto
68 unread-command-events twice in some cases. This tries to implement
69 the 2012-07-26 changes in a different way. (Bug#13560)
70
71 2013-01-30 Fabián Ezequiel Gallina <fgallina@cuca>
72
73 * progmodes/python.el
74 (python-pdbtrack-comint-output-filter-function): Enhancements on
75 stacktrace detection. (thanks @gnovak)
76
77 2013-01-30 Glenn Morris <rgm@gnu.org>
78
79 * imenu.el (imenu-default-create-index-function):
80 Put back a version of the infinite loop test removed 2013-01-23.
81
82 2013-01-28 Fabián Ezequiel Gallina <fgallina@cuca>
83
84 * progmodes/python.el (python-shell-parse-command):
85 Find python-shell-interpreter with modified environment.
86
87 2013-01-26 Stefan Monnier <monnier@iro.umontreal.ca>
88
89 * emacs-lisp/cl.el (cl-set-getf): Add compatibility alias.
90
91 2013-01-24 Fabián Ezequiel Gallina <fgallina@cuca>
92
93 * progmodes/python.el: Enhancements to header documentation about
94 skeletons. (Bug#5716)
95
96 2013-01-23 Fabián Ezequiel Gallina <fgallina@cuca>
97
98 * imenu.el (imenu-default-create-index-function): Remove useless
99 infinite loop check. (Bug#13438)
100
101 2013-01-23 Alan Mackenzie <acm@muc.de>
102
103 Fix a bug in the state cache mechanism. Refactor this a bit.
104
105 * progmodes/cc-engine.el (c-parse-state-get-strategy): Remove the
106 `cache-pos' element from the return value.
107 (c-append-lower-brace-pair-to-state-cache): "Narrow" to end of
108 buffer to enable proper searching from beyond HERE. Amend the
109 test for detecting the sought brace pair. Amend the value written
110 to the "brace desert cache" when the brace isn't found.
111 (c-remove-stale-state-cache): Rename `good-pos' to `start-point',
112 and several other variables analogously.
113 (c-remove-stale-state-cache-backwards): Change `cache-pos' from a
114 parameter to a locally calculated variable.
115 (c-parse-state-1): Change the calling conventions to the two
116 defuns involving `cache-pos'.
117
118 2013-01-23 Chong Yidong <cyd@gnu.org>
119
120 * xml.el (xml-entity-or-char-ref-re): Fix regexp.
121
122 2013-01-18 Leo Liu <sdl.web@gmail.com>
123
124 * dired.el (dired-get-marked-files): Prune erroneous values due to
125 last change. (Bug#13152)
126
127 2013-01-17 Glenn Morris <rgm@gnu.org>
128
129 * progmodes/etags.el (tags-table-check-computed-list):
130 Preserve point in tags buffer. (Bug#13412)
131
132 2013-01-16 Glenn Morris <rgm@gnu.org>
133
134 * emacs-lisp/lisp-mode.el (lisp-indent-function): Doc fix.
135
136 * mail/rmailmm.el (rmail-insert-mime-forwarded-message):
137 Revert 2012-12-29 change. Ref:
138 <http://lists.gnu.org/archive/html/emacs-devel/2013-01/msg00360.html>
139
140 2013-01-10 Fabián Ezequiel Gallina <fgallina@cuca>
141
142 * progmodes/python.el (python-nav-end-of-statement):
143 Fix cornercase when handling multiline strings.
144
145 2013-01-10 Glenn Morris <rgm@gnu.org>
146
147 * emacs-lisp/authors.el (authors-ignored-files)
148 (authors-valid-file-names, authors-renamed-files-alist):
149 Add some more entries.
150
151 2013-01-09 Stefan Monnier <monnier@iro.umontreal.ca>
152
153 * image-mode.el (image-mode-winprops): Don't throw away the fallback
154 `t' pseudo-window entry.
155
156 2013-01-09 Alan Mackenzie <acm@muc.de>
157
158 Fix bugs in the c-parse-state mechanism. Reuse some markers
159 instead of continually generating new ones.
160
161 * progmodes/cc-engine.el (c-state-old-cpp-beg-marker)
162 (c-state-old-cpp-end-marker): New variables.
163 (c-append-lower-brace-pair-to-state-cache): Start a backward
164 search for "}" definitively outside CPP constructs.
165 (c-remove-stale-state-cache): Inform the caller of a need to
166 search back for a brace pair in certain circumstances.
167 (c-state-maybe-marker): New macro.
168 (c-parse-state): Reuse markers when appropriate.
169
170 2013-01-09 Glenn Morris <rgm@gnu.org>
171
172 * simple.el (execute-extended-command): Doc fix.
173 Bind prefix-arg around read-extended-command, for prompt. (Bug#13395)
174
175 2013-01-09 Chong Yidong <cyd@gnu.org>
176
177 * faces.el (read-face-name): Doc fix.
178
179 2013-01-09 Glenn Morris <rgm@gnu.org>
180
181 * emacs-lisp/trace.el (trace-function, trace-function-background):
182 Doc fix.
183
184 2013-01-09 Juri Linkov <juri@jurta.org>
185
186 * international/mule-cmds.el (read-char-by-name): Move let-binding
187 of completion-ignore-case around completing-read to fix regression
188 exhibited by the test case `C-x 8 RET *acc TAB' and caused by
189 `string-match-p' using the nil value of `case-fold-search' and
190 `completion-ignore-case' in `completion-pcm--all-completions'.
191 (Bug#12615).
192
193 2013-01-07 Glenn Morris <rgm@gnu.org>
194
195 * progmodes/compile.el (compilation-parse-errors):
196 Fix typo. (Bug#13369)
197
198 2013-01-07 Vitalie Spinu <spinuvit@gmail.com> (tiny change)
199
200 * comint.el (comint-send-input): Check size of buffer before
201 waiting for process output, in case already accepted. (Bug#13290)
202
203 2013-01-04 Michael Albinus <michael.albinus@gmx.de>
204
205 * net/tramp-sh.el (tramp-set-file-uid-gid): UID and GID must be
206 non-negative integers. Otherwise, the default values are used.
207 (tramp-convert-file-attributes): Convert uid and gid to integers.
208
209 2013-01-03 Glenn Morris <rgm@gnu.org>
210
211 * term.el (term-handle-colors-array): Ensure face attributes
212 are fully specified, not nil. (Bug#13337)
213
214 * term.el (term-default-fg-color, term-default-bg-color):
215 Fix custom type.
216
217 * progmodes/etags.el (tags-compression-info-list): Doc fix.
218 (tag-find-file-of-tag-noselect): Check auto-compression-mode
219 rather than 'jka-compr being loaded. (Bug#13338)
220
221 * subr.el (eval-after-load): Don't purecopy the form, so that it
222 can be nconc'd later on; reverts 2009-11-11 change. (Bug#13331)
223
224 * emacs-lisp/byte-run.el (defun): Place cl declarations
225 after any interactive spec. (Bug#13265)
226
227 2012-12-31 Andreas Schwab <schwab@linux-m68k.org>
228
229 * emacs-lisp/byte-run.el (defmacro): Use same argument parsing as
230 defun. Don't check for DECL if DOCSTRING isn't a string.
231 (defun): Likewise.
232
233 2012-12-31 Glenn Morris <rgm@gnu.org>
234
235 * eshell/em-cmpl.el (eshell-pcomplete):
236 More thoroughly imitate pcomplete. (Bug#13293)
237
238 * files.el (parse-colon-path): Doc fix. (Bug#12351)
239 Return nil for empty path elements. (Bug#13296)
240
241 2012-12-31 Fabián Ezequiel Gallina <fgallina@cuca>
242
243 * progmodes/python.el (python-nav-end-of-statement): Rewrite in
244 order to improve efficiency (Based on Daniel Colascione's
245 <dancol@dancol.org> patch). (Bug#13182)
246
247 2012-12-31 Glenn Morris <rgm@gnu.org>
248
249 * vc/log-edit.el (log-edit-header-contents-regexp): Add doc string.
250
251 2012-12-31 Fabián Ezequiel Gallina <fgallina@cuca>
252
253 * progmodes/python.el: Support other commands triggering
254 python-indent-line so indentation cycling continues to work.
255 (python-indent-trigger-commands): New defcustom.
256 (python-indent-line): Use it.
257
258 2012-12-31 Fabián Ezequiel Gallina <fgallina@cuca>
259
260 * progmodes/python.el (python-shell-send-region): Add blank lines
261 for non sent code so backtraces remain correct.
262
263 2012-12-31 Andreas Schwab <schwab@linux-m68k.org>
264
265 * emacs-lisp/byte-run.el (defmacro): Don't lose final nil if
266 neither DOCSTRING nor DECL was given. (Bug#13316)
267
268 2012-12-30 Glenn Morris <rgm@gnu.org>
269
270 * net/mairix.el (rmail, rmail-summary-displayed, rmail-summary):
271 Remove unnecessary/buggy autoloads (missing interactive). (Bug#13294)
272 (rmail-summary-displayed, rmail-summary): Declare.
273 (mairix-rmail-display): Just require rmail.
274
275 2012-12-29 Chong Yidong <cyd@gnu.org>
276
277 * emacs-lisp/package.el (package-untar-buffer): Improve integrity
278 check for the tarball contents.
279
280 2012-12-29 Matt Fidler <matt.fidler@alcon.com> (tiny change)
281
282 * emacs-lisp/package.el (package-untar-buffer): Handle problematic
283 tarfile content listings (Bug#13136).
284
285 2012-12-29 Mark Lillibridge <mark.lillibridge@hp.com>
286
287 * mail/rmailmm.el (rmail-insert-mime-forwarded-message):
288 Insert the undecoded text of the message being forwarded. (Bug#9521)
289
290 2012-12-28 Michael Albinus <michael.albinus@gmx.de>
291
292 * net/tramp-sh.el (tramp-set-file-uid-gid): Convert UID and GID to
293 integers, if they are real numbers. (Bug#13282)
294
295 2012-12-26 Dmitry Gutov <dgutov@yandex.ru>
296
297 * progmodes/ruby-mode.el (ruby-indent-beg-re): Only allow "class",
298 "module" and "def" to have indentation before them.
299 Regression from 109911 (see the new test).
300
301 2012-12-24 Dmitry Gutov <dgutov@yandex.ru>
302
303 * progmodes/ruby-mode.el: Bump the version to 1.2 (Bug#13200).
304
305 2012-12-23 Alan Mackenzie <acm@muc.de>
306
307 Speed up fontification where there's large brace blocks.
308 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls): Add a limit
309 to a call of c-beginning-of-decl-1.
310
311 2012-12-21 Chong Yidong <cyd@gnu.org>
312
313 * sort.el (sort-subr): Doc fix (Bug#13056).
314
315 2012-12-20 Bastien Guerry <bzg@gnu.org>
316
317 * progmodes/etags.el (tags-search): Fix typo. Bug #13232.
318
319 2012-12-11 Alan Mackenzie <acm@muc.de>
320
321 Make CC Mode not hang when _some_ lines end in CRLF. Bug #11841.
322 * progmodes/cc-engine.el (c-backward-comments): Add code to work
323 around `forward-comment' not recognizing ^M as whitespace.
324
325 2012-12-11 Fabián Ezequiel Gallina <fgallina@cuca>
326
327 * progmodes/python.el (python-skeleton-class)
328 (python-skeleton-def): Do not add space after defun name.
329
330 2012-12-09 Chong Yidong <cyd@gnu.org>
331
332 * simple.el (set-mark-default-inactive): Mark as obsolete, for
333 removal after 24.3.
334
335 2012-12-08 Dani Moncayo <dmoncayo@gmail.com>
336
337 * simple.el (just-one-space): Doc fix.
338
339 2012-12-07 Eli Zaretskii <eliz@gnu.org>
340
341 * textmodes/texinfo.el (texinfo-enable-quote-envs):
342 Add "smallexample".
343
344 2012-12-07 Le Wang <l26wang@gmail.com>
345
346 * hilit-chg.el (hilit-chg-set-face-on-change): Don't burp in
347 narrowed buffer (bug#12361).
348
349 2012-12-07 Michael Heerdegen <michael_heerdegen@web.de>
350
351 * emacs-lisp/debug.el (debug): Fix hard-coded frame counts (bug#10025).
352 Virtually backported from trunk.
353
354 2012-12-07 Juanma Barranquero <lekktu@gmail.com>
355
356 * vc/vc-hooks.el (vc-state): Doc fix.
357
358 2012-12-06 Glenn Morris <rgm@gnu.org>
359
360 * mail/rmail.el (rmail-maybe-display-summary):
361 Preserve buffer, in case select-window changes it. (Bug#13066)
362
363 2012-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
364
365 * emacs-lisp/cl.el, emacs-lisp/cl-lib.el: Move cl-unload-function and
366 cl-load-hook where they belong.
367
368 2012-12-06 Chong Yidong <cyd@gnu.org>
369
370 * ffap.el (ffap-replace-file-component): Fix typo.
371
372 2012-12-05 Stefan Monnier <monnier@iro.umontreal.ca>
373
374 * progmodes/octave-mod.el (octave-mark-block): Move out of tokens and
375 fix open-paren-like token test (bug#12785).
376
377 2012-12-04 Glenn Morris <rgm@gnu.org>
378
379 * mail/rmailsum.el (rmail-new-summary): Tweak for
380 rmail-maybe-display-summary changing buffer. (Bug#13066)
381
382 2012-12-03 Juri Linkov <juri@jurta.org>
383
384 * info.el (Info-fontify-node): Don't hide the last newline.
385 (Bug#12272)
386
387 2012-12-01 Leo Liu <sdl.web@gmail.com>
388
389 * files.el (dir-locals-read-from-file): Check file non-empty
390 before reading. (Bug#13038)
391
392 2012-11-28 Glenn Morris <rgm@gnu.org>
393
394 * jka-cmpr-hook.el (jka-compr-get-compression-info):
395 Remove any version extension before checking filename. (Bug#13006)
396 (jka-compr-compression-info-list): Belated :version bump.
397
398 2012-11-28 Chong Yidong <cyd@gnu.org>
399
400 * simple.el (transient-mark-mode): Doc fix (Bug#11523).
401
402 * buff-menu.el (Buffer-menu-delete-backwards, Buffer-menu-mode)
403 (buffer-menu): Doc fix (Bug#12294).
404
405 2012-11-27 Roland Winkler <winkler@gnu.org>
406
407 * calendar/diary-lib.el (diary-header-line-format): Use keybinding
408 of diary-show-all-entries in the diary buffer (Bug#12994).
409
410 2012-11-27 Michael Albinus <michael.albinus@gmx.de>
411
412 * net/tramp-sh.el (tramp-perl-encode): Use "read STDIN" instead of
413 "<STDIN>". This is binary safe.
414
415 2012-11-27 Stefan Monnier <monnier@iro.umontreal.ca>
416
417 * textmodes/table.el (table-insert): Don't use `symbol-name' on
418 lexically scoped variables (bug#13005).
419
420 2012-11-26 Glenn Morris <rgm@gnu.org>
421
422 * vc/vc-hooks.el (vc-mistrust-permissions):
423 Default to t, to avoid data-loss. (Bug#11490)
424
425 2012-11-26 Fabián Ezequiel Gallina <fgallina@cuca>
426
427 * progmodes/python.el (python-indent-guess-indent-offset):
428 If indentation is guessed make python-indent-offset buffer-local.
429
430 Fix Imenu regression.
431 * progmodes/python.el (python-nav-beginning-of-defun):
432 Fix forward movement when statement(s) separates point from defun.
433 (python-imenu-prev-index-position): New function.
434
435 2012-11-26 Eli Zaretskii <eliz@gnu.org>
436
437 * subr.el (buffer-file-type): Declare with defvar-local. Doc fix.
438
439 * dos-w32.el (find-file-not-found-set-buffer-file-coding-system):
440 Don't set buffer-file-type. Return nil. (Bug#12989)
441
442 2012-11-26 Glenn Morris <rgm@gnu.org>
443
444 * hippie-exp.el (hippie-expand-try-functions-list):
445 Re-autoload it. (Bug#12982)
446
447 2012-11-25 Eli Zaretskii <eliz@gnu.org>
448
449 * descr-text.el (describe-char-padded-string):
450 Call internal-char-font only on GUI frames. (Bug#11964)
451
452 2012-11-24 Andreas Schwab <schwab@linux-m68k.org>
453
454 * buff-menu.el (Buffer-menu-buffer+size-width): Fix customize type
455 and obsoletion message.
456
457 2012-11-24 Stefan Monnier <monnier@iro.umontreal.ca>
458
459 * emacs-lisp/cl-macs.el (cl--transform-lambda): Add back `declare' in
460 the constructs to keep outside of the `cl-block' (bug#12977).
461
462 2012-11-24 Chong Yidong <cyd@gnu.org>
463
464 * mouse.el (mouse-drag-line): Even if the line is not draggable,
465 keep reading until we get the up-event anyway, in order to process
466 the up-event for mouse-1-click-follows-link (Bug#12971).
467
468 2012-11-23 Stefan Monnier <monnier@iro.umontreal.ca>
469
470 * emacs-lisp/bytecomp.el (byte-compile-file): Setup default value for
471 lexical-binding (bug#12938).
472
473 2012-11-23 Wolfgang Jenkner <wjenkner@inode.at>
474
475 * image-mode.el (image-transform-check-size): Use assertions only
476 for images of type imagemagick.
477
478 Otherwise no error, image-transform-fit-to-{width,height} is
479 silently ignored, as before. Doc fix.
480
481 2012-11-23 Chong Yidong <cyd@gnu.org>
482
483 * faces.el (color-defined-p): Doc fix (Bug#12853).
484
485 2012-11-23 Juri Linkov <juri@jurta.org>
486
487 * dired.el (dired-mark): Add optional arg `interactive'.
488 Check for `use-region-p' if `interactive' is non-nil.
489 (dired-unmark, dired-flag-file-deletion): Add optional arg
490 `interactive'. Call `dired-mark' with the arg `interactive'.
491 (Bug#10624)
492
493 2012-11-23 Juri Linkov <juri@jurta.org>
494
495 * wdired.el: Revert 2012-10-17 change partly and replace it with
496 Patch by Christopher Schmidt <christopher@ch.ristopher.com>.
497 (wdired-finish-edit): Add marks for new file names to
498 `wdired-old-marks'. Restore marks using `dired-mark-remembered'
499 after `revert-buffer'.
500 (wdired-do-renames): Remove calls to `dired-remove-file',
501 `dired-add-file', `dired-add-entry'. (Bug#11795)
502
503 2012-11-21 Alan Mackenzie <acm@muc.de>
504
505 * progmodes/cc-defs.el (c-version): Bump to 5.32.4.
506
507 Fix bugs in the state cache. Enhance a debugging mechanism.
508 * progmodes/cc-engine.el (c-parse-state-get-strategy): Don't use
509 "brace at column zero" strategy for C++.
510 (c-append-lower-brace-pair-to-state-cache): Repair algorithm.
511 (c-parse-state-point): New variable.
512 (c-record-parse-state-state): Record old parse state with
513 `copy-tree'. Record previous value of point.
514 (c-debug-parse-state-double-cons): New debugging function.
515 (c-debug-parse-state): Call the above new function.
516 (c-toggle-parse-state-debug): Output a confirmatory message.
517
518 * progmodes/cc-mode.el (c-before-change, c-after-change):
519 Call c-invalidate-state-cache from `c-before-change' instead of
520 `c-after-change'.
521
522 2012-11-20 Daniel Colascione <dancol@dancol.org>
523
524 * term/w32-win.el (cygwin-convert-path-from-windows):
525 Accomodate rename of cygwin_convert_path* to cygwin_convert_file_name*.
526 This change is a backport from trunk.
527
528 2012-11-20 Eli Zaretskii <eliz@gnu.org>
529
530 * simple.el (line-move): Don't call line-move-partial if
531 scroll-conservatively is in effect. (Bug#12927)
532
533 2012-11-20 Michael Albinus <michael.albinus@gmx.de>
534
535 * net/trampver.el (tramp-version): Downgrade to 2.2.6-24.3, in
536 order to distinguish from trunk.
537
538 2012-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
539
540 * emacs-lisp/byte-run.el (defun-declarations-alist): Don't accept
541 non-symbols for compiler macros (yet).
542
543 * eshell/em-cmpl.el (eshell-pcomplete): Refine fix for bug#12838:
544 Fallback on completion-at-point rather than
545 pcomplete-expand-and-complete, and only if pcomplete actually failed.
546 (eshell-cmpl-initialize): Setup completion-at-point.
547
548 * pcomplete.el (pcomplete--entries): Obey pcomplete-ignore-case.
549
550 * emacs-lisp/ert.el (ert--expand-should-1): Adapt to cl-lib.
551
552 2012-11-19 Michael Albinus <michael.albinus@gmx.de>
553
554 * net/tramp-sh.el (tramp-do-copy-or-rename-file): If both files
555 are remote, check out-of-band property for both.
556
557 2012-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
558
559 * window.el (switch-to-buffer): Re-add the warning that was lost in the
560 code rewrite.
561
562 2012-11-18 Paul Eggert <eggert@cs.ucla.edu>
563
564 More minor time fixes.
565 * calendar/time-date.el: Commentary fix.
566 * net/tramp-sh.el (tramp-do-file-attributes-with-ls): Undo last change;
567 too much other code depends on (0 0) time stamps.
568 * net/tramp.el (tramp-time-less-p, tramp-time-subtract):
569 Add a couple of FIXME comments.
570
571 Minor cleanup for times as lists of four integers.
572 * files.el (dir-locals-directory-cache):
573 * ps-bdf.el (bdf-file-mod-time, bdf-read-font-info):
574 Doc fixes.
575 * net/tramp-sh.el (tramp-do-file-attributes-with-ls):
576 * ps-bdf.el (bdf-file-newer-than-time):
577 Process four-integers time stamps, not two. Doc fixes.
578
579 2012-11-18 Glenn Morris <rgm@gnu.org>
580
581 * image.el (insert-image, insert-sliced-image): Doc fix.
582
583 2012-11-17 Chong Yidong <cyd@gnu.org>
584
585 * emacs-lisp/syntax.el (syntax-propertize-function): Doc fix
586 (Bug#12810).
587
588 2012-11-17 OKAZAKI Tetsurou <okazaki.tetsurou@gmail.com> (tiny change)
589
590 * vc/vc-svn.el (vc-svn-merge-news): Properly parse the merge
591 response when the target file is in a subdirectory (Bug#12757).
592
593 2012-11-17 Chong Yidong <cyd@gnu.org>
594
595 * filecache.el (file-cache-add-file-list): Doc fix (Bug#12694).
596
597 2012-11-17 Glenn Morris <rgm@gnu.org>
598
599 * woman.el (woman-non-underline-faces):
600 * emacs-lisp/cl-lib.el (face-underline-p):
601 Use set-face-underline rather than the alias set-face-underline-p.
602
603 * window.el (with-temp-buffer-window): Doc fix.
604 * subr.el (with-output-to-temp-buffer):
605 Add doc xref to with-temp-buffer-window.
606
607 2012-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
608
609 * emacs-lisp/cl-lib.el: Set more meaningful version number.
610
611 2012-11-16 Martin Rudalics <rudalics@gmx.at>
612
613 * window.el (enlarge-window, shrink-window): Don't mention return
614 value in doc-string (Bug#12896).
615 (window--display-buffer): Don't resize frames - it won't work
616 with all window managers and defeat pop-up-frame-alist.
617 (display-buffer-alist): In doc-string explain that CONDITION can
618 be a function and which arguments are passed to it (Bug#12854).
619 (display-buffer-assq-regexp): New argument ACTION. Handle lambda
620 expressions (Bug#12854).
621 (display-buffer): Pass ACTION argument to
622 display-buffer-assq-regexp.
623
624 2012-11-16 Glenn Morris <rgm@gnu.org>
625
626 * window.el (fit-frame-to-buffer-bottom-margin)
627 (fit-frame-to-buffer, fit-window-to-buffer): Doc fixes.
628
629 * faces.el (face-underline-p): Use face-attribute-specified-or.
630
631 2012-11-15 Juanma Barranquero <lekktu@gmail.com>
632
633 * emacs-lisp/cl-macs.el (cl-loop, cl-do, cl-do*): Doc fixes.
634
635 2012-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
636
637 * emacs-lisp/cl-macs.el (cl-flet, cl-flet*): Fix docstring (bug#12895).
638
639 2012-11-15 Glenn Morris <rgm@gnu.org>
640
641 * eshell/em-cmpl.el (eshell-pcomplete): New command. (Bug#12838)
642 (eshell-cmpl-initialize): Bind eshell-pcomplete to TAB, C-i.
643
644 * faces.el (face-underline-p): Doc fix. Handle :underline being
645 things other than `t' (a string, a list).
646 (face-inverse-video-p): Doc fix.
647 (set-face-underline): Rename it back from set-face-underline-p.
648 Doc fix. Allow interactive input of values other than t.
649 (read-face-attribute): Apply formatting to :underline,
650 since like :box and :stipple it can take list values.
651
652 * term.el (ansi-term): Don't let C-x escape-char binding
653 clobber the more standard C-c binding. (Bug#12842)
654
655 2012-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
656
657 * emacs-lisp/gv.el (setf): Fix debug spec for multiple assignments
658 (bug#12879).
659
660 2012-11-14 Glenn Morris <rgm@gnu.org>
661
662 * subr.el (set-temporary-overlay-map): Doc fix.
663
664 2012-11-13 Martin Rudalics <rudalics@gmx.at>
665
666 * window.el (record-window-buffer)
667 (display-buffer-record-window): When copying the markers to
668 window-point preserve window-point-insertion-type. (Bug#12588)
669
670 2012-11-13 Glenn Morris <rgm@gnu.org>
671
672 * emacs-lisp/eieio-datadebug.el (eieio-debug-methodinvoke):
673 * net/tramp-gvfs.el (tramp-gvfs-dbus-event-error):
674 Use new names for hooks rather than obsolete aliases.
675
676 2012-11-12 Stefan Monnier <monnier@iro.umontreal.ca>
677
678 * emacs-lisp/gv.el (gv-define-simple-setter): One more fix (bug#12871).
679
680 2012-11-12 Wolfgang Jenkner <wjenkner@inode.at>
681
682 * ansi-color.el (ansi-color-apply-sequence): Implement SGR codes
683 39 and 49. This fixes bug#12792. Also, treat unimplemented
684 parameters as 0, thereby restoring the behavior of revisions prior
685 to 2012-08-15T03:33:55Z!monnier@iro.umontreal.ca.
686
687 2012-11-12 Fabián Ezequiel Gallina <fgallina@cuca>
688
689 Fix end-of-defun misbehavior.
690 * progmodes/python.el (python-nav-beginning-of-defun): Rename from
691 python-beginning-of-defun-function. Handle nested defuns
692 correctly.
693 (python-nav-end-of-defun): Rename from
694 python-end-of-defun-function. Ensure forward movement.
695 (python-info-current-defun): Reimplement to work as intended
696 with new fixed python-nav-{end,beginning}-of-defun. Stop scanning
697 parent defuns as soon as possible.
698
699 2012-11-12 Glenn Morris <rgm@gnu.org>
700
701 * progmodes/flymake.el (flymake-error-bitmap)
702 (flymake-warning-bitmap, flymake-fringe-indicator-position): Doc fixes.
703 (flymake-error-bitmap, flymake-warning-bitmap): Fix :types.
704
705 2012-11-12 Dmitry Gutov <dgutov@yandex.ru>
706
707 * progmodes/ruby-mode.el (ruby-move-to-block): When moving
708 backward, always stop at indentation. Reverts the change from
709 2012-08-12T22:06:56Z!monnier@iro.umontreal.ca (Bug#12851).
710
711 2012-11-11 Glenn Morris <rgm@gnu.org>
712
713 * ibuffer.el (ibuffer-mode-map, ibuffer-mode):
714 Add ibuffer-filter-by-derived-mode.
715
716 * ibuffer.el (ibuffer-mode-map): Don't have two menu items with
717 the same name shadowing each other.
718
719 * window.el (with-temp-buffer-window): Doc tweak.
720
721 * emacs-lisp/debug.el (debugger-bury-or-kill): Doc tweak.
722
723 * help.el (temp-buffer-max-height):
724 * window.el (fit-frame-to-buffer, fit-frame-to-buffer-bottom-margin):
725 * emacs-lisp/debug.el (debugger-bury-or-kill): Fix :version.
726
727 2012-11-10 Leo Liu <sdl.web@gmail.com>
728
729 * ido.el (ido-set-matches-1): Fix split-string args to avoid
730 performance issue. (Bug#12796)
731
732 2012-11-10 Glenn Morris <rgm@gnu.org>
733
734 * term.el (term-default-fg-color, term-default-bg-color):
735 Make obsolete, rather than just saying "deprecated" in the doc.
736
737 * term.el (term): Rename from `term-face'.
738 (term-current-face, ansi-term-color-vector)
739 (term-default-fg-color, term-default-bg-color, term-ansi-reset):
740 Update all users.
741
742 2012-11-09 Jan Djärv <jan.h.d@swipnet.se>
743
744 * server.el (server-create-window-system-frame): Improve comment.
745
746 2012-11-08 Jan Djärv <jan.h.d@swipnet.se>
747
748 * server.el (server-create-window-system-frame): Handle Nextstep
749 specially (Bug#12780).
750
751 2012-11-08 Glenn Morris <rgm@gnu.org>
752
753 * mail/emacsbug.el (report-emacs-bug-query-existing-bugs):
754 Unautoload, and make obsolete. (Bug#7449)
755
756 2012-11-08 Chong Yidong <cyd@gnu.org>
757
758 * vc/diff-mode.el (diff-delete-trailing-whitespace): Rewrite, and
759 rename from diff-remove-trailing-whitespace (Bug#12831).
760
761 2012-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
762
763 * emacs-lisp/advice.el: Require `cl-lib' at run-time to fix
764 miscompilation of trace.el.
765
766 2012-11-08 Glenn Morris <rgm@gnu.org>
767
768 * vc/diff-mode.el (diff-remove-trailing-whitespace): Doc fix.
769
770 2012-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
771
772 * emacs-lisp/gv.el (gv-define-simple-setter): Fix last change
773 (bug#12812).
774
775 2012-11-07 Chong Yidong <cyd@gnu.org>
776
777 * minibuf-eldef.el (minibuffer-eldef-shorten-default): Convert to
778 a defcustom with an appropriate :set function.
779 (minibuffer-default--in-prompt-regexps): New function.
780
781 2012-11-07 Glenn Morris <rgm@gnu.org>
782
783 * emacs-lisp/cl.el (define-setf-expander, defsetf)
784 (define-modify-macro): Doc fixes.
785
786 * emacs-lisp/gv.el (gv-letplace): Fix doc typo.
787 (gv-define-simple-setter): Update doc of `fix-return'.
788
789 2012-11-07 Stefan Monnier <monnier@iro.umontreal.ca>
790
791 * emacs-lisp/gv.el (gv-define-simple-setter): Don't evaluate `val'
792 twice when `fix-return' is set (bug#12813).
793
794 * emacs-lisp/cl.el (defsetf): Pass the third arg to
795 gv-define-simple-setter (bug#12812).
796
797 2012-11-06 Stefan Monnier <monnier@iro.umontreal.ca>
798
799 * woman.el (woman-decode-region): Disable adaptive-fill when rendering
800 (bug#12756).
801
802 2012-11-06 Glenn Morris <rgm@gnu.org>
803
804 * emacs-lisp/gv.el (gv-define-setter): Fix doc typo.
805
806 2012-11-05 Glenn Morris <rgm@gnu.org>
807
808 * emacs-lisp/cl-extra.el (cl-prettyexpand):
809 * emacs-lisp/cl-lib.el (cl-proclaim, cl-declaim):
810 * emacs-lisp/cl-macs.el (cl-destructuring-bind, cl-locally)
811 (cl-the, cl-compiler-macroexpand): Add basic doc strings.
812
813 * emacs-lisp/cl-extra.el (cl-maplist, cl-mapcan): Doc fix.
814
815 2012-11-03 Glenn Morris <rgm@gnu.org>
816
817 * emacs-lisp/cl-macs.el (cl-parse-loop-clause):
818 Rename handler properties back from cl-- to cl-. (Bug#12788)
819
820 * emacs-lisp/cl-macs.el (cl-do-all-symbols): Add doc string.
821
822 2012-11-03 Eli Zaretskii <eliz@gnu.org>
823
824 * term/pc-win.el: Don't load term/internal from here.
825
826 * loadup.el: Load term/internal from here.
827
828 2012-11-03 Fabián Ezequiel Gallina <fgallina@cuca>
829
830 * progmodes/python.el (inferior-python-mode): Fix hang in
831 jit-lock (Bug#12645).
832
833 2012-11-03 Martin Rudalics <rudalics@gmx.at>
834
835 * window.el (switch-to-visible-buffer)
836 (switch-to-buffer-preserve-window-point): Fix doc-strings.
837
838 2012-11-01 Stephen Berman <stephen.berman@gmx.net>
839
840 * play/gomoku.el (gomoku-display-statistics): Update mode line
841 only if in Gomoku buffer; don't capitalize "won" (Bug#12771).
842
843 2012-10-31 Martin Rudalics <rudalics@gmx.at>
844
845 * window.el (quit-restore-window): If the window has been
846 created on an existing frame and ended up as the sole window on
847 that frame, do not delete it (Bug#12764).
848
849 2012-10-31 Stefan Monnier <monnier@iro.umontreal.ca>
850
851 * progmodes/sh-script.el (sh--inside-noncommand-expression):
852 Rename from sh--inside-arithmetic-expression, handle more cases
853 (bug#11263).
854
855 * progmodes/sh-script.el (sh--inside-arithmetic-expression): New func.
856 (sh-font-lock-open-heredoc): Use it (bug#12770).
857
858 2012-10-30 Glenn Morris <rgm@gnu.org>
859
860 * emacs-lisp/cl-extra.el (cl-mapc): Add autoload cookie. Doc fix.
861
862 * emacs-lisp/cl.el (letf): Doc fix. (Bug#12760)
863
864 2012-10-29 Chong Yidong <cyd@gnu.org>
865
866 * isearch.el (isearch-other-meta-char): Ensure that a reprocessed
867 function key is stored in a keyboard macro (Bug#4894).
868
869 * thingatpt.el (number-at-point): Apply a thing-at-point property.
870
871 2012-10-29 Stefan Monnier <monnier@iro.umontreal.ca>
872
873 * vc/diff-mode.el (diff-context->unified): Don't get confused by "hunk
874 header comments".
875 (diff-unified->context, diff-context->unified)
876 (diff-reverse-direction, diff-fixup-modifs): Use `use-region-p'.
877
878 * emacs-lisp/cl.el (letf): Add missing indent rules (bug#12759).
879
880 * files.el (find-alternate-file): Only ask one question (bug#12487).
881
882 2012-10-29 Chong Yidong <cyd@gnu.org>
883
884 * vc/vc-hooks.el (vc-file-clearprops): Kill vc-parent-buffer.
885 Suggested by Dan Nicolaescu (Bug#6326).
886
887 * info.el (Info-complete-menu-item): Avoid duplicates (Bug#12705).
888
889 * startup.el (fancy-about-screen): Don't message (Bug#12680).
890
891 * thingatpt.el (thing-at-point): Doc fix (Bug#12691).
892
893 * imenu.el (imenu): Inhibit push-mark message (Bug#12726).
894
895 * face-remap.el (face-remap-add-relative): Handle the case where a
896 face-remapping-alist entry is a cons cell (Bug#12762).
897
898 2012-10-29 Kevin Ryde <user42@zip.com.au>
899
900 * woman.el (woman-parse-numeric-value): Handle picas correctly
901 (Bug#12639).
902
903 2012-10-29 Glenn Morris <rgm@gnu.org>
904
905 * emacs-lisp/cl.el (defsetf): Doc fix.
906
907 2012-10-29 Stefan Monnier <monnier@iro.umontreal.ca>
908
909 * progmodes/sh-script.el (sh-font-lock-paren): Also put punctuation
910 syntax to the matching opener, if any (bug#12547).
911 (sh-smie-sh-forward-token, sh-smie-sh-backward-token): Recognize this
912 matching open as a "case-(".
913 (sh-smie-rc-grammar): Add a corresponding rule for it.
914
915 2012-10-28 Daniel Hackney <dan@haxney.org>
916
917 * emacs-lisp/package.el (package-generate-autoloads): Kill buffer
918 "PKGNAME-autoloads.el" in case we created it.
919
920 2012-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
921
922 * minibuffer.el (completion--sifn-requote): Rewrite to handle things
923 like Tramp's "/foo:~bar//baz" -> "/scpc:foo:/baz" mapping (bug#11714).
924 (completion--twq-all): Disable too-strict assertions.
925
926 * tmm.el (tmm-prompt): Use map-keymap (bug#12744).
927
928 2012-10-27 Eli Zaretskii <eliz@gnu.org>
929
930 * profiler.el (profiler-report-make-entry-part): Fix help-echo
931 text to match the real keybindings.
932
933 2012-10-27 Juri Linkov <juri@jurta.org>
934
935 * wdired.el (wdired-keep-marker-rename): New defcustom.
936 (wdired-do-renames): Use it instead of `dired-keep-marker-rename'.
937 (Bug#11795)
938
939 * dired.el (dired-keep-marker-rename): Add reference to
940 `wdired-keep-marker-rename' in the docstring.
941 Add default character value ?R to display initially in
942 Customization UI instead of ?@.
943
944 2012-10-27 Martin Rudalics <rudalics@gmx.at>
945
946 * window.el (display-buffer): In doc-string describe
947 window-height and window-width alist entries.
948
949 * time.el (display-time-world): Restore fit-window-to-buffer
950 behavior.
951
952 2012-10-27 Chong Yidong <cyd@gnu.org>
953
954 * subr.el (insert-buffer-substring-as-yank): Doc fix.
955
956 2012-10-26 Jambunathan K <kjambunathan@gmail.com>
957
958 * minibuffer.el (completion-category-overrides): New completion
959 category `bookmark' (bug#11131).
960
961 2012-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
962
963 * emacs-lisp/advice.el (ad-assemble-advised-definition):
964 Silence bogus compiler warnings for ad-do-it.
965
966 * bookmark.el (bookmark-completing-read): Set the completion category
967 to `bookmark' (bug#11131).
968
969 2012-10-26 Bastien <bzg@altern.org>
970 Stefan Monnier <monnier@iro.umontreal.ca>
971
972 * face-remap.el: Use lexical-binding.
973 (text-scale-adjust): Improve docstring. Use itself for the temporary
974 overlay-map bindings, so as to repeat the "Use..." message each time.
975
976 2012-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
977
978 * emacs-lisp/macroexp.el (macroexp--expand-all):
979 Obey byte-compile-warning-enabled-p (bug#12486).
980
981 * vc/diff-mode.el (diff-end-of-hunk): Also skip potential "no LF at eol".
982 (diff-refine-hunk): Similarly, handle the "no LF at eol" (bug#12584).
983
984 2012-10-26 Martin Rudalics <rudalics@gmx.at>
985
986 * mouse.el (mouse-drag-line): Move last form into preceding when
987 clause (Bug#12731).
988
989 * help.el (resize-temp-buffer-window): Fix doc-string.
990
991 2012-10-25 David Engster <deng@randomsample.de>
992
993 * emacs-lisp/eieio.el (eieio-update-lisp-imenu-expression):
994 Remove. This feature is already integrated in imenu.
995
996 * emacs-lisp/eieio-opt.el: Remove require for `button' since it is
997 always loaded. Require `speedbar' unconditionally.
998
999 2012-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
1000
1001 * dired.el (dired-get-marked-files): Allow ! on . and .. (bug#12725).
1002
1003 * minibuffer.el (minibuffer-force-complete): Fix thinko.
1004
1005 * net/ldap.el (ldap-search-internal): The official ldif format starts
1006 with a "version: 1" header (bug#12724).
1007
1008 * emacs-lisp/package.el (package-installed-p): Warn if not ready
1009 (bug#12721).
1010
1011 2012-10-25 Glenn Morris <rgm@gnu.org>
1012
1013 * emacs-lisp/cl-macs.el (cl-progv): Doc fix.
1014
1015 2012-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
1016
1017 * minibuffer.el (minibuffer-force-complete): Use one more marker
1018 for the temporary-overlay-map command (bug#12619).
1019
1020 2012-10-24 Chong Yidong <cyd@gnu.org>
1021
1022 * time.el (display-time-world-mode): Derive from special-mode.
1023 (display-time-world): Use display-buffer (Bug#12708).
1024 (display-time-world-mode-map): Variable deleted.
1025 (display-time-world-display): Wrap the final delete-char inside
1026 inhibit-read-only.
1027
1028 2012-10-24 Chong Yidong <cyd@gnu.org>
1029
1030 * dired.el (dired-mark, dired-unmark, dired-flag-file-deletion):
1031 Doc fix.
1032
1033 * emacs-lisp/easymenu.el (easy-menu-define): Doc fix (Bug#12628).
1034
1035 2012-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
1036
1037 * minibuffer.el (completion--all-sorted-completions-location): New var.
1038 (completion--cache-all-sorted-completions)
1039 (completion--flush-all-sorted-completions): Use it.
1040 (completion-in-region, completion-in-region--postch)
1041 (completion-at-point, completion-help-at-point): Use markers in
1042 completion-in-region--data (bug#12619).
1043
1044 2012-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
1045
1046 * progmodes/compile.el (compilation-start): Try to handle common
1047 quoting of `cd' argument (bug#12640).
1048
1049 * vc/diff-mode.el (diff-hunk): `save-excursion' while refining
1050 (bug#12671).
1051
1052 2012-10-23 Glenn Morris <rgm@gnu.org>
1053
1054 * progmodes/gud.el (gud-menu-map):
1055 Check gdb-active-process is bound. (Bug#12358)
1056
1057 2012-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
1058
1059 * repeat.el (repeat): Set real-this-command (bug#12232).
1060
1061 * htmlfontify.el (hfy-post-html-hook):
1062 * filesets.el (filesets-cache-fill-content-hook):
1063 * arc-mode.el (archive-extract-hook):
1064 * progmodes/cc-mode.el (c-prepare-bug-report-hook):
1065 * net/rcirc.el (rcirc-sentinel-functions)
1066 (rcirc-receive-message-functions, rcirc-activity-functions)
1067 (rcirc-print-functions):
1068 * net/dbus.el (dbus-event-error-functions):
1069 * emacs-lisp/eieio.el (eieio-pre-method-execution-functions):
1070 * emacs-lisp/checkdoc.el (checkdoc-style-functions)
1071 (checkdoc-comment-style-functions): Don't use "-hooks" suffix.
1072 * term/sun.el (sun-raw-prefix-hooks):
1073 * mail/sendmail.el (mail-yank-hooks): Use make-obsolete-variable.
1074
1075 2012-10-23 Michael Albinus <michael.albinus@gmx.de>
1076
1077 * net/tramp-smb.el (tramp-smb-maybe-open-connection):
1078 Set `tramp-chunksize' to 1. This improves the performance.
1079 (tramp-smb-wait-for-output): Add timeout to
1080 `tramp-accept-process-output' calls.
1081
1082 2012-10-23 Chong Yidong <cyd@gnu.org>
1083
1084 * faces.el (font-list-limit): Define as an obsolete variable.
1085
1086 * startup.el (command-line):
1087 * cus-start.el: Don't refer to font-list-limit.
1088
1089 * newcomment.el (comment-normalize-vars): Doc fix (Bug#12583).
1090
1091 2012-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
1092
1093 * subr.el (internal-temp-output-buffer-show): Rename from
1094 temp-output-buffer-show, since previously compiled files expect this name.
1095
1096 2012-10-23 Glenn Morris <rgm@gnu.org>
1097
1098 * image.el (image-type-from-file-name): If multiple types match,
1099 return the first one that is supported. (Bug#9045)
1100
1101 2012-10-22 Glenn Morris <rgm@gnu.org>
1102
1103 * image.el (imagemagick-enabled-types): Doc fix.
1104
1105 2012-10-22 Takafumi Arakaki <aka.tkf@gmail.com> (tiny change)
1106
1107 * progmodes/which-func.el (which-func-current): The hash-table may have
1108 an explicit nil (bug#12338).
1109
1110 2012-10-22 Stefan Monnier <monnier@iro.umontreal.ca>
1111
1112 * electric.el (electric-pair-delete-selection-self-insert-function):
1113 Rename to electric-pair-will-use-region, return a boolean.
1114 (electric-pair-mode): Adjust accordingly. Don't require delsel.
1115
1116 * delsel.el (delete-selection-helper): Use a function instead of a hook.
1117 (delete-selection-pre-hook): Use use-region-p.
1118 (delete-selection-self-insert-function): Remove.
1119 (self-insert-command): Obey self-insert-uses-region-functions.
1120 (self-insert-iso): Revert to previous setting, since we don't actually
1121 know what that command does.
1122 (delete-selection-self-insert-hooks): Remove.
1123
1124 2012-10-22 Simon Law <sfllaw@sfllaw.ca> (tiny change)
1125
1126 * delsel.el (delete-selection-helper): New function, extracted from
1127 delete-selection-pre-hook.
1128 (delete-selection-pre-hook): Use it.
1129 (delete-selection-self-insert-function): New function.
1130 (delete-selection-self-insert-hooks): New hook.
1131 (self-insert-command, self-insert-iso): Use it.
1132 * electric.el (electric-pair-syntax): New function, extracted from
1133 electric-pair-post-self-insert-function.
1134 (electric-pair-post-self-insert-function): Use it.
1135 (electric-pair-delete-selection-self-insert-function): New function.
1136 (electric-pair-mode): Require delsel and setup
1137 delete-selection-self-insert-hooks (bug#11520).
1138
1139 2012-10-20 Chong Yidong <cyd@gnu.org>
1140
1141 * vc/vc.el (vc-diff-internal): Set up Diff mode even if there are
1142 no changes to show (Bug#12586).
1143
1144 * eshell/esh-cmd.el (eshell-rewrite-for-command): Copy the body
1145 list explicitly (Bug#12571).
1146
1147 2012-10-20 Arne Jørgensen <arne@arnested.dk>
1148
1149 * progmodes/flymake.el (flymake-create-temp-inplace):
1150 Use file-truename.
1151
1152 2012-10-20 Eli Zaretskii <eliz@gnu.org>
1153
1154 * loadup.el: Update comment about uncompiled Lisp files. (Bug#12395)
1155
1156 2012-10-20 Jay Belanger <jay.p.belanger@gmail.com>
1157
1158 * calc/calc-units.el (math-extract-units): Properly extract powers
1159 of units.
1160
1161 2012-10-20 Daniel Colascione <dancol@dancol.org>
1162
1163 * frame.el (make-frame): Set x-display-name as we used to in order
1164 to unbreak creating an X11 frame from an Emacs daemon started
1165 without a display.
1166
1167 2012-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
1168
1169 * minibuffer.el (minibuffer-force-complete): Make the next completion use
1170 the same completion-field (bug@12221).
1171
1172 2012-10-19 Martin Rudalics <rudalics@gmx.at>
1173
1174 * emacs-lisp/debug.el (debug): Record height of debugger window
1175 also when debugger will be back (Bug#8789).
1176
1177 2012-10-18 Chong Yidong <cyd@gnu.org>
1178
1179 * progmodes/gdb-mi.el (gdb-display-buffer-other-frame-action):
1180 Convert to defcustom.
1181 (gdb-get-source-file): Don't bind pop-up-windows.
1182
1183 * progmodes/gud.el (gud-display-line): Don't specially re-use
1184 other frames for the gdb-mi case (Bug#12648).
1185
1186 2012-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
1187
1188 * emacs-lisp/advice.el: Clean up commentary a bit.
1189 (ad-do-advised-functions, ad-with-originals): Use `declare'.
1190 (byte-code-function-p): Never redefine.
1191
1192 * emacs-lisp/gv.el (cond): Same fix as before for `if'.
1193
1194 2012-10-18 Glenn Morris <rgm@gnu.org>
1195
1196 * dired.el (dired-sort-toggle): Some ls implementations only allow
1197 a single option string. (Bug#12666)
1198
1199 * minibuffer.el (completion-cycle-threshold): Doc fix.
1200
1201 2012-10-17 Kenichi Handa <handa@gnu.org>
1202
1203 * international/mule.el (set-keyboard-coding-system):
1204 Recover input meta mode when the new coding system doesn not use 8-bit.
1205 Supply TERMINAL arg to set-input-meta-mode.
1206
1207 2012-10-17 Michael Heerdegen <michael_heerdegen@web.de>
1208
1209 * wdired.el (wdired-old-marks): New variable.
1210 (wdired-change-to-wdired-mode): Locally set wdired-old-marks.
1211 (wdired-do-renames): Move point with renamed file and don't lose
1212 mark status (Bug#11795).
1213
1214 2012-10-16 Juri Linkov <juri@jurta.org>
1215
1216 * replace.el (query-replace-help): Mention multi-buffer replacement
1217 keys in the Help message. (Bug#12655)
1218
1219 2012-10-15 Chong Yidong <cyd@gnu.org>
1220
1221 * emacs-lisp/byte-run.el (defsubst): Doc fix.
1222
1223 2012-10-14 Eli Zaretskii <eliz@gnu.org>
1224
1225 * window.el (display-buffer): Doc fix.
1226
1227 * progmodes/compile.el (compilation-error-regexp-alist-alist):
1228 Adjust the msft regexp to the output of Studio 2010, and move msft
1229 before edg-1. See the discussion on emacs-devel,
1230 http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00579.html,
1231 for the details.
1232
1233 2012-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
1234
1235 * emacs-lisp/eieio.el (eieio-oset-default, eieio-oset, oset-default)
1236 (oset): Move uses of object-class-fast macro after its definition.
1237
1238 * emacs-lisp/gv.el (if): Don't use closures in non-lexical-binding code.
1239
1240 2012-10-13 Chong Yidong <cyd@gnu.org>
1241
1242 * textmodes/ispell.el (ispell-pdict-save): If flyspell-mode is
1243 enabled, re-enable it (Bug#11963).
1244
1245 2012-10-13 Martin Rudalics <rudalics@gmx.at>
1246
1247 * emacs-lisp/debug.el (debug): When debugger-will-be-back is
1248 non-nil, restore window configuration (Bug#12623).
1249
1250 2012-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
1251
1252 * help-fns.el (describe-variable, describe-function-1):
1253 * help-mode.el (help-make-xrefs): Remove error handler, made unneeded.
1254
1255 * emacs-lisp/eieio.el (lisp-imenu-generic-expression): Fix typo.
1256
1257 2012-10-12 Glenn Morris <rgm@gnu.org>
1258
1259 * mail/rmailsum.el (rmail-header-summary):
1260 Fix 2010-11-26 test for multiline Subject: field. (Bug#12625)
1261
1262 2012-10-12 Fabián Ezequiel Gallina <fgallina@cuca>
1263
1264 * progmodes/python.el (python-mode-map):
1265 Replace subtitute-key-definition with proper command remapping.
1266 (python-nav--up-list): Fix behavior for blocks on the same level.
1267
1268 2012-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
1269
1270 * help-fns.el (describe-function-1): Handle autoloads w/o docstrings.
1271
1272 * emacs-lisp/bytecomp.el (byte-compile-eval): Adjust to long-ago
1273 changes to the format of load-history.
1274
1275 * international/mule-cmds.el (read-char-by-name): Move let-binding of
1276 completion-ignore-case in case that var is buffer-local (bug#12615).
1277
1278 2012-10-11 Kenichi Handa <handa@gnu.org>
1279
1280 * international/eucjp-ms.el: Re-generated.
1281
1282 2012-10-10 Kenichi Handa <handa@gnu.org>
1283
1284 * select.el (xselect--encode-string): If a coding is specified for
1285 selection, and that is compatible with COMPOUND_TEXT, use it.
1286
1287 2012-10-10 Martin Rudalics <rudalics@gmx.at>
1288
1289 * window.el (switch-to-buffer-preserve-window-point): New option.
1290 (switch-to-buffer):
1291 Obey `switch-to-buffer-preserve-window-point' (Bug#4041).
1292
1293 2012-10-09 Stefan Monnier <monnier@iro.umontreal.ca>
1294
1295 * newcomment.el (comment-start-skip, comment-end-skip, comment-end):
1296 Don't document nil as a useful value (bug#12583).
1297
1298 2012-10-09 Michael Albinus <michael.albinus@gmx.de>
1299
1300 * net/tramp.el (tramp-debug-message):
1301 Remove "tramp-with-progress-reporter" from regexp of ignored functions.
1302 (with-tramp-progress-reporter): Rename from
1303 `tramp-with-progress-reporter'.
1304 (with-tramp-file-property, with-tramp-connection-property):
1305 Move from tramp-cache.el, rename from `with-file-property' and
1306 `with-connection-property', respectively.
1307
1308 * net/tramp-cache.el: Remove `with-file-property' and
1309 `with-connection-property'.
1310
1311 * net/tramp.el:
1312 * net/tramp-gvfs.el:
1313 * net/tramp-sh.el:
1314 * net/tramp-smb.el: Adapt callees.
1315
1316 * net/trampver.el: Update release number.
1317
1318 2012-10-09 Glenn Morris <rgm@gnu.org>
1319
1320 * w32-fns.el (set-message-beep):
1321 * term/w32-win.el (set-message-beep): Update declarations.
1322
1323 2012-10-09 Stefan Monnier <monnier@iro.umontreal.ca>
1324
1325 * bindings.el (mode-line-toggle-read-only, mode-line-toggle-modified)
1326 (mode-line-widen, mode-line-input-method-map)
1327 (mode-line-coding-system-map, mode-line-remote)
1328 (mode-line-unbury-buffer, mode-line-bury-buffer)
1329 (mode-line-next-buffer, mode-line-previous-buffer):
1330 Replace save-selected-window+select-window => with-selected-window.
1331
1332 * progmodes/cc-bytecomp.el (cc-bytecomp-defmacro): Remove, unused.
1333 * progmodes/cc-vars.el (bq-process): Remove, unused.
1334
1335 * emacs-lisp/cl-macs.el (cl-defstruct): Obey the :read-only property.
1336
1337 2012-10-09 Fabián Ezequiel Gallina <fgallina@cuca>
1338
1339 Implemented `backward-up-list'-like navigation.
1340 * progmodes/python.el (python-nav-up-list)
1341 (python-nav-backward-up-list): New functions.
1342 (python-mode-map): Define substitute key for backward-up-list to
1343 python-nav-backward-up-list.
1344
1345 2012-10-08 Fabián Ezequiel Gallina <fgallina@cuca>
1346
1347 * progmodes/python.el (python-fill-paragraph): Rename from
1348 python-fill-paragraph-function. Fixed fill-paragraph for
1349 decorators (Bug#12605).
1350
1351 2012-10-08 Fabián Ezequiel Gallina <fgallina@cuca>
1352
1353 * progmodes/python.el (python-shell-output-filter): Handle extra
1354 carriage return in OSX (Bug#12409).
1355
1356 2012-10-08 Fabián Ezequiel Gallina <fgallina@cuca>
1357
1358 Fix shell handling of unbalanced quotes and parens in output.
1359 * progmodes/python.el (python-rx-constituents): Add string-delimiter.
1360 (python-syntax-propertize-function): Use it.
1361 (python-shell-output-syntax-table): New var.
1362 (inferior-python-mode): Prevent unbalanced parens/quotes from
1363 previous output mess with current input context.
1364
1365 2012-10-08 Juanma Barranquero <lekktu@gmail.com>
1366
1367 * generic-x.el (javascript-generic-mode, javascript-generic-mode-hook):
1368 Make obsolete aliases of js-mode and js-mode-hook (from js.el).
1369
1370 2012-10-08 Michael Albinus <michael.albinus@gmx.de>
1371
1372 * ffap.el (ffap-replace-file-component): Support Tramp file name
1373 syntax, not only ange-ftp's one.
1374
1375 2012-10-08 Glenn Morris <rgm@gnu.org>
1376
1377 * cus-start.el (message-log-max): Set :version.
1378
1379 * calendar/calendar.el (calendar-intermonth-header): Doc fix.
1380
1381 2012-10-08 Martin Rudalics <rudalics@gmx.at>
1382
1383 * emacs-lisp/edebug.el (edebug-pop-to-buffer): Don't try to split
1384 the minibuffer window (Bug#10851).
1385
1386 2012-10-08 Fabián Ezequiel Gallina <fgallina@cuca>
1387
1388 Enhancements on forward-sexp movement.
1389 * progmodes/python.el (python-nav-beginning-of-statement)
1390 (python-nav-end-of-statement): Return point-marker.
1391 (python-nav-forward-sexp): lisp-like forward-sexp behavior.
1392 (python-info-current-symbol)
1393 (python-info-statement-starts-block-p): Rename from
1394 python-info-beginning-of-block-p.
1395 (python-info-statement-ends-block-p): Rename from
1396 python-info-end-of-block-p.
1397 (python-info-beginning-of-statement-p)
1398 (python-info-end-of-statement-p)
1399 (python-info-beginning-of-block-p, python-info-end-of-block-p):
1400 New functions.
1401
1402 2012-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
1403
1404 * comint.el (comint-preinput-scroll-to-bottom): Preserve the
1405 frame-selected-windows.
1406
1407 2012-10-08 Daniel Colascione <dancol@dancol.org>
1408
1409 * battery.el (battery-status-function): Check for
1410 w32-battery-status itself, not system-time windows-nt.
1411
1412 * frame.el: Require cl-lib.
1413 (display-format-alist): New variable mapping frame types to
1414 functions that initialize them.
1415 (window-system-for-display): New function: interprets
1416 display-format-alist.
1417 (make-frame-on-display): Remove existing display-selection logic
1418 and just forward to make-frame, which will now DTRT.
1419 (make-frame): Restructure to use window-system-for-display to
1420 figure out how to create a frame on a given display.
1421 (display-mouse-p): Look for frame-type w32, not a particular
1422 system-type.
1423
1424 * loadup.el: Load w32 lisp code when we have the w32 feature.
1425
1426 * mouse.el (mouse-yank-primarY): Look for frame-type w32, not
1427 system-type windows-nt.
1428
1429 * server.el (server-create-window-system-frame): Look for window
1430 type.
1431 (server-proces-filter): Only force a window system when windows-nt
1432 _and_ w32. Explain why.
1433
1434 * simple.el (normal-erase-is-backspace-mode): Add w32 to the list
1435 of window systems we configure for the mode.
1436
1437 * startup.el (command-line): Mark window system is initialized
1438 after we've done it.
1439
1440 * common-win.el (x-select-text): Look for w32, not windows-nt.
1441
1442 * ns-win.el: Require cl-lib. Add ourselves to
1443 display-format-alist.
1444 (ns-initialize-window-system): Assert we're not initialized twice.
1445
1446 * w32-win.el: Enable lexical binding; require cl-lib; add
1447 ourselves to display-format-alist.
1448 (w32-handle-dropped-file): Convert incoming dropped files from
1449 Windows paths to Cygwin ones before passing them on to the rest of
1450 Emacs.
1451 (w32-drag-n-drop): New paramter new-frame. Simplify logic.
1452 (w32-initialize-window-system): Assert we're not initialized twice.
1453
1454 * x-win.el: Require cl-lib; add ourselves to display-format-alist.
1455 (x-initialize-window-system): Assert we're not initialized twice.
1456
1457 * w32-common-fns.el: New File.
1458 (w32-version, w32-using-nt, w32-get-clipboard-data)
1459 (w32-set-clipboard-data, x-set-selection, x-get-selection)
1460 (w32-charset-info-alist, x-last-selected, text)
1461 (x-get-selection-value, x-selection-value): Move here.
1462
1463 * w32-fns.el: Require w32-common-fns.
1464 (w32-version, w32-using-nt, w32-get-clipboard-data)
1465 (w32-set-clipboard-data, x-set-selection, x-get-selection)
1466 (w32-charset-info-alist, x-last-selected, text)
1467 (x-get-selection-value, x-selection-value): Move to
1468 w32-common-fns.
1469
1470 * w32-vars.el:
1471 (w32-allow-system-shell, w32-system-shells): Define only in
1472 non-cygwin case.
1473
1474 2012-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
1475
1476 * subr.el (read-passwd-map): Don't use `defconst' (bug#12597).
1477 (read-passwd): Remove a few more potential sources of leaks.
1478
1479 2012-10-07 Fabián Ezequiel Gallina <fgallina@cuca>
1480
1481 * progmodes/python.el (inferior-python-mode)
1482 (python-shell-make-comint): Fix initialization of local
1483 variables copied from parent buffer.
1484
1485 2012-10-07 Jan Djärv <jan.h.d@swipnet.se>
1486
1487 * term/ns-win.el (ns-read-file-name): Update declaration to match
1488 nsfns.m.
1489 (ns-respond-to-change-font): Change fontsize separatly so we are sure
1490 it is set when font is acted upon.
1491
1492 2012-10-07 Fabián Ezequiel Gallina <fgallina@cuca>
1493
1494 Enhancements to indentation.
1495 * progmodes/python.el (python-indent-context): Give priority to
1496 inside-string context. Make comments indentation markers.
1497 (python-indent-region): Do not mess with strings, unless it's the
1498 enclosing set of quotes.
1499
1500 2012-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
1501
1502 * window.el (internal--before-save-selected-window)
1503 (internal--after-save-selected-window): New functions extracted from
1504 save-selected-window. Make sure we return the `alist' we construct.
1505 (save-selected-window): Use them.
1506
1507 * textmodes/tex-mode.el (tex-recenter-output-buffer):
1508 Use with-selected-window.
1509
1510 * emacs-lisp/autoload.el (make-autoload): Add `cl-defmacro' to the
1511 forms that define macros (bug#12593).
1512
1513 2012-10-07 Kenichi Handa <handa@gnu.org>
1514
1515 * international/mule-conf.el (compound-text-with-extensions):
1516 Add :mime-charset property as x-ctext.
1517
1518 2012-10-07 Stefan Merten <smerten@oekonux.de>
1519
1520 * textmodes/rst.el (rst-new-adornment-down, rst-indent-field)
1521 (rst-indent-literal-normal, rst-indent-literal-minimized)
1522 (rst-indent-comment): Correct :version tag.
1523 (rst-official-cvs-rev): Correct version string.
1524
1525 2012-10-07 Glenn Morris <rgm@gnu.org>
1526
1527 * mail/rmailmm.el (rmail-mime-process-multipart):
1528 Do not confuse a multipart message with an epilogue
1529 with a "truncated" one; fixes 2011-06-27 change. (Bug#10101)
1530
1531 2012-10-07 Fabián Ezequiel Gallina <fgallina@cuca>
1532
1533 Fix shell output retrieval and comint-prompt-regexp init.
1534 * progmodes/python.el (inferior-python-mode):
1535 (python-shell-make-comint): Fix initialization of
1536 comint-prompt-regexp from copied file local variables.
1537 (python-shell-fetched-lines): Remove var.
1538 (python-shell-output-filter-in-progress): Rename from
1539 python-shell-fetch-lines-in-progress.
1540 (python-shell-output-filter-buffer): Rename from
1541 python-shell-fetch-lines-string.
1542 (python-shell-fetch-lines-filter): Delete function.
1543 (python-shell-output-filter): New function.
1544 (python-shell-send-string-no-output): Use them.
1545
1546 2012-10-07 Glenn Morris <rgm@gnu.org>
1547
1548 * hi-lock.el (hi-lock-process-phrase):
1549 Try to make it less fragile. (Bug#7161)
1550
1551 * hi-lock.el (hi-lock-face-phrase-buffer): Doc fix.
1552
1553 2012-10-06 Glenn Morris <rgm@gnu.org>
1554
1555 * ehelp.el (electric-help-mode): Use help-mode rather than
1556 non-existent mode `help'.
1557 (electric-help-map): Use button-buffer-map. (Bug#10917)
1558
1559 * textmodes/reftex-vars.el (reftex-create-bibtex-header)
1560 (reftex-create-bibtex-footer): Fix custom types.
1561
1562 * progmodes/sh-script.el (sh-indent-after-continuation):
1563 Add explicit :group.
1564
1565 * textmodes/rst.el (rst-preferred-decorations)
1566 (rst-shift-basic-offset): Clarify obsolescence versions.
1567
1568 * profiler.el (profiler): Add missing group :version tag.
1569 * avoid.el (mouse-avoidance-banish-position):
1570 * proced.el (proced-renice-command):
1571 * calc/calc.el (calc-ensure-consistent-units):
1572 * calendar/icalendar.el (icalendar-import-format-uid):
1573 * net/tramp.el (tramp-save-ad-hoc-proxies):
1574 * progmodes/bug-reference.el (bug-reference-bug-regexp):
1575 * progmodes/flymake.el (flymake-error-bitmap)
1576 (flymake-warning-bitmap, flymake-fringe-indicator-position):
1577 * progmodes/sh-script.el (sh-indent-after-continuation):
1578 * progmodes/verilog-mode.el (verilog-auto-template-warn-unused)
1579 (verilog-before-save-font-hook, verilog-after-save-font-hook):
1580 * progmodes/vhdl-mode.el (vhdl-makefile-default-targets)
1581 (vhdl-array-index-record-field-in-sensitivity-list)
1582 (vhdl-indent-comment-like-next-code-line):
1583 * textmodes/reftex-vars.el (reftex-ref-style-alist)
1584 (reftex-ref-macro-prompt, reftex-ref-style-default-list)
1585 (reftex-cite-key-separator, reftex-create-bibtex-header)
1586 (reftex-create-bibtex-footer):
1587 * textmodes/rst.el (rst-new-adornment-down, rst-indent-field)
1588 (rst-indent-literal-normal, rst-indent-literal-minimized)
1589 (rst-indent-comment): Add missing custom :version tags.
1590
1591 * calendar/timeclock.el (timeclock-modeline-display):
1592 Add missing obsolete alias for renamed user option.
1593
1594 * strokes.el (strokes-modeline-string):
1595 * emulation/crisp.el (crisp-mode-modeline-string):
1596 * eshell/esh-mode.el (eshell-status-in-modeline):
1597 Aliases to defcustoms must come before the defcustom.
1598
1599 * calendar/cal-tex.el (cal-tex-diary, cal-tex-cursor-week)
1600 (cal-tex-cursor-week2, cal-tex-cursor-week-iso)
1601 (cal-tex-cursor-week-monday): Doc fixes.
1602 (cal-tex-cursor-week2-summary): Doc fix.
1603 Rename from cal-tex-cursor-week-at-a-glance.
1604
1605 * calendar/cal-menu.el (cal-menu-context-mouse-menu):
1606 Tweak week descriptions. Add cal-tex-cursor-week2-summary.
1607
1608 * calendar/calendar.el (calendar-mode-map):
1609 Add cal-tex-cursor-week2-summary.
1610
1611 2012-10-06 Stefan Monnier <monnier@iro.umontreal.ca>
1612
1613 * emacs-lisp/cl-macs.el (cl-defstruct): Improve docstring.
1614
1615 * subr.el (read-passwd-map): New var.
1616 (read-passwd): Use `read-string' again.
1617 * minibuffer.el (delete-minibuffer-contents): Make it interactive.
1618
1619 2012-10-06 Jambunathan K <kjambunathan@gmail.com>
1620
1621 * register.el (append-to-register, prepend-to-register):
1622 Deactivate mark, as does `copy-to-register' (bug#12389).
1623
1624 2012-10-06 Chong Yidong <cyd@gnu.org>
1625
1626 * files.el (auto-mode-alist): Add .by and .wy (Semantic grammars).
1627
1628 2012-10-06 Ikumi Keita <ikumi@ikumi.que.jp> (tiny change)
1629
1630 * international/characters.el: Fix simple mistake ((car chars) ->
1631 elt), delete duplicated code.
1632
1633 2012-10-06 Glenn Morris <rgm@gnu.org>
1634
1635 * subr.el (read-passwd): Allow C-u to erase entry. (Bug#12570)
1636
1637 2012-10-06 Julian Scheid <julians37@gmail.com> (tiny change)
1638
1639 * color.el (color-hsl-to-rgb): Fix incorrect results for
1640 small and large hue values. (Bug#12559)
1641
1642 2012-10-05 Fabián Ezequiel Gallina <fgallina@cuca>
1643
1644 Enhancements to docstring formatting when filling paragraphs.
1645 * progmodes/python.el (python-fill-docstring-style): Rename from
1646 python-fill-string-style. Added new style.
1647 (python-fill-string): Use new style. Better checks for
1648 docstrings.
1649
1650 2012-10-05 Glenn Morris <rgm@gnu.org>
1651
1652 * net/newst-treeview.el (newsticker-group-move-feed): Doc fix.
1653
1654 * color.el (color-name-to-rgb, color-rgb-to-hex)
1655 (color-hue-to-rgb, color-hsl-to-rgb, color-rgb-to-hsv)
1656 (color-rgb-to-hsl, color-srgb-to-xyz, color-saturate-hsl)
1657 (color-desaturate-hsl, color-desaturate-name, color-lighten-hsl)
1658 (color-lighten-name, color-darken-hsl, color-darken-name): Doc fixes.
1659
1660 * emacs-lisp/timer.el (with-timeout): Add missing progn. (Bug#12577)
1661
1662 2012-10-05 Juanma Barranquero <lekktu@gmail.com>
1663
1664 * ido.el (ido-directory-too-big-p): Pass dir through file-truename
1665 to get the correct size across symlinks.
1666
1667 * ido.el (ido-buffer-disable-smart-matches): Fix typo in docstring.
1668
1669 2012-10-04 Juri Linkov <juri@jurta.org>
1670
1671 * replace.el (query-replace-interactive): Declare obsolete.
1672 (query-replace-read-from): Add the last incremental search string
1673 to the list of default values accessible via M-n.
1674 (map-query-replace-regexp): Use `read-regexp'.
1675 (query-replace, query-replace-regexp, query-replace-regexp-eval)
1676 (map-query-replace-regexp, replace-string, replace-regexp):
1677 Fix docstrings to replace mentions of `query-replace-interactive'
1678 with alternatives. (Bug#12526)
1679
1680 2012-10-04 Juri Linkov <juri@jurta.org>
1681
1682 * dired.el (dired-shrink-to-fit): Declare obsolete. (Bug#1806)
1683 (dired-pop-to-buffer): Declare obsolete.
1684 (dired-mark-pop-up): Doc fix.
1685
1686 2012-10-04 Fabián Ezequiel Gallina <fgallina@cuca>
1687
1688 Allow user to set docstring style for fill-paragraph.
1689 * progmodes/python.el
1690 (python-fill-comment-function, python-fill-string-function)
1691 (python-fill-decorator-function, python-fill-paren-function):
1692 Remove :safe for defcustoms.
1693 (python-fill-string-style): New defcustom
1694 (python-fill-paragraph-function): Enhance context detection.
1695 (python-fill-string): Honor python-fill-string-style settings.
1696
1697 2012-10-04 Martin Rudalics <rudalics@gmx.at>
1698
1699 * emacs-lisp/edebug.el (edebug-pop-to-buffer): Select window
1700 after setting its buffer (Bug#10805).
1701
1702 2012-10-03 Fabián Ezequiel Gallina <fgallina@cuca>
1703
1704 Fix cornercase for string syntax.
1705 * progmodes/python.el (python-syntax-propertize-function):
1706 Simplify and enhance the regexp for unescaped quotes. Now it also
1707 matches quotes in weird situations like the single quote in
1708 "something\"'".
1709 (python-syntax-stringify): Simplify num-quotes detecting code.
1710
1711 2012-10-03 Glenn Morris <rgm@gnu.org>
1712
1713 * help-macro.el (three-step-help):
1714 Revert 2012-09-29 change. (Bug#12567)
1715
1716 2012-10-03 Martin Rudalics <rudalics@gmx.at>
1717
1718 * menu-bar.el (kill-this-buffer): Don't do anything when
1719 `menu-frame' is not alive or visible (Bug#8184).
1720
1721 * emacs-lisp/debug.el (debug): When quitting the debugger window
1722 restore current buffer (Bug#12502).
1723
1724 2012-10-02 Chong Yidong <cyd@gnu.org>
1725
1726 * progmodes/hideif.el (hif-lookup, hif-defined):
1727 Handle semantic-c-takeover-hideif.
1728
1729 2012-10-02 Paul Eggert <eggert@cs.ucla.edu>
1730
1731 Change sampling interval units from ms to ns.
1732 * profiler.el (profiler-sampling-interval): Change units
1733 from ms to ns, multiplying the default by 1000000 so that
1734 it remains 1 ms.
1735 (profiler-report-cpu-line-format): Give enough room for
1736 the maximum counters on 64-bit hosts.
1737 (profiler-report-render-calltree-1): Call them "CPU samples",
1738 not "Time (ms)", since they are not milliseconds now (and
1739 never really were).
1740
1741 2012-10-02 Sergio Durigan Junior <sergiodj@riseup.net> (tiny change)
1742
1743 * net/eudcb-bbdb.el (eudc-bbdb-format-record-as-result):
1744 Fix querying BBDB for entries without a last name (Bug#11580).
1745
1746 2012-10-02 Chong Yidong <cyd@gnu.org>
1747
1748 * emacs-lisp/eieio.el: Restore Version header.
1749
1750 2012-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
1751
1752 * vc/diff-mode.el (diff--auto-refine-data): New var.
1753 (diff-hunk): Use it to delay refinement.
1754 (diff-mode): Remove overlays when we turn off font-lock.
1755
1756 * textmodes/table.el: Use lexical-binding, dolist, define-minor-mode.
1757 (table-initialize-table-fixed-width-mode)
1758 (table-set-table-fixed-width-mode): Remove functions.
1759 (table-command-list): Move initialization into declaration.
1760 (table--tweak-menu-for-xemacs): Move defun outside mapcar.
1761 (table-with-cache-buffer): Use `declare'.
1762 (table-span-cell): Simplify via CSE.
1763 (table-fixed-width-mode): Use define-minor-mode.
1764 (table-call-interactively, table-funcall, table-apply): Remove.
1765 (table-function): New function, to replace them.
1766
1767 * bookmark.el (bookmark-search-pattern): Remove var.
1768 (bookmark-read-search-input): Remove function.
1769 (bookmark-bmenu-search): Reimplement using a minibuffer.
1770
1771 * faces.el (modeline): Remove obsolete face name.
1772
1773 * vc/add-log.el (add-log-buffer-file-name-function): Demote to defvar
1774 and give a non-nil default value.
1775 (add-change-log-entry): Simplify accordingly.
1776
1777 2012-10-01 Dmitry Gutov <dgutov@yandex.ru>
1778
1779 * vc/vc-git.el (vc-git-log-edit-toggle-signoff): New function.
1780 (vc-git-log-edit-toggle-amend): New function.
1781 (vc-git-log-edit-toggle-signoff): New function.
1782 (vc-git-log-edit-mode): New major mode.
1783 (vc-git-log-edit-mode-map): Keymap for it.
1784 (vc-git-checkin): Handle "Amend" and "Sign-Off" headers.
1785
1786 * vc/log-edit.el (log-edit-font-lock-keywords): Allow hyphens in
1787 header names.
1788 (log-edit-toggle-header): New function.
1789 (log-edit-extract-headers): Accept function values in HEADERS alist.
1790
1791 2012-10-01 David Engster <deng@randomsample.de>
1792
1793 * emacs-lisp/eieio-opt.el (eieio-describe-class): Add filename
1794 from symbol property and change message to be more consistent with
1795 Emacs proper.
1796 (eieio-describe-generic): Add filename for each implementation.
1797 Fix indices for generic and normal methods.
1798 (eieio-method-def, eieio-class-def): New buttons.
1799 (eieio-help-find-method-definition)
1800 (eieio-help-find-class-definition): New functions.
1801 (eieio-help-mode-augmentation-maybee): Add buttons to filenames of
1802 class, constructor and method definitions.
1803
1804 * emacs-lisp/eieio.el (eieiomt-add, eieio-defclass): Save file
1805 information in symbol property.
1806 (scoped-class): Remove.
1807 (eieio-slot-name-index, call-next-method): Check if it is bound.
1808
1809 2012-10-01 Leo P. White <lpw25@cam.ac.uk>
1810
1811 * emacs-lisp/eieio-custom.el (eieio-custom-mode-map): New option.
1812 (eieio-custom-mode): New major mode.
1813 (eieio-customize-object): Use it.
1814
1815 2012-10-01 Eric Ludlam <zappo@gnu.org>
1816
1817 * emacs-lisp/eieio-base.el (eieio-persistent-read): New input args
1818 specifying the expected class, and whether subclassing is allowed.
1819 (eieio-persistent-convert-list-to-object):
1820 (eieio-persistent-validate/fix-slot-value)
1821 (eieio-persistent-slot-type-is-class-p): New functions.
1822 (eieio-named::slot-missing): Doc fix.
1823
1824 * emacs-lisp/eieio-datadebug.el (data-debug/eieio-insert-slots):
1825 Stop using unused publd variable.
1826
1827 * emacs-lisp/eieio-speedbar.el (eieio-speedbar-handle-click):
1828 (eieio-speedbar-description, eieio-speedbar-derive-line-path)
1829 (eieio-speedbar-object-buttonname, eieio-speedbar-make-tag-line)
1830 (eieio-speedbar-handle-click): Do not specify a class for the
1831 method. Fixes method invocation order problems with EDE.
1832
1833 2012-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
1834
1835 * emacs-lisp/bytecomp.el (byte-compiler-abbreviate-file): New function.
1836 (byte-compile-warning-prefix, byte-compile-file): Use it (bug#12508).
1837
1838 2012-10-01 Karl Fogel <kfogel@red-bean.com>
1839
1840 * bookmark.el (bookmark-version-control): Give tags in the
1841 :type choices (Bug#12309), and improve doc string.
1842 (bookmark-write-file): Bind `print-circle' to `t' to allow
1843 circular custom bookmark types. (Bug#12503)
1844
1845 2012-10-01 Paul Eggert <eggert@cs.ucla.edu>
1846
1847 Revert the FOLLOW-SYMLINKS change for file-attributes.
1848 * files.el (remote-file-name-inhibit-cache, after-find-file):
1849 * time.el (display-time-file-nonempty-p): Undo last change.
1850
1851 * profiler.el (profiler-sampling-interval): Change default back to 1.
1852 See Stefan Monnier in
1853 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00863.html>.
1854
1855 2012-10-01 Fabián Ezequiel Gallina <fgallina@cuca>
1856
1857 Shell output catching a la gud-gdb.
1858 * progmodes/python.el (python-shell-fetch-lines-in-progress)
1859 (python-shell-fetch-lines-string, python-shell-fetched-lines):
1860 New Vars.
1861 (python-shell-fetch-lines-filter): New function.
1862 (python-shell-send-string-no-output): Use them.
1863
1864 2012-09-30 Tomohiro Matsuyama <tomo@cx4a.org>
1865
1866 * profiler.el (profiler-sampling-interval): Rename from
1867 profiler-sample-interval.
1868 (profiler-sampling-interval): Default to 10.
1869 (profiler-find-profile): New command (was profiler-find-log).
1870 (profiler-find-profile-other-window): New command.
1871 (profiler-find-profile-other-frame): New command.
1872 (profiler-profile): Introduce API-level data structure.
1873
1874 2012-09-30 Paul Eggert <eggert@cs.ucla.edu>
1875
1876 file-attributes has a new optional arg FOLLOW-SYMLINKS.
1877 * files.el (remote-file-name-inhibit-cache):
1878 * time.el (display-time-file-nonempty-p): Use it.
1879 * files.el (after-find-file): Don't chase links before calling
1880 file-exists-p, as file-exists-p already does the right thing.
1881
1882 2012-09-30 Ralf Angeli <angeli@caeruleus.net>
1883
1884 Merge from standalone RefTeX repository.
1885
1886 The following ChangeLog entries are shortened versions of the
1887 original ones with file paths adapted. A not so strongly edited
1888 version of the original ChangeLog can be found in the commit log.
1889
1890 * textmodes/reftex-auc.el: Move `provide' call to bottom of file.
1891 (reftex-arg-cite): Use `reftex-cite-key-separator'.
1892 Correctly handle new value type returned by `reftex-citation'.
1893
1894 * textmodes/reftex-cite.el (reftex-create-bibtex-file): Make sure
1895 that entries with whitespace at various places are found.
1896 Doc fix. Include entries that are cross-referenced from cited entries.
1897 Include @String definitions in the resulting bib file. Add header
1898 and footer defined in `reftex-create-bibtex-header' and
1899 `reftex-create-bibtex-footer'.
1900 (reftex-do-citation): Make it possible again to insert
1901 non-existent entries. Save match data when asking for optional
1902 arguments. Return all keys, not just the first one.
1903 (reftex-all-used-citation-keys): Fix regexp to correctly extract
1904 all citations in the same line.
1905 (reftex-parse-bibtex-entry): Accept additional optional argument
1906 `raw' and keep quotes or braces if it is non-nil. Match fields
1907 containing hyphens besides word constituents.
1908 (reftex-get-string-refs): New function.
1909 (reftex-extract-bib-entries): Check if BibTeX file changed on disk
1910 and ask if it should be reread in case it did.
1911 (reftex-pop-to-bibtex-entry)
1912 (reftex-extract-bib-entries-from-thebibliography): Match \bibitem
1913 entries with spaces or tabs in front of arguments.
1914 (reftex-pop-to-bibtex-entry, reftex-extract-bib-entries)
1915 (reftex-parse-bibtex-entry, reftex-create-bibtex-file):
1916 Match entries containing numbers and symbol constituents.
1917 (reftex-do-citation, reftex-figure-out-cite-format):
1918 Use `reftex-cite-key-separator'.
1919
1920 * textmodes/reftex-dcr.el: Move provide statement to end of file.
1921 (reftex-mouse-view-crossref): Explain why point is set.
1922
1923 * textmodes/reftex-global.el: Whitespace changes.
1924
1925 * textmodes/reftex-index.el: Move provide statement to end of
1926 file.
1927 (reftex-index-selection-or-word): Use `reftex-region-active-p'.
1928 (reftex-index-visit-phrases-buffer): Set marker when visiting
1929 buffer. This allows for returning from the phrases file to the
1930 file one was just editing instead of the file where the last
1931 phrases was added from.
1932 (reftex-index-phrases-syntax-table): New variable. Give ?\"
1933 punctuation syntax as it usually is not used as string quote in
1934 TeX-related modes and may occur unmatched. The change also
1935 prevents fontification of quoted content.
1936 (reftex-index-phrases-mode): Use it.
1937
1938 * textmodes/reftex-parse.el (reftex-parse-from-file):
1939 Move backward one char if a `\' was matched after a section macro.
1940 (reftex-parse-from-file): Use beginning of match instead of end as
1941 bound.
1942
1943 * textmodes/reftex-ref.el: Adapt creation of
1944 `reftex-<package>-<macro>' functions to new structure of
1945 `reftex-ref-style-alist'.
1946 (reftex-reference): Use `reftex-ref-style-list' function.
1947 Adapt to new structure of `reftex-ref-style-alist'. Prompt for a
1948 reference macro if `reftex-ref-macro-prompt' is non-nil.
1949 (reftex-reference): Pass refstyle to `reftex-format-special'.
1950 Determine reference macro by looking at
1951 `reftex-ref-style-default-list' and `reftex-ref-style-alist'.
1952 Use only one special format function.
1953 (reftex-varioref-vref, reftex-fancyref-fref)
1954 (reftex-fancyref-Fref): Remove definitions. The functions are now
1955 generated from `reftex-ref-style-alist'.
1956 (reftex-format-vref, reftex-format-Fref, reftex-format-fref):
1957 Remove.
1958 (reftex-format-special): New function.
1959
1960 * textmodes/reftex-sel.el
1961 (reftex-select-cycle-ref-style-internal): Adapt to new structure
1962 of `reftex-ref-style-alist'. Remove code for testing macro type.
1963 (reftex-select-toggle-varioref)
1964 (reftex-select-toggle-fancyref): Remove.
1965 (reftex-select-cycle-ref-style-internal)
1966 (reftex-select-cycle-ref-style-forward)
1967 (reftex-select-cycle-ref-style-backward): New functions.
1968 (reftex-select-label-map): Use `v' and `V' for general cycling
1969 through reference styles. Add `p' for switching between number
1970 and page reference types.
1971
1972 * textmodes/reftex-toc.el (reftex-re-enlarge):
1973 Call `enlarge-window' only if there is something to do because in Emacs
1974 the horizontal version throws an error even if the parameter is 0.
1975
1976 * textmodes/reftex-vars.el (reftex-label-alist): Doc fix.
1977 (reftex-plug-into-AUCTeX): Doc fix.
1978 (reftex-vref-is-default, reftex-fref-is-default): Adapt doc
1979 string. Adapt to new name.
1980 (reftex-ref-style-alist): Change structure so that it is not
1981 possible to use multiple different package names within a style.
1982 Remove the symbols for symbols for macro type distinction.
1983 Add characters for macro selection.
1984 (reftex-ref-macro-prompt, reftex-create-bibtex-header)
1985 (reftex-create-bibtex-footer): New variables.
1986 (reftex-format-ref-function): Mention third argument of special
1987 format function.
1988 (reftex-ref-style-alist, reftex-ref-style-default-list):
1989 New variables.
1990 (reftex-vref-is-default, reftex-fref-is-default): Adapt doc string
1991 to new implementation. Mark as obsolete. Add compatibility code
1992 for honoring the variable values in case they are set.
1993 (reftex-cite-format-builtin, reftex-bibliography-commands):
1994 Add support for ConTeXt.
1995 (reftex-format-ref-function, reftex-format-cite-function):
1996 Fix custom type.
1997 (reftex-cite-key-separator): New variable.
1998
1999 * textmodes/reftex.el (reftex-syntax-table-for-bib)
2000 (reftex-mode): Do not derive `reftex-syntax-table-for-bib' from
2001 `reftex-syntax-table' because parens have to retain their paren
2002 syntax in order for parsing of BibTeX entries like @book(...) to
2003 work.
2004 (reftex-in-comment): Do not error out if `comment-start-skip' is
2005 not set. Deal correctly with escaped comment characters.
2006 (reftex-tie-multifile-symbols): Add doc string.
2007 Initialize `reftex-ref-style-list'.
2008 (reftex-untie-multifile-symbols): Add doc string.
2009 (reftex-add-index-macros): Doc fix.
2010 (reftex-ref-style-activate, reftex-ref-style-toggle)
2011 (reftex-ref-style-list): New functions.
2012 (reftex-mode-menu): Use them. Adapt to new structure of
2013 `reftex-ref-style-alist'.
2014 (reftex-select-with-char): Kill the RefTeX Select buffer when
2015 done.
2016 (reftex-remove-if): New function.
2017 (reftex-erase-all-selection-and-index-buffers)
2018 (reftex-mode-menu): Reference styles are now computed from
2019 `reftex-ref-style-alist'. Fix typo.
2020 (reftex-report-bug): New function.
2021 (reftex-uniquify, reftex-uniquify-by-car): Replace O(n^2)
2022 algorithms with O(n log n). Introduce optional argument SORT (not
2023 yet used).
2024
2025 2012-09-30 Fabián Ezequiel Gallina <fgallina@cuca>
2026
2027 Enhancements for triple-quote string syntax.
2028 * progmodes/python.el (python-syntax-propertize-function):
2029 Match both quote cases in one regexp.
2030 (python-syntax-stringify): Handle matches properly.
2031
2032 2012-09-30 Juri Linkov <juri@jurta.org>
2033
2034 * arc-mode.el (archive-summarize): Let-bind `buffer-file-truename'
2035 to nil around the call to `insert' to prevent
2036 directory time modification by lock_file. (Bug#2295)
2037 * tar-mode.el (tar-summarize-buffer): Idem.
2038
2039 2012-09-30 Juri Linkov <juri@jurta.org>
2040
2041 * facemenu.el (list-colors-sort): Add option "Luminance".
2042 (list-colors-sort-key): Implement it.
2043
2044 * vc/diff-mode.el (diff-refine-removed):
2045 * vc/ediff-init.el (ediff-fine-diff-A):
2046 * vc/smerge-mode.el (smerge-refined-removed):
2047 Change background color "#ffaaaa" to "#ffbbbb". (Bug#10181)
2048
2049 2012-09-30 Jan Djärv <jan.h.d@swipnet.se>
2050
2051 * term/ns-win.el (x-file-dialog): New function.
2052
2053 2012-09-30 Juanma Barranquero <lekktu@gmail.com>
2054
2055 * ido.el (ido-max-directory-size): Default to nil; the current
2056 default is small for POSIX systems, and impractical on Windows 7
2057 now that lstat returns directory sizes for NTFS.
2058
2059 2012-09-30 Martin Rudalics <rudalics@gmx.at>
2060
2061 In buffer display functions handle window-height/window-width
2062 alist entries. Suggested by Juri Linkov as fix for Bug#1806.
2063 * window.el (window--display-buffer): New argument ALIST.
2064 Obey window-height and window-width alist entries.
2065 (window--try-to-split-window): New argument ALIST.
2066 Bind window-combination-limit to t when the window's size shall be
2067 changed and window-combination-limit equals `window-size'.
2068 (display-buffer-in-atom-window)
2069 (display-buffer-in-major-side-window)
2070 (display-buffer-in-side-window, display-buffer-same-window)
2071 (display-buffer-reuse-window, display-buffer-pop-up-frame)
2072 (display-buffer-pop-up-window, display-buffer-below-selected)
2073 (display-buffer-at-bottom, display-buffer-in-previous-window)
2074 (display-buffer-use-some-window): Adjust all callers of
2075 window--display-buffer and window--try-to-split-window.
2076 (fit-frame-to-buffer): New option.
2077 (fit-window-to-buffer): Can resize frames if fit-frame-to-buffer
2078 is non-nil.
2079 (display-buffer-in-major-side-window): Evaluate window-height /
2080 window-width alist entries.
2081
2082 * help.el (temp-buffer-resize-frames)
2083 (temp-buffer-resize-regexps): Remove options.
2084 (temp-buffer-resize-mode): Adjust doc-string.
2085 (resize-temp-buffer-window): Don't consult
2086 temp-buffer-resize-regexps. Use fit-frame-to-buffer instead of
2087 temp-buffer-resize-frames.
2088
2089 * dired.el (dired-mark-pop-up):
2090 Call display-buffer-below-selected with a fit-window-to-buffer alist
2091 entry.
2092
2093 2012-09-30 Chong Yidong <cyd@gnu.org>
2094
2095 * server.el (server-host): Document the security implications.
2096 (server-auth-key): Doc fix.
2097
2098 * startup.el (initial-buffer-choice): Doc fix.
2099
2100 * minibuffer.el (minibuffer-local-filename-syntax): Doc fix.
2101
2102 * simple.el (delete-trailing-whitespace): Avoid an unnecessary
2103 restriction change.
2104
2105 * bindings.el (goto-map): Bind M-g TAB to move-to-column.
2106
2107 * help-fns.el (help-fns--obsolete): Fix last change.
2108
2109 2012-09-30 Stefan Monnier <monnier@iro.umontreal.ca>
2110
2111 * winner.el (winner-mode-map): Obey winner-dont-bind-my-keys here.
2112 (minor-mode-map-alist): Remove redundant code.
2113
2114 * vc/pcvs.el (cvs-cleanup-collection): Keep entries that are currently
2115 visited in a buffer.
2116 (cvs-insert-visited-file): New function.
2117 (find-file-hook): Use it.
2118
2119 * vc/pcvs-info.el (cvs-fileinfo-pp): Don't use non-existent faces.
2120
2121 * vc/log-edit.el (log-edit-font-lock-keywords): Ignore case to
2122 chose face.
2123 (log-edit-empty-buffer-p): Don't require a space after a header.
2124
2125 * vc/ediff-util.el (ediff-diff-at-point): Don't assume point-min==1.
2126
2127 * tutorial.el (help-with-tutorial): Use minibuffer-with-setup-hook.
2128
2129 * textmodes/text-mode.el (paragraph-indent-minor-mode): Make it
2130 a proper minor-mode.
2131
2132 * textmodes/tex-mode.el (tex-mode-map): Don't bind paren keys.
2133
2134 2012-09-29 Glenn Morris <rgm@gnu.org>
2135
2136 * winner.el (winner-mode): Remove variable (let define-minor-mode
2137 handle it).
2138 (winner-dont-bind-my-keys, winner-boring-buffers, winner-mode-hook):
2139 Doc fixes.
2140 (winner-mode-leave-hook): Rename to winner-mode-off-hook.
2141 (winner-mode): Use define-minor-mode.
2142
2143 * vc/vc-sccs.el (vc-sccs-registered): Use the progn trick to get
2144 the full definition in loaddefs, rather than duplicating it.
2145
2146 * help-macro.el (three-step-help): No need to autoload defcustom.
2147
2148 * progmodes/inf-lisp.el (inferior-lisp-filter-regexp)
2149 (inferior-lisp-program, inferior-lisp-load-command)
2150 (inferior-lisp-prompt, inferior-lisp-mode-hook):
2151 No need to autoload defcustoms.
2152
2153 * hippie-exp.el (hippie-expand-try-functions-list)
2154 (hippie-expand-verbose, hippie-expand-dabbrev-skip-space)
2155 (hippie-expand-dabbrev-as-symbol, hippie-expand-no-restriction)
2156 (hippie-expand-max-buffers, hippie-expand-ignore-buffers)
2157 (hippie-expand-only-buffers): No need to autoload defcustoms.
2158 * progmodes/vhdl-mode.el (vhdl-line-expand):
2159 Explicitly load hippie-exp, so it does not get autoloaded
2160 while hippie-expand-try-functions-list is let-bound.
2161
2162 2012-09-28 Glenn Morris <rgm@gnu.org>
2163
2164 * emacs-lisp/cl.el (flet): Fix case of obsolescence message.
2165
2166 * emacs-lisp/bytecomp.el (byte-compile-cl-file-p):
2167 Only "cl.el" counts as cl these days.
2168
2169 2012-09-28 Juri Linkov <juri@jurta.org>
2170
2171 Display archive errors in the echo area instead of inserting
2172 to the file buffer.
2173
2174 * arc-mode.el (archive-extract-by-stdout): Change arg STDERR-FILE
2175 to STDERR-TEST that can be a regexp matching a successful output.
2176 Create a temporary file and redirect stderr to it. Search for
2177 STDERR-TEST in the stderr output and display it in the echo area
2178 if no match is found.
2179 (archive-extract-by-file): New function like
2180 `archive-extract-by-stdout' but extracting archives to files
2181 and looking for successful matches in stdout. Function body is
2182 mostly copied from `archive-rar-extract'.
2183 (archive-rar-extract): Use `archive-extract-by-file'.
2184 (archive-7z-extract): Use `archive-extract-by-stdout'. (Bug#10347)
2185
2186 2012-09-28 Leo Liu <sdl.web@gmail.com>
2187
2188 * pcomplete.el (pcomplete-show-completions):
2189 Use minibuffer-message to make pcomplete usable in minibuffer.
2190
2191 * ido.el (ido-set-matches-1): Fix 2012-09-11 change.
2192
2193 2012-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
2194
2195 * type-break.el: Use lexical-binding.
2196 (type-break-mode): Use define-minor-mode.
2197
2198 * emacs-lisp/pcase.el (pcase--mark-used): New.
2199 (pcase--u1): Use it (bug#12512).
2200
2201 * custom.el (load-theme): Set buffer-file-name so the load is recorded
2202 in load-history with the right file name.
2203
2204 2012-09-28 Tassilo Horn <tsdh@gnu.org>
2205
2206 * doc-view.el (doc-view-current-cache-doc-pdf): New function.
2207 (doc-view-doc->txt, doc-view-convert-current-doc): Use it.
2208 (doc-view-get-bounding-box): Make bounding box slicing work for
2209 ODF and DVI documents.
2210
2211 2012-09-28 Glenn Morris <rgm@gnu.org>
2212
2213 * type-break.el (type-break-mode, type-break-interval)
2214 (type-break-good-rest-interval, type-break-keystroke-threshold):
2215 No need to autoload.
2216 (type-break-good-rest-interval, type-break-keystroke-threshold):
2217 Add :set-after.
2218
2219 2012-09-28 Chong Yidong <cyd@gnu.org>
2220
2221 * progmodes/verilog-mode.el (verilog-auto-inst-interfaced-ports):
2222 Add :version tag.
2223
2224 2012-09-27 Stefan Monnier <monnier@iro.umontreal.ca>
2225
2226 * json.el (json-encode-char): Codes 127-160 aren't "ASCII printable".
2227
2228 2012-09-27 Glenn Morris <rgm@gnu.org>
2229
2230 * faces.el (x-display-name): Declare (for without-x builds).
2231
2232 * linum.el (linum-format): Don't autoload it. Improve :type.
2233
2234 * progmodes/tcl.el: Don't require outline when compiling.
2235 (outline-regexp, outline-level): Declare.
2236 * textmodes/sgml-mode.el: Don't require outline when compiling.
2237 (outline-regexp, outline-heading-end-regexp, outline-level): Declare.
2238
2239 * term.el (term-ansi-reset):
2240 Try setting term-ansi-face-already-done to nil. (Bug#11785)
2241
2242 * vc/vc.el (vc-next-action): Only gripe about committing read-only
2243 files for RCS and SCCS. (Bug#9781)
2244
2245 2012-09-27 Chong Yidong <cyd@gnu.org>
2246
2247 * progmodes/verilog-mode.el (verilog-mode-release-emacs): Fix last
2248 change; value should be t.
2249
2250 2012-09-27 Stefan Monnier <monnier@iro.umontreal.ca>
2251
2252 * image-mode.el: Use lexical-binding.
2253 (image-mode-winprops): Use t to stand for the window of
2254 a buffer that's not displayed.
2255 * doc-view.el (doc-view-new-window-function): Handle the new
2256 t in winprops.
2257 (doc-view-enlarge): Make it a real nop if the size is not changed.
2258 (doc-view-display): Handle the case where the buffer is not (yet?)
2259 displayed in any window.
2260 (doc-view-saved-settings): New var.
2261 (doc-view-mode): Use it.
2262 (doc-view-fallback-mode): Set it.
2263
2264 * minibuf-eldef.el: Make it possible to replace (default ...) with [...].
2265 Set lexical-binding.
2266 (minibuffer-eldef-shorten-default): New var.
2267 (minibuffer-default-in-prompt-regexps): Use it for new default.
2268 (minibuf-eldef-setup-minibuffer): Add replacement functionality.
2269
2270 2012-09-26 Juanma Barranquero <lekktu@gmail.com>
2271
2272 * international/uni-bidi.el:
2273 * international/uni-category.el:
2274 * international/uni-name.el:
2275 * international/uni-numeric.el: Regenerate.
2276
2277 2012-09-26 Tomohiro Matsuyama <tomo@cx4a.org>
2278 Stefan Monnier <monnier@iro.umontreal.ca>
2279
2280 * profiler.el: New file.
2281
2282 2012-09-26 Stefan Monnier <monnier@iro.umontreal.ca>
2283
2284 * emacs-lisp/testcover.el (testcover-after): Add gv-expander.
2285 (testcover-reinstrument): Simplify with CSE.
2286
2287 2012-09-26 Juanma Barranquero <lekktu@gmail.com>
2288
2289 * window.el (temp-buffer-window-setup): Fix typo in docstring.
2290
2291 2012-09-25 Wilson Snyder <wsnyder@wsnyder.org>
2292
2293 * verilog-mode.el (verilog-auto-ascii-enum, verilog-auto-inout)
2294 (verilog-auto-input, verilog-auto-insert-lisp)
2295 (verilog-auto-output, verilog-auto-output-every, verilog-auto-reg)
2296 (verilog-auto-reg-input, verilog-auto-tieoff, verilog-auto-undef)
2297 (verilog-auto-unused, verilog-auto-wire)
2298 (verilog-forward-or-insert-line): Fix AUTOs with no trailing
2299 newline. Reported by Andrew Jones.
2300 (verilog-auto-inst) Support expanding $clog2 in AUTOINST.
2301 Reported by Brad Dobbie.
2302 (verilog-batch-delete-trailing-whitespace):
2303 Create verilog-batch-delete-trailing-whitespace.
2304 Reported by Brad Dobbie.
2305 (verilog-auto-inout-param): Support AUTOINOUTPARAM for copying
2306 parameters from another module. Reported by Dan Katz.
2307 (verilog-auto, verilog-auto-assign-modport)
2308 (verilog-auto-inout-modport): Add AUTOASSIGNMODPORT and
2309 AUTOINOUTMODPORT for UVM interface module shell generation.
2310 Reported by Brad Dobbie.
2311 (verilog-auto-inst-interfaced-ports): Make default nil, as more
2312 standard behavior.
2313 (verilog-auto): Fix AUTO parameters with parenthesis arguments.
2314 Reported by Matt Martin.
2315
2316 2012-09-25 Martin Rudalics <rudalics@gmx.at>
2317
2318 * window.el (window--resize-child-windows): When resizing child
2319 windows proportionally, process them in reverse order to
2320 preserve the "when splitting a window the new one gets the odd
2321 line" behavior.
2322 (window--resize-root-window-vertically): When resizing the
2323 minibuffer window try to affect only windows at the bottom of the
2324 frame. (Bug#12419)
2325
2326 2012-09-25 Chong Yidong <cyd@gnu.org>
2327
2328 * subr.el (declare): Doc fix.
2329
2330 * help-fns.el (help-fns--obsolete): Handle macros properly.
2331
2332 2012-09-25 Chong Yidong <cyd@gnu.org>
2333
2334 * bookmark.el (bookmark-jump-noselect): Use a declare form to mark
2335 this function obsolete.
2336
2337 * calendar/cal-x.el (calendar-two-frame-setup)
2338 (calendar-only-one-frame-setup, calendar-one-frame-setup):
2339 * calendar/calendar.el (american-calendar, european-calendar)
2340 (calendar-for-loop):
2341 * comint.el (comint-dynamic-simple-complete)
2342 (comint-dynamic-complete-as-filename, comint-unquote-filename):
2343 * desktop.el (desktop-load-default):
2344 * dired-x.el (dired-omit-here-always)
2345 (dired-hack-local-variables, dired-default-directory):
2346 * emacs-lisp/derived.el (derived-mode-class):
2347 * emacs-lisp/timer.el (timer-set-time-with-usecs):
2348 * emacs-lock.el (toggle-emacs-lock):
2349 * epa.el (epa-display-verify-result):
2350 * epg.el (epg-sign-keys, epg-start-sign-keys)
2351 (epg-passphrase-callback-function):
2352 * eshell/esh-util.el (eshell-for):
2353 * eshell/eshell.el (eshell-remove-from-window-buffer-names)
2354 (eshell-add-to-window-buffer-names):
2355 * files.el (locate-file-completion):
2356 * imenu.el (imenu-example--create-c-index)
2357 (imenu-example--create-lisp-index)
2358 (imenu-example--lisp-extract-index-name)
2359 (imenu-example--name-and-position):
2360 * international/mule-cmds.el (princ-list):
2361 * international/mule-diag.el (decode-codepage-char):
2362 * international/mule-util.el (detect-coding-with-priority):
2363 * iswitchb.el (iswitchb-read-buffer):
2364 * mail/mailalias.el (mail-complete):
2365 * mail/sendmail.el (mail-sent-via):
2366 * mouse.el (mouse-popup-menubar-stuff, mouse-popup-menubar)
2367 (mouse-major-mode-menu):
2368 * password-cache.el (password-read-and-add):
2369 * pcomplete.el (pcomplete-parse-comint-arguments):
2370 * progmodes/sh-script.el (sh-maybe-here-document):
2371 * replace.el (query-replace-regexp-eval):
2372 * savehist.el (savehist-load):
2373 * simple.el (choose-completion-delete-max-match):
2374 * term.el (term-dynamic-simple-complete):
2375 * vc/ediff-init.el (ediff-check-version):
2376 * vc/ediff-wind.el (ediff-choose-window-setup-function-automatically):
2377 * vc/vc.el (vc-diff-switches-list):
2378 * view.el (view-return-to-alist-update): Likewise.
2379
2380 * subr.el (eval-next-after-load, makehash, insert-string)
2381 (assoc-ignore-representation, assoc-ignore-case): Use declare to
2382 mark obsolete.
2383 (mode-line-inverse-video): Variable deleted.
2384
2385 * international/mule-util.el (string-to-sequence): Remove.
2386
2387 * calendar/calendar.el (calendar-version):
2388 * calendar/icalendar.el (icalendar-extract-ical-from-buffer)
2389 (icalendar-convert-diary-to-ical):
2390 * cus-edit.el (custom-mode):
2391 * ansi-color.el (ansi-color-unfontify-region):
2392 * international/latin1-disp.el (latin1-char-displayable-p):
2393 * progmodes/cwarn.el (turn-on-cwarn-mode):
2394 * progmodes/which-func.el (which-func-update-1):
2395 Use define-obsolete-function-alias.
2396
2397 * net/newst-backend.el (newsticker-cache-filename):
2398 * net/newst-treeview.el (newsticker-groups-filename):
2399 Fix incorrect obsolescence declaration.
2400
2401 * allout.el (allout-passphrase-hint-string): Likewise.
2402 (allout-init): Use a declare form to mark obsolete.
2403
2404 * emacs-lisp/byte-run.el (make-obsolete): Doc fix; emphasize that
2405 this applies to functions.
2406
2407 * iswitchb.el (iswitchb-read-buffer): Move code of
2408 iswitchb-define-mode-map here, and delete that obsolete function.
2409
2410 * net/snmp-mode.el (snmp-font-lock-keywords-3): Don't use obsolete
2411 font-lock-reference-face.
2412
2413 2012-09-25 Glenn Morris <rgm@gnu.org>
2414
2415 * buff-menu.el (Buffer-menu-name-width, Buffer-menu-size-width):
2416 Doc fixes.
2417
2418 * eshell/em-term.el (eshell-term-name):
2419 Default to term-term-name. (Bug#12485)
2420
2421 2012-09-24 Fabián Ezequiel Gallina <fgallina@cuca>
2422
2423 * progmodes/python.el (python-shell-send-buffer): Better handling
2424 of "if __name__ == '__main__':" conditionals when sending the buffer.
2425
2426 2012-09-24 Glenn Morris <rgm@gnu.org>
2427
2428 * eshell/esh-cmd.el (eshell-find-alias-function):
2429 Tighten up file-name regexp. (Bug#12499)
2430
2431 2012-09-24 Fabián Ezequiel Gallina <fgallina@cuca>
2432
2433 Enhancements for triple-quote string syntax.
2434 * progmodes/python.el (python-quote-syntax): Remove.
2435 (python-syntax-propertize-function): New value.
2436 (python-syntax-count-quotes, python-syntax-stringify):
2437 New functions.
2438
2439 2012-09-24 Chong Yidong <cyd@gnu.org>
2440
2441 * mail/supercite.el (sc-version): Remove obsolete function.
2442 (sc-describe): Don't mark as obsolete, since it is bound.
2443 (sc-submit-bug-report): Remove.
2444
2445 * vc/log-edit.el (cvs-changelog-full-paragraphs)
2446 (cvs-commit-buffer-require-final-newline): Remove.
2447 (log-edit-require-final-newline)
2448 (log-edit-changelog-full-paragraphs): Default to t.
2449
2450 * vc/pcvs-defs.el (cvs-diff-buffer-name, cvs-diff-ignore-marks)
2451 * vc/vc-hooks.el (vc-ignore-vc-files, vc-master-templates)
2452 * vc/vc.el (vc-checkout-carefully): Likewise.
2453
2454 * vc/emerge.el (emerge-mode): Make it an obsolete alias.
2455 (emerge-version): Remove.
2456
2457 * progmodes/compile.el (compile-internal): Remove.
2458 (compilation-parse-errors-function): Fix typo.
2459
2460 * international/mule.el (set-char-table-default): Remove.
2461 (set-coding-priority, make-coding-system, generic-char-p)
2462 (charset-list, charset-bytes, charset-id): Use declare to mark
2463 functions as obsolete.
2464
2465 * vc/pcvs-defs.el (cvs-buffer-name-alist)
2466 (cvs-invert-ignore-marks): Remove references to obsolete vars.
2467 * vc/vc-hooks.el (vc-default-registered): Don't use
2468 vc-master-templates.
2469
2470 * font-lock.el (font-lock-reference-face):
2471 Use define-obsolete-variable-alias.
2472
2473 * generic-x.el (rul-generic-mode): Use font-lock-constant-face.
2474 * calendar/calendar.el (calendar-font-lock-keywords):
2475 * calendar/diary-lib.el (diary-font-lock-keywords)
2476 (diary-fancy-font-lock-keywords):
2477 * textmodes/reftex-sel.el (reftex-insert-docstruct):
2478 * textmodes/reftex-index.el (reftex-insert-index):
2479 * textmodes/reftex-cite.el (reftex-format-bib-entry):
2480 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
2481 * progmodes/ps-mode.el (ps-mode-font-lock-keywords-1):
2482 * progmodes/prolog.el (prolog-font-lock-keywords):
2483 * progmodes/idlwave.el (idlwave-idl-keywords):
2484 * progmodes/ada-mode.el (ada-font-lock-keywords):
2485 * net/snmp-mode.el (snmp-font-lock-keywords-3): Likewise.
2486
2487 2012-09-24 Glenn Morris <rgm@gnu.org>
2488
2489 * mail/emacsbug.el (report-emacs-bug): Include `lsb_release -d'.
2490
2491 2012-09-23 Fabián Ezequiel Gallina <fgallina@cuca>
2492
2493 * progmodes/python.el (python-indent-line): More consistent cursor
2494 movement behavior.
2495
2496 2012-09-23 Stefan Merten <smerten@oekonux.de>
2497
2498 * textmodes/rst.el: Fix compiler warning.
2499
2500 2012-09-23 Roland Winkler <winkler@gnu.org>
2501
2502 * textmodes/bibtex.el (bibtex-autokey-transcriptions):
2503 Transcribe also LaTeX hyphenation.
2504 (bibtex-reformat): Bug fix. Do not quote twice the elements of
2505 bibtex-reformat-previous-options.
2506
2507 2012-09-23 Roland Winkler <winkler@gnu.org>
2508
2509 * proced.el (proced-renice-command): New variable.
2510 (proced-marked-processes): New function.
2511 (proced-with-processes-buffer): New macro.
2512 (proced-send-signal): Use them.
2513 (proced-renice): New command bound to r.
2514
2515 2012-09-23 Roland Winkler <winkler@gnu.org>
2516
2517 * ibuf-ext.el (ibuffer-switch-to-saved-filter-groups): If list
2518 ibuffer-saved-filter-groups has one element, shortcut the call of
2519 completing-read. (Bug#12331)
2520
2521 2012-09-23 Chong Yidong <cyd@gnu.org>
2522
2523 * bindings.el (mode-line-toggle-read-only):
2524 * bs.el (bs-toggle-readonly):
2525 * buff-menu.el (Buffer-menu-toggle-read-only):
2526 * dired.el (dired-toggle-read-only):
2527 * ibuffer.el (ibuffer-do-toggle-read-only): Use read-only-mode.
2528
2529 2012-09-23 Chong Yidong <cyd@gnu.org>
2530
2531 * image.el (image-type-available-p): Adapt to init-image-library
2532 argument changes.
2533
2534 2012-09-22 Juri Linkov <juri@jurta.org>
2535
2536 * dired.el (dired-mode-map): Add [remap read-only-mode] for
2537 `dired-toggle-read-only'. (Bug#12462)
2538
2539 2012-09-22 Martin Rudalics <rudalics@gmx.at>
2540
2541 * subr.el (temp-output-buffer-show): New function.
2542 (with-output-to-temp-buffer): Call temp-output-buffer-show
2543 instead of internal-temp-output-buffer-show.
2544
2545 2012-09-22 Chong Yidong <cyd@gnu.org>
2546
2547 * files.el (ctl-x-map): Bind C-x C-q to read-only-mode
2548 (Bug#12462).
2549
2550 * repeat.el (repeat): Doc fix (Bug#12348).
2551
2552 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix
2553 (Bug#10909).
2554
2555 * simple.el (shell-command-on-region): Doc fix.
2556 (read-only-mode): Doc fix.
2557
2558 2012-09-22 Eli Zaretskii <eliz@gnu.org>
2559
2560 * emacs-lisp/timer.el (run-with-idle-timer)
2561 (timer-activate-when-idle): Warn against reinvoking an idle timer
2562 from within its own timer action. (Bug#12447)
2563
2564 2012-09-22 Martin Rudalics <rudalics@gmx.at>
2565
2566 * cus-start.el (window-combination-limit): Add new optional
2567 values.
2568 * window.el (temp-buffer-window-show)
2569 (window--try-to-split-window): Handle new values of
2570 window-combination-limit (Bug#1806).
2571 (split-window): Test window-combination-limit for t instead of
2572 non-nil.
2573 (display-buffer-at-bottom): New buffer display action function.
2574 * help.el (temp-buffer-resize-regexps): New option.
2575 (temp-buffer-resize-mode): Rewrite doc-string.
2576 (resize-temp-buffer-window): Obey temp-buffer-resize-regexps.
2577 Don't resize reused window. Suggested by Glenn Morris.
2578
2579 2012-09-22 Stefan Merten <smerten@oekonux.de>
2580
2581 * textmodes/rst.el: Revamp section title faces.
2582 (rst-official-version)
2583 (rst-package-emacs-version-alist): Sync with official version
2584 V1.4.0.
2585 (rst-faces-defaults, rst-set-level-default)
2586 (rst-level-face-max, rst-level-face-base-color)
2587 (rst-level-face-base-light, rst-level-face-format-light)
2588 (rst-level-face-step-light, rst-define-level-faces): Obsolete.
2589 (rst-adornment-faces-alist): Match new setup.
2590 (rst-level-1, rst-level-2, rst-level-3, rst-level-4)
2591 (rst-level-5, rst-level-6): New faces.
2592
2593 2012-09-22 Chong Yidong <cyd@gnu.org>
2594
2595 * simple.el (undo): Handle indirect buffers (Bug#8207).
2596
2597 2012-09-21 Leo Liu <sdl.web@gmail.com>
2598
2599 IDO: Disable match re-ordering for buffer switching.
2600 * ido.el (ido-buffer-disable-smart-matches): New variable.
2601 (ido-set-matches-1): Use it. (Bug#2042)
2602
2603 2012-09-21 Jose Marino <marinoj@nso.edu> (tiny change)
2604
2605 * progmodes/idlw-shell.el (idlwave-shell-complete-filename):
2606 Fix 2011-05-17 change. (Bug#12418)
2607
2608 2012-09-21 Leo Liu <sdl.web@gmail.com>
2609
2610 * subr.el (ignore-errors): Mention with-demoted-errors in doc-string.
2611
2612 2012-09-21 Glenn Morris <rgm@gnu.org>
2613
2614 * emacs-lisp/shadow.el (load-path-shadows-font-lock-keywords):
2615 Be more robust about locating simple.el.
2616
2617 2012-09-21 Glenn Morris <rgm@gnu.org>
2618
2619 * mail/emacsbug.el (report-emacs-bug): Trap load-path-shadows errors.
2620
2621 2012-09-21 Joel Bion <jpbion@westvi.com> (tiny change)
2622
2623 * pcmpl-gnu.el (pcmpl-gnu-tarfile-regexp): Add tar.xz. (Bug#12382)
2624
2625 2012-09-20 Juri Linkov <juri@jurta.org>
2626
2627 * replace.el (query-replace-read-from): Use `read-regexp' instead
2628 of `read-from-minibuffer' when `regexp-flag' is non-nil.
2629 (occur-read-primary-args): Use `read-regexp' instead of
2630 `read-string'.
2631 (multi-occur-in-matching-buffers): Use `read-regexp' instead of
2632 `read-from-minibuffer'.
2633 * isearch.el (isearch-occur): Use `read-regexp' instead of
2634 `read-string'.
2635 * dired.el (dired-read-regexp): Use `read-regexp' instead of
2636 `read-from-minibuffer'.
2637 * progmodes/grep.el (grep-read-regexp): Use `read-regexp' instead
2638 of `read-string'. (Bug#7567)
2639
2640 * replace.el (read-regexp): Rename DEFAULT-VALUE arg to DEFAULTS
2641 and allow accepting a list of strings prepended to a list of
2642 standard default values. Doc fix. (Bug#12321)
2643
2644 * replace.el (read-regexp): Add HISTORY arg. (Bug#7567)
2645
2646 * replace.el (read-regexp): Don't add ": " when PROMPT already
2647 ends with a colon and space. (Bug#12321)
2648
2649 2012-09-20 Tassilo Horn <tsdh@gnu.org>
2650
2651 * doc-view.el (doc-view-display): Better fix for the cl-assertion
2652 error.
2653
2654 2012-09-20 Stefan Merten <smerten@oekonux.de>
2655
2656 * textmodes/rst.el: Integrate support for `imenu' and `which-function'.
2657 Fixes feature request bug#11711.
2658 (rst-mode): Create `imenu-create-index-function'.
2659 (rst-get-stripped-line): Delete after refactoring.
2660 (rst-section-tree, rst-section-tree-rec)
2661 (rst-section-tree-point): Refactor and document properly.
2662 (rst-imenu-find-adornments-for-position)
2663 (rst-imenu-convert-cell, rst-imenu-create-index):
2664 New function.
2665
2666 2012-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
2667
2668 * emacs-lisp/macroexp.el (macroexp--obsolete-warning): New function.
2669 (macroexp--expand-all): Use it.
2670 (macroexp--funcall-and-return): Remove by folding it into its sole
2671 caller (macroexp--warn-and-return).
2672 * emacs-lisp/bytecomp.el (byte-compile-warn-obsolete):
2673 Use macroexp--obsolete-warning.
2674
2675 * calc/calc.el: Fix last change by removing the whole chunk, since it
2676 was only needed back when Calc was not bundled.
2677
2678 2012-09-20 Martin Rudalics <rudalics@gmx.at>
2679
2680 * emacs-lisp/debug.el (debug): Restore assignment to
2681 debugger-old-buffer removed on 2012-09-08.
2682
2683 2012-09-20 Juri Linkov <juri@jurta.org>
2684
2685 * dired-aux.el (dired-diff): Remove (require 'diff) since
2686 `diff-latest-backup-file' is now autoloaded.
2687
2688 2012-09-20 Chong Yidong <cyd@gnu.org>
2689
2690 * vc/diff.el (diff-latest-backup-file): Autoload.
2691
2692 2012-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
2693
2694 * calc/calc.el: Remove redundant autoload shape check.
2695 (sel-mode): Don't defvar.
2696 (calc-get-stack-element): Add `sel-mode' arg instead.
2697 (calc-top, calc-top-list): Pass it this additional argument.
2698 * calc/calc-store.el (calc-store-map):
2699 * calc/calc-map.el (calc-apply, calc-reduce, calc-map)
2700 (calc-map-equation, calc-outer-product, calc-inner-product):
2701 * calc/calc-aent.el (calc-alg-entry): Don't bind sel-mode.
2702
2703 * emacs-lisp/macroexp.el (macroexp--expand-all): Fix last change.
2704
2705 2012-09-19 Juri Linkov <juri@jurta.org>
2706
2707 * dired-aux.el (dired-diff): Add (require 'diff) because
2708 `diff-latest-backup-file' is not autoloaded.
2709 (dired-do-chxxx, dired-do-chmod): Set `no-error-if-not-filep' arg
2710 of `dired-get-filename' to t to not report error when there is
2711 no default file on the current line.
2712
2713 2012-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
2714
2715 * emacs-lisp/macroexp.el (macroexp--funcall-if-compiled): Rename from
2716 macroexp--eval-if-compile.
2717 (macroexp--funcall-and-return, macroexp--warn-and-return): New funs.
2718 (macroexp--expand-all): Use them (bug#12371).
2719
2720 * doc-view.el (doc-view-guess-paper-size)
2721 (doc-view-scale-bounding-box): Fix unbound `caddr'.
2722
2723 2012-09-19 Tassilo Horn <tsdh@gnu.org>
2724
2725 New feature: set optimal slice from BoundingBox information.
2726 * doc-view.el (doc-view-mode-map): Add keybinding.
2727 (doc-view-menu): Add menu entry.
2728 (doc-view-set-slice): Adapt docstring.
2729 (doc-view-get-bounding-box, doc-view-guess-paper-size)
2730 (doc-view-scale-bounding-box)
2731 (doc-view-set-slice-from-bounding-box): New functions.
2732 (doc-view-paper-sizes): New defvar.
2733
2734 2012-09-19 Glenn Morris <rgm@gnu.org>
2735
2736 * emacs-lisp/macroexp.el (byte-compile-warn-obsolete)
2737 (byte-compile-log-warning): Autoload. (Bug#12371)
2738
2739 * calendar/calendar.el (calendar-american-month-header)
2740 (calendar-european-month-header, calendar-iso-month-header)
2741 (calendar-month-header): New options.
2742 (calendar-set-date-style): Set calendar-month-header. Redraw calendar.
2743 (calendar-generate-month): Use calendar-month-header. (Bug#9510)
2744
2745 2012-09-19 Jan Djärv <jan.h.d@swipnet.se>
2746
2747 * startup.el (command-line-ns-option-alist): Add -g and --geometry.
2748
2749 2012-09-18 Juri Linkov <juri@jurta.org>
2750
2751 * dired-aux.el (dired-diff): Restore original functionality of
2752 getting the default value, but keep new feature of using the
2753 latest existing backup file (`diff-latest-backup-file').
2754
2755 2012-09-18 Juri Linkov <juri@jurta.org>
2756
2757 * dired.el (dired-mark): If the region is active in Transient Mark
2758 mode, mark all files in the active region. Doc fix.
2759 (dired-unmark, dired-flag-file-deletion, dired-unmark-backward):
2760 Doc fix. (Bug#10624)
2761
2762 2012-09-18 Juri Linkov <juri@jurta.org>
2763
2764 * dired-aux.el (dired-do-chxxx, dired-do-chmod): Default file
2765 attributes for M-n are pulled from the file at point.
2766 (dired-do-chgrp, dired-do-chown, dired-do-touch): Doc fix.
2767 Suggested by Drew Adams. (Bug#10624)
2768
2769 2012-09-18 Dmitry Gutov <dgutov@yandex.ru>
2770
2771 * progmodes/ruby-mode.el (ruby-brace-to-do-end): Don't add extra
2772 whitespace after "end".
2773 (ruby-do-end-to-brace): Collapse block to one line if it fits
2774 within fill-column.
2775
2776 2012-09-18 Martin Rudalics <rudalics@gmx.at>
2777
2778 * emacs-lisp/debug.el (debugger-bury-or-kill): Fix customization
2779 value.
2780 (debug): Don't remove debugger window when debugger is expected
2781 to be back.
2782
2783 2012-09-18 Chong Yidong <cyd@gnu.org>
2784
2785 * custom.el (defface): Doc fix.
2786
2787 * cus-edit.el (custom-unlispify-remove-prefixes): Add warning.
2788
2789 2012-09-18 Martin Blais <blais@furius.ca> (tiny change)
2790
2791 * progmodes/compile.el (compilation-start): Use compilation-always-kill
2792 to initialize query-on-exit; then test that instead (bug#12288).
2793
2794 2012-09-17 Stefan Merten <smerten@oekonux.de>
2795
2796 * textmodes/rst.el: Add support for `testcover'.
2797 (rst-defcustom-testcover, rst-testcover-add-compose)
2798 (rst-testcover-add-1value): New functions.
2799 (rst-portable-mark-active-p): Replace by `use-region-p'.
2800 (rst-update-section, rst-classify-adornment)
2801 (rst-find-title-line): Mark `1value' forms.
2802 (rst-classify-adornment): Remove superfluous form.
2803 (rst-update-section, rst-get-adornments-around)
2804 (rst-adornment-complete-p, rst-get-next-adornment)
2805 (rst-adjust, rst-promote-region)
2806 (rst-display-adornments-hierarchy, rst-straighten-adornments)
2807 (rst-find-pfx-in-region, rst-section-tree-rec)
2808 (rst-section-tree-point, rst-toc-insert, rst-toc-insert-node)
2809 (rst-toc-node, rst-toc, rst-forward-section)
2810 (rst-iterate-leftmost-paragraphs)
2811 (rst-iterate-leftmost-paragraphs-2, rst-enumerate-region)
2812 (rst-bullet-list-region)
2813 (rst-convert-bullets-to-enumeration, rst-font-lock-keywords)
2814 (rst-compile-find-conf, rst-compile)
2815 (rst-repeat-last-character): Fix style.
2816
2817 2012-09-17 Chong Yidong <cyd@gnu.org>
2818
2819 * comint.el (comint--complete-file-name-data): Don't add a space
2820 if the status is `sole'; that adds a gratuitous space in the
2821 completion-cycling case (Bug#12092).
2822
2823 * pcomplete.el (pcomplete-completions-at-point): Likewise.
2824
2825 2012-09-17 Richard Stallman <rms@gnu.org>
2826
2827 * mail/rmailmm.el (rmail-mime-toggle-raw): Do rmail-mime-insert
2828 only in the mime-shown mode, not in raw mode.
2829 (rmail-mime): Toggle off mime by displaying the message without
2830 mime processing. (Bug#12305)
2831
2832 * mail/rmail.el (rmail-retry-failure):
2833 Turn off mime processing first. (Bug#12037)
2834
2835 * epa-mail.el (epa-mail-encrypt): Fix bug when a name has no key.
2836
2837 2012-09-17 Chong Yidong <cyd@gnu.org>
2838
2839 * shell.el (shell-file-name-chars, shell-file-name-quote-list)
2840 (shell-dynamic-complete-functions): Convert to defcustom.
2841 (shell-prompt-pattern, shell-completion-fignore): Doc fix.
2842
2843 * bookmark.el (bookmark-bmenu-toggle-filenames): Doc fixes.
2844 * comint.el (comint-prompt-read-only):
2845 * custom.el (defcustom):
2846 * hi-lock.el (hi-lock-mode):
2847 * ibuffer.el (ibuffer-formats):
2848 * ielm.el (ielm-prompt-read-only):
2849 * novice.el (disable-command):
2850 * saveplace.el (toggle-save-place):
2851 * speedbar.el (speedbar-supported-extension-expressions):
2852 * startup.el (auto-save-list-file-prefix, init-file-user)
2853 (after-init-hook, inhibit-startup-echo-area-message):
2854 * strokes.el (strokes-help):
2855 * time-stamp.el (time-stamp):
2856 * calendar/calendar.el (calendar, diary-file):
2857 * calendar/diary-lib.el (diary-mail-entries, diary)
2858 (diary-list-entries-hook):
2859 * calendar/holidays.el (holidays, calendar-holidays):
2860 * calendar/lunar.el (lunar-phases):
2861 * calendar/solar.el (sunrise-sunset):
2862 * emulation/edt.el (edt-load-keys):
2863 * emulation/viper.el (viper-mode):
2864 * eshell/em-alias.el (eshell-command-aliases-list):
2865 * eshell/esh-util.el (eshell-convert-numeric-arguments):
2866 * international/ogonek.el (ogonek-information):
2867 * net/tramp-cmds.el (tramp-bug):
2868 * net/quickurl.el (quickurl-reread-hook-postfix):
2869 * play/decipher.el (decipher-font-lock-keywords):
2870 * progmodes/cc-styles.el (c-set-style):
2871 * progmodes/idlw-shell.el (idlwave-shell-prompt-pattern):
2872 * progmodes/inf-lisp.el (inferior-lisp-prompt):
2873 * progmodes/octave-mod.el (octave-mode):
2874 * progmodes/sql.el (sql-mode, sql-interactive-mode, sql-password):
2875 * progmodes/verilog-mode.el (verilog-read-defines):
2876 * textmodes/two-column.el (2C-mode): Likewise.
2877
2878 2012-09-16 Katsumi Yamaoka <yamaoka@jpl.org>
2879
2880 * mail/mailabbrev.el (mail-abbrev-expand-hook): Work for a mail aliasee
2881 that holds many addresses.
2882
2883 2012-09-16 Chong Yidong <cyd@gnu.org>
2884
2885 * align.el (align-areas): Call the indication function with
2886 positions instead of markers for arguments (Bug#12343).
2887
2888 * files.el (parse-colon-path): Use split-string (Bug#12351).
2889
2890 * window.el (special-display-popup-frame): Doc fix (Bug#8853).
2891 (display-buffer-function): Mark as obsolete.
2892
2893 * progmodes/compile.el (compilation-parse-errors): Accept list
2894 values similar to font-lock-keywords (Bug#12136).
2895 Suggested by Oleksandr Manzyuk.
2896 (compilation-error-regexp-alist): Doc fix.
2897
2898 2012-09-15 Glenn Morris <rgm@gnu.org>
2899
2900 * version.el (emacs-bzr-version-bzr): New function.
2901 (emacs-bzr-get-version): Add optional EXTERNAL argument.
2902
2903 * vc/vc-bzr.el (vc-bzr-working-revision): For lightweight local
2904 checkouts, check the parent dirstate matches the branch.
2905 Add "--tree" to "bzr revno" arguments. Don't try to shorten the
2906 empty string.
2907
2908 * version.el (emacs-bzr-version): Doc fix.
2909 (emacs-bzr-version-dirstate): New function.
2910 (emacs-bzr-get-version): For lightweight checkouts, if the parent
2911 is local try and check that it matches the branch. If not, just
2912 use dirstate information. (Bug#12441)
2913
2914 2012-09-14 Juri Linkov <juri@jurta.org>
2915
2916 * dired-aux.el (dired-do-chmod): Use `eq' to detect empty input.
2917 (Bug#12399)
2918
2919 2012-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
2920
2921 * emacs-lisp/advice.el (ad-prognify): Remove, use macroexp-progn.
2922
2923 * emacs-lisp/edebug.el: Miscellaneous cleanup.
2924 Remove obsolete byte-compiler hack that tried to silence some warnings.
2925 (edebug-submit-bug-report): Remove.
2926 (edebug-get-buffer-window, edebug-sit-for, edebug-input-pending-p):
2927 Remove aliases, use the un-prefixed name instead.
2928 (edebug-pop-to-buffer): Consider other frames.
2929 (edebug-original-read):: Make it more obvious that it's always defined.
2930 (edebug--make-form-data-entry, edebug--form-data-name)
2931 (edebug--form-data-begin, edebug--form-data-end): Rename from the
2932 single-dashed name, and implement with cl-defstruct.
2933 (edebug-set-form-data-entry): Use the standard accessors.
2934 (edebug-make-top-form-data-entry): Use push.
2935 (edebug-no-match): Drop useless `funcall'.
2936 (mapcar, mapconcat, mapatoms, apply, funcall): Don't add debug specs
2937 to functions.
2938 (defsubst, dont-compile, eval-when-compile, eval-and-compile)
2939 (delay-mode-hooks, with-temp-file, with-temp-message, ad-dolist)
2940 (with-syntax-table, push, pop, 1value, noreturn, defadvice)
2941 (easy-menu-define, with-custom-print): Remove redundant specs.
2942 (edebug-outside-overriding-local-map)
2943 (edebug-outside-overriding-terminal-local-map): Remove, unused.
2944 (edebug--display): Bind unread-command-events directly to nil rather
2945 than binding it to unread-command-events and later setting it to nil.
2946 (edebug--display): Kill edebug-eval-buffer here...
2947 (edebug--recursive-edit): ...rather than here.
2948 Bind standard-output and standard-input.
2949 (edebug-eval): Check cl-macroexpand-all is fboundp.
2950 (edebug-temp-display-freq-count): Fix last change.
2951
2952 * emacs-lisp/easymenu.el (easy-menu-define): Add `debug' spec.
2953 * subr.el (noreturn, 1value): Add `debug' spec.
2954 * emacs-lisp/advice.el: Require cl-lib.
2955 (ad-copy-tree): Remove, use copy-tree instead.
2956 (ad-dolist): Remove use dolist or cl-dolist instead.
2957 (ad-do-return): Remove, use cl-return instead.
2958 (defadvice): Add `debug' spec.
2959
2960 2012-09-13 Juri Linkov <juri@jurta.org>
2961
2962 * dired-aux.el (dired-do-chxxx): Use `eq' to detect empty input.
2963 (Bug#12399)
2964
2965 2012-09-13 Glenn Morris <rgm@gnu.org>
2966
2967 * calc/calc.el (math-compose-expr):
2968 * calc/calc-ext.el (math-compose-expr):
2969 * progmodes/cc-defs.el (cl-macroexpand-all):
2970 * progmodes/cc-langs.el (delete-duplicates, mapcan)
2971 (cl-macroexpand-all): Update declarations.
2972
2973 * vc/vc.el: No need to require ediff.
2974 (ediff-load-version-control): Declare.
2975 (ediff-vc-internal): Fix declaration.
2976 (vc-version-ediff): Require ediff.
2977
2978 2012-09-13 Paul Eggert <eggert@cs.ucla.edu>
2979
2980 Use a more backwards-compatible timer format (Bug#12430).
2981 * emacs-lisp/timer.el (timer): PSECS is now at the end, rather than
2982 being right after USECS, as that better supports old code that
2983 inadvisedly looked directly at the timer vector.
2984
2985 2012-09-13 Kenichi Handa <handa@gnu.org>
2986
2987 * language/chinese.el ("Chinese-GB", "Chinese-BIG5")
2988 ("Chinese-CNS", "Chinese-EUC-TW"): Add chinese-gbk to
2989 `coding-priority' property of these language environment.
2990
2991 2012-09-13 Paul Eggert <eggert@cs.ucla.edu>
2992
2993 Fix glitches caused by addition of psec to timers (Bug#12430).
2994 * image.el (image-animate-timer):
2995 * time.el (display-time-world-timer):
2996 Use timer--function and timer--args rather than raw access to
2997 timer vector.
2998
2999 2012-09-13 Glenn Morris <rgm@gnu.org>
3000
3001 * emacs-lisp/bytecomp.el (byte-compile-warning-prefix):
3002 If not compiling a file, try using load-file-name.
3003
3004 2012-09-13 Stefan Monnier <monnier@iro.umontreal.ca>
3005
3006 * emacs-lisp/edebug.el (edebug-outside-unread-command-events):
3007 Fix last change.
3008 (edebug-update-eval-list): Use `push'.
3009
3010 * emacs-lisp/edebug.el: Use lexical-binding.
3011 Remove the "edebug-" prefix from non-dynamically-scoped variables.
3012 Mark unused args with underscore.
3013 (edebug-save-restriction, edebug-outside-excursion): Use `declare'.
3014 (edebug-form-data): Use defvar-local.
3015 (edebug-make-before-and-after-form, edebug-make-after-form):
3016 Use backquote.
3017 (edebug-args, edebug-value, edebug-after-index, edebug-arg-mode):
3018 Not dynamically scoped any more.
3019 (edebug--enter-trace): Add arguments `function' and `args'.
3020 Rename from edebug-enter-trace.
3021 (edebug-enter): Call it accordingly. Bind edebug-function explicitly.
3022 (edebug--update-coverage): Add `after-index' and `value' args.
3023 Rename from edebug-update-coverage.
3024 (edebug-slow-after): Call it accordingly.
3025 (edebug--recursive-edit): Add arg `arg-mode'. Rename from
3026 edebug-recursive-edit.
3027 (edebug--display): Call it accordingly. Add args `value',
3028 `offset-index', and `arg-mode'. Rename from edebug-display.
3029 (edebug-debugger, edebug): Call it accordingly.
3030 (edebug-eval-display-list): Use dolist.
3031
3032 2012-09-12 Juri Linkov <juri@jurta.org>
3033
3034 * info.el (Info-search): Don't check for isearch-mode and
3035 isearch-regexp before let-binding search-spaces-regexp to
3036 Info-search-whitespace-regexp.
3037 (Info-isearch-search): Let-bind Info-search-whitespace-regexp to
3038 search-whitespace-regexp if isearch-lax-whitespace or
3039 isearch-regexp-lax-whitespace is non-nil.
3040 (Info-mode): Don't set local variable search-whitespace-regexp.
3041 http://lists.gnu.org/archive/html/emacs-devel/2012-08/msg00811.html
3042
3043 2012-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
3044
3045 * emacs-lisp/debug.el (debugger-outer-unread-command-char, debug)
3046 (debugger-env-macro): Remove support for unread-command-char.
3047
3048 * subr.el (set-temporary-overlay-map): Minimize slightly the impact of
3049 the temporary map re-appearing on emulation-mode-map-alists.
3050
3051 * emacs-lisp/edebug.el (def-edebug-form-spec): Remove, it's been broken
3052 since 22.1.
3053
3054 * ehelp.el (with-electric-help): Accept functions in
3055 electric-help-form-to-execute.
3056 (electric-help-execute-extended, electric-help-ctrl-x-prefix): Use it.
3057 And replace unread-command-char -> unread-command-events.
3058
3059 2012-09-12 Michael Albinus <michael.albinus@gmx.de>
3060
3061 Sync with Tramp 2.2.6.
3062
3063 * net/tramp.el (tramp-accept-process-output): Don't use
3064 JUST-THIS-ONE in the XEmacs case.
3065
3066 * net/trampver.el: Update release number.
3067
3068 2012-09-12 Martin Rudalics <rudalics@gmx.at>
3069
3070 * emacs-lisp/debug.el (debugger-previous-window-height):
3071 New variable.
3072 (debug): When debugger-jumping-flag is non-nil try to restore
3073 height of debugger window. (Bug#8789)
3074
3075 2012-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
3076
3077 * emacs-lisp/edebug.el (edebug-enter): Don't mess with
3078 overriding-local-map and pre/post-command-hook here.
3079 (edebug-recursive-edit): Do it here instead (bug#12345).
3080 (edebug-outside-unread-command-char): Remove all uses of
3081 unread-command-char.
3082
3083 * emacs-lisp/debug.el (debug): Don't bind debug-on-error since
3084 inhibit-debugger is bound instead.
3085
3086 2012-09-11 Bastien Guerry <bzg@gnu.org>
3087
3088 * subr.el (set-temporary-overlay-map): Add a docstring.
3089 (Bug#12346)
3090
3091 2012-09-11 Bastien Guerry <bzg@gnu.org>
3092
3093 * minibuffer.el (completion-table-subvert): Fix docstring.
3094 (Bug#12347)
3095
3096 2012-09-11 Bastien Guerry <bzg@gnu.org>
3097
3098 * help-fns.el (describe-variable): Fix typo. (Bug#12346)
3099
3100 2012-09-10 Michael R. Mauger <mmaug@yahoo.com>
3101
3102 * progmodes/sql.el: Version 3.1
3103 (sql-db2-escape-newlines): New variable.
3104 (sql-escape-newlines-filter): Use it.
3105
3106 2012-09-10 Juanma Barranquero <lekktu@gmail.com>
3107
3108 * custom.el (custom-theme-load-confirm): Remove unneeded assignment.
3109
3110 2012-09-10 Dan Nicolaescu <dann@gnu.org>
3111
3112 * vc/diff-mode.el (diff-mode-menu):
3113 Bind diff-remove-trailing-whitespace.
3114
3115 2012-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
3116
3117 * emacs-lisp/lisp-mode.el (emacs-list-byte-code-comment-re): New var.
3118 (emacs-lisp-byte-code-comment, emacs-lisp-byte-code-syntax-propertize)
3119 (emacs-lisp-byte-code-mode): New functions.
3120 (eval-sexp-add-defvars): Don't skip defvars in column >0.
3121 (eval-defun-2): Remove bogus interactive spec.
3122 (lisp-indent-line): Remove redundant whole-exp code, now done in
3123 indent-according-to-mode.
3124 (save-match-data): Remove redundant indent data.
3125
3126 * emacs-lisp/benchmark.el (benchmark-run, benchmark-run-compiled):
3127 Use `declare'.
3128
3129 2012-09-09 Juri Linkov <juri@jurta.org>
3130
3131 * replace.el (replace-regexp-lax-whitespace): New defcustom.
3132 (replace-lax-whitespace, query-replace-regexp)
3133 (query-replace-regexp-eval, replace-regexp): Doc fix.
3134 (perform-replace, replace-highlight): Let-bind
3135 isearch-lax-whitespace to replace-lax-whitespace and
3136 isearch-regexp-lax-whitespace to replace-regexp-lax-whitespace.
3137
3138 * isearch.el (isearch-query-replace): Let-bind
3139 replace-lax-whitespace to isearch-lax-whitespace and
3140 replace-regexp-lax-whitespace to
3141 isearch-regexp-lax-whitespace. (Bug#10885)
3142
3143 2012-09-09 Stefan Monnier <monnier@iro.umontreal.ca>
3144
3145 * eshell/em-unix.el (eshell/sudo): Explicitly drop return value.
3146
3147 2012-09-09 Alan Mackenzie <acm@muc.de>
3148
3149 * progmodes/cc-engine.el (c-state-cache-init):
3150 Initialise c-state-semi-nonlit-pos-cache\(-limit\)? properly.
3151 (c-record-parse-state-state):
3152 Record c-state-semi-nonlit-pos-cache\(-limit\)?.
3153
3154 2012-09-09 Andreas Schwab <schwab@linux-m68k.org>
3155
3156 * register.el (register-separator): Rename from
3157 separator-register. All uses changed. Doc fix.
3158 (register): Fix version.
3159
3160 2012-09-09 Chong Yidong <cyd@gnu.org>
3161
3162 * replace.el (query-replace-map): Bind four new symbols for
3163 requesting window scrolling.
3164
3165 * subr.el (y-or-n-p): Handle the window-scrolling bindings in
3166 query-replace-map (Bug#8948).
3167
3168 * custom.el (custom-theme-load-confirm): Use y-or-n-p.
3169
3170 * emacs-lisp/map-ynp.el (map-y-or-n-p): Don't bind scrolling keys
3171 since they are now in query-replace-map.
3172
3173 * window.el (scroll-other-window-down): Make the arg optional.
3174
3175 2012-09-09 Chong Yidong <cyd@gnu.org>
3176
3177 * files.el (hack-local-variables-confirm): Use quit-window to kill
3178 the *Local Variables* buffer.
3179
3180 2012-09-08 Dmitry Gutov <dgutov@yandex.ru>
3181
3182 * progmodes/ruby-mode.el (ruby-toggle-block): Guess the current block,
3183 not just expect to be at its beginning. Adjust callees.
3184 Succeed when do-end block has no space before the pipe character.
3185 (ruby-brace-to-do-end): When the original block is one-liner,
3186 convert to multiline. Reindent the result.
3187
3188 2012-09-08 Jambunathan K <kjambunathan@gmail.com>
3189
3190 * register.el (register): New group.
3191 (separator-register): New user option.
3192 (increment-register): Route it to `append-to-register', if
3193 register contains text. Implication is that `C-x r +' can now be
3194 used for appending to a text register (bug#12217).
3195 (append-to-register, prepend-to-register): Add separator based on
3196 `separator-register'.
3197
3198 2012-09-08 Alan Mackenzie <acm@muc.de>
3199
3200 AWK Mode: make auto-newline work when there's "==" in the pattern.
3201 * progmodes/cc-cmds.el (c-point-syntax): Handle virtual semicolons
3202 correctly.
3203 * progmodes/cc-engine.el (c-guess-basic-syntax CASE 5A.3):
3204 Test more rigorously for "=" token.
3205
3206 2012-09-08 Dmitry Gutov <dgutov@yandex.ru>
3207
3208 * progmodes/ruby-mode.el (ruby-match-expression-expansion):
3209 Only fail when reached LIMIT.
3210
3211 2012-09-08 Chong Yidong <cyd@gnu.org>
3212
3213 * dired.el (dired-mode-map): Don't bind M-=.
3214
3215 * dired-aux.el (dired-diff): Use backup file as default.
3216
3217 2012-09-08 Drew Adams <drew.adams@oracle.com>
3218
3219 * subr.el (add-to-history): Fix delete usage (Bug#12314).
3220
3221 2012-09-08 Chong Yidong <cyd@gnu.org>
3222
3223 * subr.el (syntax-after, syntax-class): Doc fix.
3224
3225 2012-09-08 Martin Rudalics <rudalics@gmx.at>
3226
3227 * window.el (display-buffer-in-previous-window): New buffer
3228 display action function.
3229
3230 * emacs-lisp/debug.el (debugger-bury-or-kill): New option.
3231 (debugger-previous-window): New variable.
3232 (debug): Rewrite using display-buffer-in-previous-window,
3233 quit-restore-window and debugger-bury-or-kill. (Bug#8789)
3234
3235 2012-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
3236
3237 * emacs-lisp/byte-run.el (defun): Tweak message. Simplify code.
3238
3239 2012-09-07 Matt McClure <mlm@aya.yale.edu> (tiny change)
3240
3241 * progmodes/python.el (python-shell-send-string):
3242 When default-directory is remote, create temp file on remote
3243 filesystem.
3244 (python-shell-send-file): When file is remote, pass local view of
3245 file paths to remote Python interpreter. (Bug#12340)
3246
3247 2012-09-07 Chong Yidong <cyd@gnu.org>
3248
3249 * window.el (switch-to-buffer): Doc fix (Bug#12181).
3250
3251 * files.el (after-find-file): Don't fail on a read-only buffer if
3252 require-final-newline is `visit' or `visit-save' (Bug#11156).
3253
3254 * subr.el (read-char-choice): Allow quitting via ESC ESC.
3255
3256 * userlock.el (ask-user-about-supersession-threat):
3257 Use read-char-choice (Bug#12093).
3258
3259 2012-09-07 Chong Yidong <cyd@gnu.org>
3260
3261 * subr.el (buffer-narrowed-p): New function.
3262
3263 * ses.el (ses-widen):
3264 * simple.el (count-words--buffer-message):
3265 * net/browse-url.el (browse-url-of-buffer): Use it.
3266
3267 * simple.el (count-words-region): Don't signal an error if there
3268 is a non-nil prefix arg and the mark is not set.
3269
3270 * help.el (describe-key-briefly): Allow the message to be seen
3271 when invoked from the minibuffer (Bug#7014).
3272
3273 2012-09-07 Dmitry Gutov <dgutov@yandex.ru>
3274
3275 * progmodes/ruby-mode.el (ruby-end-of-defun)
3276 (ruby-beginning-of-defun): Simplify, allow indentation before
3277 block beginning and end keywords.
3278 (ruby-beginning-of-defun): Only consider 3 keywords defun beginners.
3279 (ruby-end-of-defun): Expect that the point is at the beginning of
3280 the defun.
3281
3282 2012-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
3283
3284 * emacs-lisp/cl-macs.el (cl--do-arglist): Understand _ on &key args
3285 (bug#12367).
3286 (cl--make-usage-args): Strip _ from argument names.
3287
3288 2012-09-06 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
3289
3290 * progmodes/vhdl-mode.el (vhdl-speedbar-initialize): Don't use
3291 obsolete alias speedbar-key-map.
3292 (vhdl-doc-variable, vhdl-doc-mode): Use called-interactively-p.
3293 (vhdl-index-menu-init): Don't use obsolete variable
3294 font-lock-maximum-size.
3295
3296 2012-09-06 Chong Yidong <cyd@gnu.org>
3297
3298 * frame.el (window-system-version): Mark as obsolete.
3299
3300 * speedbar.el (speedbar-update-flag, speedbar-mode): Remove uses
3301 of obsolete variable speedbar-key-map.
3302
3303 2012-09-06 Juri Linkov <juri@jurta.org>
3304
3305 * replace.el (replace-lax-whitespace): New defcustom.
3306 (query-replace, query-replace-regexp, query-replace-regexp-eval)
3307 (replace-string, replace-regexp): Mention it in docstrings.
3308 (perform-replace, replace-highlight): Let-bind
3309 isearch-lax-whitespace and isearch-regexp-lax-whitespace according
3310 to the values of replace-lax-whitespace and regexp-flag.
3311 Don't let-bind search-whitespace-regexp. (Bug#10885)
3312
3313 * isearch.el (isearch-query-replace): Let-bind
3314 replace-lax-whitespace instead of let-binding
3315 replace-search-function and replace-re-search-function.
3316 (isearch-lazy-highlight-search): Let-bind isearch-lax-whitespace
3317 and isearch-regexp-lax-whitespace to lazy-highlight variables.
3318 (isearch-toggle-symbol): Set isearch-regexp to nil
3319 in isearch-word mode (like in isearch-toggle-word).
3320
3321 2012-09-06 Juri Linkov <juri@jurta.org>
3322
3323 * replace.el (replace-search-function)
3324 (replace-re-search-function): Set default values to nil.
3325 (perform-replace): Let-bind isearch-related variables based on
3326 replace-related values, call `isearch-search-fun' and let-bind
3327 the result to `search-function'. Remove code that sets
3328 `search-function' and `search-string' separately for
3329 `delimited-flag'.
3330 (replace-highlight): Add new argument `delimited-flag' and
3331 rename other arguments to the names used in `perform-replace'.
3332 Let-bind `isearch-word' to the argument `delimited-flag'.
3333 (Bug#10885, bug#10887)
3334
3335 2012-09-07 Dmitry Gutov <dgutov@yandex.ru>
3336
3337 * progmodes/ruby-mode.el (ruby-indent-beg-re): Add pieces from
3338 ruby-beginning-of-indent, simplify, allow all keywords to have
3339 indentation before them.
3340 (ruby-beginning-of-indent): Adjust for above. Search until the
3341 found point is not inside a string or comment.
3342 (ruby-font-lock-keywords): Allow symbols to start with "@"
3343 character, give them higher priority than variables.
3344 (ruby-syntax-propertize-function)
3345 (ruby-font-lock-syntactic-keywords): Remove the "not comments"
3346 matchers. Expression expansions are not comments when inside a
3347 string, and there comment syntax status is irrelevant.
3348 (ruby-match-expression-expansion): New function. Check that
3349 expression expansion is inside a string, and it's not escaped.
3350 (ruby-font-lock-keywords): Use it.
3351
3352 2012-09-05 Martin Rudalics <rudalics@gmx.at>
3353
3354 * help.el (temp-buffer-max-height): New default value.
3355 (temp-buffer-resize-frames): New option.
3356 (resize-temp-buffer-window): Optionally resize frame.
3357
3358 * window.el (fit-frame-to-buffer-bottom-margin): New option.
3359 (fit-frame-to-buffer): New function.
3360
3361 2012-09-05 Glenn Morris <rgm@gnu.org>
3362
3363 * emulation/cua-rect.el (cua--init-rectangles):
3364 * textmodes/picture.el (picture-mode-map):
3365 * play/blackbox.el (blackbox-mode-map): Remap right-char and left-char
3366 like forward-char and backward-char. (Bug#12317)
3367
3368 2012-09-05 Leo Liu <sdl.web@gmail.com>
3369
3370 * progmodes/flymake.el (flymake-warning-re): New variable.
3371 (flymake-parse-line): Use it.
3372
3373 2012-09-05 Glenn Morris <rgm@gnu.org>
3374
3375 * calendar/holidays.el (holiday-christian-holidays):
3376 Rename an entry. (Bug#12289)
3377
3378 2012-09-05 Stefan Monnier <monnier@iro.umontreal.ca>
3379
3380 * progmodes/sh-script.el (sh-font-lock-paren): Don't burp at BOB
3381 (bug#12222).
3382
3383 2012-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
3384
3385 * loadup.el: Load macroexp. Remove hack.
3386 * emacs-lisp/macroexp.el (macroexp--eval-if-compile): New function.
3387 (macroexp--expand-all): Use it to get better warnings.
3388 (macroexp--backtrace, macroexp--trim-backtrace-frame)
3389 (internal-macroexpand-for-load): New functions.
3390 (macroexp--pending-eager-loads): New var.
3391 (emacs-startup-hook): New hack to replace one in loadup.el.
3392 * emacs-lisp/cl-macs.el (cl--compiler-macro-list*)
3393 (cl--compiler-macro-cXXr): Move to top, before they can be used.
3394 (cl-psetf): Simplify.
3395 (cl-defstruct): Add indent rule.
3396
3397 2012-09-04 Lars Ingebrigtsen <larsi@gnus.org>
3398
3399 * mail/smtpmail.el (smtpmail-send-it): Prefer the From: header
3400 over `user-mail-address' for the SMTP MAIL FROM envelope.
3401 (smtpmail-via-smtp): Ditto.
3402
3403 2012-09-04 Dmitry Gutov <dgutov@yandex.ru>
3404
3405 * progmodes/ruby-mode.el: Clean up keybindings.
3406 (ruby-mode-map): Don't bind ruby-electric-brace,
3407 ruby-beginning-of-defun, ruby-end-of-defun, ruby-mark-defun,
3408 backward-kill-word, reindent-then-newline-and-indent.
3409 (ruby-mark-defun): Remove.
3410 (ruby-electric-brace): Remove. Obsoleted by electric-indent-chars.
3411 (ruby-mode): Set local beginning-of-defun-function and
3412 end-of-defun-function values.
3413
3414 2012-09-03 Martin Rudalics <rudalics@gmx.at>
3415
3416 * window.el (temp-buffer-window-setup-hook)
3417 (temp-buffer-window-show-hook): New hooks.
3418 (temp-buffer-window-setup, temp-buffer-window-show)
3419 (with-temp-buffer-window): New functions.
3420 (fit-window-to-buffer): Remove unused optional argument OVERRIDE.
3421 (special-display-popup-frame): Make sure the window used shows BUFFER.
3422
3423 * help.el (temp-buffer-resize-mode): Fix doc-string.
3424 (resize-temp-buffer-window): New optional argument WINDOW.
3425
3426 * files.el (recover-file, save-buffers-kill-emacs):
3427 * dired.el (dired-mark-pop-up): Use with-temp-buffer-window.
3428
3429 2012-09-02 Michael Albinus <michael.albinus@gmx.de>
3430
3431 * eshell/em-unix.el (eshell/sudo): When we have an ad-hoc
3432 remote definition of `default-directory', ensure we can connect.
3433
3434 2012-09-02 Juri Linkov <juri@jurta.org>
3435
3436 Toggle whitespace matching mode with M-s SPC.
3437 http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00008.html
3438
3439 * isearch.el (search-whitespace-regexp): Doc fix.
3440 Remove cons cell customization.
3441 (isearch-mode-map): Bind "\M-s " to isearch-toggle-lax-whitespace.
3442 (isearch-lax-whitespace, isearch-regexp-lax-whitespace):
3443 New variables.
3444 (isearch-forward, isearch-forward-regexp): Doc fix.
3445 (isearch-toggle-lax-whitespace): New command.
3446 (search-forward-lax-whitespace, search-backward-lax-whitespace)
3447 (re-search-forward-lax-whitespace)
3448 (re-search-backward-lax-whitespace): New functions.
3449 (isearch-whitespace-regexp): Remove function.
3450 (isearch-query-replace): Let-bind replace-search-function and
3451 replace-re-search-function.
3452 (isearch-occur): Let-bind search-spaces-regexp according to the
3453 value of isearch-lax-whitespace and isearch-regexp-lax-whitespace.
3454 (isearch-quote-char): Check isearch-regexp-lax-whitespace in the
3455 condition for C-q SPC.
3456 (isearch-search-fun-default): Use new functions mentioned above.
3457 (isearch-search-forward, isearch-search-backward): Remove functions.
3458 (isearch-search): Don't let-bind search-spaces-regexp.
3459 (isearch-lazy-highlight-space-regexp): Remove variable.
3460 (isearch-lazy-highlight-lax-whitespace)
3461 (isearch-lazy-highlight-regexp-lax-whitespace): New variables.
3462 (isearch-lazy-highlight-new-loop): Use them.
3463 (isearch-lazy-highlight-search): Don't let-bind search-spaces-regexp.
3464
3465 2012-09-02 Chong Yidong <cyd@gnu.org>
3466
3467 * dired.el (dired-mode-map): Menu string fixes (Bug#11616).
3468
3469 2012-09-02 Glenn Morris <rgm@gnu.org>
3470
3471 * simple.el (undo): Tweak message in undo-only case. (Bug#12283)
3472
3473 2012-09-01 Glenn Morris <rgm@gnu.org>
3474
3475 * term.el: Tidy up menu definitions.
3476 (term-mode-map): Use easymenu for In/Out, Complete menus.
3477 (term-pager-break-map): Initialize in the defvar.
3478 (term-terminal-menu, term-signals-menu): Define with easymenu.
3479 (term-terminal-menu): Also show it in line-mode. (Bug#11957)
3480 (term-pager-menu): New, extracted from term-process-pager.
3481 (term-mode, term-char-mode, term-process-pager): Use easymenu-add.
3482 (term-update-mode-line): Propertize line/char and page items.
3483 (term-process-pager): Move keymap initialization elsewhere.
3484
3485 2012-09-01 Martin Rudalics <rudalics@gmx.at>
3486
3487 * window.el (switch-to-prev-buffer): Handle additional values of
3488 BURY-OR-KILL argument. Don't switch in minibuffer window.
3489 (switch-to-next-buffer): Don't switch in minibuffer window.
3490 (quit-restore-window): New function based on quit-window.
3491 Handle additional values of former KILL argument.
3492 (quit-window): Call quit-restore-window with appropriate
3493 interpretation of KILL argument.
3494 (display-buffer-below-selected): New buffer display action
3495 function.
3496
3497 2012-09-01 Stefan Monnier <monnier@iro.umontreal.ca>
3498
3499 * minibuffer.el (completion-at-point-functions): Complete docstring
3500 (bug#12254).
3501
3502 2012-09-01 Paul Eggert <eggert@cs.ucla.edu>
3503
3504 Better seed support for (random).
3505 * play/5x5.el, play/animate.el, play/cookie1.el, play/dissociate.el:
3506 * play/doctor.el, play/dunnet.el, play/gomoku.el, play/landmark.el:
3507 * play/mpuz.el, play/tetris.el, play/zone.el:
3508 * calc/calc-comb.el (math-init-random-base):
3509 * play/blackbox.el (bb-init-board):
3510 * play/life.el (life):
3511 * server.el (server-use-tcp):
3512 * type-break.el (type-break):
3513 Remove unnecessary call to (random t).
3514 * net/sasl.el (sasl-unique-id-function):
3515 Change (random t) to (random), now that the latter is more random.
3516 * play/life.el (life-initialized): Remove no-longer-needed var.
3517
3518 2012-08-31 Alp Aker <alp.tekin.aker@gmail.com>
3519
3520 * window.el (switch-to-prev-buffer, switch-to-next-buffer):
3521 Consider frame's buffer predicate when choosing the buffer.
3522 (Bug#12081)
3523
3524 2012-08-30 Richard Stallman <rms@gnu.org>
3525
3526 * simple.el (special-mode-map): Delete binding for `z'.
3527
3528 2012-08-30 Andreas Schwab <schwab@linux-m68k.org>
3529
3530 * progmodes/compile.el (compilation-always-kill): Doc fix.
3531
3532 2012-08-30 Chong Yidong <cyd@gnu.org>
3533
3534 * window.el (display-buffer-reuse-frames): Make the obsolescence
3535 message more informative.
3536
3537 2012-08-30 Glenn Morris <rgm@gnu.org>
3538
3539 * paren.el (show-paren-delay):
3540 Add a :set function. Doc fix. (Bug#12297)
3541
3542 2012-08-29 Martin Blais <blais@furius.ca> (tiny change)
3543
3544 * progmodes/compile.el (compilation-always-kill): New var.
3545 (compilation-start): Use it.
3546
3547 2012-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
3548
3549 * simple.el (read-only-mode): Move from files.el for bootstrapping.
3550 * files.el (read-only-mode): Move to simple.el.
3551
3552 * files.el (read-only-mode): New minor mode.
3553 (toggle-read-only): Use it and mark obsolete.
3554 (find-file--read-only):
3555 * vc/vc.el (vc-next-action, vc-checkout):
3556 * vc/vc-cvs.el (vc-cvs-checkout):
3557 * obsolete/vc-mcvs.el (vc-mcvs-update):
3558 * ffap.el (ffap--toggle-read-only): Update callers.
3559
3560 2012-08-29 Michael Albinus <michael.albinus@gmx.de>
3561
3562 * eshell/esh-ext.el (eshell-external-command): Do not examine
3563 remote shell scripts.
3564 See <https://bugs.launchpad.net/ubuntu/+source/emacs23/+bug/1035790>.
3565
3566 * net/tramp-sh.el (tramp-remote-path): Add "/sbin" and
3567 "/usr/local/sbin".
3568
3569 2012-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
3570
3571 * emacs-lisp/cl-lib.el (buffer-string): Fix setter macro (bug#12293).
3572
3573 2012-08-28 Leo Liu <sdl.web@gmail.com>
3574
3575 * progmodes/sh-script.el (sh-dynamic-complete-functions): Adapt to
3576 completion-at-point. (Bug#12220)
3577
3578 * skeleton.el (skeleton-untabify): Change to nil (bug#12223).
3579
3580 * progmodes/sh-script.el (sh-indent-comment): Change to t (bug#12267).
3581
3582 2012-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
3583
3584 * files.el (safe-local-eval-forms): Fix before-save-hook entry to
3585 be buffer-local; add delete-trailing-whitespace (bug#12259).
3586
3587 2012-08-28 Jeremy Moore <jmoore@ieee.org> (tiny change)
3588
3589 * progmodes/hideif.el (hif-compress-define-list):
3590 Fix typo. (Bug#11951)
3591
3592 2012-08-28 Dan Nicolaescu <dann@gnu.org>
3593
3594 * progmodes/hideshow.el (hs-block-end-regexp): Restore lost
3595 buffer local setting.
3596
3597 * net/rcirc.el (rcirc-split-message): Fix for buffer-local
3598 rcirc-encode-coding-system.
3599
3600 2012-08-28 Leo Liu <sdl.web@gmail.com>
3601
3602 * net/rcirc.el (rcirc-split-message): New function.
3603 (rcirc-send-message): Use it. (Bug#12051)
3604
3605 2012-08-28 Juri Linkov <juri@jurta.org>
3606
3607 * info.el (Info-fontify-node): Hide empty lines at the end of
3608 the node. (Bug#12272)
3609
3610 2012-08-27 Drew Adams <drew.adams@oracle.com>
3611
3612 * dired.el (dired-pop-to-buffer): Make window start at beginning
3613 of buffer (Bug#12281).
3614
3615 2012-08-26 Chong Yidong <cyd@gnu.org>
3616
3617 * window.el (special-display-regexps, special-display-frame-alist)
3618 (special-display-buffer-names, special-display-function)
3619 (display-buffer-reuse-frames): Mark as obsolete.
3620
3621 * progmodes/compile.el: Don't use display-buffer-reuse-frames.
3622
3623 * help.el (help-print-return-message): Don't treat
3624 display-buffer-reuse-frames specially.
3625
3626 2012-08-26 Chong Yidong <cyd@gnu.org>
3627
3628 * progmodes/gdb-mi.el (gdb-display-buffer-other-frame-action):
3629 New variable, replacing gdb-frame-parameters.
3630 (gdb-frame-io-buffer, gdb-frame-breakpoints-buffer)
3631 (gdb-frame-threads-buffer, gdb-frame-memory-buffer)
3632 (gdb-frame-disassembly-buffer, gdb-frame-stack-buffer)
3633 (gdb-frame-locals-buffer, gdb-frame-registers-buffer): Use it.
3634 (def-gdb-frame-for-buffer): Macro deleted. It is easier to define
3635 the functions directly with gdb-display-buffer-other-frame-action.
3636 (gdb-display-breakpoints-buffer, gdb-display-threads-buffer)
3637 (gdb-display-memory-buffer, gdb-display-disassembly-buffer)
3638 (gdb-display-stack-buffer, gdb-display-locals-buffer)
3639 (gdb-display-registers-buffer): Define directly.
3640 (def-gdb-display-buffer): Macro deleted.
3641 (gdb-display-buffer): Remove second and third args, callers don't
3642 use them. Defer to the default display-buffer behavior, apart
3643 from making windows dedicated.
3644 (gdb-setup-windows): Don't call display-buffer unnecessarily.
3645
3646 * progmodes/gud.el (gud-display-line): Just use display-buffer.
3647
3648 * window.el (display-buffer-pop-up-frame): Handle a
3649 pop-up-frame-parameters alist entry.
3650 (display-buffer): Document it.
3651
3652 2012-08-26 Chong Yidong <cyd@gnu.org>
3653
3654 * isearch.el (search-whitespace-regexp): Make string and nil
3655 values apply to both ordinary and regexp search. Allow a cons
3656 cell value to distinguish between the two.
3657 (isearch-whitespace-regexp, isearch-search-forward)
3658 (isearch-search-backward): New functions.
3659 (isearch-occur, isearch-search-fun-default, isearch-search)
3660 (isearch-lazy-highlight-new-loop): Use them.
3661 (isearch-forward, isearch-forward-regexp): Doc fix.
3662
3663 2012-08-26 Chong Yidong <cyd@gnu.org>
3664
3665 * faces.el (help-argument-name): Always inherit from italic
3666 (Bug#12213).
3667
3668 2012-08-25 Martin Rudalics <rudalics@gmx.at>
3669
3670 * window.el (window--even-window-heights): Even heights when
3671 WINDOW and the selected window form a vertical combination.
3672 (display-buffer-use-some-window): Provide that window used gets
3673 sized back by quit-window. (Bug#11880) and (Bug#12091)
3674
3675 2012-08-24 Paul Eggert <eggert@cs.ucla.edu>
3676
3677 Fix file time stamp problem with bzr and CVS (Bug#12001).
3678 * vc/vc-cvs.el (vc-cvs-parse-entry): Ignore subsecond information
3679 in the file's time stamp, since the version control system loses
3680 that information.
3681
3682 2012-08-22 Juri Linkov <juri@jurta.org>
3683
3684 * info.el (Info-fontify-node): Hide the suffix of the
3685 Info file name in the header line. (Bug#12187)
3686
3687 2012-08-22 Glenn Morris <rgm@gnu.org>
3688
3689 * calendar/cal-tex.el (cal-tex-weekly-common):
3690 Restore leading blank page.
3691
3692 2012-08-22 Le Wang <l26wang@gmail.com>
3693
3694 * misc.el (forward-to-word, backward-to-word): Activate or extend
3695 the region under `shift-select-mode'. (Bug#12231)
3696
3697 2012-08-22 Bastien Guerry <bzg@gnu.org>
3698
3699 * progmodes/executable.el (executable-prefix): Set to "#!" instead
3700 of "#! ". http://www.in-ulm.de/~mascheck/various/shebang/#details
3701 gives details on why the space is never needed.
3702
3703 2012-08-22 Martin Rudalics <rudalics@gmx.at>
3704
3705 * window.el (walk-window-tree, window-with-parameter):
3706 New optional argument MINIBUF to control whether these functions
3707 should run on the minibuffer window.
3708 (window-at-side-list): Don't operate on minibuffer window.
3709 (window-in-direction): Simplify and rewrite doc-string.
3710 (window--size-ignore): Rename to window--size-ignore-p.
3711 Update callers.
3712 (display-buffer-in-atom-window, window--major-non-side-window)
3713 (window--major-side-window, display-buffer-in-major-side-window)
3714 (delete-side-window, display-buffer-in-side-window):
3715 New functions.
3716 (window--side-check, window-deletable-p, delete-window)
3717 (delete-other-windows, split-window): Handle side windows and
3718 atomic windows appropriately.
3719 (window--display-buffer): Call display-buffer-record-window also
3720 when the window buffer did not change.
3721
3722 2012-08-22 Christopher Schmidt <christopher@ch.ristopher.com>
3723
3724 * help-fns.el (help-fns--key-bindings):
3725 Abbreviate non-symbol remap targets. (Bug#12174)
3726
3727 2012-08-22 Martin Rudalics <rudalics@gmx.at>
3728
3729 * dired.el (dired-mark-remembered): Don't clobber point.
3730 (Bug#11795)
3731
3732 2012-08-22 Glenn Morris <rgm@gnu.org>
3733
3734 * progmodes/bug-reference.el (bug-reference): New custom group.
3735 (bug-reference-bug-regexp): Make it a defcustom.
3736
3737 2012-08-22 Daiki Ueno <ueno@unixuser.org>
3738
3739 * progmodes/js.el (js-indent-level, js-expr-indent-offset)
3740 (js-paren-indent-offset, js-square-indent-offset)
3741 (js-curly-indent-offset): Add :safe (Bug#12257).
3742
3743 2012-08-22 Edward O'Connor <hober0@gmail.com>
3744
3745 * json.el (json-key-format): Add error properties.
3746 (json-encode-key): New function.
3747 (json-encode-hash-table, json-encode-alist, json-encode-plist):
3748 Use json-encode-key.
3749
3750 2012-08-22 Glenn Morris <rgm@gnu.org>
3751
3752 * calendar/cal-tex.el (cal-tex-longday): New function, replacing...
3753 (cal-tex-leftday, cal-tex-rightday): Remove functions.
3754 (cal-tex-weekly-common, cal-tex-cursor-filofax-2week):
3755 Update for above change.
3756
3757 2012-08-21 Andreas Schwab <schwab@linux-m68k.org>
3758
3759 * cus-face.el (custom-face-attributes): Fix customize type for the
3760 :underline attribute. (Bug#11805)
3761
3762 2012-08-21 Martin Rudalics <rudalics@gmx.at>
3763
3764 * window.el (window-point-1, set-window-point-1): Remove.
3765 (window-in-direction, record-window-buffer)
3766 (set-window-buffer-start-and-point, split-window-below)
3767 (window--state-get-1, display-buffer-record-window):
3768 Replace calls to window-point-1 and set-window-point-1 by calls to
3769 window-point and set-window-point respectively.
3770
3771 2012-08-21 Glenn Morris <rgm@gnu.org>
3772
3773 * calendar/cal-tex.el (cal-tex-weekly-common): New function.
3774 (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-week):
3775 Use it.
3776
3777 * calendar/cal-tex.el (cal-tex-rightday): Add optional funcname arg.
3778 (cal-tex-shortday): New function.
3779 (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-week)
3780 (cal-tex-cursor-filofax-daily): Use the above.
3781
3782 * calendar/cal-tex.el (cal-tex-leftday, cal-tex-rightday):
3783 New functions.
3784 (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-2week)
3785 (cal-tex-cursor-filofax-week): Use them.
3786
3787 * calendar/cal-tex.el (cal-tex-lefthead, cal-tex-righthead):
3788 New constants.
3789 (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-2week)
3790 (cal-tex-cursor-filofax-week, cal-tex-cursor-filofax-daily): Use them.
3791
3792 * calendar/cal-tex.el (cal-tex-preamble): Generate new buffers.
3793 (cal-tex-end-document): Don't rely on buffer name.
3794
3795 * calendar/cal-tex.el (cal-tex-cursor-filofax-year):
3796 Use cal-tex-vspace.
3797 (cal-tex-vspace, cal-tex-hspace, cal-tex-em, cal-tex-bf)
3798 (cal-tex-Huge-bf, cal-tex-large-bf): Use cal-tex-cmd.
3799 (cal-tex-scriptsize, cal-tex-huge, cal-tex-Huge, cal-tex-large):
3800 Use cal-tex-arg.
3801
3802 * calendar/cal-tex.el (cal-tex-cursor-filofax-year)
3803 (cal-tex-cursor-week, cal-tex-cursor-week2)
3804 (cal-tex-cursor-week-iso, cal-tex-cursor-week-at-a-glance)
3805 (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
3806 (cal-tex-cursor-filofax-daily, cal-tex-cursor-day)
3807 (cal-tex-insert-preamble, cal-tex-b-document)
3808 (cal-tex-e-document, cal-tex-b-center, cal-tex-e-center):
3809 Improve cal-tex-cmd usage.
3810
3811 * calendar/cal-tex.el (cal-tex-filofax-paper): New function.
3812 (cal-tex-cursor-filofax-year, cal-tex-cursor-filofax-2week)
3813 (cal-tex-cursor-filofax-week, cal-tex-cursor-filofax-daily): Use it.
3814 (cal-tex-weekly-paper): New function.
3815 (cal-tex-cursor-week, cal-tex-cursor-week2)
3816 (cal-tex-cursor-week-iso, cal-tex-cursor-week-monday)
3817 (cal-tex-cursor-day): Use it.
3818
3819 * calendar/cal-tex.el (cal-tex-cursor-week-at-a-glance)
3820 (cal-tex-cursor-filofax-week): Remove leading blank page.
3821
3822 * calendar/cal-tex.el (cal-tex-cursor-week-at-a-glance):
3823 Add autoload cookie. For now at least, don't use color, since
3824 no other cal-tex function does.
3825
3826 * calendar/cal-tex.el (cal-tex-cursor-week-iso)
3827 (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
3828 (cal-tex-cursor-filofax-daily): Correct start date for diary entries.
3829
3830 2012-08-21 Juri Linkov <juri@jurta.org>
3831
3832 * info.el (Info-file-attributes): New variable.
3833 (info-insert-file-contents): Add file attributes to
3834 `Info-file-attributes'. Clear the caches `Info-index-nodes' and
3835 `Info-toc-nodes' when previous modtime of the Info file is less
3836 than new modtime.
3837 (Info-toc-nodes, Info-index-nodes): Move definitions up to the top
3838 of info.el. (Bug#12230)
3839
3840 2012-08-20 Glenn Morris <rgm@gnu.org>
3841
3842 * calendar/diary-lib.el (diary-include-files, diary-sexp-entry):
3843 * calendar/holidays.el (calendar-holiday-list):
3844 Report errors with display-warning rather than beep'n'sleep.
3845
3846 2012-08-20 Michael Albinus <michael.albinus@gmx.de>
3847
3848 * net/tramp.el (tramp-accept-process-output): Accept only output
3849 from PROC. Otherwise, process filters and sentinels might be
3850 confused. (Bug#12145)
3851
3852 2012-08-20 Chong Yidong <cyd@gnu.org>
3853
3854 * descr-text.el (describe-text-properties-1): Use overlays-in to
3855 report on empty overlays (Bug#3322).
3856
3857 2012-08-20 Glenn Morris <rgm@gnu.org>
3858
3859 * mail/rmailout.el (rmail-output-read-file-name):
3860 Trap and report errors in rmail-output-file-alist elements.
3861
3862 * font-lock.el (font-lock-add-keywords): Doc fix (quote face names
3863 since most non-font-lock faces are not also variables).
3864
3865 2012-08-20 Edward Reingold <reingold@iit.edu>
3866
3867 * calendar/cal-tex.el (cal-tex-cursor-week-at-a-glance):
3868 New function. (Bug12160)
3869
3870 2012-08-19 Glenn Morris <rgm@gnu.org>
3871
3872 * mail/rmailout.el (rmail-output-read-file-name):
3873 Fix previous change (when the alist is nil or does not match).
3874
3875 2012-08-19 Chong Yidong <cyd@gnu.org>
3876
3877 * xml.el (xml-escape-string): Don't refer to xml-entity-alist
3878 (Bug#12228).
3879
3880 2012-08-18 Chong Yidong <cyd@gnu.org>
3881
3882 * simple.el (yank-handled-properties): New defcustom.
3883 (yank-excluded-properties): Add font-lock-face and category.
3884 (yank): Doc fix.
3885
3886 * subr.el (remove-yank-excluded-properties):
3887 Obey yank-handled-properties. The special handling of font-lock-face
3888 and category is now done this way, instead of being hard-coded.
3889 (insert-for-yank-1): Remove font-lock-face handling.
3890 (yank-handle-font-lock-face-property)
3891 (yank-handle-category-property): New function.
3892
3893 2012-08-17 Glenn Morris <rgm@gnu.org>
3894
3895 * mail/rmailout.el (rmail-output-read-file-name):
3896 Check rmail-output-file-alist against the full message body
3897 in the correct rmail buffer. (Bug#12214)
3898
3899 2012-08-17 Michael Albinus <michael.albinus@gmx.de>
3900
3901 * net/tramp-sh.el (tramp-sh-handle-start-file-process):
3902 Eliminate superfluous prompt. (Bug#12203)
3903
3904 2012-08-17 Chong Yidong <cyd@gnu.org>
3905
3906 * mouse.el (mouse-appearance-menu): If x-select-font returns a
3907 font spec, set the font directly (Bug#3228).
3908
3909 2012-08-17 Martin Rudalics <rudalics@gmx.at>
3910
3911 * window.el (delete-window): Fix last fix.
3912
3913 2012-08-16 Martin Rudalics <rudalics@gmx.at>
3914
3915 * window.el (window-valid-p): Move to window.c.
3916 (window-child, window-child-count, window-last-child)
3917 (window-normalize-window, window-combined-p)
3918 (window-combinations, window-atom-root, window-min-size)
3919 (window-sizable, window-sizable-p, window-size-fixed-p)
3920 (window-min-delta, window-max-delta, window--resizable)
3921 (window--resizable-p, window-resizable, window-total-size)
3922 (window-full-height-p, window-full-width-p, window-body-size)
3923 (window-at-side-p, adjust-window-trailing-edge, maximize-window)
3924 (minimize-window, window-deletable-p, delete-window)
3925 (delete-other-windows, set-window-buffer-start-and-point)
3926 (next-buffer, previous-buffer, split-window, balance-windows-2)
3927 (set-window-text-height, window-buffer-height)
3928 (fit-window-to-buffer, shrink-window-if-larger-than-buffer)
3929 (truncated-partial-width-window-p): Minor code adjustments.
3930 In doc-strings state whether the argument window has to denote a
3931 live, valid or any window.
3932
3933 2012-08-16 Phil Sainty <psainty@orcon.net.nz> (tiny change)
3934
3935 * progmodes/subword.el (subword-forward-function)
3936 (subword-backward-function, subword-forward-regexp)
3937 (subword-backward-regexp): New variables.
3938 (subword-forward, subword-forward-internal, subword-backward-internal):
3939 Use new variables, eg so that different "word" definitions
3940 can be easily used. (Bug#11411)
3941
3942 2012-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
3943
3944 * vc/vc-mtn.el (vc-mtn-revision-completion-table): Handle completion
3945 for composite selectors.
3946 * vc/vc.el (vc-diff-build-argument-list-internal): Don't prevent
3947 operation just because we can't find a previous revision.
3948
3949 2012-08-15 Chong Yidong <cyd@gnu.org>
3950
3951 * frame.el (set-frame-font): Accept font objects.
3952
3953 2012-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
3954
3955 * textmodes/tex-mode.el (tex-insert-quote): ~ is a space (bug#12137).
3956
3957 2012-08-15 Wolfgang Jenkner <wjenkner@inode.at>
3958
3959 * man.el (Man-overstrike-face, Man-underline-face)
3960 (Man-reverse-face): Remove variables.
3961 (Man-overstrike, Man-underline, Man-reverse): New faces.
3962 (Man-fontify-manpage): Use them instead of the variables.
3963 (Man-cleanup-manpage): Comment change.
3964 (Man-ansi-color-map): New variable.
3965 (Man-fontify-manpage): Use it.
3966 Call ansi-color-apply-on-region to replace ad hoc code (bug#12147).
3967
3968 Implement ANSI SGR parameters 22-27 (bug#12146).
3969 * ansi-color.el (ansi-colors): Doc fix.
3970 (ansi-color-context, ansi-color-context-region): Doc fix.
3971 (ansi-color--find-face): New function.
3972 (ansi-color-apply, ansi-color-apply-on-region): Use it.
3973 Rename the local variable `face' to `codes' since it is now a list of
3974 ansi codes. Doc fix.
3975 (ansi-color-get-face): Remove.
3976 (ansi-color-parse-sequence): New function, derived from
3977 ansi-color-get-face.
3978 (ansi-color-apply-sequence): Use it. Rewrite, and support ansi
3979 codes 22-27.
3980
3981 2012-08-14 Stefan Monnier <monnier@iro.umontreal.ca>
3982
3983 * subr.el (read-passwd): Allow use from a minibuffer.
3984
3985 2012-08-14 Eli Zaretskii <eliz@gnu.org>
3986
3987 * tooltip.el (tooltip-identifier-from-point): Don't treat tokens
3988 inside comments and strings as identifiers.
3989
3990 * progmodes/gud.el (gud-tooltip-print-command): Quote the
3991 expression to evaluate. This allows to evaluate expressions with
3992 embedded whitespace.
3993 (gud-tooltip-tips): Add a blank before the newline in the
3994 message-box text, for the benefit of message-box emulation on
3995 MS-Windows.
3996
3997 * progmodes/gdb-mi.el (gdb-tooltip-print): Don't ignore error
3998 messages from GDB, pop them up in a tooltip to give feedback to
3999 user.
4000 (gdb-tooltip-print-1): Quote the expression to evaluate.
4001 This allows to evaluate expressions with embedded whitespace.
4002 (gdb-inferior-io--init-proc): Don't send "-inferior-tty" command
4003 if the TTY name is nil or empty (which happens when communicating
4004 with the inferior via pipes, e.g. on MS-Windows).
4005 (gdb-internals): If GDB sends a "&\n" empty debugging message,
4006 don't send that to the GUD buffer.
4007
4008 2012-08-14 Glenn Morris <rgm@gnu.org>
4009
4010 * emacs-lisp/bytecomp.el (byte-compile-setq-default):
4011 Optimize away setq-default with no args, as for setq. (Bug#12195)
4012
4013 2012-08-14 Chong Yidong <cyd@gnu.org>
4014
4015 * minibuffer.el (read-file-name): Doc fix (Bug#10881).
4016
4017 * emacs-lisp/regexp-opt.el (regexp-opt-charset): Doc fix
4018 (Bug#12085).
4019
4020 2012-08-14 Glenn Morris <rgm@gnu.org>
4021
4022 * emacs-lisp/bytecomp.el (byte-recompile-file): Doc fix.
4023
4024 2012-08-14 Michael Albinus <michael.albinus@gmx.de>
4025
4026 * net/tramp-sh.el (tramp-open-shell): Cache the shell name.
4027 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
4028 Use cached shell name.
4029
4030 2012-08-14 Fabián Ezequiel Gallina <fgallina@cuca>
4031
4032 * progmodes/python.el (python-shell-send-string):
4033 (python-shell-send-setup-code): Do not use `format' with `message'.
4034
4035 2012-08-14 Dmitry Gutov <dgutov@yandex.ru>
4036
4037 * progmodes/ruby-mode.el: Improve percent literals (bug#6286).
4038 (ruby-percent-literal-beg-re): New constant.
4039 (ruby-syntax-general-delimiters-goto-beg): Rename to
4040 `ruby-syntax-enclosing-percent-literal', improve literal type check.
4041 (ruby-syntax-propertize-general-delimiters): Rename to
4042 `ruby-syntax-propertize-percent-literal', it's a shorter and more
4043 popular term. Adjust comments everywhere.
4044 (ruby-syntax-propertize-percent-literal): Only propertize when not
4045 inside a simple string or comment. When the literal is unclosed,
4046 leave the text after it unpropertized.
4047 (ruby-syntax-methods-before-regexp): New constant.
4048 (ruby-syntax-propertize-function): Use it to recognize regexps.
4049 Don't look at the text after regexp, just use the whitelist.
4050
4051 2012-08-14 Andreas Schwab <schwab@linux-m68k.org>
4052
4053 * emacs-lisp/bytecomp.el (byte-recompile-file): When LOAD is
4054 non-nil always load the compiled file if it exists. (Bug#12197)
4055
4056 2012-08-14 Chong Yidong <cyd@gnu.org>
4057
4058 * hi-lock.el (hi-lock-mode): Do not unilaterally enable font lock.
4059 (hi-lock-set-pattern): When deciding whether to use font lock or
4060 overlays, look at font-lock-mode instead of font-lock-fontified
4061 (Bug#12168).
4062 (hi-lock-mode, hi-lock-line-face-buffer, hi-lock-unface-buffer)
4063 (hi-lock-face-buffer, hi-lock-face-phrase-buffer): Doc fix.
4064
4065 2012-08-14 Daiki Ueno <ueno@unixuser.org>
4066
4067 * subr.el (internal--after-with-selected-window): Fix typo
4068 (Bug#12193).
4069
4070 2012-08-14 Fabián Ezequiel Gallina <fgallina@cuca>
4071
4072 Use `completion-table-dynamic' for completion functions.
4073 * progmodes/python.el
4074 (python-shell-completion--do-completion-at-point)
4075 (python-shell-completion--get-completions):
4076 Remove functions.
4077 (python-shell-completion-complete-at-point): New function.
4078 (python-completion-complete-at-point): Use it.
4079
4080 2012-08-13 Jambunathan K <kjambunathan@gmail.com>
4081
4082 * vc/vc-dir.el (vc-dir-hide-state): New command (bug#12159).
4083 (vc-dir-hide-up-to-date): Route it to `vc-dir-hide-state'.
4084
4085 2012-08-13 Stefan Monnier <monnier@iro.umontreal.ca>
4086
4087 * subr.el (function-get): Refine `autoload' arg so it can also
4088 autoload functions for gv.el (bug#12191).
4089 * emacs-lisp/edebug.el (get-edebug-spec): Adjust so it only
4090 autoloads macros.
4091
4092 * color.el (color-xyz-to-lab, color-lab-to-xyz, color-cie-de2000):
4093 Prefer pcase-let over destructuring-bind.
4094 * vc/diff-mode.el (diff-remove-trailing-whitespace): Same.
4095 Also, remove whitespace as we go, rather than after accumulating the
4096 various places.
4097
4098 * subr.el (internal--before-with-selected-window)
4099 (internal--after-with-selected-window): Fix typo seleted->selected.
4100 (with-selected-window): Adjust callers.
4101 Reported by Dmitry Gutov <dgutov@yandex.ru>.
4102
4103 2012-08-13 Bastien Guerry <bzg@gnu.org>
4104
4105 * window.el (special-display-popup-frame): Minor docstring
4106 enhancement. (Bug#12172)
4107
4108 2012-08-13 Andreas Schwab <schwab@linux-m68k.org>
4109
4110 * tar-mode.el (tar-header-data-end): Only ignore size for files of
4111 type 1-6.
4112 (tar-header-block-summarize, tar-get-descriptor): Handle pax
4113 extended headers.
4114
4115 * files.el (hack-local-variables-filter): Remove useless eval.
4116
4117 2012-08-13 Martin Rudalics <rudalics@gmx.at>
4118
4119 * subr.el (with-selected-window): Fix last change.
4120
4121 2012-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
4122
4123 * subr.el (internal--before-with-seleted-window)
4124 (internal--after-with-seleted-window): New functions.
4125 (with-selected-window): Use them, to replace dependency on
4126 tty-top-frame.
4127
4128 2012-08-12 Nobuyoshi Nakada <nobu@ruby-lang.org>
4129
4130 * progmodes/ruby-mode.el (ruby-mode-map): Remove unnecessary
4131 binding for `newline'.
4132 (ruby-move-to-block): When moving backward, stop at block opening,
4133 not indentation.
4134 * progmodes/ruby-mode.el (ruby-brace-to-do-end)
4135 (ruby-do-end-to-brace, ruby-toggle-block): New functions.
4136 * progmodes/ruby-mode.el (ruby-mode-map): Add binding for
4137 `ruby-toggle-block'.
4138
4139 2012-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
4140
4141 * ibuffer.el (ibuffer-do-toggle-read-only):
4142 * dired.el (dired-toggle-read-only):
4143 * buff-menu.el (Buffer-menu-toggle-read-only):
4144 * bindings.el (mode-line-toggle-read-only):
4145 * bs.el (bs-toggle-readonly): Call toggle-read-only interactively.
4146
4147 2012-08-12 Andreas Schwab <schwab@linux-m68k.org>
4148
4149 * descr-text.el (describe-char): Put the overlays over the
4150 "displayed as" character.
4151
4152 2012-08-12 Jay Belanger <jay.p.belanger@gmail.com>
4153
4154 * calc/calc-units.el (math-default-units-table): Give an
4155 initial value.
4156 (math-put-default-units): Add options to put composite units and
4157 unit systems in the default units table.
4158 (calc-convert-units): Send composite units to
4159 `math-put-default-units' when appropriate.
4160
4161 2012-08-11 Glenn Morris <rgm@gnu.org>
4162
4163 * emacs-lisp/copyright.el (copyright-update-directory): Logic fix.
4164
4165 * tutorial.el (help-with-tutorial):
4166 * emacs-lisp/copyright.el (copyright-update-directory):
4167 * emacs-lisp/autoload.el (autoload-find-generated-file)
4168 (autoload-find-file): Disable local eval: (for insurance).
4169
4170 * files.el (hack-local-variables-filter): If an eval: form is not
4171 known to be safe, and enable-local-variables is :safe, then ignore
4172 the form totally, as is done for non-eval forms. (Bug#12155)
4173 This is CVE-2012-3479.
4174
4175 2012-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
4176
4177 * emacs-lisp/rx.el (rx-constituents): Don't define as constant.
4178 (rx-form): Simplify.
4179
4180 2012-08-09 Dmitry Gutov <dgutov@yandex.ru>
4181
4182 * progmodes/ruby-mode.el (ruby-expr-beg, ruby-parse-partial):
4183 ?, _, and : are symbol constituents, ! is not (but kinda should be).
4184 (ruby-syntax-propertize-heredoc): Use ruby-singleton-class-p.
4185 (ruby-syntax-propertize-function): Adjust for changes in
4186 `ruby-syntax-propertize-heredoc'.
4187
4188 2012-08-09 Nobuyoshi Nakada <nobu@ruby-lang.org>
4189
4190 * progmodes/ruby-mode.el (ruby-mode-map): Remove deprecated
4191 binding (use `M-;' instead).
4192 (ruby-singleton-class-p): New function.
4193 (ruby-expr-beg, ruby-in-here-doc-p) Use it.
4194
4195 2012-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
4196
4197 * emacs-lisp/cl-macs.el (cl-loop): Improve debug spec.
4198
4199 2012-08-10 Chong Yidong <cyd@gnu.org>
4200
4201 * progmodes/python.el (python-shell-get-process-name): Don't mess
4202 with same-window-buffer-names.
4203
4204 * eshell/eshell.el (eshell-add-to-window-buffer-names)
4205 (eshell-remove-from-window-buffer-names): Make obsolete.
4206 (eshell-buffer-name, eshell-unload-hook): Don't use them.
4207 (eshell): Just use pop-to-buffer-same-window instead.
4208
4209 2012-08-10 Chong Yidong <cyd@gnu.org>
4210
4211 * bindings.el: Bind M-= back to count-words-region.
4212
4213 * simple.el (count-words-region): Accept a prefix arg for acting
4214 on the entire buffer.
4215 (count-words--buffer-message): New helper function.
4216
4217 2012-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
4218
4219 * term/x-win.el (x-menu-bar-open): Always pass last-nonmenu-event.
4220 * subr.el (eventp): `nil' is not an event, and eventp is not hot.
4221 (event-start, event-end): Use posn-at-point to return a more
4222 informative posn.
4223 (posnp): New function.
4224 * mouse.el (popup-menu-normalize-position): Use it.
4225
4226 2012-08-10 Masatake YAMATO <yamato@redhat.com>
4227
4228 * mouse.el (popup-menu-normalize-position): New function.
4229 (popup-menu): Use `popup-menu-normalize-position' to normalize
4230 the form for POSITION argument.
4231
4232 * term/x-win.el (x-menu-bar-open):
4233 Use the value returend from (posn-at-point) as position
4234 passed to `popup-menu'.
4235
4236 2012-08-09 Jay Belanger <jay.p.belanger@gmail.com>
4237
4238 * calc/calccomp.el (math-compose-expr): Add extra argument
4239 indicating that parentheses should be put around products in
4240 denominators. Give multiplication precedence over division during
4241 composition.
4242
4243 2012-08-09 Chong Yidong <cyd@gnu.org>
4244
4245 * man.el (Man-switches, Man-sed-command, Man-awk-command)
4246 (Man-mode-hook, Man-cooked-hook, Man-untabify-command-args)
4247 (Man-untabify-command, manual-program): Convert to defcustom
4248 (Bug#10429).
4249
4250 * vc/add-log.el (change-log-mode): Bind comment-start to nil.
4251
4252 * descr-text.el (describe-char): Don't insert extra newlines
4253 (Bug#10127).
4254
4255 * vc/log-view.el (log-view-diff): Use use-region-p (Bug#10133).
4256 (log-view-diff-changeset, log-view-minor-wrap): Likewise.
4257
4258 * align.el (align-region): Delete temporary markers (Bug#10047).
4259 Plus some code cleanups.
4260
4261 2012-08-09 Fabián Ezequiel Gallina <fgallina@cuca>
4262
4263 * progmodes/python.el (python-pdbtrack-tracked-buffer)
4264 (python-pdbtrack-buffers-to-kill, python-shell-internal-buffer)
4265 (python-shell-internal-last-output): Use make-local-variable
4266 instead of make-variable-buffer-local.
4267
4268 2012-08-09 Fabián Ezequiel Gallina <fgallina@cuca>
4269
4270 * progmodes/python.el: Enhancements to forward-sexp.
4271 (python-nav-forward-sexp): Rename from
4272 python-nav-forward-sexp-function.
4273 (python-nav--forward-sexp, python-nav--backward-sexp):
4274 New functions.
4275
4276 2012-08-09 Jay Belanger <jay.p.belanger@gmail.com>
4277
4278 * calc/calc-menu.el (calc-modes-menu): Add entries for matrix
4279 modes and simplification modes.
4280
4281 2012-08-09 Stefan Monnier <monnier@iro.umontreal.ca>
4282
4283 * delsel.el (delete-selection-pre-hook): Don't propagate the
4284 file-supersession signals (bug#12161).
4285
4286 2012-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
4287
4288 * emacs-lisp/cl.el (cl-map-keymap-recursively, cl-map-intervals)
4289 (cl-map-extents): Add compatibility aliases (bug#12135).
4290
4291 2012-08-08 Michael Albinus <michael.albinus@gmx.de>
4292
4293 * net/tramp-sh.el (tramp-find-file-exists-command): Protect the
4294 tests by `ignore-error'.
4295 (tramp-find-shell): Open also a new shell, when cache is already
4296 set. Reported by Carsten Bormann <cabo@tzi.org>. (Bug#12148)
4297
4298 2012-08-08 Juri Linkov <juri@jurta.org>
4299
4300 * bookmark.el: Add `defaults' property to the bookmark record.
4301 (bookmark-current-buffer): Doc fix.
4302 (bookmark-make-record): Add `defaults' property with default values
4303 to the bookmark record.
4304 (bookmark-minibuffer-read-name-map): Remove key binding "\C-u"
4305 with `bookmark-insert-current-bookmark'.
4306 (bookmark-set): Get `defaults' property from the bookmark record
4307 and use it in `read-from-minibuffer'.
4308 (bookmark-insert-current-bookmark): Remove function.
4309
4310 * info.el (Info-bookmark-make-record): Add `defaults' property
4311 with values of canonical Info node name, the current Info file
4312 name and the current Info node name. (Bug#12107)
4313
4314 2012-08-08 Juri Linkov <juri@jurta.org>
4315
4316 * files.el (basic-save-buffer): Use `buffer-name' as the default
4317 of `read-file-name' when buffer is not visiting a file (bug#12128).
4318
4319 2012-08-08 Juri Linkov <juri@jurta.org>
4320
4321 * info.el (Info-isearch-search): Doc fix.
4322 (Info-search): Change search-failed message from "initial node" to
4323 "end of node" (bug#12078).
4324 (Info-isearch-search): Change `isearch-string-state' to
4325 `isearch--state-string'.
4326
4327 2012-08-08 Glenn Morris <rgm@gnu.org>
4328
4329 * language/persian.el: Remove file.
4330 * language/misc-lang.el: Move unique part of persian.el here.
4331 * loadup.el: Remove language/persian.
4332
4333 2012-08-08 Óscar Fuentes <ofv@wanadoo.es>
4334
4335 * vc/diff-mode.el (diff-remove-trailing-whitespace): New function.
4336
4337 2012-08-08 Fabián Ezequiel Gallina <fgallina@cuca>
4338
4339 * progmodes/python.el: Fix defsubst warning.
4340 (python-syntax-context) Rename from python-info-ppss-context.
4341 (python-syntax-context-type): Rename from
4342 python-info-ppss-context-type.
4343 (python-syntax-comment-or-string-p): Rename from
4344 python-info-ppss-comment-or-string-p.
4345
4346 2012-08-08 Jay Belanger <jay.p.belanger@gmail.com>
4347
4348 * calc/calc-misc.el (calc-record-why): Don't record a message twice.
4349
4350 2012-08-07 Andreas Schwab <schwab@linux-m68k.org>
4351
4352 * emacs-lisp/lisp-mode.el (eval-defun-1): Handle standard value of
4353 a defcustom that is quoted with backquote.
4354
4355 * calc/calc-prog.el (math-do-defmath): Use backquote forms.
4356 Fix handling of interactive spec when the body uses return.
4357 (math-do-arg-check, math-define-function-body): Use backquote forms.
4358 * calc/calc-ext.el (math-defcache): Likewise.
4359 * calc/calc-rewr.el (math-rwfail, math-rweval): Likewise.
4360 * allout.el (allout-new-exposure): Likewise.
4361 * calc/calcalg2.el (math-tracing-integral): Likewise.
4362 * info.el (Info-last-menu-item): Likewise.
4363 * emulation/vip.el (vip-loop): Likewise.
4364 * textmodes/artist.el (artist-funcall): Likewise.
4365 * menu-bar.el (menu-bar-make-mm-toggle, menu-bar-make-toggle):
4366 Construct menu-item directly.
4367
4368 * progmodes/autoconf.el (font-lock-syntactic-keywords):
4369 Don't declare.
4370
4371 2012-08-07 Chong Yidong <cyd@gnu.org>
4372
4373 * simple.el (deactivate-mark): Preserve text properties when
4374 saving the primary selection (Bug#8384).
4375
4376 2012-08-07 Kevin Ryde <user42@zip.com.au>
4377
4378 * woman.el (woman0-if): Quietly treat ".if v" as false (Bug#12109).
4379 (woman-parse-numeric-value): On a bad .IP line, issue a warning
4380 and continue processing (Bug#12110).
4381
4382 2012-08-06 Stefan Monnier <monnier@iro.umontreal.ca>
4383
4384 * progmodes/cperl-mode.el (cperl-mode): Yet another fix for
4385 syntax-propertize-function (bug#10095).
4386
4387 2012-08-06 Stefan Monnier <monnier@iro.umontreal.ca>
4388
4389 * help-fns.el (help-fns--key-bindings, help-fns--signature)
4390 (help-fns--parent-mode, help-fns--obsolete): New funs, extracted from
4391 describe-function-1.
4392 (describe-function-1): Use them. Move compiler macro after sig.
4393 (help-fns--compiler-macro): Use function-get. Assume we're already in
4394 standard-output. Adjust layout to new call order.
4395
4396 * emacs-lisp/cl-macs.el (cl--sm-macroexpand): Fix handling of
4397 re-binding a symbol that has a symbol-macro (bug#12119).
4398
4399 2012-08-06 Mohsen BANAN <libre@mohsen.1.banan.byname.net>
4400
4401 * language/persian.el: New file. (Bug#11812)
4402 * loadup.el: Add language/persian.el.
4403
4404 2012-08-06 Chong Yidong <cyd@gnu.org>
4405
4406 * window.el (window--maybe-raise-frame): New function.
4407 (window--display-buffer): Split off from here.
4408 (display-buffer-reuse-window, display-buffer-pop-up-frame)
4409 (display-buffer-pop-up-window, display-buffer-use-some-window):
4410 Obey an inhibit-switch-frame action alist entry.
4411 (display-buffer): Update doc.
4412
4413 * replace.el (occur-after-change-function): Avoid losing focus by
4414 using the inhibit-switch-frame display parameter (Bug#12139).
4415
4416 2012-08-06 Fabián Ezequiel Gallina <fgallina@cuca>
4417
4418 Make internal shell process buffer names start with space.
4419 * progmodes/python.el (python-shell-make-comint): Add optional
4420 argument INTERNAL.
4421 (run-python-internal): Use it.
4422 (python-shell-internal-get-or-create-process): Check for new
4423 internal buffer names.
4424
4425 2012-08-06 Glenn Morris <rgm@gnu.org>
4426
4427 * eshell/esh-ext.el (eshell/addpath): Use dolist and mapconcat.
4428 Do less getting and setting of environment variables.
4429
4430 2012-08-05 Chong Yidong <cyd@gnu.org>
4431
4432 * proced.el (proced): Add substitution string to docstring to
4433 trigger autoloading of the proced library on C-h f (Bug#1768).
4434
4435 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
4436 Don't show defvars which have no second argument (Bug#8638).
4437
4438 * imenu.el (imenu-generic-expression): Move documentation here
4439 from imenu--generic-function.
4440 (imenu--generic-function): Refer to imenu-generic-expression.
4441
4442 2012-08-05 Vegard Øye <vegard_oye@hotmail.com> (tiny change)
4443
4444 * emulation/viper-init.el (viper-deflocalvar): Add docstring and
4445 indentation declaration.
4446 (viper-loop): Add indentation declaration (Bug#7025).
4447
4448 2012-08-05 Chong Yidong <cyd@gnu.org>
4449
4450 * help-fns.el (describe-variable): Add hyperlink for
4451 directory-local variables files. Improve buffer-local and
4452 permanent-local reporting; suggested by MON KEY (Bug#6644).
4453
4454 * help-mode.el (help-dir-local-var-def): New button type.
4455
4456 * files.el (kill-buffer-hook): Provide a defvar.
4457
4458 2012-08-05 Glenn Morris <rgm@gnu.org>
4459
4460 * eshell/esh-ext.el (eshell/addpath):
4461 Also update eshell-path-env. (Bug#12013)
4462
4463 2012-08-05 Chong Yidong <cyd@gnu.org>
4464
4465 * wdired.el (wdired-mode, wdired-change-to-wdired-mode): Doc fixes.
4466
4467 * fringe.el (fringe-styles): Add docstring.
4468 (fringe--check-mode): New function.
4469 (set-fringe-mode, set-fringe-style): Use it.
4470 (fringe-mode, set-fringe-style): Doc fixes (Bug#6480).
4471
4472 * files.el (set-auto-mode): Fix invalid setq call.
4473
4474 2012-08-04 Stefan Monnier <monnier@iro.umontreal.ca>
4475
4476 * isearch.el: Misc simplification; use defstruct.
4477 (isearch-mode-map): Dense maps now work like sparse ones.
4478 (isearch--state): New defstruct.
4479 (isearch-string-state, isearch-message-state, isearch-point-state)
4480 (isearch-success-state, isearch-forward-state)
4481 (isearch-other-end-state, isearch-word-state, isearch-error-state)
4482 (isearch-wrapped-state, isearch-barrier-state)
4483 (isearch-case-fold-search-state, isearch-pop-fun-state): Remove,
4484 replaced by defstruct's accessors.
4485 (isearch--set-state): Rename from isearch-top-state and change
4486 calling convention.
4487 (isearch-push-state): Use new isearch--get-state.
4488 (isearch-toggle-word): Disable regexp when enabling word.
4489 (isearch-message-prefix): Remove unused arg _c-q-hack.
4490 (isearch-message-suffix): Remove unused arg _ellipsis.
4491
4492 2012-08-04 Andreas Schwab <schwab@linux-m68k.org>
4493
4494 * simple.el (list-processes--refresh): For a server use :host or
4495 :local as the address.
4496 (list-processes): Doc fix.
4497
4498 2012-08-04 Michal Nazarewicz <mina86@mina86.com>
4499
4500 * lisp/mpc.el: Support password in host argument.
4501 (mpc--proc-connect): Parse and use new password element.
4502 Set mpc-proc variable instead of returning process.
4503 (mpc-proc): Adjust accordingly.
4504
4505 2012-08-03 Eli Zaretskii <eliz@gnu.org>
4506
4507 * whitespace.el (whitespace-display-mappings): Use Unicode
4508 codepoints, instead of emacs-mule codepoints. See
4509 http://lists.gnu.org/archive/html/help-gnu-emacs/2012-07/msg00366.html
4510 for the details.
4511
4512 * files.el (file-truename): Don't skip symlink-chasing part on
4513 windows-nt. Incorporate the resolution of 8+3 short aliases on
4514 Windows into the loop that recursively chases symlinks.
4515 Compare directory and its parent case-insensitively on MS-Windows and
4516 MS-DOS.
4517
4518 2012-08-03 Chong Yidong <cyd@gnu.org>
4519
4520 * menu-bar.el (menu-bar-tools-menu): Remove PCL-CVS.
4521
4522 * sort.el (sort-regexp-fields): Doc fix.
4523
4524 2012-08-03 Tassilo Horn <tsdh@gnu.org>
4525
4526 * textmodes/reftex.el (reftex-compile-variables): Make keyvals
4527 labels regex position point at the expected place.
4528
4529 2012-08-03 MON KEY <monkey@sandpframing.com>
4530
4531 * net/imap.el (imap-interactive-login, imap-authenticate)
4532 (imap-mailbox-lsub, imap-mailbox-list)
4533 (imap-mailbox-status-asynch, imap-mailbox-acl-delete)
4534 (imap-fetch, imap-message-flag-permanent-p, imap-envelope-from)
4535 (imap-parse-response): Doc fix.
4536
4537 2012-08-03 João Távora <joaotavora@gmail.com>
4538
4539 * textmodes/tex-mode.el (latex-forward-sexp): Terminate the loop
4540 if sexp scanning does not move point (Bug#5734).
4541
4542 2012-08-02 Tassilo Horn <tsdh@gnu.org>
4543
4544 * textmodes/reftex-vars.el (reftex-default-label-alist-entries):
4545 Add listings, minted, and ctable packages.
4546 (reftex-label-alist-builtin): Move listings, minted, and ctable
4547 entries before LaTeX.
4548 (reftex-label-alist): Docfix.
4549
4550 2012-08-02 Bastien Guerry <bzg@gnu.org>
4551
4552 * replace.el (occur): Fix docstring (bug#12122).
4553
4554 2012-08-02 Glenn Morris <rgm@gnu.org>
4555
4556 * emacs-lisp/authors.el (authors-renamed-files-alist): Add ms-w32.h.
4557
4558 2012-08-02 Paul Eggert <eggert@cs.ucla.edu>
4559
4560 Obsolete alias inactivate-current-input-method-function (Bug#10150).
4561 * international/mule-cmds.el: Create
4562 inactivate-current-input-method-function as an obsolete alias for
4563 deactivate-current-input-method-function. See Katsumi Yamaoka in
4564 <http://bugs.gnu.org/10150#46>.
4565
4566 2012-08-01 Jay Belanger <jay.p.belanger@gmail.com>
4567
4568 * calc/calc-mode.el (calc-set-simplify-mode): Use `cond' instead
4569 of nested `if's.
4570
4571 2012-08-01 Glenn Morris <rgm@gnu.org>
4572
4573 * progmodes/autoconf.el (autoconf-definition-regexp):
4574 Add AH_TEMPLATE, adjust submatch numbering.
4575 (autoconf-font-lock-keywords, autoconf-imenu-generic-expression)
4576 (autoconf-current-defun-function): Update for above change.
4577 (autoconf-current-defun-function): First skip to end of current word.
4578
4579 2012-08-01 Rupert Swarbrick <rswarbrick@gmail.com> (tiny change)
4580
4581 * calendar/cal-html.el (cal-html-insert-agenda-days):
4582 Fix typo. (Bug#12018)
4583
4584 2012-07-31 Fabián Ezequiel Gallina <fgallina@cuca>
4585
4586 Shell processes: enhancements to startup and CEDET compatibility.
4587 * progmodes/python.el (python-shell-send-setup-max-wait): Delete var.
4588 (python-shell-make-comint): accept-process-output at startup.
4589 (run-python-internal): Set inferior-python-mode-hook to nil.
4590 (python-shell-internal-get-or-create-process): call sit-for.
4591 (python-preoutput-result): Add obsolete alias.
4592 (python-shell-internal-send-string): Use it.
4593 (python-shell-send-setup-code): Remove call to
4594 accept-process-output.
4595
4596 2012-07-31 Andreas Schwab <schwab@linux-m68k.org>
4597
4598 * buff-menu.el (list-buffers-noselect): Use prefix-numeric-value.
4599 (Bug#12108)
4600
4601 2012-07-31 Jay Belanger <jay.p.belanger@gmail.com>
4602
4603 * calc-mode.el (calc-basic-simplification-mode): Rename from
4604 `calc-limited-simplification-mode'.
4605 (calc-alg-simplification-mode): New function.
4606 (calc-set-simplify-mode): Adjust message.
4607
4608 * calc.el (calc-set-mode-line): Adjust mode line display for
4609 basic simplification mode.
4610
4611 * calc-help.el (calc-m-prefix-help): Update help message.
4612
4613 * calc-ext.el (calc-init-extensions): Add bindings and autoloads
4614 for `calc-basic-simplify-mode' and `calc-alg-simplify-mode'.
4615
4616 2012-07-31 Bastien Guerry <bzg@gnu.org>
4617
4618 * man.el (man): Fix comment. (bug#12101)
4619
4620 2012-07-31 Martin Rudalics <rudalics@gmx.at>
4621
4622 * window.el (switch-to-prev-buffer, switch-to-next-buffer):
4623 Don't return a non-nil value when no suitable buffer was found.
4624
4625 2012-07-31 Fabián Ezequiel Gallina <fgallina@cuca>
4626
4627 * progmodes/python.el (run-python-internal): Disable font lock for
4628 internal shells.
4629
4630 2012-07-30 Stefan Merten <smerten@oekonux.de>
4631
4632 * textmodes/rst.el: Silence `checkdoc-ispell'.
4633 (rst-cvs-header, rst-svn-rev, rst-svn-timestamp)
4634 (rst-official-version, rst-official-cvs-rev)
4635 (rst-package-emacs-version-alist): Update to upstream V1.3.1.
4636 (rst-mode-map): New key binding.
4637
4638 2012-07-30 Paul Eggert <eggert@cs.ucla.edu>
4639
4640 Update .PHONY listings in makefiles.
4641 * Makefile.in (.PHONY): Add all, doit, custom-deps, finder-data,
4642 autoloads, update-subdirs, updates, bzr-update, update-authors,
4643 compile-onefile, compile-calc, backup-compiled-files,
4644 compile-after-backup, compile-one-process, mh-autoloads,
4645 bootstrap-clean, distclean, maintainer-clean.
4646
4647 2012-07-29 Jay Belanger <jay.p.belanger@gmail.com>
4648
4649 * calc/calc.el (calc-simplify-mode): Make 'alg the default value.
4650 (calc-set-mode-line): Don't display "AlgSimp ".
4651
4652 * calc/calc-mode.el (calc-alg-simplify-mode): Remove function.
4653 (calc-lim-simplify-mode): New function.
4654 (calc-set-simplify-mode): Default to 'alg.
4655 (calc-default-simplify-mode): Make algebraic simplifications
4656 the default.
4657
4658 * calc/calc-ext.el (calc-init-extensions): Remove binding for
4659 `calc-alg-simplify-mode'. Add binding for `calc-lim-simplify-mode'.
4660
4661 * calc/calc-help.el (calc-m-prefix-help): Change messages to
4662 indicate new simplification modes.
4663
4664 * calc/README: Mention new default simplification mode.
4665
4666 * calc/calc.el (math-normalize-error): New variable.
4667 (math-normalize): Set `math-normalize-error' to t
4668 when there's an error.
4669
4670 * calc/calc-alg.el (math-simplify): Don't simplify when
4671 `math-normalize' returns an error.
4672
4673 2012-07-29 Eli Zaretskii <eliz@gnu.org>
4674
4675 * international/mule-cmds.el (set-locale-environment): Revert last
4676 change, since display-graphic-p returns nil when this function is
4677 called during startup. Instead...
4678
4679 * term/w32console.el (terminal-init-w32console): ...setup the
4680 keyboard and terminal encoding for TTY sessions here. (Bug#12082)
4681
4682 2012-07-29 Juri Linkov <juri@jurta.org>
4683
4684 * simple.el (goto-line): Don't display default line number in the
4685 prompt because it should be displayed by `read-number' (bug#9952).
4686 Add the current line number to the defaults of `goto-line' to
4687 allow its easier modification by users with `M-n' (bug#9201).
4688
4689 * subr.el (read-number): Support multiple default values like in
4690 other minibuffer reading functions. Replace `read' with
4691 `string-to-number' for consistency with `number-to-string'.
4692
4693 2012-07-29 Paul Eggert <eggert@cs.ucla.edu>
4694
4695 deactive->inactive, inactivate->deactivate spelling fixes (Bug#10150)
4696 * emulation/viper-init.el (viper-deactivate-input-method-action):
4697 Rename from viper-inactivate-input-method-action.
4698 (viper-deactivate-input-method):
4699 Rename from viper-inactivate-input-method.
4700 * follow.el (follow-inactive-menu): Rename from follow-deactive-menu.
4701 * international/mule-cmds.el (deactivate-input-method):
4702 Rename from inactivate-input-method.
4703 Also run input-method-deactivate-hook.
4704 (deactivate-current-input-method-function):
4705 Rename from inactivate-current-input-method-function.
4706 (input-method-deactivate-hook): New hook.
4707 (input-method-inactivate-hook): Mark obsolete.
4708 (inactivate-input-method): Mark obsolete.
4709
4710 * international/quail.el (quail-activate):
4711 Also run quail-deactivate-hook.
4712 (quail-deactivate): Rename from quail-inactivate.
4713 * international/robin.el (robin-activate):
4714 Also run robin-deactivate-hook.
4715 (robin-deactivate): Rename from robin-inactivate.
4716
4717 2012-07-29 Chong Yidong <cyd@gnu.org>
4718
4719 * simple.el (indicate-copied-region): New function.
4720 (kill-ring-save): Split off from here.
4721
4722 * rect.el (copy-rectangle-as-kill): Call indicate-copied-region.
4723 (kill-rectangle): Set deactivate-mark to t on read-only error.
4724
4725 * register.el (copy-to-register, copy-rectangle-to-register):
4726 Deactivate the mark, and use indicate-copied-region (Bug#10056).
4727 (append-to-register, prepend-to-register): Call indicate-copied-region.
4728
4729 2012-07-29 Juri Linkov <juri@jurta.org>
4730
4731 * simple.el (async-shell-command-buffer): New defcustom.
4732 (shell-command): Use it. (Bug#4719)
4733
4734 2012-07-28 Eli Zaretskii <eliz@gnu.org>
4735
4736 * international/mule-cmds.el (set-locale-environment): In a
4737 console session on MS-Windows, set up keyboard and terminal
4738 encoding from the OEM codepage, not the ANSI codepage.
4739 (Bug#12055)
4740
4741 2012-07-28 Chong Yidong <cyd@gnu.org>
4742
4743 * progmodes/gdb-mi.el (gdb-place-breakpoints): Fix the call to
4744 gdb-get-location.
4745
4746 2012-07-28 Leo Liu <sdl.web@gmail.com>
4747
4748 * progmodes/cc-menus.el (cc-imenu-objc-function): Avoid leaving nil in
4749 the alist (bug#12029).
4750
4751 2012-07-28 Eli Zaretskii <eliz@gnu.org>
4752
4753 * makefile.w32-in (custom-deps, finder-data, updates, compile)
4754 (compile-always, compile-first)
4755 ($(lisp)/calendar/cal-loaddefs.el)
4756 ($(lisp)/calendar/diary-loaddefs.el)
4757 ($(lisp)/calendar/hol-loaddefs.el, $(lisp)/mh-e/mh-loaddefs.el)
4758 ($(lisp)/net/tramp-loaddefs.el, bootstrap)
4759 ($(lisp)/progmodes/cc-mode.elc): Depend on $(lisp)subdirs.el,
4760 instead of on update-subdirs.
4761 (bootstrap-clean): Delete $(lisp)/subdirs.el.
4762
4763 2012-07-28 Chong Yidong <cyd@gnu.org>
4764
4765 * vc/vc.el (vc-root-diff, vc-print-root-log): Prompt for a
4766 directory if vc-deduce-backend returns nil (Bug#7350).
4767
4768 * simple.el (delete-trailing-lines): New option.
4769 (delete-trailing-whitespace): Obey it (Bug#11879).
4770
4771 2012-07-28 David Engster <deng@randomsample.de>
4772
4773 * xml.el (xml-node-name, xml-parse-file, xml-parse-region):
4774 Explanation of new 'symbol-qnames feature in doc-strings.
4775 (xml-maybe-do-ns): Return expanded names as plain symbols if
4776 'symbol-qnames was provided in XML-NS argument (Bug#11916).
4777 (xml-parse-tag-1): Deal with new definition of PARSE-NS argument.
4778
4779 2012-07-27 Fabián Ezequiel Gallina <fgallina@cuca>
4780
4781 Consistent completion in inferior python with emacs -nw.
4782 * progmodes/python.el (inferior-python-mode): replace "<tab>"
4783 binding in inferior-python-mode-map with "\t".
4784 (python-shell-completion-complete-at-point)
4785 (python-completion-complete-at-point): Remove interactive spec.
4786
4787 2012-07-27 Jay Belanger <jay.p.belanger@gmail.com>
4788
4789 * calc/calccomp.el (math-compose-expr): Undo previous change.
4790
4791 2012-07-27 Fabián Ezequiel Gallina <fgallina@cuca>
4792
4793 * progmodes/python.el (python-mode-map): Add keybinding for
4794 run-python.
4795 (python-shell-make-comint): Fix pop-to-buffer call.
4796 (run-python): Autoload. New arg SHOW.
4797 (python-shell-get-or-create-process): Do not pop python process
4798 buffer.
4799
4800 2012-07-27 Michael Albinus <michael.albinus@gmx.de>
4801
4802 * notifications.el (notifications-on-action-signal)
4803 (notifications-on-closed-signal): Use also the bus address for the map.
4804 (notifications-notify, notifications-close-notification)
4805 (notifications-get-capabilities): Add optional argument BUS.
4806
4807 2012-07-27 Tassilo Horn <tsdh@gnu.org>
4808
4809 * textmodes/reftex-vars.el (reftex-label-alist-builtin):
4810 Add support for the lstlisting and minted environments, and for the
4811 ctable macro.
4812 * textmodes/reftex.el (reftex-compile-variables): Also recognize
4813 labels written in keyvals syntax.
4814
4815 2012-07-27 Jay Belanger <jay.p.belanger@gmail.com>
4816
4817 * calc/calccomp.el (math-compose-expr): Use parentheses when
4818 there is a product in the denominator of a fraction.
4819
4820 2012-07-26 Eli Zaretskii <eliz@gnu.org>
4821
4822 * makefile.w32-in ($(lisp)/calendar/cal-loaddefs.el)
4823 ($(lisp)/calendar/diary-loaddefs.el)
4824 ($(lisp)/calendar/hol-loaddefs.el, $(lisp)/mh-e/mh-loaddefs.el)
4825 ($(lisp)/net/tramp-loaddefs.el): Depend on update-subdirs.
4826 Fixes failures in parallel bootstrap because subdirs.el is being
4827 rewritten while the autoload files are built at the same time,
4828 which needs to load subdirs.el.
4829
4830 2012-07-26 Martin Rudalics <rudalics@gmx.at>
4831
4832 * mouse.el (popup-menu): Fix doc-string and re-indent code.
4833 (mouse-drag-line): Don't exit tracking when a switch-frame or
4834 switch-window event occurs (Bug#12006).
4835
4836 2012-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
4837
4838 * mouse.el (popup-menu): Fix last change.
4839
4840 2012-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
4841
4842 Autoload from Lisp with more care. Follow aliases when looking for
4843 function properties.
4844 * subr.el (autoloadp): New function.
4845 (symbol-file): Use it.
4846 (function-get): New function.
4847 * emacs-lisp/macroexp.el (macroexp--expand-all): Use function-get and
4848 autoload-do-load.
4849 * emacs-lisp/lisp-mode.el (lisp-font-lock-syntactic-face-function)
4850 (lisp-indent-function):
4851 * emacs-lisp/gv.el (gv-get):
4852 * emacs-lisp/edebug.el (get-edebug-spec, edebug-basic-spec):
4853 * emacs-lisp/byte-opt.el (byte-optimize-form):
4854 * emacs-lisp/bytecomp.el (byte-compile-arglist-warn):
4855 * emacs-lisp/autoload.el (make-autoload, autoload-print-form):
4856 Use function-get.
4857 * emacs-lisp/cl.el: Don't propagate function properties any more.
4858
4859 * speedbar.el (speedbar-add-localized-speedbar-support):
4860 * emacs-lisp/disass.el (disassemble-internal):
4861 * desktop.el (desktop-load-file):
4862 * help-fns.el (help-function-arglist, find-lisp-object-file-name)
4863 (describe-function-1):
4864 * emacs-lisp/find-func.el (find-function-noselect):
4865 * emacs-lisp/elp.el (elp-instrument-function):
4866 * emacs-lisp/advice.el (ad-has-proper-definition):
4867 * apropos.el (apropos-safe-documentation, apropos-macrop):
4868 * emacs-lisp/debug.el (debug-on-entry):
4869 * emacs-lisp/cl-macs.el (cl-compiler-macroexpand):
4870 * emacs-lisp/byte-opt.el (byte-compile-inline-expand):
4871 * calc/calc.el (name): Use autoloadp & autoload-do-load.
4872
4873 2012-07-25 Alp Aker <alp.tekin.aker@gmail.com>
4874
4875 * international/mule-cmds.el (ucs-insert): Mark it as an obsolete
4876 function, not an obsolete variable (Bug#12046).
4877
4878 2012-07-25 Andreas Schwab <schwab@linux-m68k.org>
4879
4880 * faces.el (face-spec-reset-face): Fix last change. (Bug#12042)
4881
4882 2012-07-25 Christopher Schmidt <christopher@ch.ristopher.com>
4883
4884 * emacs-lisp/pp.el (pp-display-expression): Select old selected
4885 window only if it is still live (Bug#12034).
4886
4887 2012-07-25 Martin Rudalics <rudalics@gmx.at>
4888
4889 * subr.el (redirect-frame-focus): Add advertised calling
4890 convention (Bug#12030).
4891
4892 2012-07-25 Paul Eggert <eggert@cs.ucla.edu>
4893
4894 Prefer typical American spelling for "acknowledgment".
4895 * vc/add-log.el (change-log-acknowledgment): Rename from
4896 change-log-acknowledgement, with an alias for the old name.
4897
4898 2012-07-25 Jay Belanger <jay.p.belanger@gmail.com>
4899
4900 * calc-alg.el (math-simplify-divide): Don't cross multiply
4901 in an equation when the lhs is a variable.
4902
4903 2012-07-24 Julien Danjou <julien@danjou.info>
4904
4905 * net/netrc.el (netrc-find-service-number, netrc-store-data):
4906 Remove, unused.
4907
4908 2012-07-23 Eli Zaretskii <eliz@gnu.org>
4909
4910 * startup.el (command-line): Don't display an empty user name in
4911 the error message about non-existent home directory, when
4912 init-file-user was set to an empty string. See
4913 http://lists.gnu.org/archive/html/bug-gnu-emacs/2012-07/msg00835.html
4914 for the details and context.
4915
4916 2012-07-22 Vincent Belaïche <vincentb1@users.sourceforge.net>
4917
4918 * ses.el (ses-cell-formula-aset): New macro.
4919 (ses-cell-references-aset): New macro.
4920 (ses-cell-p): New function.
4921 (ses-rename-cell): Do no longer rely on complex operations like
4922 ses-cell-set-formula or ses-set-cell to change the cell and handle
4923 the undo at the same time, but rather use lower level new macros
4924 `ses-cell-formula-aset' and `ses-cell-references-aset' and handle
4925 the undo directly. Refresh the mode line.
4926
4927 2012-07-21 Leo Liu <sdl.web@gmail.com>
4928
4929 * progmodes/cc-cmds.el (c-defun-name):
4930 Use match-string-no-properties instead for consistency.
4931
4932 2012-07-20 Leo Liu <sdl.web@gmail.com>
4933
4934 * progmodes/cc-cmds.el (c-defun-name): Handle objc selectors properly.
4935 (Bug#7879)
4936
4937 * progmodes/cc-langs.el (c-symbol-start): Include char _ (bug#11986).
4938
4939 2012-07-20 Stefan Monnier <monnier@iro.umontreal.ca>
4940
4941 * userlock.el, emacs-lisp/map-ynp.el: Declare part of `emacs' package.
4942 * progmodes/bug-reference.el, misearch.el: Provide themselves
4943 (bug#11915).
4944
4945 * progmodes/cperl-mode.el (cperl-unwind-to-safe): Don't inf-loop at end
4946 of narrowed buffer (bug#11966).
4947
4948 2012-07-20 Vincent Belaïche <vincentb1@users.sourceforge.net>
4949
4950 * ses.el (ses-rename-cell): Set new name also in reference list of
4951 cells of which the renamed cell depends.
4952
4953 2012-07-20 Masatake YAMATO <yamato@redhat.com>
4954
4955 * term/x-win.el (x-menu-bar-open): Use `frame-parameter'
4956 to check whether menu-bar is shown or not. If not shown,
4957 show the menu-bar as a popup menu instead of using tmm.
4958 * mouse.el (popup-menu): Accept `point' as `position' argument.
4959
4960 2012-07-20 Dmitry Gutov <dgutov@yandex.ru>
4961
4962 * progmodes/ruby-mode.el (ruby-parse-partial): No error when end
4963 up inside string symbol literal (bug#11923).
4964
4965 2012-07-20 Eli Zaretskii <eliz@gnu.org>
4966
4967 * startup.el (fancy-startup-text): Read the whole tutorial, not
4968 just its first 256 bytes. Prevents gibberish in display of the
4969 tutorial title.
4970
4971 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
4972
4973 Drop idle buffer compaction due to an absence of the
4974 proved efficiency.
4975 * compact.el: Remove.
4976
4977 2012-07-19 Sam Steingold <sds@gnu.org>
4978
4979 * vc/vc-dispatcher.el (vc-compilation-mode): Add, based on
4980 vc-bzr-pull & vc-bzr-merge-branch.
4981 * vc/vc-bzr.el (vc-bzr-pull, vc-bzr-merge-branch): Use it.
4982 (vc-bzr-error-regexp-alist): Rename from vc-bzr-error-regex-alist
4983 for consistency with compilation-error-regexp-alist.
4984 * vc/vc-git.el (vc-git-error-regexp-alist): Add.
4985 (vc-git-pull, vc-git-merge-branch): Call vc-compilation-mode.
4986 * vc/vc-hg.el (vc-hg-error-regexp-alist): Add.
4987 (vc-hg-pull, vc-hg-merge-branch): Call vc-compilation-mode.
4988
4989 2012-07-19 Stefan Monnier <monnier@iro.umontreal.ca>
4990
4991 * emacs-lisp/chart.el: Use lexical-binding.
4992 (chart-emacs-storage): Don't hardcode the list of entries.
4993
4994 2012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
4995
4996 Next round of tweaks caused by Fgarbage_collect changes.
4997 * emacs-lisp/chart.el (chart-emacs-storage): Adjust again.
4998
4999 2012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
5000
5001 Compact buffers when idle.
5002 * compact.el: New file.
5003
5004 2012-07-19 Stefan Monnier <monnier@iro.umontreal.ca>
5005
5006 * subr.el (eventp): Presume that if it looks vaguely like an event,
5007 it's an event (bug#10190).
5008
5009 2012-07-19 Fabián Ezequiel Gallina <fgallina@cuca>
5010
5011 Enhancements to ppss related code (thanks Stefan).
5012 * progmodes/python.el (python-indent-context)
5013 (python-indent-calculate-indentation, python-indent-dedent-line)
5014 (python-indent-electric-colon, python-nav-forward-block)
5015 (python-mode-abbrev-table)
5016 (python-info-assignment-continuation-line-p): Simplify checks
5017 for ppss context.
5018 (python-info-continuation-line-p): Cleanup.
5019 (python-info-ppss-context): Do not catch 'quote.
5020 (python-info-ppss-context-type)
5021 (python-info-ppss-comment-or-string-p): Simplify.
5022
5023 2012-07-18 Fabián Ezequiel Gallina <fgallina@cuca>
5024
5025 * progmodes/python.el: Enhancements to eldoc support.
5026 (python-info-current-symbol): New function.
5027 (python-eldoc-at-point): Use python-info-current-symbol.
5028 (python-info-current-defun): Fix cornercase on first defun scan.
5029 (python-eldoc--get-doc-at-point): Use python-info-current-symbol
5030 and signal error when no inferior python process is available.
5031
5032 2012-07-18 Dmitry Gutov <dgutov@yandex.ru>
5033
5034 * vc/vc-git.el (vc-git-state): Don't call `vc-git-registered',
5035 assume it's always t.
5036 (vc-git-registered): Remove caching, the function is only called
5037 once.
5038 (vc-git-branches): Use `vc-git--call' instead of `call-process'.
5039
5040 2012-07-18 Chong Yidong <cyd@gnu.org>
5041
5042 * subr.el (last-input-char, last-command-char): Remove (Bug#9195).
5043
5044 * simple.el (count-words): Report on narrowing (Bug#9959).
5045
5046 * bindings.el: Bind M-= to count-words.
5047
5048 * faces.el (face-spec-reset-face): Handle reverse video (Bug#4238).
5049
5050 2012-07-18 Masatake YAMATO <yamato@redhat.com>
5051
5052 * progmodes/sh-script.el (sh-imenu-generic-expression):
5053 Capture a function with `function' keyword and without parentheses
5054 like "function FOO" (bug#11856).
5055
5056 2012-07-18 Tassilo Horn <tassilo@member.fsf.org>
5057
5058 * window.el (split-window-sensibly): Make WINDOW argument
5059 optional.
5060
5061 2012-07-18 Chong Yidong <cyd@gnu.org>
5062
5063 * subr.el (keyboard-translate): Doc fix (Bug#7261).
5064
5065 * isearch.el (isearch-mode-map): Handle C-x 8 key translations,
5066 and make C-x 8 RET exit isearch (Bug#11439).
5067
5068 * international/iso-transl.el: Move isearch-mode-map key
5069 definitions to isearch.el.
5070
5071 2012-07-18 Stefan Monnier <monnier@iro.umontreal.ca>
5072
5073 * emacs-lisp/eieio.el: Adapt further to gv.el (bug#11970).
5074 (eieio-defclass): Use gv-define-setter when possible.
5075
5076 2012-07-18 Dmitry Antipov <dmantipov@yandex.ru>
5077
5078 Reflect recent changes in Fgarbage_collect.
5079 * emacs-lisp/chart.el (chart-emacs-storage): Change to
5080 reflect new format of data returned by Fgarbage_collect.
5081
5082 2012-07-17 Fabián Ezequiel Gallina <fgallina@cuca>
5083
5084 New utility functions + python-info-ppss-context fix (Bug#11910).
5085 * progmodes/python.el (python-info-beginning-of-block-statement-p)
5086 (python-info-ppss-comment-or-string-p): New functions.
5087 (python-info-ppss-context): Small fix for string check.
5088
5089 2012-07-17 Juri Linkov <juri@jurta.org>
5090
5091 * dired-aux.el (dired-do-async-shell-command): Doc fix.
5092 (dired-do-async-shell-command): Don't add `*' at the end of the
5093 command (Bug#11815).
5094 (dired-do-shell-command): Doc fix.
5095 (dired-shell-stuff-it): Strip the trailing "&" and ";" if any.
5096 Join the individual commands using either "&" or ";" as the
5097 separator depending on the values of these trailing characters.
5098 At the end re-add the trailing "&". (Bug#10598)
5099
5100 * simple.el (async-shell-command): Sync the interactive spec with
5101 `shell-command'. Doc fix.
5102 (shell-command): Doc fix.
5103
5104 2012-07-17 Juri Linkov <juri@jurta.org>
5105
5106 * descr-text.el (describe-char): Fix format args. (Bug#10129)
5107
5108 2012-07-17 Fabián Ezequiel Gallina <fgallina@cuca>
5109
5110 Final renames and doc fixes for movement commands (bug#11899).
5111 * progmodes/python.el (python-nav-beginning-of-statement):
5112 Rename from python-nav-statement-start.
5113 (python-nav-end-of-statement): Rename from
5114 python-nav-statement-end.
5115 (python-nav-beginning-of-block): Rename from
5116 python-nav-block-start.
5117 (python-nav-end-of-block): Rename from python-nav-block-end.
5118
5119 2012-07-17 Fabián Ezequiel Gallina <fgallina@cuca>
5120
5121 * progmodes/python.el (python-shell-send-string-no-output):
5122 Allow accept-process-output to quit, keeping shell process ready for
5123 future interactions (Bug#11868).
5124
5125 2012-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
5126
5127 * emacs-lisp/cl-macs.el (cl-progv): Use a properly prefixed var name.
5128
5129 * emacs-lisp/elint.el (elint-find-args-in-code):
5130 Use help-function-arglist, so as to handle lexical byte-code.
5131
5132 * progmodes/sh-script.el (sh-syntax-propertize-function): Fix last
5133 change (bug#11826).
5134
5135 2012-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
5136
5137 * progmodes/cc-engine.el (c-forward-sws, c-backward-sws):
5138 Avoid spuriously marking the buffer as modified because of c-is-sws.
5139
5140 * progmodes/sh-script.el (sh-syntax-propertize-function): Mark "${#VAR"
5141 as not-a-comment (bug#11946).
5142
5143 * emacs-lisp/macroexp.el (macroexp-let2): Use more informative names
5144 for uninterned vars.
5145
5146 * xt-mouse.el (xterm-mouse-translate-1, xterm-mouse-event-read):
5147 Use read-event since we don't really want to read chars but bytes.
5148
5149 * textmodes/tex-mode.el (tex-font-lock-keywords-1): Highlight not only
5150 $$..$$ but also $..$ using regexps (bug#11953).
5151 Use tex-verbatim for \url and \path.
5152 (tex-font-lock-keywords): Define as defconst like the others.
5153 (tex-common-initialization): Don't use font-lock-syntax-table any more.
5154
5155 2012-07-16 René Kyllingstad <Rene@Kyllingstad.com> (tiny change)
5156
5157 * international/mule-cmds.el (ucs-insert): Make it an obsolete
5158 alias for insert-char.
5159
5160 2012-07-16 Fabián Ezequiel Gallina <fgallina@cuca>
5161
5162 * progmodes/python.el: Simplified imenu implementation.
5163 (python-nav-jump-to-defun): Remove command.
5164 (python-mode-map): Use `imenu' instead.
5165 (python-nav-list-defun-positions-cache)
5166 (python-imenu-include-defun-type, python-imenu-make-tree)
5167 (python-imenu-subtree-root-label, python-imenu-index-alist):
5168 Remove vars.
5169 (python-nav-list-defun-positions, python-nav-read-defun)
5170 (python-imenu-tree-assoc, python-imenu-make-element-tree)
5171 (python-imenu-make-tree, python-imenu-create-index):
5172 Remove functions.
5173 (python-mode): Update to interact with imenu by setting
5174 `imenu-extract-index-name-function' only.
5175
5176 2012-07-16 Fabián Ezequiel Gallina <fgallina@cuca>
5177
5178 * progmodes/python.el: Enhancements to navigation commands.
5179 (python-nav-backward-sentence)
5180 (python-nav-forward-sentence): Remove.
5181 (python-nav-backward-statement, python-nav-forward-statement)
5182 (python-nav-statement-start, python-nav-statement-end)
5183 (python-nav-backward-block, python-nav-forward-block)
5184 (python-nav-block-start, python-nav-block-end)
5185 (python-nav-forward-sexp-function)
5186 (python-info-current-line-comment-p)
5187 (python-info-current-line-empty-p): New functions.
5188 (python-indent-context): Use `python-nav-statement-start'.
5189
5190 2012-07-16 Michael Albinus <michael.albinus@gmx.de>
5191
5192 * eshell/em-ls.el (eshell/ls): Use `apply'.
5193
5194 * eshell/em-unix.el (eshell/su, eshell/sudo): Apply Tramp's ad-hoc
5195 multi-hops, instead of Tramp internals.
5196
5197 * vc/ediff.el (ediff-directories): Add trailing space to prompts.
5198
5199 * vc/ediff-diff.el (ediff-same-file-contents): Handle the case,
5200 when F1 and F2 are located on different hosts.
5201
5202 2012-07-14 Chong Yidong <cyd@gnu.org>
5203
5204 * xt-mouse.el: Implement extended mouse coordinates (Bug#10642).
5205 (xterm-mouse-translate): Move code into xterm-mouse-translate-1.
5206 (xterm-mouse-translate-extended, xterm-mouse-translate-1)
5207 (xterm-mouse--read-event-sequence-1000)
5208 (xterm-mouse--read-event-sequence-1006): New functions. For old
5209 mouse protocol, handle M-mouse-X events correctly.
5210 (xterm-mouse-event): New arg specifying mouse protocol.
5211 (turn-on-xterm-mouse-tracking-on-terminal)
5212 (turn-off-xterm-mouse-tracking-on-terminal): Send DEC 1006
5213 sequence to toggle extended coordinates on newer XTerms.
5214 This appears to be harmless on terminals which do not support this.
5215
5216 2012-07-14 Leo Liu <sdl.web@gmail.com>
5217
5218 Add fringe bitmap indicators for flymake. (Bug#11253)
5219 * progmodes/flymake.el (flymake-highlight-line): Use fringe bitmaps.
5220 (flymake-make-overlay): New arg BITMAP.
5221 (flymake-error-bitmap, flymake-warning-bitmap)
5222 (flymake-fringe-indicator-position): New user variables.
5223
5224 * fringe.el: New bitmap exclamation-mark.
5225
5226 2012-07-14 Jan Djärv <jan.h.d@swipnet.se>
5227
5228 * progmodes/cc-cmds.el (c-defun-name): Recognize Objective-C methods
5229 also (Bug#7879).
5230
5231 2012-07-14 Chong Yidong <cyd@gnu.org>
5232
5233 * electric.el (electric-pair-post-self-insert-function): Fix pair
5234 insertion in empty-region case (Bug#11520).
5235
5236 2012-07-14 Chong Yidong <cyd@gnu.org>
5237
5238 * bindings.el: Consolidate ctl-x-r-map bindings.
5239 Bind copy-rectangle-as-kill to C-x r w.
5240
5241 * rect.el, register.el: Move bindings to bindings.el.
5242
5243 2012-07-14 Reuben Thomas <rrt@sc3d.org>
5244
5245 * rect.el (copy-rectangle-as-kill): New command (Bug#739).
5246
5247 2012-07-13 Andreas Schwab <schwab@linux-m68k.org>
5248
5249 * emacs-lisp/cl.el (labels): Remove spurious quote. (Bug#11938)
5250
5251 2012-07-13 Juanma Barranquero <lekktu@gmail.com>
5252
5253 * bindings.el (top): Use `mapc' instead of `mapcar'.
5254
5255 * loadup.el (top): Remove bogus `if' choice (brought by 2008-06-21T01:38:39Z!monnier@iro.umontreal.ca).
5256
5257 2012-07-13 Michael Albinus <michael.albinus@gmx.de>
5258
5259 * progmodes/sql.el (sql-comint): Suppress the check for program on
5260 remote hosts. Reported by Francis Devereux <francis@devrx.org>.
5261 (Bug#11908)
5262
5263 2012-07-13 Chong Yidong <cyd@gnu.org>
5264
5265 * bindings.el: Assign a non-nil permanent-local property to
5266 per-buffer variables which lack a default value (Bug#11930).
5267
5268 * help-fns.el (describe-variable): In the "automatically becomes
5269 local" notice, take note of permanent-local variables.
5270
5271 2012-07-13 Chong Yidong <cyd@gnu.org>
5272
5273 * files.el (toggle-read-only): Doc fix and code cleanup. New arg
5274 to allow printing the message when called from Lisp.
5275
5276 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
5277 Remove toggle-read-only.
5278
5279 * bs.el (bs-toggle-readonly):
5280 * buff-menu.el (Buffer-menu-toggle-read-only):
5281 Remove with-no-warnings around toggle-read-only.
5282
5283 * ffap.el (ffap--toggle-read-only): Accept a list of buffers.
5284 Remove with-no-warnings around toggle-read-only.
5285 (ffap-read-only, ffap-read-only-other-window)
5286 (ffap-read-only-other-frame): Callers changed.
5287
5288 * help-mode.el: Don't require view package.
5289 (help-mode-finish): Set buffer-read-only instead of calling
5290 toggle-read-only.
5291
5292 * bindings.el (mode-line-toggle-read-only):
5293 * dired.el (dired-toggle-read-only):
5294 * ibuffer.el (ibuffer-do-toggle-read-only): Call toggle-read-only
5295 with non-nil second arg.
5296
5297 * emacs-lisp/eieio-custom.el (eieio-customize-object):
5298 * vc/ediff.el (ediff-set-read-only-in-buf-A): Set buffer-read-only
5299 directly.
5300
5301 2012-07-12 Eli Zaretskii <eliz@gnu.org>
5302
5303 * emacs-lisp/bytecomp.el (byte-recompile-directory): Use cl-incf,
5304 not incf.
5305
5306 2012-07-11 Stefan Monnier <monnier@iro.umontreal.ca>
5307
5308 More CL cleanups and reduction of use of cl.el.
5309 * woman.el, winner.el, vc/vc-rcs.el, vc/vc-hooks.el, vc/vc-hg.el:
5310 * vc/vc-git.el, vc/vc-dir.el, vc/vc-bzr.el, vc/vc-annotate.el:
5311 * textmodes/tex-mode.el, textmodes/sgml-mode.el, tar-mode.el:
5312 * strokes.el, ses.el, server.el, progmodes/js.el, progmodes/gdb-mi.el:
5313 * progmodes/flymake.el, progmodes/ebrowse.el, progmodes/compile.el:
5314 * play/tetris.el, play/snake.el, play/pong.el, play/landmark.el:
5315 * play/hanoi.el, play/decipher.el, play/5x5.el, nxml/nxml-mode.el:
5316 * net/secrets.el, net/quickurl.el, midnight.el, mail/footnote.el:
5317 * image-dired.el, ibuffer.el, ibuf-macs.el, ibuf-ext.el, hexl.el:
5318 * eshell/eshell.el, eshell/esh-io.el, eshell/esh-ext.el:
5319 * eshell/esh-cmd.el, eshell/em-ls.el, eshell/em-hist.el:
5320 * eshell/em-cmpl.el, eshell/em-banner.el:
5321 * calendar/parse-time.el: Use cl-lib.
5322 * wid-browse.el, wdired.el, vc/vc.el, vc/vc-mtn.el, vc/vc-cvs.el:
5323 * vc/vc-arch.el, tree-widget.el, textmodes/texinfo.el:
5324 * textmodes/refill.el, textmodes/css-mode.el, term/tvi970.el:
5325 * term/ns-win.el, term.el, shell.el, ps-samp.el:
5326 * progmodes/perl-mode.el, progmodes/pascal.el, progmodes/gud.el:
5327 * progmodes/glasses.el, progmodes/etags.el, progmodes/cwarn.el:
5328 * play/gamegrid.el, play/bubbles.el, novice.el, notifications.el:
5329 * net/zeroconf.el, net/xesam.el, net/snmp-mode.el, net/mairix.el:
5330 * net/ldap.el, net/eudc.el, net/browse-url.el, man.el:
5331 * mail/mailheader.el, mail/feedmail.el: Don't use CL.
5332 * ibuf-ext.el (ibuffer-mark-old-buffers): Use float-time.
5333 * eshell/esh-opt.el (eshell-eval-using-options): Quote code with
5334 `lambda' rather than with `quote'.
5335 (eshell-do-opt): Adjust accordingly.
5336 (eshell-process-option): Simplify.
5337 * eshell/esh-var.el:
5338 * eshell/em-script.el: Require `esh-opt' for eshell-eval-using-options.
5339 * emacs-lisp/pcase.el (pcase--dontcare-upats, pcase--let*)
5340 (pcase--expand, pcase--u1): Rename pcase's internal `dontcare' pattern
5341 to `pcase--dontcare'.
5342 * emacs-lisp/cl.el (labels): Mark obsolete.
5343 (cl--letf, letf): Move to cl-lib.
5344 (cl--letf*, letf*): Remove.
5345 * emacs-lisp/cl-lib.el (cl-nth-value): Use defalias.
5346 * emacs-lisp/cl-macs.el (cl-dolist, cl-dotimes): Add indent rule.
5347 (cl-progv): Rewrite.
5348 (cl--letf, cl-letf): Move from cl.el.
5349 (cl-letf*): New macro.
5350 * emacs-lisp/cl-extra.el (cl--progv-before, cl--progv-after): Remove.
5351
5352 2012-07-11 Michael Albinus <michael.albinus@gmx.de>
5353
5354 * net/ange-ftp.el (ange-ftp-cf1): Update the files cache.
5355
5356 2012-07-11 Chong Yidong <cyd@gnu.org>
5357
5358 * vc/log-edit.el (log-edit-vc-backend): New variable.
5359 (log-edit): Doc fix.
5360
5361 * vc/vc-dispatcher.el (vc-log-edit): New args. Use PARAMS
5362 argument of log-edit to set up all local variables.
5363 (vc-start-logentry): New optional arg specifying VC backend.
5364
5365 * vc/vc.el (vc-checkin): Use it.
5366 (vc-deduce-fileset): Handle Log Edit buffers.
5367 (vc-diff): Make first argument optional too.
5368
5369 * vc/log-view.el (log-view-vc-fileset, log-view-vc-backend): Doc fix.
5370
5371 2012-07-10 Michael Albinus <michael.albinus@gmx.de>
5372
5373 * eshell/esh-ext.el (eshell-remote-command): Remove remote part of
5374 command, just in case. The function is not needed anymore.
5375 (eshell-external-command): Do not call `eshell-remote-command'.
5376
5377 2012-07-10 Stefan Monnier <monnier@iro.umontreal.ca>
5378
5379 Reduce use of (require 'cl).
5380 * vc/smerge-mode.el, vc/pcvs.el, vc/pcvs-util.el, vc/pcvs-info.el:
5381 * vc/diff-mode.el, vc/cvs-status.el, uniquify.el, scroll-bar.el:
5382 * register.el, progmodes/sh-script.el, net/gnutls.el, net/dbus.el:
5383 * msb.el, mpc.el, minibuffer.el, international/ucs-normalize.el:
5384 * international/quail.el, info-xref.el, imenu.el, image-mode.el:
5385 * font-lock.el, filesets.el, edmacro.el, doc-view.el, bookmark.el:
5386 * battery.el, avoid.el, abbrev.el: Use cl-lib.
5387 * vc/pcvs-parse.el, vc/pcvs-defs.el, vc/log-view.el, vc/log-edit.el:
5388 * vc/diff.el, simple.el, pcomplete.el, lpr.el, comint.el, loadhist.el:
5389 * jit-lock.el, international/iso-ascii.el, info.el, frame.el, bs.el:
5390 * emulation/crisp.el, electric.el, dired.el, cus-dep.el, composite.el:
5391 * calculator.el, autorevert.el, apropos.el: Don't require CL.
5392 * emacs-lisp/bytecomp.el (byte-recompile-directory, display-call-tree)
5393 (byte-compile-unfold-bcf, byte-compile-check-variable):
5394 * emacs-lisp/byte-opt.el (byte-compile-trueconstp)
5395 (byte-compile-nilconstp):
5396 * emacs-lisp/autoload.el (make-autoload): Use pcase.
5397 * face-remap.el (text-scale-adjust): Simplify pcase patterns.
5398
5399 * emacs-lisp/gv.el (cond): Make it a valid place.
5400 (if): Simplify slightly.
5401
5402 * emacs-lisp/pcase.el (pcase): Accept self-quoting exps as "upatterns".
5403 (pcase--self-quoting-p): New function.
5404 (pcase--u1): Use it.
5405
5406 2012-07-10 Glenn Morris <rgm@gnu.org>
5407
5408 * emacs-lisp/authors.el (authors-fixed-entries):
5409 (authors-renamed-files-alist): Update for configure.in -> configure.ac.
5410
5411 2012-07-09 Paul Eggert <eggert@cs.ucla.edu>
5412
5413 Rename configure.in to configure.ac (Bug#11603).
5414 * emacs-lisp/authors.el (authors-canonical-file-name):
5415 * progmodes/autoconf.el (autoconf-mode):
5416 Prefer configure.ac to configure.in.
5417
5418 2012-07-08 Chong Yidong <cyd@gnu.org>
5419
5420 * mouse.el (mouse-drag-line): Rewrite the track-mouse loop.
5421 Implement the mouse-1-click-follows-link handling properly.
5422
5423 * info.el (Info-link-keymap): Use follow-link mechanism for
5424 header-line links (Bug#374).
5425
5426 * simple.el (deactivate-mark): Do not set the primary selection
5427 if another program has acquired it (Bug#11772).
5428
5429 2012-07-07 Kevin Ryde <user42@zip.com.au>
5430
5431 * woman.el (woman-strings): Fix double-quote handling (Bug#1151).
5432 (woman-decode-region): Replace escaped-escapes without destroying
5433 bold or underline (Bug#11552).
5434 (woman2-process-escapes): Handle nofill regions (Bug#11591).
5435
5436 2012-07-07 Chong Yidong <cyd@gnu.org>
5437
5438 * simple.el (yank-pop-change-selection): Doc fix (Bug#11361).
5439 (interprogram-cut-function, interprogram-paste-function):
5440 Mention that we typically mean the clipboard.
5441
5442 2012-07-06 Glenn Morris <rgm@gnu.org>
5443
5444 * kmacro.el (kmacro-call-macro): Restore repeat message. (Bug#11817)
5445
5446 * files.el (toggle-read-only): Restrict message to interactive use.
5447
5448 2012-07-06 Michael Albinus <michael.albinus@gmx.de>
5449
5450 * net/tramp.el (tramp-restricted-shell-hosts-alist): New defcustom.
5451
5452 * net/tramp-sh.el (tramp-maybe-open-connection): Handle it.
5453
5454 2012-07-06 Glenn Morris <rgm@gnu.org>
5455
5456 * Makefile.in (compile-one-process): Rename from "recompile".
5457
5458 * Makefile.in (bzr-update): "compile" is the same as "recompile
5459 autoloads", but parallelizable, so use that instead.
5460
5461 2012-07-06 Dmitry Gutov <dgutov@yandex.ru>
5462
5463 * window.el (quit-window): Always restore window height when
5464 it's saved in quit-restore parameter (Bug#11810).
5465
5466 2012-07-06 Glenn Morris <rgm@gnu.org>
5467
5468 * simple.el (kill-whole-line): Doc tweak.
5469
5470 2012-07-06 Eli Zaretskii <eliz@gnu.org>
5471
5472 * files.el (file-relative-name): Compare file names
5473 case-insensitively if on MS-Windows or MS-DOS, or if
5474 read-file-name-completion-ignore-case is non-nil. Don't use
5475 case-fold-search for this purpose. (Bug#11827)
5476
5477 2012-07-17 Andreas Schwab <schwab@linux-m68k.org>
5478
5479 * calendar/cal-dst.el (calendar-current-time-zone):
5480 Return calendar-current-time-zone-cache if non-nil.
5481
5482 2012-07-17 Masatake YAMATO <yamato@redhat.com>
5483 2012-07-06 Andreas Schwab <schwab@linux-m68k.org>
5484
5485 * calendar/cal-dst.el (calendar-current-time-zone):
5486 Return calendar-current-time-zone-cache if non-nil.
5487
5488 2012-07-06 Glenn Morris <rgm@gnu.org>
5489
5490 * Makefile.in (cvs-update): Remove old alias.
5491
5492 2012-07-05 Michael Albinus <michael.albinus@gmx.de>
5493
5494 Sync with Tramp 2.2.6-pre.
5495
5496 * net/tramp.el (tramp-drop-volume-letter): Provide an XEmacs
5497 compatible declaration.
5498
5499 * net/tramp-cmds.el (tramp-append-tramp-buffers):
5500 Protect `list-load-path-shadows' call.
5501
5502 * net/tramp-compat.el (top): Require packages, which aren't
5503 autoloaded anymore for XEmacs. Protect call of
5504 `tramp-file-name-handler' by `tramp-compat-funcall', pacifying the
5505 compiler. Do not require tramp-util.el and tramp-vc.el anymore,
5506 it hurts at least for SXEmacs.
5507 (tramp-compat-temporary-file-directory): In XEmacs, there is no
5508 standard-value for `temporary-file-directory'.
5509
5510 * net/tramp-sh.el (tramp-do-directory-files-and-attributes-with-stat):
5511 Redirect stderr to /dev/null.
5512 (tramp-sh-handle-write-region): uid and gid can be floats.
5513 Reported by Russell Sim <russell.sim@gmail.com>.
5514 (tramp-sh-handle-vc-registered): Hide errors.
5515 (tramp-vc-file-name-handler): Use dummy results for `process-file'
5516 and `start-file-process'.
5517 (tramp-maybe-open-connection): Check also whether `non-essential'
5518 is bound.
5519
5520 2012-07-04 Chong Yidong <cyd@gnu.org>
5521
5522 * xml.el (xml--parse-buffer): Use xml-syntax-table.
5523 (xml-parse-tag): Likewise, and avoid changing entity tables.
5524 (xml-syntax-table): Define from scratch, making sure not to give
5525 x2000 and other Unicode spaces whitespace syntax, since those are
5526 not spaces in XML.
5527 (xml-parse-fragment): Delete unused function.
5528 (xml-name-start-char-re, xml-name-char-re, xml-name-re)
5529 (xml-names-re, xml-nmtoken-re, xml-nmtokens-re, xml-char-ref-re)
5530 (xml-entity-ref, xml-pe-reference-re)
5531 (xml-reference-re,xml-att-value-re, xml-tokenized-type-re)
5532 (xml-notation-type-re, xml-enumeration-re, xml-enumerated-type-re)
5533 (xml-att-type-re, xml-default-decl-re, xml-att-def-re)
5534 (xml-entity-value-re): Use syntax references in regexps where
5535 possible; no need to define inside a let-binding.
5536 (xml-parse-dtd): Use xml-pe-reference-re.
5537 (xml-entity-or-char-ref-re): New defconst.
5538 (xml-parse-string, xml-substitute-special): Use it.
5539
5540 2012-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
5541
5542 * files.el (locate-dominating-file): Allow `name' to be a predicate.
5543 (find-file--read-only): New function.
5544 (find-file-read-only, find-file-read-only-other-window)
5545 (find-file-read-only-other-frame): Use it.
5546 (insert-file-contents-literally): Don't `fset'.
5547 (get-free-disk-space): Use locate-dominating-file.
5548
5549 * emacs-lisp/bytecomp.el (byte-compile): Don't signal an error if the
5550 function is already compiled.
5551
5552 * xml.el (xml-name-regexp): Remove, redundant. Use xml-name-re.
5553
5554 2012-07-03 Michael Albinus <michael.albinus@gmx.de>
5555
5556 * vc/ediff-diff.el (ediff-same-file-contents): Fix it for remote
5557 files on the same host.
5558
5559 2012-07-03 Andreas Schwab <schwab@linux-m68k.org>
5560
5561 * help-fns.el (describe-function-1): Only call
5562 help-fns--autoloaded-p when we have a file name. (Bug#11848)
5563
5564 2012-07-03 Chong Yidong <cyd@gnu.org>
5565
5566 * xml.el: Protect parser against XML bombs.
5567 (xml-entity-expansion-limit): New variable.
5568 (xml-parse-string, xml-substitute-special): Use it.
5569 (xml-parse-dtd): Avoid infloop if the DTD is not terminated.
5570
5571 2012-07-03 Glenn Morris <rgm@gnu.org>
5572
5573 * progmodes/bug-reference.el (bug-reference-bug-regexp):
5574 Allow linking to specific messages in debbugs reports (eg 123#5).
5575
5576 2012-07-02 Chong Yidong <cyd@gnu.org>
5577
5578 * xml.el: Fix entity and character reference expansion, allowing
5579 them to expand into markup as per XML spec.
5580 (xml-default-ns): New variable.
5581 (xml-entity-alist): Use XML spec definitions for lt and amp.
5582 (xml-parse-region): Make first two arguments optional.
5583 Discard text properties.
5584 (xml-parse-tag-1): New function, spun off from xml-parse-tag.
5585 All callers changed.
5586 (xml-parse-tag): Call xml-parse-tag-1. For backward
5587 compatibility, this function should not modify buffer contents.
5588 (xml-parse-tag-1): Fix opening-tag regexp.
5589 (xml-parse-string): Rewrite, handling entity and character
5590 references properly.
5591 (xml--entity-replacement-text): Signal an error if a parameter
5592 entity is undefined.
5593
5594 2012-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
5595
5596 * comint.el (comint-output-filter): Filter out repeated prompts.
5597
5598 * net/ange-ftp.el (ange-ftp-expand-file-name): Use ange-ftp-ftp-name
5599 and file-name-absolute-p.
5600 (ange-ftp-file-exists-p): Use ange-ftp-file-exists-p for
5601 internal calls.
5602
5603 2012-07-02 Paul Eggert <eggert@cs.ucla.edu>
5604
5605 Spelling fixes.
5606 * emacs-lisp/bytecomp.el (byte-compile--reify-function):
5607 Rename from byte-compile--refiy-function. All uses changed.
5608
5609 2012-07-01 Chong Yidong <cyd@gnu.org>
5610
5611 * xml.el (xml--parse-buffer): New function. Move most of
5612 xml-parse-region here.
5613 (xml-parse-region): Copy region into a temporary buffer, since
5614 parameter entity substitution requires changing buffer contents.
5615 Use xml--parse-buffer.
5616 (xml-parse-file): Use xml--parse-buffer.
5617 (xml-parse-dtd): Make parameter entity substitution work right.
5618 Use proper regexps for ELEMENT declarations (Bug#7172).
5619
5620 2012-06-30 Glenn Morris <rgm@gnu.org>
5621
5622 * comint.el (follow-comint-scroll-to-bottom): Fix declaration.
5623
5624 * net/secrets.el, net/tramp-gvfs.el, net/xesam.el, net/zeroconf.el:
5625 Remove outdated and unnecessary dbus declarations.
5626
5627 2012-06-30 Eli Zaretskii <eliz@gnu.org>
5628
5629 * emacs-lisp/timer.el (timer-until): Subtract results of
5630 float-time, instead of taking float-time of the result of
5631 time-subtract, since float-time signals an error for negative time
5632 arguments.
5633
5634 2012-06-30 Chong Yidong <cyd@gnu.org>
5635
5636 * xml.el (xml-*-re): Convert defvars into defconsts, and
5637 eval-and-compile them so eval-and-compile works on derivatives.
5638 (xml--entity-replacement-text): Use eval-and-comple.
5639
5640 2012-06-30 Michael Albinus <michael.albinus@gmx.de>
5641
5642 * vc/vc-git.el (vc-git-registered): Use cache property
5643 `git-registered'.
5644 (vc-git-mode-line-string): Call `vc-working-revision' instead of
5645 `vc-git-working-revision' in order to benefit from the cache.
5646 (vc-git-root): Use cache property `git-root'. (Bug#11757)
5647
5648 2012-06-30 Dmitry Gutov <dgutov@yandex.ru>
5649
5650 * vc/vc-hooks.el (vc-before-save): Clear cache if file has been
5651 removed (likely outside Emacs). (Bug#11757)
5652
5653 2012-06-30 Stefan Monnier <monnier@iro.umontreal.ca>
5654
5655 * emacs-lisp/cl-lib.el: Require macroexp.
5656
5657 2012-06-30 Chong Yidong <cyd@gnu.org>
5658
5659 * xml.el: Implement XML parameter entities.
5660 (xml-parameter-entity-alist): New variable.
5661 (xml-parse-region, xml-parse-fragment): Preserve previous values
5662 of xml-entity-alist and xml-parameter-entity-alist, so that
5663 repeated calls on different documents do not change them.
5664 (xml-parse-tag): Fix doctype regexp.
5665 (xml--entity-replacement-text): New function.
5666 (xml-parse-dtd): Use it. Don't handle system entities; doing that
5667 properly requires url retrieval which is unimplemented.
5668 (xml-escape-string): Doc fix.
5669
5670 2012-06-30 Stefan Monnier <monnier@iro.umontreal.ca>
5671
5672 * emacs-lisp/cl-lib.el (cl-pushnew): Use macroexp-let2.
5673
5674 2012-06-29 Dmitry Antipov <dmantipov@yandex.ru>
5675
5676 * fringe.el (fringe-mode): Doc fix.
5677
5678 2012-06-29 Michael Albinus <michael.albinus@gmx.de>
5679
5680 * net/ange-ftp.el (ange-ftp-get-passwd): Throw if `non-essential'
5681 is non-nil.
5682 (ange-ftp-ignore-errors-if-non-essential): New defmacro.
5683 (ange-ftp-file-name-all-completions): Use it. (Bug#11808)
5684
5685 2012-06-29 Andreas Schwab <schwab@linux-m68k.org>
5686
5687 * calendar/cal-dst.el (calendar-current-time-zone):
5688 Return calendar-current-time-zone-cache if non-nil.
5689
5690 2012-06-29 Masatake YAMATO <yamato@redhat.com>
5691
5692 * progmodes/which-func.el (which-func-format):
5693 Add mouse-face. (Bug#11698)
5694
5695 2012-06-29 Leo Liu <sdl.web@gmail.com>
5696
5697 * textmodes/enriched.el (enriched-next-annotation): Use eq (Bug#11528).
5698
5699 2012-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
5700
5701 * minibuffer.el (minibuffer-confirm-exit-commands):
5702 Add completion-at-point (bug#11725).
5703
5704 2012-06-29 Glenn Morris <rgm@gnu.org>
5705
5706 * progmodes/f90.el (f90-font-lock-keywords-2):
5707 Add some preprocessor elements. (Bug#10499)
5708
5709 2012-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
5710
5711 * progmodes/cperl-mode.el (cperl-update-syntaxification):
5712 Use syntax-propertize (bug#11739).
5713
5714 2012-06-28 Juanma Barranquero <lekktu@gmail.com>
5715
5716 * emacs-lisp/cl-lib.el (cl-pushnew): Don't capture X (bug#11811).
5717
5718 2012-06-28 Julien Danjou <julien@danjou.info>
5719
5720 * term.el (term-handle-colors-array): Use a set of new faces to
5721 color the terminal. Also uses :inverse-video property.
5722 (term-default-fg-color): Set to nil by default, deprecate in favor
5723 of `term-face'.
5724 (term-default-bg-color): Set to nil by default, deprecate in favor
5725 of `term-face'.
5726 (term-current-face): Use `term-face' by default.
5727 (term-bold-attribute): Variable deleted.
5728
5729 2012-06-28 Glenn Morris <rgm@gnu.org>
5730
5731 * simple.el (completion-list-mode-finish):
5732 Don't use toggle-read-only. (Since completion-list-mode has
5733 a special mode-class, it wasn't doing anything extra anyway.)
5734
5735 2012-06-28 Stefan Monnier <monnier@iro.umontreal.ca>
5736
5737 Make inlining of other-mode interpreted functions work (bug#11799).
5738 * emacs-lisp/bytecomp.el (byte-compile--refiy-function): New fun.
5739 (byte-compile): Use it to fix compilation of lexical-binding closures.
5740 * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Compile the
5741 function, if needed.
5742
5743 2012-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
5744
5745 * help-mode.el (help-make-xrefs): Don't just withstand
5746 cyclic-variable-indirection but any error in documentation-property.
5747
5748 * loadup.el (purify-flag): Pre-grow the hash-table to reduce the
5749 memory use.
5750 * bindings.el (bindings--define-key): New function.
5751 * vc/vc-hooks.el, replace.el, menu-bar.el, international/mule-cmds.el:
5752 * emacs-lisp/lisp-mode.el, buff-menu.el, bookmark.el:
5753 * bindings.el: Use it to purecopy define-key bindings.
5754
5755 * textmodes/rst.el (rst-adornment-faces-alist): Avoid copy-list.
5756
5757 * emacs-lisp/cl.el (flet): Mark obsolete.
5758 * emacs-lisp/cl-macs.el (cl-flet*): New macro.
5759 * vc/vc-rcs.el (vc-rcs-annotate-command, vc-rcs-parse):
5760 * progmodes/js.el (js-c-fill-paragraph):
5761 * progmodes/ebrowse.el (ebrowse-switch-member-buffer-to-sibling-class)
5762 (ebrowse-switch-member-buffer-to-derived-class):
5763 * play/5x5.el (5x5-solver): Use cl-flet.
5764
5765 * emacs-lisp/cl.el: Use lexical-binding. Fix flet (bug#11780).
5766 (cl--symbol-function): New macro.
5767 (cl--letf, cl--letf*): Use it.
5768
5769 * emacs-lisp/easy-mmode.el (easy-mmode-pretty-mode-name):
5770 Strip "toggle-" if any.
5771
5772 2012-06-27 Glenn Morris <rgm@gnu.org>
5773
5774 * info.el (Info-default-directory-list): Move here from paths.el.
5775 * paths.el: Remove file, which is now empty.
5776 * loadup.el: No longer load "paths".
5777
5778 * custom.el (custom-initialize-delay): Doc fix.
5779
5780 * eshell/em-alias.el, eshell/em-banner.el, eshell/em-basic.el:
5781 * eshell/em-cmpl.el, eshell/em-dirs.el, eshell/em-glob.el:
5782 * eshell/em-hist.el, eshell/em-ls.el, eshell/em-pred.el:
5783 * eshell/em-prompt.el, eshell/em-rebind.el, eshell/em-script.el:
5784 * eshell/em-smart.el, eshell/em-term.el, eshell/em-unix.el:
5785 * eshell/em-xtra.el: Replace eshell-defgroup with "(progn (defgroup".
5786 * eshell/eshell.el (eshell-defgroup): Remove alias.
5787
5788 2012-06-27 Chong Yidong <cyd@gnu.org>
5789
5790 * help.el (help-enable-auto-load): New variable.
5791
5792 * help-fns.el (help-fns--autoloaded-p): New function.
5793 (describe-function-1): Refer to a function as "autoloaded" if it
5794 was autoloaded at any time in the past. Perform autoloading if
5795 help-enable-auto-load is non-nil.
5796
5797 2012-06-26 Eli Zaretskii <eliz@gnu.org>
5798
5799 * makefile.w32-in (compile, compile-always): Depend on
5800 update-subdirs, not on subdirs.el. Otherwise, several different
5801 sub-targets of 'bootstrap' running in parallel could
5802 simultaneously write to subdirs.el, producing a garbled file.
5803
5804 2012-06-26 Sam Steingold <sds@gnu.org>
5805
5806 * files.el (file-name-base): New convenience function.
5807 * autoinsert.el, cus-dep.el, doc-view.el, image-dired.el:
5808 * woman.el, eshell/esh-cmd.el, progmodes/ada-xref.el:
5809 * progmodes/cc-defs.el, progmodes/cperl-mode.el:
5810 * progmodes/flymake.el, progmodes/gud.el, progmodes/idlwave.el:
5811 * textmodes/ispell.el, textmodes/reftex-ref.el:
5812 * textmodes/tex-mode.el: Use it.
5813 Did not touch cedet and org because they are maintained elsewhere.
5814
5815 2012-06-26 Martin Rudalics <rudalics@gmx.at>
5816
5817 * calendar/calendar.el (calendar-exit): Don't try to delete or
5818 iconify last frame. See:
5819 http://lists.gnu.org/archive/html/emacs-devel/2012-06/msg00372.html
5820
5821 2012-06-25 Jim Diamond <Jim.Diamond@AcadiaU.ca> (tiny change)
5822
5823 * server.el (server-process-filter): Remember dir in the
5824 process's `server-client-directory' properties.
5825
5826 2012-06-24 Chong Yidong <cyd@gnu.org>
5827
5828 * xml.el (xml-parse-tag): Correctly handle comment embedded in
5829 non-tag text.
5830
5831 2012-06-23 Juanma Barranquero <lekktu@gmail.com>
5832
5833 * makefile.w32-in (COMPILE_FIRST): Synch with changes in 2012-06-22T21:24:54Z!monnier@iro.umontreal.ca.
5834
5835 2012-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
5836
5837 * help-fns.el (describe-variable): Don't croak when doc is not found.
5838 * vc/pcvs.el (cvs-retrieve-revision): Avoid toggle-read-only.
5839 * menu-bar.el (menu-bar-line-wrapping-menu): Purecopy a tiny bit more.
5840 * emacs-lisp/syntax.el (syntax-ppss): Simplify with new `if' place.
5841 * emacs-lisp/smie.el (smie-next-sexp): CSE.
5842 * emacs-lisp/macroexp.el (macroexp-let2): Fix edebug spec and avoid
5843 ((lambda ..) ..).
5844 * emacs-lisp/eieio.el (eieio-oref, slot-value): Use simpler defsetf.
5845
5846 2012-06-23 Chong Yidong <cyd@gnu.org>
5847
5848 * info.el (Info-mouse-follow-link): Accept symbol values of
5849 link-args. Select window; suggested by Gerhard Kahl (Bug#11672).
5850 (Info-fontify-node): Use Info-link-keymap for all navigation
5851 buttons, with link-args property to perform the desired action.
5852 (Info-link-keymap): Doc fix.
5853 (Info-next-link-keymap, Info-prev-link-keymap)
5854 (Info-up-link-keymap): Delete now-unused keymaps.
5855
5856 2012-06-23 Chong Yidong <cyd@gnu.org>
5857
5858 * mouse.el (mouse-drag-track): Deactivate the mark before popping.
5859
5860 * progmodes/python.el (python-skeleton-define): Mark abbrevs as
5861 system abbrevs.
5862
5863 * ansi-color.el (ansi-color-apply-on-region): Doc fix.
5864
5865 2012-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
5866
5867 * emacs-lisp/cl-macs.el (cl--make-usage-args): Handle improper lists
5868 (bug#11719).
5869
5870 * minibuffer.el (completion--twq-try): Try to fail more gracefully when
5871 the requote function doesn't work properly (bug#11714).
5872
5873 2012-06-23 Glenn Morris <rgm@gnu.org>
5874
5875 * pcmpl-rpm.el (pcmpl-rpm-packages): Give status messages.
5876
5877 2012-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
5878
5879 Further GV/CL cleanups.
5880 * emacs-lisp/gv.el (gv-get): Autoload functions to find their
5881 gv-expander.
5882 (gv--defun-declaration): New function.
5883 (defun-declarations-alist): Use it.
5884 (gv-define-modify-macro, gv-pushnew!, gv-inc!, gv-dec!): Remove.
5885 (gv-place): Autoload.
5886 * emacs-lisp/cl.el (cl--dotimes, cl--dolist): Remember subr.el's
5887 original definition of dotimes and dolist.
5888 * emacs-lisp/cl-macs.el (cl-expr-access-order): Remove unused.
5889 (cl-dolist, cl-dotimes): Use `dolist' and `dotimes'.
5890 * emacs-lisp/cl-lib.el: Move gv handlers from cl-macs to here.
5891 (cl-fifth, cl-sixth, cl-seventh, cl-eighth)
5892 (cl-ninth, cl-tenth): Move gv handler to the function's definition.
5893 * emacs-lisp/cl-extra.el (cl-subseq, cl-get, cl-getf): Move gv handler
5894 to the function's definition.
5895 * Makefile.in (COMPILE_FIRST): Re-order to speed it up by about 50%.
5896 * window.el:
5897 * files.el:
5898 * faces.el:
5899 * env.el: Don't use CL.
5900
5901 2012-06-22 Paul Eggert <eggert@cs.ucla.edu>
5902
5903 Support higher-resolution time stamps (Bug#9000).
5904
5905 * calendar/time-date.el (with-decoded-time-value): New arg
5906 PICO-SYMBOL in VARLIST. It's optional, for backward compatibility.
5907 (encode-time-value): New optional arg PICO. New type 3.
5908 (time-to-seconds) [!float-time]: Support the new picoseconds
5909 component if it's used.
5910 (seconds-to-time, time-subtract, time-add):
5911 Support ps-resolution time stamps as well.
5912
5913 * emacs-lisp/timer.el (timer): New component psecs. All uses changed.
5914 (timerp): Timer vectors now have length 9, not 8.
5915 (timer--time): Support new-style (4-part) time stamps.
5916 (timer-next-integral-multiple-of-time): Time stamps now have
5917 picosecond resolution, so take a bit more care about rounding.
5918 (timer-relative-time, timer-inc-time): New optional arg psecs.
5919 (timer-set-time-with-usecs): Set psecs to 0.
5920 (timer--activate): Check psecs component, too.
5921
5922 * proced.el (proced-time-lessp): Support ps-resolution stamps.
5923
5924 2012-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
5925
5926 * icomplete.el (icomplete-minibuffer-setup, icomplete-completions):
5927 Move the non-essential binding to the post/pre-command-hook where it is
5928 more obviously correct.
5929
5930 * subr.el (read-passwd): Don't use a history at all.
5931 * savehist.el (savehist-save): Remove password saved accidentally
5932 because of the above bug.
5933
5934 2012-06-22 Bastien Guerry <bzg@gnu.org>
5935
5936 * files.el (toggle-read-only): Display a message telling whether
5937 the buffer is read-only or not (bug#11726).
5938
5939 2012-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
5940
5941 * emacs-lisp/gv.el: New file.
5942 * subr.el (push, pop): Extend to generalized variables.
5943 * loadup.el (macroexp): Unload if preloaded and uncompiled (bug#11657).
5944 * emacs-lisp/cl-lib.el (cl-pop, cl-push, cl--set-nthcdr): Remove.
5945 * emacs-lisp/cl-macs.el: Require gv. Use gv-define-setter,
5946 gv-define-simple-setter, and gv-define-expander.
5947 Remove setf-methods defined in gv. Rename cl-setf -> setf.
5948 (cl-setf, cl-do-pop, cl-get-setf-method): Remove.
5949 (cl-letf, cl-letf*, cl-define-modify-macro, cl-defsetf)
5950 (cl-define-setf-expander, cl-struct-setf-expander): Move to cl.el.
5951 (cl-remf, cl-shiftf, cl-rotatef, cl-callf, cl-callf2): Rewrite with
5952 gv-letplace.
5953 (cl-defstruct): Don't define setf-method any more.
5954 * emacs-lisp/cl.el (flet): Don't autoload.
5955 (cl--letf, letf, cl--letf*, letf*, cl--gv-adapt)
5956 (define-setf-expander, defsetf, define-modify-macro)
5957 (cl-struct-setf-expander): Move from cl-lib.el.
5958 * emacs-lisp/syntax.el:
5959 * emacs-lisp/ewoc.el:
5960 * emacs-lisp/smie.el:
5961 * emacs-lisp/cconv.el:
5962 * emacs-lisp/timer.el: Rename cl-setf -> setf, cl-push -> push.
5963 (timer--time): Use gv-define-simple-setter.
5964 * emacs-lisp/macroexp.el (macroexp-let2): Rename from macroexp-let²
5965 to avoid coding-system problems in subr.el. Adjust all users.
5966 (macroexp--maxsize, macroexp-small-p): New functions.
5967 * emacs-lisp/bytecomp.el (byte-compile-file): Don't use cl-letf.
5968 * scroll-bar.el (scroll-bar-mode):
5969 * simple.el (auto-fill-mode, overwrite-mode, binary-overwrite-mode)
5970 (normal-erase-is-backspace-mode): Don't use the `eq' place.
5971 * winner.el (winner-configuration, winner-make-point-alist)
5972 (winner-set-conf, winner-get-point, winner-set): Don't abuse letf.
5973 * files.el (locate-file-completion-table): Avoid list*.
5974
5975 2012-06-22 Chong Yidong <cyd@gnu.org>
5976
5977 * dired-aux.el (dired-do-create-files): Doc fix (Bug#11327).
5978 (dired-create-files): Doc fix (Bug#11329).
5979 (dired-do-copy): Doc fix (Bug#11334).
5980 (dired-mark-read-string): Doc fix (Bug#11553).
5981
5982 * dired.el (dired-recursive-copies, dired-recursive-deletes):
5983 Doc fix (Bug#11326).
5984 (dired-make-relative): Doc fix (Bug#11332). Remove unused arg.
5985 (dired-dwim-target): Doc fix.
5986
5987 * wdired.el (wdired-mode): Doc fix.
5988
5989 2012-06-22 Glenn Morris <rgm@gnu.org>
5990
5991 * pcmpl-rpm.el (pcmpl-rpm-cache): New option.
5992 (pcmpl-rpm-cache-stamp-file): New constant.
5993 (pcmpl-rpm-cache-time, pcmpl-rpm-packages): New variables.
5994 (pcmpl-rpm-packages): Optionally cache list of packages.
5995
5996 * pcmpl-rpm.el (pcmpl-rpm): New group.
5997 (pcmpl-rpm-query-options): New option.
5998 (pcmpl-rpm-packages): No need to inline it.
5999 Use pcmpl-rpm-query-options.
6000
6001 * calendar/calendar.el (calendar-in-read-only-buffer):
6002 Avoid some needless mode changes.
6003
6004 2012-06-21 Chong Yidong <cyd@gnu.org>
6005
6006 * desktop.el (desktop-read): Don't prompt if daemon (Bug#11674).
6007 (desktop-path): Remove . from the default value (Bug#10977).
6008 (desktop-read): Use user-emacs-directory if desktop-path is nil.
6009
6010 2012-06-20 Chong Yidong <cyd@gnu.org>
6011
6012 * term.el (term-send-raw-meta): Make C-M-<char> keys work (Bug#8172).
6013
6014 2012-06-20 David Röthlisberger <david@rothlis.net> (tiny change)
6015
6016 * ido.el (ido-switch-buffer, ido-find-file): Fix up doc of C-j
6017 (bug#11201).
6018
6019 2012-06-20 Chong Yidong <cyd@gnu.org>
6020
6021 * term.el (term-window-width): Handle the case of a missing right
6022 fringe (Bug#8837).
6023 (term-check-size): Use window-text-height (Bug#5445).
6024 (term-mode): Use define-derived-mode. Minor cleanups.
6025 Set font-lock-defaults (Bug#7692).
6026 (term-move-columns, term-insert-char, term-emulate-terminal)
6027 (term-erase-in-line, term-insert-spaces): Use font-lock-face.
6028
6029 2012-06-20 Michael Albinus <michael.albinus@gmx.de>
6030
6031 * net/ange-ftp.el (ange-ftp-get-passwd):
6032 Bind `enable-recursive-minibuffers'.
6033 (ange-ftp-get-process): Throw if `non-essential' is non-nil.
6034
6035 2012-06-19 David Röthlisberger <david@rothlis.net> (tiny change)
6036
6037 * ido.el (ido-find-file): Mention C-d binding in docstring (bug#11244).
6038
6039 2012-06-19 Glenn Morris <rgm@gnu.org>
6040
6041 * progmodes/python.el (python-mode): Derive from prog-mode.
6042
6043 2012-06-19 Kevin Gallagher <Kevin.Gallagher@boeing.com>
6044
6045 * emulation/edt.el (edt-default-menu-bar-update-buffers)
6046 (edt-user-menu-bar-update-buffers): New functions.
6047 (edt-default-emulation-setup, edt-user-emulation-setup): Use them.
6048
6049 2012-06-19 Chong Yidong <cyd@gnu.org>
6050
6051 * subr.el (with-selected-window): Preserve the selected window's
6052 terminal's top-frame (Bug#4702).
6053
6054 * window.el (save-selected-window): Likewise.
6055
6056 2012-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
6057
6058 * progmodes/python.el (python-rx-constituents): Move backquote.
6059 (python-skeleton-define, python-define-auxiliary-skeleton):
6060 Use `declare'.
6061
6062 2012-06-18 Michael Albinus <michael.albinus@gmx.de>
6063
6064 * minibuffer.el (read-file-name-default): Revert the patch from
6065 2012-06-17.
6066
6067 2012-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
6068
6069 * emacs-lisp/pcase.el (pcase--expand): Warn for unused pattern.
6070 (pcase--u1, pcase--q1): Don't use apply-partially.
6071
6072 2012-06-18 Glenn Morris <rgm@gnu.org>
6073
6074 * progmodes/python.el (python-proc, python-buffer)
6075 (python-send-receive, python-send-string): Fix obsolete versions.
6076
6077 2012-06-18 Martin Rudalics <rudalics@gmx.at>
6078
6079 * window.el (special-display-p): Completely remove stringp
6080 check. Suggested by Andreas Schwab <schwab@linux-m68k.org>.
6081
6082 2012-06-17 Michael Albinus <michael.albinus@gmx.de>
6083
6084 * minibuffer.el (read-file-name-default): Bind `non-essential' to `t'.
6085
6086 * net/tramp.el (tramp-file-name-handler): Catch 'non-essential.
6087
6088 * net/ange-ftp.el (ange-ftp-gwp-start, ange-ftp-start-process):
6089 * net/tramp-sh.el (tramp-maybe-open-connection):
6090 Throw if `non-essential' is non-nil.
6091
6092 2012-06-17 Martin Rudalics <rudalics@gmx.at>
6093
6094 * window.el (special-display-p): Signal an error if BUFFER-NAME
6095 is not a string (Bug#11713).
6096
6097 2012-06-17 Paul Eggert <eggert@cs.ucla.edu>
6098
6099 * progmodes/python.el (python-info-beginning-of-backslash):
6100 Rename from python-info-beginning-of-backlash, as a spelling fix.
6101
6102 2012-06-17 Chong Yidong <cyd@gnu.org>
6103
6104 * term.el (term-emulate-terminal): If term-check-size is called,
6105 move point to the process mark without resetting point (Bug#4635).
6106
6107 2012-06-17 Glenn Morris <rgm@gnu.org>
6108
6109 * international/mule-cmds.el (mule-menu-keymap)
6110 (set-language-environment, set-locale-environment): Doc tweaks.
6111
6112 2012-06-16 Aurelien Aptel <aurelien.aptel@gmail.com>
6113
6114 * cus-face.el (custom-face-attributes): Add wave-style underline
6115 attribute.
6116 * faces.el (set-face-attribute): Update docstring to describe
6117 wave-style underline attribute.
6118
6119 2012-06-16 Chong Yidong <cyd@gnu.org>
6120
6121 * term/xterm.el (terminal-init-xterm): Discard input before
6122 querying background mode (Bug#10959).
6123
6124 2012-06-16 Stefan Merten <smerten@oekonux.de>
6125
6126 * textmodes/rst.el: Added and corrected some comments.
6127 (rst-re-alist-def): Improve symbol syntax.
6128 (rst-mode-syntax-table): Correct syntax entries.
6129 (rst-cvs-header, rst-svn-rev, rst-svn-timestamp)
6130 (rst-official-version, rst-official-cvs-rev): Update version
6131 information.
6132
6133 2012-06-15 Juanma Barranquero <lekktu@gmail.com>
6134
6135 * makefile.w32-in (COMPILE_FIRST): Synch with makefile.in changes
6136 in 2008-06-22T13:57:28Z!monnier@iro.umontreal.ca.
6137
6138 2012-06-15 Fabián Ezequiel Gallina <fgallina@cuca>
6139
6140 * progmodes/python.el: New python.el merge.
6141 (python-guess-indent): Obsolete var.
6142 (python-indent-guess-indent-offset): New defcustom.
6143 (python-indent): Obsolete var.
6144 (python-indent-offset): New defcustom.
6145 (python-python-command, python-jython-command): Delete var.
6146 (python-shell-interpreter): New defcustom.
6147 (python-pdbtrack-do-tracking-p): Delete var.
6148 (python-pdbtrack-activate): New defcustom.
6149 (python-use-skeletons): Obsolete var.
6150 (python-skeleton-autoinsert): New defcustom.
6151 (inferior-python-filter-regexp, python-continuation-offset)
6152 (python-honour-comment-indentation, python-indent-string-contents)
6153 (python-jython-packages, python-mode-hook)
6154 (python-pdbtrack-minor-mode-string, python-remove-cwd-from-path)
6155 (python-shell-prompt-alist)
6156 (python-source-modes): Delete defcustoms.
6157 (python-check-buffer-name, python-eldoc-setup-code)
6158 (python-eldoc-string-code, python-ffap-setup-code)
6159 (python-ffap-string-code, python-fill-comment-function)
6160 (python-fill-decorator-function, python-fill-paren-function)
6161 (python-fill-string-function, python-imenu-include-defun-type)
6162 (python-imenu-make-tree, python-imenu-subtree-root-label)
6163 (python-pdbtrack-stacktrace-info-regexp, python-shell-buffer-name)
6164 (python-shell-compilation-regexp-alist)
6165 (python-shell-completion-module-string-code)
6166 (python-shell-completion-pdb-string-code)
6167 (python-shell-completion-setup-code)
6168 (python-shell-completion-string-code)
6169 (python-shell-enable-font-lock, python-shell-exec-path)
6170 (python-shell-extra-pythonpaths)
6171 (python-shell-internal-buffer-name, python-shell-interpreter-args)
6172 (python-shell-process-environment)
6173 (python-shell-prompt-block-regexp)
6174 (python-shell-prompt-output-regexp)
6175 (python-shell-prompt-pdb-regexp, python-shell-prompt-regexp)
6176 (python-shell-send-setup-max-wait, python-shell-setup-codes)
6177 (python-shell-virtualenv-path): New defcustoms.
6178 (brm-menu, eldoc-documentation-function, inferior-python-mode-map)
6179 (inferior-python-mode-syntax-table, python--prompt-regexp)
6180 (python-buffer, python-command python-python-command)
6181 (python-default-template, python-imports, python-indent-index)
6182 (python-indent-list, python-indent-list-length)
6183 (python-mode-running, python-pdbtrack-is-tracking-p)
6184 (python-preoutput-continuation, python-preoutput-leftover)
6185 (python-preoutput-result, python-preoutput-skip-next-prompt)
6186 (python-prev-dir/file, python-recursing)
6187 (python-saved-check-command, python-version-checked)
6188 (python-which-func-length-limit)
6189 (view-return-to-alist): Delete vars.
6190 (python-check-custom-command, python-dotty-syntax-table)
6191 (python-imenu-index-alist, python-indent-current-level)
6192 (python-indent-dedenters, python-indent-levels)
6193 (python-nav-beginning-of-defun-regexp)
6194 (python-nav-list-defun-positions-cache)
6195 (python-pdbtrack-buffers-to-kill, python-pdbtrack-tracked-buffer)
6196 (python-shell-internal-buffer)
6197 (python-skeleton-available): New vars.
6198 (def-python-skeleton): Delete macro.
6199 (python-skeleton-define): New macro.
6200 (python-define-auxiliary-skeleton, python-rx): New macros.
6201 (python-insert-class): Delete command.
6202 (python-skeleton-class): New command.
6203 (python-insert-def): Delete command.
6204 (python-skeleton-def): New command.
6205 (python-insert-for): Delete command.
6206 (python-skeleton-for): New command.
6207 (python-insert-if): Delete command.
6208 (python-skeleton-if): New command.
6209 (python-insert-try/except, python-insert-try/finally): Delete commands.
6210 (python-skeleton-try): New command.
6211 (python-insert-while): Delete command.
6212 (python-skeleton-while): New command.
6213 (python-backspace): Delete command.
6214 (python-indent-dedent-line-backspace): New command.
6215 (python-electric-colon): Delete command.
6216 (python-indent-electric-colon): New command.
6217 (python-guess-indent): Delete command.
6218 (python-indent-guess-indent-offset): New command.
6219 (python-shift-left): Delete command.
6220 (python-indent-shift-left): New command.
6221 (python-shift-right): Delete command.
6222 (python-indent-shift-right): New command.
6223 (python-find-function): Delete command.
6224 (python-nav-jump-to-defun): New command.
6225 (python-next-statement): Delete command.
6226 (python-nav-forward-sentence): New command.
6227 (python-previous-statement): Delete command.
6228 (python-nav-backward-sentence): New command.
6229 (python-fill-paragraph): Delete command.
6230 (python-fill-paragraph-function): New command.
6231 (python-send-buffer): Delete command.
6232 (python-shell-send-buffer): New command.
6233 (python-send-defun): Delete command.
6234 (python-shell-send-defun): New command.
6235 (python-send-region, python-send-region-and-go): Delete commands.
6236 (python-shell-send-region)
6237 (python-shell-switch-to-shell): New commands.
6238 (python-send-string): Delete command.
6239 (python-shell-send-string): New command.
6240 (python-switch-to-python): Delete command.
6241 (python-shell-switch-to-shell): New command.
6242 (python-describe-symbol): Delete command.
6243 (python-eldoc-at-point): New command.
6244 (python--set-prompt-regexp, python-args-to-list)
6245 (python-after-info-look, python-check-version)
6246 (python-check-comint-prompt, python-find-imports)
6247 (python-execute-file, turn-off-pdbtrack, turn-on-pdbtrack)
6248 (python-unload-function, python-expand-template)
6249 (python-maybe-jython, python-preoutput-filter)
6250 (python-pdbtrack-get-source-buffer)
6251 (python-pdbtrack-grub-for-buffer, python-pdbtrack-overlay-arrow)
6252 (python-pdbtrack-toggle-stack-tracking)
6253 (python-pdbtrack-track-stack-file, python-initial-text)
6254 (python-first-word, python-comment-line-p, python-send-command)
6255 (python-setup-brm, python-sentinel, python-set-proc)
6256 (python-skip-out, python-input-filter, python-outdent-p)
6257 (python-outline-level, python-backslash-continuation-line-p)
6258 (python-end-of-block, python-end-of-statement, python-mark-block)
6259 (python-beginning-of-block, python-beginning-of-statement)
6260 (python-blank-line-p, python-beginning-of-string)
6261 (python-open-block-statement-p): Delete functions.
6262 (python-indent-line, python-indent-line-1): Delete functions.
6263 (python-indent-line): New function.
6264 (python-indentation-levels): Delete function.
6265 (python-indent-calculate-levels): New function.
6266 (python-proc): Delete function.
6267 (python-shell-get-process): New function.
6268 (python-send-receive): Delete function.
6269 (python-shell-send-string-no-output): New function.
6270 (python-module-path): Delete function.
6271 (python-ffap-module-path): New function.
6272 (python-completion-at-point)
6273 (python-symbol-completions): Delete functions.
6274 (python-completion-complete-at-point): New function.
6275 (python-load-file): Delete function.
6276 (python-shell-send-file): New function.
6277 (python-calculate-indentation): Delete function.
6278 (python-indent-calculate-indentation): New function.
6279 (python-skip-comments/blanks): Delete function.
6280 (python-util-forward-comment): New function.
6281 (python-continuation-line-p): Delete function.
6282 (python-info-continuation-line-p): New function.
6283 (python-which-func, python-current-defun): Delete function.
6284 (python-info-current-defun): New function.
6285 (python-beginning-of-defun): Delete function.
6286 (python-nav-beginning-of-defun): New function.
6287 (python-close-block-statement-p)
6288 (python-block-end-p): Delete function.
6289 (python-info-closing-block): New function.
6290 (python-comint-output-filter-function)
6291 (python-eldoc--get-doc-at-point, python-end-of-defun-function)
6292 (python-fill-comment, python-fill-decorator, python-fill-paren)
6293 (python-fill-string, python-imenu-make-element-tree)
6294 (python-imenu-make-tree, python-imenu-tree-assoc)
6295 (python-indent-context, python-indent-dedent-line)
6296 (python-indent-line-function)
6297 (python-indent-post-self-insert-function)
6298 (python-indent-toggle-levels)
6299 (python-info-assignment-continuation-line-p)
6300 (python-info-beginning-of-backlash)
6301 (python-info-block-continuation-line-p)
6302 (python-info-closing-block-message)
6303 (python-info-line-ends-backslash-p)
6304 (python-info-looking-at-beginning-of-defun)
6305 (python-info-ppss-context, python-info-ppss-context-type)
6306 (python-nav-list-defun-positions, python-nav-read-defun)
6307 (python-nav-sentence-end, python-nav-sentence-start)
6308 (python-pdbtrack-comint-output-filter-function)
6309 (python-pdbtrack-set-tracked-buffer)
6310 (python-shell-calculate-exec-path)
6311 (python-shell-calculate-process-environment)
6312 (python-shell-completion--do-completion-at-point)
6313 (python-shell-completion--get-completions)
6314 (python-shell-completion-complete-at-point)
6315 (python-shell-completion-complete-or-indent)
6316 (python-shell-get-or-create-process)
6317 (python-shell-get-process-name)
6318 (python-shell-internal-get-or-create-process)
6319 (python-shell-internal-get-process-name)
6320 (python-shell-internal-send-string, python-shell-make-comint)
6321 (python-shell-parse-command, python-shell-send-setup-code)
6322 (python-skeleton-add-menu-items)
6323 (python-util-clone-local-variables, python-util-position)
6324 (run-python-internal, python-indentation-levels)
6325 (python-nav-beginning-of-defun)
6326 (python-completion-complete-at-point): New functions.
6327 (run-python): Change arguments. New API requirements.
6328
6329 2012-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
6330
6331 * emacs-lisp/cl-lib.el (cl--defsubst-expand): Autoload inliner
6332 (bug#11649).
6333
6334 * emacs-lisp/macroexp.el (macroexp--compiler-macro): New function.
6335 (macroexp--expand-all): Use it.
6336
6337 * emacs-lisp/cl-macs.el (cl--transform-function-property): Remove.
6338 (cl-define-setf-expander, cl-deftype, cl-define-compiler-macro):
6339 Use `cl-function' instead.
6340
6341 2012-06-14 Juanma Barranquero <lekktu@gmail.com>
6342
6343 * makefile.w32-in (COMPILE_FIRST): Remove subr.el.
6344 Suggested by Stefan Monnier while discussing bug#11657.
6345
6346 2012-06-14 Sam Steingold <sds@gnu.org>
6347
6348 * files.el (abort-if-file-too-large): Use `file-size-human-readable'.
6349
6350 2012-06-14 Andreas Schwab <schwab@linux-m68k.org>
6351
6352 * play/doctor.el (doctor-doc): Remove parameter and use
6353 doctor-sent instead of sent.
6354 (doctor-read-print): Use doctor-sent instead of sent. (Bug#11708)
6355
6356 2012-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
6357
6358 * files.el: Require cl-lib.
6359 (file-name-non-special): Replace case -> cl-case.
6360
6361 * emacs-lisp/cl-macs.el (cl-defstruct): Don't add print-func.
6362
6363 * emacs-lisp/edebug.el (edebug-read-function): Remove old incorrect
6364 mapping from #' to function*.
6365
6366 2012-06-13 Chong Yidong <cyd@gnu.org>
6367
6368 * mouse.el (mouse-drag-track): Do not set the mark if the user
6369 releases the mouse without selecting anything (Bug#11588).
6370
6371 2012-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
6372
6373 * textmodes/tex-mode.el (latex-indent): Recognize tex-verbatim at EOB
6374 as well (bug#11646).
6375
6376 * loadup.el: Count byte-code functions as well.
6377
6378 * emacs-lisp/byte-opt.el (featurep): Move compiler-macro...
6379 * emacs-lisp/bytecomp.el (featurep): ...here (bug#11692).
6380
6381 * emacs-lisp/autoload.el (make-autoload): Accept nil doc-string-elt
6382 (bug#11649). Add cl-defun and cl-defmacro.
6383
6384 2012-06-13 Drew Adams <drew.adams@oracle.com>
6385
6386 * help-mode.el (help-bookmark-make-record, help-bookmark-jump):
6387 Fix last change.
6388
6389 2012-06-13 Michael Albinus <michael.albinus@gmx.de>
6390
6391 * net/dbus.el (dbus-call-method): Use timeout for `read-event'.
6392 Otherwise, it blocks in batch mode.
6393
6394 2012-06-13 Juanma Barranquero <lekktu@gmail.com>
6395
6396 * help-mode.el (bookmark-make-record-default): Declare.
6397
6398 2012-06-13 Chong Yidong <cyd@gnu.org>
6399
6400 * emacs-lisp/package.el (list-packages): Compute a list of
6401 packages that are newly-available since the last list-packages
6402 invocation.
6403 (package-menu--new-package-list): New var.
6404 (package-menu--generate, package-menu--print-info)
6405 (package-menu--status-predicate, package-menu-mark-install):
6406 Handle new status label "new".
6407
6408 2012-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
6409
6410 * emacs-lisp/cl-macs.el (cl-remf): Fix error in recent
6411 conversion to backquotes.
6412
6413 2012-06-12 Chong Yidong <cyd@gnu.org>
6414
6415 * emacs-lisp/edebug.el (edebug-inhibit-emacs-lisp-mode-bindings):
6416 Rename from gud-inhibit-global-bindings.
6417
6418 * emacs-lisp/eieio.el (eieio-pre-method-execution-hooks): Doc fix.
6419
6420 * nxml/nxml-glyph.el (nxml-glyph-set-functions): Rename abnormal
6421 hook from nxml-glyph-set-hook.
6422
6423 * progmodes/cwarn.el (cwarn-mode): Remove redundant variable
6424 declaration.
6425
6426 * progmodes/pascal.el (pascal-toggle-completions): Doc fix.
6427
6428 * textmodes/bibtex.el (bibtex-string-file-path, bibtex-file-path):
6429 Convert to defcustom.
6430
6431 2012-06-12 Drew Adams <drew.adams@oracle.com>
6432
6433 * help-mode.el (help-bookmark-make-record, help-bookmark-jump):
6434 New functions.
6435 (help-mode): Use them.
6436
6437 2012-06-11 Glenn Morris <rgm@gnu.org>
6438
6439 * progmodes/fortran.el (fortran-font-lock-keywords-3):
6440 Use preprocessor face for directives.
6441 (fortran-directive-re): Doc fix.
6442
6443 2012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
6444
6445 * emacs-lisp/cl-macs.el (cl-parse-loop-clause): Fix error in recent
6446 conversion to backquotes (bug#11652).
6447
6448 Fix compiler-expansion of CL's cXXr functions (bug#11673).
6449 * emacs-lisp/cl-lib.el (cl--defalias): New function.
6450 (cl-values, cl-values-list, cl-copy-seq, cl-svref, cl-first)
6451 (cl-second, cl-rest, cl-endp, cl-third, cl-fourth): Use it.
6452 (cl-plusp, cl-minusp, cl-fifth, cl-sixth, cl-seventh, cl-eighth)
6453 (cl-ninth, cl-tenth): Mark them as inlinable.
6454 (cl-caaar, cl-caadr, cl-cadar, cl-caddr, cl-cdaar, cl-cdadr)
6455 (cl-cddar, cl-cdddr, cl-caaaar, cl-caaadr, cl-caadar, cl-caaddr)
6456 (cl-cadaar, cl-cadadr, cl-caddar, cl-cadddr, cl-cdaaar, cl-cdaadr)
6457 (cl-cdadar, cl-cdaddr, cl-cddaar, cl-cddadr, cl-cdddar, cl-cddddr):
6458 Add a compiler-macro declaration to use cl--compiler-macro-cXXr.
6459 (cl-list*, cl-adjoin): Don't put an autoload manually.
6460 * emacs-lisp/cl-macs.el (cl--compiler-macro-adjoin)
6461 (cl--compiler-macro-list*): Add autoload cookie.
6462 (cl--compiler-macro-cXXr): New function.
6463
6464 * help-fns.el (help-fns--compiler-macro): New function extracted from
6465 describe-function-1; follow aliases and use `compiler-macro' property.
6466 (describe-function-1): Use it.
6467
6468 2012-06-11 Chong Yidong <cyd@gnu.org>
6469
6470 * startup.el (fancy-splash-head): Use splash.svg even if librsvg
6471 is uninstalled, if imagemagick is installed.
6472
6473 2012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
6474
6475 * emacs-lisp/cl-lib.el: Use lexical-binding.
6476 (cl-map-extents, cl-maclisp-member): Remove.
6477 (cl--set-elt, cl--set-nthcdr, cl--set-buffer-substring)
6478 (cl--set-substring, cl--block-wrapper, cl--block-throw)
6479 (cl--compiling-file, cl--mapcar-many, cl--do-subst): Use "cl--" prefix.
6480 * emacs-lisp/cl-extra.el: Use lexical-binding.
6481 (cl--mapcar-many, cl--map-keymap-recursively, cl--map-intervals)
6482 (cl--map-overlays, cl--set-frame-visible-p, cl--progv-save)
6483 (cl--progv-before, cl--progv-after, cl--finite-do, cl--set-getf)
6484 (cl--do-remf, cl--do-prettyprint): Use "cl--" prefix.
6485 * emacs-lisp/cl-seq.el: Use lexical-binding.
6486 (cl--parsing-keywords, cl--check-key, cl--check-test-nokey)
6487 (cl--check-test, cl--check-match): Use "cl--" prefix and backquotes.
6488 (cl--alist, cl--sublis-rec, cl--nsublis-rec, cl--tree-equal-rec):
6489 * emacs-lisp/cl-macs.el (cl--lambda-list-keywords): Use "cl--" prefix.
6490 * edmacro.el (edmacro-mismatch): Simplify to remove dependence on
6491 CL's internals.
6492
6493 2012-06-11 Michael Albinus <michael.albinus@gmx.de>
6494
6495 Sync with Tramp 2.2.6-pre.
6496
6497 * net/tramp-cache.el (tramp-dump-connection-properties): Let-bind
6498 `print-length' and `print-level' to nil, in order to avoid
6499 truncation. Reported by Christopher Schmidt
6500 <christopher@ristopher.com>.
6501
6502 * net/tramp-cmds.el (tramp-cleanup-connection): Delete also process.
6503
6504 * net/tramp-compat.el (tramp-compat-condition-case-unless-debug):
6505 New defmacro.
6506 (tramp-compat-copy-directory): Add optional argument
6507 COPY-CONTENTS. It is not handled yet.
6508
6509 * net/tramp-ftp.el (tramp-disable-ange-ftp): Fix docstring.
6510 (tramp-ftp-file-name-p): Simplify.
6511
6512 * net/tramp-gvfs.el (tramp-gvfs-handle-expand-file-name):
6513 * net/tramp-gw.el (tramp-gw-open-connection): Add hop to
6514 connection vector.
6515
6516 * net/tramp-sh.el (tramp-copy-size-limit): Fix docstring.
6517 (tramp-methods): Do not use `tramp-password-end-of-line'.
6518 (tramp-completion-function-alist-putty): Handle UNIX case.
6519 (tramp-remote-path): Add "/opt/bin", "/opt/sbin" and "/opt/local/bin".
6520 (tramp-do-file-attributes-with-stat)
6521 (tramp-do-directory-files-and-attributes-with-stat) Return uid and
6522 gid as real numbers. They could run out of integer range on cygwin.
6523 (tramp-do-copy-or-rename-file-out-of-band): Better trace format.
6524 (tramp-sh-handle-expand-file-name): Handle hops.
6525 (tramp-open-connection-setup-interactive-shell):
6526 Use `tramp-cleanup'. Move check for busyboxes ...
6527 (tramp-find-shell): ... here. Simplify implementation.
6528 Set "remote-shell" property also for alternative shells.
6529 (tramp-remote-coding-commands): Check "test -c /dev/stdout".
6530 If failing, a regular file would be written otherwise.
6531 Reported by Dmitry Kurochkin <dmitry.kurochkin@gmail.com>.
6532 (tramp-find-inline-encoding): Cache the coding commands in the
6533 process cache. Apply test command on the remote side, if defined.
6534 (tramp-find-inline-compress): Cache the compress commands in the
6535 process cache.
6536 (tramp-compute-multi-hops): Save `tramp-default-proxies-alist'
6537 when requested. Handle hops.
6538 (tramp-current-connection): New defvar.
6539 (tramp-maybe-open-connection): Use `tramp-cleanup'.
6540 Throw `suppress', if there was a failed connection shortly before.
6541 Handle user interrupt. (Bug#10187)
6542 (tramp-get-inline-compress, tramp-get-inline-coding):
6543 Read connection properties from the process cache.
6544
6545 * net/tramp-smb.el (tramp-smb-server-version)
6546 (tramp-smb-wrong-passwd-regexp, tramp-smb-actions-with-tar):
6547 New defconsts.
6548 (tramp-smb-prompt): Extend for powershell prompt.
6549 (tramp-smb-file-name-handler-alist): Add handlers for
6550 `process-file', `shell-command' and `start-file-process'.
6551 (tramp-smb-winexe-program, tramp-smb-winexe-shell-command)
6552 (tramp-smb-winexe-shell-command-switch): New defcustoms.
6553 (tramp-smb-file-name-p): Simplify.
6554 (tramp-smb-action-with-tar, tramp-smb-handle-process-file)
6555 (tramp-smb-kill-winexe-function, tramp-smb-call-winexe)
6556 (tramp-smb-shell-quote-argument): New defuns.
6557 (tramp-smb-handle-copy-directory): Add COPY-CONTENTS argument.
6558 Implement using "tar". By this, time-stamps are preserved.
6559 (tramp-smb-handle-copy-file): Handle also the case of directories.
6560 (tramp-smb-do-file-attributes-with-stat)
6561 (tramp-smb-get-file-entries, tramp-smb-get-cifs-capabilities):
6562 Use `tramp-get-connection-buffer').
6563 (tramp-smb-handle-rename-file): Use "rename", when source and
6564 target are on the same share.
6565 (tramp-smb-maybe-open-connection): Handle wrong passwords.
6566 Use `tramp-smb-server-version'.
6567 (tramp-smb-wait-for-output): Remove prompt.
6568
6569 * net/tramp.el (top): Require 'cl.
6570 (tramp-methods, tramp-rsh-end-of-line):
6571 Remove `tramp-password-end-of-line' from docstring.
6572 (tramp-save-ad-hoc-proxies): New defcustom.
6573 (tramp-completion-function-alist): Adapt docstring.
6574 (tramp-default-password-end-of-line): Remove defcustom.
6575 (tramp-shell-prompt-pattern): Allow "[]" style prompts. (Bug#11065)
6576 (tramp-user-regexp, tramp-file-name-regexp-unified)
6577 (tramp-file-name-regexp-url): Extend regexp by hop separator.
6578 (tramp-postfix-hop-format, tramp-postfix-hop-regexp)
6579 (tramp-remote-file-name-spec-regexp): New defconst.
6580 (tramp-file-name-structure): Extend structure for hops.
6581 (tramp-get-method-parameter): Move up.
6582 (tramp-file-name-p, tramp-dissect-file-name)
6583 (with-parsed-tramp-file-name): Handle hops.
6584 (tramp-file-name-hop): New defun.
6585 (tramp-make-tramp-file-name): New optional arg HOP.
6586 (tramp-message-show-progress-reporter-message): New defvar.
6587 (tramp-with-progress-reporter): Use it. We cannot use
6588 `tramp-message-show-message' here, because this suppresses also
6589 error buffers.
6590 (tramp-error-with-buffer): Suppress buffer view, if
6591 `tramp-message-show-message' is nil.
6592 Use `tramp-get-connection-buffer'.
6593 (tramp-cleanup): New defun.
6594 (tramp-rfn-eshadow-update-overlay): Let-bind `non-essential' to `t'.
6595 (tramp-file-name-handler): If `debug-on-error' is set, propagate
6596 an error unchanged.
6597 (tramp-completion-handle-file-name-all-completions): Handle hops.
6598 Fix an error when called from ido.
6599 (tramp-completion-dissect-file-name): Use better local variable
6600 name. Add hop to the vector.
6601 (tramp-handle-insert-file-contents): Use progress-reporter for the
6602 whole scenario.
6603 (tramp-action-password): Let-bind `enable-recursive-minibuffers'
6604 to `t'.
6605 (tramp-check-for-regexp): Simplify search.
6606 (tramp-enter-password): Remove it. Move implementation ...
6607 (tramp-action-password): ... here.
6608 (tramp-mode-string-to-int, tramp-local-host-p)
6609 (tramp-make-tramp-temp-file, tramp-read-passwd)
6610 (tramp-clear-passwd, tramp-time-less-p, tramp-time-diff):
6611 Set tramp-autoload cookie.
6612
6613 * net/trampver.el: Update release number.
6614
6615 2012-06-11 Thierry Volpiatto <thierry.volpiatto@gmail.com>
6616 Michael Albinus <michael.albinus@gmx.de>
6617
6618 * net/tramp.el (tramp-set-completion-function): Fix docstring.
6619 (tramp-parse-group, tramp-parse-file)
6620 (tramp-parse-shostkeys-sknownhosts): New defuns.
6621 (tramp-parse-rhosts, tramp-parse-rhosts-group, tramp-parse-shosts)
6622 (tramp-parse-shosts-group, tramp-parse-sconfig)
6623 (tramp-parse-sconfig-group, tramp-parse-shostkeys)
6624 (tramp-parse-sknownhosts, tramp-parse-hosts)
6625 (tramp-parse-hosts-group, tramp-parse-passwd, tramp-parse-netrc):
6626 Use them.
6627 (tramp-parse-passwd-group, tramp-parse-netrc-group)
6628 (tramp-parse-putty-group): Don't narrow.
6629 (tramp-parse-putty): Make a loop.
6630 (tramp-file-name-handler): Catch the `suppress' signal.
6631
6632 2012-06-11 Chong Yidong <cyd@gnu.org>
6633
6634 * image.el (imagemagick-register-types): Put the ImageMagick entry
6635 at the end of image-type-file-name-regexps.
6636
6637 2012-06-11 Johan Bockgård <bojohan@gnu.org>
6638
6639 * emacs-lisp/pcase.el (pcase-UPAT, pcase-QPAT): New edebug specs.
6640 (pcase, pcase-let*, pcase-dolist): Use them.
6641
6642 2012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
6643
6644 * emacs-lisp/pcase.el (pcase--let*): New function.
6645 (pcase-let*): Use it. Use pcase--memoize to avoid repeated expansions.
6646 (pcase--expand): Use macroexp-let².
6647
6648 2012-06-10 Stefan Monnier <monnier@iro.umontreal.ca>
6649
6650 * emacs-lisp/timer.el, emacs-lisp/syntax.el, emacs-lisp/smie.el:
6651 * emacs-lisp/ewoc.el, emacs-lisp/cconv.el, emacs-lisp/bytecomp.el:
6652 * emacs-lisp/byte-opt.el, emacs-lisp/autoload.el: Convert to cl-lib.
6653 * emacs-lisp/easymenu.el, emacs-lisp/easy-mmode.el:
6654 * emacs-lisp/derived.el: Use pcase instead of `cl'.
6655 * emacs-lisp/cl-lib.el: Get rid of special cl-macs auto load.
6656
6657 2012-06-10 Glenn Morris <rgm@gnu.org>
6658
6659 * mail/rmail.el (rmail-yank-current-message): Leave point at
6660 correct position. (Bug#11660)
6661
6662 2012-06-10 Chong Yidong <cyd@gnu.org>
6663
6664 * allout-widgets.el: Fix code header.
6665
6666 2012-06-10 Chong Yidong <cyd@gnu.org>
6667
6668 * cus-edit.el (customize-changed-options-previous-release):
6669 Bump to 24.1.
6670
6671 2012-06-09 Andreas Schwab <schwab@linux-m68k.org>
6672
6673 * Makefile.in (BIG_STACK_DEPTH): Enlarge to 2200.
6674
6675 2012-06-09 Chong Yidong <cyd@gnu.org>
6676
6677 * ebuff-menu.el (electric-buffer-list): Preserve header line.
6678
6679 2012-06-09 Martin Rudalics <rudalics@gmx.at>
6680
6681 * window.el (special-display-popup-frame): Don't use
6682 window--display-buffer (Bug#11651).
6683
6684 2012-06-09 Eli Zaretskii <eliz@gnu.org>
6685
6686 Fix parallel builds: make sure loaddefs.el is not being written
6687 while Lisp files are compiled.
6688 (compile): Don't depend on 'mh-autoloads'.
6689 (compile-CMD, compile-SH): Depend on 'autoloads'.
6690 (bootstrap): Don't depend on 'autoloads' and 'mh-autoloads'.
6691
6692 * makefile.w32-in (BIG_STACK_DEPTH): Enlarge to 2200. (Bug#11649)
6693
6694 2012-06-09 Chong Yidong <cyd@gnu.org>
6695
6696 * face-remap.el (face-remap-add-relative, face-remap-set-base)
6697 (buffer-face-set, buffer-face-toggle, buffer-face-mode-invoke):
6698 Doc fixes (Bug#11225).
6699
6700 2012-06-09 Stefan Monnier <monnier@iro.umontreal.ca>
6701
6702 * emacs-lisp/macroexp.el (macroexp--expand-all): Only autoload
6703 a function if there's a clear indication that it has a compiler-macro.
6704 * emacs-lisp/byte-run.el (defun-declarations-alist, defmacro, defun)
6705 (macro-declarations-alist): Add arglist to declaration functions.
6706 (defun-declarations-alist): Add `obsolete' and `compiler-macro'.
6707 * emacs-lisp/cl-seq.el (cl-member, cl-assoc):
6708 * emacs-lisp/cl-lib.el (cl-list*, cl-adjoin):
6709 * emacs-lisp/cl-extra.el (cl-get): Use the new `declare' statement.
6710 Also add autoload to find the compiler macro.
6711 * emacs-lisp/cl-macs.el (eql) [compiler-macro]: Remove.
6712 (cl--compiler-macro-member, cl--compiler-macro-assoc)
6713 (cl--compiler-macro-adjoin, cl--compiler-macro-list*)
6714 (cl--compiler-macro-get): New functions, replacing calls to
6715 cl-define-compiler-macro.
6716 (cl-typep) [compiler-macro]: Use macroexp-let².
6717
6718 2012-06-08 Nick Dokos <nicholas.dokos@hp.com> (tiny change)
6719
6720 * calendar/icalendar.el (icalendar--parse-vtimezone): Import TZID
6721 string properly, fixes Bug#11473.
6722
6723 2012-06-08 Chong Yidong <cyd@gnu.org>
6724
6725 * faces.el (set-face-attribute): Doc fix.
6726 (modify-face): Don't use :bold and :italic.
6727 (error, warning, success): Tweak definitions.
6728
6729 * cus-edit.el (custom-modified, custom-invalid, custom-rogue)
6730 (custom-modified, custom-set, custom-changed, custom-themed)
6731 (custom-saved, custom-button, custom-button-mouse)
6732 (custom-button-pressed, custom-state, custom-comment-tag)
6733 (custom-variable-tag, custom-group-tag-1, custom-group-tag)
6734 (custom-group-subtitle): Use new-style face specs.
6735 (custom-invalid-face, custom-rogue-face, custom-modified-face)
6736 (custom-set-face, custom-changed-face, custom-saved-face)
6737 (custom-button-face, custom-button-pressed-face)
6738 (custom-documentation-face, custom-state-face)
6739 (custom-comment-face, custom-comment-tag-face)
6740 (custom-variable-tag-face, custom-variable-button-face)
6741 (custom-face-tag-face, custom-group-tag-face-1)
6742 (custom-group-tag-face): Remove obsolete face alias.
6743
6744 * epa.el (epa-validity-high, epa-validity-medium)
6745 (epa-validity-low, epa-mark, epa-field-name, epa-string)
6746 (epa-field-name, epa-field-body):
6747 * font-lock.el (font-lock-comment-face, font-lock-string-face)
6748 (font-lock-keyword-face, font-lock-builtin-face)
6749 (font-lock-function-name-face, font-lock-variable-name-face)
6750 (font-lock-type-face, font-lock-constant-face):
6751 * ido.el (ido-first-match, ido-only-match, ido-subdir)
6752 (ido-virtual, ido-indicator, ido-incomplete-regexp):
6753 * speedbar.el (speedbar-button-face, speedbar-file-face)
6754 (speedbar-directory-face, speedbar-tag-face)
6755 (speedbar-selected-face, speedbar-highlight-face)
6756 (speedbar-separator-face):
6757 * whitespace.el (whitespace-newline, whitespace-space)
6758 (whitespace-hspace, whitespace-tab, whitespace-trailing)
6759 (whitespace-line, whitespace-space-before-tab)
6760 (whitespace-space-after-tab, whitespace-indentation)
6761 (whitespace-empty):
6762 * emulation/cua-base.el (cua-global-mark):
6763 * eshell/em-prompt.el (eshell-prompt):
6764 * net/newst-plainview.el (newsticker-new-item-face)
6765 (newsticker-old-item-face, newsticker-immortal-item-face)
6766 (newsticker-obsolete-item-face, newsticker-date-face)
6767 (newsticker-statistics-face, newsticker-default-face):
6768 * net/newst-reader.el (newsticker-feed-face)
6769 (newsticker-extra-face, newsticker-enclosure-face):
6770 * net/newst-treeview.el (newsticker-treeview-face)
6771 (newsticker-treeview-new-face, newsticker-treeview-old-face)
6772 (newsticker-treeview-immortal-face)
6773 (newsticker-treeview-obsolete-face)
6774 (newsticker-treeview-selection-face):
6775 * net/rcirc.el (rcirc-my-nick, rcirc-other-nick)
6776 (rcirc-bright-nick, rcirc-server, rcirc-timestamp)
6777 (rcirc-nick-in-message, rcirc-nick-in-message-full-line)
6778 (rcirc-prompt, rcirc-track-keyword, rcirc-url, rcirc-keyword):
6779 * nxml/nxml-outln.el (nxml-heading, nxml-outline-indicator)
6780 (nxml-outline-active-indicator, nxml-outline-ellipsis):
6781 * play/mpuz.el (mpuz-unsolved, mpuz-solved, mpuz-trivial)
6782 (mpuz-text):
6783 * progmodes/vera-mode.el (vera-font-lock-number)
6784 (vera-font-lock-function, vera-font-lock-interface):
6785 * textmodes/table.el (table-cell): Use new-style face specs, and
6786 don't use the old :bold and :italic attributes.
6787
6788 * progmodes/ebrowse.el (ebrowse-tree-mark, ebrowse-root-class)
6789 (ebrowse-member-attribute, ebrowse-default, ebrowse-file-name)
6790 (ebrowse-member-class, ebrowse-progress): Likewise.
6791 (ebrowse-tree-mark-face, ebrowse-root-class-face)
6792 (ebrowse-file-name-face, ebrowse-default-face)
6793 (ebrowse-member-attribute-face, ebrowse-member-class-face)
6794 (ebrowse-progress-face): Remove obsolete faces.
6795
6796 * progmodes/flymake.el (flymake-errline, flymake-warnline):
6797 Inherit from error and warning faces respectively.
6798
6799 * textmodes/flyspell.el (flyspell-incorrect, flyspell-duplicate):
6800 Likewise.
6801 (flyspell-incorrect-face, flyspell-duplicate-face):
6802 Remove obsolete aliases.
6803
6804 2012-06-08 Michael Albinus <michael.albinus@gmx.de>
6805
6806 * net/tramp-compat.el (tramp-compat-temporary-file-directory):
6807 Avoid infloop.
6808
6809 2012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
6810
6811 * startup.el (argv, argi): Make lexically scoped.
6812 * emacs-lisp/float-sup.el (pi): Use internal-make-var-non-special.
6813 * emacs-lisp/cl-macs.el: Use lexical-binding.
6814 Rename cl-bind-* to cl--bind-*.
6815 * files.el: Don't require `cl' since it doesn't use it.
6816 * emacs-lisp/pcase.el, emacs-lisp/macroexp.el: Add coding cookie.
6817
6818 2012-06-08 Juanma Barranquero <lekktu@gmail.com>
6819
6820 * textmodes/texinfmt.el: Fix bug#11640 (reverts part of 2008-07-31T05:33:56Z!dann@ics.uci.edu).
6821 (texinfo-format-printindex): Use `texinfo-sort-region' in all platforms,
6822 instead of calling external sort utility.
6823 (texinfo-sort-region, texinfo-sort-startkeyfun): Restore functions.
6824
6825 2012-06-08 Eli Zaretskii <eliz@gnu.org>
6826
6827 * descr-text.el (describe-char): Mention how to insert the
6828 character, if the current input method doesn't support it.
6829 See the discussion in this thread for the details:
6830 http://lists.gnu.org/archive/html/emacs-devel/2012-05/msg00533.html.
6831
6832 2012-06-08 Sam Steingold <sds@gnu.org>
6833
6834 * bindings.el (global-map): Bind XF86Forward to next-buffer and
6835 XF86Back to previous-buffer.
6836 (minibuffer-local-map): Bind them to next-history-element and
6837 previous-history-element respectively.
6838 * help-mode.el (help-mode-map): Bind them to help-go-forward and
6839 help-go-back respectively.
6840 * info.el (Info-mode-map): Bind them to Info-history-forward and
6841 Info-history-back respectively.
6842 These are the keys next to Up on the ThinkPad keyboard.
6843
6844 2012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
6845
6846 Get rid of cl-lexical-let, keeping only lexical-let for compatibility.
6847 * emacs-lisp/cl-macs.el: Provide itself.
6848 (cl--labels-convert-cache): New var.
6849 (cl--labels-convert): New function.
6850 (cl-flet, cl-labels): New implementation with new semantics, relying on
6851 lexical-binding.
6852 * emacs-lisp/cl.el: Mark compatibility aliases as obsolete.
6853 (cl-closure-vars, cl--function-convert-cache)
6854 (cl--function-convert): Move from cl-macs.el.
6855 (lexical-let, lexical-let*, flet, labels): Move from cl-macs.el and
6856 rename by removing the "cl-" prefix.
6857 * emacs-lisp/macroexp.el (macroexp-unprogn): New function.
6858
6859 2012-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
6860
6861 * emacs-lisp/cl.el (cl-macroexpand, cl-macro-environment)
6862 (cl-macroexpand-all, cl-not-hash-table, cl-builtin-gethash)
6863 (cl-builtin-remhash, cl-builtin-clrhash, cl-builtin-maphash)
6864 (cl-map-keymap, cl-copy-tree, cl-gethash, cl-puthash, cl-remhash)
6865 (cl-clrhash, cl-maphash, cl-make-hash-table, cl-hash-table-p)
6866 (cl-hash-table-count): Add old compatibility aliases.
6867
6868 * emacs-lisp/cl-macs.el (cl-macro-environment): Remove var.
6869 Use macroexpand-all-environment instead.
6870 (cl--old-macroexpand): New var.
6871 (cl--sm-macroexpand): New function.
6872 (cl-symbol-macrolet): Use it during macro expansion.
6873 (cl--function-convert-cache): New var.
6874 (cl--function-convert): New function, extracted from
6875 cl-macroexpand-all.
6876 (cl-lexical-let): Use it.
6877
6878 * emacs-lisp/cl-lib.el (cl-macro-environment): Remove decl.
6879 (cl-macroexpand): Move to cl-macs.el and rename to cl--sm-macroexpand.
6880 (cl-member): Remove old alias.
6881
6882 * emacs-lisp/cl-extra.el (cl-map-keymap, cl-copy-tree)
6883 (cl-not-hash-table, cl-builtin-gethash, cl-builtin-remhash)
6884 (cl-builtin-clrhash, cl-builtin-maphash, cl-gethash, cl-puthash)
6885 (cl-remhash, cl-clrhash, cl-maphash, cl-make-hash-table)
6886 (cl-hash-table-p, cl-hash-table-count): Move to cl.el.
6887 (cl-macroexpand-cmacs): Remove var.
6888 (cl-macroexpand-all, cl-macroexpand-body): Remove funs.
6889 Use macroexpand-all instead.
6890
6891 2012-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
6892
6893 * emacs-lisp/macroexp.el (macroexp-progn, macroexp-let*, macroexp-if)
6894 (macroexp-let², macroexp--const-symbol-p, macroexp-const-p)
6895 (macroexp-copyable-p): New functions and macros.
6896 * emacs-lisp/edebug.el (edebug-unwrap):
6897 * emacs-lisp/disass.el (disassemble-internal): Use macroexp-progn.
6898 * emacs-lisp/pcase.el: Use macroexp-let*, macroexp-if, ...
6899 (pcase--let*): Remove.
6900 * emacs-lisp/bytecomp.el (byte-compile-const-symbol-p)
6901 (byte-compile-constp): Remove. Use macroexp--const-symbol-p and
6902 macroexp-const-p instead.
6903 * emacs-lisp/byte-opt.el: Use macroexp-const-p and macroexp-progn.
6904
6905 * emacs-lisp/cl-macs.el: Clean up the name space by using "cl--"
6906 instead of "cl-" for internal definitions. Use macroexp-const-p.
6907 (cl-old-bc-file-form): Remove var.
6908 (cl-const-exprs-p): Remove fun.
6909 (cl-labels, cl-macrolet): Use backquote.
6910 (cl-lexical-let): Use cl-symbol-macrolet. Don't use cl-defun-expander.
6911 (cl-defun-expander, cl-byte-compile-compiler-macro): Remove fun.
6912 (cl-define-setf-expander): Rename from cl-define-setf-method.
6913 * emacs-lisp/cl.el: Adjust alias for define-setf-method.
6914
6915 * international/mule-cmds.el: Don't require CL.
6916 (view-hello-file): Don't use `letf'.
6917
6918 2012-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
6919
6920 * tmm.el (tmm-prompt): Use string-prefix-p.
6921 (tmm-completion-delete-prompt): Don't affect current-buffer outside.
6922 (tmm-add-prompt): Use minibuffer-completion-help.
6923 (tmm-delete-map): Remove.
6924
6925 * subr.el (kbd): Make it its own function.
6926
6927 2012-06-07 Stefan Merten <smerten@oekonux.de>
6928
6929 * textmodes/rst.el: Use `eval-when-compile' for requiring `cl.el'.
6930 Silence compiler warnings. Fix versions.
6931 (rst-position-if, rst-position, rst-some, rst-signum): New functions.
6932 (rst-shift-region, rst-adornment-level, rst-compute-tabs)
6933 (rst-indent-line, rst-shift-region, rst-forward-line): Use them.
6934 (rst-package-emacs-version-alist): Correct Emacs version to
6935 represent major merge with upstream.
6936 (rst-transition, rst-adornment, rst-compile-toolsets): Fix versions.
6937
6938 2012-06-06 Glenn Morris <rgm@gnu.org>
6939
6940 * mail/emacsbug.el (report-emacs-bug): Add relevant EMACS env-vars.
6941 Only print environment variables if set.
6942
6943 2012-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
6944
6945 * emacs-lisp/macroexp.el: Don't require CL since we don't use it.
6946 (macroexp--cons): Rename from maybe-cons.
6947 (macroexp--accumulate): Rename from macroexp-accumulate.
6948 (macroexp--all-forms): Rename from macroexpand-all-forms.
6949 (macroexp--all-clauses): Rename from macroexpand-all-clauses.
6950 (macroexp--expand-all): Rename from macroexpand-all-1.
6951
6952 2012-06-06 Sam Steingold <sds@gnu.org>
6953
6954 * calendar/calendar.el (calendar-in-read-only-buffer):
6955 Call `special-mode' to enable the standard read-only keybindings.
6956
6957 2012-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
6958
6959 * emacs-lisp/macroexp.el (macroexpand-all-1): Don't spam the output
6960 with "loading" messages (bug#11635).
6961
6962 2012-06-06 Michael Albinus <michael.albinus@gmx.de>
6963
6964 * files.el (enable-remote-dir-locals): New option.
6965 (hack-dir-local-variables): Use it. (Bug#1933, Bug#6731)
6966
6967 * net/tramp-compat.el (tramp-compat-temporary-file-directory):
6968 Ensure, that the temp directory is local.
6969
6970 * net/tramp-sh.el (tramp-sh-handle-write-region): Let-bind
6971 `temporary-file-directory'.
6972
6973 * progmodes/python.el (python-send-region): Ensure, that the
6974 temporary file is created also in the remote case.
6975
6976 2012-06-06 Glenn Morris <rgm@gnu.org>
6977
6978 * vc/vc-rcs.el (vc-rcs-rcs2log-program): New.
6979 (vc-rcs-update-changelog): Use it.
6980
6981 * emacs-lisp/authors.el (authors-fixed-entries): Remove vcdiff.
6982
6983 * vc/vc-sccs.el (vc-sccs-write-revision): New function.
6984 (vc-sccs-workfile-unchanged-p): Use vc-sccs-write-revision.
6985 (vc-sccs-diff): Replace use of the external vcdiff script.
6986
6987 2012-06-05 Glenn Morris <rgm@gnu.org>
6988
6989 * ledit.el: Move to obsolete/.
6990
6991 2012-06-05 Sam Steingold <sds@gnu.org>
6992
6993 * calendar/calendar.el (calendar-exit): Reinstate the 2012-03-28
6994 patch (Bug#11140).
6995
6996 2012-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
6997
6998 * emacs-lisp/cust-print.el: Move to obsolete.
6999
7000 * emacs-lisp/macroexp.el (macroexpand-all-1): Tolerate errors during
7001 compiler-macro expansion.
7002
7003 Add native compiler-macro support.
7004 * emacs-lisp/macroexp.el (macroexpand-all-1):
7005 Support compiler-macros directly. Properly follow aliases and apply
7006 the compiler macros more thoroughly.
7007 * emacs-lisp/cl.el: Don't copy compiler-macro properties any more since
7008 macroexpand now properly follows aliases.
7009 * emacs-lisp/cl-macs.el (toplevel, cl-define-compiler-macro)
7010 (cl-compiler-macroexpand): Use new prop.
7011 * emacs-lisp/byte-opt.el (featurep): Optimize earlier.
7012
7013 * emacs-lisp/cl-lib.el (custom-print-functions): Add alias.
7014
7015 2012-06-05 Martin Rudalics <rudalics@gmx.at>
7016
7017 * window.el (get-lru-window, get-mru-window, get-largest-window):
7018 New argument NOT-SELECTED to avoid picking the selected window.
7019 (window--display-buffer-1, window--display-buffer-2): Replace by
7020 new function window--display-buffer
7021 (display-buffer-same-window, display-buffer-reuse-window)
7022 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
7023 Use window--display-buffer.
7024 (display-buffer-use-some-window): Remove temporary dedication
7025 hack by calling get-lru-window and get-largest-window with
7026 NOT-SELECTED argument non-nil. Call window--display-buffer.
7027
7028 2012-06-05 Glenn Morris <rgm@gnu.org>
7029
7030 * vc/vc-sccs.el (vc-sccs-workfile-unchanged-p):
7031 Replace external vcdiff script.
7032
7033 2012-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
7034
7035 * emacs-lisp/cl-lib.el (cl-values, cl-values-list): Fix up last change.
7036
7037 2012-06-04 Chong Yidong <cyd@gnu.org>
7038
7039 * image.el (imagemagick-types-inhibit): Revert last change.
7040 Add INFO and M.
7041 (imagemagick-enabled-types): Remove CIN and EPS*.
7042
7043 2012-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
7044
7045 * emacs-lisp/cl-lib.el: Rename from cl.el.
7046 * emacs-lisp/cl.el: New compatibility file.
7047 * emacs-lisp/cl-lib.el, emacs-lisp/cl-seq.el, emacs-lisp/cl-macs.el:
7048 * emacs-lisp/cl-extra.el: Rename all top-level functions and variables
7049 to obey the "cl-" prefix.
7050 * emacs-lisp/macroexp.el (macroexpand-all-1): Adjust to new name.
7051
7052 2012-06-03 Glenn Morris <rgm@gnu.org>
7053
7054 * emacs-lisp/authors.el (authors-aliases): Addition.
7055
7056 * cus-start.el (tool-bar-style, tool-bar-max-label-size):
7057 Fix :version.
7058
7059 2012-06-03 Stefan Merten <smerten@oekonux.de>
7060
7061 * textmodes/rst.el: Add comments.
7062 (rst-transition, rst-adornment): New faces.
7063 (rst-adornment-faces-alist): Make default safe to reevaluate.
7064 Fixes
7065 http://sourceforge.net/tracker/?func=detail&atid=422030&aid=3479603&group_id=38414.
7066 Improve customization tags.
7067 (rst-define-level-faces): Clarify meaning.
7068
7069 2012-06-03 Chong Yidong <cyd@gnu.org>
7070
7071 * progmodes/compile.el (compilation-mode-line-fail)
7072 (compilation-mode-line-run, compilation-mode-line-exit):
7073 New faces.
7074 (compilation-start, compilation-handle-exit): Use them (Bug#11032).
7075
7076 2012-06-03 Jack Duthen <duthen.mac.01@gmail.com> (tiny change)
7077
7078 * progmodes/which-func.el (which-func-update-ediff-windows):
7079 New function. Use it in ediff-select-hook (Bug#11478).
7080
7081 2012-06-03 Chong Yidong <cyd@gnu.org>
7082
7083 * bindings.el: Remove explicit help text from format-mode-line.
7084 It is now supplied by mode-line-default-help-echo.
7085 (mode-line-front-space, mode-line-end-spaces)
7086 (mode-line-misc-info): New variables.
7087 (mode-line-modes, mode-line-position): Move the default value to
7088 the variable definition.
7089 (mode-line-default-help-echo): New defcustom.
7090 (mode-line-mule-info-help-echo, mode-line-read-only-help-echo)
7091 (mode-line-modified-help-echo): New functions.
7092 (mode-line-mule-info, mode-line-modified): Use them.
7093 (mode-line-eol-desc, propertized-buffer-identification):
7094 Consistency fixes for help text.
7095 (mode-line-coding-system-map): Allow using mouse-3 to invoke
7096 set-buffer-file-coding-system (Bug#289).
7097 (mode-line-mule-info-help-echo): Update help text.
7098
7099 2012-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
7100
7101 * simple.el (execute-extended-command): Set real-this-command
7102 (bug#11506).
7103
7104 2012-06-02 Chong Yidong <cyd@gnu.org>
7105
7106 Remove incorrect uses of "modeline" in comments, docstrings, and
7107 function/variable names (Bug#10329).
7108
7109 * cus-edit.el (mode-line):
7110 * dframe.el (dframe-mouse-hscroll):
7111 * emacs-lisp/re-builder.el:
7112 * emacs-lisp/easy-mmode.el (define-minor-mode):
7113 * frame.el (set-frame-name):
7114 * help.el (lookup-minor-mode-from-indicator):
7115 * net/rcirc.el (rcirc-activity-string, rcirc-short-buffer-name):
7116 * progmodes/cc-cmds.el (c-toggle-auto-newline)
7117 (c-toggle-hungry-state):
7118 * progmodes/antlr-mode.el (antlr-language-alist):
7119 * progmodes/idlw-shell.el (idlwave-shell-electric-stop-line-face):
7120 * progmodes/vhdl-mode.el (vhdl-mode):
7121 * progmodes/which-func.el (which-func, which-func-cleanup-function):
7122 * term/ns-win.el (ns-face-at-pos):
7123 * term/sup-mouse.el (sup-mouse-report):
7124 * textmodes/flyspell.el (flyspell-mode-line-string):
7125 * textmodes/ispell.el (ispell-highlight-face):
7126 * textmodes/reftex-global.el:
7127 * vc/vc-arch.el (vc-arch-mode-line-string):
7128 * vc/vc-cvs.el (vc-cvs-mode-line-string):
7129 * vc/vc-git.el (vc-git-mode-line-string):
7130 * vc/vc-hooks.el (vc-display-status)
7131 (vc-default-mode-line-string):
7132 * vc/vc-mtn.el (vc-mtn-mode-line-string): Doc fixes.
7133
7134 * ansi-color.el (ansi-color-faces-vector): Change default faces.
7135
7136 * dired.el (dired-sort-set-mode-line): Rename from
7137 dired-sort-set-modeline. All callers changed.
7138
7139 * eshell/esh-mode.el (eshell-status-in-mode-line): Rename from
7140 eshell-status-in-modeline.
7141
7142 * foldout.el (foldout-mode-line-string): Rename from
7143 foldout-modeline-string. All callers changed.
7144 (foldout-update-mode-line): Rename from foldout-update-modeline.
7145
7146 * subr.el (redraw-modeline): Make into obsolete alias.
7147
7148 * calendar/timeclock.el (timeclock-mode-line-display): Rename from
7149 timeclock-modeline-display. Make old name an alias.
7150 (timeclock-update-mode-line): Likewise. All callers changed.
7151 (timeclock-mode-line-display): No need to check before using
7152 add-hook.
7153 (timeclock-relative, timeclock-day-over-hook)
7154 (timeclock-use-elapsed, timeclock-mode-string)
7155 (timeclock-mode-line-display): Doc fix, "modeline" -> "mode line".
7156
7157 * emulation/crisp.el (crisp-mode-mode-line-string): Rename from
7158 crisp-mode-modeline-string.
7159
7160 * play/solitaire.el (solitaire-build-mode-line): Rename from
7161 solitaire-build-modeline. All callers changed.
7162
7163 * play/zone.el (zone-hiding-mode-line): Rename from
7164 zone-hiding-modeline. All callers changed.
7165 (zone): Remove unusued `modeline-hidden-level' property.
7166
7167 * progmodes/xscheme.el (xscheme-mode-line-initialize): Rename from
7168 xscheme-modeline-initialize. All callers changed.
7169
7170 * strokes.el (strokes-lighter): Rename from
7171 strokes-modeline-string.
7172
7173 * textmodes/sgml-mode.el (html-face-tag-alist)
7174 (html-tag-face-alist): Use mode-line face instead of obsolete
7175 alias modeline.
7176
7177 2012-06-02 Stefan Merten <smerten@oekonux.de>
7178
7179 * textmodes/rst.el: Always require `cl'.
7180 (rst-mode-map): Fix meaning of C-M-a / C-M-e.
7181
7182 2012-06-02 Chong Yidong <cyd@gnu.org>
7183
7184 * image.el (imagemagick-enabled-types): Rename from
7185 imagemagick-types-enable. Add many more types.
7186 (imagemagick-types-inhibit): Change default to nil.
7187 (imagemagick-filter-types): Caller changed.
7188
7189 2012-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
7190
7191 * emacs-lisp/cl-macs.el: Use backquotes.
7192 (cl-transform-function-property): Use eval-and-compile rather than
7193 abusing `require'.
7194 (defstruct): Use declare-function instead of with-no-warnings.
7195
7196 * emacs-lisp/bytecomp.el: Fix last change (bug#11594).
7197 (byte-compile-output-docform): Re-add the print-circle bindings.
7198 (byte-compile-fix-header): Use #$ just because it's shorter.
7199 (byte-compile-output-file-form): Remove defun/defmacro.
7200
7201 2012-06-01 Martin Rudalics <rudalics@gmx.at>
7202
7203 * simple.el (choose-completion): Remove now obsolete binding for
7204 owindow.
7205
7206 2012-06-01 Michael Albinus <michael.albinus@gmx.de>
7207
7208 * net/tramp.el (tramp-check-for-regexp): Search from buffer end,
7209 in order to avoid "Stack overflow in regexp matcher".
7210
7211 2012-05-31 Glenn Morris <rgm@gnu.org>
7212
7213 * image.el: For clarity, call imagemagick-register-types at
7214 top-level, rather than relying on a custom :initialize.
7215 (imagemagick-types-enable): New option. (Bug#11557)
7216 (imagemagick-filter-types): New function. (Bug#7406)
7217 (imagemagick-register-types): Use imagemagick-filter-types.
7218 If disabling support, remove elements altogether rather
7219 than using an impossible regexp.
7220 (imagemagick-types-inhibit): Give it the default init function.
7221
7222 2012-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
7223
7224 * emacs-lisp/bytecomp.el (byte-compile-fix-header):
7225 Handle arbitrary file name lengths (Bug#11585).
7226
7227 2012-05-31 Martin Rudalics <rudalics@gmx.at>
7228
7229 * desktop.el (desktop-read): Clear previous and next buffers for
7230 all windows and bury *Messages* buffer (bug#11556).
7231
7232 2012-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
7233
7234 Add `declare' for `defun'. Align `defmacro's with it.
7235 * emacs-lisp/easy-mmode.el (define-minor-mode)
7236 (define-globalized-minor-mode): Don't autoload the var definitions.
7237 * emacs-lisp/byte-run.el: Use lexical-binding.
7238 (defun-declarations-alist, macro-declarations-alist): New vars.
7239 (defmacro, defun): Use them.
7240 (make-obsolete, define-obsolete-function-alias)
7241 (make-obsolete-variable, define-obsolete-variable-alias):
7242 Use `declare'.
7243 (macro-declaration-function): Mark obsolete.
7244 * emacs-lisp/autoload.el: Use lexical-binding.
7245 (make-autoload): Add `expansion' arg. Rely more on macro expansion.
7246
7247 2012-05-30 Agustín Martín Domingo <agustin.martin@hispalinux.es>
7248
7249 * textmodes/ispell.el (ispell-with-no-warnings):
7250 Define as a macro.
7251 (ispell-kill-ispell, ispell-change-dictionary):
7252 Use `called-interactively-p' for Emacs instead of obsolete
7253 `interactive-p'.
7254
7255 2012-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
7256
7257 * emacs-lisp/byte-run.el (defmacro, defun): Move from C.
7258 (macro-declaration-function): Move var from C code.
7259 (macro-declaration-function): Define function with defalias.
7260 * emacs-lisp/macroexp.el (macroexpand-all-1):
7261 * emacs-lisp/cconv.el (cconv-convert, cconv-analyse-form):
7262 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker): Don't handle
7263 defun/defmacro any more.
7264 * emacs-lisp/bytecomp.el (byte-compile-arglist-signature):
7265 Provide fallback for unknown arglist.
7266 (byte-compile-arglist-warn): Change calling convention.
7267 (byte-compile-output-file-form): Move print-vars binding.
7268 (byte-compile-output-docform): Simplify accordingly.
7269 (byte-compile-file-form-defun, byte-compile-file-form-defmacro)
7270 (byte-compile-defmacro-declaration): Remove.
7271 (byte-compile-file-form-defmumble): Generalize to defalias.
7272 (byte-compile-output-as-comment): Return byte-positions.
7273 Simplify callers accordingly.
7274 (byte-compile-lambda): Use `assert'.
7275 (byte-compile-defun, byte-compile-defmacro): Remove.
7276 (byte-compile-file-form-defalias):
7277 Use byte-compile-file-form-defmumble.
7278 (byte-compile-defalias-warn): Remove.
7279
7280 2012-05-29 Stefan Merten <smerten@oekonux.de>
7281
7282 * textmodes/rst.el: Silence `checkdoc-ispell' errors where
7283 possible. Fix authors. Improve comments. Improve loading of `cl'.
7284
7285 (rst-mode-abbrev-table): Merge definition.
7286 (rst-mode): Make sure `font-lock-defaults' is buffer local.
7287 (rst-define-key, rst-deprecated-keys, rst-call-deprecated): Refactor.
7288
7289 2012-05-29 Ulf Jasper <ulf.jasper@web.de>
7290
7291 * calendar/icalendar.el
7292 (icalendar-export-region): Export UID properly.
7293
7294 2012-05-29 Leo Liu <sdl.web@gmail.com>
7295 * calendar/icalendar.el (icalendar-import-format):
7296 Add `icalendar-import-format-uid' (Bug#11525).
7297 (icalendar-import-format-uid): New.
7298 (icalendar--parse-summary-and-rest, icalendar--format-ical-event):
7299 Export UID.
7300
7301 2012-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
7302
7303 * emacs-lisp/pcase.el (pcase--expand): Accept different sets of vars in
7304 different alternative patterns.
7305 (pcase-codegen): Be more careful to preserve identity.
7306 (pcase--u1): Don't forget to mark vars as used.
7307
7308 * emacs-lisp/bytecomp.el (byte-compile-constp): Treat #'v as a constant.
7309 (byte-compile-close-variables): Bind byte-compile--outbuffer here...
7310 (byte-compile-from-buffer): ...rather than here.
7311
7312 * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Don't re-preprocess
7313 functions from byte-compile-function-environment.
7314
7315 2012-05-29 Troels Nielsen <bn.troels@gmail.com>
7316
7317 * window.el (window-deletable-p): Avoid deleting the root window
7318 of a frame with an active minibuffer.
7319
7320 2012-05-29 Martin Rudalics <rudalics@gmx.at>
7321
7322 * simple.el (choose-completion): Use quit-window (Bug#11567).
7323
7324 2012-05-29 Chong Yidong <cyd@gnu.org>
7325
7326 * whitespace.el (whitespace-cleanup): Fix usage of
7327 whitespace-empty-at-bob-regexp (Bug#11492).
7328
7329 2012-05-29 Aaron S. Hawley <aaron.s.hawley@gmail.com>
7330
7331 * vc/vc.el (vc-revert, vc-rollback): Dont kill vc-diff buffer on
7332 revert (Bug#11488).
7333
7334 2012-05-29 Juri Linkov <juri@jurta.org>
7335
7336 * isearch.el (isearch-mode-map): Bind `M-s _' to
7337 `isearch-toggle-symbol'. Bind `M-s c' to
7338 `isearch-toggle-case-fold'.
7339 (search-map): Bind `M-s _' to `isearch-forward-symbol'.
7340 (isearch-forward): Add `M-s _' to the docstring.
7341 (isearch-forward-symbol, isearch-toggle-case-fold)
7342 (isearch-symbol-regexp): New functions. (Bug#11381)
7343
7344 2012-05-29 Juri Linkov <juri@jurta.org>
7345
7346 * isearch.el (isearch-word): Add docstring. (Bug#11381)
7347 (isearch-occur, isearch-search-and-update): If `isearch-word' is
7348 a function, call it to get the regexp.
7349 (isearch-message-prefix): If `isearch-word' holds a symbol, use its
7350 property `isearch-message-prefix' instead of the string "word ".
7351 (isearch-search-fun-default): For the case of `isearch-word',
7352 return a lambda that calls re-search-forward/re-search-backward
7353 with a regexp returned by `word-search-regexp' or by the function
7354 in `isearch-word'.
7355
7356 2012-05-29 Juri Linkov <juri@jurta.org>
7357
7358 * isearch.el (isearch-search-fun-default): New function.
7359 (isearch-search-fun): Move default part to the new function
7360 `isearch-search-fun-default'.
7361 (isearch-search-fun-function): Set the default value to
7362 `isearch-search-fun-default'. (Bug#11381)
7363
7364 * comint.el (comint-history-isearch-end):
7365 Use `isearch-search-fun-default'.
7366 (comint-history-isearch-search): Use `isearch-search-fun-default'
7367 and remove spacial case for `isearch-word'.
7368 (comint-history-isearch-wrap): Remove spacial case for
7369 `isearch-word'.
7370
7371 * hexl.el (hexl-isearch-search-function):
7372 Use `isearch-search-fun-default'.
7373
7374 * info.el (Info-isearch-search): Use `isearch-search-fun-default'.
7375 Use `word-search-regexp' for `isearch-word'.
7376
7377 * misearch.el (multi-isearch-search-fun):
7378 Use `isearch-search-fun-default'.
7379
7380 * simple.el (minibuffer-history-isearch-search):
7381 Use `isearch-search-fun-default' and remove spacial case for
7382 `isearch-word'.
7383 (minibuffer-history-isearch-wrap): Remove spacial case for
7384 `isearch-word'.
7385
7386 * textmodes/reftex-global.el (reftex-isearch-wrap-function):
7387 Remove spacial case for `isearch-word'.
7388 (reftex-isearch-isearch-search): Use `isearch-search-fun-default'.
7389
7390 2012-05-28 Agustín Martín Domingo <agustin.martin@hispalinux.es>
7391
7392 Decrease XEmacs incompatibilities.
7393 * textmodes/flyspell.el (flyspell-check-pre-word-p):
7394 Use `string-match'.
7395 (flyspell-delete-region-overlays): Use alternative definition for
7396 XEmacs.
7397 (flyspell-delete-all-overlays): Use `flyspell-delete-region-overlays'.
7398 (flyspell-word): Use `process-kill-without-query' if XEmacs.
7399 (flyspell-mode-on): Use `interactive-p' if XEmacs.
7400 (flyspell-incorrect-face, flyspell-duplicate-face): Do not use
7401 `define-obsolete-face-alias' under XEmacs, but old method.
7402
7403 * textmodes/ispell.el (ispell-with-no-warnings): XEmacs alternative
7404 `with-no-warnings' definition or Emacs alias.
7405 (ispell-command-loop, ispell-message): Use `ispell-with-no-warnings'.
7406 (ispell-word): Do not use `region-p' if XEmacs.
7407
7408 2012-05-28 Agustín Martín Domingo <agustin.martin@hispalinux.es>
7409
7410 * textmodes/ispell.el (ispell-find-aspell-dictionaries):
7411 Check for `ispell-dictionary-base-alist' instead of full
7412 `ispell-dictionary-alist'.
7413 (ispell-init-process): Show spellchecker when starting new Ispell
7414 process.
7415
7416 2012-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
7417
7418 * progmodes/vhdl-mode.el: Sync with upstream 3.33.28.
7419 http://www.iis.ee.ethz.ch/~zimmi/emacs/vhdl-mode.html#release-notes-3.33
7420
7421 2012-05-27 Juanma Barranquero <lekktu@gmail.com>
7422
7423 * version.el (motif-version-string, gtk-version-string)
7424 (ns-version-string): Declare.
7425
7426 2012-05-27 Juri Linkov <juri@jurta.org>
7427
7428 * emacs-lisp/lisp-mode.el (eval-defun-2): Use `eval-sexp-add-defvars'
7429 after the `eval-defun-1' specialcaseing
7430 like in `edebug-eval-defun' (bug#10181).
7431
7432 * emacs-lisp/edebug.el (edebug-eval-defun): Set `face-documentation'
7433 like in `eval-defun-1'.
7434
7435 2012-05-27 Eli Zaretskii <eliz@gnu.org>
7436
7437 * mail/sendmail.el (mail-yank-region):
7438 Recognize rmail-yank-current-message in addition to insert-buffer.
7439 Fixes mail-mode's "C-c C-r" that otherwise does nothing when invoked in
7440 a *mail* buffer created through rmail-start-mail with sendmail as
7441 mail-user-agent.
7442
7443 2012-05-27 Chong Yidong <cyd@gnu.org>
7444
7445 * net/gnutls.el (gnutls-min-prime-bits): Improve docstring.
7446 Default to 256 (Bug#11267).
7447
7448 * help.el (describe-mode): Doc fix.
7449
7450 2012-05-26 Glenn Morris <rgm@gnu.org>
7451
7452 * w32-fns.el (w32-init-info): Remove.
7453 * paths.el (Info-default-directory-list): Add w32-init-info equivalent.
7454
7455 * info.el (info-initialize): For self-contained NS builds, put the
7456 included info/ directory at the front. (Bug#2791)
7457
7458 * paths.el (Info-default-directory-list): Make it a defcustom,
7459 mainly so that we can use custom-initialize-delay.
7460
7461 2012-05-26 Stefan Monnier <monnier@iro.umontreal.ca>
7462
7463 * subr.el (buffer-has-markers-at): Mark obsolete.
7464
7465 * subr.el (lambda): Use declare.
7466
7467 * emacs-lisp/lisp-mode.el (lambda):
7468 * emacs-lisp/edebug.el (lambda): Move properties to its definition.
7469
7470 2012-05-26 Aaron S. Hawley <aaron.s.hawley@gmail.com>
7471
7472 * thingatpt.el (forward-same-syntax): Handle no ARG case. (Bug#11560)
7473
7474 2012-05-26 Glenn Morris <rgm@gnu.org>
7475
7476 * progmodes/cc-mode.el (auto-mode-alist): Fix typo.
7477
7478 2012-05-25 Glenn Morris <rgm@gnu.org>
7479
7480 * paths.el: Remove no-byte-compile.
7481 * loadup.el: No need to load paths.el uncompiled.
7482
7483 * image.el (imagemagick-types-inhibit): Doc fix.
7484
7485 * version.el: Remove no-byte-compile and associated formatting.
7486 * loadup.el: No need to load version.el uncompiled. AFAICS, this
7487 is ancient code from when there was an "inc-vers.el".
7488
7489 2012-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
7490
7491 * progmodes/gdb-mi.el: Minor style changes.
7492 (gdb-enable-debug, gdb-speedbar-auto-raise, gdb-many-windows):
7493 Turn into minor modes.
7494 (gdb--if-arrow): Rename from gdb-if-arrow, make it hygienic.
7495 (gdb-mouse-until, gdb-mouse-jump): Adjust uses accordingly.
7496 (gdb-shell): Remove unneeded let-binding.
7497 (gdb-get-many-fields): Eliminate O(n²) behavior.
7498
7499 2012-05-25 Eli Zaretskii <eliz@gnu.org>
7500
7501 * cus-start.el <vertical-centering-font-regexp>: Avoid warning on
7502 platforms that don't link in fontset.c.
7503
7504 2012-05-25 Juri Linkov <juri@jurta.org>
7505
7506 Use the same diff color scheme as in modern VCSes (bug#10181).
7507
7508 * vc/diff-mode.el (diff-header, diff-file-header): Remove "green"
7509 to avoid confusion with `diff-added' that now uses green colors.
7510 (diff-removed): Use shades of red.
7511 (diff-added): Use shades of green.
7512 (diff-changed): Leave just the yellow color.
7513 (diff-use-changed-face): New variable.
7514 (diff-font-lock-keywords): Use `diff-use-changed-face' to decide
7515 how to highlight context diff changes.
7516 (diff-refine-change): Use shades of yellow.
7517 (diff-refine-removed): New face that uses shades of red.
7518 (diff-refine-added): New face that uses shades of green.
7519 (diff-refine-hunk): Use `diff-refine-change', `diff-refine-added',
7520 `diff-refine-removed' in the call to `smerge-refine-subst'
7521 depending on the value of `diff-use-changed-face'.
7522
7523 * vc/smerge-mode.el (smerge-mine): Use shades of red.
7524 (smerge-other): Use shades of green.
7525 (smerge-base): Use shades of yellow.
7526 (smerge-refined-change): Empty face.
7527 (smerge-refined-removed): New face that uses shades of red.
7528 (smerge-refined-added): New face that uses shades of green.
7529 (smerge-refine-subst): Rename arg `props' to `props-c'. Add new
7530 args `props-r' and `props-a', and use them. Doc fix.
7531 (smerge-refine): Evaluate `smerge-use-changed-face' and depending
7532 on its value use different faces `smerge-refined-change',
7533 `smerge-refined-removed', `smerge-refined-added' in the call to
7534 `smerge-refine-subst'.
7535
7536 * vc/ediff-init.el (ediff-current-diff-A, ediff-fine-diff-A):
7537 Add face condition `min-colors 88' with shades of red.
7538 (ediff-current-diff-B, ediff-fine-diff-B): Add face condition
7539 `min-colors 88' with shades of green.
7540 (ediff-current-diff-C, ediff-fine-diff-C): Add face condition
7541 `min-colors 88' with shades of yellow.
7542
7543 2012-05-24 Glenn Morris <rgm@gnu.org>
7544
7545 * paths.el (prune-directory-list, remote-shell-program): Move to...
7546 * files.el (prune-directory-list, remote-shell-program): ...here.
7547 For the latter, delay initialization, prefer ssh, just search PATH.
7548
7549 * paths.el (term-file-prefix): Move to faces.el (the only user).
7550 * faces.el (term-file-prefix): Move here, make it a defcustom.
7551
7552 * paths.el (news-directory, news-path, news-inews-program):
7553 Move to gnus/nnspool.el.
7554
7555 * paths.el (gnus-default-nntp-server): Remove (gnus.el defines it).
7556
7557 * paths.el (rmail-file-name, rmail-spool-directory): Move from here...
7558 * mail/rmail.el (rmail-file-name, rmail-spool-directory): ... to here.
7559 Make the latter a defcustom, with a delayed initialization.
7560
7561 * paths.el (gnus-nntp-service, gnus-local-organization): Remove.
7562 These were deleted from Gnus itself late 2010.
7563
7564 2012-05-22 Juanma Barranquero <lekktu@gmail.com>
7565
7566 * progmodes/which-func.el (which-func-ff-hook):
7567 Check against user-error, not error.
7568
7569 * emacs-lisp/edebug.el (top): Do not load or set up loading of
7570 cl-specs.el, which no longer exists.
7571
7572 2012-05-22 Glenn Morris <rgm@gnu.org>
7573
7574 * info.el (info-emacs-bug): New command.
7575 * menu-bar.el (menu-bar-help-menu): Add "How to Report a Bug" to Help.
7576 * mail/emacsbug.el (report-emacs-bug): Replace with info-emacs-bug.
7577
7578 2012-05-21 Glenn Morris <rgm@gnu.org>
7579
7580 * makefile.w32-in (update-subdirs-SH):
7581 * Makefile.in (update-subdirs): Update for moved update-subdirs.
7582
7583 2012-05-21 Stefan Monnier <monnier@iro.umontreal.ca>
7584
7585 * hi-lock.el (hi-lock-face-defaults): Move obsolete before definition.
7586
7587 * progmodes/compile.el (compilation-error-regexp-alist-alist):
7588 Simplify Maven regexp, and make sure the file can't start with a space
7589 (bug#11517).
7590
7591 2012-05-21 Glenn Morris <rgm@gnu.org>
7592
7593 * Makefile.in (setwins, setwins_almost, setwins_for_subdirs):
7594 Scrap superfluous subshells.
7595
7596 2012-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
7597
7598 * emacs-lisp/bytecomp.el (byte-compile-root-dir): New var.
7599 (byte-compile-warning-prefix, batch-byte-compile-file): Use it.
7600
7601 2012-05-19 Jay Belanger <jay.p.belanger@gmail.com>
7602
7603 * calc/calc.el (calc-ensure-consistent-units): New variable.
7604
7605 * calc/calc-units.el (math-consistent-units-p)
7606 (math-check-unit-consistency): New functions.
7607 (calc-quick-units, calc-convert-units):
7608 Use `math-check-unit-consistency' when `calc-ensure-consistent-units'
7609 is non-nil.
7610 (calc-extract-units): Fix typo.
7611
7612 2012-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
7613
7614 * vc/vc-bzr.el (vc-bzr-state-heuristic): Save match-data around sha1.
7615
7616 * textmodes/flyspell.el: Commenting style, plus code simplifications.
7617 (flyspell-default-deplacement-commands): Don't spell check after
7618 repeated window/frame switches (e.g. triggered by mouse-movement).
7619 (flyspell-delay-commands, flyspell-deplacement-commands): Use mapc.
7620 (flyspell-debug-signal-word-checked): Simplify and fit in 80 cols.
7621 (flyspell-casechars-cache, flyspell-ispell-casechars-cache)
7622 (flyspell-not-casechars-cache, flyspell-ispell-not-casechars-cache):
7623 Remove unused vars.
7624 (flyspell-get-casechars, flyspell-get-not-casechars):
7625 Simplify; Don't bother removing a ] just to add it back.
7626 * textmodes/ispell.el (ispell-program-name): Use executable-find.
7627
7628 2012-05-18 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
7629
7630 * calc/calc-lang.el (math-C-parse-bess, math-C-parse-fma):
7631 New functions.
7632 (math-function-table): Add support for more C functions.
7633
7634 2012-05-18 Agustín Martín Domingo <agustin.martin@hispalinux.es>
7635
7636 * textmodes/flyspell.el (flyspell-check-pre-word-p)
7637 (flyspell-check-word-p, flyspell-debug-signal-word-checked):
7638 Protect delay handling for otherchars against empty otherchars.
7639
7640 2012-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
7641
7642 * emacs-lisp/lisp-mode.el (doc-string-elt): Move those properties to
7643 their respective macro declarations.
7644 * skeleton.el (define-skeleton):
7645 * progmodes/compile.el (define-compilation-mode):
7646 * ibuf-macs.el (define-ibuffer-sorter, define-ibuffer-op)
7647 (define-ibuffer-filter):
7648 * emacs-lisp/generic.el (define-generic-mode):
7649 * emacs-lisp/easy-mmode.el (define-minor-mode)
7650 (define-globalized-minor-mode):
7651 * emacs-lisp/cl-macs.el (defun*, defmacro*, defstruct, deftype):
7652 * emacs-lisp/byte-run.el (defsubst):
7653 * custom.el (deftheme): Add doc-string metadata.
7654
7655 2012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
7656
7657 * emacs-lisp/cl-macs.el, emacs-lisp/cl.el: Move indent info.
7658
7659 2012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
7660
7661 * emacs-lisp/pcase.el (pcase--u1): Avoid ((lambda ...) ...).
7662
7663 * emacs-lisp/cl.el: Add edebug specs from cl-specs.el.
7664 * emacs-lisp/cl-macs.el: Idem.
7665 * emacs-lisp/cl-specs.el: Remove.
7666
7667 2012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
7668
7669 Minor renaming of internal CL functions and variables.
7670 * emacs-lisp/cl-seq.el (cl--adjoin): Rename from cl-adjoin.
7671 (cl--position): Rename from cl-position.
7672 (cl--delete-duplicates): Rename from cl-delete-duplicates.
7673 * emacs-lisp/cl.el (cl--gensym-counter): Rename from *gensym-counter*.
7674 (cl--random-state): Rename from *random-state*.
7675
7676 2012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
7677
7678 * emacs-lisp/cl-macs.el (cl-transform-lambda): Don't add spurious
7679 parens around the arg list (bug#11499).
7680
7681 2012-05-17 Juri Linkov <juri@jurta.org>
7682
7683 * isearch.el (word-search-regexp, word-search-backward)
7684 (word-search-forward, word-search-backward-lax)
7685 (word-search-forward-lax): Move functions from search.c
7686 (bug#10145, bug#11381).
7687
7688 2012-05-16 Agustín Martín Domingo <agustin.martin@hispalinux.es>
7689
7690 * textmodes/flyspell.el (flyspell-check-pre-word-p)
7691 (flyspell-check-word-p, flyspell-debug-signal-word-checked):
7692 Delay for otherchars as for normal word components.
7693
7694 2012-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
7695
7696 * minibuffer.el (completion--sifn-requote): Fix last change.
7697 (minibuffer-local-must-match-filename-map):
7698 Move define-obsolete-variable-alias before its var.
7699
7700 2012-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
7701
7702 * emacs-lisp/pcase.el (pcase-let*, pcase-let): Fix edebug spec.
7703
7704 * minibuffer.el (completion--sifn-requote): Handle sifn's truncation
7705 behavior.
7706 (completion--string-equal-p): New function.
7707 (completion--twq-all): Use it to get better assertion failure data.
7708
7709 Only handle ".." and '..' quoting in shell-mode (bug#11466).
7710 * shell.el (shell--unquote&requote-argument, shell--unquote-argument)
7711 (shell--requote-argument): New functions.
7712 (shell-completion-vars): Use them.
7713 (shell--parse-pcomplete-arguments): Rename from
7714 shell-parse-pcomplete-arguments.
7715 * comint.el (comint-word): Obey comint-file-name-quote-list. Simplify.
7716 (comint--unquote&requote-argument): Don't handle ".." and '..' quoting.
7717 Obey comint-file-name-quote-list.
7718
7719 * emacs-lisp/smie.el (smie-indent--bolp-1): New function.
7720 (smie-indent-keyword): Use it.
7721
7722 2012-05-14 Stefan Merten <smerten@oekonux.de>
7723
7724 * textmodes/rst.el (rst-re-alist): Fix loading (bug#11462).
7725
7726 2012-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
7727
7728 * net/rlogin.el (rlogin-mode-map): Fix last change.
7729
7730 2012-05-14 Jason L. Wright <jason.wright@inl.gov> (tiny change)
7731
7732 * mail/smtpmail.el (smtpmail-send-command): Send the command and
7733 the following \r\n using a single `process-send-string', since the
7734 Lotus SMTP server refuses to accept any commands if they are sent
7735 with two `process-send-string's (Bug#11444).
7736
7737 2012-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
7738
7739 * shell.el (shell-parse-pcomplete-arguments):
7740 Obey pcomplete-arg-quote-list inside double-quoted args (Bug#11348).
7741
7742 2012-05-14 Wolfgang Jenkner <wjenkner@inode.at>
7743
7744 * image-mode.el: Fit to width/height for rotated images (Bug#11431).
7745 (image-transform-scale, image-transform-right-angle-fudge): New vars.
7746 (image-transform-width, image-transform-fit-width): New functions.
7747 (image-transform-properties): Use them.
7748 (image-transform-check-size): New function.
7749 (image-toggle-display-image): Use it (for testing).
7750 (image-transform-set-rotation): Reduce angle mod 360.
7751 Delete obsolete comment.
7752
7753 2012-05-14 Wolfgang Jenkner <wjenkner@inode.at>
7754
7755 * image-mode.el: Fix scaling (bug#11399).
7756 (image-transform-resize): Doc fix.
7757 (image-transform-properties): Default scale is 1 and height should
7758 be an integer.
7759
7760 2012-05-13 Johan Bockgård <bojohan@gnu.org>
7761
7762 * emacs-lisp/smie.el (smie-next-sexp): Use accessor `op-forw' rather
7763 than hard-coding `car', to fix misbehavior when moving forward.
7764
7765 2012-05-13 Chong Yidong <cyd@gnu.org>
7766
7767 * emacs-lisp/tabulated-list.el (tabulated-list-format)
7768 (tabulated-list-entries, tabulated-list-padding)
7769 (tabulated-list-sort-key): Make permanent-local.
7770
7771 * ebuff-menu.el: Adapt to Buffer Menu changes (Bug#11455).
7772 (electric-buffer-list): Put electric buffer menu
7773 command descriptions in this docstring, instead of the docstring
7774 of electric-buffer-menu-mode. Code cleanups.
7775 (electric-buffer-menu-mode): Use define-derived-mode. Rename from
7776 Electric-buffer-menu-mode.
7777 (electric-buffer-update-highlight): Minor code cleanup.
7778
7779 2012-05-13 Michael Albinus <michael.albinus@gmx.de>
7780
7781 * net/dbus.el (dbus-call-method): Restore events not from D-Bus.
7782 (Bug#11447)
7783
7784 2012-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
7785
7786 Move define-obsolete-variable-alias before the var's definition.
7787 * vc/log-edit.el (vc-comment-ring, vc-comment-ring-index):
7788 * tooltip.el (tooltip-hook):
7789 * textmodes/reftex-toc.el (reftex-toc-map):
7790 * textmodes/reftex-sel.el (reftex-select-label-map)
7791 (reftex-select-bib-map):
7792 * textmodes/reftex-index.el (reftex-index-map)
7793 (reftex-index-phrases-map):
7794 * speedbar.el (speedbar-syntax-table, speedbar-key-map):
7795 * progmodes/meta-mode.el (meta-mode-map):
7796 * novice.el (disabled-command-hook):
7797 * loadhist.el (unload-hook-features-list):
7798 * frame.el (blink-cursor):
7799 * files.el (find-file-not-found-hooks, write-file-hooks)
7800 (write-contents-hooks):
7801 * emulation/tpu-edt.el (GOLD-map):
7802 * emacs-lock.el (emacs-lock-from-exiting):
7803 * emacs-lisp/generic.el (generic-font-lock-defaults):
7804 * emacs-lisp/chart.el (chart-map):
7805 * dos-fns.el (register-name-alist):
7806 * dired-x.el (dired-omit-files-p):
7807 * desktop.el (desktop-enable):
7808 * cus-edit.el (custom-mode-hook):
7809 * buff-menu.el (buffer-menu-mode-hook):
7810 * bookmark.el (bookmark-read-annotation-text-func)
7811 (bookmark-exit-hooks):
7812 * allout.el (allout-mode-deactivate-hook)
7813 (allout-exposure-change-hook, allout-structure-added-hook)
7814 (allout-structure-deleted-hook, allout-structure-shifted-hook):
7815 * dirtrack.el (dirtrack-toggle, dirtrackp, dirtrack-debug-toggle)
7816 (dirtrack-debug): Move call to define-obsolete-variable-alias so it
7817 comes before the corresponding variable's definition.
7818
7819 2012-05-12 Chong Yidong <cyd@gnu.org>
7820
7821 * buff-menu.el (Buffer-menu-buffer+size-width): Doc fix (Bug#11454).
7822 (Buffer-menu-mouse-select): Restore function (Bug#11459).
7823 (Buffer-menu-mode-map): Bind it.
7824 (Buffer-menu--pretty-name): Add a mouse-face property.
7825
7826 2012-05-11 Stefan Monnier <monnier@iro.umontreal.ca>
7827
7828 * progmodes/prolog.el: Use SMIE. Cleanup regexp setup.
7829 (prolog-upper-case-string, prolog-lower-case-string)
7830 (prolog-atom-char-regexp, prolog-atom-regexp): Initialize in defconst.
7831 (prolog-use-smie, prolog-smie-grammar): New vars.
7832 (prolog-smie-forward-token, prolog-smie-backward-token)
7833 (prolog-smie-rules): New funs.
7834 (prolog-comment-indent): Remove.
7835 (prolog-mode-variables): Use default comment indentation instead.
7836 Setup SMIE.
7837 (prolog-build-case-strings, prolog-set-atom-regexps): Remove.
7838 (prolog-mode): Don't call them any more.
7839 (prolog-electric-colon, prolog-electric-dash)
7840 (prolog-edit-menu-insert-move): Use indent-according-to-mode.
7841
7842 * dabbrev.el (dabbrev-expand): Make "no expansion found" a user-error.
7843
7844 * minibuffer.el (completion--twq-all): Again, allow case differences.
7845
7846 * term.el: Move keymap initialization code to be more idiomatic.
7847 (term-signals-menu, term-mode-map, term-raw-map, term-raw-escape-map)
7848 (term-terminal-menu): Move initialization into declaration.
7849 (term-escape-char): Let the user set it in her .emacs.
7850
7851 * progmodes/sh-script.el: Use post-self-insert-hook&electric-pair-mode.
7852 Provide SMIE-based indentation (not enabled by default yet).
7853 (sh-mode-map): Don't bind electric keys.
7854 Use electric-pair-mode instead of skeleton-pair.
7855 (sh-assignment-regexp): Fit within 80 columns.
7856 (sh-indent-supported): Specify actual shell name instead of boolean.
7857 (sh--maybe-here-document): New fun, from sh-maybe-here-document.
7858 (sh-maybe-here-document): Use it. Make obsolete.
7859 (sh-electric-here-document-mode) New minor mode.
7860 (sh-mode): Use it. Don't set sh-indent-supported-here here.
7861 (sh-smie-sh-grammar, sh-smie--sh-operators, sh-smie--sh-operators-re)
7862 (sh-smie--sh-operators-back-re, sh-indent-after-continuation)
7863 (sh-smie-rc-grammar, sh-use-smie): New vars.
7864 (sh-smie--keyword-p, sh-smie--newline-semi-p, sh-smie--sh-keyword-p)
7865 (sh-smie-sh-forward-token, sh-smie--looking-back-at-continuation-p)
7866 (sh-smie-sh-backward-token, sh-smie--continuation-start-indent)
7867 (sh-smie-sh-rules, sh-smie-rc-rules, sh-smie--sh-keyword-in-p)
7868 (sh-smie--rc-after-special-arg-p, sh-smie-rc-backward-token)
7869 (sh-smie-sh-rules, sh-smie--rc-newline-semi-p): New functions.
7870 (sh-set-shell): Use smie-setup if requested.
7871
7872 * term.el (term-set-escape-char): Properly set term-escape-char.
7873 See http://stackoverflow.com/questions/10524656.
7874
7875 2012-05-10 Chong Yidong <cyd@gnu.org>
7876
7877 * ffap.el (ffap-url-unwrap-local): Make it work right (Bug#9131).
7878 Use url-generic-parse-url, and handle host names and Windows
7879 filenames properly.
7880 (ffap-url-unwrap-remote): Use url-generic-parse-url.
7881 (ffap-url-unwrap-remote): Accept list values, specifying a list of
7882 URL schemes to work on.
7883 (ffap--toggle-read-only): New function.
7884 (ffap-read-only, ffap-read-only-other-window)
7885 (ffap-read-only-other-frame): Use it.
7886 (ffap-fixup-url): Don't check ffap-ftp-regexp, since it is not
7887 necessary for ffap-url-unwrap-remote.
7888
7889 2012-05-10 Dave Abrahams <dave@boostpro.com>
7890
7891 * cus-start.el (create-lockfiles): Add it.
7892
7893 2012-05-09 Chong Yidong <cyd@gnu.org>
7894
7895 * net/browse-url.el (browse-url-url-encode-chars): Use upper-case.
7896 (browse-url-encode-url): Encode spaces and quotes (Bug#6300).
7897
7898 2012-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
7899
7900 * shell.el (shell-completion-vars): Fix last change (bug#11348).
7901
7902 2012-05-09 Chong Yidong <cyd@gnu.org>
7903
7904 * ansi-color.el (ansi-color-process-output): Check for validity of
7905 comint-last-output-start before using it. This avoids a bad
7906 interaction with gdb-mi's input/output buffer.
7907
7908 2012-05-09 Glenn Morris <rgm@gnu.org>
7909
7910 * files.el (dir-locals-read-from-file):
7911 Mention dir-locals in any error message.
7912
7913 2012-05-09 Chong Yidong <cyd@gnu.org>
7914
7915 * emacs-lisp/package.el (package-built-in-p): Handle the `emacs'
7916 package (Bug#11410).
7917
7918 * emacs-lisp/package.el (package-buffer-info): Avoid putting local
7919 variables into description.
7920
7921 2012-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
7922
7923 * shell.el (shell-completion-vars): Set pcomplete-arg-quote-list like
7924 shell-delimiter-argument-list (bug#11348).
7925 (shell-parse-pcomplete-arguments): Obey pcomplete-arg-quote-list.
7926
7927 2012-05-09 Juanma Barranquero <lekktu@gmail.com>
7928
7929 * textmodes/rst.el: Silence byte-compiler warnings.
7930 (rst-re-alist, rst-reset-section-caches): Move around.
7931 (rst-re): Use `characterp', not `char-valid-p'.
7932 (font-lock-beg, font-lock-end): Declare.
7933
7934 * progmodes/idlw-shell.el (specs): Remove reference to deleted
7935 variable `idlwave-shell-activate-alt-keybindings' and simplify.
7936
7937 * eshell/esh-cmd.el (eshell-debug-command): Fix typo in previous change.
7938
7939 2012-05-08 Glenn Morris <rgm@gnu.org>
7940
7941 * files.el (auto-mode-alist): Treat ".make" like ".mk".
7942
7943 2012-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
7944
7945 * vc/log-edit.el: Add GNU coding standards highlighting.
7946 (log-edit-font-lock-gnu-style)
7947 (log-edit-font-lock-gnu-keywords): New vars.
7948 (log-edit-font-lock-keywords): New fun.
7949 (log-edit-mode): Don't fold case in font-lock.
7950 (log-edit-font-lock-keywords): Do not assume case-folding.
7951
7952 * imenu.el: Misc cleanup. Make docstrings out of comments.
7953 Use lexical-binding.
7954 (imenu--index-alist, imenu--last-menubar-index-alist)
7955 (imenu-menubar-modified-tick): Use defvar-local.
7956 (imenu--split-menu): Remove unused var.
7957 (imenu--cleanup-seen): Declare as global.
7958 (imenu--cleanup): Use dolist.
7959
7960 * subr.el (defvar-local): Add debug spec and doc-string position.
7961
7962 2012-05-08 Glenn Morris <rgm@gnu.org>
7963
7964 * language/burmese.el, language/cham.el, language/czech.el:
7965 * language/english.el, language/georgian.el, language/greek.el:
7966 * language/japanese.el, language/khmer.el, language/korean.el:
7967 * language/lao.el, language/misc-lang.el, language/romanian.el:
7968 * language/sinhala.el, language/slovak.el, language/tai-viet.el:
7969 * language/thai.el, language/utf-8-lang.el:
7970 Remove no-byte-compile setting.
7971
7972 * play/zone.el (zone-pgm-stress): Don't pollute kill-ring. (Bug#11388)
7973
7974 2012-05-08 Aaron S. Hawley <aaron.s.hawley@gmail.com>
7975
7976 * progmodes/make-mode.el (makefile-browse):
7977 Remove unnecessary interactive. (Bug#11324)
7978
7979 2012-05-07 Glenn Morris <rgm@gnu.org>
7980
7981 * forms-d2.el, forms-pass.el: Move to ../etc/forms directory.
7982
7983 * international/mule.el (find-auto-coding): Make "unibyte: t" obsolete.
7984
7985 2012-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
7986
7987 * loadup.el: Preload newcomment.el.
7988 * newcomment.el: Move autoload-only code to toplevel.
7989
7990 * buff-menu.el (list-buffers--refresh): Mark `size' as right-align.
7991 * emacs-lisp/tabulated-list.el (tabulated-list-init-header):
7992 Handle new :right-align column property.
7993 (tabulated-list-print-col): Idem, plus use `display' text-property to
7994 try and preserve alignment for variable pitch fonts.
7995
7996 2012-05-07 Chong Yidong <cyd@gnu.org>
7997
7998 * emacs-lisp/tabulated-list.el: Add no-header-line alternative.
7999 (tabulated-list-use-header-line): New var.
8000 (tabulated-list-init-header): Use it.
8001 (tabulated-list-print-fake-header): New function.
8002 (tabulated-list-print): Use it.
8003 (tabulated-list-sort-button-map): Add non-header-line commands.
8004 (tabulated-list-init-header): Add column name property to basic
8005 labels as well.
8006 (tabulated-list-col-sort): Handle non-header-line button case.
8007 (tabulated-list--sort-by-column-name): Fix a corner case.
8008
8009 * buff-menu.el (list-buffers--refresh):
8010 Handle Buffer-menu-use-header-line.
8011
8012 2012-05-06 Chong Yidong <cyd@gnu.org>
8013
8014 * buff-menu.el: Convert to Tabulated List mode.
8015 (Buffer-menu-buffer+size-width): Make obsolete.
8016 (Buffer-menu-name-width, Buffer-menu-size-width): New variables.
8017 (Buffer-menu-mode-map): Inherit from tabulated-list-mode-map.
8018 (Buffer-menu-mode): Derive from tabulated-list-mode. Move command
8019 documentation into docstring of buffer-menu.
8020 (Buffer-menu-toggle-files-only): Add an informative message.
8021 (Buffer-menu-sort): Convert to alias for tabulated-list-sort.
8022 (Buffer-menu-buffer, Buffer-menu-beginning, Buffer-menu-mark)
8023 (Buffer-menu-unmark, Buffer-menu-backup-unmark)
8024 (Buffer-menu-delete, Buffer-menu-save, Buffer-menu-not-modified)
8025 (Buffer-menu-execute, Buffer-menu-select)
8026 (Buffer-menu-marked-buffers, Buffer-menu-toggle-read-only)
8027 (Buffer-menu-bury): Use Tabulated List machinery.
8028 (Buffer-menu-mouse-select, Buffer-menu-sort-by-column)
8029 (Buffer-menu-sort-button-map, Buffer-menu-make-sort-button):
8030 Delete.
8031 (list-buffers--refresh): New function.
8032 (list-buffers-noselect): Use it.
8033 (tabulated-list-entry-size->, Buffer-menu--pretty-name)
8034 (Buffer-menu--pretty-file-name): New helper functions.
8035
8036 * loadup.el: Preload tabulated-list.
8037
8038 * emacs-lisp/tabulated-list.el (tabulated-list-sort): Rename from
8039 tabulated-list-sort-column.
8040 (tabulated-list-init-header): Add the initial aligning space even
8041 if tabulated-list-padding is zero.
8042
8043 2012-05-06 Christopher Schmidt <christopher@ch.ristopher.com>
8044
8045 * emacs-lisp/cl-macs.el (cl-expr-contains): Handle cons cells
8046 whose cdr is not a cons cell correctly (bug#11038).
8047
8048 2012-05-06 Chong Yidong <cyd@gnu.org>
8049
8050 * emacs-lisp/tabulated-list.el (tabulated-list-format):
8051 Accept additional plist in column descriptors.
8052 (tabulated-list-init-header): Obey it.
8053 (tabulated-list-get-entry): New function.
8054 (tabulated-list-put-tag): Use it. Use string-width instead of
8055 length.
8056 (tabulated-list--column-number): New function.
8057 (tabulated-list-print): Use it.
8058 (tabulated-list-print-col): New function.
8059 Set `tabulated-list-column-name' property on each column's text.
8060 (tabulated-list-print-entry): Use it.
8061 (tabulated-list-delete-entry, tabulated-list-set-col):
8062 New functions.
8063 (tabulated-list-sort-column): New command (Bug#11337).
8064
8065 * buff-menu.el (list-buffers): Move C-x C-b binding from
8066 buff-menu.el to bindings.el.
8067
8068 * ebuff-menu.el (Electric-buffer-menu-undefined): Use the
8069 :advertised-binding feature.
8070
8071 2012-05-06 Troels Nielsen <bn.troels@gmail.com> (tiny change)
8072
8073 * progmodes/compile.el (compilation-internal-error-properties):
8074 Calculate start position correctly when end-col is set but
8075 end-line is not (Bug#11382).
8076
8077 2012-05-06 Wolfgang Jenkner <wjenkner@inode.at>
8078
8079 * man.el (Man-unindent): Use text-property-default-nonsticky to
8080 prevent untabify from inheriting face properties (Bug#11408).
8081
8082 2012-05-05 Stefan Merten <smerten@oekonux.de>
8083
8084 * textmodes/rst.el: Major merge with upstream development up to
8085 Docutils SVN r7399 / rst.el V1.2.1.
8086
8087 Clarify maintainership and authors.
8088
8089 (rst-extract-version, rst-cvs-header, rst-cvs-rev)
8090 (rst-cvs-timestamp, rst-svn-rev, rst-svn-timestamp)
8091 (rst-official-version, rst-official-cvs-rev, rst-version)
8092 (rst-package-emacs-version-alist): New functions and variables
8093 for version information.
8094
8095 (rst-bullets, rst-uri-schemes, rst-adornment-chars)
8096 (rst-max-inline-length, rst-re-alist-def, rst-re-alist)
8097 (rst-mode-syntax-table, rst-mode): New and corrected functions
8098 and variables representing reStructuredText features.
8099
8100 (rst-re): New function for reStructuredText regexes. Use in
8101 many places.
8102
8103 (rst-deprecated-keys, rst-call-deprecated, rst-define-key)
8104 (rst-mode-map): Rebind keys.
8105
8106 (rst-mode-lazy, rst-font-lock-keywords)
8107 (rst-font-lock-extend-region)
8108 (rst-font-lock-extend-region-internal)
8109 (rst-font-lock-extend-region-extend)
8110 (rst-font-lock-find-unindented-line-limit)
8111 (rst-font-lock-find-unindented-line-match)
8112 (rst-adornment-level, rst-font-lock-adornment-level)
8113 (rst-font-lock-adornment-match)
8114 (rst-font-lock-handle-adornment-pre-match-form)
8115 (rst-font-lock-handle-adornment-matcher): Major revision of
8116 font-locking. Integrate with other code. Use `jit-lock-mode'.
8117
8118 (rst-preferred-adornments, rst-adjust-hook)
8119 (rst-new-adornment-down, rst-preferred-bullets)
8120 (rst-preferred-bullets, rst-indent, rst-indent-width)
8121 (rst-indent-field, rst-indent-literal-normal)
8122 (rst-indent-literal-minimized, rst-indent-comment): Change,
8123 extend and improve customization.
8124
8125 (rst-line-homogeneous-p, rst-line-homogeneous-nodent-p)
8126 (rst-normalize-cursor-position, rst-get-decoration)
8127 (rst-straighten-deco-spacing, rst-re-bullets, rst-re-items)
8128 (rst-rstrip, rst-toc-insert-find-delete-contents)
8129 (rst-shift-fill-region, rst-compute-bullet-tabs)
8130 (rst-debug-print-tabs, rst-debug-mark-found)
8131 (rst-shift-region-guts, rst-shift-region-right)
8132 (rst-shift-region-left, rst-use-char-classes)
8133 (rst-font-lock-keywords-function)
8134 (rst-font-lock-indentation-point)
8135 (rst-font-lock-find-unindented-line-begin)
8136 (rst-font-lock-find-unindented-line-end)
8137 (rst-font-lock-find-unindented-line)
8138 (rst-font-lock-adornment-point, rst-font-lock-level)
8139 (rst-adornment-level-alist): Remove functions and variables.
8140
8141 (rst-compare-adornments, rst-get-adornment-match)
8142 (rst-suggest-new-adornment, rst-get-adornments-around)
8143 (rst-adornment-complete-p, rst-get-next-adornment)
8144 (rst-adjust-adornment, rst-display-adornments-hierarchy)
8145 (rst-straighten-adornments): Standardize function names to
8146 use "adornment" instead of "decoration". Correct callers.
8147 Similar standardizing in many places.
8148
8149 (rst-update-section, rst-adjust, rst-promote-region)
8150 (rst-enumerate-region, rst-bullet-list-region)
8151 (rst-repeat-last-character): Correct use of `interactive'.
8152
8153 (rst-classify-adornment, rst-find-all-adornments)
8154 (rst-get-hierarchy, rst-adjust-adornment, rst-toc-update)
8155 (rst-find-leftmost-column, rst-repeat-last-character):
8156 Refactor functions.
8157
8158 (rst-find-title-line, rst-reset-section-caches)
8159 (rst-get-adornments-around, rst-adjust-adornment-work)
8160 (rst-arabic-to-roman, rst-roman-to-arabic)
8161 (rst-insert-list-pos, rst-insert-list-new-item)
8162 (rst-insert-list-continue, rst-insert-list, rst-forward-line):
8163 New functions.
8164
8165 (rst-all-sections, rst-section-hierarchy)
8166 (rst-arabic-to-roman, rst-initial-enums, rst-initial-items):
8167 New variables.
8168
8169 (rst-toc-return-wincfg, rst-toc-quit-window): Use window
8170 configuration instead of only buffer. Change where necessary.
8171
8172 (rst-line-tabs, rst-compute-tabs, rst-indent-line)
8173 (rst-shift-region, rst-adaptive-fill): New functions for
8174 indentation and filling.
8175
8176 (rst-comment-line-break, rst-comment-indent)
8177 (rst-comment-insert-comment, rst-comment-region)
8178 (rst-uncomment-region): New functions for handling comments.
8179
8180 (rst-compile): Quote shell arguments.
8181
8182 (rst-compile-pdf-preview, rst-compile-slides-preview):
8183 Delete temporary files after use.
8184
8185 2012-05-05 Glenn Morris <rgm@gnu.org>
8186
8187 * calendar/cal-html.el: Optionally include holidays in the output.
8188 Suggested by Ed Reingold <reingold@emr.cs.iit.edu>.
8189 (cal-html-holidays): New option.
8190 (cal-html-css-default): Add holiday entry.
8191 (holiday-in-range): Autoload it.
8192 (cal-html-htmlify-entry): Add optional class argument.
8193 (cal-html-htmlify-list): Add optional holidays argument.
8194 (cal-html-insert-agenda-days): Include holidays in the output.
8195 (cal-html-one-month): Maybe include holidays.
8196
8197 * calendar/holidays.el (holiday-in-range):
8198 Move here from cal-tex-list-holidays.
8199 * calendar/cal-tex.el (cal-tex-list-holidays):
8200 Make it an obsolete alias for holiday-in-range. Update all callers.
8201
8202 2012-05-05 Chong Yidong <cyd@gnu.org>
8203
8204 * select.el (xselect--encode-string): Always use utf-8 for TEXT on
8205 Nextstep.
8206
8207 2012-05-05 Ransom Williams <auvergnerw@gmail.com> (tiny change)
8208
8209 * files.el (file-auto-mode-skip): New var.
8210 (set-auto-mode-1): Use it.
8211
8212 2012-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
8213
8214 * repeat.el: Use lexical-binding.
8215 (repeat-last-self-insert, repeat-num-input-keys-at-self-insert)
8216 (repeat-undo-count): Remove.
8217 (repeat):
8218 * progmodes/octave-mod.el (octave-abbrev-start):
8219 * progmodes/f90.el (f90-abbrev-start):
8220 * face-remap.el (text-scale-adjust):
8221 * kmacro.el (kmacro-call-macro): Use set-temporary-overlay-map.
8222
8223 * emacs-lisp/pcase.el (pcase--let*): New function.
8224 (pcase--expand, pcase-codegen, pcase--q1): Use it to reduce nesting
8225 a bit more.
8226 (pcase--split-pred): Be more clever about ruling out overlap between
8227 a predicate and some constant pattern.
8228 (pcase--q1): Use `null' instead of (eq foo nil).
8229
8230 * subr.el (setq-local, defvar-local): New macros.
8231 (kbd): Redefine as an alias.
8232 (with-selected-window): Leave unrelated frames alone.
8233 (set-temporary-overlay-map): New function.
8234
8235 2012-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
8236
8237 * subr.el (user-error): New function.
8238 * window.el (switch-to-buffer):
8239 * vc/smerge-mode.el (smerge-resolve-function, smerge-resolve)
8240 (smerge-match-conflict):
8241 * simple.el (previous-matching-history-element)
8242 (next-matching-history-element, goto-history-element, undo-more)
8243 (undo-start):
8244 * progmodes/etags.el (visit-tags-table-buffer, find-tag-tag)
8245 (find-tag-noselect, find-tag-in-order, etags-goto-tag-location)
8246 (next-file, tags-loop-scan, list-tags, complete-tag):
8247 * progmodes/compile.el (compilation-loop):
8248 * mouse.el (mouse-minibuffer-check):
8249 * man.el (Man-bgproc-sentinel, Man-goto-page):
8250 * info.el (Info-find-node-2, Info-extract-pointer, Info-history-back)
8251 (Info-history-forward, Info-follow-reference, Info-menu)
8252 (Info-extract-menu-item, Info-extract-menu-counting)
8253 (Info-forward-node, Info-backward-node, Info-next-menu-item)
8254 (Info-last-menu-item, Info-next-preorder, Info-last-preorder)
8255 (Info-next-reference, Info-prev-reference, Info-index)
8256 (Info-index-next, Info-follow-nearest-node)
8257 (Info-copy-current-node-name):
8258 * imenu.el (imenu--make-index-alist)
8259 (imenu-default-create-index-function, imenu-add-to-menubar):
8260 * files.el (basic-save-buffer, recover-file):
8261 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
8262 * emacs-lisp/checkdoc.el (checkdoc-continue, checkdoc-comments)
8263 (checkdoc-message-text, checkdoc-defun):
8264 * dabbrev.el (dabbrev-completion, dabbrev--abbrev-at-point):
8265 * cus-edit.el (customize-changed-options, customize-rogue)
8266 (customize-saved, custom-variable-set, custom-variable-mark-to-save)
8267 (custom-variable-mark-to-reset-standard)
8268 (custom-variable-reset-backup, custom-face-mark-to-reset-standard)
8269 (custom-file):
8270 * completion.el (check-completion-length):
8271 * comint.el (comint-search-arg)
8272 (comint-previous-matching-input-string-position)
8273 (comint-previous-matching-input)
8274 (comint-replace-by-expanded-history-before-point, comint-send-input)
8275 (comint-copy-old-input, comint-backward-matching-input)
8276 (comint-goto-process-mark, comint-set-process-mark):
8277 * calendar/calendar.el (calendar-cursor-to-date): Use it.
8278 * bindings.el (debug-ignored-errors): Remove regexps, add `user-error'.
8279
8280 2012-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
8281
8282 * dabbrev.el (dabbrev--ignore-case-p): New function.
8283 (dabbrev-completion, dabbrev-expand, dabbrev--substitute-expansion):
8284 Use it.
8285
8286 * files.el (automount-dir-prefix): Mark as obsolete.
8287
8288 2012-05-04 Glenn Morris <rgm@gnu.org>
8289
8290 * patcomp.el, play/bruce.el: Move to obsolete/.
8291
8292 2012-05-04 Paul Eggert <eggert@cs.ucla.edu>
8293
8294 Fix minor Y10k bugs.
8295 * arc-mode.el (archive-unixdate):
8296 * autoinsert.el (auto-insert-alist):
8297 * calc/calc-forms.el (math-this-year):
8298 * emacs-lisp/copyright.el (copyright-current-year)
8299 (copyright-update-year, copyright):
8300 * tar-mode.el (tar-clip-time-string):
8301 * time.el (display-time-update):
8302 Don't assume years have 4 digits.
8303
8304 2012-05-04 Chong Yidong <cyd@gnu.org>
8305
8306 * dos-w32.el (file-name-buffer-file-type-alist)
8307 (direct-print-region-use-command-dot-com):
8308 * ffap.el (ffap-menu-regexp):
8309 * find-file.el (ff-special-constructs):
8310 * follow.el (follow-debug):
8311 * forms.el (forms--debug):
8312 * iswitchb.el (iswitchb-all-frames):
8313 * ido.el (ido-all-frames):
8314 * emacs-lisp/timer.el (timer-max-repeats):
8315 * mail/feedmail.el (feedmail-mail-send-hook)
8316 (feedmail-mail-send-hook-queued):
8317 * mail/footnote.el (footnote-signature-separator):
8318 * mail/mailabbrev.el (mail-alias-separator-string)
8319 (mail-abbrev-mode-regexp):
8320 * mail/rmail.el (rmail-speedbar-match-folder-regexp):
8321 * progmodes/idlwave.el (idlwave-libinfo-file)
8322 (idlwave-default-completion-case-is-down)
8323 (idlwave-library-routines): Convert defvars to defcustoms.
8324
8325 * mail/rmail.el (rmail-decode-mime-charset):
8326 * progmodes/idlw-shell.el (idlwave-shell-print-expression-function)
8327 (idlwave-shell-fix-inserted-breaks)
8328 (idlwave-shell-activate-alt-keybindings)
8329 (idlwave-shell-use-breakpoint-glyph):
8330 * facemenu.el (facemenu-unlisted-faces): Delete obsolete vars.
8331
8332 2012-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
8333
8334 * minibuffer.el (completion--twq-all): Beware completion-ignore-case.
8335
8336 2012-05-03 Wilson Snyder <wsnyder@wsnyder.org>
8337
8338 * progmodes/verilog-mode.el (font-lock-keywords):
8339 Fix mis-highligting auto. Reported by Craig Barner.
8340 (verilog-auto, verilog-auto-undef): Add AUTOUNDEF to remove
8341 defines from global name space. Reported by Dan Dever.
8342 (verilog-auto-reset, verilog-auto-reset-widths)
8343 (verilog-auto-tieoff): Support using unbased numbers for
8344 AUTORESET and AUTOTIEOFF.
8345 (verilog-submit-bug-report): Update variable list.
8346 (verilog-read-auto-params): Fix AUTOINPUT regexps containing
8347 parenthesis from not matching. Reported by Michael Rytting.
8348 (verilog-auto-template-lint): Fix hash error when linting modules
8349 with no used templates.
8350 (verilog-warn, verilog-warn-error)
8351 (verilog-warn-fatal): When non-interactive report multiple
8352 warnings before exiting. Suggested by Brad Dobbie.
8353 (verilog-auto-template-lint, verilog-auto-template-warn-unused)
8354 (verilog-read-auto-template): Add `verilog-auto-template-warn-unused'
8355 to report unused template errors. Reported by Brad Dobbie.
8356 (verilog-read-decls): Fix AUTOWIRE etc on supply0, supply1 type
8357 nets, bug438. Reported by Vns Blore.
8358 (verilog-auto-inout-module, verilog-auto-reg)
8359 (verilog-read-decls, verilog-read-sub-decls-sig)
8360 (verilog-signals-edit-wire-reg, verilog-signals-with):
8361 Fix passing of Verilog data types in ANSI input/output ports
8362 such as "output logic" into the AUTOs. Special case "wire" and
8363 "reg" for backwards compatibility presuming Verilog 2001.
8364 (verilog-auto-ascii-enum): Add "auto enum" as alias.
8365 (verilog-preprocess): Fix replication of preprocess output.
8366 Reported by Brad Dobbie.
8367 (verilog-auto-inst-interfaced-ports):
8368 Create verilog-auto-inst-interfaced-ports, bug429.
8369 Reported by Julian Gorfajn.
8370 (verilog-after-save-font-hook)
8371 (verilog-before-save-font-hook): New variable.
8372 (verilog-modi-cache-results, verilog-save-font-mod-hooked)
8373 (verilog-save-font-mods): Wrap disabling fontification, reported
8374 by David Rogoff.
8375 (verilog-do-indent, verilog-pretty-declarations-auto)
8376 (verilog-sk-def-reg): Fix obeying `verilog-auto-lineup', bug305.
8377 Reported by Pierre-David Pfister.
8378 (verilog-set-auto-endcomments): Fix endtask auto comments outside
8379 of class declarations, bug292. Reported by Kevin Heilman.
8380 (verilog-read-decls): Fix 'parameter type' not appearing in
8381 AUTOINSTPARAM, bug340. Reported by Jonathan Greenlaw.
8382 (verilog-auto-logic): Fix when AUTOLOGIC present to properly do
8383 AUTOINPUTs, bug411. Reported by Jonathan Greenlaw.
8384 (verilog-read-auto-lisp): Avoid syntax-ppss warning on AUTOLISP.
8385 Reported by David Kravitz.
8386
8387 2012-05-03 Michael McNamara <mac@mail.brushroad.com>
8388
8389 * progmodes/verilog-mode.el (verilog-pretty-expr): Don't line up
8390 assignment with tests in ifs and for loops.
8391 (verilog-extended-complete-re, verilog-complete-reg): Change so
8392 that DPI inport functions don't look like fuction declarations.
8393 (verilog-pretty-expr): Don't line up assignment
8394 operations to the test and increment in if and for loops
8395 (verilog-extended-complete-re, verilog-complete-reg): Change so
8396 that DPI inport functions don't look like fuction declarations.
8397
8398 2012-05-03 Kenichi Handa <handa@m17n.org>
8399
8400 * mail/rmailmm.el (rmail-show-mime): Catch an error caused by text
8401 decoding, and show a warning message without signaling an error
8402 (Bug#11282).
8403
8404 2012-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
8405
8406 * emacs-lisp/bytecomp.el
8407 (byte-compile-file-form-custom-declare-variable): Compile all elements,
8408 since cconv.el might have introduced :fun-body, internal-make-closure,
8409 and friends for bytecomp to handle (bug#11391).
8410 * custom.el (defcustom): Avoid ((λ ..) ..).
8411
8412 2012-05-02 Stefan Monnier <monnier@iro.umontreal.ca>
8413
8414 * subr.el (read-passwd): Better clean after ourselves (bug#11392).
8415
8416 2012-05-02 Juanma Barranquero <lekktu@gmail.com>
8417
8418 * notifications.el (dbus-debug):
8419 * term/linux.el (gpm-mouse-enable):
8420 * term/screen.el (xterm-register-default-colors): Declare.
8421
8422 2012-05-02 Chong Yidong <cyd@gnu.org>
8423
8424 * cus-start.el (gc-cons-percentage, exec-suffixes)
8425 (dos-display-scancodes, dos-hyper-key, dos-super-key)
8426 (dos-keypad-mode, debug-on-signal, vertical-centering-font-regexp)
8427 (make-cursor-line-fully-visible, void-text-area-pointer)
8428 (font-list-limit): Add customization data.
8429
8430 * allout.el (allout-exposure-change-functions)
8431 (allout-structure-added-functions)
8432 (allout-structure-deleted-functions)
8433 (allout-structure-shifted-functions): Rename abnormal hooks from
8434 *-hook, and convert to defcustoms.
8435 (allout-after-copy-or-kill-hook, allout-post-undo-hook):
8436 Convert to defcustoms.
8437 (allout-mode-hook, allout-mode-deactivate-hook): Doc fix.
8438
8439 * allout-widgets.el: Hook callers changed.
8440
8441 2012-05-02 Eli Zaretskii <eliz@gnu.org>
8442
8443 * mail/rmail.el (rmail-yank-current-message): Use the encoding of
8444 the yanked message in preference to the default value of
8445 buffer-file-coding-system.
8446
8447 2012-05-02 Martin Rudalics <rudalics@gmx.at>
8448
8449 * window.el (display-buffer--action-function-custom-type):
8450 Fix entry.
8451
8452 2012-05-02 Alan Mackenzie <acm@muc.de>
8453
8454 * progmodes/cc-defs.el (c-version): Update to 5.32.3.
8455
8456 2012-05-01 Glenn Morris <rgm@gnu.org>
8457
8458 * cus-start.el (suggest-key-bindings): Remove, now it is in Lisp.
8459
8460 * eshell/esh-cmd.el (eshell-debug-command): Doc fix. Add :set.
8461
8462 * cus-edit.el (custom-variable-documentation): Simplify with format.
8463
8464 2012-05-01 Aaron S. Hawley <aaron.s.hawley@gmail.com>
8465 Stefan Monnier <monnier@iro.umontreal.ca>
8466
8467 * simple.el (suggest-key-bindings, execute-extended-command):
8468 Move from keyboard.c.
8469
8470 2012-05-01 Chong Yidong <cyd@gnu.org>
8471
8472 * follow.el: Eliminate advice.
8473 (set-process-filter, process-filter, sit-for): Advice deleted.
8474 (follow-mode-off-hook): Obsolete hook removed.
8475 (follow-avoid-tail-recenter-p, follow-process-filter-alist):
8476 Vars deleted.
8477 (follow-auto): Use a :set function.
8478 (follow-mode): Rewritten. Don't advise process filters.
8479 (follow-switch-to-current-buffer-all, follow-scroll-up)
8480 (follow-scroll-down): Assume follow-mode is bound.
8481 (follow-comint-scroll-to-bottom)
8482 (follow-align-compilation-windows): New functions.
8483 (follow--window-sorter): New function.
8484 (follow-all-followers): Use it to explicitly sort windows by their
8485 positions; don't make assumptions about next-window order.
8486 (follow-windows-start-end, follow-delete-other-windows-and-split)
8487 (follow-calc-win-start): Doc fix.
8488 (follow-windows-aligned-p, follow-select-if-visible): Don't call
8489 vertical-motion unnecessarily.
8490 (follow-adjust-window): New function.
8491 (follow-post-command-hook): Use it.
8492 (follow-call-set-process-filter, follow-call-process-filter)
8493 (follow-intercept-process-output, follow-tidy-process-filter-alist)
8494 (follow-stop-intercept-process-output, follow-generic-filter):
8495 Functions deleted.
8496 (follow-scroll-bar-toolkit-scroll, follow-scroll-bar-drag)
8497 (follow-scroll-bar-scroll-up, follow-scroll-bar-scroll-down):
8498 New functions, replacing advice on scroll-bar-* commands.
8499 (follow-mwheel-scroll): New function (Bug#4112).
8500
8501 * comint.el (comint-adjust-point): New function.
8502 (comint-postoutput-scroll-to-bottom): Use it.
8503 Call follow-comint-scroll-to-bottom for Follow mode buffers.
8504
8505 2012-05-01 Glenn Morris <rgm@gnu.org>
8506
8507 * term/AT386.el, term/apollo.el, term/bobcat.el, term/cygwin.el:
8508 * term/iris-ansi.el, term/linux.el, term/lk201.el, term/news.el:
8509 * term/screen.el, term/vt102.el, term/vt125.el, term/vt200.el:
8510 * term/vt201.el, term/vt220.el, term/vt240.el, term/vt300.el:
8511 * term/vt320.el, term/vt400.el, term/vt420.el, term/wyse50.el:
8512 Remove no-byte-compile setting.
8513
8514 2012-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
8515
8516 * minibuffer.el (completion-table-with-quoting): Fix compatibility
8517 all-completions code to not return a number in the last cdr.
8518
8519 2012-04-30 Leo Liu <sdl.web@gmail.com>
8520
8521 * ibuf-ext.el (ibuffer-diff-buffer-with-file-1): Avoid buffer
8522 read-only error.
8523
8524 2012-04-29 Chong Yidong <cyd@gnu.org>
8525
8526 * follow.el (follow-calc-win-end): Rewrite to handle partial
8527 screen lines correctly (Bug#8390).
8528 (follow-avoid-tail-recenter): Minor cleanup.
8529
8530 2012-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
8531
8532 Avoid the obsolete `assoc' package.
8533 * speedbar.el (speedbar-refresh): Avoid adelete.
8534 (speedbar-file-lists): Simplify and avoid aput.
8535 * man.el (Man--sections, Man--refpages): New vars, replacing
8536 Man-sections-alist and Man-refpages-alist.
8537 (Man-build-section-alist, Man-build-references-alist):
8538 Use them; avoid aput.
8539 (Man--last-section, Man--last-refpage): New vars.
8540 (Man-follow-manual-reference): Use them.
8541 Use the `default' arg of completing-read.
8542 (Man-goto-section): Idem. Move prompt to the `interactive' spec.
8543
8544 2012-04-27 Chong Yidong <cyd@gnu.org>
8545
8546 * vc/diff.el (diff-sentinel): Go to bob (Bug#10259).
8547
8548 * startup.el (x-apply-session-resources): New function.
8549
8550 * term/ns-win.el (ns-initialize-window-system):
8551 * term/w32-win.el (w32-initialize-window-system):
8552 * term/x-win.el (x-initialize-window-system): Use it to properly
8553 set menu-bar-mode and other vars from X resources, even if the
8554 initial frame is not a window-system frame (Bug#2299).
8555
8556 * subr.el (read-key): Avoid running filter function when setting
8557 up temporary tool bar entries (Bug#9922).
8558
8559 2012-04-27 Andreas Schwab <schwab@linux-m68k.org>
8560
8561 * vc/vc-git.el (vc-git-state): Fix regexp matching diff output.
8562 (Bug#11344)
8563
8564 2012-04-27 Chong Yidong <cyd@gnu.org>
8565
8566 * select.el (xselect--encode-string): New function, split from
8567 xselect-convert-to-string.
8568 (xselect-convert-to-string): Use it.
8569 (xselect-convert-to-filename, xselect-convert-to-os)
8570 (xselect-convert-to-host, xselect-convert-to-user): Ensure that
8571 returned strings are properly encoded (Bug#11315).
8572
8573 2012-04-27 Chong Yidong <cyd@gnu.org>
8574
8575 * simple.el (delete-active-region): Move to killing custom group.
8576
8577 2012-04-27 Andreas Schwab <schwab@linux-m68k.org>
8578
8579 * progmodes/which-func.el (which-func-current): Quote %
8580 characters for mode-line processing.
8581
8582 2012-04-27 Chong Yidong <cyd@gnu.org>
8583
8584 * xml.el (xml-parse-region, xml-parse-tag): Avoid errors due to
8585 reaching eob (Bug#11286).
8586
8587 2012-04-27 Eli Zaretskii <eliz@gnu.org>
8588
8589 * progmodes/gdb-mi.el (gdb-control-level): New variable.
8590 (gdb): Make it buffer-local and init to zero.
8591 (gdb-control-commands-regexp): New variable.
8592 (gdb-send): Don't wrap in "-interpreter-exec console" if
8593 gdb-control-level is positive. Increment gdb-control-level
8594 whenever the command matches gdb-control-commands-regexp, and
8595 decrement it each time the command is "end". (Bug#11279)
8596
8597 2012-04-27 Martin Rudalics <rudalics@gmx.at>
8598
8599 * window.el (adjust-window-trailing-edge, enlarge-window)
8600 (shrink-window, window-resize):
8601 * mouse.el (mouse-drag-line): Fix resizing of minibuffer
8602 windows (Bug#11276).
8603
8604 2012-04-27 Chong Yidong <cyd@gnu.org>
8605
8606 * progmodes/pascal.el (pascal--extra-indent): Rename from ind, to
8607 fix "missing prefix" warning. All callers changed.
8608
8609 2012-04-27 Stefan Monnier <monnier@iro.umontreal.ca>
8610
8611 * emacs-lisp/assoc.el: Move to obsolete/.
8612
8613 2012-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
8614
8615 * emacs-lisp/assoc.el (aget): Fix dynamic-scoping issue (bug#11352).
8616
8617 * term/ns-win.el (ns-define-service):
8618 * progmodes/pascal.el (pascal-goto-defun):
8619 * progmodes/js.el (js--read-tab):
8620 * progmodes/etags.el (tags-lazy-completion-table):
8621 * emacs-lisp/syntax.el (syntax-propertize-via-font-lock):
8622 * emacs-lisp/ewoc.el (ewoc--wrap):
8623 * emacs-lisp/assoc.el (aput, adelete, amake):
8624 * doc-view.el (doc-view-convert-current-doc):
8625 * vc/diff.el (diff-no-select): Replace lexical-let by lexical-binding.
8626
8627 2012-04-26 Chong Yidong <cyd@gnu.org>
8628
8629 * image.el (image-type-from-buffer): Only return supported image
8630 type (Bug#9045).
8631
8632 * vc/diff-mode.el (diff-beginning-of-hunk): Return a meaningful
8633 value, for symmetry with diff-end-of-hunk.
8634 (diff-split-hunk, diff-find-source-location)
8635 (diff-ignore-whitespace-hunk, diff-refine-hunk): Use it.
8636 (diff-bounds-of-hunk, diff-bounds-of-file): New functions.
8637 (diff-restrict-view, diff-hunk-kill, diff-file-kill): Use them to
8638 compute the relevant hunk or file properly (Bug#6005).
8639 (diff-file-junk-re): Add bzr's "modified file" tag (Bug#6041).
8640
8641 2012-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
8642
8643 * vc/vc-mtn.el:
8644 * vc/vc-hg.el:
8645 * vc/vc-git.el:
8646 * vc/vc-dir.el:
8647 * vc/vc-cvs.el:
8648 * vc/vc-bzr.el:
8649 * vc/vc-arch.el:
8650 * vc/vc.el: Replace lexical-let by lexical-binding.
8651 * minibuffer.el (lazy-completion-table): Avoid ((λ ...) ...).
8652 * emacs-lisp/cl-macs.el (lexical-let): Fix use in lexical-binding.
8653 * emacs-lisp/cconv.el (cconv-analyse-form): Warn use of ((λ ...) ...).
8654
8655 2012-04-26 Chong Yidong <cyd@gnu.org>
8656
8657 * vc/diff-mode.el (diff-undo): New command (Bug#5302).
8658 (diff-mode-shared-map): Bind it to / and [remap undo].
8659
8660 * vc/ediff-wind.el (ediff-setup-windows-default): New function.
8661 (ediff-window-setup-function): Use it as the default, to set up
8662 windows based on whether the current frame is graphical (Bug#2138).
8663 (ediff-choose-window-setup-function-automatically): Make obsolete.
8664
8665 * vc/ediff-init.el: Always define ediff-pixel-width/height.
8666
8667 2012-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
8668
8669 * ffap.el: Remove old code for obsolete package.
8670 (ffap-complete-as-file-p): Remove.
8671
8672 Use completion-table-with-quoting for comint and pcomplete.
8673 * comint.el (comint--unquote&requote-argument)
8674 (comint--unquote-argument, comint--requote-argument): New functions.
8675 (comint--unquote&expand-filename, comint-unquote-filename): Obsolete.
8676 (comint-quote-filename): Use regexp-opt-charset.
8677 (comint--common-suffix, comint--common-quoted-suffix)
8678 (comint--table-subvert): Remove.
8679 (comint-unquote-function, comint-requote-function): New vars.
8680 (comint--complete-file-name-data): Use them with
8681 completion-table-with-quoting.
8682 * pcmpl-unix.el (pcomplete/scp): Use completion-table-subvert.
8683 * pcomplete.el (pcomplete-arg-quote-list)
8684 (pcomplete-quote-arg-hook, pcomplete-quote-argument): Obsolete.
8685 (pcomplete-unquote-argument-function): Default to non-nil.
8686 (pcomplete-unquote-argument): Simplify.
8687 (pcomplete--common-quoted-suffix): Remove.
8688 (pcomplete-requote-argument-function): New var.
8689 (pcomplete--common-suffix): New function.
8690 (pcomplete-completions-at-point): Use completion-table-with-quoting
8691 and completion-table-subvert.
8692
8693 * minibuffer.el: Use completion-table-with-quoting for read-file-name.
8694 (minibuffer--double-dollars): Preserve properties.
8695 (completion--sifn-requote): New function.
8696 (completion--file-name-table): Rewrite using it and c-t-with-quoting.
8697
8698 * minibuffer.el: Add support for completion of quoted/escaped data.
8699 (completion-table-with-quoting, completion-table-subvert): New funs.
8700 (completion--twq-try, completion--twq-all): New functions.
8701 (completion--nth-completion): New function.
8702 (completion-try-completion, completion-all-completions): Use it.
8703
8704 2012-04-25 Leo Liu <sdl.web@gmail.com>
8705
8706 * progmodes/python.el (python-pdbtrack-get-source-buffer):
8707 Use compilation-message if available to find real filename.
8708
8709 2012-04-25 Chong Yidong <cyd@gnu.org>
8710
8711 * vc/diff-mode.el (diff-setup-whitespace): New function.
8712 (diff-mode): Use it.
8713
8714 * vc/diff.el (diff-sentinel):
8715 * vc/vc.el (vc-diff-finish): Call diff-setup-whitespace to assign
8716 Whitespace mode variables based on diff style (Bug#8612).
8717
8718 2012-04-25 Leo Liu <sdl.web@gmail.com>
8719
8720 * progmodes/python.el (python-send-region): Add suffix .py to the
8721 temp file.
8722
8723 * files.el (auto-mode-alist): Use javascript-mode instead.
8724
8725 2012-04-25 Alex Harsanyi <AlexHarsanyi@gmail.com>
8726
8727 Sync with soap-client repository. Support SOAP simpleType (Bug#10331).
8728
8729 * net/soap-client.el (soap-resolve-references-for-sequence-type)
8730 (soap-resolve-references-for-array-type): Hack to prevent self
8731 references, see Bug#9.
8732 (soap-parse-envelope): Report the contents of the 'detail' node
8733 when receiving a fault reply.
8734 (soap-parse-envelope): Report the contents of the entire 'detail' node.
8735
8736 * net/soap-inspect.el (soap-sample-value-for-simple-type)
8737 (soap-inspect-simple-type): New function.
8738
8739 * net/soap-client.el (soap-simple-type): New struct.
8740 (soap-default-xsd-types, soap-default-soapenc-types)
8741 (soap-decode-basic-type, soap-encode-basic-type):
8742 support unsignedInt and double basic types.
8743 (soap-resolve-references-for-simple-type)
8744 (soap-parse-simple-type, soap-encode-simple-type): New function.
8745 (soap-parse-schema): Parse xsd:simpleType declarations.
8746
8747 * net/soap-client.el (soap-default-xsd-types)
8748 (soap-default-soapenc-types): Add integer, byte and anyURI types.
8749 (soap-parse-complex-type-complex-content): Use `soap-wk2l' to find
8750 the local name of "soapenc:Array".
8751 (soap-decode-basic-type, soap-encode-basic-type): Support encoding
8752 decoding integer, byte and anyURI xsd types.
8753
8754 2012-04-25 Chong Yidong <cyd@gnu.org>
8755
8756 * cus-edit.el (custom-buffer-create-internal): Update header text.
8757
8758 2012-04-25 Eli Zaretskii <eliz@gnu.org>
8759
8760 * progmodes/gdb-mi.el (gdb-init-1): Condition Windows-specific
8761 settings on 'system-type', not on 'window-system'. On MS-Windows,
8762 set interactive-mode on in GDB.
8763
8764 2012-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
8765
8766 * progmodes/ruby-mode.el: Simplify last change, and cleanup code.
8767 (ruby-syntax-propertize-regexp): Remove.
8768 (ruby-syntax-propertize-function): Split regexp into chunks.
8769 Match following code directly.
8770
8771 2012-04-24 Dmitry Gutov <dgutov@yandex.ru>
8772
8773 * progmodes/ruby-mode.el: Handle Cucumber defs (bug#6286).
8774 (ruby-syntax-propertize-regexp): New function.
8775 (ruby-syntax-propertize-function): Use it to handle regexp not preceded
8776 by a special keyword.
8777
8778 * progmodes/ruby-mode.el: Handle general delimited literals (bug#6286).
8779 (ruby-syntax-general-delimiters-goto-beg)
8780 (ruby-syntax-propertize-general-delimiters): New functions.
8781 (ruby-syntax-propertize-function): Use them to handle GDL.
8782 (ruby-font-lock-keywords): Move old handling of GDL...
8783 (ruby-font-lock-syntactic-keywords): .. to here.
8784 (ruby-calculate-indent): Adjust indentation for GDL.
8785
8786 2012-04-24 Michael Albinus <michael.albinus@gmx.de>
8787
8788 * notifications.el (top): Remove unneeded declarations.
8789 (notifications-specification-version): Change to "1.2".
8790 (notifications-interface, notifications-notify-method)
8791 (notifications-close-notification-method): Fix docstring.
8792 (notifications-get-capabilities-method): New defconst.
8793 (notifications-notify): Add :action-items, :resident and
8794 :transient hints. Change "image_data" to "image-data" and
8795 "image_path" to "image-path".
8796 (notifications-get-capabilities): New defun.
8797
8798 2012-04-24 Leo Liu <sdl.web@gmail.com>
8799
8800 * progmodes/python.el: Move hideshow setup to the end.
8801
8802 2012-04-24 Martin Rudalics <rudalics@gmx.at>
8803
8804 * window.el (handle-select-window): Clear echo area since this is
8805 no more done by read_char (Bug#11304).
8806
8807 2012-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
8808
8809 * ibuffer.el (ibuffer-mode-map): Bind `/ m' to filter-used-mode
8810 and `/ M' to filter-derived-mode.
8811 * ibuf-ext.el (ibuffer-list-buffer-modes): Simplify; avoid add-to-list.
8812 (ibuffer-filter-by-mode, ibuffer-filter-by-used-mode)
8813 (ibuffer-mark-by-mode): Use default rather than initial-input.
8814 (ibuffer-filter-by-derived-mode): Autoload and require-match.
8815
8816 2012-04-24 Ivan Andrus <darthandrus@gmail.com> (tiny change)
8817
8818 * ibuf-ext.el (ibuffer-list-buffer-modes): Add `include-parents' arg.
8819 (ibuffer-filter-by-derived-mode): New filter.
8820 * ibuffer.el (ibuffer-mode-map): Bind to `/ w'.
8821
8822 2012-04-23 Andreas Politz <politza@fh-trier.de>
8823
8824 * subr.el (accept-change-group): Fix arg usage (Bug#6095).
8825
8826 2012-04-23 Chong Yidong <cyd@gnu.org>
8827
8828 * cus-edit.el (customize-apropos, customize-apropos-options):
8829 Disable matching of non-option variables (Bug#11176).
8830 (customize-option, customize-option-other-window)
8831 (customize-changed-options): Doc fix.
8832 (customize-apropos-options, customize-apropos-faces)
8833 (customize-apropos-groups): Use apropos-read-pattern (Bug#11124).
8834
8835 * apropos.el (apropos-read-pattern): Make prompt less cryptic.
8836 Fix word list splitting (Bug#11132).
8837 (apropos-symbol, apropos-keybinding, apropos-label)
8838 (apropos-property, apropos-function-button)
8839 (apropos-variable-button, apropos-misc-button): New faces.
8840 (apropos-symbol-face, apropos-keybinding-face)
8841 (apropos-label-face, apropos-property-face, apropos-match-face):
8842 Variables removed (Bug#8396).
8843 (apropos-library-button, apropos-format-plist, apropos-print)
8844 (apropos-print-doc, apropos-describe-plist): Callers changed.
8845
8846 2012-04-23 Michael Albinus <michael.albinus@gmx.de>
8847
8848 * net/xesam.el (xesam-mode-map): Use let-bound map in
8849 initialization. (Bug#11292)
8850
8851 2012-04-23 Agustín Martín Domingo <agustin.martin@hispalinux.es>
8852
8853 Preserve ispell session localwords when switching back to
8854 original buffer.
8855
8856 * textmodes/ispell.el (ispell-buffer-session-localwords):
8857 New buffer-local variable to hold buffer session localwords.
8858 (ispell-kill-ispell): Add option 'clear to delete session
8859 localwords.
8860 (ispell-command-loop, ispell-change-dictionary)
8861 (ispell-buffer-local-words): Preserve session localwords when
8862 needed.
8863
8864 * textmodes/flyspell.el (flyspell-process-localwords)
8865 (flyspell-do-correct): Preserve session localwords when needed.
8866
8867 2012-04-23 Agustín Martín Domingo <agustin.martin@hispalinux.es>
8868
8869 * textmodes/ispell.el (ispell-insert-word) Remove unneeded function
8870 using obsolete `translation-table-for-input'.
8871 (ispell-word, ispell-process-line, ispell-complete-word):
8872 Use plain `insert' instead of removed `ispell-insert-word'.
8873
8874 2012-04-22 Chong Yidong <cyd@gnu.org>
8875
8876 * cus-edit.el (custom-variable-menu)
8877 (custom-variable-reset-saved, custom-face-menu)
8878 (custom-face-reset-saved): If there is no saved value, make the
8879 "reset-saved" operation bring back the default (Bug#9509).
8880 (custom-face-state): Properly detect themed faces.
8881
8882 * faces.el (face-spec-set): Stop supporting deprecated form of
8883 third arg.
8884
8885 2012-04-22 Michael Albinus <michael.albinus@gmx.de>
8886
8887 Move functions from C to Lisp. Make non-blocking method calls
8888 the default. Implement further D-Bus standard interfaces.
8889
8890 * net/dbus.el (dbus-message-internal): Declare function.
8891 Remove unneeded function declarations.
8892 (defvar dbus-message-type-invalid, dbus-message-type-method-call)
8893 (dbus-message-type-method-return, dbus-message-type-error)
8894 (dbus-message-type-signal): Declare variables. Remove local
8895 definitions.
8896 (dbus-interface-dbus, dbus-interface-peer)
8897 (dbus-interface-introspectable, dbus-interface-properties)
8898 (dbus-path-emacs, dbus-interface-emacs, dbus-return-values-table):
8899 Adapt docstring.
8900 (dbus-interface-objectmanager): New defconst.
8901 (dbus-call-method, dbus-call-method-asynchronously)
8902 (dbus-send-signal, dbus-method-return-internal)
8903 (dbus-method-error-internal, dbus-register-service)
8904 (dbus-register-signal, dbus-register-method): New defuns, moved
8905 from dbusbind.c
8906 (dbus-call-method-handler, dbus-setenv)
8907 (dbus-get-all-managed-objects, dbus-managed-objects-handler):
8908 New defuns.
8909 (dbus-call-method-non-blocking): Make it an obsolete function.
8910 (dbus-unregister-object, dbus-unregister-service)
8911 (dbus-handle-event, dbus-register-property)
8912 (dbus-property-handler): Obey the new structure of
8913 `bus-registered-objects'.
8914 (dbus-introspect): Use `dbus-call-method'. Use a timeout.
8915 (dbus-get-property, dbus-set-property, dbus-get-all-properties):
8916 Use `dbus-call-method'.
8917
8918 2012-04-22 Chong Yidong <cyd@gnu.org>
8919
8920 * cus-edit.el (custom-commands, custom-reset-menu)
8921 (Custom-reset-standard): Tweak labels.
8922 (custom-reset-button-menu): Change default to t.
8923 (custom-buffer-create-internal): For the custom-reset-button-menu
8924 case, put the revert button first.
8925 (custom-group-subtitle): New face.
8926 (custom-group-value-create): Align docstring to a specific column.
8927
8928 * wid-edit.el (widget-documentation-link-add): Don't handle
8929 indentation in this function.
8930 (widget-documentation-string-indent-to): New function.
8931 (widget-documentation-string-value-create): Use it.
8932
8933 * autorevert.el (auto-revert):
8934 * epg-config.el (epg):
8935 * ibuffer.el (ibuffer):
8936 * mpc.el (mpc):
8937 * ses.el (ses):
8938 * eshell/eshell.el (eshell):
8939 * net/ange-ftp.el (ange-ftp):
8940 * progmodes/ebnf2ps.el (postscript):
8941 * progmodes/flymake.el (flymake):
8942 * progmodes/prolog.el (prolog):
8943 * progmodes/verilog-mode.el (verilog-mode):
8944 * progmodes/which-func.el (which-func):
8945 * term/xterm.el (xterm):
8946 * textmodes/picture.el (picture):
8947 * textmodes/tildify.el (tildify):
8948 * vc/ediff.el (ediff): Tweak defgroups to improve presentation in
8949 customization buffers.
8950
8951 2012-04-22 Alan Mackenzie <acm@muc.de>
8952
8953 * progmodes/cc-engine.el (c-append-lower-brace-pair-to-state-cache):
8954 Adding a ) can hide the resulting (..) from searches. Fix it.
8955 Bound the backward search to the position of the existing (.
8956
8957 2012-04-21 Juanma Barranquero <lekktu@gmail.com>
8958
8959 * progmodes/verilog-mode.el (verilog-mode): Check whether
8960 which-func-modes is t before adding verilog-mode.
8961 Reported by Andy Moreton <andrewjmoreton@gmail.com>.
8962
8963 2012-04-21 Leo Liu <sdl.web@gmail.com>
8964
8965 * net/rcirc.el (rcirc): Avoid error when process-contact returns t.
8966
8967 2012-04-21 Michael Vehrs <Michael.Burschik@gmx.de>
8968
8969 * woman.el: Add support for "T{ T}" tbl syntax, and fix the
8970 filling of the last column of a table (Bug#5635).
8971 (woman-find-next-control-line): New arg, specifying an additional
8972 regexp component for the control line.
8973 (woman2-roff-buffer): Use it.
8974 (woman-break-table): New function.
8975 (woman2-TS): Use it.
8976
8977 2012-04-21 Chong Yidong <cyd@gnu.org>
8978
8979 * woman.el (woman-set-buffer-display-table, woman-decode-region)
8980 (woman-horizontal-escapes, woman-negative-vertical-space)
8981 (woman-tab-to-tab-stop, woman2-fc, woman2-TS)
8982 (WoMan-warn-ignored): Use ?\s instead of ?\ .
8983
8984 2012-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
8985
8986 * minibuffer.el (completion-file-name-table): Complete user names.
8987
8988 2012-04-20 Leo Liu <sdl.web@gmail.com>
8989
8990 * font-lock.el (lisp-font-lock-keywords-2): Add pcase, pcase-let
8991 and pcase-let*.
8992
8993 2012-04-20 Chong Yidong <cyd@gnu.org>
8994
8995 * server.el (server-execute): Respect initial-buffer-choice if it
8996 is a string and there are no files to open (Bug#2825).
8997 (server-create-window-system-frame, server-create-tty-frame):
8998 Don't switch buffers here.
8999 (server-process-filter): Only try to open a window system frame if
9000 compiled with graphical support (Bug#8314).
9001
9002 2012-04-20 Dan Nicolaescu <dann@gnu.org>
9003
9004 * battery.el (battery-echo-area-format): Display remaining time
9005 for sysfs backend too (Bug#11269).
9006 (battery-linux-sysfs): Fix conditional for the charge.
9007
9008 2012-04-20 Chong Yidong <cyd@gnu.org>
9009
9010 * progmodes/gdb-mi.el (gdb): Revert previous change.
9011 (gdb-inferior-io--init-proc): New function.
9012 (gdb-init-1): Use it.
9013 (gdb-inferior-io-sentinel): New sentinel for the gdb-inferior pty,
9014 responsible for allocating a new pty and hooking it to gdb when
9015 the old pty gets an EIO due to process exit.
9016 (gdb-delchar-or-quit): New command. Bind it in gdb-mi buffers.
9017 (gdb-tooltip-print): Don't use obsolete tooltip-use-echo-area.
9018 (gdb-inferior-io--maybe-delete-pty): Move into gdb-reset.
9019
9020 2012-04-20 Eli Zaretskii <eliz@gnu.org>
9021
9022 * window.el (window-min-size, window-sizable, window-min-delta)
9023 (window-max-delta, window--resizable, window-resizable)
9024 (window-total-size, window-full-height-p, window-full-width-p)
9025 (window-in-direction, window--resize-mini-window, window-resize)
9026 (window--resize-child-windows-normal)
9027 (window--resize-child-windows, window--resize-siblings)
9028 (window--resize-this-window, adjust-window-trailing-edge)
9029 (enlarge-window, shrink-window): Doc fixes.
9030
9031 2012-04-20 Chong Yidong <cyd@gnu.org>
9032
9033 * progmodes/gdb-mi.el (gdb-inferior-io--maybe-delete-pty):
9034 New function to call delete-process on the gdb-inferior buffer's pty.
9035 (gdb-reset): Use it, instead of relying on kill-buffer to kill the
9036 pty process (Bug#11273).
9037 (gdb-update): New arg to suppress talking to the gdb process.
9038 (gdb-done-or-error): Use it.
9039 (gdb-stopped-functions): Rename from gdb-stopped-hooks.
9040 (gdb): Call gdb-inferior-io--maybe-delete-pty as a workaround for
9041 sentinel not being called.
9042
9043 * comint.el (make-comint-in-buffer, comint-exec): Doc fix.
9044
9045 * progmodes/grep.el (grep, rgrep): Doc fix (Bug#11268).
9046
9047 2012-04-20 Glenn Morris <rgm@gnu.org>
9048
9049 * net/network-stream.el (open-network-stream): Doc fix.
9050
9051 2012-04-20 Chong Yidong <cyd@gnu.org>
9052
9053 * emacs-lisp/tabulated-list.el (tabulated-list-print): Fix typos.
9054
9055 2012-04-20 Alan Mackenzie <acm@muc.de>
9056
9057 Ensure searching for keywords is case sensitive.
9058
9059 * progmodes/cc-cmds.el (c-electric-brace, c-electric-lt-gt)
9060 (c-electric-paren, c-beginning-of-defun, c-end-of-defun)
9061 (c-defun-name, c-mark-function, c-cpp-define-name)
9062 (c-comment-indent, c-scan-conditionals, c-indent-defun)
9063 (c-context-line-break): Bind case-fold-search to nil.
9064
9065 * progmodes/cc-mode.el (c-font-lock-fontify-region):
9066 Bind case-fold-search to nil.
9067
9068 2012-04-20 Chong Yidong <cyd@gnu.org>
9069
9070 * mail/sendmail.el (mail-bury): Call return action with the right
9071 Rmail buffer (Bug#11242).
9072
9073 * server.el (server-process-filter): Handle corner case where both
9074 tty and nowait options are present (Bug#11102).
9075
9076 2012-04-20 Eli Zaretskii <eliz@gnu.org>
9077
9078 * version.el (emacs-bzr-version, emacs-bzr-get-version): Doc fixes.
9079 (top level): Put into the executable the ident-style '$Id:' tag on
9080 windows-nt as well.
9081
9082 2012-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
9083
9084 * electric.el (electric-indent-post-self-insert-function): Check that
9085 electric-indent-mode is enabled in current buffer.
9086
9087 2012-04-19 Juanma Barranquero <lekktu@gmail.com>
9088
9089 * imenu.el (imenu-progress-message): Restore; it is "used" in
9090 erc/erc-imenu.el and net/snmp-mode.el.
9091
9092 2012-04-19 Juanma Barranquero <lekktu@gmail.com>
9093
9094 * avoid.el (mouse-avoidance-mode): Mark unused arg.
9095 (mouse-avoidance-nudge-mouse): Remove unused binding.
9096
9097 * bs.el (bs-toggle-readonly): Call `toggle-read-only' interactively.
9098
9099 * descr-text.el (describe-char):
9100 * progmodes/python.el (python-describe-symbol):
9101 Don't call `toggle-read-only', set `buffer-read-only'.
9102
9103 * imenu.el (imenu-default-goto-function): Mark unused args.
9104 (imenu-progress-message): Remove obsolete macro; all callers changed.
9105
9106 * subr.el (keymap-canonicalize): Remove unused binding.
9107 (read-passwd): Mark unused arg.
9108
9109 * tutorial.el (tutorial--display-changes): Remove unused binding.
9110 (tutorial--save-tutorial-to): Remove unused variable.
9111
9112 * emacs-lisp/package.el (define-package, package-menu-mark-delete)
9113 (package-menu-mark-install, package-menu-mark-unmark): Mark unused args.
9114 (package-generate-autoloads, package-menu--generate)
9115 (package-menu--find-upgrades): Remove unused bindings.
9116
9117 * emulation/cua-rect.el (cua-restrict-regexp-rectangle)
9118 (cua-restrict-prefix-rectangle): Doc fixes. Remove unused bindings.
9119 (cua--mouse-ignore, cua--delete-rectangle, cua--extract-rectangle)
9120 (cua--indent-rectangle, cua-open-rectangle, cua-close-rectangle)
9121 (cua-blank-rectangle, cua-string-rectangle, cua-replace-in-rectangle)
9122 (cua-incr-rectangle, cua-sequence-rectangle, cua--convert-rectangle-as)
9123 (cua--rectangle-aux-replace, cua--left-fill-rectangle)
9124 (cua-scroll-rectangle-up, cua-scroll-rectangle-down)
9125 (cua-delete-char-rectangle): Mark unused args.
9126 (cua-align-rectangle): Remove unused binding.
9127
9128 * mail/rmail.el (compilation--message->loc)
9129 (epa--find-coding-system-for-mime-charset): Declare.
9130
9131 * net/dbus.el (dbus-register-service): Declare.
9132 (dbus-name-owner-changed-handler): Remove unused binding.
9133
9134 * nxml/nxml-mode.el (nxml-electric-slash, nxml-in-mixed-content-p)
9135 (nxml-compute-indent-from-matching-start-tag): Remove unused variables.
9136 (nxml-scan-backward-within): Mark unused arg.
9137 (nxml-dynamic-markup-word): Remove unused binding.
9138
9139 * mouse.el (mouse-menu-major-mode-map):
9140 * emacs-lisp/authors.el (authors-scan-change-log)
9141 (authors-add-to-author-list):
9142 * emacs-lisp/avl-tree.el (avl-tree--enter-balance):
9143 * emacs-lisp/smie.el (smie-auto-fill):
9144 * mail/sendmail.el (mail-bury):
9145 * mail/unrmail.el (unrmail):
9146 * net/tls.el (open-tls-stream):
9147 * textmodes/picture.el (picture-mouse-set-point):
9148 Remove unused bindings.
9149
9150 2012-04-19 Michael Albinus <michael.albinus@gmx.de>
9151
9152 * net/tramp.el (tramp-action-password): Let-bind
9153 `enable-recursive-minibuffers' to t.
9154
9155 2012-04-18 Sam Steingold <sds@gnu.org>
9156
9157 * progmodes/gud.el (gud-key-prefix): Use :type 'key-sequence
9158 instead of 'string to accommodate values like [f11].
9159 Always use `vconcat' instead of `concat' on it, like in `gud-def'.
9160 * progmodes/gdb-mi.el: Likewise.
9161
9162 2012-04-18 Leo Liu <sdl.web@gmail.com>
9163
9164 * abbrev.el (edit-abbrevs): Move point to the abbrev table of
9165 current buffer.
9166 (prepare-abbrev-list-buffer): Enter edit-abbrevs-mode only if
9167 LOCAL is nil.
9168
9169 2012-04-18 Chong Yidong <cyd@gnu.org>
9170
9171 * simple.el (line-move): Use forward-line if in batch mode
9172 (Bug#11053).
9173
9174 2012-04-18 Christopher Schmidt <christopher@ch.ristopher.com>
9175
9176 * files.el (after-find-file): Do not try to add a final newline if
9177 the buffer is read-only (Bug#11156).
9178
9179 2012-04-17 Richard Stallman <rms@gnu.org>
9180
9181 * mail/rmail.el (rmail-start-mail):
9182 Pass (rmail-mail-return...) for the return-action.
9183 Pass (rmail-yank-current-message...) for the yank-action.
9184 (rmail-yank-current-message): New function.
9185 (rmail-mail): Pass the Rmail buffer, not view buffer, for replybuffer.
9186 (rmail-reply): Likewise.
9187 (rmail-forward): Pass the Rmail buffer, not nil, for replybuffer.
9188
9189 * mail/sendmail.el (mail-bury): Choose the first rmail-mode
9190 buffer, not the last. Reject temp buffers. Use the rmail-mode
9191 buffer, not newbuf.
9192
9193 2012-04-17 Juanma Barranquero <lekktu@gmail.com>
9194
9195 * server.el (server-ensure-safe-dir): Simplify.
9196
9197 2012-04-17 Stefan Monnier <monnier@iro.umontreal.ca>
9198
9199 * emacs-lisp/smie.el: Provide smarter auto-filling.
9200 (smie-auto-fill): New function.
9201 (smie-setup): Use it.
9202
9203 * newcomment.el (comment-choose-indent): Obey comment-inline-offset.
9204
9205 2012-04-17 Philipp Haselwarter <philipp.haselwarter@gmx.de> (tiny change)
9206
9207 * newcomment.el (comment-inline-offset): New custom var (bug#11090).
9208 (comment-indent): Use it.
9209
9210 2012-04-17 Vincent Belaïche <vincentb1@users.sourceforge.net>
9211
9212 * ses.el: The overall change is to add cell renaming, that is
9213 setting fancy names for cell symbols other than name matching
9214 "\\`[A-Z]+[0-9]+\\'" regexp .
9215 (ses-localvars): Add ses--renamed-cell-symb-list.
9216 (ses-create-cell-variable): New defun.
9217 (ses-destroy-cell-variable-range): Respect ses--numrows, ses--numcols.
9218 (ses-relocate-formula): Relocate formulas only for cells the
9219 symbols of which are not renamed, i.e. symbols whose names do not
9220 match regexp "\\`[A-Z]+[0-9]+\\'".
9221 (ses-relocate-all): Relocate values only for cells the symbols of
9222 which are not renamed.
9223 (ses-load): Create cells variables as the (ses-cell ...) are read,
9224 in order to check row col consistency with cell symbol name only
9225 for cells that are not renamed.
9226 (ses-replace-name-in-formula): New defun.
9227 (ses-rename-cell): New defun.
9228
9229 2012-04-17 Peter Oliver <bzr@mavit.org.uk> (tiny change)
9230
9231 * progmodes/perl-mode.el (perl-indent-parens-as-block):
9232 New option (bug#11118).
9233 (perl-calculate-indent): Respect it.
9234
9235 2012-04-17 Glenn Morris <rgm@gnu.org>
9236
9237 * dired-aux.el (dired-mark-read-string): Doc fix.
9238
9239 2012-04-17 Dmitry Antipov <dmantipov@yandex.ru>
9240
9241 * dired-aux.el (dired-mark-read-string): Offer optional completion.
9242 (dired-do-chxxx): Complete chown, chgrp over users, groups. (Bug#7900)
9243
9244 2012-04-17 Glenn Morris <rgm@gnu.org>
9245
9246 * mouse.el (mouse-drag-track):
9247 * speedbar.el (speedbar-frame-mode):
9248 Use auto-hscroll-mode rather than the alias automatic-hscrolling.
9249
9250 2012-04-16 Leo Liu <sdl.web@gmail.com>
9251
9252 * progmodes/python.el: Trivial cleanup.
9253
9254 2012-04-16 Glenn Morris <rgm@gnu.org>
9255
9256 * vc/vc.el (vc-string-prefix-p):
9257 * vc/pcvs-util.el (cvs-string-prefix-p):
9258 * textmodes/tex-mode.el (latex-string-prefix-p, tex-string-prefix-p):
9259 * mpc.el (mpc-string-prefix-p):
9260 Make all of these into obsolete aliases for string-prefix-p.
9261 Update callers.
9262 * vc/pcvs.el, vc/vc-dispatcher.el, vc/vc-dir.el: Update callers.
9263
9264 * textmodes/two-column.el: Move custom options to the start.
9265 (frame-width): Remove compat definition.
9266 (2C-associate-buffer, 2C-dissociate):
9267 Use with-current-buffer rather than save-excursion.
9268 (2C-dissociate): Force a mode-line update.
9269 (2C-autoscroll): Use ignore-errors.
9270
9271 * emacs-lisp/eieio-opt.el (describe-class, describe-generic):
9272 Autoload trivia.
9273
9274 * emacs-lisp/cl-extra.el (*random-state*):
9275 Remove unnecessary declaration.
9276
9277 * calendar/cal-tex.el (cal-tex-end-document): Trivial clarification.
9278
9279 * play/cookie1.el (cookie-snarf):
9280 Give an explicit error if input file cannot be read.
9281
9282 * play/yow.el (yow-file): Use expand-file-name rather than concat.
9283
9284 * progmodes/perl-mode.el (c-macro-expand):
9285 Remove unnecessary autoload (it is in loaddefs.el).
9286
9287 * textmodes/picture.el (picture-desired-column)
9288 (picture-update-desired-column): Convert comments to doc-strings.
9289 (picture-substitute): Remove function.
9290 (picture-mode-map): Initialize in the defvar.
9291
9292 * woman.el: Remove eval-after-load for tar-mode.
9293 * tar-mode.el (tar-mode-map): Add woman binding and menu entry.
9294 (woman-tar-extract-file): Autoload it.
9295
9296 * frame.el (automatic-hscrolling): Make this alias obsolete.
9297
9298 2012-04-12 Agustín Martín Domingo <agustin.martin@hispalinux.es>
9299
9300 * textmodes/ispell.el (ispell-set-spellchecker-params): Post-process
9301 `ispell-dictionary-alist' to use [:alpha:] and utf-8 if possible.
9302 (ispell-dictionary-base-alist): Revert to original XEmacs
9303 friendly version for default. [:alpha:] will be added in
9304 `ispell-set-spellchecker-params' if needed.
9305
9306 2012-04-16 Chong Yidong <cyd@gnu.org>
9307
9308 * image.el (imagemagick--file-regexp): New variable.
9309 (imagemagick-register-types): Use it.
9310 (imagemagick-types-inhibit): Add :set function. Allow new value
9311 of t to inhibit all types.
9312
9313 * emacs-lisp/regexp-opt.el (regexp-opt-charset): Avoid cl macros,
9314 so we can preload it.
9315
9316 * loadup.el (fboundp): Preload regexp-opt, needed by
9317 imagemagick-register-types.
9318
9319 2012-04-15 Chong Yidong <cyd@gnu.org>
9320
9321 * frame.el (scrolling): Remove nearly unused customization group.
9322
9323 * scroll-all.el (scroll-all-mode): Move to windows group.
9324
9325 2012-04-15 Chong Yidong <cyd@gnu.org>
9326
9327 * bindings.el (goto-map): Bind goto-char to M-g c (Bug#11240).
9328
9329 2012-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
9330
9331 Avoid the use of ((lambda ...) ...) in lexical-binding code.
9332 * emacs-lisp/easy-mmode.el (define-minor-mode): Use funcall (bug#11241).
9333
9334 2012-04-15 Glenn Morris <rgm@gnu.org>
9335
9336 * simple.el (process-file-side-effects): Doc fix.
9337
9338 2012-04-15 Glenn Morris <rgm@gnu.org>
9339
9340 * international/mule-cmds.el (set-language-environment): Doc fix.
9341
9342 2012-04-14 Juanma Barranquero <lekktu@gmail.com>
9343
9344 * server.el (server-auth-key, server-generate-key): Doc fixes.
9345 (server-get-auth-key): Doc fix. Use `string-match-p'.
9346 (server-start): Reflow docstring.
9347
9348 2012-04-14 Lars Ingebrigtsen <larsi@gnus.org>
9349
9350 * server.el (server-generate-key): `called-interactively-p'
9351 requires a parameter.
9352
9353 2012-04-14 Michal Nazarewicz <mina86@mina86.com>
9354
9355 * server.el (server-auth-key): New variable.
9356 (server-generate-key, server-get-auth-key): New function.
9357 (server-start): Use the new variable and functions to allow
9358 setting a permanent server key (bug#9423).
9359
9360 2012-04-14 Leo Liu <sdl.web@gmail.com>
9361
9362 * vc/diff-mode.el (diff-file-prev/next): Fix typo.
9363
9364 2012-04-14 Paul Eggert <eggert@cs.ucla.edu>
9365
9366 Spelling fixes.
9367 * hexl.el (hexl-rulerize): Rename from hexl-rulerise, since
9368 Emacs uses American spelling.
9369
9370 2012-04-14 Juanma Barranquero <lekktu@gmail.com>
9371
9372 * emacs-lock.el (emacs-lock-locked-buffer-functions): New hook.
9373 (emacs-lock--exit-locked-buffer): Return the locked buffer. Doc fix.
9374 (emacs-lock--kill-emacs-hook, emacs-lock--kill-emacs-query-functions)
9375 (emacs-lock--kill-buffer-query-functions): Run new hook. (Bug#11017)
9376
9377 2012-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
9378
9379 * progmodes/which-func.el (which-func-modes): Change default.
9380
9381 2012-04-14 Kim F. Storm <storm@cua.dk>
9382
9383 * emulation/cua-base.el (cua-exchange-point-and-mark): Just call
9384 exchange-point-and-mark if cua-enable-cua-keys is nil (Bug#11191).
9385
9386 2012-04-14 Chong Yidong <cyd@gnu.org>
9387
9388 * custom.el (custom-theme-set-variables): Doc fix.
9389
9390 2012-04-14 Glenn Morris <rgm@gnu.org>
9391
9392 * international/mule.el (set-auto-coding-for-load): Doc fix.
9393
9394 2012-04-14 Alan Mackenzie <acm@muc.de>
9395
9396 * progmodes/cc-menus.el (cc-imenu-objc-generic-expression): Make
9397 imenu work again for Objective C Mode. Correct the *-index values,
9398 these having been disturbed by a previous change in 2011-08.
9399
9400 * progmodes/cc-engine.el (c-before-change-check-<>-operators):
9401 Correct two search limits.
9402
9403 2012-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
9404
9405 * startup.el (command-line-1): Inhibit splash from daemon (bug#10996).
9406
9407 2012-04-14 Andreas Schwab <schwab@linux-m68k.org>
9408
9409 * international/characters.el: Fix sorting.
9410
9411 2012-04-14 Eli Zaretskii <eliz@gnu.org>
9412
9413 * international/characters.el: Add more missing Latin case pairs.
9414
9415 2012-04-14 Glenn Morris <rgm@gnu.org>
9416
9417 * files.el (dir-locals-set-class-variables): Doc fix.
9418
9419 2012-04-14 Eli Zaretskii <eliz@gnu.org>
9420
9421 * international/characters.el: Add set-case-syntax-pair call for
9422 LATIN CAPITAL LETTER Y WITH DIAERESIS RET and its lower-case
9423 counterpart. (Bug#11209)
9424
9425 * simple.el (shell-command-on-region): Doc fix. (Bug#11208)
9426
9427 2012-04-14 Glenn Morris <rgm@gnu.org>
9428
9429 * calendar/holidays.el (calendar-check-holidays): Doc fix.
9430
9431 2012-04-14 Eli Zaretskii <eliz@gnu.org>
9432
9433 * textmodes/ispell.el (ispell-dictionary-base-alist):
9434 Add data for Hebrew.
9435
9436 2012-04-14 Chong Yidong <cyd@gnu.org>
9437
9438 * net/rcirc.el (rcirc-cmd-quit):
9439 Revert 2012-03-18 change (Bug#11192).
9440
9441 2012-04-14 Glenn Morris <rgm@gnu.org>
9442
9443 * pcmpl-rpm.el (pcomplete/rpm): Handle -qf.
9444
9445 2012-04-14 Eli Zaretskii <eliz@gnu.org>
9446
9447 * minibuffer.el (completion-in-region-mode-map):
9448 Bind completion-help-at-point to M-? rather than ?. (Bug#11182)
9449
9450 2012-04-13 Vivek Dasmohapatra <vivek@etla.org>
9451
9452 * hexl.el (hexl-insert-char): Make display sizes other than 16 work.
9453
9454 2012-04-13 Masatake YAMATO <yamato@redhat.com>
9455
9456 * minibuffer.el (minibuffer-local-filename-syntax): New variable
9457 to allow `C-M-f' and `C-M-b' to move to the nearest path
9458 separator (bug#9511).
9459
9460 2012-04-13 Lars Ingebrigtsen <larsi@gnus.org>
9461
9462 * avoid.el: Require cl when compiling. And also move the
9463 `provide' to the end.
9464
9465 2012-04-13 Thierry Volpiatto <thierry.volpiatto@gmail.com>
9466
9467 * avoid.el (mouse-avoidance-banish-position): New variable.
9468 (mouse-avoidance-banish-destination): Use it (bug#10165).
9469
9470 2012-04-13 Leo Liu <sdl.web@gmail.com>
9471
9472 * progmodes/which-func.el (which-func-modes): Add objc-mode.
9473
9474 2012-04-13 Ken Brown <kbrown@cornell.edu>
9475
9476 * net/browse-url.el (browse-url-file-url): Remove Cygwin hack;
9477 this is no longer needed now that cygstart understands file:// URLs.
9478 (browse-url-filename-alist): For the same reason, don't modify
9479 file:// URLs on Cygwin.
9480
9481 2012-04-13 Stefan Monnier <monnier@iro.umontreal.ca>
9482
9483 * emulation/cua-base.el (cua--pre-command-handler-1): Don't activate
9484 the region on shift if the binding is already shifted (bug#11221).
9485
9486 2012-04-12 Glenn Morris <rgm@gnu.org>
9487
9488 * mail/mailpost.el: Move to obsolete/.
9489
9490 2012-04-12 Drew Adams <drew.adams@oracle.com>
9491
9492 * imenu.el (imenu--generic-function): Ignore invisible definitions
9493 (bug#10123).
9494
9495 2012-04-12 Vivek Dasmohapatra <vivek@etla.org>
9496
9497 * hexl.el (hexl-bits): New variable.
9498 (hexl-options): Mention the variable in the doc string.
9499 (hexl-rulerise, hexl-line-displen): New functions.
9500 (hexl-mode): Mention the new variable.
9501 (hexl-mode, hexl-current-address, hexl-current-address):
9502 Use the displen.
9503 (hexl-ascii-start-column): New function.
9504 (hexl-address-to-marker, hexl-beginning-of-line, hexl-options)
9505 (hexl-insert-char, hexl-mode-ruler): Use the displen (bug#4941).
9506
9507 2012-04-12 Agustín Martín Domingo <agustin.martin@hispalinux.es>
9508
9509 * textmodes/flyspell.el (flyspell-large-region): For hunspell, use
9510 '("-i" ENCODING), in 2 separate command-line arguments, to specify
9511 the encoding, as expected by hunspell.
9512
9513 2012-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
9514
9515 * battery.el (battery--linux-sysfs-regexp): New const.
9516 (battery-status-function): Use it. Remove yeeloong special case.
9517 (battery-yeeloong-sysfs): Remove.
9518 (battery-echo-area-format): Remove yeeloong special case.
9519
9520 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
9521
9522 * imenu.el (imenu-add-to-menubar): `current-local-map' can be nil.
9523 Reported by Noah Friedman.
9524
9525 * subr.el (read-passwd): Use read-string.
9526
9527 2012-04-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
9528
9529 * vcursor.el (vcursor-move): Increase the priority of the overlay
9530 (bug#9663).
9531
9532 2012-04-11 Deniz Dogan <deniz.a.m.dogan@gmail.com>
9533
9534 * net/rcirc.el (rcirc-kill-channel-buffers): New variable.
9535 (rcirc-kill-buffer-hook): Use it to kill channel buffers (bug#5128).
9536
9537 2012-04-11 William Stevenson <yhvh2000@gmail.com>
9538
9539 * textmodes/artist.el (artist-mode): Convert artist-mode to use
9540 define-minor-mode (bug#10760).
9541
9542 2012-04-11 Wolfgang Jenkner <wjenkner@inode.at> (tiny change)
9543
9544 * progmodes/grep.el (rgrep): Tweak the find command line so
9545 that directories matching `grep-find-ignored-files' won't be
9546 pruned (bug#10351).
9547
9548 2012-04-11 Chong Yidong <cyd@gnu.org>
9549
9550 * startup.el (command-line): Remove support for long-obsolete
9551 variable font-lock-face-attributes.
9552
9553 2012-04-11 Glenn Morris <rgm@gnu.org>
9554
9555 * vc/vc-bzr.el (vc-bzr-status): Avoid condition-case-unless-debug.
9556
9557 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
9558
9559 * window.el (window--state-get-1): Obey window-point-insertion-type.
9560
9561 2012-04-11 Lennart Borgman <lennart.borgman@gmail.com>
9562
9563 * emacs-lisp/lisp.el (narrow-to-defun): `beginning-of-defun' goes
9564 to previous function when point is on the first character of a
9565 function. Take care of that in `narrow-to-defun' (bug#6157).
9566
9567 2012-04-11 Glenn Morris <rgm@gnu.org>
9568
9569 * vc/vc-bzr.el (vc-bzr-status): Handle all errors,
9570 not just file-errors.
9571
9572 * vc/vc-bzr.el (vc-bzr-sha1-program, sha1-program): Remove.
9573 (vc-bzr-sha1): Use internal sha1.
9574
9575 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
9576
9577 * progmodes/flymake.el (flymake-mode): Beware read-only dirs (bug#8954).
9578
9579 2012-04-10 Sébastien Gross <seb@chezwam.org> (tiny change)
9580
9581 * progmodes/hideshow.el (hs-hide-all): Don't infloop on comments
9582 that start in the middle of the line (bug#10496).
9583
9584 2012-04-10 Dan Nicolaescu <dann@gnu.org>
9585
9586 * battery.el (battery-linux-proc-acpi): Only one battery is
9587 discharged at a time, but that seems to confuse battery.el when
9588 computing `rate-type' for the battery not being discharged
9589 (bug#10332).
9590
9591 2012-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
9592
9593 * emacs-lisp/autoload.el (autoload-make-program): Remove, unused.
9594
9595 * international/quail.el: Use dolist and simplify.
9596 (quail-define-package, quail-update-keyboard-layout)
9597 (quail-define-rules): Use dolist.
9598 (quail-insert-kbd-layout, quail-get-translation): CSE.
9599
9600 * tmm.el: Use dolist, remove left over hook.
9601 (tmm-prompt, tmm-define-keys, tmm-shortcut, tmm-get-keybind):
9602 Use dolist.
9603 (calendar-load-hook): Don't mess with it.
9604
9605 * vc/vc-annotate.el (vc-annotate-show-diff-revision-at-line-internal):
9606 Use derived-mode-p. Run the diff asynchronously.
9607
9608 2012-04-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
9609
9610 * obsolete/mouse-sel.el: Add an Obsolete-since header.
9611
9612 2012-04-10 Juanma Barranquero <lekktu@gmail.com>
9613
9614 * misc.el: Display absolute path of loaded DLLs (bug#10424).
9615 (list-dynamic-libraries--loaded): New function.
9616 (list-dynamic-libraries--refresh): Use it.
9617
9618 2012-04-10 Nathan Weizenbaum <nweiz@google.com>
9619
9620 * progmodes/python.el (python-fill-paragraph):
9621 Make python-fill-region in a multiline string work when font-lock is
9622 disabled (bug#7018).
9623
9624 2012-04-10 Laimonas Vėbra <laimonas.vebra@gmail.com> (tiny change)
9625
9626 * language/european.el (cp775): Add oem/legacy (en)coding on
9627 DOS/MS Windows for the Baltic languages. There are still plenty
9628 of texts written in this encoding/codepage (bug#6519).
9629
9630 2012-04-10 Glenn Morris <rgm@gnu.org>
9631
9632 * cus-start.el (eol-mnemonic-unix, eol-mnemonic-dos, eol-mnemonic-mac):
9633 Add :standard values, reducing "rogue" customs in emacs -Q a bit more.
9634
9635 2012-04-10 Florian Adamsky <florian@adamsky.it> (tiny change)
9636
9637 * recentf.el (recentf-dialog-mode-map): Add two keybindings for
9638 next-line "n" and previous-line "p" in order to make recentf more
9639 consistent with ibuffer, dired or org-mode (bug#9387).
9640
9641 2012-04-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
9642
9643 * image.el (put-image): Return the overlay created instead of the
9644 optional input string (bug#7834). Note that this may break code
9645 that is (for some reason or other) depending on `put-image'
9646 returning the string.
9647
9648 * mouse-sel.el (mouse-sel-mode): Mark as obsolete (bug#6174).
9649
9650 * simple.el (zap-to-char): Allow zapping using input methods
9651 (bug#1580).
9652
9653 * textmodes/fill.el (fill-region): Leave point and mark where they
9654 were before filling (bug#5399).
9655
9656 2012-04-09 Glenn Morris <rgm@gnu.org>
9657
9658 * version.el (emacs-bzr-get-version):
9659 Handle lightweight checkouts of local branches.
9660
9661 2012-04-09 Andreas Schwab <schwab@linux-m68k.org>
9662
9663 * international/characters.el: Recover lost case pairs. (Bug#11209)
9664
9665 2012-04-09 Chong Yidong <cyd@gnu.org>
9666
9667 * custom.el (custom-variable-p): Return nil for non-symbol
9668 arguments instead of signaling an error.
9669 (user-variable-p): Obsolete alias for custom-variable-p.
9670
9671 * apropos.el (apropos-variable):
9672 * files-x.el (read-file-local-variable):
9673 * simple.el (set-variable):
9674 * woman.el (woman-mini-help):
9675 * emacs-lisp/byte-opt.el (side-effect-free-fns): Callers changed.
9676
9677 2012-04-09 Glenn Morris <rgm@gnu.org>
9678
9679 * startup.el (normal-top-level): Don't look for leim-list.el
9680 in places where it will not be found. (Bug#910)
9681
9682 * international/mule-cmds.el (set-default-coding-systems):
9683 * files.el (normal-mode):
9684 Remove guarded calls to ucs-set-table-for-input. (Bug#9821)
9685 This function was removed with ucs-tables.el in 2008.
9686
9687 2012-04-08 Eli Zaretskii <eliz@gnu.org>
9688
9689 * textmodes/ispell.el (ispell-check-version): For hunspell, set
9690 ispell-encoding8-command to "-i", without a trailing space.
9691 (ispell-start-process): For hunspell, use '("-i" ENCODING), in 2
9692 separate command-line arguments, to specify the encoding, since
9693 that's how hunspell expects it.
9694
9695 2012-04-08 Glenn Morris <rgm@gnu.org>
9696
9697 * loadup.el: Load bindings before cus-start.
9698 This reduces somewhat the number of "rogue" settings in emacs -Q.
9699
9700 2012-04-07 Glenn Morris <rgm@gnu.org>
9701
9702 * version.el (emacs-bzr-get-version): New function.
9703 (emacs-bzr-version): New variable.
9704 * loadup.el (emacs-bzr-version): Set it. (Bug#8054)
9705 * mail/emacsbug.el (report-emacs-bug): Include bzr version.
9706
9707 2012-04-07 Eli Zaretskii <eliz@gnu.org>
9708
9709 * international/uni-bidi.el, international/uni-category.el:
9710 * international/uni-combining.el, international/uni-decimal.el:
9711 * international/uni-decomposition.el, international/uni-digit.el:
9712 * international/uni-lowercase.el, international/uni-mirrored.el:
9713 * international/uni-name.el, international/uni-numeric.el:
9714 * international/uni-titlecase.el, international/uni-uppercase.el:
9715 Update for Unicode 6.1.
9716
9717 2012-04-07 Eli Zaretskii <eliz@gnu.org>
9718
9719 * term/w32-win.el (dynamic-library-alist): Add libxml2 DLLs.
9720
9721 2012-04-05 Lars Magne Ingebrigtsen <larsi@gnus.org>
9722
9723 * window.el (shrink-window): Mention the `window-min-height'
9724 variable in the doc string.
9725
9726 2012-04-05 Bastien Guerry <bzg@altern.org>
9727
9728 * color.el (color-lighten-name): Fix typo.
9729
9730 2012-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
9731
9732 * server.el (server--on-display-p): New function.
9733 (server--on-display-p): Use it.
9734
9735 2012-04-04 Gábor Vida <vidagabor@gmail.com> (tiny change)
9736
9737 * ido.el (ido-wide-find-dirs-or-files): Use file-name-absolute-p
9738 (bug#11145).
9739
9740 2012-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
9741
9742 * comint.el (comint--common-quoted-suffix): Check string boundary
9743 before comparing (bug#11158).
9744 * pcomplete.el (pcomplete--common-quoted-suffix): Idem.
9745
9746 2012-04-04 Chong Yidong <cyd@gnu.org>
9747
9748 * minibuffer.el (completion-extra-properties): Doc fix.
9749
9750 * subr.el (delayed-warnings-hook): Doc fix.
9751
9752 2012-04-04 Daiki Ueno <ueno@unixuser.org>
9753
9754 * epa.el (epa--select-keys): Bind C-c C-c to finish the key
9755 selection (Bug#11159).
9756 (epa-insert-keys): Inform that the default public key will be
9757 exported if no key is selected.
9758
9759 2012-04-04 Richard Stallman <rms@gnu.org>
9760
9761 * mail/emacsbug.el (report-emacs-bug): Bind inhibit-read-only.
9762
9763 2012-04-03 Chong Yidong <cyd@gnu.org>
9764
9765 * mail/sendmail.el (mail-mode-map): Bind C-c C-i to
9766 mail-insert-file, not its obsolete alias mail-attach-file.
9767
9768 2012-04-03 Michael Albinus <michael.albinus@gmx.de>
9769
9770 * notifications.el (notifications-notify): Fix docstring.
9771
9772 2012-04-02 Glenn Morris <rgm@gnu.org>
9773
9774 * emacs-lisp/authors.el (authors-aliases): Another addition.
9775
9776 2012-04-02 Michael Albinus <michael.albinus@gmx.de>
9777
9778 * net/tramp-gvfs.el (tramp-gvfs-send-command): Apply
9779 `tramp-compat-call-process' instead of `tramp-local-call-process'.
9780 Reported by Magnus Henoch <magnus.henoch@gmail.com>.
9781
9782 2012-04-01 Chong Yidong <cyd@gnu.org>
9783
9784 * files.el (file-in-directory-p): Rename from file-subdir-of-p.
9785 Handle root directory properly.
9786 (copy-directory): Caller changed.
9787
9788 * dired-aux.el (dired-copy-file-recursive, dired-create-files):
9789 * net/tramp.el (tramp-file-name-for-operation): Callers changed.
9790
9791 2012-03-31 Glenn Morris <rgm@gnu.org>
9792
9793 * term/xterm.el (xterm-extra-capabilities): Doc fix.
9794
9795 * language/indian.el ("Devanagari"): Fix typo. (Bug#11103)
9796
9797 * calendar/calendar.el (calendar-window-list)
9798 (calendar-hide-window): Restore. (Bug#11140)
9799 (calendar-exit): Use calendar-window-list, calendar-hide-window again.
9800
9801 * emacs-lisp/edebug.el (edebug-unwrap-results): Doc fix.
9802
9803 2012-03-30 Thierry Volpiatto <thierry.volpiatto@gmail.com>
9804
9805 * dired-aux.el (dired-copy-file-recursive, dired-create-files):
9806 Check if file is a symlink (Bug#10489).
9807
9808 * files.el (copy-directory): Likewise.
9809
9810 2012-03-30 Chong Yidong <cyd@gnu.org>
9811
9812 * image.el (imagemagick-types-inhibit)
9813 (imagemagick-register-types): Doc fix.
9814
9815 2012-03-30 Agustín Martín Domingo <agustin.martin@hispalinux.es>
9816
9817 * textmodes/ispell.el (ispell-get-extended-character-mode):
9818 Disable extended-char-mode for hunspell. hunspell does not support it
9819 and treats ~word as ordinary words in pipe mode.
9820
9821 2012-03-30 Glenn Morris <rgm@gnu.org>
9822
9823 * tutorial.el (help-with-tutorial): Ensure local variables don't
9824 happen to make the buffer read-only. (Bug#11127)
9825
9826 2012-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
9827
9828 * progmodes/perl-mode.el (perl-indent-line): Use `noindent' in strings.
9829 (perl-calculate-indent): Return `noindent' in strings.
9830
9831 2012-03-28 Sam Steingold <sds@gnu.org>
9832
9833 * calendar/calendar.el (calendar-exit): Use `quit-windows-on'
9834 instead of the broken adhockery which does not prevent calendar
9835 buffers from being displayed at random after exit.
9836 (calendar-window-list, calendar-hide-window): Remove the broken
9837 adhockery.
9838
9839 2012-03-28 Glenn Morris <rgm@gnu.org>
9840
9841 * replace.el (query-replace-map): Doc fix.
9842
9843 2012-03-28 Andreas Schwab <schwab@linux-m68k.org>
9844
9845 * vc/vc-git.el (vc-git-state): Don't try to match all of the diff
9846 contents. (Bug#11109)
9847
9848 2012-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
9849
9850 * emacs-lisp/avl-tree.el (avl-tree--enter-balance): Fix paren typo
9851 (bug#11077).
9852 (avl-tree--check, avl-tree--check-node): New funs.
9853
9854 2012-03-27 Martin Rudalics <rudalics@gmx.at>
9855
9856 * window.el (switch-to-visible-buffer): New option.
9857 (switch-to-prev-buffer, switch-to-next-buffer):
9858 Observe switch-to-visible-buffer. Make sure that checking for a window
9859 showing a buffer already is done on the same frame.
9860
9861 2012-03-27 Glenn Morris <rgm@gnu.org>
9862
9863 * startup.el (mail-host-address): Doc fix.
9864
9865 2012-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
9866
9867 * emacs-lisp/bytecomp.el (byte-compile-constants-vector): Allow more
9868 than 197 variables.
9869
9870 2012-03-26 Ami Fischman <ami@fischman.org>
9871
9872 * vc/vc-git.el (vc-git-state): Avoid unnecessarily locking.
9873
9874 2012-03-26 Glenn Morris <rgm@gnu.org>
9875
9876 * files.el (save-buffers-kill-emacs): Doc fix.
9877
9878 * startup.el (normal-top-level, command-line, command-line-1):
9879 Give them doc strings.
9880
9881 2012-03-25 Eli Zaretskii <eliz@gnu.org>
9882
9883 * makefile.w32-in (install): Use $(DIRNAME)_same-dir.tst instead
9884 of same-dir.tst, to avoid stepping on other (parallel) Make job's toes.
9885
9886 2012-03-25 Chong Yidong <cyd@gnu.org>
9887
9888 * custom.el (load-theme): Even if NO-ENABLE arg is t, reenable the
9889 theme if it was previously enabled before (Bug#11031).
9890
9891 * cus-theme.el (custom-theme-write-faces): Retrieve current face
9892 spec with custom-face-get-current-spec if its :shown-value is not
9893 determined yet (Bug#9337).
9894 (customize-create-theme, custom-theme-revert): Doc fixes.
9895
9896 * button.el (button-at): Minor addition to docstring.
9897
9898 2012-03-24 Simon Leinen <simon.leinen@gmail.com>
9899
9900 * vc/vc.el (vc-merge): Fix a prompt.
9901
9902 2012-03-24 Chong Yidong <cyd@gnu.org>
9903
9904 * mwheel.el (mwheel-scroll): Call deactivate-mark at the right
9905 point (Bug#9623).
9906
9907 * button.el (button-at): Minor addition to docstring.
9908
9909 2012-03-23 Stefan Monnier <monnier@iro.umontreal.ca>
9910
9911 * newcomment.el (comment-choose-indent): No space after BOL.
9912
9913 2012-03-22 Sam Steingold <sds@gnu.org>
9914
9915 * window.el (switch-to-prev-buffer): Revert last patch because the
9916 bug turned out to be an advertised feature (Elisp manual 28.14).
9917
9918 2012-03-22 Glenn Morris <rgm@gnu.org>
9919
9920 * vc/vc-bzr.el (vc-bzr-status-switches): New option. (Bug#6724)
9921 (vc-bzr-command): If running "status", pass vc-bzr-status-switches.
9922
9923 2012-03-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
9924
9925 * net/network-stream.el (network-stream-open-starttls): Make error
9926 message under Windows be less misleading.
9927
9928 2012-03-22 Liang Wang <netcasper@gmail.com> (tiny change)
9929
9930 * progmodes/etags.el (etags-list-tags): Only use tags which goto-func
9931 understands (bug#9942).
9932
9933 2012-03-22 Chong Yidong <cyd@gnu.org>
9934
9935 * simple.el (end-of-visible-line): Handle return value of
9936 next-single-property-change properly (Bug#9371).
9937
9938 2012-03-22 Kenichi Handa <handa@m17n.org>
9939
9940 * international/quail.el (quail-insert-kbd-layout): Fix previous
9941 change. To avoid unwanted bidi reordering, use
9942 bidi-string-mark-left-to-right instead of inserting LRO and PDF.
9943
9944 2012-03-21 Dmitry Gutov <dgutov@yandex.ru>
9945
9946 * progmodes/ruby-mode.el: Don't confuse "end:" for "end" (bug#10786).
9947 (ruby-block-end-re, ruby-delimiter, ruby-parse-partial)
9948 (ruby-beginning-of-indent): Be more careful with the difference
9949 between word-boundary and symbol boundary.
9950 (ruby-mode-syntax-table): Make : a symbol constituent.
9951
9952 2012-03-21 Andreas Politz <politza@fh-trier.de>
9953
9954 * outline.el (outline-flag-region): Evaporate overlays (bug#10789).
9955
9956 2012-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
9957
9958 * progmodes/etags.el (tags-completion-at-point-function):
9959 Improve last fix.
9960
9961 * files.el (move-file-to-trash): Files aren't regexps (bug#11055).
9962
9963 2012-03-21 Sam Steingold <sds@gnu.org>
9964
9965 * progmodes/etags.el (tags-completion-at-point-function):
9966 Avoid the error when point is inside the pattern.
9967
9968 2012-03-21 John Yates <john@yates-sheets.org> (tiny change)
9969
9970 * progmodes/hideshow.el (hs-inside-comment-p): Fix hiding of first
9971 line (Bug#10855).
9972
9973 2012-03-21 Drew Adams <drew.adams@oracle.com>
9974
9975 * info.el (Info-menu): Handle string value of FORK arg (Bug#10858).
9976
9977 2012-03-21 Anmol Khirbat <anmol@khirbat.net> (tiny change)
9978
9979 * ido.el (ido-set-current-directory, ido-read-internal)
9980 (ido-choose-completion-string, ido-completion-help): Handle nil
9981 value of ido-completion-buffer (Bug#11008).
9982
9983 2012-03-21 Sam Steingold <sds@gnu.org>
9984
9985 * window.el (switch-to-prev-buffer): Do not switch to a visible
9986 window previous buffer, just like with the frame previous buffers.
9987
9988 2012-03-21 Chong Yidong <cyd@gnu.org>
9989
9990 * faces.el (make-face, make-empty-face, copy-face):
9991 * face-remap.el (face-remap-add-relative, face-remap-set-base):
9992 Doc fixes.
9993
9994 2012-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
9995
9996 * wid-edit.el (widget-complete-field): Remove (bug#11051).
9997 (widget-complete): Remove broken use of it.
9998
9999 2012-03-20 Chong Yidong <cyd@gnu.org>
10000
10001 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
10002 Use string-width and truncate-string-width to handle arbitrary
10003 characters.
10004
10005 2012-03-20 Tassilo Horn <tassilo@member.fsf.org>
10006
10007 * textmodes/artist.el (artist-menu-map): Bind Rectangle menu item
10008 to draw rectangles, not squares. (Regression introduced by revno
10009 2011-03-02T03:48:01Z!cyd@stupidchicken.com)
10010
10011 2012-03-18 Chong Yidong <cyd@gnu.org>
10012
10013 * faces.el (face-spec-reset-face): Don't call display-graphic-p if
10014 it is not yet defined (for temacs).
10015
10016 2012-03-18 Leo Liu <sdl.web@gmail.com>
10017
10018 * net/rcirc.el (rcirc-cmd-quit): Allow quitting all servers with
10019 prefix.
10020
10021 2012-03-17 Eli Zaretskii <eliz@gnu.org>
10022
10023 * textmodes/ispell.el (ispell-skip-tib, ispell-keep-choices-win)
10024 (ispell-choices-win-default-height, ispell-silently-savep)
10025 (ispell-dictionary-alist, ispell-encoding8-command)
10026 (ispell-check-version, ispell-aspell-find-dictionary)
10027 (ispell-valid-dictionary-list, ispell-words-keyword)
10028 (ispell-get-word, ispell-internal-change-dictionary)
10029 (ispell-region, ispell-skip-region-list)
10030 (ispell-begin-skip-region-regexp, ispell-ignore-fcc)
10031 (ispell-process-line, ispell-minor-mode, ispell-minor-check)
10032 (ispell-message-text-end, ispell-message)
10033 (ispell-buffer-local-parsing): Doc fix.
10034
10035 2012-03-13 Jambunathan K <kjambunathan@gmail.com>
10036
10037 * htmlfontify.el: Add support for code block fontification for ODT
10038 export (Bug #9914).
10039 (hfy-optimisations): Define new option
10040 `body-text-only'
10041 (hfy-fontify-buffer): Honor above setting.
10042 (hfy-begin-span, hfy-end-span): New routines factored out form
10043 `hfy-fontify-buffer'.
10044 (hfy-begin-span-handler, hfy-end-span-handler): New variables
10045 that permit insertion of custom tags.
10046 (hfy-fontify-buffer): Use above handlers.
10047 (hfy-face-to-css-default): Same as the earlier `hfy-face-to-css'.
10048 (hfy-face-to-css): Re-defined to be a variable.
10049 (hfy-compile-stylesheet): Modify. Allow stylesheet to be built
10050 over multiple runs. This is made possible by having the caller let
10051 bind a special variable `hfy-user-sheet-assoc'.
10052 (htmlfontify-string): New defun.
10053 (hfy-compile-face-map): Make sure that the last char in the
10054 buffer is correctly fontified.
10055 (hfy-face-resolve-face): Whitespace only change.
10056
10057 2012-03-17 Eli Zaretskii <eliz@gnu.org>
10058
10059 * textmodes/ispell.el (ispell-get-decoded-string): Make the error
10060 message more clear.
10061
10062 2012-03-16 Leo Liu <sdl.web@gmail.com>
10063
10064 * emacs-lisp/copyright.el (copyright-year-ranges): Fix typo.
10065
10066 2012-03-16 Alan Mackenzie <acm@muc.de>
10067
10068 Further optimise the handling of large macros.
10069
10070 * progmodes/cc-engine.el (c-crosses-statement-barrier-p): Use a
10071 limit to a call of `c-literal-limits'.
10072 (c-determine-+ve-limit): New function.
10073 (c-at-macro-vsemi-p): Move `c-in-literal' to the bottom of an `and'.
10074 (c-guess-basic-syntax): In macros, restrict a search limit to 2000.
10075 In CASE 5B, restrict a search limit to 500.
10076 (c-just-after-func-arglist-p): Obviouly wrong `or' -> `and'.
10077
10078 * progmodes/cc-mode.el (c-neutralize-syntax-in-and-mark-CPP):
10079 Restrict macro bounds to +-500 from after-change's BEG END.
10080
10081 2012-03-16 Leo Liu <sdl.web@gmail.com>
10082
10083 * font-lock.el (lisp-font-lock-keywords-2): Add letrec.
10084
10085 2012-03-16 Aaron S. Hawley <Aaron.S.Hawley@gmail.com>
10086
10087 * tar-mode.el (tar-mode): Fix saving by conditionally undoing
10088 `special-mode' setting of `buffer-read-only'. (Bug#11010)
10089
10090 2012-03-16 Glenn Morris <rgm@gnu.org>
10091
10092 * view.el (view-buffer, view-buffer-other-window)
10093 (view-buffer-other-frame): Doc fixes re special mode-class.
10094
10095 * subr.el (eval-after-load): If named feature is provided not from
10096 a file, run after-load forms. (Bug#10946)
10097
10098 * calendar/calendar.el (calendar-insert-at-column):
10099 Handle non-unit-width characters a bit better. (Bug#10978)
10100
10101 2012-03-15 Chong Yidong <cyd@gnu.org>
10102
10103 * emacs-lisp/ring.el (ring-extend): New function.
10104 (ring-insert+extend): Extend the ring correctly (Bug#11019).
10105
10106 * comint.el (comint-read-input-ring)
10107 (comint-add-to-input-history): Grow comint-input-ring lazily.
10108
10109 2012-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
10110
10111 * progmodes/perl-mode.el (perl-syntax-propertize-special-constructs):
10112 Fix up parsing of multiline twoarg non-paired elements (bug#11014).
10113
10114 * imenu.el: Fix multiple inheritance breakage (bug#9199).
10115 (imenu-add-to-menubar): Don't add a redundant index.
10116 (imenu-update-menubar): Handle a dynamically composed keymap.
10117
10118 2012-03-13 Katsumi Yamaoka <yamaoka@jpl.org>
10119
10120 * mail/sendmail.el (mail-encode-header):
10121 Bind rfc2047-encode-encoded-words to nil.
10122
10123 2012-03-13 Glenn Morris <rgm@gnu.org>
10124
10125 * calendar/calendar.el (calendar-string-spread):
10126 Handle non-unit-width characters a bit better. (Bug#10978)
10127
10128 2012-03-13 Leo Liu <sdl.web@gmail.com>
10129
10130 * vc/vc-hg.el (vc-hg-working-revision): Rework to work with both
10131 directory and file as argument (Bug#10822).
10132
10133 2012-03-13 Kaushik Srenevasan <ksrenevasan@gmail.com> (tiny change)
10134
10135 * progmodes/gdb-mi.el (gdb-invalidate-disassembly):
10136 For dynamically generated code, follow $PC.
10137 (gdb-disassembly-handler-custom): Handle no function name case.
10138
10139 2012-03-13 Tim Landscheidt <tim@tim-landscheidt.de> (tiny change)
10140
10141 * calendar/icalendar.el (icalendar-export-file, icalendar-import-file):
10142 * emulation/ws-mode.el (ws-query-replace):
10143 * sort.el (sort-regexp-fields):
10144 Fix missing trailing whitespace in interactive prompts. (Bug#11002)
10145
10146 2012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
10147
10148 * dabbrev.el: Fix cycle completion order (bug#10963).
10149 (dabbrev--last-obarray, dabbrev--last-completion-buffer): Remove.
10150 (dabbrev-completion): Don't use an obarray; provide
10151 a cycle-sort-function.
10152
10153 2012-03-12 Leo Liu <sdl.web@gmail.com>
10154
10155 * simple.el (kill-new): Use equal-including-properties for comparison.
10156 (kill-do-not-save-duplicates): Doc fix.
10157
10158 2012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
10159
10160 * dabbrev.el: Fix cycle completion (bug#10963).
10161 Use lexical binding and wrap to 80 columns.
10162 (dabbrev-completion): Delay computing the list of completions.
10163
10164 2012-03-12 Kenichi Handa <handa@m17n.org>
10165
10166 * international/quail.el (quail-insert-kbd-layout): Surround each
10167 row by LRO and PDF instead of inserting many LRMs. Pad the left
10168 and right of each non-spacing marks. Insert invisible space
10169 between lower and upper characters to prevent composition.
10170
10171 2012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
10172
10173 * minibuffer.el (minibuffer-complete): Don't get confused when the
10174 function is run twice via different commands (bug#10958).
10175 (complete-with-action): Fix docstring.
10176
10177 2012-03-12 Chong Yidong <cyd@gnu.org>
10178
10179 * nxml/nxml-mode.el (nxml-mode-map): Do not bind C-RET (Bug#6776).
10180 (nxml-completion-at-point-function): New function.
10181 (nxml-mode): Use it.
10182 (nxml-bind-meta-tab-to-complete-flag): Default to t.
10183
10184 * emacs-lisp/package.el (package-unpack, package-unpack-single):
10185 Load generated autoloads file before byte compiling (Bug#10970).
10186 (package--make-autoloads-and-compile): New helper fun.
10187
10188 2012-03-12 Christopher Schmidt <christopher@ch.ristopher.com>
10189
10190 * ibuffer.el (ibuffer-redisplay): Remove another gratuitous error.
10191
10192 2012-03-11 Michael Albinus <michael.albinus@gmx.de>
10193
10194 * autorevert.el (auto-revert-handler): Ensure, that
10195 file-readable-p is applied only for local files or in
10196 auto-revert-tail-mode.
10197
10198 2012-03-11 Andreas Schwab <schwab@linux-m68k.org>
10199
10200 * server.el (server-eval-at): Handle non-tcp connections.
10201 Decode result string.
10202
10203 * server.el (server-msg-size): New constant.
10204 (server-reply-print): New function.
10205 (server-eval-and-print): Use it.
10206 (server-eval-at): Use server-quote-arg and server-unquote-arg.
10207 Handle -print-nonl.
10208
10209 2012-03-11 Christopher Schmidt <christopher@ch.ristopher.com>
10210
10211 * ibuffer.el (ibuffer-redisplay): Remove gratuitous error
10212 (Bug#10987).
10213
10214 2012-03-11 Chong Yidong <cyd@gnu.org>
10215
10216 * simple.el (goto-line): Doc fix (Bug#9938).
10217
10218 * subr.el (save-window-excursion): Doc fix (Bug#9979).
10219
10220 * dabbrev.el (dabbrev--find-expansion): Update progress reporter
10221 when finished (Bug#10963).
10222
10223 2012-03-11 Martin Rudalics <rudalics@gmx.at>
10224
10225 * window.el (split-window-below): Fix bug in case where
10226 split-window-keep-point is nil (Bug#10971).
10227
10228 2012-03-11 Juri Linkov <juri@jurta.org>
10229
10230 * replace.el (replace-highlight): Set isearch-word to nil
10231 unconditionally. (Bug#10887)
10232
10233 2012-03-10 Eli Zaretskii <eliz@gnu.org>
10234
10235 * net/mairix.el (mairix-replace-invalid-chars): Rename from
10236 mairix-replace-illegal-chars; all callers changed. Don't remove
10237 ^, ~, and = characters: they are meaningful in mairix search specs.
10238 (mairix-widget-create-query): Add usage information about mairix
10239 search forms: negating words, searching for substrings, etc.
10240
10241 2012-03-10 Jae-hyeon Park <jae-hyeon.park@desy.de> (tiny change)
10242
10243 * international/fontset.el (font-encoding-alist): Add an entry for
10244 ksx1001 (Bug#5667).
10245
10246 2012-03-10 Richard Stallman <rms@gnu.org>
10247
10248 * mail/sendmail.el (mail-encode-header):
10249 Set rfc2047-encode-encoded-words.
10250
10251 * mail/mail-utils.el (mail-quote-printable): Quote multibyte chars.
10252
10253 * mail/rmail.el (rmail-buffers-swapped-p): Don't assume dead
10254 view buffer means not swapped.
10255 (rmail-view-buffer-kill-buffer-hook): Give buf name in error msg.
10256 (rmail-write-region-annotate): Error if real text has disappeared.
10257
10258 * epa-mail.el (epa-mail-encrypt): Bind inhibit-read-only.
10259
10260 2012-03-10 Chong Yidong <cyd@gnu.org>
10261
10262 * emulation/cua-rect.el (cua--init-rectangles):
10263 * emulation/cua-base.el (cua--init-keymaps):
10264 Add delete-forward-char to remappings (Bug#9666).
10265
10266 2012-03-10 Martin Rudalics <rudalics@gmx.at>
10267
10268 * speedbar.el (speedbar-unhighlight-one-tag-line):
10269 Avoid unhighlighting due to frame switching (Bug#10275).
10270
10271 2012-03-10 Chong Yidong <cyd@gnu.org>
10272
10273 * minibuffer.el (completion-in-region, completion-help-at-point):
10274 Give the completion field overlay a high priority (Bug#6830).
10275
10276 * dired.el (dired-goto-file): Recognize absolute file name
10277 listings (Bug#7126).
10278 (dired-goto-file-1): New helper function.
10279 (dired-toggle-read-only): Inhibit warnings.
10280
10281 2012-03-09 Michael Albinus <michael.albinus@gmx.de>
10282
10283 * net/dbus.el (dbus-property-handler): Return empty array if
10284 there are no properties.
10285
10286 2012-03-09 Leo Liu <sdl.web@gmail.com>
10287
10288 * savehist.el (savehist-printable): Stricter check for string
10289 value (Bug#10937).
10290
10291 2012-03-09 Eli Zaretskii <eliz@gnu.org>
10292
10293 * mail/smtpmail.el (smtpmail-send-it):
10294 Bind coding-system-for-write to *-unix, so that FCC files are kept in
10295 valid mbox format.
10296
10297 2012-03-09 Glenn Morris <rgm@gnu.org>
10298
10299 * files.el (dir-locals-find-file):
10300 Don't check result is regular, readable.
10301 (dir-locals-read-from-file): Demote errors.
10302
10303 2012-03-08 Eli Zaretskii <eliz@gnu.org>
10304
10305 * international/quail.el (quail-insert-kbd-layout):
10306 Insert invisible LRM characters before each character in a keyboard
10307 layout cell, to prevent their reordering by bidi display engine.
10308 For details, see the discussion in
10309 http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00085.html.
10310
10311 2012-03-08 Alan Mackenzie <acm@muc.de>
10312
10313 * progmodes/cc-cmds.el (c-mark-function): Make it leave a mark at
10314 the starting position; make it extend the marked region when
10315 invoked repeatedly - all under appropriate circumstances.
10316 Fixes bugs #5525, #10906.
10317
10318 2012-03-08 Glenn Morris <rgm@gnu.org>
10319
10320 * files.el (locate-dominating-file, dir-locals-find-file):
10321 Undo 2012-03-06 change.
10322
10323 2012-03-07 Eli Zaretskii <eliz@gnu.org>
10324
10325 * international/quail.el (quail-help):
10326 Force bidi-paragraph-direction be left-to-right. See discussion in
10327 http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00062.html
10328 for the reason.
10329
10330 2012-03-07 Michael Albinus <michael.albinus@gmx.de>
10331
10332 Avoid superfluous registering of signals. (Bug#10807)
10333
10334 * notifications.el (notifications-on-action-object)
10335 (notifications-on-close-object): New defvars.
10336 (notifications-on-action-signal, notifications-on-closed-signal):
10337 Unregister the signal if not needed any longer.
10338 (notifications-notify): Register `notifications-action-signal' or
10339 `notifications-closed-signal', if :on-action or :on-close has been
10340 passed as argument.
10341
10342 2012-03-07 Chong Yidong <cyd@gnu.org>
10343
10344 * cus-start.el: Avoid x-select-enable-clipboard-manager warning on
10345 non-X platforms.
10346
10347 2012-03-06 Glenn Morris <rgm@gnu.org>
10348
10349 * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
10350 (x-disown-selection-internal, x-get-selection-internal):
10351 Doc fix (add arglist signatures). (Bug#10783)
10352
10353 2012-03-06 Kaushik Srenevasan <ksrenevasan@gmail.com> (tiny change)
10354
10355 * progmodes/gdb-mi.el (gdb-breakpoints-list-handler-custom):
10356 Handle breakpoints with no "type".
10357
10358 2012-03-06 Glenn Morris <rgm@gnu.org>
10359
10360 * files.el (locate-dominating-file): Add optional predicate argument.
10361 (dir-locals-find-file): Make use of above change.
10362
10363 2012-03-06 Thien-Thi Nguyen <ttn@gnuvola.org>
10364
10365 * info.el (Info-insert-dir): Also try "dir.gz".
10366
10367 2012-03-06 Glenn Morris <rgm@gnu.org>
10368
10369 * files.el (dir-locals-find-file):
10370 Ignore non-readable or non-regular files. (Bug#10928)
10371
10372 * files.el (locate-dominating-file): Doc fix.
10373
10374 2012-03-06 Adam Spiers <emacs@adamspiers.org> (tiny change)
10375
10376 * calendar/calendar.el (calendar-set-mode-line):
10377 `getenv' returns a string. (Bug#10951)
10378
10379 2012-03-05 Leo Liu <sdl.web@gmail.com>
10380
10381 * simple.el (backward-delete-char-untabify): Constrain point to
10382 field (Bug#10939).
10383
10384 * eshell/em-cmpl.el (eshell-cmpl-initialize): Fix shift-tab key.
10385
10386 2012-03-05 Chong Yidong <cyd@gnu.org>
10387
10388 * simple.el (count-words): If called from Lisp, return the word
10389 count, for symmetry with `count-lines'. Arglist changed.
10390 (count-words--message): Args changed. Consolidate counting code
10391 from count-words and count-words-region.
10392 (count-words-region): Caller changed.
10393 (count-lines-region): Make it an obsolete alias.
10394
10395 2012-03-04 Tassilo Horn <tassilo@member.fsf.org>
10396
10397 * saveplace.el (save-place-to-alist)
10398 (save-place-ignore-files-regexp): Allow value nil to disable this
10399 feature.
10400
10401 2012-03-04 Chong Yidong <cyd@gnu.org>
10402
10403 * faces.el (face-spec-reset-face): For the default face, reset the
10404 attributes to default values (Bug#10748).
10405
10406 2012-03-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
10407
10408 * mail/emacsbug.el (report-emacs-bug-hook): Fix up thinko in
10409 previous patch: Check `message-send-mail-function', and not the
10410 default function (bug#10897).
10411
10412 2012-03-04 Michael Albinus <michael.albinus@gmx.de>
10413
10414 * notifications.el (notifications-on-action-signal)
10415 (notifications-on-closed-signal): Check for unique service name of
10416 incoming event. Fix error in removing entry.
10417 (top): Register for signals with wildcard service name.
10418 (notifications-notify): Use daemon unique service name for map entries.
10419
10420 2012-03-04 Chong Yidong <cyd@gnu.org>
10421
10422 * cus-start.el: Make x-select-enable-clipboard-manager customizable.
10423
10424 2012-03-04 Glenn Morris <rgm@gnu.org>
10425
10426 * abbrev.el (copy-abbrev-table, abbrev-table-p)
10427 (abbrev-minor-mode-table-alist, define-abbrev, abbrev-insert)
10428 (expand-abbrev, define-abbrev-table): Doc fixes.
10429
10430 2012-03-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
10431
10432 * mail/emacsbug.el (report-emacs-bug-hook): Look at the value of
10433 `message-default-send-mail-function' and not `send-mail-function'
10434 when doing the prompting for `sendmail-query-once' before sending
10435 in Message buffers (bug#10897).
10436
10437 * net/tls.el (open-tls-stream): Don't set the dont-query-on-exit flag.
10438 This is inconsistent with all the other stream functions, which leave
10439 the setting up to the higher levels (if so wanted) (bug#10931).
10440
10441 2012-03-02 Alan Mackenzie <acm@muc.de>
10442
10443 Depessimize the handling of very large macros.
10444
10445 * progmodes/cc-engine.el (c-macro-cache, c-macro-cache-start-pos):
10446 (c-macro-cache-syntactic): New variables to implement a one
10447 element macro cache.
10448 (c-invalidate-macro-cache): New function.
10449 (c-beginning-of-macro, c-end-of-macro, c-syntactic-end-of-macro):
10450 Adapt to use the new cache.
10451 (c-state-safe-place): Use better the cache of safe positions.
10452 (c-state-semi-nonlit-pos-cache)
10453 (c-state-semi-nonlit-pos-cache-limit):
10454 New variables for...
10455 (c-state-semi-safe-place): New function. Here, in a macro is "safe".
10456 (c-invalidate-state-cache-1): New stuff for c-state-semi-safe-place.
10457 (c-in-literal, c-literal-limits, c-determine-limit-get-base):
10458 Use c-state-semi-safe-place.
10459
10460 * progmodes/cc-langs.el (c-get-state-before-change-functions):
10461 Add c-invalidate-macro-cache to the C, C++, Obj entries.
10462
10463 2012-03-02 Michael Albinus <michael.albinus@gmx.de>
10464
10465 * jka-compr.el (jka-compr-call-process):
10466 Apply `file-accessible-directory-p' only when the default directory is
10467 not remote.
10468
10469 2012-03-01 Michael Albinus <michael.albinus@gmx.de>
10470
10471 * files.el (file-equal-p): Fix docstring. Avoid unnecessary
10472 access of FILE2, if FILE1 does not exist.
10473
10474 * net/tramp-sh.el (tramp-remote-process-environment): Add "PAGER=\"\"".
10475 Reported by Robert Lupton the Good <rhl@astro.princeton.edu>.
10476
10477 * vc/vc-git.el (vc-git--call): Enable `inhibit-null-byte-detection'.
10478 Add "PAGER=" to `process-environment'.
10479
10480 2012-03-01 Michael R. Mauger <mmaug@yahoo.com>
10481
10482 * progmodes/sql.el: Bug fix
10483 (sql-get-login-ext): Save login values in globals.
10484 (sql-get-login): Use new version of `sql-get-login-ext'.
10485 (sql-interactive-mode): Set global `sql-connection' to nil.
10486 (sql-connect): Set global values for connection.
10487 (sql-product-interactive): Save global values as buffer local.
10488
10489 2012-02-29 Leo Liu <sdl.web@gmail.com>
10490
10491 * abbrev.el (define-abbrevs): Reset sys to nil.
10492
10493 2012-02-28 Thierry Volpiatto <thierry.volpiatto@gmail.com>
10494
10495 * files.el (file-equal-p): Rename from `files-equal-p'.
10496 Return nil when one or both files don't exist.
10497 (file-subdir-of-p): Now only top directory must exists,
10498 return nil if it doesn't.
10499 (copy-directory): No need to test with `file-subdir-of-p' after
10500 creating dir.
10501 * net/tramp.el (tramp-file-name-for-operation): Rename `files-equal-p'
10502 to `file-equal-p'.
10503
10504 2012-02-28 Glenn Morris <rgm@gnu.org>
10505
10506 * shell.el (shell-mode):
10507 * progmodes/vhdl-mode.el (wildcard-to-regexp, file-expand-wildcards):
10508 * play/landmark.el (landmark-font-lock-face-O):
10509 * play/handwrite.el (handwrite):
10510 * play/gomoku.el (gomoku-O):
10511 * net/browse-url.el (browse-url-browser-display):
10512 * international/mule.el (define-charset):
10513 * htmlfontify.el (hfy-etags-cmd, hfy-face-attr-for-class):
10514 * filesets.el (filesets-find-file-delay):
10515 * eshell/em-xtra.el (eshell-xtra):
10516 * eshell/em-unix.el (eshell-grep):
10517 * emulation/viper.el (viper-mode):
10518 * emacs-lisp/regexp-opt.el (regexp-opt-group):
10519 * emacs-lisp/easymenu.el (easy-menu-define):
10520 * calendar/timeclock.el (timeclock-use-display-time):
10521 * bs.el (bs-mode):
10522 * bookmark.el (bookmark-save-flag):
10523 Doc fix (standardize possessive apostrophe usage).
10524
10525 2012-02-27 Chong Yidong <cyd@gnu.org>
10526
10527 * emulation/viper-cmd.el (viper-intercept-ESC-key):
10528 Fix key-binding lookup for ESC key (Bug#9146).
10529
10530 * font-lock.el (font-lock-specified-p): Rename from
10531 font-lock-spec-present. Callers changed.
10532
10533 2012-02-27 Daniel Hackney <dan@haxney.org>
10534
10535 * emacs-lisp/package.el (package-compute-transaction):
10536 Handle holding a package version to t in package-load-list.
10537
10538 2012-02-26 Michael Albinus <michael.albinus@gmx.de>
10539
10540 * net/tramp.el (tramp-inodes, tramp-devices): Initialize with 0.
10541 (tramp-get-inode, tramp-get-device): Use cached values.
10542
10543 2012-02-26 Alan Mackenzie <acm@muc.de>
10544
10545 Check there is a font-lock specification before doing initial
10546 fontification.
10547
10548 * font-core.el (font-lock-mode): Move the conditional from
10549 :after-hook to font-lock-initial-fontify.
10550 (font-lock-default-function): Move the check for a specification
10551 to font-lock-spec-present.
10552
10553 * font-lock.el (font-lock-initial-fontify): Call ...
10554 (font-lock-spec-present): New function.
10555
10556 2012-02-26 Jim Blandy <jimb@red-bean.com>
10557
10558 * progmodes/gdb-mi.el (gdb-mi-quote): New function.
10559 (gdb-send): Apply it to the operand of the '-interpreter-exec
10560 console' command, so that we can pass arguments with (say) quotes
10561 in them. Store exact string sent in gdb-debug-log (Bug#10765).
10562
10563 2012-02-26 Chong Yidong <cyd@gnu.org>
10564
10565 * help-fns.el (describe-function-1): Clarify description of
10566 remapping (Bug#10844).
10567
10568 * files.el (files-equal-p): Doc fix.
10569 (file-subdir-of-p): Doc fix. Convert loop macro to plain Lisp,
10570 and quit the loop once a mismatch is found.
10571
10572 2012-02-25 Juanma Barranquero <lekktu@gmail.com>
10573
10574 * bs.el (bs--show-with-configuration): Don't throw an error
10575 if the window cannot be split; otherwise, subsequent calls to
10576 bs-show fail, restoring a stale window config. (Bug#10882)
10577
10578 2012-02-25 Jan Djärv <jan.h.d@swipnet.se>
10579
10580 * term/ns-win.el (global-map): Bind ns-drag-file to
10581 ns-find-file (Bug#5855, Bug#10050).
10582
10583 2012-02-25 Andreas Schwab <schwab@linux-m68k.org>
10584
10585 * calendar/parse-time.el (parse-time-string): Allow extractor to
10586 return nil.
10587
10588 2012-02-25 Michael Albinus <michael.albinus@gmx.de>
10589
10590 * net/tramp.el (tramp-file-name-for-operation):
10591 Add `files-equal-p' and `file-subdir-of-p'.
10592
10593 * net/tramp-sh.el (tramp-sh-handle-copy-directory):
10594 * net/tramp-smb.el (tramp-smb-handle-copy-directory):
10595 Add COPY-CONTENTS argument.
10596
10597 2012-02-25 Chong Yidong <cyd@gnu.org>
10598
10599 Add custom groups for VC backends, for consistency with vc-bzr.
10600
10601 * vc/vc-arch.el (vc-arch):
10602 * vc/vc-cvs.el (vc-cvs):
10603 * vc/vc-git.el (vc-git):
10604 * vc/vc-hg.el (vc-hg):
10605 * vc/vc-mtn.el (vc-mtn):
10606 * vc/vc-rcs.el (vc-rcs):
10607 * vc/vc-sccs.el (vc-sccs):
10608 * vc/vc-svn.el (vc-svn): New customization group (Bug#10871).
10609 All relevant defcustoms reassigned.
10610
10611 2012-02-25 Chong Yidong <cyd@gnu.org>
10612
10613 * newcomment.el (comment-styles): Add autoload (Bug#10868).
10614
10615 * term/x-win.el (x-initialize-window-system): Reduce default for
10616 x-selection-timeout to 5 seconds (Bug#8869).
10617
10618 2012-02-24 Thierry Volpiatto <thierry.volpiatto@gmail.com>
10619
10620 * files.el (files-equal-p, file-subdir-of-p): New functions.
10621 (copy-directory): Error when trying to copy a directory on itself.
10622 Add missing copy-contents arg to tramp handler.
10623 * dired-aux.el (dired-copy-file-recursive): Same.
10624 (dired-create-files): Modify destination when source is equal to
10625 dest when copying files.
10626 Return also when dest is a subdir of source. (Bug#10489)
10627
10628 2012-02-24 Michael Albinus <michael.albinus@gmx.de>
10629
10630 * net/ange-ftp.el (ange-ftp-parse-netrc): Suppress comment lines.
10631 (Bug#10874)
10632
10633 2012-02-23 Alan Mackenzie <acm@muc.de>
10634
10635 * emacs-lisp/easy-mmode.el (define-minor-mode): Add extra
10636 parameter "after-hook:" to allow the expansion to run code after
10637 the execution of the mode hooks.
10638
10639 * font-lock.el (font-lock-initial-fontify): New function extracted
10640 from font-lock-mode-internal.
10641
10642 * font-core.el (font-lock-mode): Call font-lock-initial-fontify in
10643 :after-hook.
10644
10645 2012-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
10646
10647 * minibuffer.el: Make sure cycling is reset upon edit with icomplete.el.
10648 (completion--cache-all-sorted-completions): New function.
10649 (completion-all-sorted-completions): Use it.
10650 (completion--do-completion, minibuffer-force-complete):
10651 Use it to re-instate the flush hook.
10652
10653 * icomplete.el (icomplete-completions): Replace last fix with a better
10654 one (bug#10850).
10655
10656 2012-02-23 Dmitry Gutov <dgutov@yandex.ru>
10657
10658 * emacs-lisp/lisp.el (beginning-of-defun-raw): Don't call end-of-defun
10659 when it might call us back infinitely (bug#10797).
10660
10661 2012-02-23 Glenn Morris <rgm@gnu.org>
10662
10663 * minibuffer.el (completion-category-overrides): Doc fix.
10664
10665 2012-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
10666
10667 * minibuffer.el (completion-table-with-context): Fix inf-loop.
10668 Reported by Aaron S. Hawley <aaron.s.hawley@gmail.com>.
10669
10670 2012-02-23 Glenn Morris <rgm@gnu.org>
10671
10672 * emacs-lisp/authors.el (authors-aliases, authors-fixed-case)
10673 (authors-obsolete-files-regexps, authors-ignored-files)
10674 (authors-ambiguous-files, authors-renamed-files-alist):
10675 Add more entries.
10676
10677 2012-02-23 Juri Linkov <juri@jurta.org>
10678
10679 * isearch.el (isearch-occur): Sync interactive spec with occur's
10680 new feature in `occur-read-primary-args'. Doc fix. (Bug#10705)
10681
10682 * replace.el (occur-menu-map): Add menu item for `occur-edit-mode'.
10683
10684 2012-02-22 Juri Linkov <juri@jurta.org>
10685
10686 * international/mule-cmds.el (read-char-by-name): Use \` and \'.
10687 (ucs-insert): Doc fix. Check for hex digits in the string.
10688 Don't display `nil' in the error message. (Bug#10857)
10689
10690 2012-02-22 Alan Mackenzie <acm@muc.de>
10691
10692 * progmodes/cc-mode.el: Revert change #2012-02-06T22:08:41Z!larsi@gnus.org from 2012-02-06.
10693
10694 2012-02-22 Glenn Morris <rgm@gnu.org>
10695
10696 * ffap.el (ffap-c-path):
10697 * man.el (Man-header-file-path): Handle multiarch. (Bug#10702)
10698
10699 2012-02-22 Chong Yidong <cyd@gnu.org>
10700
10701 * custom.el (load-theme): Doc fix.
10702
10703 2012-02-22 Glenn Morris <rgm@gnu.org>
10704
10705 * dired-x.el (dired-guess-shell-alist-default):
10706 Remove escape sequences from nroff output. (Bug#172)
10707
10708 2012-02-21 Glenn Morris <rgm@gnu.org>
10709
10710 * vc/emerge.el (emerge-defvar-local):
10711 Set `permanent-local' property rather than unused `preserved'.
10712
10713 * textmodes/picture.el (picture-delete-char): New alias.
10714 (picture-mode-map): Use it. (Bug#10860)
10715 (picture-mode): Doc fix.
10716
10717 2012-02-21 Juanma Barranquero <lekktu@gmail.com>
10718
10719 * newcomment.el (uncomment-region-default): Remove unused binding.
10720
10721 2012-02-21 Glenn Morris <rgm@gnu.org>
10722
10723 * textmodes/picture.el (picture-motion, picture-motion-reverse)
10724 (picture-self-insert, picture-tab-chars): Doc fix.
10725 (picture-mode-map): Fix C-a, C-e.
10726
10727 2012-02-20 Glenn Morris <rgm@gnu.org>
10728
10729 * emacs-lisp/authors.el (authors-aliases): Add another entry.
10730
10731 2012-02-20 Leo Liu <sdl.web@gmail.com>
10732
10733 * icomplete.el (icomplete-completions): Check FROM arg before
10734 passing to substring (Bug#10850).
10735
10736 2012-02-19 Chong Yidong <cyd@gnu.org>
10737
10738 * comint.el: Require ansi-color.
10739 (comint-output-filter-functions): Add ansi-color-process-output.
10740
10741 * ansi-color.el: Don't set comint-output-filter-functions; it is
10742 now in the initial value defined in comint.el.
10743 (ansi-color-apply-face-function): New variable.
10744 (ansi-color-apply-on-region): Use it.
10745 (ansi-color-apply-overlay-face): New function.
10746
10747 * shell.el (shell): No need to require ansi-color.
10748 (shell-mode): Use ansi-color-apply-face-function to highlight
10749 color escapes using font-lock-face property (Bug#10835).
10750
10751 2012-02-19 Chong Yidong <cyd@gnu.org>
10752
10753 * vc/ediff-init.el (ediff-strip-mode-line-format): Handle non-list
10754 mode-line formats (Bug#10839).
10755
10756 2012-02-18 Glenn Morris <rgm@gnu.org>
10757
10758 * mail/rmail.el (rmail-dont-reply-to-names): Mark as obsolete.
10759
10760 * mail/undigest.el (unforward-rmail-message): Doc fix.
10761
10762 * saveplace.el (save-place-ignore-files-regexp): Add :version.
10763
10764 2012-02-18 Eli Zaretskii <eliz@gnu.org>
10765
10766 * international/characters.el (script-list): Sync with the latest
10767 Unicode Character Database.
10768
10769 2012-02-18 Andreas Schwab <schwab@linux-m68k.org>
10770
10771 * international/titdic-cnv.el: Remove duplicate coding tag.
10772 * language/cham.el: Likewise.
10773 * language/tai-viet.el: Likewise.
10774
10775 2012-02-18 Glenn Morris <rgm@gnu.org>
10776
10777 * calendar/cal-menu.el (cal-menu-diary-menu, cal-menu-goto-menu):
10778 * calendar/calendar.el (diary-file, diary-bahai-entry-symbol)
10779 (calendar-bahai-all-holidays-flag, calendar-other-dates):
10780 * calendar/diary-lib.el (diary-abbreviated-year-flag):
10781 * calendar/holidays.el (holiday-bahai-holidays)
10782 (calendar-holidays, list-holidays):
10783 Use utf-8 Bahá'í in doc-strings, menus, etc.
10784
10785 2012-02-17 Tassilo Horn <tassilo@member.fsf.org>
10786
10787 * saveplace.el (save-place-ignore-files-regexp): New variable
10788 allowing for excluding files from saving their location of point.
10789 The default value matches the temporary commit message editing
10790 files from Git, SVN, Bazaar, and Mercurial.
10791 (save-place-to-alist): Use it.
10792
10793 2012-02-17 Lawrence Mitchell <wence@gmx.li>
10794 Stefan Monnier <monnier@iro.umontreal.ca>
10795
10796 * newcomment.el (uncomment-region-default): Don't leave extra space
10797 when an arg is provided (bug#8150).
10798
10799 2012-02-17 Teodor Zlatanov <tzz@lifelogs.com>
10800
10801 * net/gnutls.el (gnutls-trustfiles): Fix Cygwin bundle location.
10802
10803 2012-02-17 Glenn Morris <rgm@gnu.org>
10804
10805 * net/socks.el: Require network-stream. (Bug#10599)
10806
10807 2012-02-17 Kenichi Handa <handa@m17n.org>
10808
10809 * international/charprop.el:
10810 * international/uni-name.el:
10811 * international/uni-old-name.el:
10812 * international/uni-comment.el: Regenerate.
10813
10814 2012-02-16 Glenn Morris <rgm@gnu.org>
10815
10816 * calendar/cal-hebrew.el (calendar-hebrew-list-yahrzeits):
10817 Interactively in calendar buffer, give an error if not on a date.
10818
10819 2012-02-15 Glenn Morris <rgm@gnu.org>
10820
10821 * shell.el (shell-delimiter-argument-list):
10822 Revert 2011-02-17 change. (Bug#8027)
10823
10824 2012-02-15 Chong Yidong <cyd@gnu.org>
10825
10826 * minibuffer.el (completion-at-point-functions): Doc fix.
10827
10828 * custom.el (defcustom): Doc fix; note use of defvar.
10829
10830 2012-02-15 Glenn Morris <rgm@gnu.org>
10831
10832 * mail/smtpmail.el (smtpmail-smtp-user, smtpmail-stream-type):
10833 Doc fixes.
10834
10835 2012-02-14 Glenn Morris <rgm@gnu.org>
10836
10837 * mail/smtpmail.el (smtpmail-query-smtp-server): Give it a doc.
10838
10839 2012-02-14 Lars Ingebrigtsen <larsi@gnus.org>
10840
10841 * mail/smtpmail.el (smtpmail-query-smtp-server): Fix typo in the
10842 way the ports list is computed.
10843 (smtpmail-query-smtp-server): Prompt the user for a port number if
10844 we can't connect to any of the standard ports (bug#10810).
10845
10846 2012-02-14 Teodor Zlatanov <tzz@lifelogs.com>
10847
10848 * net/gnutls.el (gnutls-trustfiles): Add Cygwin location.
10849
10850 2012-02-13 Glenn Morris <rgm@gnu.org>
10851
10852 * minibuffer.el (read-file-name): Doc fix. (Bug#10798)
10853
10854 2012-02-13 Teodor Zlatanov <tzz@lifelogs.com>
10855
10856 * net/gnutls.el (gnutls-trustfiles): New variable.
10857 (gnutls-negotiate): Use it.
10858
10859 2012-02-13 Lars Ingebrigtsen <larsi@gnus.org>
10860
10861 * simple.el (mail-user-agent): Mention that `gnus-user-agent' only
10862 does its stuff if Gnus is running.
10863
10864 2012-02-13 Alan Mackenzie <acm@muc.de>
10865
10866 Fix a loop in c-set-fl-decl-start.
10867
10868 * progmodes/cc-engine.el (c-set-fl-decl-start): Add a check that
10869 c-backward-syntactic-ws actually moves backwards.
10870
10871 2012-02-13 Leo Liu <sdl.web@gmail.com>
10872
10873 * net/rcirc.el (rcirc-markup-attributes): Move point to the
10874 beginning so that all \C-o chars are removed.
10875
10876 2012-02-12 Teodor Zlatanov <tzz@lifelogs.com>
10877
10878 * net/gnutls.el (gnutls-algorithm-priority): Add missing :group tag.
10879
10880 2012-02-12 Alan Mackenzie <acm@muc.de>
10881
10882 Fix infinite loop with long macros.
10883 * progmodes/cc-engine.el (c-state-safe-place): Handle macros properly.
10884
10885 2012-02-12 Chong Yidong <cyd@gnu.org>
10886
10887 * window.el (display-buffer): Doc fix (Bug#10785).
10888
10889 2012-02-12 Glenn Morris <rgm@gnu.org>
10890
10891 * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
10892 (x-disown-selection-internal, x-get-selection-internal):
10893 Sync docs with the xselect.c versions.
10894
10895 * allout-widgets.el: Add missing license notice.
10896
10897 2012-02-11 Glenn Morris <rgm@gnu.org>
10898
10899 * select.el (x-get-selection-internal, x-own-selection-internal)
10900 (x-disown-selection-internal):
10901 * x-dnd.el (x-get-selection-internal): Update declarations.
10902
10903 * vc/log-view.el (vc-diff-internal): Remove unneeded declaration.
10904
10905 * window.el (window-sides-slots):
10906 * tool-bar.el (tool-bar-position):
10907 * term/xterm.el (xterm-extra-capabilities):
10908 * ses.el (ses-self-reference-early-detection):
10909 * progmodes/verilog-mode.el (verilog-auto-declare-nettype)
10910 (verilog-auto-wire-type)
10911 (verilog-auto-delete-trailing-whitespace)
10912 (verilog-auto-reset-blocking-in-non, verilog-auto-inst-sort)
10913 (verilog-auto-tieoff-declaration):
10914 * progmodes/sql.el (sql-login-hook, sql-ansi-statement-starters)
10915 (sql-oracle-statement-starters, sql-oracle-scan-on):
10916 * progmodes/prolog.el (prolog-align-comments-flag)
10917 (prolog-indent-mline-comments-flag, prolog-object-end-to-0-flag)
10918 (prolog-left-indent-regexp, prolog-paren-indent-p)
10919 (prolog-paren-indent, prolog-parse-mode, prolog-keywords)
10920 (prolog-types, prolog-mode-specificators)
10921 (prolog-determinism-specificators, prolog-directives)
10922 (prolog-electric-newline-flag, prolog-hungry-delete-key-flag)
10923 (prolog-electric-dot-flag)
10924 (prolog-electric-dot-full-predicate-template)
10925 (prolog-electric-underscore-flag, prolog-electric-tab-flag)
10926 (prolog-electric-if-then-else-flag, prolog-electric-colon-flag)
10927 (prolog-electric-dash-flag, prolog-old-sicstus-keys-flag)
10928 (prolog-program-switches, prolog-prompt-regexp)
10929 (prolog-debug-on-string, prolog-debug-off-string)
10930 (prolog-trace-on-string, prolog-trace-off-string)
10931 (prolog-zip-on-string, prolog-zip-off-string)
10932 (prolog-use-standard-consult-compile-method-flag)
10933 (prolog-use-prolog-tokenizer-flag, prolog-imenu-flag)
10934 (prolog-imenu-max-lines, prolog-info-predicate-index)
10935 (prolog-underscore-wordchar-flag, prolog-use-sicstus-sd)
10936 (prolog-char-quote-workaround):
10937 * progmodes/cc-vars.el (c-defun-tactic):
10938 * net/tramp.el (tramp-encoding-command-interactive)
10939 (tramp-local-end-of-line):
10940 * net/soap-client.el (soap-client):
10941 * net/netrc.el (netrc-file):
10942 * net/gnutls.el (gnutls):
10943 * minibuffer.el (completion-category-overrides)
10944 (completion-cycle-threshold)
10945 (completion-pcm-complete-word-inserts-delimiters):
10946 * man.el (Man-name-local-regexp):
10947 * mail/feedmail.el (feedmail-display-full-frame):
10948 * international/characters.el (glyphless-char-display-control):
10949 * eshell/em-ls.el (eshell-ls-date-format):
10950 * emacs-lisp/cl-indent.el (lisp-lambda-list-keyword-alignment)
10951 (lisp-lambda-list-keyword-parameter-indentation)
10952 (lisp-lambda-list-keyword-parameter-alignment):
10953 * doc-view.el (doc-view-image-width, doc-view-unoconv-program):
10954 * dired-x.el (dired-omit-verbose):
10955 * cus-theme.el (custom-theme-allow-multiple-selections):
10956 * calc/calc.el (calc-highlight-selections-with-faces)
10957 (calc-lu-field-reference, calc-lu-power-reference)
10958 (calc-note-threshold):
10959 * battery.el (battery-mode-line-limit):
10960 * arc-mode.el (archive-7z-extract, archive-7z-expunge)
10961 (archive-7z-update):
10962 * allout.el (allout-prefixed-keybindings)
10963 (allout-unprefixed-keybindings)
10964 (allout-inhibit-auto-fill-on-headline)
10965 (allout-flattened-numbering-abbreviation):
10966 * allout-widgets.el (allout-widgets-auto-activation)
10967 (allout-widgets-icons-dark-subdir)
10968 (allout-widgets-icons-light-subdir, allout-widgets-icon-types)
10969 (allout-widgets-theme-dark-background)
10970 (allout-widgets-theme-light-background)
10971 (allout-widgets-item-image-properties-emacs)
10972 (allout-widgets-item-image-properties-xemacs)
10973 (allout-widgets-run-unit-tests-on-load)
10974 (allout-widgets-time-decoration-activity)
10975 (allout-widgets-hook-error-post-time)
10976 (allout-widgets-track-decoration):
10977 Add missing :version tags to new defcustoms and defgroups.
10978
10979 * progmodes/sql.el (sql-ansi-statement-starters)
10980 (sql-oracle-statement-starters): Add custom type.
10981
10982 * progmodes/prolog.el: Remove leading '*' from defcustom docs.
10983 (prolog-system-version): Give it a type.
10984
10985 2012-02-11 Eli Zaretskii <eliz@gnu.org>
10986
10987 * term/pc-win.el (x-select-text, x-selection-owner-p)
10988 (x-own-selection-internal, x-disown-selection-internal)
10989 (x-get-selection-internal): Sync doc strings and argument lists
10990 with xselect.c, common-win.el and x-win.el. (Bug#10783)
10991
10992 2012-02-11 Leo Liu <sdl.web@gmail.com>
10993
10994 * progmodes/python.el (python-end-of-statement): Fix infinite
10995 loop. (Bug#10788)
10996
10997 2012-02-10 Glenn Morris <rgm@gnu.org>
10998
10999 * international/mule-cmds.el (unify-8859-on-encoding-mode)
11000 (unify-8859-on-decoding-mode): Properly mark as obsolete.
11001
11002 2012-02-10 Lars Ingebrigtsen <larsi@gnus.org>
11003
11004 * mail/emacsbug.el (report-emacs-bug-hook): Query the user first
11005 about SMTP before checking the From header.
11006
11007 * mail/sendmail.el (sendmail-query-user-about-smtp): Refactor out
11008 into own function for reuse by emacsbug.el.
11009
11010 2012-02-10 Leo Liu <sdl.web@gmail.com>
11011
11012 * subr.el (condition-case-unless-debug): Rename from
11013 condition-case-no-debug. All callers changed.
11014 (with-demoted-errors): Fix caller.
11015
11016 * vc/diff-mode.el (diff-auto-refine-mode, diff-hunk):
11017 * nxml/rng-valid.el (rng-do-some-validation):
11018 * emacs-lisp/package.el (package-refresh-contents)
11019 (package-menu-execute):
11020 * desktop.el (desktop-create-buffer):
11021 * font-lock.el (lisp-font-lock-keywords-2): Caller changed.
11022
11023 2012-02-10 Glenn Morris <rgm@gnu.org>
11024
11025 * textmodes/bibtex.el:
11026 Add missing :version tags for new/changed defcustoms.
11027
11028 * files.el (remote-file-name-inhibit-cache): Doc fixes.
11029
11030 2012-02-09 Lars Ingebrigtsen <larsi@rusty>
11031
11032 * mail/smtpmail.el (smtpmail-user-mail-address): New function.
11033 (smtpmail-via-smtp): Use it, or fall back on the From address.
11034 (smtpmail-send-it): Ditto.
11035
11036 2012-02-09 Stefan Monnier <monnier@iro.umontreal.ca>
11037
11038 * emacs-lisp/bytecomp.el (byte-compile-file-form-defvar):
11039 Don't fallback on byte-compile-defvar. Optimize (defvar foo) away.
11040 (byte-compile-tmp-var): New const.
11041 (byte-compile-defvar): Use it to minimize .elc size.
11042 Just use `defvar' rather than simulate it (bug#10761).
11043
11044 2012-02-09 Glenn Morris <rgm@gnu.org>
11045
11046 * files.el (rename-uniquely): Doc fix. (Bug#3806)
11047
11048 * progmodes/cc-guess.el (c-guess-offset-threshold, c-guess-region-max):
11049 Add :version tags.
11050
11051 * progmodes/compile.el (compilation-error-screen-columns)
11052 (compilation-first-column, compilation-filter-start): Doc fixes.
11053
11054 * vc/log-view.el (log-view-toggle-entry-display):
11055 * vc/vc.el (vc-merge, vc-pull): Doc fixes.
11056
11057 * mail/emacsbug.el (report-emacs-bug-can-use-osx-open)
11058 (report-emacs-bug-can-use-xdg-email):
11059 (report-emacs-bug-insert-to-mailer): Doc fixes.
11060 (report-emacs-bug): Message fix.
11061
11062 * net/browse-url.el (browse-url-can-use-xdg-open)
11063 (browse-url-xdg-open): Doc fixes.
11064
11065 * electric.el (electric-indent-mode, electric-pair-mode)
11066 (electric-layout-rules, electric-layout-mode): Doc fixes.
11067 (electric-pair-pairs, electric-pair-skip-self): Add :version tags.
11068
11069 2012-02-08 Martin Rudalics <rudalics@gmx.at>
11070
11071 * server.el (server-unselect-display): Don't inadvertently kill
11072 the current buffer. (Bug#10729)
11073
11074 2012-02-08 Glenn Morris <rgm@gnu.org>
11075
11076 * progmodes/sql.el (sql-port, sql-connection-alist, sql-list-all)
11077 (sql-list-table): Doc fixes.
11078
11079 * image-mode.el (image-transform-minor-mode-map, image-transform-mode):
11080 Comment out (does nothing).
11081
11082 * completion.el (dynamic-completion-mode):
11083 * dirtrack.el (dirtrack-debug-mode):
11084 * electric.el (electric-layout-mode):
11085 * epa-mail.el (epa-mail-mode, epa-global-mail-mode):
11086 * face-remap.el (text-scale-mode, buffer-face-mode):
11087 * iimage.el (iimage-mode):
11088 * image-mode.el (image-transform-mode):
11089 * minibuffer.el (completion-in-region-mode):
11090 * scroll-lock.el (scroll-lock-mode):
11091 * simple.el (next-error-follow-minor-mode):
11092 * tar-mode.el (tar-subfile-mode):
11093 * tooltip.el (tooltip-mode):
11094 * vcursor.el (vcursor-use-vcursor-map):
11095 * wid-browse.el (widget-minor-mode):
11096 * emulation/tpu-edt.el (tpu-edt-mode):
11097 * emulation/tpu-extras.el (tpu-cursor-free-mode):
11098 * international/iso-ascii.el (iso-ascii-mode):
11099 * language/thai-util.el (thai-word-mode):
11100 * mail/supercite.el (sc-minor-mode):
11101 * net/goto-addr.el (goto-address-mode):
11102 * net/rcirc.el (rcirc-multiline-minor-mode, rcirc-track-minor-mode):
11103 * progmodes/cwarn.el (cwarn-mode):
11104 * progmodes/flymake.el (flymake-mode):
11105 * progmodes/glasses.el (glasses-mode):
11106 * progmodes/hideshow.el (hs-minor-mode):
11107 * progmodes/pascal.el (pascal-outline-mode):
11108 * textmodes/enriched.el (enriched-mode):
11109 * vc/smerge-mode.el (smerge-mode):
11110 Doc fixes (minor mode argument).
11111
11112 2012-02-07 Eli Zaretskii <eliz@gnu.org>
11113
11114 * ls-lisp.el (ls-lisp-sanitize): New function.
11115 (ls-lisp-insert-directory): Use it to fix or remove any elements
11116 in file-alist with missing attributes. (Bug#4673)
11117
11118 2012-02-07 Alan Mackenzie <acm@muc.de>
11119
11120 Fix spurious recognition of c-in-knr-argdecl.
11121
11122 * progmodes/cc-engine.el (c-in-knr-argdecl): Check for '=' in a
11123 putative K&R region.
11124
11125 2012-02-07 Alan Mackenzie <acm@muc.de>
11126
11127 * progmodes/cc-engine.el (c-forward-objc-directive):
11128 Prevent looping in "#pragma mark @implementation".
11129
11130 2012-02-07 Michael Albinus <michael.albinus@gmx.de>
11131
11132 * notifications.el (notifications-on-closed-signal): Make `reason'
11133 optional. (Bug#10744)
11134
11135 2012-02-07 Glenn Morris <rgm@gnu.org>
11136
11137 * emacs-lisp/easy-mmode.el (define-minor-mode):
11138 Doc fixes for the macro and the mode it defines.
11139
11140 * image.el (imagemagick-types-inhibit): Doc fix.
11141
11142 * cus-start.el (imagemagick-render-type): Add it.
11143
11144 2012-02-06 Lars Ingebrigtsen <larsi@gnus.org>
11145
11146 * progmodes/cc-mode.el (c-standard-font-lock-fontify-region-function):
11147 Set the default at load time, too, so that `font-lock-fontify-buffer'
11148 can be called without setting up the entire mode first. This fixes
11149 a bug in `mm-inline-text' with C MIME parts.
11150
11151 2012-02-06 Chong Yidong <cyd@gnu.org>
11152
11153 * simple.el (list-processes--refresh): Delete exited processes
11154 (Bug#8094).
11155
11156 * comint.el (comint-next-prompt): next-single-char-property-change
11157 and prev-single-char-property-change never return nil (Bug#8657).
11158
11159 * custom.el (defcustom): Doc fix (Bug#9711).
11160
11161 2012-02-05 Chong Yidong <cyd@gnu.org>
11162
11163 * cus-edit.el (custom-variable-reset-backup): Quote the value
11164 before storing it in the customized-value property (Bug#6712).
11165 (custom-display): Add a customization type tag.
11166 (custom-buffer-create-internal): Improve tooltip message.
11167
11168 * wid-edit.el (widget-field-value-get): New optional arg to
11169 suppress trailing whitespace truncation.
11170 (character): Use it (Bug#2689).
11171
11172 2012-02-05 Andreas Schwab <schwab@linux-m68k.org>
11173
11174 * progmodes/gud.el (gud-pv): Use pv instead of pv1.
11175 * progmodes/gdb-mi.el (gud-pp): Use pp instead of pp1.
11176
11177 2012-02-05 Chong Yidong <cyd@gnu.org>
11178
11179 * cus-edit.el (custom-variable-value-create): For mismatched
11180 types, show the current value (Bug#7600).
11181
11182 * custom.el (defcustom): Doc fix.
11183
11184 2012-02-05 Glenn Morris <rgm@gnu.org>
11185
11186 * font-lock.el (lisp-font-lock-keywords-2): Add with-wrapper-hook.
11187
11188 2012-02-05 Juanma Barranquero <lekktu@gmail.com>
11189
11190 * emacs-lisp/pp.el (pp-to-string): Use `with-temp-buffer'.
11191 (pp-buffer): Use `ignore-errors', `looking-at-p'.
11192 (pp-last-sexp): Use `looking-at-p'.
11193
11194 2012-02-04 Glenn Morris <rgm@gnu.org>
11195
11196 * files.el (revert-buffer):
11197 Doc fix (mention revert-buffer-in-progress-p).
11198
11199 * emacs-lisp/ert-x.el (ert-simulate-command):
11200 Check deferred-action-list (which is obsolete) is bound.
11201
11202 * subr.el (with-wrapper-hook): Doc fixes.
11203
11204 * simple.el (filter-buffer-substring-functions)
11205 (buffer-substring-filters, filter-buffer-substring): Doc fixes.
11206
11207 2012-02-04 Lars Ljung <lars@matholka.se> (tiny change)
11208
11209 * eshell/esh-ext.el (eshell-windows-shell-file): Match "cmdproxy"
11210 anywhere in shell-file-name, not just at the beginning. (Bug#10523)
11211
11212 2012-02-04 Leo Liu <sdl.web@gmail.com>
11213
11214 * emacs-lisp/smie.el: Fix dead link (Bug#10711).
11215
11216 2012-02-04 Glenn Morris <rgm@gnu.org>
11217
11218 * image.el (image-extension-data): Add obsolete alias.
11219
11220 * isearch.el (isearch-update): Doc fix.
11221
11222 * facemenu.el (list-colors-display): Doc fix (minor rephrasing).
11223
11224 * ido.el (ido-find-file): Doc fix (ido-toggle-vc not on any key).
11225
11226 2012-02-03 Glenn Morris <rgm@gnu.org>
11227
11228 * image.el (image-animated-p): Doc fix. Use image-animated-types.
11229 (image-animate-timeout): Doc fix.
11230
11231 * image-mode.el (image-animate-loop, image-toggle-animation): Doc fixes.
11232
11233 2012-02-02 Glenn Morris <rgm@gnu.org>
11234
11235 * server.el (server-auth-dir): Doc fix.
11236 (server-eval-at): Doc fix. Give an explicit error if !server-use-tcp.
11237
11238 * subr.el (run-mode-hooks): Doc fix.
11239
11240 2012-02-02 Juri Linkov <juri@jurta.org>
11241
11242 * image-mode.el (image-toggle-display-image): Remove tautological
11243 `major-mode' from the `derived-mode-p' test.
11244
11245 2012-02-02 Kenichi Handa <handa@m17n.org>
11246
11247 * composite.el (compose-region): Cancel previous change.
11248
11249 2012-02-02 Kenichi Handa <handa@m17n.org>
11250
11251 * composite.el (compose-region, compose-string): Signal error for
11252 a null string component (Bug#6988).
11253
11254 2012-02-01 Chong Yidong <cyd@gnu.org>
11255
11256 * view.el (view-buffer-other-window, view-buffer-other-frame):
11257 Handle special modes like view-buffer (Bug#10650).
11258 (view-buffer): Simplify.
11259
11260 * frame.el (set-frame-font): Tweak meaning of third argument.
11261
11262 * dynamic-setting.el (font-setting-change-default-font):
11263 Use set-frame-font (Bug#9982).
11264
11265 2012-02-01 Glenn Morris <rgm@gnu.org>
11266
11267 * progmodes/compile.el (compilation-internal-error-properties):
11268 Respect compilation-first-column in the "*compilation*" buffer.
11269
11270 * emacs-lisp/easy-mmode.el (define-minor-mode):
11271 Relax :variable's test for a named function.
11272
11273 2012-01-31 Alan Mackenzie <acm@muc.de>
11274
11275 * progmodes/cc-engine.el (c-guess-basic-syntax): CASE 5B.1: Fix an
11276 off by one error.
11277
11278 2012-01-31 Chong Yidong <cyd@gnu.org>
11279
11280 * frame.el (set-frame-font): New arg ALL-FRAMES.
11281
11282 * menu-bar.el (menu-set-font): Use set-frame-font.
11283
11284 * faces.el (face-spec-reset-face): Don't apply unspecified
11285 attribute values to the default face.
11286
11287 2012-01-31 Juanma Barranquero <lekktu@gmail.com>
11288
11289 * progmodes/cwarn.el (cwarn): Remove dead link.
11290 (cwarn-configuration, cwarn-verbose, cwarn-mode-text, cwarn-load-hook):
11291 Remove * from defcustom docstrings.
11292 (turn-on-cwarn-mode): Make obsolete.
11293 (c-at-toplevel-p): Remove compatibility code for Emacs 20.3 and older.
11294 (turn-on-cwarn-mode-if-enabled): Call `cwarn-mode'.
11295
11296 2012-01-31 Glenn Morris <rgm@gnu.org>
11297
11298 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix.
11299 Fix :variable handling of mode a symbol not equal to modefun.
11300 Allow named functions to be used as the cdr of :variable.
11301
11302 2012-01-30 Glenn Morris <rgm@gnu.org>
11303
11304 * emacs-lisp/authors.el (authors-fixed-entries):
11305 Remove reference to deleted file rnewspost.el.
11306
11307 2012-01-29 Juanma Barranquero <lekktu@gmail.com>
11308
11309 * window.el (window-with-parameter): Remove unused variable `windows'.
11310 (window--side-check): Remove unused variable `code'.
11311 (window--resize-siblings): Remove unused variable `first'.
11312 (adjust-window-trailing-edge): Remove unused variable `failed'.
11313 (window-deletable-p, window--delete): Remove unused variable `buffer'.
11314 Use `let', not `let*'.
11315 (balance-windows-2): Remove unused variable `found'.
11316 (window--state-put-2): Remove unused variable `splits'.
11317 (window-state-put): Remove unused variable `selected'.
11318 (same-window-p): Use `string-match-p'.
11319 (display-buffer-assq-regexp): Remove unused variable `value'.
11320 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
11321 Mark argument ALIST as ignored.
11322 (pop-to-buffer): Remove unused variable `old-window'.
11323
11324 2012-01-29 Eli Zaretskii <eliz@gnu.org>
11325
11326 * jka-cmpr-hook.el (jka-compr-compression-info-list): Support .lz
11327 and .lzma compressed files.
11328
11329 2012-01-29 Chong Yidong <cyd@gnu.org>
11330
11331 * frame.el (window-system-default-frame-alist): Doc fix.
11332
11333 * dynamic-setting.el (font-setting-change-default-font): Don't
11334 change the default face if SET-FONT argument is non-nil (Bug#9982).
11335
11336 2012-01-29 Samuel Bronson <naesten@gmail.com> (tiny change)
11337
11338 * custom.el (defcustom): Add doc link to Lisp manual (Bug#10635).
11339
11340 2012-01-29 Syver Enstad <syver.enstad@cisco.com> (tiny change)
11341
11342 * progmodes/gud.el (pdb): Give pdb full paths, to allow setting
11343 breakpoints in files outside current directory (Bug#6098).
11344
11345 2012-01-29 Chong Yidong <cyd@gnu.org>
11346
11347 * progmodes/python.el: Require ansi-color at top-level.
11348
11349 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-abbrev-table):
11350 Define and use in Emacs Lisp mode (Bug#9360).
11351 (lisp-mode-abbrev-table): Add doc.
11352 (lisp-mode-variables): Don't set local-abbrev-table.
11353 (lisp-interaction-mode): Use emacs-lisp-mode-abbrev-table.
11354
11355 2012-01-28 Roland Winkler <winkler@gnu.org>
11356
11357 * textmodes/bibtex.el (bibtex-vec-incr): Fix docstring.
11358
11359 2012-01-28 Roland Winkler <winkler@gnu.org>
11360
11361 * textmodes/bibtex.el (bibtex-entry-alist): New function.
11362 (bibtex-set-dialect): Use it. Either set global values of
11363 dialect-dependent variables or bind these variables buffer-locally
11364 (Bug#10254).
11365 (bibtex-mode): Call bibtex-set-dialect via
11366 hack-local-variables-hook.
11367 (bibtex-dialect): Update docstring.
11368 Add safe-local-variable predicate.
11369 (bibtex-entry-alist, bibtex-field-alist): Initialize via
11370 bibtex-set-dialect.
11371 (bibtex-mode-map): Define menu for each dialect.
11372 (bibtex-entry): Fix docstring.
11373
11374 2012-01-28 Chong Yidong <cyd@gnu.org>
11375
11376 * eshell/esh-arg.el (eshell-quote-argument): New function.
11377
11378 * eshell/esh-ext.el (eshell-invoke-batch-file):
11379 * eshell/em-unix.el (eshell/cat, eshell/du): Use it to quote the
11380 first arg to eshell-parse-command (Bug#10523).
11381
11382 2012-01-28 Drew Adams <drew.adams@oracle.com>
11383
11384 * net/ange-ftp.el (ange-ftp-canonize-filename): Check, that
11385 `default-directory' is non-nil.
11386
11387 2012-01-28 Eli Zaretskii <eliz@gnu.org>
11388
11389 * mail/emacsbug.el (report-emacs-bug): Fill the potentially long
11390 line that displays system-configuration-options. (Bug#9924)
11391
11392 2012-01-28 Drew Adams <drew.adams@oracle.com>
11393
11394 * descr-text.el (describe-char): Show information about POS, in
11395 addition to information about the character at POS. Improve and
11396 update the doc string. Change "code point" to "code point in
11397 charset", to avoid confusion with the character's Unicode code
11398 point shown above that. (Bug#10129)
11399
11400 2012-01-28 Eli Zaretskii <eliz@gnu.org>
11401
11402 * descr-text.el (describe-char): Show the raw character, not only
11403 its display form at POS. Suggested by Kenichi Handa <handa@m17n.org>.
11404 See http://lists.gnu.org/archive/html/emacs-devel/2012-01/msg00760.html
11405 for the reasons.
11406
11407 2012-01-28 Phil Hagelberg <phil@hagelb.org>
11408
11409 * emacs-lisp/package.el (package-install):
11410 Run package-refresh-contents if there is no archive yet (Bug#9798).
11411
11412 2012-01-28 Chong Yidong <cyd@gnu.org>
11413
11414 * emacs-lisp/package.el (package-maybe-load-descriptor):
11415 New function, split from package-maybe-load-descriptor.
11416 (package-maybe-load-descriptor): Use it.
11417 (package-download-transaction): Fully load required packages
11418 inside the loop, so that `require' calls work (Bug#10593).
11419 (package-install): No need to call package-initialize now.
11420
11421 2012-01-28 Chong Yidong <cyd@gnu.org>
11422
11423 * simple.el (deactivate-mark): Doc fix (Bug#8614).
11424
11425 * tooltip.el (tooltip-mode): Doc fix.
11426 (tooltip-use-echo-area): Mark as obsolete (Bug#6595).
11427
11428 * frame.el (set-cursor-color): Doc fix (Bug#352).
11429
11430 * mail/rmail.el (rmail-start-mail): Add send-action again (Bug#10625).
11431 (rmail-mail-return): Switch to NEWBUF only if it is non-nil.
11432
11433 * cus-edit.el (custom-buffer-create-internal): Fix search button
11434 action (Bug#10542).
11435 (customize-unsaved, customize-saved): Doc fix (Bug#10541).
11436
11437 2012-01-27 Eduard Wiebe <usenet@pusto.de>
11438
11439 * dired.el (dired-mark-files-regexp):
11440 Include any subdirectory components. (Bug#10445)
11441
11442 2012-01-27 Mike Lamb <mrlamb@gmail.com> (tiny change)
11443
11444 * pcmpl-unix.el (pcmpl-ssh-known-hosts):
11445 Handle [host]:port syntax. (Bug#10533)
11446
11447 2012-01-27 Alex Harsanyi <harsanyi@mac.com>
11448
11449 * xml.el (xml-parse-tag): Fix parsing of comments (Bug#10405).
11450
11451 2012-01-26 Glenn Morris <rgm@gnu.org>
11452
11453 * dired-x.el (dired-bind-jump): Use ctl-x-map and ctl-x-4-map.
11454 * term.el (term-raw-escape-map): Use Control-X-prefix.
11455 * vc/vc-hooks.el (vc-prefix-map): Use ctl-x-map. (Bug#10566)
11456
11457 2012-01-25 Martin Rudalics <rudalics@gmx.at>
11458
11459 * window.el (window-state-get, window--state-get-1): Don't deal
11460 with fixed-sizeness of windows. Simplify code.
11461
11462 2012-01-25 Jérémy Compostella <jeremy.compostella@gmail.com>
11463
11464 * window.el (window--state-get-1, window--state-put-2):
11465 Don't save and restore the mark.
11466
11467 2012-01-25 Chong Yidong <cyd@gnu.org>
11468
11469 * custom.el (custom-variable-p): Doc fix.
11470
11471 2012-01-25 Glenn Morris <rgm@gnu.org>
11472
11473 * dired.el (dired-goto-file): Handle some of the more common
11474 characters that `ls -b' escapes. (Bug#10596)
11475
11476 * progmodes/compile.el (compilation-next-error-function):
11477 Respect compilation-first-column in the "*compilation*" buffer.
11478 * progmodes/grep.el (grep-first-column): New variable. (Bug#10594)
11479
11480 * vc/vc.el (vc-modify-change-comment): Scoping fix. (Bug#10513)
11481
11482 2012-01-24 Glenn Morris <rgm@gnu.org>
11483
11484 * pcmpl-gnu.el (pcomplete/tar): Handle " - ". (Bug#10457)
11485
11486 2012-01-24 Julien Danjou <julien@danjou.info>
11487
11488 * color.el (color-rgb-to-hsl): Fix value computing.
11489 (color-hue-to-rgb): New function.
11490 (color-hsl-to-rgb): New function.
11491 (color-clamp, color-saturate-hsl, color-saturate-name)
11492 (color-desaturate-hsl, color-desaturate-name, color-lighten-hsl)
11493 (color-lighten-name, color-darken-hsl, color-darken-name): New function.
11494
11495 2012-01-24 Glenn Morris <rgm@gnu.org>
11496
11497 * vc/vc-rcs.el (vc-rcs-create-tag):
11498 * vc/vc-sccs.el (vc-sccs-create-tag):
11499 Fix argument spec to be what vc-create-tag expects. (Bug#10515)
11500
11501 2012-01-23 Mike Lamb <mrlamb@gmail.com> (tiny change)
11502
11503 * eshell/esh-util.el (eshell-read-hosts-file):
11504 Skip comment lines. (Bug#10549)
11505
11506 * eshell/em-unix.el (pcomplete/ssh): Remove. (Bug#10548)
11507
11508 2012-01-23 Juanma Barranquero <lekktu@gmail.com>
11509
11510 * subr.el (display-delayed-warnings): Doc fix.
11511 (collapse-delayed-warnings): New function to collapse identical
11512 adjacent warnings.
11513 (delayed-warnings-hook): Add it.
11514
11515 2012-01-22 Michael Albinus <michael.albinus@gmx.de>
11516
11517 * net/tramp.el (tramp-action-login): Set connection property "login-as".
11518
11519 * net/tramp-sh.el (tramp-methods): Add user spec to "pscp" and "psftp".
11520 (tramp-default-user-alist): Don't add "pscp".
11521 (tramp-do-copy-or-rename-file-out-of-band): Use connection
11522 property "login-as", if set. (Bug#10530)
11523
11524 2012-01-21 Michael Albinus <michael.albinus@gmx.de>
11525
11526 * net/tramp-sh.el (tramp-default-user-alist): Don't add "plink",
11527 "plink1" and "psftp". (Bug#10530)
11528
11529 2012-01-21 Kenichi Handa <handa@m17n.org>
11530
11531 * international/mule-cmds.el (prefer-coding-system): Show a
11532 warning message if the default value of file-name-coding-system
11533 was not changed.
11534
11535 2012-01-21 Jérémy Compostella <jeremy.compostella@gmail.com>
11536
11537 * windmove.el (windmove-reference-loc):
11538 Fix windmove-reference-loc miscalculation.
11539
11540 2012-01-21 Jay Belanger <jay.p.belanger@gmail.com>
11541
11542 * calc/calc-units.el (math-put-default-units): Don't use "1" as a
11543 default unit.
11544
11545 2012-01-21 Glenn Morris <rgm@gnu.org>
11546
11547 * international/mule.el (auto-coding-alist): Add .tbz.
11548
11549 * files.el (local-enable-local-variables): Doc fix.
11550 (inhibit-local-variables-regexps): Rename from
11551 inhibit-first-line-modes-regexps. Keep old name as obsolete alias.
11552 Doc fix. Add some extensions from auto-coding-alist.
11553 (inhibit-local-variables-suffixes):
11554 Rename from inhibit-first-line-modes-suffixes. Doc fix.
11555 (inhibit-local-variables-p):
11556 New function, extracted from set-auto-mode-1.
11557 (set-auto-mode): Doc fix. Respect inhibit-local-variables-regexps.
11558 (set-auto-mode-1): Doc fix. Use inhibit-local-variables-p.
11559 (hack-local-variables): Doc fix. Make the mode-only case
11560 respect enable-local-variables and friends.
11561 Respect inhibit-local-variables-regexps for file-locals, but
11562 not for directory-locals.
11563 (set-visited-file-name):
11564 Take account of inhibit-local-variables-regexps.
11565 Whether it applies may change as the file name is changed.
11566 * jka-cmpr-hook.el (jka-compr-install):
11567 * jka-compr.el (jka-compr-uninstall):
11568 Update for inhibit-first-line-modes-suffixes name change.
11569
11570 2012-01-20 Martin Rudalics <rudalics@gmx.at>
11571
11572 * help-macro.el (make-help-screen): Temporarily restore original
11573 binding for minor-mode-map-alist (Bug#10454).
11574
11575 2012-01-19 Julien Danjou <julien@danjou.info>
11576
11577 * color.el (color-name-to-rgb): Use the white color to find the max
11578 color component value and return correctly computed values.
11579 (color-name-to-rgb): Add missing float conversion for max value.
11580
11581 2012-01-19 Martin Rudalics <rudalics@gmx.at>
11582
11583 * window.el (window--state-get-1, window-state-get): Do not use
11584 special state value for window-persistent-parameters.
11585 Rename argument IGNORE to WRITABLE. Rewrite doc-string.
11586 (window--state-put-2): Reset all window parameters to nil before
11587 assigning values of persistent parameters.
11588
11589 2012-01-18 Alan Mackenzie <acm@muc.de>
11590
11591 Eliminate sluggishness and hangs in fontification of "semicolon
11592 deserts".
11593
11594 * progmodes/cc-engine.el (c-state-nonlit-pos-interval):
11595 Change value 10000 -> 3000.
11596 (c-state-safe-place): Reformulate so it doesn't stack up an
11597 infinite number of wrong entries in c-state-nonlit-pos-cache.
11598 (c-determine-limit-get-base, c-determine-limit): New functions to
11599 determine backward search limits disregarding literals.
11600 (c-find-decl-spots): Amend commenting.
11601 (c-cheap-inside-bracelist-p): New function which detects "={".
11602
11603 * progmodes/cc-fonts.el
11604 (c-make-font-lock-BO-decl-search-function): Give a limit to a
11605 backward search.
11606 (c-font-lock-declarations): Fix an occurrence of point being
11607 undefined. Check additionally for point being in a bracelist or
11608 near a macro invocation without a semicolon so as to avoid a
11609 fruitless time consuming search for a declarator. Give a more
11610 precise search limit for declarators using the new
11611 c-determine-limit.
11612
11613 2012-01-18 Glenn Morris <rgm@gnu.org>
11614
11615 * files.el (auto-mode-alist, inhibit-first-line-modes-regexps)
11616 (set-auto-mode): Doc fixes.
11617
11618 2012-01-17 Glenn Morris <rgm@gnu.org>
11619
11620 * isearch.el (search-nonincremental-instead): Fix doc typo.
11621
11622 * dired.el (dired-insert-directory): Handle newlines in directory name.
11623 (dired-build-subdir-alist): Unescape newlines in directory name.
11624
11625 2012-01-17 Michael Albinus <michael.albinus@gmx.de>
11626
11627 * net/tramp.el (tramp-local-end-of-line): New defcustom.
11628 (tramp-action-login, tramp-action-yesno, tramp-action-yn)
11629 (tramp-action-terminal): Use it. (Bug#10530)
11630
11631 2012-01-16 Stefan Monnier <monnier@iro.umontreal.ca>
11632
11633 * minibuffer.el (completion--replace): Strip properties (bug#10062).
11634
11635 2012-01-16 Martin Rudalics <rudalics@gmx.at>
11636
11637 * window.el (window-state-ignored-parameters): Remove variable.
11638 (window--state-get-1): Rename argument MARKERS to IGNORE.
11639 Handle persistent window parameters. Make copy of clone-of
11640 parameter only if requested. (Bug#10348)
11641 (window--state-put-2): Install a window parameter only if it has
11642 a non-nil value or an existing parameter shall be overwritten.
11643
11644 2012-01-15 Michael Albinus <michael.albinus@gmx.de>
11645
11646 * net/tramp-sh.el (tramp-remote-path): Set tramp-autoload cookie.
11647
11648 2012-01-14 Eli Zaretskii <eliz@gnu.org>
11649
11650 * info.el (Info-toc-build): If the Info file has no "Up" pointer,
11651 don't pass the (nil) value of `upnode' to string-match.
11652
11653 2012-01-14 Chong Yidong <cyd@gnu.org>
11654
11655 * startup.el (command-line): Fix X resource class for cursorColor.
11656 Fix values recognized by the cursorBlink resource.
11657
11658 2012-01-14 Paul Eggert <eggert@cs.ucla.edu>
11659
11660 * epg.el (epg--make-temp-file): Avoid permission race condition
11661 when running on old Emacs versions (bug#10403).
11662
11663 2012-01-14 Glenn Morris <rgm@gnu.org>
11664
11665 * dired.el (dired-get-filename): Fix 'verbatim case of previous change.
11666
11667 2012-01-13 Alan Mackenzie <acm@muc.de>
11668
11669 Fix filling for when filladapt mode is enabled.
11670
11671 * progmodes/cc-cmds.el (c-fill-paragraph): In the invocation of
11672 c-mask-paragraph, pass in `fill-paragraph' rather than
11673 `fill-region-as-paragraph'. (This is a reversion of a previous
11674 change.)
11675 * progmodes/cc-mode.el (c-basic-common-init):
11676 Make fill-paragraph-handle-comment buffer local and set it to nil.
11677
11678 2012-01-13 Glenn Morris <rgm@gnu.org>
11679
11680 * dired.el (dired-switches-escape-p): New function.
11681 (dired-insert-directory): Use dired-switches-escape-p.
11682 (dired-get-filename): Undo "\ " quoting if needed. (Bug#10469)
11683
11684 * find-dired.el (find-ls-option): Doc fix. (Bug#10262)
11685
11686 2012-01-12 Glenn Morris <rgm@gnu.org>
11687
11688 * mail/sendmail.el (mail-mode): Update paragraph-separate for
11689 changes in adaptive-fill-regexp. (Bug#10276)
11690
11691 2012-01-11 Alan Mackenzie <acm@muc.de>
11692
11693 Fix Emacs bug #10463 - put `widen's around the critical spots.
11694
11695 * progmodes/cc-engine.el (c-in-literal, c-literal-limits): Put a
11696 widen around each invocation of c-state-pp-to-literal. Remove an
11697 unused let variable.
11698
11699 2012-01-11 Glenn Morris <rgm@gnu.org>
11700
11701 * dired-aux.el (dired-do-shell-command): Fix */? logic. (Bug#6561)
11702 Doc fix.
11703
11704 2012-01-10 Chong Yidong <cyd@gnu.org>
11705
11706 * net/network-stream.el (network-stream-open-starttls):
11707 Avoid emitting a confusing error message when the server gives a bad
11708 response to the capability command.
11709
11710 2012-01-10 Glenn Morris <rgm@gnu.org>
11711
11712 * mail/unrmail.el (unrmail): Tweak previous change.
11713
11714 2012-01-09 Chong Yidong <cyd@gnu.org>
11715
11716 * custom.el (custom-safe-themes): Use SHA-256 for hashing.
11717
11718 2012-01-08 Alan Mackenzie <acm@muc.de>
11719
11720 Optimise font locking in long enum definitions.
11721
11722 * progmodes/cc-fonts.el (c-font-lock-declarations): Add an extra
11723 arm to a cond form to handle enums.
11724 * progmodes/cc-langs.el (c-enums-contain-decls): New lang variable.
11725 * progmodes/cc-mode.el (c-font-lock-fontify-region): Correct a typo.
11726
11727 2012-01-07 Paul Eggert <eggert@cs.ucla.edu>
11728
11729 * files.el (move-file-to-trash): Preserve default file modes on error.
11730 (Bug#10401)
11731
11732 2012-01-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
11733
11734 * faces.el (set-face-attribute): Clarify the meaning of the nil
11735 frame (bug#10294).
11736
11737 * subr.el (with-selected-frame): Mention that the selected frame
11738 is restored (bug#9980).
11739
11740 * ibuffer.el (ibuffer-mode): List the bindings in the corrent map
11741 (bug#9759).
11742
11743 * mail/smtpmail.el (password-cache-add): Remove unused declaration.
11744 (password-read): Don't autoload unused function.
11745
11746 2012-01-07 Juanma Barranquero <lekktu@gmail.com>
11747
11748 * progmodes/which-func.el (which-func-mode): Turn into a
11749 non-interactive function and mark as obsolete (bug#10428).
11750
11751 2012-01-06 Chong Yidong <cyd@gnu.org>
11752
11753 * files.el (hack-dir-local-variables-non-file-buffer): Add doc.
11754 (hack-one-local-variable-eval-safep): Allow 0 arg for minor mode
11755 functions, along with 1 and -1.
11756
11757 2012-01-06 Eli Zaretskii <eliz@gnu.org>
11758
11759 * time.el (display-time-load-average)
11760 (display-time-default-load-average): Doc fixes. See the thread
11761 starting at
11762 http://lists.gnu.org/archive/html/help-gnu-emacs/2012-01/msg00059.html
11763 for the details.
11764
11765 2012-01-06 Glenn Morris <rgm@gnu.org>
11766
11767 * mail/unrmail.el (unrmail): Give an explicit error if the input file
11768 has no messages. (Bug#10377)
11769
11770 * info.el (Info-mode-map): Bind e to end-of-buffer, rather
11771 than Info-edit. (Bug#10385)
11772
11773 * time.el (display-time-load-average, display-time-next-load-average):
11774 Doc fixes.
11775
11776 * emacs-lisp/bytecomp.el (byte-compile-file): Do not propagate a file
11777 local setting of buffer-read-only to the input buffer. (Bug#10419)
11778
11779 * calendar/calendar.el (calendar-mode):
11780 Locally set scroll-margin to 0. (Bug#10379)
11781
11782 2012-01-06 Ulrich Mueller <ulm@gentoo.org>
11783
11784 * play/doctor.el (doctor-death): Escape "," characters. (Bug#10370)
11785
11786 2012-01-05 Glenn Morris <rgm@gnu.org>
11787
11788 * eshell/em-unix.el (diff-no-select): Autoload it.
11789 (eshell/diff): Use diff-no-select. (Bug#10420)
11790
11791 2012-01-05 Chong Yidong <cyd@gnu.org>
11792
11793 * shell.el (shell-dynamic-complete-functions): Revert last change.
11794 (shell-command-completion-function): New function.
11795 (shell-completion-vars): Use it to implement
11796 shell-completion-execonly (Bug#10417).
11797
11798 * custom.el (enable-theme): Don't set custom-safe-themes.
11799
11800 * cus-theme.el (custom-theme-merge-theme):
11801 Ignore custom-enabled-themes and custom-safe-themes.
11802
11803 2012-01-05 Michael R. Mauger <mmaug@yahoo.com>
11804
11805 * progmodes/sql.el (sql-login-hook): Add hook to respond to the
11806 first prompt in `sql-interacive-mode'.
11807 (sql-mode-oracle-font-lock-keywords): Add CONNECT_BY_* builtin
11808 keywords.
11809 (sql-mode-mysql-font-lock-keywords): Add ELSEIF keyword.
11810 (sql-product-interactive): Bug fix: Set `sql-buffer' in
11811 context of original buffer. Invoke `sql-login-hook'.
11812
11813 2012-01-04 Eli Zaretskii <eliz@gnu.org>
11814
11815 * mail/rmail.el (rmail-font-lock-keywords): Accept non-ASCII
11816 letters in cite-prefix.
11817
11818 2012-01-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
11819
11820 * mail/smtpmail.el (smtpmail-stream-type): Mention the `ssl' value.
11821
11822 2012-01-03 Chong Yidong <cyd@gnu.org>
11823
11824 * shell.el (shell-dynamic-complete-functions):
11825 Put pcomplete-completions-at-point, so as to try
11826 comint-filename-completion first (Bug#10417).
11827
11828 2012-01-02 Richard Stallman <rms@gnu.org>
11829
11830 * battery.el (battery-status-function):
11831 Detect when to use battery-yeeloong-sysfs.
11832 (battery-echo-area-format): Add string for Yeeloong.
11833 (battery-linux-proc-apm, battery-linux-proc-acpi): Doc fixes.
11834 (battery-yeeloong-sysfs): New function.
11835
11836 2012-01-02 Chong Yidong <cyd@gnu.org>
11837
11838 * dirtrack.el (dirtrack-list): Eliminate unused third element.
11839 (dirtrack): Merge code for handling relative filenames in prompt
11840 from shell-dir-cookie-watcher.
11841 (dirtrack-debug-message): New arg to avoid excess format calls.
11842
11843 * shell.el (shell-dir-cookie-re): Variable deleted.
11844 (shell-dir-cookie-watcher): Function deleted.
11845 (shell-mode): Don't use shell-dir-cookie-re, since it is redundant
11846 with dirtrack-mode.
11847
11848 2012-01-01 Eli Zaretskii <eliz@gnu.org>
11849
11850 * term/w32-win.el (dynamic-library-alist) <gnutls>:
11851 Load libgnutls-28.dll, from GnuTLS version 3.x, in preference to
11852 libgnutls-26.dll.
11853
11854 2011-12-31 Andreas Schwab <schwab@linux-m68k.org>
11855
11856 * emacs-lisp/bytecomp.el (byte-compile-file): Fix indentation.
11857
11858 2011-12-31 Eli Zaretskii <eliz@gnu.org>
11859
11860 * mail/rmail.el (rmail-show-message-1): Decode any RFC2047 encoded
11861 headers of non-MIME messages, when rmail-enable-mime is non-nil.
11862
11863 2011-12-29 Michael Albinus <michael.albinus@gmx.de>
11864
11865 * net/tramp-sh.el (tramp-find-shell): Set "remote-shell" property
11866 also for alternative shells.
11867 (tramp-open-connection-setup-interactive-shell): Check, whether
11868 the shell is a busybox.
11869 (tramp-send-command): Don't suppress multiple prompts for
11870 busyboxes, it hurts.
11871
11872 2011-12-28 Chong Yidong <cyd@gnu.org>
11873
11874 * progmodes/gdb-mi.el (gdb-get-source-file-list)
11875 (gdb-get-source-file): Move mode line update to
11876 gdb-get-source-file (Bug#10087).
11877
11878 2011-12-25 Chong Yidong <cyd@gnu.org>
11879
11880 * progmodes/gud.el (gud-gdb-fetch-lines-filter): Just use
11881 gud-gdb-marker-filter without taking it as an argument.
11882 (gud-gdb-run-command-fetch-lines): Caller changed.
11883 (gud-gdb-completion-function): New variable.
11884 (gud-gdb-completion-at-point): Use it.
11885 (gud-gdb-completions-1): Split from gud-gdb-completions.
11886
11887 * progmodes/gdb-mi.el (gdb-input): Accept command and handler
11888 function as separate arguments.
11889 (gdb-init-1, gdb-non-stop-handler, gdb-check-target-async)
11890 (gdb-tooltip-print-1, gud-watch, gdb-speedbar-update)
11891 (gdb-var-list-children, gdb-var-set-format, gdb-var-delete-1)
11892 (gdb-var-delete-children, gdb-edit-value, gdb-var-update)
11893 (gdb-stopped, def-gdb-auto-update-trigger)
11894 (gdb-place-breakpoints, gdb-select-thread, gdb-select-frame)
11895 (gdb-get-changed-registers, gdb-get-main-selected-frame):
11896 Callers changed.
11897 (gud-gdbmi-completions): New function.
11898 (gdb): Use it for generating the completion table.
11899
11900 2011-12-24 Alan Mackenzie <acm@muc.de>
11901
11902 Introduce a mechanism to widen the region used in context font
11903 locking. Use this to protect declarations from losing their contexts.
11904
11905 * progmodes/cc-langs.el (c-before-font-lock-functions):
11906 Replace c-set-fl-decl-start with c-change-set-fl-decl-start (Renaming).
11907 (c-before-context-fontification-functions): New defvar, a list of
11908 functions to be run just before context (etc.) font locking.
11909
11910 * progmodes/cc-mode.el (c-extend-font-lock-region-for-macros):
11911 New, functionality extracted from
11912 c-neutralize-syntax-in-and-mark-CPP.
11913 (c-in-after-change-fontification): New variable.
11914 (c-after-change): Set c-in-after-change-fontification.
11915 (c-set-fl-decl-start): Rejig its interface, so it can be called
11916 from both after-change and context fontifying.
11917 (c-change-set-fl-decl-start, c-context-set-fl-decl-start):
11918 New functions.
11919 (c-standard-font-lock-fontify-region-function): New variable.
11920 (c-font-lock-fontify-region): New function.
11921
11922 2011-12-24 Juri Linkov <juri@jurta.org>
11923
11924 * window.el (window--state-get-1): Set `FORCE' arg of `mark' to t.
11925 (Bug#10348)
11926
11927 2011-12-23 Michael Albinus <michael.albinus@gmx.de>
11928
11929 * net/ange-ftp.el (ange-ftp-copy-file-internal): Check for
11930 existence of source file. (Bug#10325)
11931
11932 2011-12-23 Alan Mackenzie <acm@muc.de>
11933
11934 Fix unstable fontification inside templates.
11935
11936 * progmodes/cc-langs.el (c-before-font-lock-functions):
11937 Newly created from the singular version. The (c c++ objc) entry now
11938 additionally has c-set-fl-decl-start. The other languages (apart
11939 from AWK) have that as a single entry.
11940
11941 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
11942 The functionality for "local" declarations has been extracted to
11943 c-set-fl-decl-start.
11944
11945 * progmodes/cc-mode.el (c-common-init, c-after-change):
11946 Changes due to pluralisation of c-before-font-lock-functions.
11947 (c-set-fl-decl-start): New function, extracted from
11948 c-font-lock-enclosing-decls and enhanced.
11949
11950 2011-12-23 Juanma Barranquero <lekktu@gmail.com>
11951
11952 * desktop.el (desktop-internal-v2s): Fix typos in docstring (bug#10353).
11953
11954 2011-12-22 Juri Linkov <juri@jurta.org>
11955
11956 * progmodes/grep.el (rgrep): Fix docstring. (Bug#10185)
11957
11958 2011-12-22 Chong Yidong <cyd@gnu.org>
11959
11960 * vc/vc-hooks.el (vc-keep-workfiles): Doc fix.
11961
11962 2011-12-21 Drew Adams <drew.adams@oracle.com>
11963
11964 * files.el (file-remote-p): Fix docstring. (Bug#10319)
11965
11966 2011-12-21 Jérémy Compostella <jeremy.compostella@gmail.com>
11967
11968 * battery.el (battery-linux-sysfs): Add missing parameters from acpi.
11969
11970 2011-12-21 Teodor Zlatanov <tzz@lifelogs.com>
11971
11972 * progmodes/cfengine.el: Add Version. Improve CFEngine 3.x syntax
11973 highlighting and support. Fix up comments for capitalization.
11974 (cfengine-mode-debug): New var.
11975 (cfengine3-mode): Change the modeline indicator to "CFE3".
11976 (cfengine3-font-lock-keywords): Improve defun highlighting.
11977 (cfengine2-actions): Rename from `cfengine-actions'.
11978 (cfengine2-font-lock-keywords): Rename from
11979 `cfengine-font-lock-keywords'.
11980 (cfengine2-imenu-expression): Rename from
11981 `cfengine-imenu-expression'.
11982 (cfengine2-outline-level): Rename from `cfengine-outline-level'.
11983 (cfengine2-beginning-of-defun): Rename from
11984 `cfengine-beginning-of-defun'.
11985 (cfengine2-end-of-defun): Rename from `cfengine-end-of-defun'.
11986 (cfengine2-indent-line): Rename from `cfengine-indent-line'.
11987 (cfengine2-mode): Rename from `cfengine-mode'. Change the
11988 modeline indicator to "CFE2".
11989 (cfengine-mode): Defalias to `cfengine-auto-mode'.
11990 (cfengine-mode-abbrevs): Mark obsolete.
11991
11992 2011-12-21 Chong Yidong <cyd@gnu.org>
11993
11994 * vc/vc-bzr.el (vc-bzr-rename-file): Don't pass ~ to Bzr in
11995 filename argument.
11996
11997 2011-12-20 Martin Rudalics <rudalics@gmx.at>
11998
11999 * window.el (window-normalize-buffer-to-display): Remove.
12000 (display-buffer): Handle buffer-or-name argument as in Emacs 23.
12001
12002 2011-12-19 Chong Yidong <cyd@gnu.org>
12003
12004 * vc/vc-dir.el (vc-dir-parent-marked-p, vc-dir-children-marked-p):
12005 Don't signal an error in a predicate function; return non-nil.
12006 (vc-dir-mark-file): Move the error here.
12007 (vc-dir-mark-unmark): If acting on the region, keep going if one
12008 of the entries cannot be marked/unmarked.
12009 (vc-dir-mark-all-files): If current entry is a directory, mark
12010 only child files, as documented.
12011
12012 2011-12-19 Vincent Belaïche <vincentb1@users.sourceforge.net>
12013
12014 * ses.el: Ooops... undo changes of 2011-12-11T14:49:48Z!vincentb1@users.sourceforge.net, as trunk
12015 branch is feature frozen, and 2011-12-11T14:49:48Z!vincentb1@users.sourceforge.net was a feature
12016 addition.
12017
12018 2011-12-18 Jan Djärv <jan.h.d@swipnet.se>
12019
12020 * term/ns-win.el (ns-get-selection-internal)
12021 (ns-store-selection-internal): Declare.
12022 (ns-store-cut-buffer-internal, ns-get-cut-buffer-internal):
12023 Declare as obsolete.
12024 (ns-get-pasteboard, ns-paste-secondary):
12025 Use ns-get-selection-internal.
12026 (ns-set-pasteboard, ns-copy-including-secondary):
12027 Use ns-store-selection-internal.
12028
12029 2011-12-17 Chong Yidong <cyd@gnu.org>
12030
12031 * vc/vc.el (vc-next-action): Doc fix; remove CVS-isms.
12032 (vc-deduce-fileset): Doc fix.
12033
12034 2011-12-16 Andreas Schwab <schwab@linux-m68k.org>
12035
12036 * calc/calc-misc.el (calc-help): Avoid wrapping help message.
12037
12038 2011-12-13 Sam Steingold <sds@gnu.org>
12039
12040 * man.el (Man-getpage-in-background): When running under a
12041 window-system, ignore $MANWIDTH and $COLUMNS.
12042
12043 2011-12-15 Kenichi Handa <handa@m17n.org>
12044
12045 * language/ethio-util.el: Change coding tag to utf-8-emacs.
12046 (setup-ethiopic-environment-internal): Comment out key-binding for
12047 ethio-toggle-punctuation.
12048
12049 2011-12-13 Alan Mackenzie <acm@muc.de>
12050
12051 Add the switch statement to AWK Mode.
12052
12053 * progmodes/cc-awk.el (awk-font-lock-keywords): Add "switch", "case",
12054 "default" to the keywords regexp.
12055
12056 * progmodes/cc-langs.el (c-label-kwds): Let AWK take the same
12057 expression as the rest.
12058 (c-nonlabel-token-key): Allow string literals for AWK.
12059 Refactor for the other modes.
12060
12061 Large brace-block initialisation makes CC Mode slow: Fix.
12062 Tidy up and accelerate c-in-literal, etc. by using the c-parse-state
12063 routines. Limit backward searching in c-font-lock-enclosing.decl.
12064
12065 * progmodes/cc-engine.el (c-state-pp-to-literal): Return the
12066 pp-state and literal type in addition to the limits.
12067 (c-state-safe-place): New defun, extracted from c-state-literal-at.
12068 (c-state-literal-at): Use the above new defun.
12069 (c-slow-in-literal, c-fast-in-literal): Remove.
12070 (c-in-literal, c-literal-limits): Amend to use c-state-pp-to-literal.
12071
12072 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls): Check for
12073 being in a literal. Add a limit for backward searching.
12074
12075 * progmodes/cc-mode.el (awk-mode): Don't alias c-in-literal to
12076 c-slow-in-literal.
12077
12078 2011-12-13 Stefan Monnier <monnier@iro.umontreal.ca>
12079
12080 * progmodes/pascal.el: Declare `ind' as dyn-bound (bug#10264).
12081
12082 2011-12-13 Martin Rudalics <rudalics@gmx.at>
12083
12084 * window.el (delete-other-windows): Use correct frame in call to
12085 window-with-parameter.
12086
12087 2011-12-12 Daniel Pfeiffer <occitan@t-online.de>
12088
12089 * progmodes/make-mode.el: Bring it up to date with makepp V2.0.
12090 (makefile-make-font-lock-keywords): Extend meaning of `keywords'.
12091 (makefile-gmake-statements, makefile-makepp-statements):
12092 Use it and add new makepp keywords.
12093 (makefile-makepp-font-lock-keywords): Add new patterns.
12094 (makefile-match-function-end): Match new [...] and [[...]].
12095
12096 2011-12-11 Juanma Barranquero <lekktu@gmail.com>
12097
12098 * ses.el (ses-call-printer-return, ses-cell-property-get)
12099 (ses-sym-rowcol, ses-printer-validate, ses-formula-record)
12100 (ses-create-cell-variable, ses-reset-header-string)
12101 (ses-cell-set-formula, ses-repair-cell-reference-all)
12102 (ses-self-reference-early-detection, ses-in-print-area, ses-set-curcell)
12103 (ses-check-curcell, ses-call-printer, ses-adjust-print-width)
12104 (ses-print-cell-new-width, ses-formula-references, ses-relocate-formula)
12105 (ses-aset-with-undo, ses-load, ses-truncate-cell)
12106 (ses-read-column-printer, ses-read-default-printer, ses-insert-row)
12107 (ses-delete-row, ses-delete-column, ses-append-row-jump-first-column)
12108 (ses-kill-override, ses-yank-pop, ses-yank-cells, ses-yank-tsf)
12109 (ses-yank-resize, ses-export-tab, ses-mark-row, ses-mark-column)
12110 (ses-renarrow-buffer, ses-insert-range, ses-insert-ses-range)
12111 (ses-safe-printer, ses-safe-formula, ses-warn-unsafe, ses--clean-!)
12112 (ses--clean-_, ses-range, ses-select, ses-center, ses-center-span)
12113 (ses-dashfill, ses-unsafe): Fix typos and reflow docstrings.
12114
12115 2011-12-11 Vincent Belaïche <vincentb1@users.sourceforge.net>
12116
12117 * ses.el: The overall change is to add cell renaming, that is
12118 setting fancy names for cell symbols other than name matching
12119 "\\`[A-Z]+[0-9]+\\'" regexp .
12120 (ses-create-cell-variable): New defun.
12121 (ses-relocate-formula): Relocate formulas only for cells the
12122 symbols of which are not renamed, i.e. symbols whose names do not
12123 match regexp "\\`[A-Z]+[0-9]+\\'".
12124 (ses-relocate-all): Relocate values only for cells the symbols of
12125 which are not renamed.
12126 (ses-load): Create cells variables as the (ses-cell ...) are read,
12127 in order to check row col consistency with cell symbol name only
12128 for cells that are not renamed.
12129 (ses-replace-name-in-formula): New defun.
12130 (ses-rename-cell): New defun.
12131
12132 2011-12-11 Chong Yidong <cyd@gnu.org>
12133
12134 * progmodes/gdb-mi.el (gdb): Set comint-prompt-regexp, required
12135 for completion via gud-gdb-fetch-lines-filter (Bug#10274).
12136
12137 2011-12-11 Eric Hanchrow <eric.hanchrow@gmail.com>
12138
12139 * window.el (other-window): Fix docstring.
12140
12141 2011-12-10 Eli Zaretskii <eliz@gnu.org>
12142
12143 * mail/rmailsum.el (rmail-header-summary): RFC2047 decode the
12144 `from' or `to' address before taking its substring.
12145 Fixes incorrect display in Rmail summary buffer whereby an RFC2047
12146 encoded name is chopped in the middle of the encoded string, and
12147 thus displayed encoded.
12148
12149 2011-12-10 Juanma Barranquero <lekktu@gmail.com>
12150
12151 * makefile.w32-in (update-subdirs-CMD): Use a Local Variables section.
12152
12153 2011-12-10 Eli Zaretskii <eliz@gnu.org>
12154
12155 * textmodes/texnfo-upd.el: Update commentary. Add a warning not
12156 to use texinfo-update-node and commands that call it if the
12157 Texinfo file uses @node lines without next/prev/up pointers.
12158 Correct outdated description about texinfo-master-menu.
12159 (texinfo-all-menus-update, texinfo-master-menu)
12160 (texinfo-update-node, texinfo-every-node-update)
12161 (texinfo-multiple-files-update): Doc fix. Warn against updating
12162 all the @node lines.
12163 (texinfo-master-menu): Only call texinfo-update-node if the prefix
12164 argument is numeric. Explain better in the doc string what the
12165 function really does.
12166 (texinfo-insert-master-menu-list): Improve the error message
12167 displayed if there's no menu in the Top node.
12168 (Bug#2975) See also this thread:
12169 http://lists.gnu.org/archive/html/emacs-devel/2011-12/msg00156.html.
12170
12171 2011-12-09 Manuel Gómez <mgrojo@gmail.com> (tiny change)
12172
12173 * speedbar.el (speedbar-supported-extension-expressions):
12174 Add .adb and .ads, commonly used for Ada source code (bug#10256).
12175
12176 2011-12-09 Juanma Barranquero <lekktu@gmail.com>
12177
12178 * printing.el (pr-mode-alist):
12179 * simple.el (filter-buffer-substring-functions)
12180 (completion-list-insert-choice-function):
12181 * window.el (window-with-parameter, window-atom-root)
12182 (window-sides-slots, window-size-fixed, window-min-delta)
12183 (window-max-delta, window--resize-mini-window)
12184 (window--resize-child-windows-normal, window-tree)
12185 (delete-other-windows, quit-window, split-window)
12186 (display-buffer-record-window, special-display-buffer-names)
12187 (special-display-regexps, special-display-popup-frame)
12188 (same-window-p, split-window-sensibly)
12189 (display-buffer-overriding-action, display-buffer-alist)
12190 (display-buffer-base-action, display-buffer, switch-to-buffer)
12191 (switch-to-buffer-other-window, switch-to-buffer-other-frame)
12192 (fit-window-to-buffer, recenter-positions)
12193 (mouse-autoselect-window-state, mouse-autoselect-window-select):
12194 * emacs-lisp/syntax.el (syntax-propertize-function): Fix typos
12195 and remove unneeded backslashes in docstrings.
12196
12197 2011-12-08 Stefan Monnier <monnier@iro.umontreal.ca>
12198
12199 * emacs-lisp/lisp-mode.el (defmethod): Add doc-string-elt (bug#10244).
12200
12201 * pcmpl-gnu.el: Don't fail when there is no Makefile nor -f arg.
12202 (pcmpl-gnu-makefile-regexps): Accept "makefile" as well as files that
12203 end in ".mk".
12204 (pcmpl-gnu-make-rule-names): Check "makefile" and ignore errors
12205 when reading the makefile (bug#10116).
12206
12207 2011-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
12208
12209 * pcmpl-gnu.el (pcomplete/make): Also allow filename arguments
12210 (bug#10116).
12211
12212 2011-12-06 Glenn Morris <rgm@gnu.org>
12213
12214 * emacs-lisp/package.el (package-archives): Doc fix re riskiness.
12215
12216 2011-12-06 Chong Yidong <cyd@gnu.org>
12217
12218 * progmodes/cc-fonts.el (c-annotation-face): Use defface.
12219
12220 2011-12-06 Juanma Barranquero <lekktu@gmail.com>
12221
12222 * textmodes/table.el (table-shorten-cell): Fix typo.
12223
12224 2011-12-05 Christopher Genovese <genovese.cr@gmail.com> (tiny change)
12225
12226 * emacs-lisp/assoc.el (aput): Fix return value (bug#10146)
12227
12228 2011-12-05 Eli Zaretskii <eliz@gnu.org>
12229
12230 * descr-text.el (describe-char): Fix display of strong
12231 right-to-left characters and directional embeddings and overrides.
12232
12233 * simple.el (what-cursor-position): Fix display of codepoints of
12234 strong right-to-left characters.
12235
12236 2011-12-05 Chong Yidong <cyd@gnu.org>
12237
12238 * faces.el (read-color): Doc fix.
12239
12240 2011-12-05 Glenn Morris <rgm@gnu.org>
12241
12242 * align.el (align--set-marker): Add doc-string.
12243 Don't try to move something that is not a marker. (Bug#10216)
12244
12245 2011-12-04 Glenn Morris <rgm@gnu.org>
12246
12247 * calendar/appt.el (appt-add): Rewrite the interactive-spec to avoid
12248 overly zealous deletion of trailing whitespace.
12249
12250 2011-12-04 Juanma Barranquero <lekktu@gmail.com>
12251
12252 * server.el (server-delete-client): On Windows, do not try to delete
12253 the only terminal.
12254 (server-process-filter): On Windows, treat requests for a tty frame as
12255 if they were for a GUI frame if the running server is in GUI mode.
12256
12257 2011-12-03 Glenn Morris <rgm@gnu.org>
12258
12259 * textmodes/texinfmt.el (batch-texinfo-format): Doc fix. (Bug#10207)
12260
12261 2011-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
12262
12263 * electric.el: Streamline electric-indent's hook.
12264 (electric-indent-chars): Revert to simple list.
12265 (electric-indent-functions): New var.
12266 (electric-indent-post-self-insert-function): Use it.
12267
12268 * progmodes/prolog.el (prolog-find-value-by-system): Avoid error when
12269 there's no inferior buffer (bug#10196).
12270 (prolog-consult-compile): Don't use toggle-read-only.
12271
12272 2011-12-02 Michael Albinus <michael.albinus@gmx.de>
12273
12274 * net/tramp-sh.el (tramp-maybe-open-connection): Handle user
12275 interrupt. (Bug#10187)
12276
12277 2011-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
12278
12279 * pcmpl-gnu.el (pcomplete/tar): large-file-warn-threshold can be nil
12280 (bug#9160).
12281
12282 * dired-aux.el (dired-query): Don't assume help-char is modifier-free
12283 (bug#10191).
12284
12285 2011-12-02 Juri Linkov <juri@jurta.org>
12286
12287 * info.el (Info-search): Display "end of manual" when Isearch
12288 reaches the end of single-file Info manual. (Bug#9918)
12289
12290 2011-12-02 Eli Zaretskii <eliz@gnu.org>
12291
12292 * isearch.el (isearch-message-prefix): Run the input method part
12293 of the prompt through bidi-string-mark-left-to-right. (Bug#10183)
12294
12295 2011-12-02 Juri Linkov <juri@jurta.org>
12296
12297 * isearch.el (isearch-occur): Use `word-search-regexp' for
12298 `isearch-word'.
12299 (isearch-search-and-update): Add condition for `isearch-word' and
12300 call `word-search-regexp'. (Bug#10145)
12301
12302 2011-12-01 Glenn Morris <rgm@gnu.org>
12303
12304 * eshell/em-hist.el (eshell-hist-initialize):
12305 Handle eshell-history-size nil and HISTSIZE set or unset.
12306 (eshell-history-file-name, eshell-history-size): Fix custom type.
12307
12308 2011-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
12309
12310 * man.el (Man-completion-table): Fix the lambda case (bug#10168).
12311
12312 2011-12-01 Michael McNamara <mac@mail.brushroad.com>
12313
12314 * progmodes/verilog-mode.el (verilog-pretty-expr):
12315 Rework verilog-pretty-expr to handle new assignment operators in system
12316 verilog, such as += *= and the like.
12317 (verilog-assignment-operator-re): Regular expression to find the
12318 assigment operator in a verilog assignment.
12319 (verilog-assignment-operation-re): Regular expression to find an
12320 assignment statement for pretty-expr.
12321 (verilog-in-attribute-p): Query returns true if point is in an
12322 attribute context; used to skip these for expression line up from
12323 pretty-expr.
12324 (verilog-in-parameter-p): Query returns true if point is in an
12325 parameter definition context; used to skip these for expression
12326 line up from pretty-expr.
12327 (verilog-in-parenthesis-p): Query returns true if point is in a
12328 parenthetical expression, specifically ( ) but not [ ] or { };
12329 used by pretty-expr.
12330 (verilog-just-one-space): If there is no space, don't add one.
12331 (verilog-get-lineup-indent-2): Specifically skip just attribute
12332 contexts for expression lineup, rather than skipping all
12333 parenthetical expressions.
12334 (verilog-calculate-indent): Fix comment, and fix indent.
12335 (verilog-do-indent): Indent declarations in lists (suggested by
12336 Joachim Lechner).
12337 (verilog-mode-abbrev-table): Populate abbrev mode with the various
12338 skeleton items.
12339 (verilog-sk-ovm-class): Add skeleton for OVM classes (reported
12340 by Alain Mellan).
12341
12342 2011-12-01 Wilson Snyder <wsnyder@wsnyder.org>
12343
12344 * progmodes/verilog-mode.el (verilog-read-defines): Fix reading
12345 parameters with embedded comments. Reported by Ray Stevens.
12346 (verilog-calc-1, verilog-fork-wait-re) (verilog-forward-sexp,
12347 verilog-wait-fork-re): Fix indentation of "wait fork", bug407.
12348 Reported by Tim Holt.
12349 (verilog-auto): Fix AUTOing a upper module then AUTOing module
12350 instantiated by upper module causing wrong expansion until AUTOed a
12351 second time. Reported by K C Buckenmaier.
12352 (verilog-diff-auto): Fix showing .* as a difference when
12353 `verilog-auto-star-save' off. Reported by Dan Dever.
12354 (verilog-auto-reset, verilog-read-always-signals)
12355 (verilog-auto-reset-blocking-in-non): Fix AUTORESET including
12356 temporary signals in reset list if
12357 verilog-auto-reset-blocking-in-non is nil, and match assignment
12358 style to each signal's assignment type, bug381.
12359 Reported by Thomas Esposito.
12360 (verilog-sk-uvm-class, verilog-uvm-begin-re, verilog-uvm-end-re)
12361 (verilog-uvm-statement-re): Support UVM indentation and
12362 highlighting, with old OVM keywords only.
12363 (verilog-auto-tieoff, verilog-auto-tieoff-declaration):
12364 Support AUTOTIEOFF creating non-wire data types.
12365 Suggested by Jonathan Greenlaw.
12366 (verilog-auto-insert-lisp, verilog-delete-to-paren)
12367 (verilog-forward-sexp-cmt, verilog-forward-sexp-ign-cmt)
12368 (verilog-inject-sense, verilog-read-inst-pins)
12369 (verilog-read-sub-decls, verilog-read-sub-decls-line):
12370 Fix mismatching parenthesis inside commented out code when deleting
12371 AUTOINST, bug383. Reported by Jonathan Greenlaw.
12372 (verilog-auto-ascii-enum): Fix AUTOASCIIENUM one-hot with
12373 non-numeric vector width. Reported by Alex Reed.
12374 (verilog-auto-ascii-enum): Add "onehot" option to work around not
12375 detecting signals with parameter widths. Reported by Alex Reed.
12376 (verilog-auto-delete-trailing-whitespace):
12377 With `verilog-auto-delete-trailing-whitespace' remove trailing
12378 whitespace in auto expansion, bug371. Reported by Brad Dobbie.
12379 (verilog-run-hooks, verilog-scan-cache-flush, verilog-syntax-ppss):
12380 Fix verilog-scan-cache corruption when running user AUTO expansion
12381 hooks that call indentation routines.
12382 (verilog-simplify-range-expression): Fix typo ignoring lower case
12383 identifiers.
12384 (verilog-delete-auto): Fix delete-autos to also remove user created
12385 automatics, as long as they start with AUTO.
12386 (verilog-batch-diff-auto, verilog-diff-auto)
12387 (verilog-diff-function): Add `verilog-diff-auto' and bind to
12388 "C-c?" to report differences in AUTO expansion, ignoring spaces.
12389 (verilog-backward-syntactic-ws-quick, verilog-beg-of-defun-quick)
12390 (verilog-in-paren-quick, verilog-re-search-backward-quick)
12391 (verilog-re-search-forward-quick, verilog-syntax-ppss):
12392 Fix calling `syntax-ppss' when inside auto expansions as the ppss hook
12393 is disabled and its cache will get corrupt, causing AUTOS not to
12394 expand. Instead use only -quick functions.
12395 (verilog-scan-region): Fix scanning over escaped quotes.
12396 (verilog-inside-comment-or-string-p, verilog-inside-comment-p)
12397 (verilog-re-search-backward-quick)
12398 (verilog-re-search-forward-quick, verilog-scan): verilog-scan and
12399 related functions now ignore strings, to fix misparsing of strings
12400 with magic comments embedded in them.
12401 (verilog-read-auto-template):
12402 Fix 'verilog-auto-inst-template-numbers' with extra newline before (.
12403 Reported by Brad Dobbie.
12404 (verilog-read-auto-template):
12405 Fix 'verilog-auto-inst-template-numbers' with comments.
12406 Reported by Brad Dobbie.
12407 (verilog-auto-inst, verilog-auto-inst-param)
12408 (verilog-auto-inst-sort): Add 'verilog-auto-inst-sort' to reduce
12409 merge conflicts with AUTOINST, bug358. Reported by Brad Dobbie.
12410 (verilog-auto-inst-template-numbers): Add 'lhs' policy for
12411 debugging templates without merge conflicts, bug357.
12412 Reported by Brad Dobbie.
12413 (verilog-read-auto-template):
12414 Fix verilog-auto-inst-template-numbers with multiple templates.
12415 Reported by Brad Dobbie.
12416 (verilog-define-abbrev): Fix verilog-mode abbrevs to be system
12417 abbrevs so user won't be asked to save.
12418 (verilog-read-auto-lisp-present): Fix to start at beginning of
12419 buffer in case called outside of verilog-auto.
12420 (verilog-simplify-range-expression): Fix AUTOWIRE expanding "X-1+1"
12421 to "X-2". Reported by Matthew Myers.
12422 (verilog-auto, verilog-auto-inout-in): Add AUTOINOUTIN for creating
12423 all inputs from module templates. Reported by Leith Johnson.
12424 (verilog-module-inside-filename-p): Fix locating programs as with
12425 modules.
12426 (verilog-auto-inst-port): Fix vl-width expressions when using
12427 verilog-auto-inst-param-value, bug331. Reported by Julian Gorfajn.
12428 (verilog-decls-get-regs, verilog-decls-get-signals,
12429 verilog-decls-get-vars, verilog-decls-get-wires, verilog-decls-new,
12430 verilog-modi-cache-add-vars, verilog-modi-cache-add-wires,
12431 verilog-read-decls): Combine reg and wire structures into one var
12432 structure to represent SystemVerilog concepts.
12433 (verilog-auto-ascii-enum, verilog-auto-logic, verilog-auto-reg)
12434 (verilog-auto-reg-input, verilog-auto-tieoff, verilog-auto-wire)
12435 (verilog-auto-wire-type, verilog-insert-definition):
12436 Add verilog-auto-wire-type and AUTOLOGIC to support using
12437 SystemVerilog "logic" keyword instead of "wire"/"reg".
12438 (verilog-auto-reg-input, verilog-decls-get-signals): Fix AUTOWIRE
12439 to declares outputs that also have assignments (presumably in an
12440 ifdef or generate if so there's not a driver conflict).
12441 Reported by Matthew Myers.
12442 (verilog-auto-declare-nettype, verilog-insert-definition):
12443 Add verilog-auto-declare-nettype to fix declarations using
12444 `default_nettype none. Reported by Julian Gorfajn.
12445 (verilog-read-always-signals-recurse, verilog-read-decls)
12446 (verilog-read-sub-decls-gate): Fix infinite loop with (*) and
12447 malformed end statement, bug325. Reported by Joshua Wise and
12448 Andrew Drake.
12449 (verilog-auto-star-safe, verilog-delete-auto-star-implicit)
12450 (verilog-inst-comment-re): Fix not deleting Interfaced comment
12451 when expanding .* in interfaces, bug320.
12452 Reported by Pierre-David Pfister.
12453 (verilog-read-module-name): Fix import statements between module
12454 name and open parenthesis, bug317.
12455 Reported by Pierre-David Pfister.
12456 (verilog-simplify-range-expression): Fix simplification of
12457 multiplications inside AUTOWIRE connections, bug303.
12458 (verilog-auto-inst-port): Support parameter expansion in
12459 multidimensional arrays.
12460 (verilog-read-decls): Fix AUTOREG etc looking for "endproperty"
12461 after "assert property". Reported by Julian Gorfajn.
12462 (verilog-simplify-range-expression): Fix "couldn't merge" errors
12463 with multiplication, bug303.
12464 (verilog-read-decls): Fix parsing of unsigned data types, bug302.
12465 Reported by Jan Frode Lonnum.
12466
12467 2011-11-30 Juanma Barranquero <lekktu@gmail.com>
12468
12469 * htmlfontify.el (hfy-page-header, hfy-post-html-hooks)
12470 (hfy-shell-file-name, hfy-shell):
12471 * international/fontset.el (x-decompose-font-name): Fix typos.
12472
12473 2011-11-29 Ken Brown <kbrown@cornell.edu>
12474
12475 * progmodes/gdb-mi.el: Fix bug#9853, bug#9858, and bug#9878.
12476 (gdb-version): Remove defvar.
12477 (gdb-supports-non-stop): New defvar, replacing `gdb-version'.
12478 (gdb-gud-context-command, gdb-non-stop-handler)
12479 (gdb-current-context-command, gdb-stopped): Use it.
12480 (gdb-init-1): Enable pretty printing here.
12481 (gdb-non-stop-handler): Don't enable pretty-printing here.
12482 Check to see if the target supports non-stop mode; if not, turn off
12483 non-stop mode. Use the following.
12484 (gdb-check-target-async): New defun.
12485 (gud-watch, gdb-stopped): Fix whitespace.
12486 (gdb-get-source-file): Don't try to display the source file if
12487 `gdb-main-file' is nil.
12488
12489 2011-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
12490
12491 * align.el: Try to generate fewer markers (bug#10047).
12492 (align--set-marker): New macro.
12493 (align-region): Use it.
12494
12495 2011-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
12496
12497 * isearch.el (isearch-yank-x-selection): Deactivate mark (bug#10022).
12498
12499 2011-11-29 Chong Yidong <cyd@gnu.org>
12500
12501 * indent.el (indent-for-tab-command, indent-according-to-mode):
12502 Doc fix.
12503 (indent-region): Doc fix. Switch nested ifs to equivalent cond.
12504
12505 2011-11-29 Michael Albinus <michael.albinus@gmx.de>
12506
12507 * vc/diff-mode.el (diff-find-file-name): Make `read-file-name'
12508 aware of remote file names. (Bug#10124)
12509
12510 2011-11-29 Chong Yidong <cyd@gnu.org>
12511
12512 * frame.el (auto-raise-mode, auto-lower-mode): Doc fix.
12513
12514 2011-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
12515
12516 * files.el (find-file): Don't use force-same-window (bug#10144).
12517 * window.el (switch-to-buffer): Better match Emacs-23 behavior and only
12518 use pop-to-buffer if the selected window can't be used.
12519 (pop-to-buffer-same-window): Use display-buffer--same-window-action.
12520
12521 2011-11-28 Eli Zaretskii <eliz@gnu.org>
12522
12523 * vc/diff-mode.el (diff-mode-map): Don't inherit 'z' => 'M-z' from
12524 special-mode-map.
12525
12526 2011-11-28 Chong Yidong <cyd@gnu.org>
12527
12528 * emacs-lisp/easy-mmode.el (define-minor-mode): Fix default doc.
12529
12530 2011-11-27 Nick Roberts <nickrob@snap.net.nz>
12531
12532 * progmodes/gdb-mi.el (gdb-init-1): Condition execution of
12533 gdb-get-source-file-list on gdb-create-source-file-list.
12534
12535 2011-11-26 Eli Zaretskii <eliz@gnu.org>
12536
12537 * whitespace.el (whitespace-newline): Use a different foreground
12538 color for 16-color light-background displays.
12539
12540 2011-11-24 Chong Yidong <cyd@gnu.org>
12541
12542 * window.el (display-buffer--special-action): Doc fix.
12543
12544 2011-11-25 Juanma Barranquero <lekktu@gmail.com>
12545
12546 * emacs-lisp/avl-tree.el (avl-tree--do-copy, avl-tree-create)
12547 (avl-tree-compare-function, avl-tree-empty, avl-tree-enter)
12548 (avl-tree-delete, avl-tree-member, avl-tree-member-p, avl-tree-map)
12549 (avl-tree-mapc, avl-tree-mapf, avl-tree-mapcar, avl-tree-copy)
12550 (avl-tree-clear, avl-tree-stack, avl-tree-stack-pop)
12551 (avl-tree-stack-first):
12552 * emacs-lisp/cconv.el (cconv--analyse-use):
12553 * net/gnutls.el (gnutls-negotiate): Fix typos.
12554
12555 2011-11-24 Glenn Morris <rgm@gnu.org>
12556
12557 * lpr.el (lpr-windows-system, lpr-lp-system):
12558 * mail/binhex.el (binhex-begin-line):
12559 * progmodes/grep.el (grep-history, grep-find-history):
12560 * textmodes/flyspell.el:
12561 * vc/pcvs-defs.el (cvs-global-menu):
12562 * vc/vc-bzr.el (vc-bzr-admin-checkout-format-file):
12563 * vc/vc-mtn.el (vc-mtn-admin-dir, vc-mtn-admin-format):
12564 * vc/vc-cvs.el (vc-cvs-registered): Give them basic doc-strings.
12565
12566 * net/tls.el: Fix case of "GnuTLS".
12567
12568 * paths.el (rmail-file-name): Format doc-string for make-docfile.
12569
12570 * version.el (emacs-build-system): Give it a doc-string.
12571
12572 2011-11-24 Juri Linkov <juri@jurta.org>
12573
12574 * view.el (view-buffer): Revert 2011-07-19T15:01:49Z!larsi@gnus.org from 2011-07-19 (bug#8615).
12575
12576 2011-11-24 Glenn Morris <rgm@gnu.org>
12577
12578 * mail/rmailmm.el (rmail-mime): When rmail-enable-mime is non-nil,
12579 if called on a non-mime message just toggle the headers. (Bug#8006)
12580
12581 2011-11-24 Juanma Barranquero <lekktu@gmail.com>
12582
12583 * allout.el (allout-setup, allout-auto-save-temporarily-disabled)
12584 (allout-lead-with-comment-string, allout-structure-deleted-hook)
12585 (allout-mode, allout-chart-subtree, allout-hotspot-key-handler)
12586 (allout-rebullet-heading, allout-open-sibtopic)
12587 (allout-toggle-current-subtree-encryption)
12588 (allout-toggle-subtree-encryption, allout-encrypt-string)
12589 (allout-next-topic-pending-encryption, allout-adjust-file-variable)
12590 (allout-distinctive-bullets-string, allout-auto-activation):
12591 * window.el (window-normalize-buffer-to-display):
12592 * progmodes/verilog-mode.el (verilog-batch-indent):
12593 * textmodes/bibtex.el (bibtex-field-braces-opt)
12594 (bibtex-field-strings-opt):
12595 * vc/cvs-status.el (cvs-tree-merge):
12596 Fix typos.
12597
12598 2011-11-23 Michael Albinus <michael.albinus@gmx.de>
12599
12600 * rfn-eshadow.el (rfn-eshadow-update-overlay): Let-bind
12601 `non-essential' to t, in order to avoid remote connections.
12602
12603 2011-11-23 Eli Zaretskii <eliz@gnu.org>
12604
12605 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
12606 On MS-DOS and MS-Windows, compare with loaddefs.el
12607 case-insensitively.
12608
12609 2011-11-23 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
12610
12611 * mail/unrmail.el (unrmail): Always add blank line. (Bug#7743)
12612
12613 2011-11-23 Glenn Morris <rgm@gnu.org>
12614
12615 * paths.el (rmail-file-name): Reformat the doc-string so that it
12616 is picked up.
12617
12618 * mail/rmail.el (rmail-message-filter, rmail-auto-file): Doc fixes.
12619 (rmail-auto-file): Ignore case in the "special" field names,
12620 as mail-fetch-field does for all others.
12621
12622 * mail/rmail.el (rmail-forward):
12623 * mail/rmailkwd.el (rmail-set-label):
12624 * mail/rmailout.el (rmail-output, rmail-output-as-seen)
12625 (rmail-output-body-to-file): Give error if no message. (Bug#10082)
12626
12627 * mail/rmail.el (rmail-current-message): Doc fix.
12628
12629 * mail/rmail.el (rmail-message-filter): Mark as obsolete. (Bug#2624)
12630
12631 2011-11-22 Stefan Monnier <monnier@iro.umontreal.ca>
12632
12633 * server.el (server-eval-and-print): Allow C-g (bug#6585).
12634
12635 2011-11-22 Glenn Morris <rgm@gnu.org>
12636
12637 * mail/rmailmm.el (test-rmail-mime-handler)
12638 (test-rmail-mime-bulk-handler)
12639 (test-rmail-mime-multipart-handler): Move tests to test/ directory.
12640
12641 2011-11-21 Juri Linkov <juri@jurta.org>
12642
12643 * calc/calc.el (calc-read-key-sequence):
12644 Let-bind `input-method-function' to nil. (Bug#10018)
12645
12646 2011-11-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
12647
12648 * emacs-lisp/cl-indent.el (common-lisp-loop-part-indentation):
12649 Tell the caller that the next line needs recomputation, even
12650 though it doesn't start a sexp (bug#10094).
12651
12652 2011-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
12653
12654 * emacs-lisp/autoload.el (autoload-generate-file-autoloads): Simplify.
12655
12656 2011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
12657
12658 * vc/pcvs-util.el (cvs-pop-to-buffer-same-frame):
12659 Use force-same-window.
12660
12661 2011-11-20 Juanma Barranquero <lekktu@gmail.com>
12662
12663 * descr-text.el (describe-char-unicode-data):
12664 * json.el (json-string-escape):
12665 * mail/footnote.el (footnote-unicode-string, footnote-unicode-regexp)
12666 (Footnote-unicode, Footnote-style-p):
12667 * net/ntlm.el (ntlm-get-password-hashes): Fix typos.
12668
12669 2011-11-20 Chong Yidong <cyd@gnu.org>
12670
12671 * window.el (replace-buffer-in-windows): Restore interactive spec.
12672
12673 2011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
12674
12675 * electric.el (electric-indent-mode): Fix last change (too optimistic).
12676
12677 * emacs-lisp/bytecomp.el: Silence obsolete warnings more reliably.
12678 (byte-compile-global-not-obsolete-vars): New var.
12679 (byte-compile-check-variable, byte-compile-make-obsolete-variable):
12680 Use it.
12681 (byte-compile-warn-obsolete): Align text with the one in *Help*.
12682
12683 2011-11-20 Juanma Barranquero <lekktu@gmail.com>
12684
12685 * progmodes/cwarn.el (cwarn-is-enabled, cwarn-font-lock-keywords):
12686 * progmodes/pascal.el (electric-pascal-equal):
12687 * textmodes/reftex-dcr.el (reftex-view-crossref-from-bibtex):
12688 * xml.el (xml-substitute-special): Fix typos.
12689
12690 2011-11-20 Glenn Morris <rgm@gnu.org>
12691
12692 * mail/rmail.el (rmail-enable-mime-composing): Make it a defcustom.
12693 (rmail-insert-mime-forwarded-message-function, rmail-mime-feature):
12694 Doc fixes.
12695 (rmail-decode-mime-charset): Mark as obsolete.
12696
12697 * mail/rmailsum.el (rmail-message-regexp-p-1):
12698 * mail/rmail.el (rmail-search-message, rmail-forward, rmail-resend):
12699 Before using mime functions, check they are set. (Bug#10077)
12700
12701 2011-11-19 Juri Linkov <juri@jurta.org>
12702
12703 * info.el (Info-finder-find-node): Use `package--builtins' instead
12704 of `package-alist'. Use node names formed by the pattern "Keyword "
12705 and the keyword name.
12706
12707 2011-11-19 Andreas Schwab <schwab@linux-m68k.org>
12708
12709 * progmodes/sh-script.el (sh-assignment-regexp): Add entry for bash.
12710
12711 2011-11-19 Juri Linkov <juri@jurta.org>
12712
12713 * info.el (Info-hide-note-references): Add `:set' tag to `defcustom'
12714 that calls `revert-buffer' on all Info buffers. (Bug#9915)
12715 (Info-revert-find-node): Remove let-bindings `old-buffer-name',
12716 `old-history', `old-history-forward'. Add let-binding
12717 `window-selected'. Remove calls to `kill-buffer',
12718 `switch-to-buffer' and `Info-mode'. Set `Info-current-file' to nil
12719 before calling `Info-find-node', so `Info-find-node-2' will reread
12720 the Info file. Restore window positions only when `window-selected'
12721 is non-nil.
12722
12723 2011-11-19 Juri Linkov <juri@jurta.org>
12724
12725 * isearch.el (isearch-lazy-highlight-new-loop):
12726 Remove condition `(not isearch-error)'. (Bug#9918)
12727
12728 * misearch.el (multi-isearch-search-fun): Add condition
12729 `(not bound)' to ignore lazy-highlighting search.
12730 Add the search-failed message "end of multi" when the end of
12731 multi-sequence is reached. Uncapitalize the search-failed
12732 message "Repeat for next buffer".
12733
12734 * info.el (Info-search): Add the search-failed message
12735 "end of the manual" when the end of the manual is reached
12736 in Isearch mode.
12737
12738 2011-11-19 Juri Linkov <juri@jurta.org>
12739
12740 * info.el (Info-find-node-2, Info-select-node, Info-history-find-node):
12741 Use non-destructive `remove' instead of `delete' because
12742 `Info-history-list' stored to `Info-isearch-initial-history-list' in
12743 `Info-isearch-start' might need to be restored in `Info-isearch-end'.
12744
12745 2011-11-19 Juri Linkov <juri@jurta.org>
12746
12747 * isearch.el (isearch-edit-string): Let-bind `history-add-new-input'
12748 to nil instead of binding `search-ring' and `regexp-search-ring'.
12749 (Bug#9185)
12750
12751 2011-11-19 Eli Zaretskii <eliz@gnu.org>
12752
12753 * simple.el (line-move): Force movement by logical lines for any
12754 hscrolled window, not only when auto-hscroll-mode is on.
12755 (line-move-visual): Update doc string to that effect. (Bug#10076)
12756
12757 2011-11-19 Andreas Schwab <schwab@linux-m68k.org>
12758
12759 * language/european.el (macintosh): Define as alias for mac-roman.
12760
12761 2011-11-19 Eli Zaretskii <eliz@gnu.org>
12762
12763 * mail/rmailmm.el (rmail-mime-display-header)
12764 (rmail-mime-display-tagline, rmail-mime-display-body): New defsubsts.
12765 (rmail-mime-entity-segment, rmail-mime-toggle-raw)
12766 (rmail-mime-toggle-hidden, rmail-mime-insert-text)
12767 (rmail-mime-insert-bulk, rmail-mime-insert-multipart)
12768 (rmail-mime-insert, rmail-mime-insert-tagline): Use them instead
12769 of a raw aref.
12770 (rmail-mime-entity-segment): To get past the tagline, move forward
12771 2 more lines, to account for the 2 empty lines that precede and
12772 follow the line with the buttons.
12773 (rmail-mime-update-tagline): Move one more line, to get past the
12774 empty line that follows the buttons in the tagline. (Bug#9520)
12775
12776 2011-11-19 Martin Rudalics <rudalics@gmx.at>
12777
12778 * window.el (window-max-delta-1, window-min-delta-1)
12779 (window-min-size-1, window-state-get-1, window-state-put-1)
12780 (window-state-put-2): Use "window--" prefix.
12781
12782 2011-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
12783
12784 * emacs-lisp/smie.el: Improve warnings and conflict detection.
12785 (smie-warning-count): New var.
12786 (smie-set-prec2tab): Use it.
12787 (smie-bnf->prec2): Improve warnings. Add docstring.
12788 (smie-bnf--closer-alist): Rename from smie-bnf-closer-alist.
12789 (smie-bnf--set-class): New function.
12790 (smie-bnf--classify): Rename from smie-bnf-classify. Rewrite to fix
12791 corner case.
12792
12793 * progmodes/compile.el: Obey compilation-first-column in dest buffer.
12794 (compilation-error-properties, compilation-move-to-column):
12795 Handle compilation-first-column while in the target buffer.
12796
12797 * progmodes/cc-engine.el (c-remove-stale-state-cache-backwards):
12798 Don't hardcode point-min==1.
12799
12800 * eshell/esh-cmd.el (eshell-do-eval): Handle `setq' (bug#9907).
12801 (eshell-rewrite-for-command): Remove workaround.
12802 (eshell-do-pipelines, eshell-do-pipelines-synchronously)
12803 (eshell-do-eval, eshell-exec-lisp): Avoid gratuitous setq.
12804 * eshell/esh-util.el (eshell-condition-case, eshell-for): Use declare.
12805
12806 * files-x.el (modify-file-local-variable): Obey commenting conventions.
12807
12808 2011-11-17 Glenn Morris <rgm@gnu.org>
12809
12810 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
12811 Ignore buffer-local generated-autoload-file if it is the same
12812 as the global value. (Bug#10049)
12813
12814 2011-11-17 Juanma Barranquero <lekktu@gmail.com>
12815
12816 * textmodes/reftex-toc.el (reftex-toc-return-marker, reftex-toc-help)
12817 (reftex-toc, reftex-toc, reftex-toc-dframe-p, reftex-toc-next-heading)
12818 (reftex-toc-previous-heading, reftex-toc-max-level)
12819 (reftex-toc-goto-line-and-hide, reftex-toc-show-calling-point)
12820 (reftex-toc-quit, reftex-toc-revert, reftex-toc-jump)
12821 (reftex-toc-do-promote, reftex-toc-promote-prepare)
12822 (reftex-toc-promote-action, reftex-toc-extract-section-number)
12823 (reftex-toc-load-all-files-for-promotion, reftex-toc-rename-label)
12824 (reftex-toc-rename-label, reftex-toc-visit-location)
12825 (reftex-toc-visit-location, reftex-toggle-auto-toc-recenter)
12826 (reftex-toggle-auto-toc-recenter, reftex-toggle-auto-toc-recenter)
12827 (reftex-make-separate-toc-frame): Fix typos, and use TOC consistently,
12828 leaving "*toc*" only for references to the buffer.
12829
12830 2011-11-17 Martin Rudalics <rudalics@gmx.at>
12831
12832 * window.el (window-resize, delete-window, split-window):
12833 Replace window-splits by window-combination-resize.
12834 * cus-start.el (window-splits): Replace by window-combination-resize.
12835
12836 2011-11-17 Glenn Morris <rgm@gnu.org>
12837
12838 * progmodes/sh-script.el (sh-font-lock-keywords-var):
12839 Make bash entry derive from sh entry, not shell entry.
12840
12841 2011-11-16 Michael Albinus <michael.albinus@gmx.de>
12842
12843 * net/tramp-sh.el (tramp-sh-handle-file-truename): Cache only the
12844 local file name.
12845
12846 2011-11-16 Juanma Barranquero <lekktu@gmail.com>
12847
12848 * menu-bar.el (menu-bar-file-menu):
12849 * printing.el (pr-ps-utility):
12850 * calendar/icalendar.el (icalendar, icalendar--convert-tz-offset)
12851 (icalendar--convert-to-ical, icalendar--convert-ordinary-to-ical)
12852 (icalendar--convert-weekly-to-ical, icalendar--convert-yearly-to-ical)
12853 (icalendar--convert-sexp-to-ical, icalendar--convert-block-to-ical)
12854 (icalendar--convert-float-to-ical, icalendar--convert-date-to-ical)
12855 (icalendar--convert-cyclic-to-ical)
12856 (icalendar--convert-anniversary-to-ical, icalendar-import-buffer)
12857 (icalendar--convert-ical-to-diary)
12858 (icalendar--convert-recurring-to-diary)
12859 (icalendar--convert-non-recurring-all-day-to-diary)
12860 (icalendar-import-format-sample):
12861 * progmodes/idlw-shell.el (idlwave-shell-mode):
12862 * progmodes/vhdl-mode.el (vhdl-mode, vhdl-print-two-column)
12863 (vhdl-print-customize-faces, vhdl-mode, vhdl-ps-print-settings)
12864 (vhdl-ps-print-init): Fix typos.
12865
12866 2011-11-16 Ken Manheimer <ken.manheimer@gmail.com>
12867
12868 * allout.el, allout-widgets.el (file metadata): Attribute copyright to
12869 FSF and collapse date sequence, obscure author/maintainer email address
12870 better, remove extra version line, track relocation of author's webpage.
12871
12872 * progmodes/python.el (python-pdbtrack-input-prompt)
12873 (python-pdbtrack-track-stack-file): Adjust to recognize ipdb as well as
12874 regular python pdb prompts. Adjustments shamelessly taken exactly as
12875 suggested in EmacsWiki page (tiny change):
12876 http://www.emacswiki.org/PythonProgrammingInEmacs#toc14
12877
12878 2011-11-16 Juanma Barranquero <lekktu@gmail.com>
12879
12880 * expand.el (expand-pos, expand-index, expand-point):
12881 Remove redundant info from docstring.
12882 (expand-add-abbrevs): Doc fix.
12883 (expand-c-sample-expand-list, expand-sample-lisp-mode-expand-list)
12884 (expand-sample-perl-mode-expand-list): Fix typos.
12885
12886 * net/dbus.el (dbus-event-member-name):
12887 * play/5x5.el (5x5-solve-rotate-left, 5x5-solver-output):
12888 * term/pc-win.el (msdos-create-frame-with-faces):
12889 * textmodes/texinfmt.el (texinfo-format-image): Fix typos.
12890
12891 2011-11-16 Martin Rudalics <rudalics@gmx.at>
12892
12893 * window.el (split-window, window-state-get-1)
12894 (window-state-put-1, window-state-put-2): Rename occurrences of
12895 window-nest to window-combination-limit.
12896 * cus-start.el (window-nest): Rename to window-combination-limit.
12897
12898 2011-11-16 Chong Yidong <cyd@gnu.org>
12899
12900 * progmodes/autoconf.el (autoconf-mode): Fix comment-start-skip
12901 regexp (Bug#10033).
12902
12903 2011-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
12904
12905 * tmm.el (tmm-prompt): Use minibuffer-with-setup-hook (bug#10053).
12906 `completing-read' will remove *Completions* and will preserve
12907 current-buffer for us.
12908 (tmm-add-prompt): Users of *Completions* will always (re)set its
12909 major mode.
12910 (tmm-old-comp-map): Remove.
12911
12912 2011-11-16 Glenn Morris <rgm@gnu.org>
12913
12914 * mail/rmailedit.el: Require rmailmm when compiling.
12915 (rmail-old-mime-state): New declaration.
12916 (rmail-edit-current-message): If editing a mime message,
12917 edit the "raw" message from the mbox buffer.
12918 (rmail-cease-edit): Handle mime messages. (Bug#9840)
12919
12920 2011-11-15 Glenn Morris <rgm@gnu.org>
12921
12922 * mail/rmailmm.el (rmail-mime-toggle-raw): Remove entity arg,
12923 which wasn't being used. Add optional arg to force given state.
12924 (rmail-mime): Add optional arg to force given state.
12925
12926 2011-11-15 Juanma Barranquero <lekktu@gmail.com>
12927
12928 * allout.el (allout-encryption-plaintext-sanitization-regexps):
12929 * frame.el (display-mm-dimensions-alist):
12930 * outline.el (outline-mode-menu-bar-map, outline-move-subtree-up)
12931 (outline-move-subtree-down):
12932 * net/newst-treeview.el (newsticker--treeview-do-get-node-of-feed)
12933 (newsticker--treeview-do-get-node):
12934 * net/quickurl.el (quickurl-list-buffer-name):
12935 * progmodes/dcl-mode.el (dcl-mode):
12936 * progmodes/gdb-mi.el (gdb-mapcar*):
12937 * progmodes/sql.el (sql-mode-oracle-font-lock-keywords): Fix typos.
12938
12939 2011-11-15 Glenn Morris <rgm@gnu.org>
12940
12941 * mail/rmail.el (rmail-file-coding-system): It's only ever used
12942 in a boolean sense, so just make it a boolean, and fix the doc.
12943 (rmail-show-mime-function, rmail-mime-feature)
12944 (rmail-require-mime-maybe): Doc fixes.
12945 (rmail-show-message-1): Check rmail-show-mime-function is non-nil.
12946
12947 * mail/rmailmm.el (rmail-show-mime): Doc fix.
12948
12949 2011-11-15 Juanma Barranquero <lekktu@gmail.com>
12950
12951 * epg.el (epg-start-decrypt, epg-start-verify, epg-start-sign)
12952 (epg-start-encrypt, epg-start-export-keys, epg-start-import-keys)
12953 (epg-start-receive-keys, epg-start-delete-keys, epg-start-sign-keys)
12954 (epg-start-generate-key, epg-context-set-progress-callback): Fix typos.
12955
12956 2011-11-15 Glenn Morris <rgm@gnu.org>
12957
12958 * mail/rmailmm.el (rmail-mime-entity, rmail-mime-entity-segment)
12959 (rmail-mime-shown-mode, rmail-mime-hidden-mode, rmail-mime-raw-mode)
12960 (rmail-mime-toggle-hidden, rmail-mime-insert-tagline)
12961 (rmail-mime-insert-header, rmail-mime-handle, rmail-mime-parse)
12962 (rmail-mime, rmail-show-mime): Doc fixes.
12963
12964 * term/ns-win.el (mode-line-frame-identification):
12965 Leave it alone. (Bug#10051)
12966
12967 * simple.el (mark-whole-buffer): Doc fix. (Bug#10023)
12968
12969 * mail/rmailout.el (rmail-output-to-rmail-buffer):
12970 Handle empty buffers. (Bug#9978)
12971
12972 2011-11-14 Juanma Barranquero <lekktu@gmail.com>
12973
12974 * international/mule.el (define-charset):
12975 * mail/rmailmm.el (rmail-mime-find-header-encoding):
12976 * progmodes/prolog.el (prolog-mode-hook, prolog-inferior-mode-hook):
12977 * progmodes/verilog-mode.el (verilog-backward-token):
12978 * textmodes/ispell.el (lookup-words):
12979 * textmodes/sgml-mode.el (sgml-guess-indent): Fix typos.
12980
12981 2011-11-14 Glenn Morris <rgm@gnu.org>
12982
12983 * progmodes/executable.el
12984 (executable-make-buffer-file-executable-if-script-p):
12985 Handle file-modes returning nil.
12986
12987 * mail/rmailsum.el (rmail-summary): Remove movement to beginning of
12988 message - not necessary, and causes problems. (Bug#9831)
12989
12990 * mail/rmailsum.el (rmail-new-summary): Preserve message number.
12991
12992 * mail/rmail.el (rmail-no-mail-p): Remove mode-line N/M indicator.
12993
12994 * mail/rmailsum.el (rmail-summary, rmail-new-summary)
12995 (rmail-new-summary-1): Allow empty summaries. (Bug#9964)
12996 (rmail-new-summary): Remember that rmail-summary-buffer is buffer-local.
12997
12998 2011-11-12 Martin Rudalics <rudalics@gmx.at>
12999
13000 * window.el (window-resize, delete-window): Use window-splits
13001 variable instead of function.
13002 (window-state-get-1, window-state-put-2, window-state-put):
13003 Don't deal with windows' splits status.
13004
13005 2011-11-12 Glenn Morris <rgm@gnu.org>
13006
13007 * apropos.el (apropos-do-all, apropos-library, apropos-value)
13008 (apropos-documentation): Doc fixes.
13009
13010 2011-11-11 Juanma Barranquero <lekktu@gmail.com>
13011
13012 * progmodes/idlw-shell.el (idlwave-shell-make-new-bp-overlay):
13013 * textmodes/sgml-mode.el (html-tag-help): Fix typos.
13014
13015 2011-11-11 Stefan Monnier <monnier@iro.umontreal.ca>
13016
13017 * electric.el (electric-indent-post-self-insert-function): Make it
13018 possible for a char to only indent in some circumstances.
13019 (electric-indent-mode): Simplify.
13020
13021 2011-11-11 Martin Rudalics <rudalics@gmx.at>
13022
13023 * window.el (windows-with-parameter): Remove unused function.
13024 (windows-at-side): Rename to window-at-side-list.
13025 (window-check, window-atom-check, window-atom-check-1)
13026 (window-side-check, window-size-ignore, window-size-fixed-1)
13027 (window-in-direction-2): Prefix with "window--".
13028 (window-tree-1): Rename to window--subtree, fix doc-string.
13029
13030 2011-11-11 Glenn Morris <rgm@gnu.org>
13031
13032 * subr.el (eval-after-load): If FILE is already loaded,
13033 evaluate FORM before it gets wrapped in more stuff. (Bug#10009)
13034
13035 2011-11-10 Glenn Morris <rgm@gnu.org>
13036
13037 * vc/vc-svn.el (vc-svn-create-repo, vc-svn-modify-change-comment):
13038 Call svn via vc-svn-command rather than vc-do-command.
13039 (vc-svn-command): Add --non-interactive. (Bug#9993)
13040 (vc-svn-update, vc-svn-merge-news): No need for --non-interactive.
13041
13042 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
13043 Add toggle-read-only. (Bug#7292)
13044 * files.el (toggle-read-only): Mention that it should only
13045 be used interactively. (Bug#10006)
13046
13047 2011-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
13048
13049 * progmodes/compile.el (compilation-error-regexp-alist-alist):
13050 Adjust regexp for OCaml warnings.
13051
13052 * electric.el (electric-pair-post-self-insert-function): Let user
13053 turn it off buffer-locally (bug#9932).
13054
13055 * progmodes/python.el (python-beginning-of-statement):
13056 Rewrite (bug#2703).
13057
13058 * progmodes/compile.el: Better handle TABs (bug#9749).
13059 (compilation-internal-error-properties)
13060 (compilation-next-error-function): Obey the target buffer's
13061 compilation-error-screen-columns.
13062
13063 2011-11-09 Juanma Barranquero <lekktu@gmail.com>
13064
13065 * progmodes/meta-mode.el: Remove obsolete comments.
13066 (meta-right-comment-regexp, meta-ignore-comment-regexp):
13067 Fix typos in docstrings.
13068
13069 2011-11-09 Martin Rudalics <rudalics@gmx.at>
13070
13071 * window.el (window-size-fixed-p): Rewrite doc-string.
13072 (window-resizable-p): Rename to window--resizable-p. Update callers.
13073 (window--resizable): New function. Make all callers of
13074 window-resizable call window--resizable instead.
13075 (window-resizable): Rewrite in terms of window--resizable.
13076
13077 2011-11-08 Glenn Morris <rgm@gnu.org>
13078
13079 * progmodes/delphi.el (delphi-mode-syntax-table):
13080 Let define-derived-mode define a proper syntax table. (Bug#9994)
13081
13082 2011-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
13083
13084 * window.el: Stay away from defsubst.
13085 (window-list-no-nils): Remove.
13086 (window-state-get-1, window-state-get): Use backquote instead.
13087
13088 2011-11-08 Thierry Volpiatto <thierry.volpiatto@gmail.com>
13089
13090 * emacs-lisp/find-func.el (find-function-read):
13091 Fix incorrect use of default argument in `completing-read'.
13092
13093 2011-11-08 Martin Rudalics <rudalics@gmx.at>
13094
13095 * window.el (display-buffer-function, special-display-function):
13096 Mention display-buffer-record-window but do not mention
13097 help-setup parameter in doc-strings.
13098 (window-min-delta): Fix doc-string typo.
13099
13100 2011-11-08 Chong Yidong <cyd@gnu.org>
13101
13102 * window.el (window-total-height, window-total-width): Doc fix.
13103 (window-body-size): Move from C.
13104 (window-body-height, window-body-width): Move to C.
13105
13106 2011-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
13107
13108 * window.el: Make special-display like display-buffer-alist (bug#9532).
13109 (display-buffer--special-action): New function, morphed
13110 from display-buffer--special.
13111 (display-buffer): Use it to handle special-display-buffers at higher
13112 priority (just after display-buffer-alist).
13113 (display-buffer-fallback-action, display-buffer--other-frame-action)
13114 (pop-to-buffer-same-window): Remove display-buffer--special.
13115
13116 2011-11-07 Glenn Morris <rgm@gnu.org>
13117
13118 * calendar/cal-menu.el (cal-menu-set-date-title):
13119 Do nothing if not in a calendar. (Bug#9976)
13120
13121 2011-11-07 Stefan Monnier <monnier@iro.umontreal.ca>
13122
13123 * files.el (find-file): Always use selected-window.
13124
13125 2011-11-07 Martin Rudalics <rudalics@gmx.at>
13126
13127 * window.el (window-combinations): Make WINDOW argument
13128 mandatory. Rewrite doc-string.
13129 (walk-window-subtree, window-atom-check, window-min-delta)
13130 (window-max-delta, window--resize-this-window)
13131 (window--resize-root-window-vertically, window-tree)
13132 (balance-windows, window-state-put): Rewrite doc-strings as to
13133 not mention the term "subwindow".
13134 (window--resize-subwindows-skip-p): Rename to
13135 window--resize-child-windows-skip-p.
13136 (window--resize-subwindows-normal): Rename to
13137 window--resize-child-windows-normal.
13138 (window--resize-subwindows): Rename to
13139 window--resize-child-windows.
13140 (window-or-subwindow-p): Rename to window--in-subtree-p.
13141
13142 2011-11-07 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
13143
13144 * mail/rmail.el (rmail-get-new-mail, rmail-insert-inbox-text):
13145 Ensure that mbox format messages end in two newlines (Bug#9974).
13146
13147 2011-11-06 Chong Yidong <cyd@gnu.org>
13148
13149 * window.el (window-combination-p): Function deleted; its
13150 side-effect is not used in any existing code.
13151 (window-combinations, window-combined-p): Call window-*-child
13152 directly.
13153
13154 2011-11-05 Chong Yidong <cyd@gnu.org>
13155
13156 * window.el (window-valid-p): Rename from window-any-p.
13157 (window-size-ignore, window-state-get): Callers changed.
13158 (window-normalize-window): Rename from window-normalize-any-window.
13159 New arg LIVE-ONLY, replacing window-normalize-live-window.
13160 (window-normalize-live-window): Delete.
13161 (window-combination-p, window-combined-p, window-combinations)
13162 (walk-window-subtree, window-atom-root, window-min-size)
13163 (window-sizable, window-sizable-p, window-size-fixed-p)
13164 (window-min-delta, window-max-delta, window-resizable)
13165 (window-resizable-p, window-full-height-p, window-full-width-p)
13166 (window-current-scroll-bars, window-point-1, set-window-point-1)
13167 (window-at-side-p, window-in-direction, window-resize)
13168 (adjust-window-trailing-edge, maximize-window, minimize-window)
13169 (window-deletable-p, delete-window, delete-other-windows)
13170 (record-window-buffer, unrecord-window-buffer)
13171 (switch-to-prev-buffer, switch-to-next-buffer, window--delete)
13172 (quit-window, split-window, window-state-put)
13173 (set-window-text-height, fit-window-to-buffer)
13174 (shrink-window-if-larger-than-buffer): Callers changed.
13175
13176 2011-11-04 Eli Zaretskii <eliz@gnu.org>
13177
13178 * mail/rmail.el (rmail-simplified-subject): Decode subject with
13179 rfc2047-decode-string.
13180 (rmail-mime-toggle-hidden): Declare to avoid byte-compilation
13181 warnings.
13182
13183 * window.el (window-body-height, window-body-width): Mention in
13184 the doc string that the return values are in frame's canonical
13185 units. (Bug#9949)
13186
13187 2011-11-03 Alan Mackenzie <acm@muc.de>
13188
13189 * progmodes/cc-langs.el (c-nonlabel-token-2-key): New variable for
13190 change in cc-engine.el.
13191
13192 2011-11-02 Stefan Monnier <monnier@iro.umontreal.ca>
13193
13194 * window.el (switch-to-buffer): Use `force-same-window' interactively.
13195
13196 2011-11-02 Martin Rudalics <rudalics@gmx.at>
13197
13198 * window.el (quit-window): Call unrecord-window-buffer after
13199 showing another buffer in the window. (Bug#9937)
13200 (bury-buffer): Call switch-to-prev-buffer with second argument `bury'.
13201
13202 2011-11-02 Juanma Barranquero <lekktu@gmail.com>
13203
13204 * vc/vc-bzr.el (vc-bzr-state, vc-bzr-after-dir-status):
13205 Accept status with more than 9 shelves. (Bug#9935)
13206 Reported by Colin D Bennett <colin@gibibit.com>.
13207
13208 2011-11-01 Martin Rudalics <rudalics@gmx.at>
13209
13210 * help.el (with-help-window): Don't reference
13211 temp-buffer-show-specifiers in doc-string.
13212
13213 2011-10-31 Andreas Schwab <schwab@linux-m68k.org>
13214
13215 * subr.el (keymap--menu-item-with-binding): Ignore item if not a
13216 menu-item.
13217
13218 2011-10-30 Vinicius Jose Latorre <viniciusjl@ig.com.br>
13219
13220 * whitespace.el: New version 13.2.2.
13221 (whitespace-newline-mode): Disable properly. Reported by Sarah
13222 <EmacsWiki>.
13223
13224 2011-10-30 Ulf Jasper <ulf.jasper@web.de>
13225
13226 * net/newst-treeview.el: Remove "Time-stamp".
13227 (newsticker--group-manage-orphan-feeds): Do not call
13228 newsticker--treeview-tree-update.
13229 (newsticker-treeview-update, newsticker-treeview):
13230 Call newsticker--treeview-tree-update if necessary.
13231
13232 2011-10-30 Martin Rudalics <rudalics@gmx.at>
13233
13234 * window.el (window-iso-combination-p, window-iso-combined-p)
13235 (window-iso-combinations): Remove "iso-" infix.
13236 Suggested by Chong Yidong.
13237 (window-min-size-1, window-size-fixed-1, window-min-delta-1)
13238 (window-max-delta-1, window-resize, window--resize-siblings)
13239 (window--resize-this-window, adjust-window-trailing-edge)
13240 (split-window, balance-windows-1)
13241 (shrink-window-if-larger-than-buffer):
13242 * calendar/calendar.el (calendar-generate-window):
13243 * help.el (resize-temp-buffer-window): Adjust callers accordingly.
13244
13245 2011-10-30 Stefan Monnier <monnier@iro.umontreal.ca>
13246
13247 * eshell/esh-cmd.el (eshell-rewrite-for-command): Don't modify the list
13248 in place (bug#9907).
13249 (eshell-subcommand-arg-values, eshell-rewrite-named-command)
13250 (eshell-rewrite-if-command, eshell-rewrite-for-command)
13251 (eshell-structure-basic-command, eshell-rewrite-while-command)
13252 (eshell-invokify-arg, eshell-parse-pipeline, eshell-parse-command)
13253 (eshell-parse-subcommand-argument, eshell-parse-lisp-argument)
13254 (eshell-trap-errors, eshell-do-pipelines, eshell-do-eval)
13255 (eshell-do-pipelines-synchronously, eshell-eval-command):
13256 Use backquotes and prefer setq to set.
13257 (eshell-lookup-function, function-p-func, eshell-functionp): Remove.
13258 (eshell-macrop): Use functionp.
13259 (eshell-do-eval): Handle multiple expressions in `while' body.
13260
13261 2011-10-30 Chong Yidong <cyd@gnu.org>
13262
13263 * emulation/viper-cmd.el (viper-exec-change): Use push-mark
13264 instead of set-mark (Bug#9810).
13265
13266 2011-10-30 Chong Yidong <cyd@gnu.org>
13267
13268 * window.el (split-window-below, split-window-right): Rename from
13269 split-window-above-each-other and split-window-side-by-side
13270 respectively. All callers changed.
13271 (split-window-sensibly, split-window-sensibly): Use them.
13272 (split-window-keep-point): Doc fix.
13273
13274 * isearch.el: Add isearch-scroll property to split-window-below
13275 and split-window-right.
13276
13277 * follow.el (follow-mode):
13278 * vc/pcvs-util.el (cvs-pop-to-buffer-same-frame):
13279 * progmodes/ada-xref.el (ada-gdb-application):
13280 * emulation/vip.el (vip-buffer-in-two-windows):
13281 * image-dired.el (image-dired-dired-with-window-configuration):
13282 * dired-x.el (dired-do-find-marked-files):
13283 * dired.el (dired-pop-to-buffer):
13284 * bs.el (bs--show-with-configuration):
13285 * vc/emerge.el (emerge-setup-windows):
13286 * textmodes/two-column.el (2C-two-columns):
13287 * textmodes/reftex-toc.el (reftex-toc):
13288 * progmodes/gdb-mi.el (gdb-setup-windows):
13289 * progmodes/fortran.el (fortran-window-create):
13290 * net/newst-treeview.el (newsticker--treeview-window-init):
13291 * emulation/ws-mode.el (wordstar-C-o-map, wordstar-mode):
13292 * emulation/tpu-edt.el (tpu-gold-map):
13293 * emulation/crisp.el (crisp-mode-map):
13294 * calendar/calendar.el (calendar-basic-setup): Callers changed.
13295
13296 2011-10-29 Chong Yidong <cyd@gnu.org>
13297
13298 * subr.el (y-or-n-p): Add code for batch mode (Bug#9818).
13299
13300 * mouse.el (mouse-yank-primary): Push the mark (Bug#9894).
13301
13302 * textmodes/flyspell.el (flyspell-word): Fix char offset for
13303 forged Ispell output (Bug#7904).
13304
13305 * emacs-lisp/package.el (package-refresh-contents): Add autoload.
13306
13307 2011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
13308
13309 * doc-view.el: Avoid ugly errors about not finding nil.
13310 (doc-view-ghostscript-program, doc-view-dvipdfm-program)
13311 (doc-view-dvipdf-program, doc-view-unoconv-program)
13312 (doc-view-ps2pdf-program, doc-view-pdftotext-program):
13313 Avoid nil or absolute file name as default value.
13314 (doc-view-pdf->txt, doc-view-ps->pdf): Use executable-find here.
13315
13316 2011-10-28 Alan Mackenzie <acm@muc.de>
13317
13318 * progmodes/cc-defs.el (c-version): -> 5.32.2.
13319
13320 2011-10-28 Alan Mackenzie <acm@muc.de>
13321
13322 Amend the handling of c-beginning/end-of-defun in nested declaration
13323 scopes.
13324
13325 * progmodes/cc-vars.el (c-defun-tactic): Move here from
13326 cc-langs.el. Change it to a defcustom.
13327
13328 * progmodes/cc-langs.el (c-defun-tactic): Move this variable to
13329 cc-vars.el.
13330
13331 * progmodes/cc-engine.el (c-beginning-of-statement-1):
13332 Prevent "class foo : bar" being spuriously recognized as a label.
13333
13334 * progmodes/cc-cmds.el (c-narrow-to-most-enclosing-decl-block):
13335 Add parameter `inclusive' (to include enclosing braces in the region).
13336 (c-widen-to-enclosing-decl-scope): New function.
13337 (c-while-widening-to-decl-block): New macro.
13338 (c-beginning-of-defun, c-end-of-defun): Change algorithm to keep going
13339 outward for defun boundaries, and correspondingly change symbol
13340 `respect-enclosure' to `go-outward'.
13341 (c-declaration-limits): Change algorithm to report only the "innermost"
13342 defun's boundaries.
13343
13344 2011-10-28 Deniz Dogan <deniz@dogan.se>
13345
13346 * net/rcirc.el (rcirc-mode): Use hard newlines.
13347
13348 2011-10-28 Alan Mackenzie <acm@muc.de>
13349
13350 Amend to indent and fontify macros "which include their own semicolon"
13351 correctly, using the "virtual semicolon" mechanism.
13352
13353 * progmodes/cc-defs.el: Update "virtual semicolon" comments.
13354
13355 * progmodes/cc-engine.el (c-crosses-statement-barrier-p):
13356 Recode to scan one line at a time rather than having \n and \r
13357 explicitly in c-stmt-delim-chars (for some modes, e.g. AWK).
13358 (c-forward-label): Amend for virtual semicolons.
13359 (c-at-macro-vsemi-p, c-macro-vsemi-status-unknown-p): New functions.
13360
13361 * progmodes/cc-fonts.el (c-font-lock-declarations): Take account
13362 of the new C macros.
13363
13364 * progmodes/cc-langs.el (c-at-vsemi-p-fn):
13365 (c-vsemi-status-unknown-p-fn): Move to earlier in the file.
13366 (c-opt-cpp-symbol, c-line-comment-start-regexp): New language vars.
13367 (c-opt-cpp-macro-define): Make into a full language variable.
13368 (c-stmt-delim-chars, c-stmt-delim-chars-with-comma): Special value for
13369 AWK Mode (including \n, \r) removed, no longer needed.
13370
13371 * progmodes/cc-mode.el (c-mode, c++-mode, objc-mode):
13372 Invoke c-make-macro-with-semi-re.
13373
13374 * progmodes/cc-vars.el (c-macro-with-semi-re):
13375 (c-macro-names-with-semicolon): New variables.
13376 (c-make-macro-with-semi-re): New function.
13377
13378 2011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
13379
13380 * vc/log-edit.el: Fill empty field rather than adding new one.
13381 (log-edit-add-field): New function.
13382 (log-edit-insert-changelog): Use it.
13383
13384 2011-10-28 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
13385
13386 * mail/rmail.el (rmail-mode-map): Add M-C-f as in rmailsum (bug#9802).
13387
13388 2011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
13389
13390 * progmodes/gdb-mi.el: Warn the user when -i=mi is missing.
13391 (gdb--check-interpreter): New function.
13392 (gdb): Use it.
13393
13394 2011-10-27 Glenn Morris <rgm@gnu.org>
13395
13396 * emacs-lisp/cl-extra.el (most-positive-float, most-negative-float)
13397 (least-positive-float, least-negative-float)
13398 (least-positive-normalized-float, least-negative-normalized-float)
13399 (float-epsilon, float-negative-epsilon):
13400 Remove unnecessary declarations.
13401
13402 * emacs-lisp/cl-extra.el (cl-float-limits): Add doc string.
13403 * emacs-lisp/cl.el (most-positive-float, most-negative-float)
13404 (least-positive-float, least-negative-float)
13405 (least-positive-normalized-float, least-negative-normalized-float)
13406 (float-epsilon, float-negative-epsilon): Add doc-strings,
13407 based on those in cl.texi.
13408
13409 * files.el (set-visited-file-name): If the major-mode changed,
13410 reload the local variables. (Bug#9796)
13411
13412 2011-10-27 Chong Yidong <cyd@gnu.org>
13413
13414 * subr.el (change-major-mode-after-body-hook): New hook.
13415 (run-mode-hooks): Run it.
13416
13417 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
13418 Use change-major-mode-before-body-hook.
13419
13420 * simple.el (fundamental-mode):
13421 * emacs-lisp/derived.el (define-derived-mode): Revert 2010-04-28
13422 change introducing fundamental-mode-hook.
13423
13424 2011-10-26 Juanma Barranquero <lekktu@gmail.com>
13425
13426 * term/w32-win.el (w32-default-color-map): Declare obsolete (Bug#9785).
13427
13428 2011-10-26 Michael Albinus <michael.albinus@gmx.de>
13429
13430 * ido.el (ido-file-name-all-completions-1): Do not require
13431 tramp.el explicitly. (Bug#7583)
13432
13433 2011-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
13434
13435 * progmodes/octave-mod.el:
13436 * progmodes/octave-inf.el: Update maintainer.
13437
13438 2011-10-26 Chong Yidong <cyd@gnu.org>
13439
13440 * subr.el (with-wrapper-hook): Rewrite doc.
13441
13442 2011-10-25 Michael Albinus <michael.albinus@gmx.de>
13443
13444 * net/tramp-sh.el (tramp-sh-handle-file-directory-p): Return t for
13445 filenames "/method:foo:". (Bug#9793)
13446
13447 2011-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
13448
13449 * comint.el (comint-get-old-input-default): Fix use-prompt-regexp case
13450 (bug#9865).
13451
13452 2011-10-24 Glenn Morris <rgm@gnu.org>
13453
13454 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix. (Bug#9819)
13455
13456 2011-10-24 Michael Albinus <michael.albinus@gmx.de>
13457
13458 * notifications.el: Add the requirement of a running D-Bus session
13459 bus to the Commentary.
13460
13461 2011-10-24 Juri Linkov <juri@jurta.org>
13462
13463 * isearch.el (isearch-occur): Let-bind `search-spaces-regexp' to
13464 `search-whitespace-regexp' only when `isearch-regexp' is non-nil.
13465 (Bug#9364)
13466
13467 2011-10-24 Juri Linkov <juri@jurta.org>
13468
13469 * info.el (Info-following-node-name-re): Add newline to the list
13470 of allowed characters for leading space. (Bug#9824)
13471
13472 2011-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
13473
13474 * progmodes/octave-inf.el (inferior-octave-mode-map):
13475 Fix C-c C-h binding.
13476 * progmodes/octave-mod.el (octave-help): Remove.
13477
13478 2011-10-23 Michael Albinus <michael.albinus@gmx.de>
13479
13480 Sync with Tramp 2.2.3.
13481
13482 * net/tramp-cache.el (top): Pacify byte-compiler using
13483 `init-file-user' and `site-run-file'.
13484
13485 * net/trampver.el: Update release number.
13486
13487 2011-10-23 Chong Yidong <cyd@gnu.org>
13488
13489 * files.el (toggle-read-only): Remove obsolete comment about
13490 version control.
13491
13492 * vc/vc-hooks.el (vc-toggle-read-only): Make it an obsolete alias
13493 for toggle-read-only. Note that this hasn't called vc-next-action
13494 since 2008-05-02, though it wasn't documented at the time.
13495
13496 * vc/ediff-init.el (ediff-toggle-read-only-function):
13497 Use toggle-read-only.
13498
13499 2011-10-22 Alan Mackenzie <bug-cc-mode@gnu.org>
13500
13501 Fix bug #9560, sporadic wrong indentation; improve instrumentation
13502 of c-parse-state.
13503
13504 * progmodes/cc-engine.el (c-append-lower-brace-pair-to-state-cache):
13505 correct faulty logical expression.
13506 (c-parse-state-state, c-record-parse-state-state):
13507 (c-replay-parse-state-state): New defvar/defuns.
13508 (c-debug-parse-state): Use new functions.
13509
13510 2011-10-22 Martin Rudalics <rudalics@gmx.at>
13511
13512 * mouse.el (mouse-drag-line): Fix minibuffer resizing broken by
13513 last fix. Use window-in-direction correctly.
13514
13515 2011-10-21 Chong Yidong <cyd@gnu.org>
13516
13517 * progmodes/idlwave.el (idlwave-mode):
13518 * progmodes/vera-mode.el (vera-mode): No need to set
13519 require-final-newline; that's done in prog-mode.
13520 Suggested by Stefan Monnier.
13521
13522 2011-10-21 Martin Rudalics <rudalics@gmx.at>
13523
13524 * mouse.el (mouse-drag-window-above)
13525 (mouse-drag-move-window-bottom, mouse-drag-move-window-top)
13526 (mouse-drag-mode-line-1, mouse-drag-header-line)
13527 (mouse-drag-vertical-line-rightward-window): Remove.
13528 (mouse-drag-line): New function.
13529 (mouse-drag-mode-line, mouse-drag-header-line)
13530 (mouse-drag-vertical-line): Call mouse-drag-line.
13531 * window.el (window-at-side-p, windows-at-side): New functions.
13532
13533 2011-10-21 Ulrich Mueller <ulm@gentoo.org>
13534
13535 * tar-mode.el (tar-grind-file-mode):
13536 Fix handling of setuid/setgid, handle sticky bit. (Bug#9817)
13537
13538 2011-10-21 Chong Yidong <cyd@gnu.org>
13539
13540 * progmodes/idlwave.el (idlwave-mode):
13541 * progmodes/vera-mode.el (vera-mode):
13542 Use mode-require-final-newline.
13543
13544 2011-10-20 Glenn Morris <rgm@gnu.org>
13545
13546 * vc/vc.el (vc-next-action): Handle removed directories. (Bug#9781)
13547
13548 2011-10-20 Christoph Scholtes <cschol2112@googlemail.com>
13549
13550 * emulation/cua-base.el (cua-set-mark): Fix case of string.
13551
13552 2011-10-20 Chong Yidong <cyd@gnu.org>
13553
13554 * emulation/cua-base.el (cua-mode):
13555 * mail/footnote.el (footnote-mode):
13556 * mail/mailabbrev.el (mail-abbrevs-mode):
13557 * net/xesam.el (xesam-minor-mode):
13558 * progmodes/bug-reference.el (bug-reference-mode):
13559 * progmodes/cap-words.el (capitalized-words-mode):
13560 * progmodes/compile.el (compilation-minor-mode)
13561 (compilation-shell-minor-mode):
13562 * progmodes/gud.el (gud-tooltip-mode):
13563 * progmodes/hideif.el (hide-ifdef-mode):
13564 * progmodes/idlw-shell.el (idlwave-shell-electric-debug-mode):
13565 * progmodes/subword.el (subword-mode):
13566 * progmodes/vhdl-mode.el (vhdl-electric-mode, vhdl-stutter-mode):
13567 * progmodes/which-func.el (which-function-mode):
13568 * term/tvi970.el (tvi970-set-keypad-mode):
13569 * term/vt100.el (vt100-wide-mode):
13570 * textmodes/flyspell.el (flyspell-mode):
13571 * textmodes/ispell.el (ispell-minor-mode):
13572 * textmodes/nroff-mode.el (nroff-electric-mode):
13573 * textmodes/paragraphs.el (use-hard-newlines):
13574 * textmodes/refill.el (refill-mode):
13575 * textmodes/reftex.el (reftex-mode):
13576 * textmodes/rst.el (rst-minor-mode):
13577 * textmodes/sgml-mode.el (html-autoview-mode)
13578 (sgml-electric-tag-pair-mode):
13579 * textmodes/tex-mode.el (latex-electric-env-pair-mode):
13580 * vc/diff-mode.el (diff-auto-refine-mode, diff-minor-mode):
13581 * emulation/crisp.el (crisp-mode):
13582 * emacs-lisp/eldoc.el (eldoc-mode):
13583 * emacs-lisp/checkdoc.el (checkdoc-minor-mode): Doc fixes for new
13584 minor mode behavior.
13585
13586 2011-10-19 Juri Linkov <juri@jurta.org>
13587
13588 * descr-text.el (describe-char): Add #x2010 and #x2011 to
13589 the list of hard-coded chars with escape-glyph face.
13590
13591 2011-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
13592
13593 * vc/log-edit.el (log-edit-empty-buffer-p): Ignore empty headers.
13594
13595 2011-10-19 Michael Albinus <michael.albinus@gmx.de>
13596
13597 * net/tramp.el (tramp-connectable-p): Make a stronger check on a
13598 running process.
13599
13600 2011-10-19 Glenn Morris <rgm@gnu.org>
13601
13602 * vc/vc-bzr.el (vc-bzr-after-dir-status):
13603 Ignore ignored files. (Bug#9726)
13604
13605 2011-10-19 Chong Yidong <cyd@gnu.org>
13606
13607 Doc fix for minor modes, stating that an omitted argument enables
13608 the mode unconditionally when called from Lisp.
13609
13610 * abbrev.el (abbrev-mode):
13611 * allout.el (allout-mode):
13612 * autoinsert.el (auto-insert-mode):
13613 * autoarg.el (autoarg-mode, autoarg-kp-mode):
13614 * autorevert.el (auto-revert-mode, auto-revert-tail-mode)
13615 (global-auto-revert-mode):
13616 * battery.el (display-battery-mode):
13617 * composite.el (global-auto-composition-mode)
13618 (auto-composition-mode):
13619 * delsel.el (delete-selection-mode):
13620 * desktop.el (desktop-save-mode):
13621 * dired-x.el (dired-omit-mode):
13622 * dirtrack.el (dirtrack-mode):
13623 * doc-view.el (doc-view-minor-mode):
13624 * double.el (double-mode):
13625 * electric.el (electric-indent-mode, electric-pair-mode):
13626 * emacs-lock.el (emacs-lock-mode):
13627 * epa-hook.el (auto-encryption-mode):
13628 * follow.el (follow-mode):
13629 * font-core.el (font-lock-mode):
13630 * frame.el (auto-raise-mode, auto-lower-mode, blink-cursor-mode):
13631 * help.el (temp-buffer-resize-mode):
13632 * hilit-chg.el (highlight-changes-mode)
13633 (highlight-changes-visible-mode):
13634 * hi-lock.el (hi-lock-mode):
13635 * hl-line.el (hl-line-mode, global-hl-line-mode):
13636 * icomplete.el (icomplete-mode):
13637 * ido.el (ido-everywhere):
13638 * image-file.el (auto-image-file-mode):
13639 * image-mode.el (image-minor-mode):
13640 * iswitchb.el (iswitchb-mode):
13641 * jka-cmpr-hook.el (auto-compression-mode):
13642 * linum.el (linum-mode):
13643 * longlines.el (longlines-mode):
13644 * master.el (master-mode):
13645 * mb-depth.el (minibuffer-depth-indicate-mode):
13646 * menu-bar.el (menu-bar-mode):
13647 * minibuf-eldef.el (minibuffer-electric-default-mode):
13648 * mouse-sel.el (mouse-sel-mode):
13649 * msb.el (msb-mode):
13650 * mwheel.el (mouse-wheel-mode):
13651 * outline.el (outline-minor-mode):
13652 * paren.el (show-paren-mode):
13653 * recentf.el (recentf-mode):
13654 * reveal.el (reveal-mode, global-reveal-mode):
13655 * rfn-eshadow.el (file-name-shadow-mode):
13656 * ruler-mode.el (ruler-mode):
13657 * savehist.el (savehist-mode):
13658 * scroll-all.el (scroll-all-mode):
13659 * scroll-bar.el (scroll-bar-mode):
13660 * server.el (server-mode):
13661 * shell.el (shell-dirtrack-mode):
13662 * simple.el (auto-fill-mode, transient-mark-mode)
13663 (visual-line-mode, overwrite-mode, binary-overwrite-mode)
13664 (line-number-mode, column-number-mode, size-indication-mode)
13665 (auto-save-mode, normal-erase-is-backspace-mode, visible-mode):
13666 * strokes.el (strokes-mode):
13667 * time.el (display-time-mode):
13668 * t-mouse.el (gpm-mouse-mode):
13669 * tool-bar.el (tool-bar-mode):
13670 * tooltip.el (tooltip-mode):
13671 * type-break.el (type-break-mode-line-message-mode)
13672 (type-break-query-mode):
13673 * view.el (view-mode):
13674 * whitespace.el (whitespace-mode, whitespace-newline-mode)
13675 (global-whitespace-mode, global-whitespace-newline-mode):
13676 * xt-mouse.el (xterm-mouse-mode): Doc fix.
13677
13678 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
13679 Fix autogenerated docstring.
13680
13681 2011-10-19 Juri Linkov <juri@jurta.org>
13682
13683 * net/browse-url.el (browse-url-can-use-xdg-open): Support LXDE
13684 by checking environment variables "DESKTOP_SESSION" and
13685 "XDG_CURRENT_DESKTOP". (Bug#9779)
13686
13687 2011-10-19 Juri Linkov <juri@jurta.org>
13688
13689 * net/browse-url.el (browse-url-browser-function): Add "Chromium".
13690 (browse-url-chromium-program, browse-url-chromium-arguments):
13691 New defcustoms.
13692 (browse-url-default-browser): Check for `browse-url-chromium' and
13693 call `browse-url-chromium-program'.
13694 (browse-url-chromium): New command. (Bug#9779)
13695
13696 2011-10-18 Juanma Barranquero <lekktu@gmail.com>
13697
13698 * facemenu.el (list-colors-duplicates): On Windows, detect more
13699 duplicates by assuming that only colors matching "^System" are
13700 special "system colors". (Bug#9722)
13701
13702 2011-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
13703
13704 * vc/log-edit.el (log-edit): Add "Author:" header to encourage people
13705 to distinguish the author from the committer.
13706
13707 2011-10-18 Michael Albinus <michael.albinus@gmx.de>
13708
13709 * net/tramp.el (tramp-file-name-handler): Load Tramp packages silently.
13710
13711 2011-10-18 Jirka Kosek <jirka@kosek.cz> (tiny change)
13712
13713 * international/mule.el (sgml-html-meta-auto-coding-function):
13714 Add support for detecting encoding in HTML5 specified only as
13715 <meta charset="UTF-8">. Implementation just makes http-equiv and
13716 content-type parts from HTML4 encoding string optional. (Bug#9716)
13717
13718 2011-10-18 Glenn Morris <rgm@gnu.org>
13719
13720 * vc/vc.el (vc-initial-comment): Mark as obsolete. (Bug#9745)
13721
13722 2011-10-18 Chong Yidong <cyd@gnu.org>
13723
13724 * faces.el (cursor): Doc fix.
13725
13726 2011-10-17 Chong Yidong <cyd@gnu.org>
13727
13728 * font-lock.el (font-lock-maximum-size): Mark as obsolete.
13729
13730 2011-10-17 Ryan Barrett <emacs@ryanb.org> (tiny change)
13731
13732 * dirtrack.el (dirtrack): Support shell buffers with path
13733 prefixes, e.g. tramp-based remote shells. (Bug#9647)
13734
13735 2011-10-17 Teodor Zlatanov <tzz@lifelogs.com>
13736
13737 * json.el: Bump version to 1.3 and note change in History.
13738 (json-alist-p, json-plist-p): Rewrite to avoid recursion.
13739
13740 2011-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
13741
13742 * comint.el (comint-insert-input, comint-send-input)
13743 (comint-get-old-input-default, comint-backward-matching-input)
13744 (comint-next-prompt): Use nil instead of `input' for field property of
13745 past user input (bug#114).
13746
13747 * minibuffer.el (completion--replace): Inherit surrounding properties
13748 (bug#114).
13749 (minibuffer-complete-and-exit): Use it.
13750
13751 * comint.el (comint--table-subvert): Quote the all-completions output
13752 (bug#9160).
13753
13754 2011-10-17 Martin Rudalics <rudalics@gmx.at>
13755
13756 * ido.el (ido-default-buffer-method): Remove redundant :type entry.
13757
13758 * menu-bar.el (menu-bar-file-menu): Add entry for making new
13759 window on right of selected. (Bug#9350) Reword other window
13760 entries and separate them from frame entries.
13761
13762 2011-10-15 Glenn Morris <rgm@gnu.org>
13763
13764 * emacs-lisp/ert.el (ert--explain-equal-rec, ert-select-tests):
13765 Doc fixes.
13766
13767 2011-10-15 Chong Yidong <cyd@stupidchicken.com>
13768
13769 * net/network-stream.el (network-stream-open-starttls):
13770 Improve detection of failure due to lack of TLS support.
13771
13772 * mail/sendmail.el (sendmail-query-once): Tweak prompt message,
13773 putting the input text in front and in bold.
13774
13775 2011-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
13776
13777 * pcmpl-unix.el (pcomplete/ssh): SSH does allow ganging.
13778
13779 * mpc.el (mpc-songs-jump-to): Don't burp if the user clicks in an
13780 empty buffer.
13781
13782 * mouse.el (mouse-drag-mode-line-1): Modify the end-event we pushed on
13783 unread-command-events rather than pushing yet-another event.
13784
13785 2011-10-14 Eli Zaretskii <eliz@gnu.org>
13786
13787 * mail/sendmail.el (sendmail-query-once): Improve the wording of
13788 the explanation of the possible choices. Make the options passed
13789 to completing-read shorter.
13790
13791 2011-10-13 Agustín Martín Domingo <agustin.martin@hispalinux.es>
13792
13793 * textmodes/flyspell.el (flyspell-large-region): Make sure
13794 extended character mode is used if defined (Bug#1339).
13795
13796 2011-10-13 Eli Zaretskii <eliz@gnu.org>
13797
13798 * simple.el (what-cursor-position): Fix the display of the
13799 character info for LRE, LRO, RLE, and RLO characters by appending
13800 an invisible PDF.
13801
13802 2011-10-13 Stefan Monnier <monnier@iro.umontreal.ca>
13803
13804 * emacs-lisp/timer.el (with-timeout): Make sure we cancel the timer
13805 even in case of error; add debug spec; simplify data flow.
13806 (with-timeout-handler): Remove.
13807
13808 2011-10-12 Michael Albinus <michael.albinus@gmx.de>
13809
13810 Fix Bug#6019, Bug#9315.
13811
13812 * files.el (set-auto-mode): Call `file-name-sans-versions' for the
13813 complete `buffer-file-name', the local file name part could look
13814 remotely (for example on VMS).
13815
13816 * net/ange-ftp.el (ange-ftp-run-real-handler): Make it an alias of
13817 `tramp-run-real-handler'.
13818 (ange-ftp-fix-name-for-vms): Handle the case, where `name' is
13819 already quoted by '"'.
13820
13821 * net/tramp.el (tramp-rfn-eshadow-update-overlay): Ignore errors.
13822 Let `file-name-handler-alist' be nil, the local file name part
13823 could look remotely (for example on VMS).
13824
13825 2011-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
13826
13827 * textmodes/flyspell.el (flyspell-word): Move with-local-quit
13828 from here...
13829 (flyspell-post-command-hook): ...to here.
13830
13831 2011-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
13832
13833 * mail/sendmail.el (send-mail-function): Don't use sendmail-query-once
13834 if not needed.
13835 (sendmail-query-once): Remove OS dependencies. Make it a 3-way choice
13836 using completion. Protect against "slow" callers.
13837 Remove the "message hack".
13838
13839 2011-10-11 Juri Linkov <juri@jurta.org>
13840
13841 * isearch.el (isearch-lazy-highlight-word): New variable.
13842 (isearch-lazy-highlight-new-loop, isearch-lazy-highlight-search):
13843 Use it. (Bug#9727)
13844
13845 2011-10-11 Glenn Morris <rgm@gnu.org>
13846
13847 * progmodes/f90.el (f90-next-statement): Ignore preprocessor lines,
13848 like f90-previous-statement does.
13849
13850 2011-10-11 Thierry Volpiatto <thierry.volpiatto@gmail.com>
13851
13852 * eshell/eshell.el (eshell-command): History should be saved
13853 only in interactive use, to avoid error.
13854
13855 2011-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
13856
13857 * minibuffer.el (completion-file-name-table): Fix last change,
13858 i.e. ignore normal errors but not the other ones.
13859
13860 2011-10-10 Martin Rudalics <rudalics@gmx.at>
13861
13862 * window.el (special-display-buffer-names)
13863 (special-display-regexps): Remove some remnants of earlier
13864 changes from doc-strings.
13865 (quit-windows-on): New function.
13866
13867 * vc/vc.el (vc-revert, vc-rollback):
13868 * vc/vc-dispatcher.el (vc-finish-logentry): Call quit-windows-on
13869 instead of deleting windows. (Bug#4557) (Bug#5310) (Bug#5556)
13870 (Bug#6183) (Bug#7074) (Bug#7447)
13871
13872 2011-10-09 Martin Rudalics <rudalics@gmx.at>
13873
13874 * window.el (frame-auto-hide-function): Add version tag.
13875 (Bug#9699)
13876
13877 2011-10-09 Michael Albinus <michael.albinus@gmx.de>
13878
13879 * net/tramp.el (tramp-file-name-handler): Add 'debug to the error
13880 condition.
13881
13882 2011-10-09 Leo Liu <sdl.web@gmail.com>
13883
13884 * mail/smtpmail.el (smtpmail-send-data): Add a missing space.
13885 (Bug#9701)
13886
13887 2011-10-08 Glenn Morris <rgm@gnu.org>
13888
13889 * progmodes/f90.el (f90-calculate-indent): Give preprocessor lines
13890 before the first code statement zero indent. (Bug#9690)
13891
13892 2011-10-08 Chong Yidong <cyd@stupidchicken.com>
13893
13894 * simple.el (count-words-region): Always count in the region.
13895 Report the number of lines and characters too.
13896 (count-words): New command, which counts in the buffer if the
13897 region is inactive, as count-words-region used to.
13898 (count-words--message): New function. Handle plurals.
13899 (count-lines-region): Make it an alias for count-words-region.
13900
13901 * bindings.el (esc-map): Replace count-lines-region with
13902 count-words-region.
13903
13904 2011-10-08 Martin Rudalics <rudalics@gmx.at>
13905
13906 * window.el (window--delete): Delete dedicated frame
13907 unconditionally when argument KILL is non-nil. (Bug#9699)
13908 (switch-to-buffer): Fix doc-string typo.
13909
13910 2011-10-08 Thierry Volpiatto <thierry.volpiatto@gmail.com>
13911
13912 * eshell/eshell.el (eshell-command): Avoid using hooks.
13913
13914 2011-10-07 Chong Yidong <cyd@stupidchicken.com>
13915
13916 * bindings.el ([M-left],[M-right]): Bind to left-word and
13917 right-word respectively.
13918
13919 2011-10-07 Glenn Morris <rgm@gnu.org>
13920
13921 * cus-start.el (debug-on-quit): Fix custom type.
13922
13923 2011-10-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
13924
13925 * subr.el (define-key-after): Clarify that the function is not
13926 useful for non-menu keymaps.
13927
13928 * progmodes/gdb-mi.el (gdb): Fix typo in doc string.
13929
13930 2011-10-06 Thierry Volpiatto <thierry.volpiatto@gmail.com>
13931
13932 * eshell/eshell.el (eshell-command): Enable `eshell-mode' only
13933 in current minibuffer (Fix bug with recursive minibuffers).
13934
13935 2011-10-06 Chong Yidong <cyd@stupidchicken.com>
13936
13937 * progmodes/gdb-mi.el (gdb): Doc fix.
13938
13939 2011-10-05 Martin Rudalics <rudalics@gmx.at>
13940
13941 * window.el (frame-auto-hide-function): New option replacing
13942 frame-auto-delete. Suggested by Stefan Monnier.
13943 (window--delete): Call frame-auto-hide-function instead of
13944 investigating frame-auto-delete.
13945 (window-point-1, set-window-point-1): New functions.
13946 (window-in-direction, record-window-buffer, window-state-get-1)
13947 (display-buffer-record-window): Use window-point-1 instead of
13948 window-point.
13949 (set-window-buffer-start-and-point): Use set-window-point-1.
13950
13951 2011-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
13952
13953 * emacs-lisp/edebug.el: Heed checkdoc recommendations.
13954
13955 2011-10-05 Glenn Morris <rgm@gnu.org>
13956
13957 * progmodes/perl-mode.el (perl-electric-terminator): Doc fix.
13958 (perl-calculate-indent): Suppress scan errors. (Bug#2205)
13959
13960 2011-10-05 Leo Liu <sdl.web@gmail.com>
13961
13962 * subr.el (read-char-choice): Fix argument to buffer-live-p which
13963 works with buffer object.
13964
13965 2011-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
13966
13967 * mpc.el (mpc-tool-bar-map): Add labels.
13968
13969 2011-10-04 Glenn Morris <rgm@gnu.org>
13970
13971 * calendar/holidays.el (calendar-check-holidays): Doc fix.
13972
13973 2011-10-04 Martin Rudalics <rudalics@gmx.at>
13974
13975 * window.el (window--delete): New function.
13976 (frame-auto-delete): Resuscitate option.
13977 (bury-buffer, replace-buffer-in-windows)
13978 (quit-window): Rewrite using window--delete.
13979 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
13980 Pass display-buffer-mark-dedicated to window--display-buffer-2
13981 (Bug#9639).
13982
13983 2011-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
13984
13985 * pcmpl-unix.el (pcomplete/scp): Don't assume pcomplete-all-entries
13986 returns a list (bug#9554). Add remote file name completion.
13987 * comint.el (comint--table-subvert): Curry and get quote&unquote
13988 functions as arguments.
13989 (comint--complete-file-name-data): Adjust call accordingly.
13990 * pcomplete.el (pcomplete--table-subvert): Remove.
13991 (pcomplete-completions-at-point): Use comint--table-subvert instead.
13992
13993 * minibuffer.el (completion-table-case-fold): Use currying.
13994 (completion--styles-type, completion--cycling-threshold-type):
13995 New constants.
13996 (completion-styles, completion-category-overrides)
13997 (completion-cycle-threshold): Use them.
13998 * pcomplete.el (pcomplete-completions-at-point): Adjust call to
13999 completion-table-case-fold.
14000
14001 2011-10-03 Stephen Berman <stephen.berman@gmx.net>
14002
14003 * minibuffer.el (completion-category-overrides): Fix type of styles
14004 and add more user friendly tags (bug#9660).
14005
14006 2011-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
14007
14008 * international/mule-cmds.el: Fix abuses of apply-partially (bug#9661).
14009 (mule-input-method-string): New widget.
14010 (default-input-method, language-info-custom-alist): Use it.
14011
14012 2011-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
14013
14014 * pcomplete.el: Require comint.
14015 (pcomplete--common-suffix): Remove.
14016 (pcomplete--common-quoted-suffix): Use comint--common-suffix instead.
14017 (pcomplete--table-subvert): Sync with comint--table-subvert.
14018 (pcomplete--entries): Use comint-completion-file-name-table.
14019 * comint.el (comint-unquote-filename): Simplify.
14020 (comint-completion-file-name-table): New function (bug#9616).
14021 (comint--complete-file-name-data): Use it.
14022
14023 * pcmpl-gnu.el (pcmpl-gnu-with-file-buffer): New macro (bug#9643).
14024 (pcmpl-gnu-tar-buffer): Remove.
14025 (pcmpl-gnu-with-file-buffer): Use it to avoid leaving the tar's buffer
14026 around. Make sure pcomplete-suffix-list is only changed temporarily.
14027 Don't look inside the tar's file if it's too large.
14028
14029 2011-10-01 Chong Yidong <cyd@stupidchicken.com>
14030
14031 * cus-edit.el (custom-mode-map):
14032 * epa.el (epa-key-list-mode-map):
14033 * man.el (Man-mode-map):
14034 * startup.el (splash-screen-keymap):
14035 * simple.el (special-mode-map): Use scroll-up-command and
14036 scroll-down-command.
14037
14038 * progmodes/idlw-help.el (idlwave-help-mode-map):
14039 * progmodes/ebrowse.el (ebrowse-electric-position-mode-map):
14040 * net/newst-plainview.el (newsticker-mode-map):
14041 * emulation/ws-mode.el (wordstar-mode-map):
14042 * emulation/vi.el (vi-com-map):
14043 * calc/calc-graph.el (calc-graph-show-dumb):
14044 * term/sun.el (terminal-init-sun):
14045 * term/ns-win.el (global-map):
14046 * progmodes/grep.el (grep-mode-map):
14047 * progmodes/ebrowse.el (ebrowse-electric-list-mode-map):
14048 * mail/rmail.el (rmail-mode-map):
14049 * progmodes/cpp.el (cpp-edit-mode-map): Likewise.
14050
14051 * custom.el (custom-safe-themes, load-theme): Treat value of t for
14052 custom-safe-themes as special.
14053
14054 2011-10-01 Julien Danjou <julien@danjou.info>
14055
14056 * notifications.el (notifications-notify): Fix docstring.
14057
14058 2011-10-01 Per Starbäck <per@starback.se>
14059
14060 * pcmpl-gnu.el (pcomplete/tar): Fix tar-header-name call. (Bug#9643)
14061
14062 2011-09-30 Martin Rudalics <rudalics@gmx.at>
14063
14064 * startup.el (command-line-1): Fix last fix by inserting
14065 initial-scratch-message into *scratch* before displaying it.
14066 (Bug#9605) and (Bug#9636)
14067
14068 2011-09-29 Eli Zaretskii <eliz@gnu.org>
14069
14070 * simple.el (line-move): If auto-hscroll-mode is disabled and the
14071 window is hscrolled, move by logical lines. (Bug#9607)
14072 (line-move-visual): Update the doc string to the above effect.
14073
14074 2011-09-29 Martin Rudalics <rudalics@gmx.at>
14075
14076 * window.el (display-buffer-record-window): When WINDOW is the
14077 selected window use `point' instead of `window-point'. (Bug#9626)
14078
14079 * startup.el (command-line-1): Use insert-before-markers when
14080 inserting initial-scratch-message. (Bug#9605)
14081
14082 * help.el (help-window): Remove variable.
14083
14084 2011-09-29 Glenn Morris <rgm@gnu.org>
14085
14086 * pcmpl-cvs.el (pcomplete/cvs): Add "status" handler.
14087
14088 2011-09-29 Juanma Barranquero <lekktu@gmail.com>
14089
14090 * descr-text.el (describe-char-categories): Accept category
14091 descriptions more than one line long.
14092
14093 2011-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
14094
14095 * simple.el (delete-trailing-whitespace): Fix last change.
14096
14097 * progmodes/perl-mode.el (perl-syntax-propertize-function):
14098 Don't confuse "y => 3" as the beginning of a `y' operation.
14099
14100 * emacs-lisp/debug.el (debug-convert-byte-code): Don't assume the
14101 object has more than 4 slots (bug#9613).
14102
14103 2011-09-28 Juanma Barranquero <lekktu@gmail.com>
14104
14105 * subr.el (with-output-to-temp-buffer):
14106 * net/quickurl.el (quickurl, quickurl-browse-url):
14107 Fix typos in docstrings.
14108
14109 2011-09-27 Eli Zaretskii <eliz@gnu.org>
14110
14111 * minibuffer.el (completion-styles)
14112 (completion-category-overrides): Cross reference each other in doc
14113 strings.
14114
14115 2011-09-27 Glenn Morris <rgm@gnu.org>
14116
14117 * pcmpl-cvs.el (pcmpl-cvs-entries): Update for Emacs 22.1 changes
14118 to split-string. (Bug#9606)
14119
14120 2011-09-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
14121
14122 * mail/smtpmail.el (smtpmail-via-smtp): Fix STARTTLS detection
14123 (bug#9615).
14124
14125 2011-09-27 Chong Yidong <cyd@stupidchicken.com>
14126
14127 * emacs-lisp/package.el (list-packages): Fix echo area message.
14128
14129 2011-09-27 Leo Liu <sdl.web@gmail.com>
14130
14131 * ido.el (ido-read-internal): Accept cons cell HIST arg.
14132
14133 2011-09-25 Michael Albinus <michael.albinus@gmx.de>
14134
14135 * net/dbus.el (dbus-unregister-object): Don't release services for
14136 registered signals. (Bug#9581)
14137
14138 2011-09-25 Teodor Zlatanov <tzz@lifelogs.com>
14139
14140 * progmodes/cfengine.el (cfengine-auto-mode): Add convenience
14141 function that picks between cfengine 2 and 3 support
14142 automatically. Update docs accordingly.
14143
14144 2011-09-22 Kenichi Handa <handa@m17n.org>
14145
14146 * language/ind-util.el (indian-tml-base-table): Add TAMIL DIGIT
14147 ZERO.
14148 (indian-itrans-v5-table-for-tamil): New variable.
14149 (indian-tml-itrans-v5-hash): Use the above variable (Bug#9336).
14150
14151 2011-09-22 Ken Manheimer <ken.manheimer@gmail.com>
14152
14153 * allout.el (allout-this-command-hid-stuff): Buffer-local variable
14154 that's true if the current command involved collapsing of text.
14155 It's reset to false at the beginning of the next command.
14156 (allout-post-command-business): Move the cursor to the beginning
14157 of entry if the cursor is hidden and collapsing activity just
14158 happened.
14159
14160 2011-09-24 Chong Yidong <cyd@stupidchicken.com>
14161
14162 * mouse.el (mouse-drag-track): Set scroll-margin to 0 while
14163 tracking (Bug#9541).
14164
14165 2011-09-24 Ulf Jasper <ulf.jasper@web.de>
14166
14167 * net/newst-reader.el (newsticker-html-renderer)
14168 (newsticker-show-news): Automatically load html rendering package
14169 if newsticker-html-renderer is set. Fixes "Warning: defvar ignored
14170 because w3m-fill-column is let-bound" and the error "Symbol's value
14171 as variable is void: w3m-fill-column".
14172
14173 2011-09-24 Michael Albinus <michael.albinus@gmx.de>
14174
14175 * net/dbus.el (dbus-unregister-object): Remove match rule of signals.
14176 Release services only if they are defined. (Bug#9581)
14177
14178 2011-09-23 Richard Stallman <rms@gnu.org>
14179
14180 * textmodes/paragraphs.el (forward-sentence): For backwards case,
14181 distinguish start of paragraph from start of its text.
14182
14183 * mail/emacsbug.el (report-emacs-bug-query-existing-bugs): Autoload.
14184
14185 * mail/rmail.el (rmail-view-buffer-kill-buffer-hook): New function.
14186 (rmail-generate-viewer-buffer): Put that hook on view buffer.
14187 (rmail-mode-kill-buffer-hook): Override that hook, to kill view buffer.
14188
14189 2011-09-23 Andreas Schwab <schwab@linux-m68k.org>
14190
14191 * international/mule-diag.el (mule-diag): Insert a newline after
14192 each fontset description.
14193
14194 2011-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
14195
14196 * simple.el (delete-trailing-whitespace):
14197 Document last change; simplify.
14198
14199 2011-09-23 Peter J. Weisberg <pj@irregularexpressions.net>
14200
14201 * simple.el (delete-trailing-whitespace): Also delete
14202 extra newlines at the end of the buffer.
14203
14204 * textmodes/picture.el: Make motion commands obey shift-select-mode.
14205 (picture-newline): Use forward-line so as to ignore fields.
14206
14207 2011-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
14208
14209 * subr.el (with-wrapper-hook): Fix edebug spec.
14210
14211 2011-09-23 Lars Magne Ingebrigtsen <larsi@gnus.org>
14212
14213 * simple.el (kill-line): Note effect of `show-trailing-whitespace'
14214 (bug#4538).
14215
14216 2011-09-23 Michael Albinus <michael.albinus@gmx.de>
14217
14218 * net/tramp-sh.el (tramp-sh-handle-file-name-all-completions):
14219 Fix nasty bug using wrong cached values.
14220
14221 2011-09-23 Alan Mackenzie <acm@muc.de>
14222
14223 * progmodes/cc-defs.el (c-version): Increase to 5.31.9.
14224
14225 2011-09-23 Chong Yidong <cyd@stupidchicken.com>
14226
14227 * window.el (pop-to-buffer): Ensure right window is selected if we
14228 chose another frame.
14229
14230 2011-09-22 Eli Zaretskii <eliz@gnu.org>
14231
14232 * simple.el (what-cursor-position): Use get-char-property-change
14233 and next-single-char-property-change, to be able to show display
14234 properties that come from overlays as well as text properties.
14235
14236 2011-09-22 Chong Yidong <cyd@stupidchicken.com>
14237
14238 * window.el (pop-to-buffer-same-window): New (reinstated) fun.
14239
14240 * cmuscheme.el (run-scheme, switch-to-scheme):
14241 * cus-edit.el (customize-group, custom-buffer-create)
14242 (customize-browse):
14243 * info.el (info):
14244 * shell.el (shell):
14245 * mail/sendmail.el (mail):
14246 * progmodes/inf-lisp.el (inferior-lisp): Use it (Bug#9532).
14247
14248 2011-09-22 Richard Stallman <rms@gnu.org>
14249
14250 * textmodes/paragraphs.el (forward-sentence): When setting PAR-BEG,
14251 move back only to line beg, don't move back over blank lines.
14252
14253 2011-09-22 Michael Albinus <michael.albinus@gmx.de>
14254
14255 * files.el (copy-directory): Set directory attributes only in case
14256 they could be retrieved from the source directory. (Bug#9565)
14257
14258 2011-09-22 Dima Kogan <dkogan@secretsauce.net> (tiny change)
14259
14260 * progmodes/hideshow.el (hs-looking-at-block-start-p)
14261 (hs-find-block-beginning, hs-hide-level-recursive):
14262 Ignore strings as well as comments. (Bug#9502)
14263
14264 2011-09-22 Andrew Schein <andrew@andrewschein.com> (tiny change)
14265
14266 * progmodes/sql.el (sql-comint-postgres):
14267 Convert port number to a string. (Bug#9566)
14268
14269 2011-09-22 Martin Rudalics <rudalics@gmx.at>
14270
14271 * window.el (quit-window): Undedicate window when switching to
14272 previous buffer. Reported by Thierry Volpiatto
14273 <thierry.volpiatto@gmail.com>.
14274 (special-display-popup-frame): When popping up a new frame reset
14275 its previous buffers to nil. Simplify code.
14276
14277 2011-09-21 Michael Albinus <michael.albinus@gmx.de>
14278
14279 * net/tramp.el (tramp-handle-shell-command): Set process sentinel
14280 and process filter, as done also in `shell-command'.
14281
14282 2011-09-21 Martin Rudalics <rudalics@gmx.at>
14283
14284 * window.el (set-window-buffer-start-and-point):
14285 Call set-window-start with NOFORCE argument t.
14286 Suggested by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
14287 (quit-window): Reword doc-string. Handle new format of
14288 quit-restore parameter. Don't delete window if it has a
14289 previous buffer we can show instead of the present one.
14290 (display-buffer-record-window): Rewrite using a new format for
14291 the quit-restore window parameter
14292 (special-display-popup-frame, display-buffer-same-window)
14293 (display-buffer-reuse-window, display-buffer-pop-up-frame)
14294 (display-buffer-pop-up-window, display-buffer-use-some-window):
14295 Adapt symbol passed to display-buffer-record-window.
14296 * help.el (help-window-setup): Handle new format of quit-restore
14297 parameter.
14298
14299 2011-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
14300
14301 * faces.el (face-list): Fix docstring (bug#9564).
14302
14303 * window.el (display-buffer--action-function-custom-type):
14304 Don't include internal functions in the Custom interface.
14305
14306 2011-09-20 Juri Linkov <juri@jurta.org>
14307
14308 * info.el (Info-history-skip-intermediate-nodes): New defcustom.
14309 (Info-forward-node, Info-backward-node, Info-next-preorder)
14310 (Info-last-preorder): Use it. (Bug#9528)
14311
14312 2011-09-20 Juri Linkov <juri@jurta.org>
14313
14314 * info.el (Info-last-preorder): Visit last menu item only when
14315 `Info-scroll-prefer-subnodes' is non-nil (third test-case of bug#9528).
14316
14317 2011-09-20 Julien Danjou <julien@danjou.info>
14318
14319 * password-cache.el (password-cache-remove): Remove entries even if the
14320 value is nil, so that password with a nil value (negative caching) is
14321 possible to invalidate.
14322
14323 2011-09-20 Lawrence Mitchell <wence@gmx.li>
14324
14325 * progmodes/f90.el (f90-break-line): If breaking inside comment delete
14326 all whitespace around breakpoint. (Bug#9553)
14327 (f90-find-breakpoint): Only break at whitespace inside a comment.
14328
14329 2011-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
14330
14331 * minibuffer.el (completion-file-name-table): Keep track of errors.
14332 (completion-table-with-predicate): Handle the case where pred1 is nil.
14333 * pcomplete.el (pcomplete-completions-at-point): Simplify.
14334
14335 2011-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
14336
14337 * emacs-lisp/debug.el (debugger-args): Give it a docstring.
14338 (debugger-return-value): Signal an error if the debugging context does
14339 not await any return value.
14340
14341 * ps-mule.el (ps-mule-plot-string): Don't inf-loop (bug#5108).
14342 * image-mode.el (image-toggle-display-text)
14343 (image-toggle-display-image): Stay away from evil `intangible'.
14344
14345 2011-09-19 Leo Liu <sdl.web@gmail.com>
14346
14347 * replace.el (occur-revert-arguments): Make it permanent-local.
14348 (occur-mode): Don't call font-lock-defontify.
14349
14350 2011-09-19 Chong Yidong <cyd@stupidchicken.com>
14351
14352 * net/ldap.el (ldap-search-internal): Don't push empty search
14353 result (Bug#9508).
14354
14355 2011-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
14356
14357 * whitespace.el (whitespace-newline-mode): Disable it right (bug#9550).
14358
14359 2011-09-19 Michael Albinus <michael.albinus@gmx.de>
14360
14361 * net/tramp-sh.el (tramp-inline-compress-commands): Add "xz".
14362 Suggested by Liam Stitt <stittl@cuug.ab.ca>.
14363
14364 2011-09-18 Juri Linkov <juri@jurta.org>
14365
14366 * buff-menu.el (Buffer-menu-mode-map):
14367 * dired.el (dired-mode-map):
14368 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map)
14369 (lisp-interaction-mode-map):
14370 * emacs-lisp/package.el (package-menu-mode-map):
14371 * epa.el (epa-key-list-mode-map):
14372 * menu-bar.el (menu-bar-showhide-tool-bar-menu)
14373 (menu-bar-options-menu):
14374 * outline.el (outline-mode-menu-bar-map):
14375 * vc/vc-bzr.el (vc-bzr-shelve-menu-map, vc-bzr-extra-menu-map):
14376 * vc/vc-dir.el (vc-dir-menu-map):
14377 * vc/vc-git.el (vc-git-stash-menu-map, vc-git-extra-menu-map):
14378 Capitalize non-function content words in menu item strings.
14379
14380 * dired.el (dired-mode-map): Add menu item for
14381 `image-dired-dired-toggle-marked-thumbs'.
14382
14383 2011-09-18 Juri Linkov <juri@jurta.org>
14384
14385 * isearch.el (isearch-edit-string): Bind `isearch-new-case-fold'
14386 to `isearch-case-fold-search' and restore its original value
14387 after the `isearch-mode' call.
14388
14389 2011-09-18 Juri Linkov <juri@jurta.org>
14390
14391 * progmodes/grep.el (grep-process-setup): Don't check code for 1
14392 because `zgrep' returns 1 for successful matches (bug#9226).
14393
14394 2011-09-18 Juri Linkov <juri@jurta.org>
14395
14396 * info.el (Info-extract-menu-node-name): Check the second match
14397 for empty string (second test-case of bug#9528).
14398 (Info-last-preorder): Let-bind `Info-history' to nil to not add
14399 intermediate nodes to the history (first test-case of bug#9528).
14400
14401 2011-09-18 Juri Linkov <juri@jurta.org>
14402
14403 * info.el (Info-mode-syntax-table): New variable.
14404 (Info-mode): Set `:syntax-table' to `Info-mode-syntax-table' (bug#3312).
14405
14406 2011-09-18 Juri Linkov <juri@jurta.org>
14407
14408 * info.el (Info-file-supports-index-cookies):
14409 Increment line-beginning-position's arg from 3 to 4 because makeinfo
14410 outputs one more line for long file names (bug#4142).
14411
14412 2011-09-18 Chong Yidong <cyd@stupidchicken.com>
14413
14414 * newcomment.el (comment-normalize-vars): If prompting for
14415 comment-start, set comment-start-skip too (Bug#8424).
14416
14417 2011-09-18 Johan Bockgård <bojohan@gnu.org>
14418
14419 * icomplete.el: Fix previous fix of Bug#5849.
14420 (icomplete-mode): Don't set completion-show-inline-help.
14421 (icomplete-minibuffer-setup): Set completion-show-inline-help
14422 locally during icompletion.
14423
14424 2011-09-18 Chong Yidong <cyd@stupidchicken.com>
14425
14426 * woman.el (woman2-process-escapes): Don't delete unrecognized
14427 escapes (Bug#7843).
14428
14429 * files.el (inhibit-first-line-modes-regexps): Add image files.
14430 (hack-local-variables-prop-line): Return nil for malformed
14431 prop-lines (Bug#9044).
14432
14433 2011-09-18 Michael Albinus <michael.albinus@gmx.de>
14434
14435 * net/tramp.el (top): Don't require 'shell.
14436 (tramp-methods): Fix docstring.
14437 (tramp-get-remote-tmpdir): New defun, moved from tramp-sh.el.
14438 Return complete remote file name. Handle "smb" case.
14439 Use `tramp-tmpdir', if defined for the respective method.
14440 (tramp-make-tramp-temp-file): Adapt call of `tramp-get-remote-tmpdir'.
14441
14442 * net/tramp-compat.el (top): Require 'shell.
14443
14444 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band)
14445 (tramp-maybe-open-connection): Use `tramp-file-name-real-host' for
14446 `tramp-current-host'.
14447 (tramp-get-remote-tmpdir): Remove.
14448
14449 * net/tramp-smb.el (tramp-methods): Add `tramp-remote-shell' and
14450 `tramp-tmpdir' entries.
14451 (tramp-smb-errors): Add "NT_STATUS_IMAGE_ALREADY_LOADED".
14452 (tramp-smb-handle-file-attributes): Ignore errors.
14453 (tramp-smb-wait-for-output): Check also for process end.
14454
14455 2011-09-18 Lars Magne Ingebrigtsen <larsi@gnus.org>
14456
14457 * mail/smtpmail.el (smtpmail-via-smtp): Ignore errors that arise
14458 when sending QUIT (bug#9312).
14459
14460 2011-09-17 Chong Yidong <cyd@stupidchicken.com>
14461
14462 * replace.el (occur-mode-map): Rebind occur-edit-mode to "e" (Bug#8463).
14463 (occur-edit-mode-map): Bind C-c C-c to occur-cease-edit and C-o to
14464 occur-mode-display-occurrence.
14465 (occur-edit-mode): Add usage message.
14466 (occur-cease-edit): New command.
14467 (occur-after-change-function): Use text properties to find the
14468 position of the prefix text.
14469 (occur-engine): Set stickiness of prefix text properties.
14470
14471 2011-09-17 Glenn Morris <rgm@gnu.org>
14472
14473 * progmodes/etags.el (complete-tag):
14474 Fix call to completion-in-region. (Bug#9526)
14475
14476 2011-09-17 Juri Linkov <juri@jurta.org>
14477
14478 * textmodes/ispell.el (ispell-word): Add to the error message
14479 the word, ispell program name and current dictionary (bug#9121).
14480 (ispell-tex-arg-end): Capitalize "error" in the error message.
14481
14482 2011-09-17 Andreas Schwab <schwab@linux-m68k.org>
14483
14484 * emacs-lisp/bytecomp.el (byte-compile-lapcode): Fix overflow
14485 check. (Bug#4251)
14486
14487 2011-09-17 Juri Linkov <juri@jurta.org>
14488
14489 * window.el (window-safe-min-height, window-safe-min-width):
14490 Fix typos (followup to bug#9522).
14491
14492 2011-09-17 Sven Joachim <svenjoac@gmx.de>
14493
14494 * window.el (window-min-width, window-state-put): Fix typos (bug#9522).
14495
14496 2011-09-16 Eli Zaretskii <eliz@gnu.org>
14497
14498 * simple.el (line-move): If goal-column is set, move by logical
14499 lines, not by display lines. (Bug#971)
14500 (next-line, previous-line, goal-column, line-move-visual): Doc fix
14501 to reflect the above change.
14502
14503 2011-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
14504
14505 * image.el (imagemagick-register-types): Use regexp-opt.
14506
14507 2011-09-15 Chong Yidong <cyd@stupidchicken.com>
14508
14509 * window.el (display-buffer-base-action): Rename from
14510 display-buffer-default-action. Make default value empty.
14511 (display-buffer-overriding-action): Convert to defvar.
14512 (display-buffer-fallback-action): New var.
14513
14514 2011-09-15 Chong Yidong <cyd@stupidchicken.com>
14515
14516 * emacs-lisp/package.el (package-alist): Fix risky-local-variable
14517 declaration.
14518 (package--add-to-archive-contents): If there is a duplicate entry
14519 with an older version, remove it.
14520 (package-menu-mark-delete, package-menu-mark-install)
14521 (package-menu-mark-unmark): Make unused args optional.
14522 (package-menu-mark-obsolete-for-deletion):
14523 Use package-menu-get-status instead of a regexp search.
14524 (package-menu-get-status): Use tabulated-list-entry.
14525 (package-menu-mark-upgrades): New command.
14526 (package-menu-mode-map): Bind it to U. Add it to menu bar.
14527 (package-menu-execute): Do installation before deletion.
14528 (package-menu-refresh, package-menu-execute): Use derived-mode-p
14529 instead of checking major-mode.
14530 (package-menu--find-upgrades): New function.
14531
14532 2011-09-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
14533
14534 * mail/smtpmail.el (smtpmail-send-command): Don't include AUTH
14535 passwords in the log buffer.
14536 (smtpmail-process-filter): Update the process marker so that the
14537 "broken by peer" status message is inserted in the right place.
14538
14539 2011-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
14540
14541 * textmodes/bibtex.el (bibtex-complete-string-cleanup)
14542 (bibtex-complete-crossref-cleanup): Adjust to accommodate needs of
14543 bibtex-completion-at-point-function.
14544 (bibtex-completion-at-point-function): Use them.
14545
14546 * newcomment.el (comment-add, comment-valid-prefix-p): Docfix.
14547
14548 * mpc.el (mpc-constraints-tag-lookup): New function.
14549 (mpc-constraints-restore): Use it to make jumping to "album=Foo" apply
14550 also to browser "album|playlist".
14551
14552 2011-09-14 Juri Linkov <juri@jurta.org>
14553
14554 * isearch.el (isearch-fail-pos): Add new arg `msg'. Doc fix.
14555 (isearch-edit-string): Use length of `isearch-string' when
14556 `isearch-fail-pos' returns nil.
14557 (isearch-message): Remove duplicate code and call
14558 `isearch-fail-pos' with arg `t'.
14559
14560 2011-09-14 Chong Yidong <cyd@stupidchicken.com>
14561
14562 * replace.el (occur-mode-goto-occurrence): Don't force using other
14563 window (Bug#9499).
14564
14565 * dired-aux.el (dired-do-chmod): Don't provide initial input.
14566
14567 2011-09-14 Martin Rudalics <rudalics@gmx.at>
14568
14569 * window.el (display-buffer-window): Remove.
14570 (display-buffer-record-window): Use help-setup window parameter
14571 instead of variable display-buffer-window.
14572 (display-buffer-function, special-display-buffer-names)
14573 (special-display-function): Mention help-setup parameter instead
14574 of display-buffer-window in doc-string.
14575 * help.el (help-window-setup): New argument help-window.
14576 Use help-window-setup parameter instead of display-buffer-window.
14577 Reword some messages.
14578 (with-help-window): Pass window used for displaying the buffer
14579 to help-window-setup. Don't set display-buffer-window.
14580
14581 2011-09-13 Glenn Morris <rgm@gnu.org>
14582
14583 * emacs-lisp/debug.el (debugger-make-xrefs):
14584 Preserve point. (Bug#9462)
14585
14586 2011-09-13 Chong Yidong <cyd@stupidchicken.com>
14587
14588 * window.el (window-deletable-p): Use next-frame.
14589
14590 2011-09-13 Martin Rudalics <rudalics@gmx.at>
14591
14592 * window.el (window-auto-delete): Remove.
14593 (window-deletable-p): Remove argument FORCE. Don't deal with
14594 dedication and previous buffers.
14595 (switch-to-prev-buffer): Don't delete window.
14596 (delete-windows-on): Delete a window's frame if and only if the
14597 window is dedicated.
14598 (replace-buffer-in-windows): Delete buffer's window or frame if
14599 and only if window is dedicated.
14600 (quit-window): Handle quit-restore as before last change.
14601 (bury-buffer): Delete window only if window-deletable-p returns t.
14602
14603 2011-09-13 Chong Yidong <cyd@stupidchicken.com>
14604
14605 * window.el (window-deletable-p): Never delete the last frame on a
14606 given terminal.
14607
14608 2011-09-13 Glenn Morris <rgm@gnu.org>
14609
14610 * help.el (describe-key-briefly): Copy previous standard-output change.
14611
14612 2011-09-13 PJ Weisberg <pj@irregularexpressions.net>
14613
14614 * help.el (where-is): Respect non-standard standard-output. (Bug#9030)
14615
14616 2011-09-13 Glenn Morris <rgm@gnu.org>
14617
14618 * emacs-lisp/lisp-mode.el (lisp-indent-function):
14619 * progmodes/scheme.el (scheme-indent-function): Doc fixes.
14620
14621 2011-09-12 Chong Yidong <cyd@stupidchicken.com>
14622
14623 * dired-aux.el (dired-mark-read-string): Don't return default
14624 value on empty input (Bug#9361).
14625 (dired-do-chxxx): Treat empty input for "touch" as no -t option.
14626 Omit initial minibuffer contents.
14627 (dired-do-chmod): Signal an error on empty input.
14628 (dired-mark-read-string): Don't return default on empty input.
14629
14630 * files.el (file-modes-symbolic-to-number): Doc fix.
14631
14632 2011-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
14633
14634 * international/mule-cmds.el (ucs-completions): Remove.
14635 (read-char-by-name): Use complete-with-action instead; add metadata.
14636
14637 2011-09-11 Chong Yidong <cyd@stupidchicken.com>
14638
14639 * window.el (display-buffer--action-function-custom-type)
14640 (display-buffer--action-custom-type): New vars.
14641 (display-buffer-alist, display-buffer-default-action)
14642 (display-buffer-overriding-action): Add defcustom types.
14643
14644 * frame.el (delete-other-frames): Doc fix (Bug#276).
14645
14646 2011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
14647
14648 * play/doctor.el (make-doctor-variables): Define `doctor-sent'.
14649
14650 2011-09-11 Chong Yidong <cyd@stupidchicken.com>
14651
14652 Change modes that used same-window-* vars to use switch-to-buffer.
14653
14654 * progmodes/gdb-mi.el (gdb-restore-windows, gdb-setup-windows):
14655 Use switch-to-buffer.
14656
14657 * cus-edit.el (customize-group, custom-buffer-create)
14658 (customize-browse, custom-buffer-create-other-window):
14659 Use switch-to-buffer or switch-to-buffer-other-window.
14660
14661 * info.el (info, Info-find-node, Info-revert-find-node, Info-next)
14662 (Info-prev, Info-up, Info-speedbar-goto-node)
14663 (info-display-manual): Use switch-to-buffer.
14664 (Info-speedbar-goto-node): Use switch-to-buffer-other-frame.
14665
14666 * mail/sendmail.el (mail): Use switch-to-buffer.
14667 (mail-recover): Use switch-to-buffer-other-window.
14668
14669 * cmuscheme.el (run-scheme, switch-to-scheme):
14670 * ielm.el (ielm):
14671 * shell.el (shell):
14672 * net/rlogin.el (rlogin):
14673 * net/telnet.el (telnet, rsh):
14674 * progmodes/inf-lisp.el (inferior-lisp): Use switch-to-buffer.
14675
14676 2011-09-11 Andreas Schwab <schwab@linux-m68k.org>
14677
14678 * dired.el (dired-sort-toggle-or-edit): Revert last changes.
14679
14680 2011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
14681
14682 * dired.el (dired-sort-toggle-or-edit): -o doesn't exist on *BSD,
14683 so don't mention it (bug#9301).
14684 (dired-sort-toggle-or-edit): Clarify string further.
14685
14686 * faces.el (face-spec-set-match-display): Make `(type graphic)'
14687 match `x', `w32' and `ns', like the manual says (bug#9029).
14688
14689 * subr.el (eval-after-load): Doc string clarification (bug#9125).
14690 (process-kill-buffer-query-function): Mention the buffer name in
14691 the query.
14692
14693 * image-mode.el (image-next-line): The line parameter is mandatory
14694 (bug#9258).
14695
14696 * dired.el (dired-sort-toggle-or-edit): Mention -o and -g, too,
14697 which can be useful (bug#9301).
14698
14699 * textmodes/flyspell.el: Remove obsolete comment (bug#9368).
14700
14701 * subr.el (match-string): Mention that the current buffer should
14702 be the same as the search was done in (bug#9282).
14703
14704 * facemenu.el: Disable the remove-* commands if the mark isn't
14705 active (bug#9162).
14706
14707 2011-09-10 Chong Yidong <cyd@stupidchicken.com>
14708
14709 * buff-menu.el (Buffer-menu-switch-other-window): Use second arg
14710 of display-buffer.
14711 (Buffer-menu-2-window): Use switch-to-buffer-other-window.
14712
14713 * replace.el (occur-mode-goto-occurrence)
14714 (occur-mode-display-occurrence) Use second arg of pop-to-buffer
14715 and display-buffer.
14716
14717 * mail/reporter.el (reporter-submit-bug-report): Use second arg of
14718 display-buffer.
14719
14720 * mail/sendmail.el (sendmail-user-agent-compose): Don't bind the
14721 special-display and same-window variables.
14722 (mail-other-window): Use switch-to-buffer-other-window.
14723 (mail-other-frame): USe switch-to-buffer-other-frame.
14724
14725 * progmodes/gdb-mi.el (gdb-frame-gdb-buffer):
14726 Use display-buffer-other-frame.
14727 (gdb-display-gdb-buffer): Use pop-to-buffer.
14728
14729 * progmodes/gud.el (gud-goto-info): Use info-other-window.
14730
14731 * progmodes/python.el: Don't set same-window-buffer-names.
14732
14733 * textmodes/bibtex.el (bibtex-search-entry): Use switch-to-buffer.
14734
14735 * window.el (display-buffer-alist): Add *Python*.
14736
14737 2011-09-10 Chong Yidong <cyd@stupidchicken.com>
14738
14739 * window.el (display-buffer-alist): Add entry for buffers
14740 previously handled same-window-*.
14741 (display-buffer-alist, display-buffer-default-action)
14742 (display-buffer-overriding-action): Mark as risky.
14743 (display-buffer-alist): Document action function changes.
14744 (display-buffer--same-window-action)
14745 (display-buffer--other-frame-action): New variables.
14746 (switch-to-buffer, display-buffer-other-frame): Use them.
14747 (display-buffer): Rename reuse-frame entry to reusable-frames.
14748 (display-buffer-reuse-selected-window): Function deleted.
14749 (display-buffer-reuse-window): Handle reusable-frames alist entry.
14750 If it's omitted, check pop-up-frames/display-buffer-reuse-frames.
14751 (display-buffer-special): New function.
14752 (display-buffer--maybe-pop-up-frame-or-window): Rename from
14753 display-buffer-reuse-or-pop-window. Split off special-display
14754 part into display-buffer-special.
14755 (display-buffer-use-some-window): Don't perform any special
14756 pop-up-frames handling.
14757 (pop-to-buffer): Use window-normalize-buffer-to-switch-to.
14758 (display-buffer--maybe-same-window): Rename from
14759 display-buffer-maybe-same-window.
14760
14761 * info.el: Don't set same-window-regexps.
14762 (info-setup): New function.
14763 (info-other-window, info): Call it.
14764
14765 * cus-edit.el: Don't set same-window-regexps.
14766 (customize-group): New argument.
14767 (customize-group-other-window): Use it.
14768 (customize-face, customize-face-other-window): Likewise.
14769 (custom-buffer-create-other-window): Use pop-to-buffer directly.
14770
14771 * net/rlogin.el:
14772 * net/telnet.el:
14773 * progmodes/gud.el: Don't set same-window-regexps.
14774
14775 * cmuscheme.el:
14776 * ielm.el:
14777 * shell.el:
14778 * mail/sendmail.el:
14779 * progmodes/inf-lisp.el: Don't set same-window-buffer-names.
14780
14781 2011-09-10 Juri Linkov <juri@jurta.org>
14782
14783 * isearch.el (isearch-edit-string): Remove obsolete mention of
14784 `C-w' (`isearch-yank-word-or-char') from docstring.
14785 (isearch-query-replace): Fix typo in docstring (bug#9466).
14786
14787 2011-09-10 Juri Linkov <juri@jurta.org>
14788
14789 * paren.el (show-paren-function): Don't show escaped parens.
14790 Let-bind `unescaped' to `t' when paren is not escaped. (Bug#9461)
14791
14792 2011-09-10 Eli Zaretskii <eliz@gnu.org>
14793
14794 * mail/sendmail.el (mml-to-mime, mml-attach-file)
14795 (mm-default-file-encoding): Remove autoload forms, they are
14796 replaced with autoload cookies in mml.el and mm-encode.el.
14797 (mail-add-attachment): New command.
14798 (mail-mode-map): Add a menu-bar item for mail-add-attachment.
14799 (mail-mode): Mention mail-insert-file and mail-add-attachment in
14800 the doc string.
14801 (mml-to-mime, mml-attach-file, mm-default-file-encoding): Declare.
14802
14803 2011-09-10 Reuben Thomas <rrt@sc3d.org>
14804
14805 * simple.el (count-words-region): Use buffer if there's no region
14806 (bug#9429).
14807
14808 2011-09-09 Juri Linkov <juri@jurta.org>
14809
14810 * wdired.el (wdired-change-to-wdired-mode): Set buffer-local
14811 `isearch-filter-predicate' to `wdired-isearch-filter-read-only'.
14812 (wdired-isearch-filter-read-only): New function. (Bug#6362)
14813
14814 2011-09-09 Alan Mackenzie <acm@muc.de>
14815
14816 * progmodes/cc-mode.el (awk-mode): Prevent `define-derived-mode'
14817 spuriously generating `awk-mode-syntax-table'. (Bug #9448).
14818
14819 2011-09-09 Eli Zaretskii <eliz@gnu.org>
14820
14821 Fix for Savannah bug#9392.
14822 * simple.el (mail-encode-mml): New defvar.
14823
14824 * mail/rmail.el (mail-encode-mml): Add a defvar.
14825 (rmail-enable-mime-composing): Default to t.
14826 (rmail-forward): Use MIME method of forwarding only if both
14827 rmail-enable-mime-composing and rmail-enable-mime are non-nil.
14828 Set mail-encode-mml non-nil if the MIME method was used.
14829
14830 * mail/sendmail.el (mml-to-mime): Add autoload form.
14831 (mail-encode-mml): Add a defvar.
14832 (mail-mode): Make mail-encode-mml buffer-local and initialize it
14833 to nil.
14834 (mail-send): If mail-encode-mml is non-nil, run the outgoing
14835 message through mml-to-mime, and reset mail-encode-mml to nil.
14836
14837 2011-09-09 Glenn Morris <rgm@gnu.org>
14838
14839 * woman.el (woman-if-body): When processing an .el block,
14840 do not delete the next .el block as well. (Bug#9447)
14841 (woman-special-characters): Add oq, cq, and hy characters.
14842
14843 2011-09-08 Martin Rudalics <rudalics@gmx.at>
14844
14845 * window.el (window-deletable-p): Make sure window is live before
14846 invoking window-prev-buffers.
14847
14848 2011-09-08 Leo Liu <sdl.web@gmail.com>
14849
14850 * net/rcirc.el (rcirc-cmd-invite): New rcirc command. (Bug#9453)
14851
14852 2011-09-08 Juri Linkov <juri@jurta.org>
14853
14854 * progmodes/compile.el (compilation-environment): Make it
14855 a defcustom (bug#8340).
14856
14857 2011-09-08 Martin Rudalics <rudalics@gmx.at>
14858
14859 * window.el (frame-auto-delete): Rename to window-auto-delete.
14860 Make it control auto-deletion of windows and/or frames.
14861 (window-deletable-p): New argument FORCE. Rewrite conditions
14862 for deleting window/frame. (Bug#9419)
14863 (switch-to-prev-buffer, replace-buffer-in-windows, quit-window):
14864 Rewrite handling of case when window/frame can be deleted.
14865 (delete-windows-on): Call window-deletable-p with new FORCE
14866 argument t. (Bug#9456)
14867
14868 2011-09-07 Chong Yidong <cyd@stupidchicken.com>
14869
14870 * help-mode.el (help-mode): Restore autoload.
14871
14872 2011-09-07 Juri Linkov <juri@jurta.org>
14873
14874 * progmodes/compile.el (compilation-start): Let-bind `thisenv' to
14875 `compilation-environment'. Set buffer-local
14876 `compilation-environment' to `thisenv' later after (funcall mode).
14877 (Bug#8340)
14878
14879 * vc/vc-git.el (vc-git-grep): Remove --no-color. (Bug#9408)
14880 (vc-git-grep): Prepend "PAGER=" to `compilation-environment'
14881 instead of replacing its value. (Bug#8340)
14882
14883 2011-09-07 Juri Linkov <juri@jurta.org>
14884
14885 * progmodes/grep.el (grep-regexp-alist): Calculate column positions
14886 based on text properties put by `grep-filter' instead of matching
14887 escape sequences.
14888 (grep-mode): Set buffer-local `compilation-error-screen-columns'
14889 to the value of `grep-error-screen-columns' (bug#9438).
14890
14891 2011-09-07 Juri Linkov <juri@jurta.org>
14892
14893 * simple.el (next-error-highlight, next-error-highlight-no-select):
14894 Doc fix (bug#9432).
14895
14896 2011-09-07 OKAZAKI Tetsurou <okazaki.tetsurou@gmail.com> (tiny change)
14897
14898 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
14899 Check for null c-opt-block-decls-with-vars-key. (Bug#9443)
14900
14901 2011-09-07 Leo Liu <sdl.web@gmail.com>
14902
14903 * net/rcirc.el (rcirc-mode): Conditionally initialize
14904 rcirc-input-ring.
14905
14906 2011-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
14907
14908 * emacs-lisp/find-func.el (find-function-C-source): Only set
14909 find-function-C-source-directory after checking that we found a source
14910 file there (bug#9440).
14911
14912 2011-09-06 Alan Mackenzie <acm@muc.de>
14913
14914 * isearch.el (isearch-other-meta-char): Wherever a key list is
14915 unread, "unread" the prefix arg, too. This fixes bug #8901.
14916
14917 2011-09-05 Oleksandr Gavenko <gavenkoa@gmail.com> (tiny change)
14918
14919 * progmodes/grep.el (rgrep): Add "-type d" (bug#9414).
14920
14921 2011-09-05 Juri Linkov <juri@jurta.org>
14922
14923 * progmodes/grep.el (grep-process-setup): Fix comments (bug#8084).
14924
14925 2011-09-05 Juri Linkov <juri@jurta.org>
14926
14927 * progmodes/grep.el (grep-filter): Avoid incomplete processing by
14928 keeping point where processing of grep matches begins, and
14929 continue to delete remaining escape sequences from the same point.
14930 (grep-filter): Make leading zero optional in "0?1;31m" because
14931 git-grep emits "\033[1;31m" escape sequences unlike expected
14932 "\033[01;31m" as GNU Grep does (bug#9408).
14933 (grep-process-setup): Replace obsolete "ml=" with newer "sl=".
14934
14935 2011-09-05 Juri Linkov <juri@jurta.org>
14936
14937 * subr.el (y-or-n-p): Capitalize "yes".
14938
14939 2011-09-04 Michael Albinus <michael.albinus@gmx.de>
14940
14941 * net/tramp.el (top): Require 'shell. Use `tramp-unload-hook' but
14942 `tramp-cache-unload-hook' where appropriate.
14943 (tramp-methods): Rename `tramp-remote-sh' to
14944 `tramp-remote-shell'. Add `tramp-remote-shell-args'.
14945 (tramp-handle-shell-command): New defun, moved from tramp-sh.el.
14946
14947 * net/tramp-sh.el (top): Don't require 'shell.
14948 (tramp-methods): Add `tramp-remote-shell' and
14949 `tramp-remote-shell-args' entries.
14950 (tramp-sh-file-name-handler-alist): Use `tramp-handle-shell-command'.
14951 (tramp-sh-handle-shell-command): Remove.
14952 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
14953 Use `tramp-remote-shell'.
14954
14955 2011-09-03 Chong Yidong <cyd@stupidchicken.com>
14956
14957 * mail/sendmail.el (sendmail-query-once-function): Delete.
14958 (sendmail-query-once): Save directly to send-mail-function.
14959 Update message-send-mail-function too.
14960
14961 * mail/smtpmail.el (smtpmail-try-auth-methods): Clarify prompt.
14962
14963 2011-09-03 Christoph Scholtes <cschol2112@googlemail.com>
14964
14965 * progmodes/python.el (python-mode-map): Use correct function to
14966 start python interpreter from menu-bar (as reported by Geert
14967 Kloosterman).
14968 (inferior-python-mode-map): Fix typo.
14969 (python-shell-map): Remove.
14970
14971 2011-09-03 Deniz Dogan <deniz@dogan.se>
14972
14973 * net/rcirc.el (rcirc-print): Simplify code for
14974 rcirc-scroll-show-maximum-output. There is no need to walk
14975 through all windows to find the right one.
14976
14977 2011-09-03 Christoph Scholtes <cschol2112@googlemail.com>
14978
14979 * help.el (help-return-method): Doc fix.
14980
14981 2011-09-03 Martin Rudalics <rudalics@gmx.at>
14982
14983 * window.el (window-deletable-p): Don't return a non-nil value
14984 when there's a buffer that was shown in the window before.
14985 (Bug#9419)
14986 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
14987 Set window's previous buffers to nil.
14988
14989 2011-09-03 Eli Zaretskii <eliz@gnu.org>
14990
14991 * mail/rmailmm.el (rmail-mime-insert-tagline): Insert an extra
14992 newline before and after the tag line, so it doesn't interfere
14993 with determining the paragraph direction of bidirectional text.
14994
14995 2011-09-03 Leo Liu <sdl.web@gmail.com>
14996
14997 * files.el (find-file-not-true-dirname-list): Remove. (Bug#9422)
14998
14999 2011-09-02 Chong Yidong <cyd@stupidchicken.com>
15000
15001 * window.el (pop-to-buffer-1, pop-to-buffer-same-window): Delete.
15002 (pop-to-buffer): Change interactive spec. Pass second argument
15003 directly to display-buffer.
15004 (display-buffer): Fix interactive spec. Use functionp to
15005 distinguish between a function and a list of functions.
15006
15007 * abbrev.el (edit-abbrevs):
15008 * arc-mode.el (archive-extract):
15009 * autoinsert.el (auto-insert):
15010 * bookmark.el (bookmark-bmenu-list):
15011 * files.el (find-file):
15012 * view.el (view-buffer):
15013 * progmodes/compile.el (compilation-goto-locus):
15014 * textmodes/bibtex.el (bibtex-initialize): Use switch-to-buffer.
15015
15016 2011-09-02 Chong Yidong <cyd@stupidchicken.com>
15017
15018 * window.el (display-buffer-alist): Doc fix.
15019 (display-buffer): Add docstring. Don't treat
15020 display-buffer-default specially.
15021 (display-buffer-reuse-selected-window)
15022 (display-buffer-same-window, display-buffer-maybe-same-window)
15023 (display-buffer-reuse-window, display-buffer-pop-up-frame)
15024 (display-buffer-pop-up-window)
15025 (display-buffer-reuse-or-pop-window)
15026 (display-buffer-use-some-window): New functions.
15027 (display-buffer-default-action): Use them.
15028 (display-buffer-default): Delete.
15029 (pop-to-buffer-1): Fix choice of actions.
15030
15031 2011-09-02 Stefan Monnier <monnier@iro.umontreal.ca>
15032
15033 * minibuffer.el (completion--insert-strings): Don't get confused by
15034 completion entries that end with an LF char.
15035
15036 2011-09-01 Eli Zaretskii <eliz@gnu.org>
15037
15038 * window.el (frame-auto-delete, window-deletable-p): Doc fix.
15039
15040 2011-09-01 Chong Yidong <cyd@stupidchicken.com>
15041
15042 * window.el (display-buffer): Restore interactive spec.
15043 (display-buffer-same-window, display-buffer-other-window):
15044 New functions.
15045 (pop-to-buffer-1): New function. Use the above.
15046 (pop-to-buffer, pop-to-buffer-same-window): Use it.
15047 (pop-to-buffer-other-window, pop-to-buffer-other-frame): Delete.
15048
15049 * view.el (view-buffer-other-window, view-buffer-other-frame):
15050 Just use pop-to-buffer.
15051
15052 2011-09-01 Thierry Volpiatto <thierry.volpiatto@gmail.com>
15053
15054 * vc/vc-rcs.el (vc-rcs-responsible-p): Handle directories. (Bug#9391)
15055
15056 2011-09-01 Wilfred Hughes <wilfred@potatolondon.com> (tiny change)
15057
15058 * vc/vc-git.el (vc-git-grep): Use --no-color. (Bug#9408)
15059
15060 2011-08-31 Richard Stallman <rms@gnu.org>
15061
15062 * mail/rmail.el (rmail-epa-decrypt): Rewrite to take account
15063 of the separation of rmail-view-buffer from rmail-buffer.
15064 If you say no to "replace original", the decrypt is in the
15065 view buffer. If you say yes, the decrypt goes into the
15066 rmail buffer also.
15067
15068 2011-08-31 Martin Rudalics <rudalics@gmx.at>
15069
15070 * window.el (display-buffer-window): Rewrite doc-string.
15071 (display-buffer-record-window): New function.
15072 (display-buffer-macro-specifiers)
15073 (display-buffer-even-window-sizes, display-buffer-set-height)
15074 (display-buffer-set-width, display-buffer-in-window)
15075 (display-buffer-reuse-window, display-buffer-split-specifiers)
15076 (display-buffer-side-specifiers, display-buffer-split-window-1)
15077 (display-buffer-split-window, display-buffer-split-atom-window)
15078 (display-buffer-pop-up-window, display-buffer-pop-up-frame)
15079 (display-buffer-pop-up-side-window, display-buffer-in-side-window)
15080 (display-buffer-other-window-means-other-frame)
15081 (display-buffer-normalize-special)
15082 (display-buffer-normalize-default)
15083 (display-buffer-normalize-argument)
15084 (display-buffer-normalize-alist-1, display-buffer-normalize-alist)
15085 (display-buffer-normalize-specifiers, display-buffer-frame)
15086 (display-buffer-same-window, display-buffer-same-frame)
15087 (display-buffer-other-window)
15088 (display-buffer-same-frame-other-window)
15089 (display-buffer-other-frame, pop-to-buffer-same-window)
15090 (pop-to-buffer-same-frame, pop-to-buffer-other-window)
15091 (pop-to-buffer-same-frame-other-window, pop-to-buffer-other-frame)
15092 (switch-to-buffer-same-frame)
15093 (switch-to-buffer-other-window-same-frame)
15094 (display-buffer-alist-of-strings-p, display-buffer-alist-add)
15095 (display-buffer-alist-set-1, display-buffer-alist-set-2)
15096 (display-buffer-alist-set): Remove.
15097 (display-buffer-function, special-display-buffer-names)
15098 (special-display-regexps, special-display-function):
15099 In doc-string refer to display-buffer-window and quit-restore
15100 parameter.
15101 (pop-up-frame-alist, pop-up-frame-function, special-display-p)
15102 (special-display-frame-alist, special-display-popup-frame)
15103 (same-window-buffer-names, same-window-regexps, same-window-p)
15104 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
15105 (split-window-preferred-function, split-height-threshold)
15106 (split-width-threshold, window-splittable-p)
15107 (split-window-sensibly, window--try-to-split-window)
15108 (window--frame-usable-p, even-window-heights)
15109 (window--even-window-heights, window--display-buffer-1)
15110 (window--display-buffer-2, display-buffer-other-frame):
15111 Restore old Emacs 23 code, order and doc-strings where applicable.
15112 (display-buffer-default, display-buffer-assq-regexp): New functions.
15113 (display-buffer-alist): Rewrite doc-string.
15114 (display-buffer-default-action)
15115 (display-buffer-overriding-action): New variables.
15116 (display-buffer, switch-to-buffer): Rewrite.
15117 (pop-to-buffer): Restore Emacs 23 behavior but use
15118 window-normalize-buffer-to-display.
15119 (switch-to-buffer-other-window, switch-to-buffer-other-frame):
15120 Restore Emacs 23 behavior but use
15121 window-normalize-buffer-to-switch-to.
15122 (pop-to-buffer-same-window): Rewrite.
15123 (pop-to-buffer-other-window, pop-to-buffer-other-frame):
15124 Rewrite using Emacs 23 options.
15125
15126 2011-08-31 Michael Albinus <michael.albinus@gmx.de>
15127
15128 * net/tramp.el (tramp-root-regexp): Remove.
15129 (tramp-completion-file-name-regexp-unified)
15130 (tramp-completion-file-name-regexp-separate)
15131 (tramp-completion-file-name-regexp-url): Don't use leading volume
15132 letter on w32 systems. (Bug#5303, Bug#9311)
15133 (tramp-drop-volume-letter): Simplify definition.
15134 Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
15135
15136 2011-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
15137
15138 * subr.el (event-modifiers): Fix "missing modifier" part of docstring
15139 (bug#9356).
15140
15141 2011-08-30 Reuben Thomas <rrt@sc3d.org> (tiny change)
15142
15143 * vc/pcvs-defs.el (cvs-find-file-and-jump): Docstring typo (bug#9369).
15144
15145 2011-08-29 Juri Linkov <juri@jurta.org>
15146
15147 * isearch.el (isearch-done): Don't display message "Mark saved"
15148 when arg `edit' is non-nil to prevent its flicker in the echo area.
15149
15150 2011-08-28 Chong Yidong <cyd@stupidchicken.com>
15151
15152 * emacs-lisp/package.el (package-menu-mark-delete): Allow marking
15153 obsolete packages for deletion.
15154
15155 2011-08-28 Christoph Scholtes <cschol2112@googlemail.com>
15156
15157 * help-mode.el (help-mode-map): Add special-mode-map to parent.
15158 (help-mode): Derive help-mode from special-mode. Don't invoke
15159 view-mode from help-mode.
15160 (help-xref-override-view-map): Remove.
15161 (help-make-xrefs): Remove minor-mode-overriding-map-alist since
15162 view-mode is not used anymore.
15163
15164 2011-08-28 Chong Yidong <cyd@stupidchicken.com>
15165
15166 * server.el (server-port): Doc fix.
15167
15168 * cus-theme.el (custom-theme-choose-mode): Inherit from
15169 special-mode (Bug#9124).
15170 (custom-theme-choose-mode-map): Add special-mode to parent.
15171
15172 2011-08-28 Alan Mackenzie <acm@muc.de>
15173
15174 * progmodes/cc-fonts.el
15175 (c-make-font-lock-BO-decl-search-function): New function.
15176 (c-basic-matchers-after - "Fontify the clauses after various
15177 keywords"): Extract the three keyword lists for the 3 erroneous
15178 constructs from the list of four, and use the new function above
15179 in place of an old one.
15180
15181 2011-08-28 Deniz Dogan <deniz@dogan.se>
15182
15183 * net/rcirc.el (rcirc-insert-prev-input)
15184 (rcirc-insert-next-input): Remove unused argument.
15185
15186 2011-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
15187
15188 * shell.el (shell-parse-pcomplete-arguments): Unquote args (bug#9160).
15189
15190 2011-08-27 Alan Mackenzie <acm@muc.de>
15191
15192 * progmodes/cc-menus.el (cc-imenu-c++-generic-expression): Make it
15193 handle function pointer parameters properly.
15194
15195 2011-08-27 Martin Rudalics <rudalics@gmx.at>
15196
15197 * window.el (display-buffer-reuse-window): Fix case where
15198 selected window was reused with non-nil OTHER-WINDOW argument.
15199 (Bug#9381)
15200
15201 2011-08-27 Deniz Dogan <deniz@dogan.se>
15202
15203 * net/rcirc.el (rcirc-check-auth-status): Adding support for
15204 oftc's NickServ messages.
15205
15206 2011-08-27 Glenn Morris <rgm@gnu.org>
15207
15208 * saveplace.el (save-place-limit): Make it finite. (Bug#9352)
15209
15210 2011-08-26 Chong Yidong <cyd@stupidchicken.com>
15211
15212 * emacs-lisp/package.el (package-install): Call package-initialize
15213 if called interactively.
15214
15215 2011-08-26 Leo Liu <sdl.web@gmail.com>
15216
15217 * emacs-lisp/cl-macs.el (defstruct): Fix format. (Bug#9357)
15218
15219 2011-08-25 Juri Linkov <juri@jurta.org>
15220
15221 * isearch.el (isearch-occur): Let-bind `search-spaces-regexp' to
15222 `search-whitespace-regexp' (bug#9364).
15223
15224 2011-08-25 Juri Linkov <juri@jurta.org>
15225
15226 * isearch.el (isearch-edit-string): Let-bind `search-ring' and
15227 `regexp-search-ring' to their global values to protect from
15228 updating by `read-from-minibuffer' (bug#9185).
15229
15230 2011-08-25 Juri Linkov <juri@jurta.org>
15231
15232 * textmodes/ispell.el (ispell-command-loop): Add newline
15233 at the end of the "Use option `i'..." line.
15234
15235 2011-08-25 Juri Linkov <juri@jurta.org>
15236
15237 * battery.el (display-battery-mode): If `battery-status-function'
15238 or `battery-mode-line-format' is nil, display the message and set
15239 `display-battery-mode' to nil (bug#9363).
15240
15241 2011-08-25 Eli Zaretskii <eliz@gnu.org>
15242
15243 * buff-menu.el (Buffer-menu-buffer+size): Remove calls to
15244 bidi-string-mark-left-to-right; they are unnecessary now.
15245
15246 2011-08-25 Deniz Dogan <deniz@dogan.se>
15247
15248 * net/quickurl.el: Documentation typo fixes.
15249
15250 2011-08-25 Chong Yidong <cyd@stupidchicken.com>
15251
15252 * window.el (bury-buffer, quit-window): Use bury-buffer-internal.
15253
15254 2011-08-25 Glenn Morris <rgm@gnu.org>
15255
15256 * emacs-lisp/derived.el (define-derived-mode): Doc fix.
15257
15258 * mail/smtpmail.el (smtpmail-smtp-user): Add version: tag.
15259 (smtpmail-via-smtp): Handle nil response from smtp.
15260
15261 2011-08-24 Juri Linkov <juri@jurta.org>
15262
15263 * proced.el (proced-marked): Inherit from `error' instead of
15264 `font-lock-warning-face'.
15265
15266 * ibuffer.el (ibuffer-marked-face): Change default face from
15267 `font-lock-warning-face' to `warning'.
15268 (ibuffer-deletion-face): Change default face from
15269 `font-lock-type-face' to `error'.
15270
15271 * battery.el (battery-update): Use the face `error' instead of
15272 `font-lock-warning-face' (bug#6117).
15273
15274 2011-08-24 Juri Linkov <juri@jurta.org>
15275
15276 * faces.el (success): Change face color from "Green3" to
15277 "ForestGreen" on light background (bug#9353).
15278
15279 2011-08-24 Chong Yidong <cyd@stupidchicken.com>
15280
15281 * window.el (quit-window): Rename from quit-restore-window.
15282 Use same arglist as old quit-window.
15283 (frame-auto-delete): Doc fix.
15284
15285 * view.el (view-mode-exit): Use quit-window.
15286
15287 2011-08-24 Juri Linkov <juri@jurta.org>
15288
15289 * isearch.el (isearch-ring-adjust1): Start visiting previous
15290 search strings from the index 0 (-1 + 1) instead of 1 (0 + 1).
15291 (isearch-repeat, isearch-edit-string): Call `isearch-ring-adjust1'
15292 for empty search string (when the last search string is reused
15293 automatically) to adjust the isearch ring to the last element and
15294 prepare the correct index for further M-p commands (bug#9185).
15295
15296 2011-08-24 Kenichi Handa <handa@m17n.org>
15297
15298 * international/ucs-normalize.el: If decomposition property of
15299 CHAR is the default one (i.e. a list of CHAR itself), treat it as
15300 nil.
15301 (nfd, nfkd): Likewise.
15302
15303 2011-08-24 Stefan Monnier <monnier@iro.umontreal.ca>
15304
15305 * mpc.el (mpc--proc-filter): Don't signal mpc-proc-error since signals
15306 from process filters aren't reliably transmitted to the surrounding
15307 accept-process-output.
15308 (mpc-proc-check): New function.
15309 (mpc-proc-sync): Use it (bug#8293)
15310
15311 2011-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
15312
15313 * emacs-lisp/eieio.el (eieio-defmethod, eieio-defgeneric):
15314 Add compatibility functions (bug#9313).
15315
15316 2011-08-23 Eli Zaretskii <eliz@gnu.org>
15317
15318 * cus-start.el (all): Add entry for bidi-paragraph-direction.
15319
15320 * international/uni-bidi.el: Regenerate.
15321
15322 2011-08-23 Kenichi Handa <handa@m17n.org>
15323
15324 * international/charprop.el:
15325 * international/uni-bidi.el:
15326 * international/uni-category.el:
15327 * international/uni-combining.el:
15328 * international/uni-comment.el:
15329 * international/uni-decimal.el:
15330 * international/uni-decomposition.el:
15331 * international/uni-digit.el:
15332 * international/uni-lowercase.el:
15333 * international/uni-mirrored.el:
15334 * international/uni-name.el:
15335 * international/uni-numeric.el:
15336 * international/uni-old-name.el:
15337 * international/uni-titlecase.el:
15338 * international/uni-uppercase.el: Regenerate.
15339
15340 2011-08-23 Martin Rudalics <rudalics@gmx.at>
15341
15342 * help.el (help-window-setup): Fix message displayed when other
15343 window is reused. (Bug#9341)
15344
15345 2011-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
15346
15347 * shell.el (shell-completion-vars): Set pcomplete-arg-quote-list.
15348 * pcomplete.el (pcomplete-quote-argument): Fix thinko (bug#9161).
15349
15350 * pcomplete.el (pcomplete-parse-comint-arguments): Fix inf-loop.
15351 Mark obsolete.
15352 * shell.el (shell-parse-pcomplete-arguments): New function.
15353 (shell-completion-vars): Use it instead (bug#9160).
15354
15355 2011-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
15356
15357 * progmodes/sh-script.el (sh-maybe-here-document): Disable magic in
15358 strings and comments (bug#9333).
15359
15360 * emacs-lisp/debug.el (debug-arglist): New function.
15361 (debug-convert-byte-code): Use it. Handle lexical byte-codes.
15362 (debug-on-entry-1): Handle interpreted closures (bug#9120).
15363
15364 2011-08-22 Juri Linkov <juri@jurta.org>
15365
15366 * progmodes/compile.el (compilation-mode-font-lock-keywords):
15367 Revert regexp that highlights output switches to its old
15368 pre-2010-10-28 value and remove one `?' from it (bug#9319).
15369
15370 * progmodes/grep.el (grep-process-setup): Use `buffer-modified-p'
15371 to check for empty output (bug#9226).
15372
15373 2011-08-22 Chong Yidong <cyd@stupidchicken.com>
15374
15375 * progmodes/scheme.el (scheme-mode-syntax-table): Don't use
15376 symbol-constituent as the default, as that stops font-lock from
15377 working properly (Bug#8843).
15378
15379 2011-08-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
15380
15381 * mail/smtpmail.el (smtpmail-via-smtp): Only bind
15382 `coding-system-for-*' around the process open call to avoid
15383 auth-source side effects.
15384 (smtpmail-try-auth-methods): Expand the secret password.
15385 (smtpmail-query-smtp-server): Allow `quit'-ing out in case the
15386 probe hangs.
15387
15388 2011-08-21 Chong Yidong <cyd@stupidchicken.com>
15389
15390 * term.el (term-mouse-paste): Yank primary selection (Bug#6845).
15391
15392 * emacs-lisp/find-func.el (find-function-noselect): New arg
15393 lisp-only.
15394
15395 * emacs-lisp/edebug.el (edebug-instrument-function): Use it to
15396 signal an error for built-in functions (Bug#6664).
15397
15398 2011-08-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
15399
15400 * mail/smtpmail.el (smtpmail-smtp-user): New variable.
15401 (smtpmail-try-auth-methods): Use it.
15402
15403 2011-08-21 Chong Yidong <cyd@stupidchicken.com>
15404
15405 * font-lock.el (font-lock-fontify-region)
15406 (font-lock-unfontify-region, font-lock-default-fontify-buffer)
15407 (font-lock-default-unfontify-buffer)
15408 (font-lock-default-fontify-region)
15409 (font-lock-default-unfontify-region): Add docstrings (Bug#8624).
15410
15411 * progmodes/compile.el (compilation-error-properties):
15412 Fix confusion between file struct and message struct (Bug#9319).
15413 (compilation-error-regexp-alist-alist): Fix 2011-05-09 change to
15414 `ant' regexp.
15415
15416 * net/browse-url.el (browse-url-firefox): Don't call
15417 browse-url-firefox-sentinel unless using -remote (Bug#9328).
15418
15419 2011-08-20 Glenn Morris <rgm@gnu.org>
15420
15421 * tutorial.el (help-with-tutorial): Avoid an error on short screens.
15422
15423 * tutorial.el (tutorial--default-keys): Update some default bindings.
15424
15425 * files.el (hack-local-variables): Fully ignore case for "mode:".
15426
15427 2011-08-20 Alan Mackenzie <acm@muc.de>
15428
15429 Resolve invalid use of a regexp in regexp-opt.
15430
15431 * progmodes/cc-fonts.el (c-complex-decl-matchers): Add in special
15432 detection for a java annotation.
15433
15434 * progmodes/cc-engine.el (c-forward-decl-or-cast-1): Add in special
15435 detection for a java annotation.
15436
15437 * progmodes/cc-langs.el (c-prefix-spec-kwds-re): Remove the special
15438 handling for java.
15439 (c-modifier-kwds): Remove the regexp "@[A-za-z0-9]+".
15440
15441 2011-08-20 Chong Yidong <cyd@stupidchicken.com>
15442
15443 * startup.el (normal-top-level-add-subdirs-to-load-path): Doc fix
15444 (Bug#9274).
15445
15446 2011-08-20 Alan Mackenzie <acm@muc.de>
15447
15448 Fontify CPP expressions correctly when starting in the middle of
15449 such a construct. Mainly for when jit-lock etc. starts a chunk
15450 here.
15451
15452 * progmodes/cc-fonts.el (c-font-lock-context): New buffer local
15453 variable.
15454 (c-make-font-lock-search-form): New function, extracted from
15455 c-make-font-lock-search-function.
15456 (c-make-font-lock-search-function): Use the above function.
15457 (c-make-font-lock-context-search-function): New function.
15458 (c-cpp-matchers): Enhance the preprocessor expression case with
15459 the above function
15460 (c-font-lock-complex-decl-prepare): Test for being in a CPP form
15461 which takes an expression.
15462
15463 * progmodes/cc-langs.el (c-cpp-expr-intro-re): New lang-variable.
15464
15465 2011-08-20 Martin Rudalics <rudalics@gmx.at>
15466
15467 * window.el (display-buffer-reuse-window)
15468 (display-buffer-pop-up-window): Don't reuse or split a side
15469 window.
15470
15471 2011-08-19 Glenn Morris <rgm@gnu.org>
15472
15473 * files.el (hack-local-variables-prop-line, hack-local-variables):
15474 Downcase "Mode:". (Bug#9331)
15475
15476 2011-08-18 Chong Yidong <cyd@stupidchicken.com>
15477
15478 * international/characters.el: Add L and R categories.
15479
15480 * subr.el (bidi-string-mark-left-to-right): Rename from
15481 string-mark-left-to-right. Use category search.
15482
15483 * buff-menu.el (Buffer-menu-buffer+size): Callers changed.
15484
15485 2011-08-18 Juri Linkov <juri@jurta.org>
15486
15487 * faces.el (error, warning, success): New faces with definitions
15488 copied from old default values of `font-lock-warning-face',
15489 `compilation-warning', `compilation-info' (bug#6117).
15490
15491 * font-lock.el (font-lock-warning-face): Inherit from `error'.
15492
15493 * progmodes/compile.el (compilation-error): Inherit from `error'.
15494 (compilation-warning): Inherit from `warning'.
15495 (compilation-info): Inherit from `success'.
15496
15497 * dired.el (dired-marked): Inherit from `warning'.
15498 (dired-flagged): Inherit from `error'.
15499
15500 2011-08-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
15501
15502 * mail/smtpmail.el (auth-source): Require to avoid problems with
15503 binding variables (bug#9298). Also clean up some unused
15504 autoloads.
15505
15506 * net/network-stream.el (network-stream-open-starttls):
15507 Support using starttls.el without using gnutls-cli.
15508
15509 2011-08-17 Juri Linkov <juri@jurta.org>
15510
15511 * progmodes/grep.el (rgrep): Handle the case when
15512 `grep-find-command' is a cons cell (bug#9278).
15513
15514 2011-08-17 Martin Rudalics <rudalics@gmx.at>
15515
15516 * window.el (display-buffer-pop-up-frame): Run frame creation
15517 function with BUFFER current (as special-display-popup-frame
15518 does). Reported by Drew Adams.
15519
15520 2011-08-17 Daiki Ueno <ueno@unixuser.org>
15521
15522 * epa-mail.el: Simplify GnuPG group expansion using
15523 epg-expand-group.
15524 (epa-mail-group-alist, epa-mail-group-modtime)
15525 (epa-mail-gnupg-conf-file, epa-mail-parse-groups)
15526 (epa-mail-sync-groups, epa-mail-expand-recipient-1)
15527 (epa-mail-expand-recipients-2, epa-mail-expand-recipients):
15528 Remove.
15529
15530 2011-08-16 Feng Li <fengli@gmail.com> (tiny change)
15531
15532 * calc/calc-ext.el (math-defintegral-2): Remove nested backquote.
15533
15534 2011-08-16 Alan Mackenzie <acm@muc.de>
15535
15536 * progmodes/cc-engine.el (c-state-cache-non-literal-place):
15537 Correct, to avoid the inside of macros.
15538
15539 2011-08-16 Richard Stallman <rms@gnu.org>
15540
15541 * epa-mail.el: Handle GnuPG group definitions.
15542 (epa-mail-group-alist, epa-mail-group-modtime)
15543 (epa-mail-gnupg-conf-file): New variables.
15544 (epa-mail-parse-groups, epa-mail-sync-groups)
15545 (epa-mail-expand-recipient-1, epa-mail-expand-recipients-2)
15546 (epa-mail-expand-recipients): New functions.
15547 (epa-mail-encrypt): Call epa-mail-expand-recipients.
15548
15549 * mail/rmail.el (rmail-epa-decrypt): New command.
15550
15551 * epa.el (epa-decrypt-region): New arg MAKE-BUFFER-FUNCTION.
15552 Don't bind buffer-read-only, just inhibit-read-only.
15553 (epa--find-coding-system-for-mime-charset): Fix the non-xemacs case.
15554 (epa-decrypt-armor-in-region): Make error message clearer.
15555
15556 2011-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
15557
15558 * minibuffer.el (completion-pcm--merge-completions): Don't merge "a1b"
15559 and "a2b" to "ab" for `prefix'.
15560
15561 2011-08-14 Chong Yidong <cyd@stupidchicken.com>
15562
15563 * ibuf-ext.el (ibuffer-filter-disable): New arg for deleting
15564 filter groups.
15565 (ibuffer-included-in-filter-p-1): Use it. Suggested by Rafaël
15566 Fourquet (Bug#8804).
15567
15568 2011-08-12 Juanma Barranquero <lekktu@gmail.com>
15569
15570 * startup.el (argi): Declare as global variable (bug#9275).
15571
15572 2011-08-12 Chong Yidong <cyd@stupidchicken.com>
15573
15574 * subr.el (string-mark-left-to-right): Search the entire string
15575 for RTL script, not just the terminating character. Doc fix.
15576
15577 2011-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
15578
15579 * progmodes/js.el (js-syntax-propertize, js-syntax-propertize-regexp):
15580 New function.
15581 (js--regexp-literal, js-syntax-propertize-function): Remove.
15582 (js-mode): Use js-syntax-propertize to handle multilines (bug#9183).
15583 (js-mode-map): Don't rebind electric keys.
15584 (js-insert-and-indent): Remove.
15585 (js-mode): Setup electric-layout and electric-indent instead.
15586
15587 * epa-file.el (epa-file-select-keys): Revert to nil default (bug#9280).
15588
15589 2011-08-12 Daiki Ueno <ueno@unixuser.org>
15590
15591 * epa.el (epa-progress-callback-function): Fix the logic of
15592 displaying progress.
15593 * epa-file.el (epa-file-insert-file-contents): Make progress
15594 display more user-friendly.
15595 (epa-file-write-region): Ditto.
15596
15597 2011-08-10 Chong Yidong <cyd@stupidchicken.com>
15598
15599 * subr.el (string-mark-left-to-right): New function.
15600
15601 * buff-menu.el (Buffer-menu-buffer+size): Remove LRM argument.
15602 Use string-mark-left-to-right.
15603 (list-buffers-noselect): Caller changed.
15604
15605 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
15606 Use string-mark-left-to-right.
15607 (tabulated-list-print): Recenter after moving point.
15608
15609 2011-08-10 Juri Linkov <juri@jurta.org>
15610
15611 * progmodes/grep.el (rgrep): Don't bind `process-connection-type'.
15612 This finishes incomplete reversion of 2011-06-30T01:09:13Z!larsi@gnus.org
15613 intended by 2011-07-06T15:49:19Z!larsi@gnus.org.
15614
15615 2011-08-09 Chong Yidong <cyd@stupidchicken.com>
15616
15617 * hi-lock.el (hi-lock-unface-buffer): Fix interactive spec
15618 (Bug#7554).
15619
15620 2011-08-09 Andreas Schwab <schwab@linux-m68k.org>
15621
15622 * xt-mouse.el (xterm-mouse-event-read): Try to recover the raw
15623 character. (Bug#6594)
15624
15625 2011-08-08 Chong Yidong <cyd@stupidchicken.com>
15626
15627 * image-dired.el: Don't use find-file for temporary work (Bug#7895).
15628 (image-dired--with-db-file): New macro.
15629 (image-dired-write-tags, image-dired-remove-tag)
15630 (image-dired-create-gallery-lists, image-dired-write-comments)
15631 (image-dired-get-comment, image-dired-mark-tagged-files)
15632 (image-dired-list-tags, image-dired-gallery-generate): Use it.
15633 (image-dired-gallery-generate): Use insert-file-contents.
15634
15635 * time.el (display-time-world-list, display-time-world-display):
15636 * time-stamp.el (time-stamp-string):
15637 * vc/add-log.el (add-change-log-entry): Use setenv instead of
15638 set-time-zone-rule (Bug#7337).
15639
15640 2011-08-08 Daiki Ueno <ueno@unixuser.org>
15641
15642 * epg.el (epg--status-KEYEXPIRED, epg--status-KEYREVOKED): Fix typo.
15643 (epg-error-to-string, epg-errors-to-string): New function.
15644 (epg-wait-for-completion): Reverse errors list.
15645 (epg--check-error-for-decrypt, epg-sign-file, epg-sign-string)
15646 (epg-encrypt-file, epg-encrypt-string, epg-export-keys-to-file)
15647 (epg--import-keys-1, epg-receive-keys, epg-delete-keys)
15648 (epg-sign-keys, epg-generate-key-from-file)
15649 (epg-generate-key-from-string): Format errors by using
15650 epg-errors-to-string (bug#9255).
15651 (epg--status-INV_SGNR, epg--status-NO_SGNR): New status handler.
15652
15653 2011-08-07 Juri Linkov <juri@jurta.org>
15654
15655 * faces.el (list-faces-display): Remove extra angle bracket
15656 from `help-mode-map'.
15657
15658 * info.el (Info-history-toc-nodes): Doc fix.
15659
15660 * longlines.el (longlines-mode): Doc fix.
15661
15662 2011-08-05 Stefan Monnier <monnier@iro.umontreal.ca>
15663
15664 * progmodes/js.el (js--regexp-literal): Accept regexps at the beginning
15665 of statements and in a few more cases (bug#9183).
15666
15667 * emacs-lisp/cl-macs.el (cl--make-usage-var, cl--make-usage-args):
15668 New functions.
15669 (cl-transform-lambda): Use them (bug#9239).
15670
15671 2011-08-05 Martin Rudalics <rudalics@gmx.at>
15672
15673 * window.el (display-buffer-same-window)
15674 (display-buffer-same-frame, display-buffer-other-window)
15675 (pop-to-buffer-same-window, pop-to-buffer-same-frame)
15676 (pop-to-buffer-other-window)
15677 (pop-to-buffer-same-frame-other-window)
15678 (pop-to-buffer-other-frame): Make them defuns.
15679 (switch-to-buffer): Don't set LABEL argument of pop-to-buffer.
15680
15681 2011-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
15682
15683 * subr.el (make-composed-keymap): Move from C. Change calling
15684 convention, and improve docstring to bring attention to a subtle point.
15685 * minibuffer.el (completing-read-default): Adjust accordingly.
15686
15687 2011-08-03 Michael Albinus <michael.albinus@gmx.de>
15688
15689 * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell)
15690 (tramp-open-shell): Use `tramp-shell-quote-argument'.
15691
15692 * net/trampver.el: Update release number.
15693
15694 2011-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
15695
15696 * progmodes/sh-script.el (sh-font-lock-paren): Don't mistake "main" for
15697 "in" (bug#9190).
15698
15699 2011-08-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
15700
15701 * mail/sendmail.el (sendmail-query-once): Restore the current
15702 buffer after querying (bug#9074).
15703
15704 * dired.el (dired-flagged): Use different faces for marked and
15705 flagged files (bug#6117).
15706
15707 * emacs-lisp/cl-macs.el (dolist): Mention that there's a nil block
15708 (bug#4433).
15709
15710 * ido.el (ido-mode): Switch off the message if called
15711 non-interactively.
15712
15713 * mail/smtpmail.el (smtpmail-query-smtp-server): Try port 25
15714 before 587, since it appears that that's more likely to work for
15715 more people.
15716
15717 * cus-edit.el (custom-file): When running under emacs -q, always
15718 refuse to save the customizations, even if the .emacs file doesn't
15719 exist.
15720
15721 * info.el: Remove the `Info-beginning-of-buffer' function
15722 (bug#8325).
15723
15724 * net/network-stream.el (network-stream-open-starttls):
15725 Use `starttls-available-p' to see whether starttls.el can be used.
15726
15727 2011-08-01 Martin Rudalics <rudalics@gmx.at>
15728
15729 * window.el (display-buffer-in-window): Don't set dedicated status
15730 of window here (Bug#9215).
15731 (display-buffer-pop-up-window, display-buffer-pop-up-frame)
15732 (display-buffer-pop-up-side-window)
15733 (display-buffer-in-side-window): Set dedicated status of window here.
15734
15735 2011-08-01 Stefan Monnier <monnier@iro.umontreal.ca>
15736
15737 * emacs-lisp/package.el (package-generate-autoloads): Load autoloads
15738 before binding generated-autoload-file.
15739
15740 2011-08-01 Deniz Dogan <deniz@dogan.se>
15741
15742 * net/rcirc.el (rcirc-handler-333): Clarify docstring.
15743
15744 2011-07-30 Michael Albinus <michael.albinus@gmx.de>
15745
15746 Sync with Tramp 2.2.2.
15747
15748 * net/trampver.el: Update release number.
15749
15750 2011-07-30 Juri Linkov <juri@jurta.org>
15751
15752 * dired-aux.el (dired-touch-initial): Remove function.
15753 (dired-do-chxxx): For op-symbol `touch', set `initial' to the
15754 current time, and `default' to the last modification time of the
15755 current marked file (bug#6887).
15756
15757 2011-07-28 Jose E. Marchesi <jemarch@gnu.org>
15758
15759 * simple.el (goto-line): Use string-to-number to provide a
15760 numeric argument to read-number (bug#9163).
15761
15762 2011-07-27 Michael Albinus <michael.albinus@gmx.de>
15763
15764 * net/tramp-sh.el (tramp-maybe-send-script): Don't let-bind the
15765 connection process, it could be nil.
15766
15767 2011-07-27 Leo Liu <sdl.web@gmail.com>
15768
15769 Simplify url handling in rcirc-mode.
15770
15771 * net/rcirc.el (rcirc-browse-url-map, rcirc-browse-url-at-point)
15772 (rcirc-browse-url-at-mouse): Remove.
15773 * net/rcirc.el (rcirc-markup-urls): Use `make-button'.
15774
15775 2011-07-26 Alan Mackenzie <acm@muc.de>
15776
15777 Fontify bitfield declarations properly.
15778
15779 * progmodes/cc-langs.el (c-has-bitfields): New lang variable.
15780 (c-symbol-chars): Now exported as a lang variable.
15781 (c-not-primitive-type-keywords): New lang variable.
15782
15783 * progmodes/cc-fonts.el (c-font-lock-declarations): Jump over the
15784 QT keyword "more" to prevent "more slots: ...." being spuriously
15785 parsed as a bitfield declaration.
15786
15787 * progmodes/cc-engine.el (c-beginning-of-statement-1):
15788 Refactor and enhance to handle bitfield declarations.
15789 (c-punctuation-in): New function.
15790 (c-forward-decl-or-cast-1): Enhance CASE 3 to handle bitfield
15791 declarations properly.
15792
15793 2011-07-26 Ulf Jasper <ulf.jasper@web.de>
15794
15795 * calendar/icalendar.el (icalendar--all-events): Take care of
15796 multiple vcalendars in a single file.
15797 (icalendar--convert-float-to-ical): Checkdoc fixes.
15798
15799 2011-07-25 Deniz Dogan <deniz@dogan.se>
15800
15801 * image.el (insert-image): Clarifying docstring.
15802
15803 2011-07-24 Michael Albinus <michael.albinus@gmx.de>
15804
15805 * net/tramp-sh.el (tramp-barf-unless-okay): Return the value of
15806 `tramp-send-command-and-check' if there is no error.
15807 (tramp-send-command-and-read): Suppress *all* errors if NOERROR.
15808
15809 2011-07-22 Alan Mackenzie <acm@muc.de>
15810
15811 Prevent cc-langs.elc being loaded at run time.
15812
15813 * progmodes/cc-mode.el: Remove two autoload forms which loaded
15814 cc-langs.
15815
15816 * progmodes/cc-langs.el (c-make-init-lang-vars-fun): Don't emit
15817 "(require 'cc-langs)". Quote a form so it will evaluate at
15818 (cc-mode's) compilation time.
15819
15820 2011-07-22 Michael Albinus <michael.albinus@gmx.de>
15821
15822 * net/tramp.el (tramp-file-name-handler): Avoid recursive
15823 loading. (Bug#9114)
15824
15825 2011-07-21 Martin Rudalics <rudalics@gmx.at>
15826
15827 * window.el (display-buffer-pop-up-window)
15828 (display-buffer-pop-up-side-window)
15829 (display-buffer-in-side-window): Call display-buffer-set-height
15830 and display-buffer-set-width after setting the new window's
15831 buffer so `fit-window-to-buffer' and friends work on the right buffer.
15832
15833 2011-07-20 Sam Steingold <sds@gnu.org>
15834
15835 * progmodes/etags.el (etags-file-of-tag, etags-tags-table-files)
15836 (etags-tags-included-tables): Call `convert-standard-filename' on
15837 the file names contained in TAGS so that windows Emacs can handle
15838 TAGS files created by cygwin ctags.
15839
15840 2011-07-20 Lars Magne Ingebrigtsen <larsi@gnus.org>
15841
15842 * proced.el (proced-update): Revert yesterday's bug#1779 patch,
15843 which apparently didn't work.
15844
15845 2011-07-19 Roland Winkler <winkler@gnu.org>
15846
15847 * proced.el (proced-send-signal): For *Marked Processes* buffer
15848 put point at beginning of buffer.
15849
15850 2011-07-19 Stephen Berman <stephen.berman@gmx.net>
15851
15852 * proced.el (proced-format): Make header lines align with the text
15853 (bug#1779).
15854
15855 2011-07-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
15856
15857 * view.el (view-buffer): Allow running in `special' modes if we're
15858 visiting a file (bug#8615).
15859
15860 2011-07-19 Martin Rudalics <rudalics@gmx.at>
15861
15862 * window.el (display-buffer-alist-of-strings-p)
15863 (display-buffer-alist-set-1, display-buffer-alist-set-2):
15864 New functions.
15865 (display-buffer-alist-set): Rewrite to handle Emacs 23 options
15866 more accurately.
15867
15868 2011-07-18 Alan Mackenzie <acm@muc.de>
15869
15870 Fontify declarators properly when, e.g., a jit-lock chunk begins
15871 inside a declaration.
15872
15873 * progmodes/cc-langs.el (c-symbol-chars): Correct a typo.
15874
15875 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
15876 New function.
15877 (c-complex-decl-matchers): Insert reference to
15878 c-font-lock-enclosing-decls.
15879
15880 * progmodes/cc-engine.el (c-backward-single-comment):
15881 (c-backward-comments): Bind open-paren-in-column-0-is-defun-start
15882 to nil around calls to (forward-comment -1).
15883
15884 2011-07-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
15885
15886 * image.el (put-image): Doc typo fix.
15887
15888 * progmodes/etags.el (tags-search): Doc typo fix.
15889
15890 * mail/smtpmail.el (smtpmail-via-smtp): Query the user for
15891 password if we get errors 550 to 554.
15892
15893 2011-07-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
15894
15895 * net/gnutls.el (gnutls-log-level): Remove.
15896
15897 * textmodes/fill.el (adaptive-fill-regexp): Include EN DASH as an
15898 indentation character (bug#6380).
15899
15900 * files.el (buffer-offer-save): Made permanently local (bug#6241).
15901
15902 * doc-view.el (doc-view-make-safe-dir): Rewrite the error message
15903 to clarify what the problem is (bug#4291).
15904
15905 * simple.el (current-kill): Clarify what
15906 `interprogram-paste-function' does (bug#7500).
15907 (auto-fill-mode): Document `auto-fill-function' in relation to
15908 `auto-fill-mode' (bug#2470).
15909
15910 2011-07-16 Lawrence Mitchell <wence@gmx.li>
15911
15912 * emacs-lisp/cl-macs.el (defstruct): Ignore argument to setf
15913 method if slot is read-only (bug#9035).
15914
15915 2011-07-16 Martin Rudalics <rudalics@gmx.at>
15916
15917 * frame.el (select-frame-set-input-focus): New argument NORECORD.
15918 * window.el (pop-to-buffer): Select window used even if it was
15919 selected before, see discussion of (Bug#8615), (Bug#6954).
15920 Pass argument NORECORD on to select-frame-set-input-focus.
15921
15922 2011-07-15 Glenn Morris <rgm@gnu.org>
15923
15924 * subr.el (read-char-choice): Allow quitting. (Bug#9001)
15925 Respect help-form.
15926
15927 2011-07-09 Lawrence Mitchell <wence@gmx.li>
15928
15929 * net/gnutls.el (gnutls-min-prime-bits): New variable.
15930 (gnutls-negotiate): Use it.
15931
15932 2011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
15933
15934 * net/gnutls.el (gnutls-negotiate):
15935 Upcase `gnutls-algorithm-priority'.
15936
15937 2011-07-15 Glenn Morris <rgm@gnu.org>
15938
15939 * jka-compr.el (jka-compr-verbose): Move from here...
15940 * jka-cmpr-hook.el (jka-compr-verbose): ... to here. (Bug#9090)
15941 Add missing :version tag.
15942 * info.el: No need to require jka-compr when compiling.
15943
15944 2011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
15945
15946 * net/gnutls.el (gnutls-algorithm-priority): New variable.
15947 (gnutls-negotiate): Use it.
15948
15949 * emacs-lisp/cl-macs.el (declare): Link to the "Declarations" node.
15950
15951 * info.el (Info-beginning-of-buffer): New command.
15952 (Info-mode-map): Use it instead of `beginning-of-buffer' to allow
15953 announcing `b' as the key (bug#8325).
15954 (Info-mode-menu): Use `Info-beginning-of-buffer' for consistency.
15955
15956 * emacs-lisp/cl-macs.el (declare): Doc string fix-up.
15957
15958 * international/mule-cmds.el
15959 (describe-specified-language-support): Make the error message
15960 clearer (bug#8905).
15961
15962 * emacs-lisp/cl-macs.el (declare): Add a doc string (bug#8690).
15963
15964 * isearch.el (isearch-barrier): Add a doc string, since it's
15965 mentioned in a function doc string (bug#8678).
15966
15967 2011-07-15 Martin Rudalics <rudalics@gmx.at>
15968
15969 * window.el (switch-to-buffer): Call pop-to-buffer with normalized
15970 buffer argument (Bug#9083) and self-identifying label argument.
15971
15972 2011-07-15 Glenn Morris <rgm@gnu.org>
15973
15974 * emacs-lisp/debug.el (debug): Doc fix. (Bug#8273)
15975
15976 2011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
15977
15978 * man.el (Man-fontify-manpage): Fix message when formatting the
15979 man page (bug#7929).
15980
15981 2011-07-14 Eli Zaretskii <eliz@gnu.org>
15982
15983 * buff-menu.el (Buffer-menu-buffer+size): Accept an additional
15984 argument LRM; if non-nil, append an invisible LRM character to the
15985 buffer name.
15986 (list-buffers-noselect): Call Buffer-menu-buffer+size with the
15987 last argument non-nil, when formatting buffer names.
15988 (Buffer-menu-mode, list-buffers-noselect): Force left-to-right
15989 paragraph direction.
15990
15991 2011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
15992
15993 * man.el (Man-bgproc-sentinel): Skip any arguments and only output
15994 the man page name (bug#7929).
15995
15996 * image.el (put-image): Mention the `put-image' overlay property
15997 (bug#7834).
15998
15999 * scroll-bar.el (set-scroll-bar-mode): Mention that
16000 `scroll-bar-mode' lists the values (bug#7772).
16001
16002 * image-mode.el (image-mode-fit-frame): Mention that it's a toggle
16003 command (bug#7729).
16004
16005 * rect.el (apply-on-rectangle): Return the point after the last
16006 operation.
16007 (string-rectangle): Go to the point after the last operation
16008 (bug#7522).
16009
16010 * printing.el (pr-toggle-region): Clarify the documentation
16011 slightly (bug#7493).
16012
16013 * time.el (display-time-update):
16014 Allow `display-time-mail-function' to return nil (bug#7158).
16015 Fix suggested by Detlev Zundel.
16016
16017 * vc/diff.el (diff): Clarify the order the file names are read
16018 (bug#7111).
16019
16020 * mouse.el (mouse-set-region): Link to `mouse-drag-copy-region' in
16021 the doc string (bug#7015).
16022
16023 * font-lock.el (font-lock-maximum-decoration): Mention what
16024 numeric levels mean (bug#6935).
16025
16026 * startup.el (initial-buffer-choice): Don't mention the `none'
16027 selection, which is against policy.
16028
16029 2011-07-14 Martin Rudalics <rudalics@gmx.at>
16030
16031 * window.el (display-buffer-normalize-special):
16032 Replace `dedicated' by `dedicate' to dedicate window (Bug#9072).
16033
16034 2011-07-14 Eli Zaretskii <eliz@gnu.org>
16035
16036 * subr.el (version<, version<=, version=): Mention "-CVS" and
16037 "-12345" alpha version numbers.
16038
16039 2011-07-14 Chong Yidong <cyd@stupidchicken.com>
16040
16041 * bindings.el: Add advertised binding for set-mark-command
16042 (Bug#5772).
16043
16044 2011-07-14 Chong Yidong <cyd@stupidchicken.com>
16045
16046 * bindings.el (mode-line-other-buffer):
16047 * bookmark.el (bookmark-bmenu-2-window):
16048 * bs.el (bs-cycle-next, bs-cycle-previous):
16049 * net/tramp-cmds.el (tramp-append-tramp-buffers): Revert to using
16050 switch-to-buffer.
16051
16052 * net/tramp-compat.el (tramp-compat-pop-to-buffer-same-window):
16053 Delete.
16054
16055 2011-07-14 Juanma Barranquero <lekktu@gmail.com>
16056
16057 * follow.el (follow-debug-message, follow-redisplay):
16058 * jka-cmpr-hook.el (with-auto-compression-mode):
16059 Fix typos in docstrings.
16060
16061 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
16062
16063 * subr.el (with-silent-modifications): Clarify somewhat what the
16064 macro inhibits (bug#6525).
16065
16066 * simple.el (eval-expression): Note what it does if called
16067 interactively (bug#6495).
16068
16069 2011-07-13 Chong Yidong <cyd@stupidchicken.com>
16070
16071 * window.el (switch-to-buffer): New arg FORCE-SAME-WINDOW.
16072 Use pop-to-buffer buffer-or-name if it is nil.
16073
16074 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
16075 Remove switch-to-buffer.
16076
16077 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
16078
16079 * files.el (make-directory): Clarify that an error will be raised
16080 if there's an error (bug#6397).
16081
16082 * startup.el (initial-buffer-choice): Add `none' as a choice
16083 (bug#6234).
16084
16085 * subr.el (add-hook): Clarify section about buffer-local hooks
16086 (bug#6218).
16087
16088 * dired.el (dired-flagged): Clarify doc string (bug#6117).
16089
16090 2011-07-13 Juanma Barranquero <lekktu@gmail.com>
16091
16092 * tabify.el (untabify): Preserve the current column so that point
16093 doesn't move (bug#6032).
16094
16095 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
16096
16097 * progmodes/cperl-mode.el (cperl-syntaxify-by-font-lock):
16098 Rewrite to avoid awkward possessive "s" (bug#5986).
16099
16100 2011-07-13 Glenn Morris <rgm@gnu.org>
16101
16102 * dired.el (dired-use-ls-dired): Doc fix. (Bug#9039).
16103 (dired-insert-directory): Give a message the first time
16104 if ls is found not to support --dired.
16105
16106 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
16107
16108 * simple.el (toggle-truncate-lines): Clarify what is toggled
16109 (bug#5580). Text by Drew Adams.
16110
16111 2011-07-13 Chong Yidong <cyd@stupidchicken.com>
16112
16113 * simple.el (blink-matching-open): Make the error message from the
16114 last change less verbose.
16115
16116 2011-07-13 Dan Nicolaescu <dann@ics.uci.edu>
16117
16118 * font-lock.el (font-lock-comment-face): Use the high contrast
16119 "yellow" color for font-lock-comment-face on low color terminals
16120 using a dark background color (bug#4221).
16121
16122 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
16123
16124 * dired.el (dired-insert-set-properties): Make the doc string
16125 reflect what it does now (bug#5325).
16126
16127 * simple.el (blink-matching-open): Say that we were unable to find
16128 the match within the limit, if we're limited (bug#5122).
16129
16130 * international/mule-cmds.el (prefer-coding-system): Add an
16131 example (bug#4869).
16132
16133 * progmodes/etags.el (tags-search): Document `file-list-form'
16134 (bug#4731).
16135
16136 2011-07-13 Lawrence Mitchell <wence@gmx.li>
16137
16138 * net/browse-url.el (browse-url-default-browser)
16139 (browse-url-browser-function): Make the default browser choice a
16140 bit more logical (bug#4300). Also clean up the doc string.
16141
16142 2011-07-13 Juanma Barranquero <lekktu@gmail.com>
16143
16144 * bindings.el (completion-ignored-extensions): Add OpenMCL/Clozure
16145 binary endings (bug#4440).
16146
16147 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
16148
16149 * info.el (info-insert-file-contents): Inhibit jka-compr messages,
16150 which can be pretty annoying (bug#8971).
16151
16152 * jka-compr.el (jka-compr-verbose): New variable, and use
16153 throughout (bug#8971).
16154
16155 * info.el (Info-find-file): Fall back on the installation
16156 directory if we can't find the info node anywhere else.
16157
16158 2011-07-13 Sergei Organov <osv@javad.com> (tiny change)
16159
16160 * vc/vc.el (vc-revert-file):
16161 Don't set file time-stamp in the past. (Bug#5181)
16162
16163 2011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
16164
16165 * files.el (after-find-file): Give a better error message when
16166 trying to find a symlink that points to a file that doesn't exist
16167 (bug#4398).
16168
16169 * progmodes/cc-vars.el: Remove (probably) misleading comment
16170 (bug#4396).
16171
16172 2011-07-12 Johan Bockgård <bojohan@gnu.org>
16173
16174 * mouse-sel.el (mouse-sel-primary-overlay): Use the `region' face.
16175
16176 2011-07-12 Chong Yidong <cyd@stupidchicken.com>
16177
16178 * mouse-sel.el: Hack restoring functionality, while keeping
16179 compatibility with 2010-07-03 changes to mouse selection.
16180 (mouse-sel-primary-overlay): New var.
16181 (mouse-sel-selection-alist): Use it.
16182 (mouse-sel-mode): Doc fix; remove points that are default features
16183 of mouse.el.
16184
16185 2011-07-12 Johan Bockgård <bojohan@gnu.org>
16186
16187 * progmodes/compile.el (compilation-error-regexp-alist-alist):
16188 Fix previous fix (bug#2490).
16189
16190 2011-07-12 Roland Winkler <winkler@gnu.org>
16191
16192 * textmodes/bibtex.el (bibtex-initialize):
16193 Use pop-to-buffer-same-window.
16194 (bibtex-search-entries): Fix interactive call.
16195
16196 2011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
16197
16198 * progmodes/compile.el (compilation-error-regexp-alist-alist):
16199 Fontise bytecomp Error lines more correctly (bug#2490).
16200 Fix suggested by Johan Bockgård.
16201
16202 * subr.el (remove-duplicates): Remove; `delete-dups' is sufficient.
16203
16204 * dired-x.el (dired-guess-default): Use `delete-dups'.
16205
16206 2011-07-12 Chong Yidong <cyd@stupidchicken.com>
16207
16208 * dired.el (dired-mark-prompt):
16209 * dired-aux.el (dired-read-shell-command): Doc fix.
16210
16211 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
16212
16213 * mail/sendmail.el (sendmail-query-once):
16214 Use `customize-save-variable' unconditionally, now that it works under
16215 emacs -Q.
16216
16217 * mail/smtpmail.el (smtpmail-query-smtp-server): Ditto.
16218
16219 * cus-edit.el (custom-file): Take an optional no-error variable.
16220 (customize-save-variable): Set the variable, and give a warning if
16221 running under "emacs -q".
16222
16223 2011-07-11 Juanma Barranquero <lekktu@gmail.com>
16224
16225 * loadhist.el (unload-feature-special-hooks):
16226 Add `auto-coding-functions', `fill-nobreak-predicate' and
16227 `find-directory-functions' (bug#5327).
16228
16229 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
16230
16231 * vc/ediff.el (ediff-patch-file): Clarify doc string (bug#3138).
16232
16233 * cus-edit.el (custom-guess-name-alist): -alist variables should
16234 use the `alist' type (bug#3120). Suggested by Drew Adams.
16235
16236 * printing.el: Add documentation to all the `pr-toggle-' commands.
16237
16238 2011-07-11 Leo Liu <sdl.web@gmail.com>
16239
16240 * files.el (toggle-read-only): Only do the `C-x C-q' warning on VC
16241 backends where it makes sense (bug#2623).
16242
16243 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
16244
16245 * dired-x.el (dired-guess-default): Remove duplicate shell command
16246 entries (bug#2028).
16247 (dired-guess-default): Fix grammar in doc string (bug#2028).
16248 (dired-guess-shell-alist-user): Clarify the example a bit (bug#2030).
16249
16250 * subr.el (remove-duplicates): New conveniency function.
16251
16252 2011-07-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
16253
16254 * tool-bar.el (tool-bar-mode): Clarify positive/negative arguments
16255 (bug#1526).
16256
16257 2011-07-10 Martin Rudalics <rudalics@gmx.at>
16258
16259 * window.el (display-buffer-normalize-default): Don't invert
16260 meaning of even-window-heights. Reported by Eli Zaretskii
16261 <eliz@gnu.org>.
16262
16263 2011-07-10 Bob Rogers <rogers@rgrjr.dyndns.org>
16264
16265 * vc/vc.el (vc-diff-internal): Fix race condition (Bug#1256).
16266
16267 2011-07-10 Chong Yidong <cyd@stupidchicken.com>
16268
16269 * window.el (display-buffer): Fix arguments to
16270 display-buffer-reuse-window in last change.
16271
16272 * faces.el (link): Use a less saturated blue on light backgrounds.
16273
16274 * startup.el (fancy-startup-text, fancy-about-text)
16275 (fancy-startup-tail): Use font-lock faces, for background safety.
16276
16277 2011-07-09 Bob Nnamtrop <bobnnamtrop@gmail.com> (tiny change)
16278
16279 * emulation/viper-cmd.el (viper-change-state-to-vi):
16280 Limit triggering of abbrev expansion (Bug#9038).
16281
16282 2011-07-09 Martin Rudalics <rudalics@gmx.at>
16283
16284 * window.el (display-buffer-default-specifiers): Remove.
16285 (display-buffer-macro-specifiers): Remove default specifiers.
16286 (display-buffer-alist): Default to nil.
16287 (display-buffer-reuse-window): New optional argument other-window.
16288 (display-buffer-pop-up-window): Allow splitting internal
16289 windows. Check whether a live window was created.
16290 (display-buffer-other-window-means-other-frame)
16291 (display-buffer-normalize-arguments): Rename to
16292 display-buffer-normalize-argument and rewrite. Set the
16293 other-window specifier.
16294 (display-buffer-normalize-special): New function.
16295 (display-buffer-normalize-options): Rename to
16296 display-buffer-normalize-default and rewrite.
16297 (display-buffer-normalize-options-inhibit): Remove.
16298 (display-buffer-normalize-specifiers): Rewrite.
16299 (display-buffer): Process other-window specifier and call
16300 display-buffer-reuse-window with it. Emulate Emacs 23 behavior
16301 more faithfully.
16302 (pop-up-windows, even-window-heights): Restore Emacs 23 default values.
16303 (display-buffer-alist-set): Don't handle 'unset default values.
16304 (display-buffer-in-window, display-buffer-alist-set):
16305 Replace symbol "dedicated" by "dedicate". Reported by Tassilo Horn
16306 <tassilo@member.fsf.org>.
16307
16308 2011-07-09 Leo Liu <sdl.web@gmail.com>
16309
16310 * register.el (insert-register): Restore accidental change on
16311 2011-06-26. (Bug#9028)
16312
16313 2011-07-09 Glenn Morris <rgm@gnu.org>
16314
16315 * subr.el (remq): Handle the empty list. (Bug#9024)
16316
16317 2011-07-08 Andreas Schwab <schwab@linux-m68k.org>
16318
16319 * mail/sendmail.el (send-mail-function): No longer delay custom
16320 initialization.
16321 * custom.el (custom-initialize-delay): Doc fix.
16322
16323 2011-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
16324
16325 * abbrev.el (expand-abbrev): Try to preserve point (bug#5805).
16326
16327 2011-07-08 Michael Albinus <michael.albinus@gmx.de>
16328
16329 * net/tramp-sh.el (tramp-sh-handle-start-file-process): Use a
16330 human-friendly prompt.
16331
16332 2011-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
16333
16334 * vc/vc-bzr.el (vc-bzr-revision-keywords): Remove svn, it's only
16335 provided by a particular plugin.
16336
16337 2011-07-08 Lars Magne Ingebrigtsen <larsi@gnus.org>
16338
16339 * mail/sendmail.el (sendmail-query-once): If we aren't allowed to
16340 save customizations (with "emacs -Q"), just set the variable
16341 instead of erroring out.
16342
16343 * mail/smtpmail.el (smtpmail-query-smtp-server): Ditto.
16344
16345 2011-07-08 Juri Linkov <juri@jurta.org>
16346
16347 * arc-mode.el (archive-zip-expunge, archive-zip-update)
16348 (archive-zip-update-case): Use 7z if found by `executable-find'.
16349 The order of searching the available programs is the same as in
16350 `archive-zip-extract' (bug#8968).
16351
16352 2011-07-07 Chong Yidong <cyd@stupidchicken.com>
16353
16354 * menu-bar.el (menu-bar-line-wrapping-menu): Revert last change.
16355 (menu-bar-options-menu): Tweak descriptions.
16356
16357 2011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
16358
16359 * menu-bar.el (menu-bar-line-wrapping-menu): Make all the Options
16360 menu items into verb phrases (bug#1421). Also refill to fit under
16361 80 columns.
16362
16363 2011-07-07 Chong Yidong <cyd@stupidchicken.com>
16364
16365 * info.el (info, Info-read-node-name-2, Info-read-node-name-1)
16366 (Info-read-node-name): Doc fix (Bug#1084).
16367
16368 * thingatpt.el (forward-thing, bounds-of-thing-at-point)
16369 (thing-at-point, beginning-of-thing, end-of-thing, in-string-p)
16370 (end-of-sexp, beginning-of-sexp)
16371 (thing-at-point-bounds-of-list-at-point, forward-whitespace)
16372 (forward-symbol, forward-same-syntax, word-at-point)
16373 (sentence-at-point): Doc fix (Bug#1144).
16374
16375 2011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
16376
16377 * info.el (Info-mode-map): Remove S-TAB binding, since [backtab]
16378 should cover it (bug#1281).
16379
16380 * cus-edit.el (custom-show): Mark as obsolete.
16381
16382 * net/network-stream.el (network-stream-open-starttls): If GnuTLS
16383 negotiation fails, then possibly try again with a non-encrypted
16384 connection (bug#9017).
16385
16386 * mail/smtpmail.el (smtpmail-stream-type): Note that `plain' can
16387 be used.
16388
16389 2011-07-07 Richard Stallman <rms@gnu.org>
16390
16391 * mail/rmail.el (rmail-next-error-move): Use `compilation-message'
16392 property, and handle its changed format.
16393 Look for the correct line number.
16394 Use file's line contents (but not past first =) to find
16395 correct line in message.
16396
16397 2011-07-07 Kenichi Handa <handa@m17n.org>
16398
16399 * international/characters.el (build-unicode-category-table):
16400 Delete it.
16401 (unicode-category-table): Set it by unicode-property-table-internal.
16402
16403 * international/mule-cmds.el (char-code-property-alist): Move to
16404 to src/chartab.c.
16405 (get-char-code-property): Call unicode-property-table-internal to
16406 load a file. Call get-unicode-property-internal where necessary.
16407 (put-char-code-property): Call unicode-property-table-internal to
16408 load a file. Call put-unicode-property-internal where necessary.
16409 put-unicode-property-internal where necessary.
16410 (char-code-property-description):
16411 Call unicode-property-table-internal to load a file.
16412
16413 * international/charprop.el:
16414 * international/uni-bidi.el:
16415 * international/uni-category.el:
16416 * international/uni-combining.el:
16417 * international/uni-comment.el:
16418 * international/uni-decimal.el:
16419 * international/uni-decomposition.el:
16420 * international/uni-digit.el:
16421 * international/uni-lowercase.el:
16422 * international/uni-mirrored.el:
16423 * international/uni-name.el:
16424 * international/uni-numeric.el:
16425 * international/uni-old-name.el:
16426 * international/uni-titlecase.el:
16427 * international/uni-uppercase.el: Regenerate.
16428
16429 * loadup.el: Load international/charprop.el before
16430 international/characters.
16431
16432 2011-07-07 Chong Yidong <cyd@stupidchicken.com>
16433
16434 * window.el (next-buffer, previous-buffer): Signal an error if
16435 called from a minibuffer window.
16436
16437 * bindings.el: Revert 2011-07-04 change.
16438
16439 2011-07-06 Richard Stallman <rms@gnu.org>
16440
16441 * mail/rmailmm.el (rmail-mime-process): Use markers for buf positions.
16442 (rmail-mime-insert-bulk, rmail-mime-insert-text):
16443 Treat markers like ints.
16444 (rmail-mime-entity): Doc fix.
16445
16446 2011-07-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
16447
16448 * mail/smtpmail.el (smtpmail-default-smtp-server): Made into a
16449 defcustom again for backwards compatibility.
16450
16451 * simple.el (shell-command-on-region): Fill.
16452
16453 * dired-aux.el (dired-kill-line): Add a doc string.
16454
16455 * dabbrev.el (dabbrev-abbrev-char-regexp): Note that nil defaults
16456 to "\\sw\\|\\s_" (bug#358).
16457
16458 * dired.el (dired-mode): Clarify "unmark or unflag" (bug#8770).
16459 (dired-unmark-backward): Ditto.
16460 (dired-flag-backup-files): Ditto.
16461
16462 * dired-x.el (dired-mark-sexp): Ditto.
16463
16464 2011-07-06 Richard Stallman <rms@gnu.org>
16465
16466 * mail/rmailmm.el: Give entity a new slot, TRUNCATED.
16467 (rmail-mime-entity): New arg TRUNCATED.
16468 (rmail-mime-entity-truncated, rmail-mime-entity-set-truncated):
16469 New functions.
16470 (rmail-mime-save): Warn if entity is truncated.
16471 (rmail-mime-toggle-hidden): Likewise, for showing.
16472 (rmail-mime-process-multipart): Record when an entity is truncated.
16473
16474 * mail/rmailmm.el (rmail-search-mime-message): Don't get confused
16475 if ENTITY is a string.
16476
16477 2011-07-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
16478
16479 * emacs-lisp/lisp-mode.el (eval-defun-1): Update the documentation
16480 of faces when `M-C-x'-ing their definitions (bug#8378).
16481 Also clean up the code slightly.
16482
16483 * progmodes/grep.el (rgrep): Don't bind `process-connection-type',
16484 because that makes the colors go away.
16485
16486 * mail/sendmail.el (send-mail-function): Change the default to
16487 `sendmail-query-once'.
16488 (sendmail-query-once): Add an autoload cookie.
16489
16490 * net/network-stream.el (network-stream-open-starttls): Try using
16491 a plain connection even if the server offered STARTTLS, and we
16492 kinda wanted to use it, if Emacs doesn't have any STARTTLS
16493 capability. This should make smtpmail.el work in slightly more
16494 configurations.
16495
16496 2011-07-06 Michael Albinus <michael.albinus@gmx.de>
16497
16498 * net/tramp-compat.el (tramp-compat-pop-to-buffer-same-window):
16499 New defun.
16500 * net/tramp-cmds.el (tramp-append-tramp-buffers): Use it.
16501
16502 2011-07-06 Michael R. Mauger <mmaug@yahoo.com>
16503
16504 * progmodes/sql.el: Version 3.0
16505 (sql-product-alist): Add product :completion-object,
16506 :completion-column, and :statement attributes.
16507 (sql-mode-menu, sql-interactive-mode-map): Fix List entries.
16508 (sql-mode-syntax-table): Mark all punctuation.
16509 (sql-font-lock-keywords-builder): Temporarily remove fallback on
16510 ansi keywords.
16511 (sql-regexp-abbrev, sql-regexp-abbrev-list): New functions.
16512 (sql-mode-oracle-font-lock-keywords): Improve.
16513 (sql-oracle-show-reserved-words): New function for development.
16514 (sql-product-font-lock): Simplify for source code buffers.
16515 (sql-product-syntax-table, sql-product-font-lock-syntax-alist):
16516 New functions.
16517 (sql-highlight-product): Set product specific syntax table.
16518 (sql-mode-map): Add statement movement functions.
16519 (sql-ansi-statement-starters, sql-oracle-statement-starters):
16520 New variable.
16521 (sql-statement-regexp, sql-beginning-of-statement)
16522 (sql-end-of-statement, sql-signum): New functions.
16523 (sql-buffer-live-p, sql=find-sqli-buffer): Add CONNECTION parameter.
16524 (sql-show-sqli-buffer): Bug fix.
16525 (sql-interactive-mode): Store connection data as buffer local.
16526 (sql-connect): Add NEW-NAME parameter. Redesign interaction
16527 with sql-interactive-mode.
16528 (sql-save-connection): Save buffer local settings.
16529 (sql-connection-menu-filter): Change menu entry name.
16530 (sql-product-interactive): Bug fix.
16531 (sql-preoutput-hold): New variable.
16532 (sql-interactive-remove-continuation-prompt): Bug fixes.
16533 (sql-debug-redirect): New variable.
16534 (sql-str-literal): New function.
16535 (sql-redirect, sql-redirect-one, sql-redirect-value, sql-execute):
16536 Redesign.
16537 (sql-oracle-save-settings, sql-oracle-restore-settings)
16538 (sql-oracle-list-all, sql-oracle-list-table): New functions.
16539 (sql-completion-object, sql-completion-column)
16540 (sql-completion-sqlbuf): New variables.
16541 (sql-build-completions-1, sql-build-completions)
16542 (sql-try-completion): New functions.
16543 (sql-read-table-name): Use them.
16544 (sql-contains-names): New buffer local variable.
16545 (sql-list-all, sql-list-table): Use it.
16546 (sql-oracle-completion-types): New variable.
16547 (sql-oracle-completion-object, sql-sqlite-completion-object)
16548 (sql-postgres-completion-object): New functions.
16549
16550 2011-07-06 Glenn Morris <rgm@gnu.org>
16551
16552 * window.el (pop-to-buffer): Doc fix.
16553
16554 2011-07-06 Markus Heiser <markus.heiser@darmarit.de> (tiny change)
16555
16556 * progmodes/gud.el (gud-pdb-marker-regexp): Accept \r char (Bug#5653).
16557
16558 2011-07-06 Chong Yidong <cyd@stupidchicken.com>
16559
16560 * window.el (special-display-popup-frame): Doc fix (Bug#8853).
16561
16562 * info.el (Info-directory-toc-nodes): Minor doc fix (Bug#8833).
16563
16564 2011-07-05 Chong Yidong <cyd@stupidchicken.com>
16565
16566 * button.el (button): Inherit from link face. Suggested by Dan
16567 Nicolaescu.
16568
16569 2011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
16570
16571 * progmodes/gdb-mi.el: Fit in 80 columns.
16572 (gdb-setup-windows, gdb-restore-windows): Avoid other-window and
16573 switch-to-buffer.
16574
16575 * progmodes/which-func.el (which-func-ff-hook): Don't output a message
16576 if imenu is simply not configured (bug#8941).
16577
16578 2011-07-05 Ken Manheimer <ken.manheimer@gmail.com>
16579
16580 * allout.el (allout-post-undo-hook): New allout outline-change
16581 event hook to signal undo activity.
16582 (allout-post-command-business): Run allout-post-undo-hook if an
16583 undo just occurred.
16584 (allout-after-copy-or-kill-hook, allout-mode): Minor docstring changes.
16585 * allout-widgets.el (allout-widgets-after-undo-function):
16586 Ensure the integrity of the current item's decoration after it has been
16587 in the vicinity of an undo.
16588 (allout-widgets-mode): Include allout-widgets-after-undo-function
16589 on the new allout-post-undo-hook.
16590
16591 2011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
16592
16593 * emacs-lisp/lisp-mode.el (lisp-interaction-mode-abbrev-table):
16594 Let define-derived-mode define it.
16595 * emacs-lisp/derived.el (define-derived-mode): Try to avoid creating
16596 cycles of abbrev-table inheritance (bug#8998).
16597
16598 2011-07-05 Roland Winkler <winkler@gnu.org>
16599
16600 * textmodes/bibtex.el: Add support for biblatex.
16601 (bibtex-BibTeX-entry-alist, bibtex-biblatex-entry-alist)
16602 (bibtex-BibTeX-field-alist, bibtex-biblatex-field-alist)
16603 (bibtex-dialect-list, bibtex-dialect, bibtex-no-opt-remove-re)
16604 (bibtex-entry-alist, bibtex-field-alist): New variables.
16605 (bibtex-entry-field-alist): Obsolete alias for
16606 bibtex-BibTeX-entry-alist.
16607 (bibtex-entry-alist, bibtex-field-alist): New widgets.
16608 (bibtex-set-dialect): New command.
16609 (bibtex-entry-type, bibtex-entry-head)
16610 (bibtex-entry-maybe-empty-head, bibtex-any-valid-entry-type):
16611 Bind via bibtex-set-dialect.
16612 (bibtex-Article, bibtex-Book, bibtex-Booklet, bibtex-InBook)
16613 (bibtex-InCollection, bibtex-InProceedings, bibtex-Manual)
16614 (bibtex-MastersThesis, bibtex-Misc, bibtex-PhdThesis)
16615 (bibtex-Proceedings, bibtex-TechReport, bibtex-Unpublished):
16616 Define via bibtex-set-dialect.
16617 (bibtex-name-in-field, bibtex-remove-OPT-or-ALT):
16618 Obey bibtex-no-opt-remove-re.
16619 (bibtex-vec-push, bibtex-vec-incr): New functions.
16620 (bibtex-format-entry, bibtex-field-list)
16621 (bibtex-print-help-message, bibtex-validate)
16622 (bibtex-search-entries): Use new format of bibtex-entry-alist.
16623
16624 2011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
16625
16626 * progmodes/compile.el (compilation-goto-locus):
16627 * net/tramp-cmds.el (tramp-append-tramp-buffers):
16628 * bs.el (bs-cycle-next, bs-cycle-previous):
16629 * bookmark.el (bookmark-bmenu-list, bookmark-bmenu-2-window):
16630 * bindings.el (mode-line-other-buffer):
16631 * autoinsert.el (auto-insert):
16632 * arc-mode.el (archive-extract):
16633 * abbrev.el (edit-abbrevs): Fix some uses of switch-to-buffer.
16634
16635 2011-07-05 Juanma Barranquero <lekktu@gmail.com>
16636
16637 * emacs-lock.el (emacs-lock-mode): Fix typo in variable name.
16638 Fix check of `emacs-lock-unlockable-modes'.
16639 Coerce true values of `emacs-lock--try-unlocking' to t.
16640
16641 2011-07-05 Juanma Barranquero <lekktu@gmail.com>
16642
16643 * obsolete/old-emacs-lock.el: Rename from emacs-lock.el.
16644 * emacs-lock.el: New file.
16645
16646 2011-07-05 Julien Danjou <julien@danjou.info>
16647
16648 * textmodes/rst.el (rst-define-level-faces): Use `facep' rather
16649 than `boundp' to check if face is set.
16650
16651 2011-07-05 Juanma Barranquero <lekktu@gmail.com>
16652
16653 * register.el (registerv-make):
16654 * window.el (window-min-height): Fix typos in docstrings.
16655
16656 2011-07-05 Jan Djärv <jan.h.d@swipnet.se>
16657
16658 * dynamic-setting.el (dynamic-setting-handle-config-changed-event):
16659 Update doc string.
16660
16661 2011-07-04 Juanma Barranquero <lekktu@gmail.com>
16662
16663 * server.el (server-execute): Catch quit and call
16664 `server-return-error' to pass the error back to emacsclient and
16665 close the connection (bug#8942).
16666
16667 2011-07-04 Ken Manheimer <ken.manheimer@gmail.com>
16668
16669 * allout.el (allout-encrypt-unencrypted-on-saves): Do not provide
16670 insecure exception for current topic. Also note that auto-saves
16671 are handled differently.
16672
16673 (allout-auto-save-temporarily-disabled, allout-just-did-undo):
16674 State variables for tracking auto-save inhibition situation.
16675
16676 (allout-write-contents-hook-handler): Rename from
16677 'allout-write-file-hook-handler', and describe how it depends on
16678 write-contents-functions sensitivity to non-nil value to prevent
16679 file write.
16680
16681 (allout-auto-save-hook-handler): Remove. auto-save does not check
16682 this in individual buffers, only in the starting buffer, so this
16683 is not the right way for us to inhibit auto-save in a buffer
16684 according to its condition.
16685
16686 (allout-mode): Use new allout-write-contents-hook-handler, and
16687 only with write-contents-functions. Remove auto-save provisions -
16688 they're implemented elsewhere.
16689
16690 (allout-before-change-handler): If undo is in progress, note that
16691 for attention of allout-post-command-business.
16692
16693 (allout-post-command-business): If the command we're following was
16694 an undo, check for change in the status of encrypted items and
16695 adjust auto-save inhibitions accordingly.
16696
16697 (allout-toggle-subtree-encryption): Adjust auto-save inhibition
16698 according to whether there are or aren't any plain-text topics
16699 pending encryption.
16700
16701 (allout-inhibit-auto-save-info-for-decryption):
16702 Adjust buffer-saved-size and some allout state to inhibit auto-saves
16703 if there are plain-text topics pending encryption.
16704
16705 (allout-maybe-resume-auto-save-info-after-encryption): Adjust
16706 buffer-saved-size and some allout state to not inhibit auto-saves
16707 if there are no longer any plain-text topics pending encryption.
16708
16709 (allout-next-topic-pending-encryption, allout-encrypt-decrypted):
16710 No longer provide for exemption of the current topic.
16711
16712 2011-07-04 Juri Linkov <juri@jurta.org>
16713
16714 Add 7z operations to delete and save changed members (bug#8968).
16715 * arc-mode.el (archive-7z-expunge, archive-7z-update):
16716 New defcustoms.
16717 (archive-7z-write-file-member): New function.
16718 (archive-7z-summarize): Fix the number of dashes in the
16719 listing output.
16720
16721 2011-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
16722
16723 * pcmpl-linux.el (pcomplete-pare-list): Re-add, from pcomplete.el
16724 (bug#8958).
16725
16726 2011-07-04 Chong Yidong <cyd@stupidchicken.com>
16727
16728 * bindings.el: Ignore next-buffer and previous-buffer in
16729 minibuffer-local-map.
16730
16731 * font-lock.el (font-lock-builtin-face): Change light background
16732 color to dark slate blue (Bug#6693).
16733
16734 2011-07-04 Wang Diancheng <dcwang@kingbase.com.cn> (tiny change)
16735
16736 * progmodes/gdb-mi.el (gdb): Use completion-at-point.
16737
16738 2011-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
16739
16740 * files.el (find-file): Use pop-to-buffer-same-window (bug#8911).
16741 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
16742 Add switch-to-buffer.
16743
16744 2011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
16745
16746 * isearch.el (isearch-search-fun-function): Clarify further the
16747 meaning of the function returned.
16748
16749 2011-07-04 Michael Albinus <michael.albinus@gmx.de>
16750
16751 * net/tramp-cmds.el (tramp-cleanup-this-connection): New command.
16752
16753 * net/tramp-sh.el (tramp-color-escape-sequence-regexp): New defconst.
16754 (tramp-sh-handle-insert-directory, tramp-convert-file-attributes):
16755 Use it.
16756 (tramp-remote-path): Add "/bin" and "/usr/bin". On busyboxes,
16757 `tramp-default-remote-path' does not exist.
16758 (tramp-send-command-and-read): New optional argument NOERROR.
16759 (tramp-open-connection-setup-interactive-shell)
16760 (tramp-get-remote-path, tramp-get-remote-stat): Use it.
16761 (tramp-get-remote-readlink): Do not mask with `ignore-errors'.
16762 (tramp-process-sentinel): Flush also process' connection property.
16763 (tramp-sh-handle-start-file-process): Do not set process
16764 sentinel. It is done now ...
16765 (tramp-maybe-open-connection): ... here. (Bug#8929)
16766
16767 2011-07-04 MON KEY <monkey@sandpframing.com>
16768
16769 * play/animate.el (animate-string): Doc fixes and allow changing
16770 the buffer name (bug#5417).
16771
16772 2011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
16773
16774 * play/animate.el (animation-buffer-name): Rename from *animate*.
16775
16776 2011-07-04 Paul Eggert <eggert@cs.ucla.edu>
16777
16778 * emacs-lisp/timer.el: Use time-date fns rather than rolling our own.
16779 This is simpler and helps future-proof the code.
16780 (timer-until): Use time-subtract and float-time.
16781 (timer--time-less-p): Use time-less-p.
16782
16783 2011-07-04 Juanma Barranquero <lekktu@gmail.com>
16784
16785 * type-break.el (timep): Use the value of `float-time' to avoid a
16786 byte-compiler warning.
16787
16788 * server.el (server-eval-and-print): Return any result, even nil.
16789
16790 2011-07-03 Paul Eggert <eggert@cs.ucla.edu>
16791
16792 * type-break.el: Accept time formats that the builtins accept.
16793 (timep, type-break-time-difference): Accept any format that
16794 float-time accepts, rather than insisting on (HIGH LOW USECS) format.
16795 This is simpler and helps future-proof the code.
16796 (type-break-time-difference): Round rather than ignoring
16797 subseconds components.
16798
16799 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
16800
16801 * info.el (Info-apropos-matches): Make non-interactive, since it
16802 doesn't seem to do anything useful as a command (bug#8829).
16803
16804 2011-07-03 Chong Yidong <cyd@stupidchicken.com>
16805
16806 * frame.el (frame-background-mode, frame-set-background-mode):
16807 Move from faces.el.
16808 (frame-default-terminal-background): New function.
16809
16810 * custom.el (custom-push-theme): Don't record faces in `changed'
16811 theme; this doesn't work correctly for per-frame face settings.
16812 (disable-theme): Use face-set-after-frame-default to reset faces.
16813 (custom--frame-color-default): New function.
16814
16815 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
16816
16817 * dired.el (dired-flagging-regexp): Remove unused variable
16818 (bug#8769).
16819
16820 2011-03-29 Kevin Ryde <user42@zip.com.au>
16821
16822 * progmodes/compile.el (compilation-error-regexp-alist-alist):
16823 `perl-Test2' extend to match possible "fail #N" rep count
16824 (bug#8377).
16825
16826 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
16827
16828 * mail/feedmail.el (feedmail-buffer-to-smtpmail):
16829 `smtpmail-via-smtp' now returns the error instead of nil.
16830
16831 * isearch.el (isearch-search-fun-function): Clarify the doc string
16832 (bug#8101).
16833
16834 2011-07-03 Richard Kim <emacs18@gmail.com> (tiny change)
16835
16836 * textmodes/texnfo-upd.el (texinfo-insert-menu): Don't insert
16837 unnecessary spaces (bug#8987).
16838
16839 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
16840
16841 * net/network-stream.el (open-network-stream): Use the
16842 :end-of-capability command thoughout.
16843
16844 2011-07-03 Wolfgang Jenkner <wjenkner@inode.at> (tiny change)
16845
16846 * net/network-stream.el (open-network-stream): Add the
16847 :end-of-capability command parameter, used by pop3.el.
16848
16849 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
16850
16851 * dired.el (dired-map-over-marks): Refill the doc string (bug#6814).
16852
16853 * fringe.el (fringe-query-style): Remove redundant text " (type ?
16854 for list)" (bug#6475).
16855
16856 * files.el (file-expand-wildcards): Ignore non-readable
16857 sub-directories while trying to find matches instead of signaling
16858 an error (bug#6297).
16859
16860 * man.el (Man-reference-regexp): Allow matching possible
16861 word-wrapped references (bug#6289).
16862
16863 * vc/vc.el (vc-modify-change-comment): Change *VC-log* to *vc-log*
16864 for consistency with the other vc buffers (bug#6197).
16865 (vc-checkin): Ditto.
16866
16867 * vc/vc-arch.el: Fix comments to match the *VC-log* name change.
16868
16869 * longlines.el (longlines-mode): Document what ARG does (bug#6150).
16870
16871 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
16872
16873 * custom.el (defcustom): Clarify that :set is only used in the
16874 Customize user interface (bug#6089).
16875
16876 * progmodes/flymake.el (flymake-mode): If the buffer isn't
16877 associated with a file, refuse to run instead of erroring out
16878 (bug#6084).
16879
16880 * textmodes/fill.el (fill-region): Remove the "Ordinarily" from
16881 the doc string, since it appears that using `fill-column' always
16882 controls the width (bug#7845).
16883
16884 * simple.el (shell-command-on-region): Say where the error output
16885 went if `shell-command-default-error-buffer' is set (bug#6857).
16886
16887 2011-07-02 Ken Manheimer <ken.manheimer@gmail.com>
16888
16889 * allout.el (allout-yank-processing): Adjust cursor position for
16890 backwards-deleted space.
16891
16892 (allout-rebullet-heading): Register changes with
16893 allout-exposure-changed-hook, so the modified topic is properly
16894 decorated.
16895
16896 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
16897
16898 * minibuffer.el (completion-in-region): Document PREDICATE
16899 (bug#7136).
16900
16901 * info-look.el (info-lookup-add-help): Clarify that ARGS is a list
16902 of keyword/argument pairs (bug#6904).
16903
16904 * replace.el (multi-occur):
16905 Mention `multi-occur-in-matching-buffers' in the doc string (bug#7566).
16906
16907 2011-07-02 Drew Adams <drew.adams@oracle.com>
16908
16909 * dired.el (dired-mark-if): Make the message about whether it's
16910 marking or unmarking clearer (bug#8523).
16911
16912 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
16913
16914 * disp-table.el (display-table-print-array): New function.
16915 (describe-display-table): Use it to print the vectors more pretty
16916 (Bug#8859).
16917
16918 2011-07-02 Martin Rudalics <rudalics@gmx.at>
16919
16920 * window.el (window-state-get-1): Don't assign clone numbers.
16921 Add clone-of item to list of window parameters.
16922 (window-state-put-2): Don't process clone numbers.
16923 (display-buffer-alist): Fix doc-string.
16924
16925 2011-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
16926
16927 * subr.el (remq): Don't allocate if it's not needed.
16928 (keymap--menu-item-binding, keymap--menu-item-with-binding)
16929 (keymap--merge-bindings): New functions.
16930 (keymap-canonicalize): Use them to refine the canonicalization.
16931 * minibuffer.el (minibuffer-local-completion-map)
16932 (minibuffer-local-must-match-map): Move initialization from C.
16933 (minibuffer-local-filename-completion-map): Move initialization from C;
16934 don't inherit from anything here.
16935 (minibuffer-local-filename-must-match-map): Make obsolete.
16936 (completing-read-default): Use make-composed-keymap to combine
16937 minibuffer-local-filename-completion-map with either
16938 minibuffer-local-must-match-map or
16939 minibuffer-local-filename-completion-map.
16940
16941 2011-07-01 Glenn Morris <rgm@gnu.org>
16942
16943 * type-break.el (type-break-time-sum): Use dolist.
16944
16945 * textmodes/flyspell.el (flyspell-word-search-backward):
16946 Replace CL function.
16947
16948 2011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
16949
16950 * mouse.el (mouse--strip-first-event): New function.
16951 (function-key-map): Use it to map fringe clicks to normal clicks
16952 by default.
16953
16954 * vc/vc-bzr.el (vc-bzr-revision-keywords): Update.
16955 (vc-bzr-revision-completion-table): Add support for annotate and date.
16956
16957 * emacs-lisp/derived.el (define-derived-mode): Make abbrev-table
16958 inherit from parent.
16959
16960 2011-07-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
16961
16962 * dired-aux.el (dired-diff): Doc fixup (bug#8816).
16963 (dired-show-file-type): Doc fixup (bug#8818).
16964
16965 * dired.el (dired-mode): Fix up the doc string as suggested by
16966 Drew Adams (bug#8817).
16967
16968 * progmodes/flymake.el (flymake-find-file-hook): Add an `autoload'
16969 cookie, since the manual says that it should be possible to add
16970 this function to `find-file-hook' (bug#8709).
16971
16972 2011-07-01 Teodor Zlatanov <tzz@lifelogs.com>
16973
16974 * progmodes/cfengine.el: Moved all cfengine3.el functionality
16975 here. Noted Ted Zlatanov as the maintainer.
16976 (cfengine-common-settings, cfengine-common-syntax): New functions
16977 to set up common things between `cfengine-mode' and
16978 `cfengine3-mode'.
16979 (cfengine3-mode): New mode.
16980 (cfengine3-defuns cfengine3-defuns-regex
16981 (cfengine3-class-selector-regex cfengine3-category-regex)
16982 (cfengine3-vartypes cfengine3-font-lock-keywords)
16983 (cfengine3-beginning-of-defun, cfengine3-end-of-defun)
16984 (cfengine3-indent-line): Add from cfengine3.el.
16985
16986 2011-07-01 Michael Albinus <michael.albinus@gmx.de>
16987
16988 * net/tramp.el (tramp-encoding-command-interactive): New defcustom.
16989
16990 * net/tramp-sh.el (tramp-maybe-open-connection): Use it.
16991
16992 2011-07-01 Martin Rudalics <rudalics@gmx.at>
16993
16994 * window.el (same-window-buffer-names, same-window-regexps)
16995 (same-window-p, special-display-frame-alist)
16996 (special-display-popup-frame, special-display-function)
16997 (special-display-buffer-names, special-display-regexps)
16998 (special-display-p, pop-up-frame-alist, pop-up-frame-function)
16999 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
17000 (split-window-preferred-function, split-height-threshold)
17001 (split-width-threshold, even-window-heights)
17002 (display-buffer-mark-dedicated, window-splittable-p)
17003 (split-window-sensibly, window-safely-shrinkable-p):
17004 Un-obsolete.
17005 (display-buffer): Don't spread args with function specifier
17006 because special-display-popup-frame won't like it.
17007
17008 2011-07-01 Paul Eggert <eggert@cs.ucla.edu>
17009
17010 Time-stamp simplifications and fixes.
17011 These improve accuracy slightly, and future-proof the code
17012 against some potential changes to current-time format.
17013
17014 * woman.el (woman-decode-buffer, WoMan-log-end): Log fractional secs
17015 by using time-since and float-time.
17016
17017 * vc/ediff-util.el (ediff-calc-command-time): Use time-since
17018 and float-time. Say "NNN.NNN seconds" rather than "NNN seconds
17019 + NNN microseconds".
17020
17021 * type-break.el (type-break-time-sum): Rewrite using time-add.
17022
17023 * play/hanoi.el (hanoi-current-time-float): Remove.
17024 All uses replaced by float-time.
17025
17026 * nxml/rng-maint.el (rng-time-function): Rewrite using time-subtract.
17027 This yields a more-accurate answer.
17028 (rng-time-to-float): Remove; no longer needed.
17029
17030 * emacs-lisp/timer.el (timer-relative-time): Use time-add.
17031
17032 * calendar/timeclock.el (timeclock-seconds-to-time):
17033 Defalias to seconds-to-time, since they're the same thing.
17034
17035 * emacs-lisp/elp.el (elp-elapsed-time):
17036 * emacs-lisp/benchmark.el (benchmark-elapse):
17037 * allout-widgets.el (allout-elapsed-time-seconds): Use float-time.
17038
17039 2011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
17040
17041 * window.el (bury-buffer): Don't iconify the only frame.
17042 (switch-to-buffer): Revert to Emacs<23 behavior, i.e. do not fallback
17043 to pop-to-buffer. Use pop-to-buffer-same-frame if you don't like that.
17044
17045 2011-07-01 Chong Yidong <cyd@stupidchicken.com>
17046
17047 * eshell/em-smart.el (eshell-smart-display-navigate-list):
17048 Add mouse-yank-primary.
17049
17050 2011-07-01 Teodor Zlatanov <tzz@lifelogs.com>
17051
17052 * progmodes/cfengine3.el: New file to support CFEngine 3.x.
17053
17054 2011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
17055
17056 * emacs-lisp/find-func.el (find-library--load-name): New fun.
17057 (find-library-name): Use it to find relative load names when provided
17058 absolute file name (bug#8803).
17059
17060 2011-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
17061
17062 * textmodes/flyspell.el (flyspell-word): Consider words that
17063 differ only in case as potential doublons (bug#5687).
17064
17065 * net/soap-client.el (soap-invoke, soap-wsdl-resolve-references):
17066 Remove two rather uninteresting debugging-like messages to make
17067 debbugs.el more silent.
17068
17069 * comint.el (comint-password-prompt-regexp): Accept "Response" as
17070 a password-like phrase.
17071
17072 2011-06-30 Masatake YAMATO <yamato@redhat.com>
17073
17074 * progmodes/cc-guess.el: New file.
17075
17076 * progmodes/cc-langs.el (c-mode-menu): Add "Style..." submenu.
17077
17078 * progmodes/cc-styles.el (cc-choose-style-for-mode): New function
17079 derived from `c-basic-common-init'.
17080
17081 * progmodes/cc-mode.el (top-level): Require cc-guess.
17082 (c-basic-common-init): Use `cc-choose-style-for-mode'.
17083
17084 2011-06-30 Lawrence Mitchell <wence@gmx.li>
17085
17086 * progmodes/js.el (js-mode): Don't stomp on global settings (bug#8933).
17087
17088 2011-06-30 Alan Mackenzie <acm@muc.de>
17089
17090 * progmodes/cc-engine.el (c-guess-continued-construct):
17091 Correct the handling of template-args-cont, particularly for when font
17092 lock is disabled. Name this case as "CASE G".
17093
17094 2011-06-30 Ken Manheimer <ken.manheimer@gmail.com>
17095
17096 * allout.el (allout-yank-processing): Fix injection of extra space
17097 between bullet and non-whitespace character in first topic when
17098 pasting, ensuring that the actual spacing in the pasted topic
17099 following the bullet char is preserved. This extra space was
17100 causing pasted encrypted topics to get a decrypted status even
17101 when the content was actually still encrypted. Now the decryption
17102 status from before the paste is preserved.
17103
17104 (allout-flag-region): Set all allout overlays so they evaporate
17105 when reduced to zero length (evanescent), to prevent overlay
17106 leakage.
17107
17108 2011-06-30 Glenn Morris <rgm@gnu.org>
17109
17110 * w32-fns.el (w32-charset-info-alist): Declare.
17111
17112 * find-dired.el (find-grep-options): Simplify.
17113
17114 * term/ns-win.el (ns-set-resource): Declare.
17115
17116 * ses.el (row, col): Declare dynamic variables honestly.
17117
17118 * textmodes/reftex-parse.el (index-tags): Declare.
17119
17120 2011-06-30 Chong Yidong <cyd@stupidchicken.com>
17121
17122 * cus-edit.el (customize-push-and-save): New function.
17123
17124 * files.el (hack-local-variables-confirm): Use it.
17125
17126 * custom.el (load-theme): New arg NO-CONFIRM.
17127 Use customize-push-and-save (Bug#8720).
17128 (custom-enabled-themes): Doc fix.
17129
17130 * cus-theme.el (customize-create-theme)
17131 (custom-theme-merge-theme): Callers to load-theme changed.
17132
17133 2011-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
17134
17135 * thingatpt.el (thing-at-point-short-url-regexp): Require that
17136 short URLs have at least one dot in them (bug #7614).
17137
17138 * progmodes/grep.el (rgrep): Bind `process-connection-type' to
17139 nil, because using a pty is apparently too slow (bug #895).
17140
17141 2011-06-29 Lars Magne Ingebrigtsen <larsi@gnus.org>
17142
17143 * mail/sendmail.el (sendmail-query-once): New function.
17144 (sendmail-query-once-function): New variable.
17145
17146 2011-06-29 Glenn Morris <rgm@gnu.org>
17147
17148 * files.el (auto-mode-alist): Add .f03, .f08 for f90-mode.
17149
17150 * ses.el (top-level): Require cl when compiling.
17151 (ses-set-localvars): Fix error statement.
17152 Call it at compile time to silence a storm of warnings.
17153
17154 2011-06-29 Martin Rudalics <rudalics@gmx.at>
17155
17156 * window.el (normalize-live-buffer): Rename to
17157 window-normalize-buffer.
17158 (normalize-live-frame): Rename to window-normalize-frame.
17159 (normalize-any-window): Rename to window-normalize-any-window.
17160 (normalize-live-window): Rename to window-normalize-live-window.
17161 (make-window-atom): Rename to window-make-atom.
17162 (window-resize-reset): Rename to window--resize-reset.
17163 (window-resize-reset-1): Rename to window--resize-reset-1.
17164 (resize-mini-window): Rename to window--resize-mini-window.
17165 (resize-subwindows-skip-p): Rename to
17166 window--resize-subwindows-skip-p.
17167 (resize-subwindows-normal): Rename to
17168 window--resize-subwindows-normal.
17169 (resize-subwindows): Rename to window--resize-subwindows.
17170 (resize-other-windows): Rename to window--resize-siblings.
17171 (resize-this-window): Rename to window--resize-this-window.
17172 (resize-root-window): Rename to window--resize-root-window.
17173 (resize-root-window-vertically): Rename to
17174 window--resize-root-window-vertically.
17175 (normalize-buffer-to-display): Rename to
17176 window-normalize-buffer-to-display.
17177 (normalize-buffer-to-switch-to): Rename to
17178 window-normalize-buffer-to-switch-to.
17179 Correspondingly update all callers of the functions listed
17180 above.
17181 (display-buffer-alist, display-buffer-normalize-arguments)
17182 (display-buffer-normalize-options, display-buffer)
17183 (display-buffer-alist-set): Use "function" instead of
17184 "fun-with-args".
17185
17186 2011-06-28 Chong Yidong <cyd@stupidchicken.com>
17187
17188 * mail/emacsbug.el (report-emacs-bug): Handle non-gnu bug
17189 addresses more clearly. Add hyperlinks for bug-gnu-emacs and
17190 debbugs.gnu.org. Mention acknowledgment email.
17191
17192 2011-06-28 Lars Magne Ingebrigtsen <larsi@gnus.org>
17193
17194 * mail/smtpmail.el (smtpmail-send-it): Leave off changing the
17195 buffer multibyteness, since it shouldn't matter.
17196
17197 2011-06-28 Martin Rudalics <rudalics@gmx.at>
17198
17199 * window.el (display-buffer-in-side-window): Handle dedicated
17200 windows as in display-buffer-reuse-window.
17201 (display-buffer-normalize-alist): Use value of override
17202 specifier.
17203 (display-buffer-normalize-specifiers): Use value of
17204 other-window-means-other-frame specifier.
17205 (display-buffer-alist): Rewrite some texts in widgets.
17206 (display-buffer): Spread arguments when calling function
17207 specified by fun-with-args.
17208
17209 2011-06-28 Deniz Dogan <deniz@dogan.se>
17210
17211 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
17212 Unnest `let'.
17213
17214 * textmodes/css-mode.el (css-font-lock-keywords): Fix grouped
17215 selectors (Bug#5732).
17216 (css-proprietary-nmstart-re): Use `regexp-opt'.
17217
17218 2011-06-27 Jari Aalto <jari.aalto@cante.net>
17219
17220 * eshell/em-ls.el: Display `ls -l' dates in ISO format (Bug#8440).
17221 (eshell-ls-date-format): New defcustom.
17222 (eshell-ls-file): Use it.
17223
17224 2011-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
17225
17226 * help-fns.el (describe-variable): Fix message for terminal-local vars.
17227
17228 2011-06-27 Katsumi Yamaoka <yamaoka@jpl.org>
17229
17230 * net/ange-ftp.el: Allow loading .gz files (Bug#6923).
17231 (ange-ftp-make-tmp-name): New arg.
17232 (ange-ftp-file-local-copy): Use it.
17233
17234 2011-06-27 Jambunathan K <kjambunathan@gmail.com>
17235
17236 * tar-mode.el (tar-untar-buffer): Set coding-system-for-write to
17237 no-conversion (Bug#8870).
17238
17239 2011-06-27 Martin Rudalics <rudalics@gmx.at>
17240
17241 * window.el (window-right, window-left, window-child)
17242 (window-child-count, window-last-child)
17243 (window-iso-combination-p, walk-window-tree-1)
17244 (window-atom-check-1, window-tree-1, delete-window)
17245 (window-state-get-1, display-buffer-even-window-sizes): Adapt to
17246 new naming conventions - window-vchild, window-hchild,
17247 window-next and window-prev are now called window-top-child,
17248 window-left-child, window-next-sibling and window-prev-sibling
17249 respectively.
17250 (resize-window-reset): Rename to window-resize-reset.
17251 (resize-window-reset-1): Rename to window-resize-reset-1.
17252 (resize-window): Rename to window-resize.
17253 (window-min-height, window-min-width)
17254 (resize-mini-window, resize-this-window, resize-root-window)
17255 (resize-root-window-vertically, adjust-window-trailing-edge)
17256 (enlarge-window, shrink-window, maximize-window)
17257 (minimize-window, delete-window, quit-restore-window)
17258 (split-window, balance-windows, balance-windows-area-adjust)
17259 (balance-windows-area, window-state-put-2)
17260 (display-buffer-even-window-sizes, display-buffer-set-height)
17261 (display-buffer-set-width, set-window-text-height)
17262 (fit-window-to-buffer): Rename all "resize-window" prefixed
17263 calls to use the "window-resize" prefix convention.
17264 (display-buffer-alist): Fix symbol for label specifier.
17265 (display-buffer-reuse-window): Set reuse-dedicated to cdr of
17266 corresponding specifier.
17267 Reported by Juanma Barranquero <lekktu@gmail.com>.
17268
17269 2011-06-27 Vincent Belaïche <vincentb1@users.sourceforge.net>
17270
17271 * ses.el (ses-destroy-cell-variable-range): Fix heading comment
17272 convention.
17273 (ses-call-printer): Does not pass an empty string to formatter when the
17274 cell is empty to keep from barking printer Calc math-format-value.
17275
17276 2011-06-27 Richard Stallman <rms@gnu.org>
17277
17278 * battery.el (battery-mode-line-limit): New variable.
17279 (battery-update): Handle it.
17280
17281 * mail/rmailmm.el (rmail-mime-process-multipart):
17282 Handle truncated messages.
17283
17284 2011-06-27 Glenn Morris <rgm@gnu.org>
17285
17286 * progmodes/flymake.el (flymake-err-line-patterns):
17287 Allow for column numbers in the ant/javac pattern. (Bug#8866)
17288
17289 2011-06-27 Vincent Belaïche <vincentb1@users.sourceforge.net>
17290
17291 * ses.el (ses-relocate-range): Keep rest of arguments for ses-range.
17292 (ses--clean-!, ses--clean-_): New functions.
17293 (ses-range): Add configurability of readout order, and conversion
17294 to Calc vector.
17295
17296 * ses.el (ses-repair-cell-reference-all): New function.
17297 (ses-cell-symbol): Set macro as safe, so that it can be used in
17298 formulas.
17299
17300 * ses.el: Update cycle detection algorithm.
17301 (ses-localvars): Add ses--Dijkstra-attempt-nb and
17302 ses--Dijkstra-weight-bound, and initial values thereof when applicable.
17303 (ses-set-localvars): New function.
17304 (ses-make-cell): Add property-list as a cell element.
17305 (ses-cell-property-get-fun, ses-cell-property-get)
17306 (ses-cell-property-delq-fun, ses-cell-property-set-fun)
17307 (ses-cell-property-pop-fun, ses-cell-property-get-handle-fun):
17308 New functions.
17309 (ses-cell-property-set, ses-cell-property-pop)
17310 (ses-cell-property-get-handle): New macro.
17311 (ses-cell-property-handle-car, ses-cell-property-handle-setcar):
17312 New aliases, used for code readability.
17313 (ses-calculate-cell, ses-update-cells): Use Dijkstra algorithm for
17314 cycle detection.
17315 (ses-self-reference-early-detection): New defcustom.
17316 (ses-formula-references): Robustify against self-referring cells.
17317 (ses-mode): Use ses-set-localvars.
17318 (ses-command-hook): Add call to ses-initialize-Dijkstra-attempt
17319 before lauching the update processing.
17320 (ses-initialize-Dijkstra-attempt): New function.
17321 (ses-recalculate-cell): Update for cycle detection based on
17322 Dijkstra algorithm.
17323
17324 * ses.el: Fix commenting and indenting convention.
17325
17326 2011-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
17327
17328 * bs.el (bs-cycle-next): Complete last change.
17329
17330 2011-06-27 Drew Adams <drew.adams@oracle.com>
17331
17332 * faces.el (list-faces-display): Add help-mode-map to output (bug#8939).
17333
17334 2011-06-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
17335
17336 * net/network-stream.el (network-stream-open-starttls):
17337 Don't re-get capabilities unless we've reestablished connection.
17338 (network-stream-open-starttls): Fix stupid typo with gnutls-clii.
17339
17340 * mail/smtpmail.el (smtpmail-via-smtp): Bind coding-system-for-*
17341 to binary to possibly avoid line encoding issues on Windows (among
17342 other things).
17343
17344 2011-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
17345
17346 * net/network-stream.el (open-network-stream): Return an :error
17347 saying what the problem was, if possible.
17348
17349 * mail/smtpmail.el (smtpmail-via-smtp): Report the error from the
17350 server.
17351
17352 * net/network-stream.el (network-stream-open-starttls): If we
17353 wanted to use STARTTLS, and the server offered it, but we weren't
17354 able to because we had no STARTTLS support, then close the connection.
17355 (open-network-stream): Return an :error element, if present.
17356
17357 2011-06-26 Chong Yidong <cyd@stupidchicken.com>
17358
17359 * hl-line.el (hl-line-sticky-flag): Doc fix.
17360 (global-hl-line-sticky-flag): New option (Bug#8323).
17361 (global-hl-line-highlight): Obey it.
17362
17363 * vc/vc.el (vc-revert-show-diff): Default to t.
17364
17365 2011-06-26 Ken Manheimer <ken.manheimer@gmail.com>
17366
17367 * allout-widgets.el (allout-widgets-post-command-business):
17368 Stop decorating intermediate isearch matches. They're not being
17369 undecorated when an isearch is continued past, and isearch
17370 automatically collapses them. This leads to "widget leaks", where
17371 decorated items accumulate in collapsed areas. Lines with lots of
17372 hidden widgets can slow down cursor travel, substantially.
17373 Too much complicated machinery would be needed to ensure undecoration,
17374 so we're doing without this nicety.
17375
17376 (allout-widgets-tally-string): Don't try to do a hash-table-count
17377 of allout-widgets-tally when it's nil. This eliminates spurious "Error
17378 during redisplay: (wrong-type-argument hash-table-p nil)" warnings in
17379 *Messages* when allout-widgets-maintain-tally is t.
17380
17381 2011-06-26 Martin Rudalics <rudalics@gmx.at>
17382
17383 * window.el (display-buffer-normalize-argument): Rename to
17384 display-buffer-normalize-arguments. Handle special meaning of
17385 LABEL argument. Respect special-display-function when popping up
17386 a new frame. Fix code searching for a window showing the buffer
17387 on another frame.
17388 (display-buffer-normalize-specifiers):
17389 Call display-buffer-normalize-arguments.
17390 (display-buffer-in-window): Don't undedicate the window if its
17391 buffer remains the same.
17392 Reported by Drew Adams <drew.adams@oracle.com>.
17393 (display-buffer-alist): Add choice for same-window macro
17394 specfier.
17395 (display-buffer): Mention special meaning of LABEL argument in
17396 doc-string. Fix quoting. Don't pop up a new frame even as
17397 fallback.
17398
17399 2011-06-26 Juanma Barranquero <lekktu@gmail.com>
17400
17401 * bs.el (bs-cycle-next): Pass current buffer to `bury-buffer' to
17402 avoid deleting the current window in some cases (bug#8911).
17403
17404 2011-06-26 Andreas Schwab <schwab@linux-m68k.org>
17405
17406 * emacs-lisp/smie.el (smie-bnf->prec2): Fix last change.
17407 (Bug#8934)
17408
17409 2011-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
17410
17411 * net/network-stream.el (network-stream-open-starttls):
17412 Use built-in TLS support if `gnutls-available-p' is true.
17413 (network-stream-open-tls): Ditto.
17414
17415 2011-06-26 Leo Liu <sdl.web@gmail.com>
17416
17417 * register.el (registerv): New struct.
17418 (registerv-make): New function.
17419 (jump-to-register, describe-register-1, insert-register):
17420 Support the jump-func, print-func and insert-func slot of a registerv
17421 struct. (Bug#8415)
17422
17423 2011-06-26 Chong Yidong <cyd@stupidchicken.com>
17424
17425 * vc/vc.el (vc-revert-show-diff): New defcustom.
17426 (vc-diff-internal): New arg specifying diff buffer.
17427 (vc-revert): Obey vc-revert-show-diff. If we show a diff, don't
17428 reuse an existing *vc-diff* buffer (Bug#8927).
17429
17430 * progmodes/cperl-mode.el (cperl-mode): Derive from prog-mode.
17431
17432 2011-06-26 Glenn Morris <rgm@gnu.org>
17433
17434 * progmodes/f90.el (f90-critical-indent): New option.
17435 (f90-font-lock-keywords-2, f90-blocks-re, f90-end-block-re)
17436 (f90-start-block-re, f90-mode-abbrev-table): Add block, critical.
17437 (f90-mode): Doc fix.
17438 (f90-looking-at-critical, f90-looking-at-end-critical): New funcs.
17439 (f90-no-block-limit, f90-calculate-indent, f90-end-of-block)
17440 (f90-beginning-of-block, f90-next-block, f90-indent-region)
17441 (f90-match-end): Handle block, critical.
17442
17443 2011-06-25 Glenn Morris <rgm@gnu.org>
17444
17445 * calendar/diary-lib.el (diary-included-files): Doc fix.
17446 (diary-include-files): New function, extracted from
17447 diary-include-other-diary-files and diary-mark-included-diary-files.
17448 (diary-include-other-diary-files, diary-mark-included-diary-files):
17449 Just call diary-include-files.
17450 (diary-mark-entries): Reset diary-included-files on first call.
17451
17452 * calendar/diary-lib.el (diary-mark-entries)
17453 (diary-mark-included-diary-files):
17454 Visit included diary-files in temp buffers.
17455
17456 * progmodes/f90.el (f90-keywords-re, f90-font-lock-keywords-1)
17457 (f90-blocks-re, f90-program-block-re, f90-end-block-re)
17458 (f90-start-block-re, f90-imenu-generic-expression)
17459 (f90-looking-at-program-block-start, f90-no-block-limit):
17460 Add support for submodules.
17461
17462 * progmodes/f90.el (f90-keywords-re, f90-keywords-level-3-re)
17463 (f90-procedures-re, f90-constants-re): Add some F2008 stuff.
17464
17465 2011-06-25 Eli Zaretskii <eliz@gnu.org>
17466
17467 * net/ange-ftp.el (ange-ftp-insert-file-contents): Let-bind
17468 buffer-file-type before setting its value, to avoid disastrous
17469 global effects on decoding files for DOS/Windows systems. (Bug#8780)
17470
17471 2011-06-25 Juanma Barranquero <lekktu@gmail.com>
17472
17473 * allout.el (allout-unload-function): Pass -1 to `allout-mode'.
17474
17475 * ses.el (ses-unload-function):
17476 * emacs-lisp/re-builder.el (re-builder-unload-function): Simplify.
17477
17478 * proced.el (proced-unload-function):
17479 * progmodes/cperl-mode.el (cperl-mode-unload-function): Remove.
17480
17481 2011-06-25 Andreas Rottmann <a.rottmann@gmx.at>
17482
17483 * server.el (server-create-window-system-frame): Add parameters arg.
17484 (server-process-filter): Doc fix. Handle frame-parameters.
17485
17486 2011-06-25 Juanma Barranquero <lekktu@gmail.com>
17487
17488 Fix bug#8730, bug#8781.
17489
17490 * loadhist.el (unload--set-major-mode): New function.
17491 (unload-feature): Use it.
17492
17493 * progmodes/python.el (python-after-info-look): Add autoload cookie.
17494 (python-unload-function): New function.
17495
17496 2011-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
17497
17498 * mail/rmail.el (rmail-show-message-1): Use restore-buffer-modified-p.
17499
17500 2011-06-25 Giuseppe Scrivano <gscrivano@gnu.org>
17501
17502 * net/browse-url.el (browse-url-firefox-program): Add icecat to
17503 the candidates list.
17504
17505 2011-06-24 Juanma Barranquero <lekktu@gmail.com>
17506
17507 * progmodes/verilog-mode.el (verilog-mode): Fix test for bound variable.
17508
17509 2011-06-23 Richard Stallman <rms@gnu.org>
17510
17511 * mail/rmail.el: Going to grep hit in Rmail buffer finds the message.
17512 (rmail-variables): Set next-error-move-function.
17513 (rmail-what-message): Take argument POS.
17514 (rmail-next-error-move): New function.
17515
17516 2011-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
17517
17518 * emacs-lisp/smie.el (smie-bnf->prec2): Give more understandable error
17519 messages for adjacent non-terminals.
17520
17521 2011-06-23 Richard Stallman <rms@gnu.org>
17522
17523 * mail/rmail.el (rmail-retry-ignored-headers): Add message-id.
17524 (rmail-show-message-1): Preserve buffer modified flag.
17525 (rmail-start-mail): Don't specify use of rmail-mail-return;
17526 that's done by mail-bury now.
17527 (rmail-mail-return): Handle arg NEWBUF.
17528
17529 2011-06-23 Michael Albinus <michael.albinus@gmx.de>
17530
17531 * net/tramp-sh.el (tramp-method-out-of-band-p): Check, whether
17532 SIZE is a number.
17533
17534 2011-06-23 Martin Rudalics <rudalics@gmx.at>
17535
17536 * window.el (get-lru-window, get-mru-window)
17537 (get-largest-window): Never return a minibuffer window.
17538 (display-buffer-pop-up-window): Fix a bug that could lead to
17539 reusing the minibuffer window.
17540 (display-buffer): Pass original specifier argument to
17541 display-buffer-function instead of the normalized one.
17542 Reported by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
17543
17544 2011-06-22 Leo Liu <sdl.web@gmail.com>
17545
17546 * minibuffer.el (completing-read-function)
17547 (completing-read-default): Move from minibuf.c.
17548
17549 2011-06-22 Richard Stallman <rms@gnu.org>
17550
17551 * mail/sendmail.el (mail-bury): If Rmail is in use, return nicely
17552 to Rmail even if not started by a special Rmail command.
17553
17554 * mail/rmailmm.el (rmail-insert-mime-forwarded-message):
17555 Copy the buffer currently showing just one message.
17556
17557 2011-06-22 Roland Winkler <winkler@gnu.org>
17558
17559 * textmodes/bibtex.el (bibtex-entry-update): Use mapc.
17560 (bibtex-clean-entry): First delete the old key so that a
17561 customized algorithm for generating the new key does not get
17562 confused by the old key.
17563 (bibtex-url): Obey regexp of first step.
17564 (bibtex-search-entries): Do not use add-to-list with local
17565 list-var.
17566
17567 2011-06-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
17568
17569 * mail/smtpmail.el (smtpmail-try-auth-methods): If the user has
17570 stored a user name, then query for the password first, instead of
17571 waiting for SMTP to give an error message and the trying again.
17572
17573 2011-06-22 Lawrence Mitchell <wence@gmx.li>
17574
17575 * net/browse-url.el (browse-url-xdg-open): Use 0, rather than nil
17576 BUFFER in call-process.
17577
17578 2011-06-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
17579
17580 * mail/smtpmail.el (smtpmail-via-smtp): Make sure we don't send
17581 QUIT twice.
17582 (smtpmail-try-auth-methods): Require user name and password from
17583 auth-source.
17584
17585 2011-06-22 Martin Rudalics <rudalics@gmx.at>
17586
17587 * window.el (display-buffer-default-specifiers)
17588 (display-buffer-alist): Remove entries for pop-up-frame-alist.
17589 Suggested by Katsumi Yamaoka <yamaoka@jpl.org>.
17590 (split-window): Normalize SIDE argument (Bug#8916).
17591
17592 * frame.el (pop-up-frame-alist, pop-up-frame-function)
17593 (special-display-frame-alist, special-display-popup-frame):
17594 Remove duplicate declarations. These are now in window.el.
17595
17596 2011-06-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
17597
17598 * mail/smtpmail.el (smtpmail-via-smtp):
17599 Set :use-starttls-if-possible so that we always use STARTTLS if the
17600 server supports it. SMTP servers that support STARTTLS commonly
17601 require it.
17602
17603 * net/network-stream.el (network-stream-open-starttls): Support
17604 upgrading to STARTTLS always, even if we don't have built-in support.
17605 (open-network-stream): Add the :always-query-capabilities keyword.
17606
17607 * mail/smtpmail.el: Rewritten to do opportunistic STARTTLS
17608 upgrades with `open-network-stream', and rely solely on
17609 auth-source for all credentials. Big changes throughout the file,
17610 but in particular:
17611 (smtpmail-auth-credentials): Remove.
17612 (smtpmail-starttls-credentials): Remove.
17613 (smtpmail-via-smtp): Check for servers saying they want AUTH after
17614 MAIL FROM, too.
17615
17616 * net/network-stream.el (network-stream-open-starttls):
17617 Provide support for client certificates both for external and built-in
17618 STARTTLS.
17619 (auth-source): Require.
17620 (open-network-stream): Document the :client-certificate keyword.
17621 (network-stream-certificate): Change cert-cert to cert and
17622 cert-key to key.
17623
17624 2011-06-21 Michael Albinus <michael.albinus@gmx.de>
17625
17626 * net/tramp-cache.el (top): Don't load the persistency file when
17627 "emacs -Q" has been called.
17628
17629 2011-06-21 Tim Harper <timcharper@gmail.com>
17630
17631 * term/ns-win.el (ns-initialize-window-system):
17632 Set application-specific `ApplePressAndHoldEnabled' system
17633 resource to NO as it is not yet supported by the NS port.
17634
17635 2011-06-21 Juanma Barranquero <lekktu@gmail.com>
17636
17637 * misc.el (list-dynamic-libraries--refresh): Compute header here...
17638 (list-dynamic-libraries): ...not here.
17639
17640 2011-06-21 Leo Liu <sdl.web@gmail.com>
17641
17642 * subr.el (sha1): Implement sha1 using secure-hash.
17643
17644 2011-06-21 Martin Rudalics <rudalics@gmx.at>
17645
17646 * window.el (display-buffer-alist): In default value do not
17647 enforce searching a window on any but the selected frame.
17648 Reported by Katsumi Yamaoka <yamaoka@jpl.org>.
17649 (display-buffer-select-window): Remove function.
17650 (display-buffer-in-window): When a window on another frame gets
17651 reused, do not select it any more but just raise its frame if
17652 necessary (Bug#8851) and (Bug#8856).
17653 (display-buffer-normalize-options): Handle pop-up-frames related
17654 options more faithfully.
17655 (pop-to-buffer): Don't rely on `display-buffer' selecting the
17656 window if it is on another frame.
17657 (display-buffer-alist, display-buffer-default-specifiers):
17658 Don't make new frame unsplittable by default.
17659 (display-buffer-normalize-argument): Fix doc-string typo and use
17660 'same-frame-other-window instead of 'other-window when associating
17661 with display-buffer-macro-specifiers.
17662
17663 2011-06-21 Vincent Belaïche <vincent.b.1@hotmail.fr>
17664
17665 * play/5x5.el (5x5-solve-rotate-left, 5x5-solve-rotate-right):
17666 New functions.
17667 (5x5-mode-map, 5x5-mode-menu): Bind them.
17668 (5x5-draw-grid): Tweak the solver's rendering.
17669
17670 2011-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
17671
17672 * progmodes/compile.el (compilation-error-regexp-alist-alist): Rename
17673 `caml' to `python-tracebacks-and-caml'; allow leading tabs (bug#8585).
17674
17675 2011-06-21 Drew Adams <drew.adams@oracle.com>
17676
17677 * menu-bar.el: Use function variable instead of switch-to-buffer.
17678 (menu-bar-select-buffer-function): New variable.
17679 (menu-bar-update-buffers): Use it (bug#8876).
17680
17681 2011-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
17682
17683 * emacs-lisp/bytecomp.el (add-to-list): Add handler to check the
17684 variable's status.
17685
17686 2011-06-20 Jan Djärv <jan.h.d@swipnet.se>
17687
17688 * x-dnd.el (x-dnd-version-from-flags)
17689 (x-dnd-more-than-3-from-flags): New functions that handle long-as-cons
17690 and long as number (Bug#8899).
17691 (x-dnd-handle-xdnd): Call functions above (Bug#8899).
17692
17693 2011-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
17694
17695 * minibuffer.el (completion-metadata): Add `metadata' to the alist.
17696 (completion-try-completion, completion-all-completions): Compute the
17697 metadata argument if it's missing; make it optional (bug#8795).
17698
17699 * wid-edit.el: Use lex-bind and move towards completion-at-point.
17700 (widget-complete): Use new :completion-function property.
17701 (widget-completions-at-point): New function.
17702 (default): Use :completion-function instead of :complete.
17703 (widget-default-completions): Rename from widget-default-complete;
17704 Rewrite.
17705 (widget-string-complete, widget-file-complete, widget-color-complete):
17706 Remove functions.
17707 (file, symbol, function, variable, coding-system, color):
17708 * international/mule-cmds.el (default-input-method, charset)
17709 (language-info-custom-alist):
17710 * cus-edit.el (face): Use new property :completions.
17711
17712 * progmodes/pascal.el (pascal-completions-at-point): New function.
17713 (pascal-mode): Use it.
17714 (pascal-mode-map): Use completion-at-point.
17715 (pascal-toggle-completions): Make obsolete.
17716 (pascal-complete-word, pascal-show-completions):
17717 * progmodes/octave-mod.el (octave-complete-symbol):
17718 Redefine as obsolete alias.
17719 * progmodes/octave-inf.el (inferior-octave-completion-at-point):
17720 Signal absence of completion info for old Octave,
17721 (inferior-octave-complete): Redefine as obsolete alias.
17722 * progmodes/meta-mode.el: Use lexical-binding and completion-at-point.
17723 (meta-completions-at-point): Rename from meta-complete-symbol and
17724 adapt it for use on completion-at-point-functions.
17725 (meta-common-mode): Use it.
17726 (meta-looking-at-backward, meta-match-buffer): Remove.
17727 (meta-complete-symbol): Redefine as obsolete alias.
17728 (meta-common-mode-map): Use completion-at-point.
17729 * progmodes/make-mode.el: Use lexical-binding and completion-at-point.
17730 (makefile-mode-map): Use completion-at-point.
17731 (makefile-completions-at-point): Rename from makefile-complete and
17732 adapt it for use on completion-at-point-functions.
17733 (makefile-mode): Use it.
17734 (makefile-complete): Redefine as obsolete alias.
17735
17736 2011-06-20 Deniz Dogan <deniz@dogan.se>
17737
17738 * net/rcirc.el: Delete trailing whitespaces once and for all.
17739
17740 2011-06-20 Daniel Colascione <dan.colascione@gmail.com>
17741
17742 * emacs-lisp/syntax.el (syntax-ppss): Further improve docstring.
17743
17744 2011-06-19 Chong Yidong <cyd@stupidchicken.com>
17745
17746 * files.el (auto-mode-alist): Entry for m2-mode (Bug#8852).
17747
17748 * info.el (Info-apropos-toc-nodes): Minor doc fix (Bug#8833).
17749
17750 2011-06-19 Martin Rudalics <rudalics@gmx.at>
17751
17752 * window.el (display-buffer-other-window-means-other-frame):
17753 Call display-buffer-normalize-alist.
17754 (display-buffer-normalize-specifiers-1): Rename to
17755 display-buffer-normalize-argument. New argument other-frame.
17756 Rewrite.
17757 (display-buffer-normalize-specifiers-2): Rename to
17758 display-buffer-normalize-options.
17759 (display-buffer-normalize-alist-1): New function.
17760 (display-buffer-normalize-specifiers-3): Rename to
17761 display-buffer-normalize-alist.
17762 Call display-buffer-normalize-alist-1.
17763 (display-buffer-normalize-options-inhibit): New variable.
17764 (display-buffer-normalize-specifiers): Rewrite calling
17765 display-buffer-normalize-alist,
17766 display-buffer-normalize-argument, and
17767 display-buffer-normalize-options. Don't call the latter if
17768 display-buffer-normalize-options-inhibit is non-nil.
17769 (frame-auto-delete): New option.
17770 (window-deletable-p): Use frame-auto-delete.
17771 (window-list-no-nils, window-state-ignored-parameters)
17772 (window-state-get-1, window-state-get, window-state-put-list)
17773 (window-state-put-1, window-state-put-2, window-state-put):
17774 New functions.
17775 (display-buffer-normalize-options): Move special-display-p group
17776 after pop-up-frame group (Bug#8851) and (Bug#8856).
17777
17778 2011-06-18 Chong Yidong <cyd@stupidchicken.com>
17779
17780 * emacs-lisp/rx.el (rx-constituents): Add support for numbered
17781 groups (Bug#8776).
17782 (rx-submatch-n): New function.
17783 (rx): Document it.
17784
17785 * dired-x.el (dired-mark-unmarked-files): Fix interactive spec
17786 (Bug#8768).
17787
17788 * replace.el (occur-mode-map): Set occur-edit-mode binding to "e".
17789
17790 * textmodes/fill.el (default-justification): Add :safe (Bug#8879).
17791
17792 * cus-face.el (custom-declare-face): Call custom-theme-recalc face
17793 anytime existing face settings are present (Bug#8889).
17794
17795 * progmodes/delphi.el (delphi-mode-syntax-table): Use defvar.
17796 (delphi-mode): Use define-derived-mode to inherit from prog-mode.
17797 Remove unused argument.
17798
17799 2011-06-18 Martin Rudalics <rudalics@gmx.at>
17800
17801 * window.el (display-buffer-default-specifiers):
17802 Remove pop-up-frame. Add pop-up-window-min-height,
17803 pop-up-window-min-width, and another reuse-window specifier
17804 (Bug#8882). Reported by Dan Nicolaescu <dann@gnu.org>.
17805 (display-buffer-normalize-specifiers-2):
17806 Handle split-height-threshold and split-width-threshold also when
17807 pop-up-windows is unset. Add a reuse-window specifier for the
17808 case popping up a new window fails.
17809 (special-display-popup-frame): Remove double quoting.
17810 (display-buffer-normalize-specifiers-1): Fix thinko.
17811
17812 2011-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
17813
17814 * shell.el (shell-completion-vars): Set pcomplete-termination-string
17815 according to comint-completion-addsuffix.
17816
17817 * pcomplete.el: Convert to lexical binding and fix bug#8819.
17818 (pcomplete-suffix-list): Mark as obsolete.
17819 (pcomplete-completions-at-point): Capture pcomplete-norm-func and
17820 pcomplete-seen in the closure.
17821 (pcomplete-comint-setup): Setup completion-at-point as well.
17822 (pcomplete--entries): New function.
17823 (pcomplete--env-regexp): New var.
17824 (pcomplete-entries): Rewrite to work with partial-completion and
17825 without relying on pcomplete-suffix-list.
17826 (pcomplete-pare-list): Remove, unused.
17827
17828 2011-06-17 Martin Rudalics <rudalics@gmx.at>
17829
17830 * window.el (display-buffer-alist): Set pop-up-window-min-height
17831 and pop-up-window-min-width in default value. Reported by
17832 Thierry Volpiatto <thierry.volpiatto@gmail.com>. New specifier
17833 other-window-means-other-frame.
17834 (display-buffer-macro-specifiers): Comment out entry for
17835 other-window specifier.
17836 (display-buffer-other-window-means-other-frame): New function.
17837 (display-buffer-normalize-specifiers-1): New arguments
17838 buffer-name and label. Treat other-window case specially.
17839 (display-buffer-normalize-specifiers-2): Treat other-window case
17840 specially.
17841 (display-buffer-normalize-specifiers-3): New function.
17842 (display-buffer-normalize-specifiers):
17843 Call display-buffer-normalize-specifiers-3.
17844
17845 2011-06-17 Martin Rudalics <rudalics@gmx.at>
17846
17847 * window.el (same-window-p): Fix two typos introduced when
17848 adding with-no-warnings.
17849 (display-buffer-normalize-specifiers-1): Don't check
17850 pop-up-frames for 'unset initialization.
17851 (display-buffer-normalize-specifiers-2): Major rewrite using
17852 special-display-p and same-window-p (Bug#8851) and (Bug#8856).
17853 (pop-up-frames, display-buffer-reuse-frames)
17854 (display-buffer-mark-dedicated): Don't initialize to 'unset.
17855 Suggested by David Engster <deng@randomsample.de>.
17856 (even-window-heights): Initialize to 'unset.
17857 (display-buffer-alist-set): Handle new 'unset initializations.
17858 (display-buffer-macro-specifiers): Don't pop up a new frame in the
17859 other window case.
17860
17861 2011-06-16 Martin Rudalics <rudalics@gmx.at>
17862
17863 * window.el (display-buffer-normalize-specifiers-1):
17864 Respect current value of pop-up-frames for most reasonable values of
17865 second argument of display-buffer (Bug#8865).
17866 (switch-to-buffer-same-frame, switch-to-buffer-other-window)
17867 (switch-to-buffer-other-window-same-frame)
17868 (switch-to-buffer-other-frame): Fix doc-strings. Reported by Drew
17869 Adams (Bug#8875).
17870 (display-buffer): Don't check noninteractive when calling
17871 display-buffer-pop-up-frame.
17872 (display-buffer-pop-up-frame): Never pop up a frame in
17873 noninteractive mode (Bug#8857).
17874 (enlarge-window, shrink-window): Don't report an error when the
17875 window can't be resized as requested (Bug#8862).
17876
17877 2011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
17878
17879 * pcmpl-rpm.el (pcomplete/rpm): Minor simplification.
17880
17881 * emacs-lisp/debug.el (debug): Don't leave the buffer in Debugger.
17882
17883 * abbrev.el (define-abbrev-table): Don't add a table multiple times.
17884
17885 2011-06-15 Alan Mackenzie <acm@muc.de>
17886
17887 * progmodes/cc-fonts.el (c-font-lock-declarations): 1: Whilst checking
17888 for declarators, disable knr checking to speed up for normal files.
17889 2: Refactor, replacing a sequence of nested if forms by a cond form.
17890
17891 2011-06-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
17892
17893 * net/network-stream.el (open-network-stream): Add the keyword
17894 :always-query-capabilities for the case where you want to force a
17895 `plain' network connection, but the protocol still requires the
17896 capabilitiy command (i.e., SMTP and EHLO).
17897
17898 * subr.el (process-live-p): Rename from `process-alive-p' for
17899 consistency with other `-live-p' functions.
17900
17901 2011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
17902
17903 * window.el (same-window-buffer-names, same-window-regexps)
17904 (special-display-frame-alist, special-display-popup-frame)
17905 (special-display-function, special-display-buffer-names)
17906 (special-display-regexps, pop-up-frame-alist)
17907 (pop-up-frame-function, pop-up-frames, display-buffer-reuse-frames)
17908 (pop-up-windows, split-window-preferred-function)
17909 (split-height-threshold, split-width-threshold, even-window-heights)
17910 (display-buffer-mark-dedicated): Don't encourage the use of
17911 display-buffer-alist from Elisp code.
17912
17913 2011-06-15 Dan Nicolaescu <dann@ics.uci.edu>
17914
17915 * progmodes/python.el (python-mode): Derive from prog-mode.
17916 * progmodes/ps-mode.el (ps-mode):
17917 * progmodes/mixal-mode.el (mixal-mode):
17918 * progmodes/cfengine.el (cfengine-mode):
17919 * progmodes/ld-script.el (ld-script-mode): Likewise.
17920
17921 2011-06-15 Martin Rudalics <rudalics@gmx.at>
17922
17923 * window.el (display-buffer-alist): Trim default value to avoid
17924 popping up a new frame (Bug#8857) or reusing an arbitrary window
17925 on another frame.
17926 (display-buffer): Do not fall back on popping up a new frame in
17927 batch mode (Bug#8857).
17928
17929 2011-06-14 Chong Yidong <cyd@stupidchicken.com>
17930
17931 * cus-theme.el (describe-theme-1): Use custom-theme-p.
17932 (custom-theme-summary): New function.
17933 (customize-themes): Use it.
17934
17935 2011-06-13 Glenn Morris <rgm@gnu.org>
17936
17937 * cus-dep.el (custom-make-dependencies): Use up command-line-args-left.
17938
17939 2011-06-13 Martin Rudalics <rudalics@gmx.at>
17940
17941 * help.el (help-window): Remove variable.
17942 (help-window-point-marker, temp-buffer-max-height)
17943 (temp-buffer-resize-mode, help-window-select): Rewrite doc-strings.
17944 (help-print-return-message): Don't set help-window.
17945 (resize-temp-buffer-window): Rewrite cod eand doc-string.
17946 (help-window-setup-finish): Remove.
17947 (help-window-display-message, help-window-setup)
17948 (with-help-window): Major rewrite based on new
17949 display-buffer-window variable.
17950
17951 * help-mode.el (help-mode-finish): Remove help-window related
17952 code.
17953
17954 * view.el (view-exits-all-viewing-windows): Remove reference to
17955 view-return-to-alist in doc-string.
17956 (view-return-to-alist): Make obsolete.
17957 (view-buffer): Call pop-to-buffer-same-window and remove
17958 undo-window code.
17959 (view-buffer-other-window): Call pop-to-buffer-other-window and
17960 simplify code. Ignore second argument.
17961 (view-buffer-other-frame): Call pop-to-buffer-other-frame and
17962 simplify code. Ignore second argument.
17963 (view-return-to-alist-update): Make obsolete.
17964 (view-mode-enter): Rename second argument to QUIT-RESTORE.
17965 Rewrite using quit-restore window parameters.
17966 (view-mode-exit): Rename second argument to EXIT-ONLY.
17967 Rewrite using quit-restore-window.
17968 (View-exit, View-exit-and-edit, View-leave, View-quit)
17969 (View-quit-all, View-kill-and-leave): Call view-mode-exit with
17970 appropriate arguments.
17971 (view-end-message): Use quit-restore window parameter.
17972
17973 * window.el (display-buffer-function): Rewrite doc-string.
17974 (display-buffer-window, display-buffer-alist): New variables.
17975 (display-buffer-split-specifiers)
17976 (display-buffer-side-specifiers)
17977 (display-buffer-macro-specifiers): New constants.
17978 (display-buffer-even-window-sizes, display-buffer-set-height)
17979 (display-buffer-set-width, display-buffer-select-window)
17980 (display-buffer-in-window, display-buffer-reuse-window)
17981 (display-buffer-split-window-1, display-buffer-split-window)
17982 (display-buffer-split-atom-window, display-buffer-pop-up-window)
17983 (display-buffer-pop-up-frame, display-buffer-pop-up-side-window)
17984 (display-buffer-in-side-window, normalize-buffer-to-display)
17985 (display-buffer-normalize-specifiers-1)
17986 (display-buffer-normalize-specifiers-2)
17987 (display-buffer-normalize-specifiers, display-buffer-frame):
17988 New functions.
17989 (display-buffer): Major rewrite.
17990 (display-buffer-other-window, display-buffer-other-frame)
17991 (pop-to-buffer, switch-to-buffer-other-window)
17992 (switch-to-buffer-other-frame): Rewrite.
17993 (display-buffer-same-window, display-buffer-same-frame)
17994 (display-buffer-same-frame-other-window)
17995 (pop-to-buffer-same-window, pop-to-buffer-same-frame)
17996 (pop-to-buffer-other-window)
17997 (pop-to-buffer-same-frame-other-window)
17998 (pop-to-buffer-other-frame, switch-to-buffer-same-frame)
17999 (switch-to-buffer-other-window-same-frame): New functions.
18000 (same-window-p, special-display-p): Rewrite disabling warnings.
18001 Make obsolete.
18002 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
18003 (display-buffer-mark-dedicated): Initialize to symbol 'unset.
18004 Make obsolete
18005 (same-window-buffer-names, same-window-regexps)
18006 (special-display-frame-alist, special-display-popup-frame)
18007 (special-display-function, special-display-buffer-names)
18008 (special-display-regexps, pop-up-frame-alist)
18009 (pop-up-frame-function, split-window-preferred-function)
18010 (split-height-threshold, split-width-threshold)
18011 (even-window-heights): Make obsolete.
18012
18013 2011-06-12 Glenn Morris <rgm@gnu.org>
18014
18015 * term/xterm.el (terminal-init-xterm): `version' may be nil. (Bug#8838)
18016 Misc simplifications.
18017
18018 2011-06-12 Martin Rudalics <rudalics@gmx.at>
18019
18020 * window.el (window-safely-shrinkable-p): Restore function which
18021 was inadvertently removed in change from 2011-06-11. Declare as
18022 obsolete.
18023
18024 * calendar/calendar.el (calendar-generate-window):
18025 Use window-iso-combined-p instead of combination of one-window-p and
18026 window-safely-shrinkable-p.
18027
18028 2011-06-12 Glenn Morris <rgm@gnu.org>
18029
18030 * progmodes/fortran.el (fortran-mode-syntax-table):
18031 * progmodes/f90.el (f90-mode-syntax-table):
18032 Set % to punctuation. (Bug#8820)
18033 (f90-find-tag-default): Remove, no longer needed.
18034
18035 2011-06-12 Daniel Colascione <dan.colascione@gmail.com>
18036
18037 * emacs-lisp/syntax.el (syntax-ppss): Clarify which items are invalid.
18038
18039 2011-06-11 Chong Yidong <cyd@stupidchicken.com>
18040
18041 * image.el (image-animated-p): Return animation delay in seconds.
18042 Avoid bit manipulation in Lisp; use `delay' entry in the metadata.
18043 (image-animate-timeout): Remove DELAY argument. Don't assume
18044 every subimage has the same delay; get it from image-animated-p.
18045 (image-animate): Caller changed.
18046
18047 2011-06-11 Michael Albinus <michael.albinus@gmx.de>
18048
18049 * net/tramp.el (tramp-debug-message): Add `tramp-with-progress-reporter'
18050 to ignored backtrace functions.
18051
18052 2011-06-11 Glenn Morris <rgm@gnu.org>
18053
18054 * calendar/appt.el (appt-disp-window-function): Doc fix.
18055 (appt-check): Handle overlapping appointments. (Bug#8337)
18056
18057 2011-06-11 Martin Rudalics <rudalics@gmx.at>
18058
18059 * window.el (window-tree-1, window-tree): New functions, moving
18060 the latter to window.el.
18061 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
18062 (bw-find-tree-sub-1, bw-l, bw-t, bw-r, bw-b, bw-dir, bw-eqdir)
18063 (bw-refresh-edges): Remove.
18064 (balance-windows-1, balance-windows-2): New functions.
18065 (balance-windows): Rewrite in terms of window tree functions,
18066 balance-windows-1 and balance-windows-2.
18067 (bw-adjust-window): Remove.
18068 (balance-windows-area-adjust): New function with functionality of
18069 bw-adjust-window but using resize-window.
18070 (set-window-text-height): Rewrite doc-string.
18071 Use normalize-live-window and resize-window.
18072 (enlarge-window-horizontally, shrink-window-horizontally):
18073 Rename argument to DELTA.
18074 (window-buffer-height): New function.
18075 (fit-window-to-buffer, shrink-window-if-larger-than-buffer):
18076 Rewrite using new window resize routines.
18077 (kill-buffer-and-window, mouse-autoselect-window-select):
18078 Use ignore-errors instead of condition-case.
18079 (quit-window): Call delete-frame instead of delete-windows-on
18080 for the only buffer on frame.
18081
18082 2011-06-10 Martin Rudalics <rudalics@gmx.at>
18083
18084 * loadup.el (top-level): Load window before files for the sake
18085 of replace-buffer-in-windows.
18086
18087 * files.el (read-buffer-to-switch)
18088 (switch-to-buffer-other-window)
18089 (switch-to-buffer-other-frame, display-buffer-other-frame):
18090 Move to window.el.
18091
18092 * simple.el (get-next-valid-buffer, last-buffer, next-buffer)
18093 (previous-buffer): Move to window.el.
18094
18095 * bindings.el (unbury-buffer): Move to window.el.
18096
18097 * window.el (delete-other-windows-vertically): Move after
18098 definition of delete-other-windows.
18099 (other-window, delete-windows-on, replace-buffer-in-windows):
18100 Move here from window.c.
18101 (record-window-buffer, unrecord-window-buffer)
18102 (set-window-buffer-start-and-point, switch-to-prev-buffer)
18103 (switch-to-next-buffer): New functions.
18104 (get-next-valid-buffer, last-buffer, next-buffer): Move here
18105 from simple.el. Call switch-to-next-buffer.
18106 (previous-buffer): Move here from simple.el.
18107 Call switch-to-prev-buffer.
18108 (bury-buffer): Move here from buffer.c. Switch to previous
18109 buffer when window cannot be deleted.
18110 (unbury-buffer): Move here from bindings.el.
18111 (ctl-x-map): Move binding for other-window from window.c to
18112 here.
18113 (read-buffer-to-switch, switch-to-buffer-other-window)
18114 (switch-to-buffer-other-frame): Move here from files.el.
18115 (normalize-buffer-to-switch-to): New functions.
18116 (switch-to-buffer): Move here from buffer.c.
18117 Use read-buffer-to-switch and normalize-buffer-to-switch-to.
18118
18119 2011-06-10 Martin Rudalics <rudalics@gmx.at>
18120
18121 * window.el (window-min-height, window-min-width): Move here
18122 from window.c. Add defcustoms and rewrite doc-strings.
18123 (resize-mini-window, resize-window): New functions.
18124 (adjust-window-trailing-edge, enlarge-window, shrink-window):
18125 Move here from window.c.
18126 (maximize-window, minimize-window): New functions.
18127 (delete-window, delete-other-windows, split-window): Move here
18128 from window.c.
18129 (window-split-min-size): New function.
18130 (split-window-keep-point): Mention split-window-above-each-other
18131 instead of split-window-vertically.
18132 (split-window-above-each-other, split-window-vertically):
18133 Rename split-window-vertically to split-window-above-each-other
18134 and provide defalias for old definition.
18135 (split-window-side-by-side, split-window-horizontally):
18136 Rename split-window-horizontally to split-window-side-by-side
18137 and provide defalias for the old definition.
18138 (ctl-x-map): Move bindings for delete-window,
18139 delete-other-windows and enlarge-window here from window.c.
18140 Replace bindings for split-window-vertically and
18141 split-window-horizontally by bindings for
18142 split-window-above-each-other and split-window-side-by-side.
18143
18144 * cus-start.el (all): Remove entries for window-min-height and
18145 window-min-width. Add entries for window-splits and
18146 window-nest.
18147
18148 2011-06-09 Glenn Morris <rgm@gnu.org>
18149
18150 * calendar/appt.el (appt-mode-line): New function.
18151 (appt-check, appt-disp-window): Use it.
18152
18153 * files.el (hack-one-local-variable-eval-safep):
18154 Allow minor-modes with explicit +/-1 arguments.
18155
18156 2011-06-09 Teodor Zlatanov <tzz@lifelogs.com>
18157
18158 * term/xterm.el (xterm): Add defgroup.
18159 (xterm-extra-capabilities): Add defcustom to supply known xterm
18160 capabilities, skip querying them, or query them (default).
18161 (terminal-init-xterm): Use it.
18162 (terminal-init-xterm-modify-other-keys): New function to set up
18163 modifyOtherKeys support to simplify `terminal-init-xterm'.
18164
18165 2011-06-09 Martin Rudalics <rudalics@gmx.at>
18166
18167 * window.el (resize-window-reset, resize-window-reset-1)
18168 (resize-subwindows-skip-p, resize-subwindows-normal)
18169 (resize-subwindows, resize-other-windows, resize-this-window)
18170 (resize-root-window, resize-root-window-vertically)
18171 (window-deletable-p, window-or-subwindow-p)
18172 (frame-root-window-p): New functions.
18173
18174 2011-06-09 Glenn Morris <rgm@gnu.org>
18175
18176 * net/ange-ftp.el (ange-ftp-switches-ok): New function.
18177 (ange-ftp-get-files): Use it.
18178
18179 2011-06-09 Alexander Klimov <alserkli@inbox.ru> (tiny change)
18180
18181 * mail/sendmail.el (mail-recover-1, mail-recover):
18182 * files.el (recover-file, recover-session):
18183 Handle dired-listing-switches not being just a single short option.
18184
18185 2011-06-09 Glenn Morris <rgm@gnu.org>
18186
18187 * calendar/appt.el (appt-display-message, appt-disp-window):
18188 Handle lists of appointments.
18189
18190 2011-06-08 Martin Rudalics <rudalics@gmx.at>
18191
18192 * window.el (one-window-p): Move down in code.
18193 Rewrite doc-string.
18194 (window-current-scroll-bars): Rewrite doc-string.
18195 Normalize live window argument.
18196 (walk-windows, get-window-with-predicate, count-windows):
18197 Rewrite doc-string. Use window-list-1.
18198 (window-in-direction-2, window-in-direction, get-mru-window):
18199 New functions.
18200
18201 2011-06-08 Reuben Thomas <rrt@sc3d.org>
18202
18203 * progmodes/flymake.el (flymake-compilation-prevents-syntax-check):
18204 Doc fix (Bug#8713).
18205
18206 2011-06-08 Chong Yidong <cyd@stupidchicken.com>
18207
18208 * repeat.el (repeat-on-final-keystroke): Fix type (Bug#8696).
18209
18210 2011-06-08 Juanma Barranquero <lekktu@gmail.com>
18211
18212 * loadhist.el (unload-feature-special-hooks):
18213 Add `comint-output-filter-functions'.
18214
18215 2011-06-08 Ivan Kanis <gnu@kanis.fr>
18216
18217 * calendar/appt.el (appt-check): Move some initializations into the let.
18218
18219 2011-06-08 Martin Rudalics <rudalics@gmx.at>
18220
18221 * window.el (window-height): Defalias to window-total-height.
18222 (window-width): Defalias to window-body-width.
18223
18224 2011-06-07 Chong Yidong <cyd@stupidchicken.com>
18225
18226 * image-mode.el (image-toggle-animation): New command.
18227 (image-mode-map): Bind it to RET.
18228 (image-mode): Update message.
18229 (image-toggle-display-image): Avoid a spurious cache flush.
18230 (image-transform-rotation): Doc fix.
18231 (image-transform-properties): Return quickly in the normal case.
18232 (image-animate-loop): Rename from image-animate-max-time.
18233
18234 * image.el (image-animate-max-time): Move to image-mode.el.
18235 (create-animated-image): Remove unnecessary function.
18236 (image-animate): Rename from image-animate-start. New arg.
18237 (image-animate-stop): Remove; just use image-animate-timer.
18238 (image-animate-timer): Use car-safe.
18239 (image-animate-timeout): Rename argument.
18240
18241 2011-06-07 Martin Rudalics <rudalics@gmx.at>
18242
18243 * window.el (get-lru-window, get-largest-window): Move here from
18244 window.c. Rename first argument to ALL-FRAMES.
18245 Rephrase doc-strings.
18246 (get-buffer-window-list): Rewrite using window-list-1.
18247 Rephrase doc-string.
18248 (window-safe-min-height, window-safe-min-width): New constants.
18249 (window-size-ignore, window-min-size, window-min-size-1)
18250 (window-sizable, window-sizable-p, window-size-fixed-1)
18251 (window-size-fixed-p, window-min-delta-1, window-min-delta)
18252 (window-max-delta-1, window-max-delta, window-resizable)
18253 (window-resizable-p, window-total-height, window-total-width)
18254 (window-body-width): New functions.
18255 (window-full-height-p, window-full-width-p): Rewrite using
18256 window-total-size.
18257 (window-body-height): Rewrite using window-body-size.
18258
18259 2011-06-06 Martin Rudalics <rudalics@gmx.at>
18260
18261 * window.el (window-right, window-left, window-child)
18262 (window-child-count, window-last-child, window-any-p)
18263 (normalize-live-buffer, normalize-live-frame)
18264 (normalize-any-window, normalize-live-window)
18265 (window-iso-combination-p, window-iso-combined-p)
18266 (window-iso-combinations)
18267 (walk-window-tree-1, walk-window-tree, walk-window-subtree)
18268 (windows-with-parameter, window-with-parameter)
18269 (window-atom-root, make-window-atom, window-atom-check-1)
18270 (window-atom-check, window-side-check, window-check):
18271 New functions.
18272 (ignore-window-parameters, window-sides, window-sides-vertical)
18273 (window-sides-slots): New variables.
18274 (window-size-fixed): Move down in code. Minor doc-string fix.
18275
18276 2011-06-05 Andreas Schwab <schwab@linux-m68k.org>
18277
18278 * comint.el (comint-dynamic-complete-as-filename)
18279 (comint-dynamic-complete-filename): Correctly call
18280 completion-in-region.
18281
18282 2011-06-05 Deniz Dogan <deniz@dogan.se>
18283
18284 * net/rcirc.el (rcirc-prompt-for-encryption): Fix bug introduced
18285 in last change.
18286
18287 2011-06-05 Deniz Dogan <deniz@dogan.se>
18288
18289 * net/rcirc.el (rcirc-prompt-for-encryption): New function.
18290 (rcirc): Use it to prompt for encryption.
18291
18292 2011-06-05 Roland Winkler <winkler@gnu.org>
18293
18294 * textmodes/bibtex.el (bibtex-search-buffer): New variable.
18295 (bibtex-search-entries): New command bound to C-c C-a.
18296 (bibtex-display-entries): New function.
18297
18298 2011-06-05 Roland Winkler <winkler@gnu.org>
18299
18300 * textmodes/bibtex.el (bibtex-generate-url-list): Fix docstring.
18301 (bibtex-insert-kill): After yanking insert newline if necessary.
18302 (bibtex-initialize): Call bibtex-string-files-init only once.
18303 (bibtex-mode): Do not call easy-menu-add.
18304 (bibtex-validate-globally): Use save-excursion in bibtex buffers.
18305 (bibtex-yank): Set arg properly if nil.
18306
18307 2011-06-05 Roland Winkler <winkler@gnu.org>
18308
18309 * textmodes/bibtex.el (bibtex-search-entry-globally):
18310 New variable.
18311 (bibtex-search-entry): Use it.
18312
18313 2011-06-05 Roland Winkler <winkler@gnu.org>
18314
18315 * textmodes/bibtex.el (bibtex-entry-format): New option
18316 sort-fields.
18317 (bibtex-format-entry, bibtex-reformat): Honor this option.
18318 (bibtex-parse-entry): Return fields in proper order.
18319
18320 2011-06-05 Juanma Barranquero <lekktu@gmail.com>
18321
18322 * doc-view.el (doc-view-remove-if): Move computation of result out
18323 of `dolist' to silence misleading lexical-binding warning.
18324
18325 2011-06-04 Chong Yidong <cyd@stupidchicken.com>
18326
18327 * emacs-lisp/timer.el (timer-activate): Remove unused arg.
18328 (timer-activate, timer-activate-when-idle): Doc fix (Bug#8793).
18329
18330 2011-06-04 Michael Albinus <michael.albinus@gmx.de>
18331
18332 * net/tramp-sh.el (tramp-find-shell): Apply workaround also for
18333 "SunOS 5.10".
18334
18335 2011-06-04 Michael Albinus <michael.albinus@gmx.de>
18336
18337 * net/tramp.el (tramp-set-completion-function, tramp-parse-rhosts)
18338 (tramp-parse-shosts, tramp-parse-sconfig, tramp-parse-shostkeys)
18339 (tramp-parse-hosts, tramp-parse-passwd, tramp-parse-netrc)
18340 (tramp-parse-putty):
18341 * net/tramp-sh.el (tramp-completion-function-alist-rsh)
18342 (tramp-completion-function-alist-ssh)
18343 (tramp-completion-function-alist-telnet)
18344 (tramp-completion-function-alist-su)
18345 (tramp-completion-function-alist-putty): Set `tramp-autoload'
18346 cookie.
18347
18348 * net/tramp-ftp.el:
18349 * net/tramp-sh.el:
18350 * net/tramp-smb.el: Set `tramp-autoload' cookie, and eval after
18351 load "tramp.el" `tramp-set-completion-function'.
18352
18353 2011-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
18354
18355 * shell.el: Require and use pcomplete.
18356 (shell-dynamic-complete-functions): Add pcomplete-completions-at-point.
18357 (shell-completion-vars): Set pcomplete-default-completion-function.
18358
18359 2011-06-04 Deniz Dogan <deniz@dogan.se>
18360
18361 * iswitchb.el (iswitchb-window-buffer-p): Use `member' instead of
18362 `memq' (Bug#8799).
18363
18364 2011-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
18365
18366 * subr.el (make-progress-reporter): Add "..." by default (bug#8785).
18367
18368 2011-06-02 Juanma Barranquero <lekktu@gmail.com>
18369
18370 * bs.el (bs--mark-unmark, bs--nth-wrapper):
18371 * mpc.el (mpc-select-extend, mpc-songpointer-context):
18372 * vc/log-view.el (log-view-beginning-of-defun):
18373 * vc/smerge-mode.el (smerge-apply-resolution-patch)
18374 (smerge-refine-forward, smerge-refine-chopup-region):
18375 Silence warning for unused `dotimes' counter variables.
18376
18377 2011-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
18378
18379 * net/tramp.el (tramp-with-progress-reporter): Rename from
18380 with-progress-reporter. Use `declare'.
18381 * net/tramp-smb.el:
18382 * net/tramp-sh.el:
18383 * net/tramp-gvfs.el: Update all uses.
18384
18385 2011-06-02 Jay Belanger <jay.p.belanger@gmail.com>
18386
18387 * calc/calc.el (calc-kill-stack-buffer): Make sure that the trail
18388 buffer isn't killed before making it current.
18389
18390 2011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
18391
18392 Silence various byte-compiler warnings.
18393 * emacs-lisp/byte-run.el (make-obsolete-variable): New argument
18394 `access-type' and new obsolescence format.
18395 * emacs-lisp/bytecomp.el (byte-compile-warn-obsolete): Adjust to
18396 new format.
18397 (byte-compile-check-variable): New `access-type' argument.
18398 Only warn if the access-type is obsolete.
18399 (byte-compile-dynamic-variable-bind, byte-compile-variable-ref)
18400 (byte-compile-variable-set): Adjust callers.
18401 * help-fns.el (describe-variable): Adjust to new obsolescence format.
18402 * mail/sendmail.el (mail-mailer-swallows-blank-line): Only mark
18403 setting it as obsolete.
18404 * simple.el (minibuffer-completing-symbol):
18405 * font-lock.el (font-lock-beginning-of-syntax-function): Only mark read
18406 access as obsolete.
18407 * minibuffer.el (minibuffer-completing-file-name): Don't make it
18408 obsolete yet.
18409 * international/quail.el (quail-mouse-choose-completion): Remove unused
18410 code referring to obsolete var.
18411 (quail-choose-completion-string): Remove.
18412 * server.el (server-clients-with, server-kill-buffer-query-function)
18413 (server-kill-emacs-query-function): Silence "unused `proc'" warnings.
18414 * proced.el (proced-send-signal):
18415 * emacs-lisp/lisp.el (lisp-complete-symbol):
18416 Replace completion-annotate-function with completion-extra-properties.
18417
18418 2011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
18419
18420 * simple.el (goto-line): Use read-number.
18421 (overriding-map-is-bound): Remove.
18422 (saved-overriding-map): Change default.
18423 (save&set-overriding-map): Rename from ensure-overriding-map-is-bound;
18424 Take the map as argument.
18425 (universal-argument, negative-argument, digit-argument): Use it.
18426 (restore-overriding-map): Adjust.
18427 (do-auto-fill): Use fill-forward-paragraph.
18428 (keyboard-quit): Don't signal an error when debug-on-quit is non-nil.
18429
18430 * minibuffer.el (minibuffer-inactive-mode-map): New var.
18431 (minibuffer-inactive-mode): New major mode.
18432 * mouse.el (mouse-drag-region): Remove the "mouse-1 pops up
18433 the *Messages* buffer" hack.
18434 (mouse-popup-menubar): Don't burp if the event is a normal key.
18435
18436 Miscellaneous tweaks.
18437 * emacs-lisp/cl-macs.el (dolist, dotimes): Use the same strategy for
18438 lexical scoping as in subr.el's dolist and dotimes.
18439 * emacs-lisp/bytecomp.el (byte-compile-unfold-bcf):
18440 Silence compiler warning.
18441 * thingatpt.el (forward-whitespace): Trivial coding style fix.
18442 * subr.el (with-output-to-temp-buffer): Provide an edebug spec.
18443 * international/ccl.el (ccl-compile): Trivial simplification.
18444 * help-fns.el (help-do-arg-highlight): Silence compiler warning.
18445 * emacs-lisp/testcover.el (testcover-end): Remove spurious
18446 `printflag' argument.
18447 * emacs-lisp/byte-run.el (make-obsolete, make-obsolete-variable):
18448 Purecopy the whole obsolescence data.
18449
18450 2011-06-01 Leo Liu <sdl.web@gmail.com>
18451
18452 * net/rcirc.el (rcirc-decode-coding-system): Revert last change;
18453 improve doc-string as suggested by Marco Pessotto
18454 <melmothx@gmail.com>.
18455 (rcirc-print): Fix last change.
18456
18457 2011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
18458
18459 * minibuffer.el (complete-with-action): Return nil for the metadata and
18460 boundaries of non-functional tables.
18461 (completion-table-dynamic): Return nil for the metadata.
18462 (completion-table-with-terminator): Add default case, using
18463 complete-with-action.
18464 (completion--metadata): New function.
18465 (completion-all-sorted-completions, minibuffer-completion-help): Use it
18466 to try and avoid pathological performance problems.
18467 (completion--embedded-envvar-table): Return `category' metadata.
18468
18469 2011-05-31 Lars Magne Ingebrigtsen <larsi@gnus.org>
18470
18471 * subr.el (process-alive-p): New tiny convenience function.
18472
18473 2011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
18474
18475 * emacs-lisp/debug.el (debug): Save&restore not just the buffer's
18476 content but also its previous major mode.
18477
18478 2011-05-31 Helmut Eller <eller.helmut@gmail.com>
18479
18480 * emacs-lisp/debug.el (debug): Restore the previous content of the
18481 *Backtrace* buffer when we exit with C-M-c.
18482
18483 2011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
18484
18485 * minibuffer.el: Add metadata method to completion tables.
18486 (completion-category-overrides): New defcustom.
18487 (completion-metadata, completion--field-metadata)
18488 (completion-metadata-get, completion--styles)
18489 (completion--cycle-threshold): New functions.
18490 (completion-try-completion, completion-all-completions):
18491 Add `metadata' argument to choose completion-styles.
18492 (completion--do-completion): Use metadata to choose cycling.
18493 (completion-all-sorted-completions): Use metadata for sorting.
18494 Remove :completion-cycle-penalty which is not needed any more.
18495 (completion--try-word-completion): Add `metadata' argument.
18496 (minibuffer-completion-help): Check metadata for annotation function
18497 and sorting.
18498 (completion-file-name-table): Return `category' metadata.
18499 (minibuffer-completing-file-name): Make obsolete.
18500 * simple.el (minibuffer-completing-symbol): Make obsolete.
18501 * icomplete.el (icomplete-completions): Pass new `metadata' param to
18502 completion-try-completion.
18503
18504 2011-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
18505
18506 * mail/smtpmail.el (smtpmail-send-data): Add progress reporter.
18507
18508 2011-05-30 Leo Liu <sdl.web@gmail.com>
18509
18510 * net/rcirc.el (rcirc-debug-buffer): Use visible buffer name.
18511 (rcirc-print): Decode all incoming messages (bug#8744).
18512 (rcirc-decode-coding-system): Allow value nil for automatic coding
18513 system detection.
18514
18515 2011-06-01 Glenn Morris <rgm@gnu.org>
18516
18517 * mail/emacsbug.el (report-emacs-bug-hook): Mailclient ignores From.
18518
18519 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
18520
18521 * image.el (image-animate-max-time): Allow nil and t values.
18522 Default to nil.
18523 (create-animated-image): Doc fix.
18524 (image-animate-start): Remove second arg; just use
18525 image-animate-max-time.
18526 (image-animate-timeout): Doc fix. Args changed.
18527
18528 * image-mode.el (image-toggle-display-image): Ensure that the
18529 image spec passed to the animate timer is the same object as in
18530 the buffer's display property (Bug#6981).
18531 (image-transform-properties): Doc fix.
18532
18533 * image.el (image-animate-max-time): Default to nil.
18534
18535 2011-05-29 Martin Rudalics <rudalics@gmx.at>
18536
18537 * menu-bar.el (kill-this-buffer-enabled-p): Avoid looping over
18538 entire buffer list (Bug#8184).
18539
18540 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
18541
18542 * image.el (imagemagick-types-inhibit)
18543 (imagemagick-register-types): Doc fix.
18544
18545 2011-05-29 Deniz Dogan <deniz@dogan.se>
18546
18547 * net/rcirc.el (rcirc): Use the user's stored encryption method by
18548 default.
18549
18550 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
18551
18552 * select.el: Don't perform clipboard-manager saving in hooks;
18553 leave the hooks empty.
18554
18555 2011-05-28 Leo Liu <sdl.web@gmail.com>
18556
18557 * replace.el (occur-menu-map, occur-edit-mode-map): New vars.
18558 (occur-mode-map): Bind occur-edit-mode. Use occur-menu-map.
18559 (occur-edit-mode): New major mode (Bug#8463).
18560 (occur-after-change-function): New function.
18561 (occur-engine): Give Occur tags a read-only property.
18562
18563 2011-05-28 Kevin Ryde <user42@zip.com.au>
18564
18565 * subr.el (def-edebug-spec): Doc fix (Bug#8430).
18566
18567 2011-05-28 Chong Yidong <cyd@stupidchicken.com>
18568
18569 * bindings.el (help-echo): Make the initial non-indicator dash
18570 empty on graphical terminals (Bug#7295).
18571
18572 * files.el (auto-mode-alist): Move config rule after the
18573 in-stripping one (Bug#8547).
18574
18575 * newcomment.el (comment-end-skip): Doc fix (Bug#8659).
18576
18577 * startup.el (normal-splash-screen): Remove gratuitous mode-line
18578 setting (Bug#8740).
18579
18580 2011-05-28 Alp Aker <aker@pitt.edu> (tiny change)
18581
18582 * buff-menu.el (Buffer-menu-revert-function, Buffer-menu-sort)
18583 (Buffer-menu-buffer+size): Use Buffer-menu-buffer-column
18584 (Bug#8539).
18585
18586 2011-05-28 Chong Yidong <cyd@stupidchicken.com>
18587
18588 * emacs-lisp/re-builder.el (re-builder): Improve doc (Bug#8286).
18589
18590 2011-05-28 Dima Kogan <dkogan@cds.caltech.edu> (tiny change)
18591
18592 * progmodes/hideshow.el (hs-looking-at-block-start-p): New fun.
18593 (hs-hide-block-at-point, hs-find-block-beginning)
18594 (hs-already-hidden-p, hs-hide-block, hs-show-block): Use it
18595 (Bug#8279).
18596
18597 2011-05-28 Glenn Morris <rgm@gnu.org>
18598
18599 * startup.el (fancy-about-screen): Use standard mode line. (Bug#8740)
18600
18601 2011-05-28 Chong Yidong <cyd@stupidchicken.com>
18602
18603 * help-fns.el (describe-function-1): If the function is a derived
18604 major mode, print the parent mode.
18605
18606 * progmodes/cc-mode.el (c-mode, c++-mode, objc-mode, java-mode)
18607 (idl-mode, pike-mode, awk-mode): Inherit from prog-mode.
18608
18609 2011-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
18610
18611 * minibuffer.el (completion--capf-wrapper): Check applicability before
18612 returning non-nil for non-exclusive completion data.
18613 * progmodes/etags.el (tags-completion-at-point-function):
18614 * info-look.el (info-lookup-completions-at-point): Mark as
18615 non-exclusive.
18616 (info-complete): Adjust accordingly.
18617
18618 * info-look.el: Convert to lexical-binding and completion-at-point.
18619 (info-lookup-completions-at-point): New function.
18620 (info-complete): Use it and completion-in-region.
18621
18622 2011-05-28 Drew Adams <drew.adams@oracle.com>
18623
18624 * isearch.el: Let M-e start with point at the first mismatched char.
18625 (isearch-fail-pos): New function.
18626 (isearch-edit-string): Use it.
18627
18628 2011-05-28 Dmitry Kurochkin <dmitry.kurochkin@gmail.com> (tiny change)
18629
18630 * isearch.el (isearch-range-invisible): Use invisible-p (bug#8721).
18631
18632 2011-05-27 Toby Cubitt <toby-predictive@dr-qubit.org>
18633
18634 * emacs-lisp/avl-tree.el: New avl-tree-stack datatype. Add new
18635 traversal functions for avl-trees.
18636 (avl-tree--stack): New struct.
18637 (avl-tree-stack-p, avl-tree--stack-repopulate): New funs.
18638 (avl-tree-enter): Add optional `updatefun' arg.
18639 (avl-tree--do-enter): Add optional `updatefun' arg.
18640 Change return value.
18641 (avl-tree-delete): Add optional `test' and `nilflag' args.
18642 (avl-tree--do-delete): Add `test' and `nilflag' args.
18643 Change return value.
18644 (avl-tree-member): Add optional `nilflag'
18645 (avl-tree-member-p): New function.
18646 (avl-tree-mapc, avl-tree-mapf, avl-tree-mapcar): New functions.
18647 (avl-tree-stack, avl-tree-stack-pop, avl-tree-stack-first)
18648 (avl-tree-stack-empty-p): New functions.
18649
18650 * emacs-lisp/avl-tree.el (avl-tree--del-balance): Rename from
18651 avl-tree--del-balance1 and make it work both ways.
18652 (avl-tree--del-balance2): Remove.
18653 (avl-tree--enter-balance): Rename from avl-tree--enter-balance1 and
18654 make it work both ways.
18655 (avl-tree--enter-balance2): Remove.
18656 (avl-tree--switch-dir, avl-tree--dir-to-sign, avl-tree--sign-to-dir):
18657 New macros.
18658 (avl-tree--mapc, avl-tree-map): Add direction argument.
18659
18660 2011-05-27 David Michael <fedora.dm0@gmail.com> (tiny change)
18661
18662 * files.el (interpreter-mode-alist): Add rbash (bug#8745).
18663
18664 2011-05-27 Chong Yidong <cyd@stupidchicken.com>
18665
18666 * select.el: Support clipboard managers with built-in function
18667 x-clipboard-manager-save, via delete-frame-functions and
18668 kill-emacs-hook.
18669 (xselect-convert-to-targets): Add MULTIPLE target to list.
18670 (xselect-convert-to-save-targets): New function.
18671
18672 2011-05-27 Kenichi Handa <handa@m17n.org>
18673
18674 * mail/sendmail.el (mail-encode-header): Avoid double encoding by
18675 let-binding rfc2047-encode-encoded-words to nil.
18676
18677 2011-05-27 Glenn Morris <rgm@gnu.org>
18678
18679 * mail/emacsbug.el: Don't require url-util.
18680
18681 * shell.el (shell-directory-tracker): Case matters. (Bug#8735)
18682
18683 * files.el (set-auto-mode):
18684 Also respect mode: entries at the end of the file. (Bug#8586)
18685
18686 2011-05-26 Glenn Morris <rgm@gnu.org>
18687
18688 * files.el (hack-local-variables-prop-line, hack-local-variables):
18689 Downcase mode names, as seems to be traditional.
18690 (hack-local-variables, hack-local-variables-apply): Doc fixes.
18691
18692 * mail/emacsbug.el (report-emacs-bug): Mention checking From address.
18693 (report-emacs-bug-hook): Try to validate the From address. (Bug#8038)
18694
18695 2011-05-25 Julien Danjou <julien@danjou.info>
18696
18697 * textmodes/rst.el (rst-define-level-faces): Do not define face
18698 symbol if it is already defined.
18699
18700 2011-05-24 Vincent Belaïche <vincentb1@users.sourceforge.net>
18701
18702 * play/5x5.el (5x5-new-game, 5x5-randomize):
18703 Reset 5x5-solver-output to nil when a new grid is cast.
18704 (5x5-log-init, 5x5-log): Use defsubst instead of defmacro to shunt
18705 these debugging traces, as defmacro breaks the compiled code.
18706
18707 2011-05-24 Dmitry Kurochkin <dmitry.kurochkin@gmail.com> (tiny change)
18708
18709 * isearch.el (isearch-range-invisible): Use invisible-p (bug#8721).
18710
18711 2011-05-24 Leo Liu <sdl.web@gmail.com>
18712
18713 * vc/vc-bzr.el (vc-bzr-sha1-program): Rename from sha1-program.
18714 (vc-bzr-sha1): Adapt.
18715
18716 * sha1.el: Remove. Function `sha1' is now builtin.
18717
18718 * bindings.el: Provide sha1 feature.
18719
18720 2011-05-24 Kenichi Handa <handa@m17n.org>
18721
18722 * mail/sendmail.el: Require `rfc2047'.
18723 (mail-insert-from-field): Do not perform RFC2047 encoding.
18724 (mail-encode-header): New function.
18725 (sendmail-send-it): Set buffer-file-coding-system of the work
18726 buffer to the return value of select-message-coding-system.
18727 Call mail-encode-header.
18728
18729 * mail/smtpmail.el (smtpmail-send-it): Call mail-encode-header.
18730
18731 2011-05-24 Sean Neakums <sneakums@zork.net> (tiny change)
18732
18733 * mail/supercite.el (sc-default-cite-frame):
18734 Handle sc-nested-citation-p when sc-cite-blank-lines-p is non-nil.
18735
18736 2011-05-24 Glenn Morris <rgm@gnu.org>
18737
18738 * progmodes/python.el (brm-menu): Declare.
18739
18740 * emulation/viper.el (viper-set-hooks): Declare.
18741
18742 * play/5x5.el (5x5-log-init, 5x5-log): Evaluate when compiling.
18743 (5x5-log-init, 5x5-log, 5x5-solver): Doc fixes.
18744 (math-map-vec, math-sub, math-mul, math-make-intv, math-reduce-vec)
18745 (math-format-number, math-pow, calcFunc-arrange, calcFunc-cvec)
18746 (calcFunc-diag, calcFunc-trn, calcFunc-inv, calcFunc-mrow)
18747 (calcFunc-mcol, calcFunc-vconcat, calcFunc-index): Declare.
18748
18749 2011-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
18750
18751 Add an :exit-function for completion-at-point.
18752
18753 * minibuffer.el (completion--done): New fun.
18754 (completion--do-completion): Use it. New arg `expect-exact'.
18755 (minibuffer-complete, minibuffer-complete-word): Don't output message,
18756 since completion--do-completion does it for us now.
18757 (minibuffer-force-complete): Use completion--done and
18758 completion--replace. Handle sole-completion case with more care.
18759 (minibuffer-complete-and-exit): Use new `expect-exact' arg.
18760 (completion-extra-properties): New var.
18761 (completion-annotate-function): Make obsolete.
18762 (minibuffer-completion-help): Adjust accordingly.
18763 Use completion-list-insert-choice-function.
18764 (completion-at-point, completion-help-at-point):
18765 Bind completion-extra-properties.
18766 (completion-pcm-word-delimiters): Add | (for uniquify, for example).
18767 * simple.el (completion-list-insert-choice-function): New var.
18768 (completion-setup-function): Preserve it.
18769 (choose-completion): Pay attention to it, shuffle the code a bit.
18770 (choose-completion-string): New arg `insert-function'.
18771
18772 * textmodes/bibtex.el: Convert to lexical binding.
18773 (bibtex-mode-map): Use completion-at-point.
18774 (bibtex-mode): Use define-derived-mode&completion-at-point-functions.
18775 (bibtex-completion-at-point-function): New fun, from bibtex-complete.
18776 (bibtex-complete): Define as obsolete alias.
18777 (bibtex-complete-internal): Remove.
18778 (bibtex-format-entry): Remove unused sub-group in regexp.
18779 * shell.el (shell--command-completion-data)
18780 (shell-environment-variable-completion):
18781 * pcomplete.el (pcomplete-completions-at-point):
18782 * comint.el (comint--complete-file-name-data): Use :exit-function
18783 instead of completion-table-with-terminator so it also works for
18784 choose-completion.
18785
18786 2011-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
18787
18788 * <lots-of-files>.el: Don't quote lambda expressions with `quote'.
18789
18790 * vc/smerge-mode.el (smerge-refine-subst): Don't deactivate the mark
18791 (bug#8710).
18792
18793 * emacs-lisp/lisp.el (up-list): Fix forward movement (bug#8708).
18794
18795 2011-05-23 Ken Manheimer <ken.manheimer@gmail.com>
18796
18797 * allout.el (allout-inhibit-auto-fill-on-headline): Create new
18798 customization variable and implement: If non-nil, auto-fill will
18799 be inhibited while on topic's header line.
18800
18801 2011-05-23 Vincent Belaïche <vincentb1@users.sourceforge.net>
18802
18803 * play/5x5.el: I/ Add an arithmetic solver to suggest positions to
18804 click on. II/ Make 5x5 multisession. III/ Ensure that random grids
18805 always have a solution in grid size = 5 cases.
18806 (5x5-mode-map): Add keybinding to function `5x5-solve-suggest'.
18807 (5x5-solver-output, 5x5-log-buffer): New vars.
18808 (5x5-grid, 5x5-x-pos, 5x5-y-pos, 5x5-moves, 5x5-cracking):
18809 Make these variables buffer local to achieve 5x5 multi-session-ness.
18810 (5x5): Set 5x5-grid-size only if SIZE is non-negative.
18811 (5x5-grid-to-vec, 5x5-vec-to-grid, 5x5-log-init, 5x5-log, 5x5-solver)
18812 (5x5-solve-suggest): New funs.
18813 (5x5-randomize): Use 5x5-make-move instead of 5x5-flip-cell to
18814 randomize a grid so that we ensure that there is always a solution.
18815 (5x5-make-random-grid): Allow other movement than flipping.
18816
18817 2011-05-23 Kevin Ryde <user42@zip.com.au>
18818
18819 * emacs-lisp/advice.el (ad-read-advised-function):
18820 Use `function-called-at-point' as the default, if it has
18821 advice and passes PREDICATE.
18822
18823 2011-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
18824
18825 * emacs-lisp/bytecomp.el (byte-compile-function-form): Only call
18826 byte-compile-lambda if it's actually a lambda.
18827
18828 * emacs-lisp/eieio.el (eieio-defgeneric-form-primary-only-one):
18829 Fix function quoting. Use backquote better.
18830
18831 2011-05-22 Yuanle Song <sylecn@gmail.com>
18832
18833 * nxml/rng-xsd.el (rng-xsd-check-pattern): Use case-sensitive
18834 matching (Bug#8516).
18835
18836 2011-05-22 Jari Aalto <jari.aalto@cante.net>
18837
18838 * vc/vc-dir.el (vc-default-dir-printer): Give edited tag a
18839 different face (Bug#8178).
18840
18841 2011-05-22 Chong Yidong <cyd@stupidchicken.com>
18842
18843 * vc/diff-mode.el (diff-changed): Don't use terminal specs for
18844 defface (Bug#8144).
18845
18846 2011-05-22 Stefan Monnier <monnier@iro.umontreal.ca>
18847
18848 * emacs-lisp/macroexp.el (macroexpand-all-1): Convert ' to #' for
18849 funcall as well (bug#8712). Warn when performing those conversions.
18850 * emacs-lisp/bytecomp.el (byte-compile-form): Fix error report.
18851
18852 * progmodes/grep.el (grep-mode): Fix it for good (bug#8684)!
18853
18854 2011-05-22 Glenn Morris <rgm@gnu.org>
18855
18856 * files.el (hack-local-variables-prop-line): Small simplifications.
18857 (hack-local-variables, hack-local-variables-prop-line):
18858 If MODE-ONLY, return the mode, rather than just `t'.
18859
18860 2011-05-21 Stefan Monnier <monnier@iro.umontreal.ca>
18861
18862 * progmodes/grep.el (grep-mode): Fix last change (bug#8684).
18863
18864 2011-05-21 Glenn Morris <rgm@gnu.org>
18865
18866 * files.el (hack-local-variables-prop-line, hack-local-variables):
18867 If only interested in the mode, don't bother doing the other stuff.
18868
18869 * image-mode.el (image-after-revert-hook):
18870 Redraw all frames on which the image is visible. (Bug#8567)
18871
18872 * dired-aux.el (dired-touch-initial): Just use current-time. (Bug#6887)
18873
18874 * wid-edit.el (widget-checklist-match-inline):
18875 Fix 2011-04-19 change. (Bug#8649)
18876
18877 2011-05-20 Stefan Monnier <monnier@iro.umontreal.ca>
18878
18879 * emacs-lisp/checkdoc.el (checkdoc-sentencespace-region-engine):
18880 Also allow singlespace after single-letter capitals followed by a dot.
18881
18882 * nxml/nxml-mode.el (nxml-electric-slash): Reindent when completion is
18883 enabled. Suggested by James Ahlborn <jahlborn@gmail.com> (bug#8704).
18884
18885 2011-05-20 Nix <nix@esperi.org.uk>
18886
18887 * files.el (basic-save-buffer-2):
18888 Fix handling of break-hardlink-on-save with non-existent files.
18889
18890 2011-05-19 Deniz Dogan <deniz@dogan.se>
18891
18892 * net/rcirc.el (rcirc-mode): Initialize rcirc-urls to nil.
18893 (rcirc-markup-urls): Check if rcirc-url-regexp is nil.
18894
18895 2011-05-19 Glenn Morris <rgm@gnu.org>
18896
18897 * progmodes/f90.el (f90-type-def-re):
18898 Handle "type, bind(c)". (Bug#8691)
18899
18900 * emacs-lisp/autoload.el (batch-update-autoloads):
18901 Set autoload-excludes by parsing loadup.el rather than Makefiles.
18902
18903 2011-05-18 Michael Albinus <michael.albinus@gmx.de>
18904
18905 * net/tramp.el (tramp-process-actions): Set "first-password-request"
18906 property for the correct connection in case of multihops.
18907
18908 2011-05-18 Glenn Morris <rgm@gnu.org>
18909
18910 * emacs-lisp/authors.el (authors-fixed-entries): Remove fakemail.c.
18911 * mail/sendmail.el (sendmail-program): Fall back to just "sendmail".
18912
18913 Rationalize calendar handling of day and month abbrev-arrays.
18914 * calendar/calendar.el (calendar-customized-p): New function.
18915 (calendar-abbrev-construct, calendar-make-alist): Change what it does.
18916 (calendar-day-name-array, calendar-month-name-array): Doc fix.
18917 Add :set function.
18918 (calendar-abbrev-length, calendar-day-abbrev-array)
18919 (calendar-month-abbrev-array): Make defcustoms, with appropriate :set.
18920 (calendar-day-abbrev-array, calendar-month-abbrev-array):
18921 Elements may no longer be nil.
18922 (calendar-day-name, calendar-month-name):
18923 Update for changed nature of abbrev arrays.
18924 * calendar/diary-lib.el (diary-name-pattern):
18925 Update for changed nature of abbrev arrays.
18926 (diary-mark-entries-1): Update calendar-make-alist calls.
18927 (diary-font-lock-date-forms): Doc fix for changed abbrev arrays.
18928 * calendar/cal-html.el (cal-html-day-abbrev-array):
18929 Simply inherit from calendar-day-abbrev-array.
18930
18931 2011-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
18932
18933 * progmodes/grep.el (grep-mode): Disable default
18934 compilation-directory-matcher setting (bug#8684).
18935
18936 2011-05-17 Michael Albinus <michael.albinus@gmx.de>
18937
18938 * net/tramp.el (tramp-handle-insert-file-contents): Use "dd"
18939 instead of "head" and "tail". There were problems with SunOS 5.9,
18940 and it performs better.
18941
18942 2011-05-17 Glenn Morris <rgm@gnu.org>
18943
18944 * mail/mail-utils.el (mail-dont-reply-to): Silence compiler.
18945
18946 * progmodes/idlw-shell.el (idlwave-shell-complete-filename):
18947 Replace obsolete function.
18948
18949 * shell.el (pcomplete-parse-arguments-function): Declare.
18950
18951 * calendar/appt.el (appt-message-warning-time, appt-display-mode-line)
18952 (appt-display-diary, appt-display-interval, appt-prev-comp-time)
18953 (appt-check): Doc fixes.
18954 (appt-disp-window-function, appt-delete-window-function):
18955 Remove needless special case in custom :type.
18956 (appt-display-count): Default to 0, not nil.
18957 (appt-check): Reset appt-display-count to 0, not nil.
18958
18959 2011-05-17 Juanma Barranquero <lekktu@gmail.com>
18960
18961 * progmodes/python.el (python-font-lock-keywords):
18962 Add the Python 3.X keyword "nonlocal" (bug#8639).
18963
18964 2011-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
18965
18966 * emacs-lisp/eieio.el (defmethod): Fix quoting of code (bug#8677).
18967
18968 2011-05-16 Kevin Ryde <user42@zip.com.au>
18969
18970 * info-look.el (makefile-automake-mode): New setups, looking in
18971 automake manual, then makefile-mode.
18972 (makefile-mode): Remove automake manual, have it just in
18973 makefile-automake-mode since there's various things different or
18974 not relevant to plain make.
18975 (makefile-mode): Remove "other-modes" non-existent automake-mode,
18976 believe a hypothetical automake-mode would go to makefile-mode,
18977 not the other way around.
18978
18979 2011-05-15 Chong Yidong <cyd@stupidchicken.com>
18980
18981 * vc/diff-mode.el (diff-fixup-modifs): Locate correct position for
18982 hunk-end tags (Bug#8672).
18983
18984 * vc/vc-annotate.el (vc-annotate-mode-map): Bind = to
18985 vc-annotate-show-diff-revision-at-line (Bug#8671).
18986
18987 2011-05-14 Glenn Morris <rgm@gnu.org>
18988
18989 * vc/add-log.el (add-change-log-entry): Don't start adding a new entry
18990 in the middle of an existing one with multiple authors. (Bug#8645)
18991 (change-log-font-lock-keywords): Also handle multiple author lines
18992 with leading tabs. (Bug#8644)
18993
18994 * calendar/appt.el (appt-check): Rename some local variables.
18995 Some simplification/reordering.
18996
18997 * mail/feedmail.el (feedmail-confirm-outgoing-timeout)
18998 (feedmail-sendmail-f-doesnt-sell-me-out)
18999 (feedmail-queue-slug-suspect-regexp, feedmail-debug)
19000 (feedmail-debug-sit-for, feedmail-queue-express-hook)
19001 (feedmail-queue-runner-message-sender): Set :version.
19002 (bbdb-search, bbdb-records, smtp-via-smtp, smtp-server)
19003 (bbdb-dwim-net-address, vm-mail): Declare.
19004 (feedmail-binmail-gnulinuxish-template):
19005 Rename from feedmail-binmail-linuxish-template.
19006 (feedmail-buffer-to-smtp, feedmail-vm-mail-mode):
19007 Use insert-buffer-substring.
19008
19009 2011-05-14 Bill Carpenter <bill@carpenter.org>
19010
19011 * mail/feedmail.el (feedmail-patch-level): Increase.
19012 (feedmail-debug): New custom group.
19013 (feedmail-confirm-outgoing-timeout)
19014 (feedmail-sendmail-f-doesnt-sell-me-out)
19015 (feedmail-queue-slug-suspect-regexp, feedmail-debug)
19016 (feedmail-debug-sit-for, feedmail-queue-express-hook): New options.
19017 (feedmail-sender-line, feedmail-from-line)
19018 (feedmail-fiddle-headers-upwardly, feedmail-enable-spray)
19019 (feedmail-spray-this-address)
19020 (feedmail-spray-address-fiddle-plex-list)
19021 (feedmail-queue-use-send-time-for-date)
19022 (feedmail-queue-use-send-time-for-message-id)
19023 (feedmail-last-chance-hook, feedmail-queue-runner-mode-setter)
19024 (feedmail-buffer-eating-function):
19025 Doc fixes.
19026 (feedmail-spray-via-bbdb, feedmail-buffer-to-smtp)
19027 (feedmail-vm-mail-mode, feedmail-message-action-scroll-up)
19028 (feedmail-message-action-scroll-down): New functions.
19029 (feedmail-queue-directory, feedmail-queue-draft-directory):
19030 Use expand-file-name.
19031 (feedmail-prompt-before-queue-standard-alist): Add scroll entries.
19032 Remove C-v help entry.
19033 (feedmail-queue-buffer-file-name): New variable.
19034 (feedmail-mail-send-hook-splitter, feedmail-buffer-to-binmail)
19035 (feedmail-buffer-to-smtpmail, feedmail-queue-express-to-draft)
19036 (feedmail-message-action-send-strong, feedmail-message-action-edit)
19037 (feedmail-message-action-draft, feedmail-message-action-draft-strong)
19038 (feedmail-message-action-queue, feedmail-message-action-queue-strong)
19039 (feedmail-message-action-toggle-spray)
19040 (feedmail-run-the-queue-no-prompts)
19041 (feedmail-run-the-queue-global-prompt, feedmail-queue-reminder)
19042 (feedmail-look-at-queue-directory, feedmail-queue-subject-slug-maker)
19043 (feedmail-create-queue-filename, feedmail-rfc822-time-zone):
19044 (feedmail-fiddle-header, feedmail-give-it-to-buffer-eater)
19045 (feedmail-envelope-deducer, feedmail-fiddle-from)
19046 (feedmail-fiddle-sender, feedmail-default-date-generator)
19047 (feedmail-fiddle-date, feedmail-fiddle-message-id)
19048 (feedmail-fiddle-spray-address)
19049 (feedmail-fiddle-list-of-spray-fiddle-plexes)
19050 (feedmail-fiddle-list-of-fiddle-plexes)
19051 (feedmail-fill-to-cc-function, feedmail-fill-this-one)
19052 (feedmail-one-last-look, feedmail-fqm-p): Add debug calls.
19053 (feedmail-queue-runner-message-sender, feedmail-binmail-template):
19054 Change default. Doc fix.
19055 (feedmail-queue-runner-cleaner-upper): Use feedmail-say-chatter.
19056 (feedmail-binmail-linuxish-template): New constant.
19057 (feedmail-buffer-to-sendmail): Doc fix. Add debug call.
19058 Respect feedmail-sendmail-f-doesnt-sell-me-out.
19059 (feedmail-send-it): Add debug call.
19060 Use feedmail-queue-buffer-file-name, and
19061 feedmail-send-it-immediately-wrapper.
19062 (feedmail-message-action-send): Add debug call.
19063 Use feedmail-send-it-immediately-wrapper.
19064 (feedmail-queue-express-to-queue): Add debug call.
19065 Run feedmail-queue-express-hook.
19066 (feedmail-message-action-help): Add debug call. Use feedmail-p-h-b-n.
19067 (feedmail-message-action-help-blat):
19068 Rename from feedmail-queue-send-edit-prompt-help-first.
19069 (feedmail-run-the-queue): Add debug call. Set buffer-file-type.
19070 Check line-endings. Handle errors better.
19071 (feedmail-queue-reminder-brief, feedmail-queue-reminder-medium):
19072 Doc fix. Add debug call.
19073 (feedmail-queue-send-edit-prompt): Doc fix. Add debug call.
19074 Use feedmail-queue-send-edit-prompt-inner.
19075 (feedmail-queue-runner-prompt, feedmail-scroll-buffer): New functions.
19076 (feedmail-queue-send-edit-prompt-inner): New function, extracted
19077 from feedmail-queue-send-edit-prompt.
19078 (feedmail-queue-send-edit-prompt-help)
19079 (feedmail-queue-send-edit-prompt-help-later): Remove functions.
19080 (feedmail-tidy-up-slug): Add debug call.
19081 Respect feedmail-queue-slug-suspect-regexp.
19082 (feedmail-queue-subject-slug-maker): Use buffer-substring-no-properties.
19083 (feedmail-dump-message-to-queue): Add debug call.
19084 Expand queue-directory.
19085 (feedmail-dump-message-to-queue): Change message slightly.
19086 Use feedmail-say-chatter.
19087 (feedmail-rfc822-date): Add debug call. Bind system-time-locale.
19088 (feedmail-send-it-immediately-wrapper): New function.
19089 (feedmail-send-it-immediately): Add debug calls. Use let not let*.
19090 Insert empty string rather than newline. Handle full-frame case.
19091 Use catch/throw. Use feedmail-say-chatter.
19092 (feedmail-fiddle-from): Try mail-host-address.
19093 (feedmail-default-message-id-generator): Doc fix.
19094 Bind system-time-locale. Handle missing end.
19095 (feedmail-fiddle-x-mailer): Add debug call.
19096 Handle feedmail-x-mailer-line being nil.
19097 (feedmail-accume-n-nuke-header, feedmail-deduce-address-list):
19098 Add debug call. Use buffer-substring-no-properties.
19099 (feedmail-say-debug, feedmail-say-chatter): New functions.
19100 (feedmail-find-eoh): Give an explicit error.
19101
19102 2011-05-13 Ulf Jasper <ulf.jasper@web.de>
19103
19104 * net/newst-treeview.el (newsticker-treeview-face): Change default
19105 family from helvetica to sans.
19106 (newsticker-treeview-tool-bar-map): Move tool-bar icons to
19107 etc/images/newsticker.
19108
19109 * net/newst-reader.el (newsticker-feed-face): Change default
19110 family from helvetica to sans.
19111
19112 * net/newst-plainview.el (newsticker-new-item-face)
19113 (newsticker-old-item-face, newsticker-immortal-item-face)
19114 (newsticker-obsolete-item-face, newsticker-date-face)
19115 (newsticker-statistics-face): Change default family from
19116 helvetica to sans.
19117 (newsticker--plainview-tool-bar-map): Move tool-bar icons to
19118 etc/images/newsticker.
19119
19120 * net/newst-backend.el (newsticker--do-run-auto-mark-filter)
19121 (newsticker--process-auto-mark-filter-match): Tell user about
19122 auto-marking.
19123
19124 2011-05-13 Didier Verna <didier@xemacs.org>
19125
19126 Common Lisp indentation improvements on defmethod and lambda-lists.
19127 * emacs-lisp/cl-indent.el: Advertise the changes and remove obsolete
19128 TODO entries.
19129 (lisp-lambda-list-keyword-parameter-indentation)
19130 (lisp-lambda-list-keyword-parameter-alignment)
19131 (lisp-lambda-list-keyword-alignment): New customizable user options.
19132 (lisp-indent-defun-method): Improve docstring.
19133 (extended-loop-p): Fix comment.
19134 (lisp-indent-lambda-list-keywords-regexp): New variable.
19135 (lisp-indent-lambda-list): New function.
19136 (lisp-indent-259): Use it.
19137 (lisp-indent-defmethod): Support for more than one
19138 method qualifier and properly indent methods lambda-lists.
19139 (defgeneric): Provide a missing common-lisp-indent-function property.
19140
19141 2011-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
19142
19143 * thingatpt.el (bounds-of-thing-at-point): Return nil rather than
19144 bounds for the empty string (bug#8667).
19145
19146 2011-05-13 Glenn Morris <rgm@gnu.org>
19147
19148 * mail/feedmail.el (feedmail-buffer-to-sendmail): Require sendmail.
19149
19150 * mail/sendmail.el (sendmail-program): Try executable-find first.
19151 (sendmail-send-it): `sendmail-program' cannot be unbound.
19152
19153 * calendar/appt.el (appt-make-list): Simplify.
19154 (appt-time-msg-list): Doc fix.
19155 (appt-check): Change mode-line message at the time of the appointment.
19156
19157 2011-05-12 Andreas Schwab <schwab@linux-m68k.org>
19158
19159 * progmodes/ld-script.el (ld-script-keywords)
19160 (ld-script-builtins): Update keywords list.
19161
19162 2011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
19163
19164 * progmodes/grep.el (grep-filter): Don't trip on partial lines.
19165
19166 * shell.el (shell-completion-vars): New function.
19167 (shell-mode):
19168 * simple.el (read-shell-command): Use it.
19169 (blink-matching-open): No need for " [...]" in minibuffer-message.
19170
19171 2011-05-12 Glenn Morris <rgm@gnu.org>
19172
19173 * calendar/appt.el (appt-now-displayed): Remove pointless variable.
19174 (appt-check): Simplify.
19175
19176 2011-05-12 Eli Zaretskii <eliz@gnu.org>
19177
19178 * vc/smerge-mode.el (smerge-resolve): Use null-device rather than a
19179 literal "/dev/null".
19180
19181 2011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
19182
19183 * emacs-lisp/lisp.el (lisp-complete-symbol, lisp-completion-at-point):
19184 Fix typo.
19185
19186 2011-05-12 Ralph Schleicher <rs@ralph-schleicher.de>
19187
19188 * progmodes/which-func.el (which-function):
19189 Use add-log-current-defun instead of add-log-current-defun-function,
19190 which might not be defined (Bug#8260).
19191
19192 2011-05-12 Glenn Morris <rgm@gnu.org>
19193
19194 * emacs-lisp/bytecomp.el (byte-compile-file-form-defmumble):
19195 Let byte-compile-initial-macro-environment always take precedence.
19196
19197 2011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
19198
19199 * net/rcirc.el: Add support for SSL/TLS connections.
19200 (rcirc-server-alist): New field `encryption'.
19201 (rcirc): Check `encryption' settings.
19202 (rcirc-connect): New arg `encryption'. Use open-network-stream.
19203 Merge make-local-variable into `set'.
19204 (rcirc--connection-open-p): New function.
19205 (rcirc-send-string, rcirc-clean-up-buffer): Use it to handle case where
19206 the process is not a network process (e.g. running gnutls-cli).
19207 (set-rcirc-decode-coding-system, set-rcirc-encode-coding-system):
19208 Make rcirc-(en|de)code-coding-system local here.
19209 (rcirc-mode): Merge make-local-variable into `set'.
19210 (rcirc-parent-buffer): Make permanent buffer-local.
19211 (rcirc-multiline-minor-mode): Don't do it here.
19212 (rcirc-switch-to-server-buffer): Don't switch to a random buffer if
19213 there's no server buffer.
19214
19215 2011-05-11 Glenn Morris <rgm@gnu.org>
19216
19217 * newcomment.el (comment-kill): Prefix "unused" local.
19218
19219 * term/w32console.el (get-screen-color): Declare.
19220
19221 * emacs-lisp/bytecomp.el (byte-compile-arglist-warn):
19222 Handle symbol elements of byte-compile-initial-macro-environment.
19223
19224 2011-05-10 Leo Liu <sdl.web@gmail.com>
19225
19226 * bookmark.el (bookmark-bmenu-mode-map):
19227 Bind bookmark-bmenu-search to `/'.
19228
19229 * mail/footnote.el: Convert to utf-8 encoding.
19230 (footnote-unicode-string, footnote-unicode-regexp): New variable.
19231 (Footnote-unicode): New function.
19232 (footnote-style-alist): Add unicode style to the list.
19233 (footnote-style): Doc fix.
19234
19235 2011-05-10 Jim Meyering <meyering@redhat.com>
19236
19237 Fix doubled-word typos.
19238 * international/quail.el (quail-insert-kbd-layout): and and -> and
19239 * kermit.el: and and -> and
19240 * net/ldap.el (ldap-search-internal): to to -> to
19241 * progmodes/vhdl-mode.el (vhdl-offsets-alist): Likewise.
19242 * progmodes/js.el (js-mode): and and -> and
19243 * textmodes/artist.el (artist-move-to-xy): at at -> at
19244 (artist-draw-region-trim-line-endings): if if -> if
19245 And Safetyc -> Safety.
19246 * textmodes/reftex-dcr.el (reftex-view-crossref): at at -> at a
19247
19248 2011-05-10 Glenn Morris <rgm@gnu.org>
19249 Stefan Monnier <monnier@iro.umontreal.ca>
19250
19251 * files.el (hack-one-local-variable-eval-safep):
19252 Consider "eval: (foo-mode)" to be safe. (Bug#8613)
19253
19254 2011-05-10 Glenn Morris <rgm@gnu.org>
19255
19256 * calendar/diary-lib.el (diary-list-entries-hook)
19257 (diary-mark-entries-hook, diary-nongregorian-listing-hook)
19258 (diary-nongregorian-marking-hook, diary-list-entries)
19259 (diary-include-other-diary-files, diary-mark-entries)
19260 (diary-mark-included-diary-files): Doc fixes.
19261
19262 2011-05-09 Juanma Barranquero <lekktu@gmail.com>
19263
19264 * misc.el: Require tabulated-list.el during compilation.
19265
19266 2011-05-09 Chong Yidong <cyd@stupidchicken.com>
19267
19268 * progmodes/compile.el (compilation-start):
19269 Run compilation-filter-hook for the async case too.
19270 (compilation-filter-hook): Doc fix.
19271
19272 2011-05-09 Deniz Dogan <deniz@dogan.se>
19273
19274 * wdired.el: Remove outdated installation comment. Fix usage
19275 comment.
19276
19277 2011-05-09 Juanma Barranquero <lekktu@gmail.com>
19278
19279 * misc.el: Implement new command `list-dynamic-libraries'.
19280 (list-dynamic-libraries--loaded-only-p): New variable.
19281 (list-dynamic-libraries--refresh): New function.
19282 (list-dynamic-libraries): New command.
19283
19284 2011-05-09 Chong Yidong <cyd@stupidchicken.com>
19285
19286 * progmodes/compile.el (compilation-error-regexp-alist-alist):
19287 Fix the ant regexp to handle end-line and end-column info from jikes.
19288 Re-introduce maven regexp. Give the ruby-Test::Unit regexp a
19289 higher priority to avoid clobbering by gnu.
19290
19291 2011-05-08 Chong Yidong <cyd@stupidchicken.com>
19292
19293 * cus-face.el (custom-declare-face): Call custom-theme-recalc-face
19294 if the face has existing theme settings (Bug#8454).
19295
19296 2011-05-08 Ralph Schleicher <rs@ralph-schleicher.de>
19297
19298 * progmodes/perl-mode.el (perl-imenu-generic-expression):
19299 Only match variables declared via `my' or `our' (Bug#8261).
19300
19301 * net/browse-url.el (browse-url-of-dired-file): Allow browsing of
19302 special file names `.' and `..' (Bug#8259).
19303
19304 2011-05-08 Chong Yidong <cyd@stupidchicken.com>
19305
19306 * progmodes/grep.el (grep-mode-font-lock-keywords):
19307 Remove buffer-changing entries.
19308 (grep-filter): New function.
19309 (grep-mode): Add it to compilation-filter-hook.
19310
19311 * progmodes/compile.el (compilation-filter-hook)
19312 (compilation-filter-start): New defvars.
19313 (compilation-filter): Call compilation-filter-hook prior to
19314 updating the process mark.
19315
19316 2011-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
19317
19318 * emacs-lisp/eieio.el (defmethod): Fix typo in last change.
19319
19320 2011-05-07 Eli Zaretskii <eliz@gnu.org>
19321
19322 * mail/sendmail.el (send-mail-function): On MS-Windows, default to
19323 mailclient-send-it even if window-system is nil. (Bug#8595)
19324
19325 * term/w32console.el (terminal-init-w32console):
19326 Call get-screen-color and use its output to set the frame
19327 background-mode. (Bug#8597)
19328
19329 2011-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
19330
19331 Make bytecomp.el understand that defmethod defines funs (bug#8631).
19332 * emacs-lisp/eieio.el (eieio--defalias, eieio--defgeneric-init-form):
19333 New functions.
19334 (defgeneric, eieio--defmethod): Use them.
19335 (eieio-defgeneric): Remove.
19336 (defmethod): Call defgeneric in a way visible to the byte-compiler.
19337
19338 2011-05-07 Glenn Morris <rgm@gnu.org>
19339
19340 * calendar/timeclock.el (timeclock-log-data): Remove unused local.
19341 Use let rather than let*.
19342 (timeclock-find-discrep): Remove unused local.
19343
19344 * calendar/diary-lib.el (diary-comment-start): Doc fix.
19345
19346 * calendar/appt.el (appt-time-msg-list): Doc fix.
19347
19348 2011-05-06 Noah Friedman <friedman@splode.com>
19349
19350 * apropos.el (apropos-print-doc): Only use
19351 emacs-lisp-docstring-fill-column when it is bound to an integer,
19352 per that variable's documentation.
19353
19354 2011-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
19355
19356 * lpr.el (print-region-1): Echo lpr-program's output, so error messages
19357 and warnings are not silently discarded (e.g. use -d instead of -P).
19358
19359 2011-05-06 Glenn Morris <rgm@gnu.org>
19360
19361 * calendar/appt.el (appt-message-warning-time): Doc fix.
19362 (appt-warning-time-regexp): New option.
19363 (appt-make-list): Respect appt-message-warning-time.
19364
19365 * calendar/diary-lib.el (diary-comment-start, diary-comment-end):
19366 New options.
19367 (diary-add-to-list): Strip comments from the displayed string.
19368 (diary-mode): Set comment-start and comment-end.
19369
19370 * vc/diff-mode.el (smerge-refine-subst): Declare.
19371 (diff-refine-hunk): Don't require smerge-mode when compiling.
19372
19373 2011-05-06 Juanma Barranquero <lekktu@gmail.com>
19374
19375 * simple.el (list-processes): Return nil as the docstring says.
19376
19377 2011-05-05 Michael Albinus <michael.albinus@gmx.de>
19378
19379 * net/ange-ftp.el (ange-ftp-binary-file-name-regexp): Set default
19380 to "".
19381 (ange-ftp-write-region, ange-ftp-insert-file-contents)
19382 (ange-ftp-copy-file-internal): Use only `ange-ftp-binary-file' for
19383 determining of binary transfer. (Bug#7383)
19384
19385 2011-05-05 Michael Albinus <michael.albinus@gmx.de>
19386
19387 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
19388 Fix port computation bug. (Bug#8618)
19389
19390 2011-05-05 Glenn Morris <rgm@gnu.org>
19391
19392 * allout-widgets.el (allout-widgets-mode-inhibit): Declare before use.
19393
19394 * simple.el (shell-dynamic-complete-functions)
19395 (comint-dynamic-complete-functions): Declare.
19396
19397 * net/network-stream.el (gnutls-negotiate):
19398 * simple.el (tabulated-list-print): Fix declarations.
19399
19400 * progmodes/gud.el (syntax-symbol, syntax-point):
19401 Remove unnecessary and incorrect declarations.
19402
19403 * emacs-lisp/check-declare.el (check-declare-scan):
19404 Handle byte-compile-initial-macro-environment in bytecomp.el.
19405
19406 2011-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
19407
19408 Fix earlier half-done eieio-defmethod change (bug#8338).
19409 * emacs-lisp/eieio.el (eieio--defmethod): Rename from eieio-defmethod.
19410 Streamline and change calling convention.
19411 (defmethod): Adjust accordingly and simplify.
19412 (eieio-defclass): Fix broken calls to eieio-defmethod and redirect to
19413 new eieio--defmethod.
19414 (slot-boundp): Minor CSE simplification.
19415
19416 2011-05-05 Milan Zamazal <pdm@zamazal.org>
19417
19418 * progmodes/glasses.el (glasses-separate-capital-groups): New option.
19419 (glasses-make-readable): Use glasses-separate-capital-groups.
19420
19421 2011-05-05 Juanma Barranquero <lekktu@gmail.com>
19422
19423 * emacs-lisp/warnings.el (warning-level-aliases): Reflow docstring.
19424 (warning-series): Doc fix.
19425 (display-warning): Don't try to create the buffer if we just found it.
19426
19427 2011-05-04 Chong Yidong <cyd@stupidchicken.com>
19428
19429 * emacs-lisp/autoload.el (generated-autoload-file): Set to nil.
19430 (autoload-find-generated-file): New function.
19431 (generate-file-autoloads): Bind generated-autoload-file to
19432 buffer-file-name.
19433 (update-file-autoloads, update-directory-autoloads):
19434 Use autoload-find-generated-file. If called interactively, prompt for
19435 output file (Bug#7989).
19436 (batch-update-autoloads): Doc fix.
19437
19438 2011-05-04 Juanma Barranquero <lekktu@gmail.com>
19439
19440 * term/w32-win.el (dynamic-library-alist): Add `gnutls'.
19441
19442 2011-05-04 Glenn Morris <rgm@gnu.org>
19443
19444 * calendar/diary-lib.el (diary-fancy-date-pattern): Turn it into a
19445 function, so it follows changes in calendar-date-style.
19446 (diary-fancy-date-matcher): New function.
19447 (diary-fancy-font-lock-keywords): Use diary-fancy-date-matcher.
19448 (diary-fancy-font-lock-fontify-region-function):
19449 Use diary-fancy-date-pattern as a function.
19450
19451 * calendar/diary-lib.el (diary-fancy-date-pattern): Do not use
19452 non-numbers for `year' etc pseudo-variables. (Bug#8583)
19453
19454 2011-05-04 Teodor Zlatanov <tzz@lifelogs.com>
19455
19456 * net/gnutls.el (gnutls-negotiate): Use CL-style keyword arguments
19457 instead of positional arguments. Allow :keylist and :crlfiles
19458 arguments.
19459 (open-gnutls-stream): Call it.
19460
19461 * net/network-stream.el (network-stream-open-starttls): Adjust to
19462 call `gnutls-negotiate' with :process and :hostname arguments.
19463
19464 2011-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
19465
19466 * minibuffer.el (completion--message): New function.
19467 (completion--do-completion, minibuffer-complete)
19468 (minibuffer-force-complete, minibuffer-complete-word): Use it.
19469 (completion--do-completion): Don't ignore completion-auto-help when in
19470 icomplete-mode.
19471
19472 * whitespace.el (whitespace-trailing-regexp): Don't rely on the
19473 internal encoding (e.g. tibetan zero is not whitespace).
19474 (global-whitespace-mode): Prefer save-current-buffer.
19475 (whitespace-trailing-regexp): Remove useless save-match-data.
19476 (whitespace-empty-at-bob-regexp): Minor simplification.
19477
19478 2011-05-03 Chong Yidong <cyd@stupidchicken.com>
19479
19480 * emacs-lisp/autoload.el (generated-autoload-file): Doc fix (Bug#7989).
19481
19482 2011-05-03 Agustín Martín Domingo <agustin.martin@hispalinux.es>
19483
19484 * textmodes/ispell.el (ispell-add-per-file-word-list):
19485 Use `concat' to create string for insertion.
19486
19487 2011-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
19488
19489 * textmodes/bibtex.el (bibtex-fill-field-bounds, bibtex-fill-entry):
19490 Avoid open-line which runs post-self-insert-hook.
19491 (bibtex-fill-entry): Remove unused `end' var.
19492
19493 2011-05-03 Dirk Ullrich <dirk.ullrich@googlemail.com> (tiny change)
19494
19495 * textmodes/ispell.el (ispell-add-per-file-word-list):
19496 Protect against `nil' value of `comment-start' (Bug#8579).
19497
19498 2011-05-03 Leo Liu <sdl.web@gmail.com>
19499
19500 * isearch.el (isearch-yank-pop): New command.
19501 (isearch-mode-map): Bind it to `M-y'.
19502 (isearch-forward): Mention it.
19503
19504 2011-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
19505
19506 * simple.el (minibuffer-complete-shell-command): Remove.
19507 (minibuffer-local-shell-command-map): Use completion-at-point.
19508 (read-shell-command): Setup completion vars here instead.
19509 (read-expression-map): Bind TAB to symbol completion.
19510
19511 * textmodes/ispell.el (lookup-words): Use with-temp-buffer; signal
19512 error directly rather via storing it into `results'.
19513
19514 2011-05-02 Leo Liu <sdl.web@gmail.com>
19515
19516 * vc/diff.el: Fix description.
19517
19518 2011-05-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
19519
19520 * server.el (server-eval-at): New function.
19521
19522 2011-05-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
19523
19524 * net/network-stream.el (open-network-stream): Take a :nowait
19525 parameter and pass it on to `make-network-process'.
19526 (network-stream-open-plain): Ditto.
19527
19528 2011-04-30 Andreas Schwab <schwab@linux-m68k.org>
19529
19530 * faces.el (face-spec-set-match-display): Don't match toolkit
19531 options on terminal frames.
19532
19533 2011-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
19534
19535 * progmodes/pascal.el: Use lexical binding.
19536 (pascal-mode-map): Remove author preferences.
19537
19538 * pcomplete.el (pcomplete-std-complete): Don't abuse
19539 completion-at-point.
19540
19541 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
19542
19543 * calc/calccomp.el (math-comp-to-string-flat-term): Simplify by
19544 removing code that has been dead since 1991 or so.
19545
19546 * startup.el (command-line): When warning about "_emacs", use a
19547 delayed warning to allow the user to filter it out.
19548
19549 2011-04-28 Deniz Dogan <deniz@dogan.se>
19550
19551 * net/rcirc.el (rcirc-handler-353): Fix bug for channels which the
19552 user has not joined.
19553
19554 2011-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
19555
19556 * pcomplete.el (pcomplete-completions-at-point): Return nil if there
19557 aren't any completions at point.
19558
19559 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
19560
19561 * subr.el (display-delayed-warnings): New function.
19562 (delayed-warnings-hook): New variable.
19563
19564 2011-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
19565
19566 * minibuffer.el (completion-at-point, completion-help-at-point):
19567 Don't presume that a given completion-at-point-function will always
19568 use the same calling convention.
19569
19570 * pcomplete.el (pcomplete-completions-at-point):
19571 Obey pcomplete-ignore-case. Don't call pcomplete-norm-func unless
19572 pcomplete-seen is non-nil.
19573 (pcomplete-comint-setup): Also recognize the new comint/shell
19574 completion functions.
19575 (pcomplete-do-complete): Don't call pcomplete-norm-func unless
19576 pcomplete-seen is non-nil.
19577
19578 2011-04-27 Niels Giesen <niels.giesen@gmail.com>
19579
19580 * calendar/icalendar.el (diary-lib): Add require statement.
19581 (icalendar--create-uid): Read out a uid from a text-property on
19582 the first character in the entry. This allows for code to add its
19583 own uid to the entry.
19584 (icalendar--convert-float-to-ical): Add export of
19585 `diary-float'-entries save for those with the optional DAY
19586 argument.
19587
19588 2011-04-27 Daniel Colascione <dan.colascione@gmail.com>
19589
19590 * subr.el (shell-quote-argument): Use alternate escaping strategy
19591 when we spot a variable reference in a string.
19592
19593 2011-04-26 Daniel Colascione <dan.colascione@gmail.com>
19594
19595 * cus-start.el (all): Define customization for debug-on-event.
19596
19597 2011-04-26 Daniel Colascione <dan.colascione@gmail.com>
19598
19599 * subr.el (shell-quote-argument): Escape correctly under Windows.
19600
19601 2011-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
19602
19603 * emulation/cua-base.el (cua-selection-mode): Make it toggle again.
19604
19605 2011-04-25 Michael Albinus <michael.albinus@gmx.de>
19606
19607 * net/tramp.el (tramp-process-actions): Add POS argument.
19608 Delete region between POS and (pos).
19609
19610 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
19611 Use `nil' position in `tramp-process-actions' call.
19612 (tramp-maybe-open-connection): Call `tramp-process-actions' with pos.
19613
19614 * net/tramp-smb.el (tramp-smb-maybe-open-connection): Use `nil'
19615 position in `tramp-process-actions' call.
19616
19617 * net/trampver.el: Update release number.
19618
19619 2011-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
19620
19621 * custom.el (defcustom): Obey lexical-binding.
19622
19623 Fix octave-inf completion problems reported by Alexander Klimov.
19624 * progmodes/octave-inf.el (inferior-octave-mode-syntax-table):
19625 Inherit from octave-mode-syntax-table.
19626 (inferior-octave-mode): Set info-lookup-mode.
19627 (inferior-octave-completion-at-point): New function.
19628 (inferior-octave-complete): Use it and completion-in-region.
19629 (inferior-octave-dynamic-complete-functions): Use it as well, and use
19630 comint-filename-completion.
19631 * progmodes/octave-mod.el (octave-mode-syntax-table): Use _ syntax for
19632 symbol elements which shouldn't be word elements.
19633 (octave-font-lock-keywords, octave-beginning-of-defun)
19634 (octave-function-header-regexp): Adjust regexps accordingly.
19635 (octave-mode-map): Also use info-lookup-symbol for C-c C-h.
19636
19637 2011-04-25 Juanma Barranquero <lekktu@gmail.com>
19638
19639 * net/gnutls.el (gnutls-errorp): Declare before first use.
19640
19641 2011-04-24 Teodor Zlatanov <tzz@lifelogs.com>
19642
19643 * net/gnutls.el (gnutls-negotiate): Add hostname, verify-flags,
19644 verify-error, and verify-hostname-error parameters. Check whether
19645 default trustfile exists before going to use it. Add missing
19646 argument to gnutls-message-maybe call. Return value.
19647 Reported by Claudio Bley <claudio.bley@gmail.com>.
19648 (open-gnutls-stream): Add usage example.
19649
19650 * net/network-stream.el (network-stream-open-starttls): Give host
19651 parameter to `gnutls-negotiate'.
19652 (gnutls-negotiate): Adjust `gnutls-negotiate' declaration.
19653 * subr.el (shell-quote-argument): Escape correctly under Windows.
19654
19655 2011-04-24 Daniel Colascione <dan.colascione@gmail.com>
19656
19657 * progmodes/cc-engine.el (c-forward-decl-or-cast-1):
19658 Use correct match group (bug#8438).
19659
19660 2011-04-24 Chong Yidong <cyd@stupidchicken.com>
19661
19662 * emacs-lisp/package.el (package-built-in-p): Fix typo.
19663 (package-menu--generate): New arg specifying packages to show.
19664 (package-menu-refresh, package-menu-execute, list-packages):
19665 Callers changed.
19666 (package-show-package-list): New function, replacing deleted
19667 package--list-packages (renamed because it is non-internal).
19668
19669 * finder.el (finder-list-matches): Use package-show-package-list
19670 instead of deleted package--list-packages.
19671
19672 * vc/vc-annotate.el (vc-annotate-goto-line): New command.
19673 Based on a previous implementation by Juanma Barranquero (Bug#8366).
19674 (vc-annotate-mode-map): Bind it to RET.
19675
19676 2011-04-24 Uday S Reddy <u.s.reddy@cs.bham.ac.uk> (tiny change)
19677
19678 * progmodes/etags.el (next-file): Don't use set-buffer to change
19679 buffers (Bug#8478).
19680
19681 2011-04-24 Chong Yidong <cyd@stupidchicken.com>
19682
19683 * files.el (auto-mode-alist): Use js-mode for .json (Bug#8529).
19684
19685 * apropos.el (apropos-label-face): Avoid variable-pitch face.
19686 (apropos-accumulator): Doc fix.
19687 (apropos-function, apropos-macro, apropos-command)
19688 (apropos-variable, apropos-face, apropos-group, apropos-widget)
19689 (apropos-plist): Add face property.
19690 (apropos-symbols-internal): Fix indentation.
19691 (apropos-print): Simplify help, and recognize apropos-multi-type.
19692 (apropos-print-doc): Use button-type-get to extract the button's
19693 face property. Fill docstring (Bug#8352).
19694
19695 2011-04-23 Juanma Barranquero <lekktu@gmail.com>
19696
19697 * buff-menu.el (Buffer-menu--buffers): Fix typo in docstring (bug#8535).
19698
19699 * play/mpuz.el (mpuz-silent): Doc fix.
19700 (mpuz-mode-map): Use mapc.
19701 (mpuz-put-number-on-board): Rename parameter L to COLUMNS.
19702 (mpuz-letter-to-digit, mpuz-check-all-solved, mpuz-create-buffer):
19703 Fix typos in docstrings.
19704
19705 * play/doctor.el (doc$, doctor-$, doctor-read-print, doctor-read-token)
19706 (doctor-nounp, doctor-pronounp): Fix typos in docstrings.
19707
19708 * mouse-drag.el (mouse-drag-throw): Fix typo in docstring.
19709
19710 2011-04-23 Chong Yidong <cyd@stupidchicken.com>
19711
19712 * minibuffer.el (completion--do-completion): Avoid the "Next char
19713 not unique" prompt if icomplete-mode is enabled (Bug#5849).
19714
19715 * mouse.el (mouse-drag-mode-line-1): Make sure that if we push
19716 mouse-2 into unread-command-events, it is interpreted correctly.
19717
19718 * image-mode.el (image-type, image-mode-map, image-minor-mode-map)
19719 (image-toggle-display): Doc fix.
19720
19721 2011-04-23 Stephen Berman <stephen.berman@gmx.net>
19722
19723 * textmodes/page.el (what-page): Use line-number-at-pos to
19724 calculate line number (Bug#6825).
19725
19726 2011-04-22 Juanma Barranquero <lekktu@gmail.com>
19727
19728 * eshell/esh-mode.el (find-tag-interactive): Declare function.
19729 (eshell-find-tag): Remove `with-no-warnings', unneeded now.
19730 Pass argument NO-DEFAULT to `find-tag-interactive'.
19731
19732 2011-04-22 Juanma Barranquero <lekktu@gmail.com>
19733
19734 Lexical-binding cleanup.
19735
19736 * progmodes/ada-mode.el (ada-after-change-function, ada-loose-case-word)
19737 (ada-no-auto-case, ada-capitalize-word, ada-untab, ada-narrow-to-defun):
19738 * progmodes/ada-prj.el (ada-prj-initialize-values)
19739 (ada-prj-display-page, ada-prj-field-modified, ada-prj-display-help)
19740 (ada-prj-show-value):
19741 * progmodes/ada-xref.el (ada-find-any-references, ada-gdb-application):
19742 * progmodes/antlr-mode.el (antlr-with-displaying-help-buffer)
19743 (antlr-invalidate-context-cache, antlr-options-menu-filter)
19744 (antlr-language-option-extra, antlr-c++-mode-extra, antlr-run-tool):
19745 * progmodes/bug-reference.el (bug-reference-push-button):
19746 * progmodes/fortran.el (fortran-line-length):
19747 * progmodes/glasses.el (glasses-change):
19748 * progmodes/octave-mod.el (octave-fill-paragraph):
19749 * progmodes/python.el (python-mode, python-pdbtrack-track-stack-file)
19750 (python-pdbtrack-grub-for-buffer, python-sentinel):
19751 * progmodes/sql.el (sql-save-connection):
19752 * progmodes/tcl.el (tcl-indent-command, tcl-popup-menu):
19753 * progmodes/xscheme.el (xscheme-enter-debugger-mode):
19754 Mark unused parameters.
19755
19756 * progmodes/compile.el (compilation--flush-directory-cache)
19757 (compilation--flush-parse, compile-internal): Mark unused parameters.
19758 (compilation-buffer-name): Rename parameter MODE-NAME to NAME-OF-MODE.
19759 (compilation-next-error-function): Remove unused variable `timestamp'.
19760
19761 * progmodes/cpp.el (cpp-parse-close): Remove unused variable `begin'.
19762 (cpp-signal-read-only, cpp-grow-overlay): Mark unused parameters.
19763
19764 * progmodes/dcl-mode.el (dcl-end-of-command):
19765 Remove unused variable `start'.
19766 (dcl-calc-command-indent-multiple, dcl-calc-cont-indent-relative)
19767 (dcl-option-value-basic, dcl-option-value-offset)
19768 (dcl-option-value-margin-offset, dcl-option-value-comment-line):
19769 Mark unused parameters.
19770 (dcl-save-local-variable): Remove unused variable `val'.
19771 (mode): Declare.
19772
19773 * progmodes/delphi.el (delphi-save-state, delphi-after-change):
19774 Mark unused parameters.
19775 (delphi-ignore-changes): Move before first use.
19776 (delphi-charset-token-at): Remove unused variable `start'.
19777 (delphi-else-start): Remove unused variable `if-count'.
19778 (delphi-comment-block-start, delphi-comment-block-end):
19779 Remove unused variable `kind'.
19780 (delphi-indent-line): Remove unused variable `new-point'.
19781
19782 * progmodes/ebrowse.el (ebrowse-files-list)
19783 (ebrowse-list-of-matching-members, ebrowse-tags-list-members-in-file):
19784 Mark unused parameters. Don't quote `lambda'.
19785 (ebrowse-sort-tree-list, ebrowse-same-tree-member-buffer-list):
19786 Don't quote `lambda'.
19787 (ebrowse-revert-tree-buffer-from-file, ebrowse-tags-choose-class)
19788 (ebrowse-goto-visible-member/all-member-lists): Mark unused parameters.
19789 (ebrowse-create-tree-buffer): Rename parameter OBARRAY to CLASSES.
19790 (ebrowse-toggle-mark-at-point): Remove unused variable `pnt'.
19791 Use `ignore-errors'.
19792 (ebrowse-frozen-tree-buffer-name, ebrowse-find-source-file)
19793 (ebrowse-view/find-file-and-search-pattern)
19794 (ebrowse-view/find-member-declaration/definition):
19795 Rename parameter TAGS-FILE-NAME to TAGS-FILE.
19796 (ebrowse-find-class-declaration, ebrowse-view-class-declaration):
19797 Rename parameter PREFIX-ARG to PREFIX.
19798 (ebrowse-tags-read-name): Remove unused variables `start' and
19799 `member-info'.
19800 (ebrowse-display-member-buffer): Rename variable `tags-file-name'
19801 to `tags-file'.
19802
19803 * progmodes/etags.el (local-find-tag-hook): Declare.
19804 (tag-partial-file-name-match-p, tag-any-match-p, list-tags):
19805 Mark unused parameters.
19806
19807 * progmodes/executable.el (compilation-error-regexp-alist): Declare.
19808 (executable-interpret): Mark unused parameter.
19809
19810 * progmodes/flymake.el (flymake-process-sentinel)
19811 (flymake-after-change-function)
19812 (flymake-create-temp-with-folder-structure)
19813 (flymake-get-include-dirs-dot): Mark unused parameters.
19814 (flymake-safe-delete-directory): Remove unused variable `err'.
19815
19816 * progmodes/gdb-mi.el (speedbar-change-initial-expansion-list)
19817 (speedbar-timer-fn, speedbar-line-text)
19818 (speedbar-change-expand-button-char, speedbar-delete-subblock)
19819 (speedbar-center-buffer-smartly): Declare functions.
19820 (gdb-find-watch-expression): Remove unused variable `array'.
19821 (gdb-edit-value, gdb-gdb, gdb-ignored-notification, gdb-thread-created)
19822 (gdb-starting): Mark unused parameters.
19823 (gud-gdbmi-marker-filter): Remove unused variable `output-record'.
19824 (gdb-table-string): Remove unused variable `res'.
19825 (gdb-place-breakpoints): Remove unused variables `flag' and `bptno'.
19826 (gdb-disassembly-handler-custom): Remove unused variable `pos'.
19827 (gdb-display-buffer): Remove unused variable `cur-size'.
19828
19829 * progmodes/gud.el (gud-def): Use `defalias' instead of `defun' to
19830 allow lexical-binding compilation.
19831 (gud-expansion-speedbar-buttons, gud-gdb-goto-stackframe)
19832 (gud-dbx-massage-args, gud-xdb-massage-args, gud-perldb-massage-args)
19833 (gud-jdb-massage-args, gud-jdb-find-source, gud-find-class):
19834 Mark unused parameters.
19835 (gud-gdb-marker-filter): Remove unused variable `match'.
19836 (gud-find-class): Bind `syntax-symbol' and `syntax-point' to suitable
19837 lambda expressions and funcall them, instead of using `fset'.
19838
19839 * progmodes/hideif.el (hif-parse-if-exp): Rename parameter
19840 HIF-TOKEN-LIST to TOKEN-LIST and let-bind `hif-token-list'.
19841
19842 * progmodes/hideshow.el (hs-hide-block-at-point): Remove unused
19843 variable `header-beg'; use `let'.
19844
19845 * progmodes/icon.el (indent-icon-exp): Remove unused variables
19846 `restart', `last-sexp' and `at-do'.
19847
19848 * progmodes/js.el (js--debug): Mark unused parameter.
19849 (js--parse-state-at-point): Remove unused variable `bound'; use `let'.
19850 (js--splice-into-items): Remove unused variable `item'.
19851 (js--read-symbol, js--read-tab): Pass 1/-1 to `ido-mode', not t/nil.
19852
19853 * progmodes/make-mode.el (makefile-make-font-lock-keywords):
19854 Rename parameter FONT-LOCK-KEYWORDS to FL-KEYWORDS.
19855 (makefile-complete): Remove unused variable `try'.
19856 (makefile-fill-paragraph, makefile-match-function-end):
19857 Mark unused parameters.
19858
19859 * progmodes/octave-inf.el (inferior-octave-complete):
19860 Remove unused variable `proc'.
19861 (inferior-octave-output-digest): Mark unused parameter.
19862
19863 * progmodes/perl-mode.el (perl-calculate-indent):
19864 Remove unused variable `err'.
19865
19866 * progmodes/prolog.el (prolog-mode-keybindings-inferior)
19867 (prolog-indent-line): Mark unused parameters.
19868 (prolog-indent-line): Remove unused variable `beg'.
19869
19870 * progmodes/ps-mode.el (reporter-prompt-for-summary-p)
19871 (reporter-dont-compact-list): Declare.
19872
19873 * progmodes/sh-script.el (sh-font-lock-quoted-subshell):
19874 Remove unused variable `char'.
19875 (sh-debug): Mark unused parameter.
19876 (sh-get-indent-info): Remove unused variable `start'.
19877 (sh-calculate-indent): Remove unused variable `var'.
19878
19879 * progmodes/simula.el (simula-popup-menu): Mark unused parameter.
19880 (simula-electric-keyword): Remove unused variable `null'.
19881 (simula-search-backward, simula-search-forward): Remove unused
19882 variables `begin' and `end'.
19883
19884 * progmodes/vera-mode.el (vera-guess-basic-syntax):
19885 Remove unused variable `pos'.
19886 (vera-electric-tab, vera-comment-uncomment-region):
19887 Mark unused parameters.
19888 (vera-electric-tab): Rename parameter PREFIX-ARG to PREFIX.
19889
19890 2011-04-22 Chong Yidong <cyd@stupidchicken.com>
19891
19892 * emacs-lisp/package.el (package--builtins, package-alist)
19893 (package-load-descriptor, package-built-in-p, package-activate)
19894 (define-package, package-installed-p)
19895 (package-compute-transaction, package-buffer-info)
19896 (package--push): Doc fix. Distinguish more clearly between
19897 version strings and version lists.
19898
19899 2011-04-21 Juanma Barranquero <lekktu@gmail.com>
19900
19901 Lexical-binding cleanup.
19902
19903 * play/5x5.el (5x5-make-random-solution, 5x5-make-mutate-current)
19904 (5x5-make-mutate-best):
19905 * play/fortune.el (fortune-in-buffer):
19906 * play/gomoku.el (gomoku-init-display):
19907 * play/solitaire.el (solitaire, solitaire-do-check):
19908 * play/tetris.el (tetris-default-update-speed-function):
19909 Mark unused parameters.
19910
19911 * play/bubbles.el (bubbles-mode): Set `show-trailing-whitespace'.
19912 (bubbles--shift): Remove unused variable `char-org'.
19913 (bubbles--set-faces): Remove unused variable `fg-col'. Simplify.
19914 (bubbles--show-images): Remove unused variable `char'.
19915
19916 * play/decipher.el (decipher-keypress, decipher-alphabet-keypress)
19917 (decipher-get-undo, decipher-set-map, decipher-complete-alphabet)
19918 (decipher-resync, decipher-loop-with-breaks, decipher--analyze)
19919 (decipher-analyze-buffer): Use ?\s.
19920 (decipher-make-checkpoint): Remove unused variable `mapping'.
19921
19922 * play/doctor.el (doctor-doc): Rename parameter DOCTOR-SENT to SENT.
19923
19924 * play/gamegrid.el (gamegrid-add-score-with-update-game-score):
19925 Remove unused variable `result'; use `let'.
19926
19927 * play/gametree.el (gametree-current-layout, gametree-apply-layout):
19928 Rename parameter TOP-LEVEL to FROM-TOP-LEVEL; use `ignore-errors'.
19929 (gametree-children-shown-p, gametree-compute-reduced-score):
19930 Use `ignore-errors'.
19931
19932 * play/handwrite.el (ps-lpr-switches): Declare.
19933 (handwrite): Remove unused variables `pmin' and `lastp'.
19934
19935 * play/hanoi.el (hanoi-move-ring): Remove unused variable `total-steps'.
19936
19937 * play/landmark.el (landmark-init-display)
19938 (landmark-update-naught-weights): Mark unused parameters.
19939 (landmark-y): Remove unused variable `noise'. Simplify.
19940 (landmark-human-plays): Remove unused variable `score'.
19941
19942 * play/mpuz.el (mpuz-try-letter): Remove unused variable `message'.
19943 (mpuz-try-proposal): Remove unused variable `game'.
19944
19945 * play/zone.el (life-patterns): Declare.
19946
19947 2011-04-20 Juanma Barranquero <lekktu@gmail.com>
19948
19949 * vc/vc.el (ediff-vc-internal): Declare function.
19950
19951 2011-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
19952
19953 * shell.el: Use lexical-binding and std completion UI.
19954 (shell-filter-ctrl-a-ctrl-b): Work as a preoutput filter.
19955 (shell-mode): Put shell-filter-ctrl-a-ctrl-b on
19956 comint-preoutput-filter-functions rather than on
19957 comint-output-filter-functions.
19958 (shell-command-completion, shell--command-completion-data)
19959 (shell-filename-completion, shell-environment-variable-completion)
19960 (shell-c-a-p-replace-by-expanded-directory): New functions.
19961 (shell-dynamic-complete-functions, shell-dynamic-complete-command)
19962 (shell-dynamic-complete-filename, shell-replace-by-expanded-directory)
19963 (shell-dynamic-complete-environment-variable): Use them.
19964 (shell-dynamic-complete-as-environment-variable)
19965 (shell-dynamic-complete-as-command): Remove.
19966 (shell-match-partial-variable): Match past point.
19967 * comint.el: Clean up use of completion-at-point-functions.
19968 (comint-completion-at-point): New function.
19969 (comint-mode): Use it completion-at-point-functions.
19970 (comint-dynamic-complete): Make it obsolete.
19971 (comint-replace-by-expanded-history-before-point): Add dry-run arg.
19972 (comint-c-a-p-replace-by-expanded-history): New function.
19973 (comint-dynamic-complete-functions)
19974 (comint-replace-by-expanded-history): Use it.
19975 * minibuffer.el (completion-table-with-terminator): Allow dynamic
19976 termination strings. Try harder to avoid second try-completion.
19977 (completion-in-region-mode-map): Disable bindings that don't work yet.
19978
19979 * comint.el: Use lexical-binding. Require CL.
19980 (comint-dynamic-complete-functions): Use comint-filename-completion.
19981 (comint-completion-addsuffix): Tweak custom type.
19982 (comint-filename-completion, comint--common-suffix)
19983 (comint--common-quoted-suffix, comint--table-subvert)
19984 (comint--complete-file-name-data): New functions.
19985 (comint-dynamic-complete-as-filename, comint-dynamic-complete-filename)
19986 (comint-dynamic-list-filename-completions): Use them.
19987 (comint-dynamic-simple-complete): Make obsolete.
19988
19989 * minibuffer.el (completion-in-region-mode):
19990 Keep completion-in-region-mode--predicate global.
19991 (completion-in-region--postch):
19992 Assume completion-in-region-mode--predicate is not null.
19993
19994 * progmodes/flymake.el (flymake-start-syntax-check-process):
19995 Obey `dir'. Simplify.
19996
19997 * vc/vc.el (vc-version-ediff): Call ediff-vc-internal directly, since
19998 we're in VC after all.
19999
20000 2011-04-20 Christoph Scholtes <cschol2112@googlemail.com>
20001
20002 * vc/vc.el (vc-diff-build-argument-list-internal)
20003 (vc-version-ediff, vc-ediff): New commands.
20004 (vc-version-diff): Use vc-diff-build-argument-list-internal.
20005
20006 2011-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
20007
20008 * emacs-lisp/byte-opt.el (byte-decompile-bytecode-1): Remove dead code,
20009 add sanity check.
20010
20011 * obsolete/erc-hecomplete.el: Make obsolete.
20012 * obsolete/: Standardize obsolescence info in the header.
20013
20014 2011-04-20 Glenn Morris <rgm@gnu.org>
20015
20016 * calendar/solar.el (solar-horizontal-coordinates):
20017 Use the longitude argument rather than `calendar-longitude'.
20018 (solar-date-next-longitude): Remove unused locals.
20019
20020 2011-04-20 Vinicius Jose Latorre <viniciusjl@ig.com.br>
20021
20022 * whitespace.el: New version 13.2.1.
20023
20024 2011-04-20 felix <EmacsWiki> (tiny change)
20025
20026 * whitespace.el (global-whitespace-mode): Keep highlight when
20027 switching between major modes on a file.
20028
20029 2011-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
20030
20031 * progmodes/octave-mod.el (octave-in-comment-p, octave-in-string-p)
20032 (octave-not-in-string-or-comment-p): Use syntax-ppss so it works with
20033 multi-line comments as well.
20034
20035 2011-04-19 Juanma Barranquero <lekktu@gmail.com>
20036
20037 Lexical-binding cleanup.
20038
20039 * arc-mode.el (archive-mode-revert):
20040 * cmuscheme.el (scheme-interactively-start-process):
20041 * custom.el (custom-initialize-delay):
20042 * dnd.el (dnd-open-local-file, dnd-open-remote-url):
20043 * dos-w32.el (direct-print-region-helper, direct-print-region-function):
20044 * emacs-lock.el (emacs-lock-clear-sentinel):
20045 * ezimage.el (defezimage):
20046 * follow.el (follow-avoid-tail-recenter):
20047 * fringe.el (set-fringe-mode-1):
20048 * generic-x.el (bat-generic-mode-compile):
20049 * help-mode.el (help-info-variable, help-do-xref)
20050 (help-mode-revert-buffer):
20051 * help.el (view-emacs-todo):
20052 * iswitchb.el (iswitchb-completion-help):
20053 * jka-compr.el (jka-compr-make-temp-name, jka-compr-load):
20054 * kmacro.el (kmacro-cycle-ring-next, kmacro-cycle-ring-previous)
20055 (kmacro-delete-ring-head, kmacro-bind-to-key, kmacro-view-macro):
20056 * locate.el (locate-update):
20057 * longlines.el (longlines-encode-region)
20058 (longlines-after-change-function):
20059 * outline.el (outline-isearch-open-invisible):
20060 * ps-def.el (declare-function, charset-dimension, char-width)
20061 (encode-char):
20062 * ps-mule.el (ps-mule-plot-string):
20063 * recentf.el (recentf-make-menu-items, recentf-cancel-dialog)
20064 (recentf-edit-list-select, recentf-edit-list-validate)
20065 (recentf-open-files-action):
20066 * rect.el (delete-whitespace-rectangle-line)
20067 (rectangle-number-line-callback):
20068 * register.el (window-configuration-to-register)
20069 (frame-configuration-to-register):
20070 * scroll-bar.el (scroll-bar-mode, toggle-horizontal-scroll-bar):
20071 * select.el (xselect-convert-to-string, xselect-convert-to-length)
20072 (xselect-convert-to-targets, xselect-convert-to-delete)
20073 (xselect-convert-to-filename, xselect-convert-to-charpos)
20074 (xselect-convert-to-lineno, xselect-convert-to-colno)
20075 (xselect-convert-to-os, xselect-convert-to-host)
20076 (xselect-convert-to-user, xselect-convert-to-class)
20077 (xselect-convert-to-name, xselect-convert-to-integer)
20078 (xselect-convert-to-atom, xselect-convert-to-identity):
20079 * subr.el (declare, ignore, process-kill-without-query)
20080 (text-clone-maintain):
20081 * terminal.el (te-get-char, te-tic-sentinel):
20082 * tool-bar.el (tool-bar-make-keymap):
20083 * tooltip.el (tooltip-timeout, tooltip-hide, tooltip-help-tips):
20084 * type-break.el (type-break-mode, type-break-noninteractive-query):
20085 * view.el (View-back-to-mark):
20086 * wid-browse.el (widget-browse-action, widget-browse-widget)
20087 (widget-browse-widgets, widget-browse-sexp):
20088 * widget.el (define-widget-keywords):
20089 * xt-mouse.el (xterm-mouse-translate, turn-off-xterm-mouse-tracking):
20090 Mark unused parameters.
20091
20092 * align.el (align-adjust-col-for-rule): Mark unused parameter.
20093 (align-areas): Remove unused variable `look'.
20094 (align-region): Remove unused variables `real-end' and `pos-list'.
20095
20096 * apropos.el (apropos-score-doc): Remove unused variable `i'.
20097
20098 * bindings.el (mode-line-modified, mode-line-remote):
20099 Mark unused parameters.
20100 (mode-line-mule-info): Mark unused parameter; don't quote `lambda'.
20101
20102 * buff-menu.el (Buffer-menu-revert-function): Mark unused parameters.
20103 (Buffer-menu-mode): Mark unused parameter; don't quote `lambda'.
20104
20105 * comint.el (comint-history-isearch-pop-state)
20106 (comint-postoutput-scroll-to-bottom, comint-truncate-buffer)
20107 (comint-strip-ctrl-m, comint-read-noecho): Mark unused parameters.
20108 (comint-substitute-in-file-name): Doc fix.
20109
20110 * completion.el (cmpl-statistics-block): Mark unused parameter.
20111 (add-completions-from-tags-table, add-completions-from-lisp-buffer)
20112 (save-completions-to-file, load-completions-from-file):
20113 Remove unused local variable `e'.
20114
20115 * composite.el (compose-chars): Remove unused variable `len'.
20116 (lgstring-insert-glyph): Remove unused variable `g'.
20117 (compose-glyph-string): Remove unused variables `ascent',
20118 `descent', `lbearing' and `rbearing'.
20119 (compose-glyph-string-relative): Remove unused variables
20120 `lbearing', `rbearing' and `wadjust'.
20121 (compose-gstring-for-graphic): Remove unused variables `header',
20122 `wadjust', `xoff' and `yoff'. Use `let', not `let*'.
20123 (compose-gstring-for-terminal): Remove unused variables `header'
20124 and `nchars'. Use `let', not `let*'.
20125
20126 * cus-edit.el (Custom-set, Custom-save, custom-reset)
20127 (Custom-reset-current, Custom-reset-saved, Custom-reset-standard)
20128 (Custom-buffer-done, custom-buffer-create-internal)
20129 (custom-browse-visibility-action, custom-browse-group-tag-action)
20130 (custom-browse-variable-tag-action, custom-browse-face-tag-action)
20131 (widget-magic-mouse-down-action, custom-toggle-parent)
20132 (custom-add-parent-links, custom-toggle-hide-variable)
20133 (custom-face-edit-value-visibility-action, custom-face-edit-fix-value)
20134 (custom-toggle-hide-face, face, hook, custom-group-link-action)
20135 (custom-face-menu-create, custom-variable-menu-create, get)
20136 (custom-group-menu-create, Custom-no-edit): Mark unused parameters.
20137 (custom-reset-standard-save-and-update): Remove unused variable `value'.
20138 (customize-apropos): Remove unused variable `tests'.
20139 (custom-group-value-create): Remove unused variable `hidden-p'.
20140 (sort-fold-case): Declare.
20141
20142 * cus-theme.el (custom-reset-standard-faces-list)
20143 (custom-reset-standard-variables-list): Declare.
20144 (customize-create-theme, custom-theme-revert, custom-theme-write)
20145 (custom-theme-choose-mode, customize-themes, custom-theme-save):
20146 Mark unused parameters.
20147
20148 * dabbrev.el (dabbrev-completion): Remove unused variable `init'.
20149
20150 * delim-col.el (delimit-columns-max): Move defvar before first use.
20151
20152 * descr-text.el (describe-char-categories): Don't quote `lambda'.
20153 (describe-char): Don't quote `lambda'. Mark unused parameter.
20154
20155 * desktop.el (desktop-save-buffer-p): Mark unused parameter.
20156 (auto-insert): Declare.
20157 (desktop-restore-file-buffer): Rename desktop-* parameters;
20158 mark unused ones.
20159 (desktop-create-buffer): Rename desktop-* parameters and bind them.
20160 (desktop-buffer): Rename desktop-* parameters.
20161
20162 * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape): Declare.
20163 (dframe-reposition-frame-xemacs, dframe-help-echo)
20164 (dframe-hack-buffer-menu, dframe-set-timer, dframe-set-timer-internal):
20165 Mark unused parameters.
20166
20167 * dired-aux.el (backup-extract-version-start, overwrite-query)
20168 (overwrite-backup-query, rename-regexp-query)
20169 (rename-non-directory-query): Declare.
20170 (dired-shell-stuff-it, dired-do-create-files): Mark unused parameters.
20171 (dired-add-entry): Remove unused variable `orig-file-name'.
20172 (dired-copy-file-recursive): Remove unused variable `dirfailed'.
20173 Use parameter PRESERVE-TIME instead of accessing dynamic variable
20174 `dired-copy-preserve-time' directly.
20175 (dired-do-create-files-regexp): Remove unused variable `fn-count'.
20176 (dired-insert-subdir-newpos): Rename unused variable `pos'.
20177
20178 * dired-x.el (dired-omit-size-limit): Move defcustom before first use.
20179 (dired-virtual-revert, dired-make-relative-symlink):
20180 Mark unused parameters.
20181 (manual-program): Declare.
20182 (dired-x-hands-off-my-keys): Rename parameters of lambda expression.
20183 (inode, s, mode, nlink, uid, gid, size, time, name, sym): Declare them,
20184 wrapped in `with-no-warnings' to avoid replacing one warning by another.
20185
20186 * dirtrack.el (dirtrack): Remove unused variable `multi-line'.
20187
20188 * dos-fns.el (dos-8+3-filename): Remove unused variable `i'.
20189
20190 * echistory.el (electric-history-in-progress, Helper-return-blurb):
20191 Declare.
20192
20193 * edmacro.el (edmacro-finish-edit): Remove unused variable `kmacro'.
20194
20195 * electric.el (Electric-command-loop): Rename parameter
20196 INHIBIT-QUIT to INHIBIT-QUITTING and bind `inhibit-quit'.
20197
20198 * expand.el (expand-in-literal): Remove unused variable `here'.
20199
20200 * facemenu.el (facemenu-add-new-color):
20201 Remove unused variable `docstring'.
20202
20203 * faces.el (face-id, make-face-bold, make-face-unbold, make-face-italic)
20204 (make-face-unitalic, make-face-bold-italic): Mark unused parameters.
20205 (face-attr-construct): Mark unused parameter. Doc fix.
20206 (read-color): Remove unused variable `hex-string'.
20207
20208 * files.el (parse-colon-path): Rename argument CD-PATH to SEARCH-PATH.
20209 (locate-dominating-file): Remove unused vars `prev-file' and `user'.
20210 (remote-file-name-inhibit-cache, revert-buffer): Clean up docstrings.
20211 (display-buffer-other-frame): Remove unused variable `old-window'.
20212 (kill-buffer-hook): Declare.
20213 (insert-file-contents-literally, set-auto-mode, risky-local-variable-p):
20214 Mark unused parameters.
20215 (after-find-file): Pass 1 to `auto-save-mode', not t.
20216
20217 * files-x.el (auto-insert): Declare.
20218 (modify-file-local-variable-prop-line): Remove unused variable `val'.
20219
20220 * find-lisp.el (find-lisp-find-dired-internal): Remove unused
20221 variable `buf'. Mark unused parameter.
20222 (find-lisp-insert-directory): Mark unused parameter.
20223
20224 * format.el (format-decode-run-method): Mark unused parameter; doc fix.
20225 (format-encode-region): Remove unused variables `cur-buf' and `result'.
20226 (format-common-tail): Remove, unused.
20227 (format-deannotate-region): Remove unused variable `loc'.
20228 (format-annotate-region): Remove unused variable `p'.
20229 (format-annotate-single-property-change): Remove unused variables
20230 `default' and `tail'.
20231
20232 * forms.el (read-file-filter): Declare.
20233 (forms--iif-hook, forms--revert-buffer): Mark unused parameters.
20234
20235 * frame.el (frame-creation-function-alist): Mark unused parameter.
20236 (frame-geom-spec-cons): Pass FRAME to `frame-geom-value-cons'.
20237
20238 * hilit-chg.el (hilit-chg-cust-fix-changes-face-list, hilit-chg-clear):
20239 Remove unused parameters.
20240 (hilit-chg-set-face-on-change): Remove unused variable `beg-decr'.
20241 (highlight-compare-with-file): Remove unused variable `buf-b-read-only'.
20242
20243 * htmlfontify.el (hfy-default-footer, hfy-decor, hfy-invisible)
20244 (hfy-parse-tags-buffer, hfy-prepare-index-i, hfy-prepare-index)
20245 (hfy-prepare-tag-map): Mark unused parameters.
20246 (htmlfontify-buffer): Use `called-interactively-p'.
20247
20248 * ibuf-ext.el (ibuffer-do-kill-lines, ibuffer-jump-to-buffer)
20249 (ibuffer-copy-filename-as-kill, ibuffer-mark-on-buffer)
20250 (ibuffer-do-occur): Mark unused parameters.
20251 (ibuffer-forward-next-marked): Remove unused variable `curmark'.
20252 (ibuffer-diff-buffer-with-file-1): Remove unused variable `proc'.
20253
20254 * ibuffer.el: Don't quote `lambda'.
20255 (ibuffer-count-marked-lines, ibuffer-count-deletion-lines)
20256 (ibuffer-unmark-all, ibuffer-toggle-marks, ibuffer-redisplay-engine):
20257 Mark unused parameters.
20258
20259 * ido.el (ido-mode, ido-wide-find-dir-or-delete-dir)
20260 (ido-completing-read): Mark unused parameters.
20261 (ido-copy-current-word): Mark unused parameters;
20262 remove unused variable `name'.
20263 (ido-sort-merged-list): Remove unused parameter `dirs'.
20264
20265 * ielm.el (ielm-input-sender): Mark unused parameter.
20266 (ielm-string, ielm-form, ielm-pos, ielm-result, ielm-error-type)
20267 (ielm-output, ielm-wbuf, ielm-pmark): Declare.
20268 (ielm-eval-input): Rename argument IELM-STRING to INPUT-STRING to keep
20269 `ielm-string' as a dynamic variable accessible from the IELM prompt.
20270 Bind `ielm-string' to INPUT-STRING. Remove unused variable `err'.
20271
20272 * image-dired.el (image-dired-display-thumbs): Remove unused
20273 variables `curr-file' and `count'.
20274 (image-dired-remove-tag): Remove unused variable `start'.
20275 (image-dired-tag-files, image-dired-create-thumbs): Remove unused
20276 variable `curr-file'
20277 (image-dired-rotate-original): Remove unused variable `temp-file'.
20278 (image-dired-mouse-select-thumbnail, image-dired-mouse-toggle-mark):
20279 Remove unused variable `file'.
20280 (image-dired-gallery-generate): Remove unused variable `curr'.
20281 (image-dired-dired-edit-comment-and-tags): Mark unused parameters.
20282
20283 * indent.el (tab-to-tab-stop): Remove unused variable `opoint'.
20284
20285 * info-xref.el (info-xref-goto-node-p): Remove unused variable `err'.
20286
20287 * informat.el (texinfo-command-start, texinfo-command-end): Declare.
20288
20289 * isearch.el (minibuffer-history-symbol): Declare.
20290 (isearch-edit-string): Remove unused variable `err'.
20291 (isearch-message-prefix, isearch-message-suffix):
20292 Mark unused parameters.
20293
20294 * ls-lisp.el (ls-lisp-insert-directory): Remove unused variable `fil'.
20295
20296 * macros.el (insert-kbd-macro): Remove unused variable `mods'.
20297
20298 * makesum.el (double-column): Remove unused variable `cnt'.
20299
20300 * misearch.el (multi-isearch-pop-state): Mark unused parameter.
20301 (ido-ignore-item-temp-list): Declare.
20302
20303 * mouse-drag.el (mouse-drag-throw): Remove unused variables
20304 `mouse-delta', `window-last-row', `mouse-col-delta', `window-last-col',
20305 `adjusted-mouse-col-delta' and `adjusted-mouse-delta'.
20306 (mouse-drag-drag): Remove unused variables `mouse-delta' and
20307 `mouse-col-delta'.
20308
20309 * mouse-sel.el (mouse-extend-internal):
20310 Remove unused variable `orig-window-frame'.
20311
20312 * pcomplete.el (pcomplete-args, pcomplete-begins, pcomplete-last)
20313 (pcomplete-index, pcomplete-stub, pcomplete-seen, pcomplete-norm-func):
20314 Move declarations before first use.
20315 (pcomplete-opt): Mark unused parameters; doc fix.
20316
20317 * proced.el (proced-revert): Mark unused parameter.
20318 (proced-send-signal): Remove unused variable `err'.
20319
20320 * ps-print.el (ps-print-preprint-region, ps-print-preprint):
20321 Rename parameter PREFIX-ARG to ARG.
20322 (ps-basic-plot-string, ps-basic-plot-whitespace):
20323 Mark unused parameters.
20324
20325 * replace.el (replace-count): Define.
20326 (occur-revert-function): Mark unused parameters.
20327 (ido-ignore-item-temp-list, isearch-error, isearch-forward)
20328 (isearch-case-fold-search, isearch-string): Declare.
20329 (occur-engine): Rename parameter CASE-FOLD-SEARCH to CASE-FOLD and
20330 bind `case-fold-search'. Remove unused variables `beg' and `end',
20331 and simplify.
20332 (replace-eval-replacement): Rename parameter REPLACE-COUNT to
20333 COUNT and bind `replace-count'.
20334 (replace-loop-through-replacements): Rename parameter REPLACE-COUNT
20335 to COUNT.
20336
20337 * savehist.el (print-readably, print-string-length): Declare.
20338
20339 * shadowfile.el (shadow-expand-cluster-in-file-name):
20340 Remove unused variable `cluster'.
20341 (shadow-copy-file): Remove unused variable `i'.
20342 (shadow-noquery, shadow-clusters, shadow-site-cluster)
20343 (shadow-parse-fullname, shadow-parse-name, shadow-define-cluster)
20344 (shadow-define-literal-group, shadow-define-regexp-group)
20345 (shadow-make-group, shadow-shadows-of): Clean up docstrings.
20346
20347 * shell.el (shell-filter-ctrl-a-ctrl-b): Mark unused parameter.
20348 (shell): Use `called-interactively-p'.
20349 (shell-directory-tracker): Remove unused variable `chdir-failure'.
20350
20351 * simple.el (compilation-context-lines, comint-file-name-quote-list)
20352 (comint-file-name-chars, comint-delimiter-argument-list): Declare.
20353 (delete-backward-char): Remove unused variable `ocol'.
20354 (minibuffer-avoid-prompt, minibuffer-history-isearch-pop-state)
20355 (line-move-1, event-apply-alt-modifier, event-apply-super-modifier)
20356 (event-apply-hyper-modifier, event-apply-shift-modifier)
20357 (event-apply-control-modifier, event-apply-meta-modifier):
20358 Mark unused parameters.
20359 (undo-make-selective-list): Remove duplicate variable `undo-elt'.
20360 (normal-erase-is-backspace-mode): Remove unused variable `old-state'.
20361
20362 * speedbar.el (speedbar-ignored-directory-expressions)
20363 (speedbar-supported-extension-expressions, speedbar-directory-buttons)
20364 (speedbar-find-file, speedbar-dir-follow)
20365 (speedbar-directory-buttons-follow, speedbar-tag-find)
20366 (speedbar-buffer-buttons, speedbar-buffer-buttons-temp)
20367 (speedbar-buffers-line-directory, speedbar-buffer-click):
20368 Mark unused parameters.
20369 (speedbar-tag-file): Remove unused variable `mode'.
20370 (speedbar-buffers-tail-notes): Remove unused variable `mod'; simplify.
20371
20372 * strokes.el (strokes-decode-buffer): Remove unused variable `ext'.
20373
20374 * talk.el (talk): Remove unused variable `display'.
20375
20376 * tar-mode.el (tar-subfile-save-buffer): Remove unused variable `name'.
20377 (tar-write-region-annotate): Mark unused parameter.
20378
20379 * time.el (now, time, load, mail, 24-hours, hour, 12-hours, am-pm)
20380 (minutes, seconds, time-zone, day, year, monthname, month, dayname):
20381 Declare them, wrapped in `with-no-warnings' to avoid replacing one
20382 warning by another.
20383
20384 * time-stamp.el (time-stamp-string-preprocess):
20385 Remove unused variable `require-padding'.
20386
20387 * tree-widget.el (widget-glyph-enable): Declare.
20388 (tree-widget-action): Mark unused parameter.
20389
20390 * w32-fns.el (x-get-selection): Mark unused parameter.
20391 (autoload-make-program, generated-autoload-file): Declare.
20392
20393 * wdired.el (wdired-revert): Mark unused parameters.
20394 (wdired-xcase-word): Remove unused variable `err'.
20395
20396 * whitespace.el (whitespace-buffer-changed): Mark unused parameters.
20397 (whitespace-help-scroll): Remove unused variable `data-help'.
20398
20399 * wid-edit.el (widget-mouse-help, widget-overlay-inactive)
20400 (widget-image-insert, widget-after-change, default)
20401 (widget-default-format-handler, widget-default-notify)
20402 (widget-default-prompt-value, widget-info-link-action)
20403 (widget-url-link-action, widget-function-link-action)
20404 (widget-variable-link-action, widget-file-link-action)
20405 (widget-emacs-library-link-action, widget-emacs-commentary-link-action)
20406 (widget-field-prompt-internal, widget-field-action, widget-field-match)
20407 (widget-choice-mouse-down-action, toggle, widget-radio-button-notify)
20408 (widget-insert-button-action, widget-delete-button-action, visibility)
20409 (widget-documentation-link-action, widget-documentation-string-action)
20410 (widget-const-prompt-value, widget-regexp-match, symbol)
20411 (widget-coding-system-prompt-value)
20412 (widget-key-sequence-value-to-external, sexp)
20413 (widget-sexp-value-to-internal, character, vector, cons)
20414 (widget-choice-prompt-value, widget-boolean-prompt-value)
20415 (widget-color--choose-action): Mark unused parameters.
20416 (widget-item-match-inline, widget-choice-match-inline)
20417 (widget-checklist-match, widget-checklist-match-inline)
20418 (widget-group-match): Rename parameter VALUES to VALS.
20419 (widget-field-value-set): Remove unused variable `size'.
20420 (widget-color-action): Remove unused variables `value' and `start'.
20421
20422 * windmove.el (windmove-wrap-loc-for-movement): Remove unused
20423 variable `dir'. Doc fix.
20424 (windmove-find-other-window): Don't pass it.
20425
20426 * window.el (count-windows): Mark unused parameter.
20427 (bw-adjust-window): Remove unused variable `err'.
20428
20429 * woman.el (woman-file-name): Remove unused variable `default'.
20430 (woman-expand-directory-path): Rename parameters WOMAN-MANPATH and
20431 WOMAN-PATH to PATH-DIRS and PATH-REGEXPS, respectively.
20432 (global-font-lock-mode): Declare.
20433 (woman-decode-region): Mark unused parameter.
20434 (woman-get-tab-stop): Rename parameter TAB-STOP-LIST to TAB-STOPS.
20435
20436 * x-dnd.el (x-dnd-default-test-function, x-dnd-handle-old-kde)
20437 (x-dnd-handle-xdnd, x-dnd-handle-motif): Mark unused parameters.
20438 (x-dnd-handle-moz-url): Remove unused variable `title'.
20439 (x-dnd-handle-xdnd): Remove unused variables `x', `y' and `ret-action'.
20440
20441 * xml.el (xml-parse-tag, xml-parse-attlist):
20442 Remove unused variable `pos'.
20443
20444 2011-04-19 Glenn Morris <rgm@gnu.org>
20445
20446 * calendar/cal-tex.el (cal-tex-list-holidays, cal-tex-cursor-month)
20447 (cal-tex-cursor-week, cal-tex-cursor-week2, cal-tex-cursor-week-iso)
20448 (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
20449 (cal-tex-cursor-filofax-daily, cal-tex-mini-calendar)
20450 * calendar/cal-html.el (cal-html-insert-minical):
20451 * calendar/diary-lib.el (diary-list-entries-1, diary-list-entries)
20452 (calendar-mark-date-pattern):
20453 Prefix "unused" locals.
20454
20455 * calendar/cal-dst.el (dst-adjust-time): Remove never-implemented
20456 optional argument `style'.
20457
20458 * calendar/appt.el (appt-make-list):
20459 * calendar/cal-china.el (calendar-chinese-date-string):
20460 * calendar/cal-hebrew.el (calendar-hebrew-list-yahrzeits)
20461 (diary-hebrew-yahrzeit):
20462 * calendar/cal-tex.el (cal-tex-last-blank-p, cal-tex-cursor-week2):
20463 * calendar/calendar.el (calendar-generate-window):
20464 * calendar/time-date.el (time-to-days):
20465 Remove unused local variables.
20466
20467 2011-04-18 Chong Yidong <cyd@stupidchicken.com>
20468
20469 * emacs-lisp/tabulated-list.el (tabulated-list-mode): Use a custom
20470 glyphless-char-display table.
20471 (tabulated-list-glyphless-char-display): New var.
20472
20473 2011-04-18 Sam Steingold <sds@gnu.org>
20474
20475 * vc/add-log.el (change-log-font-lock-keywords): Add "Thanks to"
20476 to acknowledgments.
20477
20478 2011-04-17 Glenn Morris <rgm@gnu.org>
20479
20480 * calendar/diary-lib.el (diary-sexp-entry):
20481 * calendar/holidays.el (holiday-sexp):
20482 Set debug-on-error rather than the removed stack-trace-on-error.
20483
20484 2011-04-16 Glenn Morris <rgm@gnu.org>
20485
20486 * progmodes/f90.el: Use lexical-binding.
20487 (f90-get-correct-indent): Remove unnecessary local variable `cont'.
20488
20489 2011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
20490
20491 * mail/sendmail.el (mail-mode-map): Use completion-at-point.
20492 (mail-mode): Setup mailalias completion here instead.
20493 * mail/mailalias.el: Use lexical-binding.
20494 (pattern, mailalias-done): Declare dynamic.
20495 (mail-completion-at-point-function): New function, from mail-complete.
20496 (mail-complete): Use it.
20497 (mail-completion-expand): New function.
20498 (mail-get-names): Use it.
20499 (mail-directory, mail-directory-process, mail-directory-stream):
20500 Don't use `pattern' for lexically bound arg.
20501
20502 * emacs-lisp/lisp-mode.el (eval-defun-2): Use eval-sexp-add-defvars.
20503
20504 * htmlfontify.el (hfy-etags-cmd): Remove inoperant eval-and-compile.
20505 (hfy-e2x-etags-cmd, hfy-etags-cmd-alist-default)
20506 (hfy-etags-cmd-alist): Don't eval-and-compile any more.
20507
20508 * emacs-lisp/bytecomp.el (byte-temp-output-buffer-show)
20509 (byte-save-window-excursion, byte-temp-output-buffer-setup)
20510 (byte-interactive-p): Define them again, for use when inlining
20511 old code.
20512
20513 2011-04-15 Juanma Barranquero <lekktu@gmail.com>
20514
20515 * loadup.el: Use `string-to-number', not `string-to-int'.
20516
20517 2011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
20518
20519 * progmodes/gud.el (gud-gdb): Use completion-at-point instead of
20520 gud-gdb-complete-command.
20521 (gud-gdb-completions): New function, from gud-gdb-complete-command.
20522 (gud-gdb-completion-at-point): New function.
20523 (gud-gdb-completions): Remove.
20524
20525 2011-04-14 Michael Albinus <michael.albinus@gmx.de>
20526
20527 * net/tramp-sh.el (tramp-sh-handle-file-attributes): Handle the case
20528 when the scripts fail. Use `tramp-do-file-attributes-with-ls' then.
20529 (tramp-do-copy-or-rename-file-out-of-band): Do not check any longer
20530 whether `executable-find' is bound.
20531
20532 * net/tramp-smb.el (tramp-smb-handle-copy-file): Fix docstring.
20533
20534 2011-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
20535
20536 * minibuffer.el (completion-in-region-mode-predicate)
20537 (completion-in-region-mode--predicate): New vars.
20538 (completion-in-region, completion-in-region--postch)
20539 (completion-in-region-mode): Use them.
20540 (completion--capf-wrapper): Also return the hook function.
20541 (completion-at-point, completion-help-at-point):
20542 Adjust and provide a predicate.
20543
20544 Preserve arg names for advice of subr and lexical functions (bug#8457).
20545 * help-fns.el (help-function-arglist): Consolidate the subr and
20546 new-byte-code cases. Add argument `preserve-names' to extract names
20547 from the docstring when needed.
20548 * emacs-lisp/advice.el (ad-define-subr-args, ad-undefine-subr-args)
20549 (ad-subr-args-defined-p, ad-get-subr-args, ad-subr-arglist): Remove.
20550 (ad-arglist): Use help-function-arglist's new arg.
20551 (ad-definition-type): Use cond.
20552
20553 2011-04-13 Juanma Barranquero <lekktu@gmail.com>
20554
20555 * autorevert.el (auto-revert-handler):
20556 Bind `remote-file-name-inhibit-cache', not `tramp-cache-inhibit-cache',
20557 which was removed in 2010-10-02T13:21:43Z!michael.albinus@gmx.de.
20558 Don't quote lambda.
20559
20560 * image-mode.el (image-transform-set-scale):
20561 Fix change in 2011-04-09T20:28:01Z!cyd@stupidchicken.com.
20562
20563 2011-04-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
20564
20565 * net/network-stream.el (network-stream-open-starttls): Only do
20566 opportunistic STARTTLS upgrades if we have built-in GnuTLS support.
20567 Upgrades via gnutls-cli are too slow to be done opportunistically.
20568
20569 2011-04-12 Juanma Barranquero <lekktu@gmail.com>
20570
20571 * dframe.el (dframe-current-frame): Remove spurious quote.
20572
20573 2011-04-12 Glenn Morris <rgm@gnu.org>
20574
20575 * calendar/cal-tex.el (cal-tex-end-document):
20576 Try to automatically use latin1 input if needed.
20577
20578 * calendar/cal-hebrew.el (diary-hebrew-rosh-hodesh):
20579 Don't try to cons a mark onto an empty element.
20580
20581 2011-04-11 Leo Liu <sdl.web@gmail.com>
20582
20583 * ido.el (ido-buffer-internal): Allow method 'kill for virtual
20584 buffers.
20585 (ido-kill-buffer-at-head): Support killing virtual buffers.
20586
20587 2011-04-10 Chong Yidong <cyd@stupidchicken.com>
20588
20589 * minibuffer.el (completion-show-inline-help): New var.
20590 (completion--do-completion, minibuffer-complete)
20591 (minibuffer-force-complete, minibuffer-complete-word):
20592 Inhibit minibuffer messages if completion-show-inline-help is nil.
20593
20594 * icomplete.el (icomplete-mode): Bind completion-show-inline-help
20595 to avoid interference from inline help (Bug#5849).
20596
20597 2011-04-10 Leo Liu <sdl.web@gmail.com>
20598
20599 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
20600 Fix typo.
20601
20602 2011-04-09 Chong Yidong <cyd@stupidchicken.com>
20603
20604 * image-mode.el (image-toggle-display-image): Signal an error if
20605 not in Image mode.
20606 (image-transform-mode, image-transform-resize)
20607 (image-transform-set-rotation): Doc fix.
20608 (image-transform-set-resize): Delete.
20609 (image-transform-set-scale, image-transform-fit-to-height)
20610 (image-transform-fit-to-width): Handle image-toggle-display-image
20611 and image-transform-resize directly.
20612
20613 2011-04-08 Sho Nakatani <lay.sakura@gmail.com>
20614
20615 * doc-view.el (doc-view-fit-width-to-window)
20616 (doc-view-fit-height-to-window, doc-view-fit-page-to-window):
20617 New functions for fitting the shown image to the Emacs window size.
20618 (doc-view-mode-map): Add bindings for the new functions.
20619
20620 2011-04-08 Juanma Barranquero <lekktu@gmail.com>
20621
20622 * vc/vc-annotate.el (vc-annotate-show-log-revision-at-line):
20623 Fix typo in docstring.
20624
20625 2011-04-08 Eli Zaretskii <eliz@gnu.org>
20626
20627 * files.el (file-size-human-readable): Produce one digit after
20628 decimal, like "ls -lh" does.
20629
20630 * ls-lisp.el (ls-lisp-format-file-size): Allow for 7 characters in
20631 the file size representation.
20632
20633 * simple.el (list-processes): If async subprocesses are not
20634 available, error out with a clear error message.
20635
20636 2011-04-08 Chong Yidong <cyd@stupidchicken.com>
20637
20638 * help.el (help-form-show): New function, to be called from C.
20639 Put help-form output in a buffer named differently than *Help*.
20640
20641 2011-04-08 Eli Zaretskii <eliz@gnu.org>
20642
20643 * files.el (file-size-human-readable): New function.
20644
20645 * ls-lisp.el (ls-lisp-format-file-size): Use it, instead of
20646 computing the representation inline. Don't require `cl'.
20647
20648 2011-04-08 Glenn Morris <rgm@gnu.org>
20649
20650 * man.el (Man-page-header-regexp): Solaris < 2.6 no longer supported.
20651
20652 * net/browse-url.el (browse-url-firefox):
20653 Test system-type, not system-configuration.
20654
20655 * vc/log-edit.el (log-edit-empty-buffer-p): New function.
20656 (log-edit-insert-cvs-template, log-edit-insert-cvs-rcstemplate):
20657 Use log-edit-empty-buffer-p. (Bug#7598)
20658
20659 * net/rlogin.el (rlogin-process-connection-type): Simplify.
20660 (rlogin-mode-map): Initialize in the defvar.
20661 (rlogin): Use ignore-errors.
20662
20663 * replace.el (occur-mode-map): Some fixes for menu items.
20664
20665 2011-04-07 Aaron S. Hawley <aaron.s.hawley@gmail.com>
20666
20667 * play/morse.el (denato-region): Handle varying case. (Bug#8386)
20668
20669 2011-04-06 Chong Yidong <cyd@stupidchicken.com>
20670
20671 * emacs-lisp/cconv.el (cconv--analyse-use): Ignore "ignored" when
20672 issuing unused warnings.
20673
20674 * emacs-lisp/tabulated-list.el (tabulated-list-print): Use lambda
20675 macro directly.
20676
20677 * simple.el: Lisp reimplement of list-processes. Based on an
20678 earlier reimplementation by Leo Liu, but using tabulated-list.el.
20679 (process-menu-mode): New major mode.
20680 (list-processes--refresh, list-processes):
20681 (process-menu-visit-buffer): New functions.
20682
20683 * files.el (save-buffers-kill-emacs): Don't assume any return
20684 value of list-processes, which is undocumented anyway.
20685
20686 2011-04-06 Chong Yidong <cyd@stupidchicken.com>
20687
20688 * emacs-lisp/tabulated-list.el: New file.
20689
20690 * emacs-lisp/package.el: Use Tabulated List mode.
20691 (package-menu-mode-map): Inherit from tabulated-list-mode-map.
20692 (package-menu-mode): Derive from tabulated-list-mode. Set up the
20693 table format using Tabulated List mode variables.
20694 (package--push): New macro, replacing package-list-maybe-add.
20695 (package-menu--generate): Use package--push. Renamed from
20696 package--generate-package-list.
20697 (package-menu-refresh, list-packages): Use it.
20698 (package-menu--print-info): Rename from package-print-package.
20699 Return insertion data instead of inserting it directly.
20700 (package-menu-describe-package, package-menu-execute):
20701 Use tabulated-list-get-id.
20702 (package-menu-mark-delete, package-menu-mark-install)
20703 (package-menu-mark-unmark, package-menu-backup-unmark)
20704 (package-menu-mark-obsolete-for-deletion):
20705 Use tabulated-list-put-tag.
20706 (package--list-packages, package-menu-revert)
20707 (package-menu-get-package, package-menu-get-version)
20708 (package-menu-sort-by-column): Functions deleted.
20709 (package-menu-package-list, package-menu-sort-key): Vars deleted.
20710 (package-menu--status-predicate, package-menu--version-predicate)
20711 (package-menu--name-predicate)
20712 (package-menu--description-predicate): Handle arguments in the
20713 Tabulated List format.
20714 (package-list-packages-no-fetch): Call list-packages.
20715
20716 2011-04-06 Juanma Barranquero <lekktu@gmail.com>
20717
20718 * files.el (after-find-file-from-revert-buffer): Remove variable.
20719 (after-find-file): Don't bind it.
20720 (revert-buffer-in-progress-p): New variable.
20721 (revert-buffer): Bind it.
20722 Pass nil for `after-find-file-from-revert-buffer'.
20723
20724 * saveplace.el (save-place-find-file-hook): Use new variable
20725 `rever-buffer-in-progress-p', not `after-find-file-from-revert-buffer'.
20726
20727 2011-04-06 Glenn Morris <rgm@gnu.org>
20728
20729 * Makefile.in (AUTOGEN_VCS): New variable.
20730 (autoloads): Use $AUTOGEN_VCS.
20731
20732 * calendar/cal-move.el (calendar-scroll-toolkit-scroll): New function.
20733 * calendar/calendar.el (calendar-mode-map):
20734 Check for toolkit scroll bars. (Bug#8305)
20735
20736 2011-04-05 Chong Yidong <cyd@stupidchicken.com>
20737
20738 * minibuffer.el (completion-in-region--postch)
20739 (completion-in-region-mode): Remove unnecessary messages.
20740
20741 2011-04-05 Juanma Barranquero <lekktu@gmail.com>
20742
20743 * font-lock.el (font-lock-refresh-defaults):
20744 Don't bind `hi-lock--inhibit-font-lock-hook', removed in
20745 2010-10-09T04:09:19Z!cyd@stupidchicken.com and 2010-10-11T23:57:49Z!lekktu@gmail.com (2010-10-12).
20746
20747 * info.el (Info-directory-list, Info-read-node-name-2)
20748 (Info-split-parameter-string): Doc fixes.
20749 (Info-virtual-nodes): Reflow docstring.
20750 (Info-find-file, Info-directory-toc-nodes, Info-history-toc-nodes)
20751 (Info-apropos-toc-nodes, info-finder, Info-get-token)
20752 (Info-find-emacs-command-nodes, Info-speedbar-key-map):
20753 Fix typos in docstrings.
20754 (Info-revert-buffer-function, Info-search, Info-isearch-pop-state)
20755 (Info-speedbar-hierarchy-buttons, Info-speedbar-goto-node)
20756 (Info-speedbar-buttons, Info-desktop-buffer-misc-data)
20757 (Info-restore-desktop-buffer): Mark unused parameters.
20758 (Info-directory-find-file, Info-directory-find-node)
20759 (Info-history-find-file, Info-history-find-node, Info-toc-find-node)
20760 (Info-virtual-index-find-node, Info-apropos-find-file)
20761 (Info-apropos-find-node, Info-finder-find-file, Info-finder-find-node):
20762 Mark unused parameters; fix typos in docstrings.
20763 (Info-virtual-index): Remove unused local variable `nodename'.
20764
20765 2011-04-05 Deniz Dogan <deniz@dogan.se>
20766
20767 * net/rcirc.el: Update my e-mail address.
20768 (rcirc-mode-map): Remove M-o binding.
20769
20770 2011-04-05 Chong Yidong <cyd@stupidchicken.com>
20771
20772 * startup.el (command-line): Save the cursor's theme-face
20773 directly, instead of using face-override-spec.
20774
20775 * custom.el (load-theme): Minor optimization in assigning faces.
20776
20777 2011-04-04 Juanma Barranquero <lekktu@gmail.com>
20778
20779 * help-fns.el (describe-variable): Complete all variables having
20780 documentation, including keywords.
20781 http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00112.html
20782
20783 2011-04-04 Juanma Barranquero <lekktu@gmail.com>
20784
20785 Convert to lexical-binding.
20786
20787 * bs.el (bs-refresh, bs-sort-buffer-interns-are-last)
20788 (bs--get-marked-string, bs--get-modified-string)
20789 (bs--get-readonly-string, bs--get-size-string, bs--get-name)
20790 (bs--get-mode-name, bs--get-file-name): Mark unused arguments.
20791 (bs--configuration-name-for-prefix-arg): Rename argument PREFIX-ARG.
20792
20793 * ehelp.el (electric-help-execute-extended)
20794 (electric-help-ctrl-x-prefix):
20795 * hexl.el (hexl-revert-buffer-function):
20796 * linum.el (linum-after-change, linum-after-scroll):
20797 * emacs-lisp/re-builder.el (reb-auto-update): Mark unused arguments.
20798
20799 * help-fns.el (help-describe-category-set): Remove unused ERR variable.
20800
20801 2011-04-04 Daiki Ueno <ueno@unixuser.org>
20802
20803 * epa-dired.el:
20804 * epa-mail.el:
20805 * epa-hook.el:
20806 * epa-file.el:
20807 * epa.el:
20808 * epg.el: Use lexical binding.
20809
20810 2011-04-03 Chong Yidong <cyd@stupidchicken.com>
20811
20812 * dired-aux.el (dired-create-files): Add docstring (Bug#7970).
20813
20814 * textmodes/flyspell.el (flyspell-word): Recognize default
20815 dictionary case for flyspell-mark-duplications-exceptions.
20816 Use regexp matching for languages.
20817 (flyspell-mark-duplications-exceptions): Add "that" and "had" for
20818 default dictionary (Bug#7926).
20819
20820 2011-04-02 Chong Yidong <cyd@stupidchicken.com>
20821
20822 * emacs-lisp/package.el (package--with-work-buffer):
20823 Recognize https URLs.
20824
20825 * net/network-stream.el: Move from gnus/proto-stream.el.
20826 Change prefix to network-stream throughout.
20827 (open-protocol-stream): Merge into open-network-stream, leaving
20828 open-protocol-stream as an alias. Handle nil BUFFER args.
20829
20830 * subr.el (open-network-stream): Move to net/network-stream.el.
20831
20832 2011-04-02 Glenn Morris <rgm@gnu.org>
20833
20834 * find-dired.el (find-exec-terminator): New option.
20835 (find-ls-option): Test for -ls support.
20836 (find-ls-subdir-switches): Test for -b in find-ls-option.
20837 (find-dired, find-grep-dired): Doc fixes.
20838 (find-dired): Use find-exec-terminator.
20839
20840 * find-dired.el (find-ls-option, find-ls-subdir-switches)
20841 (find-grep-options): Do not autoload these defcustoms, remove purecopy.
20842 (find-name-arg): Remove purecopy.
20843
20844 * progmodes/grep.el (grep-find-use-xargs): Doc fix.
20845 (grep-compute-defaults): Check for `-exec COMMAND +' support.
20846 Set grep-find-use-xargs, grep-find-command, and grep-find-template
20847 accordingly. Don't add the null-device if not needed.
20848
20849 * files.el (save-some-buffers): Doc fix.
20850
20851 2011-04-02 Eli Zaretskii <eliz@gnu.org>
20852
20853 * makefile.w32-in (EMACS): Default to ../src/$(BLD)/emacs.exe.
20854
20855 2011-04-01 Juanma Barranquero <lekktu@gmail.com>
20856
20857 * progmodes/idlwave.el (idlwave-one-key-select, idlwave-list-abbrevs):
20858 Use `dolist' rather than `mapcar'.
20859
20860 2011-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
20861
20862 Add lexical binding.
20863
20864 * subr.el (apply-partially): Use new closures rather than CL.
20865 (--dolist-tail--, --dotimes-limit--): Don't declare dynamic.
20866 (dolist, dotimes): Use slightly different expansion for lexical code.
20867 (functionp): Move to C.
20868 (letrec): New macro.
20869 (with-wrapper-hook): Use it and apply-partially instead of CL.
20870 (eval-after-load): Preserve lexical-binding.
20871 (save-window-excursion, with-output-to-temp-buffer): Turn them
20872 into macros.
20873
20874 * simple.el (with-wrapper-hook, apply-partially): Move to subr.el.
20875
20876 * help-fns.el (help-split-fundoc): Return nil if there's nothing else
20877 than the arglist.
20878 (help-add-fundoc-usage): Don't add `Not documented'.
20879 (help-function-arglist): Handle closures, subroutines, and new
20880 byte-code-functions.
20881 (help-make-usage): Remove leading underscores.
20882 (describe-function-1): Handle closures.
20883 (describe-variable): Use special-variable-p for completion.
20884
20885 * files.el (lexical-binding): Declare safe.
20886
20887 * emacs-lisp/pcase.el: Don't use destructuring-bind.
20888 (pcase--memoize): Rename from pcase-memoize. Change weakness.
20889 (pcase): Add `let' pattern.
20890 Change memoization so it actually works.
20891 (pcase-mutually-exclusive-predicates): Add byte-code-function-p.
20892 (pcase--u1) <guard, pred>: Fix possible shadowing problem.
20893 <let>: New case.
20894
20895 * emacs-lisp/macroexp.el: Use lexical binding.
20896 (macroexpand-all-1): Check obsolete macros. Expand compiler-macros.
20897 Don't convert ' to #' without checking that it's indeed quoting
20898 a lambda.
20899
20900 * emacs-lisp/lisp-mode.el (eval-last-sexp-1):
20901 Use eval-sexp-add-defvars.
20902 (eval-sexp-add-defvars): New fun.
20903
20904 * emacs-lisp/float-sup.el (pi): Don't declare as dynamically bound.
20905
20906 * emacs-lisp/eieio.el (byte-compile-file-form-defmethod):
20907 Don't autoload.
20908 (eieio-defgeneric-form-primary-only-one): Use `byte-compile' rather
20909 than the internal `byte-compile-lambda'.
20910 (defmethod): Don't hide code under quotes.
20911 (eieio-defmethod): New `code' argument.
20912
20913 * emacs-lisp/eieio-comp.el: Remove.
20914
20915 * emacs-lisp/edebug.el (edebug-eval-defun)
20916 (edebug-eval-top-level-form): Use eval-sexp-add-defvars.
20917 (edebug-toggle): Avoid `eval'.
20918
20919 * emacs-lisp/disass.el (disassemble-internal): Handle new
20920 `closure' objects.
20921 (disassemble-1): Handle new byte codes.
20922
20923 * emacs-lisp/cl.el (pushnew): Silence warning.
20924
20925 * emacs-lisp/cl-macs.el (cl-byte-compile-block)
20926 (cl-byte-compile-throw): Remove.
20927 (cl-block-wrapper, cl-block-throw): Use compiler-macros instead.
20928
20929 * emacs-lisp/cl-extra.el (cl-macroexpand-all): Properly quote CL
20930 closures.
20931
20932 * emacs-lisp/cconv.el: New file.
20933
20934 * emacs-lisp/bytecomp.el: Use lexical binding instead of
20935 a "bytecomp-" prefix. Macroexpand everything as a separate phase.
20936 (byte-compile-initial-macro-environment):
20937 Handle declare-function here.
20938 (byte-compile--lexical-environment): New var.
20939 (byte-stack-ref, byte-stack-set, byte-discardN)
20940 (byte-discardN-preserve-tos): New lap codes.
20941 (byte-interactive-p): Don't use any more.
20942 (byte-compile-push-bytecodes, byte-compile-push-bytecode-const2):
20943 New macros.
20944 (byte-compile-lapcode): Use them and handle new lap codes.
20945 (byte-compile-obsolete): Remove.
20946 (byte-compile-arglist-signature): Handle new byte-code arg"lists".
20947 (byte-compile-arglist-warn): Check late def of inlinable funs.
20948 (byte-compile-cl-warn): Don't silence warnings for compiler-macros
20949 since they should have been expanded by now.
20950 (byte-compile--outbuffer): Rename from bytecomp-outbuffer.
20951 (byte-compile-from-buffer): Remove unused second arg.
20952 (byte-compile-preprocess): New function.
20953 (byte-compile-toplevel-file-form): New function to distinguish
20954 file-form calls from outside from file-form calls from hunk-handlers.
20955 (byte-compile-file-form): Simplify.
20956 (byte-compile-file-form-defsubst): Remove.
20957 (byte-compile-file-form-defmumble): Simplify now that
20958 byte-compile-lambda always returns a byte-code-function.
20959 (byte-compile): Preprocess.
20960 (byte-compile-byte-code-maker, byte-compile-byte-code-unmake):
20961 Remove, not used any more.
20962 (byte-compile-arglist-vars, byte-compile-make-lambda-lexenv)
20963 (byte-compile-make-args-desc): New funs.
20964 (byte-compile-lambda): Handle lexical functions. Always return
20965 a byte-code-function.
20966 (byte-compile-reserved-constants): New var, to make up room for
20967 closed-over variables.
20968 (byte-compile-constants-vector): Obey it.
20969 (byte-compile-top-level): New args `lexenv' and `reserved-csts'.
20970 (byte-compile-macroexpand-declare-function): New function.
20971 (byte-compile-form): Call byte-compile-unfold-bcf to inline immediate
20972 byte-code-functions.
20973 (byte-compile-form): Check obsolescence here.
20974 (byte-compile-inline-lapcode, byte-compile-unfold-bcf): New functions.
20975 (byte-compile-variable-ref): Remove.
20976 (byte-compile-dynamic-variable-op): New fun.
20977 (byte-compile-dynamic-variable-bind, byte-compile-variable-ref)
20978 (byte-compile-variable-set): New funs.
20979 (byte-compile-discard): Add 2 args.
20980 (byte-compile-stack-ref, byte-compile-stack-set)
20981 (byte-compile-make-closure, byte-compile-get-closed-var): New funs.
20982 (byte-compile-funarg, byte-compile-funarg-2): Remove, handled in
20983 macroexpand-all instead.
20984 (byte-compile-quote-form): Remove.
20985 (byte-compile-push-binding-init, byte-compile-not-lexical-var-p)
20986 (byte-compile-bind, byte-compile-unbind): New funs.
20987 (byte-compile-let): Handle let* and lexical binding.
20988 (byte-compile-let*): Remove.
20989 (byte-compile-catch, byte-compile-unwind-protect)
20990 (byte-compile-track-mouse, byte-compile-condition-case):
20991 Handle a new :fun-body form, used for lexical scoping.
20992 (byte-compile-save-window-excursion)
20993 (byte-compile-with-output-to-temp-buffer): Remove.
20994 (byte-compile-defun): Simplify.
20995 (byte-compile-stack-adjustment): New fun.
20996 (byte-compile-out): Use it.
20997 (byte-compile-refresh-preloaded): Don't reload byte-compiler files.
20998
20999 * emacs-lisp/byte-run.el (make-obsolete): Don't set the `byte-compile'
21000 handler any more.
21001
21002 * emacs-lisp/byte-opt.el: Use lexical binding.
21003 (byte-inline-lapcode): Remove (to bytecomp).
21004 (byte-compile-inline-expand): Pay attention to inlining to/from
21005 lexically bound code.
21006 (byte-compile-unfold-lambda): Don't handle byte-code-functions
21007 any more.
21008 (byte-optimize-form-code-walker): Don't handle save-window-excursion
21009 any more and don't call compiler-macros.
21010 (byte-compile-splice-in-already-compiled-code): Remove.
21011 (byte-code): Don't inline any more.
21012 (disassemble-offset): Receive `bytes' as argument rather than via
21013 dynamic scoping.
21014 (byte-compile-tag-number): Declare before first use.
21015 (byte-decompile-bytecode-1): Handle new byte-codes, don't change
21016 `return' even if make-spliceable.
21017 (byte-compile-side-effect-and-error-free-ops): Add stack-ref, remove
21018 obsolete interactive-p.
21019 (byte-optimize-lapcode): Optimize new lap-codes.
21020 Don't trip up on new form of `byte-constant' lap code.
21021
21022 * emacs-lisp/autoload.el (make-autoload): Don't burp on trivial macros.
21023
21024 * emacs-lisp/advice.el (ad-arglist): Use help-function-arglist.
21025
21026 * custom.el (custom-initialize-default, custom-declare-variable):
21027 Use `defvar'.
21028
21029 * Makefile.in (BIG_STACK_DEPTH, BIG_STACK_OPTS, BYTE_COMPILE_FLAGS):
21030 New variables.
21031 (compile-onefile, .el.elc, compile-calc, recompile): Use them.
21032 (COMPILE_FIRST): Add macroexp and cconv.
21033 * makefile.w32-in: Mirror changes in Makefile.in.
21034
21035 * vc/cvs-status.el:
21036 * vc/diff-mode.el:
21037 * vc/log-edit.el:
21038 * vc/log-view.el:
21039 * vc/smerge-mode.el:
21040 * textmodes/bibtex-style.el:
21041 * textmodes/css-mode.el:
21042 * startup.el:
21043 * uniquify.el:
21044 * minibuffer.el:
21045 * newcomment.el:
21046 * reveal.el:
21047 * server.el:
21048 * mpc.el:
21049 * emacs-lisp/smie.el:
21050 * doc-view.el:
21051 * dired.el:
21052 * abbrev.el: Use lexical binding.
21053
21054 2011-04-01 Eli Zaretskii <eliz@gnu.org>
21055
21056 * info.el (info-display-manual): New function.
21057
21058 2011-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
21059
21060 * loadup.el: Load minibuffer after loaddefs, to use define-minor-mode.
21061
21062 2011-03-31 Tassilo Horn <tassilo@member.fsf.org>
21063
21064 * net/rcirc.el (rcirc-handler-001): Only authenticate, if there's
21065 an entry for that server in rcirc-authinfo. (Bug#8385)
21066
21067 2011-03-31 Glenn Morris <rgm@gnu.org>
21068
21069 * progmodes/f90.el (f90-find-tag-default): Handle multiple `%'.
21070
21071 * generic-x.el (etc-fstab-generic-mode): Add ext4, sysfs keywords.
21072
21073 2011-03-30 Christoph Scholtes <cschol2112@googlemail.com>
21074
21075 * progmodes/python.el (python-default-interpreter)
21076 (python-python-command-args, python-jython-command-args)
21077 (python-which-shell, python-which-args, python-which-bufname)
21078 (python-file-queue, python-comint-output-filter-function)
21079 (python-toggle-shells, python-shell): Remove obsolete defcustoms,
21080 variables and functions.
21081
21082 2011-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
21083
21084 * minibuffer.el (completion-table-dynamic): Optimize `boundaries'.
21085 (completion-in-region-mode): New minor mode.
21086 (completion-in-region): Use it.
21087 (completion-in-region--data, completion-in-region-mode-map): New vars.
21088 (completion-in-region--postch): New function.
21089 (completion--capf-misbehave-funs, completion--capf-safe-funs):
21090 New vars.
21091 (completion--capf-wrapper): New function.
21092 (completion-at-point): Use it to track well-behavedness of
21093 hook functions.
21094 (completion-help-at-point): New command.
21095
21096 2011-03-30 Jason Merrill <jason@redhat.com> (tiny change)
21097
21098 * vc/add-log.el (add-change-log-entry): Don't use whitespace
21099 syntax class to search for whitespace on a single line
21100 (Message-ID: <4D938140.4030905@redhat.com>).
21101
21102 2011-03-30 Leo Liu <sdl.web@gmail.com>
21103
21104 * abbrev.el (abbrev-edit-save-to-file, abbrev-edit-save-buffer):
21105 New commands.
21106 (edit-abbrevs-map): Bind them here.
21107 (write-abbrev-file): New optinal arg VERBOSE. (Bug#5937)
21108
21109 2011-03-29 Ken Manheimer <ken.manheimer@gmail.com>
21110
21111 * allout.el (allout-hide-by-annotation, allout-flag-region):
21112 Reduce possibility of overlay leakage by making them volatile.
21113
21114 * allout-widgets.el (allout-widgets-tally): Define as nil so the
21115 hash is not shared between buffers. Mode initialization is
21116 responsible for giving it a useful starting value.
21117 (allout-item-span): Reduce possibility of overlay leakage by
21118 making them volatile.
21119 (allout-widgets-count-buttons-in-region): Add diagnostic function
21120 for tracking down button overlay leaks.
21121
21122 2011-03-29 Leo Liu <sdl.web@gmail.com>
21123
21124 * ido.el (ido-read-internal): Use the default history var
21125 minibuffer-history if no HISTORY is specified.
21126
21127 2011-03-28 Brian T. Sniffen <bsniffen@akamai.com> (tiny change)
21128
21129 * net/imap.el (imap-shell-open, imap-process-connection-type):
21130 Use imap-process-connection-type for 'shell' streams as well as
21131 Kerberos, SSL, other subprocesses.
21132
21133 2011-03-28 Leo Liu <sdl.web@gmail.com>
21134
21135 * abbrev.el (abbrev-table-empty-p): New function.
21136 (prepare-abbrev-list-buffer): Place empty abbrev tables after
21137 nonempty ones. (Bug#5937)
21138
21139 2011-03-27 Jan Djärv <jan.h.d@swipnet.se>
21140
21141 * cus-start.el (all): Add boolean ns-auto-hide-menu-bar.
21142
21143 2011-03-27 Leo Liu <sdl.web@gmail.com>
21144
21145 * ansi-color.el (ansi-color-names-vector): Allow cons cell value
21146 for foreground and background colors.
21147 (ansi-color-make-color-map): Adapt.
21148
21149 2011-03-25 Leo Liu <sdl.web@gmail.com>
21150
21151 * midnight.el (midnight-time-float): Remove. Note it calculates
21152 the microsecond component incorrectly and seconds-to-time does the
21153 same job.
21154 Remove redundant (require 'timer).
21155
21156 * ido.el (ido-read-internal): Simplify with read-from-minibuffer.
21157 (ido-completions): Remove unused arguments. (Bug#8329)
21158
21159 2011-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
21160
21161 * minibuffer.el (completion--flush-all-sorted-completions):
21162 Remove itself from hook.
21163 (completion-at-point): Let the functions perform the completion
21164 immediately and return nil or t.
21165 * comint.el (comint-dynamic-complete-functions): Now identical to
21166 completion-at-point-functions.
21167 (comint-dynamic-list-input-ring): Remove unused var `index'.
21168 (comint--match-partial-filename, comint--unquote&expand-filename):
21169 New funs, split from comint-match-partial-filename.
21170 (comint-dynamic-complete): Use completion-at-point.
21171 (comint-dynamic-complete-filename): Use comint--match-partial-filename.
21172
21173 2011-03-24 Drew Adams <drew.adams@oracle.com>
21174
21175 * thingatpt.el: Support `defun'.
21176
21177 2011-03-23 Leo Liu <sdl.web@gmail.com>
21178
21179 * abbrevlist.el: Move to obsolete/abbrevlist.el.
21180
21181 * help-mode.el (help-mode-finish): Tweak regexp.
21182
21183 2011-03-23 Glenn Morris <rgm@gnu.org>
21184
21185 * eshell/esh-opt.el (eshell-eval-using-options):
21186 Do not bind unused local variable `eshell-option-stub'.
21187
21188 * progmodes/gdb-mi.el (gdb): Fix typo in previous change.
21189
21190 2011-03-22 Juanma Barranquero <lekktu@gmail.com>
21191
21192 * emacs-lisp/derived.el (define-derived-mode): Wrap declaration of
21193 keymap variable in `with-no-warnings' to avoid a warning when the
21194 keymap has been already `defconst'ed.
21195
21196 2011-03-22 Leo Liu <sdl.web@gmail.com>
21197
21198 * abbrev.el (write-abbrev-file): Use utf-8 for writing if it can
21199 encode all chars in abbrevs; otherwise use emacs-mule or
21200 utf-8-emacs. (Bug#8308)
21201
21202 2011-03-22 Juanma Barranquero <lekktu@gmail.com>
21203
21204 * simple.el (backward-delete-char-untabify):
21205 Avoid warning about using `delete-backward-char'.
21206
21207 * image.el (image-type-file-name-regexps): Make it variable.
21208 `imagemagick-register-types' modifies it, and the user may want
21209 to add new extensions for known image types.
21210 (imagemagick-register-types): Throw error if not using ImageMagick.
21211
21212 2011-03-22 Leo Liu <sdl.web@gmail.com>
21213
21214 * net/rcirc.el (rcirc-completion-at-point): Return nil if point is
21215 located before rcirc-prompt-end-marker.
21216 (rcirc-complete): Error if point is not after rcirc prompt.
21217 Handle the case when table is nil.
21218 (rcirc-user-authenticated): Define to fix compiler warning.
21219
21220 2011-03-22 Chong Yidong <cyd@stupidchicken.com>
21221
21222 * custom.el (custom--inhibit-theme-enable): Make it affect only
21223 custom-theme-set-variables and custom-theme-set-faces.
21224 (provide-theme): Ignore custom--inhibit-theme-enable.
21225 (load-theme): Enable the theme explicitly if NO-ENABLE is non-nil.
21226 (custom-enabling-themes): Delete variable.
21227 (enable-theme): Accept only loaded themes as arguments.
21228 Ignore the special custom-enabled-themes variable.
21229 (custom-enabled-themes): Forbid themes from setting this.
21230 Eliminate use of custom-enabling-themes.
21231 (custom-push-theme): Quote "changed" custom var entry.
21232
21233 2011-03-21 Leo Liu <sdl.web@gmail.com>
21234
21235 * ido.el (ido-read-internal): Add ido-selected to history instead
21236 of user input.
21237
21238 2011-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
21239
21240 * subr.el (deferred-action-list, deferred-action-function):
21241 Mark obsolete.
21242
21243 2011-03-21 Leo Liu <sdl.web@gmail.com>
21244
21245 * vc/log-view.el: Remove (require 'wid-edit), not needed after the
21246 change on 2011-02-13 (bug#8309).
21247
21248 * minibuffer.el (read-file-name-function): Change default value.
21249 (read-file-name--defaults): Rename from read-file-name-defaults.
21250 (read-file-name-default): Rename from read-file-name.
21251 (read-file-name): Call read-file-name-function.
21252
21253 2011-03-21 Glenn Morris <rgm@gnu.org>
21254
21255 * eshell/esh-opt.el (eshell-eval-using-options, eshell-process-args):
21256 Doc fixes.
21257
21258 2011-03-21 Chong Yidong <cyd@stupidchicken.com>
21259
21260 * cus-theme.el: Add missing provide statement.
21261 (customize-create-theme): Extract theme value correctly.
21262 (custom-theme-visit-theme): Autoload.
21263 (customize-create-theme): Prompt before inserting default faces.
21264
21265 2011-03-20 Jay Belanger <jay.p.belanger@gmail.com>
21266
21267 * calc/calc-menu.el (calc-units-menu): Add entries for logarithmic
21268 units and musical notes.
21269
21270 2011-03-20 Leo Liu <sdl.web@gmail.com>
21271
21272 * ido.el (ido-read-internal): Use completing-read-default.
21273 (ido-completing-read): Fix compatibility with completing-read.
21274
21275 2011-03-20 Christian Ohler <ohler@gnu.org>
21276
21277 * emacs-lisp/ert.el (ert-run-tests-batch): Remove unused variable.
21278 (ert-delete-all-tests): Use `called-interactively-p' rather than
21279 `interactive-p'.
21280 (ert--make-xrefs-region): Respect END.
21281
21282 2011-03-19 Chong Yidong <cyd@stupidchicken.com>
21283
21284 * dired-aux.el (dired-create-directory): Signal an error if the
21285 directory already exists (Bug#8246).
21286
21287 * facemenu.el (list-colors-display): Call list-faces-display
21288 inside with-help-window.
21289 (list-colors-print): Use display property to align the final
21290 column, instead of checking window-width.
21291
21292 2011-03-19 Eli Zaretskii <eliz@gnu.org>
21293
21294 * vc/emerge.el (emerge-metachars): Separate value for ms-dos and
21295 windows-nt systems.
21296 (emerge-protect-metachars): Quote correctly for ms-dos and
21297 windows-nt systems.
21298
21299 2011-03-19 Ralph Schleicher <rs@ralph-schleicher.de>
21300
21301 * info.el (info-initialize): Replace all uses of `:' with
21302 path-separator for compatibility with non-Unix systems.
21303 Cache quoting of path-separator. (Bug#8258)
21304
21305 2011-03-19 Juanma Barranquero <lekktu@gmail.com>
21306
21307 * avoid.el (mouse-avoidance-mode, mouse-avoidance-nudge-dist)
21308 (mouse-avoidance-threshold, mouse-avoidance-banish-destination)
21309 (mouse-avoidance-mode): Fix typos in docstrings.
21310
21311 2011-03-19 Chong Yidong <cyd@stupidchicken.com>
21312
21313 * startup.el (package-subdirectory-regexp): Move from package.el.
21314 Omit \\` and \\', and let callers add them.
21315
21316 * emacs-lisp/package.el (package-strip-version)
21317 (package-load-all-descriptors): Add \\` and \\' to
21318 package-subdirectory-regexp before using it.
21319 (package-untar-buffer): New arg DIR; ensure that file untars only
21320 into this expected directory. Remove superfluous delete-region.
21321 (package-unpack): Caller changed.
21322 (package-tar-file-info): Use package-subdirectory-regexp.
21323
21324 2011-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
21325
21326 * vc/diff-mode.el (diff-mode-map): Shadow problematic bindings from
21327 diff-mode-shared-map (bug#8284).
21328 (diff-mode-shared-map): Re-introduce some bindings that were problematic.
21329
21330 2011-03-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
21331
21332 * calendar/time-date.el (format-seconds): Use assoc instead of
21333 assoc-string, since assoc-string doesn't exist in XEmacs.
21334
21335 2011-03-17 Juanma Barranquero <lekktu@gmail.com>
21336
21337 * custom.el (custom-known-themes): Reflow docstring.
21338 (custom-theme-load-path): Fix typo in docstring.
21339 (load-theme): Fix typo in error message.
21340 (custom-available-themes, custom-variable-theme-value):
21341 Use `let', not `let*'.
21342
21343 2011-03-17 Jay Belanger <jay.p.belanger@gmail.com>
21344
21345 * calc/README: Mention inclusion of musical notes.
21346
21347 * calc/calc-units.el (calc-lu-quant): Rename from
21348 `calc-logunits-quantity'.
21349 (calcFunc-lupquant): Rename from `calcFunc-powerquant'.
21350 (calcFunc-lufquant): Rename from `calcFunc-fieldquant'.
21351 (calc-db): Rename from `calc-dblevel'.
21352 (calcFunc-dbpower): Rename from `calcFunc-dbpowerlevel'.
21353 (calcFunc-dbfield): Rename from `calcFunc-dbfieldlevel'.
21354 (calc-np): Rename from `calc-nplevel'.
21355 (calcFunc-nppower): Rename from `calcFunc-nppowerlevel'.
21356 (calcFunc-npfield): Rename from `calcFunc-npfieldlevel'.
21357 (calc-lu-plus): Rename from `calc-logunits-add'.
21358 (calcFunc-lupadd): Rename from `calcFunc-lupoweradd'.
21359 (calcFunc-lufadd): Rename from `calcFunc-lufieldadd'.
21360 (calc-lu-minus): Rename from `calc-logunits-sub'.
21361 (calcFunc-lupsub): Rename from `calcFunc-lupowersub'.
21362 (calcFunc-lufsub): Rename from `calcFunc-lufieldsub'.
21363 (calc-lu-times): Rename from `calc-logunits-mul'.
21364 (calcFunc-lupmul): Rename from `calcFunc-lupowermul'.
21365 (calcFunc-lufmul): Rename from `calcFunc-lufieldmul'.
21366 (calc-lu-divide): Rename from `calc-logunits-div'.
21367 (calcFunc-lupdiv): Rename from `calcFunc-lupowerdiv'.
21368 (calcFunc-lufdiv): Rename from `calcFunc-lufielddiv'.
21369
21370 * calc/calc-ext.el (calc-init-extensions): Update the names of the
21371 functions being autoloaded.
21372
21373 * calc/calc.el (calc-lu-power-reference): Rename from
21374 `calc-logunits-power-reference'.
21375 (calc-lu-field-reference): Rename from
21376 `calc-logunits-field-reference'.
21377
21378 * calc/calc-help.el (calc-l-prefix-help):
21379 Mention musical note functions.
21380
21381 2011-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
21382
21383 * minibuffer.el (completion-all-sorted-completions):
21384 Use :completion-cycle-penalty text property if present.
21385
21386 2011-03-16 Ken Manheimer <ken.manheimer@gmail.com>
21387
21388 * allout.el (allout-yank-processing): Adjust for new rebulleting
21389 regime so bullet being yanked is used without prompting the user
21390 for a choice.
21391
21392 2011-03-16 Juanma Barranquero <lekktu@gmail.com>
21393
21394 * startup.el (command-line): Warn the user that _emacs is deprecated.
21395
21396 2011-03-16 Juanma Barranquero <lekktu@gmail.com>
21397
21398 * progmodes/delphi.el (delphi-search-path, delphi-indent-level)
21399 (delphi-verbose, delphi-comment-face, delphi-string-face)
21400 (delphi-keyword-face, delphi-ignore-changes, delphi-indent-line)
21401 (delphi-mode-abbrev-table, delphi-debug-buffer, delphi-tab)
21402 (delphi-find-unit, delphi-find-current-xdef, delphi-fill-comment)
21403 (delphi-new-comment-line, delphi-font-lock-defaults)
21404 (delphi-debug-mode-map, delphi-mode-syntax-table, delphi-mode):
21405 Fix typos in docstrings.
21406
21407 2011-03-15 Ken Manheimer <ken.manheimer@gmail.com>
21408
21409 * allout.el (allout-make-topic-prefix, allout-rebullet-heading):
21410 Invert the roles of character and string values for INSTEAD, so a
21411 string is used for the more common case of a defaulting prompt.
21412
21413 2011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
21414
21415 * progmodes/ruby-mode.el (ruby-backward-sexp):
21416 * progmodes/ebrowse.el (ebrowse-draw-file-member-info):
21417 * play/gamegrid.el (gamegrid-make-face):
21418 * play/bubbles.el (bubbles--grid-width, bubbles--grid-height)
21419 (bubbles--colors, bubbles--shift-mode, bubbles--initialize-images):
21420 * notifications.el (notifications-notify):
21421 * net/xesam.el (xesam-search-engines):
21422 * net/quickurl.el (quickurl-list-insert):
21423 * vc/vc-hg.el (vc-hg-dir-printer): Fix use of case.
21424
21425 2011-03-15 Chong Yidong <cyd@stupidchicken.com>
21426
21427 * startup.el (command-line): Update package subdirectory regexp.
21428
21429 2011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
21430
21431 * allout.el (allout-abbreviate-flattened-numbering)
21432 (allout-mode-deactivate-hook): Fix up obsolescence "date".
21433
21434 * subr.el (read-char-choice): Only show the cursor after the prompt,
21435 not after the answer.
21436
21437 2011-03-15 Kevin Ryde <user42@zip.com.au>
21438
21439 * help-fns.el (variable-at-point): Skip leading quotes, if any
21440 (bug#8253).
21441
21442 2011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
21443
21444 * emacs-lisp/bytecomp.el (byte-compile-save-excursion): Change the
21445 warning message.
21446
21447 2011-03-14 Michael Albinus <michael.albinus@gmx.de>
21448
21449 * shell.el (shell): When called interactively, offer to change the
21450 shell file name on remote hosts.
21451
21452 2011-03-13 Teodor Zlatanov <tzz@lifelogs.com>
21453
21454 * net/ldap.el (ldap-search-internal): Add `auth-source-search'
21455 integration for LDAP parameters. The host, base, user or binddn,
21456 and secret tokens can be specified in a netrc file, for instance.
21457 This is optional because an `auth-source' parameter must be
21458 specified in the search attributes.
21459
21460 2011-03-13 Juanma Barranquero <lekktu@gmail.com>
21461
21462 * help.el (describe-mode): Link to the mode's definition (bug#8185).
21463
21464 2011-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
21465
21466 * ebuff-menu.el (electric-buffer-menu-mode-map): Move initialization
21467 into declaration. Remove redundant and harmful binding.
21468
21469 2011-03-12 Eli Zaretskii <eliz@gnu.org>
21470
21471 * files.el (file-ownership-preserved-p): Pass `integer' as an
21472 explicit 2nd argument to `file-attributes'. If the file's owner
21473 is the Administrators group on Windows, and the current user is
21474 Administrator, consider that a match.
21475
21476 * server.el (server-ensure-safe-dir): Consider server directory
21477 safe on MS-Windows if its owner is the Administrators group while
21478 the current Emacs user is Administrator. Use `=' to compare
21479 numerical UIDs, since they could be integers or floats.
21480
21481 2011-03-12 Juanma Barranquero <lekktu@gmail.com>
21482
21483 * vc/vc-bzr.el (vc-bzr-state): Handle bzr 2.3.0 (follow-up to bug#8170).
21484
21485 2011-03-12 Michael Albinus <michael.albinus@gmx.de>
21486
21487 Sync with Tramp 2.2.1.
21488
21489 * net/tramp-sh.el (tramp-methods): Exchange "%k" marker with options.
21490
21491 * net/trampver.el: Update release number.
21492
21493 2011-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
21494
21495 * progmodes/compile.el (compilation--previous-directory): Fix up
21496 various nil/dead-marker mismatches (bug#8014).
21497 (compilation-directory-properties, compilation-error-properties):
21498 Don't call it at a position past the one we're about to change.
21499
21500 * emacs-lisp/bytecomp.el (byte-compile-make-obsolete-variable):
21501 Disable obsolescence warnings in the file that declares it.
21502
21503 2011-03-11 Ken Manheimer <ken.manheimer@gmail.com>
21504
21505 * allout-widgets.el (allout-widgets-tally):
21506 Initialize allout-widgets-tally as a hash table rather than nil to
21507 prevent mode-line redisplay warnings. Also, clarify the module
21508 description and fix a comment typo.
21509
21510 2011-03-11 Juanma Barranquero <lekktu@gmail.com>
21511
21512 * help-fns.el (describe-variable): Don't complete keywords.
21513 Suggested by Teodor Zlatanov <tzz@lifelogs.com>.
21514
21515 2011-03-10 Chong Yidong <cyd@stupidchicken.com>
21516
21517 * emacs-lisp/package.el (package-version-join): Impose a standard
21518 string representation for pre/alpha/beta version lists.
21519 (package-unpack-single): Standardize the directory name by passing
21520 it through package-version-join.
21521 (package-strip-rcs-id): Accept any version string that does not
21522 signal an error in version-to-list.
21523
21524 2011-03-10 Michael Albinus <michael.albinus@gmx.de>
21525
21526 * simple.el (delete-trailing-whitespace): Return nil for the
21527 benefit of `write-file-functions'.
21528
21529 2011-03-10 Glenn Morris <rgm@gnu.org>
21530
21531 * vc/vc-hg.el (vc-hg-pull, vc-hg-merge-branch): Use vc-hg-program.
21532
21533 * vc/vc-git.el (vc-git-program): New option.
21534 (vc-git-branches, vc-git-pull, vc-git-merge-branch, vc-git-command)
21535 (vc-git--call): Use it.
21536
21537 * eshell/esh-util.el (eshell-condition-case): Doc fix.
21538
21539 * cus-edit.el (Custom-newline): If no button at point, look
21540 for a subgroup button at start-of-line. (Bug#2298)
21541
21542 * mail/rmail.el (rmail-msgend, rmail-msgbeg): Doc fixes.
21543
21544 2011-03-10 Julien Danjou <julien@danjou.info>
21545
21546 * avoid.el (mouse-avoidance-ignore-p): Do not move the cursor if
21547 `cursor-type' is nil.
21548
21549 2011-03-09 Jay Belanger <jay.p.belanger@gmail.com>
21550
21551 * calc/calc.el (calc-mode-map): Don't bind "C-_" to `calc-missing-key'.
21552
21553 2011-03-09 Ken Manheimer <ken.manheimer@gmail.com>
21554
21555 * allout.el: Change so yank of distinctive-bullet items
21556 preserves the existing header prefix, rebulleting it if necessary,
21557 rather than replacing it. This is necessary for proper operation
21558 of cooperative addons like allout-widgets.
21559 (allout-make-topic-prefix, allout-rebullet-heading):
21560 Change SOLICIT arg to INSTEAD, and interpret additionally a string
21561 value as alternate bullet to be used, instead of prompting the user
21562 for a bullet character.
21563
21564 2011-03-09 Michael Albinus <michael.albinus@gmx.de>
21565
21566 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
21567 Do not use `tramp-file-name-port', because this returns also
21568 `tramp-default-port'.
21569
21570 2011-03-09 Deniz Dogan <deniz.a.m.dogan@gmail.com>
21571
21572 * net/rcirc.el (rcirc-handler-001): Remove useless
21573 with-rcirc-process-buffer.
21574 (rcirc-check-auth-status): Swap arguments to string-match.
21575
21576 2011-03-09 Glenn Morris <rgm@gnu.org>
21577
21578 * shell.el (shell-mode):
21579 Set comint-input-ring-size from HISTSIZE. (Bug#7889)
21580
21581 * progmodes/gdb-mi.el (gdb): Improve 2010-12-08 change.
21582 Check for GDBHISTFILE, HISTSIZE, etc. (Bug#7889)
21583
21584 2011-03-08 Chong Yidong <cyd@stupidchicken.com>
21585
21586 * emacs-lisp/package.el (package-refresh-contents)
21587 (package-menu-execute): Use condition-case-no-debug.
21588
21589 2011-03-08 Michael Albinus <michael.albinus@gmx.de>
21590
21591 * simple.el (shell-command-to-string): Use `process-file'.
21592
21593 * emacs-lisp/package.el (package-tar-file-info): Handle also
21594 remote files.
21595
21596 * emacs-lisp/package-x.el (package-upload-buffer-internal):
21597 Use `equal' for upload base check.
21598
21599 2011-03-08 Arni Magnusson <arnima@hafro.is> (tiny change)
21600
21601 * textmodes/texinfo.el (texinfo-environments):
21602 Add deftypecv, deftypeivar, deftypemethod, deftypeop, html. (Bug#2783)
21603
21604 2011-03-08 Glenn Morris <rgm@gnu.org>
21605
21606 * cus-start.el (cursor-in-non-selected-windows):
21607 Fix :set quoting oddness. (Bug#8192)
21608
21609 * font-lock.el (lisp-font-lock-keywords-1): Don't highlight `)'
21610 in some setf expressions. (Bug#2159)
21611
21612 2011-03-08 Chong Yidong <cyd@stupidchicken.com>
21613
21614 * custom.el (custom-available-themes): Return themes in
21615 alphabetical order.
21616
21617 See ChangeLog.15 for earlier changes.
21618
21619 ;; Local Variables:
21620 ;; coding: utf-8
21621 ;; End:
21622
21623 Copyright (C) 2011-2013 Free Software Foundation, Inc.
21624
21625 This file is part of GNU Emacs.
21626
21627 GNU Emacs is free software: you can redistribute it and/or modify
21628 it under the terms of the GNU General Public License as published by
21629 the Free Software Foundation, either version 3 of the License, or
21630 (at your option) any later version.
21631
21632 GNU Emacs is distributed in the hope that it will be useful,
21633 but WITHOUT ANY WARRANTY; without even the implied warranty of
21634 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21635 GNU General Public License for more details.
21636
21637 You should have received a copy of the GNU General Public License
21638 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.