]> code.delx.au - gnu-emacs/blob - lisp/ChangeLog
* lisp/mouse.el (mouse-drag-track): Always deactivate the mark before
[gnu-emacs] / lisp / ChangeLog
1 2013-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
2
3 * mouse.el (mouse-drag-track): Always deactivate the mark before
4 running the final event's command since that command is in charge of
5 activating the mark if needed (bug#13523).
6
7 2013-02-01 Juri Linkov <juri@jurta.org>
8
9 * replace.el (perform-replace): Move let-bindings of isearch-*
10 variables deeper to the loop that searches for the next match.
11 Add bindings for `isearch-nonincremental' and `isearch-adjusted'.
12 Use `isearch-search-fun-default' instead of `isearch-search-fun'.
13 (Bug#13579)
14
15 * isearch.el (isearch-search-fun-default): Check for null
16 first element of isearch-cmds as a precaution when it's used
17 with inactive isearch.
18
19 2013-02-01 Andrew W. Nosenko <andrew.w.nosenko@gmail.com> (tiny change)
20
21 * net/tramp.el (tramp-check-for-regexp): Avoid "Args out of range"
22 error when buffer in question is narrowed so position 1 is out of
23 visible part.
24
25 2013-01-31 Glenn Morris <rgm@gnu.org>
26
27 * textmodes/remember.el (remember-clipboard): Doc fix.
28
29 2013-01-30 Stefan Monnier <monnier@iro.umontreal.ca>
30
31 * progmodes/make-mode.el (makefile-fill-paragraph): Reset syntax-table
32 properties (bug#13179).
33
34 2013-01-30 Glenn Morris <rgm@gnu.org>
35
36 * mouse.el (mouse-drag-line): Avoid pushing same event onto
37 unread-command-events twice in some cases. This tries to implement
38 the 2012-07-26 changes in a different way. (Bug#13560)
39
40 2013-01-30 Fabián Ezequiel Gallina <fgallina@cuca>
41
42 * progmodes/python.el
43 (python-pdbtrack-comint-output-filter-function): Enhancements on
44 stacktrace detection. (thanks @gnovak)
45
46 2013-01-30 Glenn Morris <rgm@gnu.org>
47
48 * imenu.el (imenu-default-create-index-function):
49 Put back a version of the infinite loop test removed 2013-01-23.
50
51 2013-01-28 Fabián Ezequiel Gallina <fgallina@cuca>
52
53 * progmodes/python.el (python-shell-parse-command):
54 Find python-shell-interpreter with modified environment.
55
56 2013-01-26 Stefan Monnier <monnier@iro.umontreal.ca>
57
58 * emacs-lisp/cl.el (cl-set-getf): Add compatibility alias.
59
60 2013-01-24 Fabián Ezequiel Gallina <fgallina@cuca>
61
62 * progmodes/python.el: Enhancements to header documentation about
63 skeletons. (Bug#5716)
64
65 2013-01-23 Fabián Ezequiel Gallina <fgallina@cuca>
66
67 * imenu.el (imenu-default-create-index-function): Remove useless
68 infinite loop check. (Bug#13438)
69
70 2013-01-23 Alan Mackenzie <acm@muc.de>
71
72 Fix a bug in the state cache mechanism. Refactor this a bit.
73
74 * progmodes/cc-engine.el (c-parse-state-get-strategy): Remove the
75 `cache-pos' element from the return value.
76 (c-append-lower-brace-pair-to-state-cache): "Narrow" to end of
77 buffer to enable proper searching from beyond HERE. Amend the
78 test for detecting the sought brace pair. Amend the value written
79 to the "brace desert cache" when the brace isn't found.
80 (c-remove-stale-state-cache): Rename `good-pos' to `start-point',
81 and several other variables analogously.
82 (c-remove-stale-state-cache-backwards): Change `cache-pos' from a
83 parameter to a locally calculated variable.
84 (c-parse-state-1): Change the calling conventions to the two
85 defuns involving `cache-pos'.
86
87 2013-01-23 Chong Yidong <cyd@gnu.org>
88
89 * xml.el (xml-entity-or-char-ref-re): Fix regexp.
90
91 2013-01-18 Leo Liu <sdl.web@gmail.com>
92
93 * dired.el (dired-get-marked-files): Prune erroneous values due to
94 last change. (Bug#13152)
95
96 2013-01-17 Glenn Morris <rgm@gnu.org>
97
98 * progmodes/etags.el (tags-table-check-computed-list):
99 Preserve point in tags buffer. (Bug#13412)
100
101 2013-01-16 Glenn Morris <rgm@gnu.org>
102
103 * emacs-lisp/lisp-mode.el (lisp-indent-function): Doc fix.
104
105 * mail/rmailmm.el (rmail-insert-mime-forwarded-message):
106 Revert 2012-12-29 change. Ref:
107 <http://lists.gnu.org/archive/html/emacs-devel/2013-01/msg00360.html>
108
109 2013-01-10 Fabián Ezequiel Gallina <fgallina@cuca>
110
111 * progmodes/python.el (python-nav-end-of-statement):
112 Fix cornercase when handling multiline strings.
113
114 2013-01-10 Glenn Morris <rgm@gnu.org>
115
116 * emacs-lisp/authors.el (authors-ignored-files)
117 (authors-valid-file-names, authors-renamed-files-alist):
118 Add some more entries.
119
120 2013-01-09 Stefan Monnier <monnier@iro.umontreal.ca>
121
122 * image-mode.el (image-mode-winprops): Don't throw away the fallback
123 `t' pseudo-window entry.
124
125 2013-01-09 Alan Mackenzie <acm@muc.de>
126
127 Fix bugs in the c-parse-state mechanism. Reuse some markers
128 instead of continually generating new ones.
129
130 * progmodes/cc-engine.el (c-state-old-cpp-beg-marker)
131 (c-state-old-cpp-end-marker): New variables.
132 (c-append-lower-brace-pair-to-state-cache): Start a backward
133 search for "}" definitively outside CPP constructs.
134 (c-remove-stale-state-cache): Inform the caller of a need to
135 search back for a brace pair in certain circumstances.
136 (c-state-maybe-marker): New macro.
137 (c-parse-state): Reuse markers when appropriate.
138
139 2013-01-09 Glenn Morris <rgm@gnu.org>
140
141 * simple.el (execute-extended-command): Doc fix.
142 Bind prefix-arg around read-extended-command, for prompt. (Bug#13395)
143
144 2013-01-09 Chong Yidong <cyd@gnu.org>
145
146 * faces.el (read-face-name): Doc fix.
147
148 2013-01-09 Glenn Morris <rgm@gnu.org>
149
150 * emacs-lisp/trace.el (trace-function, trace-function-background):
151 Doc fix.
152
153 2013-01-09 Juri Linkov <juri@jurta.org>
154
155 * international/mule-cmds.el (read-char-by-name): Move let-binding
156 of completion-ignore-case around completing-read to fix regression
157 exhibited by the test case `C-x 8 RET *acc TAB' and caused by
158 `string-match-p' using the nil value of `case-fold-search' and
159 `completion-ignore-case' in `completion-pcm--all-completions'.
160 (Bug#12615).
161
162 2013-01-07 Glenn Morris <rgm@gnu.org>
163
164 * progmodes/compile.el (compilation-parse-errors):
165 Fix typo. (Bug#13369)
166
167 2013-01-07 Vitalie Spinu <spinuvit@gmail.com> (tiny change)
168
169 * comint.el (comint-send-input): Check size of buffer before
170 waiting for process output, in case already accepted. (Bug#13290)
171
172 2013-01-04 Michael Albinus <michael.albinus@gmx.de>
173
174 * net/tramp-sh.el (tramp-set-file-uid-gid): UID and GID must be
175 non-negative integers. Otherwise, the default values are used.
176 (tramp-convert-file-attributes): Convert uid and gid to integers.
177
178 2013-01-03 Glenn Morris <rgm@gnu.org>
179
180 * term.el (term-handle-colors-array): Ensure face attributes
181 are fully specified, not nil. (Bug#13337)
182
183 * term.el (term-default-fg-color, term-default-bg-color):
184 Fix custom type.
185
186 * progmodes/etags.el (tags-compression-info-list): Doc fix.
187 (tag-find-file-of-tag-noselect): Check auto-compression-mode
188 rather than 'jka-compr being loaded. (Bug#13338)
189
190 * subr.el (eval-after-load): Don't purecopy the form, so that it
191 can be nconc'd later on; reverts 2009-11-11 change. (Bug#13331)
192
193 * emacs-lisp/byte-run.el (defun): Place cl declarations
194 after any interactive spec. (Bug#13265)
195
196 2012-12-31 Andreas Schwab <schwab@linux-m68k.org>
197
198 * emacs-lisp/byte-run.el (defmacro): Use same argument parsing as
199 defun. Don't check for DECL if DOCSTRING isn't a string.
200 (defun): Likewise.
201
202 2012-12-31 Glenn Morris <rgm@gnu.org>
203
204 * eshell/em-cmpl.el (eshell-pcomplete):
205 More thoroughly imitate pcomplete. (Bug#13293)
206
207 * files.el (parse-colon-path): Doc fix. (Bug#12351)
208 Return nil for empty path elements. (Bug#13296)
209
210 2012-12-31 Fabián Ezequiel Gallina <fgallina@cuca>
211
212 * progmodes/python.el (python-nav-end-of-statement): Rewrite in
213 order to improve efficiency (Based on Daniel Colascione's
214 <dancol@dancol.org> patch). (Bug#13182)
215
216 2012-12-31 Glenn Morris <rgm@gnu.org>
217
218 * vc/log-edit.el (log-edit-header-contents-regexp): Add doc string.
219
220 2012-12-31 Fabián Ezequiel Gallina <fgallina@cuca>
221
222 * progmodes/python.el: Support other commands triggering
223 python-indent-line so indentation cycling continues to work.
224 (python-indent-trigger-commands): New defcustom.
225 (python-indent-line): Use it.
226
227 2012-12-31 Fabián Ezequiel Gallina <fgallina@cuca>
228
229 * progmodes/python.el (python-shell-send-region): Add blank lines
230 for non sent code so backtraces remain correct.
231
232 2012-12-31 Andreas Schwab <schwab@linux-m68k.org>
233
234 * emacs-lisp/byte-run.el (defmacro): Don't lose final nil if
235 neither DOCSTRING nor DECL was given. (Bug#13316)
236
237 2012-12-30 Glenn Morris <rgm@gnu.org>
238
239 * net/mairix.el (rmail, rmail-summary-displayed, rmail-summary):
240 Remove unnecessary/buggy autoloads (missing interactive). (Bug#13294)
241 (rmail-summary-displayed, rmail-summary): Declare.
242 (mairix-rmail-display): Just require rmail.
243
244 2012-12-29 Chong Yidong <cyd@gnu.org>
245
246 * emacs-lisp/package.el (package-untar-buffer): Improve integrity
247 check for the tarball contents.
248
249 2012-12-29 Matt Fidler <matt.fidler@alcon.com> (tiny change)
250
251 * emacs-lisp/package.el (package-untar-buffer): Handle problematic
252 tarfile content listings (Bug#13136).
253
254 2012-12-29 Mark Lillibridge <mark.lillibridge@hp.com>
255
256 * mail/rmailmm.el (rmail-insert-mime-forwarded-message):
257 Insert the undecoded text of the message being forwarded. (Bug#9521)
258
259 2012-12-28 Michael Albinus <michael.albinus@gmx.de>
260
261 * net/tramp-sh.el (tramp-set-file-uid-gid): Convert UID and GID to
262 integers, if they are real numbers. (Bug#13282)
263
264 2012-12-26 Dmitry Gutov <dgutov@yandex.ru>
265
266 * progmodes/ruby-mode.el (ruby-indent-beg-re): Only allow "class",
267 "module" and "def" to have indentation before them.
268 Regression from 109911 (see the new test).
269
270 2012-12-24 Dmitry Gutov <dgutov@yandex.ru>
271
272 * progmodes/ruby-mode.el: Bump the version to 1.2 (Bug#13200).
273
274 2012-12-23 Alan Mackenzie <acm@muc.de>
275
276 Speed up fontification where there's large brace blocks.
277 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls): Add a limit
278 to a call of c-beginning-of-decl-1.
279
280 2012-12-21 Chong Yidong <cyd@gnu.org>
281
282 * sort.el (sort-subr): Doc fix (Bug#13056).
283
284 2012-12-20 Bastien Guerry <bzg@gnu.org>
285
286 * progmodes/etags.el (tags-search): Fix typo. Bug #13232.
287
288 2012-12-11 Alan Mackenzie <acm@muc.de>
289
290 Make CC Mode not hang when _some_ lines end in CRLF. Bug #11841.
291 * progmodes/cc-engine.el (c-backward-comments): Add code to work
292 around `forward-comment' not recognizing ^M as whitespace.
293
294 2012-12-11 Fabián Ezequiel Gallina <fgallina@cuca>
295
296 * progmodes/python.el (python-skeleton-class)
297 (python-skeleton-def): Do not add space after defun name.
298
299 2012-12-09 Chong Yidong <cyd@gnu.org>
300
301 * simple.el (set-mark-default-inactive): Mark as obsolete, for
302 removal after 24.3.
303
304 2012-12-08 Dani Moncayo <dmoncayo@gmail.com>
305
306 * simple.el (just-one-space): Doc fix.
307
308 2012-12-07 Eli Zaretskii <eliz@gnu.org>
309
310 * textmodes/texinfo.el (texinfo-enable-quote-envs):
311 Add "smallexample".
312
313 2012-12-07 Le Wang <l26wang@gmail.com>
314
315 * hilit-chg.el (hilit-chg-set-face-on-change): Don't burp in
316 narrowed buffer (bug#12361).
317
318 2012-12-07 Michael Heerdegen <michael_heerdegen@web.de>
319
320 * emacs-lisp/debug.el (debug): Fix hard-coded frame counts (bug#10025).
321 Virtually backported from trunk.
322
323 2012-12-07 Juanma Barranquero <lekktu@gmail.com>
324
325 * vc/vc-hooks.el (vc-state): Doc fix.
326
327 2012-12-06 Glenn Morris <rgm@gnu.org>
328
329 * mail/rmail.el (rmail-maybe-display-summary):
330 Preserve buffer, in case select-window changes it. (Bug#13066)
331
332 2012-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
333
334 * emacs-lisp/cl.el, emacs-lisp/cl-lib.el: Move cl-unload-function and
335 cl-load-hook where they belong.
336
337 2012-12-06 Chong Yidong <cyd@gnu.org>
338
339 * ffap.el (ffap-replace-file-component): Fix typo.
340
341 2012-12-05 Stefan Monnier <monnier@iro.umontreal.ca>
342
343 * progmodes/octave-mod.el (octave-mark-block): Move out of tokens and
344 fix open-paren-like token test (bug#12785).
345
346 2012-12-04 Glenn Morris <rgm@gnu.org>
347
348 * mail/rmailsum.el (rmail-new-summary): Tweak for
349 rmail-maybe-display-summary changing buffer. (Bug#13066)
350
351 2012-12-03 Juri Linkov <juri@jurta.org>
352
353 * info.el (Info-fontify-node): Don't hide the last newline.
354 (Bug#12272)
355
356 2012-12-01 Leo Liu <sdl.web@gmail.com>
357
358 * files.el (dir-locals-read-from-file): Check file non-empty
359 before reading. (Bug#13038)
360
361 2012-11-28 Glenn Morris <rgm@gnu.org>
362
363 * jka-cmpr-hook.el (jka-compr-get-compression-info):
364 Remove any version extension before checking filename. (Bug#13006)
365 (jka-compr-compression-info-list): Belated :version bump.
366
367 2012-11-28 Chong Yidong <cyd@gnu.org>
368
369 * simple.el (transient-mark-mode): Doc fix (Bug#11523).
370
371 * buff-menu.el (Buffer-menu-delete-backwards, Buffer-menu-mode)
372 (buffer-menu): Doc fix (Bug#12294).
373
374 2012-11-27 Roland Winkler <winkler@gnu.org>
375
376 * calendar/diary-lib.el (diary-header-line-format): Use keybinding
377 of diary-show-all-entries in the diary buffer (Bug#12994).
378
379 2012-11-27 Michael Albinus <michael.albinus@gmx.de>
380
381 * net/tramp-sh.el (tramp-perl-encode): Use "read STDIN" instead of
382 "<STDIN>". This is binary safe.
383
384 2012-11-27 Stefan Monnier <monnier@iro.umontreal.ca>
385
386 * textmodes/table.el (table-insert): Don't use `symbol-name' on
387 lexically scoped variables (bug#13005).
388
389 2012-11-26 Glenn Morris <rgm@gnu.org>
390
391 * vc/vc-hooks.el (vc-mistrust-permissions):
392 Default to t, to avoid data-loss. (Bug#11490)
393
394 2012-11-26 Fabián Ezequiel Gallina <fgallina@cuca>
395
396 * progmodes/python.el (python-indent-guess-indent-offset):
397 If indentation is guessed make python-indent-offset buffer-local.
398
399 Fix Imenu regression.
400 * progmodes/python.el (python-nav-beginning-of-defun):
401 Fix forward movement when statement(s) separates point from defun.
402 (python-imenu-prev-index-position): New function.
403
404 2012-11-26 Eli Zaretskii <eliz@gnu.org>
405
406 * subr.el (buffer-file-type): Declare with defvar-local. Doc fix.
407
408 * dos-w32.el (find-file-not-found-set-buffer-file-coding-system):
409 Don't set buffer-file-type. Return nil. (Bug#12989)
410
411 2012-11-26 Glenn Morris <rgm@gnu.org>
412
413 * hippie-exp.el (hippie-expand-try-functions-list):
414 Re-autoload it. (Bug#12982)
415
416 2012-11-25 Eli Zaretskii <eliz@gnu.org>
417
418 * descr-text.el (describe-char-padded-string):
419 Call internal-char-font only on GUI frames. (Bug#11964)
420
421 2012-11-24 Andreas Schwab <schwab@linux-m68k.org>
422
423 * buff-menu.el (Buffer-menu-buffer+size-width): Fix customize type
424 and obsoletion message.
425
426 2012-11-24 Stefan Monnier <monnier@iro.umontreal.ca>
427
428 * emacs-lisp/cl-macs.el (cl--transform-lambda): Add back `declare' in
429 the constructs to keep outside of the `cl-block' (bug#12977).
430
431 2012-11-24 Chong Yidong <cyd@gnu.org>
432
433 * mouse.el (mouse-drag-line): Even if the line is not draggable,
434 keep reading until we get the up-event anyway, in order to process
435 the up-event for mouse-1-click-follows-link (Bug#12971).
436
437 2012-11-23 Stefan Monnier <monnier@iro.umontreal.ca>
438
439 * emacs-lisp/bytecomp.el (byte-compile-file): Setup default value for
440 lexical-binding (bug#12938).
441
442 2012-11-23 Wolfgang Jenkner <wjenkner@inode.at>
443
444 * image-mode.el (image-transform-check-size): Use assertions only
445 for images of type imagemagick.
446
447 Otherwise no error, image-transform-fit-to-{width,height} is
448 silently ignored, as before. Doc fix.
449
450 2012-11-23 Chong Yidong <cyd@gnu.org>
451
452 * faces.el (color-defined-p): Doc fix (Bug#12853).
453
454 2012-11-23 Juri Linkov <juri@jurta.org>
455
456 * dired.el (dired-mark): Add optional arg `interactive'.
457 Check for `use-region-p' if `interactive' is non-nil.
458 (dired-unmark, dired-flag-file-deletion): Add optional arg
459 `interactive'. Call `dired-mark' with the arg `interactive'.
460 (Bug#10624)
461
462 2012-11-23 Juri Linkov <juri@jurta.org>
463
464 * wdired.el: Revert 2012-10-17 change partly and replace it with
465 Patch by Christopher Schmidt <christopher@ch.ristopher.com>.
466 (wdired-finish-edit): Add marks for new file names to
467 `wdired-old-marks'. Restore marks using `dired-mark-remembered'
468 after `revert-buffer'.
469 (wdired-do-renames): Remove calls to `dired-remove-file',
470 `dired-add-file', `dired-add-entry'. (Bug#11795)
471
472 2012-11-21 Alan Mackenzie <acm@muc.de>
473
474 * progmodes/cc-defs.el (c-version): Bump to 5.32.4.
475
476 Fix bugs in the state cache. Enhance a debugging mechanism.
477 * progmodes/cc-engine.el (c-parse-state-get-strategy): Don't use
478 "brace at column zero" strategy for C++.
479 (c-append-lower-brace-pair-to-state-cache): Repair algorithm.
480 (c-parse-state-point): New variable.
481 (c-record-parse-state-state): Record old parse state with
482 `copy-tree'. Record previous value of point.
483 (c-debug-parse-state-double-cons): New debugging function.
484 (c-debug-parse-state): Call the above new function.
485 (c-toggle-parse-state-debug): Output a confirmatory message.
486
487 * progmodes/cc-mode.el (c-before-change, c-after-change):
488 Call c-invalidate-state-cache from `c-before-change' instead of
489 `c-after-change'.
490
491 2012-11-20 Daniel Colascione <dancol@dancol.org>
492
493 * term/w32-win.el (cygwin-convert-path-from-windows):
494 Accomodate rename of cygwin_convert_path* to cygwin_convert_file_name*.
495 This change is a backport from trunk.
496
497 2012-11-20 Eli Zaretskii <eliz@gnu.org>
498
499 * simple.el (line-move): Don't call line-move-partial if
500 scroll-conservatively is in effect. (Bug#12927)
501
502 2012-11-20 Michael Albinus <michael.albinus@gmx.de>
503
504 * net/trampver.el (tramp-version): Downgrade to 2.2.6-24.3, in
505 order to distinguish from trunk.
506
507 2012-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
508
509 * emacs-lisp/byte-run.el (defun-declarations-alist): Don't accept
510 non-symbols for compiler macros (yet).
511
512 * eshell/em-cmpl.el (eshell-pcomplete): Refine fix for bug#12838:
513 Fallback on completion-at-point rather than
514 pcomplete-expand-and-complete, and only if pcomplete actually failed.
515 (eshell-cmpl-initialize): Setup completion-at-point.
516
517 * pcomplete.el (pcomplete--entries): Obey pcomplete-ignore-case.
518
519 * emacs-lisp/ert.el (ert--expand-should-1): Adapt to cl-lib.
520
521 2012-11-19 Michael Albinus <michael.albinus@gmx.de>
522
523 * net/tramp-sh.el (tramp-do-copy-or-rename-file): If both files
524 are remote, check out-of-band property for both.
525
526 2012-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
527
528 * window.el (switch-to-buffer): Re-add the warning that was lost in the
529 code rewrite.
530
531 2012-11-18 Paul Eggert <eggert@cs.ucla.edu>
532
533 More minor time fixes.
534 * calendar/time-date.el: Commentary fix.
535 * net/tramp-sh.el (tramp-do-file-attributes-with-ls): Undo last change;
536 too much other code depends on (0 0) time stamps.
537 * net/tramp.el (tramp-time-less-p, tramp-time-subtract):
538 Add a couple of FIXME comments.
539
540 Minor cleanup for times as lists of four integers.
541 * files.el (dir-locals-directory-cache):
542 * ps-bdf.el (bdf-file-mod-time, bdf-read-font-info):
543 Doc fixes.
544 * net/tramp-sh.el (tramp-do-file-attributes-with-ls):
545 * ps-bdf.el (bdf-file-newer-than-time):
546 Process four-integers time stamps, not two. Doc fixes.
547
548 2012-11-18 Glenn Morris <rgm@gnu.org>
549
550 * image.el (insert-image, insert-sliced-image): Doc fix.
551
552 2012-11-17 Chong Yidong <cyd@gnu.org>
553
554 * emacs-lisp/syntax.el (syntax-propertize-function): Doc fix
555 (Bug#12810).
556
557 2012-11-17 OKAZAKI Tetsurou <okazaki.tetsurou@gmail.com> (tiny change)
558
559 * vc/vc-svn.el (vc-svn-merge-news): Properly parse the merge
560 response when the target file is in a subdirectory (Bug#12757).
561
562 2012-11-17 Chong Yidong <cyd@gnu.org>
563
564 * filecache.el (file-cache-add-file-list): Doc fix (Bug#12694).
565
566 2012-11-17 Glenn Morris <rgm@gnu.org>
567
568 * woman.el (woman-non-underline-faces):
569 * emacs-lisp/cl-lib.el (face-underline-p):
570 Use set-face-underline rather than the alias set-face-underline-p.
571
572 * window.el (with-temp-buffer-window): Doc fix.
573 * subr.el (with-output-to-temp-buffer):
574 Add doc xref to with-temp-buffer-window.
575
576 2012-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
577
578 * emacs-lisp/cl-lib.el: Set more meaningful version number.
579
580 2012-11-16 Martin Rudalics <rudalics@gmx.at>
581
582 * window.el (enlarge-window, shrink-window): Don't mention return
583 value in doc-string (Bug#12896).
584 (window--display-buffer): Don't resize frames - it won't work
585 with all window managers and defeat pop-up-frame-alist.
586 (display-buffer-alist): In doc-string explain that CONDITION can
587 be a function and which arguments are passed to it (Bug#12854).
588 (display-buffer-assq-regexp): New argument ACTION. Handle lambda
589 expressions (Bug#12854).
590 (display-buffer): Pass ACTION argument to
591 display-buffer-assq-regexp.
592
593 2012-11-16 Glenn Morris <rgm@gnu.org>
594
595 * window.el (fit-frame-to-buffer-bottom-margin)
596 (fit-frame-to-buffer, fit-window-to-buffer): Doc fixes.
597
598 * faces.el (face-underline-p): Use face-attribute-specified-or.
599
600 2012-11-15 Juanma Barranquero <lekktu@gmail.com>
601
602 * emacs-lisp/cl-macs.el (cl-loop, cl-do, cl-do*): Doc fixes.
603
604 2012-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
605
606 * emacs-lisp/cl-macs.el (cl-flet, cl-flet*): Fix docstring (bug#12895).
607
608 2012-11-15 Glenn Morris <rgm@gnu.org>
609
610 * eshell/em-cmpl.el (eshell-pcomplete): New command. (Bug#12838)
611 (eshell-cmpl-initialize): Bind eshell-pcomplete to TAB, C-i.
612
613 * faces.el (face-underline-p): Doc fix. Handle :underline being
614 things other than `t' (a string, a list).
615 (face-inverse-video-p): Doc fix.
616 (set-face-underline): Rename it back from set-face-underline-p.
617 Doc fix. Allow interactive input of values other than t.
618 (read-face-attribute): Apply formatting to :underline,
619 since like :box and :stipple it can take list values.
620
621 * term.el (ansi-term): Don't let C-x escape-char binding
622 clobber the more standard C-c binding. (Bug#12842)
623
624 2012-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
625
626 * emacs-lisp/gv.el (setf): Fix debug spec for multiple assignments
627 (bug#12879).
628
629 2012-11-14 Glenn Morris <rgm@gnu.org>
630
631 * subr.el (set-temporary-overlay-map): Doc fix.
632
633 2012-11-13 Martin Rudalics <rudalics@gmx.at>
634
635 * window.el (record-window-buffer)
636 (display-buffer-record-window): When copying the markers to
637 window-point preserve window-point-insertion-type. (Bug#12588)
638
639 2012-11-13 Glenn Morris <rgm@gnu.org>
640
641 * emacs-lisp/eieio-datadebug.el (eieio-debug-methodinvoke):
642 * net/tramp-gvfs.el (tramp-gvfs-dbus-event-error):
643 Use new names for hooks rather than obsolete aliases.
644
645 2012-11-12 Stefan Monnier <monnier@iro.umontreal.ca>
646
647 * emacs-lisp/gv.el (gv-define-simple-setter): One more fix (bug#12871).
648
649 2012-11-12 Wolfgang Jenkner <wjenkner@inode.at>
650
651 * ansi-color.el (ansi-color-apply-sequence): Implement SGR codes
652 39 and 49. This fixes bug#12792. Also, treat unimplemented
653 parameters as 0, thereby restoring the behavior of revisions prior
654 to 2012-08-15T03:33:55Z!monnier@iro.umontreal.ca.
655
656 2012-11-12 Fabián Ezequiel Gallina <fgallina@cuca>
657
658 Fix end-of-defun misbehavior.
659 * progmodes/python.el (python-nav-beginning-of-defun): Rename from
660 python-beginning-of-defun-function. Handle nested defuns
661 correctly.
662 (python-nav-end-of-defun): Rename from
663 python-end-of-defun-function. Ensure forward movement.
664 (python-info-current-defun): Reimplement to work as intended
665 with new fixed python-nav-{end,beginning}-of-defun. Stop scanning
666 parent defuns as soon as possible.
667
668 2012-11-12 Glenn Morris <rgm@gnu.org>
669
670 * progmodes/flymake.el (flymake-error-bitmap)
671 (flymake-warning-bitmap, flymake-fringe-indicator-position): Doc fixes.
672 (flymake-error-bitmap, flymake-warning-bitmap): Fix :types.
673
674 2012-11-12 Dmitry Gutov <dgutov@yandex.ru>
675
676 * progmodes/ruby-mode.el (ruby-move-to-block): When moving
677 backward, always stop at indentation. Reverts the change from
678 2012-08-12T22:06:56Z!monnier@iro.umontreal.ca (Bug#12851).
679
680 2012-11-11 Glenn Morris <rgm@gnu.org>
681
682 * ibuffer.el (ibuffer-mode-map, ibuffer-mode):
683 Add ibuffer-filter-by-derived-mode.
684
685 * ibuffer.el (ibuffer-mode-map): Don't have two menu items with
686 the same name shadowing each other.
687
688 * window.el (with-temp-buffer-window): Doc tweak.
689
690 * emacs-lisp/debug.el (debugger-bury-or-kill): Doc tweak.
691
692 * help.el (temp-buffer-max-height):
693 * window.el (fit-frame-to-buffer, fit-frame-to-buffer-bottom-margin):
694 * emacs-lisp/debug.el (debugger-bury-or-kill): Fix :version.
695
696 2012-11-10 Leo Liu <sdl.web@gmail.com>
697
698 * ido.el (ido-set-matches-1): Fix split-string args to avoid
699 performance issue. (Bug#12796)
700
701 2012-11-10 Glenn Morris <rgm@gnu.org>
702
703 * term.el (term-default-fg-color, term-default-bg-color):
704 Make obsolete, rather than just saying "deprecated" in the doc.
705
706 * term.el (term): Rename from `term-face'.
707 (term-current-face, ansi-term-color-vector)
708 (term-default-fg-color, term-default-bg-color, term-ansi-reset):
709 Update all users.
710
711 2012-11-09 Jan Djärv <jan.h.d@swipnet.se>
712
713 * server.el (server-create-window-system-frame): Improve comment.
714
715 2012-11-08 Jan Djärv <jan.h.d@swipnet.se>
716
717 * server.el (server-create-window-system-frame): Handle Nextstep
718 specially (Bug#12780).
719
720 2012-11-08 Glenn Morris <rgm@gnu.org>
721
722 * mail/emacsbug.el (report-emacs-bug-query-existing-bugs):
723 Unautoload, and make obsolete. (Bug#7449)
724
725 2012-11-08 Chong Yidong <cyd@gnu.org>
726
727 * vc/diff-mode.el (diff-delete-trailing-whitespace): Rewrite, and
728 rename from diff-remove-trailing-whitespace (Bug#12831).
729
730 2012-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
731
732 * emacs-lisp/advice.el: Require `cl-lib' at run-time to fix
733 miscompilation of trace.el.
734
735 2012-11-08 Glenn Morris <rgm@gnu.org>
736
737 * vc/diff-mode.el (diff-remove-trailing-whitespace): Doc fix.
738
739 2012-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
740
741 * emacs-lisp/gv.el (gv-define-simple-setter): Fix last change
742 (bug#12812).
743
744 2012-11-07 Chong Yidong <cyd@gnu.org>
745
746 * minibuf-eldef.el (minibuffer-eldef-shorten-default): Convert to
747 a defcustom with an appropriate :set function.
748 (minibuffer-default--in-prompt-regexps): New function.
749
750 2012-11-07 Glenn Morris <rgm@gnu.org>
751
752 * emacs-lisp/cl.el (define-setf-expander, defsetf)
753 (define-modify-macro): Doc fixes.
754
755 * emacs-lisp/gv.el (gv-letplace): Fix doc typo.
756 (gv-define-simple-setter): Update doc of `fix-return'.
757
758 2012-11-07 Stefan Monnier <monnier@iro.umontreal.ca>
759
760 * emacs-lisp/gv.el (gv-define-simple-setter): Don't evaluate `val'
761 twice when `fix-return' is set (bug#12813).
762
763 * emacs-lisp/cl.el (defsetf): Pass the third arg to
764 gv-define-simple-setter (bug#12812).
765
766 2012-11-06 Stefan Monnier <monnier@iro.umontreal.ca>
767
768 * woman.el (woman-decode-region): Disable adaptive-fill when rendering
769 (bug#12756).
770
771 2012-11-06 Glenn Morris <rgm@gnu.org>
772
773 * emacs-lisp/gv.el (gv-define-setter): Fix doc typo.
774
775 2012-11-05 Glenn Morris <rgm@gnu.org>
776
777 * emacs-lisp/cl-extra.el (cl-prettyexpand):
778 * emacs-lisp/cl-lib.el (cl-proclaim, cl-declaim):
779 * emacs-lisp/cl-macs.el (cl-destructuring-bind, cl-locally)
780 (cl-the, cl-compiler-macroexpand): Add basic doc strings.
781
782 * emacs-lisp/cl-extra.el (cl-maplist, cl-mapcan): Doc fix.
783
784 2012-11-03 Glenn Morris <rgm@gnu.org>
785
786 * emacs-lisp/cl-macs.el (cl-parse-loop-clause):
787 Rename handler properties back from cl-- to cl-. (Bug#12788)
788
789 * emacs-lisp/cl-macs.el (cl-do-all-symbols): Add doc string.
790
791 2012-11-03 Eli Zaretskii <eliz@gnu.org>
792
793 * term/pc-win.el: Don't load term/internal from here.
794
795 * loadup.el: Load term/internal from here.
796
797 2012-11-03 Fabián Ezequiel Gallina <fgallina@cuca>
798
799 * progmodes/python.el (inferior-python-mode): Fix hang in
800 jit-lock (Bug#12645).
801
802 2012-11-03 Martin Rudalics <rudalics@gmx.at>
803
804 * window.el (switch-to-visible-buffer)
805 (switch-to-buffer-preserve-window-point): Fix doc-strings.
806
807 2012-11-01 Stephen Berman <stephen.berman@gmx.net>
808
809 * play/gomoku.el (gomoku-display-statistics): Update mode line
810 only if in Gomoku buffer; don't capitalize "won" (Bug#12771).
811
812 2012-10-31 Martin Rudalics <rudalics@gmx.at>
813
814 * window.el (quit-restore-window): If the window has been
815 created on an existing frame and ended up as the sole window on
816 that frame, do not delete it (Bug#12764).
817
818 2012-10-31 Stefan Monnier <monnier@iro.umontreal.ca>
819
820 * progmodes/sh-script.el (sh--inside-noncommand-expression):
821 Rename from sh--inside-arithmetic-expression, handle more cases
822 (bug#11263).
823
824 * progmodes/sh-script.el (sh--inside-arithmetic-expression): New func.
825 (sh-font-lock-open-heredoc): Use it (bug#12770).
826
827 2012-10-30 Glenn Morris <rgm@gnu.org>
828
829 * emacs-lisp/cl-extra.el (cl-mapc): Add autoload cookie. Doc fix.
830
831 * emacs-lisp/cl.el (letf): Doc fix. (Bug#12760)
832
833 2012-10-29 Chong Yidong <cyd@gnu.org>
834
835 * isearch.el (isearch-other-meta-char): Ensure that a reprocessed
836 function key is stored in a keyboard macro (Bug#4894).
837
838 * thingatpt.el (number-at-point): Apply a thing-at-point property.
839
840 2012-10-29 Stefan Monnier <monnier@iro.umontreal.ca>
841
842 * vc/diff-mode.el (diff-context->unified): Don't get confused by "hunk
843 header comments".
844 (diff-unified->context, diff-context->unified)
845 (diff-reverse-direction, diff-fixup-modifs): Use `use-region-p'.
846
847 * emacs-lisp/cl.el (letf): Add missing indent rules (bug#12759).
848
849 * files.el (find-alternate-file): Only ask one question (bug#12487).
850
851 2012-10-29 Chong Yidong <cyd@gnu.org>
852
853 * vc/vc-hooks.el (vc-file-clearprops): Kill vc-parent-buffer.
854 Suggested by Dan Nicolaescu (Bug#6326).
855
856 * info.el (Info-complete-menu-item): Avoid duplicates (Bug#12705).
857
858 * startup.el (fancy-about-screen): Don't message (Bug#12680).
859
860 * thingatpt.el (thing-at-point): Doc fix (Bug#12691).
861
862 * imenu.el (imenu): Inhibit push-mark message (Bug#12726).
863
864 * face-remap.el (face-remap-add-relative): Handle the case where a
865 face-remapping-alist entry is a cons cell (Bug#12762).
866
867 2012-10-29 Kevin Ryde <user42@zip.com.au>
868
869 * woman.el (woman-parse-numeric-value): Handle picas correctly
870 (Bug#12639).
871
872 2012-10-29 Glenn Morris <rgm@gnu.org>
873
874 * emacs-lisp/cl.el (defsetf): Doc fix.
875
876 2012-10-29 Stefan Monnier <monnier@iro.umontreal.ca>
877
878 * progmodes/sh-script.el (sh-font-lock-paren): Also put punctuation
879 syntax to the matching opener, if any (bug#12547).
880 (sh-smie-sh-forward-token, sh-smie-sh-backward-token): Recognize this
881 matching open as a "case-(".
882 (sh-smie-rc-grammar): Add a corresponding rule for it.
883
884 2012-10-28 Daniel Hackney <dan@haxney.org>
885
886 * emacs-lisp/package.el (package-generate-autoloads): Kill buffer
887 "PKGNAME-autoloads.el" in case we created it.
888
889 2012-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
890
891 * minibuffer.el (completion--sifn-requote): Rewrite to handle things
892 like Tramp's "/foo:~bar//baz" -> "/scpc:foo:/baz" mapping (bug#11714).
893 (completion--twq-all): Disable too-strict assertions.
894
895 * tmm.el (tmm-prompt): Use map-keymap (bug#12744).
896
897 2012-10-27 Eli Zaretskii <eliz@gnu.org>
898
899 * profiler.el (profiler-report-make-entry-part): Fix help-echo
900 text to match the real keybindings.
901
902 2012-10-27 Juri Linkov <juri@jurta.org>
903
904 * wdired.el (wdired-keep-marker-rename): New defcustom.
905 (wdired-do-renames): Use it instead of `dired-keep-marker-rename'.
906 (Bug#11795)
907
908 * dired.el (dired-keep-marker-rename): Add reference to
909 `wdired-keep-marker-rename' in the docstring.
910 Add default character value ?R to display initially in
911 Customization UI instead of ?@.
912
913 2012-10-27 Martin Rudalics <rudalics@gmx.at>
914
915 * window.el (display-buffer): In doc-string describe
916 window-height and window-width alist entries.
917
918 * time.el (display-time-world): Restore fit-window-to-buffer
919 behavior.
920
921 2012-10-27 Chong Yidong <cyd@gnu.org>
922
923 * subr.el (insert-buffer-substring-as-yank): Doc fix.
924
925 2012-10-26 Jambunathan K <kjambunathan@gmail.com>
926
927 * minibuffer.el (completion-category-overrides): New completion
928 category `bookmark' (bug#11131).
929
930 2012-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
931
932 * emacs-lisp/advice.el (ad-assemble-advised-definition):
933 Silence bogus compiler warnings for ad-do-it.
934
935 * bookmark.el (bookmark-completing-read): Set the completion category
936 to `bookmark' (bug#11131).
937
938 2012-10-26 Bastien <bzg@altern.org>
939 Stefan Monnier <monnier@iro.umontreal.ca>
940
941 * face-remap.el: Use lexical-binding.
942 (text-scale-adjust): Improve docstring. Use itself for the temporary
943 overlay-map bindings, so as to repeat the "Use..." message each time.
944
945 2012-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
946
947 * emacs-lisp/macroexp.el (macroexp--expand-all):
948 Obey byte-compile-warning-enabled-p (bug#12486).
949
950 * vc/diff-mode.el (diff-end-of-hunk): Also skip potential "no LF at eol".
951 (diff-refine-hunk): Similarly, handle the "no LF at eol" (bug#12584).
952
953 2012-10-26 Martin Rudalics <rudalics@gmx.at>
954
955 * mouse.el (mouse-drag-line): Move last form into preceding when
956 clause (Bug#12731).
957
958 * help.el (resize-temp-buffer-window): Fix doc-string.
959
960 2012-10-25 David Engster <deng@randomsample.de>
961
962 * emacs-lisp/eieio.el (eieio-update-lisp-imenu-expression):
963 Remove. This feature is already integrated in imenu.
964
965 * emacs-lisp/eieio-opt.el: Remove require for `button' since it is
966 always loaded. Require `speedbar' unconditionally.
967
968 2012-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
969
970 * dired.el (dired-get-marked-files): Allow ! on . and .. (bug#12725).
971
972 * minibuffer.el (minibuffer-force-complete): Fix thinko.
973
974 * net/ldap.el (ldap-search-internal): The official ldif format starts
975 with a "version: 1" header (bug#12724).
976
977 * emacs-lisp/package.el (package-installed-p): Warn if not ready
978 (bug#12721).
979
980 2012-10-25 Glenn Morris <rgm@gnu.org>
981
982 * emacs-lisp/cl-macs.el (cl-progv): Doc fix.
983
984 2012-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
985
986 * minibuffer.el (minibuffer-force-complete): Use one more marker
987 for the temporary-overlay-map command (bug#12619).
988
989 2012-10-24 Chong Yidong <cyd@gnu.org>
990
991 * time.el (display-time-world-mode): Derive from special-mode.
992 (display-time-world): Use display-buffer (Bug#12708).
993 (display-time-world-mode-map): Variable deleted.
994 (display-time-world-display): Wrap the final delete-char inside
995 inhibit-read-only.
996
997 2012-10-24 Chong Yidong <cyd@gnu.org>
998
999 * dired.el (dired-mark, dired-unmark, dired-flag-file-deletion):
1000 Doc fix.
1001
1002 * emacs-lisp/easymenu.el (easy-menu-define): Doc fix (Bug#12628).
1003
1004 2012-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
1005
1006 * minibuffer.el (completion--all-sorted-completions-location): New var.
1007 (completion--cache-all-sorted-completions)
1008 (completion--flush-all-sorted-completions): Use it.
1009 (completion-in-region, completion-in-region--postch)
1010 (completion-at-point, completion-help-at-point): Use markers in
1011 completion-in-region--data (bug#12619).
1012
1013 2012-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
1014
1015 * progmodes/compile.el (compilation-start): Try to handle common
1016 quoting of `cd' argument (bug#12640).
1017
1018 * vc/diff-mode.el (diff-hunk): `save-excursion' while refining
1019 (bug#12671).
1020
1021 2012-10-23 Glenn Morris <rgm@gnu.org>
1022
1023 * progmodes/gud.el (gud-menu-map):
1024 Check gdb-active-process is bound. (Bug#12358)
1025
1026 2012-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
1027
1028 * repeat.el (repeat): Set real-this-command (bug#12232).
1029
1030 * htmlfontify.el (hfy-post-html-hook):
1031 * filesets.el (filesets-cache-fill-content-hook):
1032 * arc-mode.el (archive-extract-hook):
1033 * progmodes/cc-mode.el (c-prepare-bug-report-hook):
1034 * net/rcirc.el (rcirc-sentinel-functions)
1035 (rcirc-receive-message-functions, rcirc-activity-functions)
1036 (rcirc-print-functions):
1037 * net/dbus.el (dbus-event-error-functions):
1038 * emacs-lisp/eieio.el (eieio-pre-method-execution-functions):
1039 * emacs-lisp/checkdoc.el (checkdoc-style-functions)
1040 (checkdoc-comment-style-functions): Don't use "-hooks" suffix.
1041 * term/sun.el (sun-raw-prefix-hooks):
1042 * mail/sendmail.el (mail-yank-hooks): Use make-obsolete-variable.
1043
1044 2012-10-23 Michael Albinus <michael.albinus@gmx.de>
1045
1046 * net/tramp-smb.el (tramp-smb-maybe-open-connection):
1047 Set `tramp-chunksize' to 1. This improves the performance.
1048 (tramp-smb-wait-for-output): Add timeout to
1049 `tramp-accept-process-output' calls.
1050
1051 2012-10-23 Chong Yidong <cyd@gnu.org>
1052
1053 * faces.el (font-list-limit): Define as an obsolete variable.
1054
1055 * startup.el (command-line):
1056 * cus-start.el: Don't refer to font-list-limit.
1057
1058 * newcomment.el (comment-normalize-vars): Doc fix (Bug#12583).
1059
1060 2012-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
1061
1062 * subr.el (internal-temp-output-buffer-show): Rename from
1063 temp-output-buffer-show, since previously compiled files expect this name.
1064
1065 2012-10-23 Glenn Morris <rgm@gnu.org>
1066
1067 * image.el (image-type-from-file-name): If multiple types match,
1068 return the first one that is supported. (Bug#9045)
1069
1070 2012-10-22 Glenn Morris <rgm@gnu.org>
1071
1072 * image.el (imagemagick-enabled-types): Doc fix.
1073
1074 2012-10-22 Takafumi Arakaki <aka.tkf@gmail.com> (tiny change)
1075
1076 * progmodes/which-func.el (which-func-current): The hash-table may have
1077 an explicit nil (bug#12338).
1078
1079 2012-10-22 Stefan Monnier <monnier@iro.umontreal.ca>
1080
1081 * electric.el (electric-pair-delete-selection-self-insert-function):
1082 Rename to electric-pair-will-use-region, return a boolean.
1083 (electric-pair-mode): Adjust accordingly. Don't require delsel.
1084
1085 * delsel.el (delete-selection-helper): Use a function instead of a hook.
1086 (delete-selection-pre-hook): Use use-region-p.
1087 (delete-selection-self-insert-function): Remove.
1088 (self-insert-command): Obey self-insert-uses-region-functions.
1089 (self-insert-iso): Revert to previous setting, since we don't actually
1090 know what that command does.
1091 (delete-selection-self-insert-hooks): Remove.
1092
1093 2012-10-22 Simon Law <sfllaw@sfllaw.ca> (tiny change)
1094
1095 * delsel.el (delete-selection-helper): New function, extracted from
1096 delete-selection-pre-hook.
1097 (delete-selection-pre-hook): Use it.
1098 (delete-selection-self-insert-function): New function.
1099 (delete-selection-self-insert-hooks): New hook.
1100 (self-insert-command, self-insert-iso): Use it.
1101 * electric.el (electric-pair-syntax): New function, extracted from
1102 electric-pair-post-self-insert-function.
1103 (electric-pair-post-self-insert-function): Use it.
1104 (electric-pair-delete-selection-self-insert-function): New function.
1105 (electric-pair-mode): Require delsel and setup
1106 delete-selection-self-insert-hooks (bug#11520).
1107
1108 2012-10-20 Chong Yidong <cyd@gnu.org>
1109
1110 * vc/vc.el (vc-diff-internal): Set up Diff mode even if there are
1111 no changes to show (Bug#12586).
1112
1113 * eshell/esh-cmd.el (eshell-rewrite-for-command): Copy the body
1114 list explicitly (Bug#12571).
1115
1116 2012-10-20 Arne Jørgensen <arne@arnested.dk>
1117
1118 * progmodes/flymake.el (flymake-create-temp-inplace):
1119 Use file-truename.
1120
1121 2012-10-20 Eli Zaretskii <eliz@gnu.org>
1122
1123 * loadup.el: Update comment about uncompiled Lisp files. (Bug#12395)
1124
1125 2012-10-20 Jay Belanger <jay.p.belanger@gmail.com>
1126
1127 * calc/calc-units.el (math-extract-units): Properly extract powers
1128 of units.
1129
1130 2012-10-20 Daniel Colascione <dancol@dancol.org>
1131
1132 * frame.el (make-frame): Set x-display-name as we used to in order
1133 to unbreak creating an X11 frame from an Emacs daemon started
1134 without a display.
1135
1136 2012-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
1137
1138 * minibuffer.el (minibuffer-force-complete): Make the next completion use
1139 the same completion-field (bug@12221).
1140
1141 2012-10-19 Martin Rudalics <rudalics@gmx.at>
1142
1143 * emacs-lisp/debug.el (debug): Record height of debugger window
1144 also when debugger will be back (Bug#8789).
1145
1146 2012-10-18 Chong Yidong <cyd@gnu.org>
1147
1148 * progmodes/gdb-mi.el (gdb-display-buffer-other-frame-action):
1149 Convert to defcustom.
1150 (gdb-get-source-file): Don't bind pop-up-windows.
1151
1152 * progmodes/gud.el (gud-display-line): Don't specially re-use
1153 other frames for the gdb-mi case (Bug#12648).
1154
1155 2012-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
1156
1157 * emacs-lisp/advice.el: Clean up commentary a bit.
1158 (ad-do-advised-functions, ad-with-originals): Use `declare'.
1159 (byte-code-function-p): Never redefine.
1160
1161 * emacs-lisp/gv.el (cond): Same fix as before for `if'.
1162
1163 2012-10-18 Glenn Morris <rgm@gnu.org>
1164
1165 * dired.el (dired-sort-toggle): Some ls implementations only allow
1166 a single option string. (Bug#12666)
1167
1168 * minibuffer.el (completion-cycle-threshold): Doc fix.
1169
1170 2012-10-17 Kenichi Handa <handa@gnu.org>
1171
1172 * international/mule.el (set-keyboard-coding-system):
1173 Recover input meta mode when the new coding system doesn not use 8-bit.
1174 Supply TERMINAL arg to set-input-meta-mode.
1175
1176 2012-10-17 Michael Heerdegen <michael_heerdegen@web.de>
1177
1178 * wdired.el (wdired-old-marks): New variable.
1179 (wdired-change-to-wdired-mode): Locally set wdired-old-marks.
1180 (wdired-do-renames): Move point with renamed file and don't lose
1181 mark status (Bug#11795).
1182
1183 2012-10-16 Juri Linkov <juri@jurta.org>
1184
1185 * replace.el (query-replace-help): Mention multi-buffer replacement
1186 keys in the Help message. (Bug#12655)
1187
1188 2012-10-15 Chong Yidong <cyd@gnu.org>
1189
1190 * emacs-lisp/byte-run.el (defsubst): Doc fix.
1191
1192 2012-10-14 Eli Zaretskii <eliz@gnu.org>
1193
1194 * window.el (display-buffer): Doc fix.
1195
1196 * progmodes/compile.el (compilation-error-regexp-alist-alist):
1197 Adjust the msft regexp to the output of Studio 2010, and move msft
1198 before edg-1. See the discussion on emacs-devel,
1199 http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00579.html,
1200 for the details.
1201
1202 2012-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
1203
1204 * emacs-lisp/eieio.el (eieio-oset-default, eieio-oset, oset-default)
1205 (oset): Move uses of object-class-fast macro after its definition.
1206
1207 * emacs-lisp/gv.el (if): Don't use closures in non-lexical-binding code.
1208
1209 2012-10-13 Chong Yidong <cyd@gnu.org>
1210
1211 * textmodes/ispell.el (ispell-pdict-save): If flyspell-mode is
1212 enabled, re-enable it (Bug#11963).
1213
1214 2012-10-13 Martin Rudalics <rudalics@gmx.at>
1215
1216 * emacs-lisp/debug.el (debug): When debugger-will-be-back is
1217 non-nil, restore window configuration (Bug#12623).
1218
1219 2012-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
1220
1221 * help-fns.el (describe-variable, describe-function-1):
1222 * help-mode.el (help-make-xrefs): Remove error handler, made unneeded.
1223
1224 * emacs-lisp/eieio.el (lisp-imenu-generic-expression): Fix typo.
1225
1226 2012-10-12 Glenn Morris <rgm@gnu.org>
1227
1228 * mail/rmailsum.el (rmail-header-summary):
1229 Fix 2010-11-26 test for multiline Subject: field. (Bug#12625)
1230
1231 2012-10-12 Fabián Ezequiel Gallina <fgallina@cuca>
1232
1233 * progmodes/python.el (python-mode-map):
1234 Replace subtitute-key-definition with proper command remapping.
1235 (python-nav--up-list): Fix behavior for blocks on the same level.
1236
1237 2012-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
1238
1239 * help-fns.el (describe-function-1): Handle autoloads w/o docstrings.
1240
1241 * emacs-lisp/bytecomp.el (byte-compile-eval): Adjust to long-ago
1242 changes to the format of load-history.
1243
1244 * international/mule-cmds.el (read-char-by-name): Move let-binding of
1245 completion-ignore-case in case that var is buffer-local (bug#12615).
1246
1247 2012-10-11 Kenichi Handa <handa@gnu.org>
1248
1249 * international/eucjp-ms.el: Re-generated.
1250
1251 2012-10-10 Kenichi Handa <handa@gnu.org>
1252
1253 * select.el (xselect--encode-string): If a coding is specified for
1254 selection, and that is compatible with COMPOUND_TEXT, use it.
1255
1256 2012-10-10 Martin Rudalics <rudalics@gmx.at>
1257
1258 * window.el (switch-to-buffer-preserve-window-point): New option.
1259 (switch-to-buffer):
1260 Obey `switch-to-buffer-preserve-window-point' (Bug#4041).
1261
1262 2012-10-09 Stefan Monnier <monnier@iro.umontreal.ca>
1263
1264 * newcomment.el (comment-start-skip, comment-end-skip, comment-end):
1265 Don't document nil as a useful value (bug#12583).
1266
1267 2012-10-09 Michael Albinus <michael.albinus@gmx.de>
1268
1269 * net/tramp.el (tramp-debug-message):
1270 Remove "tramp-with-progress-reporter" from regexp of ignored functions.
1271 (with-tramp-progress-reporter): Rename from
1272 `tramp-with-progress-reporter'.
1273 (with-tramp-file-property, with-tramp-connection-property):
1274 Move from tramp-cache.el, rename from `with-file-property' and
1275 `with-connection-property', respectively.
1276
1277 * net/tramp-cache.el: Remove `with-file-property' and
1278 `with-connection-property'.
1279
1280 * net/tramp.el:
1281 * net/tramp-gvfs.el:
1282 * net/tramp-sh.el:
1283 * net/tramp-smb.el: Adapt callees.
1284
1285 * net/trampver.el: Update release number.
1286
1287 2012-10-09 Glenn Morris <rgm@gnu.org>
1288
1289 * w32-fns.el (set-message-beep):
1290 * term/w32-win.el (set-message-beep): Update declarations.
1291
1292 2012-10-09 Stefan Monnier <monnier@iro.umontreal.ca>
1293
1294 * bindings.el (mode-line-toggle-read-only, mode-line-toggle-modified)
1295 (mode-line-widen, mode-line-input-method-map)
1296 (mode-line-coding-system-map, mode-line-remote)
1297 (mode-line-unbury-buffer, mode-line-bury-buffer)
1298 (mode-line-next-buffer, mode-line-previous-buffer):
1299 Replace save-selected-window+select-window => with-selected-window.
1300
1301 * progmodes/cc-bytecomp.el (cc-bytecomp-defmacro): Remove, unused.
1302 * progmodes/cc-vars.el (bq-process): Remove, unused.
1303
1304 * emacs-lisp/cl-macs.el (cl-defstruct): Obey the :read-only property.
1305
1306 2012-10-09 Fabián Ezequiel Gallina <fgallina@cuca>
1307
1308 Implemented `backward-up-list'-like navigation.
1309 * progmodes/python.el (python-nav-up-list)
1310 (python-nav-backward-up-list): New functions.
1311 (python-mode-map): Define substitute key for backward-up-list to
1312 python-nav-backward-up-list.
1313
1314 2012-10-08 Fabián Ezequiel Gallina <fgallina@cuca>
1315
1316 * progmodes/python.el (python-fill-paragraph): Rename from
1317 python-fill-paragraph-function. Fixed fill-paragraph for
1318 decorators (Bug#12605).
1319
1320 2012-10-08 Fabián Ezequiel Gallina <fgallina@cuca>
1321
1322 * progmodes/python.el (python-shell-output-filter): Handle extra
1323 carriage return in OSX (Bug#12409).
1324
1325 2012-10-08 Fabián Ezequiel Gallina <fgallina@cuca>
1326
1327 Fix shell handling of unbalanced quotes and parens in output.
1328 * progmodes/python.el (python-rx-constituents): Add string-delimiter.
1329 (python-syntax-propertize-function): Use it.
1330 (python-shell-output-syntax-table): New var.
1331 (inferior-python-mode): Prevent unbalanced parens/quotes from
1332 previous output mess with current input context.
1333
1334 2012-10-08 Juanma Barranquero <lekktu@gmail.com>
1335
1336 * generic-x.el (javascript-generic-mode, javascript-generic-mode-hook):
1337 Make obsolete aliases of js-mode and js-mode-hook (from js.el).
1338
1339 2012-10-08 Michael Albinus <michael.albinus@gmx.de>
1340
1341 * ffap.el (ffap-replace-file-component): Support Tramp file name
1342 syntax, not only ange-ftp's one.
1343
1344 2012-10-08 Glenn Morris <rgm@gnu.org>
1345
1346 * cus-start.el (message-log-max): Set :version.
1347
1348 * calendar/calendar.el (calendar-intermonth-header): Doc fix.
1349
1350 2012-10-08 Martin Rudalics <rudalics@gmx.at>
1351
1352 * emacs-lisp/edebug.el (edebug-pop-to-buffer): Don't try to split
1353 the minibuffer window (Bug#10851).
1354
1355 2012-10-08 Fabián Ezequiel Gallina <fgallina@cuca>
1356
1357 Enhancements on forward-sexp movement.
1358 * progmodes/python.el (python-nav-beginning-of-statement)
1359 (python-nav-end-of-statement): Return point-marker.
1360 (python-nav-forward-sexp): lisp-like forward-sexp behavior.
1361 (python-info-current-symbol)
1362 (python-info-statement-starts-block-p): Rename from
1363 python-info-beginning-of-block-p.
1364 (python-info-statement-ends-block-p): Rename from
1365 python-info-end-of-block-p.
1366 (python-info-beginning-of-statement-p)
1367 (python-info-end-of-statement-p)
1368 (python-info-beginning-of-block-p, python-info-end-of-block-p):
1369 New functions.
1370
1371 2012-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
1372
1373 * comint.el (comint-preinput-scroll-to-bottom): Preserve the
1374 frame-selected-windows.
1375
1376 2012-10-08 Daniel Colascione <dancol@dancol.org>
1377
1378 * battery.el (battery-status-function): Check for
1379 w32-battery-status itself, not system-time windows-nt.
1380
1381 * frame.el: Require cl-lib.
1382 (display-format-alist): New variable mapping frame types to
1383 functions that initialize them.
1384 (window-system-for-display): New function: interprets
1385 display-format-alist.
1386 (make-frame-on-display): Remove existing display-selection logic
1387 and just forward to make-frame, which will now DTRT.
1388 (make-frame): Restructure to use window-system-for-display to
1389 figure out how to create a frame on a given display.
1390 (display-mouse-p): Look for frame-type w32, not a particular
1391 system-type.
1392
1393 * loadup.el: Load w32 lisp code when we have the w32 feature.
1394
1395 * mouse.el (mouse-yank-primarY): Look for frame-type w32, not
1396 system-type windows-nt.
1397
1398 * server.el (server-create-window-system-frame): Look for window
1399 type.
1400 (server-proces-filter): Only force a window system when windows-nt
1401 _and_ w32. Explain why.
1402
1403 * simple.el (normal-erase-is-backspace-mode): Add w32 to the list
1404 of window systems we configure for the mode.
1405
1406 * startup.el (command-line): Mark window system is initialized
1407 after we've done it.
1408
1409 * common-win.el (x-select-text): Look for w32, not windows-nt.
1410
1411 * ns-win.el: Require cl-lib. Add ourselves to
1412 display-format-alist.
1413 (ns-initialize-window-system): Assert we're not initialized twice.
1414
1415 * w32-win.el: Enable lexical binding; require cl-lib; add
1416 ourselves to display-format-alist.
1417 (w32-handle-dropped-file): Convert incoming dropped files from
1418 Windows paths to Cygwin ones before passing them on to the rest of
1419 Emacs.
1420 (w32-drag-n-drop): New paramter new-frame. Simplify logic.
1421 (w32-initialize-window-system): Assert we're not initialized twice.
1422
1423 * x-win.el: Require cl-lib; add ourselves to display-format-alist.
1424 (x-initialize-window-system): Assert we're not initialized twice.
1425
1426 * w32-common-fns.el: New File.
1427 (w32-version, w32-using-nt, w32-get-clipboard-data)
1428 (w32-set-clipboard-data, x-set-selection, x-get-selection)
1429 (w32-charset-info-alist, x-last-selected, text)
1430 (x-get-selection-value, x-selection-value): Move here.
1431
1432 * w32-fns.el: Require w32-common-fns.
1433 (w32-version, w32-using-nt, w32-get-clipboard-data)
1434 (w32-set-clipboard-data, x-set-selection, x-get-selection)
1435 (w32-charset-info-alist, x-last-selected, text)
1436 (x-get-selection-value, x-selection-value): Move to
1437 w32-common-fns.
1438
1439 * w32-vars.el:
1440 (w32-allow-system-shell, w32-system-shells): Define only in
1441 non-cygwin case.
1442
1443 2012-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
1444
1445 * subr.el (read-passwd-map): Don't use `defconst' (bug#12597).
1446 (read-passwd): Remove a few more potential sources of leaks.
1447
1448 2012-10-07 Fabián Ezequiel Gallina <fgallina@cuca>
1449
1450 * progmodes/python.el (inferior-python-mode)
1451 (python-shell-make-comint): Fix initialization of local
1452 variables copied from parent buffer.
1453
1454 2012-10-07 Jan Djärv <jan.h.d@swipnet.se>
1455
1456 * term/ns-win.el (ns-read-file-name): Update declaration to match
1457 nsfns.m.
1458 (ns-respond-to-change-font): Change fontsize separatly so we are sure
1459 it is set when font is acted upon.
1460
1461 2012-10-07 Fabián Ezequiel Gallina <fgallina@cuca>
1462
1463 Enhancements to indentation.
1464 * progmodes/python.el (python-indent-context): Give priority to
1465 inside-string context. Make comments indentation markers.
1466 (python-indent-region): Do not mess with strings, unless it's the
1467 enclosing set of quotes.
1468
1469 2012-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
1470
1471 * window.el (internal--before-save-selected-window)
1472 (internal--after-save-selected-window): New functions extracted from
1473 save-selected-window. Make sure we return the `alist' we construct.
1474 (save-selected-window): Use them.
1475
1476 * textmodes/tex-mode.el (tex-recenter-output-buffer):
1477 Use with-selected-window.
1478
1479 * emacs-lisp/autoload.el (make-autoload): Add `cl-defmacro' to the
1480 forms that define macros (bug#12593).
1481
1482 2012-10-07 Kenichi Handa <handa@gnu.org>
1483
1484 * international/mule-conf.el (compound-text-with-extensions):
1485 Add :mime-charset property as x-ctext.
1486
1487 2012-10-07 Stefan Merten <smerten@oekonux.de>
1488
1489 * textmodes/rst.el (rst-new-adornment-down, rst-indent-field)
1490 (rst-indent-literal-normal, rst-indent-literal-minimized)
1491 (rst-indent-comment): Correct :version tag.
1492 (rst-official-cvs-rev): Correct version string.
1493
1494 2012-10-07 Glenn Morris <rgm@gnu.org>
1495
1496 * mail/rmailmm.el (rmail-mime-process-multipart):
1497 Do not confuse a multipart message with an epilogue
1498 with a "truncated" one; fixes 2011-06-27 change. (Bug#10101)
1499
1500 2012-10-07 Fabián Ezequiel Gallina <fgallina@cuca>
1501
1502 Fix shell output retrieval and comint-prompt-regexp init.
1503 * progmodes/python.el (inferior-python-mode):
1504 (python-shell-make-comint): Fix initialization of
1505 comint-prompt-regexp from copied file local variables.
1506 (python-shell-fetched-lines): Remove var.
1507 (python-shell-output-filter-in-progress): Rename from
1508 python-shell-fetch-lines-in-progress.
1509 (python-shell-output-filter-buffer): Rename from
1510 python-shell-fetch-lines-string.
1511 (python-shell-fetch-lines-filter): Delete function.
1512 (python-shell-output-filter): New function.
1513 (python-shell-send-string-no-output): Use them.
1514
1515 2012-10-07 Glenn Morris <rgm@gnu.org>
1516
1517 * hi-lock.el (hi-lock-process-phrase):
1518 Try to make it less fragile. (Bug#7161)
1519
1520 * hi-lock.el (hi-lock-face-phrase-buffer): Doc fix.
1521
1522 2012-10-06 Glenn Morris <rgm@gnu.org>
1523
1524 * ehelp.el (electric-help-mode): Use help-mode rather than
1525 non-existent mode `help'.
1526 (electric-help-map): Use button-buffer-map. (Bug#10917)
1527
1528 * textmodes/reftex-vars.el (reftex-create-bibtex-header)
1529 (reftex-create-bibtex-footer): Fix custom types.
1530
1531 * progmodes/sh-script.el (sh-indent-after-continuation):
1532 Add explicit :group.
1533
1534 * textmodes/rst.el (rst-preferred-decorations)
1535 (rst-shift-basic-offset): Clarify obsolescence versions.
1536
1537 * profiler.el (profiler): Add missing group :version tag.
1538 * avoid.el (mouse-avoidance-banish-position):
1539 * proced.el (proced-renice-command):
1540 * calc/calc.el (calc-ensure-consistent-units):
1541 * calendar/icalendar.el (icalendar-import-format-uid):
1542 * net/tramp.el (tramp-save-ad-hoc-proxies):
1543 * progmodes/bug-reference.el (bug-reference-bug-regexp):
1544 * progmodes/flymake.el (flymake-error-bitmap)
1545 (flymake-warning-bitmap, flymake-fringe-indicator-position):
1546 * progmodes/sh-script.el (sh-indent-after-continuation):
1547 * progmodes/verilog-mode.el (verilog-auto-template-warn-unused)
1548 (verilog-before-save-font-hook, verilog-after-save-font-hook):
1549 * progmodes/vhdl-mode.el (vhdl-makefile-default-targets)
1550 (vhdl-array-index-record-field-in-sensitivity-list)
1551 (vhdl-indent-comment-like-next-code-line):
1552 * textmodes/reftex-vars.el (reftex-ref-style-alist)
1553 (reftex-ref-macro-prompt, reftex-ref-style-default-list)
1554 (reftex-cite-key-separator, reftex-create-bibtex-header)
1555 (reftex-create-bibtex-footer):
1556 * textmodes/rst.el (rst-new-adornment-down, rst-indent-field)
1557 (rst-indent-literal-normal, rst-indent-literal-minimized)
1558 (rst-indent-comment): Add missing custom :version tags.
1559
1560 * calendar/timeclock.el (timeclock-modeline-display):
1561 Add missing obsolete alias for renamed user option.
1562
1563 * strokes.el (strokes-modeline-string):
1564 * emulation/crisp.el (crisp-mode-modeline-string):
1565 * eshell/esh-mode.el (eshell-status-in-modeline):
1566 Aliases to defcustoms must come before the defcustom.
1567
1568 * calendar/cal-tex.el (cal-tex-diary, cal-tex-cursor-week)
1569 (cal-tex-cursor-week2, cal-tex-cursor-week-iso)
1570 (cal-tex-cursor-week-monday): Doc fixes.
1571 (cal-tex-cursor-week2-summary): Doc fix.
1572 Rename from cal-tex-cursor-week-at-a-glance.
1573
1574 * calendar/cal-menu.el (cal-menu-context-mouse-menu):
1575 Tweak week descriptions. Add cal-tex-cursor-week2-summary.
1576
1577 * calendar/calendar.el (calendar-mode-map):
1578 Add cal-tex-cursor-week2-summary.
1579
1580 2012-10-06 Stefan Monnier <monnier@iro.umontreal.ca>
1581
1582 * emacs-lisp/cl-macs.el (cl-defstruct): Improve docstring.
1583
1584 * subr.el (read-passwd-map): New var.
1585 (read-passwd): Use `read-string' again.
1586 * minibuffer.el (delete-minibuffer-contents): Make it interactive.
1587
1588 2012-10-06 Jambunathan K <kjambunathan@gmail.com>
1589
1590 * register.el (append-to-register, prepend-to-register):
1591 Deactivate mark, as does `copy-to-register' (bug#12389).
1592
1593 2012-10-06 Chong Yidong <cyd@gnu.org>
1594
1595 * files.el (auto-mode-alist): Add .by and .wy (Semantic grammars).
1596
1597 2012-10-06 Ikumi Keita <ikumi@ikumi.que.jp> (tiny change)
1598
1599 * international/characters.el: Fix simple mistake ((car chars) ->
1600 elt), delete duplicated code.
1601
1602 2012-10-06 Glenn Morris <rgm@gnu.org>
1603
1604 * subr.el (read-passwd): Allow C-u to erase entry. (Bug#12570)
1605
1606 2012-10-06 Julian Scheid <julians37@gmail.com> (tiny change)
1607
1608 * color.el (color-hsl-to-rgb): Fix incorrect results for
1609 small and large hue values. (Bug#12559)
1610
1611 2012-10-05 Fabián Ezequiel Gallina <fgallina@cuca>
1612
1613 Enhancements to docstring formatting when filling paragraphs.
1614 * progmodes/python.el (python-fill-docstring-style): Rename from
1615 python-fill-string-style. Added new style.
1616 (python-fill-string): Use new style. Better checks for
1617 docstrings.
1618
1619 2012-10-05 Glenn Morris <rgm@gnu.org>
1620
1621 * net/newst-treeview.el (newsticker-group-move-feed): Doc fix.
1622
1623 * color.el (color-name-to-rgb, color-rgb-to-hex)
1624 (color-hue-to-rgb, color-hsl-to-rgb, color-rgb-to-hsv)
1625 (color-rgb-to-hsl, color-srgb-to-xyz, color-saturate-hsl)
1626 (color-desaturate-hsl, color-desaturate-name, color-lighten-hsl)
1627 (color-lighten-name, color-darken-hsl, color-darken-name): Doc fixes.
1628
1629 * emacs-lisp/timer.el (with-timeout): Add missing progn. (Bug#12577)
1630
1631 2012-10-05 Juanma Barranquero <lekktu@gmail.com>
1632
1633 * ido.el (ido-directory-too-big-p): Pass dir through file-truename
1634 to get the correct size across symlinks.
1635
1636 * ido.el (ido-buffer-disable-smart-matches): Fix typo in docstring.
1637
1638 2012-10-04 Juri Linkov <juri@jurta.org>
1639
1640 * replace.el (query-replace-interactive): Declare obsolete.
1641 (query-replace-read-from): Add the last incremental search string
1642 to the list of default values accessible via M-n.
1643 (map-query-replace-regexp): Use `read-regexp'.
1644 (query-replace, query-replace-regexp, query-replace-regexp-eval)
1645 (map-query-replace-regexp, replace-string, replace-regexp):
1646 Fix docstrings to replace mentions of `query-replace-interactive'
1647 with alternatives. (Bug#12526)
1648
1649 2012-10-04 Juri Linkov <juri@jurta.org>
1650
1651 * dired.el (dired-shrink-to-fit): Declare obsolete. (Bug#1806)
1652 (dired-pop-to-buffer): Declare obsolete.
1653 (dired-mark-pop-up): Doc fix.
1654
1655 2012-10-04 Fabián Ezequiel Gallina <fgallina@cuca>
1656
1657 Allow user to set docstring style for fill-paragraph.
1658 * progmodes/python.el
1659 (python-fill-comment-function, python-fill-string-function)
1660 (python-fill-decorator-function, python-fill-paren-function):
1661 Remove :safe for defcustoms.
1662 (python-fill-string-style): New defcustom
1663 (python-fill-paragraph-function): Enhance context detection.
1664 (python-fill-string): Honor python-fill-string-style settings.
1665
1666 2012-10-04 Martin Rudalics <rudalics@gmx.at>
1667
1668 * emacs-lisp/edebug.el (edebug-pop-to-buffer): Select window
1669 after setting its buffer (Bug#10805).
1670
1671 2012-10-03 Fabián Ezequiel Gallina <fgallina@cuca>
1672
1673 Fix cornercase for string syntax.
1674 * progmodes/python.el (python-syntax-propertize-function):
1675 Simplify and enhance the regexp for unescaped quotes. Now it also
1676 matches quotes in weird situations like the single quote in
1677 "something\"'".
1678 (python-syntax-stringify): Simplify num-quotes detecting code.
1679
1680 2012-10-03 Glenn Morris <rgm@gnu.org>
1681
1682 * help-macro.el (three-step-help):
1683 Revert 2012-09-29 change. (Bug#12567)
1684
1685 2012-10-03 Martin Rudalics <rudalics@gmx.at>
1686
1687 * menu-bar.el (kill-this-buffer): Don't do anything when
1688 `menu-frame' is not alive or visible (Bug#8184).
1689
1690 * emacs-lisp/debug.el (debug): When quitting the debugger window
1691 restore current buffer (Bug#12502).
1692
1693 2012-10-02 Chong Yidong <cyd@gnu.org>
1694
1695 * progmodes/hideif.el (hif-lookup, hif-defined):
1696 Handle semantic-c-takeover-hideif.
1697
1698 2012-10-02 Paul Eggert <eggert@cs.ucla.edu>
1699
1700 Change sampling interval units from ms to ns.
1701 * profiler.el (profiler-sampling-interval): Change units
1702 from ms to ns, multiplying the default by 1000000 so that
1703 it remains 1 ms.
1704 (profiler-report-cpu-line-format): Give enough room for
1705 the maximum counters on 64-bit hosts.
1706 (profiler-report-render-calltree-1): Call them "CPU samples",
1707 not "Time (ms)", since they are not milliseconds now (and
1708 never really were).
1709
1710 2012-10-02 Sergio Durigan Junior <sergiodj@riseup.net> (tiny change)
1711
1712 * net/eudcb-bbdb.el (eudc-bbdb-format-record-as-result):
1713 Fix querying BBDB for entries without a last name (Bug#11580).
1714
1715 2012-10-02 Chong Yidong <cyd@gnu.org>
1716
1717 * emacs-lisp/eieio.el: Restore Version header.
1718
1719 2012-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
1720
1721 * vc/diff-mode.el (diff--auto-refine-data): New var.
1722 (diff-hunk): Use it to delay refinement.
1723 (diff-mode): Remove overlays when we turn off font-lock.
1724
1725 * textmodes/table.el: Use lexical-binding, dolist, define-minor-mode.
1726 (table-initialize-table-fixed-width-mode)
1727 (table-set-table-fixed-width-mode): Remove functions.
1728 (table-command-list): Move initialization into declaration.
1729 (table--tweak-menu-for-xemacs): Move defun outside mapcar.
1730 (table-with-cache-buffer): Use `declare'.
1731 (table-span-cell): Simplify via CSE.
1732 (table-fixed-width-mode): Use define-minor-mode.
1733 (table-call-interactively, table-funcall, table-apply): Remove.
1734 (table-function): New function, to replace them.
1735
1736 * bookmark.el (bookmark-search-pattern): Remove var.
1737 (bookmark-read-search-input): Remove function.
1738 (bookmark-bmenu-search): Reimplement using a minibuffer.
1739
1740 * faces.el (modeline): Remove obsolete face name.
1741
1742 * vc/add-log.el (add-log-buffer-file-name-function): Demote to defvar
1743 and give a non-nil default value.
1744 (add-change-log-entry): Simplify accordingly.
1745
1746 2012-10-01 Dmitry Gutov <dgutov@yandex.ru>
1747
1748 * vc/vc-git.el (vc-git-log-edit-toggle-signoff): New function.
1749 (vc-git-log-edit-toggle-amend): New function.
1750 (vc-git-log-edit-toggle-signoff): New function.
1751 (vc-git-log-edit-mode): New major mode.
1752 (vc-git-log-edit-mode-map): Keymap for it.
1753 (vc-git-checkin): Handle "Amend" and "Sign-Off" headers.
1754
1755 * vc/log-edit.el (log-edit-font-lock-keywords): Allow hyphens in
1756 header names.
1757 (log-edit-toggle-header): New function.
1758 (log-edit-extract-headers): Accept function values in HEADERS alist.
1759
1760 2012-10-01 David Engster <deng@randomsample.de>
1761
1762 * emacs-lisp/eieio-opt.el (eieio-describe-class): Add filename
1763 from symbol property and change message to be more consistent with
1764 Emacs proper.
1765 (eieio-describe-generic): Add filename for each implementation.
1766 Fix indices for generic and normal methods.
1767 (eieio-method-def, eieio-class-def): New buttons.
1768 (eieio-help-find-method-definition)
1769 (eieio-help-find-class-definition): New functions.
1770 (eieio-help-mode-augmentation-maybee): Add buttons to filenames of
1771 class, constructor and method definitions.
1772
1773 * emacs-lisp/eieio.el (eieiomt-add, eieio-defclass): Save file
1774 information in symbol property.
1775 (scoped-class): Remove.
1776 (eieio-slot-name-index, call-next-method): Check if it is bound.
1777
1778 2012-10-01 Leo P. White <lpw25@cam.ac.uk>
1779
1780 * emacs-lisp/eieio-custom.el (eieio-custom-mode-map): New option.
1781 (eieio-custom-mode): New major mode.
1782 (eieio-customize-object): Use it.
1783
1784 2012-10-01 Eric Ludlam <zappo@gnu.org>
1785
1786 * emacs-lisp/eieio-base.el (eieio-persistent-read): New input args
1787 specifying the expected class, and whether subclassing is allowed.
1788 (eieio-persistent-convert-list-to-object):
1789 (eieio-persistent-validate/fix-slot-value)
1790 (eieio-persistent-slot-type-is-class-p): New functions.
1791 (eieio-named::slot-missing): Doc fix.
1792
1793 * emacs-lisp/eieio-datadebug.el (data-debug/eieio-insert-slots):
1794 Stop using unused publd variable.
1795
1796 * emacs-lisp/eieio-speedbar.el (eieio-speedbar-handle-click):
1797 (eieio-speedbar-description, eieio-speedbar-derive-line-path)
1798 (eieio-speedbar-object-buttonname, eieio-speedbar-make-tag-line)
1799 (eieio-speedbar-handle-click): Do not specify a class for the
1800 method. Fixes method invocation order problems with EDE.
1801
1802 2012-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
1803
1804 * emacs-lisp/bytecomp.el (byte-compiler-abbreviate-file): New function.
1805 (byte-compile-warning-prefix, byte-compile-file): Use it (bug#12508).
1806
1807 2012-10-01 Karl Fogel <kfogel@red-bean.com>
1808
1809 * bookmark.el (bookmark-version-control): Give tags in the
1810 :type choices (Bug#12309), and improve doc string.
1811 (bookmark-write-file): Bind `print-circle' to `t' to allow
1812 circular custom bookmark types. (Bug#12503)
1813
1814 2012-10-01 Paul Eggert <eggert@cs.ucla.edu>
1815
1816 Revert the FOLLOW-SYMLINKS change for file-attributes.
1817 * files.el (remote-file-name-inhibit-cache, after-find-file):
1818 * time.el (display-time-file-nonempty-p): Undo last change.
1819
1820 * profiler.el (profiler-sampling-interval): Change default back to 1.
1821 See Stefan Monnier in
1822 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00863.html>.
1823
1824 2012-10-01 Fabián Ezequiel Gallina <fgallina@cuca>
1825
1826 Shell output catching a la gud-gdb.
1827 * progmodes/python.el (python-shell-fetch-lines-in-progress)
1828 (python-shell-fetch-lines-string, python-shell-fetched-lines):
1829 New Vars.
1830 (python-shell-fetch-lines-filter): New function.
1831 (python-shell-send-string-no-output): Use them.
1832
1833 2012-09-30 Tomohiro Matsuyama <tomo@cx4a.org>
1834
1835 * profiler.el (profiler-sampling-interval): Rename from
1836 profiler-sample-interval.
1837 (profiler-sampling-interval): Default to 10.
1838 (profiler-find-profile): New command (was profiler-find-log).
1839 (profiler-find-profile-other-window): New command.
1840 (profiler-find-profile-other-frame): New command.
1841 (profiler-profile): Introduce API-level data structure.
1842
1843 2012-09-30 Paul Eggert <eggert@cs.ucla.edu>
1844
1845 file-attributes has a new optional arg FOLLOW-SYMLINKS.
1846 * files.el (remote-file-name-inhibit-cache):
1847 * time.el (display-time-file-nonempty-p): Use it.
1848 * files.el (after-find-file): Don't chase links before calling
1849 file-exists-p, as file-exists-p already does the right thing.
1850
1851 2012-09-30 Ralf Angeli <angeli@caeruleus.net>
1852
1853 Merge from standalone RefTeX repository.
1854
1855 The following ChangeLog entries are shortened versions of the
1856 original ones with file paths adapted. A not so strongly edited
1857 version of the original ChangeLog can be found in the commit log.
1858
1859 * textmodes/reftex-auc.el: Move `provide' call to bottom of file.
1860 (reftex-arg-cite): Use `reftex-cite-key-separator'.
1861 Correctly handle new value type returned by `reftex-citation'.
1862
1863 * textmodes/reftex-cite.el (reftex-create-bibtex-file): Make sure
1864 that entries with whitespace at various places are found.
1865 Doc fix. Include entries that are cross-referenced from cited entries.
1866 Include @String definitions in the resulting bib file. Add header
1867 and footer defined in `reftex-create-bibtex-header' and
1868 `reftex-create-bibtex-footer'.
1869 (reftex-do-citation): Make it possible again to insert
1870 non-existent entries. Save match data when asking for optional
1871 arguments. Return all keys, not just the first one.
1872 (reftex-all-used-citation-keys): Fix regexp to correctly extract
1873 all citations in the same line.
1874 (reftex-parse-bibtex-entry): Accept additional optional argument
1875 `raw' and keep quotes or braces if it is non-nil. Match fields
1876 containing hyphens besides word constituents.
1877 (reftex-get-string-refs): New function.
1878 (reftex-extract-bib-entries): Check if BibTeX file changed on disk
1879 and ask if it should be reread in case it did.
1880 (reftex-pop-to-bibtex-entry)
1881 (reftex-extract-bib-entries-from-thebibliography): Match \bibitem
1882 entries with spaces or tabs in front of arguments.
1883 (reftex-pop-to-bibtex-entry, reftex-extract-bib-entries)
1884 (reftex-parse-bibtex-entry, reftex-create-bibtex-file):
1885 Match entries containing numbers and symbol constituents.
1886 (reftex-do-citation, reftex-figure-out-cite-format):
1887 Use `reftex-cite-key-separator'.
1888
1889 * textmodes/reftex-dcr.el: Move provide statement to end of file.
1890 (reftex-mouse-view-crossref): Explain why point is set.
1891
1892 * textmodes/reftex-global.el: Whitespace changes.
1893
1894 * textmodes/reftex-index.el: Move provide statement to end of
1895 file.
1896 (reftex-index-selection-or-word): Use `reftex-region-active-p'.
1897 (reftex-index-visit-phrases-buffer): Set marker when visiting
1898 buffer. This allows for returning from the phrases file to the
1899 file one was just editing instead of the file where the last
1900 phrases was added from.
1901 (reftex-index-phrases-syntax-table): New variable. Give ?\"
1902 punctuation syntax as it usually is not used as string quote in
1903 TeX-related modes and may occur unmatched. The change also
1904 prevents fontification of quoted content.
1905 (reftex-index-phrases-mode): Use it.
1906
1907 * textmodes/reftex-parse.el (reftex-parse-from-file):
1908 Move backward one char if a `\' was matched after a section macro.
1909 (reftex-parse-from-file): Use beginning of match instead of end as
1910 bound.
1911
1912 * textmodes/reftex-ref.el: Adapt creation of
1913 `reftex-<package>-<macro>' functions to new structure of
1914 `reftex-ref-style-alist'.
1915 (reftex-reference): Use `reftex-ref-style-list' function.
1916 Adapt to new structure of `reftex-ref-style-alist'. Prompt for a
1917 reference macro if `reftex-ref-macro-prompt' is non-nil.
1918 (reftex-reference): Pass refstyle to `reftex-format-special'.
1919 Determine reference macro by looking at
1920 `reftex-ref-style-default-list' and `reftex-ref-style-alist'.
1921 Use only one special format function.
1922 (reftex-varioref-vref, reftex-fancyref-fref)
1923 (reftex-fancyref-Fref): Remove definitions. The functions are now
1924 generated from `reftex-ref-style-alist'.
1925 (reftex-format-vref, reftex-format-Fref, reftex-format-fref):
1926 Remove.
1927 (reftex-format-special): New function.
1928
1929 * textmodes/reftex-sel.el
1930 (reftex-select-cycle-ref-style-internal): Adapt to new structure
1931 of `reftex-ref-style-alist'. Remove code for testing macro type.
1932 (reftex-select-toggle-varioref)
1933 (reftex-select-toggle-fancyref): Remove.
1934 (reftex-select-cycle-ref-style-internal)
1935 (reftex-select-cycle-ref-style-forward)
1936 (reftex-select-cycle-ref-style-backward): New functions.
1937 (reftex-select-label-map): Use `v' and `V' for general cycling
1938 through reference styles. Add `p' for switching between number
1939 and page reference types.
1940
1941 * textmodes/reftex-toc.el (reftex-re-enlarge):
1942 Call `enlarge-window' only if there is something to do because in Emacs
1943 the horizontal version throws an error even if the parameter is 0.
1944
1945 * textmodes/reftex-vars.el (reftex-label-alist): Doc fix.
1946 (reftex-plug-into-AUCTeX): Doc fix.
1947 (reftex-vref-is-default, reftex-fref-is-default): Adapt doc
1948 string. Adapt to new name.
1949 (reftex-ref-style-alist): Change structure so that it is not
1950 possible to use multiple different package names within a style.
1951 Remove the symbols for symbols for macro type distinction.
1952 Add characters for macro selection.
1953 (reftex-ref-macro-prompt, reftex-create-bibtex-header)
1954 (reftex-create-bibtex-footer): New variables.
1955 (reftex-format-ref-function): Mention third argument of special
1956 format function.
1957 (reftex-ref-style-alist, reftex-ref-style-default-list):
1958 New variables.
1959 (reftex-vref-is-default, reftex-fref-is-default): Adapt doc string
1960 to new implementation. Mark as obsolete. Add compatibility code
1961 for honoring the variable values in case they are set.
1962 (reftex-cite-format-builtin, reftex-bibliography-commands):
1963 Add support for ConTeXt.
1964 (reftex-format-ref-function, reftex-format-cite-function):
1965 Fix custom type.
1966 (reftex-cite-key-separator): New variable.
1967
1968 * textmodes/reftex.el (reftex-syntax-table-for-bib)
1969 (reftex-mode): Do not derive `reftex-syntax-table-for-bib' from
1970 `reftex-syntax-table' because parens have to retain their paren
1971 syntax in order for parsing of BibTeX entries like @book(...) to
1972 work.
1973 (reftex-in-comment): Do not error out if `comment-start-skip' is
1974 not set. Deal correctly with escaped comment characters.
1975 (reftex-tie-multifile-symbols): Add doc string.
1976 Initialize `reftex-ref-style-list'.
1977 (reftex-untie-multifile-symbols): Add doc string.
1978 (reftex-add-index-macros): Doc fix.
1979 (reftex-ref-style-activate, reftex-ref-style-toggle)
1980 (reftex-ref-style-list): New functions.
1981 (reftex-mode-menu): Use them. Adapt to new structure of
1982 `reftex-ref-style-alist'.
1983 (reftex-select-with-char): Kill the RefTeX Select buffer when
1984 done.
1985 (reftex-remove-if): New function.
1986 (reftex-erase-all-selection-and-index-buffers)
1987 (reftex-mode-menu): Reference styles are now computed from
1988 `reftex-ref-style-alist'. Fix typo.
1989 (reftex-report-bug): New function.
1990 (reftex-uniquify, reftex-uniquify-by-car): Replace O(n^2)
1991 algorithms with O(n log n). Introduce optional argument SORT (not
1992 yet used).
1993
1994 2012-09-30 Fabián Ezequiel Gallina <fgallina@cuca>
1995
1996 Enhancements for triple-quote string syntax.
1997 * progmodes/python.el (python-syntax-propertize-function):
1998 Match both quote cases in one regexp.
1999 (python-syntax-stringify): Handle matches properly.
2000
2001 2012-09-30 Juri Linkov <juri@jurta.org>
2002
2003 * arc-mode.el (archive-summarize): Let-bind `buffer-file-truename'
2004 to nil around the call to `insert' to prevent
2005 directory time modification by lock_file. (Bug#2295)
2006 * tar-mode.el (tar-summarize-buffer): Idem.
2007
2008 2012-09-30 Juri Linkov <juri@jurta.org>
2009
2010 * facemenu.el (list-colors-sort): Add option "Luminance".
2011 (list-colors-sort-key): Implement it.
2012
2013 * vc/diff-mode.el (diff-refine-removed):
2014 * vc/ediff-init.el (ediff-fine-diff-A):
2015 * vc/smerge-mode.el (smerge-refined-removed):
2016 Change background color "#ffaaaa" to "#ffbbbb". (Bug#10181)
2017
2018 2012-09-30 Jan Djärv <jan.h.d@swipnet.se>
2019
2020 * term/ns-win.el (x-file-dialog): New function.
2021
2022 2012-09-30 Juanma Barranquero <lekktu@gmail.com>
2023
2024 * ido.el (ido-max-directory-size): Default to nil; the current
2025 default is small for POSIX systems, and impractical on Windows 7
2026 now that lstat returns directory sizes for NTFS.
2027
2028 2012-09-30 Martin Rudalics <rudalics@gmx.at>
2029
2030 In buffer display functions handle window-height/window-width
2031 alist entries. Suggested by Juri Linkov as fix for Bug#1806.
2032 * window.el (window--display-buffer): New argument ALIST.
2033 Obey window-height and window-width alist entries.
2034 (window--try-to-split-window): New argument ALIST.
2035 Bind window-combination-limit to t when the window's size shall be
2036 changed and window-combination-limit equals `window-size'.
2037 (display-buffer-in-atom-window)
2038 (display-buffer-in-major-side-window)
2039 (display-buffer-in-side-window, display-buffer-same-window)
2040 (display-buffer-reuse-window, display-buffer-pop-up-frame)
2041 (display-buffer-pop-up-window, display-buffer-below-selected)
2042 (display-buffer-at-bottom, display-buffer-in-previous-window)
2043 (display-buffer-use-some-window): Adjust all callers of
2044 window--display-buffer and window--try-to-split-window.
2045 (fit-frame-to-buffer): New option.
2046 (fit-window-to-buffer): Can resize frames if fit-frame-to-buffer
2047 is non-nil.
2048 (display-buffer-in-major-side-window): Evaluate window-height /
2049 window-width alist entries.
2050
2051 * help.el (temp-buffer-resize-frames)
2052 (temp-buffer-resize-regexps): Remove options.
2053 (temp-buffer-resize-mode): Adjust doc-string.
2054 (resize-temp-buffer-window): Don't consult
2055 temp-buffer-resize-regexps. Use fit-frame-to-buffer instead of
2056 temp-buffer-resize-frames.
2057
2058 * dired.el (dired-mark-pop-up):
2059 Call display-buffer-below-selected with a fit-window-to-buffer alist
2060 entry.
2061
2062 2012-09-30 Chong Yidong <cyd@gnu.org>
2063
2064 * server.el (server-host): Document the security implications.
2065 (server-auth-key): Doc fix.
2066
2067 * startup.el (initial-buffer-choice): Doc fix.
2068
2069 * minibuffer.el (minibuffer-local-filename-syntax): Doc fix.
2070
2071 * simple.el (delete-trailing-whitespace): Avoid an unnecessary
2072 restriction change.
2073
2074 * bindings.el (goto-map): Bind M-g TAB to move-to-column.
2075
2076 * help-fns.el (help-fns--obsolete): Fix last change.
2077
2078 2012-09-30 Stefan Monnier <monnier@iro.umontreal.ca>
2079
2080 * winner.el (winner-mode-map): Obey winner-dont-bind-my-keys here.
2081 (minor-mode-map-alist): Remove redundant code.
2082
2083 * vc/pcvs.el (cvs-cleanup-collection): Keep entries that are currently
2084 visited in a buffer.
2085 (cvs-insert-visited-file): New function.
2086 (find-file-hook): Use it.
2087
2088 * vc/pcvs-info.el (cvs-fileinfo-pp): Don't use non-existent faces.
2089
2090 * vc/log-edit.el (log-edit-font-lock-keywords): Ignore case to
2091 chose face.
2092 (log-edit-empty-buffer-p): Don't require a space after a header.
2093
2094 * vc/ediff-util.el (ediff-diff-at-point): Don't assume point-min==1.
2095
2096 * tutorial.el (help-with-tutorial): Use minibuffer-with-setup-hook.
2097
2098 * textmodes/text-mode.el (paragraph-indent-minor-mode): Make it
2099 a proper minor-mode.
2100
2101 * textmodes/tex-mode.el (tex-mode-map): Don't bind paren keys.
2102
2103 2012-09-29 Glenn Morris <rgm@gnu.org>
2104
2105 * winner.el (winner-mode): Remove variable (let define-minor-mode
2106 handle it).
2107 (winner-dont-bind-my-keys, winner-boring-buffers, winner-mode-hook):
2108 Doc fixes.
2109 (winner-mode-leave-hook): Rename to winner-mode-off-hook.
2110 (winner-mode): Use define-minor-mode.
2111
2112 * vc/vc-sccs.el (vc-sccs-registered): Use the progn trick to get
2113 the full definition in loaddefs, rather than duplicating it.
2114
2115 * help-macro.el (three-step-help): No need to autoload defcustom.
2116
2117 * progmodes/inf-lisp.el (inferior-lisp-filter-regexp)
2118 (inferior-lisp-program, inferior-lisp-load-command)
2119 (inferior-lisp-prompt, inferior-lisp-mode-hook):
2120 No need to autoload defcustoms.
2121
2122 * hippie-exp.el (hippie-expand-try-functions-list)
2123 (hippie-expand-verbose, hippie-expand-dabbrev-skip-space)
2124 (hippie-expand-dabbrev-as-symbol, hippie-expand-no-restriction)
2125 (hippie-expand-max-buffers, hippie-expand-ignore-buffers)
2126 (hippie-expand-only-buffers): No need to autoload defcustoms.
2127 * progmodes/vhdl-mode.el (vhdl-line-expand):
2128 Explicitly load hippie-exp, so it does not get autoloaded
2129 while hippie-expand-try-functions-list is let-bound.
2130
2131 2012-09-28 Glenn Morris <rgm@gnu.org>
2132
2133 * emacs-lisp/cl.el (flet): Fix case of obsolescence message.
2134
2135 * emacs-lisp/bytecomp.el (byte-compile-cl-file-p):
2136 Only "cl.el" counts as cl these days.
2137
2138 2012-09-28 Juri Linkov <juri@jurta.org>
2139
2140 Display archive errors in the echo area instead of inserting
2141 to the file buffer.
2142
2143 * arc-mode.el (archive-extract-by-stdout): Change arg STDERR-FILE
2144 to STDERR-TEST that can be a regexp matching a successful output.
2145 Create a temporary file and redirect stderr to it. Search for
2146 STDERR-TEST in the stderr output and display it in the echo area
2147 if no match is found.
2148 (archive-extract-by-file): New function like
2149 `archive-extract-by-stdout' but extracting archives to files
2150 and looking for successful matches in stdout. Function body is
2151 mostly copied from `archive-rar-extract'.
2152 (archive-rar-extract): Use `archive-extract-by-file'.
2153 (archive-7z-extract): Use `archive-extract-by-stdout'. (Bug#10347)
2154
2155 2012-09-28 Leo Liu <sdl.web@gmail.com>
2156
2157 * pcomplete.el (pcomplete-show-completions):
2158 Use minibuffer-message to make pcomplete usable in minibuffer.
2159
2160 * ido.el (ido-set-matches-1): Fix 2012-09-11 change.
2161
2162 2012-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
2163
2164 * type-break.el: Use lexical-binding.
2165 (type-break-mode): Use define-minor-mode.
2166
2167 * emacs-lisp/pcase.el (pcase--mark-used): New.
2168 (pcase--u1): Use it (bug#12512).
2169
2170 * custom.el (load-theme): Set buffer-file-name so the load is recorded
2171 in load-history with the right file name.
2172
2173 2012-09-28 Tassilo Horn <tsdh@gnu.org>
2174
2175 * doc-view.el (doc-view-current-cache-doc-pdf): New function.
2176 (doc-view-doc->txt, doc-view-convert-current-doc): Use it.
2177 (doc-view-get-bounding-box): Make bounding box slicing work for
2178 ODF and DVI documents.
2179
2180 2012-09-28 Glenn Morris <rgm@gnu.org>
2181
2182 * type-break.el (type-break-mode, type-break-interval)
2183 (type-break-good-rest-interval, type-break-keystroke-threshold):
2184 No need to autoload.
2185 (type-break-good-rest-interval, type-break-keystroke-threshold):
2186 Add :set-after.
2187
2188 2012-09-28 Chong Yidong <cyd@gnu.org>
2189
2190 * progmodes/verilog-mode.el (verilog-auto-inst-interfaced-ports):
2191 Add :version tag.
2192
2193 2012-09-27 Stefan Monnier <monnier@iro.umontreal.ca>
2194
2195 * json.el (json-encode-char): Codes 127-160 aren't "ASCII printable".
2196
2197 2012-09-27 Glenn Morris <rgm@gnu.org>
2198
2199 * faces.el (x-display-name): Declare (for without-x builds).
2200
2201 * linum.el (linum-format): Don't autoload it. Improve :type.
2202
2203 * progmodes/tcl.el: Don't require outline when compiling.
2204 (outline-regexp, outline-level): Declare.
2205 * textmodes/sgml-mode.el: Don't require outline when compiling.
2206 (outline-regexp, outline-heading-end-regexp, outline-level): Declare.
2207
2208 * term.el (term-ansi-reset):
2209 Try setting term-ansi-face-already-done to nil. (Bug#11785)
2210
2211 * vc/vc.el (vc-next-action): Only gripe about committing read-only
2212 files for RCS and SCCS. (Bug#9781)
2213
2214 2012-09-27 Chong Yidong <cyd@gnu.org>
2215
2216 * progmodes/verilog-mode.el (verilog-mode-release-emacs): Fix last
2217 change; value should be t.
2218
2219 2012-09-27 Stefan Monnier <monnier@iro.umontreal.ca>
2220
2221 * image-mode.el: Use lexical-binding.
2222 (image-mode-winprops): Use t to stand for the window of
2223 a buffer that's not displayed.
2224 * doc-view.el (doc-view-new-window-function): Handle the new
2225 t in winprops.
2226 (doc-view-enlarge): Make it a real nop if the size is not changed.
2227 (doc-view-display): Handle the case where the buffer is not (yet?)
2228 displayed in any window.
2229 (doc-view-saved-settings): New var.
2230 (doc-view-mode): Use it.
2231 (doc-view-fallback-mode): Set it.
2232
2233 * minibuf-eldef.el: Make it possible to replace (default ...) with [...].
2234 Set lexical-binding.
2235 (minibuffer-eldef-shorten-default): New var.
2236 (minibuffer-default-in-prompt-regexps): Use it for new default.
2237 (minibuf-eldef-setup-minibuffer): Add replacement functionality.
2238
2239 2012-09-26 Juanma Barranquero <lekktu@gmail.com>
2240
2241 * international/uni-bidi.el:
2242 * international/uni-category.el:
2243 * international/uni-name.el:
2244 * international/uni-numeric.el: Regenerate.
2245
2246 2012-09-26 Tomohiro Matsuyama <tomo@cx4a.org>
2247 Stefan Monnier <monnier@iro.umontreal.ca>
2248
2249 * profiler.el: New file.
2250
2251 2012-09-26 Stefan Monnier <monnier@iro.umontreal.ca>
2252
2253 * emacs-lisp/testcover.el (testcover-after): Add gv-expander.
2254 (testcover-reinstrument): Simplify with CSE.
2255
2256 2012-09-26 Juanma Barranquero <lekktu@gmail.com>
2257
2258 * window.el (temp-buffer-window-setup): Fix typo in docstring.
2259
2260 2012-09-25 Wilson Snyder <wsnyder@wsnyder.org>
2261
2262 * verilog-mode.el (verilog-auto-ascii-enum, verilog-auto-inout)
2263 (verilog-auto-input, verilog-auto-insert-lisp)
2264 (verilog-auto-output, verilog-auto-output-every, verilog-auto-reg)
2265 (verilog-auto-reg-input, verilog-auto-tieoff, verilog-auto-undef)
2266 (verilog-auto-unused, verilog-auto-wire)
2267 (verilog-forward-or-insert-line): Fix AUTOs with no trailing
2268 newline. Reported by Andrew Jones.
2269 (verilog-auto-inst) Support expanding $clog2 in AUTOINST.
2270 Reported by Brad Dobbie.
2271 (verilog-batch-delete-trailing-whitespace):
2272 Create verilog-batch-delete-trailing-whitespace.
2273 Reported by Brad Dobbie.
2274 (verilog-auto-inout-param): Support AUTOINOUTPARAM for copying
2275 parameters from another module. Reported by Dan Katz.
2276 (verilog-auto, verilog-auto-assign-modport)
2277 (verilog-auto-inout-modport): Add AUTOASSIGNMODPORT and
2278 AUTOINOUTMODPORT for UVM interface module shell generation.
2279 Reported by Brad Dobbie.
2280 (verilog-auto-inst-interfaced-ports): Make default nil, as more
2281 standard behavior.
2282 (verilog-auto): Fix AUTO parameters with parenthesis arguments.
2283 Reported by Matt Martin.
2284
2285 2012-09-25 Martin Rudalics <rudalics@gmx.at>
2286
2287 * window.el (window--resize-child-windows): When resizing child
2288 windows proportionally, process them in reverse order to
2289 preserve the "when splitting a window the new one gets the odd
2290 line" behavior.
2291 (window--resize-root-window-vertically): When resizing the
2292 minibuffer window try to affect only windows at the bottom of the
2293 frame. (Bug#12419)
2294
2295 2012-09-25 Chong Yidong <cyd@gnu.org>
2296
2297 * subr.el (declare): Doc fix.
2298
2299 * help-fns.el (help-fns--obsolete): Handle macros properly.
2300
2301 2012-09-25 Chong Yidong <cyd@gnu.org>
2302
2303 * bookmark.el (bookmark-jump-noselect): Use a declare form to mark
2304 this function obsolete.
2305
2306 * calendar/cal-x.el (calendar-two-frame-setup)
2307 (calendar-only-one-frame-setup, calendar-one-frame-setup):
2308 * calendar/calendar.el (american-calendar, european-calendar)
2309 (calendar-for-loop):
2310 * comint.el (comint-dynamic-simple-complete)
2311 (comint-dynamic-complete-as-filename, comint-unquote-filename):
2312 * desktop.el (desktop-load-default):
2313 * dired-x.el (dired-omit-here-always)
2314 (dired-hack-local-variables, dired-default-directory):
2315 * emacs-lisp/derived.el (derived-mode-class):
2316 * emacs-lisp/timer.el (timer-set-time-with-usecs):
2317 * emacs-lock.el (toggle-emacs-lock):
2318 * epa.el (epa-display-verify-result):
2319 * epg.el (epg-sign-keys, epg-start-sign-keys)
2320 (epg-passphrase-callback-function):
2321 * eshell/esh-util.el (eshell-for):
2322 * eshell/eshell.el (eshell-remove-from-window-buffer-names)
2323 (eshell-add-to-window-buffer-names):
2324 * files.el (locate-file-completion):
2325 * imenu.el (imenu-example--create-c-index)
2326 (imenu-example--create-lisp-index)
2327 (imenu-example--lisp-extract-index-name)
2328 (imenu-example--name-and-position):
2329 * international/mule-cmds.el (princ-list):
2330 * international/mule-diag.el (decode-codepage-char):
2331 * international/mule-util.el (detect-coding-with-priority):
2332 * iswitchb.el (iswitchb-read-buffer):
2333 * mail/mailalias.el (mail-complete):
2334 * mail/sendmail.el (mail-sent-via):
2335 * mouse.el (mouse-popup-menubar-stuff, mouse-popup-menubar)
2336 (mouse-major-mode-menu):
2337 * password-cache.el (password-read-and-add):
2338 * pcomplete.el (pcomplete-parse-comint-arguments):
2339 * progmodes/sh-script.el (sh-maybe-here-document):
2340 * replace.el (query-replace-regexp-eval):
2341 * savehist.el (savehist-load):
2342 * simple.el (choose-completion-delete-max-match):
2343 * term.el (term-dynamic-simple-complete):
2344 * vc/ediff-init.el (ediff-check-version):
2345 * vc/ediff-wind.el (ediff-choose-window-setup-function-automatically):
2346 * vc/vc.el (vc-diff-switches-list):
2347 * view.el (view-return-to-alist-update): Likewise.
2348
2349 * subr.el (eval-next-after-load, makehash, insert-string)
2350 (assoc-ignore-representation, assoc-ignore-case): Use declare to
2351 mark obsolete.
2352 (mode-line-inverse-video): Variable deleted.
2353
2354 * international/mule-util.el (string-to-sequence): Remove.
2355
2356 * calendar/calendar.el (calendar-version):
2357 * calendar/icalendar.el (icalendar-extract-ical-from-buffer)
2358 (icalendar-convert-diary-to-ical):
2359 * cus-edit.el (custom-mode):
2360 * ansi-color.el (ansi-color-unfontify-region):
2361 * international/latin1-disp.el (latin1-char-displayable-p):
2362 * progmodes/cwarn.el (turn-on-cwarn-mode):
2363 * progmodes/which-func.el (which-func-update-1):
2364 Use define-obsolete-function-alias.
2365
2366 * net/newst-backend.el (newsticker-cache-filename):
2367 * net/newst-treeview.el (newsticker-groups-filename):
2368 Fix incorrect obsolescence declaration.
2369
2370 * allout.el (allout-passphrase-hint-string): Likewise.
2371 (allout-init): Use a declare form to mark obsolete.
2372
2373 * emacs-lisp/byte-run.el (make-obsolete): Doc fix; emphasize that
2374 this applies to functions.
2375
2376 * iswitchb.el (iswitchb-read-buffer): Move code of
2377 iswitchb-define-mode-map here, and delete that obsolete function.
2378
2379 * net/snmp-mode.el (snmp-font-lock-keywords-3): Don't use obsolete
2380 font-lock-reference-face.
2381
2382 2012-09-25 Glenn Morris <rgm@gnu.org>
2383
2384 * buff-menu.el (Buffer-menu-name-width, Buffer-menu-size-width):
2385 Doc fixes.
2386
2387 * eshell/em-term.el (eshell-term-name):
2388 Default to term-term-name. (Bug#12485)
2389
2390 2012-09-24 Fabián Ezequiel Gallina <fgallina@cuca>
2391
2392 * progmodes/python.el (python-shell-send-buffer): Better handling
2393 of "if __name__ == '__main__':" conditionals when sending the buffer.
2394
2395 2012-09-24 Glenn Morris <rgm@gnu.org>
2396
2397 * eshell/esh-cmd.el (eshell-find-alias-function):
2398 Tighten up file-name regexp. (Bug#12499)
2399
2400 2012-09-24 Fabián Ezequiel Gallina <fgallina@cuca>
2401
2402 Enhancements for triple-quote string syntax.
2403 * progmodes/python.el (python-quote-syntax): Remove.
2404 (python-syntax-propertize-function): New value.
2405 (python-syntax-count-quotes, python-syntax-stringify):
2406 New functions.
2407
2408 2012-09-24 Chong Yidong <cyd@gnu.org>
2409
2410 * mail/supercite.el (sc-version): Remove obsolete function.
2411 (sc-describe): Don't mark as obsolete, since it is bound.
2412 (sc-submit-bug-report): Remove.
2413
2414 * vc/log-edit.el (cvs-changelog-full-paragraphs)
2415 (cvs-commit-buffer-require-final-newline): Remove.
2416 (log-edit-require-final-newline)
2417 (log-edit-changelog-full-paragraphs): Default to t.
2418
2419 * vc/pcvs-defs.el (cvs-diff-buffer-name, cvs-diff-ignore-marks)
2420 * vc/vc-hooks.el (vc-ignore-vc-files, vc-master-templates)
2421 * vc/vc.el (vc-checkout-carefully): Likewise.
2422
2423 * vc/emerge.el (emerge-mode): Make it an obsolete alias.
2424 (emerge-version): Remove.
2425
2426 * progmodes/compile.el (compile-internal): Remove.
2427 (compilation-parse-errors-function): Fix typo.
2428
2429 * international/mule.el (set-char-table-default): Remove.
2430 (set-coding-priority, make-coding-system, generic-char-p)
2431 (charset-list, charset-bytes, charset-id): Use declare to mark
2432 functions as obsolete.
2433
2434 * vc/pcvs-defs.el (cvs-buffer-name-alist)
2435 (cvs-invert-ignore-marks): Remove references to obsolete vars.
2436 * vc/vc-hooks.el (vc-default-registered): Don't use
2437 vc-master-templates.
2438
2439 * font-lock.el (font-lock-reference-face):
2440 Use define-obsolete-variable-alias.
2441
2442 * generic-x.el (rul-generic-mode): Use font-lock-constant-face.
2443 * calendar/calendar.el (calendar-font-lock-keywords):
2444 * calendar/diary-lib.el (diary-font-lock-keywords)
2445 (diary-fancy-font-lock-keywords):
2446 * textmodes/reftex-sel.el (reftex-insert-docstruct):
2447 * textmodes/reftex-index.el (reftex-insert-index):
2448 * textmodes/reftex-cite.el (reftex-format-bib-entry):
2449 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
2450 * progmodes/ps-mode.el (ps-mode-font-lock-keywords-1):
2451 * progmodes/prolog.el (prolog-font-lock-keywords):
2452 * progmodes/idlwave.el (idlwave-idl-keywords):
2453 * progmodes/ada-mode.el (ada-font-lock-keywords):
2454 * net/snmp-mode.el (snmp-font-lock-keywords-3): Likewise.
2455
2456 2012-09-24 Glenn Morris <rgm@gnu.org>
2457
2458 * mail/emacsbug.el (report-emacs-bug): Include `lsb_release -d'.
2459
2460 2012-09-23 Fabián Ezequiel Gallina <fgallina@cuca>
2461
2462 * progmodes/python.el (python-indent-line): More consistent cursor
2463 movement behavior.
2464
2465 2012-09-23 Stefan Merten <smerten@oekonux.de>
2466
2467 * textmodes/rst.el: Fix compiler warning.
2468
2469 2012-09-23 Roland Winkler <winkler@gnu.org>
2470
2471 * textmodes/bibtex.el (bibtex-autokey-transcriptions):
2472 Transcribe also LaTeX hyphenation.
2473 (bibtex-reformat): Bug fix. Do not quote twice the elements of
2474 bibtex-reformat-previous-options.
2475
2476 2012-09-23 Roland Winkler <winkler@gnu.org>
2477
2478 * proced.el (proced-renice-command): New variable.
2479 (proced-marked-processes): New function.
2480 (proced-with-processes-buffer): New macro.
2481 (proced-send-signal): Use them.
2482 (proced-renice): New command bound to r.
2483
2484 2012-09-23 Roland Winkler <winkler@gnu.org>
2485
2486 * ibuf-ext.el (ibuffer-switch-to-saved-filter-groups): If list
2487 ibuffer-saved-filter-groups has one element, shortcut the call of
2488 completing-read. (Bug#12331)
2489
2490 2012-09-23 Chong Yidong <cyd@gnu.org>
2491
2492 * bindings.el (mode-line-toggle-read-only):
2493 * bs.el (bs-toggle-readonly):
2494 * buff-menu.el (Buffer-menu-toggle-read-only):
2495 * dired.el (dired-toggle-read-only):
2496 * ibuffer.el (ibuffer-do-toggle-read-only): Use read-only-mode.
2497
2498 2012-09-23 Chong Yidong <cyd@gnu.org>
2499
2500 * image.el (image-type-available-p): Adapt to init-image-library
2501 argument changes.
2502
2503 2012-09-22 Juri Linkov <juri@jurta.org>
2504
2505 * dired.el (dired-mode-map): Add [remap read-only-mode] for
2506 `dired-toggle-read-only'. (Bug#12462)
2507
2508 2012-09-22 Martin Rudalics <rudalics@gmx.at>
2509
2510 * subr.el (temp-output-buffer-show): New function.
2511 (with-output-to-temp-buffer): Call temp-output-buffer-show
2512 instead of internal-temp-output-buffer-show.
2513
2514 2012-09-22 Chong Yidong <cyd@gnu.org>
2515
2516 * files.el (ctl-x-map): Bind C-x C-q to read-only-mode
2517 (Bug#12462).
2518
2519 * repeat.el (repeat): Doc fix (Bug#12348).
2520
2521 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix
2522 (Bug#10909).
2523
2524 * simple.el (shell-command-on-region): Doc fix.
2525 (read-only-mode): Doc fix.
2526
2527 2012-09-22 Eli Zaretskii <eliz@gnu.org>
2528
2529 * emacs-lisp/timer.el (run-with-idle-timer)
2530 (timer-activate-when-idle): Warn against reinvoking an idle timer
2531 from within its own timer action. (Bug#12447)
2532
2533 2012-09-22 Martin Rudalics <rudalics@gmx.at>
2534
2535 * cus-start.el (window-combination-limit): Add new optional
2536 values.
2537 * window.el (temp-buffer-window-show)
2538 (window--try-to-split-window): Handle new values of
2539 window-combination-limit (Bug#1806).
2540 (split-window): Test window-combination-limit for t instead of
2541 non-nil.
2542 (display-buffer-at-bottom): New buffer display action function.
2543 * help.el (temp-buffer-resize-regexps): New option.
2544 (temp-buffer-resize-mode): Rewrite doc-string.
2545 (resize-temp-buffer-window): Obey temp-buffer-resize-regexps.
2546 Don't resize reused window. Suggested by Glenn Morris.
2547
2548 2012-09-22 Stefan Merten <smerten@oekonux.de>
2549
2550 * textmodes/rst.el: Revamp section title faces.
2551 (rst-official-version)
2552 (rst-package-emacs-version-alist): Sync with official version
2553 V1.4.0.
2554 (rst-faces-defaults, rst-set-level-default)
2555 (rst-level-face-max, rst-level-face-base-color)
2556 (rst-level-face-base-light, rst-level-face-format-light)
2557 (rst-level-face-step-light, rst-define-level-faces): Obsolete.
2558 (rst-adornment-faces-alist): Match new setup.
2559 (rst-level-1, rst-level-2, rst-level-3, rst-level-4)
2560 (rst-level-5, rst-level-6): New faces.
2561
2562 2012-09-22 Chong Yidong <cyd@gnu.org>
2563
2564 * simple.el (undo): Handle indirect buffers (Bug#8207).
2565
2566 2012-09-21 Leo Liu <sdl.web@gmail.com>
2567
2568 IDO: Disable match re-ordering for buffer switching.
2569 * ido.el (ido-buffer-disable-smart-matches): New variable.
2570 (ido-set-matches-1): Use it. (Bug#2042)
2571
2572 2012-09-21 Jose Marino <marinoj@nso.edu> (tiny change)
2573
2574 * progmodes/idlw-shell.el (idlwave-shell-complete-filename):
2575 Fix 2011-05-17 change. (Bug#12418)
2576
2577 2012-09-21 Leo Liu <sdl.web@gmail.com>
2578
2579 * subr.el (ignore-errors): Mention with-demoted-errors in doc-string.
2580
2581 2012-09-21 Glenn Morris <rgm@gnu.org>
2582
2583 * emacs-lisp/shadow.el (load-path-shadows-font-lock-keywords):
2584 Be more robust about locating simple.el.
2585
2586 2012-09-21 Glenn Morris <rgm@gnu.org>
2587
2588 * mail/emacsbug.el (report-emacs-bug): Trap load-path-shadows errors.
2589
2590 2012-09-21 Joel Bion <jpbion@westvi.com> (tiny change)
2591
2592 * pcmpl-gnu.el (pcmpl-gnu-tarfile-regexp): Add tar.xz. (Bug#12382)
2593
2594 2012-09-20 Juri Linkov <juri@jurta.org>
2595
2596 * replace.el (query-replace-read-from): Use `read-regexp' instead
2597 of `read-from-minibuffer' when `regexp-flag' is non-nil.
2598 (occur-read-primary-args): Use `read-regexp' instead of
2599 `read-string'.
2600 (multi-occur-in-matching-buffers): Use `read-regexp' instead of
2601 `read-from-minibuffer'.
2602 * isearch.el (isearch-occur): Use `read-regexp' instead of
2603 `read-string'.
2604 * dired.el (dired-read-regexp): Use `read-regexp' instead of
2605 `read-from-minibuffer'.
2606 * progmodes/grep.el (grep-read-regexp): Use `read-regexp' instead
2607 of `read-string'. (Bug#7567)
2608
2609 * replace.el (read-regexp): Rename DEFAULT-VALUE arg to DEFAULTS
2610 and allow accepting a list of strings prepended to a list of
2611 standard default values. Doc fix. (Bug#12321)
2612
2613 * replace.el (read-regexp): Add HISTORY arg. (Bug#7567)
2614
2615 * replace.el (read-regexp): Don't add ": " when PROMPT already
2616 ends with a colon and space. (Bug#12321)
2617
2618 2012-09-20 Tassilo Horn <tsdh@gnu.org>
2619
2620 * doc-view.el (doc-view-display): Better fix for the cl-assertion
2621 error.
2622
2623 2012-09-20 Stefan Merten <smerten@oekonux.de>
2624
2625 * textmodes/rst.el: Integrate support for `imenu' and `which-function'.
2626 Fixes feature request bug#11711.
2627 (rst-mode): Create `imenu-create-index-function'.
2628 (rst-get-stripped-line): Delete after refactoring.
2629 (rst-section-tree, rst-section-tree-rec)
2630 (rst-section-tree-point): Refactor and document properly.
2631 (rst-imenu-find-adornments-for-position)
2632 (rst-imenu-convert-cell, rst-imenu-create-index):
2633 New function.
2634
2635 2012-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
2636
2637 * emacs-lisp/macroexp.el (macroexp--obsolete-warning): New function.
2638 (macroexp--expand-all): Use it.
2639 (macroexp--funcall-and-return): Remove by folding it into its sole
2640 caller (macroexp--warn-and-return).
2641 * emacs-lisp/bytecomp.el (byte-compile-warn-obsolete):
2642 Use macroexp--obsolete-warning.
2643
2644 * calc/calc.el: Fix last change by removing the whole chunk, since it
2645 was only needed back when Calc was not bundled.
2646
2647 2012-09-20 Martin Rudalics <rudalics@gmx.at>
2648
2649 * emacs-lisp/debug.el (debug): Restore assignment to
2650 debugger-old-buffer removed on 2012-09-08.
2651
2652 2012-09-20 Juri Linkov <juri@jurta.org>
2653
2654 * dired-aux.el (dired-diff): Remove (require 'diff) since
2655 `diff-latest-backup-file' is now autoloaded.
2656
2657 2012-09-20 Chong Yidong <cyd@gnu.org>
2658
2659 * vc/diff.el (diff-latest-backup-file): Autoload.
2660
2661 2012-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
2662
2663 * calc/calc.el: Remove redundant autoload shape check.
2664 (sel-mode): Don't defvar.
2665 (calc-get-stack-element): Add `sel-mode' arg instead.
2666 (calc-top, calc-top-list): Pass it this additional argument.
2667 * calc/calc-store.el (calc-store-map):
2668 * calc/calc-map.el (calc-apply, calc-reduce, calc-map)
2669 (calc-map-equation, calc-outer-product, calc-inner-product):
2670 * calc/calc-aent.el (calc-alg-entry): Don't bind sel-mode.
2671
2672 * emacs-lisp/macroexp.el (macroexp--expand-all): Fix last change.
2673
2674 2012-09-19 Juri Linkov <juri@jurta.org>
2675
2676 * dired-aux.el (dired-diff): Add (require 'diff) because
2677 `diff-latest-backup-file' is not autoloaded.
2678 (dired-do-chxxx, dired-do-chmod): Set `no-error-if-not-filep' arg
2679 of `dired-get-filename' to t to not report error when there is
2680 no default file on the current line.
2681
2682 2012-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
2683
2684 * emacs-lisp/macroexp.el (macroexp--funcall-if-compiled): Rename from
2685 macroexp--eval-if-compile.
2686 (macroexp--funcall-and-return, macroexp--warn-and-return): New funs.
2687 (macroexp--expand-all): Use them (bug#12371).
2688
2689 * doc-view.el (doc-view-guess-paper-size)
2690 (doc-view-scale-bounding-box): Fix unbound `caddr'.
2691
2692 2012-09-19 Tassilo Horn <tsdh@gnu.org>
2693
2694 New feature: set optimal slice from BoundingBox information.
2695 * doc-view.el (doc-view-mode-map): Add keybinding.
2696 (doc-view-menu): Add menu entry.
2697 (doc-view-set-slice): Adapt docstring.
2698 (doc-view-get-bounding-box, doc-view-guess-paper-size)
2699 (doc-view-scale-bounding-box)
2700 (doc-view-set-slice-from-bounding-box): New functions.
2701 (doc-view-paper-sizes): New defvar.
2702
2703 2012-09-19 Glenn Morris <rgm@gnu.org>
2704
2705 * emacs-lisp/macroexp.el (byte-compile-warn-obsolete)
2706 (byte-compile-log-warning): Autoload. (Bug#12371)
2707
2708 * calendar/calendar.el (calendar-american-month-header)
2709 (calendar-european-month-header, calendar-iso-month-header)
2710 (calendar-month-header): New options.
2711 (calendar-set-date-style): Set calendar-month-header. Redraw calendar.
2712 (calendar-generate-month): Use calendar-month-header. (Bug#9510)
2713
2714 2012-09-19 Jan Djärv <jan.h.d@swipnet.se>
2715
2716 * startup.el (command-line-ns-option-alist): Add -g and --geometry.
2717
2718 2012-09-18 Juri Linkov <juri@jurta.org>
2719
2720 * dired-aux.el (dired-diff): Restore original functionality of
2721 getting the default value, but keep new feature of using the
2722 latest existing backup file (`diff-latest-backup-file').
2723
2724 2012-09-18 Juri Linkov <juri@jurta.org>
2725
2726 * dired.el (dired-mark): If the region is active in Transient Mark
2727 mode, mark all files in the active region. Doc fix.
2728 (dired-unmark, dired-flag-file-deletion, dired-unmark-backward):
2729 Doc fix. (Bug#10624)
2730
2731 2012-09-18 Juri Linkov <juri@jurta.org>
2732
2733 * dired-aux.el (dired-do-chxxx, dired-do-chmod): Default file
2734 attributes for M-n are pulled from the file at point.
2735 (dired-do-chgrp, dired-do-chown, dired-do-touch): Doc fix.
2736 Suggested by Drew Adams. (Bug#10624)
2737
2738 2012-09-18 Dmitry Gutov <dgutov@yandex.ru>
2739
2740 * progmodes/ruby-mode.el (ruby-brace-to-do-end): Don't add extra
2741 whitespace after "end".
2742 (ruby-do-end-to-brace): Collapse block to one line if it fits
2743 within fill-column.
2744
2745 2012-09-18 Martin Rudalics <rudalics@gmx.at>
2746
2747 * emacs-lisp/debug.el (debugger-bury-or-kill): Fix customization
2748 value.
2749 (debug): Don't remove debugger window when debugger is expected
2750 to be back.
2751
2752 2012-09-18 Chong Yidong <cyd@gnu.org>
2753
2754 * custom.el (defface): Doc fix.
2755
2756 * cus-edit.el (custom-unlispify-remove-prefixes): Add warning.
2757
2758 2012-09-18 Martin Blais <blais@furius.ca> (tiny change)
2759
2760 * progmodes/compile.el (compilation-start): Use compilation-always-kill
2761 to initialize query-on-exit; then test that instead (bug#12288).
2762
2763 2012-09-17 Stefan Merten <smerten@oekonux.de>
2764
2765 * textmodes/rst.el: Add support for `testcover'.
2766 (rst-defcustom-testcover, rst-testcover-add-compose)
2767 (rst-testcover-add-1value): New functions.
2768 (rst-portable-mark-active-p): Replace by `use-region-p'.
2769 (rst-update-section, rst-classify-adornment)
2770 (rst-find-title-line): Mark `1value' forms.
2771 (rst-classify-adornment): Remove superfluous form.
2772 (rst-update-section, rst-get-adornments-around)
2773 (rst-adornment-complete-p, rst-get-next-adornment)
2774 (rst-adjust, rst-promote-region)
2775 (rst-display-adornments-hierarchy, rst-straighten-adornments)
2776 (rst-find-pfx-in-region, rst-section-tree-rec)
2777 (rst-section-tree-point, rst-toc-insert, rst-toc-insert-node)
2778 (rst-toc-node, rst-toc, rst-forward-section)
2779 (rst-iterate-leftmost-paragraphs)
2780 (rst-iterate-leftmost-paragraphs-2, rst-enumerate-region)
2781 (rst-bullet-list-region)
2782 (rst-convert-bullets-to-enumeration, rst-font-lock-keywords)
2783 (rst-compile-find-conf, rst-compile)
2784 (rst-repeat-last-character): Fix style.
2785
2786 2012-09-17 Chong Yidong <cyd@gnu.org>
2787
2788 * comint.el (comint--complete-file-name-data): Don't add a space
2789 if the status is `sole'; that adds a gratuitous space in the
2790 completion-cycling case (Bug#12092).
2791
2792 * pcomplete.el (pcomplete-completions-at-point): Likewise.
2793
2794 2012-09-17 Richard Stallman <rms@gnu.org>
2795
2796 * mail/rmailmm.el (rmail-mime-toggle-raw): Do rmail-mime-insert
2797 only in the mime-shown mode, not in raw mode.
2798 (rmail-mime): Toggle off mime by displaying the message without
2799 mime processing. (Bug#12305)
2800
2801 * mail/rmail.el (rmail-retry-failure):
2802 Turn off mime processing first. (Bug#12037)
2803
2804 * epa-mail.el (epa-mail-encrypt): Fix bug when a name has no key.
2805
2806 2012-09-17 Chong Yidong <cyd@gnu.org>
2807
2808 * shell.el (shell-file-name-chars, shell-file-name-quote-list)
2809 (shell-dynamic-complete-functions): Convert to defcustom.
2810 (shell-prompt-pattern, shell-completion-fignore): Doc fix.
2811
2812 * bookmark.el (bookmark-bmenu-toggle-filenames): Doc fixes.
2813 * comint.el (comint-prompt-read-only):
2814 * custom.el (defcustom):
2815 * hi-lock.el (hi-lock-mode):
2816 * ibuffer.el (ibuffer-formats):
2817 * ielm.el (ielm-prompt-read-only):
2818 * novice.el (disable-command):
2819 * saveplace.el (toggle-save-place):
2820 * speedbar.el (speedbar-supported-extension-expressions):
2821 * startup.el (auto-save-list-file-prefix, init-file-user)
2822 (after-init-hook, inhibit-startup-echo-area-message):
2823 * strokes.el (strokes-help):
2824 * time-stamp.el (time-stamp):
2825 * calendar/calendar.el (calendar, diary-file):
2826 * calendar/diary-lib.el (diary-mail-entries, diary)
2827 (diary-list-entries-hook):
2828 * calendar/holidays.el (holidays, calendar-holidays):
2829 * calendar/lunar.el (lunar-phases):
2830 * calendar/solar.el (sunrise-sunset):
2831 * emulation/edt.el (edt-load-keys):
2832 * emulation/viper.el (viper-mode):
2833 * eshell/em-alias.el (eshell-command-aliases-list):
2834 * eshell/esh-util.el (eshell-convert-numeric-arguments):
2835 * international/ogonek.el (ogonek-information):
2836 * net/tramp-cmds.el (tramp-bug):
2837 * net/quickurl.el (quickurl-reread-hook-postfix):
2838 * play/decipher.el (decipher-font-lock-keywords):
2839 * progmodes/cc-styles.el (c-set-style):
2840 * progmodes/idlw-shell.el (idlwave-shell-prompt-pattern):
2841 * progmodes/inf-lisp.el (inferior-lisp-prompt):
2842 * progmodes/octave-mod.el (octave-mode):
2843 * progmodes/sql.el (sql-mode, sql-interactive-mode, sql-password):
2844 * progmodes/verilog-mode.el (verilog-read-defines):
2845 * textmodes/two-column.el (2C-mode): Likewise.
2846
2847 2012-09-16 Katsumi Yamaoka <yamaoka@jpl.org>
2848
2849 * mail/mailabbrev.el (mail-abbrev-expand-hook): Work for a mail aliasee
2850 that holds many addresses.
2851
2852 2012-09-16 Chong Yidong <cyd@gnu.org>
2853
2854 * align.el (align-areas): Call the indication function with
2855 positions instead of markers for arguments (Bug#12343).
2856
2857 * files.el (parse-colon-path): Use split-string (Bug#12351).
2858
2859 * window.el (special-display-popup-frame): Doc fix (Bug#8853).
2860 (display-buffer-function): Mark as obsolete.
2861
2862 * progmodes/compile.el (compilation-parse-errors): Accept list
2863 values similar to font-lock-keywords (Bug#12136).
2864 Suggested by Oleksandr Manzyuk.
2865 (compilation-error-regexp-alist): Doc fix.
2866
2867 2012-09-15 Glenn Morris <rgm@gnu.org>
2868
2869 * version.el (emacs-bzr-version-bzr): New function.
2870 (emacs-bzr-get-version): Add optional EXTERNAL argument.
2871
2872 * vc/vc-bzr.el (vc-bzr-working-revision): For lightweight local
2873 checkouts, check the parent dirstate matches the branch.
2874 Add "--tree" to "bzr revno" arguments. Don't try to shorten the
2875 empty string.
2876
2877 * version.el (emacs-bzr-version): Doc fix.
2878 (emacs-bzr-version-dirstate): New function.
2879 (emacs-bzr-get-version): For lightweight checkouts, if the parent
2880 is local try and check that it matches the branch. If not, just
2881 use dirstate information. (Bug#12441)
2882
2883 2012-09-14 Juri Linkov <juri@jurta.org>
2884
2885 * dired-aux.el (dired-do-chmod): Use `eq' to detect empty input.
2886 (Bug#12399)
2887
2888 2012-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
2889
2890 * emacs-lisp/advice.el (ad-prognify): Remove, use macroexp-progn.
2891
2892 * emacs-lisp/edebug.el: Miscellaneous cleanup.
2893 Remove obsolete byte-compiler hack that tried to silence some warnings.
2894 (edebug-submit-bug-report): Remove.
2895 (edebug-get-buffer-window, edebug-sit-for, edebug-input-pending-p):
2896 Remove aliases, use the un-prefixed name instead.
2897 (edebug-pop-to-buffer): Consider other frames.
2898 (edebug-original-read):: Make it more obvious that it's always defined.
2899 (edebug--make-form-data-entry, edebug--form-data-name)
2900 (edebug--form-data-begin, edebug--form-data-end): Rename from the
2901 single-dashed name, and implement with cl-defstruct.
2902 (edebug-set-form-data-entry): Use the standard accessors.
2903 (edebug-make-top-form-data-entry): Use push.
2904 (edebug-no-match): Drop useless `funcall'.
2905 (mapcar, mapconcat, mapatoms, apply, funcall): Don't add debug specs
2906 to functions.
2907 (defsubst, dont-compile, eval-when-compile, eval-and-compile)
2908 (delay-mode-hooks, with-temp-file, with-temp-message, ad-dolist)
2909 (with-syntax-table, push, pop, 1value, noreturn, defadvice)
2910 (easy-menu-define, with-custom-print): Remove redundant specs.
2911 (edebug-outside-overriding-local-map)
2912 (edebug-outside-overriding-terminal-local-map): Remove, unused.
2913 (edebug--display): Bind unread-command-events directly to nil rather
2914 than binding it to unread-command-events and later setting it to nil.
2915 (edebug--display): Kill edebug-eval-buffer here...
2916 (edebug--recursive-edit): ...rather than here.
2917 Bind standard-output and standard-input.
2918 (edebug-eval): Check cl-macroexpand-all is fboundp.
2919 (edebug-temp-display-freq-count): Fix last change.
2920
2921 * emacs-lisp/easymenu.el (easy-menu-define): Add `debug' spec.
2922 * subr.el (noreturn, 1value): Add `debug' spec.
2923 * emacs-lisp/advice.el: Require cl-lib.
2924 (ad-copy-tree): Remove, use copy-tree instead.
2925 (ad-dolist): Remove use dolist or cl-dolist instead.
2926 (ad-do-return): Remove, use cl-return instead.
2927 (defadvice): Add `debug' spec.
2928
2929 2012-09-13 Juri Linkov <juri@jurta.org>
2930
2931 * dired-aux.el (dired-do-chxxx): Use `eq' to detect empty input.
2932 (Bug#12399)
2933
2934 2012-09-13 Glenn Morris <rgm@gnu.org>
2935
2936 * calc/calc.el (math-compose-expr):
2937 * calc/calc-ext.el (math-compose-expr):
2938 * progmodes/cc-defs.el (cl-macroexpand-all):
2939 * progmodes/cc-langs.el (delete-duplicates, mapcan)
2940 (cl-macroexpand-all): Update declarations.
2941
2942 * vc/vc.el: No need to require ediff.
2943 (ediff-load-version-control): Declare.
2944 (ediff-vc-internal): Fix declaration.
2945 (vc-version-ediff): Require ediff.
2946
2947 2012-09-13 Paul Eggert <eggert@cs.ucla.edu>
2948
2949 Use a more backwards-compatible timer format (Bug#12430).
2950 * emacs-lisp/timer.el (timer): PSECS is now at the end, rather than
2951 being right after USECS, as that better supports old code that
2952 inadvisedly looked directly at the timer vector.
2953
2954 2012-09-13 Kenichi Handa <handa@gnu.org>
2955
2956 * language/chinese.el ("Chinese-GB", "Chinese-BIG5")
2957 ("Chinese-CNS", "Chinese-EUC-TW"): Add chinese-gbk to
2958 `coding-priority' property of these language environment.
2959
2960 2012-09-13 Paul Eggert <eggert@cs.ucla.edu>
2961
2962 Fix glitches caused by addition of psec to timers (Bug#12430).
2963 * image.el (image-animate-timer):
2964 * time.el (display-time-world-timer):
2965 Use timer--function and timer--args rather than raw access to
2966 timer vector.
2967
2968 2012-09-13 Glenn Morris <rgm@gnu.org>
2969
2970 * emacs-lisp/bytecomp.el (byte-compile-warning-prefix):
2971 If not compiling a file, try using load-file-name.
2972
2973 2012-09-13 Stefan Monnier <monnier@iro.umontreal.ca>
2974
2975 * emacs-lisp/edebug.el (edebug-outside-unread-command-events):
2976 Fix last change.
2977 (edebug-update-eval-list): Use `push'.
2978
2979 * emacs-lisp/edebug.el: Use lexical-binding.
2980 Remove the "edebug-" prefix from non-dynamically-scoped variables.
2981 Mark unused args with underscore.
2982 (edebug-save-restriction, edebug-outside-excursion): Use `declare'.
2983 (edebug-form-data): Use defvar-local.
2984 (edebug-make-before-and-after-form, edebug-make-after-form):
2985 Use backquote.
2986 (edebug-args, edebug-value, edebug-after-index, edebug-arg-mode):
2987 Not dynamically scoped any more.
2988 (edebug--enter-trace): Add arguments `function' and `args'.
2989 Rename from edebug-enter-trace.
2990 (edebug-enter): Call it accordingly. Bind edebug-function explicitly.
2991 (edebug--update-coverage): Add `after-index' and `value' args.
2992 Rename from edebug-update-coverage.
2993 (edebug-slow-after): Call it accordingly.
2994 (edebug--recursive-edit): Add arg `arg-mode'. Rename from
2995 edebug-recursive-edit.
2996 (edebug--display): Call it accordingly. Add args `value',
2997 `offset-index', and `arg-mode'. Rename from edebug-display.
2998 (edebug-debugger, edebug): Call it accordingly.
2999 (edebug-eval-display-list): Use dolist.
3000
3001 2012-09-12 Juri Linkov <juri@jurta.org>
3002
3003 * info.el (Info-search): Don't check for isearch-mode and
3004 isearch-regexp before let-binding search-spaces-regexp to
3005 Info-search-whitespace-regexp.
3006 (Info-isearch-search): Let-bind Info-search-whitespace-regexp to
3007 search-whitespace-regexp if isearch-lax-whitespace or
3008 isearch-regexp-lax-whitespace is non-nil.
3009 (Info-mode): Don't set local variable search-whitespace-regexp.
3010 http://lists.gnu.org/archive/html/emacs-devel/2012-08/msg00811.html
3011
3012 2012-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
3013
3014 * emacs-lisp/debug.el (debugger-outer-unread-command-char, debug)
3015 (debugger-env-macro): Remove support for unread-command-char.
3016
3017 * subr.el (set-temporary-overlay-map): Minimize slightly the impact of
3018 the temporary map re-appearing on emulation-mode-map-alists.
3019
3020 * emacs-lisp/edebug.el (def-edebug-form-spec): Remove, it's been broken
3021 since 22.1.
3022
3023 * ehelp.el (with-electric-help): Accept functions in
3024 electric-help-form-to-execute.
3025 (electric-help-execute-extended, electric-help-ctrl-x-prefix): Use it.
3026 And replace unread-command-char -> unread-command-events.
3027
3028 2012-09-12 Michael Albinus <michael.albinus@gmx.de>
3029
3030 Sync with Tramp 2.2.6.
3031
3032 * net/tramp.el (tramp-accept-process-output): Don't use
3033 JUST-THIS-ONE in the XEmacs case.
3034
3035 * net/trampver.el: Update release number.
3036
3037 2012-09-12 Martin Rudalics <rudalics@gmx.at>
3038
3039 * emacs-lisp/debug.el (debugger-previous-window-height):
3040 New variable.
3041 (debug): When debugger-jumping-flag is non-nil try to restore
3042 height of debugger window. (Bug#8789)
3043
3044 2012-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
3045
3046 * emacs-lisp/edebug.el (edebug-enter): Don't mess with
3047 overriding-local-map and pre/post-command-hook here.
3048 (edebug-recursive-edit): Do it here instead (bug#12345).
3049 (edebug-outside-unread-command-char): Remove all uses of
3050 unread-command-char.
3051
3052 * emacs-lisp/debug.el (debug): Don't bind debug-on-error since
3053 inhibit-debugger is bound instead.
3054
3055 2012-09-11 Bastien Guerry <bzg@gnu.org>
3056
3057 * subr.el (set-temporary-overlay-map): Add a docstring.
3058 (Bug#12346)
3059
3060 2012-09-11 Bastien Guerry <bzg@gnu.org>
3061
3062 * minibuffer.el (completion-table-subvert): Fix docstring.
3063 (Bug#12347)
3064
3065 2012-09-11 Bastien Guerry <bzg@gnu.org>
3066
3067 * help-fns.el (describe-variable): Fix typo. (Bug#12346)
3068
3069 2012-09-10 Michael R. Mauger <mmaug@yahoo.com>
3070
3071 * progmodes/sql.el: Version 3.1
3072 (sql-db2-escape-newlines): New variable.
3073 (sql-escape-newlines-filter): Use it.
3074
3075 2012-09-10 Juanma Barranquero <lekktu@gmail.com>
3076
3077 * custom.el (custom-theme-load-confirm): Remove unneeded assignment.
3078
3079 2012-09-10 Dan Nicolaescu <dann@gnu.org>
3080
3081 * vc/diff-mode.el (diff-mode-menu):
3082 Bind diff-remove-trailing-whitespace.
3083
3084 2012-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
3085
3086 * emacs-lisp/lisp-mode.el (emacs-list-byte-code-comment-re): New var.
3087 (emacs-lisp-byte-code-comment, emacs-lisp-byte-code-syntax-propertize)
3088 (emacs-lisp-byte-code-mode): New functions.
3089 (eval-sexp-add-defvars): Don't skip defvars in column >0.
3090 (eval-defun-2): Remove bogus interactive spec.
3091 (lisp-indent-line): Remove redundant whole-exp code, now done in
3092 indent-according-to-mode.
3093 (save-match-data): Remove redundant indent data.
3094
3095 * emacs-lisp/benchmark.el (benchmark-run, benchmark-run-compiled):
3096 Use `declare'.
3097
3098 2012-09-09 Juri Linkov <juri@jurta.org>
3099
3100 * replace.el (replace-regexp-lax-whitespace): New defcustom.
3101 (replace-lax-whitespace, query-replace-regexp)
3102 (query-replace-regexp-eval, replace-regexp): Doc fix.
3103 (perform-replace, replace-highlight): Let-bind
3104 isearch-lax-whitespace to replace-lax-whitespace and
3105 isearch-regexp-lax-whitespace to replace-regexp-lax-whitespace.
3106
3107 * isearch.el (isearch-query-replace): Let-bind
3108 replace-lax-whitespace to isearch-lax-whitespace and
3109 replace-regexp-lax-whitespace to
3110 isearch-regexp-lax-whitespace. (Bug#10885)
3111
3112 2012-09-09 Stefan Monnier <monnier@iro.umontreal.ca>
3113
3114 * eshell/em-unix.el (eshell/sudo): Explicitly drop return value.
3115
3116 2012-09-09 Alan Mackenzie <acm@muc.de>
3117
3118 * progmodes/cc-engine.el (c-state-cache-init):
3119 Initialise c-state-semi-nonlit-pos-cache\(-limit\)? properly.
3120 (c-record-parse-state-state):
3121 Record c-state-semi-nonlit-pos-cache\(-limit\)?.
3122
3123 2012-09-09 Andreas Schwab <schwab@linux-m68k.org>
3124
3125 * register.el (register-separator): Rename from
3126 separator-register. All uses changed. Doc fix.
3127 (register): Fix version.
3128
3129 2012-09-09 Chong Yidong <cyd@gnu.org>
3130
3131 * replace.el (query-replace-map): Bind four new symbols for
3132 requesting window scrolling.
3133
3134 * subr.el (y-or-n-p): Handle the window-scrolling bindings in
3135 query-replace-map (Bug#8948).
3136
3137 * custom.el (custom-theme-load-confirm): Use y-or-n-p.
3138
3139 * emacs-lisp/map-ynp.el (map-y-or-n-p): Don't bind scrolling keys
3140 since they are now in query-replace-map.
3141
3142 * window.el (scroll-other-window-down): Make the arg optional.
3143
3144 2012-09-09 Chong Yidong <cyd@gnu.org>
3145
3146 * files.el (hack-local-variables-confirm): Use quit-window to kill
3147 the *Local Variables* buffer.
3148
3149 2012-09-08 Dmitry Gutov <dgutov@yandex.ru>
3150
3151 * progmodes/ruby-mode.el (ruby-toggle-block): Guess the current block,
3152 not just expect to be at its beginning. Adjust callees.
3153 Succeed when do-end block has no space before the pipe character.
3154 (ruby-brace-to-do-end): When the original block is one-liner,
3155 convert to multiline. Reindent the result.
3156
3157 2012-09-08 Jambunathan K <kjambunathan@gmail.com>
3158
3159 * register.el (register): New group.
3160 (separator-register): New user option.
3161 (increment-register): Route it to `append-to-register', if
3162 register contains text. Implication is that `C-x r +' can now be
3163 used for appending to a text register (bug#12217).
3164 (append-to-register, prepend-to-register): Add separator based on
3165 `separator-register'.
3166
3167 2012-09-08 Alan Mackenzie <acm@muc.de>
3168
3169 AWK Mode: make auto-newline work when there's "==" in the pattern.
3170 * progmodes/cc-cmds.el (c-point-syntax): Handle virtual semicolons
3171 correctly.
3172 * progmodes/cc-engine.el (c-guess-basic-syntax CASE 5A.3):
3173 Test more rigorously for "=" token.
3174
3175 2012-09-08 Dmitry Gutov <dgutov@yandex.ru>
3176
3177 * progmodes/ruby-mode.el (ruby-match-expression-expansion):
3178 Only fail when reached LIMIT.
3179
3180 2012-09-08 Chong Yidong <cyd@gnu.org>
3181
3182 * dired.el (dired-mode-map): Don't bind M-=.
3183
3184 * dired-aux.el (dired-diff): Use backup file as default.
3185
3186 2012-09-08 Drew Adams <drew.adams@oracle.com>
3187
3188 * subr.el (add-to-history): Fix delete usage (Bug#12314).
3189
3190 2012-09-08 Chong Yidong <cyd@gnu.org>
3191
3192 * subr.el (syntax-after, syntax-class): Doc fix.
3193
3194 2012-09-08 Martin Rudalics <rudalics@gmx.at>
3195
3196 * window.el (display-buffer-in-previous-window): New buffer
3197 display action function.
3198
3199 * emacs-lisp/debug.el (debugger-bury-or-kill): New option.
3200 (debugger-previous-window): New variable.
3201 (debug): Rewrite using display-buffer-in-previous-window,
3202 quit-restore-window and debugger-bury-or-kill. (Bug#8789)
3203
3204 2012-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
3205
3206 * emacs-lisp/byte-run.el (defun): Tweak message. Simplify code.
3207
3208 2012-09-07 Matt McClure <mlm@aya.yale.edu> (tiny change)
3209
3210 * progmodes/python.el (python-shell-send-string):
3211 When default-directory is remote, create temp file on remote
3212 filesystem.
3213 (python-shell-send-file): When file is remote, pass local view of
3214 file paths to remote Python interpreter. (Bug#12340)
3215
3216 2012-09-07 Chong Yidong <cyd@gnu.org>
3217
3218 * window.el (switch-to-buffer): Doc fix (Bug#12181).
3219
3220 * files.el (after-find-file): Don't fail on a read-only buffer if
3221 require-final-newline is `visit' or `visit-save' (Bug#11156).
3222
3223 * subr.el (read-char-choice): Allow quitting via ESC ESC.
3224
3225 * userlock.el (ask-user-about-supersession-threat):
3226 Use read-char-choice (Bug#12093).
3227
3228 2012-09-07 Chong Yidong <cyd@gnu.org>
3229
3230 * subr.el (buffer-narrowed-p): New function.
3231
3232 * ses.el (ses-widen):
3233 * simple.el (count-words--buffer-message):
3234 * net/browse-url.el (browse-url-of-buffer): Use it.
3235
3236 * simple.el (count-words-region): Don't signal an error if there
3237 is a non-nil prefix arg and the mark is not set.
3238
3239 * help.el (describe-key-briefly): Allow the message to be seen
3240 when invoked from the minibuffer (Bug#7014).
3241
3242 2012-09-07 Dmitry Gutov <dgutov@yandex.ru>
3243
3244 * progmodes/ruby-mode.el (ruby-end-of-defun)
3245 (ruby-beginning-of-defun): Simplify, allow indentation before
3246 block beginning and end keywords.
3247 (ruby-beginning-of-defun): Only consider 3 keywords defun beginners.
3248 (ruby-end-of-defun): Expect that the point is at the beginning of
3249 the defun.
3250
3251 2012-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
3252
3253 * emacs-lisp/cl-macs.el (cl--do-arglist): Understand _ on &key args
3254 (bug#12367).
3255 (cl--make-usage-args): Strip _ from argument names.
3256
3257 2012-09-06 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
3258
3259 * progmodes/vhdl-mode.el (vhdl-speedbar-initialize): Don't use
3260 obsolete alias speedbar-key-map.
3261 (vhdl-doc-variable, vhdl-doc-mode): Use called-interactively-p.
3262 (vhdl-index-menu-init): Don't use obsolete variable
3263 font-lock-maximum-size.
3264
3265 2012-09-06 Chong Yidong <cyd@gnu.org>
3266
3267 * frame.el (window-system-version): Mark as obsolete.
3268
3269 * speedbar.el (speedbar-update-flag, speedbar-mode): Remove uses
3270 of obsolete variable speedbar-key-map.
3271
3272 2012-09-06 Juri Linkov <juri@jurta.org>
3273
3274 * replace.el (replace-lax-whitespace): New defcustom.
3275 (query-replace, query-replace-regexp, query-replace-regexp-eval)
3276 (replace-string, replace-regexp): Mention it in docstrings.
3277 (perform-replace, replace-highlight): Let-bind
3278 isearch-lax-whitespace and isearch-regexp-lax-whitespace according
3279 to the values of replace-lax-whitespace and regexp-flag.
3280 Don't let-bind search-whitespace-regexp. (Bug#10885)
3281
3282 * isearch.el (isearch-query-replace): Let-bind
3283 replace-lax-whitespace instead of let-binding
3284 replace-search-function and replace-re-search-function.
3285 (isearch-lazy-highlight-search): Let-bind isearch-lax-whitespace
3286 and isearch-regexp-lax-whitespace to lazy-highlight variables.
3287 (isearch-toggle-symbol): Set isearch-regexp to nil
3288 in isearch-word mode (like in isearch-toggle-word).
3289
3290 2012-09-06 Juri Linkov <juri@jurta.org>
3291
3292 * replace.el (replace-search-function)
3293 (replace-re-search-function): Set default values to nil.
3294 (perform-replace): Let-bind isearch-related variables based on
3295 replace-related values, call `isearch-search-fun' and let-bind
3296 the result to `search-function'. Remove code that sets
3297 `search-function' and `search-string' separately for
3298 `delimited-flag'.
3299 (replace-highlight): Add new argument `delimited-flag' and
3300 rename other arguments to the names used in `perform-replace'.
3301 Let-bind `isearch-word' to the argument `delimited-flag'.
3302 (Bug#10885, bug#10887)
3303
3304 2012-09-07 Dmitry Gutov <dgutov@yandex.ru>
3305
3306 * progmodes/ruby-mode.el (ruby-indent-beg-re): Add pieces from
3307 ruby-beginning-of-indent, simplify, allow all keywords to have
3308 indentation before them.
3309 (ruby-beginning-of-indent): Adjust for above. Search until the
3310 found point is not inside a string or comment.
3311 (ruby-font-lock-keywords): Allow symbols to start with "@"
3312 character, give them higher priority than variables.
3313 (ruby-syntax-propertize-function)
3314 (ruby-font-lock-syntactic-keywords): Remove the "not comments"
3315 matchers. Expression expansions are not comments when inside a
3316 string, and there comment syntax status is irrelevant.
3317 (ruby-match-expression-expansion): New function. Check that
3318 expression expansion is inside a string, and it's not escaped.
3319 (ruby-font-lock-keywords): Use it.
3320
3321 2012-09-05 Martin Rudalics <rudalics@gmx.at>
3322
3323 * help.el (temp-buffer-max-height): New default value.
3324 (temp-buffer-resize-frames): New option.
3325 (resize-temp-buffer-window): Optionally resize frame.
3326
3327 * window.el (fit-frame-to-buffer-bottom-margin): New option.
3328 (fit-frame-to-buffer): New function.
3329
3330 2012-09-05 Glenn Morris <rgm@gnu.org>
3331
3332 * emulation/cua-rect.el (cua--init-rectangles):
3333 * textmodes/picture.el (picture-mode-map):
3334 * play/blackbox.el (blackbox-mode-map): Remap right-char and left-char
3335 like forward-char and backward-char. (Bug#12317)
3336
3337 2012-09-05 Leo Liu <sdl.web@gmail.com>
3338
3339 * progmodes/flymake.el (flymake-warning-re): New variable.
3340 (flymake-parse-line): Use it.
3341
3342 2012-09-05 Glenn Morris <rgm@gnu.org>
3343
3344 * calendar/holidays.el (holiday-christian-holidays):
3345 Rename an entry. (Bug#12289)
3346
3347 2012-09-05 Stefan Monnier <monnier@iro.umontreal.ca>
3348
3349 * progmodes/sh-script.el (sh-font-lock-paren): Don't burp at BOB
3350 (bug#12222).
3351
3352 2012-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
3353
3354 * loadup.el: Load macroexp. Remove hack.
3355 * emacs-lisp/macroexp.el (macroexp--eval-if-compile): New function.
3356 (macroexp--expand-all): Use it to get better warnings.
3357 (macroexp--backtrace, macroexp--trim-backtrace-frame)
3358 (internal-macroexpand-for-load): New functions.
3359 (macroexp--pending-eager-loads): New var.
3360 (emacs-startup-hook): New hack to replace one in loadup.el.
3361 * emacs-lisp/cl-macs.el (cl--compiler-macro-list*)
3362 (cl--compiler-macro-cXXr): Move to top, before they can be used.
3363 (cl-psetf): Simplify.
3364 (cl-defstruct): Add indent rule.
3365
3366 2012-09-04 Lars Ingebrigtsen <larsi@gnus.org>
3367
3368 * mail/smtpmail.el (smtpmail-send-it): Prefer the From: header
3369 over `user-mail-address' for the SMTP MAIL FROM envelope.
3370 (smtpmail-via-smtp): Ditto.
3371
3372 2012-09-04 Dmitry Gutov <dgutov@yandex.ru>
3373
3374 * progmodes/ruby-mode.el: Clean up keybindings.
3375 (ruby-mode-map): Don't bind ruby-electric-brace,
3376 ruby-beginning-of-defun, ruby-end-of-defun, ruby-mark-defun,
3377 backward-kill-word, reindent-then-newline-and-indent.
3378 (ruby-mark-defun): Remove.
3379 (ruby-electric-brace): Remove. Obsoleted by electric-indent-chars.
3380 (ruby-mode): Set local beginning-of-defun-function and
3381 end-of-defun-function values.
3382
3383 2012-09-03 Martin Rudalics <rudalics@gmx.at>
3384
3385 * window.el (temp-buffer-window-setup-hook)
3386 (temp-buffer-window-show-hook): New hooks.
3387 (temp-buffer-window-setup, temp-buffer-window-show)
3388 (with-temp-buffer-window): New functions.
3389 (fit-window-to-buffer): Remove unused optional argument OVERRIDE.
3390 (special-display-popup-frame): Make sure the window used shows BUFFER.
3391
3392 * help.el (temp-buffer-resize-mode): Fix doc-string.
3393 (resize-temp-buffer-window): New optional argument WINDOW.
3394
3395 * files.el (recover-file, save-buffers-kill-emacs):
3396 * dired.el (dired-mark-pop-up): Use with-temp-buffer-window.
3397
3398 2012-09-02 Michael Albinus <michael.albinus@gmx.de>
3399
3400 * eshell/em-unix.el (eshell/sudo): When we have an ad-hoc
3401 remote definition of `default-directory', ensure we can connect.
3402
3403 2012-09-02 Juri Linkov <juri@jurta.org>
3404
3405 Toggle whitespace matching mode with M-s SPC.
3406 http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00008.html
3407
3408 * isearch.el (search-whitespace-regexp): Doc fix.
3409 Remove cons cell customization.
3410 (isearch-mode-map): Bind "\M-s " to isearch-toggle-lax-whitespace.
3411 (isearch-lax-whitespace, isearch-regexp-lax-whitespace):
3412 New variables.
3413 (isearch-forward, isearch-forward-regexp): Doc fix.
3414 (isearch-toggle-lax-whitespace): New command.
3415 (search-forward-lax-whitespace, search-backward-lax-whitespace)
3416 (re-search-forward-lax-whitespace)
3417 (re-search-backward-lax-whitespace): New functions.
3418 (isearch-whitespace-regexp): Remove function.
3419 (isearch-query-replace): Let-bind replace-search-function and
3420 replace-re-search-function.
3421 (isearch-occur): Let-bind search-spaces-regexp according to the
3422 value of isearch-lax-whitespace and isearch-regexp-lax-whitespace.
3423 (isearch-quote-char): Check isearch-regexp-lax-whitespace in the
3424 condition for C-q SPC.
3425 (isearch-search-fun-default): Use new functions mentioned above.
3426 (isearch-search-forward, isearch-search-backward): Remove functions.
3427 (isearch-search): Don't let-bind search-spaces-regexp.
3428 (isearch-lazy-highlight-space-regexp): Remove variable.
3429 (isearch-lazy-highlight-lax-whitespace)
3430 (isearch-lazy-highlight-regexp-lax-whitespace): New variables.
3431 (isearch-lazy-highlight-new-loop): Use them.
3432 (isearch-lazy-highlight-search): Don't let-bind search-spaces-regexp.
3433
3434 2012-09-02 Chong Yidong <cyd@gnu.org>
3435
3436 * dired.el (dired-mode-map): Menu string fixes (Bug#11616).
3437
3438 2012-09-02 Glenn Morris <rgm@gnu.org>
3439
3440 * simple.el (undo): Tweak message in undo-only case. (Bug#12283)
3441
3442 2012-09-01 Glenn Morris <rgm@gnu.org>
3443
3444 * term.el: Tidy up menu definitions.
3445 (term-mode-map): Use easymenu for In/Out, Complete menus.
3446 (term-pager-break-map): Initialize in the defvar.
3447 (term-terminal-menu, term-signals-menu): Define with easymenu.
3448 (term-terminal-menu): Also show it in line-mode. (Bug#11957)
3449 (term-pager-menu): New, extracted from term-process-pager.
3450 (term-mode, term-char-mode, term-process-pager): Use easymenu-add.
3451 (term-update-mode-line): Propertize line/char and page items.
3452 (term-process-pager): Move keymap initialization elsewhere.
3453
3454 2012-09-01 Martin Rudalics <rudalics@gmx.at>
3455
3456 * window.el (switch-to-prev-buffer): Handle additional values of
3457 BURY-OR-KILL argument. Don't switch in minibuffer window.
3458 (switch-to-next-buffer): Don't switch in minibuffer window.
3459 (quit-restore-window): New function based on quit-window.
3460 Handle additional values of former KILL argument.
3461 (quit-window): Call quit-restore-window with appropriate
3462 interpretation of KILL argument.
3463 (display-buffer-below-selected): New buffer display action
3464 function.
3465
3466 2012-09-01 Stefan Monnier <monnier@iro.umontreal.ca>
3467
3468 * minibuffer.el (completion-at-point-functions): Complete docstring
3469 (bug#12254).
3470
3471 2012-09-01 Paul Eggert <eggert@cs.ucla.edu>
3472
3473 Better seed support for (random).
3474 * play/5x5.el, play/animate.el, play/cookie1.el, play/dissociate.el:
3475 * play/doctor.el, play/dunnet.el, play/gomoku.el, play/landmark.el:
3476 * play/mpuz.el, play/tetris.el, play/zone.el:
3477 * calc/calc-comb.el (math-init-random-base):
3478 * play/blackbox.el (bb-init-board):
3479 * play/life.el (life):
3480 * server.el (server-use-tcp):
3481 * type-break.el (type-break):
3482 Remove unnecessary call to (random t).
3483 * net/sasl.el (sasl-unique-id-function):
3484 Change (random t) to (random), now that the latter is more random.
3485 * play/life.el (life-initialized): Remove no-longer-needed var.
3486
3487 2012-08-31 Alp Aker <alp.tekin.aker@gmail.com>
3488
3489 * window.el (switch-to-prev-buffer, switch-to-next-buffer):
3490 Consider frame's buffer predicate when choosing the buffer.
3491 (Bug#12081)
3492
3493 2012-08-30 Richard Stallman <rms@gnu.org>
3494
3495 * simple.el (special-mode-map): Delete binding for `z'.
3496
3497 2012-08-30 Andreas Schwab <schwab@linux-m68k.org>
3498
3499 * progmodes/compile.el (compilation-always-kill): Doc fix.
3500
3501 2012-08-30 Chong Yidong <cyd@gnu.org>
3502
3503 * window.el (display-buffer-reuse-frames): Make the obsolescence
3504 message more informative.
3505
3506 2012-08-30 Glenn Morris <rgm@gnu.org>
3507
3508 * paren.el (show-paren-delay):
3509 Add a :set function. Doc fix. (Bug#12297)
3510
3511 2012-08-29 Martin Blais <blais@furius.ca> (tiny change)
3512
3513 * progmodes/compile.el (compilation-always-kill): New var.
3514 (compilation-start): Use it.
3515
3516 2012-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
3517
3518 * simple.el (read-only-mode): Move from files.el for bootstrapping.
3519 * files.el (read-only-mode): Move to simple.el.
3520
3521 * files.el (read-only-mode): New minor mode.
3522 (toggle-read-only): Use it and mark obsolete.
3523 (find-file--read-only):
3524 * vc/vc.el (vc-next-action, vc-checkout):
3525 * vc/vc-cvs.el (vc-cvs-checkout):
3526 * obsolete/vc-mcvs.el (vc-mcvs-update):
3527 * ffap.el (ffap--toggle-read-only): Update callers.
3528
3529 2012-08-29 Michael Albinus <michael.albinus@gmx.de>
3530
3531 * eshell/esh-ext.el (eshell-external-command): Do not examine
3532 remote shell scripts.
3533 See <https://bugs.launchpad.net/ubuntu/+source/emacs23/+bug/1035790>.
3534
3535 * net/tramp-sh.el (tramp-remote-path): Add "/sbin" and
3536 "/usr/local/sbin".
3537
3538 2012-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
3539
3540 * emacs-lisp/cl-lib.el (buffer-string): Fix setter macro (bug#12293).
3541
3542 2012-08-28 Leo Liu <sdl.web@gmail.com>
3543
3544 * progmodes/sh-script.el (sh-dynamic-complete-functions): Adapt to
3545 completion-at-point. (Bug#12220)
3546
3547 * skeleton.el (skeleton-untabify): Change to nil (bug#12223).
3548
3549 * progmodes/sh-script.el (sh-indent-comment): Change to t (bug#12267).
3550
3551 2012-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
3552
3553 * files.el (safe-local-eval-forms): Fix before-save-hook entry to
3554 be buffer-local; add delete-trailing-whitespace (bug#12259).
3555
3556 2012-08-28 Jeremy Moore <jmoore@ieee.org> (tiny change)
3557
3558 * progmodes/hideif.el (hif-compress-define-list):
3559 Fix typo. (Bug#11951)
3560
3561 2012-08-28 Dan Nicolaescu <dann@gnu.org>
3562
3563 * progmodes/hideshow.el (hs-block-end-regexp): Restore lost
3564 buffer local setting.
3565
3566 * net/rcirc.el (rcirc-split-message): Fix for buffer-local
3567 rcirc-encode-coding-system.
3568
3569 2012-08-28 Leo Liu <sdl.web@gmail.com>
3570
3571 * net/rcirc.el (rcirc-split-message): New function.
3572 (rcirc-send-message): Use it. (Bug#12051)
3573
3574 2012-08-28 Juri Linkov <juri@jurta.org>
3575
3576 * info.el (Info-fontify-node): Hide empty lines at the end of
3577 the node. (Bug#12272)
3578
3579 2012-08-27 Drew Adams <drew.adams@oracle.com>
3580
3581 * dired.el (dired-pop-to-buffer): Make window start at beginning
3582 of buffer (Bug#12281).
3583
3584 2012-08-26 Chong Yidong <cyd@gnu.org>
3585
3586 * window.el (special-display-regexps, special-display-frame-alist)
3587 (special-display-buffer-names, special-display-function)
3588 (display-buffer-reuse-frames): Mark as obsolete.
3589
3590 * progmodes/compile.el: Don't use display-buffer-reuse-frames.
3591
3592 * help.el (help-print-return-message): Don't treat
3593 display-buffer-reuse-frames specially.
3594
3595 2012-08-26 Chong Yidong <cyd@gnu.org>
3596
3597 * progmodes/gdb-mi.el (gdb-display-buffer-other-frame-action):
3598 New variable, replacing gdb-frame-parameters.
3599 (gdb-frame-io-buffer, gdb-frame-breakpoints-buffer)
3600 (gdb-frame-threads-buffer, gdb-frame-memory-buffer)
3601 (gdb-frame-disassembly-buffer, gdb-frame-stack-buffer)
3602 (gdb-frame-locals-buffer, gdb-frame-registers-buffer): Use it.
3603 (def-gdb-frame-for-buffer): Macro deleted. It is easier to define
3604 the functions directly with gdb-display-buffer-other-frame-action.
3605 (gdb-display-breakpoints-buffer, gdb-display-threads-buffer)
3606 (gdb-display-memory-buffer, gdb-display-disassembly-buffer)
3607 (gdb-display-stack-buffer, gdb-display-locals-buffer)
3608 (gdb-display-registers-buffer): Define directly.
3609 (def-gdb-display-buffer): Macro deleted.
3610 (gdb-display-buffer): Remove second and third args, callers don't
3611 use them. Defer to the default display-buffer behavior, apart
3612 from making windows dedicated.
3613 (gdb-setup-windows): Don't call display-buffer unnecessarily.
3614
3615 * progmodes/gud.el (gud-display-line): Just use display-buffer.
3616
3617 * window.el (display-buffer-pop-up-frame): Handle a
3618 pop-up-frame-parameters alist entry.
3619 (display-buffer): Document it.
3620
3621 2012-08-26 Chong Yidong <cyd@gnu.org>
3622
3623 * isearch.el (search-whitespace-regexp): Make string and nil
3624 values apply to both ordinary and regexp search. Allow a cons
3625 cell value to distinguish between the two.
3626 (isearch-whitespace-regexp, isearch-search-forward)
3627 (isearch-search-backward): New functions.
3628 (isearch-occur, isearch-search-fun-default, isearch-search)
3629 (isearch-lazy-highlight-new-loop): Use them.
3630 (isearch-forward, isearch-forward-regexp): Doc fix.
3631
3632 2012-08-26 Chong Yidong <cyd@gnu.org>
3633
3634 * faces.el (help-argument-name): Always inherit from italic
3635 (Bug#12213).
3636
3637 2012-08-25 Martin Rudalics <rudalics@gmx.at>
3638
3639 * window.el (window--even-window-heights): Even heights when
3640 WINDOW and the selected window form a vertical combination.
3641 (display-buffer-use-some-window): Provide that window used gets
3642 sized back by quit-window. (Bug#11880) and (Bug#12091)
3643
3644 2012-08-24 Paul Eggert <eggert@cs.ucla.edu>
3645
3646 Fix file time stamp problem with bzr and CVS (Bug#12001).
3647 * vc/vc-cvs.el (vc-cvs-parse-entry): Ignore subsecond information
3648 in the file's time stamp, since the version control system loses
3649 that information.
3650
3651 2012-08-22 Juri Linkov <juri@jurta.org>
3652
3653 * info.el (Info-fontify-node): Hide the suffix of the
3654 Info file name in the header line. (Bug#12187)
3655
3656 2012-08-22 Glenn Morris <rgm@gnu.org>
3657
3658 * calendar/cal-tex.el (cal-tex-weekly-common):
3659 Restore leading blank page.
3660
3661 2012-08-22 Le Wang <l26wang@gmail.com>
3662
3663 * misc.el (forward-to-word, backward-to-word): Activate or extend
3664 the region under `shift-select-mode'. (Bug#12231)
3665
3666 2012-08-22 Bastien Guerry <bzg@gnu.org>
3667
3668 * progmodes/executable.el (executable-prefix): Set to "#!" instead
3669 of "#! ". http://www.in-ulm.de/~mascheck/various/shebang/#details
3670 gives details on why the space is never needed.
3671
3672 2012-08-22 Martin Rudalics <rudalics@gmx.at>
3673
3674 * window.el (walk-window-tree, window-with-parameter):
3675 New optional argument MINIBUF to control whether these functions
3676 should run on the minibuffer window.
3677 (window-at-side-list): Don't operate on minibuffer window.
3678 (window-in-direction): Simplify and rewrite doc-string.
3679 (window--size-ignore): Rename to window--size-ignore-p.
3680 Update callers.
3681 (display-buffer-in-atom-window, window--major-non-side-window)
3682 (window--major-side-window, display-buffer-in-major-side-window)
3683 (delete-side-window, display-buffer-in-side-window):
3684 New functions.
3685 (window--side-check, window-deletable-p, delete-window)
3686 (delete-other-windows, split-window): Handle side windows and
3687 atomic windows appropriately.
3688 (window--display-buffer): Call display-buffer-record-window also
3689 when the window buffer did not change.
3690
3691 2012-08-22 Christopher Schmidt <christopher@ch.ristopher.com>
3692
3693 * help-fns.el (help-fns--key-bindings):
3694 Abbreviate non-symbol remap targets. (Bug#12174)
3695
3696 2012-08-22 Martin Rudalics <rudalics@gmx.at>
3697
3698 * dired.el (dired-mark-remembered): Don't clobber point.
3699 (Bug#11795)
3700
3701 2012-08-22 Glenn Morris <rgm@gnu.org>
3702
3703 * progmodes/bug-reference.el (bug-reference): New custom group.
3704 (bug-reference-bug-regexp): Make it a defcustom.
3705
3706 2012-08-22 Daiki Ueno <ueno@unixuser.org>
3707
3708 * progmodes/js.el (js-indent-level, js-expr-indent-offset)
3709 (js-paren-indent-offset, js-square-indent-offset)
3710 (js-curly-indent-offset): Add :safe (Bug#12257).
3711
3712 2012-08-22 Edward O'Connor <hober0@gmail.com>
3713
3714 * json.el (json-key-format): Add error properties.
3715 (json-encode-key): New function.
3716 (json-encode-hash-table, json-encode-alist, json-encode-plist):
3717 Use json-encode-key.
3718
3719 2012-08-22 Glenn Morris <rgm@gnu.org>
3720
3721 * calendar/cal-tex.el (cal-tex-longday): New function, replacing...
3722 (cal-tex-leftday, cal-tex-rightday): Remove functions.
3723 (cal-tex-weekly-common, cal-tex-cursor-filofax-2week):
3724 Update for above change.
3725
3726 2012-08-21 Andreas Schwab <schwab@linux-m68k.org>
3727
3728 * cus-face.el (custom-face-attributes): Fix customize type for the
3729 :underline attribute. (Bug#11805)
3730
3731 2012-08-21 Martin Rudalics <rudalics@gmx.at>
3732
3733 * window.el (window-point-1, set-window-point-1): Remove.
3734 (window-in-direction, record-window-buffer)
3735 (set-window-buffer-start-and-point, split-window-below)
3736 (window--state-get-1, display-buffer-record-window):
3737 Replace calls to window-point-1 and set-window-point-1 by calls to
3738 window-point and set-window-point respectively.
3739
3740 2012-08-21 Glenn Morris <rgm@gnu.org>
3741
3742 * calendar/cal-tex.el (cal-tex-weekly-common): New function.
3743 (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-week):
3744 Use it.
3745
3746 * calendar/cal-tex.el (cal-tex-rightday): Add optional funcname arg.
3747 (cal-tex-shortday): New function.
3748 (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-week)
3749 (cal-tex-cursor-filofax-daily): Use the above.
3750
3751 * calendar/cal-tex.el (cal-tex-leftday, cal-tex-rightday):
3752 New functions.
3753 (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-2week)
3754 (cal-tex-cursor-filofax-week): Use them.
3755
3756 * calendar/cal-tex.el (cal-tex-lefthead, cal-tex-righthead):
3757 New constants.
3758 (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-2week)
3759 (cal-tex-cursor-filofax-week, cal-tex-cursor-filofax-daily): Use them.
3760
3761 * calendar/cal-tex.el (cal-tex-preamble): Generate new buffers.
3762 (cal-tex-end-document): Don't rely on buffer name.
3763
3764 * calendar/cal-tex.el (cal-tex-cursor-filofax-year):
3765 Use cal-tex-vspace.
3766 (cal-tex-vspace, cal-tex-hspace, cal-tex-em, cal-tex-bf)
3767 (cal-tex-Huge-bf, cal-tex-large-bf): Use cal-tex-cmd.
3768 (cal-tex-scriptsize, cal-tex-huge, cal-tex-Huge, cal-tex-large):
3769 Use cal-tex-arg.
3770
3771 * calendar/cal-tex.el (cal-tex-cursor-filofax-year)
3772 (cal-tex-cursor-week, cal-tex-cursor-week2)
3773 (cal-tex-cursor-week-iso, cal-tex-cursor-week-at-a-glance)
3774 (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
3775 (cal-tex-cursor-filofax-daily, cal-tex-cursor-day)
3776 (cal-tex-insert-preamble, cal-tex-b-document)
3777 (cal-tex-e-document, cal-tex-b-center, cal-tex-e-center):
3778 Improve cal-tex-cmd usage.
3779
3780 * calendar/cal-tex.el (cal-tex-filofax-paper): New function.
3781 (cal-tex-cursor-filofax-year, cal-tex-cursor-filofax-2week)
3782 (cal-tex-cursor-filofax-week, cal-tex-cursor-filofax-daily): Use it.
3783 (cal-tex-weekly-paper): New function.
3784 (cal-tex-cursor-week, cal-tex-cursor-week2)
3785 (cal-tex-cursor-week-iso, cal-tex-cursor-week-monday)
3786 (cal-tex-cursor-day): Use it.
3787
3788 * calendar/cal-tex.el (cal-tex-cursor-week-at-a-glance)
3789 (cal-tex-cursor-filofax-week): Remove leading blank page.
3790
3791 * calendar/cal-tex.el (cal-tex-cursor-week-at-a-glance):
3792 Add autoload cookie. For now at least, don't use color, since
3793 no other cal-tex function does.
3794
3795 * calendar/cal-tex.el (cal-tex-cursor-week-iso)
3796 (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
3797 (cal-tex-cursor-filofax-daily): Correct start date for diary entries.
3798
3799 2012-08-21 Juri Linkov <juri@jurta.org>
3800
3801 * info.el (Info-file-attributes): New variable.
3802 (info-insert-file-contents): Add file attributes to
3803 `Info-file-attributes'. Clear the caches `Info-index-nodes' and
3804 `Info-toc-nodes' when previous modtime of the Info file is less
3805 than new modtime.
3806 (Info-toc-nodes, Info-index-nodes): Move definitions up to the top
3807 of info.el. (Bug#12230)
3808
3809 2012-08-20 Glenn Morris <rgm@gnu.org>
3810
3811 * calendar/diary-lib.el (diary-include-files, diary-sexp-entry):
3812 * calendar/holidays.el (calendar-holiday-list):
3813 Report errors with display-warning rather than beep'n'sleep.
3814
3815 2012-08-20 Michael Albinus <michael.albinus@gmx.de>
3816
3817 * net/tramp.el (tramp-accept-process-output): Accept only output
3818 from PROC. Otherwise, process filters and sentinels might be
3819 confused. (Bug#12145)
3820
3821 2012-08-20 Chong Yidong <cyd@gnu.org>
3822
3823 * descr-text.el (describe-text-properties-1): Use overlays-in to
3824 report on empty overlays (Bug#3322).
3825
3826 2012-08-20 Glenn Morris <rgm@gnu.org>
3827
3828 * mail/rmailout.el (rmail-output-read-file-name):
3829 Trap and report errors in rmail-output-file-alist elements.
3830
3831 * font-lock.el (font-lock-add-keywords): Doc fix (quote face names
3832 since most non-font-lock faces are not also variables).
3833
3834 2012-08-20 Edward Reingold <reingold@iit.edu>
3835
3836 * calendar/cal-tex.el (cal-tex-cursor-week-at-a-glance):
3837 New function. (Bug12160)
3838
3839 2012-08-19 Glenn Morris <rgm@gnu.org>
3840
3841 * mail/rmailout.el (rmail-output-read-file-name):
3842 Fix previous change (when the alist is nil or does not match).
3843
3844 2012-08-19 Chong Yidong <cyd@gnu.org>
3845
3846 * xml.el (xml-escape-string): Don't refer to xml-entity-alist
3847 (Bug#12228).
3848
3849 2012-08-18 Chong Yidong <cyd@gnu.org>
3850
3851 * simple.el (yank-handled-properties): New defcustom.
3852 (yank-excluded-properties): Add font-lock-face and category.
3853 (yank): Doc fix.
3854
3855 * subr.el (remove-yank-excluded-properties):
3856 Obey yank-handled-properties. The special handling of font-lock-face
3857 and category is now done this way, instead of being hard-coded.
3858 (insert-for-yank-1): Remove font-lock-face handling.
3859 (yank-handle-font-lock-face-property)
3860 (yank-handle-category-property): New function.
3861
3862 2012-08-17 Glenn Morris <rgm@gnu.org>
3863
3864 * mail/rmailout.el (rmail-output-read-file-name):
3865 Check rmail-output-file-alist against the full message body
3866 in the correct rmail buffer. (Bug#12214)
3867
3868 2012-08-17 Michael Albinus <michael.albinus@gmx.de>
3869
3870 * net/tramp-sh.el (tramp-sh-handle-start-file-process):
3871 Eliminate superfluous prompt. (Bug#12203)
3872
3873 2012-08-17 Chong Yidong <cyd@gnu.org>
3874
3875 * mouse.el (mouse-appearance-menu): If x-select-font returns a
3876 font spec, set the font directly (Bug#3228).
3877
3878 2012-08-17 Martin Rudalics <rudalics@gmx.at>
3879
3880 * window.el (delete-window): Fix last fix.
3881
3882 2012-08-16 Martin Rudalics <rudalics@gmx.at>
3883
3884 * window.el (window-valid-p): Move to window.c.
3885 (window-child, window-child-count, window-last-child)
3886 (window-normalize-window, window-combined-p)
3887 (window-combinations, window-atom-root, window-min-size)
3888 (window-sizable, window-sizable-p, window-size-fixed-p)
3889 (window-min-delta, window-max-delta, window--resizable)
3890 (window--resizable-p, window-resizable, window-total-size)
3891 (window-full-height-p, window-full-width-p, window-body-size)
3892 (window-at-side-p, adjust-window-trailing-edge, maximize-window)
3893 (minimize-window, window-deletable-p, delete-window)
3894 (delete-other-windows, set-window-buffer-start-and-point)
3895 (next-buffer, previous-buffer, split-window, balance-windows-2)
3896 (set-window-text-height, window-buffer-height)
3897 (fit-window-to-buffer, shrink-window-if-larger-than-buffer)
3898 (truncated-partial-width-window-p): Minor code adjustments.
3899 In doc-strings state whether the argument window has to denote a
3900 live, valid or any window.
3901
3902 2012-08-16 Phil Sainty <psainty@orcon.net.nz> (tiny change)
3903
3904 * progmodes/subword.el (subword-forward-function)
3905 (subword-backward-function, subword-forward-regexp)
3906 (subword-backward-regexp): New variables.
3907 (subword-forward, subword-forward-internal, subword-backward-internal):
3908 Use new variables, eg so that different "word" definitions
3909 can be easily used. (Bug#11411)
3910
3911 2012-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
3912
3913 * vc/vc-mtn.el (vc-mtn-revision-completion-table): Handle completion
3914 for composite selectors.
3915 * vc/vc.el (vc-diff-build-argument-list-internal): Don't prevent
3916 operation just because we can't find a previous revision.
3917
3918 2012-08-15 Chong Yidong <cyd@gnu.org>
3919
3920 * frame.el (set-frame-font): Accept font objects.
3921
3922 2012-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
3923
3924 * textmodes/tex-mode.el (tex-insert-quote): ~ is a space (bug#12137).
3925
3926 2012-08-15 Wolfgang Jenkner <wjenkner@inode.at>
3927
3928 * man.el (Man-overstrike-face, Man-underline-face)
3929 (Man-reverse-face): Remove variables.
3930 (Man-overstrike, Man-underline, Man-reverse): New faces.
3931 (Man-fontify-manpage): Use them instead of the variables.
3932 (Man-cleanup-manpage): Comment change.
3933 (Man-ansi-color-map): New variable.
3934 (Man-fontify-manpage): Use it.
3935 Call ansi-color-apply-on-region to replace ad hoc code (bug#12147).
3936
3937 Implement ANSI SGR parameters 22-27 (bug#12146).
3938 * ansi-color.el (ansi-colors): Doc fix.
3939 (ansi-color-context, ansi-color-context-region): Doc fix.
3940 (ansi-color--find-face): New function.
3941 (ansi-color-apply, ansi-color-apply-on-region): Use it.
3942 Rename the local variable `face' to `codes' since it is now a list of
3943 ansi codes. Doc fix.
3944 (ansi-color-get-face): Remove.
3945 (ansi-color-parse-sequence): New function, derived from
3946 ansi-color-get-face.
3947 (ansi-color-apply-sequence): Use it. Rewrite, and support ansi
3948 codes 22-27.
3949
3950 2012-08-14 Stefan Monnier <monnier@iro.umontreal.ca>
3951
3952 * subr.el (read-passwd): Allow use from a minibuffer.
3953
3954 2012-08-14 Eli Zaretskii <eliz@gnu.org>
3955
3956 * tooltip.el (tooltip-identifier-from-point): Don't treat tokens
3957 inside comments and strings as identifiers.
3958
3959 * progmodes/gud.el (gud-tooltip-print-command): Quote the
3960 expression to evaluate. This allows to evaluate expressions with
3961 embedded whitespace.
3962 (gud-tooltip-tips): Add a blank before the newline in the
3963 message-box text, for the benefit of message-box emulation on
3964 MS-Windows.
3965
3966 * progmodes/gdb-mi.el (gdb-tooltip-print): Don't ignore error
3967 messages from GDB, pop them up in a tooltip to give feedback to
3968 user.
3969 (gdb-tooltip-print-1): Quote the expression to evaluate.
3970 This allows to evaluate expressions with embedded whitespace.
3971 (gdb-inferior-io--init-proc): Don't send "-inferior-tty" command
3972 if the TTY name is nil or empty (which happens when communicating
3973 with the inferior via pipes, e.g. on MS-Windows).
3974 (gdb-internals): If GDB sends a "&\n" empty debugging message,
3975 don't send that to the GUD buffer.
3976
3977 2012-08-14 Glenn Morris <rgm@gnu.org>
3978
3979 * emacs-lisp/bytecomp.el (byte-compile-setq-default):
3980 Optimize away setq-default with no args, as for setq. (Bug#12195)
3981
3982 2012-08-14 Chong Yidong <cyd@gnu.org>
3983
3984 * minibuffer.el (read-file-name): Doc fix (Bug#10881).
3985
3986 * emacs-lisp/regexp-opt.el (regexp-opt-charset): Doc fix
3987 (Bug#12085).
3988
3989 2012-08-14 Glenn Morris <rgm@gnu.org>
3990
3991 * emacs-lisp/bytecomp.el (byte-recompile-file): Doc fix.
3992
3993 2012-08-14 Michael Albinus <michael.albinus@gmx.de>
3994
3995 * net/tramp-sh.el (tramp-open-shell): Cache the shell name.
3996 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
3997 Use cached shell name.
3998
3999 2012-08-14 Fabián Ezequiel Gallina <fgallina@cuca>
4000
4001 * progmodes/python.el (python-shell-send-string):
4002 (python-shell-send-setup-code): Do not use `format' with `message'.
4003
4004 2012-08-14 Dmitry Gutov <dgutov@yandex.ru>
4005
4006 * progmodes/ruby-mode.el: Improve percent literals (bug#6286).
4007 (ruby-percent-literal-beg-re): New constant.
4008 (ruby-syntax-general-delimiters-goto-beg): Rename to
4009 `ruby-syntax-enclosing-percent-literal', improve literal type check.
4010 (ruby-syntax-propertize-general-delimiters): Rename to
4011 `ruby-syntax-propertize-percent-literal', it's a shorter and more
4012 popular term. Adjust comments everywhere.
4013 (ruby-syntax-propertize-percent-literal): Only propertize when not
4014 inside a simple string or comment. When the literal is unclosed,
4015 leave the text after it unpropertized.
4016 (ruby-syntax-methods-before-regexp): New constant.
4017 (ruby-syntax-propertize-function): Use it to recognize regexps.
4018 Don't look at the text after regexp, just use the whitelist.
4019
4020 2012-08-14 Andreas Schwab <schwab@linux-m68k.org>
4021
4022 * emacs-lisp/bytecomp.el (byte-recompile-file): When LOAD is
4023 non-nil always load the compiled file if it exists. (Bug#12197)
4024
4025 2012-08-14 Chong Yidong <cyd@gnu.org>
4026
4027 * hi-lock.el (hi-lock-mode): Do not unilaterally enable font lock.
4028 (hi-lock-set-pattern): When deciding whether to use font lock or
4029 overlays, look at font-lock-mode instead of font-lock-fontified
4030 (Bug#12168).
4031 (hi-lock-mode, hi-lock-line-face-buffer, hi-lock-unface-buffer)
4032 (hi-lock-face-buffer, hi-lock-face-phrase-buffer): Doc fix.
4033
4034 2012-08-14 Daiki Ueno <ueno@unixuser.org>
4035
4036 * subr.el (internal--after-with-selected-window): Fix typo
4037 (Bug#12193).
4038
4039 2012-08-14 Fabián Ezequiel Gallina <fgallina@cuca>
4040
4041 Use `completion-table-dynamic' for completion functions.
4042 * progmodes/python.el
4043 (python-shell-completion--do-completion-at-point)
4044 (python-shell-completion--get-completions):
4045 Remove functions.
4046 (python-shell-completion-complete-at-point): New function.
4047 (python-completion-complete-at-point): Use it.
4048
4049 2012-08-13 Jambunathan K <kjambunathan@gmail.com>
4050
4051 * vc/vc-dir.el (vc-dir-hide-state): New command (bug#12159).
4052 (vc-dir-hide-up-to-date): Route it to `vc-dir-hide-state'.
4053
4054 2012-08-13 Stefan Monnier <monnier@iro.umontreal.ca>
4055
4056 * subr.el (function-get): Refine `autoload' arg so it can also
4057 autoload functions for gv.el (bug#12191).
4058 * emacs-lisp/edebug.el (get-edebug-spec): Adjust so it only
4059 autoloads macros.
4060
4061 * color.el (color-xyz-to-lab, color-lab-to-xyz, color-cie-de2000):
4062 Prefer pcase-let over destructuring-bind.
4063 * vc/diff-mode.el (diff-remove-trailing-whitespace): Same.
4064 Also, remove whitespace as we go, rather than after accumulating the
4065 various places.
4066
4067 * subr.el (internal--before-with-selected-window)
4068 (internal--after-with-selected-window): Fix typo seleted->selected.
4069 (with-selected-window): Adjust callers.
4070 Reported by Dmitry Gutov <dgutov@yandex.ru>.
4071
4072 2012-08-13 Bastien Guerry <bzg@gnu.org>
4073
4074 * window.el (special-display-popup-frame): Minor docstring
4075 enhancement. (Bug#12172)
4076
4077 2012-08-13 Andreas Schwab <schwab@linux-m68k.org>
4078
4079 * tar-mode.el (tar-header-data-end): Only ignore size for files of
4080 type 1-6.
4081 (tar-header-block-summarize, tar-get-descriptor): Handle pax
4082 extended headers.
4083
4084 * files.el (hack-local-variables-filter): Remove useless eval.
4085
4086 2012-08-13 Martin Rudalics <rudalics@gmx.at>
4087
4088 * subr.el (with-selected-window): Fix last change.
4089
4090 2012-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
4091
4092 * subr.el (internal--before-with-seleted-window)
4093 (internal--after-with-seleted-window): New functions.
4094 (with-selected-window): Use them, to replace dependency on
4095 tty-top-frame.
4096
4097 2012-08-12 Nobuyoshi Nakada <nobu@ruby-lang.org>
4098
4099 * progmodes/ruby-mode.el (ruby-mode-map): Remove unnecessary
4100 binding for `newline'.
4101 (ruby-move-to-block): When moving backward, stop at block opening,
4102 not indentation.
4103 * progmodes/ruby-mode.el (ruby-brace-to-do-end)
4104 (ruby-do-end-to-brace, ruby-toggle-block): New functions.
4105 * progmodes/ruby-mode.el (ruby-mode-map): Add binding for
4106 `ruby-toggle-block'.
4107
4108 2012-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
4109
4110 * ibuffer.el (ibuffer-do-toggle-read-only):
4111 * dired.el (dired-toggle-read-only):
4112 * buff-menu.el (Buffer-menu-toggle-read-only):
4113 * bindings.el (mode-line-toggle-read-only):
4114 * bs.el (bs-toggle-readonly): Call toggle-read-only interactively.
4115
4116 2012-08-12 Andreas Schwab <schwab@linux-m68k.org>
4117
4118 * descr-text.el (describe-char): Put the overlays over the
4119 "displayed as" character.
4120
4121 2012-08-12 Jay Belanger <jay.p.belanger@gmail.com>
4122
4123 * calc/calc-units.el (math-default-units-table): Give an
4124 initial value.
4125 (math-put-default-units): Add options to put composite units and
4126 unit systems in the default units table.
4127 (calc-convert-units): Send composite units to
4128 `math-put-default-units' when appropriate.
4129
4130 2012-08-11 Glenn Morris <rgm@gnu.org>
4131
4132 * emacs-lisp/copyright.el (copyright-update-directory): Logic fix.
4133
4134 * tutorial.el (help-with-tutorial):
4135 * emacs-lisp/copyright.el (copyright-update-directory):
4136 * emacs-lisp/autoload.el (autoload-find-generated-file)
4137 (autoload-find-file): Disable local eval: (for insurance).
4138
4139 * files.el (hack-local-variables-filter): If an eval: form is not
4140 known to be safe, and enable-local-variables is :safe, then ignore
4141 the form totally, as is done for non-eval forms. (Bug#12155)
4142 This is CVE-2012-3479.
4143
4144 2012-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
4145
4146 * emacs-lisp/rx.el (rx-constituents): Don't define as constant.
4147 (rx-form): Simplify.
4148
4149 2012-08-09 Dmitry Gutov <dgutov@yandex.ru>
4150
4151 * progmodes/ruby-mode.el (ruby-expr-beg, ruby-parse-partial):
4152 ?, _, and : are symbol constituents, ! is not (but kinda should be).
4153 (ruby-syntax-propertize-heredoc): Use ruby-singleton-class-p.
4154 (ruby-syntax-propertize-function): Adjust for changes in
4155 `ruby-syntax-propertize-heredoc'.
4156
4157 2012-08-09 Nobuyoshi Nakada <nobu@ruby-lang.org>
4158
4159 * progmodes/ruby-mode.el (ruby-mode-map): Remove deprecated
4160 binding (use `M-;' instead).
4161 (ruby-singleton-class-p): New function.
4162 (ruby-expr-beg, ruby-in-here-doc-p) Use it.
4163
4164 2012-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
4165
4166 * emacs-lisp/cl-macs.el (cl-loop): Improve debug spec.
4167
4168 2012-08-10 Chong Yidong <cyd@gnu.org>
4169
4170 * progmodes/python.el (python-shell-get-process-name): Don't mess
4171 with same-window-buffer-names.
4172
4173 * eshell/eshell.el (eshell-add-to-window-buffer-names)
4174 (eshell-remove-from-window-buffer-names): Make obsolete.
4175 (eshell-buffer-name, eshell-unload-hook): Don't use them.
4176 (eshell): Just use pop-to-buffer-same-window instead.
4177
4178 2012-08-10 Chong Yidong <cyd@gnu.org>
4179
4180 * bindings.el: Bind M-= back to count-words-region.
4181
4182 * simple.el (count-words-region): Accept a prefix arg for acting
4183 on the entire buffer.
4184 (count-words--buffer-message): New helper function.
4185
4186 2012-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
4187
4188 * term/x-win.el (x-menu-bar-open): Always pass last-nonmenu-event.
4189 * subr.el (eventp): `nil' is not an event, and eventp is not hot.
4190 (event-start, event-end): Use posn-at-point to return a more
4191 informative posn.
4192 (posnp): New function.
4193 * mouse.el (popup-menu-normalize-position): Use it.
4194
4195 2012-08-10 Masatake YAMATO <yamato@redhat.com>
4196
4197 * mouse.el (popup-menu-normalize-position): New function.
4198 (popup-menu): Use `popup-menu-normalize-position' to normalize
4199 the form for POSITION argument.
4200
4201 * term/x-win.el (x-menu-bar-open):
4202 Use the value returend from (posn-at-point) as position
4203 passed to `popup-menu'.
4204
4205 2012-08-09 Jay Belanger <jay.p.belanger@gmail.com>
4206
4207 * calc/calccomp.el (math-compose-expr): Add extra argument
4208 indicating that parentheses should be put around products in
4209 denominators. Give multiplication precedence over division during
4210 composition.
4211
4212 2012-08-09 Chong Yidong <cyd@gnu.org>
4213
4214 * man.el (Man-switches, Man-sed-command, Man-awk-command)
4215 (Man-mode-hook, Man-cooked-hook, Man-untabify-command-args)
4216 (Man-untabify-command, manual-program): Convert to defcustom
4217 (Bug#10429).
4218
4219 * vc/add-log.el (change-log-mode): Bind comment-start to nil.
4220
4221 * descr-text.el (describe-char): Don't insert extra newlines
4222 (Bug#10127).
4223
4224 * vc/log-view.el (log-view-diff): Use use-region-p (Bug#10133).
4225 (log-view-diff-changeset, log-view-minor-wrap): Likewise.
4226
4227 * align.el (align-region): Delete temporary markers (Bug#10047).
4228 Plus some code cleanups.
4229
4230 2012-08-09 Fabián Ezequiel Gallina <fgallina@cuca>
4231
4232 * progmodes/python.el (python-pdbtrack-tracked-buffer)
4233 (python-pdbtrack-buffers-to-kill, python-shell-internal-buffer)
4234 (python-shell-internal-last-output): Use make-local-variable
4235 instead of make-variable-buffer-local.
4236
4237 2012-08-09 Fabián Ezequiel Gallina <fgallina@cuca>
4238
4239 * progmodes/python.el: Enhancements to forward-sexp.
4240 (python-nav-forward-sexp): Rename from
4241 python-nav-forward-sexp-function.
4242 (python-nav--forward-sexp, python-nav--backward-sexp):
4243 New functions.
4244
4245 2012-08-09 Jay Belanger <jay.p.belanger@gmail.com>
4246
4247 * calc/calc-menu.el (calc-modes-menu): Add entries for matrix
4248 modes and simplification modes.
4249
4250 2012-08-09 Stefan Monnier <monnier@iro.umontreal.ca>
4251
4252 * delsel.el (delete-selection-pre-hook): Don't propagate the
4253 file-supersession signals (bug#12161).
4254
4255 2012-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
4256
4257 * emacs-lisp/cl.el (cl-map-keymap-recursively, cl-map-intervals)
4258 (cl-map-extents): Add compatibility aliases (bug#12135).
4259
4260 2012-08-08 Michael Albinus <michael.albinus@gmx.de>
4261
4262 * net/tramp-sh.el (tramp-find-file-exists-command): Protect the
4263 tests by `ignore-error'.
4264 (tramp-find-shell): Open also a new shell, when cache is already
4265 set. Reported by Carsten Bormann <cabo@tzi.org>. (Bug#12148)
4266
4267 2012-08-08 Juri Linkov <juri@jurta.org>
4268
4269 * bookmark.el: Add `defaults' property to the bookmark record.
4270 (bookmark-current-buffer): Doc fix.
4271 (bookmark-make-record): Add `defaults' property with default values
4272 to the bookmark record.
4273 (bookmark-minibuffer-read-name-map): Remove key binding "\C-u"
4274 with `bookmark-insert-current-bookmark'.
4275 (bookmark-set): Get `defaults' property from the bookmark record
4276 and use it in `read-from-minibuffer'.
4277 (bookmark-insert-current-bookmark): Remove function.
4278
4279 * info.el (Info-bookmark-make-record): Add `defaults' property
4280 with values of canonical Info node name, the current Info file
4281 name and the current Info node name. (Bug#12107)
4282
4283 2012-08-08 Juri Linkov <juri@jurta.org>
4284
4285 * files.el (basic-save-buffer): Use `buffer-name' as the default
4286 of `read-file-name' when buffer is not visiting a file (bug#12128).
4287
4288 2012-08-08 Juri Linkov <juri@jurta.org>
4289
4290 * info.el (Info-isearch-search): Doc fix.
4291 (Info-search): Change search-failed message from "initial node" to
4292 "end of node" (bug#12078).
4293 (Info-isearch-search): Change `isearch-string-state' to
4294 `isearch--state-string'.
4295
4296 2012-08-08 Glenn Morris <rgm@gnu.org>
4297
4298 * language/persian.el: Remove file.
4299 * language/misc-lang.el: Move unique part of persian.el here.
4300 * loadup.el: Remove language/persian.
4301
4302 2012-08-08 Óscar Fuentes <ofv@wanadoo.es>
4303
4304 * vc/diff-mode.el (diff-remove-trailing-whitespace): New function.
4305
4306 2012-08-08 Fabián Ezequiel Gallina <fgallina@cuca>
4307
4308 * progmodes/python.el: Fix defsubst warning.
4309 (python-syntax-context) Rename from python-info-ppss-context.
4310 (python-syntax-context-type): Rename from
4311 python-info-ppss-context-type.
4312 (python-syntax-comment-or-string-p): Rename from
4313 python-info-ppss-comment-or-string-p.
4314
4315 2012-08-08 Jay Belanger <jay.p.belanger@gmail.com>
4316
4317 * calc/calc-misc.el (calc-record-why): Don't record a message twice.
4318
4319 2012-08-07 Andreas Schwab <schwab@linux-m68k.org>
4320
4321 * emacs-lisp/lisp-mode.el (eval-defun-1): Handle standard value of
4322 a defcustom that is quoted with backquote.
4323
4324 * calc/calc-prog.el (math-do-defmath): Use backquote forms.
4325 Fix handling of interactive spec when the body uses return.
4326 (math-do-arg-check, math-define-function-body): Use backquote forms.
4327 * calc/calc-ext.el (math-defcache): Likewise.
4328 * calc/calc-rewr.el (math-rwfail, math-rweval): Likewise.
4329 * allout.el (allout-new-exposure): Likewise.
4330 * calc/calcalg2.el (math-tracing-integral): Likewise.
4331 * info.el (Info-last-menu-item): Likewise.
4332 * emulation/vip.el (vip-loop): Likewise.
4333 * textmodes/artist.el (artist-funcall): Likewise.
4334 * menu-bar.el (menu-bar-make-mm-toggle, menu-bar-make-toggle):
4335 Construct menu-item directly.
4336
4337 * progmodes/autoconf.el (font-lock-syntactic-keywords):
4338 Don't declare.
4339
4340 2012-08-07 Chong Yidong <cyd@gnu.org>
4341
4342 * simple.el (deactivate-mark): Preserve text properties when
4343 saving the primary selection (Bug#8384).
4344
4345 2012-08-07 Kevin Ryde <user42@zip.com.au>
4346
4347 * woman.el (woman0-if): Quietly treat ".if v" as false (Bug#12109).
4348 (woman-parse-numeric-value): On a bad .IP line, issue a warning
4349 and continue processing (Bug#12110).
4350
4351 2012-08-06 Stefan Monnier <monnier@iro.umontreal.ca>
4352
4353 * progmodes/cperl-mode.el (cperl-mode): Yet another fix for
4354 syntax-propertize-function (bug#10095).
4355
4356 2012-08-06 Stefan Monnier <monnier@iro.umontreal.ca>
4357
4358 * help-fns.el (help-fns--key-bindings, help-fns--signature)
4359 (help-fns--parent-mode, help-fns--obsolete): New funs, extracted from
4360 describe-function-1.
4361 (describe-function-1): Use them. Move compiler macro after sig.
4362 (help-fns--compiler-macro): Use function-get. Assume we're already in
4363 standard-output. Adjust layout to new call order.
4364
4365 * emacs-lisp/cl-macs.el (cl--sm-macroexpand): Fix handling of
4366 re-binding a symbol that has a symbol-macro (bug#12119).
4367
4368 2012-08-06 Mohsen BANAN <libre@mohsen.1.banan.byname.net>
4369
4370 * language/persian.el: New file. (Bug#11812)
4371 * loadup.el: Add language/persian.el.
4372
4373 2012-08-06 Chong Yidong <cyd@gnu.org>
4374
4375 * window.el (window--maybe-raise-frame): New function.
4376 (window--display-buffer): Split off from here.
4377 (display-buffer-reuse-window, display-buffer-pop-up-frame)
4378 (display-buffer-pop-up-window, display-buffer-use-some-window):
4379 Obey an inhibit-switch-frame action alist entry.
4380 (display-buffer): Update doc.
4381
4382 * replace.el (occur-after-change-function): Avoid losing focus by
4383 using the inhibit-switch-frame display parameter (Bug#12139).
4384
4385 2012-08-06 Fabián Ezequiel Gallina <fgallina@cuca>
4386
4387 Make internal shell process buffer names start with space.
4388 * progmodes/python.el (python-shell-make-comint): Add optional
4389 argument INTERNAL.
4390 (run-python-internal): Use it.
4391 (python-shell-internal-get-or-create-process): Check for new
4392 internal buffer names.
4393
4394 2012-08-06 Glenn Morris <rgm@gnu.org>
4395
4396 * eshell/esh-ext.el (eshell/addpath): Use dolist and mapconcat.
4397 Do less getting and setting of environment variables.
4398
4399 2012-08-05 Chong Yidong <cyd@gnu.org>
4400
4401 * proced.el (proced): Add substitution string to docstring to
4402 trigger autoloading of the proced library on C-h f (Bug#1768).
4403
4404 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
4405 Don't show defvars which have no second argument (Bug#8638).
4406
4407 * imenu.el (imenu-generic-expression): Move documentation here
4408 from imenu--generic-function.
4409 (imenu--generic-function): Refer to imenu-generic-expression.
4410
4411 2012-08-05 Vegard Øye <vegard_oye@hotmail.com> (tiny change)
4412
4413 * emulation/viper-init.el (viper-deflocalvar): Add docstring and
4414 indentation declaration.
4415 (viper-loop): Add indentation declaration (Bug#7025).
4416
4417 2012-08-05 Chong Yidong <cyd@gnu.org>
4418
4419 * help-fns.el (describe-variable): Add hyperlink for
4420 directory-local variables files. Improve buffer-local and
4421 permanent-local reporting; suggested by MON KEY (Bug#6644).
4422
4423 * help-mode.el (help-dir-local-var-def): New button type.
4424
4425 * files.el (kill-buffer-hook): Provide a defvar.
4426
4427 2012-08-05 Glenn Morris <rgm@gnu.org>
4428
4429 * eshell/esh-ext.el (eshell/addpath):
4430 Also update eshell-path-env. (Bug#12013)
4431
4432 2012-08-05 Chong Yidong <cyd@gnu.org>
4433
4434 * wdired.el (wdired-mode, wdired-change-to-wdired-mode): Doc fixes.
4435
4436 * fringe.el (fringe-styles): Add docstring.
4437 (fringe--check-mode): New function.
4438 (set-fringe-mode, set-fringe-style): Use it.
4439 (fringe-mode, set-fringe-style): Doc fixes (Bug#6480).
4440
4441 * files.el (set-auto-mode): Fix invalid setq call.
4442
4443 2012-08-04 Stefan Monnier <monnier@iro.umontreal.ca>
4444
4445 * isearch.el: Misc simplification; use defstruct.
4446 (isearch-mode-map): Dense maps now work like sparse ones.
4447 (isearch--state): New defstruct.
4448 (isearch-string-state, isearch-message-state, isearch-point-state)
4449 (isearch-success-state, isearch-forward-state)
4450 (isearch-other-end-state, isearch-word-state, isearch-error-state)
4451 (isearch-wrapped-state, isearch-barrier-state)
4452 (isearch-case-fold-search-state, isearch-pop-fun-state): Remove,
4453 replaced by defstruct's accessors.
4454 (isearch--set-state): Rename from isearch-top-state and change
4455 calling convention.
4456 (isearch-push-state): Use new isearch--get-state.
4457 (isearch-toggle-word): Disable regexp when enabling word.
4458 (isearch-message-prefix): Remove unused arg _c-q-hack.
4459 (isearch-message-suffix): Remove unused arg _ellipsis.
4460
4461 2012-08-04 Andreas Schwab <schwab@linux-m68k.org>
4462
4463 * simple.el (list-processes--refresh): For a server use :host or
4464 :local as the address.
4465 (list-processes): Doc fix.
4466
4467 2012-08-04 Michal Nazarewicz <mina86@mina86.com>
4468
4469 * lisp/mpc.el: Support password in host argument.
4470 (mpc--proc-connect): Parse and use new password element.
4471 Set mpc-proc variable instead of returning process.
4472 (mpc-proc): Adjust accordingly.
4473
4474 2012-08-03 Eli Zaretskii <eliz@gnu.org>
4475
4476 * whitespace.el (whitespace-display-mappings): Use Unicode
4477 codepoints, instead of emacs-mule codepoints. See
4478 http://lists.gnu.org/archive/html/help-gnu-emacs/2012-07/msg00366.html
4479 for the details.
4480
4481 * files.el (file-truename): Don't skip symlink-chasing part on
4482 windows-nt. Incorporate the resolution of 8+3 short aliases on
4483 Windows into the loop that recursively chases symlinks.
4484 Compare directory and its parent case-insensitively on MS-Windows and
4485 MS-DOS.
4486
4487 2012-08-03 Chong Yidong <cyd@gnu.org>
4488
4489 * menu-bar.el (menu-bar-tools-menu): Remove PCL-CVS.
4490
4491 * sort.el (sort-regexp-fields): Doc fix.
4492
4493 2012-08-03 Tassilo Horn <tsdh@gnu.org>
4494
4495 * textmodes/reftex.el (reftex-compile-variables): Make keyvals
4496 labels regex position point at the expected place.
4497
4498 2012-08-03 MON KEY <monkey@sandpframing.com>
4499
4500 * net/imap.el (imap-interactive-login, imap-authenticate)
4501 (imap-mailbox-lsub, imap-mailbox-list)
4502 (imap-mailbox-status-asynch, imap-mailbox-acl-delete)
4503 (imap-fetch, imap-message-flag-permanent-p, imap-envelope-from)
4504 (imap-parse-response): Doc fix.
4505
4506 2012-08-03 João Távora <joaotavora@gmail.com>
4507
4508 * textmodes/tex-mode.el (latex-forward-sexp): Terminate the loop
4509 if sexp scanning does not move point (Bug#5734).
4510
4511 2012-08-02 Tassilo Horn <tsdh@gnu.org>
4512
4513 * textmodes/reftex-vars.el (reftex-default-label-alist-entries):
4514 Add listings, minted, and ctable packages.
4515 (reftex-label-alist-builtin): Move listings, minted, and ctable
4516 entries before LaTeX.
4517 (reftex-label-alist): Docfix.
4518
4519 2012-08-02 Bastien Guerry <bzg@gnu.org>
4520
4521 * replace.el (occur): Fix docstring (bug#12122).
4522
4523 2012-08-02 Glenn Morris <rgm@gnu.org>
4524
4525 * emacs-lisp/authors.el (authors-renamed-files-alist): Add ms-w32.h.
4526
4527 2012-08-02 Paul Eggert <eggert@cs.ucla.edu>
4528
4529 Obsolete alias inactivate-current-input-method-function (Bug#10150).
4530 * international/mule-cmds.el: Create
4531 inactivate-current-input-method-function as an obsolete alias for
4532 deactivate-current-input-method-function. See Katsumi Yamaoka in
4533 <http://bugs.gnu.org/10150#46>.
4534
4535 2012-08-01 Jay Belanger <jay.p.belanger@gmail.com>
4536
4537 * calc/calc-mode.el (calc-set-simplify-mode): Use `cond' instead
4538 of nested `if's.
4539
4540 2012-08-01 Glenn Morris <rgm@gnu.org>
4541
4542 * progmodes/autoconf.el (autoconf-definition-regexp):
4543 Add AH_TEMPLATE, adjust submatch numbering.
4544 (autoconf-font-lock-keywords, autoconf-imenu-generic-expression)
4545 (autoconf-current-defun-function): Update for above change.
4546 (autoconf-current-defun-function): First skip to end of current word.
4547
4548 2012-08-01 Rupert Swarbrick <rswarbrick@gmail.com> (tiny change)
4549
4550 * calendar/cal-html.el (cal-html-insert-agenda-days):
4551 Fix typo. (Bug#12018)
4552
4553 2012-07-31 Fabián Ezequiel Gallina <fgallina@cuca>
4554
4555 Shell processes: enhancements to startup and CEDET compatibility.
4556 * progmodes/python.el (python-shell-send-setup-max-wait): Delete var.
4557 (python-shell-make-comint): accept-process-output at startup.
4558 (run-python-internal): Set inferior-python-mode-hook to nil.
4559 (python-shell-internal-get-or-create-process): call sit-for.
4560 (python-preoutput-result): Add obsolete alias.
4561 (python-shell-internal-send-string): Use it.
4562 (python-shell-send-setup-code): Remove call to
4563 accept-process-output.
4564
4565 2012-07-31 Andreas Schwab <schwab@linux-m68k.org>
4566
4567 * buff-menu.el (list-buffers-noselect): Use prefix-numeric-value.
4568 (Bug#12108)
4569
4570 2012-07-31 Jay Belanger <jay.p.belanger@gmail.com>
4571
4572 * calc-mode.el (calc-basic-simplification-mode): Rename from
4573 `calc-limited-simplification-mode'.
4574 (calc-alg-simplification-mode): New function.
4575 (calc-set-simplify-mode): Adjust message.
4576
4577 * calc.el (calc-set-mode-line): Adjust mode line display for
4578 basic simplification mode.
4579
4580 * calc-help.el (calc-m-prefix-help): Update help message.
4581
4582 * calc-ext.el (calc-init-extensions): Add bindings and autoloads
4583 for `calc-basic-simplify-mode' and `calc-alg-simplify-mode'.
4584
4585 2012-07-31 Bastien Guerry <bzg@gnu.org>
4586
4587 * man.el (man): Fix comment. (bug#12101)
4588
4589 2012-07-31 Martin Rudalics <rudalics@gmx.at>
4590
4591 * window.el (switch-to-prev-buffer, switch-to-next-buffer):
4592 Don't return a non-nil value when no suitable buffer was found.
4593
4594 2012-07-31 Fabián Ezequiel Gallina <fgallina@cuca>
4595
4596 * progmodes/python.el (run-python-internal): Disable font lock for
4597 internal shells.
4598
4599 2012-07-30 Stefan Merten <smerten@oekonux.de>
4600
4601 * textmodes/rst.el: Silence `checkdoc-ispell'.
4602 (rst-cvs-header, rst-svn-rev, rst-svn-timestamp)
4603 (rst-official-version, rst-official-cvs-rev)
4604 (rst-package-emacs-version-alist): Update to upstream V1.3.1.
4605 (rst-mode-map): New key binding.
4606
4607 2012-07-30 Paul Eggert <eggert@cs.ucla.edu>
4608
4609 Update .PHONY listings in makefiles.
4610 * Makefile.in (.PHONY): Add all, doit, custom-deps, finder-data,
4611 autoloads, update-subdirs, updates, bzr-update, update-authors,
4612 compile-onefile, compile-calc, backup-compiled-files,
4613 compile-after-backup, compile-one-process, mh-autoloads,
4614 bootstrap-clean, distclean, maintainer-clean.
4615
4616 2012-07-29 Jay Belanger <jay.p.belanger@gmail.com>
4617
4618 * calc/calc.el (calc-simplify-mode): Make 'alg the default value.
4619 (calc-set-mode-line): Don't display "AlgSimp ".
4620
4621 * calc/calc-mode.el (calc-alg-simplify-mode): Remove function.
4622 (calc-lim-simplify-mode): New function.
4623 (calc-set-simplify-mode): Default to 'alg.
4624 (calc-default-simplify-mode): Make algebraic simplifications
4625 the default.
4626
4627 * calc/calc-ext.el (calc-init-extensions): Remove binding for
4628 `calc-alg-simplify-mode'. Add binding for `calc-lim-simplify-mode'.
4629
4630 * calc/calc-help.el (calc-m-prefix-help): Change messages to
4631 indicate new simplification modes.
4632
4633 * calc/README: Mention new default simplification mode.
4634
4635 * calc/calc.el (math-normalize-error): New variable.
4636 (math-normalize): Set `math-normalize-error' to t
4637 when there's an error.
4638
4639 * calc/calc-alg.el (math-simplify): Don't simplify when
4640 `math-normalize' returns an error.
4641
4642 2012-07-29 Eli Zaretskii <eliz@gnu.org>
4643
4644 * international/mule-cmds.el (set-locale-environment): Revert last
4645 change, since display-graphic-p returns nil when this function is
4646 called during startup. Instead...
4647
4648 * term/w32console.el (terminal-init-w32console): ...setup the
4649 keyboard and terminal encoding for TTY sessions here. (Bug#12082)
4650
4651 2012-07-29 Juri Linkov <juri@jurta.org>
4652
4653 * simple.el (goto-line): Don't display default line number in the
4654 prompt because it should be displayed by `read-number' (bug#9952).
4655 Add the current line number to the defaults of `goto-line' to
4656 allow its easier modification by users with `M-n' (bug#9201).
4657
4658 * subr.el (read-number): Support multiple default values like in
4659 other minibuffer reading functions. Replace `read' with
4660 `string-to-number' for consistency with `number-to-string'.
4661
4662 2012-07-29 Paul Eggert <eggert@cs.ucla.edu>
4663
4664 deactive->inactive, inactivate->deactivate spelling fixes (Bug#10150)
4665 * emulation/viper-init.el (viper-deactivate-input-method-action):
4666 Rename from viper-inactivate-input-method-action.
4667 (viper-deactivate-input-method):
4668 Rename from viper-inactivate-input-method.
4669 * follow.el (follow-inactive-menu): Rename from follow-deactive-menu.
4670 * international/mule-cmds.el (deactivate-input-method):
4671 Rename from inactivate-input-method.
4672 Also run input-method-deactivate-hook.
4673 (deactivate-current-input-method-function):
4674 Rename from inactivate-current-input-method-function.
4675 (input-method-deactivate-hook): New hook.
4676 (input-method-inactivate-hook): Mark obsolete.
4677 (inactivate-input-method): Mark obsolete.
4678
4679 * international/quail.el (quail-activate):
4680 Also run quail-deactivate-hook.
4681 (quail-deactivate): Rename from quail-inactivate.
4682 * international/robin.el (robin-activate):
4683 Also run robin-deactivate-hook.
4684 (robin-deactivate): Rename from robin-inactivate.
4685
4686 2012-07-29 Chong Yidong <cyd@gnu.org>
4687
4688 * simple.el (indicate-copied-region): New function.
4689 (kill-ring-save): Split off from here.
4690
4691 * rect.el (copy-rectangle-as-kill): Call indicate-copied-region.
4692 (kill-rectangle): Set deactivate-mark to t on read-only error.
4693
4694 * register.el (copy-to-register, copy-rectangle-to-register):
4695 Deactivate the mark, and use indicate-copied-region (Bug#10056).
4696 (append-to-register, prepend-to-register): Call indicate-copied-region.
4697
4698 2012-07-29 Juri Linkov <juri@jurta.org>
4699
4700 * simple.el (async-shell-command-buffer): New defcustom.
4701 (shell-command): Use it. (Bug#4719)
4702
4703 2012-07-28 Eli Zaretskii <eliz@gnu.org>
4704
4705 * international/mule-cmds.el (set-locale-environment): In a
4706 console session on MS-Windows, set up keyboard and terminal
4707 encoding from the OEM codepage, not the ANSI codepage.
4708 (Bug#12055)
4709
4710 2012-07-28 Chong Yidong <cyd@gnu.org>
4711
4712 * progmodes/gdb-mi.el (gdb-place-breakpoints): Fix the call to
4713 gdb-get-location.
4714
4715 2012-07-28 Leo Liu <sdl.web@gmail.com>
4716
4717 * progmodes/cc-menus.el (cc-imenu-objc-function): Avoid leaving nil in
4718 the alist (bug#12029).
4719
4720 2012-07-28 Eli Zaretskii <eliz@gnu.org>
4721
4722 * makefile.w32-in (custom-deps, finder-data, updates, compile)
4723 (compile-always, compile-first)
4724 ($(lisp)/calendar/cal-loaddefs.el)
4725 ($(lisp)/calendar/diary-loaddefs.el)
4726 ($(lisp)/calendar/hol-loaddefs.el, $(lisp)/mh-e/mh-loaddefs.el)
4727 ($(lisp)/net/tramp-loaddefs.el, bootstrap)
4728 ($(lisp)/progmodes/cc-mode.elc): Depend on $(lisp)subdirs.el,
4729 instead of on update-subdirs.
4730 (bootstrap-clean): Delete $(lisp)/subdirs.el.
4731
4732 2012-07-28 Chong Yidong <cyd@gnu.org>
4733
4734 * vc/vc.el (vc-root-diff, vc-print-root-log): Prompt for a
4735 directory if vc-deduce-backend returns nil (Bug#7350).
4736
4737 * simple.el (delete-trailing-lines): New option.
4738 (delete-trailing-whitespace): Obey it (Bug#11879).
4739
4740 2012-07-28 David Engster <deng@randomsample.de>
4741
4742 * xml.el (xml-node-name, xml-parse-file, xml-parse-region):
4743 Explanation of new 'symbol-qnames feature in doc-strings.
4744 (xml-maybe-do-ns): Return expanded names as plain symbols if
4745 'symbol-qnames was provided in XML-NS argument (Bug#11916).
4746 (xml-parse-tag-1): Deal with new definition of PARSE-NS argument.
4747
4748 2012-07-27 Fabián Ezequiel Gallina <fgallina@cuca>
4749
4750 Consistent completion in inferior python with emacs -nw.
4751 * progmodes/python.el (inferior-python-mode): replace "<tab>"
4752 binding in inferior-python-mode-map with "\t".
4753 (python-shell-completion-complete-at-point)
4754 (python-completion-complete-at-point): Remove interactive spec.
4755
4756 2012-07-27 Jay Belanger <jay.p.belanger@gmail.com>
4757
4758 * calc/calccomp.el (math-compose-expr): Undo previous change.
4759
4760 2012-07-27 Fabián Ezequiel Gallina <fgallina@cuca>
4761
4762 * progmodes/python.el (python-mode-map): Add keybinding for
4763 run-python.
4764 (python-shell-make-comint): Fix pop-to-buffer call.
4765 (run-python): Autoload. New arg SHOW.
4766 (python-shell-get-or-create-process): Do not pop python process
4767 buffer.
4768
4769 2012-07-27 Michael Albinus <michael.albinus@gmx.de>
4770
4771 * notifications.el (notifications-on-action-signal)
4772 (notifications-on-closed-signal): Use also the bus address for the map.
4773 (notifications-notify, notifications-close-notification)
4774 (notifications-get-capabilities): Add optional argument BUS.
4775
4776 2012-07-27 Tassilo Horn <tsdh@gnu.org>
4777
4778 * textmodes/reftex-vars.el (reftex-label-alist-builtin):
4779 Add support for the lstlisting and minted environments, and for the
4780 ctable macro.
4781 * textmodes/reftex.el (reftex-compile-variables): Also recognize
4782 labels written in keyvals syntax.
4783
4784 2012-07-27 Jay Belanger <jay.p.belanger@gmail.com>
4785
4786 * calc/calccomp.el (math-compose-expr): Use parentheses when
4787 there is a product in the denominator of a fraction.
4788
4789 2012-07-26 Eli Zaretskii <eliz@gnu.org>
4790
4791 * makefile.w32-in ($(lisp)/calendar/cal-loaddefs.el)
4792 ($(lisp)/calendar/diary-loaddefs.el)
4793 ($(lisp)/calendar/hol-loaddefs.el, $(lisp)/mh-e/mh-loaddefs.el)
4794 ($(lisp)/net/tramp-loaddefs.el): Depend on update-subdirs.
4795 Fixes failures in parallel bootstrap because subdirs.el is being
4796 rewritten while the autoload files are built at the same time,
4797 which needs to load subdirs.el.
4798
4799 2012-07-26 Martin Rudalics <rudalics@gmx.at>
4800
4801 * mouse.el (popup-menu): Fix doc-string and re-indent code.
4802 (mouse-drag-line): Don't exit tracking when a switch-frame or
4803 switch-window event occurs (Bug#12006).
4804
4805 2012-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
4806
4807 * mouse.el (popup-menu): Fix last change.
4808
4809 2012-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
4810
4811 Autoload from Lisp with more care. Follow aliases when looking for
4812 function properties.
4813 * subr.el (autoloadp): New function.
4814 (symbol-file): Use it.
4815 (function-get): New function.
4816 * emacs-lisp/macroexp.el (macroexp--expand-all): Use function-get and
4817 autoload-do-load.
4818 * emacs-lisp/lisp-mode.el (lisp-font-lock-syntactic-face-function)
4819 (lisp-indent-function):
4820 * emacs-lisp/gv.el (gv-get):
4821 * emacs-lisp/edebug.el (get-edebug-spec, edebug-basic-spec):
4822 * emacs-lisp/byte-opt.el (byte-optimize-form):
4823 * emacs-lisp/bytecomp.el (byte-compile-arglist-warn):
4824 * emacs-lisp/autoload.el (make-autoload, autoload-print-form):
4825 Use function-get.
4826 * emacs-lisp/cl.el: Don't propagate function properties any more.
4827
4828 * speedbar.el (speedbar-add-localized-speedbar-support):
4829 * emacs-lisp/disass.el (disassemble-internal):
4830 * desktop.el (desktop-load-file):
4831 * help-fns.el (help-function-arglist, find-lisp-object-file-name)
4832 (describe-function-1):
4833 * emacs-lisp/find-func.el (find-function-noselect):
4834 * emacs-lisp/elp.el (elp-instrument-function):
4835 * emacs-lisp/advice.el (ad-has-proper-definition):
4836 * apropos.el (apropos-safe-documentation, apropos-macrop):
4837 * emacs-lisp/debug.el (debug-on-entry):
4838 * emacs-lisp/cl-macs.el (cl-compiler-macroexpand):
4839 * emacs-lisp/byte-opt.el (byte-compile-inline-expand):
4840 * calc/calc.el (name): Use autoloadp & autoload-do-load.
4841
4842 2012-07-25 Alp Aker <alp.tekin.aker@gmail.com>
4843
4844 * international/mule-cmds.el (ucs-insert): Mark it as an obsolete
4845 function, not an obsolete variable (Bug#12046).
4846
4847 2012-07-25 Andreas Schwab <schwab@linux-m68k.org>
4848
4849 * faces.el (face-spec-reset-face): Fix last change. (Bug#12042)
4850
4851 2012-07-25 Christopher Schmidt <christopher@ch.ristopher.com>
4852
4853 * emacs-lisp/pp.el (pp-display-expression): Select old selected
4854 window only if it is still live (Bug#12034).
4855
4856 2012-07-25 Martin Rudalics <rudalics@gmx.at>
4857
4858 * subr.el (redirect-frame-focus): Add advertised calling
4859 convention (Bug#12030).
4860
4861 2012-07-25 Paul Eggert <eggert@cs.ucla.edu>
4862
4863 Prefer typical American spelling for "acknowledgment".
4864 * vc/add-log.el (change-log-acknowledgment): Rename from
4865 change-log-acknowledgement, with an alias for the old name.
4866
4867 2012-07-25 Jay Belanger <jay.p.belanger@gmail.com>
4868
4869 * calc-alg.el (math-simplify-divide): Don't cross multiply
4870 in an equation when the lhs is a variable.
4871
4872 2012-07-24 Julien Danjou <julien@danjou.info>
4873
4874 * net/netrc.el (netrc-find-service-number, netrc-store-data):
4875 Remove, unused.
4876
4877 2012-07-23 Eli Zaretskii <eliz@gnu.org>
4878
4879 * startup.el (command-line): Don't display an empty user name in
4880 the error message about non-existent home directory, when
4881 init-file-user was set to an empty string. See
4882 http://lists.gnu.org/archive/html/bug-gnu-emacs/2012-07/msg00835.html
4883 for the details and context.
4884
4885 2012-07-22 Vincent Belaïche <vincentb1@users.sourceforge.net>
4886
4887 * ses.el (ses-cell-formula-aset): New macro.
4888 (ses-cell-references-aset): New macro.
4889 (ses-cell-p): New function.
4890 (ses-rename-cell): Do no longer rely on complex operations like
4891 ses-cell-set-formula or ses-set-cell to change the cell and handle
4892 the undo at the same time, but rather use lower level new macros
4893 `ses-cell-formula-aset' and `ses-cell-references-aset' and handle
4894 the undo directly. Refresh the mode line.
4895
4896 2012-07-21 Leo Liu <sdl.web@gmail.com>
4897
4898 * progmodes/cc-cmds.el (c-defun-name):
4899 Use match-string-no-properties instead for consistency.
4900
4901 2012-07-20 Leo Liu <sdl.web@gmail.com>
4902
4903 * progmodes/cc-cmds.el (c-defun-name): Handle objc selectors properly.
4904 (Bug#7879)
4905
4906 * progmodes/cc-langs.el (c-symbol-start): Include char _ (bug#11986).
4907
4908 2012-07-20 Stefan Monnier <monnier@iro.umontreal.ca>
4909
4910 * userlock.el, emacs-lisp/map-ynp.el: Declare part of `emacs' package.
4911 * progmodes/bug-reference.el, misearch.el: Provide themselves
4912 (bug#11915).
4913
4914 * progmodes/cperl-mode.el (cperl-unwind-to-safe): Don't inf-loop at end
4915 of narrowed buffer (bug#11966).
4916
4917 2012-07-20 Vincent Belaïche <vincentb1@users.sourceforge.net>
4918
4919 * ses.el (ses-rename-cell): Set new name also in reference list of
4920 cells of which the renamed cell depends.
4921
4922 2012-07-20 Masatake YAMATO <yamato@redhat.com>
4923
4924 * term/x-win.el (x-menu-bar-open): Use `frame-parameter'
4925 to check whether menu-bar is shown or not. If not shown,
4926 show the menu-bar as a popup menu instead of using tmm.
4927 * mouse.el (popup-menu): Accept `point' as `position' argument.
4928
4929 2012-07-20 Dmitry Gutov <dgutov@yandex.ru>
4930
4931 * progmodes/ruby-mode.el (ruby-parse-partial): No error when end
4932 up inside string symbol literal (bug#11923).
4933
4934 2012-07-20 Eli Zaretskii <eliz@gnu.org>
4935
4936 * startup.el (fancy-startup-text): Read the whole tutorial, not
4937 just its first 256 bytes. Prevents gibberish in display of the
4938 tutorial title.
4939
4940 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
4941
4942 Drop idle buffer compaction due to an absence of the
4943 proved efficiency.
4944 * compact.el: Remove.
4945
4946 2012-07-19 Sam Steingold <sds@gnu.org>
4947
4948 * vc/vc-dispatcher.el (vc-compilation-mode): Add, based on
4949 vc-bzr-pull & vc-bzr-merge-branch.
4950 * vc/vc-bzr.el (vc-bzr-pull, vc-bzr-merge-branch): Use it.
4951 (vc-bzr-error-regexp-alist): Rename from vc-bzr-error-regex-alist
4952 for consistency with compilation-error-regexp-alist.
4953 * vc/vc-git.el (vc-git-error-regexp-alist): Add.
4954 (vc-git-pull, vc-git-merge-branch): Call vc-compilation-mode.
4955 * vc/vc-hg.el (vc-hg-error-regexp-alist): Add.
4956 (vc-hg-pull, vc-hg-merge-branch): Call vc-compilation-mode.
4957
4958 2012-07-19 Stefan Monnier <monnier@iro.umontreal.ca>
4959
4960 * emacs-lisp/chart.el: Use lexical-binding.
4961 (chart-emacs-storage): Don't hardcode the list of entries.
4962
4963 2012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
4964
4965 Next round of tweaks caused by Fgarbage_collect changes.
4966 * emacs-lisp/chart.el (chart-emacs-storage): Adjust again.
4967
4968 2012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
4969
4970 Compact buffers when idle.
4971 * compact.el: New file.
4972
4973 2012-07-19 Stefan Monnier <monnier@iro.umontreal.ca>
4974
4975 * subr.el (eventp): Presume that if it looks vaguely like an event,
4976 it's an event (bug#10190).
4977
4978 2012-07-19 Fabián Ezequiel Gallina <fgallina@cuca>
4979
4980 Enhancements to ppss related code (thanks Stefan).
4981 * progmodes/python.el (python-indent-context)
4982 (python-indent-calculate-indentation, python-indent-dedent-line)
4983 (python-indent-electric-colon, python-nav-forward-block)
4984 (python-mode-abbrev-table)
4985 (python-info-assignment-continuation-line-p): Simplify checks
4986 for ppss context.
4987 (python-info-continuation-line-p): Cleanup.
4988 (python-info-ppss-context): Do not catch 'quote.
4989 (python-info-ppss-context-type)
4990 (python-info-ppss-comment-or-string-p): Simplify.
4991
4992 2012-07-18 Fabián Ezequiel Gallina <fgallina@cuca>
4993
4994 * progmodes/python.el: Enhancements to eldoc support.
4995 (python-info-current-symbol): New function.
4996 (python-eldoc-at-point): Use python-info-current-symbol.
4997 (python-info-current-defun): Fix cornercase on first defun scan.
4998 (python-eldoc--get-doc-at-point): Use python-info-current-symbol
4999 and signal error when no inferior python process is available.
5000
5001 2012-07-18 Dmitry Gutov <dgutov@yandex.ru>
5002
5003 * vc/vc-git.el (vc-git-state): Don't call `vc-git-registered',
5004 assume it's always t.
5005 (vc-git-registered): Remove caching, the function is only called
5006 once.
5007 (vc-git-branches): Use `vc-git--call' instead of `call-process'.
5008
5009 2012-07-18 Chong Yidong <cyd@gnu.org>
5010
5011 * subr.el (last-input-char, last-command-char): Remove (Bug#9195).
5012
5013 * simple.el (count-words): Report on narrowing (Bug#9959).
5014
5015 * bindings.el: Bind M-= to count-words.
5016
5017 * faces.el (face-spec-reset-face): Handle reverse video (Bug#4238).
5018
5019 2012-07-18 Masatake YAMATO <yamato@redhat.com>
5020
5021 * progmodes/sh-script.el (sh-imenu-generic-expression):
5022 Capture a function with `function' keyword and without parentheses
5023 like "function FOO" (bug#11856).
5024
5025 2012-07-18 Tassilo Horn <tassilo@member.fsf.org>
5026
5027 * window.el (split-window-sensibly): Make WINDOW argument
5028 optional.
5029
5030 2012-07-18 Chong Yidong <cyd@gnu.org>
5031
5032 * subr.el (keyboard-translate): Doc fix (Bug#7261).
5033
5034 * isearch.el (isearch-mode-map): Handle C-x 8 key translations,
5035 and make C-x 8 RET exit isearch (Bug#11439).
5036
5037 * international/iso-transl.el: Move isearch-mode-map key
5038 definitions to isearch.el.
5039
5040 2012-07-18 Stefan Monnier <monnier@iro.umontreal.ca>
5041
5042 * emacs-lisp/eieio.el: Adapt further to gv.el (bug#11970).
5043 (eieio-defclass): Use gv-define-setter when possible.
5044
5045 2012-07-18 Dmitry Antipov <dmantipov@yandex.ru>
5046
5047 Reflect recent changes in Fgarbage_collect.
5048 * emacs-lisp/chart.el (chart-emacs-storage): Change to
5049 reflect new format of data returned by Fgarbage_collect.
5050
5051 2012-07-17 Fabián Ezequiel Gallina <fgallina@cuca>
5052
5053 New utility functions + python-info-ppss-context fix (Bug#11910).
5054 * progmodes/python.el (python-info-beginning-of-block-statement-p)
5055 (python-info-ppss-comment-or-string-p): New functions.
5056 (python-info-ppss-context): Small fix for string check.
5057
5058 2012-07-17 Juri Linkov <juri@jurta.org>
5059
5060 * dired-aux.el (dired-do-async-shell-command): Doc fix.
5061 (dired-do-async-shell-command): Don't add `*' at the end of the
5062 command (Bug#11815).
5063 (dired-do-shell-command): Doc fix.
5064 (dired-shell-stuff-it): Strip the trailing "&" and ";" if any.
5065 Join the individual commands using either "&" or ";" as the
5066 separator depending on the values of these trailing characters.
5067 At the end re-add the trailing "&". (Bug#10598)
5068
5069 * simple.el (async-shell-command): Sync the interactive spec with
5070 `shell-command'. Doc fix.
5071 (shell-command): Doc fix.
5072
5073 2012-07-17 Juri Linkov <juri@jurta.org>
5074
5075 * descr-text.el (describe-char): Fix format args. (Bug#10129)
5076
5077 2012-07-17 Fabián Ezequiel Gallina <fgallina@cuca>
5078
5079 Final renames and doc fixes for movement commands (bug#11899).
5080 * progmodes/python.el (python-nav-beginning-of-statement):
5081 Rename from python-nav-statement-start.
5082 (python-nav-end-of-statement): Rename from
5083 python-nav-statement-end.
5084 (python-nav-beginning-of-block): Rename from
5085 python-nav-block-start.
5086 (python-nav-end-of-block): Rename from python-nav-block-end.
5087
5088 2012-07-17 Fabián Ezequiel Gallina <fgallina@cuca>
5089
5090 * progmodes/python.el (python-shell-send-string-no-output):
5091 Allow accept-process-output to quit, keeping shell process ready for
5092 future interactions (Bug#11868).
5093
5094 2012-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
5095
5096 * emacs-lisp/cl-macs.el (cl-progv): Use a properly prefixed var name.
5097
5098 * emacs-lisp/elint.el (elint-find-args-in-code):
5099 Use help-function-arglist, so as to handle lexical byte-code.
5100
5101 * progmodes/sh-script.el (sh-syntax-propertize-function): Fix last
5102 change (bug#11826).
5103
5104 2012-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
5105
5106 * progmodes/cc-engine.el (c-forward-sws, c-backward-sws):
5107 Avoid spuriously marking the buffer as modified because of c-is-sws.
5108
5109 * progmodes/sh-script.el (sh-syntax-propertize-function): Mark "${#VAR"
5110 as not-a-comment (bug#11946).
5111
5112 * emacs-lisp/macroexp.el (macroexp-let2): Use more informative names
5113 for uninterned vars.
5114
5115 * xt-mouse.el (xterm-mouse-translate-1, xterm-mouse-event-read):
5116 Use read-event since we don't really want to read chars but bytes.
5117
5118 * textmodes/tex-mode.el (tex-font-lock-keywords-1): Highlight not only
5119 $$..$$ but also $..$ using regexps (bug#11953).
5120 Use tex-verbatim for \url and \path.
5121 (tex-font-lock-keywords): Define as defconst like the others.
5122 (tex-common-initialization): Don't use font-lock-syntax-table any more.
5123
5124 2012-07-16 René Kyllingstad <Rene@Kyllingstad.com> (tiny change)
5125
5126 * international/mule-cmds.el (ucs-insert): Make it an obsolete
5127 alias for insert-char.
5128
5129 2012-07-16 Fabián Ezequiel Gallina <fgallina@cuca>
5130
5131 * progmodes/python.el: Simplified imenu implementation.
5132 (python-nav-jump-to-defun): Remove command.
5133 (python-mode-map): Use `imenu' instead.
5134 (python-nav-list-defun-positions-cache)
5135 (python-imenu-include-defun-type, python-imenu-make-tree)
5136 (python-imenu-subtree-root-label, python-imenu-index-alist):
5137 Remove vars.
5138 (python-nav-list-defun-positions, python-nav-read-defun)
5139 (python-imenu-tree-assoc, python-imenu-make-element-tree)
5140 (python-imenu-make-tree, python-imenu-create-index):
5141 Remove functions.
5142 (python-mode): Update to interact with imenu by setting
5143 `imenu-extract-index-name-function' only.
5144
5145 2012-07-16 Fabián Ezequiel Gallina <fgallina@cuca>
5146
5147 * progmodes/python.el: Enhancements to navigation commands.
5148 (python-nav-backward-sentence)
5149 (python-nav-forward-sentence): Remove.
5150 (python-nav-backward-statement, python-nav-forward-statement)
5151 (python-nav-statement-start, python-nav-statement-end)
5152 (python-nav-backward-block, python-nav-forward-block)
5153 (python-nav-block-start, python-nav-block-end)
5154 (python-nav-forward-sexp-function)
5155 (python-info-current-line-comment-p)
5156 (python-info-current-line-empty-p): New functions.
5157 (python-indent-context): Use `python-nav-statement-start'.
5158
5159 2012-07-16 Michael Albinus <michael.albinus@gmx.de>
5160
5161 * eshell/em-ls.el (eshell/ls): Use `apply'.
5162
5163 * eshell/em-unix.el (eshell/su, eshell/sudo): Apply Tramp's ad-hoc
5164 multi-hops, instead of Tramp internals.
5165
5166 * vc/ediff.el (ediff-directories): Add trailing space to prompts.
5167
5168 * vc/ediff-diff.el (ediff-same-file-contents): Handle the case,
5169 when F1 and F2 are located on different hosts.
5170
5171 2012-07-14 Chong Yidong <cyd@gnu.org>
5172
5173 * xt-mouse.el: Implement extended mouse coordinates (Bug#10642).
5174 (xterm-mouse-translate): Move code into xterm-mouse-translate-1.
5175 (xterm-mouse-translate-extended, xterm-mouse-translate-1)
5176 (xterm-mouse--read-event-sequence-1000)
5177 (xterm-mouse--read-event-sequence-1006): New functions. For old
5178 mouse protocol, handle M-mouse-X events correctly.
5179 (xterm-mouse-event): New arg specifying mouse protocol.
5180 (turn-on-xterm-mouse-tracking-on-terminal)
5181 (turn-off-xterm-mouse-tracking-on-terminal): Send DEC 1006
5182 sequence to toggle extended coordinates on newer XTerms.
5183 This appears to be harmless on terminals which do not support this.
5184
5185 2012-07-14 Leo Liu <sdl.web@gmail.com>
5186
5187 Add fringe bitmap indicators for flymake. (Bug#11253)
5188 * progmodes/flymake.el (flymake-highlight-line): Use fringe bitmaps.
5189 (flymake-make-overlay): New arg BITMAP.
5190 (flymake-error-bitmap, flymake-warning-bitmap)
5191 (flymake-fringe-indicator-position): New user variables.
5192
5193 * fringe.el: New bitmap exclamation-mark.
5194
5195 2012-07-14 Jan Djärv <jan.h.d@swipnet.se>
5196
5197 * progmodes/cc-cmds.el (c-defun-name): Recognize Objective-C methods
5198 also (Bug#7879).
5199
5200 2012-07-14 Chong Yidong <cyd@gnu.org>
5201
5202 * electric.el (electric-pair-post-self-insert-function): Fix pair
5203 insertion in empty-region case (Bug#11520).
5204
5205 2012-07-14 Chong Yidong <cyd@gnu.org>
5206
5207 * bindings.el: Consolidate ctl-x-r-map bindings.
5208 Bind copy-rectangle-as-kill to C-x r w.
5209
5210 * rect.el, register.el: Move bindings to bindings.el.
5211
5212 2012-07-14 Reuben Thomas <rrt@sc3d.org>
5213
5214 * rect.el (copy-rectangle-as-kill): New command (Bug#739).
5215
5216 2012-07-13 Andreas Schwab <schwab@linux-m68k.org>
5217
5218 * emacs-lisp/cl.el (labels): Remove spurious quote. (Bug#11938)
5219
5220 2012-07-13 Juanma Barranquero <lekktu@gmail.com>
5221
5222 * bindings.el (top): Use `mapc' instead of `mapcar'.
5223
5224 * loadup.el (top): Remove bogus `if' choice (brought by 2008-06-21T01:38:39Z!monnier@iro.umontreal.ca).
5225
5226 2012-07-13 Michael Albinus <michael.albinus@gmx.de>
5227
5228 * progmodes/sql.el (sql-comint): Suppress the check for program on
5229 remote hosts. Reported by Francis Devereux <francis@devrx.org>.
5230 (Bug#11908)
5231
5232 2012-07-13 Chong Yidong <cyd@gnu.org>
5233
5234 * bindings.el: Assign a non-nil permanent-local property to
5235 per-buffer variables which lack a default value (Bug#11930).
5236
5237 * help-fns.el (describe-variable): In the "automatically becomes
5238 local" notice, take note of permanent-local variables.
5239
5240 2012-07-13 Chong Yidong <cyd@gnu.org>
5241
5242 * files.el (toggle-read-only): Doc fix and code cleanup. New arg
5243 to allow printing the message when called from Lisp.
5244
5245 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
5246 Remove toggle-read-only.
5247
5248 * bs.el (bs-toggle-readonly):
5249 * buff-menu.el (Buffer-menu-toggle-read-only):
5250 Remove with-no-warnings around toggle-read-only.
5251
5252 * ffap.el (ffap--toggle-read-only): Accept a list of buffers.
5253 Remove with-no-warnings around toggle-read-only.
5254 (ffap-read-only, ffap-read-only-other-window)
5255 (ffap-read-only-other-frame): Callers changed.
5256
5257 * help-mode.el: Don't require view package.
5258 (help-mode-finish): Set buffer-read-only instead of calling
5259 toggle-read-only.
5260
5261 * bindings.el (mode-line-toggle-read-only):
5262 * dired.el (dired-toggle-read-only):
5263 * ibuffer.el (ibuffer-do-toggle-read-only): Call toggle-read-only
5264 with non-nil second arg.
5265
5266 * emacs-lisp/eieio-custom.el (eieio-customize-object):
5267 * vc/ediff.el (ediff-set-read-only-in-buf-A): Set buffer-read-only
5268 directly.
5269
5270 2012-07-12 Eli Zaretskii <eliz@gnu.org>
5271
5272 * emacs-lisp/bytecomp.el (byte-recompile-directory): Use cl-incf,
5273 not incf.
5274
5275 2012-07-11 Stefan Monnier <monnier@iro.umontreal.ca>
5276
5277 More CL cleanups and reduction of use of cl.el.
5278 * woman.el, winner.el, vc/vc-rcs.el, vc/vc-hooks.el, vc/vc-hg.el:
5279 * vc/vc-git.el, vc/vc-dir.el, vc/vc-bzr.el, vc/vc-annotate.el:
5280 * textmodes/tex-mode.el, textmodes/sgml-mode.el, tar-mode.el:
5281 * strokes.el, ses.el, server.el, progmodes/js.el, progmodes/gdb-mi.el:
5282 * progmodes/flymake.el, progmodes/ebrowse.el, progmodes/compile.el:
5283 * play/tetris.el, play/snake.el, play/pong.el, play/landmark.el:
5284 * play/hanoi.el, play/decipher.el, play/5x5.el, nxml/nxml-mode.el:
5285 * net/secrets.el, net/quickurl.el, midnight.el, mail/footnote.el:
5286 * image-dired.el, ibuffer.el, ibuf-macs.el, ibuf-ext.el, hexl.el:
5287 * eshell/eshell.el, eshell/esh-io.el, eshell/esh-ext.el:
5288 * eshell/esh-cmd.el, eshell/em-ls.el, eshell/em-hist.el:
5289 * eshell/em-cmpl.el, eshell/em-banner.el:
5290 * calendar/parse-time.el: Use cl-lib.
5291 * wid-browse.el, wdired.el, vc/vc.el, vc/vc-mtn.el, vc/vc-cvs.el:
5292 * vc/vc-arch.el, tree-widget.el, textmodes/texinfo.el:
5293 * textmodes/refill.el, textmodes/css-mode.el, term/tvi970.el:
5294 * term/ns-win.el, term.el, shell.el, ps-samp.el:
5295 * progmodes/perl-mode.el, progmodes/pascal.el, progmodes/gud.el:
5296 * progmodes/glasses.el, progmodes/etags.el, progmodes/cwarn.el:
5297 * play/gamegrid.el, play/bubbles.el, novice.el, notifications.el:
5298 * net/zeroconf.el, net/xesam.el, net/snmp-mode.el, net/mairix.el:
5299 * net/ldap.el, net/eudc.el, net/browse-url.el, man.el:
5300 * mail/mailheader.el, mail/feedmail.el: Don't use CL.
5301 * ibuf-ext.el (ibuffer-mark-old-buffers): Use float-time.
5302 * eshell/esh-opt.el (eshell-eval-using-options): Quote code with
5303 `lambda' rather than with `quote'.
5304 (eshell-do-opt): Adjust accordingly.
5305 (eshell-process-option): Simplify.
5306 * eshell/esh-var.el:
5307 * eshell/em-script.el: Require `esh-opt' for eshell-eval-using-options.
5308 * emacs-lisp/pcase.el (pcase--dontcare-upats, pcase--let*)
5309 (pcase--expand, pcase--u1): Rename pcase's internal `dontcare' pattern
5310 to `pcase--dontcare'.
5311 * emacs-lisp/cl.el (labels): Mark obsolete.
5312 (cl--letf, letf): Move to cl-lib.
5313 (cl--letf*, letf*): Remove.
5314 * emacs-lisp/cl-lib.el (cl-nth-value): Use defalias.
5315 * emacs-lisp/cl-macs.el (cl-dolist, cl-dotimes): Add indent rule.
5316 (cl-progv): Rewrite.
5317 (cl--letf, cl-letf): Move from cl.el.
5318 (cl-letf*): New macro.
5319 * emacs-lisp/cl-extra.el (cl--progv-before, cl--progv-after): Remove.
5320
5321 2012-07-11 Michael Albinus <michael.albinus@gmx.de>
5322
5323 * net/ange-ftp.el (ange-ftp-cf1): Update the files cache.
5324
5325 2012-07-11 Chong Yidong <cyd@gnu.org>
5326
5327 * vc/log-edit.el (log-edit-vc-backend): New variable.
5328 (log-edit): Doc fix.
5329
5330 * vc/vc-dispatcher.el (vc-log-edit): New args. Use PARAMS
5331 argument of log-edit to set up all local variables.
5332 (vc-start-logentry): New optional arg specifying VC backend.
5333
5334 * vc/vc.el (vc-checkin): Use it.
5335 (vc-deduce-fileset): Handle Log Edit buffers.
5336 (vc-diff): Make first argument optional too.
5337
5338 * vc/log-view.el (log-view-vc-fileset, log-view-vc-backend): Doc fix.
5339
5340 2012-07-10 Michael Albinus <michael.albinus@gmx.de>
5341
5342 * eshell/esh-ext.el (eshell-remote-command): Remove remote part of
5343 command, just in case. The function is not needed anymore.
5344 (eshell-external-command): Do not call `eshell-remote-command'.
5345
5346 2012-07-10 Stefan Monnier <monnier@iro.umontreal.ca>
5347
5348 Reduce use of (require 'cl).
5349 * vc/smerge-mode.el, vc/pcvs.el, vc/pcvs-util.el, vc/pcvs-info.el:
5350 * vc/diff-mode.el, vc/cvs-status.el, uniquify.el, scroll-bar.el:
5351 * register.el, progmodes/sh-script.el, net/gnutls.el, net/dbus.el:
5352 * msb.el, mpc.el, minibuffer.el, international/ucs-normalize.el:
5353 * international/quail.el, info-xref.el, imenu.el, image-mode.el:
5354 * font-lock.el, filesets.el, edmacro.el, doc-view.el, bookmark.el:
5355 * battery.el, avoid.el, abbrev.el: Use cl-lib.
5356 * vc/pcvs-parse.el, vc/pcvs-defs.el, vc/log-view.el, vc/log-edit.el:
5357 * vc/diff.el, simple.el, pcomplete.el, lpr.el, comint.el, loadhist.el:
5358 * jit-lock.el, international/iso-ascii.el, info.el, frame.el, bs.el:
5359 * emulation/crisp.el, electric.el, dired.el, cus-dep.el, composite.el:
5360 * calculator.el, autorevert.el, apropos.el: Don't require CL.
5361 * emacs-lisp/bytecomp.el (byte-recompile-directory, display-call-tree)
5362 (byte-compile-unfold-bcf, byte-compile-check-variable):
5363 * emacs-lisp/byte-opt.el (byte-compile-trueconstp)
5364 (byte-compile-nilconstp):
5365 * emacs-lisp/autoload.el (make-autoload): Use pcase.
5366 * face-remap.el (text-scale-adjust): Simplify pcase patterns.
5367
5368 * emacs-lisp/gv.el (cond): Make it a valid place.
5369 (if): Simplify slightly.
5370
5371 * emacs-lisp/pcase.el (pcase): Accept self-quoting exps as "upatterns".
5372 (pcase--self-quoting-p): New function.
5373 (pcase--u1): Use it.
5374
5375 2012-07-10 Glenn Morris <rgm@gnu.org>
5376
5377 * emacs-lisp/authors.el (authors-fixed-entries):
5378 (authors-renamed-files-alist): Update for configure.in -> configure.ac.
5379
5380 2012-07-09 Paul Eggert <eggert@cs.ucla.edu>
5381
5382 Rename configure.in to configure.ac (Bug#11603).
5383 * emacs-lisp/authors.el (authors-canonical-file-name):
5384 * progmodes/autoconf.el (autoconf-mode):
5385 Prefer configure.ac to configure.in.
5386
5387 2012-07-08 Chong Yidong <cyd@gnu.org>
5388
5389 * mouse.el (mouse-drag-line): Rewrite the track-mouse loop.
5390 Implement the mouse-1-click-follows-link handling properly.
5391
5392 * info.el (Info-link-keymap): Use follow-link mechanism for
5393 header-line links (Bug#374).
5394
5395 * simple.el (deactivate-mark): Do not set the primary selection
5396 if another program has acquired it (Bug#11772).
5397
5398 2012-07-07 Kevin Ryde <user42@zip.com.au>
5399
5400 * woman.el (woman-strings): Fix double-quote handling (Bug#1151).
5401 (woman-decode-region): Replace escaped-escapes without destroying
5402 bold or underline (Bug#11552).
5403 (woman2-process-escapes): Handle nofill regions (Bug#11591).
5404
5405 2012-07-07 Chong Yidong <cyd@gnu.org>
5406
5407 * simple.el (yank-pop-change-selection): Doc fix (Bug#11361).
5408 (interprogram-cut-function, interprogram-paste-function):
5409 Mention that we typically mean the clipboard.
5410
5411 2012-07-06 Glenn Morris <rgm@gnu.org>
5412
5413 * kmacro.el (kmacro-call-macro): Restore repeat message. (Bug#11817)
5414
5415 * files.el (toggle-read-only): Restrict message to interactive use.
5416
5417 2012-07-06 Michael Albinus <michael.albinus@gmx.de>
5418
5419 * net/tramp.el (tramp-restricted-shell-hosts-alist): New defcustom.
5420
5421 * net/tramp-sh.el (tramp-maybe-open-connection): Handle it.
5422
5423 2012-07-06 Glenn Morris <rgm@gnu.org>
5424
5425 * Makefile.in (compile-one-process): Rename from "recompile".
5426
5427 * Makefile.in (bzr-update): "compile" is the same as "recompile
5428 autoloads", but parallelizable, so use that instead.
5429
5430 2012-07-06 Dmitry Gutov <dgutov@yandex.ru>
5431
5432 * window.el (quit-window): Always restore window height when
5433 it's saved in quit-restore parameter (Bug#11810).
5434
5435 2012-07-06 Glenn Morris <rgm@gnu.org>
5436
5437 * simple.el (kill-whole-line): Doc tweak.
5438
5439 2012-07-06 Eli Zaretskii <eliz@gnu.org>
5440
5441 * files.el (file-relative-name): Compare file names
5442 case-insensitively if on MS-Windows or MS-DOS, or if
5443 read-file-name-completion-ignore-case is non-nil. Don't use
5444 case-fold-search for this purpose. (Bug#11827)
5445
5446 2012-07-17 Andreas Schwab <schwab@linux-m68k.org>
5447
5448 * calendar/cal-dst.el (calendar-current-time-zone):
5449 Return calendar-current-time-zone-cache if non-nil.
5450
5451 2012-07-17 Masatake YAMATO <yamato@redhat.com>
5452 2012-07-06 Andreas Schwab <schwab@linux-m68k.org>
5453
5454 * calendar/cal-dst.el (calendar-current-time-zone):
5455 Return calendar-current-time-zone-cache if non-nil.
5456
5457 2012-07-06 Glenn Morris <rgm@gnu.org>
5458
5459 * Makefile.in (cvs-update): Remove old alias.
5460
5461 2012-07-05 Michael Albinus <michael.albinus@gmx.de>
5462
5463 Sync with Tramp 2.2.6-pre.
5464
5465 * net/tramp.el (tramp-drop-volume-letter): Provide an XEmacs
5466 compatible declaration.
5467
5468 * net/tramp-cmds.el (tramp-append-tramp-buffers):
5469 Protect `list-load-path-shadows' call.
5470
5471 * net/tramp-compat.el (top): Require packages, which aren't
5472 autoloaded anymore for XEmacs. Protect call of
5473 `tramp-file-name-handler' by `tramp-compat-funcall', pacifying the
5474 compiler. Do not require tramp-util.el and tramp-vc.el anymore,
5475 it hurts at least for SXEmacs.
5476 (tramp-compat-temporary-file-directory): In XEmacs, there is no
5477 standard-value for `temporary-file-directory'.
5478
5479 * net/tramp-sh.el (tramp-do-directory-files-and-attributes-with-stat):
5480 Redirect stderr to /dev/null.
5481 (tramp-sh-handle-write-region): uid and gid can be floats.
5482 Reported by Russell Sim <russell.sim@gmail.com>.
5483 (tramp-sh-handle-vc-registered): Hide errors.
5484 (tramp-vc-file-name-handler): Use dummy results for `process-file'
5485 and `start-file-process'.
5486 (tramp-maybe-open-connection): Check also whether `non-essential'
5487 is bound.
5488
5489 2012-07-04 Chong Yidong <cyd@gnu.org>
5490
5491 * xml.el (xml--parse-buffer): Use xml-syntax-table.
5492 (xml-parse-tag): Likewise, and avoid changing entity tables.
5493 (xml-syntax-table): Define from scratch, making sure not to give
5494 x2000 and other Unicode spaces whitespace syntax, since those are
5495 not spaces in XML.
5496 (xml-parse-fragment): Delete unused function.
5497 (xml-name-start-char-re, xml-name-char-re, xml-name-re)
5498 (xml-names-re, xml-nmtoken-re, xml-nmtokens-re, xml-char-ref-re)
5499 (xml-entity-ref, xml-pe-reference-re)
5500 (xml-reference-re,xml-att-value-re, xml-tokenized-type-re)
5501 (xml-notation-type-re, xml-enumeration-re, xml-enumerated-type-re)
5502 (xml-att-type-re, xml-default-decl-re, xml-att-def-re)
5503 (xml-entity-value-re): Use syntax references in regexps where
5504 possible; no need to define inside a let-binding.
5505 (xml-parse-dtd): Use xml-pe-reference-re.
5506 (xml-entity-or-char-ref-re): New defconst.
5507 (xml-parse-string, xml-substitute-special): Use it.
5508
5509 2012-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
5510
5511 * files.el (locate-dominating-file): Allow `name' to be a predicate.
5512 (find-file--read-only): New function.
5513 (find-file-read-only, find-file-read-only-other-window)
5514 (find-file-read-only-other-frame): Use it.
5515 (insert-file-contents-literally): Don't `fset'.
5516 (get-free-disk-space): Use locate-dominating-file.
5517
5518 * emacs-lisp/bytecomp.el (byte-compile): Don't signal an error if the
5519 function is already compiled.
5520
5521 * xml.el (xml-name-regexp): Remove, redundant. Use xml-name-re.
5522
5523 2012-07-03 Michael Albinus <michael.albinus@gmx.de>
5524
5525 * vc/ediff-diff.el (ediff-same-file-contents): Fix it for remote
5526 files on the same host.
5527
5528 2012-07-03 Andreas Schwab <schwab@linux-m68k.org>
5529
5530 * help-fns.el (describe-function-1): Only call
5531 help-fns--autoloaded-p when we have a file name. (Bug#11848)
5532
5533 2012-07-03 Chong Yidong <cyd@gnu.org>
5534
5535 * xml.el: Protect parser against XML bombs.
5536 (xml-entity-expansion-limit): New variable.
5537 (xml-parse-string, xml-substitute-special): Use it.
5538 (xml-parse-dtd): Avoid infloop if the DTD is not terminated.
5539
5540 2012-07-03 Glenn Morris <rgm@gnu.org>
5541
5542 * progmodes/bug-reference.el (bug-reference-bug-regexp):
5543 Allow linking to specific messages in debbugs reports (eg 123#5).
5544
5545 2012-07-02 Chong Yidong <cyd@gnu.org>
5546
5547 * xml.el: Fix entity and character reference expansion, allowing
5548 them to expand into markup as per XML spec.
5549 (xml-default-ns): New variable.
5550 (xml-entity-alist): Use XML spec definitions for lt and amp.
5551 (xml-parse-region): Make first two arguments optional.
5552 Discard text properties.
5553 (xml-parse-tag-1): New function, spun off from xml-parse-tag.
5554 All callers changed.
5555 (xml-parse-tag): Call xml-parse-tag-1. For backward
5556 compatibility, this function should not modify buffer contents.
5557 (xml-parse-tag-1): Fix opening-tag regexp.
5558 (xml-parse-string): Rewrite, handling entity and character
5559 references properly.
5560 (xml--entity-replacement-text): Signal an error if a parameter
5561 entity is undefined.
5562
5563 2012-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
5564
5565 * comint.el (comint-output-filter): Filter out repeated prompts.
5566
5567 * net/ange-ftp.el (ange-ftp-expand-file-name): Use ange-ftp-ftp-name
5568 and file-name-absolute-p.
5569 (ange-ftp-file-exists-p): Use ange-ftp-file-exists-p for
5570 internal calls.
5571
5572 2012-07-02 Paul Eggert <eggert@cs.ucla.edu>
5573
5574 Spelling fixes.
5575 * emacs-lisp/bytecomp.el (byte-compile--reify-function):
5576 Rename from byte-compile--refiy-function. All uses changed.
5577
5578 2012-07-01 Chong Yidong <cyd@gnu.org>
5579
5580 * xml.el (xml--parse-buffer): New function. Move most of
5581 xml-parse-region here.
5582 (xml-parse-region): Copy region into a temporary buffer, since
5583 parameter entity substitution requires changing buffer contents.
5584 Use xml--parse-buffer.
5585 (xml-parse-file): Use xml--parse-buffer.
5586 (xml-parse-dtd): Make parameter entity substitution work right.
5587 Use proper regexps for ELEMENT declarations (Bug#7172).
5588
5589 2012-06-30 Glenn Morris <rgm@gnu.org>
5590
5591 * comint.el (follow-comint-scroll-to-bottom): Fix declaration.
5592
5593 * net/secrets.el, net/tramp-gvfs.el, net/xesam.el, net/zeroconf.el:
5594 Remove outdated and unnecessary dbus declarations.
5595
5596 2012-06-30 Eli Zaretskii <eliz@gnu.org>
5597
5598 * emacs-lisp/timer.el (timer-until): Subtract results of
5599 float-time, instead of taking float-time of the result of
5600 time-subtract, since float-time signals an error for negative time
5601 arguments.
5602
5603 2012-06-30 Chong Yidong <cyd@gnu.org>
5604
5605 * xml.el (xml-*-re): Convert defvars into defconsts, and
5606 eval-and-compile them so eval-and-compile works on derivatives.
5607 (xml--entity-replacement-text): Use eval-and-comple.
5608
5609 2012-06-30 Michael Albinus <michael.albinus@gmx.de>
5610
5611 * vc/vc-git.el (vc-git-registered): Use cache property
5612 `git-registered'.
5613 (vc-git-mode-line-string): Call `vc-working-revision' instead of
5614 `vc-git-working-revision' in order to benefit from the cache.
5615 (vc-git-root): Use cache property `git-root'. (Bug#11757)
5616
5617 2012-06-30 Dmitry Gutov <dgutov@yandex.ru>
5618
5619 * vc/vc-hooks.el (vc-before-save): Clear cache if file has been
5620 removed (likely outside Emacs). (Bug#11757)
5621
5622 2012-06-30 Stefan Monnier <monnier@iro.umontreal.ca>
5623
5624 * emacs-lisp/cl-lib.el: Require macroexp.
5625
5626 2012-06-30 Chong Yidong <cyd@gnu.org>
5627
5628 * xml.el: Implement XML parameter entities.
5629 (xml-parameter-entity-alist): New variable.
5630 (xml-parse-region, xml-parse-fragment): Preserve previous values
5631 of xml-entity-alist and xml-parameter-entity-alist, so that
5632 repeated calls on different documents do not change them.
5633 (xml-parse-tag): Fix doctype regexp.
5634 (xml--entity-replacement-text): New function.
5635 (xml-parse-dtd): Use it. Don't handle system entities; doing that
5636 properly requires url retrieval which is unimplemented.
5637 (xml-escape-string): Doc fix.
5638
5639 2012-06-30 Stefan Monnier <monnier@iro.umontreal.ca>
5640
5641 * emacs-lisp/cl-lib.el (cl-pushnew): Use macroexp-let2.
5642
5643 2012-06-29 Dmitry Antipov <dmantipov@yandex.ru>
5644
5645 * fringe.el (fringe-mode): Doc fix.
5646
5647 2012-06-29 Michael Albinus <michael.albinus@gmx.de>
5648
5649 * net/ange-ftp.el (ange-ftp-get-passwd): Throw if `non-essential'
5650 is non-nil.
5651 (ange-ftp-ignore-errors-if-non-essential): New defmacro.
5652 (ange-ftp-file-name-all-completions): Use it. (Bug#11808)
5653
5654 2012-06-29 Andreas Schwab <schwab@linux-m68k.org>
5655
5656 * calendar/cal-dst.el (calendar-current-time-zone):
5657 Return calendar-current-time-zone-cache if non-nil.
5658
5659 2012-06-29 Masatake YAMATO <yamato@redhat.com>
5660
5661 * progmodes/which-func.el (which-func-format):
5662 Add mouse-face. (Bug#11698)
5663
5664 2012-06-29 Leo Liu <sdl.web@gmail.com>
5665
5666 * textmodes/enriched.el (enriched-next-annotation): Use eq (Bug#11528).
5667
5668 2012-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
5669
5670 * minibuffer.el (minibuffer-confirm-exit-commands):
5671 Add completion-at-point (bug#11725).
5672
5673 2012-06-29 Glenn Morris <rgm@gnu.org>
5674
5675 * progmodes/f90.el (f90-font-lock-keywords-2):
5676 Add some preprocessor elements. (Bug#10499)
5677
5678 2012-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
5679
5680 * progmodes/cperl-mode.el (cperl-update-syntaxification):
5681 Use syntax-propertize (bug#11739).
5682
5683 2012-06-28 Juanma Barranquero <lekktu@gmail.com>
5684
5685 * emacs-lisp/cl-lib.el (cl-pushnew): Don't capture X (bug#11811).
5686
5687 2012-06-28 Julien Danjou <julien@danjou.info>
5688
5689 * term.el (term-handle-colors-array): Use a set of new faces to
5690 color the terminal. Also uses :inverse-video property.
5691 (term-default-fg-color): Set to nil by default, deprecate in favor
5692 of `term-face'.
5693 (term-default-bg-color): Set to nil by default, deprecate in favor
5694 of `term-face'.
5695 (term-current-face): Use `term-face' by default.
5696 (term-bold-attribute): Variable deleted.
5697
5698 2012-06-28 Glenn Morris <rgm@gnu.org>
5699
5700 * simple.el (completion-list-mode-finish):
5701 Don't use toggle-read-only. (Since completion-list-mode has
5702 a special mode-class, it wasn't doing anything extra anyway.)
5703
5704 2012-06-28 Stefan Monnier <monnier@iro.umontreal.ca>
5705
5706 Make inlining of other-mode interpreted functions work (bug#11799).
5707 * emacs-lisp/bytecomp.el (byte-compile--refiy-function): New fun.
5708 (byte-compile): Use it to fix compilation of lexical-binding closures.
5709 * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Compile the
5710 function, if needed.
5711
5712 2012-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
5713
5714 * help-mode.el (help-make-xrefs): Don't just withstand
5715 cyclic-variable-indirection but any error in documentation-property.
5716
5717 * loadup.el (purify-flag): Pre-grow the hash-table to reduce the
5718 memory use.
5719 * bindings.el (bindings--define-key): New function.
5720 * vc/vc-hooks.el, replace.el, menu-bar.el, international/mule-cmds.el:
5721 * emacs-lisp/lisp-mode.el, buff-menu.el, bookmark.el:
5722 * bindings.el: Use it to purecopy define-key bindings.
5723
5724 * textmodes/rst.el (rst-adornment-faces-alist): Avoid copy-list.
5725
5726 * emacs-lisp/cl.el (flet): Mark obsolete.
5727 * emacs-lisp/cl-macs.el (cl-flet*): New macro.
5728 * vc/vc-rcs.el (vc-rcs-annotate-command, vc-rcs-parse):
5729 * progmodes/js.el (js-c-fill-paragraph):
5730 * progmodes/ebrowse.el (ebrowse-switch-member-buffer-to-sibling-class)
5731 (ebrowse-switch-member-buffer-to-derived-class):
5732 * play/5x5.el (5x5-solver): Use cl-flet.
5733
5734 * emacs-lisp/cl.el: Use lexical-binding. Fix flet (bug#11780).
5735 (cl--symbol-function): New macro.
5736 (cl--letf, cl--letf*): Use it.
5737
5738 * emacs-lisp/easy-mmode.el (easy-mmode-pretty-mode-name):
5739 Strip "toggle-" if any.
5740
5741 2012-06-27 Glenn Morris <rgm@gnu.org>
5742
5743 * info.el (Info-default-directory-list): Move here from paths.el.
5744 * paths.el: Remove file, which is now empty.
5745 * loadup.el: No longer load "paths".
5746
5747 * custom.el (custom-initialize-delay): Doc fix.
5748
5749 * eshell/em-alias.el, eshell/em-banner.el, eshell/em-basic.el:
5750 * eshell/em-cmpl.el, eshell/em-dirs.el, eshell/em-glob.el:
5751 * eshell/em-hist.el, eshell/em-ls.el, eshell/em-pred.el:
5752 * eshell/em-prompt.el, eshell/em-rebind.el, eshell/em-script.el:
5753 * eshell/em-smart.el, eshell/em-term.el, eshell/em-unix.el:
5754 * eshell/em-xtra.el: Replace eshell-defgroup with "(progn (defgroup".
5755 * eshell/eshell.el (eshell-defgroup): Remove alias.
5756
5757 2012-06-27 Chong Yidong <cyd@gnu.org>
5758
5759 * help.el (help-enable-auto-load): New variable.
5760
5761 * help-fns.el (help-fns--autoloaded-p): New function.
5762 (describe-function-1): Refer to a function as "autoloaded" if it
5763 was autoloaded at any time in the past. Perform autoloading if
5764 help-enable-auto-load is non-nil.
5765
5766 2012-06-26 Eli Zaretskii <eliz@gnu.org>
5767
5768 * makefile.w32-in (compile, compile-always): Depend on
5769 update-subdirs, not on subdirs.el. Otherwise, several different
5770 sub-targets of 'bootstrap' running in parallel could
5771 simultaneously write to subdirs.el, producing a garbled file.
5772
5773 2012-06-26 Sam Steingold <sds@gnu.org>
5774
5775 * files.el (file-name-base): New convenience function.
5776 * autoinsert.el, cus-dep.el, doc-view.el, image-dired.el:
5777 * woman.el, eshell/esh-cmd.el, progmodes/ada-xref.el:
5778 * progmodes/cc-defs.el, progmodes/cperl-mode.el:
5779 * progmodes/flymake.el, progmodes/gud.el, progmodes/idlwave.el:
5780 * textmodes/ispell.el, textmodes/reftex-ref.el:
5781 * textmodes/tex-mode.el: Use it.
5782 Did not touch cedet and org because they are maintained elsewhere.
5783
5784 2012-06-26 Martin Rudalics <rudalics@gmx.at>
5785
5786 * calendar/calendar.el (calendar-exit): Don't try to delete or
5787 iconify last frame. See:
5788 http://lists.gnu.org/archive/html/emacs-devel/2012-06/msg00372.html
5789
5790 2012-06-25 Jim Diamond <Jim.Diamond@AcadiaU.ca> (tiny change)
5791
5792 * server.el (server-process-filter): Remember dir in the
5793 process's `server-client-directory' properties.
5794
5795 2012-06-24 Chong Yidong <cyd@gnu.org>
5796
5797 * xml.el (xml-parse-tag): Correctly handle comment embedded in
5798 non-tag text.
5799
5800 2012-06-23 Juanma Barranquero <lekktu@gmail.com>
5801
5802 * makefile.w32-in (COMPILE_FIRST): Synch with changes in 2012-06-22T21:24:54Z!monnier@iro.umontreal.ca.
5803
5804 2012-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
5805
5806 * help-fns.el (describe-variable): Don't croak when doc is not found.
5807 * vc/pcvs.el (cvs-retrieve-revision): Avoid toggle-read-only.
5808 * menu-bar.el (menu-bar-line-wrapping-menu): Purecopy a tiny bit more.
5809 * emacs-lisp/syntax.el (syntax-ppss): Simplify with new `if' place.
5810 * emacs-lisp/smie.el (smie-next-sexp): CSE.
5811 * emacs-lisp/macroexp.el (macroexp-let2): Fix edebug spec and avoid
5812 ((lambda ..) ..).
5813 * emacs-lisp/eieio.el (eieio-oref, slot-value): Use simpler defsetf.
5814
5815 2012-06-23 Chong Yidong <cyd@gnu.org>
5816
5817 * info.el (Info-mouse-follow-link): Accept symbol values of
5818 link-args. Select window; suggested by Gerhard Kahl (Bug#11672).
5819 (Info-fontify-node): Use Info-link-keymap for all navigation
5820 buttons, with link-args property to perform the desired action.
5821 (Info-link-keymap): Doc fix.
5822 (Info-next-link-keymap, Info-prev-link-keymap)
5823 (Info-up-link-keymap): Delete now-unused keymaps.
5824
5825 2012-06-23 Chong Yidong <cyd@gnu.org>
5826
5827 * mouse.el (mouse-drag-track): Deactivate the mark before popping.
5828
5829 * progmodes/python.el (python-skeleton-define): Mark abbrevs as
5830 system abbrevs.
5831
5832 * ansi-color.el (ansi-color-apply-on-region): Doc fix.
5833
5834 2012-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
5835
5836 * emacs-lisp/cl-macs.el (cl--make-usage-args): Handle improper lists
5837 (bug#11719).
5838
5839 * minibuffer.el (completion--twq-try): Try to fail more gracefully when
5840 the requote function doesn't work properly (bug#11714).
5841
5842 2012-06-23 Glenn Morris <rgm@gnu.org>
5843
5844 * pcmpl-rpm.el (pcmpl-rpm-packages): Give status messages.
5845
5846 2012-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
5847
5848 Further GV/CL cleanups.
5849 * emacs-lisp/gv.el (gv-get): Autoload functions to find their
5850 gv-expander.
5851 (gv--defun-declaration): New function.
5852 (defun-declarations-alist): Use it.
5853 (gv-define-modify-macro, gv-pushnew!, gv-inc!, gv-dec!): Remove.
5854 (gv-place): Autoload.
5855 * emacs-lisp/cl.el (cl--dotimes, cl--dolist): Remember subr.el's
5856 original definition of dotimes and dolist.
5857 * emacs-lisp/cl-macs.el (cl-expr-access-order): Remove unused.
5858 (cl-dolist, cl-dotimes): Use `dolist' and `dotimes'.
5859 * emacs-lisp/cl-lib.el: Move gv handlers from cl-macs to here.
5860 (cl-fifth, cl-sixth, cl-seventh, cl-eighth)
5861 (cl-ninth, cl-tenth): Move gv handler to the function's definition.
5862 * emacs-lisp/cl-extra.el (cl-subseq, cl-get, cl-getf): Move gv handler
5863 to the function's definition.
5864 * Makefile.in (COMPILE_FIRST): Re-order to speed it up by about 50%.
5865 * window.el:
5866 * files.el:
5867 * faces.el:
5868 * env.el: Don't use CL.
5869
5870 2012-06-22 Paul Eggert <eggert@cs.ucla.edu>
5871
5872 Support higher-resolution time stamps (Bug#9000).
5873
5874 * calendar/time-date.el (with-decoded-time-value): New arg
5875 PICO-SYMBOL in VARLIST. It's optional, for backward compatibility.
5876 (encode-time-value): New optional arg PICO. New type 3.
5877 (time-to-seconds) [!float-time]: Support the new picoseconds
5878 component if it's used.
5879 (seconds-to-time, time-subtract, time-add):
5880 Support ps-resolution time stamps as well.
5881
5882 * emacs-lisp/timer.el (timer): New component psecs. All uses changed.
5883 (timerp): Timer vectors now have length 9, not 8.
5884 (timer--time): Support new-style (4-part) time stamps.
5885 (timer-next-integral-multiple-of-time): Time stamps now have
5886 picosecond resolution, so take a bit more care about rounding.
5887 (timer-relative-time, timer-inc-time): New optional arg psecs.
5888 (timer-set-time-with-usecs): Set psecs to 0.
5889 (timer--activate): Check psecs component, too.
5890
5891 * proced.el (proced-time-lessp): Support ps-resolution stamps.
5892
5893 2012-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
5894
5895 * icomplete.el (icomplete-minibuffer-setup, icomplete-completions):
5896 Move the non-essential binding to the post/pre-command-hook where it is
5897 more obviously correct.
5898
5899 * subr.el (read-passwd): Don't use a history at all.
5900 * savehist.el (savehist-save): Remove password saved accidentally
5901 because of the above bug.
5902
5903 2012-06-22 Bastien Guerry <bzg@gnu.org>
5904
5905 * files.el (toggle-read-only): Display a message telling whether
5906 the buffer is read-only or not (bug#11726).
5907
5908 2012-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
5909
5910 * emacs-lisp/gv.el: New file.
5911 * subr.el (push, pop): Extend to generalized variables.
5912 * loadup.el (macroexp): Unload if preloaded and uncompiled (bug#11657).
5913 * emacs-lisp/cl-lib.el (cl-pop, cl-push, cl--set-nthcdr): Remove.
5914 * emacs-lisp/cl-macs.el: Require gv. Use gv-define-setter,
5915 gv-define-simple-setter, and gv-define-expander.
5916 Remove setf-methods defined in gv. Rename cl-setf -> setf.
5917 (cl-setf, cl-do-pop, cl-get-setf-method): Remove.
5918 (cl-letf, cl-letf*, cl-define-modify-macro, cl-defsetf)
5919 (cl-define-setf-expander, cl-struct-setf-expander): Move to cl.el.
5920 (cl-remf, cl-shiftf, cl-rotatef, cl-callf, cl-callf2): Rewrite with
5921 gv-letplace.
5922 (cl-defstruct): Don't define setf-method any more.
5923 * emacs-lisp/cl.el (flet): Don't autoload.
5924 (cl--letf, letf, cl--letf*, letf*, cl--gv-adapt)
5925 (define-setf-expander, defsetf, define-modify-macro)
5926 (cl-struct-setf-expander): Move from cl-lib.el.
5927 * emacs-lisp/syntax.el:
5928 * emacs-lisp/ewoc.el:
5929 * emacs-lisp/smie.el:
5930 * emacs-lisp/cconv.el:
5931 * emacs-lisp/timer.el: Rename cl-setf -> setf, cl-push -> push.
5932 (timer--time): Use gv-define-simple-setter.
5933 * emacs-lisp/macroexp.el (macroexp-let2): Rename from macroexp-let²
5934 to avoid coding-system problems in subr.el. Adjust all users.
5935 (macroexp--maxsize, macroexp-small-p): New functions.
5936 * emacs-lisp/bytecomp.el (byte-compile-file): Don't use cl-letf.
5937 * scroll-bar.el (scroll-bar-mode):
5938 * simple.el (auto-fill-mode, overwrite-mode, binary-overwrite-mode)
5939 (normal-erase-is-backspace-mode): Don't use the `eq' place.
5940 * winner.el (winner-configuration, winner-make-point-alist)
5941 (winner-set-conf, winner-get-point, winner-set): Don't abuse letf.
5942 * files.el (locate-file-completion-table): Avoid list*.
5943
5944 2012-06-22 Chong Yidong <cyd@gnu.org>
5945
5946 * dired-aux.el (dired-do-create-files): Doc fix (Bug#11327).
5947 (dired-create-files): Doc fix (Bug#11329).
5948 (dired-do-copy): Doc fix (Bug#11334).
5949 (dired-mark-read-string): Doc fix (Bug#11553).
5950
5951 * dired.el (dired-recursive-copies, dired-recursive-deletes):
5952 Doc fix (Bug#11326).
5953 (dired-make-relative): Doc fix (Bug#11332). Remove unused arg.
5954 (dired-dwim-target): Doc fix.
5955
5956 * wdired.el (wdired-mode): Doc fix.
5957
5958 2012-06-22 Glenn Morris <rgm@gnu.org>
5959
5960 * pcmpl-rpm.el (pcmpl-rpm-cache): New option.
5961 (pcmpl-rpm-cache-stamp-file): New constant.
5962 (pcmpl-rpm-cache-time, pcmpl-rpm-packages): New variables.
5963 (pcmpl-rpm-packages): Optionally cache list of packages.
5964
5965 * pcmpl-rpm.el (pcmpl-rpm): New group.
5966 (pcmpl-rpm-query-options): New option.
5967 (pcmpl-rpm-packages): No need to inline it.
5968 Use pcmpl-rpm-query-options.
5969
5970 * calendar/calendar.el (calendar-in-read-only-buffer):
5971 Avoid some needless mode changes.
5972
5973 2012-06-21 Chong Yidong <cyd@gnu.org>
5974
5975 * desktop.el (desktop-read): Don't prompt if daemon (Bug#11674).
5976 (desktop-path): Remove . from the default value (Bug#10977).
5977 (desktop-read): Use user-emacs-directory if desktop-path is nil.
5978
5979 2012-06-20 Chong Yidong <cyd@gnu.org>
5980
5981 * term.el (term-send-raw-meta): Make C-M-<char> keys work (Bug#8172).
5982
5983 2012-06-20 David Röthlisberger <david@rothlis.net> (tiny change)
5984
5985 * ido.el (ido-switch-buffer, ido-find-file): Fix up doc of C-j
5986 (bug#11201).
5987
5988 2012-06-20 Chong Yidong <cyd@gnu.org>
5989
5990 * term.el (term-window-width): Handle the case of a missing right
5991 fringe (Bug#8837).
5992 (term-check-size): Use window-text-height (Bug#5445).
5993 (term-mode): Use define-derived-mode. Minor cleanups.
5994 Set font-lock-defaults (Bug#7692).
5995 (term-move-columns, term-insert-char, term-emulate-terminal)
5996 (term-erase-in-line, term-insert-spaces): Use font-lock-face.
5997
5998 2012-06-20 Michael Albinus <michael.albinus@gmx.de>
5999
6000 * net/ange-ftp.el (ange-ftp-get-passwd):
6001 Bind `enable-recursive-minibuffers'.
6002 (ange-ftp-get-process): Throw if `non-essential' is non-nil.
6003
6004 2012-06-19 David Röthlisberger <david@rothlis.net> (tiny change)
6005
6006 * ido.el (ido-find-file): Mention C-d binding in docstring (bug#11244).
6007
6008 2012-06-19 Glenn Morris <rgm@gnu.org>
6009
6010 * progmodes/python.el (python-mode): Derive from prog-mode.
6011
6012 2012-06-19 Kevin Gallagher <Kevin.Gallagher@boeing.com>
6013
6014 * emulation/edt.el (edt-default-menu-bar-update-buffers)
6015 (edt-user-menu-bar-update-buffers): New functions.
6016 (edt-default-emulation-setup, edt-user-emulation-setup): Use them.
6017
6018 2012-06-19 Chong Yidong <cyd@gnu.org>
6019
6020 * subr.el (with-selected-window): Preserve the selected window's
6021 terminal's top-frame (Bug#4702).
6022
6023 * window.el (save-selected-window): Likewise.
6024
6025 2012-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
6026
6027 * progmodes/python.el (python-rx-constituents): Move backquote.
6028 (python-skeleton-define, python-define-auxiliary-skeleton):
6029 Use `declare'.
6030
6031 2012-06-18 Michael Albinus <michael.albinus@gmx.de>
6032
6033 * minibuffer.el (read-file-name-default): Revert the patch from
6034 2012-06-17.
6035
6036 2012-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
6037
6038 * emacs-lisp/pcase.el (pcase--expand): Warn for unused pattern.
6039 (pcase--u1, pcase--q1): Don't use apply-partially.
6040
6041 2012-06-18 Glenn Morris <rgm@gnu.org>
6042
6043 * progmodes/python.el (python-proc, python-buffer)
6044 (python-send-receive, python-send-string): Fix obsolete versions.
6045
6046 2012-06-18 Martin Rudalics <rudalics@gmx.at>
6047
6048 * window.el (special-display-p): Completely remove stringp
6049 check. Suggested by Andreas Schwab <schwab@linux-m68k.org>.
6050
6051 2012-06-17 Michael Albinus <michael.albinus@gmx.de>
6052
6053 * minibuffer.el (read-file-name-default): Bind `non-essential' to `t'.
6054
6055 * net/tramp.el (tramp-file-name-handler): Catch 'non-essential.
6056
6057 * net/ange-ftp.el (ange-ftp-gwp-start, ange-ftp-start-process):
6058 * net/tramp-sh.el (tramp-maybe-open-connection):
6059 Throw if `non-essential' is non-nil.
6060
6061 2012-06-17 Martin Rudalics <rudalics@gmx.at>
6062
6063 * window.el (special-display-p): Signal an error if BUFFER-NAME
6064 is not a string (Bug#11713).
6065
6066 2012-06-17 Paul Eggert <eggert@cs.ucla.edu>
6067
6068 * progmodes/python.el (python-info-beginning-of-backslash):
6069 Rename from python-info-beginning-of-backlash, as a spelling fix.
6070
6071 2012-06-17 Chong Yidong <cyd@gnu.org>
6072
6073 * term.el (term-emulate-terminal): If term-check-size is called,
6074 move point to the process mark without resetting point (Bug#4635).
6075
6076 2012-06-17 Glenn Morris <rgm@gnu.org>
6077
6078 * international/mule-cmds.el (mule-menu-keymap)
6079 (set-language-environment, set-locale-environment): Doc tweaks.
6080
6081 2012-06-16 Aurelien Aptel <aurelien.aptel@gmail.com>
6082
6083 * cus-face.el (custom-face-attributes): Add wave-style underline
6084 attribute.
6085 * faces.el (set-face-attribute): Update docstring to describe
6086 wave-style underline attribute.
6087
6088 2012-06-16 Chong Yidong <cyd@gnu.org>
6089
6090 * term/xterm.el (terminal-init-xterm): Discard input before
6091 querying background mode (Bug#10959).
6092
6093 2012-06-16 Stefan Merten <smerten@oekonux.de>
6094
6095 * textmodes/rst.el: Added and corrected some comments.
6096 (rst-re-alist-def): Improve symbol syntax.
6097 (rst-mode-syntax-table): Correct syntax entries.
6098 (rst-cvs-header, rst-svn-rev, rst-svn-timestamp)
6099 (rst-official-version, rst-official-cvs-rev): Update version
6100 information.
6101
6102 2012-06-15 Juanma Barranquero <lekktu@gmail.com>
6103
6104 * makefile.w32-in (COMPILE_FIRST): Synch with makefile.in changes
6105 in 2008-06-22T13:57:28Z!monnier@iro.umontreal.ca.
6106
6107 2012-06-15 Fabián Ezequiel Gallina <fgallina@cuca>
6108
6109 * progmodes/python.el: New python.el merge.
6110 (python-guess-indent): Obsolete var.
6111 (python-indent-guess-indent-offset): New defcustom.
6112 (python-indent): Obsolete var.
6113 (python-indent-offset): New defcustom.
6114 (python-python-command, python-jython-command): Delete var.
6115 (python-shell-interpreter): New defcustom.
6116 (python-pdbtrack-do-tracking-p): Delete var.
6117 (python-pdbtrack-activate): New defcustom.
6118 (python-use-skeletons): Obsolete var.
6119 (python-skeleton-autoinsert): New defcustom.
6120 (inferior-python-filter-regexp, python-continuation-offset)
6121 (python-honour-comment-indentation, python-indent-string-contents)
6122 (python-jython-packages, python-mode-hook)
6123 (python-pdbtrack-minor-mode-string, python-remove-cwd-from-path)
6124 (python-shell-prompt-alist)
6125 (python-source-modes): Delete defcustoms.
6126 (python-check-buffer-name, python-eldoc-setup-code)
6127 (python-eldoc-string-code, python-ffap-setup-code)
6128 (python-ffap-string-code, python-fill-comment-function)
6129 (python-fill-decorator-function, python-fill-paren-function)
6130 (python-fill-string-function, python-imenu-include-defun-type)
6131 (python-imenu-make-tree, python-imenu-subtree-root-label)
6132 (python-pdbtrack-stacktrace-info-regexp, python-shell-buffer-name)
6133 (python-shell-compilation-regexp-alist)
6134 (python-shell-completion-module-string-code)
6135 (python-shell-completion-pdb-string-code)
6136 (python-shell-completion-setup-code)
6137 (python-shell-completion-string-code)
6138 (python-shell-enable-font-lock, python-shell-exec-path)
6139 (python-shell-extra-pythonpaths)
6140 (python-shell-internal-buffer-name, python-shell-interpreter-args)
6141 (python-shell-process-environment)
6142 (python-shell-prompt-block-regexp)
6143 (python-shell-prompt-output-regexp)
6144 (python-shell-prompt-pdb-regexp, python-shell-prompt-regexp)
6145 (python-shell-send-setup-max-wait, python-shell-setup-codes)
6146 (python-shell-virtualenv-path): New defcustoms.
6147 (brm-menu, eldoc-documentation-function, inferior-python-mode-map)
6148 (inferior-python-mode-syntax-table, python--prompt-regexp)
6149 (python-buffer, python-command python-python-command)
6150 (python-default-template, python-imports, python-indent-index)
6151 (python-indent-list, python-indent-list-length)
6152 (python-mode-running, python-pdbtrack-is-tracking-p)
6153 (python-preoutput-continuation, python-preoutput-leftover)
6154 (python-preoutput-result, python-preoutput-skip-next-prompt)
6155 (python-prev-dir/file, python-recursing)
6156 (python-saved-check-command, python-version-checked)
6157 (python-which-func-length-limit)
6158 (view-return-to-alist): Delete vars.
6159 (python-check-custom-command, python-dotty-syntax-table)
6160 (python-imenu-index-alist, python-indent-current-level)
6161 (python-indent-dedenters, python-indent-levels)
6162 (python-nav-beginning-of-defun-regexp)
6163 (python-nav-list-defun-positions-cache)
6164 (python-pdbtrack-buffers-to-kill, python-pdbtrack-tracked-buffer)
6165 (python-shell-internal-buffer)
6166 (python-skeleton-available): New vars.
6167 (def-python-skeleton): Delete macro.
6168 (python-skeleton-define): New macro.
6169 (python-define-auxiliary-skeleton, python-rx): New macros.
6170 (python-insert-class): Delete command.
6171 (python-skeleton-class): New command.
6172 (python-insert-def): Delete command.
6173 (python-skeleton-def): New command.
6174 (python-insert-for): Delete command.
6175 (python-skeleton-for): New command.
6176 (python-insert-if): Delete command.
6177 (python-skeleton-if): New command.
6178 (python-insert-try/except, python-insert-try/finally): Delete commands.
6179 (python-skeleton-try): New command.
6180 (python-insert-while): Delete command.
6181 (python-skeleton-while): New command.
6182 (python-backspace): Delete command.
6183 (python-indent-dedent-line-backspace): New command.
6184 (python-electric-colon): Delete command.
6185 (python-indent-electric-colon): New command.
6186 (python-guess-indent): Delete command.
6187 (python-indent-guess-indent-offset): New command.
6188 (python-shift-left): Delete command.
6189 (python-indent-shift-left): New command.
6190 (python-shift-right): Delete command.
6191 (python-indent-shift-right): New command.
6192 (python-find-function): Delete command.
6193 (python-nav-jump-to-defun): New command.
6194 (python-next-statement): Delete command.
6195 (python-nav-forward-sentence): New command.
6196 (python-previous-statement): Delete command.
6197 (python-nav-backward-sentence): New command.
6198 (python-fill-paragraph): Delete command.
6199 (python-fill-paragraph-function): New command.
6200 (python-send-buffer): Delete command.
6201 (python-shell-send-buffer): New command.
6202 (python-send-defun): Delete command.
6203 (python-shell-send-defun): New command.
6204 (python-send-region, python-send-region-and-go): Delete commands.
6205 (python-shell-send-region)
6206 (python-shell-switch-to-shell): New commands.
6207 (python-send-string): Delete command.
6208 (python-shell-send-string): New command.
6209 (python-switch-to-python): Delete command.
6210 (python-shell-switch-to-shell): New command.
6211 (python-describe-symbol): Delete command.
6212 (python-eldoc-at-point): New command.
6213 (python--set-prompt-regexp, python-args-to-list)
6214 (python-after-info-look, python-check-version)
6215 (python-check-comint-prompt, python-find-imports)
6216 (python-execute-file, turn-off-pdbtrack, turn-on-pdbtrack)
6217 (python-unload-function, python-expand-template)
6218 (python-maybe-jython, python-preoutput-filter)
6219 (python-pdbtrack-get-source-buffer)
6220 (python-pdbtrack-grub-for-buffer, python-pdbtrack-overlay-arrow)
6221 (python-pdbtrack-toggle-stack-tracking)
6222 (python-pdbtrack-track-stack-file, python-initial-text)
6223 (python-first-word, python-comment-line-p, python-send-command)
6224 (python-setup-brm, python-sentinel, python-set-proc)
6225 (python-skip-out, python-input-filter, python-outdent-p)
6226 (python-outline-level, python-backslash-continuation-line-p)
6227 (python-end-of-block, python-end-of-statement, python-mark-block)
6228 (python-beginning-of-block, python-beginning-of-statement)
6229 (python-blank-line-p, python-beginning-of-string)
6230 (python-open-block-statement-p): Delete functions.
6231 (python-indent-line, python-indent-line-1): Delete functions.
6232 (python-indent-line): New function.
6233 (python-indentation-levels): Delete function.
6234 (python-indent-calculate-levels): New function.
6235 (python-proc): Delete function.
6236 (python-shell-get-process): New function.
6237 (python-send-receive): Delete function.
6238 (python-shell-send-string-no-output): New function.
6239 (python-module-path): Delete function.
6240 (python-ffap-module-path): New function.
6241 (python-completion-at-point)
6242 (python-symbol-completions): Delete functions.
6243 (python-completion-complete-at-point): New function.
6244 (python-load-file): Delete function.
6245 (python-shell-send-file): New function.
6246 (python-calculate-indentation): Delete function.
6247 (python-indent-calculate-indentation): New function.
6248 (python-skip-comments/blanks): Delete function.
6249 (python-util-forward-comment): New function.
6250 (python-continuation-line-p): Delete function.
6251 (python-info-continuation-line-p): New function.
6252 (python-which-func, python-current-defun): Delete function.
6253 (python-info-current-defun): New function.
6254 (python-beginning-of-defun): Delete function.
6255 (python-nav-beginning-of-defun): New function.
6256 (python-close-block-statement-p)
6257 (python-block-end-p): Delete function.
6258 (python-info-closing-block): New function.
6259 (python-comint-output-filter-function)
6260 (python-eldoc--get-doc-at-point, python-end-of-defun-function)
6261 (python-fill-comment, python-fill-decorator, python-fill-paren)
6262 (python-fill-string, python-imenu-make-element-tree)
6263 (python-imenu-make-tree, python-imenu-tree-assoc)
6264 (python-indent-context, python-indent-dedent-line)
6265 (python-indent-line-function)
6266 (python-indent-post-self-insert-function)
6267 (python-indent-toggle-levels)
6268 (python-info-assignment-continuation-line-p)
6269 (python-info-beginning-of-backlash)
6270 (python-info-block-continuation-line-p)
6271 (python-info-closing-block-message)
6272 (python-info-line-ends-backslash-p)
6273 (python-info-looking-at-beginning-of-defun)
6274 (python-info-ppss-context, python-info-ppss-context-type)
6275 (python-nav-list-defun-positions, python-nav-read-defun)
6276 (python-nav-sentence-end, python-nav-sentence-start)
6277 (python-pdbtrack-comint-output-filter-function)
6278 (python-pdbtrack-set-tracked-buffer)
6279 (python-shell-calculate-exec-path)
6280 (python-shell-calculate-process-environment)
6281 (python-shell-completion--do-completion-at-point)
6282 (python-shell-completion--get-completions)
6283 (python-shell-completion-complete-at-point)
6284 (python-shell-completion-complete-or-indent)
6285 (python-shell-get-or-create-process)
6286 (python-shell-get-process-name)
6287 (python-shell-internal-get-or-create-process)
6288 (python-shell-internal-get-process-name)
6289 (python-shell-internal-send-string, python-shell-make-comint)
6290 (python-shell-parse-command, python-shell-send-setup-code)
6291 (python-skeleton-add-menu-items)
6292 (python-util-clone-local-variables, python-util-position)
6293 (run-python-internal, python-indentation-levels)
6294 (python-nav-beginning-of-defun)
6295 (python-completion-complete-at-point): New functions.
6296 (run-python): Change arguments. New API requirements.
6297
6298 2012-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
6299
6300 * emacs-lisp/cl-lib.el (cl--defsubst-expand): Autoload inliner
6301 (bug#11649).
6302
6303 * emacs-lisp/macroexp.el (macroexp--compiler-macro): New function.
6304 (macroexp--expand-all): Use it.
6305
6306 * emacs-lisp/cl-macs.el (cl--transform-function-property): Remove.
6307 (cl-define-setf-expander, cl-deftype, cl-define-compiler-macro):
6308 Use `cl-function' instead.
6309
6310 2012-06-14 Juanma Barranquero <lekktu@gmail.com>
6311
6312 * makefile.w32-in (COMPILE_FIRST): Remove subr.el.
6313 Suggested by Stefan Monnier while discussing bug#11657.
6314
6315 2012-06-14 Sam Steingold <sds@gnu.org>
6316
6317 * files.el (abort-if-file-too-large): Use `file-size-human-readable'.
6318
6319 2012-06-14 Andreas Schwab <schwab@linux-m68k.org>
6320
6321 * play/doctor.el (doctor-doc): Remove parameter and use
6322 doctor-sent instead of sent.
6323 (doctor-read-print): Use doctor-sent instead of sent. (Bug#11708)
6324
6325 2012-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
6326
6327 * files.el: Require cl-lib.
6328 (file-name-non-special): Replace case -> cl-case.
6329
6330 * emacs-lisp/cl-macs.el (cl-defstruct): Don't add print-func.
6331
6332 * emacs-lisp/edebug.el (edebug-read-function): Remove old incorrect
6333 mapping from #' to function*.
6334
6335 2012-06-13 Chong Yidong <cyd@gnu.org>
6336
6337 * mouse.el (mouse-drag-track): Do not set the mark if the user
6338 releases the mouse without selecting anything (Bug#11588).
6339
6340 2012-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
6341
6342 * textmodes/tex-mode.el (latex-indent): Recognize tex-verbatim at EOB
6343 as well (bug#11646).
6344
6345 * loadup.el: Count byte-code functions as well.
6346
6347 * emacs-lisp/byte-opt.el (featurep): Move compiler-macro...
6348 * emacs-lisp/bytecomp.el (featurep): ...here (bug#11692).
6349
6350 * emacs-lisp/autoload.el (make-autoload): Accept nil doc-string-elt
6351 (bug#11649). Add cl-defun and cl-defmacro.
6352
6353 2012-06-13 Drew Adams <drew.adams@oracle.com>
6354
6355 * help-mode.el (help-bookmark-make-record, help-bookmark-jump):
6356 Fix last change.
6357
6358 2012-06-13 Michael Albinus <michael.albinus@gmx.de>
6359
6360 * net/dbus.el (dbus-call-method): Use timeout for `read-event'.
6361 Otherwise, it blocks in batch mode.
6362
6363 2012-06-13 Juanma Barranquero <lekktu@gmail.com>
6364
6365 * help-mode.el (bookmark-make-record-default): Declare.
6366
6367 2012-06-13 Chong Yidong <cyd@gnu.org>
6368
6369 * emacs-lisp/package.el (list-packages): Compute a list of
6370 packages that are newly-available since the last list-packages
6371 invocation.
6372 (package-menu--new-package-list): New var.
6373 (package-menu--generate, package-menu--print-info)
6374 (package-menu--status-predicate, package-menu-mark-install):
6375 Handle new status label "new".
6376
6377 2012-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
6378
6379 * emacs-lisp/cl-macs.el (cl-remf): Fix error in recent
6380 conversion to backquotes.
6381
6382 2012-06-12 Chong Yidong <cyd@gnu.org>
6383
6384 * emacs-lisp/edebug.el (edebug-inhibit-emacs-lisp-mode-bindings):
6385 Rename from gud-inhibit-global-bindings.
6386
6387 * emacs-lisp/eieio.el (eieio-pre-method-execution-hooks): Doc fix.
6388
6389 * nxml/nxml-glyph.el (nxml-glyph-set-functions): Rename abnormal
6390 hook from nxml-glyph-set-hook.
6391
6392 * progmodes/cwarn.el (cwarn-mode): Remove redundant variable
6393 declaration.
6394
6395 * progmodes/pascal.el (pascal-toggle-completions): Doc fix.
6396
6397 * textmodes/bibtex.el (bibtex-string-file-path, bibtex-file-path):
6398 Convert to defcustom.
6399
6400 2012-06-12 Drew Adams <drew.adams@oracle.com>
6401
6402 * help-mode.el (help-bookmark-make-record, help-bookmark-jump):
6403 New functions.
6404 (help-mode): Use them.
6405
6406 2012-06-11 Glenn Morris <rgm@gnu.org>
6407
6408 * progmodes/fortran.el (fortran-font-lock-keywords-3):
6409 Use preprocessor face for directives.
6410 (fortran-directive-re): Doc fix.
6411
6412 2012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
6413
6414 * emacs-lisp/cl-macs.el (cl-parse-loop-clause): Fix error in recent
6415 conversion to backquotes (bug#11652).
6416
6417 Fix compiler-expansion of CL's cXXr functions (bug#11673).
6418 * emacs-lisp/cl-lib.el (cl--defalias): New function.
6419 (cl-values, cl-values-list, cl-copy-seq, cl-svref, cl-first)
6420 (cl-second, cl-rest, cl-endp, cl-third, cl-fourth): Use it.
6421 (cl-plusp, cl-minusp, cl-fifth, cl-sixth, cl-seventh, cl-eighth)
6422 (cl-ninth, cl-tenth): Mark them as inlinable.
6423 (cl-caaar, cl-caadr, cl-cadar, cl-caddr, cl-cdaar, cl-cdadr)
6424 (cl-cddar, cl-cdddr, cl-caaaar, cl-caaadr, cl-caadar, cl-caaddr)
6425 (cl-cadaar, cl-cadadr, cl-caddar, cl-cadddr, cl-cdaaar, cl-cdaadr)
6426 (cl-cdadar, cl-cdaddr, cl-cddaar, cl-cddadr, cl-cdddar, cl-cddddr):
6427 Add a compiler-macro declaration to use cl--compiler-macro-cXXr.
6428 (cl-list*, cl-adjoin): Don't put an autoload manually.
6429 * emacs-lisp/cl-macs.el (cl--compiler-macro-adjoin)
6430 (cl--compiler-macro-list*): Add autoload cookie.
6431 (cl--compiler-macro-cXXr): New function.
6432
6433 * help-fns.el (help-fns--compiler-macro): New function extracted from
6434 describe-function-1; follow aliases and use `compiler-macro' property.
6435 (describe-function-1): Use it.
6436
6437 2012-06-11 Chong Yidong <cyd@gnu.org>
6438
6439 * startup.el (fancy-splash-head): Use splash.svg even if librsvg
6440 is uninstalled, if imagemagick is installed.
6441
6442 2012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
6443
6444 * emacs-lisp/cl-lib.el: Use lexical-binding.
6445 (cl-map-extents, cl-maclisp-member): Remove.
6446 (cl--set-elt, cl--set-nthcdr, cl--set-buffer-substring)
6447 (cl--set-substring, cl--block-wrapper, cl--block-throw)
6448 (cl--compiling-file, cl--mapcar-many, cl--do-subst): Use "cl--" prefix.
6449 * emacs-lisp/cl-extra.el: Use lexical-binding.
6450 (cl--mapcar-many, cl--map-keymap-recursively, cl--map-intervals)
6451 (cl--map-overlays, cl--set-frame-visible-p, cl--progv-save)
6452 (cl--progv-before, cl--progv-after, cl--finite-do, cl--set-getf)
6453 (cl--do-remf, cl--do-prettyprint): Use "cl--" prefix.
6454 * emacs-lisp/cl-seq.el: Use lexical-binding.
6455 (cl--parsing-keywords, cl--check-key, cl--check-test-nokey)
6456 (cl--check-test, cl--check-match): Use "cl--" prefix and backquotes.
6457 (cl--alist, cl--sublis-rec, cl--nsublis-rec, cl--tree-equal-rec):
6458 * emacs-lisp/cl-macs.el (cl--lambda-list-keywords): Use "cl--" prefix.
6459 * edmacro.el (edmacro-mismatch): Simplify to remove dependence on
6460 CL's internals.
6461
6462 2012-06-11 Michael Albinus <michael.albinus@gmx.de>
6463
6464 Sync with Tramp 2.2.6-pre.
6465
6466 * net/tramp-cache.el (tramp-dump-connection-properties): Let-bind
6467 `print-length' and `print-level' to nil, in order to avoid
6468 truncation. Reported by Christopher Schmidt
6469 <christopher@ristopher.com>.
6470
6471 * net/tramp-cmds.el (tramp-cleanup-connection): Delete also process.
6472
6473 * net/tramp-compat.el (tramp-compat-condition-case-unless-debug):
6474 New defmacro.
6475 (tramp-compat-copy-directory): Add optional argument
6476 COPY-CONTENTS. It is not handled yet.
6477
6478 * net/tramp-ftp.el (tramp-disable-ange-ftp): Fix docstring.
6479 (tramp-ftp-file-name-p): Simplify.
6480
6481 * net/tramp-gvfs.el (tramp-gvfs-handle-expand-file-name):
6482 * net/tramp-gw.el (tramp-gw-open-connection): Add hop to
6483 connection vector.
6484
6485 * net/tramp-sh.el (tramp-copy-size-limit): Fix docstring.
6486 (tramp-methods): Do not use `tramp-password-end-of-line'.
6487 (tramp-completion-function-alist-putty): Handle UNIX case.
6488 (tramp-remote-path): Add "/opt/bin", "/opt/sbin" and "/opt/local/bin".
6489 (tramp-do-file-attributes-with-stat)
6490 (tramp-do-directory-files-and-attributes-with-stat) Return uid and
6491 gid as real numbers. They could run out of integer range on cygwin.
6492 (tramp-do-copy-or-rename-file-out-of-band): Better trace format.
6493 (tramp-sh-handle-expand-file-name): Handle hops.
6494 (tramp-open-connection-setup-interactive-shell):
6495 Use `tramp-cleanup'. Move check for busyboxes ...
6496 (tramp-find-shell): ... here. Simplify implementation.
6497 Set "remote-shell" property also for alternative shells.
6498 (tramp-remote-coding-commands): Check "test -c /dev/stdout".
6499 If failing, a regular file would be written otherwise.
6500 Reported by Dmitry Kurochkin <dmitry.kurochkin@gmail.com>.
6501 (tramp-find-inline-encoding): Cache the coding commands in the
6502 process cache. Apply test command on the remote side, if defined.
6503 (tramp-find-inline-compress): Cache the compress commands in the
6504 process cache.
6505 (tramp-compute-multi-hops): Save `tramp-default-proxies-alist'
6506 when requested. Handle hops.
6507 (tramp-current-connection): New defvar.
6508 (tramp-maybe-open-connection): Use `tramp-cleanup'.
6509 Throw `suppress', if there was a failed connection shortly before.
6510 Handle user interrupt. (Bug#10187)
6511 (tramp-get-inline-compress, tramp-get-inline-coding):
6512 Read connection properties from the process cache.
6513
6514 * net/tramp-smb.el (tramp-smb-server-version)
6515 (tramp-smb-wrong-passwd-regexp, tramp-smb-actions-with-tar):
6516 New defconsts.
6517 (tramp-smb-prompt): Extend for powershell prompt.
6518 (tramp-smb-file-name-handler-alist): Add handlers for
6519 `process-file', `shell-command' and `start-file-process'.
6520 (tramp-smb-winexe-program, tramp-smb-winexe-shell-command)
6521 (tramp-smb-winexe-shell-command-switch): New defcustoms.
6522 (tramp-smb-file-name-p): Simplify.
6523 (tramp-smb-action-with-tar, tramp-smb-handle-process-file)
6524 (tramp-smb-kill-winexe-function, tramp-smb-call-winexe)
6525 (tramp-smb-shell-quote-argument): New defuns.
6526 (tramp-smb-handle-copy-directory): Add COPY-CONTENTS argument.
6527 Implement using "tar". By this, time-stamps are preserved.
6528 (tramp-smb-handle-copy-file): Handle also the case of directories.
6529 (tramp-smb-do-file-attributes-with-stat)
6530 (tramp-smb-get-file-entries, tramp-smb-get-cifs-capabilities):
6531 Use `tramp-get-connection-buffer').
6532 (tramp-smb-handle-rename-file): Use "rename", when source and
6533 target are on the same share.
6534 (tramp-smb-maybe-open-connection): Handle wrong passwords.
6535 Use `tramp-smb-server-version'.
6536 (tramp-smb-wait-for-output): Remove prompt.
6537
6538 * net/tramp.el (top): Require 'cl.
6539 (tramp-methods, tramp-rsh-end-of-line):
6540 Remove `tramp-password-end-of-line' from docstring.
6541 (tramp-save-ad-hoc-proxies): New defcustom.
6542 (tramp-completion-function-alist): Adapt docstring.
6543 (tramp-default-password-end-of-line): Remove defcustom.
6544 (tramp-shell-prompt-pattern): Allow "[]" style prompts. (Bug#11065)
6545 (tramp-user-regexp, tramp-file-name-regexp-unified)
6546 (tramp-file-name-regexp-url): Extend regexp by hop separator.
6547 (tramp-postfix-hop-format, tramp-postfix-hop-regexp)
6548 (tramp-remote-file-name-spec-regexp): New defconst.
6549 (tramp-file-name-structure): Extend structure for hops.
6550 (tramp-get-method-parameter): Move up.
6551 (tramp-file-name-p, tramp-dissect-file-name)
6552 (with-parsed-tramp-file-name): Handle hops.
6553 (tramp-file-name-hop): New defun.
6554 (tramp-make-tramp-file-name): New optional arg HOP.
6555 (tramp-message-show-progress-reporter-message): New defvar.
6556 (tramp-with-progress-reporter): Use it. We cannot use
6557 `tramp-message-show-message' here, because this suppresses also
6558 error buffers.
6559 (tramp-error-with-buffer): Suppress buffer view, if
6560 `tramp-message-show-message' is nil.
6561 Use `tramp-get-connection-buffer'.
6562 (tramp-cleanup): New defun.
6563 (tramp-rfn-eshadow-update-overlay): Let-bind `non-essential' to `t'.
6564 (tramp-file-name-handler): If `debug-on-error' is set, propagate
6565 an error unchanged.
6566 (tramp-completion-handle-file-name-all-completions): Handle hops.
6567 Fix an error when called from ido.
6568 (tramp-completion-dissect-file-name): Use better local variable
6569 name. Add hop to the vector.
6570 (tramp-handle-insert-file-contents): Use progress-reporter for the
6571 whole scenario.
6572 (tramp-action-password): Let-bind `enable-recursive-minibuffers'
6573 to `t'.
6574 (tramp-check-for-regexp): Simplify search.
6575 (tramp-enter-password): Remove it. Move implementation ...
6576 (tramp-action-password): ... here.
6577 (tramp-mode-string-to-int, tramp-local-host-p)
6578 (tramp-make-tramp-temp-file, tramp-read-passwd)
6579 (tramp-clear-passwd, tramp-time-less-p, tramp-time-diff):
6580 Set tramp-autoload cookie.
6581
6582 * net/trampver.el: Update release number.
6583
6584 2012-06-11 Thierry Volpiatto <thierry.volpiatto@gmail.com>
6585 Michael Albinus <michael.albinus@gmx.de>
6586
6587 * net/tramp.el (tramp-set-completion-function): Fix docstring.
6588 (tramp-parse-group, tramp-parse-file)
6589 (tramp-parse-shostkeys-sknownhosts): New defuns.
6590 (tramp-parse-rhosts, tramp-parse-rhosts-group, tramp-parse-shosts)
6591 (tramp-parse-shosts-group, tramp-parse-sconfig)
6592 (tramp-parse-sconfig-group, tramp-parse-shostkeys)
6593 (tramp-parse-sknownhosts, tramp-parse-hosts)
6594 (tramp-parse-hosts-group, tramp-parse-passwd, tramp-parse-netrc):
6595 Use them.
6596 (tramp-parse-passwd-group, tramp-parse-netrc-group)
6597 (tramp-parse-putty-group): Don't narrow.
6598 (tramp-parse-putty): Make a loop.
6599 (tramp-file-name-handler): Catch the `suppress' signal.
6600
6601 2012-06-11 Chong Yidong <cyd@gnu.org>
6602
6603 * image.el (imagemagick-register-types): Put the ImageMagick entry
6604 at the end of image-type-file-name-regexps.
6605
6606 2012-06-11 Johan Bockgård <bojohan@gnu.org>
6607
6608 * emacs-lisp/pcase.el (pcase-UPAT, pcase-QPAT): New edebug specs.
6609 (pcase, pcase-let*, pcase-dolist): Use them.
6610
6611 2012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
6612
6613 * emacs-lisp/pcase.el (pcase--let*): New function.
6614 (pcase-let*): Use it. Use pcase--memoize to avoid repeated expansions.
6615 (pcase--expand): Use macroexp-let².
6616
6617 2012-06-10 Stefan Monnier <monnier@iro.umontreal.ca>
6618
6619 * emacs-lisp/timer.el, emacs-lisp/syntax.el, emacs-lisp/smie.el:
6620 * emacs-lisp/ewoc.el, emacs-lisp/cconv.el, emacs-lisp/bytecomp.el:
6621 * emacs-lisp/byte-opt.el, emacs-lisp/autoload.el: Convert to cl-lib.
6622 * emacs-lisp/easymenu.el, emacs-lisp/easy-mmode.el:
6623 * emacs-lisp/derived.el: Use pcase instead of `cl'.
6624 * emacs-lisp/cl-lib.el: Get rid of special cl-macs auto load.
6625
6626 2012-06-10 Glenn Morris <rgm@gnu.org>
6627
6628 * mail/rmail.el (rmail-yank-current-message): Leave point at
6629 correct position. (Bug#11660)
6630
6631 2012-06-10 Chong Yidong <cyd@gnu.org>
6632
6633 * allout-widgets.el: Fix code header.
6634
6635 2012-06-10 Chong Yidong <cyd@gnu.org>
6636
6637 * cus-edit.el (customize-changed-options-previous-release):
6638 Bump to 24.1.
6639
6640 2012-06-09 Andreas Schwab <schwab@linux-m68k.org>
6641
6642 * Makefile.in (BIG_STACK_DEPTH): Enlarge to 2200.
6643
6644 2012-06-09 Chong Yidong <cyd@gnu.org>
6645
6646 * ebuff-menu.el (electric-buffer-list): Preserve header line.
6647
6648 2012-06-09 Martin Rudalics <rudalics@gmx.at>
6649
6650 * window.el (special-display-popup-frame): Don't use
6651 window--display-buffer (Bug#11651).
6652
6653 2012-06-09 Eli Zaretskii <eliz@gnu.org>
6654
6655 Fix parallel builds: make sure loaddefs.el is not being written
6656 while Lisp files are compiled.
6657 (compile): Don't depend on 'mh-autoloads'.
6658 (compile-CMD, compile-SH): Depend on 'autoloads'.
6659 (bootstrap): Don't depend on 'autoloads' and 'mh-autoloads'.
6660
6661 * makefile.w32-in (BIG_STACK_DEPTH): Enlarge to 2200. (Bug#11649)
6662
6663 2012-06-09 Chong Yidong <cyd@gnu.org>
6664
6665 * face-remap.el (face-remap-add-relative, face-remap-set-base)
6666 (buffer-face-set, buffer-face-toggle, buffer-face-mode-invoke):
6667 Doc fixes (Bug#11225).
6668
6669 2012-06-09 Stefan Monnier <monnier@iro.umontreal.ca>
6670
6671 * emacs-lisp/macroexp.el (macroexp--expand-all): Only autoload
6672 a function if there's a clear indication that it has a compiler-macro.
6673 * emacs-lisp/byte-run.el (defun-declarations-alist, defmacro, defun)
6674 (macro-declarations-alist): Add arglist to declaration functions.
6675 (defun-declarations-alist): Add `obsolete' and `compiler-macro'.
6676 * emacs-lisp/cl-seq.el (cl-member, cl-assoc):
6677 * emacs-lisp/cl-lib.el (cl-list*, cl-adjoin):
6678 * emacs-lisp/cl-extra.el (cl-get): Use the new `declare' statement.
6679 Also add autoload to find the compiler macro.
6680 * emacs-lisp/cl-macs.el (eql) [compiler-macro]: Remove.
6681 (cl--compiler-macro-member, cl--compiler-macro-assoc)
6682 (cl--compiler-macro-adjoin, cl--compiler-macro-list*)
6683 (cl--compiler-macro-get): New functions, replacing calls to
6684 cl-define-compiler-macro.
6685 (cl-typep) [compiler-macro]: Use macroexp-let².
6686
6687 2012-06-08 Nick Dokos <nicholas.dokos@hp.com> (tiny change)
6688
6689 * calendar/icalendar.el (icalendar--parse-vtimezone): Import TZID
6690 string properly, fixes Bug#11473.
6691
6692 2012-06-08 Chong Yidong <cyd@gnu.org>
6693
6694 * faces.el (set-face-attribute): Doc fix.
6695 (modify-face): Don't use :bold and :italic.
6696 (error, warning, success): Tweak definitions.
6697
6698 * cus-edit.el (custom-modified, custom-invalid, custom-rogue)
6699 (custom-modified, custom-set, custom-changed, custom-themed)
6700 (custom-saved, custom-button, custom-button-mouse)
6701 (custom-button-pressed, custom-state, custom-comment-tag)
6702 (custom-variable-tag, custom-group-tag-1, custom-group-tag)
6703 (custom-group-subtitle): Use new-style face specs.
6704 (custom-invalid-face, custom-rogue-face, custom-modified-face)
6705 (custom-set-face, custom-changed-face, custom-saved-face)
6706 (custom-button-face, custom-button-pressed-face)
6707 (custom-documentation-face, custom-state-face)
6708 (custom-comment-face, custom-comment-tag-face)
6709 (custom-variable-tag-face, custom-variable-button-face)
6710 (custom-face-tag-face, custom-group-tag-face-1)
6711 (custom-group-tag-face): Remove obsolete face alias.
6712
6713 * epa.el (epa-validity-high, epa-validity-medium)
6714 (epa-validity-low, epa-mark, epa-field-name, epa-string)
6715 (epa-field-name, epa-field-body):
6716 * font-lock.el (font-lock-comment-face, font-lock-string-face)
6717 (font-lock-keyword-face, font-lock-builtin-face)
6718 (font-lock-function-name-face, font-lock-variable-name-face)
6719 (font-lock-type-face, font-lock-constant-face):
6720 * ido.el (ido-first-match, ido-only-match, ido-subdir)
6721 (ido-virtual, ido-indicator, ido-incomplete-regexp):
6722 * speedbar.el (speedbar-button-face, speedbar-file-face)
6723 (speedbar-directory-face, speedbar-tag-face)
6724 (speedbar-selected-face, speedbar-highlight-face)
6725 (speedbar-separator-face):
6726 * whitespace.el (whitespace-newline, whitespace-space)
6727 (whitespace-hspace, whitespace-tab, whitespace-trailing)
6728 (whitespace-line, whitespace-space-before-tab)
6729 (whitespace-space-after-tab, whitespace-indentation)
6730 (whitespace-empty):
6731 * emulation/cua-base.el (cua-global-mark):
6732 * eshell/em-prompt.el (eshell-prompt):
6733 * net/newst-plainview.el (newsticker-new-item-face)
6734 (newsticker-old-item-face, newsticker-immortal-item-face)
6735 (newsticker-obsolete-item-face, newsticker-date-face)
6736 (newsticker-statistics-face, newsticker-default-face):
6737 * net/newst-reader.el (newsticker-feed-face)
6738 (newsticker-extra-face, newsticker-enclosure-face):
6739 * net/newst-treeview.el (newsticker-treeview-face)
6740 (newsticker-treeview-new-face, newsticker-treeview-old-face)
6741 (newsticker-treeview-immortal-face)
6742 (newsticker-treeview-obsolete-face)
6743 (newsticker-treeview-selection-face):
6744 * net/rcirc.el (rcirc-my-nick, rcirc-other-nick)
6745 (rcirc-bright-nick, rcirc-server, rcirc-timestamp)
6746 (rcirc-nick-in-message, rcirc-nick-in-message-full-line)
6747 (rcirc-prompt, rcirc-track-keyword, rcirc-url, rcirc-keyword):
6748 * nxml/nxml-outln.el (nxml-heading, nxml-outline-indicator)
6749 (nxml-outline-active-indicator, nxml-outline-ellipsis):
6750 * play/mpuz.el (mpuz-unsolved, mpuz-solved, mpuz-trivial)
6751 (mpuz-text):
6752 * progmodes/vera-mode.el (vera-font-lock-number)
6753 (vera-font-lock-function, vera-font-lock-interface):
6754 * textmodes/table.el (table-cell): Use new-style face specs, and
6755 don't use the old :bold and :italic attributes.
6756
6757 * progmodes/ebrowse.el (ebrowse-tree-mark, ebrowse-root-class)
6758 (ebrowse-member-attribute, ebrowse-default, ebrowse-file-name)
6759 (ebrowse-member-class, ebrowse-progress): Likewise.
6760 (ebrowse-tree-mark-face, ebrowse-root-class-face)
6761 (ebrowse-file-name-face, ebrowse-default-face)
6762 (ebrowse-member-attribute-face, ebrowse-member-class-face)
6763 (ebrowse-progress-face): Remove obsolete faces.
6764
6765 * progmodes/flymake.el (flymake-errline, flymake-warnline):
6766 Inherit from error and warning faces respectively.
6767
6768 * textmodes/flyspell.el (flyspell-incorrect, flyspell-duplicate):
6769 Likewise.
6770 (flyspell-incorrect-face, flyspell-duplicate-face):
6771 Remove obsolete aliases.
6772
6773 2012-06-08 Michael Albinus <michael.albinus@gmx.de>
6774
6775 * net/tramp-compat.el (tramp-compat-temporary-file-directory):
6776 Avoid infloop.
6777
6778 2012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
6779
6780 * startup.el (argv, argi): Make lexically scoped.
6781 * emacs-lisp/float-sup.el (pi): Use internal-make-var-non-special.
6782 * emacs-lisp/cl-macs.el: Use lexical-binding.
6783 Rename cl-bind-* to cl--bind-*.
6784 * files.el: Don't require `cl' since it doesn't use it.
6785 * emacs-lisp/pcase.el, emacs-lisp/macroexp.el: Add coding cookie.
6786
6787 2012-06-08 Juanma Barranquero <lekktu@gmail.com>
6788
6789 * textmodes/texinfmt.el: Fix bug#11640 (reverts part of 2008-07-31T05:33:56Z!dann@ics.uci.edu).
6790 (texinfo-format-printindex): Use `texinfo-sort-region' in all platforms,
6791 instead of calling external sort utility.
6792 (texinfo-sort-region, texinfo-sort-startkeyfun): Restore functions.
6793
6794 2012-06-08 Eli Zaretskii <eliz@gnu.org>
6795
6796 * descr-text.el (describe-char): Mention how to insert the
6797 character, if the current input method doesn't support it.
6798 See the discussion in this thread for the details:
6799 http://lists.gnu.org/archive/html/emacs-devel/2012-05/msg00533.html.
6800
6801 2012-06-08 Sam Steingold <sds@gnu.org>
6802
6803 * bindings.el (global-map): Bind XF86Forward to next-buffer and
6804 XF86Back to previous-buffer.
6805 (minibuffer-local-map): Bind them to next-history-element and
6806 previous-history-element respectively.
6807 * help-mode.el (help-mode-map): Bind them to help-go-forward and
6808 help-go-back respectively.
6809 * info.el (Info-mode-map): Bind them to Info-history-forward and
6810 Info-history-back respectively.
6811 These are the keys next to Up on the ThinkPad keyboard.
6812
6813 2012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
6814
6815 Get rid of cl-lexical-let, keeping only lexical-let for compatibility.
6816 * emacs-lisp/cl-macs.el: Provide itself.
6817 (cl--labels-convert-cache): New var.
6818 (cl--labels-convert): New function.
6819 (cl-flet, cl-labels): New implementation with new semantics, relying on
6820 lexical-binding.
6821 * emacs-lisp/cl.el: Mark compatibility aliases as obsolete.
6822 (cl-closure-vars, cl--function-convert-cache)
6823 (cl--function-convert): Move from cl-macs.el.
6824 (lexical-let, lexical-let*, flet, labels): Move from cl-macs.el and
6825 rename by removing the "cl-" prefix.
6826 * emacs-lisp/macroexp.el (macroexp-unprogn): New function.
6827
6828 2012-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
6829
6830 * emacs-lisp/cl.el (cl-macroexpand, cl-macro-environment)
6831 (cl-macroexpand-all, cl-not-hash-table, cl-builtin-gethash)
6832 (cl-builtin-remhash, cl-builtin-clrhash, cl-builtin-maphash)
6833 (cl-map-keymap, cl-copy-tree, cl-gethash, cl-puthash, cl-remhash)
6834 (cl-clrhash, cl-maphash, cl-make-hash-table, cl-hash-table-p)
6835 (cl-hash-table-count): Add old compatibility aliases.
6836
6837 * emacs-lisp/cl-macs.el (cl-macro-environment): Remove var.
6838 Use macroexpand-all-environment instead.
6839 (cl--old-macroexpand): New var.
6840 (cl--sm-macroexpand): New function.
6841 (cl-symbol-macrolet): Use it during macro expansion.
6842 (cl--function-convert-cache): New var.
6843 (cl--function-convert): New function, extracted from
6844 cl-macroexpand-all.
6845 (cl-lexical-let): Use it.
6846
6847 * emacs-lisp/cl-lib.el (cl-macro-environment): Remove decl.
6848 (cl-macroexpand): Move to cl-macs.el and rename to cl--sm-macroexpand.
6849 (cl-member): Remove old alias.
6850
6851 * emacs-lisp/cl-extra.el (cl-map-keymap, cl-copy-tree)
6852 (cl-not-hash-table, cl-builtin-gethash, cl-builtin-remhash)
6853 (cl-builtin-clrhash, cl-builtin-maphash, cl-gethash, cl-puthash)
6854 (cl-remhash, cl-clrhash, cl-maphash, cl-make-hash-table)
6855 (cl-hash-table-p, cl-hash-table-count): Move to cl.el.
6856 (cl-macroexpand-cmacs): Remove var.
6857 (cl-macroexpand-all, cl-macroexpand-body): Remove funs.
6858 Use macroexpand-all instead.
6859
6860 2012-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
6861
6862 * emacs-lisp/macroexp.el (macroexp-progn, macroexp-let*, macroexp-if)
6863 (macroexp-let², macroexp--const-symbol-p, macroexp-const-p)
6864 (macroexp-copyable-p): New functions and macros.
6865 * emacs-lisp/edebug.el (edebug-unwrap):
6866 * emacs-lisp/disass.el (disassemble-internal): Use macroexp-progn.
6867 * emacs-lisp/pcase.el: Use macroexp-let*, macroexp-if, ...
6868 (pcase--let*): Remove.
6869 * emacs-lisp/bytecomp.el (byte-compile-const-symbol-p)
6870 (byte-compile-constp): Remove. Use macroexp--const-symbol-p and
6871 macroexp-const-p instead.
6872 * emacs-lisp/byte-opt.el: Use macroexp-const-p and macroexp-progn.
6873
6874 * emacs-lisp/cl-macs.el: Clean up the name space by using "cl--"
6875 instead of "cl-" for internal definitions. Use macroexp-const-p.
6876 (cl-old-bc-file-form): Remove var.
6877 (cl-const-exprs-p): Remove fun.
6878 (cl-labels, cl-macrolet): Use backquote.
6879 (cl-lexical-let): Use cl-symbol-macrolet. Don't use cl-defun-expander.
6880 (cl-defun-expander, cl-byte-compile-compiler-macro): Remove fun.
6881 (cl-define-setf-expander): Rename from cl-define-setf-method.
6882 * emacs-lisp/cl.el: Adjust alias for define-setf-method.
6883
6884 * international/mule-cmds.el: Don't require CL.
6885 (view-hello-file): Don't use `letf'.
6886
6887 2012-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
6888
6889 * tmm.el (tmm-prompt): Use string-prefix-p.
6890 (tmm-completion-delete-prompt): Don't affect current-buffer outside.
6891 (tmm-add-prompt): Use minibuffer-completion-help.
6892 (tmm-delete-map): Remove.
6893
6894 * subr.el (kbd): Make it its own function.
6895
6896 2012-06-07 Stefan Merten <smerten@oekonux.de>
6897
6898 * textmodes/rst.el: Use `eval-when-compile' for requiring `cl.el'.
6899 Silence compiler warnings. Fix versions.
6900 (rst-position-if, rst-position, rst-some, rst-signum): New functions.
6901 (rst-shift-region, rst-adornment-level, rst-compute-tabs)
6902 (rst-indent-line, rst-shift-region, rst-forward-line): Use them.
6903 (rst-package-emacs-version-alist): Correct Emacs version to
6904 represent major merge with upstream.
6905 (rst-transition, rst-adornment, rst-compile-toolsets): Fix versions.
6906
6907 2012-06-06 Glenn Morris <rgm@gnu.org>
6908
6909 * mail/emacsbug.el (report-emacs-bug): Add relevant EMACS env-vars.
6910 Only print environment variables if set.
6911
6912 2012-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
6913
6914 * emacs-lisp/macroexp.el: Don't require CL since we don't use it.
6915 (macroexp--cons): Rename from maybe-cons.
6916 (macroexp--accumulate): Rename from macroexp-accumulate.
6917 (macroexp--all-forms): Rename from macroexpand-all-forms.
6918 (macroexp--all-clauses): Rename from macroexpand-all-clauses.
6919 (macroexp--expand-all): Rename from macroexpand-all-1.
6920
6921 2012-06-06 Sam Steingold <sds@gnu.org>
6922
6923 * calendar/calendar.el (calendar-in-read-only-buffer):
6924 Call `special-mode' to enable the standard read-only keybindings.
6925
6926 2012-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
6927
6928 * emacs-lisp/macroexp.el (macroexpand-all-1): Don't spam the output
6929 with "loading" messages (bug#11635).
6930
6931 2012-06-06 Michael Albinus <michael.albinus@gmx.de>
6932
6933 * files.el (enable-remote-dir-locals): New option.
6934 (hack-dir-local-variables): Use it. (Bug#1933, Bug#6731)
6935
6936 * net/tramp-compat.el (tramp-compat-temporary-file-directory):
6937 Ensure, that the temp directory is local.
6938
6939 * net/tramp-sh.el (tramp-sh-handle-write-region): Let-bind
6940 `temporary-file-directory'.
6941
6942 * progmodes/python.el (python-send-region): Ensure, that the
6943 temporary file is created also in the remote case.
6944
6945 2012-06-06 Glenn Morris <rgm@gnu.org>
6946
6947 * vc/vc-rcs.el (vc-rcs-rcs2log-program): New.
6948 (vc-rcs-update-changelog): Use it.
6949
6950 * emacs-lisp/authors.el (authors-fixed-entries): Remove vcdiff.
6951
6952 * vc/vc-sccs.el (vc-sccs-write-revision): New function.
6953 (vc-sccs-workfile-unchanged-p): Use vc-sccs-write-revision.
6954 (vc-sccs-diff): Replace use of the external vcdiff script.
6955
6956 2012-06-05 Glenn Morris <rgm@gnu.org>
6957
6958 * ledit.el: Move to obsolete/.
6959
6960 2012-06-05 Sam Steingold <sds@gnu.org>
6961
6962 * calendar/calendar.el (calendar-exit): Reinstate the 2012-03-28
6963 patch (Bug#11140).
6964
6965 2012-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
6966
6967 * emacs-lisp/cust-print.el: Move to obsolete.
6968
6969 * emacs-lisp/macroexp.el (macroexpand-all-1): Tolerate errors during
6970 compiler-macro expansion.
6971
6972 Add native compiler-macro support.
6973 * emacs-lisp/macroexp.el (macroexpand-all-1):
6974 Support compiler-macros directly. Properly follow aliases and apply
6975 the compiler macros more thoroughly.
6976 * emacs-lisp/cl.el: Don't copy compiler-macro properties any more since
6977 macroexpand now properly follows aliases.
6978 * emacs-lisp/cl-macs.el (toplevel, cl-define-compiler-macro)
6979 (cl-compiler-macroexpand): Use new prop.
6980 * emacs-lisp/byte-opt.el (featurep): Optimize earlier.
6981
6982 * emacs-lisp/cl-lib.el (custom-print-functions): Add alias.
6983
6984 2012-06-05 Martin Rudalics <rudalics@gmx.at>
6985
6986 * window.el (get-lru-window, get-mru-window, get-largest-window):
6987 New argument NOT-SELECTED to avoid picking the selected window.
6988 (window--display-buffer-1, window--display-buffer-2): Replace by
6989 new function window--display-buffer
6990 (display-buffer-same-window, display-buffer-reuse-window)
6991 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
6992 Use window--display-buffer.
6993 (display-buffer-use-some-window): Remove temporary dedication
6994 hack by calling get-lru-window and get-largest-window with
6995 NOT-SELECTED argument non-nil. Call window--display-buffer.
6996
6997 2012-06-05 Glenn Morris <rgm@gnu.org>
6998
6999 * vc/vc-sccs.el (vc-sccs-workfile-unchanged-p):
7000 Replace external vcdiff script.
7001
7002 2012-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
7003
7004 * emacs-lisp/cl-lib.el (cl-values, cl-values-list): Fix up last change.
7005
7006 2012-06-04 Chong Yidong <cyd@gnu.org>
7007
7008 * image.el (imagemagick-types-inhibit): Revert last change.
7009 Add INFO and M.
7010 (imagemagick-enabled-types): Remove CIN and EPS*.
7011
7012 2012-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
7013
7014 * emacs-lisp/cl-lib.el: Rename from cl.el.
7015 * emacs-lisp/cl.el: New compatibility file.
7016 * emacs-lisp/cl-lib.el, emacs-lisp/cl-seq.el, emacs-lisp/cl-macs.el:
7017 * emacs-lisp/cl-extra.el: Rename all top-level functions and variables
7018 to obey the "cl-" prefix.
7019 * emacs-lisp/macroexp.el (macroexpand-all-1): Adjust to new name.
7020
7021 2012-06-03 Glenn Morris <rgm@gnu.org>
7022
7023 * emacs-lisp/authors.el (authors-aliases): Addition.
7024
7025 * cus-start.el (tool-bar-style, tool-bar-max-label-size):
7026 Fix :version.
7027
7028 2012-06-03 Stefan Merten <smerten@oekonux.de>
7029
7030 * textmodes/rst.el: Add comments.
7031 (rst-transition, rst-adornment): New faces.
7032 (rst-adornment-faces-alist): Make default safe to reevaluate.
7033 Fixes
7034 http://sourceforge.net/tracker/?func=detail&atid=422030&aid=3479603&group_id=38414.
7035 Improve customization tags.
7036 (rst-define-level-faces): Clarify meaning.
7037
7038 2012-06-03 Chong Yidong <cyd@gnu.org>
7039
7040 * progmodes/compile.el (compilation-mode-line-fail)
7041 (compilation-mode-line-run, compilation-mode-line-exit):
7042 New faces.
7043 (compilation-start, compilation-handle-exit): Use them (Bug#11032).
7044
7045 2012-06-03 Jack Duthen <duthen.mac.01@gmail.com> (tiny change)
7046
7047 * progmodes/which-func.el (which-func-update-ediff-windows):
7048 New function. Use it in ediff-select-hook (Bug#11478).
7049
7050 2012-06-03 Chong Yidong <cyd@gnu.org>
7051
7052 * bindings.el: Remove explicit help text from format-mode-line.
7053 It is now supplied by mode-line-default-help-echo.
7054 (mode-line-front-space, mode-line-end-spaces)
7055 (mode-line-misc-info): New variables.
7056 (mode-line-modes, mode-line-position): Move the default value to
7057 the variable definition.
7058 (mode-line-default-help-echo): New defcustom.
7059 (mode-line-mule-info-help-echo, mode-line-read-only-help-echo)
7060 (mode-line-modified-help-echo): New functions.
7061 (mode-line-mule-info, mode-line-modified): Use them.
7062 (mode-line-eol-desc, propertized-buffer-identification):
7063 Consistency fixes for help text.
7064 (mode-line-coding-system-map): Allow using mouse-3 to invoke
7065 set-buffer-file-coding-system (Bug#289).
7066 (mode-line-mule-info-help-echo): Update help text.
7067
7068 2012-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
7069
7070 * simple.el (execute-extended-command): Set real-this-command
7071 (bug#11506).
7072
7073 2012-06-02 Chong Yidong <cyd@gnu.org>
7074
7075 Remove incorrect uses of "modeline" in comments, docstrings, and
7076 function/variable names (Bug#10329).
7077
7078 * cus-edit.el (mode-line):
7079 * dframe.el (dframe-mouse-hscroll):
7080 * emacs-lisp/re-builder.el:
7081 * emacs-lisp/easy-mmode.el (define-minor-mode):
7082 * frame.el (set-frame-name):
7083 * help.el (lookup-minor-mode-from-indicator):
7084 * net/rcirc.el (rcirc-activity-string, rcirc-short-buffer-name):
7085 * progmodes/cc-cmds.el (c-toggle-auto-newline)
7086 (c-toggle-hungry-state):
7087 * progmodes/antlr-mode.el (antlr-language-alist):
7088 * progmodes/idlw-shell.el (idlwave-shell-electric-stop-line-face):
7089 * progmodes/vhdl-mode.el (vhdl-mode):
7090 * progmodes/which-func.el (which-func, which-func-cleanup-function):
7091 * term/ns-win.el (ns-face-at-pos):
7092 * term/sup-mouse.el (sup-mouse-report):
7093 * textmodes/flyspell.el (flyspell-mode-line-string):
7094 * textmodes/ispell.el (ispell-highlight-face):
7095 * textmodes/reftex-global.el:
7096 * vc/vc-arch.el (vc-arch-mode-line-string):
7097 * vc/vc-cvs.el (vc-cvs-mode-line-string):
7098 * vc/vc-git.el (vc-git-mode-line-string):
7099 * vc/vc-hooks.el (vc-display-status)
7100 (vc-default-mode-line-string):
7101 * vc/vc-mtn.el (vc-mtn-mode-line-string): Doc fixes.
7102
7103 * ansi-color.el (ansi-color-faces-vector): Change default faces.
7104
7105 * dired.el (dired-sort-set-mode-line): Rename from
7106 dired-sort-set-modeline. All callers changed.
7107
7108 * eshell/esh-mode.el (eshell-status-in-mode-line): Rename from
7109 eshell-status-in-modeline.
7110
7111 * foldout.el (foldout-mode-line-string): Rename from
7112 foldout-modeline-string. All callers changed.
7113 (foldout-update-mode-line): Rename from foldout-update-modeline.
7114
7115 * subr.el (redraw-modeline): Make into obsolete alias.
7116
7117 * calendar/timeclock.el (timeclock-mode-line-display): Rename from
7118 timeclock-modeline-display. Make old name an alias.
7119 (timeclock-update-mode-line): Likewise. All callers changed.
7120 (timeclock-mode-line-display): No need to check before using
7121 add-hook.
7122 (timeclock-relative, timeclock-day-over-hook)
7123 (timeclock-use-elapsed, timeclock-mode-string)
7124 (timeclock-mode-line-display): Doc fix, "modeline" -> "mode line".
7125
7126 * emulation/crisp.el (crisp-mode-mode-line-string): Rename from
7127 crisp-mode-modeline-string.
7128
7129 * play/solitaire.el (solitaire-build-mode-line): Rename from
7130 solitaire-build-modeline. All callers changed.
7131
7132 * play/zone.el (zone-hiding-mode-line): Rename from
7133 zone-hiding-modeline. All callers changed.
7134 (zone): Remove unusued `modeline-hidden-level' property.
7135
7136 * progmodes/xscheme.el (xscheme-mode-line-initialize): Rename from
7137 xscheme-modeline-initialize. All callers changed.
7138
7139 * strokes.el (strokes-lighter): Rename from
7140 strokes-modeline-string.
7141
7142 * textmodes/sgml-mode.el (html-face-tag-alist)
7143 (html-tag-face-alist): Use mode-line face instead of obsolete
7144 alias modeline.
7145
7146 2012-06-02 Stefan Merten <smerten@oekonux.de>
7147
7148 * textmodes/rst.el: Always require `cl'.
7149 (rst-mode-map): Fix meaning of C-M-a / C-M-e.
7150
7151 2012-06-02 Chong Yidong <cyd@gnu.org>
7152
7153 * image.el (imagemagick-enabled-types): Rename from
7154 imagemagick-types-enable. Add many more types.
7155 (imagemagick-types-inhibit): Change default to nil.
7156 (imagemagick-filter-types): Caller changed.
7157
7158 2012-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
7159
7160 * emacs-lisp/cl-macs.el: Use backquotes.
7161 (cl-transform-function-property): Use eval-and-compile rather than
7162 abusing `require'.
7163 (defstruct): Use declare-function instead of with-no-warnings.
7164
7165 * emacs-lisp/bytecomp.el: Fix last change (bug#11594).
7166 (byte-compile-output-docform): Re-add the print-circle bindings.
7167 (byte-compile-fix-header): Use #$ just because it's shorter.
7168 (byte-compile-output-file-form): Remove defun/defmacro.
7169
7170 2012-06-01 Martin Rudalics <rudalics@gmx.at>
7171
7172 * simple.el (choose-completion): Remove now obsolete binding for
7173 owindow.
7174
7175 2012-06-01 Michael Albinus <michael.albinus@gmx.de>
7176
7177 * net/tramp.el (tramp-check-for-regexp): Search from buffer end,
7178 in order to avoid "Stack overflow in regexp matcher".
7179
7180 2012-05-31 Glenn Morris <rgm@gnu.org>
7181
7182 * image.el: For clarity, call imagemagick-register-types at
7183 top-level, rather than relying on a custom :initialize.
7184 (imagemagick-types-enable): New option. (Bug#11557)
7185 (imagemagick-filter-types): New function. (Bug#7406)
7186 (imagemagick-register-types): Use imagemagick-filter-types.
7187 If disabling support, remove elements altogether rather
7188 than using an impossible regexp.
7189 (imagemagick-types-inhibit): Give it the default init function.
7190
7191 2012-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
7192
7193 * emacs-lisp/bytecomp.el (byte-compile-fix-header):
7194 Handle arbitrary file name lengths (Bug#11585).
7195
7196 2012-05-31 Martin Rudalics <rudalics@gmx.at>
7197
7198 * desktop.el (desktop-read): Clear previous and next buffers for
7199 all windows and bury *Messages* buffer (bug#11556).
7200
7201 2012-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
7202
7203 Add `declare' for `defun'. Align `defmacro's with it.
7204 * emacs-lisp/easy-mmode.el (define-minor-mode)
7205 (define-globalized-minor-mode): Don't autoload the var definitions.
7206 * emacs-lisp/byte-run.el: Use lexical-binding.
7207 (defun-declarations-alist, macro-declarations-alist): New vars.
7208 (defmacro, defun): Use them.
7209 (make-obsolete, define-obsolete-function-alias)
7210 (make-obsolete-variable, define-obsolete-variable-alias):
7211 Use `declare'.
7212 (macro-declaration-function): Mark obsolete.
7213 * emacs-lisp/autoload.el: Use lexical-binding.
7214 (make-autoload): Add `expansion' arg. Rely more on macro expansion.
7215
7216 2012-05-30 Agustín Martín Domingo <agustin.martin@hispalinux.es>
7217
7218 * textmodes/ispell.el (ispell-with-no-warnings):
7219 Define as a macro.
7220 (ispell-kill-ispell, ispell-change-dictionary):
7221 Use `called-interactively-p' for Emacs instead of obsolete
7222 `interactive-p'.
7223
7224 2012-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
7225
7226 * emacs-lisp/byte-run.el (defmacro, defun): Move from C.
7227 (macro-declaration-function): Move var from C code.
7228 (macro-declaration-function): Define function with defalias.
7229 * emacs-lisp/macroexp.el (macroexpand-all-1):
7230 * emacs-lisp/cconv.el (cconv-convert, cconv-analyse-form):
7231 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker): Don't handle
7232 defun/defmacro any more.
7233 * emacs-lisp/bytecomp.el (byte-compile-arglist-signature):
7234 Provide fallback for unknown arglist.
7235 (byte-compile-arglist-warn): Change calling convention.
7236 (byte-compile-output-file-form): Move print-vars binding.
7237 (byte-compile-output-docform): Simplify accordingly.
7238 (byte-compile-file-form-defun, byte-compile-file-form-defmacro)
7239 (byte-compile-defmacro-declaration): Remove.
7240 (byte-compile-file-form-defmumble): Generalize to defalias.
7241 (byte-compile-output-as-comment): Return byte-positions.
7242 Simplify callers accordingly.
7243 (byte-compile-lambda): Use `assert'.
7244 (byte-compile-defun, byte-compile-defmacro): Remove.
7245 (byte-compile-file-form-defalias):
7246 Use byte-compile-file-form-defmumble.
7247 (byte-compile-defalias-warn): Remove.
7248
7249 2012-05-29 Stefan Merten <smerten@oekonux.de>
7250
7251 * textmodes/rst.el: Silence `checkdoc-ispell' errors where
7252 possible. Fix authors. Improve comments. Improve loading of `cl'.
7253
7254 (rst-mode-abbrev-table): Merge definition.
7255 (rst-mode): Make sure `font-lock-defaults' is buffer local.
7256 (rst-define-key, rst-deprecated-keys, rst-call-deprecated): Refactor.
7257
7258 2012-05-29 Ulf Jasper <ulf.jasper@web.de>
7259
7260 * calendar/icalendar.el
7261 (icalendar-export-region): Export UID properly.
7262
7263 2012-05-29 Leo Liu <sdl.web@gmail.com>
7264 * calendar/icalendar.el (icalendar-import-format):
7265 Add `icalendar-import-format-uid' (Bug#11525).
7266 (icalendar-import-format-uid): New.
7267 (icalendar--parse-summary-and-rest, icalendar--format-ical-event):
7268 Export UID.
7269
7270 2012-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
7271
7272 * emacs-lisp/pcase.el (pcase--expand): Accept different sets of vars in
7273 different alternative patterns.
7274 (pcase-codegen): Be more careful to preserve identity.
7275 (pcase--u1): Don't forget to mark vars as used.
7276
7277 * emacs-lisp/bytecomp.el (byte-compile-constp): Treat #'v as a constant.
7278 (byte-compile-close-variables): Bind byte-compile--outbuffer here...
7279 (byte-compile-from-buffer): ...rather than here.
7280
7281 * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Don't re-preprocess
7282 functions from byte-compile-function-environment.
7283
7284 2012-05-29 Troels Nielsen <bn.troels@gmail.com>
7285
7286 * window.el (window-deletable-p): Avoid deleting the root window
7287 of a frame with an active minibuffer.
7288
7289 2012-05-29 Martin Rudalics <rudalics@gmx.at>
7290
7291 * simple.el (choose-completion): Use quit-window (Bug#11567).
7292
7293 2012-05-29 Chong Yidong <cyd@gnu.org>
7294
7295 * whitespace.el (whitespace-cleanup): Fix usage of
7296 whitespace-empty-at-bob-regexp (Bug#11492).
7297
7298 2012-05-29 Aaron S. Hawley <aaron.s.hawley@gmail.com>
7299
7300 * vc/vc.el (vc-revert, vc-rollback): Dont kill vc-diff buffer on
7301 revert (Bug#11488).
7302
7303 2012-05-29 Juri Linkov <juri@jurta.org>
7304
7305 * isearch.el (isearch-mode-map): Bind `M-s _' to
7306 `isearch-toggle-symbol'. Bind `M-s c' to
7307 `isearch-toggle-case-fold'.
7308 (search-map): Bind `M-s _' to `isearch-forward-symbol'.
7309 (isearch-forward): Add `M-s _' to the docstring.
7310 (isearch-forward-symbol, isearch-toggle-case-fold)
7311 (isearch-symbol-regexp): New functions. (Bug#11381)
7312
7313 2012-05-29 Juri Linkov <juri@jurta.org>
7314
7315 * isearch.el (isearch-word): Add docstring. (Bug#11381)
7316 (isearch-occur, isearch-search-and-update): If `isearch-word' is
7317 a function, call it to get the regexp.
7318 (isearch-message-prefix): If `isearch-word' holds a symbol, use its
7319 property `isearch-message-prefix' instead of the string "word ".
7320 (isearch-search-fun-default): For the case of `isearch-word',
7321 return a lambda that calls re-search-forward/re-search-backward
7322 with a regexp returned by `word-search-regexp' or by the function
7323 in `isearch-word'.
7324
7325 2012-05-29 Juri Linkov <juri@jurta.org>
7326
7327 * isearch.el (isearch-search-fun-default): New function.
7328 (isearch-search-fun): Move default part to the new function
7329 `isearch-search-fun-default'.
7330 (isearch-search-fun-function): Set the default value to
7331 `isearch-search-fun-default'. (Bug#11381)
7332
7333 * comint.el (comint-history-isearch-end):
7334 Use `isearch-search-fun-default'.
7335 (comint-history-isearch-search): Use `isearch-search-fun-default'
7336 and remove spacial case for `isearch-word'.
7337 (comint-history-isearch-wrap): Remove spacial case for
7338 `isearch-word'.
7339
7340 * hexl.el (hexl-isearch-search-function):
7341 Use `isearch-search-fun-default'.
7342
7343 * info.el (Info-isearch-search): Use `isearch-search-fun-default'.
7344 Use `word-search-regexp' for `isearch-word'.
7345
7346 * misearch.el (multi-isearch-search-fun):
7347 Use `isearch-search-fun-default'.
7348
7349 * simple.el (minibuffer-history-isearch-search):
7350 Use `isearch-search-fun-default' and remove spacial case for
7351 `isearch-word'.
7352 (minibuffer-history-isearch-wrap): Remove spacial case for
7353 `isearch-word'.
7354
7355 * textmodes/reftex-global.el (reftex-isearch-wrap-function):
7356 Remove spacial case for `isearch-word'.
7357 (reftex-isearch-isearch-search): Use `isearch-search-fun-default'.
7358
7359 2012-05-28 Agustín Martín Domingo <agustin.martin@hispalinux.es>
7360
7361 Decrease XEmacs incompatibilities.
7362 * textmodes/flyspell.el (flyspell-check-pre-word-p):
7363 Use `string-match'.
7364 (flyspell-delete-region-overlays): Use alternative definition for
7365 XEmacs.
7366 (flyspell-delete-all-overlays): Use `flyspell-delete-region-overlays'.
7367 (flyspell-word): Use `process-kill-without-query' if XEmacs.
7368 (flyspell-mode-on): Use `interactive-p' if XEmacs.
7369 (flyspell-incorrect-face, flyspell-duplicate-face): Do not use
7370 `define-obsolete-face-alias' under XEmacs, but old method.
7371
7372 * textmodes/ispell.el (ispell-with-no-warnings): XEmacs alternative
7373 `with-no-warnings' definition or Emacs alias.
7374 (ispell-command-loop, ispell-message): Use `ispell-with-no-warnings'.
7375 (ispell-word): Do not use `region-p' if XEmacs.
7376
7377 2012-05-28 Agustín Martín Domingo <agustin.martin@hispalinux.es>
7378
7379 * textmodes/ispell.el (ispell-find-aspell-dictionaries):
7380 Check for `ispell-dictionary-base-alist' instead of full
7381 `ispell-dictionary-alist'.
7382 (ispell-init-process): Show spellchecker when starting new Ispell
7383 process.
7384
7385 2012-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
7386
7387 * progmodes/vhdl-mode.el: Sync with upstream 3.33.28.
7388 http://www.iis.ee.ethz.ch/~zimmi/emacs/vhdl-mode.html#release-notes-3.33
7389
7390 2012-05-27 Juanma Barranquero <lekktu@gmail.com>
7391
7392 * version.el (motif-version-string, gtk-version-string)
7393 (ns-version-string): Declare.
7394
7395 2012-05-27 Juri Linkov <juri@jurta.org>
7396
7397 * emacs-lisp/lisp-mode.el (eval-defun-2): Use `eval-sexp-add-defvars'
7398 after the `eval-defun-1' specialcaseing
7399 like in `edebug-eval-defun' (bug#10181).
7400
7401 * emacs-lisp/edebug.el (edebug-eval-defun): Set `face-documentation'
7402 like in `eval-defun-1'.
7403
7404 2012-05-27 Eli Zaretskii <eliz@gnu.org>
7405
7406 * mail/sendmail.el (mail-yank-region):
7407 Recognize rmail-yank-current-message in addition to insert-buffer.
7408 Fixes mail-mode's "C-c C-r" that otherwise does nothing when invoked in
7409 a *mail* buffer created through rmail-start-mail with sendmail as
7410 mail-user-agent.
7411
7412 2012-05-27 Chong Yidong <cyd@gnu.org>
7413
7414 * net/gnutls.el (gnutls-min-prime-bits): Improve docstring.
7415 Default to 256 (Bug#11267).
7416
7417 * help.el (describe-mode): Doc fix.
7418
7419 2012-05-26 Glenn Morris <rgm@gnu.org>
7420
7421 * w32-fns.el (w32-init-info): Remove.
7422 * paths.el (Info-default-directory-list): Add w32-init-info equivalent.
7423
7424 * info.el (info-initialize): For self-contained NS builds, put the
7425 included info/ directory at the front. (Bug#2791)
7426
7427 * paths.el (Info-default-directory-list): Make it a defcustom,
7428 mainly so that we can use custom-initialize-delay.
7429
7430 2012-05-26 Stefan Monnier <monnier@iro.umontreal.ca>
7431
7432 * subr.el (buffer-has-markers-at): Mark obsolete.
7433
7434 * subr.el (lambda): Use declare.
7435
7436 * emacs-lisp/lisp-mode.el (lambda):
7437 * emacs-lisp/edebug.el (lambda): Move properties to its definition.
7438
7439 2012-05-26 Aaron S. Hawley <aaron.s.hawley@gmail.com>
7440
7441 * thingatpt.el (forward-same-syntax): Handle no ARG case. (Bug#11560)
7442
7443 2012-05-26 Glenn Morris <rgm@gnu.org>
7444
7445 * progmodes/cc-mode.el (auto-mode-alist): Fix typo.
7446
7447 2012-05-25 Glenn Morris <rgm@gnu.org>
7448
7449 * paths.el: Remove no-byte-compile.
7450 * loadup.el: No need to load paths.el uncompiled.
7451
7452 * image.el (imagemagick-types-inhibit): Doc fix.
7453
7454 * version.el: Remove no-byte-compile and associated formatting.
7455 * loadup.el: No need to load version.el uncompiled. AFAICS, this
7456 is ancient code from when there was an "inc-vers.el".
7457
7458 2012-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
7459
7460 * progmodes/gdb-mi.el: Minor style changes.
7461 (gdb-enable-debug, gdb-speedbar-auto-raise, gdb-many-windows):
7462 Turn into minor modes.
7463 (gdb--if-arrow): Rename from gdb-if-arrow, make it hygienic.
7464 (gdb-mouse-until, gdb-mouse-jump): Adjust uses accordingly.
7465 (gdb-shell): Remove unneeded let-binding.
7466 (gdb-get-many-fields): Eliminate O(n²) behavior.
7467
7468 2012-05-25 Eli Zaretskii <eliz@gnu.org>
7469
7470 * cus-start.el <vertical-centering-font-regexp>: Avoid warning on
7471 platforms that don't link in fontset.c.
7472
7473 2012-05-25 Juri Linkov <juri@jurta.org>
7474
7475 Use the same diff color scheme as in modern VCSes (bug#10181).
7476
7477 * vc/diff-mode.el (diff-header, diff-file-header): Remove "green"
7478 to avoid confusion with `diff-added' that now uses green colors.
7479 (diff-removed): Use shades of red.
7480 (diff-added): Use shades of green.
7481 (diff-changed): Leave just the yellow color.
7482 (diff-use-changed-face): New variable.
7483 (diff-font-lock-keywords): Use `diff-use-changed-face' to decide
7484 how to highlight context diff changes.
7485 (diff-refine-change): Use shades of yellow.
7486 (diff-refine-removed): New face that uses shades of red.
7487 (diff-refine-added): New face that uses shades of green.
7488 (diff-refine-hunk): Use `diff-refine-change', `diff-refine-added',
7489 `diff-refine-removed' in the call to `smerge-refine-subst'
7490 depending on the value of `diff-use-changed-face'.
7491
7492 * vc/smerge-mode.el (smerge-mine): Use shades of red.
7493 (smerge-other): Use shades of green.
7494 (smerge-base): Use shades of yellow.
7495 (smerge-refined-change): Empty face.
7496 (smerge-refined-removed): New face that uses shades of red.
7497 (smerge-refined-added): New face that uses shades of green.
7498 (smerge-refine-subst): Rename arg `props' to `props-c'. Add new
7499 args `props-r' and `props-a', and use them. Doc fix.
7500 (smerge-refine): Evaluate `smerge-use-changed-face' and depending
7501 on its value use different faces `smerge-refined-change',
7502 `smerge-refined-removed', `smerge-refined-added' in the call to
7503 `smerge-refine-subst'.
7504
7505 * vc/ediff-init.el (ediff-current-diff-A, ediff-fine-diff-A):
7506 Add face condition `min-colors 88' with shades of red.
7507 (ediff-current-diff-B, ediff-fine-diff-B): Add face condition
7508 `min-colors 88' with shades of green.
7509 (ediff-current-diff-C, ediff-fine-diff-C): Add face condition
7510 `min-colors 88' with shades of yellow.
7511
7512 2012-05-24 Glenn Morris <rgm@gnu.org>
7513
7514 * paths.el (prune-directory-list, remote-shell-program): Move to...
7515 * files.el (prune-directory-list, remote-shell-program): ...here.
7516 For the latter, delay initialization, prefer ssh, just search PATH.
7517
7518 * paths.el (term-file-prefix): Move to faces.el (the only user).
7519 * faces.el (term-file-prefix): Move here, make it a defcustom.
7520
7521 * paths.el (news-directory, news-path, news-inews-program):
7522 Move to gnus/nnspool.el.
7523
7524 * paths.el (gnus-default-nntp-server): Remove (gnus.el defines it).
7525
7526 * paths.el (rmail-file-name, rmail-spool-directory): Move from here...
7527 * mail/rmail.el (rmail-file-name, rmail-spool-directory): ... to here.
7528 Make the latter a defcustom, with a delayed initialization.
7529
7530 * paths.el (gnus-nntp-service, gnus-local-organization): Remove.
7531 These were deleted from Gnus itself late 2010.
7532
7533 2012-05-22 Juanma Barranquero <lekktu@gmail.com>
7534
7535 * progmodes/which-func.el (which-func-ff-hook):
7536 Check against user-error, not error.
7537
7538 * emacs-lisp/edebug.el (top): Do not load or set up loading of
7539 cl-specs.el, which no longer exists.
7540
7541 2012-05-22 Glenn Morris <rgm@gnu.org>
7542
7543 * info.el (info-emacs-bug): New command.
7544 * menu-bar.el (menu-bar-help-menu): Add "How to Report a Bug" to Help.
7545 * mail/emacsbug.el (report-emacs-bug): Replace with info-emacs-bug.
7546
7547 2012-05-21 Glenn Morris <rgm@gnu.org>
7548
7549 * makefile.w32-in (update-subdirs-SH):
7550 * Makefile.in (update-subdirs): Update for moved update-subdirs.
7551
7552 2012-05-21 Stefan Monnier <monnier@iro.umontreal.ca>
7553
7554 * hi-lock.el (hi-lock-face-defaults): Move obsolete before definition.
7555
7556 * progmodes/compile.el (compilation-error-regexp-alist-alist):
7557 Simplify Maven regexp, and make sure the file can't start with a space
7558 (bug#11517).
7559
7560 2012-05-21 Glenn Morris <rgm@gnu.org>
7561
7562 * Makefile.in (setwins, setwins_almost, setwins_for_subdirs):
7563 Scrap superfluous subshells.
7564
7565 2012-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
7566
7567 * emacs-lisp/bytecomp.el (byte-compile-root-dir): New var.
7568 (byte-compile-warning-prefix, batch-byte-compile-file): Use it.
7569
7570 2012-05-19 Jay Belanger <jay.p.belanger@gmail.com>
7571
7572 * calc/calc.el (calc-ensure-consistent-units): New variable.
7573
7574 * calc/calc-units.el (math-consistent-units-p)
7575 (math-check-unit-consistency): New functions.
7576 (calc-quick-units, calc-convert-units):
7577 Use `math-check-unit-consistency' when `calc-ensure-consistent-units'
7578 is non-nil.
7579 (calc-extract-units): Fix typo.
7580
7581 2012-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
7582
7583 * vc/vc-bzr.el (vc-bzr-state-heuristic): Save match-data around sha1.
7584
7585 * textmodes/flyspell.el: Commenting style, plus code simplifications.
7586 (flyspell-default-deplacement-commands): Don't spell check after
7587 repeated window/frame switches (e.g. triggered by mouse-movement).
7588 (flyspell-delay-commands, flyspell-deplacement-commands): Use mapc.
7589 (flyspell-debug-signal-word-checked): Simplify and fit in 80 cols.
7590 (flyspell-casechars-cache, flyspell-ispell-casechars-cache)
7591 (flyspell-not-casechars-cache, flyspell-ispell-not-casechars-cache):
7592 Remove unused vars.
7593 (flyspell-get-casechars, flyspell-get-not-casechars):
7594 Simplify; Don't bother removing a ] just to add it back.
7595 * textmodes/ispell.el (ispell-program-name): Use executable-find.
7596
7597 2012-05-18 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
7598
7599 * calc/calc-lang.el (math-C-parse-bess, math-C-parse-fma):
7600 New functions.
7601 (math-function-table): Add support for more C functions.
7602
7603 2012-05-18 Agustín Martín Domingo <agustin.martin@hispalinux.es>
7604
7605 * textmodes/flyspell.el (flyspell-check-pre-word-p)
7606 (flyspell-check-word-p, flyspell-debug-signal-word-checked):
7607 Protect delay handling for otherchars against empty otherchars.
7608
7609 2012-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
7610
7611 * emacs-lisp/lisp-mode.el (doc-string-elt): Move those properties to
7612 their respective macro declarations.
7613 * skeleton.el (define-skeleton):
7614 * progmodes/compile.el (define-compilation-mode):
7615 * ibuf-macs.el (define-ibuffer-sorter, define-ibuffer-op)
7616 (define-ibuffer-filter):
7617 * emacs-lisp/generic.el (define-generic-mode):
7618 * emacs-lisp/easy-mmode.el (define-minor-mode)
7619 (define-globalized-minor-mode):
7620 * emacs-lisp/cl-macs.el (defun*, defmacro*, defstruct, deftype):
7621 * emacs-lisp/byte-run.el (defsubst):
7622 * custom.el (deftheme): Add doc-string metadata.
7623
7624 2012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
7625
7626 * emacs-lisp/cl-macs.el, emacs-lisp/cl.el: Move indent info.
7627
7628 2012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
7629
7630 * emacs-lisp/pcase.el (pcase--u1): Avoid ((lambda ...) ...).
7631
7632 * emacs-lisp/cl.el: Add edebug specs from cl-specs.el.
7633 * emacs-lisp/cl-macs.el: Idem.
7634 * emacs-lisp/cl-specs.el: Remove.
7635
7636 2012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
7637
7638 Minor renaming of internal CL functions and variables.
7639 * emacs-lisp/cl-seq.el (cl--adjoin): Rename from cl-adjoin.
7640 (cl--position): Rename from cl-position.
7641 (cl--delete-duplicates): Rename from cl-delete-duplicates.
7642 * emacs-lisp/cl.el (cl--gensym-counter): Rename from *gensym-counter*.
7643 (cl--random-state): Rename from *random-state*.
7644
7645 2012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
7646
7647 * emacs-lisp/cl-macs.el (cl-transform-lambda): Don't add spurious
7648 parens around the arg list (bug#11499).
7649
7650 2012-05-17 Juri Linkov <juri@jurta.org>
7651
7652 * isearch.el (word-search-regexp, word-search-backward)
7653 (word-search-forward, word-search-backward-lax)
7654 (word-search-forward-lax): Move functions from search.c
7655 (bug#10145, bug#11381).
7656
7657 2012-05-16 Agustín Martín Domingo <agustin.martin@hispalinux.es>
7658
7659 * textmodes/flyspell.el (flyspell-check-pre-word-p)
7660 (flyspell-check-word-p, flyspell-debug-signal-word-checked):
7661 Delay for otherchars as for normal word components.
7662
7663 2012-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
7664
7665 * minibuffer.el (completion--sifn-requote): Fix last change.
7666 (minibuffer-local-must-match-filename-map):
7667 Move define-obsolete-variable-alias before its var.
7668
7669 2012-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
7670
7671 * emacs-lisp/pcase.el (pcase-let*, pcase-let): Fix edebug spec.
7672
7673 * minibuffer.el (completion--sifn-requote): Handle sifn's truncation
7674 behavior.
7675 (completion--string-equal-p): New function.
7676 (completion--twq-all): Use it to get better assertion failure data.
7677
7678 Only handle ".." and '..' quoting in shell-mode (bug#11466).
7679 * shell.el (shell--unquote&requote-argument, shell--unquote-argument)
7680 (shell--requote-argument): New functions.
7681 (shell-completion-vars): Use them.
7682 (shell--parse-pcomplete-arguments): Rename from
7683 shell-parse-pcomplete-arguments.
7684 * comint.el (comint-word): Obey comint-file-name-quote-list. Simplify.
7685 (comint--unquote&requote-argument): Don't handle ".." and '..' quoting.
7686 Obey comint-file-name-quote-list.
7687
7688 * emacs-lisp/smie.el (smie-indent--bolp-1): New function.
7689 (smie-indent-keyword): Use it.
7690
7691 2012-05-14 Stefan Merten <smerten@oekonux.de>
7692
7693 * textmodes/rst.el (rst-re-alist): Fix loading (bug#11462).
7694
7695 2012-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
7696
7697 * net/rlogin.el (rlogin-mode-map): Fix last change.
7698
7699 2012-05-14 Jason L. Wright <jason.wright@inl.gov> (tiny change)
7700
7701 * mail/smtpmail.el (smtpmail-send-command): Send the command and
7702 the following \r\n using a single `process-send-string', since the
7703 Lotus SMTP server refuses to accept any commands if they are sent
7704 with two `process-send-string's (Bug#11444).
7705
7706 2012-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
7707
7708 * shell.el (shell-parse-pcomplete-arguments):
7709 Obey pcomplete-arg-quote-list inside double-quoted args (Bug#11348).
7710
7711 2012-05-14 Wolfgang Jenkner <wjenkner@inode.at>
7712
7713 * image-mode.el: Fit to width/height for rotated images (Bug#11431).
7714 (image-transform-scale, image-transform-right-angle-fudge): New vars.
7715 (image-transform-width, image-transform-fit-width): New functions.
7716 (image-transform-properties): Use them.
7717 (image-transform-check-size): New function.
7718 (image-toggle-display-image): Use it (for testing).
7719 (image-transform-set-rotation): Reduce angle mod 360.
7720 Delete obsolete comment.
7721
7722 2012-05-14 Wolfgang Jenkner <wjenkner@inode.at>
7723
7724 * image-mode.el: Fix scaling (bug#11399).
7725 (image-transform-resize): Doc fix.
7726 (image-transform-properties): Default scale is 1 and height should
7727 be an integer.
7728
7729 2012-05-13 Johan Bockgård <bojohan@gnu.org>
7730
7731 * emacs-lisp/smie.el (smie-next-sexp): Use accessor `op-forw' rather
7732 than hard-coding `car', to fix misbehavior when moving forward.
7733
7734 2012-05-13 Chong Yidong <cyd@gnu.org>
7735
7736 * emacs-lisp/tabulated-list.el (tabulated-list-format)
7737 (tabulated-list-entries, tabulated-list-padding)
7738 (tabulated-list-sort-key): Make permanent-local.
7739
7740 * ebuff-menu.el: Adapt to Buffer Menu changes (Bug#11455).
7741 (electric-buffer-list): Put electric buffer menu
7742 command descriptions in this docstring, instead of the docstring
7743 of electric-buffer-menu-mode. Code cleanups.
7744 (electric-buffer-menu-mode): Use define-derived-mode. Rename from
7745 Electric-buffer-menu-mode.
7746 (electric-buffer-update-highlight): Minor code cleanup.
7747
7748 2012-05-13 Michael Albinus <michael.albinus@gmx.de>
7749
7750 * net/dbus.el (dbus-call-method): Restore events not from D-Bus.
7751 (Bug#11447)
7752
7753 2012-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
7754
7755 Move define-obsolete-variable-alias before the var's definition.
7756 * vc/log-edit.el (vc-comment-ring, vc-comment-ring-index):
7757 * tooltip.el (tooltip-hook):
7758 * textmodes/reftex-toc.el (reftex-toc-map):
7759 * textmodes/reftex-sel.el (reftex-select-label-map)
7760 (reftex-select-bib-map):
7761 * textmodes/reftex-index.el (reftex-index-map)
7762 (reftex-index-phrases-map):
7763 * speedbar.el (speedbar-syntax-table, speedbar-key-map):
7764 * progmodes/meta-mode.el (meta-mode-map):
7765 * novice.el (disabled-command-hook):
7766 * loadhist.el (unload-hook-features-list):
7767 * frame.el (blink-cursor):
7768 * files.el (find-file-not-found-hooks, write-file-hooks)
7769 (write-contents-hooks):
7770 * emulation/tpu-edt.el (GOLD-map):
7771 * emacs-lock.el (emacs-lock-from-exiting):
7772 * emacs-lisp/generic.el (generic-font-lock-defaults):
7773 * emacs-lisp/chart.el (chart-map):
7774 * dos-fns.el (register-name-alist):
7775 * dired-x.el (dired-omit-files-p):
7776 * desktop.el (desktop-enable):
7777 * cus-edit.el (custom-mode-hook):
7778 * buff-menu.el (buffer-menu-mode-hook):
7779 * bookmark.el (bookmark-read-annotation-text-func)
7780 (bookmark-exit-hooks):
7781 * allout.el (allout-mode-deactivate-hook)
7782 (allout-exposure-change-hook, allout-structure-added-hook)
7783 (allout-structure-deleted-hook, allout-structure-shifted-hook):
7784 * dirtrack.el (dirtrack-toggle, dirtrackp, dirtrack-debug-toggle)
7785 (dirtrack-debug): Move call to define-obsolete-variable-alias so it
7786 comes before the corresponding variable's definition.
7787
7788 2012-05-12 Chong Yidong <cyd@gnu.org>
7789
7790 * buff-menu.el (Buffer-menu-buffer+size-width): Doc fix (Bug#11454).
7791 (Buffer-menu-mouse-select): Restore function (Bug#11459).
7792 (Buffer-menu-mode-map): Bind it.
7793 (Buffer-menu--pretty-name): Add a mouse-face property.
7794
7795 2012-05-11 Stefan Monnier <monnier@iro.umontreal.ca>
7796
7797 * progmodes/prolog.el: Use SMIE. Cleanup regexp setup.
7798 (prolog-upper-case-string, prolog-lower-case-string)
7799 (prolog-atom-char-regexp, prolog-atom-regexp): Initialize in defconst.
7800 (prolog-use-smie, prolog-smie-grammar): New vars.
7801 (prolog-smie-forward-token, prolog-smie-backward-token)
7802 (prolog-smie-rules): New funs.
7803 (prolog-comment-indent): Remove.
7804 (prolog-mode-variables): Use default comment indentation instead.
7805 Setup SMIE.
7806 (prolog-build-case-strings, prolog-set-atom-regexps): Remove.
7807 (prolog-mode): Don't call them any more.
7808 (prolog-electric-colon, prolog-electric-dash)
7809 (prolog-edit-menu-insert-move): Use indent-according-to-mode.
7810
7811 * dabbrev.el (dabbrev-expand): Make "no expansion found" a user-error.
7812
7813 * minibuffer.el (completion--twq-all): Again, allow case differences.
7814
7815 * term.el: Move keymap initialization code to be more idiomatic.
7816 (term-signals-menu, term-mode-map, term-raw-map, term-raw-escape-map)
7817 (term-terminal-menu): Move initialization into declaration.
7818 (term-escape-char): Let the user set it in her .emacs.
7819
7820 * progmodes/sh-script.el: Use post-self-insert-hook&electric-pair-mode.
7821 Provide SMIE-based indentation (not enabled by default yet).
7822 (sh-mode-map): Don't bind electric keys.
7823 Use electric-pair-mode instead of skeleton-pair.
7824 (sh-assignment-regexp): Fit within 80 columns.
7825 (sh-indent-supported): Specify actual shell name instead of boolean.
7826 (sh--maybe-here-document): New fun, from sh-maybe-here-document.
7827 (sh-maybe-here-document): Use it. Make obsolete.
7828 (sh-electric-here-document-mode) New minor mode.
7829 (sh-mode): Use it. Don't set sh-indent-supported-here here.
7830 (sh-smie-sh-grammar, sh-smie--sh-operators, sh-smie--sh-operators-re)
7831 (sh-smie--sh-operators-back-re, sh-indent-after-continuation)
7832 (sh-smie-rc-grammar, sh-use-smie): New vars.
7833 (sh-smie--keyword-p, sh-smie--newline-semi-p, sh-smie--sh-keyword-p)
7834 (sh-smie-sh-forward-token, sh-smie--looking-back-at-continuation-p)
7835 (sh-smie-sh-backward-token, sh-smie--continuation-start-indent)
7836 (sh-smie-sh-rules, sh-smie-rc-rules, sh-smie--sh-keyword-in-p)
7837 (sh-smie--rc-after-special-arg-p, sh-smie-rc-backward-token)
7838 (sh-smie-sh-rules, sh-smie--rc-newline-semi-p): New functions.
7839 (sh-set-shell): Use smie-setup if requested.
7840
7841 * term.el (term-set-escape-char): Properly set term-escape-char.
7842 See http://stackoverflow.com/questions/10524656.
7843
7844 2012-05-10 Chong Yidong <cyd@gnu.org>
7845
7846 * ffap.el (ffap-url-unwrap-local): Make it work right (Bug#9131).
7847 Use url-generic-parse-url, and handle host names and Windows
7848 filenames properly.
7849 (ffap-url-unwrap-remote): Use url-generic-parse-url.
7850 (ffap-url-unwrap-remote): Accept list values, specifying a list of
7851 URL schemes to work on.
7852 (ffap--toggle-read-only): New function.
7853 (ffap-read-only, ffap-read-only-other-window)
7854 (ffap-read-only-other-frame): Use it.
7855 (ffap-fixup-url): Don't check ffap-ftp-regexp, since it is not
7856 necessary for ffap-url-unwrap-remote.
7857
7858 2012-05-10 Dave Abrahams <dave@boostpro.com>
7859
7860 * cus-start.el (create-lockfiles): Add it.
7861
7862 2012-05-09 Chong Yidong <cyd@gnu.org>
7863
7864 * net/browse-url.el (browse-url-url-encode-chars): Use upper-case.
7865 (browse-url-encode-url): Encode spaces and quotes (Bug#6300).
7866
7867 2012-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
7868
7869 * shell.el (shell-completion-vars): Fix last change (bug#11348).
7870
7871 2012-05-09 Chong Yidong <cyd@gnu.org>
7872
7873 * ansi-color.el (ansi-color-process-output): Check for validity of
7874 comint-last-output-start before using it. This avoids a bad
7875 interaction with gdb-mi's input/output buffer.
7876
7877 2012-05-09 Glenn Morris <rgm@gnu.org>
7878
7879 * files.el (dir-locals-read-from-file):
7880 Mention dir-locals in any error message.
7881
7882 2012-05-09 Chong Yidong <cyd@gnu.org>
7883
7884 * emacs-lisp/package.el (package-built-in-p): Handle the `emacs'
7885 package (Bug#11410).
7886
7887 * emacs-lisp/package.el (package-buffer-info): Avoid putting local
7888 variables into description.
7889
7890 2012-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
7891
7892 * shell.el (shell-completion-vars): Set pcomplete-arg-quote-list like
7893 shell-delimiter-argument-list (bug#11348).
7894 (shell-parse-pcomplete-arguments): Obey pcomplete-arg-quote-list.
7895
7896 2012-05-09 Juanma Barranquero <lekktu@gmail.com>
7897
7898 * textmodes/rst.el: Silence byte-compiler warnings.
7899 (rst-re-alist, rst-reset-section-caches): Move around.
7900 (rst-re): Use `characterp', not `char-valid-p'.
7901 (font-lock-beg, font-lock-end): Declare.
7902
7903 * progmodes/idlw-shell.el (specs): Remove reference to deleted
7904 variable `idlwave-shell-activate-alt-keybindings' and simplify.
7905
7906 * eshell/esh-cmd.el (eshell-debug-command): Fix typo in previous change.
7907
7908 2012-05-08 Glenn Morris <rgm@gnu.org>
7909
7910 * files.el (auto-mode-alist): Treat ".make" like ".mk".
7911
7912 2012-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
7913
7914 * vc/log-edit.el: Add GNU coding standards highlighting.
7915 (log-edit-font-lock-gnu-style)
7916 (log-edit-font-lock-gnu-keywords): New vars.
7917 (log-edit-font-lock-keywords): New fun.
7918 (log-edit-mode): Don't fold case in font-lock.
7919 (log-edit-font-lock-keywords): Do not assume case-folding.
7920
7921 * imenu.el: Misc cleanup. Make docstrings out of comments.
7922 Use lexical-binding.
7923 (imenu--index-alist, imenu--last-menubar-index-alist)
7924 (imenu-menubar-modified-tick): Use defvar-local.
7925 (imenu--split-menu): Remove unused var.
7926 (imenu--cleanup-seen): Declare as global.
7927 (imenu--cleanup): Use dolist.
7928
7929 * subr.el (defvar-local): Add debug spec and doc-string position.
7930
7931 2012-05-08 Glenn Morris <rgm@gnu.org>
7932
7933 * language/burmese.el, language/cham.el, language/czech.el:
7934 * language/english.el, language/georgian.el, language/greek.el:
7935 * language/japanese.el, language/khmer.el, language/korean.el:
7936 * language/lao.el, language/misc-lang.el, language/romanian.el:
7937 * language/sinhala.el, language/slovak.el, language/tai-viet.el:
7938 * language/thai.el, language/utf-8-lang.el:
7939 Remove no-byte-compile setting.
7940
7941 * play/zone.el (zone-pgm-stress): Don't pollute kill-ring. (Bug#11388)
7942
7943 2012-05-08 Aaron S. Hawley <aaron.s.hawley@gmail.com>
7944
7945 * progmodes/make-mode.el (makefile-browse):
7946 Remove unnecessary interactive. (Bug#11324)
7947
7948 2012-05-07 Glenn Morris <rgm@gnu.org>
7949
7950 * forms-d2.el, forms-pass.el: Move to ../etc/forms directory.
7951
7952 * international/mule.el (find-auto-coding): Make "unibyte: t" obsolete.
7953
7954 2012-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
7955
7956 * loadup.el: Preload newcomment.el.
7957 * newcomment.el: Move autoload-only code to toplevel.
7958
7959 * buff-menu.el (list-buffers--refresh): Mark `size' as right-align.
7960 * emacs-lisp/tabulated-list.el (tabulated-list-init-header):
7961 Handle new :right-align column property.
7962 (tabulated-list-print-col): Idem, plus use `display' text-property to
7963 try and preserve alignment for variable pitch fonts.
7964
7965 2012-05-07 Chong Yidong <cyd@gnu.org>
7966
7967 * emacs-lisp/tabulated-list.el: Add no-header-line alternative.
7968 (tabulated-list-use-header-line): New var.
7969 (tabulated-list-init-header): Use it.
7970 (tabulated-list-print-fake-header): New function.
7971 (tabulated-list-print): Use it.
7972 (tabulated-list-sort-button-map): Add non-header-line commands.
7973 (tabulated-list-init-header): Add column name property to basic
7974 labels as well.
7975 (tabulated-list-col-sort): Handle non-header-line button case.
7976 (tabulated-list--sort-by-column-name): Fix a corner case.
7977
7978 * buff-menu.el (list-buffers--refresh):
7979 Handle Buffer-menu-use-header-line.
7980
7981 2012-05-06 Chong Yidong <cyd@gnu.org>
7982
7983 * buff-menu.el: Convert to Tabulated List mode.
7984 (Buffer-menu-buffer+size-width): Make obsolete.
7985 (Buffer-menu-name-width, Buffer-menu-size-width): New variables.
7986 (Buffer-menu-mode-map): Inherit from tabulated-list-mode-map.
7987 (Buffer-menu-mode): Derive from tabulated-list-mode. Move command
7988 documentation into docstring of buffer-menu.
7989 (Buffer-menu-toggle-files-only): Add an informative message.
7990 (Buffer-menu-sort): Convert to alias for tabulated-list-sort.
7991 (Buffer-menu-buffer, Buffer-menu-beginning, Buffer-menu-mark)
7992 (Buffer-menu-unmark, Buffer-menu-backup-unmark)
7993 (Buffer-menu-delete, Buffer-menu-save, Buffer-menu-not-modified)
7994 (Buffer-menu-execute, Buffer-menu-select)
7995 (Buffer-menu-marked-buffers, Buffer-menu-toggle-read-only)
7996 (Buffer-menu-bury): Use Tabulated List machinery.
7997 (Buffer-menu-mouse-select, Buffer-menu-sort-by-column)
7998 (Buffer-menu-sort-button-map, Buffer-menu-make-sort-button):
7999 Delete.
8000 (list-buffers--refresh): New function.
8001 (list-buffers-noselect): Use it.
8002 (tabulated-list-entry-size->, Buffer-menu--pretty-name)
8003 (Buffer-menu--pretty-file-name): New helper functions.
8004
8005 * loadup.el: Preload tabulated-list.
8006
8007 * emacs-lisp/tabulated-list.el (tabulated-list-sort): Rename from
8008 tabulated-list-sort-column.
8009 (tabulated-list-init-header): Add the initial aligning space even
8010 if tabulated-list-padding is zero.
8011
8012 2012-05-06 Christopher Schmidt <christopher@ch.ristopher.com>
8013
8014 * emacs-lisp/cl-macs.el (cl-expr-contains): Handle cons cells
8015 whose cdr is not a cons cell correctly (bug#11038).
8016
8017 2012-05-06 Chong Yidong <cyd@gnu.org>
8018
8019 * emacs-lisp/tabulated-list.el (tabulated-list-format):
8020 Accept additional plist in column descriptors.
8021 (tabulated-list-init-header): Obey it.
8022 (tabulated-list-get-entry): New function.
8023 (tabulated-list-put-tag): Use it. Use string-width instead of
8024 length.
8025 (tabulated-list--column-number): New function.
8026 (tabulated-list-print): Use it.
8027 (tabulated-list-print-col): New function.
8028 Set `tabulated-list-column-name' property on each column's text.
8029 (tabulated-list-print-entry): Use it.
8030 (tabulated-list-delete-entry, tabulated-list-set-col):
8031 New functions.
8032 (tabulated-list-sort-column): New command (Bug#11337).
8033
8034 * buff-menu.el (list-buffers): Move C-x C-b binding from
8035 buff-menu.el to bindings.el.
8036
8037 * ebuff-menu.el (Electric-buffer-menu-undefined): Use the
8038 :advertised-binding feature.
8039
8040 2012-05-06 Troels Nielsen <bn.troels@gmail.com> (tiny change)
8041
8042 * progmodes/compile.el (compilation-internal-error-properties):
8043 Calculate start position correctly when end-col is set but
8044 end-line is not (Bug#11382).
8045
8046 2012-05-06 Wolfgang Jenkner <wjenkner@inode.at>
8047
8048 * man.el (Man-unindent): Use text-property-default-nonsticky to
8049 prevent untabify from inheriting face properties (Bug#11408).
8050
8051 2012-05-05 Stefan Merten <smerten@oekonux.de>
8052
8053 * textmodes/rst.el: Major merge with upstream development up to
8054 Docutils SVN r7399 / rst.el V1.2.1.
8055
8056 Clarify maintainership and authors.
8057
8058 (rst-extract-version, rst-cvs-header, rst-cvs-rev)
8059 (rst-cvs-timestamp, rst-svn-rev, rst-svn-timestamp)
8060 (rst-official-version, rst-official-cvs-rev, rst-version)
8061 (rst-package-emacs-version-alist): New functions and variables
8062 for version information.
8063
8064 (rst-bullets, rst-uri-schemes, rst-adornment-chars)
8065 (rst-max-inline-length, rst-re-alist-def, rst-re-alist)
8066 (rst-mode-syntax-table, rst-mode): New and corrected functions
8067 and variables representing reStructuredText features.
8068
8069 (rst-re): New function for reStructuredText regexes. Use in
8070 many places.
8071
8072 (rst-deprecated-keys, rst-call-deprecated, rst-define-key)
8073 (rst-mode-map): Rebind keys.
8074
8075 (rst-mode-lazy, rst-font-lock-keywords)
8076 (rst-font-lock-extend-region)
8077 (rst-font-lock-extend-region-internal)
8078 (rst-font-lock-extend-region-extend)
8079 (rst-font-lock-find-unindented-line-limit)
8080 (rst-font-lock-find-unindented-line-match)
8081 (rst-adornment-level, rst-font-lock-adornment-level)
8082 (rst-font-lock-adornment-match)
8083 (rst-font-lock-handle-adornment-pre-match-form)
8084 (rst-font-lock-handle-adornment-matcher): Major revision of
8085 font-locking. Integrate with other code. Use `jit-lock-mode'.
8086
8087 (rst-preferred-adornments, rst-adjust-hook)
8088 (rst-new-adornment-down, rst-preferred-bullets)
8089 (rst-preferred-bullets, rst-indent, rst-indent-width)
8090 (rst-indent-field, rst-indent-literal-normal)
8091 (rst-indent-literal-minimized, rst-indent-comment): Change,
8092 extend and improve customization.
8093
8094 (rst-line-homogeneous-p, rst-line-homogeneous-nodent-p)
8095 (rst-normalize-cursor-position, rst-get-decoration)
8096 (rst-straighten-deco-spacing, rst-re-bullets, rst-re-items)
8097 (rst-rstrip, rst-toc-insert-find-delete-contents)
8098 (rst-shift-fill-region, rst-compute-bullet-tabs)
8099 (rst-debug-print-tabs, rst-debug-mark-found)
8100 (rst-shift-region-guts, rst-shift-region-right)
8101 (rst-shift-region-left, rst-use-char-classes)
8102 (rst-font-lock-keywords-function)
8103 (rst-font-lock-indentation-point)
8104 (rst-font-lock-find-unindented-line-begin)
8105 (rst-font-lock-find-unindented-line-end)
8106 (rst-font-lock-find-unindented-line)
8107 (rst-font-lock-adornment-point, rst-font-lock-level)
8108 (rst-adornment-level-alist): Remove functions and variables.
8109
8110 (rst-compare-adornments, rst-get-adornment-match)
8111 (rst-suggest-new-adornment, rst-get-adornments-around)
8112 (rst-adornment-complete-p, rst-get-next-adornment)
8113 (rst-adjust-adornment, rst-display-adornments-hierarchy)
8114 (rst-straighten-adornments): Standardize function names to
8115 use "adornment" instead of "decoration". Correct callers.
8116 Similar standardizing in many places.
8117
8118 (rst-update-section, rst-adjust, rst-promote-region)
8119 (rst-enumerate-region, rst-bullet-list-region)
8120 (rst-repeat-last-character): Correct use of `interactive'.
8121
8122 (rst-classify-adornment, rst-find-all-adornments)
8123 (rst-get-hierarchy, rst-adjust-adornment, rst-toc-update)
8124 (rst-find-leftmost-column, rst-repeat-last-character):
8125 Refactor functions.
8126
8127 (rst-find-title-line, rst-reset-section-caches)
8128 (rst-get-adornments-around, rst-adjust-adornment-work)
8129 (rst-arabic-to-roman, rst-roman-to-arabic)
8130 (rst-insert-list-pos, rst-insert-list-new-item)
8131 (rst-insert-list-continue, rst-insert-list, rst-forward-line):
8132 New functions.
8133
8134 (rst-all-sections, rst-section-hierarchy)
8135 (rst-arabic-to-roman, rst-initial-enums, rst-initial-items):
8136 New variables.
8137
8138 (rst-toc-return-wincfg, rst-toc-quit-window): Use window
8139 configuration instead of only buffer. Change where necessary.
8140
8141 (rst-line-tabs, rst-compute-tabs, rst-indent-line)
8142 (rst-shift-region, rst-adaptive-fill): New functions for
8143 indentation and filling.
8144
8145 (rst-comment-line-break, rst-comment-indent)
8146 (rst-comment-insert-comment, rst-comment-region)
8147 (rst-uncomment-region): New functions for handling comments.
8148
8149 (rst-compile): Quote shell arguments.
8150
8151 (rst-compile-pdf-preview, rst-compile-slides-preview):
8152 Delete temporary files after use.
8153
8154 2012-05-05 Glenn Morris <rgm@gnu.org>
8155
8156 * calendar/cal-html.el: Optionally include holidays in the output.
8157 Suggested by Ed Reingold <reingold@emr.cs.iit.edu>.
8158 (cal-html-holidays): New option.
8159 (cal-html-css-default): Add holiday entry.
8160 (holiday-in-range): Autoload it.
8161 (cal-html-htmlify-entry): Add optional class argument.
8162 (cal-html-htmlify-list): Add optional holidays argument.
8163 (cal-html-insert-agenda-days): Include holidays in the output.
8164 (cal-html-one-month): Maybe include holidays.
8165
8166 * calendar/holidays.el (holiday-in-range):
8167 Move here from cal-tex-list-holidays.
8168 * calendar/cal-tex.el (cal-tex-list-holidays):
8169 Make it an obsolete alias for holiday-in-range. Update all callers.
8170
8171 2012-05-05 Chong Yidong <cyd@gnu.org>
8172
8173 * select.el (xselect--encode-string): Always use utf-8 for TEXT on
8174 Nextstep.
8175
8176 2012-05-05 Ransom Williams <auvergnerw@gmail.com> (tiny change)
8177
8178 * files.el (file-auto-mode-skip): New var.
8179 (set-auto-mode-1): Use it.
8180
8181 2012-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
8182
8183 * repeat.el: Use lexical-binding.
8184 (repeat-last-self-insert, repeat-num-input-keys-at-self-insert)
8185 (repeat-undo-count): Remove.
8186 (repeat):
8187 * progmodes/octave-mod.el (octave-abbrev-start):
8188 * progmodes/f90.el (f90-abbrev-start):
8189 * face-remap.el (text-scale-adjust):
8190 * kmacro.el (kmacro-call-macro): Use set-temporary-overlay-map.
8191
8192 * emacs-lisp/pcase.el (pcase--let*): New function.
8193 (pcase--expand, pcase-codegen, pcase--q1): Use it to reduce nesting
8194 a bit more.
8195 (pcase--split-pred): Be more clever about ruling out overlap between
8196 a predicate and some constant pattern.
8197 (pcase--q1): Use `null' instead of (eq foo nil).
8198
8199 * subr.el (setq-local, defvar-local): New macros.
8200 (kbd): Redefine as an alias.
8201 (with-selected-window): Leave unrelated frames alone.
8202 (set-temporary-overlay-map): New function.
8203
8204 2012-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
8205
8206 * subr.el (user-error): New function.
8207 * window.el (switch-to-buffer):
8208 * vc/smerge-mode.el (smerge-resolve-function, smerge-resolve)
8209 (smerge-match-conflict):
8210 * simple.el (previous-matching-history-element)
8211 (next-matching-history-element, goto-history-element, undo-more)
8212 (undo-start):
8213 * progmodes/etags.el (visit-tags-table-buffer, find-tag-tag)
8214 (find-tag-noselect, find-tag-in-order, etags-goto-tag-location)
8215 (next-file, tags-loop-scan, list-tags, complete-tag):
8216 * progmodes/compile.el (compilation-loop):
8217 * mouse.el (mouse-minibuffer-check):
8218 * man.el (Man-bgproc-sentinel, Man-goto-page):
8219 * info.el (Info-find-node-2, Info-extract-pointer, Info-history-back)
8220 (Info-history-forward, Info-follow-reference, Info-menu)
8221 (Info-extract-menu-item, Info-extract-menu-counting)
8222 (Info-forward-node, Info-backward-node, Info-next-menu-item)
8223 (Info-last-menu-item, Info-next-preorder, Info-last-preorder)
8224 (Info-next-reference, Info-prev-reference, Info-index)
8225 (Info-index-next, Info-follow-nearest-node)
8226 (Info-copy-current-node-name):
8227 * imenu.el (imenu--make-index-alist)
8228 (imenu-default-create-index-function, imenu-add-to-menubar):
8229 * files.el (basic-save-buffer, recover-file):
8230 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
8231 * emacs-lisp/checkdoc.el (checkdoc-continue, checkdoc-comments)
8232 (checkdoc-message-text, checkdoc-defun):
8233 * dabbrev.el (dabbrev-completion, dabbrev--abbrev-at-point):
8234 * cus-edit.el (customize-changed-options, customize-rogue)
8235 (customize-saved, custom-variable-set, custom-variable-mark-to-save)
8236 (custom-variable-mark-to-reset-standard)
8237 (custom-variable-reset-backup, custom-face-mark-to-reset-standard)
8238 (custom-file):
8239 * completion.el (check-completion-length):
8240 * comint.el (comint-search-arg)
8241 (comint-previous-matching-input-string-position)
8242 (comint-previous-matching-input)
8243 (comint-replace-by-expanded-history-before-point, comint-send-input)
8244 (comint-copy-old-input, comint-backward-matching-input)
8245 (comint-goto-process-mark, comint-set-process-mark):
8246 * calendar/calendar.el (calendar-cursor-to-date): Use it.
8247 * bindings.el (debug-ignored-errors): Remove regexps, add `user-error'.
8248
8249 2012-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
8250
8251 * dabbrev.el (dabbrev--ignore-case-p): New function.
8252 (dabbrev-completion, dabbrev-expand, dabbrev--substitute-expansion):
8253 Use it.
8254
8255 * files.el (automount-dir-prefix): Mark as obsolete.
8256
8257 2012-05-04 Glenn Morris <rgm@gnu.org>
8258
8259 * patcomp.el, play/bruce.el: Move to obsolete/.
8260
8261 2012-05-04 Paul Eggert <eggert@cs.ucla.edu>
8262
8263 Fix minor Y10k bugs.
8264 * arc-mode.el (archive-unixdate):
8265 * autoinsert.el (auto-insert-alist):
8266 * calc/calc-forms.el (math-this-year):
8267 * emacs-lisp/copyright.el (copyright-current-year)
8268 (copyright-update-year, copyright):
8269 * tar-mode.el (tar-clip-time-string):
8270 * time.el (display-time-update):
8271 Don't assume years have 4 digits.
8272
8273 2012-05-04 Chong Yidong <cyd@gnu.org>
8274
8275 * dos-w32.el (file-name-buffer-file-type-alist)
8276 (direct-print-region-use-command-dot-com):
8277 * ffap.el (ffap-menu-regexp):
8278 * find-file.el (ff-special-constructs):
8279 * follow.el (follow-debug):
8280 * forms.el (forms--debug):
8281 * iswitchb.el (iswitchb-all-frames):
8282 * ido.el (ido-all-frames):
8283 * emacs-lisp/timer.el (timer-max-repeats):
8284 * mail/feedmail.el (feedmail-mail-send-hook)
8285 (feedmail-mail-send-hook-queued):
8286 * mail/footnote.el (footnote-signature-separator):
8287 * mail/mailabbrev.el (mail-alias-separator-string)
8288 (mail-abbrev-mode-regexp):
8289 * mail/rmail.el (rmail-speedbar-match-folder-regexp):
8290 * progmodes/idlwave.el (idlwave-libinfo-file)
8291 (idlwave-default-completion-case-is-down)
8292 (idlwave-library-routines): Convert defvars to defcustoms.
8293
8294 * mail/rmail.el (rmail-decode-mime-charset):
8295 * progmodes/idlw-shell.el (idlwave-shell-print-expression-function)
8296 (idlwave-shell-fix-inserted-breaks)
8297 (idlwave-shell-activate-alt-keybindings)
8298 (idlwave-shell-use-breakpoint-glyph):
8299 * facemenu.el (facemenu-unlisted-faces): Delete obsolete vars.
8300
8301 2012-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
8302
8303 * minibuffer.el (completion--twq-all): Beware completion-ignore-case.
8304
8305 2012-05-03 Wilson Snyder <wsnyder@wsnyder.org>
8306
8307 * progmodes/verilog-mode.el (font-lock-keywords):
8308 Fix mis-highligting auto. Reported by Craig Barner.
8309 (verilog-auto, verilog-auto-undef): Add AUTOUNDEF to remove
8310 defines from global name space. Reported by Dan Dever.
8311 (verilog-auto-reset, verilog-auto-reset-widths)
8312 (verilog-auto-tieoff): Support using unbased numbers for
8313 AUTORESET and AUTOTIEOFF.
8314 (verilog-submit-bug-report): Update variable list.
8315 (verilog-read-auto-params): Fix AUTOINPUT regexps containing
8316 parenthesis from not matching. Reported by Michael Rytting.
8317 (verilog-auto-template-lint): Fix hash error when linting modules
8318 with no used templates.
8319 (verilog-warn, verilog-warn-error)
8320 (verilog-warn-fatal): When non-interactive report multiple
8321 warnings before exiting. Suggested by Brad Dobbie.
8322 (verilog-auto-template-lint, verilog-auto-template-warn-unused)
8323 (verilog-read-auto-template): Add `verilog-auto-template-warn-unused'
8324 to report unused template errors. Reported by Brad Dobbie.
8325 (verilog-read-decls): Fix AUTOWIRE etc on supply0, supply1 type
8326 nets, bug438. Reported by Vns Blore.
8327 (verilog-auto-inout-module, verilog-auto-reg)
8328 (verilog-read-decls, verilog-read-sub-decls-sig)
8329 (verilog-signals-edit-wire-reg, verilog-signals-with):
8330 Fix passing of Verilog data types in ANSI input/output ports
8331 such as "output logic" into the AUTOs. Special case "wire" and
8332 "reg" for backwards compatibility presuming Verilog 2001.
8333 (verilog-auto-ascii-enum): Add "auto enum" as alias.
8334 (verilog-preprocess): Fix replication of preprocess output.
8335 Reported by Brad Dobbie.
8336 (verilog-auto-inst-interfaced-ports):
8337 Create verilog-auto-inst-interfaced-ports, bug429.
8338 Reported by Julian Gorfajn.
8339 (verilog-after-save-font-hook)
8340 (verilog-before-save-font-hook): New variable.
8341 (verilog-modi-cache-results, verilog-save-font-mod-hooked)
8342 (verilog-save-font-mods): Wrap disabling fontification, reported
8343 by David Rogoff.
8344 (verilog-do-indent, verilog-pretty-declarations-auto)
8345 (verilog-sk-def-reg): Fix obeying `verilog-auto-lineup', bug305.
8346 Reported by Pierre-David Pfister.
8347 (verilog-set-auto-endcomments): Fix endtask auto comments outside
8348 of class declarations, bug292. Reported by Kevin Heilman.
8349 (verilog-read-decls): Fix 'parameter type' not appearing in
8350 AUTOINSTPARAM, bug340. Reported by Jonathan Greenlaw.
8351 (verilog-auto-logic): Fix when AUTOLOGIC present to properly do
8352 AUTOINPUTs, bug411. Reported by Jonathan Greenlaw.
8353 (verilog-read-auto-lisp): Avoid syntax-ppss warning on AUTOLISP.
8354 Reported by David Kravitz.
8355
8356 2012-05-03 Michael McNamara <mac@mail.brushroad.com>
8357
8358 * progmodes/verilog-mode.el (verilog-pretty-expr): Don't line up
8359 assignment with tests in ifs and for loops.
8360 (verilog-extended-complete-re, verilog-complete-reg): Change so
8361 that DPI inport functions don't look like fuction declarations.
8362 (verilog-pretty-expr): Don't line up assignment
8363 operations to the test and increment in if and for loops
8364 (verilog-extended-complete-re, verilog-complete-reg): Change so
8365 that DPI inport functions don't look like fuction declarations.
8366
8367 2012-05-03 Kenichi Handa <handa@m17n.org>
8368
8369 * mail/rmailmm.el (rmail-show-mime): Catch an error caused by text
8370 decoding, and show a warning message without signaling an error
8371 (Bug#11282).
8372
8373 2012-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
8374
8375 * emacs-lisp/bytecomp.el
8376 (byte-compile-file-form-custom-declare-variable): Compile all elements,
8377 since cconv.el might have introduced :fun-body, internal-make-closure,
8378 and friends for bytecomp to handle (bug#11391).
8379 * custom.el (defcustom): Avoid ((λ ..) ..).
8380
8381 2012-05-02 Stefan Monnier <monnier@iro.umontreal.ca>
8382
8383 * subr.el (read-passwd): Better clean after ourselves (bug#11392).
8384
8385 2012-05-02 Juanma Barranquero <lekktu@gmail.com>
8386
8387 * notifications.el (dbus-debug):
8388 * term/linux.el (gpm-mouse-enable):
8389 * term/screen.el (xterm-register-default-colors): Declare.
8390
8391 2012-05-02 Chong Yidong <cyd@gnu.org>
8392
8393 * cus-start.el (gc-cons-percentage, exec-suffixes)
8394 (dos-display-scancodes, dos-hyper-key, dos-super-key)
8395 (dos-keypad-mode, debug-on-signal, vertical-centering-font-regexp)
8396 (make-cursor-line-fully-visible, void-text-area-pointer)
8397 (font-list-limit): Add customization data.
8398
8399 * allout.el (allout-exposure-change-functions)
8400 (allout-structure-added-functions)
8401 (allout-structure-deleted-functions)
8402 (allout-structure-shifted-functions): Rename abnormal hooks from
8403 *-hook, and convert to defcustoms.
8404 (allout-after-copy-or-kill-hook, allout-post-undo-hook):
8405 Convert to defcustoms.
8406 (allout-mode-hook, allout-mode-deactivate-hook): Doc fix.
8407
8408 * allout-widgets.el: Hook callers changed.
8409
8410 2012-05-02 Eli Zaretskii <eliz@gnu.org>
8411
8412 * mail/rmail.el (rmail-yank-current-message): Use the encoding of
8413 the yanked message in preference to the default value of
8414 buffer-file-coding-system.
8415
8416 2012-05-02 Martin Rudalics <rudalics@gmx.at>
8417
8418 * window.el (display-buffer--action-function-custom-type):
8419 Fix entry.
8420
8421 2012-05-02 Alan Mackenzie <acm@muc.de>
8422
8423 * progmodes/cc-defs.el (c-version): Update to 5.32.3.
8424
8425 2012-05-01 Glenn Morris <rgm@gnu.org>
8426
8427 * cus-start.el (suggest-key-bindings): Remove, now it is in Lisp.
8428
8429 * eshell/esh-cmd.el (eshell-debug-command): Doc fix. Add :set.
8430
8431 * cus-edit.el (custom-variable-documentation): Simplify with format.
8432
8433 2012-05-01 Aaron S. Hawley <aaron.s.hawley@gmail.com>
8434 Stefan Monnier <monnier@iro.umontreal.ca>
8435
8436 * simple.el (suggest-key-bindings, execute-extended-command):
8437 Move from keyboard.c.
8438
8439 2012-05-01 Chong Yidong <cyd@gnu.org>
8440
8441 * follow.el: Eliminate advice.
8442 (set-process-filter, process-filter, sit-for): Advice deleted.
8443 (follow-mode-off-hook): Obsolete hook removed.
8444 (follow-avoid-tail-recenter-p, follow-process-filter-alist):
8445 Vars deleted.
8446 (follow-auto): Use a :set function.
8447 (follow-mode): Rewritten. Don't advise process filters.
8448 (follow-switch-to-current-buffer-all, follow-scroll-up)
8449 (follow-scroll-down): Assume follow-mode is bound.
8450 (follow-comint-scroll-to-bottom)
8451 (follow-align-compilation-windows): New functions.
8452 (follow--window-sorter): New function.
8453 (follow-all-followers): Use it to explicitly sort windows by their
8454 positions; don't make assumptions about next-window order.
8455 (follow-windows-start-end, follow-delete-other-windows-and-split)
8456 (follow-calc-win-start): Doc fix.
8457 (follow-windows-aligned-p, follow-select-if-visible): Don't call
8458 vertical-motion unnecessarily.
8459 (follow-adjust-window): New function.
8460 (follow-post-command-hook): Use it.
8461 (follow-call-set-process-filter, follow-call-process-filter)
8462 (follow-intercept-process-output, follow-tidy-process-filter-alist)
8463 (follow-stop-intercept-process-output, follow-generic-filter):
8464 Functions deleted.
8465 (follow-scroll-bar-toolkit-scroll, follow-scroll-bar-drag)
8466 (follow-scroll-bar-scroll-up, follow-scroll-bar-scroll-down):
8467 New functions, replacing advice on scroll-bar-* commands.
8468 (follow-mwheel-scroll): New function (Bug#4112).
8469
8470 * comint.el (comint-adjust-point): New function.
8471 (comint-postoutput-scroll-to-bottom): Use it.
8472 Call follow-comint-scroll-to-bottom for Follow mode buffers.
8473
8474 2012-05-01 Glenn Morris <rgm@gnu.org>
8475
8476 * term/AT386.el, term/apollo.el, term/bobcat.el, term/cygwin.el:
8477 * term/iris-ansi.el, term/linux.el, term/lk201.el, term/news.el:
8478 * term/screen.el, term/vt102.el, term/vt125.el, term/vt200.el:
8479 * term/vt201.el, term/vt220.el, term/vt240.el, term/vt300.el:
8480 * term/vt320.el, term/vt400.el, term/vt420.el, term/wyse50.el:
8481 Remove no-byte-compile setting.
8482
8483 2012-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
8484
8485 * minibuffer.el (completion-table-with-quoting): Fix compatibility
8486 all-completions code to not return a number in the last cdr.
8487
8488 2012-04-30 Leo Liu <sdl.web@gmail.com>
8489
8490 * ibuf-ext.el (ibuffer-diff-buffer-with-file-1): Avoid buffer
8491 read-only error.
8492
8493 2012-04-29 Chong Yidong <cyd@gnu.org>
8494
8495 * follow.el (follow-calc-win-end): Rewrite to handle partial
8496 screen lines correctly (Bug#8390).
8497 (follow-avoid-tail-recenter): Minor cleanup.
8498
8499 2012-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
8500
8501 Avoid the obsolete `assoc' package.
8502 * speedbar.el (speedbar-refresh): Avoid adelete.
8503 (speedbar-file-lists): Simplify and avoid aput.
8504 * man.el (Man--sections, Man--refpages): New vars, replacing
8505 Man-sections-alist and Man-refpages-alist.
8506 (Man-build-section-alist, Man-build-references-alist):
8507 Use them; avoid aput.
8508 (Man--last-section, Man--last-refpage): New vars.
8509 (Man-follow-manual-reference): Use them.
8510 Use the `default' arg of completing-read.
8511 (Man-goto-section): Idem. Move prompt to the `interactive' spec.
8512
8513 2012-04-27 Chong Yidong <cyd@gnu.org>
8514
8515 * vc/diff.el (diff-sentinel): Go to bob (Bug#10259).
8516
8517 * startup.el (x-apply-session-resources): New function.
8518
8519 * term/ns-win.el (ns-initialize-window-system):
8520 * term/w32-win.el (w32-initialize-window-system):
8521 * term/x-win.el (x-initialize-window-system): Use it to properly
8522 set menu-bar-mode and other vars from X resources, even if the
8523 initial frame is not a window-system frame (Bug#2299).
8524
8525 * subr.el (read-key): Avoid running filter function when setting
8526 up temporary tool bar entries (Bug#9922).
8527
8528 2012-04-27 Andreas Schwab <schwab@linux-m68k.org>
8529
8530 * vc/vc-git.el (vc-git-state): Fix regexp matching diff output.
8531 (Bug#11344)
8532
8533 2012-04-27 Chong Yidong <cyd@gnu.org>
8534
8535 * select.el (xselect--encode-string): New function, split from
8536 xselect-convert-to-string.
8537 (xselect-convert-to-string): Use it.
8538 (xselect-convert-to-filename, xselect-convert-to-os)
8539 (xselect-convert-to-host, xselect-convert-to-user): Ensure that
8540 returned strings are properly encoded (Bug#11315).
8541
8542 2012-04-27 Chong Yidong <cyd@gnu.org>
8543
8544 * simple.el (delete-active-region): Move to killing custom group.
8545
8546 2012-04-27 Andreas Schwab <schwab@linux-m68k.org>
8547
8548 * progmodes/which-func.el (which-func-current): Quote %
8549 characters for mode-line processing.
8550
8551 2012-04-27 Chong Yidong <cyd@gnu.org>
8552
8553 * xml.el (xml-parse-region, xml-parse-tag): Avoid errors due to
8554 reaching eob (Bug#11286).
8555
8556 2012-04-27 Eli Zaretskii <eliz@gnu.org>
8557
8558 * progmodes/gdb-mi.el (gdb-control-level): New variable.
8559 (gdb): Make it buffer-local and init to zero.
8560 (gdb-control-commands-regexp): New variable.
8561 (gdb-send): Don't wrap in "-interpreter-exec console" if
8562 gdb-control-level is positive. Increment gdb-control-level
8563 whenever the command matches gdb-control-commands-regexp, and
8564 decrement it each time the command is "end". (Bug#11279)
8565
8566 2012-04-27 Martin Rudalics <rudalics@gmx.at>
8567
8568 * window.el (adjust-window-trailing-edge, enlarge-window)
8569 (shrink-window, window-resize):
8570 * mouse.el (mouse-drag-line): Fix resizing of minibuffer
8571 windows (Bug#11276).
8572
8573 2012-04-27 Chong Yidong <cyd@gnu.org>
8574
8575 * progmodes/pascal.el (pascal--extra-indent): Rename from ind, to
8576 fix "missing prefix" warning. All callers changed.
8577
8578 2012-04-27 Stefan Monnier <monnier@iro.umontreal.ca>
8579
8580 * emacs-lisp/assoc.el: Move to obsolete/.
8581
8582 2012-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
8583
8584 * emacs-lisp/assoc.el (aget): Fix dynamic-scoping issue (bug#11352).
8585
8586 * term/ns-win.el (ns-define-service):
8587 * progmodes/pascal.el (pascal-goto-defun):
8588 * progmodes/js.el (js--read-tab):
8589 * progmodes/etags.el (tags-lazy-completion-table):
8590 * emacs-lisp/syntax.el (syntax-propertize-via-font-lock):
8591 * emacs-lisp/ewoc.el (ewoc--wrap):
8592 * emacs-lisp/assoc.el (aput, adelete, amake):
8593 * doc-view.el (doc-view-convert-current-doc):
8594 * vc/diff.el (diff-no-select): Replace lexical-let by lexical-binding.
8595
8596 2012-04-26 Chong Yidong <cyd@gnu.org>
8597
8598 * image.el (image-type-from-buffer): Only return supported image
8599 type (Bug#9045).
8600
8601 * vc/diff-mode.el (diff-beginning-of-hunk): Return a meaningful
8602 value, for symmetry with diff-end-of-hunk.
8603 (diff-split-hunk, diff-find-source-location)
8604 (diff-ignore-whitespace-hunk, diff-refine-hunk): Use it.
8605 (diff-bounds-of-hunk, diff-bounds-of-file): New functions.
8606 (diff-restrict-view, diff-hunk-kill, diff-file-kill): Use them to
8607 compute the relevant hunk or file properly (Bug#6005).
8608 (diff-file-junk-re): Add bzr's "modified file" tag (Bug#6041).
8609
8610 2012-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
8611
8612 * vc/vc-mtn.el:
8613 * vc/vc-hg.el:
8614 * vc/vc-git.el:
8615 * vc/vc-dir.el:
8616 * vc/vc-cvs.el:
8617 * vc/vc-bzr.el:
8618 * vc/vc-arch.el:
8619 * vc/vc.el: Replace lexical-let by lexical-binding.
8620 * minibuffer.el (lazy-completion-table): Avoid ((λ ...) ...).
8621 * emacs-lisp/cl-macs.el (lexical-let): Fix use in lexical-binding.
8622 * emacs-lisp/cconv.el (cconv-analyse-form): Warn use of ((λ ...) ...).
8623
8624 2012-04-26 Chong Yidong <cyd@gnu.org>
8625
8626 * vc/diff-mode.el (diff-undo): New command (Bug#5302).
8627 (diff-mode-shared-map): Bind it to / and [remap undo].
8628
8629 * vc/ediff-wind.el (ediff-setup-windows-default): New function.
8630 (ediff-window-setup-function): Use it as the default, to set up
8631 windows based on whether the current frame is graphical (Bug#2138).
8632 (ediff-choose-window-setup-function-automatically): Make obsolete.
8633
8634 * vc/ediff-init.el: Always define ediff-pixel-width/height.
8635
8636 2012-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
8637
8638 * ffap.el: Remove old code for obsolete package.
8639 (ffap-complete-as-file-p): Remove.
8640
8641 Use completion-table-with-quoting for comint and pcomplete.
8642 * comint.el (comint--unquote&requote-argument)
8643 (comint--unquote-argument, comint--requote-argument): New functions.
8644 (comint--unquote&expand-filename, comint-unquote-filename): Obsolete.
8645 (comint-quote-filename): Use regexp-opt-charset.
8646 (comint--common-suffix, comint--common-quoted-suffix)
8647 (comint--table-subvert): Remove.
8648 (comint-unquote-function, comint-requote-function): New vars.
8649 (comint--complete-file-name-data): Use them with
8650 completion-table-with-quoting.
8651 * pcmpl-unix.el (pcomplete/scp): Use completion-table-subvert.
8652 * pcomplete.el (pcomplete-arg-quote-list)
8653 (pcomplete-quote-arg-hook, pcomplete-quote-argument): Obsolete.
8654 (pcomplete-unquote-argument-function): Default to non-nil.
8655 (pcomplete-unquote-argument): Simplify.
8656 (pcomplete--common-quoted-suffix): Remove.
8657 (pcomplete-requote-argument-function): New var.
8658 (pcomplete--common-suffix): New function.
8659 (pcomplete-completions-at-point): Use completion-table-with-quoting
8660 and completion-table-subvert.
8661
8662 * minibuffer.el: Use completion-table-with-quoting for read-file-name.
8663 (minibuffer--double-dollars): Preserve properties.
8664 (completion--sifn-requote): New function.
8665 (completion--file-name-table): Rewrite using it and c-t-with-quoting.
8666
8667 * minibuffer.el: Add support for completion of quoted/escaped data.
8668 (completion-table-with-quoting, completion-table-subvert): New funs.
8669 (completion--twq-try, completion--twq-all): New functions.
8670 (completion--nth-completion): New function.
8671 (completion-try-completion, completion-all-completions): Use it.
8672
8673 2012-04-25 Leo Liu <sdl.web@gmail.com>
8674
8675 * progmodes/python.el (python-pdbtrack-get-source-buffer):
8676 Use compilation-message if available to find real filename.
8677
8678 2012-04-25 Chong Yidong <cyd@gnu.org>
8679
8680 * vc/diff-mode.el (diff-setup-whitespace): New function.
8681 (diff-mode): Use it.
8682
8683 * vc/diff.el (diff-sentinel):
8684 * vc/vc.el (vc-diff-finish): Call diff-setup-whitespace to assign
8685 Whitespace mode variables based on diff style (Bug#8612).
8686
8687 2012-04-25 Leo Liu <sdl.web@gmail.com>
8688
8689 * progmodes/python.el (python-send-region): Add suffix .py to the
8690 temp file.
8691
8692 * files.el (auto-mode-alist): Use javascript-mode instead.
8693
8694 2012-04-25 Alex Harsanyi <AlexHarsanyi@gmail.com>
8695
8696 Sync with soap-client repository. Support SOAP simpleType (Bug#10331).
8697
8698 * net/soap-client.el (soap-resolve-references-for-sequence-type)
8699 (soap-resolve-references-for-array-type): Hack to prevent self
8700 references, see Bug#9.
8701 (soap-parse-envelope): Report the contents of the 'detail' node
8702 when receiving a fault reply.
8703 (soap-parse-envelope): Report the contents of the entire 'detail' node.
8704
8705 * net/soap-inspect.el (soap-sample-value-for-simple-type)
8706 (soap-inspect-simple-type): New function.
8707
8708 * net/soap-client.el (soap-simple-type): New struct.
8709 (soap-default-xsd-types, soap-default-soapenc-types)
8710 (soap-decode-basic-type, soap-encode-basic-type):
8711 support unsignedInt and double basic types.
8712 (soap-resolve-references-for-simple-type)
8713 (soap-parse-simple-type, soap-encode-simple-type): New function.
8714 (soap-parse-schema): Parse xsd:simpleType declarations.
8715
8716 * net/soap-client.el (soap-default-xsd-types)
8717 (soap-default-soapenc-types): Add integer, byte and anyURI types.
8718 (soap-parse-complex-type-complex-content): Use `soap-wk2l' to find
8719 the local name of "soapenc:Array".
8720 (soap-decode-basic-type, soap-encode-basic-type): Support encoding
8721 decoding integer, byte and anyURI xsd types.
8722
8723 2012-04-25 Chong Yidong <cyd@gnu.org>
8724
8725 * cus-edit.el (custom-buffer-create-internal): Update header text.
8726
8727 2012-04-25 Eli Zaretskii <eliz@gnu.org>
8728
8729 * progmodes/gdb-mi.el (gdb-init-1): Condition Windows-specific
8730 settings on 'system-type', not on 'window-system'. On MS-Windows,
8731 set interactive-mode on in GDB.
8732
8733 2012-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
8734
8735 * progmodes/ruby-mode.el: Simplify last change, and cleanup code.
8736 (ruby-syntax-propertize-regexp): Remove.
8737 (ruby-syntax-propertize-function): Split regexp into chunks.
8738 Match following code directly.
8739
8740 2012-04-24 Dmitry Gutov <dgutov@yandex.ru>
8741
8742 * progmodes/ruby-mode.el: Handle Cucumber defs (bug#6286).
8743 (ruby-syntax-propertize-regexp): New function.
8744 (ruby-syntax-propertize-function): Use it to handle regexp not preceded
8745 by a special keyword.
8746
8747 * progmodes/ruby-mode.el: Handle general delimited literals (bug#6286).
8748 (ruby-syntax-general-delimiters-goto-beg)
8749 (ruby-syntax-propertize-general-delimiters): New functions.
8750 (ruby-syntax-propertize-function): Use them to handle GDL.
8751 (ruby-font-lock-keywords): Move old handling of GDL...
8752 (ruby-font-lock-syntactic-keywords): .. to here.
8753 (ruby-calculate-indent): Adjust indentation for GDL.
8754
8755 2012-04-24 Michael Albinus <michael.albinus@gmx.de>
8756
8757 * notifications.el (top): Remove unneeded declarations.
8758 (notifications-specification-version): Change to "1.2".
8759 (notifications-interface, notifications-notify-method)
8760 (notifications-close-notification-method): Fix docstring.
8761 (notifications-get-capabilities-method): New defconst.
8762 (notifications-notify): Add :action-items, :resident and
8763 :transient hints. Change "image_data" to "image-data" and
8764 "image_path" to "image-path".
8765 (notifications-get-capabilities): New defun.
8766
8767 2012-04-24 Leo Liu <sdl.web@gmail.com>
8768
8769 * progmodes/python.el: Move hideshow setup to the end.
8770
8771 2012-04-24 Martin Rudalics <rudalics@gmx.at>
8772
8773 * window.el (handle-select-window): Clear echo area since this is
8774 no more done by read_char (Bug#11304).
8775
8776 2012-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
8777
8778 * ibuffer.el (ibuffer-mode-map): Bind `/ m' to filter-used-mode
8779 and `/ M' to filter-derived-mode.
8780 * ibuf-ext.el (ibuffer-list-buffer-modes): Simplify; avoid add-to-list.
8781 (ibuffer-filter-by-mode, ibuffer-filter-by-used-mode)
8782 (ibuffer-mark-by-mode): Use default rather than initial-input.
8783 (ibuffer-filter-by-derived-mode): Autoload and require-match.
8784
8785 2012-04-24 Ivan Andrus <darthandrus@gmail.com> (tiny change)
8786
8787 * ibuf-ext.el (ibuffer-list-buffer-modes): Add `include-parents' arg.
8788 (ibuffer-filter-by-derived-mode): New filter.
8789 * ibuffer.el (ibuffer-mode-map): Bind to `/ w'.
8790
8791 2012-04-23 Andreas Politz <politza@fh-trier.de>
8792
8793 * subr.el (accept-change-group): Fix arg usage (Bug#6095).
8794
8795 2012-04-23 Chong Yidong <cyd@gnu.org>
8796
8797 * cus-edit.el (customize-apropos, customize-apropos-options):
8798 Disable matching of non-option variables (Bug#11176).
8799 (customize-option, customize-option-other-window)
8800 (customize-changed-options): Doc fix.
8801 (customize-apropos-options, customize-apropos-faces)
8802 (customize-apropos-groups): Use apropos-read-pattern (Bug#11124).
8803
8804 * apropos.el (apropos-read-pattern): Make prompt less cryptic.
8805 Fix word list splitting (Bug#11132).
8806 (apropos-symbol, apropos-keybinding, apropos-label)
8807 (apropos-property, apropos-function-button)
8808 (apropos-variable-button, apropos-misc-button): New faces.
8809 (apropos-symbol-face, apropos-keybinding-face)
8810 (apropos-label-face, apropos-property-face, apropos-match-face):
8811 Variables removed (Bug#8396).
8812 (apropos-library-button, apropos-format-plist, apropos-print)
8813 (apropos-print-doc, apropos-describe-plist): Callers changed.
8814
8815 2012-04-23 Michael Albinus <michael.albinus@gmx.de>
8816
8817 * net/xesam.el (xesam-mode-map): Use let-bound map in
8818 initialization. (Bug#11292)
8819
8820 2012-04-23 Agustín Martín Domingo <agustin.martin@hispalinux.es>
8821
8822 Preserve ispell session localwords when switching back to
8823 original buffer.
8824
8825 * textmodes/ispell.el (ispell-buffer-session-localwords):
8826 New buffer-local variable to hold buffer session localwords.
8827 (ispell-kill-ispell): Add option 'clear to delete session
8828 localwords.
8829 (ispell-command-loop, ispell-change-dictionary)
8830 (ispell-buffer-local-words): Preserve session localwords when
8831 needed.
8832
8833 * textmodes/flyspell.el (flyspell-process-localwords)
8834 (flyspell-do-correct): Preserve session localwords when needed.
8835
8836 2012-04-23 Agustín Martín Domingo <agustin.martin@hispalinux.es>
8837
8838 * textmodes/ispell.el (ispell-insert-word) Remove unneeded function
8839 using obsolete `translation-table-for-input'.
8840 (ispell-word, ispell-process-line, ispell-complete-word):
8841 Use plain `insert' instead of removed `ispell-insert-word'.
8842
8843 2012-04-22 Chong Yidong <cyd@gnu.org>
8844
8845 * cus-edit.el (custom-variable-menu)
8846 (custom-variable-reset-saved, custom-face-menu)
8847 (custom-face-reset-saved): If there is no saved value, make the
8848 "reset-saved" operation bring back the default (Bug#9509).
8849 (custom-face-state): Properly detect themed faces.
8850
8851 * faces.el (face-spec-set): Stop supporting deprecated form of
8852 third arg.
8853
8854 2012-04-22 Michael Albinus <michael.albinus@gmx.de>
8855
8856 Move functions from C to Lisp. Make non-blocking method calls
8857 the default. Implement further D-Bus standard interfaces.
8858
8859 * net/dbus.el (dbus-message-internal): Declare function.
8860 Remove unneeded function declarations.
8861 (defvar dbus-message-type-invalid, dbus-message-type-method-call)
8862 (dbus-message-type-method-return, dbus-message-type-error)
8863 (dbus-message-type-signal): Declare variables. Remove local
8864 definitions.
8865 (dbus-interface-dbus, dbus-interface-peer)
8866 (dbus-interface-introspectable, dbus-interface-properties)
8867 (dbus-path-emacs, dbus-interface-emacs, dbus-return-values-table):
8868 Adapt docstring.
8869 (dbus-interface-objectmanager): New defconst.
8870 (dbus-call-method, dbus-call-method-asynchronously)
8871 (dbus-send-signal, dbus-method-return-internal)
8872 (dbus-method-error-internal, dbus-register-service)
8873 (dbus-register-signal, dbus-register-method): New defuns, moved
8874 from dbusbind.c
8875 (dbus-call-method-handler, dbus-setenv)
8876 (dbus-get-all-managed-objects, dbus-managed-objects-handler):
8877 New defuns.
8878 (dbus-call-method-non-blocking): Make it an obsolete function.
8879 (dbus-unregister-object, dbus-unregister-service)
8880 (dbus-handle-event, dbus-register-property)
8881 (dbus-property-handler): Obey the new structure of
8882 `bus-registered-objects'.
8883 (dbus-introspect): Use `dbus-call-method'. Use a timeout.
8884 (dbus-get-property, dbus-set-property, dbus-get-all-properties):
8885 Use `dbus-call-method'.
8886
8887 2012-04-22 Chong Yidong <cyd@gnu.org>
8888
8889 * cus-edit.el (custom-commands, custom-reset-menu)
8890 (Custom-reset-standard): Tweak labels.
8891 (custom-reset-button-menu): Change default to t.
8892 (custom-buffer-create-internal): For the custom-reset-button-menu
8893 case, put the revert button first.
8894 (custom-group-subtitle): New face.
8895 (custom-group-value-create): Align docstring to a specific column.
8896
8897 * wid-edit.el (widget-documentation-link-add): Don't handle
8898 indentation in this function.
8899 (widget-documentation-string-indent-to): New function.
8900 (widget-documentation-string-value-create): Use it.
8901
8902 * autorevert.el (auto-revert):
8903 * epg-config.el (epg):
8904 * ibuffer.el (ibuffer):
8905 * mpc.el (mpc):
8906 * ses.el (ses):
8907 * eshell/eshell.el (eshell):
8908 * net/ange-ftp.el (ange-ftp):
8909 * progmodes/ebnf2ps.el (postscript):
8910 * progmodes/flymake.el (flymake):
8911 * progmodes/prolog.el (prolog):
8912 * progmodes/verilog-mode.el (verilog-mode):
8913 * progmodes/which-func.el (which-func):
8914 * term/xterm.el (xterm):
8915 * textmodes/picture.el (picture):
8916 * textmodes/tildify.el (tildify):
8917 * vc/ediff.el (ediff): Tweak defgroups to improve presentation in
8918 customization buffers.
8919
8920 2012-04-22 Alan Mackenzie <acm@muc.de>
8921
8922 * progmodes/cc-engine.el (c-append-lower-brace-pair-to-state-cache):
8923 Adding a ) can hide the resulting (..) from searches. Fix it.
8924 Bound the backward search to the position of the existing (.
8925
8926 2012-04-21 Juanma Barranquero <lekktu@gmail.com>
8927
8928 * progmodes/verilog-mode.el (verilog-mode): Check whether
8929 which-func-modes is t before adding verilog-mode.
8930 Reported by Andy Moreton <andrewjmoreton@gmail.com>.
8931
8932 2012-04-21 Leo Liu <sdl.web@gmail.com>
8933
8934 * net/rcirc.el (rcirc): Avoid error when process-contact returns t.
8935
8936 2012-04-21 Michael Vehrs <Michael.Burschik@gmx.de>
8937
8938 * woman.el: Add support for "T{ T}" tbl syntax, and fix the
8939 filling of the last column of a table (Bug#5635).
8940 (woman-find-next-control-line): New arg, specifying an additional
8941 regexp component for the control line.
8942 (woman2-roff-buffer): Use it.
8943 (woman-break-table): New function.
8944 (woman2-TS): Use it.
8945
8946 2012-04-21 Chong Yidong <cyd@gnu.org>
8947
8948 * woman.el (woman-set-buffer-display-table, woman-decode-region)
8949 (woman-horizontal-escapes, woman-negative-vertical-space)
8950 (woman-tab-to-tab-stop, woman2-fc, woman2-TS)
8951 (WoMan-warn-ignored): Use ?\s instead of ?\ .
8952
8953 2012-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
8954
8955 * minibuffer.el (completion-file-name-table): Complete user names.
8956
8957 2012-04-20 Leo Liu <sdl.web@gmail.com>
8958
8959 * font-lock.el (lisp-font-lock-keywords-2): Add pcase, pcase-let
8960 and pcase-let*.
8961
8962 2012-04-20 Chong Yidong <cyd@gnu.org>
8963
8964 * server.el (server-execute): Respect initial-buffer-choice if it
8965 is a string and there are no files to open (Bug#2825).
8966 (server-create-window-system-frame, server-create-tty-frame):
8967 Don't switch buffers here.
8968 (server-process-filter): Only try to open a window system frame if
8969 compiled with graphical support (Bug#8314).
8970
8971 2012-04-20 Dan Nicolaescu <dann@gnu.org>
8972
8973 * battery.el (battery-echo-area-format): Display remaining time
8974 for sysfs backend too (Bug#11269).
8975 (battery-linux-sysfs): Fix conditional for the charge.
8976
8977 2012-04-20 Chong Yidong <cyd@gnu.org>
8978
8979 * progmodes/gdb-mi.el (gdb): Revert previous change.
8980 (gdb-inferior-io--init-proc): New function.
8981 (gdb-init-1): Use it.
8982 (gdb-inferior-io-sentinel): New sentinel for the gdb-inferior pty,
8983 responsible for allocating a new pty and hooking it to gdb when
8984 the old pty gets an EIO due to process exit.
8985 (gdb-delchar-or-quit): New command. Bind it in gdb-mi buffers.
8986 (gdb-tooltip-print): Don't use obsolete tooltip-use-echo-area.
8987 (gdb-inferior-io--maybe-delete-pty): Move into gdb-reset.
8988
8989 2012-04-20 Eli Zaretskii <eliz@gnu.org>
8990
8991 * window.el (window-min-size, window-sizable, window-min-delta)
8992 (window-max-delta, window--resizable, window-resizable)
8993 (window-total-size, window-full-height-p, window-full-width-p)
8994 (window-in-direction, window--resize-mini-window, window-resize)
8995 (window--resize-child-windows-normal)
8996 (window--resize-child-windows, window--resize-siblings)
8997 (window--resize-this-window, adjust-window-trailing-edge)
8998 (enlarge-window, shrink-window): Doc fixes.
8999
9000 2012-04-20 Chong Yidong <cyd@gnu.org>
9001
9002 * progmodes/gdb-mi.el (gdb-inferior-io--maybe-delete-pty):
9003 New function to call delete-process on the gdb-inferior buffer's pty.
9004 (gdb-reset): Use it, instead of relying on kill-buffer to kill the
9005 pty process (Bug#11273).
9006 (gdb-update): New arg to suppress talking to the gdb process.
9007 (gdb-done-or-error): Use it.
9008 (gdb-stopped-functions): Rename from gdb-stopped-hooks.
9009 (gdb): Call gdb-inferior-io--maybe-delete-pty as a workaround for
9010 sentinel not being called.
9011
9012 * comint.el (make-comint-in-buffer, comint-exec): Doc fix.
9013
9014 * progmodes/grep.el (grep, rgrep): Doc fix (Bug#11268).
9015
9016 2012-04-20 Glenn Morris <rgm@gnu.org>
9017
9018 * net/network-stream.el (open-network-stream): Doc fix.
9019
9020 2012-04-20 Chong Yidong <cyd@gnu.org>
9021
9022 * emacs-lisp/tabulated-list.el (tabulated-list-print): Fix typos.
9023
9024 2012-04-20 Alan Mackenzie <acm@muc.de>
9025
9026 Ensure searching for keywords is case sensitive.
9027
9028 * progmodes/cc-cmds.el (c-electric-brace, c-electric-lt-gt)
9029 (c-electric-paren, c-beginning-of-defun, c-end-of-defun)
9030 (c-defun-name, c-mark-function, c-cpp-define-name)
9031 (c-comment-indent, c-scan-conditionals, c-indent-defun)
9032 (c-context-line-break): Bind case-fold-search to nil.
9033
9034 * progmodes/cc-mode.el (c-font-lock-fontify-region):
9035 Bind case-fold-search to nil.
9036
9037 2012-04-20 Chong Yidong <cyd@gnu.org>
9038
9039 * mail/sendmail.el (mail-bury): Call return action with the right
9040 Rmail buffer (Bug#11242).
9041
9042 * server.el (server-process-filter): Handle corner case where both
9043 tty and nowait options are present (Bug#11102).
9044
9045 2012-04-20 Eli Zaretskii <eliz@gnu.org>
9046
9047 * version.el (emacs-bzr-version, emacs-bzr-get-version): Doc fixes.
9048 (top level): Put into the executable the ident-style '$Id:' tag on
9049 windows-nt as well.
9050
9051 2012-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
9052
9053 * electric.el (electric-indent-post-self-insert-function): Check that
9054 electric-indent-mode is enabled in current buffer.
9055
9056 2012-04-19 Juanma Barranquero <lekktu@gmail.com>
9057
9058 * imenu.el (imenu-progress-message): Restore; it is "used" in
9059 erc/erc-imenu.el and net/snmp-mode.el.
9060
9061 2012-04-19 Juanma Barranquero <lekktu@gmail.com>
9062
9063 * avoid.el (mouse-avoidance-mode): Mark unused arg.
9064 (mouse-avoidance-nudge-mouse): Remove unused binding.
9065
9066 * bs.el (bs-toggle-readonly): Call `toggle-read-only' interactively.
9067
9068 * descr-text.el (describe-char):
9069 * progmodes/python.el (python-describe-symbol):
9070 Don't call `toggle-read-only', set `buffer-read-only'.
9071
9072 * imenu.el (imenu-default-goto-function): Mark unused args.
9073 (imenu-progress-message): Remove obsolete macro; all callers changed.
9074
9075 * subr.el (keymap-canonicalize): Remove unused binding.
9076 (read-passwd): Mark unused arg.
9077
9078 * tutorial.el (tutorial--display-changes): Remove unused binding.
9079 (tutorial--save-tutorial-to): Remove unused variable.
9080
9081 * emacs-lisp/package.el (define-package, package-menu-mark-delete)
9082 (package-menu-mark-install, package-menu-mark-unmark): Mark unused args.
9083 (package-generate-autoloads, package-menu--generate)
9084 (package-menu--find-upgrades): Remove unused bindings.
9085
9086 * emulation/cua-rect.el (cua-restrict-regexp-rectangle)
9087 (cua-restrict-prefix-rectangle): Doc fixes. Remove unused bindings.
9088 (cua--mouse-ignore, cua--delete-rectangle, cua--extract-rectangle)
9089 (cua--indent-rectangle, cua-open-rectangle, cua-close-rectangle)
9090 (cua-blank-rectangle, cua-string-rectangle, cua-replace-in-rectangle)
9091 (cua-incr-rectangle, cua-sequence-rectangle, cua--convert-rectangle-as)
9092 (cua--rectangle-aux-replace, cua--left-fill-rectangle)
9093 (cua-scroll-rectangle-up, cua-scroll-rectangle-down)
9094 (cua-delete-char-rectangle): Mark unused args.
9095 (cua-align-rectangle): Remove unused binding.
9096
9097 * mail/rmail.el (compilation--message->loc)
9098 (epa--find-coding-system-for-mime-charset): Declare.
9099
9100 * net/dbus.el (dbus-register-service): Declare.
9101 (dbus-name-owner-changed-handler): Remove unused binding.
9102
9103 * nxml/nxml-mode.el (nxml-electric-slash, nxml-in-mixed-content-p)
9104 (nxml-compute-indent-from-matching-start-tag): Remove unused variables.
9105 (nxml-scan-backward-within): Mark unused arg.
9106 (nxml-dynamic-markup-word): Remove unused binding.
9107
9108 * mouse.el (mouse-menu-major-mode-map):
9109 * emacs-lisp/authors.el (authors-scan-change-log)
9110 (authors-add-to-author-list):
9111 * emacs-lisp/avl-tree.el (avl-tree--enter-balance):
9112 * emacs-lisp/smie.el (smie-auto-fill):
9113 * mail/sendmail.el (mail-bury):
9114 * mail/unrmail.el (unrmail):
9115 * net/tls.el (open-tls-stream):
9116 * textmodes/picture.el (picture-mouse-set-point):
9117 Remove unused bindings.
9118
9119 2012-04-19 Michael Albinus <michael.albinus@gmx.de>
9120
9121 * net/tramp.el (tramp-action-password): Let-bind
9122 `enable-recursive-minibuffers' to t.
9123
9124 2012-04-18 Sam Steingold <sds@gnu.org>
9125
9126 * progmodes/gud.el (gud-key-prefix): Use :type 'key-sequence
9127 instead of 'string to accommodate values like [f11].
9128 Always use `vconcat' instead of `concat' on it, like in `gud-def'.
9129 * progmodes/gdb-mi.el: Likewise.
9130
9131 2012-04-18 Leo Liu <sdl.web@gmail.com>
9132
9133 * abbrev.el (edit-abbrevs): Move point to the abbrev table of
9134 current buffer.
9135 (prepare-abbrev-list-buffer): Enter edit-abbrevs-mode only if
9136 LOCAL is nil.
9137
9138 2012-04-18 Chong Yidong <cyd@gnu.org>
9139
9140 * simple.el (line-move): Use forward-line if in batch mode
9141 (Bug#11053).
9142
9143 2012-04-18 Christopher Schmidt <christopher@ch.ristopher.com>
9144
9145 * files.el (after-find-file): Do not try to add a final newline if
9146 the buffer is read-only (Bug#11156).
9147
9148 2012-04-17 Richard Stallman <rms@gnu.org>
9149
9150 * mail/rmail.el (rmail-start-mail):
9151 Pass (rmail-mail-return...) for the return-action.
9152 Pass (rmail-yank-current-message...) for the yank-action.
9153 (rmail-yank-current-message): New function.
9154 (rmail-mail): Pass the Rmail buffer, not view buffer, for replybuffer.
9155 (rmail-reply): Likewise.
9156 (rmail-forward): Pass the Rmail buffer, not nil, for replybuffer.
9157
9158 * mail/sendmail.el (mail-bury): Choose the first rmail-mode
9159 buffer, not the last. Reject temp buffers. Use the rmail-mode
9160 buffer, not newbuf.
9161
9162 2012-04-17 Juanma Barranquero <lekktu@gmail.com>
9163
9164 * server.el (server-ensure-safe-dir): Simplify.
9165
9166 2012-04-17 Stefan Monnier <monnier@iro.umontreal.ca>
9167
9168 * emacs-lisp/smie.el: Provide smarter auto-filling.
9169 (smie-auto-fill): New function.
9170 (smie-setup): Use it.
9171
9172 * newcomment.el (comment-choose-indent): Obey comment-inline-offset.
9173
9174 2012-04-17 Philipp Haselwarter <philipp.haselwarter@gmx.de> (tiny change)
9175
9176 * newcomment.el (comment-inline-offset): New custom var (bug#11090).
9177 (comment-indent): Use it.
9178
9179 2012-04-17 Vincent Belaïche <vincentb1@users.sourceforge.net>
9180
9181 * ses.el: The overall change is to add cell renaming, that is
9182 setting fancy names for cell symbols other than name matching
9183 "\\`[A-Z]+[0-9]+\\'" regexp .
9184 (ses-localvars): Add ses--renamed-cell-symb-list.
9185 (ses-create-cell-variable): New defun.
9186 (ses-destroy-cell-variable-range): Respect ses--numrows, ses--numcols.
9187 (ses-relocate-formula): Relocate formulas only for cells the
9188 symbols of which are not renamed, i.e. symbols whose names do not
9189 match regexp "\\`[A-Z]+[0-9]+\\'".
9190 (ses-relocate-all): Relocate values only for cells the symbols of
9191 which are not renamed.
9192 (ses-load): Create cells variables as the (ses-cell ...) are read,
9193 in order to check row col consistency with cell symbol name only
9194 for cells that are not renamed.
9195 (ses-replace-name-in-formula): New defun.
9196 (ses-rename-cell): New defun.
9197
9198 2012-04-17 Peter Oliver <bzr@mavit.org.uk> (tiny change)
9199
9200 * progmodes/perl-mode.el (perl-indent-parens-as-block):
9201 New option (bug#11118).
9202 (perl-calculate-indent): Respect it.
9203
9204 2012-04-17 Glenn Morris <rgm@gnu.org>
9205
9206 * dired-aux.el (dired-mark-read-string): Doc fix.
9207
9208 2012-04-17 Dmitry Antipov <dmantipov@yandex.ru>
9209
9210 * dired-aux.el (dired-mark-read-string): Offer optional completion.
9211 (dired-do-chxxx): Complete chown, chgrp over users, groups. (Bug#7900)
9212
9213 2012-04-17 Glenn Morris <rgm@gnu.org>
9214
9215 * mouse.el (mouse-drag-track):
9216 * speedbar.el (speedbar-frame-mode):
9217 Use auto-hscroll-mode rather than the alias automatic-hscrolling.
9218
9219 2012-04-16 Leo Liu <sdl.web@gmail.com>
9220
9221 * progmodes/python.el: Trivial cleanup.
9222
9223 2012-04-16 Glenn Morris <rgm@gnu.org>
9224
9225 * vc/vc.el (vc-string-prefix-p):
9226 * vc/pcvs-util.el (cvs-string-prefix-p):
9227 * textmodes/tex-mode.el (latex-string-prefix-p, tex-string-prefix-p):
9228 * mpc.el (mpc-string-prefix-p):
9229 Make all of these into obsolete aliases for string-prefix-p.
9230 Update callers.
9231 * vc/pcvs.el, vc/vc-dispatcher.el, vc/vc-dir.el: Update callers.
9232
9233 * textmodes/two-column.el: Move custom options to the start.
9234 (frame-width): Remove compat definition.
9235 (2C-associate-buffer, 2C-dissociate):
9236 Use with-current-buffer rather than save-excursion.
9237 (2C-dissociate): Force a mode-line update.
9238 (2C-autoscroll): Use ignore-errors.
9239
9240 * emacs-lisp/eieio-opt.el (describe-class, describe-generic):
9241 Autoload trivia.
9242
9243 * emacs-lisp/cl-extra.el (*random-state*):
9244 Remove unnecessary declaration.
9245
9246 * calendar/cal-tex.el (cal-tex-end-document): Trivial clarification.
9247
9248 * play/cookie1.el (cookie-snarf):
9249 Give an explicit error if input file cannot be read.
9250
9251 * play/yow.el (yow-file): Use expand-file-name rather than concat.
9252
9253 * progmodes/perl-mode.el (c-macro-expand):
9254 Remove unnecessary autoload (it is in loaddefs.el).
9255
9256 * textmodes/picture.el (picture-desired-column)
9257 (picture-update-desired-column): Convert comments to doc-strings.
9258 (picture-substitute): Remove function.
9259 (picture-mode-map): Initialize in the defvar.
9260
9261 * woman.el: Remove eval-after-load for tar-mode.
9262 * tar-mode.el (tar-mode-map): Add woman binding and menu entry.
9263 (woman-tar-extract-file): Autoload it.
9264
9265 * frame.el (automatic-hscrolling): Make this alias obsolete.
9266
9267 2012-04-12 Agustín Martín Domingo <agustin.martin@hispalinux.es>
9268
9269 * textmodes/ispell.el (ispell-set-spellchecker-params): Post-process
9270 `ispell-dictionary-alist' to use [:alpha:] and utf-8 if possible.
9271 (ispell-dictionary-base-alist): Revert to original XEmacs
9272 friendly version for default. [:alpha:] will be added in
9273 `ispell-set-spellchecker-params' if needed.
9274
9275 2012-04-16 Chong Yidong <cyd@gnu.org>
9276
9277 * image.el (imagemagick--file-regexp): New variable.
9278 (imagemagick-register-types): Use it.
9279 (imagemagick-types-inhibit): Add :set function. Allow new value
9280 of t to inhibit all types.
9281
9282 * emacs-lisp/regexp-opt.el (regexp-opt-charset): Avoid cl macros,
9283 so we can preload it.
9284
9285 * loadup.el (fboundp): Preload regexp-opt, needed by
9286 imagemagick-register-types.
9287
9288 2012-04-15 Chong Yidong <cyd@gnu.org>
9289
9290 * frame.el (scrolling): Remove nearly unused customization group.
9291
9292 * scroll-all.el (scroll-all-mode): Move to windows group.
9293
9294 2012-04-15 Chong Yidong <cyd@gnu.org>
9295
9296 * bindings.el (goto-map): Bind goto-char to M-g c (Bug#11240).
9297
9298 2012-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
9299
9300 Avoid the use of ((lambda ...) ...) in lexical-binding code.
9301 * emacs-lisp/easy-mmode.el (define-minor-mode): Use funcall (bug#11241).
9302
9303 2012-04-15 Glenn Morris <rgm@gnu.org>
9304
9305 * simple.el (process-file-side-effects): Doc fix.
9306
9307 2012-04-15 Glenn Morris <rgm@gnu.org>
9308
9309 * international/mule-cmds.el (set-language-environment): Doc fix.
9310
9311 2012-04-14 Juanma Barranquero <lekktu@gmail.com>
9312
9313 * server.el (server-auth-key, server-generate-key): Doc fixes.
9314 (server-get-auth-key): Doc fix. Use `string-match-p'.
9315 (server-start): Reflow docstring.
9316
9317 2012-04-14 Lars Ingebrigtsen <larsi@gnus.org>
9318
9319 * server.el (server-generate-key): `called-interactively-p'
9320 requires a parameter.
9321
9322 2012-04-14 Michal Nazarewicz <mina86@mina86.com>
9323
9324 * server.el (server-auth-key): New variable.
9325 (server-generate-key, server-get-auth-key): New function.
9326 (server-start): Use the new variable and functions to allow
9327 setting a permanent server key (bug#9423).
9328
9329 2012-04-14 Leo Liu <sdl.web@gmail.com>
9330
9331 * vc/diff-mode.el (diff-file-prev/next): Fix typo.
9332
9333 2012-04-14 Paul Eggert <eggert@cs.ucla.edu>
9334
9335 Spelling fixes.
9336 * hexl.el (hexl-rulerize): Rename from hexl-rulerise, since
9337 Emacs uses American spelling.
9338
9339 2012-04-14 Juanma Barranquero <lekktu@gmail.com>
9340
9341 * emacs-lock.el (emacs-lock-locked-buffer-functions): New hook.
9342 (emacs-lock--exit-locked-buffer): Return the locked buffer. Doc fix.
9343 (emacs-lock--kill-emacs-hook, emacs-lock--kill-emacs-query-functions)
9344 (emacs-lock--kill-buffer-query-functions): Run new hook. (Bug#11017)
9345
9346 2012-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
9347
9348 * progmodes/which-func.el (which-func-modes): Change default.
9349
9350 2012-04-14 Kim F. Storm <storm@cua.dk>
9351
9352 * emulation/cua-base.el (cua-exchange-point-and-mark): Just call
9353 exchange-point-and-mark if cua-enable-cua-keys is nil (Bug#11191).
9354
9355 2012-04-14 Chong Yidong <cyd@gnu.org>
9356
9357 * custom.el (custom-theme-set-variables): Doc fix.
9358
9359 2012-04-14 Glenn Morris <rgm@gnu.org>
9360
9361 * international/mule.el (set-auto-coding-for-load): Doc fix.
9362
9363 2012-04-14 Alan Mackenzie <acm@muc.de>
9364
9365 * progmodes/cc-menus.el (cc-imenu-objc-generic-expression): Make
9366 imenu work again for Objective C Mode. Correct the *-index values,
9367 these having been disturbed by a previous change in 2011-08.
9368
9369 * progmodes/cc-engine.el (c-before-change-check-<>-operators):
9370 Correct two search limits.
9371
9372 2012-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
9373
9374 * startup.el (command-line-1): Inhibit splash from daemon (bug#10996).
9375
9376 2012-04-14 Andreas Schwab <schwab@linux-m68k.org>
9377
9378 * international/characters.el: Fix sorting.
9379
9380 2012-04-14 Eli Zaretskii <eliz@gnu.org>
9381
9382 * international/characters.el: Add more missing Latin case pairs.
9383
9384 2012-04-14 Glenn Morris <rgm@gnu.org>
9385
9386 * files.el (dir-locals-set-class-variables): Doc fix.
9387
9388 2012-04-14 Eli Zaretskii <eliz@gnu.org>
9389
9390 * international/characters.el: Add set-case-syntax-pair call for
9391 LATIN CAPITAL LETTER Y WITH DIAERESIS RET and its lower-case
9392 counterpart. (Bug#11209)
9393
9394 * simple.el (shell-command-on-region): Doc fix. (Bug#11208)
9395
9396 2012-04-14 Glenn Morris <rgm@gnu.org>
9397
9398 * calendar/holidays.el (calendar-check-holidays): Doc fix.
9399
9400 2012-04-14 Eli Zaretskii <eliz@gnu.org>
9401
9402 * textmodes/ispell.el (ispell-dictionary-base-alist):
9403 Add data for Hebrew.
9404
9405 2012-04-14 Chong Yidong <cyd@gnu.org>
9406
9407 * net/rcirc.el (rcirc-cmd-quit):
9408 Revert 2012-03-18 change (Bug#11192).
9409
9410 2012-04-14 Glenn Morris <rgm@gnu.org>
9411
9412 * pcmpl-rpm.el (pcomplete/rpm): Handle -qf.
9413
9414 2012-04-14 Eli Zaretskii <eliz@gnu.org>
9415
9416 * minibuffer.el (completion-in-region-mode-map):
9417 Bind completion-help-at-point to M-? rather than ?. (Bug#11182)
9418
9419 2012-04-13 Vivek Dasmohapatra <vivek@etla.org>
9420
9421 * hexl.el (hexl-insert-char): Make display sizes other than 16 work.
9422
9423 2012-04-13 Masatake YAMATO <yamato@redhat.com>
9424
9425 * minibuffer.el (minibuffer-local-filename-syntax): New variable
9426 to allow `C-M-f' and `C-M-b' to move to the nearest path
9427 separator (bug#9511).
9428
9429 2012-04-13 Lars Ingebrigtsen <larsi@gnus.org>
9430
9431 * avoid.el: Require cl when compiling. And also move the
9432 `provide' to the end.
9433
9434 2012-04-13 Thierry Volpiatto <thierry.volpiatto@gmail.com>
9435
9436 * avoid.el (mouse-avoidance-banish-position): New variable.
9437 (mouse-avoidance-banish-destination): Use it (bug#10165).
9438
9439 2012-04-13 Leo Liu <sdl.web@gmail.com>
9440
9441 * progmodes/which-func.el (which-func-modes): Add objc-mode.
9442
9443 2012-04-13 Ken Brown <kbrown@cornell.edu>
9444
9445 * net/browse-url.el (browse-url-file-url): Remove Cygwin hack;
9446 this is no longer needed now that cygstart understands file:// URLs.
9447 (browse-url-filename-alist): For the same reason, don't modify
9448 file:// URLs on Cygwin.
9449
9450 2012-04-13 Stefan Monnier <monnier@iro.umontreal.ca>
9451
9452 * emulation/cua-base.el (cua--pre-command-handler-1): Don't activate
9453 the region on shift if the binding is already shifted (bug#11221).
9454
9455 2012-04-12 Glenn Morris <rgm@gnu.org>
9456
9457 * mail/mailpost.el: Move to obsolete/.
9458
9459 2012-04-12 Drew Adams <drew.adams@oracle.com>
9460
9461 * imenu.el (imenu--generic-function): Ignore invisible definitions
9462 (bug#10123).
9463
9464 2012-04-12 Vivek Dasmohapatra <vivek@etla.org>
9465
9466 * hexl.el (hexl-bits): New variable.
9467 (hexl-options): Mention the variable in the doc string.
9468 (hexl-rulerise, hexl-line-displen): New functions.
9469 (hexl-mode): Mention the new variable.
9470 (hexl-mode, hexl-current-address, hexl-current-address):
9471 Use the displen.
9472 (hexl-ascii-start-column): New function.
9473 (hexl-address-to-marker, hexl-beginning-of-line, hexl-options)
9474 (hexl-insert-char, hexl-mode-ruler): Use the displen (bug#4941).
9475
9476 2012-04-12 Agustín Martín Domingo <agustin.martin@hispalinux.es>
9477
9478 * textmodes/flyspell.el (flyspell-large-region): For hunspell, use
9479 '("-i" ENCODING), in 2 separate command-line arguments, to specify
9480 the encoding, as expected by hunspell.
9481
9482 2012-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
9483
9484 * battery.el (battery--linux-sysfs-regexp): New const.
9485 (battery-status-function): Use it. Remove yeeloong special case.
9486 (battery-yeeloong-sysfs): Remove.
9487 (battery-echo-area-format): Remove yeeloong special case.
9488
9489 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
9490
9491 * imenu.el (imenu-add-to-menubar): `current-local-map' can be nil.
9492 Reported by Noah Friedman.
9493
9494 * subr.el (read-passwd): Use read-string.
9495
9496 2012-04-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
9497
9498 * vcursor.el (vcursor-move): Increase the priority of the overlay
9499 (bug#9663).
9500
9501 2012-04-11 Deniz Dogan <deniz.a.m.dogan@gmail.com>
9502
9503 * net/rcirc.el (rcirc-kill-channel-buffers): New variable.
9504 (rcirc-kill-buffer-hook): Use it to kill channel buffers (bug#5128).
9505
9506 2012-04-11 William Stevenson <yhvh2000@gmail.com>
9507
9508 * textmodes/artist.el (artist-mode): Convert artist-mode to use
9509 define-minor-mode (bug#10760).
9510
9511 2012-04-11 Wolfgang Jenkner <wjenkner@inode.at> (tiny change)
9512
9513 * progmodes/grep.el (rgrep): Tweak the find command line so
9514 that directories matching `grep-find-ignored-files' won't be
9515 pruned (bug#10351).
9516
9517 2012-04-11 Chong Yidong <cyd@gnu.org>
9518
9519 * startup.el (command-line): Remove support for long-obsolete
9520 variable font-lock-face-attributes.
9521
9522 2012-04-11 Glenn Morris <rgm@gnu.org>
9523
9524 * vc/vc-bzr.el (vc-bzr-status): Avoid condition-case-unless-debug.
9525
9526 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
9527
9528 * window.el (window--state-get-1): Obey window-point-insertion-type.
9529
9530 2012-04-11 Lennart Borgman <lennart.borgman@gmail.com>
9531
9532 * emacs-lisp/lisp.el (narrow-to-defun): `beginning-of-defun' goes
9533 to previous function when point is on the first character of a
9534 function. Take care of that in `narrow-to-defun' (bug#6157).
9535
9536 2012-04-11 Glenn Morris <rgm@gnu.org>
9537
9538 * vc/vc-bzr.el (vc-bzr-status): Handle all errors,
9539 not just file-errors.
9540
9541 * vc/vc-bzr.el (vc-bzr-sha1-program, sha1-program): Remove.
9542 (vc-bzr-sha1): Use internal sha1.
9543
9544 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
9545
9546 * progmodes/flymake.el (flymake-mode): Beware read-only dirs (bug#8954).
9547
9548 2012-04-10 Sébastien Gross <seb@chezwam.org> (tiny change)
9549
9550 * progmodes/hideshow.el (hs-hide-all): Don't infloop on comments
9551 that start in the middle of the line (bug#10496).
9552
9553 2012-04-10 Dan Nicolaescu <dann@gnu.org>
9554
9555 * battery.el (battery-linux-proc-acpi): Only one battery is
9556 discharged at a time, but that seems to confuse battery.el when
9557 computing `rate-type' for the battery not being discharged
9558 (bug#10332).
9559
9560 2012-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
9561
9562 * emacs-lisp/autoload.el (autoload-make-program): Remove, unused.
9563
9564 * international/quail.el: Use dolist and simplify.
9565 (quail-define-package, quail-update-keyboard-layout)
9566 (quail-define-rules): Use dolist.
9567 (quail-insert-kbd-layout, quail-get-translation): CSE.
9568
9569 * tmm.el: Use dolist, remove left over hook.
9570 (tmm-prompt, tmm-define-keys, tmm-shortcut, tmm-get-keybind):
9571 Use dolist.
9572 (calendar-load-hook): Don't mess with it.
9573
9574 * vc/vc-annotate.el (vc-annotate-show-diff-revision-at-line-internal):
9575 Use derived-mode-p. Run the diff asynchronously.
9576
9577 2012-04-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
9578
9579 * obsolete/mouse-sel.el: Add an Obsolete-since header.
9580
9581 2012-04-10 Juanma Barranquero <lekktu@gmail.com>
9582
9583 * misc.el: Display absolute path of loaded DLLs (bug#10424).
9584 (list-dynamic-libraries--loaded): New function.
9585 (list-dynamic-libraries--refresh): Use it.
9586
9587 2012-04-10 Nathan Weizenbaum <nweiz@google.com>
9588
9589 * progmodes/python.el (python-fill-paragraph):
9590 Make python-fill-region in a multiline string work when font-lock is
9591 disabled (bug#7018).
9592
9593 2012-04-10 Laimonas Vėbra <laimonas.vebra@gmail.com> (tiny change)
9594
9595 * language/european.el (cp775): Add oem/legacy (en)coding on
9596 DOS/MS Windows for the Baltic languages. There are still plenty
9597 of texts written in this encoding/codepage (bug#6519).
9598
9599 2012-04-10 Glenn Morris <rgm@gnu.org>
9600
9601 * cus-start.el (eol-mnemonic-unix, eol-mnemonic-dos, eol-mnemonic-mac):
9602 Add :standard values, reducing "rogue" customs in emacs -Q a bit more.
9603
9604 2012-04-10 Florian Adamsky <florian@adamsky.it> (tiny change)
9605
9606 * recentf.el (recentf-dialog-mode-map): Add two keybindings for
9607 next-line "n" and previous-line "p" in order to make recentf more
9608 consistent with ibuffer, dired or org-mode (bug#9387).
9609
9610 2012-04-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
9611
9612 * image.el (put-image): Return the overlay created instead of the
9613 optional input string (bug#7834). Note that this may break code
9614 that is (for some reason or other) depending on `put-image'
9615 returning the string.
9616
9617 * mouse-sel.el (mouse-sel-mode): Mark as obsolete (bug#6174).
9618
9619 * simple.el (zap-to-char): Allow zapping using input methods
9620 (bug#1580).
9621
9622 * textmodes/fill.el (fill-region): Leave point and mark where they
9623 were before filling (bug#5399).
9624
9625 2012-04-09 Glenn Morris <rgm@gnu.org>
9626
9627 * version.el (emacs-bzr-get-version):
9628 Handle lightweight checkouts of local branches.
9629
9630 2012-04-09 Andreas Schwab <schwab@linux-m68k.org>
9631
9632 * international/characters.el: Recover lost case pairs. (Bug#11209)
9633
9634 2012-04-09 Chong Yidong <cyd@gnu.org>
9635
9636 * custom.el (custom-variable-p): Return nil for non-symbol
9637 arguments instead of signaling an error.
9638 (user-variable-p): Obsolete alias for custom-variable-p.
9639
9640 * apropos.el (apropos-variable):
9641 * files-x.el (read-file-local-variable):
9642 * simple.el (set-variable):
9643 * woman.el (woman-mini-help):
9644 * emacs-lisp/byte-opt.el (side-effect-free-fns): Callers changed.
9645
9646 2012-04-09 Glenn Morris <rgm@gnu.org>
9647
9648 * startup.el (normal-top-level): Don't look for leim-list.el
9649 in places where it will not be found. (Bug#910)
9650
9651 * international/mule-cmds.el (set-default-coding-systems):
9652 * files.el (normal-mode):
9653 Remove guarded calls to ucs-set-table-for-input. (Bug#9821)
9654 This function was removed with ucs-tables.el in 2008.
9655
9656 2012-04-08 Eli Zaretskii <eliz@gnu.org>
9657
9658 * textmodes/ispell.el (ispell-check-version): For hunspell, set
9659 ispell-encoding8-command to "-i", without a trailing space.
9660 (ispell-start-process): For hunspell, use '("-i" ENCODING), in 2
9661 separate command-line arguments, to specify the encoding, since
9662 that's how hunspell expects it.
9663
9664 2012-04-08 Glenn Morris <rgm@gnu.org>
9665
9666 * loadup.el: Load bindings before cus-start.
9667 This reduces somewhat the number of "rogue" settings in emacs -Q.
9668
9669 2012-04-07 Glenn Morris <rgm@gnu.org>
9670
9671 * version.el (emacs-bzr-get-version): New function.
9672 (emacs-bzr-version): New variable.
9673 * loadup.el (emacs-bzr-version): Set it. (Bug#8054)
9674 * mail/emacsbug.el (report-emacs-bug): Include bzr version.
9675
9676 2012-04-07 Eli Zaretskii <eliz@gnu.org>
9677
9678 * international/uni-bidi.el, international/uni-category.el:
9679 * international/uni-combining.el, international/uni-decimal.el:
9680 * international/uni-decomposition.el, international/uni-digit.el:
9681 * international/uni-lowercase.el, international/uni-mirrored.el:
9682 * international/uni-name.el, international/uni-numeric.el:
9683 * international/uni-titlecase.el, international/uni-uppercase.el:
9684 Update for Unicode 6.1.
9685
9686 2012-04-07 Eli Zaretskii <eliz@gnu.org>
9687
9688 * term/w32-win.el (dynamic-library-alist): Add libxml2 DLLs.
9689
9690 2012-04-05 Lars Magne Ingebrigtsen <larsi@gnus.org>
9691
9692 * window.el (shrink-window): Mention the `window-min-height'
9693 variable in the doc string.
9694
9695 2012-04-05 Bastien Guerry <bzg@altern.org>
9696
9697 * color.el (color-lighten-name): Fix typo.
9698
9699 2012-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
9700
9701 * server.el (server--on-display-p): New function.
9702 (server--on-display-p): Use it.
9703
9704 2012-04-04 Gabor Vida <vidagabor@gmail.com> (tiny change)
9705
9706 * ido.el (ido-wide-find-dirs-or-files): Use file-name-absolute-p
9707 (bug#11145).
9708
9709 2012-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
9710
9711 * comint.el (comint--common-quoted-suffix): Check string boundary
9712 before comparing (bug#11158).
9713 * pcomplete.el (pcomplete--common-quoted-suffix): Idem.
9714
9715 2012-04-04 Chong Yidong <cyd@gnu.org>
9716
9717 * minibuffer.el (completion-extra-properties): Doc fix.
9718
9719 * subr.el (delayed-warnings-hook): Doc fix.
9720
9721 2012-04-04 Daiki Ueno <ueno@unixuser.org>
9722
9723 * epa.el (epa--select-keys): Bind C-c C-c to finish the key
9724 selection (Bug#11159).
9725 (epa-insert-keys): Inform that the default public key will be
9726 exported if no key is selected.
9727
9728 2012-04-04 Richard Stallman <rms@gnu.org>
9729
9730 * mail/emacsbug.el (report-emacs-bug): Bind inhibit-read-only.
9731
9732 2012-04-03 Chong Yidong <cyd@gnu.org>
9733
9734 * mail/sendmail.el (mail-mode-map): Bind C-c C-i to
9735 mail-insert-file, not its obsolete alias mail-attach-file.
9736
9737 2012-04-03 Michael Albinus <michael.albinus@gmx.de>
9738
9739 * notifications.el (notifications-notify): Fix docstring.
9740
9741 2012-04-02 Glenn Morris <rgm@gnu.org>
9742
9743 * emacs-lisp/authors.el (authors-aliases): Another addition.
9744
9745 2012-04-02 Michael Albinus <michael.albinus@gmx.de>
9746
9747 * net/tramp-gvfs.el (tramp-gvfs-send-command): Apply
9748 `tramp-compat-call-process' instead of `tramp-local-call-process'.
9749 Reported by Magnus Henoch <magnus.henoch@gmail.com>.
9750
9751 2012-04-01 Chong Yidong <cyd@gnu.org>
9752
9753 * files.el (file-in-directory-p): Rename from file-subdir-of-p.
9754 Handle root directory properly.
9755 (copy-directory): Caller changed.
9756
9757 * dired-aux.el (dired-copy-file-recursive, dired-create-files):
9758 * net/tramp.el (tramp-file-name-for-operation): Callers changed.
9759
9760 2012-03-31 Glenn Morris <rgm@gnu.org>
9761
9762 * term/xterm.el (xterm-extra-capabilities): Doc fix.
9763
9764 * language/indian.el ("Devanagari"): Fix typo. (Bug#11103)
9765
9766 * calendar/calendar.el (calendar-window-list)
9767 (calendar-hide-window): Restore. (Bug#11140)
9768 (calendar-exit): Use calendar-window-list, calendar-hide-window again.
9769
9770 * emacs-lisp/edebug.el (edebug-unwrap-results): Doc fix.
9771
9772 2012-03-30 Thierry Volpiatto <thierry.volpiatto@gmail.com>
9773
9774 * dired-aux.el (dired-copy-file-recursive, dired-create-files):
9775 Check if file is a symlink (Bug#10489).
9776
9777 * files.el (copy-directory): Likewise.
9778
9779 2012-03-30 Chong Yidong <cyd@gnu.org>
9780
9781 * image.el (imagemagick-types-inhibit)
9782 (imagemagick-register-types): Doc fix.
9783
9784 2012-03-30 Agustín Martín Domingo <agustin.martin@hispalinux.es>
9785
9786 * textmodes/ispell.el (ispell-get-extended-character-mode):
9787 Disable extended-char-mode for hunspell. hunspell does not support it
9788 and treats ~word as ordinary words in pipe mode.
9789
9790 2012-03-30 Glenn Morris <rgm@gnu.org>
9791
9792 * tutorial.el (help-with-tutorial): Ensure local variables don't
9793 happen to make the buffer read-only. (Bug#11127)
9794
9795 2012-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
9796
9797 * progmodes/perl-mode.el (perl-indent-line): Use `noindent' in strings.
9798 (perl-calculate-indent): Return `noindent' in strings.
9799
9800 2012-03-28 Sam Steingold <sds@gnu.org>
9801
9802 * calendar/calendar.el (calendar-exit): Use `quit-windows-on'
9803 instead of the broken adhockery which does not prevent calendar
9804 buffers from being displayed at random after exit.
9805 (calendar-window-list, calendar-hide-window): Remove the broken
9806 adhockery.
9807
9808 2012-03-28 Glenn Morris <rgm@gnu.org>
9809
9810 * replace.el (query-replace-map): Doc fix.
9811
9812 2012-03-28 Andreas Schwab <schwab@linux-m68k.org>
9813
9814 * vc/vc-git.el (vc-git-state): Don't try to match all of the diff
9815 contents. (Bug#11109)
9816
9817 2012-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
9818
9819 * emacs-lisp/avl-tree.el (avl-tree--enter-balance): Fix paren typo
9820 (bug#11077).
9821 (avl-tree--check, avl-tree--check-node): New funs.
9822
9823 2012-03-27 Martin Rudalics <rudalics@gmx.at>
9824
9825 * window.el (switch-to-visible-buffer): New option.
9826 (switch-to-prev-buffer, switch-to-next-buffer):
9827 Observe switch-to-visible-buffer. Make sure that checking for a window
9828 showing a buffer already is done on the same frame.
9829
9830 2012-03-27 Glenn Morris <rgm@gnu.org>
9831
9832 * startup.el (mail-host-address): Doc fix.
9833
9834 2012-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
9835
9836 * emacs-lisp/bytecomp.el (byte-compile-constants-vector): Allow more
9837 than 197 variables.
9838
9839 2012-03-26 Ami Fischman <ami@fischman.org>
9840
9841 * vc/vc-git.el (vc-git-state): Avoid unnecessarily locking.
9842
9843 2012-03-26 Glenn Morris <rgm@gnu.org>
9844
9845 * files.el (save-buffers-kill-emacs): Doc fix.
9846
9847 * startup.el (normal-top-level, command-line, command-line-1):
9848 Give them doc strings.
9849
9850 2012-03-25 Eli Zaretskii <eliz@gnu.org>
9851
9852 * makefile.w32-in (install): Use $(DIRNAME)_same-dir.tst instead
9853 of same-dir.tst, to avoid stepping on other (parallel) Make job's toes.
9854
9855 2012-03-25 Chong Yidong <cyd@gnu.org>
9856
9857 * custom.el (load-theme): Even if NO-ENABLE arg is t, reenable the
9858 theme if it was previously enabled before (Bug#11031).
9859
9860 * cus-theme.el (custom-theme-write-faces): Retrieve current face
9861 spec with custom-face-get-current-spec if its :shown-value is not
9862 determined yet (Bug#9337).
9863 (customize-create-theme, custom-theme-revert): Doc fixes.
9864
9865 * button.el (button-at): Minor addition to docstring.
9866
9867 2012-03-24 Simon Leinen <simon.leinen@gmail.com>
9868
9869 * vc/vc.el (vc-merge): Fix a prompt.
9870
9871 2012-03-24 Chong Yidong <cyd@gnu.org>
9872
9873 * mwheel.el (mwheel-scroll): Call deactivate-mark at the right
9874 point (Bug#9623).
9875
9876 * button.el (button-at): Minor addition to docstring.
9877
9878 2012-03-23 Stefan Monnier <monnier@iro.umontreal.ca>
9879
9880 * newcomment.el (comment-choose-indent): No space after BOL.
9881
9882 2012-03-22 Sam Steingold <sds@gnu.org>
9883
9884 * window.el (switch-to-prev-buffer): Revert last patch because the
9885 bug turned out to be an advertised feature (Elisp manual 28.14).
9886
9887 2012-03-22 Glenn Morris <rgm@gnu.org>
9888
9889 * vc/vc-bzr.el (vc-bzr-status-switches): New option. (Bug#6724)
9890 (vc-bzr-command): If running "status", pass vc-bzr-status-switches.
9891
9892 2012-03-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
9893
9894 * net/network-stream.el (network-stream-open-starttls): Make error
9895 message under Windows be less misleading.
9896
9897 2012-03-22 Liang Wang <netcasper@gmail.com> (tiny change)
9898
9899 * progmodes/etags.el (etags-list-tags): Only use tags which goto-func
9900 understands (bug#9942).
9901
9902 2012-03-22 Chong Yidong <cyd@gnu.org>
9903
9904 * simple.el (end-of-visible-line): Handle return value of
9905 next-single-property-change properly (Bug#9371).
9906
9907 2012-03-22 Kenichi Handa <handa@m17n.org>
9908
9909 * international/quail.el (quail-insert-kbd-layout): Fix previous
9910 change. To avoid unwanted bidi reordering, use
9911 bidi-string-mark-left-to-right instead of inserting LRO and PDF.
9912
9913 2012-03-21 Dmitry Gutov <dgutov@yandex.ru>
9914
9915 * progmodes/ruby-mode.el: Don't confuse "end:" for "end" (bug#10786).
9916 (ruby-block-end-re, ruby-delimiter, ruby-parse-partial)
9917 (ruby-beginning-of-indent): Be more careful with the difference
9918 between word-boundary and symbol boundary.
9919 (ruby-mode-syntax-table): Make : a symbol constituent.
9920
9921 2012-03-21 Andreas Politz <politza@fh-trier.de>
9922
9923 * outline.el (outline-flag-region): Evaporate overlays (bug#10789).
9924
9925 2012-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
9926
9927 * progmodes/etags.el (tags-completion-at-point-function):
9928 Improve last fix.
9929
9930 * files.el (move-file-to-trash): Files aren't regexps (bug#11055).
9931
9932 2012-03-21 Sam Steingold <sds@gnu.org>
9933
9934 * progmodes/etags.el (tags-completion-at-point-function):
9935 Avoid the error when point is inside the pattern.
9936
9937 2012-03-21 John Yates <john@yates-sheets.org> (tiny change)
9938
9939 * progmodes/hideshow.el (hs-inside-comment-p): Fix hiding of first
9940 line (Bug#10855).
9941
9942 2012-03-21 Drew Adams <drew.adams@oracle.com>
9943
9944 * info.el (Info-menu): Handle string value of FORK arg (Bug#10858).
9945
9946 2012-03-21 Anmol Khirbat <anmol@khirbat.net> (tiny change)
9947
9948 * ido.el (ido-set-current-directory, ido-read-internal)
9949 (ido-choose-completion-string, ido-completion-help): Handle nil
9950 value of ido-completion-buffer (Bug#11008).
9951
9952 2012-03-21 Sam Steingold <sds@gnu.org>
9953
9954 * window.el (switch-to-prev-buffer): Do not switch to a visible
9955 window previous buffer, just like with the frame previous buffers.
9956
9957 2012-03-21 Chong Yidong <cyd@gnu.org>
9958
9959 * faces.el (make-face, make-empty-face, copy-face):
9960 * face-remap.el (face-remap-add-relative, face-remap-set-base):
9961 Doc fixes.
9962
9963 2012-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
9964
9965 * wid-edit.el (widget-complete-field): Remove (bug#11051).
9966 (widget-complete): Remove broken use of it.
9967
9968 2012-03-20 Chong Yidong <cyd@gnu.org>
9969
9970 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
9971 Use string-width and truncate-string-width to handle arbitrary
9972 characters.
9973
9974 2012-03-20 Tassilo Horn <tassilo@member.fsf.org>
9975
9976 * textmodes/artist.el (artist-menu-map): Bind Rectangle menu item
9977 to draw rectangles, not squares. (Regression introduced by revno
9978 2011-03-02T03:48:01Z!cyd@stupidchicken.com)
9979
9980 2012-03-18 Chong Yidong <cyd@gnu.org>
9981
9982 * faces.el (face-spec-reset-face): Don't call display-graphic-p if
9983 it is not yet defined (for temacs).
9984
9985 2012-03-18 Leo Liu <sdl.web@gmail.com>
9986
9987 * net/rcirc.el (rcirc-cmd-quit): Allow quitting all servers with
9988 prefix.
9989
9990 2012-03-17 Eli Zaretskii <eliz@gnu.org>
9991
9992 * textmodes/ispell.el (ispell-skip-tib, ispell-keep-choices-win)
9993 (ispell-choices-win-default-height, ispell-silently-savep)
9994 (ispell-dictionary-alist, ispell-encoding8-command)
9995 (ispell-check-version, ispell-aspell-find-dictionary)
9996 (ispell-valid-dictionary-list, ispell-words-keyword)
9997 (ispell-get-word, ispell-internal-change-dictionary)
9998 (ispell-region, ispell-skip-region-list)
9999 (ispell-begin-skip-region-regexp, ispell-ignore-fcc)
10000 (ispell-process-line, ispell-minor-mode, ispell-minor-check)
10001 (ispell-message-text-end, ispell-message)
10002 (ispell-buffer-local-parsing): Doc fix.
10003
10004 2012-03-13 Jambunathan K <kjambunathan@gmail.com>
10005
10006 * htmlfontify.el: Add support for code block fontification for ODT
10007 export (Bug #9914).
10008 (hfy-optimisations): Define new option
10009 `body-text-only'
10010 (hfy-fontify-buffer): Honor above setting.
10011 (hfy-begin-span, hfy-end-span): New routines factored out form
10012 `hfy-fontify-buffer'.
10013 (hfy-begin-span-handler, hfy-end-span-handler): New variables
10014 that permit insertion of custom tags.
10015 (hfy-fontify-buffer): Use above handlers.
10016 (hfy-face-to-css-default): Same as the earlier `hfy-face-to-css'.
10017 (hfy-face-to-css): Re-defined to be a variable.
10018 (hfy-compile-stylesheet): Modify. Allow stylesheet to be built
10019 over multiple runs. This is made possible by having the caller let
10020 bind a special variable `hfy-user-sheet-assoc'.
10021 (htmlfontify-string): New defun.
10022 (hfy-compile-face-map): Make sure that the last char in the
10023 buffer is correctly fontified.
10024 (hfy-face-resolve-face): Whitespace only change.
10025
10026 2012-03-17 Eli Zaretskii <eliz@gnu.org>
10027
10028 * textmodes/ispell.el (ispell-get-decoded-string): Make the error
10029 message more clear.
10030
10031 2012-03-16 Leo Liu <sdl.web@gmail.com>
10032
10033 * emacs-lisp/copyright.el (copyright-year-ranges): Fix typo.
10034
10035 2012-03-16 Alan Mackenzie <acm@muc.de>
10036
10037 Further optimise the handling of large macros.
10038
10039 * progmodes/cc-engine.el (c-crosses-statement-barrier-p): Use a
10040 limit to a call of `c-literal-limits'.
10041 (c-determine-+ve-limit): New function.
10042 (c-at-macro-vsemi-p): Move `c-in-literal' to the bottom of an `and'.
10043 (c-guess-basic-syntax): In macros, restrict a search limit to 2000.
10044 In CASE 5B, restrict a search limit to 500.
10045 (c-just-after-func-arglist-p): Obviouly wrong `or' -> `and'.
10046
10047 * progmodes/cc-mode.el (c-neutralize-syntax-in-and-mark-CPP):
10048 Restrict macro bounds to +-500 from after-change's BEG END.
10049
10050 2012-03-16 Leo Liu <sdl.web@gmail.com>
10051
10052 * font-lock.el (lisp-font-lock-keywords-2): Add letrec.
10053
10054 2012-03-16 Aaron S. Hawley <Aaron.S.Hawley@gmail.com>
10055
10056 * tar-mode.el (tar-mode): Fix saving by conditionally undoing
10057 `special-mode' setting of `buffer-read-only'. (Bug#11010)
10058
10059 2012-03-16 Glenn Morris <rgm@gnu.org>
10060
10061 * view.el (view-buffer, view-buffer-other-window)
10062 (view-buffer-other-frame): Doc fixes re special mode-class.
10063
10064 * subr.el (eval-after-load): If named feature is provided not from
10065 a file, run after-load forms. (Bug#10946)
10066
10067 * calendar/calendar.el (calendar-insert-at-column):
10068 Handle non-unit-width characters a bit better. (Bug#10978)
10069
10070 2012-03-15 Chong Yidong <cyd@gnu.org>
10071
10072 * emacs-lisp/ring.el (ring-extend): New function.
10073 (ring-insert+extend): Extend the ring correctly (Bug#11019).
10074
10075 * comint.el (comint-read-input-ring)
10076 (comint-add-to-input-history): Grow comint-input-ring lazily.
10077
10078 2012-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
10079
10080 * progmodes/perl-mode.el (perl-syntax-propertize-special-constructs):
10081 Fix up parsing of multiline twoarg non-paired elements (bug#11014).
10082
10083 * imenu.el: Fix multiple inheritance breakage (bug#9199).
10084 (imenu-add-to-menubar): Don't add a redundant index.
10085 (imenu-update-menubar): Handle a dynamically composed keymap.
10086
10087 2012-03-13 Katsumi Yamaoka <yamaoka@jpl.org>
10088
10089 * mail/sendmail.el (mail-encode-header):
10090 Bind rfc2047-encode-encoded-words to nil.
10091
10092 2012-03-13 Glenn Morris <rgm@gnu.org>
10093
10094 * calendar/calendar.el (calendar-string-spread):
10095 Handle non-unit-width characters a bit better. (Bug#10978)
10096
10097 2012-03-13 Leo Liu <sdl.web@gmail.com>
10098
10099 * vc/vc-hg.el (vc-hg-working-revision): Rework to work with both
10100 directory and file as argument (Bug#10822).
10101
10102 2012-03-13 Kaushik Srenevasan <ksrenevasan@gmail.com> (tiny change)
10103
10104 * progmodes/gdb-mi.el (gdb-invalidate-disassembly):
10105 For dynamically generated code, follow $PC.
10106 (gdb-disassembly-handler-custom): Handle no function name case.
10107
10108 2012-03-13 Tim Landscheidt <tim@tim-landscheidt.de> (tiny change)
10109
10110 * calendar/icalendar.el (icalendar-export-file, icalendar-import-file):
10111 * emulation/ws-mode.el (ws-query-replace):
10112 * sort.el (sort-regexp-fields):
10113 Fix missing trailing whitespace in interactive prompts. (Bug#11002)
10114
10115 2012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
10116
10117 * dabbrev.el: Fix cycle completion order (bug#10963).
10118 (dabbrev--last-obarray, dabbrev--last-completion-buffer): Remove.
10119 (dabbrev-completion): Don't use an obarray; provide
10120 a cycle-sort-function.
10121
10122 2012-03-12 Leo Liu <sdl.web@gmail.com>
10123
10124 * simple.el (kill-new): Use equal-including-properties for comparison.
10125 (kill-do-not-save-duplicates): Doc fix.
10126
10127 2012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
10128
10129 * dabbrev.el: Fix cycle completion (bug#10963).
10130 Use lexical binding and wrap to 80 columns.
10131 (dabbrev-completion): Delay computing the list of completions.
10132
10133 2012-03-12 Kenichi Handa <handa@m17n.org>
10134
10135 * international/quail.el (quail-insert-kbd-layout): Surround each
10136 row by LRO and PDF instead of inserting many LRMs. Pad the left
10137 and right of each non-spacing marks. Insert invisible space
10138 between lower and upper characters to prevent composition.
10139
10140 2012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
10141
10142 * minibuffer.el (minibuffer-complete): Don't get confused when the
10143 function is run twice via different commands (bug#10958).
10144 (complete-with-action): Fix docstring.
10145
10146 2012-03-12 Chong Yidong <cyd@gnu.org>
10147
10148 * nxml/nxml-mode.el (nxml-mode-map): Do not bind C-RET (Bug#6776).
10149 (nxml-completion-at-point-function): New function.
10150 (nxml-mode): Use it.
10151 (nxml-bind-meta-tab-to-complete-flag): Default to t.
10152
10153 * emacs-lisp/package.el (package-unpack, package-unpack-single):
10154 Load generated autoloads file before byte compiling (Bug#10970).
10155 (package--make-autoloads-and-compile): New helper fun.
10156
10157 2012-03-12 Christopher Schmidt <christopher@ch.ristopher.com>
10158
10159 * ibuffer.el (ibuffer-redisplay): Remove another gratuitous error.
10160
10161 2012-03-11 Michael Albinus <michael.albinus@gmx.de>
10162
10163 * autorevert.el (auto-revert-handler): Ensure, that
10164 file-readable-p is applied only for local files or in
10165 auto-revert-tail-mode.
10166
10167 2012-03-11 Andreas Schwab <schwab@linux-m68k.org>
10168
10169 * server.el (server-eval-at): Handle non-tcp connections.
10170 Decode result string.
10171
10172 * server.el (server-msg-size): New constant.
10173 (server-reply-print): New function.
10174 (server-eval-and-print): Use it.
10175 (server-eval-at): Use server-quote-arg and server-unquote-arg.
10176 Handle -print-nonl.
10177
10178 2012-03-11 Christopher Schmidt <christopher@ch.ristopher.com>
10179
10180 * ibuffer.el (ibuffer-redisplay): Remove gratuitous error
10181 (Bug#10987).
10182
10183 2012-03-11 Chong Yidong <cyd@gnu.org>
10184
10185 * simple.el (goto-line): Doc fix (Bug#9938).
10186
10187 * subr.el (save-window-excursion): Doc fix (Bug#9979).
10188
10189 * dabbrev.el (dabbrev--find-expansion): Update progress reporter
10190 when finished (Bug#10963).
10191
10192 2012-03-11 Martin Rudalics <rudalics@gmx.at>
10193
10194 * window.el (split-window-below): Fix bug in case where
10195 split-window-keep-point is nil (Bug#10971).
10196
10197 2012-03-11 Juri Linkov <juri@jurta.org>
10198
10199 * replace.el (replace-highlight): Set isearch-word to nil
10200 unconditionally. (Bug#10887)
10201
10202 2012-03-10 Eli Zaretskii <eliz@gnu.org>
10203
10204 * net/mairix.el (mairix-replace-invalid-chars): Rename from
10205 mairix-replace-illegal-chars; all callers changed. Don't remove
10206 ^, ~, and = characters: they are meaningful in mairix search specs.
10207 (mairix-widget-create-query): Add usage information about mairix
10208 search forms: negating words, searching for substrings, etc.
10209
10210 2012-03-10 Jae-hyeon Park <jae-hyeon.park@desy.de> (tiny change)
10211
10212 * international/fontset.el (font-encoding-alist): Add an entry for
10213 ksx1001 (Bug#5667).
10214
10215 2012-03-10 Richard Stallman <rms@gnu.org>
10216
10217 * mail/sendmail.el (mail-encode-header):
10218 Set rfc2047-encode-encoded-words.
10219
10220 * mail/mail-utils.el (mail-quote-printable): Quote multibyte chars.
10221
10222 * mail/rmail.el (rmail-buffers-swapped-p): Don't assume dead
10223 view buffer means not swapped.
10224 (rmail-view-buffer-kill-buffer-hook): Give buf name in error msg.
10225 (rmail-write-region-annotate): Error if real text has disappeared.
10226
10227 * epa-mail.el (epa-mail-encrypt): Bind inhibit-read-only.
10228
10229 2012-03-10 Chong Yidong <cyd@gnu.org>
10230
10231 * emulation/cua-rect.el (cua--init-rectangles):
10232 * emulation/cua-base.el (cua--init-keymaps):
10233 Add delete-forward-char to remappings (Bug#9666).
10234
10235 2012-03-10 Martin Rudalics <rudalics@gmx.at>
10236
10237 * speedbar.el (speedbar-unhighlight-one-tag-line):
10238 Avoid unhighlighting due to frame switching (Bug#10275).
10239
10240 2012-03-10 Chong Yidong <cyd@gnu.org>
10241
10242 * minibuffer.el (completion-in-region, completion-help-at-point):
10243 Give the completion field overlay a high priority (Bug#6830).
10244
10245 * dired.el (dired-goto-file): Recognize absolute file name
10246 listings (Bug#7126).
10247 (dired-goto-file-1): New helper function.
10248 (dired-toggle-read-only): Inhibit warnings.
10249
10250 2012-03-09 Michael Albinus <michael.albinus@gmx.de>
10251
10252 * net/dbus.el (dbus-property-handler): Return empty array if
10253 there are no properties.
10254
10255 2012-03-09 Leo Liu <sdl.web@gmail.com>
10256
10257 * savehist.el (savehist-printable): Stricter check for string
10258 value (Bug#10937).
10259
10260 2012-03-09 Eli Zaretskii <eliz@gnu.org>
10261
10262 * mail/smtpmail.el (smtpmail-send-it):
10263 Bind coding-system-for-write to *-unix, so that FCC files are kept in
10264 valid mbox format.
10265
10266 2012-03-09 Glenn Morris <rgm@gnu.org>
10267
10268 * files.el (dir-locals-find-file):
10269 Don't check result is regular, readable.
10270 (dir-locals-read-from-file): Demote errors.
10271
10272 2012-03-08 Eli Zaretskii <eliz@gnu.org>
10273
10274 * international/quail.el (quail-insert-kbd-layout):
10275 Insert invisible LRM characters before each character in a keyboard
10276 layout cell, to prevent their reordering by bidi display engine.
10277 For details, see the discussion in
10278 http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00085.html.
10279
10280 2012-03-08 Alan Mackenzie <acm@muc.de>
10281
10282 * progmodes/cc-cmds.el (c-mark-function): Make it leave a mark at
10283 the starting position; make it extend the marked region when
10284 invoked repeatedly - all under appropriate circumstances.
10285 Fixes bugs #5525, #10906.
10286
10287 2012-03-08 Glenn Morris <rgm@gnu.org>
10288
10289 * files.el (locate-dominating-file, dir-locals-find-file):
10290 Undo 2012-03-06 change.
10291
10292 2012-03-07 Eli Zaretskii <eliz@gnu.org>
10293
10294 * international/quail.el (quail-help):
10295 Force bidi-paragraph-direction be left-to-right. See discussion in
10296 http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00062.html
10297 for the reason.
10298
10299 2012-03-07 Michael Albinus <michael.albinus@gmx.de>
10300
10301 Avoid superfluous registering of signals. (Bug#10807)
10302
10303 * notifications.el (notifications-on-action-object)
10304 (notifications-on-close-object): New defvars.
10305 (notifications-on-action-signal, notifications-on-closed-signal):
10306 Unregister the signal if not needed any longer.
10307 (notifications-notify): Register `notifications-action-signal' or
10308 `notifications-closed-signal', if :on-action or :on-close has been
10309 passed as argument.
10310
10311 2012-03-07 Chong Yidong <cyd@gnu.org>
10312
10313 * cus-start.el: Avoid x-select-enable-clipboard-manager warning on
10314 non-X platforms.
10315
10316 2012-03-06 Glenn Morris <rgm@gnu.org>
10317
10318 * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
10319 (x-disown-selection-internal, x-get-selection-internal):
10320 Doc fix (add arglist signatures). (Bug#10783)
10321
10322 2012-03-06 Kaushik Srenevasan <ksrenevasan@gmail.com> (tiny change)
10323
10324 * progmodes/gdb-mi.el (gdb-breakpoints-list-handler-custom):
10325 Handle breakpoints with no "type".
10326
10327 2012-03-06 Glenn Morris <rgm@gnu.org>
10328
10329 * files.el (locate-dominating-file): Add optional predicate argument.
10330 (dir-locals-find-file): Make use of above change.
10331
10332 2012-03-06 Thien-Thi Nguyen <ttn@gnuvola.org>
10333
10334 * info.el (Info-insert-dir): Also try "dir.gz".
10335
10336 2012-03-06 Glenn Morris <rgm@gnu.org>
10337
10338 * files.el (dir-locals-find-file):
10339 Ignore non-readable or non-regular files. (Bug#10928)
10340
10341 * files.el (locate-dominating-file): Doc fix.
10342
10343 2012-03-06 Adam Spiers <emacs@adamspiers.org> (tiny change)
10344
10345 * calendar/calendar.el (calendar-set-mode-line):
10346 `getenv' returns a string. (Bug#10951)
10347
10348 2012-03-05 Leo Liu <sdl.web@gmail.com>
10349
10350 * simple.el (backward-delete-char-untabify): Constrain point to
10351 field (Bug#10939).
10352
10353 * eshell/em-cmpl.el (eshell-cmpl-initialize): Fix shift-tab key.
10354
10355 2012-03-05 Chong Yidong <cyd@gnu.org>
10356
10357 * simple.el (count-words): If called from Lisp, return the word
10358 count, for symmetry with `count-lines'. Arglist changed.
10359 (count-words--message): Args changed. Consolidate counting code
10360 from count-words and count-words-region.
10361 (count-words-region): Caller changed.
10362 (count-lines-region): Make it an obsolete alias.
10363
10364 2012-03-04 Tassilo Horn <tassilo@member.fsf.org>
10365
10366 * saveplace.el (save-place-to-alist)
10367 (save-place-ignore-files-regexp): Allow value nil to disable this
10368 feature.
10369
10370 2012-03-04 Chong Yidong <cyd@gnu.org>
10371
10372 * faces.el (face-spec-reset-face): For the default face, reset the
10373 attributes to default values (Bug#10748).
10374
10375 2012-03-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
10376
10377 * mail/emacsbug.el (report-emacs-bug-hook): Fix up thinko in
10378 previous patch: Check `message-send-mail-function', and not the
10379 default function (bug#10897).
10380
10381 2012-03-04 Michael Albinus <michael.albinus@gmx.de>
10382
10383 * notifications.el (notifications-on-action-signal)
10384 (notifications-on-closed-signal): Check for unique service name of
10385 incoming event. Fix error in removing entry.
10386 (top): Register for signals with wildcard service name.
10387 (notifications-notify): Use daemon unique service name for map entries.
10388
10389 2012-03-04 Chong Yidong <cyd@gnu.org>
10390
10391 * cus-start.el: Make x-select-enable-clipboard-manager customizable.
10392
10393 2012-03-04 Glenn Morris <rgm@gnu.org>
10394
10395 * abbrev.el (copy-abbrev-table, abbrev-table-p)
10396 (abbrev-minor-mode-table-alist, define-abbrev, abbrev-insert)
10397 (expand-abbrev, define-abbrev-table): Doc fixes.
10398
10399 2012-03-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
10400
10401 * mail/emacsbug.el (report-emacs-bug-hook): Look at the value of
10402 `message-default-send-mail-function' and not `send-mail-function'
10403 when doing the prompting for `sendmail-query-once' before sending
10404 in Message buffers (bug#10897).
10405
10406 * net/tls.el (open-tls-stream): Don't set the dont-query-on-exit flag.
10407 This is inconsistent with all the other stream functions, which leave
10408 the setting up to the higher levels (if so wanted) (bug#10931).
10409
10410 2012-03-02 Alan Mackenzie <acm@muc.de>
10411
10412 Depessimize the handling of very large macros.
10413
10414 * progmodes/cc-engine.el (c-macro-cache, c-macro-cache-start-pos):
10415 (c-macro-cache-syntactic): New variables to implement a one
10416 element macro cache.
10417 (c-invalidate-macro-cache): New function.
10418 (c-beginning-of-macro, c-end-of-macro, c-syntactic-end-of-macro):
10419 Adapt to use the new cache.
10420 (c-state-safe-place): Use better the cache of safe positions.
10421 (c-state-semi-nonlit-pos-cache)
10422 (c-state-semi-nonlit-pos-cache-limit):
10423 New variables for...
10424 (c-state-semi-safe-place): New function. Here, in a macro is "safe".
10425 (c-invalidate-state-cache-1): New stuff for c-state-semi-safe-place.
10426 (c-in-literal, c-literal-limits, c-determine-limit-get-base):
10427 Use c-state-semi-safe-place.
10428
10429 * progmodes/cc-langs.el (c-get-state-before-change-functions):
10430 Add c-invalidate-macro-cache to the C, C++, Obj entries.
10431
10432 2012-03-02 Michael Albinus <michael.albinus@gmx.de>
10433
10434 * jka-compr.el (jka-compr-call-process):
10435 Apply `file-accessible-directory-p' only when the default directory is
10436 not remote.
10437
10438 2012-03-01 Michael Albinus <michael.albinus@gmx.de>
10439
10440 * files.el (file-equal-p): Fix docstring. Avoid unnecessary
10441 access of FILE2, if FILE1 does not exist.
10442
10443 * net/tramp-sh.el (tramp-remote-process-environment): Add "PAGER=\"\"".
10444 Reported by Robert Lupton the Good <rhl@astro.princeton.edu>.
10445
10446 * vc/vc-git.el (vc-git--call): Enable `inhibit-null-byte-detection'.
10447 Add "PAGER=" to `process-environment'.
10448
10449 2012-03-01 Michael R. Mauger <mmaug@yahoo.com>
10450
10451 * progmodes/sql.el: Bug fix
10452 (sql-get-login-ext): Save login values in globals.
10453 (sql-get-login): Use new version of `sql-get-login-ext'.
10454 (sql-interactive-mode): Set global `sql-connection' to nil.
10455 (sql-connect): Set global values for connection.
10456 (sql-product-interactive): Save global values as buffer local.
10457
10458 2012-02-29 Leo Liu <sdl.web@gmail.com>
10459
10460 * abbrev.el (define-abbrevs): Reset sys to nil.
10461
10462 2012-02-28 Thierry Volpiatto <thierry.volpiatto@gmail.com>
10463
10464 * files.el (file-equal-p): Rename from `files-equal-p'.
10465 Return nil when one or both files don't exist.
10466 (file-subdir-of-p): Now only top directory must exists,
10467 return nil if it doesn't.
10468 (copy-directory): No need to test with `file-subdir-of-p' after
10469 creating dir.
10470 * net/tramp.el (tramp-file-name-for-operation): Rename `files-equal-p'
10471 to `file-equal-p'.
10472
10473 2012-02-28 Glenn Morris <rgm@gnu.org>
10474
10475 * shell.el (shell-mode):
10476 * progmodes/vhdl-mode.el (wildcard-to-regexp, file-expand-wildcards):
10477 * play/landmark.el (landmark-font-lock-face-O):
10478 * play/handwrite.el (handwrite):
10479 * play/gomoku.el (gomoku-O):
10480 * net/browse-url.el (browse-url-browser-display):
10481 * international/mule.el (define-charset):
10482 * htmlfontify.el (hfy-etags-cmd, hfy-face-attr-for-class):
10483 * filesets.el (filesets-find-file-delay):
10484 * eshell/em-xtra.el (eshell-xtra):
10485 * eshell/em-unix.el (eshell-grep):
10486 * emulation/viper.el (viper-mode):
10487 * emacs-lisp/regexp-opt.el (regexp-opt-group):
10488 * emacs-lisp/easymenu.el (easy-menu-define):
10489 * calendar/timeclock.el (timeclock-use-display-time):
10490 * bs.el (bs-mode):
10491 * bookmark.el (bookmark-save-flag):
10492 Doc fix (standardize possessive apostrophe usage).
10493
10494 2012-02-27 Chong Yidong <cyd@gnu.org>
10495
10496 * emulation/viper-cmd.el (viper-intercept-ESC-key):
10497 Fix key-binding lookup for ESC key (Bug#9146).
10498
10499 * font-lock.el (font-lock-specified-p): Rename from
10500 font-lock-spec-present. Callers changed.
10501
10502 2012-02-27 Daniel Hackney <dan@haxney.org>
10503
10504 * emacs-lisp/package.el (package-compute-transaction):
10505 Handle holding a package version to t in package-load-list.
10506
10507 2012-02-26 Michael Albinus <michael.albinus@gmx.de>
10508
10509 * net/tramp.el (tramp-inodes, tramp-devices): Initialize with 0.
10510 (tramp-get-inode, tramp-get-device): Use cached values.
10511
10512 2012-02-26 Alan Mackenzie <acm@muc.de>
10513
10514 Check there is a font-lock specification before doing initial
10515 fontification.
10516
10517 * font-core.el (font-lock-mode): Move the conditional from
10518 :after-hook to font-lock-initial-fontify.
10519 (font-lock-default-function): Move the check for a specification
10520 to font-lock-spec-present.
10521
10522 * font-lock.el (font-lock-initial-fontify): Call ...
10523 (font-lock-spec-present): New function.
10524
10525 2012-02-26 Jim Blandy <jimb@red-bean.com>
10526
10527 * progmodes/gdb-mi.el (gdb-mi-quote): New function.
10528 (gdb-send): Apply it to the operand of the '-interpreter-exec
10529 console' command, so that we can pass arguments with (say) quotes
10530 in them. Store exact string sent in gdb-debug-log (Bug#10765).
10531
10532 2012-02-26 Chong Yidong <cyd@gnu.org>
10533
10534 * help-fns.el (describe-function-1): Clarify description of
10535 remapping (Bug#10844).
10536
10537 * files.el (files-equal-p): Doc fix.
10538 (file-subdir-of-p): Doc fix. Convert loop macro to plain Lisp,
10539 and quit the loop once a mismatch is found.
10540
10541 2012-02-25 Juanma Barranquero <lekktu@gmail.com>
10542
10543 * bs.el (bs--show-with-configuration): Don't throw an error
10544 if the window cannot be split; otherwise, subsequent calls to
10545 bs-show fail, restoring a stale window config. (Bug#10882)
10546
10547 2012-02-25 Jan Djärv <jan.h.d@swipnet.se>
10548
10549 * term/ns-win.el (global-map): Bind ns-drag-file to
10550 ns-find-file (Bug#5855, Bug#10050).
10551
10552 2012-02-25 Andreas Schwab <schwab@linux-m68k.org>
10553
10554 * calendar/parse-time.el (parse-time-string): Allow extractor to
10555 return nil.
10556
10557 2012-02-25 Michael Albinus <michael.albinus@gmx.de>
10558
10559 * net/tramp.el (tramp-file-name-for-operation):
10560 Add `files-equal-p' and `file-subdir-of-p'.
10561
10562 * net/tramp-sh.el (tramp-sh-handle-copy-directory):
10563 * net/tramp-smb.el (tramp-smb-handle-copy-directory):
10564 Add COPY-CONTENTS argument.
10565
10566 2012-02-25 Chong Yidong <cyd@gnu.org>
10567
10568 Add custom groups for VC backends, for consistency with vc-bzr.
10569
10570 * vc/vc-arch.el (vc-arch):
10571 * vc/vc-cvs.el (vc-cvs):
10572 * vc/vc-git.el (vc-git):
10573 * vc/vc-hg.el (vc-hg):
10574 * vc/vc-mtn.el (vc-mtn):
10575 * vc/vc-rcs.el (vc-rcs):
10576 * vc/vc-sccs.el (vc-sccs):
10577 * vc/vc-svn.el (vc-svn): New customization group (Bug#10871).
10578 All relevant defcustoms reassigned.
10579
10580 2012-02-25 Chong Yidong <cyd@gnu.org>
10581
10582 * newcomment.el (comment-styles): Add autoload (Bug#10868).
10583
10584 * term/x-win.el (x-initialize-window-system): Reduce default for
10585 x-selection-timeout to 5 seconds (Bug#8869).
10586
10587 2012-02-24 Thierry Volpiatto <thierry.volpiatto@gmail.com>
10588
10589 * files.el (files-equal-p, file-subdir-of-p): New functions.
10590 (copy-directory): Error when trying to copy a directory on itself.
10591 Add missing copy-contents arg to tramp handler.
10592 * dired-aux.el (dired-copy-file-recursive): Same.
10593 (dired-create-files): Modify destination when source is equal to
10594 dest when copying files.
10595 Return also when dest is a subdir of source. (Bug#10489)
10596
10597 2012-02-24 Michael Albinus <michael.albinus@gmx.de>
10598
10599 * net/ange-ftp.el (ange-ftp-parse-netrc): Suppress comment lines.
10600 (Bug#10874)
10601
10602 2012-02-23 Alan Mackenzie <acm@muc.de>
10603
10604 * emacs-lisp/easy-mmode.el (define-minor-mode): Add extra
10605 parameter "after-hook:" to allow the expansion to run code after
10606 the execution of the mode hooks.
10607
10608 * font-lock.el (font-lock-initial-fontify): New function extracted
10609 from font-lock-mode-internal.
10610
10611 * font-core.el (font-lock-mode): Call font-lock-initial-fontify in
10612 :after-hook.
10613
10614 2012-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
10615
10616 * minibuffer.el: Make sure cycling is reset upon edit with icomplete.el.
10617 (completion--cache-all-sorted-completions): New function.
10618 (completion-all-sorted-completions): Use it.
10619 (completion--do-completion, minibuffer-force-complete):
10620 Use it to re-instate the flush hook.
10621
10622 * icomplete.el (icomplete-completions): Replace last fix with a better
10623 one (bug#10850).
10624
10625 2012-02-23 Dmitry Gutov <dgutov@yandex.ru>
10626
10627 * emacs-lisp/lisp.el (beginning-of-defun-raw): Don't call end-of-defun
10628 when it might call us back infinitely (bug#10797).
10629
10630 2012-02-23 Glenn Morris <rgm@gnu.org>
10631
10632 * minibuffer.el (completion-category-overrides): Doc fix.
10633
10634 2012-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
10635
10636 * minibuffer.el (completion-table-with-context): Fix inf-loop.
10637 Reported by Aaron S. Hawley <aaron.s.hawley@gmail.com>.
10638
10639 2012-02-23 Glenn Morris <rgm@gnu.org>
10640
10641 * emacs-lisp/authors.el (authors-aliases, authors-fixed-case)
10642 (authors-obsolete-files-regexps, authors-ignored-files)
10643 (authors-ambiguous-files, authors-renamed-files-alist):
10644 Add more entries.
10645
10646 2012-02-23 Juri Linkov <juri@jurta.org>
10647
10648 * isearch.el (isearch-occur): Sync interactive spec with occur's
10649 new feature in `occur-read-primary-args'. Doc fix. (Bug#10705)
10650
10651 * replace.el (occur-menu-map): Add menu item for `occur-edit-mode'.
10652
10653 2012-02-22 Juri Linkov <juri@jurta.org>
10654
10655 * international/mule-cmds.el (read-char-by-name): Use \` and \'.
10656 (ucs-insert): Doc fix. Check for hex digits in the string.
10657 Don't display `nil' in the error message. (Bug#10857)
10658
10659 2012-02-22 Alan Mackenzie <acm@muc.de>
10660
10661 * progmodes/cc-mode.el: Revert change #2012-02-06T22:08:41Z!larsi@gnus.org from 2012-02-06.
10662
10663 2012-02-22 Glenn Morris <rgm@gnu.org>
10664
10665 * ffap.el (ffap-c-path):
10666 * man.el (Man-header-file-path): Handle multiarch. (Bug#10702)
10667
10668 2012-02-22 Chong Yidong <cyd@gnu.org>
10669
10670 * custom.el (load-theme): Doc fix.
10671
10672 2012-02-22 Glenn Morris <rgm@gnu.org>
10673
10674 * dired-x.el (dired-guess-shell-alist-default):
10675 Remove escape sequences from nroff output. (Bug#172)
10676
10677 2012-02-21 Glenn Morris <rgm@gnu.org>
10678
10679 * vc/emerge.el (emerge-defvar-local):
10680 Set `permanent-local' property rather than unused `preserved'.
10681
10682 * textmodes/picture.el (picture-delete-char): New alias.
10683 (picture-mode-map): Use it. (Bug#10860)
10684 (picture-mode): Doc fix.
10685
10686 2012-02-21 Juanma Barranquero <lekktu@gmail.com>
10687
10688 * newcomment.el (uncomment-region-default): Remove unused binding.
10689
10690 2012-02-21 Glenn Morris <rgm@gnu.org>
10691
10692 * textmodes/picture.el (picture-motion, picture-motion-reverse)
10693 (picture-self-insert, picture-tab-chars): Doc fix.
10694 (picture-mode-map): Fix C-a, C-e.
10695
10696 2012-02-20 Glenn Morris <rgm@gnu.org>
10697
10698 * emacs-lisp/authors.el (authors-aliases): Add another entry.
10699
10700 2012-02-20 Leo Liu <sdl.web@gmail.com>
10701
10702 * icomplete.el (icomplete-completions): Check FROM arg before
10703 passing to substring (Bug#10850).
10704
10705 2012-02-19 Chong Yidong <cyd@gnu.org>
10706
10707 * comint.el: Require ansi-color.
10708 (comint-output-filter-functions): Add ansi-color-process-output.
10709
10710 * ansi-color.el: Don't set comint-output-filter-functions; it is
10711 now in the initial value defined in comint.el.
10712 (ansi-color-apply-face-function): New variable.
10713 (ansi-color-apply-on-region): Use it.
10714 (ansi-color-apply-overlay-face): New function.
10715
10716 * shell.el (shell): No need to require ansi-color.
10717 (shell-mode): Use ansi-color-apply-face-function to highlight
10718 color escapes using font-lock-face property (Bug#10835).
10719
10720 2012-02-19 Chong Yidong <cyd@gnu.org>
10721
10722 * vc/ediff-init.el (ediff-strip-mode-line-format): Handle non-list
10723 mode-line formats (Bug#10839).
10724
10725 2012-02-18 Glenn Morris <rgm@gnu.org>
10726
10727 * mail/rmail.el (rmail-dont-reply-to-names): Mark as obsolete.
10728
10729 * mail/undigest.el (unforward-rmail-message): Doc fix.
10730
10731 * saveplace.el (save-place-ignore-files-regexp): Add :version.
10732
10733 2012-02-18 Eli Zaretskii <eliz@gnu.org>
10734
10735 * international/characters.el (script-list): Sync with the latest
10736 Unicode Character Database.
10737
10738 2012-02-18 Andreas Schwab <schwab@linux-m68k.org>
10739
10740 * international/titdic-cnv.el: Remove duplicate coding tag.
10741 * language/cham.el: Likewise.
10742 * language/tai-viet.el: Likewise.
10743
10744 2012-02-18 Glenn Morris <rgm@gnu.org>
10745
10746 * calendar/cal-menu.el (cal-menu-diary-menu, cal-menu-goto-menu):
10747 * calendar/calendar.el (diary-file, diary-bahai-entry-symbol)
10748 (calendar-bahai-all-holidays-flag, calendar-other-dates):
10749 * calendar/diary-lib.el (diary-abbreviated-year-flag):
10750 * calendar/holidays.el (holiday-bahai-holidays)
10751 (calendar-holidays, list-holidays):
10752 Use utf-8 Bahá'í in doc-strings, menus, etc.
10753
10754 2012-02-17 Tassilo Horn <tassilo@member.fsf.org>
10755
10756 * saveplace.el (save-place-ignore-files-regexp): New variable
10757 allowing for excluding files from saving their location of point.
10758 The default value matches the temporary commit message editing
10759 files from Git, SVN, Bazaar, and Mercurial.
10760 (save-place-to-alist): Use it.
10761
10762 2012-02-17 Lawrence Mitchell <wence@gmx.li>
10763 Stefan Monnier <monnier@iro.umontreal.ca>
10764
10765 * newcomment.el (uncomment-region-default): Don't leave extra space
10766 when an arg is provided (bug#8150).
10767
10768 2012-02-17 Teodor Zlatanov <tzz@lifelogs.com>
10769
10770 * net/gnutls.el (gnutls-trustfiles): Fix Cygwin bundle location.
10771
10772 2012-02-17 Glenn Morris <rgm@gnu.org>
10773
10774 * net/socks.el: Require network-stream. (Bug#10599)
10775
10776 2012-02-17 Kenichi Handa <handa@m17n.org>
10777
10778 * international/charprop.el:
10779 * international/uni-name.el:
10780 * international/uni-old-name.el:
10781 * international/uni-comment.el: Regenerate.
10782
10783 2012-02-16 Glenn Morris <rgm@gnu.org>
10784
10785 * calendar/cal-hebrew.el (calendar-hebrew-list-yahrzeits):
10786 Interactively in calendar buffer, give an error if not on a date.
10787
10788 2012-02-15 Glenn Morris <rgm@gnu.org>
10789
10790 * shell.el (shell-delimiter-argument-list):
10791 Revert 2011-02-17 change. (Bug#8027)
10792
10793 2012-02-15 Chong Yidong <cyd@gnu.org>
10794
10795 * minibuffer.el (completion-at-point-functions): Doc fix.
10796
10797 * custom.el (defcustom): Doc fix; note use of defvar.
10798
10799 2012-02-15 Glenn Morris <rgm@gnu.org>
10800
10801 * mail/smtpmail.el (smtpmail-smtp-user, smtpmail-stream-type):
10802 Doc fixes.
10803
10804 2012-02-14 Glenn Morris <rgm@gnu.org>
10805
10806 * mail/smtpmail.el (smtpmail-query-smtp-server): Give it a doc.
10807
10808 2012-02-14 Lars Ingebrigtsen <larsi@gnus.org>
10809
10810 * mail/smtpmail.el (smtpmail-query-smtp-server): Fix typo in the
10811 way the ports list is computed.
10812 (smtpmail-query-smtp-server): Prompt the user for a port number if
10813 we can't connect to any of the standard ports (bug#10810).
10814
10815 2012-02-14 Teodor Zlatanov <tzz@lifelogs.com>
10816
10817 * net/gnutls.el (gnutls-trustfiles): Add Cygwin location.
10818
10819 2012-02-13 Glenn Morris <rgm@gnu.org>
10820
10821 * minibuffer.el (read-file-name): Doc fix. (Bug#10798)
10822
10823 2012-02-13 Teodor Zlatanov <tzz@lifelogs.com>
10824
10825 * net/gnutls.el (gnutls-trustfiles): New variable.
10826 (gnutls-negotiate): Use it.
10827
10828 2012-02-13 Lars Ingebrigtsen <larsi@gnus.org>
10829
10830 * simple.el (mail-user-agent): Mention that `gnus-user-agent' only
10831 does its stuff if Gnus is running.
10832
10833 2012-02-13 Alan Mackenzie <acm@muc.de>
10834
10835 Fix a loop in c-set-fl-decl-start.
10836
10837 * progmodes/cc-engine.el (c-set-fl-decl-start): Add a check that
10838 c-backward-syntactic-ws actually moves backwards.
10839
10840 2012-02-13 Leo Liu <sdl.web@gmail.com>
10841
10842 * net/rcirc.el (rcirc-markup-attributes): Move point to the
10843 beginning so that all \C-o chars are removed.
10844
10845 2012-02-12 Teodor Zlatanov <tzz@lifelogs.com>
10846
10847 * net/gnutls.el (gnutls-algorithm-priority): Add missing :group tag.
10848
10849 2012-02-12 Alan Mackenzie <acm@muc.de>
10850
10851 Fix infinite loop with long macros.
10852 * progmodes/cc-engine.el (c-state-safe-place): Handle macros properly.
10853
10854 2012-02-12 Chong Yidong <cyd@gnu.org>
10855
10856 * window.el (display-buffer): Doc fix (Bug#10785).
10857
10858 2012-02-12 Glenn Morris <rgm@gnu.org>
10859
10860 * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
10861 (x-disown-selection-internal, x-get-selection-internal):
10862 Sync docs with the xselect.c versions.
10863
10864 * allout-widgets.el: Add missing license notice.
10865
10866 2012-02-11 Glenn Morris <rgm@gnu.org>
10867
10868 * select.el (x-get-selection-internal, x-own-selection-internal)
10869 (x-disown-selection-internal):
10870 * x-dnd.el (x-get-selection-internal): Update declarations.
10871
10872 * vc/log-view.el (vc-diff-internal): Remove unneeded declaration.
10873
10874 * window.el (window-sides-slots):
10875 * tool-bar.el (tool-bar-position):
10876 * term/xterm.el (xterm-extra-capabilities):
10877 * ses.el (ses-self-reference-early-detection):
10878 * progmodes/verilog-mode.el (verilog-auto-declare-nettype)
10879 (verilog-auto-wire-type)
10880 (verilog-auto-delete-trailing-whitespace)
10881 (verilog-auto-reset-blocking-in-non, verilog-auto-inst-sort)
10882 (verilog-auto-tieoff-declaration):
10883 * progmodes/sql.el (sql-login-hook, sql-ansi-statement-starters)
10884 (sql-oracle-statement-starters, sql-oracle-scan-on):
10885 * progmodes/prolog.el (prolog-align-comments-flag)
10886 (prolog-indent-mline-comments-flag, prolog-object-end-to-0-flag)
10887 (prolog-left-indent-regexp, prolog-paren-indent-p)
10888 (prolog-paren-indent, prolog-parse-mode, prolog-keywords)
10889 (prolog-types, prolog-mode-specificators)
10890 (prolog-determinism-specificators, prolog-directives)
10891 (prolog-electric-newline-flag, prolog-hungry-delete-key-flag)
10892 (prolog-electric-dot-flag)
10893 (prolog-electric-dot-full-predicate-template)
10894 (prolog-electric-underscore-flag, prolog-electric-tab-flag)
10895 (prolog-electric-if-then-else-flag, prolog-electric-colon-flag)
10896 (prolog-electric-dash-flag, prolog-old-sicstus-keys-flag)
10897 (prolog-program-switches, prolog-prompt-regexp)
10898 (prolog-debug-on-string, prolog-debug-off-string)
10899 (prolog-trace-on-string, prolog-trace-off-string)
10900 (prolog-zip-on-string, prolog-zip-off-string)
10901 (prolog-use-standard-consult-compile-method-flag)
10902 (prolog-use-prolog-tokenizer-flag, prolog-imenu-flag)
10903 (prolog-imenu-max-lines, prolog-info-predicate-index)
10904 (prolog-underscore-wordchar-flag, prolog-use-sicstus-sd)
10905 (prolog-char-quote-workaround):
10906 * progmodes/cc-vars.el (c-defun-tactic):
10907 * net/tramp.el (tramp-encoding-command-interactive)
10908 (tramp-local-end-of-line):
10909 * net/soap-client.el (soap-client):
10910 * net/netrc.el (netrc-file):
10911 * net/gnutls.el (gnutls):
10912 * minibuffer.el (completion-category-overrides)
10913 (completion-cycle-threshold)
10914 (completion-pcm-complete-word-inserts-delimiters):
10915 * man.el (Man-name-local-regexp):
10916 * mail/feedmail.el (feedmail-display-full-frame):
10917 * international/characters.el (glyphless-char-display-control):
10918 * eshell/em-ls.el (eshell-ls-date-format):
10919 * emacs-lisp/cl-indent.el (lisp-lambda-list-keyword-alignment)
10920 (lisp-lambda-list-keyword-parameter-indentation)
10921 (lisp-lambda-list-keyword-parameter-alignment):
10922 * doc-view.el (doc-view-image-width, doc-view-unoconv-program):
10923 * dired-x.el (dired-omit-verbose):
10924 * cus-theme.el (custom-theme-allow-multiple-selections):
10925 * calc/calc.el (calc-highlight-selections-with-faces)
10926 (calc-lu-field-reference, calc-lu-power-reference)
10927 (calc-note-threshold):
10928 * battery.el (battery-mode-line-limit):
10929 * arc-mode.el (archive-7z-extract, archive-7z-expunge)
10930 (archive-7z-update):
10931 * allout.el (allout-prefixed-keybindings)
10932 (allout-unprefixed-keybindings)
10933 (allout-inhibit-auto-fill-on-headline)
10934 (allout-flattened-numbering-abbreviation):
10935 * allout-widgets.el (allout-widgets-auto-activation)
10936 (allout-widgets-icons-dark-subdir)
10937 (allout-widgets-icons-light-subdir, allout-widgets-icon-types)
10938 (allout-widgets-theme-dark-background)
10939 (allout-widgets-theme-light-background)
10940 (allout-widgets-item-image-properties-emacs)
10941 (allout-widgets-item-image-properties-xemacs)
10942 (allout-widgets-run-unit-tests-on-load)
10943 (allout-widgets-time-decoration-activity)
10944 (allout-widgets-hook-error-post-time)
10945 (allout-widgets-track-decoration):
10946 Add missing :version tags to new defcustoms and defgroups.
10947
10948 * progmodes/sql.el (sql-ansi-statement-starters)
10949 (sql-oracle-statement-starters): Add custom type.
10950
10951 * progmodes/prolog.el: Remove leading '*' from defcustom docs.
10952 (prolog-system-version): Give it a type.
10953
10954 2012-02-11 Eli Zaretskii <eliz@gnu.org>
10955
10956 * term/pc-win.el (x-select-text, x-selection-owner-p)
10957 (x-own-selection-internal, x-disown-selection-internal)
10958 (x-get-selection-internal): Sync doc strings and argument lists
10959 with xselect.c, common-win.el and x-win.el. (Bug#10783)
10960
10961 2012-02-11 Leo Liu <sdl.web@gmail.com>
10962
10963 * progmodes/python.el (python-end-of-statement): Fix infinite
10964 loop. (Bug#10788)
10965
10966 2012-02-10 Glenn Morris <rgm@gnu.org>
10967
10968 * international/mule-cmds.el (unify-8859-on-encoding-mode)
10969 (unify-8859-on-decoding-mode): Properly mark as obsolete.
10970
10971 2012-02-10 Lars Ingebrigtsen <larsi@gnus.org>
10972
10973 * mail/emacsbug.el (report-emacs-bug-hook): Query the user first
10974 about SMTP before checking the From header.
10975
10976 * mail/sendmail.el (sendmail-query-user-about-smtp): Refactor out
10977 into own function for reuse by emacsbug.el.
10978
10979 2012-02-10 Leo Liu <sdl.web@gmail.com>
10980
10981 * subr.el (condition-case-unless-debug): Rename from
10982 condition-case-no-debug. All callers changed.
10983 (with-demoted-errors): Fix caller.
10984
10985 * vc/diff-mode.el (diff-auto-refine-mode, diff-hunk):
10986 * nxml/rng-valid.el (rng-do-some-validation):
10987 * emacs-lisp/package.el (package-refresh-contents)
10988 (package-menu-execute):
10989 * desktop.el (desktop-create-buffer):
10990 * font-lock.el (lisp-font-lock-keywords-2): Caller changed.
10991
10992 2012-02-10 Glenn Morris <rgm@gnu.org>
10993
10994 * textmodes/bibtex.el:
10995 Add missing :version tags for new/changed defcustoms.
10996
10997 * files.el (remote-file-name-inhibit-cache): Doc fixes.
10998
10999 2012-02-09 Lars Ingebrigtsen <larsi@rusty>
11000
11001 * mail/smtpmail.el (smtpmail-user-mail-address): New function.
11002 (smtpmail-via-smtp): Use it, or fall back on the From address.
11003 (smtpmail-send-it): Ditto.
11004
11005 2012-02-09 Stefan Monnier <monnier@iro.umontreal.ca>
11006
11007 * emacs-lisp/bytecomp.el (byte-compile-file-form-defvar):
11008 Don't fallback on byte-compile-defvar. Optimize (defvar foo) away.
11009 (byte-compile-tmp-var): New const.
11010 (byte-compile-defvar): Use it to minimize .elc size.
11011 Just use `defvar' rather than simulate it (bug#10761).
11012
11013 2012-02-09 Glenn Morris <rgm@gnu.org>
11014
11015 * files.el (rename-uniquely): Doc fix. (Bug#3806)
11016
11017 * progmodes/cc-guess.el (c-guess-offset-threshold, c-guess-region-max):
11018 Add :version tags.
11019
11020 * progmodes/compile.el (compilation-error-screen-columns)
11021 (compilation-first-column, compilation-filter-start): Doc fixes.
11022
11023 * vc/log-view.el (log-view-toggle-entry-display):
11024 * vc/vc.el (vc-merge, vc-pull): Doc fixes.
11025
11026 * mail/emacsbug.el (report-emacs-bug-can-use-osx-open)
11027 (report-emacs-bug-can-use-xdg-email):
11028 (report-emacs-bug-insert-to-mailer): Doc fixes.
11029 (report-emacs-bug): Message fix.
11030
11031 * net/browse-url.el (browse-url-can-use-xdg-open)
11032 (browse-url-xdg-open): Doc fixes.
11033
11034 * electric.el (electric-indent-mode, electric-pair-mode)
11035 (electric-layout-rules, electric-layout-mode): Doc fixes.
11036 (electric-pair-pairs, electric-pair-skip-self): Add :version tags.
11037
11038 2012-02-08 Martin Rudalics <rudalics@gmx.at>
11039
11040 * server.el (server-unselect-display): Don't inadvertently kill
11041 the current buffer. (Bug#10729)
11042
11043 2012-02-08 Glenn Morris <rgm@gnu.org>
11044
11045 * progmodes/sql.el (sql-port, sql-connection-alist, sql-list-all)
11046 (sql-list-table): Doc fixes.
11047
11048 * image-mode.el (image-transform-minor-mode-map, image-transform-mode):
11049 Comment out (does nothing).
11050
11051 * completion.el (dynamic-completion-mode):
11052 * dirtrack.el (dirtrack-debug-mode):
11053 * electric.el (electric-layout-mode):
11054 * epa-mail.el (epa-mail-mode, epa-global-mail-mode):
11055 * face-remap.el (text-scale-mode, buffer-face-mode):
11056 * iimage.el (iimage-mode):
11057 * image-mode.el (image-transform-mode):
11058 * minibuffer.el (completion-in-region-mode):
11059 * scroll-lock.el (scroll-lock-mode):
11060 * simple.el (next-error-follow-minor-mode):
11061 * tar-mode.el (tar-subfile-mode):
11062 * tooltip.el (tooltip-mode):
11063 * vcursor.el (vcursor-use-vcursor-map):
11064 * wid-browse.el (widget-minor-mode):
11065 * emulation/tpu-edt.el (tpu-edt-mode):
11066 * emulation/tpu-extras.el (tpu-cursor-free-mode):
11067 * international/iso-ascii.el (iso-ascii-mode):
11068 * language/thai-util.el (thai-word-mode):
11069 * mail/supercite.el (sc-minor-mode):
11070 * net/goto-addr.el (goto-address-mode):
11071 * net/rcirc.el (rcirc-multiline-minor-mode, rcirc-track-minor-mode):
11072 * progmodes/cwarn.el (cwarn-mode):
11073 * progmodes/flymake.el (flymake-mode):
11074 * progmodes/glasses.el (glasses-mode):
11075 * progmodes/hideshow.el (hs-minor-mode):
11076 * progmodes/pascal.el (pascal-outline-mode):
11077 * textmodes/enriched.el (enriched-mode):
11078 * vc/smerge-mode.el (smerge-mode):
11079 Doc fixes (minor mode argument).
11080
11081 2012-02-07 Eli Zaretskii <eliz@gnu.org>
11082
11083 * ls-lisp.el (ls-lisp-sanitize): New function.
11084 (ls-lisp-insert-directory): Use it to fix or remove any elements
11085 in file-alist with missing attributes. (Bug#4673)
11086
11087 2012-02-07 Alan Mackenzie <acm@muc.de>
11088
11089 Fix spurious recognition of c-in-knr-argdecl.
11090
11091 * progmodes/cc-engine.el (c-in-knr-argdecl): Check for '=' in a
11092 putative K&R region.
11093
11094 2012-02-07 Alan Mackenzie <acm@muc.de>
11095
11096 * progmodes/cc-engine.el (c-forward-objc-directive):
11097 Prevent looping in "#pragma mark @implementation".
11098
11099 2012-02-07 Michael Albinus <michael.albinus@gmx.de>
11100
11101 * notifications.el (notifications-on-closed-signal): Make `reason'
11102 optional. (Bug#10744)
11103
11104 2012-02-07 Glenn Morris <rgm@gnu.org>
11105
11106 * emacs-lisp/easy-mmode.el (define-minor-mode):
11107 Doc fixes for the macro and the mode it defines.
11108
11109 * image.el (imagemagick-types-inhibit): Doc fix.
11110
11111 * cus-start.el (imagemagick-render-type): Add it.
11112
11113 2012-02-06 Lars Ingebrigtsen <larsi@gnus.org>
11114
11115 * progmodes/cc-mode.el (c-standard-font-lock-fontify-region-function):
11116 Set the default at load time, too, so that `font-lock-fontify-buffer'
11117 can be called without setting up the entire mode first. This fixes
11118 a bug in `mm-inline-text' with C MIME parts.
11119
11120 2012-02-06 Chong Yidong <cyd@gnu.org>
11121
11122 * simple.el (list-processes--refresh): Delete exited processes
11123 (Bug#8094).
11124
11125 * comint.el (comint-next-prompt): next-single-char-property-change
11126 and prev-single-char-property-change never return nil (Bug#8657).
11127
11128 * custom.el (defcustom): Doc fix (Bug#9711).
11129
11130 2012-02-05 Chong Yidong <cyd@gnu.org>
11131
11132 * cus-edit.el (custom-variable-reset-backup): Quote the value
11133 before storing it in the customized-value property (Bug#6712).
11134 (custom-display): Add a customization type tag.
11135 (custom-buffer-create-internal): Improve tooltip message.
11136
11137 * wid-edit.el (widget-field-value-get): New optional arg to
11138 suppress trailing whitespace truncation.
11139 (character): Use it (Bug#2689).
11140
11141 2012-02-05 Andreas Schwab <schwab@linux-m68k.org>
11142
11143 * progmodes/gud.el (gud-pv): Use pv instead of pv1.
11144 * progmodes/gdb-mi.el (gud-pp): Use pp instead of pp1.
11145
11146 2012-02-05 Chong Yidong <cyd@gnu.org>
11147
11148 * cus-edit.el (custom-variable-value-create): For mismatched
11149 types, show the current value (Bug#7600).
11150
11151 * custom.el (defcustom): Doc fix.
11152
11153 2012-02-05 Glenn Morris <rgm@gnu.org>
11154
11155 * font-lock.el (lisp-font-lock-keywords-2): Add with-wrapper-hook.
11156
11157 2012-02-05 Juanma Barranquero <lekktu@gmail.com>
11158
11159 * emacs-lisp/pp.el (pp-to-string): Use `with-temp-buffer'.
11160 (pp-buffer): Use `ignore-errors', `looking-at-p'.
11161 (pp-last-sexp): Use `looking-at-p'.
11162
11163 2012-02-04 Glenn Morris <rgm@gnu.org>
11164
11165 * files.el (revert-buffer):
11166 Doc fix (mention revert-buffer-in-progress-p).
11167
11168 * emacs-lisp/ert-x.el (ert-simulate-command):
11169 Check deferred-action-list (which is obsolete) is bound.
11170
11171 * subr.el (with-wrapper-hook): Doc fixes.
11172
11173 * simple.el (filter-buffer-substring-functions)
11174 (buffer-substring-filters, filter-buffer-substring): Doc fixes.
11175
11176 2012-02-04 Lars Ljung <lars@matholka.se> (tiny change)
11177
11178 * eshell/esh-ext.el (eshell-windows-shell-file): Match "cmdproxy"
11179 anywhere in shell-file-name, not just at the beginning. (Bug#10523)
11180
11181 2012-02-04 Leo Liu <sdl.web@gmail.com>
11182
11183 * emacs-lisp/smie.el: Fix dead link (Bug#10711).
11184
11185 2012-02-04 Glenn Morris <rgm@gnu.org>
11186
11187 * image.el (image-extension-data): Add obsolete alias.
11188
11189 * isearch.el (isearch-update): Doc fix.
11190
11191 * facemenu.el (list-colors-display): Doc fix (minor rephrasing).
11192
11193 * ido.el (ido-find-file): Doc fix (ido-toggle-vc not on any key).
11194
11195 2012-02-03 Glenn Morris <rgm@gnu.org>
11196
11197 * image.el (image-animated-p): Doc fix. Use image-animated-types.
11198 (image-animate-timeout): Doc fix.
11199
11200 * image-mode.el (image-animate-loop, image-toggle-animation): Doc fixes.
11201
11202 2012-02-02 Glenn Morris <rgm@gnu.org>
11203
11204 * server.el (server-auth-dir): Doc fix.
11205 (server-eval-at): Doc fix. Give an explicit error if !server-use-tcp.
11206
11207 * subr.el (run-mode-hooks): Doc fix.
11208
11209 2012-02-02 Juri Linkov <juri@jurta.org>
11210
11211 * image-mode.el (image-toggle-display-image): Remove tautological
11212 `major-mode' from the `derived-mode-p' test.
11213
11214 2012-02-02 Kenichi Handa <handa@m17n.org>
11215
11216 * composite.el (compose-region): Cancel previous change.
11217
11218 2012-02-02 Kenichi Handa <handa@m17n.org>
11219
11220 * composite.el (compose-region, compose-string): Signal error for
11221 a null string component (Bug#6988).
11222
11223 2012-02-01 Chong Yidong <cyd@gnu.org>
11224
11225 * view.el (view-buffer-other-window, view-buffer-other-frame):
11226 Handle special modes like view-buffer (Bug#10650).
11227 (view-buffer): Simplify.
11228
11229 * frame.el (set-frame-font): Tweak meaning of third argument.
11230
11231 * dynamic-setting.el (font-setting-change-default-font):
11232 Use set-frame-font (Bug#9982).
11233
11234 2012-02-01 Glenn Morris <rgm@gnu.org>
11235
11236 * progmodes/compile.el (compilation-internal-error-properties):
11237 Respect compilation-first-column in the "*compilation*" buffer.
11238
11239 * emacs-lisp/easy-mmode.el (define-minor-mode):
11240 Relax :variable's test for a named function.
11241
11242 2012-01-31 Alan Mackenzie <acm@muc.de>
11243
11244 * progmodes/cc-engine.el (c-guess-basic-syntax): CASE 5B.1: Fix an
11245 off by one error.
11246
11247 2012-01-31 Chong Yidong <cyd@gnu.org>
11248
11249 * frame.el (set-frame-font): New arg ALL-FRAMES.
11250
11251 * menu-bar.el (menu-set-font): Use set-frame-font.
11252
11253 * faces.el (face-spec-reset-face): Don't apply unspecified
11254 attribute values to the default face.
11255
11256 2012-01-31 Juanma Barranquero <lekktu@gmail.com>
11257
11258 * progmodes/cwarn.el (cwarn): Remove dead link.
11259 (cwarn-configuration, cwarn-verbose, cwarn-mode-text, cwarn-load-hook):
11260 Remove * from defcustom docstrings.
11261 (turn-on-cwarn-mode): Make obsolete.
11262 (c-at-toplevel-p): Remove compatibility code for Emacs 20.3 and older.
11263 (turn-on-cwarn-mode-if-enabled): Call `cwarn-mode'.
11264
11265 2012-01-31 Glenn Morris <rgm@gnu.org>
11266
11267 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix.
11268 Fix :variable handling of mode a symbol not equal to modefun.
11269 Allow named functions to be used as the cdr of :variable.
11270
11271 2012-01-30 Glenn Morris <rgm@gnu.org>
11272
11273 * emacs-lisp/authors.el (authors-fixed-entries):
11274 Remove reference to deleted file rnewspost.el.
11275
11276 2012-01-29 Juanma Barranquero <lekktu@gmail.com>
11277
11278 * window.el (window-with-parameter): Remove unused variable `windows'.
11279 (window--side-check): Remove unused variable `code'.
11280 (window--resize-siblings): Remove unused variable `first'.
11281 (adjust-window-trailing-edge): Remove unused variable `failed'.
11282 (window-deletable-p, window--delete): Remove unused variable `buffer'.
11283 Use `let', not `let*'.
11284 (balance-windows-2): Remove unused variable `found'.
11285 (window--state-put-2): Remove unused variable `splits'.
11286 (window-state-put): Remove unused variable `selected'.
11287 (same-window-p): Use `string-match-p'.
11288 (display-buffer-assq-regexp): Remove unused variable `value'.
11289 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
11290 Mark argument ALIST as ignored.
11291 (pop-to-buffer): Remove unused variable `old-window'.
11292
11293 2012-01-29 Eli Zaretskii <eliz@gnu.org>
11294
11295 * jka-cmpr-hook.el (jka-compr-compression-info-list): Support .lz
11296 and .lzma compressed files.
11297
11298 2012-01-29 Chong Yidong <cyd@gnu.org>
11299
11300 * frame.el (window-system-default-frame-alist): Doc fix.
11301
11302 * dynamic-setting.el (font-setting-change-default-font): Don't
11303 change the default face if SET-FONT argument is non-nil (Bug#9982).
11304
11305 2012-01-29 Samuel Bronson <naesten@gmail.com> (tiny change)
11306
11307 * custom.el (defcustom): Add doc link to Lisp manual (Bug#10635).
11308
11309 2012-01-29 Syver Enstad <syver.enstad@cisco.com> (tiny change)
11310
11311 * progmodes/gud.el (pdb): Give pdb full paths, to allow setting
11312 breakpoints in files outside current directory (Bug#6098).
11313
11314 2012-01-29 Chong Yidong <cyd@gnu.org>
11315
11316 * progmodes/python.el: Require ansi-color at top-level.
11317
11318 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-abbrev-table):
11319 Define and use in Emacs Lisp mode (Bug#9360).
11320 (lisp-mode-abbrev-table): Add doc.
11321 (lisp-mode-variables): Don't set local-abbrev-table.
11322 (lisp-interaction-mode): Use emacs-lisp-mode-abbrev-table.
11323
11324 2012-01-28 Roland Winkler <winkler@gnu.org>
11325
11326 * textmodes/bibtex.el (bibtex-vec-incr): Fix docstring.
11327
11328 2012-01-28 Roland Winkler <winkler@gnu.org>
11329
11330 * textmodes/bibtex.el (bibtex-entry-alist): New function.
11331 (bibtex-set-dialect): Use it. Either set global values of
11332 dialect-dependent variables or bind these variables buffer-locally
11333 (Bug#10254).
11334 (bibtex-mode): Call bibtex-set-dialect via
11335 hack-local-variables-hook.
11336 (bibtex-dialect): Update docstring.
11337 Add safe-local-variable predicate.
11338 (bibtex-entry-alist, bibtex-field-alist): Initialize via
11339 bibtex-set-dialect.
11340 (bibtex-mode-map): Define menu for each dialect.
11341 (bibtex-entry): Fix docstring.
11342
11343 2012-01-28 Chong Yidong <cyd@gnu.org>
11344
11345 * eshell/esh-arg.el (eshell-quote-argument): New function.
11346
11347 * eshell/esh-ext.el (eshell-invoke-batch-file):
11348 * eshell/em-unix.el (eshell/cat, eshell/du): Use it to quote the
11349 first arg to eshell-parse-command (Bug#10523).
11350
11351 2012-01-28 Drew Adams <drew.adams@oracle.com>
11352
11353 * net/ange-ftp.el (ange-ftp-canonize-filename): Check, that
11354 `default-directory' is non-nil.
11355
11356 2012-01-28 Eli Zaretskii <eliz@gnu.org>
11357
11358 * mail/emacsbug.el (report-emacs-bug): Fill the potentially long
11359 line that displays system-configuration-options. (Bug#9924)
11360
11361 2012-01-28 Drew Adams <drew.adams@oracle.com>
11362
11363 * descr-text.el (describe-char): Show information about POS, in
11364 addition to information about the character at POS. Improve and
11365 update the doc string. Change "code point" to "code point in
11366 charset", to avoid confusion with the character's Unicode code
11367 point shown above that. (Bug#10129)
11368
11369 2012-01-28 Eli Zaretskii <eliz@gnu.org>
11370
11371 * descr-text.el (describe-char): Show the raw character, not only
11372 its display form at POS. Suggested by Kenichi Handa <handa@m17n.org>.
11373 See http://lists.gnu.org/archive/html/emacs-devel/2012-01/msg00760.html
11374 for the reasons.
11375
11376 2012-01-28 Phil Hagelberg <phil@hagelb.org>
11377
11378 * emacs-lisp/package.el (package-install):
11379 Run package-refresh-contents if there is no archive yet (Bug#9798).
11380
11381 2012-01-28 Chong Yidong <cyd@gnu.org>
11382
11383 * emacs-lisp/package.el (package-maybe-load-descriptor):
11384 New function, split from package-maybe-load-descriptor.
11385 (package-maybe-load-descriptor): Use it.
11386 (package-download-transaction): Fully load required packages
11387 inside the loop, so that `require' calls work (Bug#10593).
11388 (package-install): No need to call package-initialize now.
11389
11390 2012-01-28 Chong Yidong <cyd@gnu.org>
11391
11392 * simple.el (deactivate-mark): Doc fix (Bug#8614).
11393
11394 * tooltip.el (tooltip-mode): Doc fix.
11395 (tooltip-use-echo-area): Mark as obsolete (Bug#6595).
11396
11397 * frame.el (set-cursor-color): Doc fix (Bug#352).
11398
11399 * mail/rmail.el (rmail-start-mail): Add send-action again (Bug#10625).
11400 (rmail-mail-return): Switch to NEWBUF only if it is non-nil.
11401
11402 * cus-edit.el (custom-buffer-create-internal): Fix search button
11403 action (Bug#10542).
11404 (customize-unsaved, customize-saved): Doc fix (Bug#10541).
11405
11406 2012-01-27 Eduard Wiebe <usenet@pusto.de>
11407
11408 * dired.el (dired-mark-files-regexp):
11409 Include any subdirectory components. (Bug#10445)
11410
11411 2012-01-27 Mike Lamb <mrlamb@gmail.com> (tiny change)
11412
11413 * pcmpl-unix.el (pcmpl-ssh-known-hosts):
11414 Handle [host]:port syntax. (Bug#10533)
11415
11416 2012-01-27 Alex Harsanyi <harsanyi@mac.com>
11417
11418 * xml.el (xml-parse-tag): Fix parsing of comments (Bug#10405).
11419
11420 2012-01-26 Glenn Morris <rgm@gnu.org>
11421
11422 * dired-x.el (dired-bind-jump): Use ctl-x-map and ctl-x-4-map.
11423 * term.el (term-raw-escape-map): Use Control-X-prefix.
11424 * vc/vc-hooks.el (vc-prefix-map): Use ctl-x-map. (Bug#10566)
11425
11426 2012-01-25 Martin Rudalics <rudalics@gmx.at>
11427
11428 * window.el (window-state-get, window--state-get-1): Don't deal
11429 with fixed-sizeness of windows. Simplify code.
11430
11431 2012-01-25 Jérémy Compostella <jeremy.compostella@gmail.com>
11432
11433 * window.el (window--state-get-1, window--state-put-2):
11434 Don't save and restore the mark.
11435
11436 2012-01-25 Chong Yidong <cyd@gnu.org>
11437
11438 * custom.el (custom-variable-p): Doc fix.
11439
11440 2012-01-25 Glenn Morris <rgm@gnu.org>
11441
11442 * dired.el (dired-goto-file): Handle some of the more common
11443 characters that `ls -b' escapes. (Bug#10596)
11444
11445 * progmodes/compile.el (compilation-next-error-function):
11446 Respect compilation-first-column in the "*compilation*" buffer.
11447 * progmodes/grep.el (grep-first-column): New variable. (Bug#10594)
11448
11449 * vc/vc.el (vc-modify-change-comment): Scoping fix. (Bug#10513)
11450
11451 2012-01-24 Glenn Morris <rgm@gnu.org>
11452
11453 * pcmpl-gnu.el (pcomplete/tar): Handle " - ". (Bug#10457)
11454
11455 2012-01-24 Julien Danjou <julien@danjou.info>
11456
11457 * color.el (color-rgb-to-hsl): Fix value computing.
11458 (color-hue-to-rgb): New function.
11459 (color-hsl-to-rgb): New function.
11460 (color-clamp, color-saturate-hsl, color-saturate-name)
11461 (color-desaturate-hsl, color-desaturate-name, color-lighten-hsl)
11462 (color-lighten-name, color-darken-hsl, color-darken-name): New function.
11463
11464 2012-01-24 Glenn Morris <rgm@gnu.org>
11465
11466 * vc/vc-rcs.el (vc-rcs-create-tag):
11467 * vc/vc-sccs.el (vc-sccs-create-tag):
11468 Fix argument spec to be what vc-create-tag expects. (Bug#10515)
11469
11470 2012-01-23 Mike Lamb <mrlamb@gmail.com> (tiny change)
11471
11472 * eshell/esh-util.el (eshell-read-hosts-file):
11473 Skip comment lines. (Bug#10549)
11474
11475 * eshell/em-unix.el (pcomplete/ssh): Remove. (Bug#10548)
11476
11477 2012-01-23 Juanma Barranquero <lekktu@gmail.com>
11478
11479 * subr.el (display-delayed-warnings): Doc fix.
11480 (collapse-delayed-warnings): New function to collapse identical
11481 adjacent warnings.
11482 (delayed-warnings-hook): Add it.
11483
11484 2012-01-22 Michael Albinus <michael.albinus@gmx.de>
11485
11486 * net/tramp.el (tramp-action-login): Set connection property "login-as".
11487
11488 * net/tramp-sh.el (tramp-methods): Add user spec to "pscp" and "psftp".
11489 (tramp-default-user-alist): Don't add "pscp".
11490 (tramp-do-copy-or-rename-file-out-of-band): Use connection
11491 property "login-as", if set. (Bug#10530)
11492
11493 2012-01-21 Michael Albinus <michael.albinus@gmx.de>
11494
11495 * net/tramp-sh.el (tramp-default-user-alist): Don't add "plink",
11496 "plink1" and "psftp". (Bug#10530)
11497
11498 2012-01-21 Kenichi Handa <handa@m17n.org>
11499
11500 * international/mule-cmds.el (prefer-coding-system): Show a
11501 warning message if the default value of file-name-coding-system
11502 was not changed.
11503
11504 2012-01-21 Jérémy Compostella <jeremy.compostella@gmail.com>
11505
11506 * windmove.el (windmove-reference-loc):
11507 Fix windmove-reference-loc miscalculation.
11508
11509 2012-01-21 Jay Belanger <jay.p.belanger@gmail.com>
11510
11511 * calc/calc-units.el (math-put-default-units): Don't use "1" as a
11512 default unit.
11513
11514 2012-01-21 Glenn Morris <rgm@gnu.org>
11515
11516 * international/mule.el (auto-coding-alist): Add .tbz.
11517
11518 * files.el (local-enable-local-variables): Doc fix.
11519 (inhibit-local-variables-regexps): Rename from
11520 inhibit-first-line-modes-regexps. Keep old name as obsolete alias.
11521 Doc fix. Add some extensions from auto-coding-alist.
11522 (inhibit-local-variables-suffixes):
11523 Rename from inhibit-first-line-modes-suffixes. Doc fix.
11524 (inhibit-local-variables-p):
11525 New function, extracted from set-auto-mode-1.
11526 (set-auto-mode): Doc fix. Respect inhibit-local-variables-regexps.
11527 (set-auto-mode-1): Doc fix. Use inhibit-local-variables-p.
11528 (hack-local-variables): Doc fix. Make the mode-only case
11529 respect enable-local-variables and friends.
11530 Respect inhibit-local-variables-regexps for file-locals, but
11531 not for directory-locals.
11532 (set-visited-file-name):
11533 Take account of inhibit-local-variables-regexps.
11534 Whether it applies may change as the file name is changed.
11535 * jka-cmpr-hook.el (jka-compr-install):
11536 * jka-compr.el (jka-compr-uninstall):
11537 Update for inhibit-first-line-modes-suffixes name change.
11538
11539 2012-01-20 Martin Rudalics <rudalics@gmx.at>
11540
11541 * help-macro.el (make-help-screen): Temporarily restore original
11542 binding for minor-mode-map-alist (Bug#10454).
11543
11544 2012-01-19 Julien Danjou <julien@danjou.info>
11545
11546 * color.el (color-name-to-rgb): Use the white color to find the max
11547 color component value and return correctly computed values.
11548 (color-name-to-rgb): Add missing float conversion for max value.
11549
11550 2012-01-19 Martin Rudalics <rudalics@gmx.at>
11551
11552 * window.el (window--state-get-1, window-state-get): Do not use
11553 special state value for window-persistent-parameters.
11554 Rename argument IGNORE to WRITABLE. Rewrite doc-string.
11555 (window--state-put-2): Reset all window parameters to nil before
11556 assigning values of persistent parameters.
11557
11558 2012-01-18 Alan Mackenzie <acm@muc.de>
11559
11560 Eliminate sluggishness and hangs in fontification of "semicolon
11561 deserts".
11562
11563 * progmodes/cc-engine.el (c-state-nonlit-pos-interval):
11564 Change value 10000 -> 3000.
11565 (c-state-safe-place): Reformulate so it doesn't stack up an
11566 infinite number of wrong entries in c-state-nonlit-pos-cache.
11567 (c-determine-limit-get-base, c-determine-limit): New functions to
11568 determine backward search limits disregarding literals.
11569 (c-find-decl-spots): Amend commenting.
11570 (c-cheap-inside-bracelist-p): New function which detects "={".
11571
11572 * progmodes/cc-fonts.el
11573 (c-make-font-lock-BO-decl-search-function): Give a limit to a
11574 backward search.
11575 (c-font-lock-declarations): Fix an occurrence of point being
11576 undefined. Check additionally for point being in a bracelist or
11577 near a macro invocation without a semicolon so as to avoid a
11578 fruitless time consuming search for a declarator. Give a more
11579 precise search limit for declarators using the new
11580 c-determine-limit.
11581
11582 2012-01-18 Glenn Morris <rgm@gnu.org>
11583
11584 * files.el (auto-mode-alist, inhibit-first-line-modes-regexps)
11585 (set-auto-mode): Doc fixes.
11586
11587 2012-01-17 Glenn Morris <rgm@gnu.org>
11588
11589 * isearch.el (search-nonincremental-instead): Fix doc typo.
11590
11591 * dired.el (dired-insert-directory): Handle newlines in directory name.
11592 (dired-build-subdir-alist): Unescape newlines in directory name.
11593
11594 2012-01-17 Michael Albinus <michael.albinus@gmx.de>
11595
11596 * net/tramp.el (tramp-local-end-of-line): New defcustom.
11597 (tramp-action-login, tramp-action-yesno, tramp-action-yn)
11598 (tramp-action-terminal): Use it. (Bug#10530)
11599
11600 2012-01-16 Stefan Monnier <monnier@iro.umontreal.ca>
11601
11602 * minibuffer.el (completion--replace): Strip properties (bug#10062).
11603
11604 2012-01-16 Martin Rudalics <rudalics@gmx.at>
11605
11606 * window.el (window-state-ignored-parameters): Remove variable.
11607 (window--state-get-1): Rename argument MARKERS to IGNORE.
11608 Handle persistent window parameters. Make copy of clone-of
11609 parameter only if requested. (Bug#10348)
11610 (window--state-put-2): Install a window parameter only if it has
11611 a non-nil value or an existing parameter shall be overwritten.
11612
11613 2012-01-15 Michael Albinus <michael.albinus@gmx.de>
11614
11615 * net/tramp-sh.el (tramp-remote-path): Set tramp-autoload cookie.
11616
11617 2012-01-14 Eli Zaretskii <eliz@gnu.org>
11618
11619 * info.el (Info-toc-build): If the Info file has no "Up" pointer,
11620 don't pass the (nil) value of `upnode' to string-match.
11621
11622 2012-01-14 Chong Yidong <cyd@gnu.org>
11623
11624 * startup.el (command-line): Fix X resource class for cursorColor.
11625 Fix values recognized by the cursorBlink resource.
11626
11627 2012-01-14 Paul Eggert <eggert@cs.ucla.edu>
11628
11629 * epg.el (epg--make-temp-file): Avoid permission race condition
11630 when running on old Emacs versions (bug#10403).
11631
11632 2012-01-14 Glenn Morris <rgm@gnu.org>
11633
11634 * dired.el (dired-get-filename): Fix 'verbatim case of previous change.
11635
11636 2012-01-13 Alan Mackenzie <acm@muc.de>
11637
11638 Fix filling for when filladapt mode is enabled.
11639
11640 * progmodes/cc-cmds.el (c-fill-paragraph): In the invocation of
11641 c-mask-paragraph, pass in `fill-paragraph' rather than
11642 `fill-region-as-paragraph'. (This is a reversion of a previous
11643 change.)
11644 * progmodes/cc-mode.el (c-basic-common-init):
11645 Make fill-paragraph-handle-comment buffer local and set it to nil.
11646
11647 2012-01-13 Glenn Morris <rgm@gnu.org>
11648
11649 * dired.el (dired-switches-escape-p): New function.
11650 (dired-insert-directory): Use dired-switches-escape-p.
11651 (dired-get-filename): Undo "\ " quoting if needed. (Bug#10469)
11652
11653 * find-dired.el (find-ls-option): Doc fix. (Bug#10262)
11654
11655 2012-01-12 Glenn Morris <rgm@gnu.org>
11656
11657 * mail/sendmail.el (mail-mode): Update paragraph-separate for
11658 changes in adaptive-fill-regexp. (Bug#10276)
11659
11660 2012-01-11 Alan Mackenzie <acm@muc.de>
11661
11662 Fix Emacs bug #10463 - put `widen's around the critical spots.
11663
11664 * progmodes/cc-engine.el (c-in-literal, c-literal-limits): Put a
11665 widen around each invocation of c-state-pp-to-literal. Remove an
11666 unused let variable.
11667
11668 2012-01-11 Glenn Morris <rgm@gnu.org>
11669
11670 * dired-aux.el (dired-do-shell-command): Fix */? logic. (Bug#6561)
11671 Doc fix.
11672
11673 2012-01-10 Chong Yidong <cyd@gnu.org>
11674
11675 * net/network-stream.el (network-stream-open-starttls):
11676 Avoid emitting a confusing error message when the server gives a bad
11677 response to the capability command.
11678
11679 2012-01-10 Glenn Morris <rgm@gnu.org>
11680
11681 * mail/unrmail.el (unrmail): Tweak previous change.
11682
11683 2012-01-09 Chong Yidong <cyd@gnu.org>
11684
11685 * custom.el (custom-safe-themes): Use SHA-256 for hashing.
11686
11687 2012-01-08 Alan Mackenzie <acm@muc.de>
11688
11689 Optimise font locking in long enum definitions.
11690
11691 * progmodes/cc-fonts.el (c-font-lock-declarations): Add an extra
11692 arm to a cond form to handle enums.
11693 * progmodes/cc-langs.el (c-enums-contain-decls): New lang variable.
11694 * progmodes/cc-mode.el (c-font-lock-fontify-region): Correct a typo.
11695
11696 2012-01-07 Paul Eggert <eggert@cs.ucla.edu>
11697
11698 * files.el (move-file-to-trash): Preserve default file modes on error.
11699 (Bug#10401)
11700
11701 2012-01-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
11702
11703 * faces.el (set-face-attribute): Clarify the meaning of the nil
11704 frame (bug#10294).
11705
11706 * subr.el (with-selected-frame): Mention that the selected frame
11707 is restored (bug#9980).
11708
11709 * ibuffer.el (ibuffer-mode): List the bindings in the corrent map
11710 (bug#9759).
11711
11712 * mail/smtpmail.el (password-cache-add): Remove unused declaration.
11713 (password-read): Don't autoload unused function.
11714
11715 2012-01-07 Juanma Barranquero <lekktu@gmail.com>
11716
11717 * progmodes/which-func.el (which-func-mode): Turn into a
11718 non-interactive function and mark as obsolete (bug#10428).
11719
11720 2012-01-06 Chong Yidong <cyd@gnu.org>
11721
11722 * files.el (hack-dir-local-variables-non-file-buffer): Add doc.
11723 (hack-one-local-variable-eval-safep): Allow 0 arg for minor mode
11724 functions, along with 1 and -1.
11725
11726 2012-01-06 Eli Zaretskii <eliz@gnu.org>
11727
11728 * time.el (display-time-load-average)
11729 (display-time-default-load-average): Doc fixes. See the thread
11730 starting at
11731 http://lists.gnu.org/archive/html/help-gnu-emacs/2012-01/msg00059.html
11732 for the details.
11733
11734 2012-01-06 Glenn Morris <rgm@gnu.org>
11735
11736 * mail/unrmail.el (unrmail): Give an explicit error if the input file
11737 has no messages. (Bug#10377)
11738
11739 * info.el (Info-mode-map): Bind e to end-of-buffer, rather
11740 than Info-edit. (Bug#10385)
11741
11742 * time.el (display-time-load-average, display-time-next-load-average):
11743 Doc fixes.
11744
11745 * emacs-lisp/bytecomp.el (byte-compile-file): Do not propagate a file
11746 local setting of buffer-read-only to the input buffer. (Bug#10419)
11747
11748 * calendar/calendar.el (calendar-mode):
11749 Locally set scroll-margin to 0. (Bug#10379)
11750
11751 2012-01-06 Ulrich Mueller <ulm@gentoo.org>
11752
11753 * play/doctor.el (doctor-death): Escape "," characters. (Bug#10370)
11754
11755 2012-01-05 Glenn Morris <rgm@gnu.org>
11756
11757 * eshell/em-unix.el (diff-no-select): Autoload it.
11758 (eshell/diff): Use diff-no-select. (Bug#10420)
11759
11760 2012-01-05 Chong Yidong <cyd@gnu.org>
11761
11762 * shell.el (shell-dynamic-complete-functions): Revert last change.
11763 (shell-command-completion-function): New function.
11764 (shell-completion-vars): Use it to implement
11765 shell-completion-execonly (Bug#10417).
11766
11767 * custom.el (enable-theme): Don't set custom-safe-themes.
11768
11769 * cus-theme.el (custom-theme-merge-theme):
11770 Ignore custom-enabled-themes and custom-safe-themes.
11771
11772 2012-01-05 Michael R. Mauger <mmaug@yahoo.com>
11773
11774 * progmodes/sql.el (sql-login-hook): Add hook to respond to the
11775 first prompt in `sql-interacive-mode'.
11776 (sql-mode-oracle-font-lock-keywords): Add CONNECT_BY_* builtin
11777 keywords.
11778 (sql-mode-mysql-font-lock-keywords): Add ELSEIF keyword.
11779 (sql-product-interactive): Bug fix: Set `sql-buffer' in
11780 context of original buffer. Invoke `sql-login-hook'.
11781
11782 2012-01-04 Eli Zaretskii <eliz@gnu.org>
11783
11784 * mail/rmail.el (rmail-font-lock-keywords): Accept non-ASCII
11785 letters in cite-prefix.
11786
11787 2012-01-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
11788
11789 * mail/smtpmail.el (smtpmail-stream-type): Mention the `ssl' value.
11790
11791 2012-01-03 Chong Yidong <cyd@gnu.org>
11792
11793 * shell.el (shell-dynamic-complete-functions):
11794 Put pcomplete-completions-at-point, so as to try
11795 comint-filename-completion first (Bug#10417).
11796
11797 2012-01-02 Richard Stallman <rms@gnu.org>
11798
11799 * battery.el (battery-status-function):
11800 Detect when to use battery-yeeloong-sysfs.
11801 (battery-echo-area-format): Add string for Yeeloong.
11802 (battery-linux-proc-apm, battery-linux-proc-acpi): Doc fixes.
11803 (battery-yeeloong-sysfs): New function.
11804
11805 2012-01-02 Chong Yidong <cyd@gnu.org>
11806
11807 * dirtrack.el (dirtrack-list): Eliminate unused third element.
11808 (dirtrack): Merge code for handling relative filenames in prompt
11809 from shell-dir-cookie-watcher.
11810 (dirtrack-debug-message): New arg to avoid excess format calls.
11811
11812 * shell.el (shell-dir-cookie-re): Variable deleted.
11813 (shell-dir-cookie-watcher): Function deleted.
11814 (shell-mode): Don't use shell-dir-cookie-re, since it is redundant
11815 with dirtrack-mode.
11816
11817 2012-01-01 Eli Zaretskii <eliz@gnu.org>
11818
11819 * term/w32-win.el (dynamic-library-alist) <gnutls>:
11820 Load libgnutls-28.dll, from GnuTLS version 3.x, in preference to
11821 libgnutls-26.dll.
11822
11823 2011-12-31 Andreas Schwab <schwab@linux-m68k.org>
11824
11825 * emacs-lisp/bytecomp.el (byte-compile-file): Fix indentation.
11826
11827 2011-12-31 Eli Zaretskii <eliz@gnu.org>
11828
11829 * mail/rmail.el (rmail-show-message-1): Decode any RFC2047 encoded
11830 headers of non-MIME messages, when rmail-enable-mime is non-nil.
11831
11832 2011-12-29 Michael Albinus <michael.albinus@gmx.de>
11833
11834 * net/tramp-sh.el (tramp-find-shell): Set "remote-shell" property
11835 also for alternative shells.
11836 (tramp-open-connection-setup-interactive-shell): Check, whether
11837 the shell is a busybox.
11838 (tramp-send-command): Don't suppress multiple prompts for
11839 busyboxes, it hurts.
11840
11841 2011-12-28 Chong Yidong <cyd@gnu.org>
11842
11843 * progmodes/gdb-mi.el (gdb-get-source-file-list)
11844 (gdb-get-source-file): Move mode line update to
11845 gdb-get-source-file (Bug#10087).
11846
11847 2011-12-25 Chong Yidong <cyd@gnu.org>
11848
11849 * progmodes/gud.el (gud-gdb-fetch-lines-filter): Just use
11850 gud-gdb-marker-filter without taking it as an argument.
11851 (gud-gdb-run-command-fetch-lines): Caller changed.
11852 (gud-gdb-completion-function): New variable.
11853 (gud-gdb-completion-at-point): Use it.
11854 (gud-gdb-completions-1): Split from gud-gdb-completions.
11855
11856 * progmodes/gdb-mi.el (gdb-input): Accept command and handler
11857 function as separate arguments.
11858 (gdb-init-1, gdb-non-stop-handler, gdb-check-target-async)
11859 (gdb-tooltip-print-1, gud-watch, gdb-speedbar-update)
11860 (gdb-var-list-children, gdb-var-set-format, gdb-var-delete-1)
11861 (gdb-var-delete-children, gdb-edit-value, gdb-var-update)
11862 (gdb-stopped, def-gdb-auto-update-trigger)
11863 (gdb-place-breakpoints, gdb-select-thread, gdb-select-frame)
11864 (gdb-get-changed-registers, gdb-get-main-selected-frame):
11865 Callers changed.
11866 (gud-gdbmi-completions): New function.
11867 (gdb): Use it for generating the completion table.
11868
11869 2011-12-24 Alan Mackenzie <acm@muc.de>
11870
11871 Introduce a mechanism to widen the region used in context font
11872 locking. Use this to protect declarations from losing their contexts.
11873
11874 * progmodes/cc-langs.el (c-before-font-lock-functions):
11875 Replace c-set-fl-decl-start with c-change-set-fl-decl-start (Renaming).
11876 (c-before-context-fontification-functions): New defvar, a list of
11877 functions to be run just before context (etc.) font locking.
11878
11879 * progmodes/cc-mode.el (c-extend-font-lock-region-for-macros):
11880 New, functionality extracted from
11881 c-neutralize-syntax-in-and-mark-CPP.
11882 (c-in-after-change-fontification): New variable.
11883 (c-after-change): Set c-in-after-change-fontification.
11884 (c-set-fl-decl-start): Rejig its interface, so it can be called
11885 from both after-change and context fontifying.
11886 (c-change-set-fl-decl-start, c-context-set-fl-decl-start):
11887 New functions.
11888 (c-standard-font-lock-fontify-region-function): New variable.
11889 (c-font-lock-fontify-region): New function.
11890
11891 2011-12-24 Juri Linkov <juri@jurta.org>
11892
11893 * window.el (window--state-get-1): Set `FORCE' arg of `mark' to t.
11894 (Bug#10348)
11895
11896 2011-12-23 Michael Albinus <michael.albinus@gmx.de>
11897
11898 * net/ange-ftp.el (ange-ftp-copy-file-internal): Check for
11899 existence of source file. (Bug#10325)
11900
11901 2011-12-23 Alan Mackenzie <acm@muc.de>
11902
11903 Fix unstable fontification inside templates.
11904
11905 * progmodes/cc-langs.el (c-before-font-lock-functions):
11906 Newly created from the singular version. The (c c++ objc) entry now
11907 additionally has c-set-fl-decl-start. The other languages (apart
11908 from AWK) have that as a single entry.
11909
11910 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
11911 The functionality for "local" declarations has been extracted to
11912 c-set-fl-decl-start.
11913
11914 * progmodes/cc-mode.el (c-common-init, c-after-change):
11915 Changes due to pluralisation of c-before-font-lock-functions.
11916 (c-set-fl-decl-start): New function, extracted from
11917 c-font-lock-enclosing-decls and enhanced.
11918
11919 2011-12-23 Juanma Barranquero <lekktu@gmail.com>
11920
11921 * desktop.el (desktop-internal-v2s): Fix typos in docstring (bug#10353).
11922
11923 2011-12-22 Juri Linkov <juri@jurta.org>
11924
11925 * progmodes/grep.el (rgrep): Fix docstring. (Bug#10185)
11926
11927 2011-12-22 Chong Yidong <cyd@gnu.org>
11928
11929 * vc/vc-hooks.el (vc-keep-workfiles): Doc fix.
11930
11931 2011-12-21 Drew Adams <drew.adams@oracle.com>
11932
11933 * files.el (file-remote-p): Fix docstring. (Bug#10319)
11934
11935 2011-12-21 Jérémy Compostella <jeremy.compostella@gmail.com>
11936
11937 * battery.el (battery-linux-sysfs): Add missing parameters from acpi.
11938
11939 2011-12-21 Teodor Zlatanov <tzz@lifelogs.com>
11940
11941 * progmodes/cfengine.el: Add Version. Improve CFEngine 3.x syntax
11942 highlighting and support. Fix up comments for capitalization.
11943 (cfengine-mode-debug): New var.
11944 (cfengine3-mode): Change the modeline indicator to "CFE3".
11945 (cfengine3-font-lock-keywords): Improve defun highlighting.
11946 (cfengine2-actions): Rename from `cfengine-actions'.
11947 (cfengine2-font-lock-keywords): Rename from
11948 `cfengine-font-lock-keywords'.
11949 (cfengine2-imenu-expression): Rename from
11950 `cfengine-imenu-expression'.
11951 (cfengine2-outline-level): Rename from `cfengine-outline-level'.
11952 (cfengine2-beginning-of-defun): Rename from
11953 `cfengine-beginning-of-defun'.
11954 (cfengine2-end-of-defun): Rename from `cfengine-end-of-defun'.
11955 (cfengine2-indent-line): Rename from `cfengine-indent-line'.
11956 (cfengine2-mode): Rename from `cfengine-mode'. Change the
11957 modeline indicator to "CFE2".
11958 (cfengine-mode): Defalias to `cfengine-auto-mode'.
11959 (cfengine-mode-abbrevs): Mark obsolete.
11960
11961 2011-12-21 Chong Yidong <cyd@gnu.org>
11962
11963 * vc/vc-bzr.el (vc-bzr-rename-file): Don't pass ~ to Bzr in
11964 filename argument.
11965
11966 2011-12-20 Martin Rudalics <rudalics@gmx.at>
11967
11968 * window.el (window-normalize-buffer-to-display): Remove.
11969 (display-buffer): Handle buffer-or-name argument as in Emacs 23.
11970
11971 2011-12-19 Chong Yidong <cyd@gnu.org>
11972
11973 * vc/vc-dir.el (vc-dir-parent-marked-p, vc-dir-children-marked-p):
11974 Don't signal an error in a predicate function; return non-nil.
11975 (vc-dir-mark-file): Move the error here.
11976 (vc-dir-mark-unmark): If acting on the region, keep going if one
11977 of the entries cannot be marked/unmarked.
11978 (vc-dir-mark-all-files): If current entry is a directory, mark
11979 only child files, as documented.
11980
11981 2011-12-19 Vincent Belaïche <vincentb1@users.sourceforge.net>
11982
11983 * ses.el: Ooops... undo changes of 2011-12-11T14:49:48Z!vincentb1@users.sourceforge.net, as trunk
11984 branch is feature frozen, and 2011-12-11T14:49:48Z!vincentb1@users.sourceforge.net was a feature
11985 addition.
11986
11987 2011-12-18 Jan Djärv <jan.h.d@swipnet.se>
11988
11989 * term/ns-win.el (ns-get-selection-internal)
11990 (ns-store-selection-internal): Declare.
11991 (ns-store-cut-buffer-internal, ns-get-cut-buffer-internal):
11992 Declare as obsolete.
11993 (ns-get-pasteboard, ns-paste-secondary):
11994 Use ns-get-selection-internal.
11995 (ns-set-pasteboard, ns-copy-including-secondary):
11996 Use ns-store-selection-internal.
11997
11998 2011-12-17 Chong Yidong <cyd@gnu.org>
11999
12000 * vc/vc.el (vc-next-action): Doc fix; remove CVS-isms.
12001 (vc-deduce-fileset): Doc fix.
12002
12003 2011-12-16 Andreas Schwab <schwab@linux-m68k.org>
12004
12005 * calc/calc-misc.el (calc-help): Avoid wrapping help message.
12006
12007 2011-12-13 Sam Steingold <sds@gnu.org>
12008
12009 * man.el (Man-getpage-in-background): When running under a
12010 window-system, ignore $MANWIDTH and $COLUMNS.
12011
12012 2011-12-15 Kenichi Handa <handa@m17n.org>
12013
12014 * language/ethio-util.el: Change coding tag to utf-8-emacs.
12015 (setup-ethiopic-environment-internal): Comment out key-binding for
12016 ethio-toggle-punctuation.
12017
12018 2011-12-13 Alan Mackenzie <acm@muc.de>
12019
12020 Add the switch statement to AWK Mode.
12021
12022 * progmodes/cc-awk.el (awk-font-lock-keywords): Add "switch", "case",
12023 "default" to the keywords regexp.
12024
12025 * progmodes/cc-langs.el (c-label-kwds): Let AWK take the same
12026 expression as the rest.
12027 (c-nonlabel-token-key): Allow string literals for AWK.
12028 Refactor for the other modes.
12029
12030 Large brace-block initialisation makes CC Mode slow: Fix.
12031 Tidy up and accelerate c-in-literal, etc. by using the c-parse-state
12032 routines. Limit backward searching in c-font-lock-enclosing.decl.
12033
12034 * progmodes/cc-engine.el (c-state-pp-to-literal): Return the
12035 pp-state and literal type in addition to the limits.
12036 (c-state-safe-place): New defun, extracted from c-state-literal-at.
12037 (c-state-literal-at): Use the above new defun.
12038 (c-slow-in-literal, c-fast-in-literal): Remove.
12039 (c-in-literal, c-literal-limits): Amend to use c-state-pp-to-literal.
12040
12041 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls): Check for
12042 being in a literal. Add a limit for backward searching.
12043
12044 * progmodes/cc-mode.el (awk-mode): Don't alias c-in-literal to
12045 c-slow-in-literal.
12046
12047 2011-12-13 Stefan Monnier <monnier@iro.umontreal.ca>
12048
12049 * progmodes/pascal.el: Declare `ind' as dyn-bound (bug#10264).
12050
12051 2011-12-13 Martin Rudalics <rudalics@gmx.at>
12052
12053 * window.el (delete-other-windows): Use correct frame in call to
12054 window-with-parameter.
12055
12056 2011-12-12 Daniel Pfeiffer <occitan@t-online.de>
12057
12058 * progmodes/make-mode.el: Bring it up to date with makepp V2.0.
12059 (makefile-make-font-lock-keywords): Extend meaning of `keywords'.
12060 (makefile-gmake-statements, makefile-makepp-statements):
12061 Use it and add new makepp keywords.
12062 (makefile-makepp-font-lock-keywords): Add new patterns.
12063 (makefile-match-function-end): Match new [...] and [[...]].
12064
12065 2011-12-11 Juanma Barranquero <lekktu@gmail.com>
12066
12067 * ses.el (ses-call-printer-return, ses-cell-property-get)
12068 (ses-sym-rowcol, ses-printer-validate, ses-formula-record)
12069 (ses-create-cell-variable, ses-reset-header-string)
12070 (ses-cell-set-formula, ses-repair-cell-reference-all)
12071 (ses-self-reference-early-detection, ses-in-print-area, ses-set-curcell)
12072 (ses-check-curcell, ses-call-printer, ses-adjust-print-width)
12073 (ses-print-cell-new-width, ses-formula-references, ses-relocate-formula)
12074 (ses-aset-with-undo, ses-load, ses-truncate-cell)
12075 (ses-read-column-printer, ses-read-default-printer, ses-insert-row)
12076 (ses-delete-row, ses-delete-column, ses-append-row-jump-first-column)
12077 (ses-kill-override, ses-yank-pop, ses-yank-cells, ses-yank-tsf)
12078 (ses-yank-resize, ses-export-tab, ses-mark-row, ses-mark-column)
12079 (ses-renarrow-buffer, ses-insert-range, ses-insert-ses-range)
12080 (ses-safe-printer, ses-safe-formula, ses-warn-unsafe, ses--clean-!)
12081 (ses--clean-_, ses-range, ses-select, ses-center, ses-center-span)
12082 (ses-dashfill, ses-unsafe): Fix typos and reflow docstrings.
12083
12084 2011-12-11 Vincent Belaïche <vincentb1@users.sourceforge.net>
12085
12086 * ses.el: The overall change is to add cell renaming, that is
12087 setting fancy names for cell symbols other than name matching
12088 "\\`[A-Z]+[0-9]+\\'" regexp .
12089 (ses-create-cell-variable): New defun.
12090 (ses-relocate-formula): Relocate formulas only for cells the
12091 symbols of which are not renamed, i.e. symbols whose names do not
12092 match regexp "\\`[A-Z]+[0-9]+\\'".
12093 (ses-relocate-all): Relocate values only for cells the symbols of
12094 which are not renamed.
12095 (ses-load): Create cells variables as the (ses-cell ...) are read,
12096 in order to check row col consistency with cell symbol name only
12097 for cells that are not renamed.
12098 (ses-replace-name-in-formula): New defun.
12099 (ses-rename-cell): New defun.
12100
12101 2011-12-11 Chong Yidong <cyd@gnu.org>
12102
12103 * progmodes/gdb-mi.el (gdb): Set comint-prompt-regexp, required
12104 for completion via gud-gdb-fetch-lines-filter (Bug#10274).
12105
12106 2011-12-11 Eric Hanchrow <eric.hanchrow@gmail.com>
12107
12108 * window.el (other-window): Fix docstring.
12109
12110 2011-12-10 Eli Zaretskii <eliz@gnu.org>
12111
12112 * mail/rmailsum.el (rmail-header-summary): RFC2047 decode the
12113 `from' or `to' address before taking its substring.
12114 Fixes incorrect display in Rmail summary buffer whereby an RFC2047
12115 encoded name is chopped in the middle of the encoded string, and
12116 thus displayed encoded.
12117
12118 2011-12-10 Juanma Barranquero <lekktu@gmail.com>
12119
12120 * makefile.w32-in (update-subdirs-CMD): Use a Local Variables section.
12121
12122 2011-12-10 Eli Zaretskii <eliz@gnu.org>
12123
12124 * textmodes/texnfo-upd.el: Update commentary. Add a warning not
12125 to use texinfo-update-node and commands that call it if the
12126 Texinfo file uses @node lines without next/prev/up pointers.
12127 Correct outdated description about texinfo-master-menu.
12128 (texinfo-all-menus-update, texinfo-master-menu)
12129 (texinfo-update-node, texinfo-every-node-update)
12130 (texinfo-multiple-files-update): Doc fix. Warn against updating
12131 all the @node lines.
12132 (texinfo-master-menu): Only call texinfo-update-node if the prefix
12133 argument is numeric. Explain better in the doc string what the
12134 function really does.
12135 (texinfo-insert-master-menu-list): Improve the error message
12136 displayed if there's no menu in the Top node.
12137 (Bug#2975) See also this thread:
12138 http://lists.gnu.org/archive/html/emacs-devel/2011-12/msg00156.html.
12139
12140 2011-12-09 Manuel Gómez <mgrojo@gmail.com> (tiny change)
12141
12142 * speedbar.el (speedbar-supported-extension-expressions):
12143 Add .adb and .ads, commonly used for Ada source code (bug#10256).
12144
12145 2011-12-09 Juanma Barranquero <lekktu@gmail.com>
12146
12147 * printing.el (pr-mode-alist):
12148 * simple.el (filter-buffer-substring-functions)
12149 (completion-list-insert-choice-function):
12150 * window.el (window-with-parameter, window-atom-root)
12151 (window-sides-slots, window-size-fixed, window-min-delta)
12152 (window-max-delta, window--resize-mini-window)
12153 (window--resize-child-windows-normal, window-tree)
12154 (delete-other-windows, quit-window, split-window)
12155 (display-buffer-record-window, special-display-buffer-names)
12156 (special-display-regexps, special-display-popup-frame)
12157 (same-window-p, split-window-sensibly)
12158 (display-buffer-overriding-action, display-buffer-alist)
12159 (display-buffer-base-action, display-buffer, switch-to-buffer)
12160 (switch-to-buffer-other-window, switch-to-buffer-other-frame)
12161 (fit-window-to-buffer, recenter-positions)
12162 (mouse-autoselect-window-state, mouse-autoselect-window-select):
12163 * emacs-lisp/syntax.el (syntax-propertize-function): Fix typos
12164 and remove unneeded backslashes in docstrings.
12165
12166 2011-12-08 Stefan Monnier <monnier@iro.umontreal.ca>
12167
12168 * emacs-lisp/lisp-mode.el (defmethod): Add doc-string-elt (bug#10244).
12169
12170 * pcmpl-gnu.el: Don't fail when there is no Makefile nor -f arg.
12171 (pcmpl-gnu-makefile-regexps): Accept "makefile" as well as files that
12172 end in ".mk".
12173 (pcmpl-gnu-make-rule-names): Check "makefile" and ignore errors
12174 when reading the makefile (bug#10116).
12175
12176 2011-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
12177
12178 * pcmpl-gnu.el (pcomplete/make): Also allow filename arguments
12179 (bug#10116).
12180
12181 2011-12-06 Glenn Morris <rgm@gnu.org>
12182
12183 * emacs-lisp/package.el (package-archives): Doc fix re riskiness.
12184
12185 2011-12-06 Chong Yidong <cyd@gnu.org>
12186
12187 * progmodes/cc-fonts.el (c-annotation-face): Use defface.
12188
12189 2011-12-06 Juanma Barranquero <lekktu@gmail.com>
12190
12191 * textmodes/table.el (table-shorten-cell): Fix typo.
12192
12193 2011-12-05 Christopher Genovese <genovese.cr@gmail.com> (tiny change)
12194
12195 * emacs-lisp/assoc.el (aput): Fix return value (bug#10146)
12196
12197 2011-12-05 Eli Zaretskii <eliz@gnu.org>
12198
12199 * descr-text.el (describe-char): Fix display of strong
12200 right-to-left characters and directional embeddings and overrides.
12201
12202 * simple.el (what-cursor-position): Fix display of codepoints of
12203 strong right-to-left characters.
12204
12205 2011-12-05 Chong Yidong <cyd@gnu.org>
12206
12207 * faces.el (read-color): Doc fix.
12208
12209 2011-12-05 Glenn Morris <rgm@gnu.org>
12210
12211 * align.el (align--set-marker): Add doc-string.
12212 Don't try to move something that is not a marker. (Bug#10216)
12213
12214 2011-12-04 Glenn Morris <rgm@gnu.org>
12215
12216 * calendar/appt.el (appt-add): Rewrite the interactive-spec to avoid
12217 overly zealous deletion of trailing whitespace.
12218
12219 2011-12-04 Juanma Barranquero <lekktu@gmail.com>
12220
12221 * server.el (server-delete-client): On Windows, do not try to delete
12222 the only terminal.
12223 (server-process-filter): On Windows, treat requests for a tty frame as
12224 if they were for a GUI frame if the running server is in GUI mode.
12225
12226 2011-12-03 Glenn Morris <rgm@gnu.org>
12227
12228 * textmodes/texinfmt.el (batch-texinfo-format): Doc fix. (Bug#10207)
12229
12230 2011-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
12231
12232 * electric.el: Streamline electric-indent's hook.
12233 (electric-indent-chars): Revert to simple list.
12234 (electric-indent-functions): New var.
12235 (electric-indent-post-self-insert-function): Use it.
12236
12237 * progmodes/prolog.el (prolog-find-value-by-system): Avoid error when
12238 there's no inferior buffer (bug#10196).
12239 (prolog-consult-compile): Don't use toggle-read-only.
12240
12241 2011-12-02 Michael Albinus <michael.albinus@gmx.de>
12242
12243 * net/tramp-sh.el (tramp-maybe-open-connection): Handle user
12244 interrupt. (Bug#10187)
12245
12246 2011-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
12247
12248 * pcmpl-gnu.el (pcomplete/tar): large-file-warn-threshold can be nil
12249 (bug#9160).
12250
12251 * dired-aux.el (dired-query): Don't assume help-char is modifier-free
12252 (bug#10191).
12253
12254 2011-12-02 Juri Linkov <juri@jurta.org>
12255
12256 * info.el (Info-search): Display "end of manual" when Isearch
12257 reaches the end of single-file Info manual. (Bug#9918)
12258
12259 2011-12-02 Eli Zaretskii <eliz@gnu.org>
12260
12261 * isearch.el (isearch-message-prefix): Run the input method part
12262 of the prompt through bidi-string-mark-left-to-right. (Bug#10183)
12263
12264 2011-12-02 Juri Linkov <juri@jurta.org>
12265
12266 * isearch.el (isearch-occur): Use `word-search-regexp' for
12267 `isearch-word'.
12268 (isearch-search-and-update): Add condition for `isearch-word' and
12269 call `word-search-regexp'. (Bug#10145)
12270
12271 2011-12-01 Glenn Morris <rgm@gnu.org>
12272
12273 * eshell/em-hist.el (eshell-hist-initialize):
12274 Handle eshell-history-size nil and HISTSIZE set or unset.
12275 (eshell-history-file-name, eshell-history-size): Fix custom type.
12276
12277 2011-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
12278
12279 * man.el (Man-completion-table): Fix the lambda case (bug#10168).
12280
12281 2011-12-01 Michael McNamara <mac@mail.brushroad.com>
12282
12283 * progmodes/verilog-mode.el (verilog-pretty-expr):
12284 Rework verilog-pretty-expr to handle new assignment operators in system
12285 verilog, such as += *= and the like.
12286 (verilog-assignment-operator-re): Regular expression to find the
12287 assigment operator in a verilog assignment.
12288 (verilog-assignment-operation-re): Regular expression to find an
12289 assignment statement for pretty-expr.
12290 (verilog-in-attribute-p): Query returns true if point is in an
12291 attribute context; used to skip these for expression line up from
12292 pretty-expr.
12293 (verilog-in-parameter-p): Query returns true if point is in an
12294 parameter definition context; used to skip these for expression
12295 line up from pretty-expr.
12296 (verilog-in-parenthesis-p): Query returns true if point is in a
12297 parenthetical expression, specifically ( ) but not [ ] or { };
12298 used by pretty-expr.
12299 (verilog-just-one-space): If there is no space, don't add one.
12300 (verilog-get-lineup-indent-2): Specifically skip just attribute
12301 contexts for expression lineup, rather than skipping all
12302 parenthetical expressions.
12303 (verilog-calculate-indent): Fix comment, and fix indent.
12304 (verilog-do-indent): Indent declarations in lists (suggested by
12305 Joachim Lechner).
12306 (verilog-mode-abbrev-table): Populate abbrev mode with the various
12307 skeleton items.
12308 (verilog-sk-ovm-class): Add skeleton for OVM classes (reported
12309 by Alain Mellan).
12310
12311 2011-12-01 Wilson Snyder <wsnyder@wsnyder.org>
12312
12313 * progmodes/verilog-mode.el (verilog-read-defines): Fix reading
12314 parameters with embedded comments. Reported by Ray Stevens.
12315 (verilog-calc-1, verilog-fork-wait-re) (verilog-forward-sexp,
12316 verilog-wait-fork-re): Fix indentation of "wait fork", bug407.
12317 Reported by Tim Holt.
12318 (verilog-auto): Fix AUTOing a upper module then AUTOing module
12319 instantiated by upper module causing wrong expansion until AUTOed a
12320 second time. Reported by K C Buckenmaier.
12321 (verilog-diff-auto): Fix showing .* as a difference when
12322 `verilog-auto-star-save' off. Reported by Dan Dever.
12323 (verilog-auto-reset, verilog-read-always-signals)
12324 (verilog-auto-reset-blocking-in-non): Fix AUTORESET including
12325 temporary signals in reset list if
12326 verilog-auto-reset-blocking-in-non is nil, and match assignment
12327 style to each signal's assignment type, bug381.
12328 Reported by Thomas Esposito.
12329 (verilog-sk-uvm-class, verilog-uvm-begin-re, verilog-uvm-end-re)
12330 (verilog-uvm-statement-re): Support UVM indentation and
12331 highlighting, with old OVM keywords only.
12332 (verilog-auto-tieoff, verilog-auto-tieoff-declaration):
12333 Support AUTOTIEOFF creating non-wire data types.
12334 Suggested by Jonathan Greenlaw.
12335 (verilog-auto-insert-lisp, verilog-delete-to-paren)
12336 (verilog-forward-sexp-cmt, verilog-forward-sexp-ign-cmt)
12337 (verilog-inject-sense, verilog-read-inst-pins)
12338 (verilog-read-sub-decls, verilog-read-sub-decls-line):
12339 Fix mismatching parenthesis inside commented out code when deleting
12340 AUTOINST, bug383. Reported by Jonathan Greenlaw.
12341 (verilog-auto-ascii-enum): Fix AUTOASCIIENUM one-hot with
12342 non-numeric vector width. Reported by Alex Reed.
12343 (verilog-auto-ascii-enum): Add "onehot" option to work around not
12344 detecting signals with parameter widths. Reported by Alex Reed.
12345 (verilog-auto-delete-trailing-whitespace):
12346 With `verilog-auto-delete-trailing-whitespace' remove trailing
12347 whitespace in auto expansion, bug371. Reported by Brad Dobbie.
12348 (verilog-run-hooks, verilog-scan-cache-flush, verilog-syntax-ppss):
12349 Fix verilog-scan-cache corruption when running user AUTO expansion
12350 hooks that call indentation routines.
12351 (verilog-simplify-range-expression): Fix typo ignoring lower case
12352 identifiers.
12353 (verilog-delete-auto): Fix delete-autos to also remove user created
12354 automatics, as long as they start with AUTO.
12355 (verilog-batch-diff-auto, verilog-diff-auto)
12356 (verilog-diff-function): Add `verilog-diff-auto' and bind to
12357 "C-c?" to report differences in AUTO expansion, ignoring spaces.
12358 (verilog-backward-syntactic-ws-quick, verilog-beg-of-defun-quick)
12359 (verilog-in-paren-quick, verilog-re-search-backward-quick)
12360 (verilog-re-search-forward-quick, verilog-syntax-ppss):
12361 Fix calling `syntax-ppss' when inside auto expansions as the ppss hook
12362 is disabled and its cache will get corrupt, causing AUTOS not to
12363 expand. Instead use only -quick functions.
12364 (verilog-scan-region): Fix scanning over escaped quotes.
12365 (verilog-inside-comment-or-string-p, verilog-inside-comment-p)
12366 (verilog-re-search-backward-quick)
12367 (verilog-re-search-forward-quick, verilog-scan): verilog-scan and
12368 related functions now ignore strings, to fix misparsing of strings
12369 with magic comments embedded in them.
12370 (verilog-read-auto-template):
12371 Fix 'verilog-auto-inst-template-numbers' with extra newline before (.
12372 Reported by Brad Dobbie.
12373 (verilog-read-auto-template):
12374 Fix 'verilog-auto-inst-template-numbers' with comments.
12375 Reported by Brad Dobbie.
12376 (verilog-auto-inst, verilog-auto-inst-param)
12377 (verilog-auto-inst-sort): Add 'verilog-auto-inst-sort' to reduce
12378 merge conflicts with AUTOINST, bug358. Reported by Brad Dobbie.
12379 (verilog-auto-inst-template-numbers): Add 'lhs' policy for
12380 debugging templates without merge conflicts, bug357.
12381 Reported by Brad Dobbie.
12382 (verilog-read-auto-template):
12383 Fix verilog-auto-inst-template-numbers with multiple templates.
12384 Reported by Brad Dobbie.
12385 (verilog-define-abbrev): Fix verilog-mode abbrevs to be system
12386 abbrevs so user won't be asked to save.
12387 (verilog-read-auto-lisp-present): Fix to start at beginning of
12388 buffer in case called outside of verilog-auto.
12389 (verilog-simplify-range-expression): Fix AUTOWIRE expanding "X-1+1"
12390 to "X-2". Reported by Matthew Myers.
12391 (verilog-auto, verilog-auto-inout-in): Add AUTOINOUTIN for creating
12392 all inputs from module templates. Reported by Leith Johnson.
12393 (verilog-module-inside-filename-p): Fix locating programs as with
12394 modules.
12395 (verilog-auto-inst-port): Fix vl-width expressions when using
12396 verilog-auto-inst-param-value, bug331. Reported by Julian Gorfajn.
12397 (verilog-decls-get-regs, verilog-decls-get-signals,
12398 verilog-decls-get-vars, verilog-decls-get-wires, verilog-decls-new,
12399 verilog-modi-cache-add-vars, verilog-modi-cache-add-wires,
12400 verilog-read-decls): Combine reg and wire structures into one var
12401 structure to represent SystemVerilog concepts.
12402 (verilog-auto-ascii-enum, verilog-auto-logic, verilog-auto-reg)
12403 (verilog-auto-reg-input, verilog-auto-tieoff, verilog-auto-wire)
12404 (verilog-auto-wire-type, verilog-insert-definition):
12405 Add verilog-auto-wire-type and AUTOLOGIC to support using
12406 SystemVerilog "logic" keyword instead of "wire"/"reg".
12407 (verilog-auto-reg-input, verilog-decls-get-signals): Fix AUTOWIRE
12408 to declares outputs that also have assignments (presumably in an
12409 ifdef or generate if so there's not a driver conflict).
12410 Reported by Matthew Myers.
12411 (verilog-auto-declare-nettype, verilog-insert-definition):
12412 Add verilog-auto-declare-nettype to fix declarations using
12413 `default_nettype none. Reported by Julian Gorfajn.
12414 (verilog-read-always-signals-recurse, verilog-read-decls)
12415 (verilog-read-sub-decls-gate): Fix infinite loop with (*) and
12416 malformed end statement, bug325. Reported by Joshua Wise and
12417 Andrew Drake.
12418 (verilog-auto-star-safe, verilog-delete-auto-star-implicit)
12419 (verilog-inst-comment-re): Fix not deleting Interfaced comment
12420 when expanding .* in interfaces, bug320.
12421 Reported by Pierre-David Pfister.
12422 (verilog-read-module-name): Fix import statements between module
12423 name and open parenthesis, bug317.
12424 Reported by Pierre-David Pfister.
12425 (verilog-simplify-range-expression): Fix simplification of
12426 multiplications inside AUTOWIRE connections, bug303.
12427 (verilog-auto-inst-port): Support parameter expansion in
12428 multidimensional arrays.
12429 (verilog-read-decls): Fix AUTOREG etc looking for "endproperty"
12430 after "assert property". Reported by Julian Gorfajn.
12431 (verilog-simplify-range-expression): Fix "couldn't merge" errors
12432 with multiplication, bug303.
12433 (verilog-read-decls): Fix parsing of unsigned data types, bug302.
12434 Reported by Jan Frode Lonnum.
12435
12436 2011-11-30 Juanma Barranquero <lekktu@gmail.com>
12437
12438 * htmlfontify.el (hfy-page-header, hfy-post-html-hooks)
12439 (hfy-shell-file-name, hfy-shell):
12440 * international/fontset.el (x-decompose-font-name): Fix typos.
12441
12442 2011-11-29 Ken Brown <kbrown@cornell.edu>
12443
12444 * progmodes/gdb-mi.el: Fix bug#9853, bug#9858, and bug#9878.
12445 (gdb-version): Remove defvar.
12446 (gdb-supports-non-stop): New defvar, replacing `gdb-version'.
12447 (gdb-gud-context-command, gdb-non-stop-handler)
12448 (gdb-current-context-command, gdb-stopped): Use it.
12449 (gdb-init-1): Enable pretty printing here.
12450 (gdb-non-stop-handler): Don't enable pretty-printing here.
12451 Check to see if the target supports non-stop mode; if not, turn off
12452 non-stop mode. Use the following.
12453 (gdb-check-target-async): New defun.
12454 (gud-watch, gdb-stopped): Fix whitespace.
12455 (gdb-get-source-file): Don't try to display the source file if
12456 `gdb-main-file' is nil.
12457
12458 2011-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
12459
12460 * align.el: Try to generate fewer markers (bug#10047).
12461 (align--set-marker): New macro.
12462 (align-region): Use it.
12463
12464 2011-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
12465
12466 * isearch.el (isearch-yank-x-selection): Deactivate mark (bug#10022).
12467
12468 2011-11-29 Chong Yidong <cyd@gnu.org>
12469
12470 * indent.el (indent-for-tab-command, indent-according-to-mode):
12471 Doc fix.
12472 (indent-region): Doc fix. Switch nested ifs to equivalent cond.
12473
12474 2011-11-29 Michael Albinus <michael.albinus@gmx.de>
12475
12476 * vc/diff-mode.el (diff-find-file-name): Make `read-file-name'
12477 aware of remote file names. (Bug#10124)
12478
12479 2011-11-29 Chong Yidong <cyd@gnu.org>
12480
12481 * frame.el (auto-raise-mode, auto-lower-mode): Doc fix.
12482
12483 2011-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
12484
12485 * files.el (find-file): Don't use force-same-window (bug#10144).
12486 * window.el (switch-to-buffer): Better match Emacs-23 behavior and only
12487 use pop-to-buffer if the selected window can't be used.
12488 (pop-to-buffer-same-window): Use display-buffer--same-window-action.
12489
12490 2011-11-28 Eli Zaretskii <eliz@gnu.org>
12491
12492 * vc/diff-mode.el (diff-mode-map): Don't inherit 'z' => 'M-z' from
12493 special-mode-map.
12494
12495 2011-11-28 Chong Yidong <cyd@gnu.org>
12496
12497 * emacs-lisp/easy-mmode.el (define-minor-mode): Fix default doc.
12498
12499 2011-11-27 Nick Roberts <nickrob@snap.net.nz>
12500
12501 * progmodes/gdb-mi.el (gdb-init-1): Condition execution of
12502 gdb-get-source-file-list on gdb-create-source-file-list.
12503
12504 2011-11-26 Eli Zaretskii <eliz@gnu.org>
12505
12506 * whitespace.el (whitespace-newline): Use a different foreground
12507 color for 16-color light-background displays.
12508
12509 2011-11-24 Chong Yidong <cyd@gnu.org>
12510
12511 * window.el (display-buffer--special-action): Doc fix.
12512
12513 2011-11-25 Juanma Barranquero <lekktu@gmail.com>
12514
12515 * emacs-lisp/avl-tree.el (avl-tree--do-copy, avl-tree-create)
12516 (avl-tree-compare-function, avl-tree-empty, avl-tree-enter)
12517 (avl-tree-delete, avl-tree-member, avl-tree-member-p, avl-tree-map)
12518 (avl-tree-mapc, avl-tree-mapf, avl-tree-mapcar, avl-tree-copy)
12519 (avl-tree-clear, avl-tree-stack, avl-tree-stack-pop)
12520 (avl-tree-stack-first):
12521 * emacs-lisp/cconv.el (cconv--analyse-use):
12522 * net/gnutls.el (gnutls-negotiate): Fix typos.
12523
12524 2011-11-24 Glenn Morris <rgm@gnu.org>
12525
12526 * lpr.el (lpr-windows-system, lpr-lp-system):
12527 * mail/binhex.el (binhex-begin-line):
12528 * progmodes/grep.el (grep-history, grep-find-history):
12529 * textmodes/flyspell.el:
12530 * vc/pcvs-defs.el (cvs-global-menu):
12531 * vc/vc-bzr.el (vc-bzr-admin-checkout-format-file):
12532 * vc/vc-mtn.el (vc-mtn-admin-dir, vc-mtn-admin-format):
12533 * vc/vc-cvs.el (vc-cvs-registered): Give them basic doc-strings.
12534
12535 * net/tls.el: Fix case of "GnuTLS".
12536
12537 * paths.el (rmail-file-name): Format doc-string for make-docfile.
12538
12539 * version.el (emacs-build-system): Give it a doc-string.
12540
12541 2011-11-24 Juri Linkov <juri@jurta.org>
12542
12543 * view.el (view-buffer): Revert 2011-07-19T15:01:49Z!larsi@gnus.org from 2011-07-19 (bug#8615).
12544
12545 2011-11-24 Glenn Morris <rgm@gnu.org>
12546
12547 * mail/rmailmm.el (rmail-mime): When rmail-enable-mime is non-nil,
12548 if called on a non-mime message just toggle the headers. (Bug#8006)
12549
12550 2011-11-24 Juanma Barranquero <lekktu@gmail.com>
12551
12552 * allout.el (allout-setup, allout-auto-save-temporarily-disabled)
12553 (allout-lead-with-comment-string, allout-structure-deleted-hook)
12554 (allout-mode, allout-chart-subtree, allout-hotspot-key-handler)
12555 (allout-rebullet-heading, allout-open-sibtopic)
12556 (allout-toggle-current-subtree-encryption)
12557 (allout-toggle-subtree-encryption, allout-encrypt-string)
12558 (allout-next-topic-pending-encryption, allout-adjust-file-variable)
12559 (allout-distinctive-bullets-string, allout-auto-activation):
12560 * window.el (window-normalize-buffer-to-display):
12561 * progmodes/verilog-mode.el (verilog-batch-indent):
12562 * textmodes/bibtex.el (bibtex-field-braces-opt)
12563 (bibtex-field-strings-opt):
12564 * vc/cvs-status.el (cvs-tree-merge):
12565 Fix typos.
12566
12567 2011-11-23 Michael Albinus <michael.albinus@gmx.de>
12568
12569 * rfn-eshadow.el (rfn-eshadow-update-overlay): Let-bind
12570 `non-essential' to t, in order to avoid remote connections.
12571
12572 2011-11-23 Eli Zaretskii <eliz@gnu.org>
12573
12574 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
12575 On MS-DOS and MS-Windows, compare with loaddefs.el
12576 case-insensitively.
12577
12578 2011-11-23 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
12579
12580 * mail/unrmail.el (unrmail): Always add blank line. (Bug#7743)
12581
12582 2011-11-23 Glenn Morris <rgm@gnu.org>
12583
12584 * paths.el (rmail-file-name): Reformat the doc-string so that it
12585 is picked up.
12586
12587 * mail/rmail.el (rmail-message-filter, rmail-auto-file): Doc fixes.
12588 (rmail-auto-file): Ignore case in the "special" field names,
12589 as mail-fetch-field does for all others.
12590
12591 * mail/rmail.el (rmail-forward):
12592 * mail/rmailkwd.el (rmail-set-label):
12593 * mail/rmailout.el (rmail-output, rmail-output-as-seen)
12594 (rmail-output-body-to-file): Give error if no message. (Bug#10082)
12595
12596 * mail/rmail.el (rmail-current-message): Doc fix.
12597
12598 * mail/rmail.el (rmail-message-filter): Mark as obsolete. (Bug#2624)
12599
12600 2011-11-22 Stefan Monnier <monnier@iro.umontreal.ca>
12601
12602 * server.el (server-eval-and-print): Allow C-g (bug#6585).
12603
12604 2011-11-22 Glenn Morris <rgm@gnu.org>
12605
12606 * mail/rmailmm.el (test-rmail-mime-handler)
12607 (test-rmail-mime-bulk-handler)
12608 (test-rmail-mime-multipart-handler): Move tests to test/ directory.
12609
12610 2011-11-21 Juri Linkov <juri@jurta.org>
12611
12612 * calc/calc.el (calc-read-key-sequence):
12613 Let-bind `input-method-function' to nil. (Bug#10018)
12614
12615 2011-11-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
12616
12617 * emacs-lisp/cl-indent.el (common-lisp-loop-part-indentation):
12618 Tell the caller that the next line needs recomputation, even
12619 though it doesn't start a sexp (bug#10094).
12620
12621 2011-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
12622
12623 * emacs-lisp/autoload.el (autoload-generate-file-autoloads): Simplify.
12624
12625 2011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
12626
12627 * vc/pcvs-util.el (cvs-pop-to-buffer-same-frame):
12628 Use force-same-window.
12629
12630 2011-11-20 Juanma Barranquero <lekktu@gmail.com>
12631
12632 * descr-text.el (describe-char-unicode-data):
12633 * json.el (json-string-escape):
12634 * mail/footnote.el (footnote-unicode-string, footnote-unicode-regexp)
12635 (Footnote-unicode, Footnote-style-p):
12636 * net/ntlm.el (ntlm-get-password-hashes): Fix typos.
12637
12638 2011-11-20 Chong Yidong <cyd@gnu.org>
12639
12640 * window.el (replace-buffer-in-windows): Restore interactive spec.
12641
12642 2011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
12643
12644 * electric.el (electric-indent-mode): Fix last change (too optimistic).
12645
12646 * emacs-lisp/bytecomp.el: Silence obsolete warnings more reliably.
12647 (byte-compile-global-not-obsolete-vars): New var.
12648 (byte-compile-check-variable, byte-compile-make-obsolete-variable):
12649 Use it.
12650 (byte-compile-warn-obsolete): Align text with the one in *Help*.
12651
12652 2011-11-20 Juanma Barranquero <lekktu@gmail.com>
12653
12654 * progmodes/cwarn.el (cwarn-is-enabled, cwarn-font-lock-keywords):
12655 * progmodes/pascal.el (electric-pascal-equal):
12656 * textmodes/reftex-dcr.el (reftex-view-crossref-from-bibtex):
12657 * xml.el (xml-substitute-special): Fix typos.
12658
12659 2011-11-20 Glenn Morris <rgm@gnu.org>
12660
12661 * mail/rmail.el (rmail-enable-mime-composing): Make it a defcustom.
12662 (rmail-insert-mime-forwarded-message-function, rmail-mime-feature):
12663 Doc fixes.
12664 (rmail-decode-mime-charset): Mark as obsolete.
12665
12666 * mail/rmailsum.el (rmail-message-regexp-p-1):
12667 * mail/rmail.el (rmail-search-message, rmail-forward, rmail-resend):
12668 Before using mime functions, check they are set. (Bug#10077)
12669
12670 2011-11-19 Juri Linkov <juri@jurta.org>
12671
12672 * info.el (Info-finder-find-node): Use `package--builtins' instead
12673 of `package-alist'. Use node names formed by the pattern "Keyword "
12674 and the keyword name.
12675
12676 2011-11-19 Andreas Schwab <schwab@linux-m68k.org>
12677
12678 * progmodes/sh-script.el (sh-assignment-regexp): Add entry for bash.
12679
12680 2011-11-19 Juri Linkov <juri@jurta.org>
12681
12682 * info.el (Info-hide-note-references): Add `:set' tag to `defcustom'
12683 that calls `revert-buffer' on all Info buffers. (Bug#9915)
12684 (Info-revert-find-node): Remove let-bindings `old-buffer-name',
12685 `old-history', `old-history-forward'. Add let-binding
12686 `window-selected'. Remove calls to `kill-buffer',
12687 `switch-to-buffer' and `Info-mode'. Set `Info-current-file' to nil
12688 before calling `Info-find-node', so `Info-find-node-2' will reread
12689 the Info file. Restore window positions only when `window-selected'
12690 is non-nil.
12691
12692 2011-11-19 Juri Linkov <juri@jurta.org>
12693
12694 * isearch.el (isearch-lazy-highlight-new-loop):
12695 Remove condition `(not isearch-error)'. (Bug#9918)
12696
12697 * misearch.el (multi-isearch-search-fun): Add condition
12698 `(not bound)' to ignore lazy-highlighting search.
12699 Add the search-failed message "end of multi" when the end of
12700 multi-sequence is reached. Uncapitalize the search-failed
12701 message "Repeat for next buffer".
12702
12703 * info.el (Info-search): Add the search-failed message
12704 "end of the manual" when the end of the manual is reached
12705 in Isearch mode.
12706
12707 2011-11-19 Juri Linkov <juri@jurta.org>
12708
12709 * info.el (Info-find-node-2, Info-select-node, Info-history-find-node):
12710 Use non-destructive `remove' instead of `delete' because
12711 `Info-history-list' stored to `Info-isearch-initial-history-list' in
12712 `Info-isearch-start' might need to be restored in `Info-isearch-end'.
12713
12714 2011-11-19 Juri Linkov <juri@jurta.org>
12715
12716 * isearch.el (isearch-edit-string): Let-bind `history-add-new-input'
12717 to nil instead of binding `search-ring' and `regexp-search-ring'.
12718 (Bug#9185)
12719
12720 2011-11-19 Eli Zaretskii <eliz@gnu.org>
12721
12722 * simple.el (line-move): Force movement by logical lines for any
12723 hscrolled window, not only when auto-hscroll-mode is on.
12724 (line-move-visual): Update doc string to that effect. (Bug#10076)
12725
12726 2011-11-19 Andreas Schwab <schwab@linux-m68k.org>
12727
12728 * language/european.el (macintosh): Define as alias for mac-roman.
12729
12730 2011-11-19 Eli Zaretskii <eliz@gnu.org>
12731
12732 * mail/rmailmm.el (rmail-mime-display-header)
12733 (rmail-mime-display-tagline, rmail-mime-display-body): New defsubsts.
12734 (rmail-mime-entity-segment, rmail-mime-toggle-raw)
12735 (rmail-mime-toggle-hidden, rmail-mime-insert-text)
12736 (rmail-mime-insert-bulk, rmail-mime-insert-multipart)
12737 (rmail-mime-insert, rmail-mime-insert-tagline): Use them instead
12738 of a raw aref.
12739 (rmail-mime-entity-segment): To get past the tagline, move forward
12740 2 more lines, to account for the 2 empty lines that precede and
12741 follow the line with the buttons.
12742 (rmail-mime-update-tagline): Move one more line, to get past the
12743 empty line that follows the buttons in the tagline. (Bug#9520)
12744
12745 2011-11-19 Martin Rudalics <rudalics@gmx.at>
12746
12747 * window.el (window-max-delta-1, window-min-delta-1)
12748 (window-min-size-1, window-state-get-1, window-state-put-1)
12749 (window-state-put-2): Use "window--" prefix.
12750
12751 2011-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
12752
12753 * emacs-lisp/smie.el: Improve warnings and conflict detection.
12754 (smie-warning-count): New var.
12755 (smie-set-prec2tab): Use it.
12756 (smie-bnf->prec2): Improve warnings. Add docstring.
12757 (smie-bnf--closer-alist): Rename from smie-bnf-closer-alist.
12758 (smie-bnf--set-class): New function.
12759 (smie-bnf--classify): Rename from smie-bnf-classify. Rewrite to fix
12760 corner case.
12761
12762 * progmodes/compile.el: Obey compilation-first-column in dest buffer.
12763 (compilation-error-properties, compilation-move-to-column):
12764 Handle compilation-first-column while in the target buffer.
12765
12766 * progmodes/cc-engine.el (c-remove-stale-state-cache-backwards):
12767 Don't hardcode point-min==1.
12768
12769 * eshell/esh-cmd.el (eshell-do-eval): Handle `setq' (bug#9907).
12770 (eshell-rewrite-for-command): Remove workaround.
12771 (eshell-do-pipelines, eshell-do-pipelines-synchronously)
12772 (eshell-do-eval, eshell-exec-lisp): Avoid gratuitous setq.
12773 * eshell/esh-util.el (eshell-condition-case, eshell-for): Use declare.
12774
12775 * files-x.el (modify-file-local-variable): Obey commenting conventions.
12776
12777 2011-11-17 Glenn Morris <rgm@gnu.org>
12778
12779 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
12780 Ignore buffer-local generated-autoload-file if it is the same
12781 as the global value. (Bug#10049)
12782
12783 2011-11-17 Juanma Barranquero <lekktu@gmail.com>
12784
12785 * textmodes/reftex-toc.el (reftex-toc-return-marker, reftex-toc-help)
12786 (reftex-toc, reftex-toc, reftex-toc-dframe-p, reftex-toc-next-heading)
12787 (reftex-toc-previous-heading, reftex-toc-max-level)
12788 (reftex-toc-goto-line-and-hide, reftex-toc-show-calling-point)
12789 (reftex-toc-quit, reftex-toc-revert, reftex-toc-jump)
12790 (reftex-toc-do-promote, reftex-toc-promote-prepare)
12791 (reftex-toc-promote-action, reftex-toc-extract-section-number)
12792 (reftex-toc-load-all-files-for-promotion, reftex-toc-rename-label)
12793 (reftex-toc-rename-label, reftex-toc-visit-location)
12794 (reftex-toc-visit-location, reftex-toggle-auto-toc-recenter)
12795 (reftex-toggle-auto-toc-recenter, reftex-toggle-auto-toc-recenter)
12796 (reftex-make-separate-toc-frame): Fix typos, and use TOC consistently,
12797 leaving "*toc*" only for references to the buffer.
12798
12799 2011-11-17 Martin Rudalics <rudalics@gmx.at>
12800
12801 * window.el (window-resize, delete-window, split-window):
12802 Replace window-splits by window-combination-resize.
12803 * cus-start.el (window-splits): Replace by window-combination-resize.
12804
12805 2011-11-17 Glenn Morris <rgm@gnu.org>
12806
12807 * progmodes/sh-script.el (sh-font-lock-keywords-var):
12808 Make bash entry derive from sh entry, not shell entry.
12809
12810 2011-11-16 Michael Albinus <michael.albinus@gmx.de>
12811
12812 * net/tramp-sh.el (tramp-sh-handle-file-truename): Cache only the
12813 local file name.
12814
12815 2011-11-16 Juanma Barranquero <lekktu@gmail.com>
12816
12817 * menu-bar.el (menu-bar-file-menu):
12818 * printing.el (pr-ps-utility):
12819 * calendar/icalendar.el (icalendar, icalendar--convert-tz-offset)
12820 (icalendar--convert-to-ical, icalendar--convert-ordinary-to-ical)
12821 (icalendar--convert-weekly-to-ical, icalendar--convert-yearly-to-ical)
12822 (icalendar--convert-sexp-to-ical, icalendar--convert-block-to-ical)
12823 (icalendar--convert-float-to-ical, icalendar--convert-date-to-ical)
12824 (icalendar--convert-cyclic-to-ical)
12825 (icalendar--convert-anniversary-to-ical, icalendar-import-buffer)
12826 (icalendar--convert-ical-to-diary)
12827 (icalendar--convert-recurring-to-diary)
12828 (icalendar--convert-non-recurring-all-day-to-diary)
12829 (icalendar-import-format-sample):
12830 * progmodes/idlw-shell.el (idlwave-shell-mode):
12831 * progmodes/vhdl-mode.el (vhdl-mode, vhdl-print-two-column)
12832 (vhdl-print-customize-faces, vhdl-mode, vhdl-ps-print-settings)
12833 (vhdl-ps-print-init): Fix typos.
12834
12835 2011-11-16 Ken Manheimer <ken.manheimer@gmail.com>
12836
12837 * allout.el, allout-widgets.el (file metadata): Attribute copyright to
12838 FSF and collapse date sequence, obscure author/maintainer email address
12839 better, remove extra version line, track relocation of author's webpage.
12840
12841 * progmodes/python.el (python-pdbtrack-input-prompt)
12842 (python-pdbtrack-track-stack-file): Adjust to recognize ipdb as well as
12843 regular python pdb prompts. Adjustments shamelessly taken exactly as
12844 suggested in EmacsWiki page (tiny change):
12845 http://www.emacswiki.org/PythonProgrammingInEmacs#toc14
12846
12847 2011-11-16 Juanma Barranquero <lekktu@gmail.com>
12848
12849 * expand.el (expand-pos, expand-index, expand-point):
12850 Remove redundant info from docstring.
12851 (expand-add-abbrevs): Doc fix.
12852 (expand-c-sample-expand-list, expand-sample-lisp-mode-expand-list)
12853 (expand-sample-perl-mode-expand-list): Fix typos.
12854
12855 * net/dbus.el (dbus-event-member-name):
12856 * play/5x5.el (5x5-solve-rotate-left, 5x5-solver-output):
12857 * term/pc-win.el (msdos-create-frame-with-faces):
12858 * textmodes/texinfmt.el (texinfo-format-image): Fix typos.
12859
12860 2011-11-16 Martin Rudalics <rudalics@gmx.at>
12861
12862 * window.el (split-window, window-state-get-1)
12863 (window-state-put-1, window-state-put-2): Rename occurrences of
12864 window-nest to window-combination-limit.
12865 * cus-start.el (window-nest): Rename to window-combination-limit.
12866
12867 2011-11-16 Chong Yidong <cyd@gnu.org>
12868
12869 * progmodes/autoconf.el (autoconf-mode): Fix comment-start-skip
12870 regexp (Bug#10033).
12871
12872 2011-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
12873
12874 * tmm.el (tmm-prompt): Use minibuffer-with-setup-hook (bug#10053).
12875 `completing-read' will remove *Completions* and will preserve
12876 current-buffer for us.
12877 (tmm-add-prompt): Users of *Completions* will always (re)set its
12878 major mode.
12879 (tmm-old-comp-map): Remove.
12880
12881 2011-11-16 Glenn Morris <rgm@gnu.org>
12882
12883 * mail/rmailedit.el: Require rmailmm when compiling.
12884 (rmail-old-mime-state): New declaration.
12885 (rmail-edit-current-message): If editing a mime message,
12886 edit the "raw" message from the mbox buffer.
12887 (rmail-cease-edit): Handle mime messages. (Bug#9840)
12888
12889 2011-11-15 Glenn Morris <rgm@gnu.org>
12890
12891 * mail/rmailmm.el (rmail-mime-toggle-raw): Remove entity arg,
12892 which wasn't being used. Add optional arg to force given state.
12893 (rmail-mime): Add optional arg to force given state.
12894
12895 2011-11-15 Juanma Barranquero <lekktu@gmail.com>
12896
12897 * allout.el (allout-encryption-plaintext-sanitization-regexps):
12898 * frame.el (display-mm-dimensions-alist):
12899 * outline.el (outline-mode-menu-bar-map, outline-move-subtree-up)
12900 (outline-move-subtree-down):
12901 * net/newst-treeview.el (newsticker--treeview-do-get-node-of-feed)
12902 (newsticker--treeview-do-get-node):
12903 * net/quickurl.el (quickurl-list-buffer-name):
12904 * progmodes/dcl-mode.el (dcl-mode):
12905 * progmodes/gdb-mi.el (gdb-mapcar*):
12906 * progmodes/sql.el (sql-mode-oracle-font-lock-keywords): Fix typos.
12907
12908 2011-11-15 Glenn Morris <rgm@gnu.org>
12909
12910 * mail/rmail.el (rmail-file-coding-system): It's only ever used
12911 in a boolean sense, so just make it a boolean, and fix the doc.
12912 (rmail-show-mime-function, rmail-mime-feature)
12913 (rmail-require-mime-maybe): Doc fixes.
12914 (rmail-show-message-1): Check rmail-show-mime-function is non-nil.
12915
12916 * mail/rmailmm.el (rmail-show-mime): Doc fix.
12917
12918 2011-11-15 Juanma Barranquero <lekktu@gmail.com>
12919
12920 * epg.el (epg-start-decrypt, epg-start-verify, epg-start-sign)
12921 (epg-start-encrypt, epg-start-export-keys, epg-start-import-keys)
12922 (epg-start-receive-keys, epg-start-delete-keys, epg-start-sign-keys)
12923 (epg-start-generate-key, epg-context-set-progress-callback): Fix typos.
12924
12925 2011-11-15 Glenn Morris <rgm@gnu.org>
12926
12927 * mail/rmailmm.el (rmail-mime-entity, rmail-mime-entity-segment)
12928 (rmail-mime-shown-mode, rmail-mime-hidden-mode, rmail-mime-raw-mode)
12929 (rmail-mime-toggle-hidden, rmail-mime-insert-tagline)
12930 (rmail-mime-insert-header, rmail-mime-handle, rmail-mime-parse)
12931 (rmail-mime, rmail-show-mime): Doc fixes.
12932
12933 * term/ns-win.el (mode-line-frame-identification):
12934 Leave it alone. (Bug#10051)
12935
12936 * simple.el (mark-whole-buffer): Doc fix. (Bug#10023)
12937
12938 * mail/rmailout.el (rmail-output-to-rmail-buffer):
12939 Handle empty buffers. (Bug#9978)
12940
12941 2011-11-14 Juanma Barranquero <lekktu@gmail.com>
12942
12943 * international/mule.el (define-charset):
12944 * mail/rmailmm.el (rmail-mime-find-header-encoding):
12945 * progmodes/prolog.el (prolog-mode-hook, prolog-inferior-mode-hook):
12946 * progmodes/verilog-mode.el (verilog-backward-token):
12947 * textmodes/ispell.el (lookup-words):
12948 * textmodes/sgml-mode.el (sgml-guess-indent): Fix typos.
12949
12950 2011-11-14 Glenn Morris <rgm@gnu.org>
12951
12952 * progmodes/executable.el
12953 (executable-make-buffer-file-executable-if-script-p):
12954 Handle file-modes returning nil.
12955
12956 * mail/rmailsum.el (rmail-summary): Remove movement to beginning of
12957 message - not necessary, and causes problems. (Bug#9831)
12958
12959 * mail/rmailsum.el (rmail-new-summary): Preserve message number.
12960
12961 * mail/rmail.el (rmail-no-mail-p): Remove mode-line N/M indicator.
12962
12963 * mail/rmailsum.el (rmail-summary, rmail-new-summary)
12964 (rmail-new-summary-1): Allow empty summaries. (Bug#9964)
12965 (rmail-new-summary): Remember that rmail-summary-buffer is buffer-local.
12966
12967 2011-11-12 Martin Rudalics <rudalics@gmx.at>
12968
12969 * window.el (window-resize, delete-window): Use window-splits
12970 variable instead of function.
12971 (window-state-get-1, window-state-put-2, window-state-put):
12972 Don't deal with windows' splits status.
12973
12974 2011-11-12 Glenn Morris <rgm@gnu.org>
12975
12976 * apropos.el (apropos-do-all, apropos-library, apropos-value)
12977 (apropos-documentation): Doc fixes.
12978
12979 2011-11-11 Juanma Barranquero <lekktu@gmail.com>
12980
12981 * progmodes/idlw-shell.el (idlwave-shell-make-new-bp-overlay):
12982 * textmodes/sgml-mode.el (html-tag-help): Fix typos.
12983
12984 2011-11-11 Stefan Monnier <monnier@iro.umontreal.ca>
12985
12986 * electric.el (electric-indent-post-self-insert-function): Make it
12987 possible for a char to only indent in some circumstances.
12988 (electric-indent-mode): Simplify.
12989
12990 2011-11-11 Martin Rudalics <rudalics@gmx.at>
12991
12992 * window.el (windows-with-parameter): Remove unused function.
12993 (windows-at-side): Rename to window-at-side-list.
12994 (window-check, window-atom-check, window-atom-check-1)
12995 (window-side-check, window-size-ignore, window-size-fixed-1)
12996 (window-in-direction-2): Prefix with "window--".
12997 (window-tree-1): Rename to window--subtree, fix doc-string.
12998
12999 2011-11-11 Glenn Morris <rgm@gnu.org>
13000
13001 * subr.el (eval-after-load): If FILE is already loaded,
13002 evaluate FORM before it gets wrapped in more stuff. (Bug#10009)
13003
13004 2011-11-10 Glenn Morris <rgm@gnu.org>
13005
13006 * vc/vc-svn.el (vc-svn-create-repo, vc-svn-modify-change-comment):
13007 Call svn via vc-svn-command rather than vc-do-command.
13008 (vc-svn-command): Add --non-interactive. (Bug#9993)
13009 (vc-svn-update, vc-svn-merge-news): No need for --non-interactive.
13010
13011 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
13012 Add toggle-read-only. (Bug#7292)
13013 * files.el (toggle-read-only): Mention that it should only
13014 be used interactively. (Bug#10006)
13015
13016 2011-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
13017
13018 * progmodes/compile.el (compilation-error-regexp-alist-alist):
13019 Adjust regexp for OCaml warnings.
13020
13021 * electric.el (electric-pair-post-self-insert-function): Let user
13022 turn it off buffer-locally (bug#9932).
13023
13024 * progmodes/python.el (python-beginning-of-statement):
13025 Rewrite (bug#2703).
13026
13027 * progmodes/compile.el: Better handle TABs (bug#9749).
13028 (compilation-internal-error-properties)
13029 (compilation-next-error-function): Obey the target buffer's
13030 compilation-error-screen-columns.
13031
13032 2011-11-09 Juanma Barranquero <lekktu@gmail.com>
13033
13034 * progmodes/meta-mode.el: Remove obsolete comments.
13035 (meta-right-comment-regexp, meta-ignore-comment-regexp):
13036 Fix typos in docstrings.
13037
13038 2011-11-09 Martin Rudalics <rudalics@gmx.at>
13039
13040 * window.el (window-size-fixed-p): Rewrite doc-string.
13041 (window-resizable-p): Rename to window--resizable-p. Update callers.
13042 (window--resizable): New function. Make all callers of
13043 window-resizable call window--resizable instead.
13044 (window-resizable): Rewrite in terms of window--resizable.
13045
13046 2011-11-08 Glenn Morris <rgm@gnu.org>
13047
13048 * progmodes/delphi.el (delphi-mode-syntax-table):
13049 Let define-derived-mode define a proper syntax table. (Bug#9994)
13050
13051 2011-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
13052
13053 * window.el: Stay away from defsubst.
13054 (window-list-no-nils): Remove.
13055 (window-state-get-1, window-state-get): Use backquote instead.
13056
13057 2011-11-08 Thierry Volpiatto <thierry.volpiatto@gmail.com>
13058
13059 * emacs-lisp/find-func.el (find-function-read):
13060 Fix incorrect use of default argument in `completing-read'.
13061
13062 2011-11-08 Martin Rudalics <rudalics@gmx.at>
13063
13064 * window.el (display-buffer-function, special-display-function):
13065 Mention display-buffer-record-window but do not mention
13066 help-setup parameter in doc-strings.
13067 (window-min-delta): Fix doc-string typo.
13068
13069 2011-11-08 Chong Yidong <cyd@gnu.org>
13070
13071 * window.el (window-total-height, window-total-width): Doc fix.
13072 (window-body-size): Move from C.
13073 (window-body-height, window-body-width): Move to C.
13074
13075 2011-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
13076
13077 * window.el: Make special-display like display-buffer-alist (bug#9532).
13078 (display-buffer--special-action): New function, morphed
13079 from display-buffer--special.
13080 (display-buffer): Use it to handle special-display-buffers at higher
13081 priority (just after display-buffer-alist).
13082 (display-buffer-fallback-action, display-buffer--other-frame-action)
13083 (pop-to-buffer-same-window): Remove display-buffer--special.
13084
13085 2011-11-07 Glenn Morris <rgm@gnu.org>
13086
13087 * calendar/cal-menu.el (cal-menu-set-date-title):
13088 Do nothing if not in a calendar. (Bug#9976)
13089
13090 2011-11-07 Stefan Monnier <monnier@iro.umontreal.ca>
13091
13092 * files.el (find-file): Always use selected-window.
13093
13094 2011-11-07 Martin Rudalics <rudalics@gmx.at>
13095
13096 * window.el (window-combinations): Make WINDOW argument
13097 mandatory. Rewrite doc-string.
13098 (walk-window-subtree, window-atom-check, window-min-delta)
13099 (window-max-delta, window--resize-this-window)
13100 (window--resize-root-window-vertically, window-tree)
13101 (balance-windows, window-state-put): Rewrite doc-strings as to
13102 not mention the term "subwindow".
13103 (window--resize-subwindows-skip-p): Rename to
13104 window--resize-child-windows-skip-p.
13105 (window--resize-subwindows-normal): Rename to
13106 window--resize-child-windows-normal.
13107 (window--resize-subwindows): Rename to
13108 window--resize-child-windows.
13109 (window-or-subwindow-p): Rename to window--in-subtree-p.
13110
13111 2011-11-07 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
13112
13113 * mail/rmail.el (rmail-get-new-mail, rmail-insert-inbox-text):
13114 Ensure that mbox format messages end in two newlines (Bug#9974).
13115
13116 2011-11-06 Chong Yidong <cyd@gnu.org>
13117
13118 * window.el (window-combination-p): Function deleted; its
13119 side-effect is not used in any existing code.
13120 (window-combinations, window-combined-p): Call window-*-child
13121 directly.
13122
13123 2011-11-05 Chong Yidong <cyd@gnu.org>
13124
13125 * window.el (window-valid-p): Rename from window-any-p.
13126 (window-size-ignore, window-state-get): Callers changed.
13127 (window-normalize-window): Rename from window-normalize-any-window.
13128 New arg LIVE-ONLY, replacing window-normalize-live-window.
13129 (window-normalize-live-window): Delete.
13130 (window-combination-p, window-combined-p, window-combinations)
13131 (walk-window-subtree, window-atom-root, window-min-size)
13132 (window-sizable, window-sizable-p, window-size-fixed-p)
13133 (window-min-delta, window-max-delta, window-resizable)
13134 (window-resizable-p, window-full-height-p, window-full-width-p)
13135 (window-current-scroll-bars, window-point-1, set-window-point-1)
13136 (window-at-side-p, window-in-direction, window-resize)
13137 (adjust-window-trailing-edge, maximize-window, minimize-window)
13138 (window-deletable-p, delete-window, delete-other-windows)
13139 (record-window-buffer, unrecord-window-buffer)
13140 (switch-to-prev-buffer, switch-to-next-buffer, window--delete)
13141 (quit-window, split-window, window-state-put)
13142 (set-window-text-height, fit-window-to-buffer)
13143 (shrink-window-if-larger-than-buffer): Callers changed.
13144
13145 2011-11-04 Eli Zaretskii <eliz@gnu.org>
13146
13147 * mail/rmail.el (rmail-simplified-subject): Decode subject with
13148 rfc2047-decode-string.
13149 (rmail-mime-toggle-hidden): Declare to avoid byte-compilation
13150 warnings.
13151
13152 * window.el (window-body-height, window-body-width): Mention in
13153 the doc string that the return values are in frame's canonical
13154 units. (Bug#9949)
13155
13156 2011-11-03 Alan Mackenzie <acm@muc.de>
13157
13158 * progmodes/cc-langs.el (c-nonlabel-token-2-key): New variable for
13159 change in cc-engine.el.
13160
13161 2011-11-02 Stefan Monnier <monnier@iro.umontreal.ca>
13162
13163 * window.el (switch-to-buffer): Use `force-same-window' interactively.
13164
13165 2011-11-02 Martin Rudalics <rudalics@gmx.at>
13166
13167 * window.el (quit-window): Call unrecord-window-buffer after
13168 showing another buffer in the window. (Bug#9937)
13169 (bury-buffer): Call switch-to-prev-buffer with second argument `bury'.
13170
13171 2011-11-02 Juanma Barranquero <lekktu@gmail.com>
13172
13173 * vc/vc-bzr.el (vc-bzr-state, vc-bzr-after-dir-status):
13174 Accept status with more than 9 shelves. (Bug#9935)
13175 Reported by Colin D Bennett <colin@gibibit.com>.
13176
13177 2011-11-01 Martin Rudalics <rudalics@gmx.at>
13178
13179 * help.el (with-help-window): Don't reference
13180 temp-buffer-show-specifiers in doc-string.
13181
13182 2011-10-31 Andreas Schwab <schwab@linux-m68k.org>
13183
13184 * subr.el (keymap--menu-item-with-binding): Ignore item if not a
13185 menu-item.
13186
13187 2011-10-30 Vinicius Jose Latorre <viniciusjl@ig.com.br>
13188
13189 * whitespace.el: New version 13.2.2.
13190 (whitespace-newline-mode): Disable properly. Reported by Sarah
13191 <EmacsWiki>.
13192
13193 2011-10-30 Ulf Jasper <ulf.jasper@web.de>
13194
13195 * net/newst-treeview.el: Remove "Time-stamp".
13196 (newsticker--group-manage-orphan-feeds): Do not call
13197 newsticker--treeview-tree-update.
13198 (newsticker-treeview-update, newsticker-treeview):
13199 Call newsticker--treeview-tree-update if necessary.
13200
13201 2011-10-30 Martin Rudalics <rudalics@gmx.at>
13202
13203 * window.el (window-iso-combination-p, window-iso-combined-p)
13204 (window-iso-combinations): Remove "iso-" infix.
13205 Suggested by Chong Yidong.
13206 (window-min-size-1, window-size-fixed-1, window-min-delta-1)
13207 (window-max-delta-1, window-resize, window--resize-siblings)
13208 (window--resize-this-window, adjust-window-trailing-edge)
13209 (split-window, balance-windows-1)
13210 (shrink-window-if-larger-than-buffer):
13211 * calendar/calendar.el (calendar-generate-window):
13212 * help.el (resize-temp-buffer-window): Adjust callers accordingly.
13213
13214 2011-10-30 Stefan Monnier <monnier@iro.umontreal.ca>
13215
13216 * eshell/esh-cmd.el (eshell-rewrite-for-command): Don't modify the list
13217 in place (bug#9907).
13218 (eshell-subcommand-arg-values, eshell-rewrite-named-command)
13219 (eshell-rewrite-if-command, eshell-rewrite-for-command)
13220 (eshell-structure-basic-command, eshell-rewrite-while-command)
13221 (eshell-invokify-arg, eshell-parse-pipeline, eshell-parse-command)
13222 (eshell-parse-subcommand-argument, eshell-parse-lisp-argument)
13223 (eshell-trap-errors, eshell-do-pipelines, eshell-do-eval)
13224 (eshell-do-pipelines-synchronously, eshell-eval-command):
13225 Use backquotes and prefer setq to set.
13226 (eshell-lookup-function, function-p-func, eshell-functionp): Remove.
13227 (eshell-macrop): Use functionp.
13228 (eshell-do-eval): Handle multiple expressions in `while' body.
13229
13230 2011-10-30 Chong Yidong <cyd@gnu.org>
13231
13232 * emulation/viper-cmd.el (viper-exec-change): Use push-mark
13233 instead of set-mark (Bug#9810).
13234
13235 2011-10-30 Chong Yidong <cyd@gnu.org>
13236
13237 * window.el (split-window-below, split-window-right): Rename from
13238 split-window-above-each-other and split-window-side-by-side
13239 respectively. All callers changed.
13240 (split-window-sensibly, split-window-sensibly): Use them.
13241 (split-window-keep-point): Doc fix.
13242
13243 * isearch.el: Add isearch-scroll property to split-window-below
13244 and split-window-right.
13245
13246 * follow.el (follow-mode):
13247 * vc/pcvs-util.el (cvs-pop-to-buffer-same-frame):
13248 * progmodes/ada-xref.el (ada-gdb-application):
13249 * emulation/vip.el (vip-buffer-in-two-windows):
13250 * image-dired.el (image-dired-dired-with-window-configuration):
13251 * dired-x.el (dired-do-find-marked-files):
13252 * dired.el (dired-pop-to-buffer):
13253 * bs.el (bs--show-with-configuration):
13254 * vc/emerge.el (emerge-setup-windows):
13255 * textmodes/two-column.el (2C-two-columns):
13256 * textmodes/reftex-toc.el (reftex-toc):
13257 * progmodes/gdb-mi.el (gdb-setup-windows):
13258 * progmodes/fortran.el (fortran-window-create):
13259 * net/newst-treeview.el (newsticker--treeview-window-init):
13260 * emulation/ws-mode.el (wordstar-C-o-map, wordstar-mode):
13261 * emulation/tpu-edt.el (tpu-gold-map):
13262 * emulation/crisp.el (crisp-mode-map):
13263 * calendar/calendar.el (calendar-basic-setup): Callers changed.
13264
13265 2011-10-29 Chong Yidong <cyd@gnu.org>
13266
13267 * subr.el (y-or-n-p): Add code for batch mode (Bug#9818).
13268
13269 * mouse.el (mouse-yank-primary): Push the mark (Bug#9894).
13270
13271 * textmodes/flyspell.el (flyspell-word): Fix char offset for
13272 forged Ispell output (Bug#7904).
13273
13274 * emacs-lisp/package.el (package-refresh-contents): Add autoload.
13275
13276 2011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
13277
13278 * doc-view.el: Avoid ugly errors about not finding nil.
13279 (doc-view-ghostscript-program, doc-view-dvipdfm-program)
13280 (doc-view-dvipdf-program, doc-view-unoconv-program)
13281 (doc-view-ps2pdf-program, doc-view-pdftotext-program):
13282 Avoid nil or absolute file name as default value.
13283 (doc-view-pdf->txt, doc-view-ps->pdf): Use executable-find here.
13284
13285 2011-10-28 Alan Mackenzie <acm@muc.de>
13286
13287 * progmodes/cc-defs.el (c-version): -> 5.32.2.
13288
13289 2011-10-28 Alan Mackenzie <acm@muc.de>
13290
13291 Amend the handling of c-beginning/end-of-defun in nested declaration
13292 scopes.
13293
13294 * progmodes/cc-vars.el (c-defun-tactic): Move here from
13295 cc-langs.el. Change it to a defcustom.
13296
13297 * progmodes/cc-langs.el (c-defun-tactic): Move this variable to
13298 cc-vars.el.
13299
13300 * progmodes/cc-engine.el (c-beginning-of-statement-1):
13301 Prevent "class foo : bar" being spuriously recognized as a label.
13302
13303 * progmodes/cc-cmds.el (c-narrow-to-most-enclosing-decl-block):
13304 Add parameter `inclusive' (to include enclosing braces in the region).
13305 (c-widen-to-enclosing-decl-scope): New function.
13306 (c-while-widening-to-decl-block): New macro.
13307 (c-beginning-of-defun, c-end-of-defun): Change algorithm to keep going
13308 outward for defun boundaries, and correspondingly change symbol
13309 `respect-enclosure' to `go-outward'.
13310 (c-declaration-limits): Change algorithm to report only the "innermost"
13311 defun's boundaries.
13312
13313 2011-10-28 Deniz Dogan <deniz@dogan.se>
13314
13315 * net/rcirc.el (rcirc-mode): Use hard newlines.
13316
13317 2011-10-28 Alan Mackenzie <acm@muc.de>
13318
13319 Amend to indent and fontify macros "which include their own semicolon"
13320 correctly, using the "virtual semicolon" mechanism.
13321
13322 * progmodes/cc-defs.el: Update "virtual semicolon" comments.
13323
13324 * progmodes/cc-engine.el (c-crosses-statement-barrier-p):
13325 Recode to scan one line at a time rather than having \n and \r
13326 explicitly in c-stmt-delim-chars (for some modes, e.g. AWK).
13327 (c-forward-label): Amend for virtual semicolons.
13328 (c-at-macro-vsemi-p, c-macro-vsemi-status-unknown-p): New functions.
13329
13330 * progmodes/cc-fonts.el (c-font-lock-declarations): Take account
13331 of the new C macros.
13332
13333 * progmodes/cc-langs.el (c-at-vsemi-p-fn):
13334 (c-vsemi-status-unknown-p-fn): Move to earlier in the file.
13335 (c-opt-cpp-symbol, c-line-comment-start-regexp): New language vars.
13336 (c-opt-cpp-macro-define): Make into a full language variable.
13337 (c-stmt-delim-chars, c-stmt-delim-chars-with-comma): Special value for
13338 AWK Mode (including \n, \r) removed, no longer needed.
13339
13340 * progmodes/cc-mode.el (c-mode, c++-mode, objc-mode):
13341 Invoke c-make-macro-with-semi-re.
13342
13343 * progmodes/cc-vars.el (c-macro-with-semi-re):
13344 (c-macro-names-with-semicolon): New variables.
13345 (c-make-macro-with-semi-re): New function.
13346
13347 2011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
13348
13349 * vc/log-edit.el: Fill empty field rather than adding new one.
13350 (log-edit-add-field): New function.
13351 (log-edit-insert-changelog): Use it.
13352
13353 2011-10-28 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
13354
13355 * mail/rmail.el (rmail-mode-map): Add M-C-f as in rmailsum (bug#9802).
13356
13357 2011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
13358
13359 * progmodes/gdb-mi.el: Warn the user when -i=mi is missing.
13360 (gdb--check-interpreter): New function.
13361 (gdb): Use it.
13362
13363 2011-10-27 Glenn Morris <rgm@gnu.org>
13364
13365 * emacs-lisp/cl-extra.el (most-positive-float, most-negative-float)
13366 (least-positive-float, least-negative-float)
13367 (least-positive-normalized-float, least-negative-normalized-float)
13368 (float-epsilon, float-negative-epsilon):
13369 Remove unnecessary declarations.
13370
13371 * emacs-lisp/cl-extra.el (cl-float-limits): Add doc string.
13372 * emacs-lisp/cl.el (most-positive-float, most-negative-float)
13373 (least-positive-float, least-negative-float)
13374 (least-positive-normalized-float, least-negative-normalized-float)
13375 (float-epsilon, float-negative-epsilon): Add doc-strings,
13376 based on those in cl.texi.
13377
13378 * files.el (set-visited-file-name): If the major-mode changed,
13379 reload the local variables. (Bug#9796)
13380
13381 2011-10-27 Chong Yidong <cyd@gnu.org>
13382
13383 * subr.el (change-major-mode-after-body-hook): New hook.
13384 (run-mode-hooks): Run it.
13385
13386 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
13387 Use change-major-mode-before-body-hook.
13388
13389 * simple.el (fundamental-mode):
13390 * emacs-lisp/derived.el (define-derived-mode): Revert 2010-04-28
13391 change introducing fundamental-mode-hook.
13392
13393 2011-10-26 Juanma Barranquero <lekktu@gmail.com>
13394
13395 * term/w32-win.el (w32-default-color-map): Declare obsolete (Bug#9785).
13396
13397 2011-10-26 Michael Albinus <michael.albinus@gmx.de>
13398
13399 * ido.el (ido-file-name-all-completions-1): Do not require
13400 tramp.el explicitly. (Bug#7583)
13401
13402 2011-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
13403
13404 * progmodes/octave-mod.el:
13405 * progmodes/octave-inf.el: Update maintainer.
13406
13407 2011-10-26 Chong Yidong <cyd@gnu.org>
13408
13409 * subr.el (with-wrapper-hook): Rewrite doc.
13410
13411 2011-10-25 Michael Albinus <michael.albinus@gmx.de>
13412
13413 * net/tramp-sh.el (tramp-sh-handle-file-directory-p): Return t for
13414 filenames "/method:foo:". (Bug#9793)
13415
13416 2011-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
13417
13418 * comint.el (comint-get-old-input-default): Fix use-prompt-regexp case
13419 (bug#9865).
13420
13421 2011-10-24 Glenn Morris <rgm@gnu.org>
13422
13423 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix. (Bug#9819)
13424
13425 2011-10-24 Michael Albinus <michael.albinus@gmx.de>
13426
13427 * notifications.el: Add the requirement of a running D-Bus session
13428 bus to the Commentary.
13429
13430 2011-10-24 Juri Linkov <juri@jurta.org>
13431
13432 * isearch.el (isearch-occur): Let-bind `search-spaces-regexp' to
13433 `search-whitespace-regexp' only when `isearch-regexp' is non-nil.
13434 (Bug#9364)
13435
13436 2011-10-24 Juri Linkov <juri@jurta.org>
13437
13438 * info.el (Info-following-node-name-re): Add newline to the list
13439 of allowed characters for leading space. (Bug#9824)
13440
13441 2011-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
13442
13443 * progmodes/octave-inf.el (inferior-octave-mode-map):
13444 Fix C-c C-h binding.
13445 * progmodes/octave-mod.el (octave-help): Remove.
13446
13447 2011-10-23 Michael Albinus <michael.albinus@gmx.de>
13448
13449 Sync with Tramp 2.2.3.
13450
13451 * net/tramp-cache.el (top): Pacify byte-compiler using
13452 `init-file-user' and `site-run-file'.
13453
13454 * net/trampver.el: Update release number.
13455
13456 2011-10-23 Chong Yidong <cyd@gnu.org>
13457
13458 * files.el (toggle-read-only): Remove obsolete comment about
13459 version control.
13460
13461 * vc/vc-hooks.el (vc-toggle-read-only): Make it an obsolete alias
13462 for toggle-read-only. Note that this hasn't called vc-next-action
13463 since 2008-05-02, though it wasn't documented at the time.
13464
13465 * vc/ediff-init.el (ediff-toggle-read-only-function):
13466 Use toggle-read-only.
13467
13468 2011-10-22 Alan Mackenzie <bug-cc-mode@gnu.org>
13469
13470 Fix bug #9560, sporadic wrong indentation; improve instrumentation
13471 of c-parse-state.
13472
13473 * progmodes/cc-engine.el (c-append-lower-brace-pair-to-state-cache):
13474 correct faulty logical expression.
13475 (c-parse-state-state, c-record-parse-state-state):
13476 (c-replay-parse-state-state): New defvar/defuns.
13477 (c-debug-parse-state): Use new functions.
13478
13479 2011-10-22 Martin Rudalics <rudalics@gmx.at>
13480
13481 * mouse.el (mouse-drag-line): Fix minibuffer resizing broken by
13482 last fix. Use window-in-direction correctly.
13483
13484 2011-10-21 Chong Yidong <cyd@gnu.org>
13485
13486 * progmodes/idlwave.el (idlwave-mode):
13487 * progmodes/vera-mode.el (vera-mode): No need to set
13488 require-final-newline; that's done in prog-mode.
13489 Suggested by Stefan Monnier.
13490
13491 2011-10-21 Martin Rudalics <rudalics@gmx.at>
13492
13493 * mouse.el (mouse-drag-window-above)
13494 (mouse-drag-move-window-bottom, mouse-drag-move-window-top)
13495 (mouse-drag-mode-line-1, mouse-drag-header-line)
13496 (mouse-drag-vertical-line-rightward-window): Remove.
13497 (mouse-drag-line): New function.
13498 (mouse-drag-mode-line, mouse-drag-header-line)
13499 (mouse-drag-vertical-line): Call mouse-drag-line.
13500 * window.el (window-at-side-p, windows-at-side): New functions.
13501
13502 2011-10-21 Ulrich Mueller <ulm@gentoo.org>
13503
13504 * tar-mode.el (tar-grind-file-mode):
13505 Fix handling of setuid/setgid, handle sticky bit. (Bug#9817)
13506
13507 2011-10-21 Chong Yidong <cyd@gnu.org>
13508
13509 * progmodes/idlwave.el (idlwave-mode):
13510 * progmodes/vera-mode.el (vera-mode):
13511 Use mode-require-final-newline.
13512
13513 2011-10-20 Glenn Morris <rgm@gnu.org>
13514
13515 * vc/vc.el (vc-next-action): Handle removed directories. (Bug#9781)
13516
13517 2011-10-20 Christoph Scholtes <cschol2112@googlemail.com>
13518
13519 * emulation/cua-base.el (cua-set-mark): Fix case of string.
13520
13521 2011-10-20 Chong Yidong <cyd@gnu.org>
13522
13523 * emulation/cua-base.el (cua-mode):
13524 * mail/footnote.el (footnote-mode):
13525 * mail/mailabbrev.el (mail-abbrevs-mode):
13526 * net/xesam.el (xesam-minor-mode):
13527 * progmodes/bug-reference.el (bug-reference-mode):
13528 * progmodes/cap-words.el (capitalized-words-mode):
13529 * progmodes/compile.el (compilation-minor-mode)
13530 (compilation-shell-minor-mode):
13531 * progmodes/gud.el (gud-tooltip-mode):
13532 * progmodes/hideif.el (hide-ifdef-mode):
13533 * progmodes/idlw-shell.el (idlwave-shell-electric-debug-mode):
13534 * progmodes/subword.el (subword-mode):
13535 * progmodes/vhdl-mode.el (vhdl-electric-mode, vhdl-stutter-mode):
13536 * progmodes/which-func.el (which-function-mode):
13537 * term/tvi970.el (tvi970-set-keypad-mode):
13538 * term/vt100.el (vt100-wide-mode):
13539 * textmodes/flyspell.el (flyspell-mode):
13540 * textmodes/ispell.el (ispell-minor-mode):
13541 * textmodes/nroff-mode.el (nroff-electric-mode):
13542 * textmodes/paragraphs.el (use-hard-newlines):
13543 * textmodes/refill.el (refill-mode):
13544 * textmodes/reftex.el (reftex-mode):
13545 * textmodes/rst.el (rst-minor-mode):
13546 * textmodes/sgml-mode.el (html-autoview-mode)
13547 (sgml-electric-tag-pair-mode):
13548 * textmodes/tex-mode.el (latex-electric-env-pair-mode):
13549 * vc/diff-mode.el (diff-auto-refine-mode, diff-minor-mode):
13550 * emulation/crisp.el (crisp-mode):
13551 * emacs-lisp/eldoc.el (eldoc-mode):
13552 * emacs-lisp/checkdoc.el (checkdoc-minor-mode): Doc fixes for new
13553 minor mode behavior.
13554
13555 2011-10-19 Juri Linkov <juri@jurta.org>
13556
13557 * descr-text.el (describe-char): Add #x2010 and #x2011 to
13558 the list of hard-coded chars with escape-glyph face.
13559
13560 2011-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
13561
13562 * vc/log-edit.el (log-edit-empty-buffer-p): Ignore empty headers.
13563
13564 2011-10-19 Michael Albinus <michael.albinus@gmx.de>
13565
13566 * net/tramp.el (tramp-connectable-p): Make a stronger check on a
13567 running process.
13568
13569 2011-10-19 Glenn Morris <rgm@gnu.org>
13570
13571 * vc/vc-bzr.el (vc-bzr-after-dir-status):
13572 Ignore ignored files. (Bug#9726)
13573
13574 2011-10-19 Chong Yidong <cyd@gnu.org>
13575
13576 Doc fix for minor modes, stating that an omitted argument enables
13577 the mode unconditionally when called from Lisp.
13578
13579 * abbrev.el (abbrev-mode):
13580 * allout.el (allout-mode):
13581 * autoinsert.el (auto-insert-mode):
13582 * autoarg.el (autoarg-mode, autoarg-kp-mode):
13583 * autorevert.el (auto-revert-mode, auto-revert-tail-mode)
13584 (global-auto-revert-mode):
13585 * battery.el (display-battery-mode):
13586 * composite.el (global-auto-composition-mode)
13587 (auto-composition-mode):
13588 * delsel.el (delete-selection-mode):
13589 * desktop.el (desktop-save-mode):
13590 * dired-x.el (dired-omit-mode):
13591 * dirtrack.el (dirtrack-mode):
13592 * doc-view.el (doc-view-minor-mode):
13593 * double.el (double-mode):
13594 * electric.el (electric-indent-mode, electric-pair-mode):
13595 * emacs-lock.el (emacs-lock-mode):
13596 * epa-hook.el (auto-encryption-mode):
13597 * follow.el (follow-mode):
13598 * font-core.el (font-lock-mode):
13599 * frame.el (auto-raise-mode, auto-lower-mode, blink-cursor-mode):
13600 * help.el (temp-buffer-resize-mode):
13601 * hilit-chg.el (highlight-changes-mode)
13602 (highlight-changes-visible-mode):
13603 * hi-lock.el (hi-lock-mode):
13604 * hl-line.el (hl-line-mode, global-hl-line-mode):
13605 * icomplete.el (icomplete-mode):
13606 * ido.el (ido-everywhere):
13607 * image-file.el (auto-image-file-mode):
13608 * image-mode.el (image-minor-mode):
13609 * iswitchb.el (iswitchb-mode):
13610 * jka-cmpr-hook.el (auto-compression-mode):
13611 * linum.el (linum-mode):
13612 * longlines.el (longlines-mode):
13613 * master.el (master-mode):
13614 * mb-depth.el (minibuffer-depth-indicate-mode):
13615 * menu-bar.el (menu-bar-mode):
13616 * minibuf-eldef.el (minibuffer-electric-default-mode):
13617 * mouse-sel.el (mouse-sel-mode):
13618 * msb.el (msb-mode):
13619 * mwheel.el (mouse-wheel-mode):
13620 * outline.el (outline-minor-mode):
13621 * paren.el (show-paren-mode):
13622 * recentf.el (recentf-mode):
13623 * reveal.el (reveal-mode, global-reveal-mode):
13624 * rfn-eshadow.el (file-name-shadow-mode):
13625 * ruler-mode.el (ruler-mode):
13626 * savehist.el (savehist-mode):
13627 * scroll-all.el (scroll-all-mode):
13628 * scroll-bar.el (scroll-bar-mode):
13629 * server.el (server-mode):
13630 * shell.el (shell-dirtrack-mode):
13631 * simple.el (auto-fill-mode, transient-mark-mode)
13632 (visual-line-mode, overwrite-mode, binary-overwrite-mode)
13633 (line-number-mode, column-number-mode, size-indication-mode)
13634 (auto-save-mode, normal-erase-is-backspace-mode, visible-mode):
13635 * strokes.el (strokes-mode):
13636 * time.el (display-time-mode):
13637 * t-mouse.el (gpm-mouse-mode):
13638 * tool-bar.el (tool-bar-mode):
13639 * tooltip.el (tooltip-mode):
13640 * type-break.el (type-break-mode-line-message-mode)
13641 (type-break-query-mode):
13642 * view.el (view-mode):
13643 * whitespace.el (whitespace-mode, whitespace-newline-mode)
13644 (global-whitespace-mode, global-whitespace-newline-mode):
13645 * xt-mouse.el (xterm-mouse-mode): Doc fix.
13646
13647 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
13648 Fix autogenerated docstring.
13649
13650 2011-10-19 Juri Linkov <juri@jurta.org>
13651
13652 * net/browse-url.el (browse-url-can-use-xdg-open): Support LXDE
13653 by checking environment variables "DESKTOP_SESSION" and
13654 "XDG_CURRENT_DESKTOP". (Bug#9779)
13655
13656 2011-10-19 Juri Linkov <juri@jurta.org>
13657
13658 * net/browse-url.el (browse-url-browser-function): Add "Chromium".
13659 (browse-url-chromium-program, browse-url-chromium-arguments):
13660 New defcustoms.
13661 (browse-url-default-browser): Check for `browse-url-chromium' and
13662 call `browse-url-chromium-program'.
13663 (browse-url-chromium): New command. (Bug#9779)
13664
13665 2011-10-18 Juanma Barranquero <lekktu@gmail.com>
13666
13667 * facemenu.el (list-colors-duplicates): On Windows, detect more
13668 duplicates by assuming that only colors matching "^System" are
13669 special "system colors". (Bug#9722)
13670
13671 2011-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
13672
13673 * vc/log-edit.el (log-edit): Add "Author:" header to encourage people
13674 to distinguish the author from the committer.
13675
13676 2011-10-18 Michael Albinus <michael.albinus@gmx.de>
13677
13678 * net/tramp.el (tramp-file-name-handler): Load Tramp packages silently.
13679
13680 2011-10-18 Jirka Kosek <jirka@kosek.cz> (tiny change)
13681
13682 * international/mule.el (sgml-html-meta-auto-coding-function):
13683 Add support for detecting encoding in HTML5 specified only as
13684 <meta charset="UTF-8">. Implementation just makes http-equiv and
13685 content-type parts from HTML4 encoding string optional. (Bug#9716)
13686
13687 2011-10-18 Glenn Morris <rgm@gnu.org>
13688
13689 * vc/vc.el (vc-initial-comment): Mark as obsolete. (Bug#9745)
13690
13691 2011-10-18 Chong Yidong <cyd@gnu.org>
13692
13693 * faces.el (cursor): Doc fix.
13694
13695 2011-10-17 Chong Yidong <cyd@gnu.org>
13696
13697 * font-lock.el (font-lock-maximum-size): Mark as obsolete.
13698
13699 2011-10-17 Ryan Barrett <emacs@ryanb.org> (tiny change)
13700
13701 * dirtrack.el (dirtrack): Support shell buffers with path
13702 prefixes, e.g. tramp-based remote shells. (Bug#9647)
13703
13704 2011-10-17 Teodor Zlatanov <tzz@lifelogs.com>
13705
13706 * json.el: Bump version to 1.3 and note change in History.
13707 (json-alist-p, json-plist-p): Rewrite to avoid recursion.
13708
13709 2011-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
13710
13711 * comint.el (comint-insert-input, comint-send-input)
13712 (comint-get-old-input-default, comint-backward-matching-input)
13713 (comint-next-prompt): Use nil instead of `input' for field property of
13714 past user input (bug#114).
13715
13716 * minibuffer.el (completion--replace): Inherit surrounding properties
13717 (bug#114).
13718 (minibuffer-complete-and-exit): Use it.
13719
13720 * comint.el (comint--table-subvert): Quote the all-completions output
13721 (bug#9160).
13722
13723 2011-10-17 Martin Rudalics <rudalics@gmx.at>
13724
13725 * ido.el (ido-default-buffer-method): Remove redundant :type entry.
13726
13727 * menu-bar.el (menu-bar-file-menu): Add entry for making new
13728 window on right of selected. (Bug#9350) Reword other window
13729 entries and separate them from frame entries.
13730
13731 2011-10-15 Glenn Morris <rgm@gnu.org>
13732
13733 * emacs-lisp/ert.el (ert--explain-equal-rec, ert-select-tests):
13734 Doc fixes.
13735
13736 2011-10-15 Chong Yidong <cyd@stupidchicken.com>
13737
13738 * net/network-stream.el (network-stream-open-starttls):
13739 Improve detection of failure due to lack of TLS support.
13740
13741 * mail/sendmail.el (sendmail-query-once): Tweak prompt message,
13742 putting the input text in front and in bold.
13743
13744 2011-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
13745
13746 * pcmpl-unix.el (pcomplete/ssh): SSH does allow ganging.
13747
13748 * mpc.el (mpc-songs-jump-to): Don't burp if the user clicks in an
13749 empty buffer.
13750
13751 * mouse.el (mouse-drag-mode-line-1): Modify the end-event we pushed on
13752 unread-command-events rather than pushing yet-another event.
13753
13754 2011-10-14 Eli Zaretskii <eliz@gnu.org>
13755
13756 * mail/sendmail.el (sendmail-query-once): Improve the wording of
13757 the explanation of the possible choices. Make the options passed
13758 to completing-read shorter.
13759
13760 2011-10-13 Agustín Martín Domingo <agustin.martin@hispalinux.es>
13761
13762 * textmodes/flyspell.el (flyspell-large-region): Make sure
13763 extended character mode is used if defined (Bug#1339).
13764
13765 2011-10-13 Eli Zaretskii <eliz@gnu.org>
13766
13767 * simple.el (what-cursor-position): Fix the display of the
13768 character info for LRE, LRO, RLE, and RLO characters by appending
13769 an invisible PDF.
13770
13771 2011-10-13 Stefan Monnier <monnier@iro.umontreal.ca>
13772
13773 * emacs-lisp/timer.el (with-timeout): Make sure we cancel the timer
13774 even in case of error; add debug spec; simplify data flow.
13775 (with-timeout-handler): Remove.
13776
13777 2011-10-12 Michael Albinus <michael.albinus@gmx.de>
13778
13779 Fix Bug#6019, Bug#9315.
13780
13781 * files.el (set-auto-mode): Call `file-name-sans-versions' for the
13782 complete `buffer-file-name', the local file name part could look
13783 remotely (for example on VMS).
13784
13785 * net/ange-ftp.el (ange-ftp-run-real-handler): Make it an alias of
13786 `tramp-run-real-handler'.
13787 (ange-ftp-fix-name-for-vms): Handle the case, where `name' is
13788 already quoted by '"'.
13789
13790 * net/tramp.el (tramp-rfn-eshadow-update-overlay): Ignore errors.
13791 Let `file-name-handler-alist' be nil, the local file name part
13792 could look remotely (for example on VMS).
13793
13794 2011-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
13795
13796 * textmodes/flyspell.el (flyspell-word): Move with-local-quit
13797 from here...
13798 (flyspell-post-command-hook): ...to here.
13799
13800 2011-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
13801
13802 * mail/sendmail.el (send-mail-function): Don't use sendmail-query-once
13803 if not needed.
13804 (sendmail-query-once): Remove OS dependencies. Make it a 3-way choice
13805 using completion. Protect against "slow" callers.
13806 Remove the "message hack".
13807
13808 2011-10-11 Juri Linkov <juri@jurta.org>
13809
13810 * isearch.el (isearch-lazy-highlight-word): New variable.
13811 (isearch-lazy-highlight-new-loop, isearch-lazy-highlight-search):
13812 Use it. (Bug#9727)
13813
13814 2011-10-11 Glenn Morris <rgm@gnu.org>
13815
13816 * progmodes/f90.el (f90-next-statement): Ignore preprocessor lines,
13817 like f90-previous-statement does.
13818
13819 2011-10-11 Thierry Volpiatto <thierry.volpiatto@gmail.com>
13820
13821 * eshell/eshell.el (eshell-command): History should be saved
13822 only in interactive use, to avoid error.
13823
13824 2011-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
13825
13826 * minibuffer.el (completion-file-name-table): Fix last change,
13827 i.e. ignore normal errors but not the other ones.
13828
13829 2011-10-10 Martin Rudalics <rudalics@gmx.at>
13830
13831 * window.el (special-display-buffer-names)
13832 (special-display-regexps): Remove some remnants of earlier
13833 changes from doc-strings.
13834 (quit-windows-on): New function.
13835
13836 * vc/vc.el (vc-revert, vc-rollback):
13837 * vc/vc-dispatcher.el (vc-finish-logentry): Call quit-windows-on
13838 instead of deleting windows. (Bug#4557) (Bug#5310) (Bug#5556)
13839 (Bug#6183) (Bug#7074) (Bug#7447)
13840
13841 2011-10-09 Martin Rudalics <rudalics@gmx.at>
13842
13843 * window.el (frame-auto-hide-function): Add version tag.
13844 (Bug#9699)
13845
13846 2011-10-09 Michael Albinus <michael.albinus@gmx.de>
13847
13848 * net/tramp.el (tramp-file-name-handler): Add 'debug to the error
13849 condition.
13850
13851 2011-10-09 Leo Liu <sdl.web@gmail.com>
13852
13853 * mail/smtpmail.el (smtpmail-send-data): Add a missing space.
13854 (Bug#9701)
13855
13856 2011-10-08 Glenn Morris <rgm@gnu.org>
13857
13858 * progmodes/f90.el (f90-calculate-indent): Give preprocessor lines
13859 before the first code statement zero indent. (Bug#9690)
13860
13861 2011-10-08 Chong Yidong <cyd@stupidchicken.com>
13862
13863 * simple.el (count-words-region): Always count in the region.
13864 Report the number of lines and characters too.
13865 (count-words): New command, which counts in the buffer if the
13866 region is inactive, as count-words-region used to.
13867 (count-words--message): New function. Handle plurals.
13868 (count-lines-region): Make it an alias for count-words-region.
13869
13870 * bindings.el (esc-map): Replace count-lines-region with
13871 count-words-region.
13872
13873 2011-10-08 Martin Rudalics <rudalics@gmx.at>
13874
13875 * window.el (window--delete): Delete dedicated frame
13876 unconditionally when argument KILL is non-nil. (Bug#9699)
13877 (switch-to-buffer): Fix doc-string typo.
13878
13879 2011-10-08 Thierry Volpiatto <thierry.volpiatto@gmail.com>
13880
13881 * eshell/eshell.el (eshell-command): Avoid using hooks.
13882
13883 2011-10-07 Chong Yidong <cyd@stupidchicken.com>
13884
13885 * bindings.el ([M-left],[M-right]): Bind to left-word and
13886 right-word respectively.
13887
13888 2011-10-07 Glenn Morris <rgm@gnu.org>
13889
13890 * cus-start.el (debug-on-quit): Fix custom type.
13891
13892 2011-10-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
13893
13894 * subr.el (define-key-after): Clarify that the function is not
13895 useful for non-menu keymaps.
13896
13897 * progmodes/gdb-mi.el (gdb): Fix typo in doc string.
13898
13899 2011-10-06 Thierry Volpiatto <thierry.volpiatto@gmail.com>
13900
13901 * eshell/eshell.el (eshell-command): Enable `eshell-mode' only
13902 in current minibuffer (Fix bug with recursive minibuffers).
13903
13904 2011-10-06 Chong Yidong <cyd@stupidchicken.com>
13905
13906 * progmodes/gdb-mi.el (gdb): Doc fix.
13907
13908 2011-10-05 Martin Rudalics <rudalics@gmx.at>
13909
13910 * window.el (frame-auto-hide-function): New option replacing
13911 frame-auto-delete. Suggested by Stefan Monnier.
13912 (window--delete): Call frame-auto-hide-function instead of
13913 investigating frame-auto-delete.
13914 (window-point-1, set-window-point-1): New functions.
13915 (window-in-direction, record-window-buffer, window-state-get-1)
13916 (display-buffer-record-window): Use window-point-1 instead of
13917 window-point.
13918 (set-window-buffer-start-and-point): Use set-window-point-1.
13919
13920 2011-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
13921
13922 * emacs-lisp/edebug.el: Heed checkdoc recommendations.
13923
13924 2011-10-05 Glenn Morris <rgm@gnu.org>
13925
13926 * progmodes/perl-mode.el (perl-electric-terminator): Doc fix.
13927 (perl-calculate-indent): Suppress scan errors. (Bug#2205)
13928
13929 2011-10-05 Leo Liu <sdl.web@gmail.com>
13930
13931 * subr.el (read-char-choice): Fix argument to buffer-live-p which
13932 works with buffer object.
13933
13934 2011-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
13935
13936 * mpc.el (mpc-tool-bar-map): Add labels.
13937
13938 2011-10-04 Glenn Morris <rgm@gnu.org>
13939
13940 * calendar/holidays.el (calendar-check-holidays): Doc fix.
13941
13942 2011-10-04 Martin Rudalics <rudalics@gmx.at>
13943
13944 * window.el (window--delete): New function.
13945 (frame-auto-delete): Resuscitate option.
13946 (bury-buffer, replace-buffer-in-windows)
13947 (quit-window): Rewrite using window--delete.
13948 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
13949 Pass display-buffer-mark-dedicated to window--display-buffer-2
13950 (Bug#9639).
13951
13952 2011-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
13953
13954 * pcmpl-unix.el (pcomplete/scp): Don't assume pcomplete-all-entries
13955 returns a list (bug#9554). Add remote file name completion.
13956 * comint.el (comint--table-subvert): Curry and get quote&unquote
13957 functions as arguments.
13958 (comint--complete-file-name-data): Adjust call accordingly.
13959 * pcomplete.el (pcomplete--table-subvert): Remove.
13960 (pcomplete-completions-at-point): Use comint--table-subvert instead.
13961
13962 * minibuffer.el (completion-table-case-fold): Use currying.
13963 (completion--styles-type, completion--cycling-threshold-type):
13964 New constants.
13965 (completion-styles, completion-category-overrides)
13966 (completion-cycle-threshold): Use them.
13967 * pcomplete.el (pcomplete-completions-at-point): Adjust call to
13968 completion-table-case-fold.
13969
13970 2011-10-03 Stephen Berman <stephen.berman@gmx.net>
13971
13972 * minibuffer.el (completion-category-overrides): Fix type of styles
13973 and add more user friendly tags (bug#9660).
13974
13975 2011-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
13976
13977 * international/mule-cmds.el: Fix abuses of apply-partially (bug#9661).
13978 (mule-input-method-string): New widget.
13979 (default-input-method, language-info-custom-alist): Use it.
13980
13981 2011-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
13982
13983 * pcomplete.el: Require comint.
13984 (pcomplete--common-suffix): Remove.
13985 (pcomplete--common-quoted-suffix): Use comint--common-suffix instead.
13986 (pcomplete--table-subvert): Sync with comint--table-subvert.
13987 (pcomplete--entries): Use comint-completion-file-name-table.
13988 * comint.el (comint-unquote-filename): Simplify.
13989 (comint-completion-file-name-table): New function (bug#9616).
13990 (comint--complete-file-name-data): Use it.
13991
13992 * pcmpl-gnu.el (pcmpl-gnu-with-file-buffer): New macro (bug#9643).
13993 (pcmpl-gnu-tar-buffer): Remove.
13994 (pcmpl-gnu-with-file-buffer): Use it to avoid leaving the tar's buffer
13995 around. Make sure pcomplete-suffix-list is only changed temporarily.
13996 Don't look inside the tar's file if it's too large.
13997
13998 2011-10-01 Chong Yidong <cyd@stupidchicken.com>
13999
14000 * cus-edit.el (custom-mode-map):
14001 * epa.el (epa-key-list-mode-map):
14002 * man.el (Man-mode-map):
14003 * startup.el (splash-screen-keymap):
14004 * simple.el (special-mode-map): Use scroll-up-command and
14005 scroll-down-command.
14006
14007 * progmodes/idlw-help.el (idlwave-help-mode-map):
14008 * progmodes/ebrowse.el (ebrowse-electric-position-mode-map):
14009 * net/newst-plainview.el (newsticker-mode-map):
14010 * emulation/ws-mode.el (wordstar-mode-map):
14011 * emulation/vi.el (vi-com-map):
14012 * calc/calc-graph.el (calc-graph-show-dumb):
14013 * term/sun.el (terminal-init-sun):
14014 * term/ns-win.el (global-map):
14015 * progmodes/grep.el (grep-mode-map):
14016 * progmodes/ebrowse.el (ebrowse-electric-list-mode-map):
14017 * mail/rmail.el (rmail-mode-map):
14018 * progmodes/cpp.el (cpp-edit-mode-map): Likewise.
14019
14020 * custom.el (custom-safe-themes, load-theme): Treat value of t for
14021 custom-safe-themes as special.
14022
14023 2011-10-01 Julien Danjou <julien@danjou.info>
14024
14025 * notifications.el (notifications-notify): Fix docstring.
14026
14027 2011-10-01 Per Starbäck <per@starback.se>
14028
14029 * pcmpl-gnu.el (pcomplete/tar): Fix tar-header-name call. (Bug#9643)
14030
14031 2011-09-30 Martin Rudalics <rudalics@gmx.at>
14032
14033 * startup.el (command-line-1): Fix last fix by inserting
14034 initial-scratch-message into *scratch* before displaying it.
14035 (Bug#9605) and (Bug#9636)
14036
14037 2011-09-29 Eli Zaretskii <eliz@gnu.org>
14038
14039 * simple.el (line-move): If auto-hscroll-mode is disabled and the
14040 window is hscrolled, move by logical lines. (Bug#9607)
14041 (line-move-visual): Update the doc string to the above effect.
14042
14043 2011-09-29 Martin Rudalics <rudalics@gmx.at>
14044
14045 * window.el (display-buffer-record-window): When WINDOW is the
14046 selected window use `point' instead of `window-point'. (Bug#9626)
14047
14048 * startup.el (command-line-1): Use insert-before-markers when
14049 inserting initial-scratch-message. (Bug#9605)
14050
14051 * help.el (help-window): Remove variable.
14052
14053 2011-09-29 Glenn Morris <rgm@gnu.org>
14054
14055 * pcmpl-cvs.el (pcomplete/cvs): Add "status" handler.
14056
14057 2011-09-29 Juanma Barranquero <lekktu@gmail.com>
14058
14059 * descr-text.el (describe-char-categories): Accept category
14060 descriptions more than one line long.
14061
14062 2011-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
14063
14064 * simple.el (delete-trailing-whitespace): Fix last change.
14065
14066 * progmodes/perl-mode.el (perl-syntax-propertize-function):
14067 Don't confuse "y => 3" as the beginning of a `y' operation.
14068
14069 * emacs-lisp/debug.el (debug-convert-byte-code): Don't assume the
14070 object has more than 4 slots (bug#9613).
14071
14072 2011-09-28 Juanma Barranquero <lekktu@gmail.com>
14073
14074 * subr.el (with-output-to-temp-buffer):
14075 * net/quickurl.el (quickurl, quickurl-browse-url):
14076 Fix typos in docstrings.
14077
14078 2011-09-27 Eli Zaretskii <eliz@gnu.org>
14079
14080 * minibuffer.el (completion-styles)
14081 (completion-category-overrides): Cross reference each other in doc
14082 strings.
14083
14084 2011-09-27 Glenn Morris <rgm@gnu.org>
14085
14086 * pcmpl-cvs.el (pcmpl-cvs-entries): Update for Emacs 22.1 changes
14087 to split-string. (Bug#9606)
14088
14089 2011-09-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
14090
14091 * mail/smtpmail.el (smtpmail-via-smtp): Fix STARTTLS detection
14092 (bug#9615).
14093
14094 2011-09-27 Chong Yidong <cyd@stupidchicken.com>
14095
14096 * emacs-lisp/package.el (list-packages): Fix echo area message.
14097
14098 2011-09-27 Leo Liu <sdl.web@gmail.com>
14099
14100 * ido.el (ido-read-internal): Accept cons cell HIST arg.
14101
14102 2011-09-25 Michael Albinus <michael.albinus@gmx.de>
14103
14104 * net/dbus.el (dbus-unregister-object): Don't release services for
14105 registered signals. (Bug#9581)
14106
14107 2011-09-25 Teodor Zlatanov <tzz@lifelogs.com>
14108
14109 * progmodes/cfengine.el (cfengine-auto-mode): Add convenience
14110 function that picks between cfengine 2 and 3 support
14111 automatically. Update docs accordingly.
14112
14113 2011-09-22 Kenichi Handa <handa@m17n.org>
14114
14115 * language/ind-util.el (indian-tml-base-table): Add TAMIL DIGIT
14116 ZERO.
14117 (indian-itrans-v5-table-for-tamil): New variable.
14118 (indian-tml-itrans-v5-hash): Use the above variable (Bug#9336).
14119
14120 2011-09-22 Ken Manheimer <ken.manheimer@gmail.com>
14121
14122 * allout.el (allout-this-command-hid-stuff): Buffer-local variable
14123 that's true if the current command involved collapsing of text.
14124 It's reset to false at the beginning of the next command.
14125 (allout-post-command-business): Move the cursor to the beginning
14126 of entry if the cursor is hidden and collapsing activity just
14127 happened.
14128
14129 2011-09-24 Chong Yidong <cyd@stupidchicken.com>
14130
14131 * mouse.el (mouse-drag-track): Set scroll-margin to 0 while
14132 tracking (Bug#9541).
14133
14134 2011-09-24 Ulf Jasper <ulf.jasper@web.de>
14135
14136 * net/newst-reader.el (newsticker-html-renderer)
14137 (newsticker-show-news): Automatically load html rendering package
14138 if newsticker-html-renderer is set. Fixes "Warning: defvar ignored
14139 because w3m-fill-column is let-bound" and the error "Symbol's value
14140 as variable is void: w3m-fill-column".
14141
14142 2011-09-24 Michael Albinus <michael.albinus@gmx.de>
14143
14144 * net/dbus.el (dbus-unregister-object): Remove match rule of signals.
14145 Release services only if they are defined. (Bug#9581)
14146
14147 2011-09-23 Richard Stallman <rms@gnu.org>
14148
14149 * textmodes/paragraphs.el (forward-sentence): For backwards case,
14150 distinguish start of paragraph from start of its text.
14151
14152 * mail/emacsbug.el (report-emacs-bug-query-existing-bugs): Autoload.
14153
14154 * mail/rmail.el (rmail-view-buffer-kill-buffer-hook): New function.
14155 (rmail-generate-viewer-buffer): Put that hook on view buffer.
14156 (rmail-mode-kill-buffer-hook): Override that hook, to kill view buffer.
14157
14158 2011-09-23 Andreas Schwab <schwab@linux-m68k.org>
14159
14160 * international/mule-diag.el (mule-diag): Insert a newline after
14161 each fontset description.
14162
14163 2011-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
14164
14165 * simple.el (delete-trailing-whitespace):
14166 Document last change; simplify.
14167
14168 2011-09-23 Peter J. Weisberg <pj@irregularexpressions.net>
14169
14170 * simple.el (delete-trailing-whitespace): Also delete
14171 extra newlines at the end of the buffer.
14172
14173 * textmodes/picture.el: Make motion commands obey shift-select-mode.
14174 (picture-newline): Use forward-line so as to ignore fields.
14175
14176 2011-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
14177
14178 * subr.el (with-wrapper-hook): Fix edebug spec.
14179
14180 2011-09-23 Lars Magne Ingebrigtsen <larsi@gnus.org>
14181
14182 * simple.el (kill-line): Note effect of `show-trailing-whitespace'
14183 (bug#4538).
14184
14185 2011-09-23 Michael Albinus <michael.albinus@gmx.de>
14186
14187 * net/tramp-sh.el (tramp-sh-handle-file-name-all-completions):
14188 Fix nasty bug using wrong cached values.
14189
14190 2011-09-23 Alan Mackenzie <acm@muc.de>
14191
14192 * progmodes/cc-defs.el (c-version): Increase to 5.31.9.
14193
14194 2011-09-23 Chong Yidong <cyd@stupidchicken.com>
14195
14196 * window.el (pop-to-buffer): Ensure right window is selected if we
14197 chose another frame.
14198
14199 2011-09-22 Eli Zaretskii <eliz@gnu.org>
14200
14201 * simple.el (what-cursor-position): Use get-char-property-change
14202 and next-single-char-property-change, to be able to show display
14203 properties that come from overlays as well as text properties.
14204
14205 2011-09-22 Chong Yidong <cyd@stupidchicken.com>
14206
14207 * window.el (pop-to-buffer-same-window): New (reinstated) fun.
14208
14209 * cmuscheme.el (run-scheme, switch-to-scheme):
14210 * cus-edit.el (customize-group, custom-buffer-create)
14211 (customize-browse):
14212 * info.el (info):
14213 * shell.el (shell):
14214 * mail/sendmail.el (mail):
14215 * progmodes/inf-lisp.el (inferior-lisp): Use it (Bug#9532).
14216
14217 2011-09-22 Richard Stallman <rms@gnu.org>
14218
14219 * textmodes/paragraphs.el (forward-sentence): When setting PAR-BEG,
14220 move back only to line beg, don't move back over blank lines.
14221
14222 2011-09-22 Michael Albinus <michael.albinus@gmx.de>
14223
14224 * files.el (copy-directory): Set directory attributes only in case
14225 they could be retrieved from the source directory. (Bug#9565)
14226
14227 2011-09-22 Dima Kogan <dkogan@secretsauce.net> (tiny change)
14228
14229 * progmodes/hideshow.el (hs-looking-at-block-start-p)
14230 (hs-find-block-beginning, hs-hide-level-recursive):
14231 Ignore strings as well as comments. (Bug#9502)
14232
14233 2011-09-22 Andrew Schein <andrew@andrewschein.com> (tiny change)
14234
14235 * progmodes/sql.el (sql-comint-postgres):
14236 Convert port number to a string. (Bug#9566)
14237
14238 2011-09-22 Martin Rudalics <rudalics@gmx.at>
14239
14240 * window.el (quit-window): Undedicate window when switching to
14241 previous buffer. Reported by Thierry Volpiatto
14242 <thierry.volpiatto@gmail.com>.
14243 (special-display-popup-frame): When popping up a new frame reset
14244 its previous buffers to nil. Simplify code.
14245
14246 2011-09-21 Michael Albinus <michael.albinus@gmx.de>
14247
14248 * net/tramp.el (tramp-handle-shell-command): Set process sentinel
14249 and process filter, as done also in `shell-command'.
14250
14251 2011-09-21 Martin Rudalics <rudalics@gmx.at>
14252
14253 * window.el (set-window-buffer-start-and-point):
14254 Call set-window-start with NOFORCE argument t.
14255 Suggested by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
14256 (quit-window): Reword doc-string. Handle new format of
14257 quit-restore parameter. Don't delete window if it has a
14258 previous buffer we can show instead of the present one.
14259 (display-buffer-record-window): Rewrite using a new format for
14260 the quit-restore window parameter
14261 (special-display-popup-frame, display-buffer-same-window)
14262 (display-buffer-reuse-window, display-buffer-pop-up-frame)
14263 (display-buffer-pop-up-window, display-buffer-use-some-window):
14264 Adapt symbol passed to display-buffer-record-window.
14265 * help.el (help-window-setup): Handle new format of quit-restore
14266 parameter.
14267
14268 2011-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
14269
14270 * faces.el (face-list): Fix docstring (bug#9564).
14271
14272 * window.el (display-buffer--action-function-custom-type):
14273 Don't include internal functions in the Custom interface.
14274
14275 2011-09-20 Juri Linkov <juri@jurta.org>
14276
14277 * info.el (Info-history-skip-intermediate-nodes): New defcustom.
14278 (Info-forward-node, Info-backward-node, Info-next-preorder)
14279 (Info-last-preorder): Use it. (Bug#9528)
14280
14281 2011-09-20 Juri Linkov <juri@jurta.org>
14282
14283 * info.el (Info-last-preorder): Visit last menu item only when
14284 `Info-scroll-prefer-subnodes' is non-nil (third test-case of bug#9528).
14285
14286 2011-09-20 Julien Danjou <julien@danjou.info>
14287
14288 * password-cache.el (password-cache-remove): Remove entries even if the
14289 value is nil, so that password with a nil value (negative caching) is
14290 possible to invalidate.
14291
14292 2011-09-20 Lawrence Mitchell <wence@gmx.li>
14293
14294 * progmodes/f90.el (f90-break-line): If breaking inside comment delete
14295 all whitespace around breakpoint. (Bug#9553)
14296 (f90-find-breakpoint): Only break at whitespace inside a comment.
14297
14298 2011-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
14299
14300 * minibuffer.el (completion-file-name-table): Keep track of errors.
14301 (completion-table-with-predicate): Handle the case where pred1 is nil.
14302 * pcomplete.el (pcomplete-completions-at-point): Simplify.
14303
14304 2011-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
14305
14306 * emacs-lisp/debug.el (debugger-args): Give it a docstring.
14307 (debugger-return-value): Signal an error if the debugging context does
14308 not await any return value.
14309
14310 * ps-mule.el (ps-mule-plot-string): Don't inf-loop (bug#5108).
14311 * image-mode.el (image-toggle-display-text)
14312 (image-toggle-display-image): Stay away from evil `intangible'.
14313
14314 2011-09-19 Leo Liu <sdl.web@gmail.com>
14315
14316 * replace.el (occur-revert-arguments): Make it permanent-local.
14317 (occur-mode): Don't call font-lock-defontify.
14318
14319 2011-09-19 Chong Yidong <cyd@stupidchicken.com>
14320
14321 * net/ldap.el (ldap-search-internal): Don't push empty search
14322 result (Bug#9508).
14323
14324 2011-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
14325
14326 * whitespace.el (whitespace-newline-mode): Disable it right (bug#9550).
14327
14328 2011-09-19 Michael Albinus <michael.albinus@gmx.de>
14329
14330 * net/tramp-sh.el (tramp-inline-compress-commands): Add "xz".
14331 Suggested by Liam Stitt <stittl@cuug.ab.ca>.
14332
14333 2011-09-18 Juri Linkov <juri@jurta.org>
14334
14335 * buff-menu.el (Buffer-menu-mode-map):
14336 * dired.el (dired-mode-map):
14337 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map)
14338 (lisp-interaction-mode-map):
14339 * emacs-lisp/package.el (package-menu-mode-map):
14340 * epa.el (epa-key-list-mode-map):
14341 * menu-bar.el (menu-bar-showhide-tool-bar-menu)
14342 (menu-bar-options-menu):
14343 * outline.el (outline-mode-menu-bar-map):
14344 * vc/vc-bzr.el (vc-bzr-shelve-menu-map, vc-bzr-extra-menu-map):
14345 * vc/vc-dir.el (vc-dir-menu-map):
14346 * vc/vc-git.el (vc-git-stash-menu-map, vc-git-extra-menu-map):
14347 Capitalize non-function content words in menu item strings.
14348
14349 * dired.el (dired-mode-map): Add menu item for
14350 `image-dired-dired-toggle-marked-thumbs'.
14351
14352 2011-09-18 Juri Linkov <juri@jurta.org>
14353
14354 * isearch.el (isearch-edit-string): Bind `isearch-new-case-fold'
14355 to `isearch-case-fold-search' and restore its original value
14356 after the `isearch-mode' call.
14357
14358 2011-09-18 Juri Linkov <juri@jurta.org>
14359
14360 * progmodes/grep.el (grep-process-setup): Don't check code for 1
14361 because `zgrep' returns 1 for successful matches (bug#9226).
14362
14363 2011-09-18 Juri Linkov <juri@jurta.org>
14364
14365 * info.el (Info-extract-menu-node-name): Check the second match
14366 for empty string (second test-case of bug#9528).
14367 (Info-last-preorder): Let-bind `Info-history' to nil to not add
14368 intermediate nodes to the history (first test-case of bug#9528).
14369
14370 2011-09-18 Juri Linkov <juri@jurta.org>
14371
14372 * info.el (Info-mode-syntax-table): New variable.
14373 (Info-mode): Set `:syntax-table' to `Info-mode-syntax-table' (bug#3312).
14374
14375 2011-09-18 Juri Linkov <juri@jurta.org>
14376
14377 * info.el (Info-file-supports-index-cookies):
14378 Increment line-beginning-position's arg from 3 to 4 because makeinfo
14379 outputs one more line for long file names (bug#4142).
14380
14381 2011-09-18 Chong Yidong <cyd@stupidchicken.com>
14382
14383 * newcomment.el (comment-normalize-vars): If prompting for
14384 comment-start, set comment-start-skip too (Bug#8424).
14385
14386 2011-09-18 Johan Bockgård <bojohan@gnu.org>
14387
14388 * icomplete.el: Fix previous fix of Bug#5849.
14389 (icomplete-mode): Don't set completion-show-inline-help.
14390 (icomplete-minibuffer-setup): Set completion-show-inline-help
14391 locally during icompletion.
14392
14393 2011-09-18 Chong Yidong <cyd@stupidchicken.com>
14394
14395 * woman.el (woman2-process-escapes): Don't delete unrecognized
14396 escapes (Bug#7843).
14397
14398 * files.el (inhibit-first-line-modes-regexps): Add image files.
14399 (hack-local-variables-prop-line): Return nil for malformed
14400 prop-lines (Bug#9044).
14401
14402 2011-09-18 Michael Albinus <michael.albinus@gmx.de>
14403
14404 * net/tramp.el (top): Don't require 'shell.
14405 (tramp-methods): Fix docstring.
14406 (tramp-get-remote-tmpdir): New defun, moved from tramp-sh.el.
14407 Return complete remote file name. Handle "smb" case.
14408 Use `tramp-tmpdir', if defined for the respective method.
14409 (tramp-make-tramp-temp-file): Adapt call of `tramp-get-remote-tmpdir'.
14410
14411 * net/tramp-compat.el (top): Require 'shell.
14412
14413 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band)
14414 (tramp-maybe-open-connection): Use `tramp-file-name-real-host' for
14415 `tramp-current-host'.
14416 (tramp-get-remote-tmpdir): Remove.
14417
14418 * net/tramp-smb.el (tramp-methods): Add `tramp-remote-shell' and
14419 `tramp-tmpdir' entries.
14420 (tramp-smb-errors): Add "NT_STATUS_IMAGE_ALREADY_LOADED".
14421 (tramp-smb-handle-file-attributes): Ignore errors.
14422 (tramp-smb-wait-for-output): Check also for process end.
14423
14424 2011-09-18 Lars Magne Ingebrigtsen <larsi@gnus.org>
14425
14426 * mail/smtpmail.el (smtpmail-via-smtp): Ignore errors that arise
14427 when sending QUIT (bug#9312).
14428
14429 2011-09-17 Chong Yidong <cyd@stupidchicken.com>
14430
14431 * replace.el (occur-mode-map): Rebind occur-edit-mode to "e" (Bug#8463).
14432 (occur-edit-mode-map): Bind C-c C-c to occur-cease-edit and C-o to
14433 occur-mode-display-occurrence.
14434 (occur-edit-mode): Add usage message.
14435 (occur-cease-edit): New command.
14436 (occur-after-change-function): Use text properties to find the
14437 position of the prefix text.
14438 (occur-engine): Set stickiness of prefix text properties.
14439
14440 2011-09-17 Glenn Morris <rgm@gnu.org>
14441
14442 * progmodes/etags.el (complete-tag):
14443 Fix call to completion-in-region. (Bug#9526)
14444
14445 2011-09-17 Juri Linkov <juri@jurta.org>
14446
14447 * textmodes/ispell.el (ispell-word): Add to the error message
14448 the word, ispell program name and current dictionary (bug#9121).
14449 (ispell-tex-arg-end): Capitalize "error" in the error message.
14450
14451 2011-09-17 Andreas Schwab <schwab@linux-m68k.org>
14452
14453 * emacs-lisp/bytecomp.el (byte-compile-lapcode): Fix overflow
14454 check. (Bug#4251)
14455
14456 2011-09-17 Juri Linkov <juri@jurta.org>
14457
14458 * window.el (window-safe-min-height, window-safe-min-width):
14459 Fix typos (followup to bug#9522).
14460
14461 2011-09-17 Sven Joachim <svenjoac@gmx.de>
14462
14463 * window.el (window-min-width, window-state-put): Fix typos (bug#9522).
14464
14465 2011-09-16 Eli Zaretskii <eliz@gnu.org>
14466
14467 * simple.el (line-move): If goal-column is set, move by logical
14468 lines, not by display lines. (Bug#971)
14469 (next-line, previous-line, goal-column, line-move-visual): Doc fix
14470 to reflect the above change.
14471
14472 2011-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
14473
14474 * image.el (imagemagick-register-types): Use regexp-opt.
14475
14476 2011-09-15 Chong Yidong <cyd@stupidchicken.com>
14477
14478 * window.el (display-buffer-base-action): Rename from
14479 display-buffer-default-action. Make default value empty.
14480 (display-buffer-overriding-action): Convert to defvar.
14481 (display-buffer-fallback-action): New var.
14482
14483 2011-09-15 Chong Yidong <cyd@stupidchicken.com>
14484
14485 * emacs-lisp/package.el (package-alist): Fix risky-local-variable
14486 declaration.
14487 (package--add-to-archive-contents): If there is a duplicate entry
14488 with an older version, remove it.
14489 (package-menu-mark-delete, package-menu-mark-install)
14490 (package-menu-mark-unmark): Make unused args optional.
14491 (package-menu-mark-obsolete-for-deletion):
14492 Use package-menu-get-status instead of a regexp search.
14493 (package-menu-get-status): Use tabulated-list-entry.
14494 (package-menu-mark-upgrades): New command.
14495 (package-menu-mode-map): Bind it to U. Add it to menu bar.
14496 (package-menu-execute): Do installation before deletion.
14497 (package-menu-refresh, package-menu-execute): Use derived-mode-p
14498 instead of checking major-mode.
14499 (package-menu--find-upgrades): New function.
14500
14501 2011-09-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
14502
14503 * mail/smtpmail.el (smtpmail-send-command): Don't include AUTH
14504 passwords in the log buffer.
14505 (smtpmail-process-filter): Update the process marker so that the
14506 "broken by peer" status message is inserted in the right place.
14507
14508 2011-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
14509
14510 * textmodes/bibtex.el (bibtex-complete-string-cleanup)
14511 (bibtex-complete-crossref-cleanup): Adjust to accommodate needs of
14512 bibtex-completion-at-point-function.
14513 (bibtex-completion-at-point-function): Use them.
14514
14515 * newcomment.el (comment-add, comment-valid-prefix-p): Docfix.
14516
14517 * mpc.el (mpc-constraints-tag-lookup): New function.
14518 (mpc-constraints-restore): Use it to make jumping to "album=Foo" apply
14519 also to browser "album|playlist".
14520
14521 2011-09-14 Juri Linkov <juri@jurta.org>
14522
14523 * isearch.el (isearch-fail-pos): Add new arg `msg'. Doc fix.
14524 (isearch-edit-string): Use length of `isearch-string' when
14525 `isearch-fail-pos' returns nil.
14526 (isearch-message): Remove duplicate code and call
14527 `isearch-fail-pos' with arg `t'.
14528
14529 2011-09-14 Chong Yidong <cyd@stupidchicken.com>
14530
14531 * replace.el (occur-mode-goto-occurrence): Don't force using other
14532 window (Bug#9499).
14533
14534 * dired-aux.el (dired-do-chmod): Don't provide initial input.
14535
14536 2011-09-14 Martin Rudalics <rudalics@gmx.at>
14537
14538 * window.el (display-buffer-window): Remove.
14539 (display-buffer-record-window): Use help-setup window parameter
14540 instead of variable display-buffer-window.
14541 (display-buffer-function, special-display-buffer-names)
14542 (special-display-function): Mention help-setup parameter instead
14543 of display-buffer-window in doc-string.
14544 * help.el (help-window-setup): New argument help-window.
14545 Use help-window-setup parameter instead of display-buffer-window.
14546 Reword some messages.
14547 (with-help-window): Pass window used for displaying the buffer
14548 to help-window-setup. Don't set display-buffer-window.
14549
14550 2011-09-13 Glenn Morris <rgm@gnu.org>
14551
14552 * emacs-lisp/debug.el (debugger-make-xrefs):
14553 Preserve point. (Bug#9462)
14554
14555 2011-09-13 Chong Yidong <cyd@stupidchicken.com>
14556
14557 * window.el (window-deletable-p): Use next-frame.
14558
14559 2011-09-13 Martin Rudalics <rudalics@gmx.at>
14560
14561 * window.el (window-auto-delete): Remove.
14562 (window-deletable-p): Remove argument FORCE. Don't deal with
14563 dedication and previous buffers.
14564 (switch-to-prev-buffer): Don't delete window.
14565 (delete-windows-on): Delete a window's frame if and only if the
14566 window is dedicated.
14567 (replace-buffer-in-windows): Delete buffer's window or frame if
14568 and only if window is dedicated.
14569 (quit-window): Handle quit-restore as before last change.
14570 (bury-buffer): Delete window only if window-deletable-p returns t.
14571
14572 2011-09-13 Chong Yidong <cyd@stupidchicken.com>
14573
14574 * window.el (window-deletable-p): Never delete the last frame on a
14575 given terminal.
14576
14577 2011-09-13 Glenn Morris <rgm@gnu.org>
14578
14579 * help.el (describe-key-briefly): Copy previous standard-output change.
14580
14581 2011-09-13 PJ Weisberg <pj@irregularexpressions.net>
14582
14583 * help.el (where-is): Respect non-standard standard-output. (Bug#9030)
14584
14585 2011-09-13 Glenn Morris <rgm@gnu.org>
14586
14587 * emacs-lisp/lisp-mode.el (lisp-indent-function):
14588 * progmodes/scheme.el (scheme-indent-function): Doc fixes.
14589
14590 2011-09-12 Chong Yidong <cyd@stupidchicken.com>
14591
14592 * dired-aux.el (dired-mark-read-string): Don't return default
14593 value on empty input (Bug#9361).
14594 (dired-do-chxxx): Treat empty input for "touch" as no -t option.
14595 Omit initial minibuffer contents.
14596 (dired-do-chmod): Signal an error on empty input.
14597 (dired-mark-read-string): Don't return default on empty input.
14598
14599 * files.el (file-modes-symbolic-to-number): Doc fix.
14600
14601 2011-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
14602
14603 * international/mule-cmds.el (ucs-completions): Remove.
14604 (read-char-by-name): Use complete-with-action instead; add metadata.
14605
14606 2011-09-11 Chong Yidong <cyd@stupidchicken.com>
14607
14608 * window.el (display-buffer--action-function-custom-type)
14609 (display-buffer--action-custom-type): New vars.
14610 (display-buffer-alist, display-buffer-default-action)
14611 (display-buffer-overriding-action): Add defcustom types.
14612
14613 * frame.el (delete-other-frames): Doc fix (Bug#276).
14614
14615 2011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
14616
14617 * play/doctor.el (make-doctor-variables): Define `doctor-sent'.
14618
14619 2011-09-11 Chong Yidong <cyd@stupidchicken.com>
14620
14621 Change modes that used same-window-* vars to use switch-to-buffer.
14622
14623 * progmodes/gdb-mi.el (gdb-restore-windows, gdb-setup-windows):
14624 Use switch-to-buffer.
14625
14626 * cus-edit.el (customize-group, custom-buffer-create)
14627 (customize-browse, custom-buffer-create-other-window):
14628 Use switch-to-buffer or switch-to-buffer-other-window.
14629
14630 * info.el (info, Info-find-node, Info-revert-find-node, Info-next)
14631 (Info-prev, Info-up, Info-speedbar-goto-node)
14632 (info-display-manual): Use switch-to-buffer.
14633 (Info-speedbar-goto-node): Use switch-to-buffer-other-frame.
14634
14635 * mail/sendmail.el (mail): Use switch-to-buffer.
14636 (mail-recover): Use switch-to-buffer-other-window.
14637
14638 * cmuscheme.el (run-scheme, switch-to-scheme):
14639 * ielm.el (ielm):
14640 * shell.el (shell):
14641 * net/rlogin.el (rlogin):
14642 * net/telnet.el (telnet, rsh):
14643 * progmodes/inf-lisp.el (inferior-lisp): Use switch-to-buffer.
14644
14645 2011-09-11 Andreas Schwab <schwab@linux-m68k.org>
14646
14647 * dired.el (dired-sort-toggle-or-edit): Revert last changes.
14648
14649 2011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
14650
14651 * dired.el (dired-sort-toggle-or-edit): -o doesn't exist on *BSD,
14652 so don't mention it (bug#9301).
14653 (dired-sort-toggle-or-edit): Clarify string further.
14654
14655 * faces.el (face-spec-set-match-display): Make `(type graphic)'
14656 match `x', `w32' and `ns', like the manual says (bug#9029).
14657
14658 * subr.el (eval-after-load): Doc string clarification (bug#9125).
14659 (process-kill-buffer-query-function): Mention the buffer name in
14660 the query.
14661
14662 * image-mode.el (image-next-line): The line parameter is mandatory
14663 (bug#9258).
14664
14665 * dired.el (dired-sort-toggle-or-edit): Mention -o and -g, too,
14666 which can be useful (bug#9301).
14667
14668 * textmodes/flyspell.el: Remove obsolete comment (bug#9368).
14669
14670 * subr.el (match-string): Mention that the current buffer should
14671 be the same as the search was done in (bug#9282).
14672
14673 * facemenu.el: Disable the remove-* commands if the mark isn't
14674 active (bug#9162).
14675
14676 2011-09-10 Chong Yidong <cyd@stupidchicken.com>
14677
14678 * buff-menu.el (Buffer-menu-switch-other-window): Use second arg
14679 of display-buffer.
14680 (Buffer-menu-2-window): Use switch-to-buffer-other-window.
14681
14682 * replace.el (occur-mode-goto-occurrence)
14683 (occur-mode-display-occurrence) Use second arg of pop-to-buffer
14684 and display-buffer.
14685
14686 * mail/reporter.el (reporter-submit-bug-report): Use second arg of
14687 display-buffer.
14688
14689 * mail/sendmail.el (sendmail-user-agent-compose): Don't bind the
14690 special-display and same-window variables.
14691 (mail-other-window): Use switch-to-buffer-other-window.
14692 (mail-other-frame): USe switch-to-buffer-other-frame.
14693
14694 * progmodes/gdb-mi.el (gdb-frame-gdb-buffer):
14695 Use display-buffer-other-frame.
14696 (gdb-display-gdb-buffer): Use pop-to-buffer.
14697
14698 * progmodes/gud.el (gud-goto-info): Use info-other-window.
14699
14700 * progmodes/python.el: Don't set same-window-buffer-names.
14701
14702 * textmodes/bibtex.el (bibtex-search-entry): Use switch-to-buffer.
14703
14704 * window.el (display-buffer-alist): Add *Python*.
14705
14706 2011-09-10 Chong Yidong <cyd@stupidchicken.com>
14707
14708 * window.el (display-buffer-alist): Add entry for buffers
14709 previously handled same-window-*.
14710 (display-buffer-alist, display-buffer-default-action)
14711 (display-buffer-overriding-action): Mark as risky.
14712 (display-buffer-alist): Document action function changes.
14713 (display-buffer--same-window-action)
14714 (display-buffer--other-frame-action): New variables.
14715 (switch-to-buffer, display-buffer-other-frame): Use them.
14716 (display-buffer): Rename reuse-frame entry to reusable-frames.
14717 (display-buffer-reuse-selected-window): Function deleted.
14718 (display-buffer-reuse-window): Handle reusable-frames alist entry.
14719 If it's omitted, check pop-up-frames/display-buffer-reuse-frames.
14720 (display-buffer-special): New function.
14721 (display-buffer--maybe-pop-up-frame-or-window): Rename from
14722 display-buffer-reuse-or-pop-window. Split off special-display
14723 part into display-buffer-special.
14724 (display-buffer-use-some-window): Don't perform any special
14725 pop-up-frames handling.
14726 (pop-to-buffer): Use window-normalize-buffer-to-switch-to.
14727 (display-buffer--maybe-same-window): Rename from
14728 display-buffer-maybe-same-window.
14729
14730 * info.el: Don't set same-window-regexps.
14731 (info-setup): New function.
14732 (info-other-window, info): Call it.
14733
14734 * cus-edit.el: Don't set same-window-regexps.
14735 (customize-group): New argument.
14736 (customize-group-other-window): Use it.
14737 (customize-face, customize-face-other-window): Likewise.
14738 (custom-buffer-create-other-window): Use pop-to-buffer directly.
14739
14740 * net/rlogin.el:
14741 * net/telnet.el:
14742 * progmodes/gud.el: Don't set same-window-regexps.
14743
14744 * cmuscheme.el:
14745 * ielm.el:
14746 * shell.el:
14747 * mail/sendmail.el:
14748 * progmodes/inf-lisp.el: Don't set same-window-buffer-names.
14749
14750 2011-09-10 Juri Linkov <juri@jurta.org>
14751
14752 * isearch.el (isearch-edit-string): Remove obsolete mention of
14753 `C-w' (`isearch-yank-word-or-char') from docstring.
14754 (isearch-query-replace): Fix typo in docstring (bug#9466).
14755
14756 2011-09-10 Juri Linkov <juri@jurta.org>
14757
14758 * paren.el (show-paren-function): Don't show escaped parens.
14759 Let-bind `unescaped' to `t' when paren is not escaped. (Bug#9461)
14760
14761 2011-09-10 Eli Zaretskii <eliz@gnu.org>
14762
14763 * mail/sendmail.el (mml-to-mime, mml-attach-file)
14764 (mm-default-file-encoding): Remove autoload forms, they are
14765 replaced with autoload cookies in mml.el and mm-encode.el.
14766 (mail-add-attachment): New command.
14767 (mail-mode-map): Add a menu-bar item for mail-add-attachment.
14768 (mail-mode): Mention mail-insert-file and mail-add-attachment in
14769 the doc string.
14770 (mml-to-mime, mml-attach-file, mm-default-file-encoding): Declare.
14771
14772 2011-09-10 Reuben Thomas <rrt@sc3d.org>
14773
14774 * simple.el (count-words-region): Use buffer if there's no region
14775 (bug#9429).
14776
14777 2011-09-09 Juri Linkov <juri@jurta.org>
14778
14779 * wdired.el (wdired-change-to-wdired-mode): Set buffer-local
14780 `isearch-filter-predicate' to `wdired-isearch-filter-read-only'.
14781 (wdired-isearch-filter-read-only): New function. (Bug#6362)
14782
14783 2011-09-09 Alan Mackenzie <acm@muc.de>
14784
14785 * progmodes/cc-mode.el (awk-mode): Prevent `define-derived-mode'
14786 spuriously generating `awk-mode-syntax-table'. (Bug #9448).
14787
14788 2011-09-09 Eli Zaretskii <eliz@gnu.org>
14789
14790 Fix for Savannah bug#9392.
14791 * simple.el (mail-encode-mml): New defvar.
14792
14793 * mail/rmail.el (mail-encode-mml): Add a defvar.
14794 (rmail-enable-mime-composing): Default to t.
14795 (rmail-forward): Use MIME method of forwarding only if both
14796 rmail-enable-mime-composing and rmail-enable-mime are non-nil.
14797 Set mail-encode-mml non-nil if the MIME method was used.
14798
14799 * mail/sendmail.el (mml-to-mime): Add autoload form.
14800 (mail-encode-mml): Add a defvar.
14801 (mail-mode): Make mail-encode-mml buffer-local and initialize it
14802 to nil.
14803 (mail-send): If mail-encode-mml is non-nil, run the outgoing
14804 message through mml-to-mime, and reset mail-encode-mml to nil.
14805
14806 2011-09-09 Glenn Morris <rgm@gnu.org>
14807
14808 * woman.el (woman-if-body): When processing an .el block,
14809 do not delete the next .el block as well. (Bug#9447)
14810 (woman-special-characters): Add oq, cq, and hy characters.
14811
14812 2011-09-08 Martin Rudalics <rudalics@gmx.at>
14813
14814 * window.el (window-deletable-p): Make sure window is live before
14815 invoking window-prev-buffers.
14816
14817 2011-09-08 Leo Liu <sdl.web@gmail.com>
14818
14819 * net/rcirc.el (rcirc-cmd-invite): New rcirc command. (Bug#9453)
14820
14821 2011-09-08 Juri Linkov <juri@jurta.org>
14822
14823 * progmodes/compile.el (compilation-environment): Make it
14824 a defcustom (bug#8340).
14825
14826 2011-09-08 Martin Rudalics <rudalics@gmx.at>
14827
14828 * window.el (frame-auto-delete): Rename to window-auto-delete.
14829 Make it control auto-deletion of windows and/or frames.
14830 (window-deletable-p): New argument FORCE. Rewrite conditions
14831 for deleting window/frame. (Bug#9419)
14832 (switch-to-prev-buffer, replace-buffer-in-windows, quit-window):
14833 Rewrite handling of case when window/frame can be deleted.
14834 (delete-windows-on): Call window-deletable-p with new FORCE
14835 argument t. (Bug#9456)
14836
14837 2011-09-07 Chong Yidong <cyd@stupidchicken.com>
14838
14839 * help-mode.el (help-mode): Restore autoload.
14840
14841 2011-09-07 Juri Linkov <juri@jurta.org>
14842
14843 * progmodes/compile.el (compilation-start): Let-bind `thisenv' to
14844 `compilation-environment'. Set buffer-local
14845 `compilation-environment' to `thisenv' later after (funcall mode).
14846 (Bug#8340)
14847
14848 * vc/vc-git.el (vc-git-grep): Remove --no-color. (Bug#9408)
14849 (vc-git-grep): Prepend "PAGER=" to `compilation-environment'
14850 instead of replacing its value. (Bug#8340)
14851
14852 2011-09-07 Juri Linkov <juri@jurta.org>
14853
14854 * progmodes/grep.el (grep-regexp-alist): Calculate column positions
14855 based on text properties put by `grep-filter' instead of matching
14856 escape sequences.
14857 (grep-mode): Set buffer-local `compilation-error-screen-columns'
14858 to the value of `grep-error-screen-columns' (bug#9438).
14859
14860 2011-09-07 Juri Linkov <juri@jurta.org>
14861
14862 * simple.el (next-error-highlight, next-error-highlight-no-select):
14863 Doc fix (bug#9432).
14864
14865 2011-09-07 OKAZAKI Tetsurou <okazaki.tetsurou@gmail.com> (tiny change)
14866
14867 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
14868 Check for null c-opt-block-decls-with-vars-key. (Bug#9443)
14869
14870 2011-09-07 Leo Liu <sdl.web@gmail.com>
14871
14872 * net/rcirc.el (rcirc-mode): Conditionally initialize
14873 rcirc-input-ring.
14874
14875 2011-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
14876
14877 * emacs-lisp/find-func.el (find-function-C-source): Only set
14878 find-function-C-source-directory after checking that we found a source
14879 file there (bug#9440).
14880
14881 2011-09-06 Alan Mackenzie <acm@muc.de>
14882
14883 * isearch.el (isearch-other-meta-char): Wherever a key list is
14884 unread, "unread" the prefix arg, too. This fixes bug #8901.
14885
14886 2011-09-05 Oleksandr Gavenko <gavenkoa@gmail.com> (tiny change)
14887
14888 * progmodes/grep.el (rgrep): Add "-type d" (bug#9414).
14889
14890 2011-09-05 Juri Linkov <juri@jurta.org>
14891
14892 * progmodes/grep.el (grep-process-setup): Fix comments (bug#8084).
14893
14894 2011-09-05 Juri Linkov <juri@jurta.org>
14895
14896 * progmodes/grep.el (grep-filter): Avoid incomplete processing by
14897 keeping point where processing of grep matches begins, and
14898 continue to delete remaining escape sequences from the same point.
14899 (grep-filter): Make leading zero optional in "0?1;31m" because
14900 git-grep emits "\033[1;31m" escape sequences unlike expected
14901 "\033[01;31m" as GNU Grep does (bug#9408).
14902 (grep-process-setup): Replace obsolete "ml=" with newer "sl=".
14903
14904 2011-09-05 Juri Linkov <juri@jurta.org>
14905
14906 * subr.el (y-or-n-p): Capitalize "yes".
14907
14908 2011-09-04 Michael Albinus <michael.albinus@gmx.de>
14909
14910 * net/tramp.el (top): Require 'shell. Use `tramp-unload-hook' but
14911 `tramp-cache-unload-hook' where appropriate.
14912 (tramp-methods): Rename `tramp-remote-sh' to
14913 `tramp-remote-shell'. Add `tramp-remote-shell-args'.
14914 (tramp-handle-shell-command): New defun, moved from tramp-sh.el.
14915
14916 * net/tramp-sh.el (top): Don't require 'shell.
14917 (tramp-methods): Add `tramp-remote-shell' and
14918 `tramp-remote-shell-args' entries.
14919 (tramp-sh-file-name-handler-alist): Use `tramp-handle-shell-command'.
14920 (tramp-sh-handle-shell-command): Remove.
14921 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
14922 Use `tramp-remote-shell'.
14923
14924 2011-09-03 Chong Yidong <cyd@stupidchicken.com>
14925
14926 * mail/sendmail.el (sendmail-query-once-function): Delete.
14927 (sendmail-query-once): Save directly to send-mail-function.
14928 Update message-send-mail-function too.
14929
14930 * mail/smtpmail.el (smtpmail-try-auth-methods): Clarify prompt.
14931
14932 2011-09-03 Christoph Scholtes <cschol2112@googlemail.com>
14933
14934 * progmodes/python.el (python-mode-map): Use correct function to
14935 start python interpreter from menu-bar (as reported by Geert
14936 Kloosterman).
14937 (inferior-python-mode-map): Fix typo.
14938 (python-shell-map): Remove.
14939
14940 2011-09-03 Deniz Dogan <deniz@dogan.se>
14941
14942 * net/rcirc.el (rcirc-print): Simplify code for
14943 rcirc-scroll-show-maximum-output. There is no need to walk
14944 through all windows to find the right one.
14945
14946 2011-09-03 Christoph Scholtes <cschol2112@googlemail.com>
14947
14948 * help.el (help-return-method): Doc fix.
14949
14950 2011-09-03 Martin Rudalics <rudalics@gmx.at>
14951
14952 * window.el (window-deletable-p): Don't return a non-nil value
14953 when there's a buffer that was shown in the window before.
14954 (Bug#9419)
14955 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
14956 Set window's previous buffers to nil.
14957
14958 2011-09-03 Eli Zaretskii <eliz@gnu.org>
14959
14960 * mail/rmailmm.el (rmail-mime-insert-tagline): Insert an extra
14961 newline before and after the tag line, so it doesn't interfere
14962 with determining the paragraph direction of bidirectional text.
14963
14964 2011-09-03 Leo Liu <sdl.web@gmail.com>
14965
14966 * files.el (find-file-not-true-dirname-list): Remove. (Bug#9422)
14967
14968 2011-09-02 Chong Yidong <cyd@stupidchicken.com>
14969
14970 * window.el (pop-to-buffer-1, pop-to-buffer-same-window): Delete.
14971 (pop-to-buffer): Change interactive spec. Pass second argument
14972 directly to display-buffer.
14973 (display-buffer): Fix interactive spec. Use functionp to
14974 distinguish between a function and a list of functions.
14975
14976 * abbrev.el (edit-abbrevs):
14977 * arc-mode.el (archive-extract):
14978 * autoinsert.el (auto-insert):
14979 * bookmark.el (bookmark-bmenu-list):
14980 * files.el (find-file):
14981 * view.el (view-buffer):
14982 * progmodes/compile.el (compilation-goto-locus):
14983 * textmodes/bibtex.el (bibtex-initialize): Use switch-to-buffer.
14984
14985 2011-09-02 Chong Yidong <cyd@stupidchicken.com>
14986
14987 * window.el (display-buffer-alist): Doc fix.
14988 (display-buffer): Add docstring. Don't treat
14989 display-buffer-default specially.
14990 (display-buffer-reuse-selected-window)
14991 (display-buffer-same-window, display-buffer-maybe-same-window)
14992 (display-buffer-reuse-window, display-buffer-pop-up-frame)
14993 (display-buffer-pop-up-window)
14994 (display-buffer-reuse-or-pop-window)
14995 (display-buffer-use-some-window): New functions.
14996 (display-buffer-default-action): Use them.
14997 (display-buffer-default): Delete.
14998 (pop-to-buffer-1): Fix choice of actions.
14999
15000 2011-09-02 Stefan Monnier <monnier@iro.umontreal.ca>
15001
15002 * minibuffer.el (completion--insert-strings): Don't get confused by
15003 completion entries that end with an LF char.
15004
15005 2011-09-01 Eli Zaretskii <eliz@gnu.org>
15006
15007 * window.el (frame-auto-delete, window-deletable-p): Doc fix.
15008
15009 2011-09-01 Chong Yidong <cyd@stupidchicken.com>
15010
15011 * window.el (display-buffer): Restore interactive spec.
15012 (display-buffer-same-window, display-buffer-other-window):
15013 New functions.
15014 (pop-to-buffer-1): New function. Use the above.
15015 (pop-to-buffer, pop-to-buffer-same-window): Use it.
15016 (pop-to-buffer-other-window, pop-to-buffer-other-frame): Delete.
15017
15018 * view.el (view-buffer-other-window, view-buffer-other-frame):
15019 Just use pop-to-buffer.
15020
15021 2011-09-01 Thierry Volpiatto <thierry.volpiatto@gmail.com>
15022
15023 * vc/vc-rcs.el (vc-rcs-responsible-p): Handle directories. (Bug#9391)
15024
15025 2011-09-01 Wilfred Hughes <wilfred@potatolondon.com> (tiny change)
15026
15027 * vc/vc-git.el (vc-git-grep): Use --no-color. (Bug#9408)
15028
15029 2011-08-31 Richard Stallman <rms@gnu.org>
15030
15031 * mail/rmail.el (rmail-epa-decrypt): Rewrite to take account
15032 of the separation of rmail-view-buffer from rmail-buffer.
15033 If you say no to "replace original", the decrypt is in the
15034 view buffer. If you say yes, the decrypt goes into the
15035 rmail buffer also.
15036
15037 2011-08-31 Martin Rudalics <rudalics@gmx.at>
15038
15039 * window.el (display-buffer-window): Rewrite doc-string.
15040 (display-buffer-record-window): New function.
15041 (display-buffer-macro-specifiers)
15042 (display-buffer-even-window-sizes, display-buffer-set-height)
15043 (display-buffer-set-width, display-buffer-in-window)
15044 (display-buffer-reuse-window, display-buffer-split-specifiers)
15045 (display-buffer-side-specifiers, display-buffer-split-window-1)
15046 (display-buffer-split-window, display-buffer-split-atom-window)
15047 (display-buffer-pop-up-window, display-buffer-pop-up-frame)
15048 (display-buffer-pop-up-side-window, display-buffer-in-side-window)
15049 (display-buffer-other-window-means-other-frame)
15050 (display-buffer-normalize-special)
15051 (display-buffer-normalize-default)
15052 (display-buffer-normalize-argument)
15053 (display-buffer-normalize-alist-1, display-buffer-normalize-alist)
15054 (display-buffer-normalize-specifiers, display-buffer-frame)
15055 (display-buffer-same-window, display-buffer-same-frame)
15056 (display-buffer-other-window)
15057 (display-buffer-same-frame-other-window)
15058 (display-buffer-other-frame, pop-to-buffer-same-window)
15059 (pop-to-buffer-same-frame, pop-to-buffer-other-window)
15060 (pop-to-buffer-same-frame-other-window, pop-to-buffer-other-frame)
15061 (switch-to-buffer-same-frame)
15062 (switch-to-buffer-other-window-same-frame)
15063 (display-buffer-alist-of-strings-p, display-buffer-alist-add)
15064 (display-buffer-alist-set-1, display-buffer-alist-set-2)
15065 (display-buffer-alist-set): Remove.
15066 (display-buffer-function, special-display-buffer-names)
15067 (special-display-regexps, special-display-function):
15068 In doc-string refer to display-buffer-window and quit-restore
15069 parameter.
15070 (pop-up-frame-alist, pop-up-frame-function, special-display-p)
15071 (special-display-frame-alist, special-display-popup-frame)
15072 (same-window-buffer-names, same-window-regexps, same-window-p)
15073 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
15074 (split-window-preferred-function, split-height-threshold)
15075 (split-width-threshold, window-splittable-p)
15076 (split-window-sensibly, window--try-to-split-window)
15077 (window--frame-usable-p, even-window-heights)
15078 (window--even-window-heights, window--display-buffer-1)
15079 (window--display-buffer-2, display-buffer-other-frame):
15080 Restore old Emacs 23 code, order and doc-strings where applicable.
15081 (display-buffer-default, display-buffer-assq-regexp): New functions.
15082 (display-buffer-alist): Rewrite doc-string.
15083 (display-buffer-default-action)
15084 (display-buffer-overriding-action): New variables.
15085 (display-buffer, switch-to-buffer): Rewrite.
15086 (pop-to-buffer): Restore Emacs 23 behavior but use
15087 window-normalize-buffer-to-display.
15088 (switch-to-buffer-other-window, switch-to-buffer-other-frame):
15089 Restore Emacs 23 behavior but use
15090 window-normalize-buffer-to-switch-to.
15091 (pop-to-buffer-same-window): Rewrite.
15092 (pop-to-buffer-other-window, pop-to-buffer-other-frame):
15093 Rewrite using Emacs 23 options.
15094
15095 2011-08-31 Michael Albinus <michael.albinus@gmx.de>
15096
15097 * net/tramp.el (tramp-root-regexp): Remove.
15098 (tramp-completion-file-name-regexp-unified)
15099 (tramp-completion-file-name-regexp-separate)
15100 (tramp-completion-file-name-regexp-url): Don't use leading volume
15101 letter on w32 systems. (Bug#5303, Bug#9311)
15102 (tramp-drop-volume-letter): Simplify definition.
15103 Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
15104
15105 2011-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
15106
15107 * subr.el (event-modifiers): Fix "missing modifier" part of docstring
15108 (bug#9356).
15109
15110 2011-08-30 Reuben Thomas <rrt@sc3d.org> (tiny change)
15111
15112 * vc/pcvs-defs.el (cvs-find-file-and-jump): Docstring typo (bug#9369).
15113
15114 2011-08-29 Juri Linkov <juri@jurta.org>
15115
15116 * isearch.el (isearch-done): Don't display message "Mark saved"
15117 when arg `edit' is non-nil to prevent its flicker in the echo area.
15118
15119 2011-08-28 Chong Yidong <cyd@stupidchicken.com>
15120
15121 * emacs-lisp/package.el (package-menu-mark-delete): Allow marking
15122 obsolete packages for deletion.
15123
15124 2011-08-28 Christoph Scholtes <cschol2112@googlemail.com>
15125
15126 * help-mode.el (help-mode-map): Add special-mode-map to parent.
15127 (help-mode): Derive help-mode from special-mode. Don't invoke
15128 view-mode from help-mode.
15129 (help-xref-override-view-map): Remove.
15130 (help-make-xrefs): Remove minor-mode-overriding-map-alist since
15131 view-mode is not used anymore.
15132
15133 2011-08-28 Chong Yidong <cyd@stupidchicken.com>
15134
15135 * server.el (server-port): Doc fix.
15136
15137 * cus-theme.el (custom-theme-choose-mode): Inherit from
15138 special-mode (Bug#9124).
15139 (custom-theme-choose-mode-map): Add special-mode to parent.
15140
15141 2011-08-28 Alan Mackenzie <acm@muc.de>
15142
15143 * progmodes/cc-fonts.el
15144 (c-make-font-lock-BO-decl-search-function): New function.
15145 (c-basic-matchers-after - "Fontify the clauses after various
15146 keywords"): Extract the three keyword lists for the 3 erroneous
15147 constructs from the list of four, and use the new function above
15148 in place of an old one.
15149
15150 2011-08-28 Deniz Dogan <deniz@dogan.se>
15151
15152 * net/rcirc.el (rcirc-insert-prev-input)
15153 (rcirc-insert-next-input): Remove unused argument.
15154
15155 2011-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
15156
15157 * shell.el (shell-parse-pcomplete-arguments): Unquote args (bug#9160).
15158
15159 2011-08-27 Alan Mackenzie <acm@muc.de>
15160
15161 * progmodes/cc-menus.el (cc-imenu-c++-generic-expression): Make it
15162 handle function pointer parameters properly.
15163
15164 2011-08-27 Martin Rudalics <rudalics@gmx.at>
15165
15166 * window.el (display-buffer-reuse-window): Fix case where
15167 selected window was reused with non-nil OTHER-WINDOW argument.
15168 (Bug#9381)
15169
15170 2011-08-27 Deniz Dogan <deniz@dogan.se>
15171
15172 * net/rcirc.el (rcirc-check-auth-status): Adding support for
15173 oftc's NickServ messages.
15174
15175 2011-08-27 Glenn Morris <rgm@gnu.org>
15176
15177 * saveplace.el (save-place-limit): Make it finite. (Bug#9352)
15178
15179 2011-08-26 Chong Yidong <cyd@stupidchicken.com>
15180
15181 * emacs-lisp/package.el (package-install): Call package-initialize
15182 if called interactively.
15183
15184 2011-08-26 Leo Liu <sdl.web@gmail.com>
15185
15186 * emacs-lisp/cl-macs.el (defstruct): Fix format. (Bug#9357)
15187
15188 2011-08-25 Juri Linkov <juri@jurta.org>
15189
15190 * isearch.el (isearch-occur): Let-bind `search-spaces-regexp' to
15191 `search-whitespace-regexp' (bug#9364).
15192
15193 2011-08-25 Juri Linkov <juri@jurta.org>
15194
15195 * isearch.el (isearch-edit-string): Let-bind `search-ring' and
15196 `regexp-search-ring' to their global values to protect from
15197 updating by `read-from-minibuffer' (bug#9185).
15198
15199 2011-08-25 Juri Linkov <juri@jurta.org>
15200
15201 * textmodes/ispell.el (ispell-command-loop): Add newline
15202 at the end of the "Use option `i'..." line.
15203
15204 2011-08-25 Juri Linkov <juri@jurta.org>
15205
15206 * battery.el (display-battery-mode): If `battery-status-function'
15207 or `battery-mode-line-format' is nil, display the message and set
15208 `display-battery-mode' to nil (bug#9363).
15209
15210 2011-08-25 Eli Zaretskii <eliz@gnu.org>
15211
15212 * buff-menu.el (Buffer-menu-buffer+size): Remove calls to
15213 bidi-string-mark-left-to-right; they are unnecessary now.
15214
15215 2011-08-25 Deniz Dogan <deniz@dogan.se>
15216
15217 * net/quickurl.el: Documentation typo fixes.
15218
15219 2011-08-25 Chong Yidong <cyd@stupidchicken.com>
15220
15221 * window.el (bury-buffer, quit-window): Use bury-buffer-internal.
15222
15223 2011-08-25 Glenn Morris <rgm@gnu.org>
15224
15225 * emacs-lisp/derived.el (define-derived-mode): Doc fix.
15226
15227 * mail/smtpmail.el (smtpmail-smtp-user): Add version: tag.
15228 (smtpmail-via-smtp): Handle nil response from smtp.
15229
15230 2011-08-24 Juri Linkov <juri@jurta.org>
15231
15232 * proced.el (proced-marked): Inherit from `error' instead of
15233 `font-lock-warning-face'.
15234
15235 * ibuffer.el (ibuffer-marked-face): Change default face from
15236 `font-lock-warning-face' to `warning'.
15237 (ibuffer-deletion-face): Change default face from
15238 `font-lock-type-face' to `error'.
15239
15240 * battery.el (battery-update): Use the face `error' instead of
15241 `font-lock-warning-face' (bug#6117).
15242
15243 2011-08-24 Juri Linkov <juri@jurta.org>
15244
15245 * faces.el (success): Change face color from "Green3" to
15246 "ForestGreen" on light background (bug#9353).
15247
15248 2011-08-24 Chong Yidong <cyd@stupidchicken.com>
15249
15250 * window.el (quit-window): Rename from quit-restore-window.
15251 Use same arglist as old quit-window.
15252 (frame-auto-delete): Doc fix.
15253
15254 * view.el (view-mode-exit): Use quit-window.
15255
15256 2011-08-24 Juri Linkov <juri@jurta.org>
15257
15258 * isearch.el (isearch-ring-adjust1): Start visiting previous
15259 search strings from the index 0 (-1 + 1) instead of 1 (0 + 1).
15260 (isearch-repeat, isearch-edit-string): Call `isearch-ring-adjust1'
15261 for empty search string (when the last search string is reused
15262 automatically) to adjust the isearch ring to the last element and
15263 prepare the correct index for further M-p commands (bug#9185).
15264
15265 2011-08-24 Kenichi Handa <handa@m17n.org>
15266
15267 * international/ucs-normalize.el: If decomposition property of
15268 CHAR is the default one (i.e. a list of CHAR itself), treat it as
15269 nil.
15270 (nfd, nfkd): Likewise.
15271
15272 2011-08-24 Stefan Monnier <monnier@iro.umontreal.ca>
15273
15274 * mpc.el (mpc--proc-filter): Don't signal mpc-proc-error since signals
15275 from process filters aren't reliably transmitted to the surrounding
15276 accept-process-output.
15277 (mpc-proc-check): New function.
15278 (mpc-proc-sync): Use it (bug#8293)
15279
15280 2011-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
15281
15282 * emacs-lisp/eieio.el (eieio-defmethod, eieio-defgeneric):
15283 Add compatibility functions (bug#9313).
15284
15285 2011-08-23 Eli Zaretskii <eliz@gnu.org>
15286
15287 * cus-start.el (all): Add entry for bidi-paragraph-direction.
15288
15289 * international/uni-bidi.el: Regenerate.
15290
15291 2011-08-23 Kenichi Handa <handa@m17n.org>
15292
15293 * international/charprop.el:
15294 * international/uni-bidi.el:
15295 * international/uni-category.el:
15296 * international/uni-combining.el:
15297 * international/uni-comment.el:
15298 * international/uni-decimal.el:
15299 * international/uni-decomposition.el:
15300 * international/uni-digit.el:
15301 * international/uni-lowercase.el:
15302 * international/uni-mirrored.el:
15303 * international/uni-name.el:
15304 * international/uni-numeric.el:
15305 * international/uni-old-name.el:
15306 * international/uni-titlecase.el:
15307 * international/uni-uppercase.el: Regenerate.
15308
15309 2011-08-23 Martin Rudalics <rudalics@gmx.at>
15310
15311 * help.el (help-window-setup): Fix message displayed when other
15312 window is reused. (Bug#9341)
15313
15314 2011-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
15315
15316 * shell.el (shell-completion-vars): Set pcomplete-arg-quote-list.
15317 * pcomplete.el (pcomplete-quote-argument): Fix thinko (bug#9161).
15318
15319 * pcomplete.el (pcomplete-parse-comint-arguments): Fix inf-loop.
15320 Mark obsolete.
15321 * shell.el (shell-parse-pcomplete-arguments): New function.
15322 (shell-completion-vars): Use it instead (bug#9160).
15323
15324 2011-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
15325
15326 * progmodes/sh-script.el (sh-maybe-here-document): Disable magic in
15327 strings and comments (bug#9333).
15328
15329 * emacs-lisp/debug.el (debug-arglist): New function.
15330 (debug-convert-byte-code): Use it. Handle lexical byte-codes.
15331 (debug-on-entry-1): Handle interpreted closures (bug#9120).
15332
15333 2011-08-22 Juri Linkov <juri@jurta.org>
15334
15335 * progmodes/compile.el (compilation-mode-font-lock-keywords):
15336 Revert regexp that highlights output switches to its old
15337 pre-2010-10-28 value and remove one `?' from it (bug#9319).
15338
15339 * progmodes/grep.el (grep-process-setup): Use `buffer-modified-p'
15340 to check for empty output (bug#9226).
15341
15342 2011-08-22 Chong Yidong <cyd@stupidchicken.com>
15343
15344 * progmodes/scheme.el (scheme-mode-syntax-table): Don't use
15345 symbol-constituent as the default, as that stops font-lock from
15346 working properly (Bug#8843).
15347
15348 2011-08-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
15349
15350 * mail/smtpmail.el (smtpmail-via-smtp): Only bind
15351 `coding-system-for-*' around the process open call to avoid
15352 auth-source side effects.
15353 (smtpmail-try-auth-methods): Expand the secret password.
15354 (smtpmail-query-smtp-server): Allow `quit'-ing out in case the
15355 probe hangs.
15356
15357 2011-08-21 Chong Yidong <cyd@stupidchicken.com>
15358
15359 * term.el (term-mouse-paste): Yank primary selection (Bug#6845).
15360
15361 * emacs-lisp/find-func.el (find-function-noselect): New arg
15362 lisp-only.
15363
15364 * emacs-lisp/edebug.el (edebug-instrument-function): Use it to
15365 signal an error for built-in functions (Bug#6664).
15366
15367 2011-08-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
15368
15369 * mail/smtpmail.el (smtpmail-smtp-user): New variable.
15370 (smtpmail-try-auth-methods): Use it.
15371
15372 2011-08-21 Chong Yidong <cyd@stupidchicken.com>
15373
15374 * font-lock.el (font-lock-fontify-region)
15375 (font-lock-unfontify-region, font-lock-default-fontify-buffer)
15376 (font-lock-default-unfontify-buffer)
15377 (font-lock-default-fontify-region)
15378 (font-lock-default-unfontify-region): Add docstrings (Bug#8624).
15379
15380 * progmodes/compile.el (compilation-error-properties):
15381 Fix confusion between file struct and message struct (Bug#9319).
15382 (compilation-error-regexp-alist-alist): Fix 2011-05-09 change to
15383 `ant' regexp.
15384
15385 * net/browse-url.el (browse-url-firefox): Don't call
15386 browse-url-firefox-sentinel unless using -remote (Bug#9328).
15387
15388 2011-08-20 Glenn Morris <rgm@gnu.org>
15389
15390 * tutorial.el (help-with-tutorial): Avoid an error on short screens.
15391
15392 * tutorial.el (tutorial--default-keys): Update some default bindings.
15393
15394 * files.el (hack-local-variables): Fully ignore case for "mode:".
15395
15396 2011-08-20 Alan Mackenzie <acm@muc.de>
15397
15398 Resolve invalid use of a regexp in regexp-opt.
15399
15400 * progmodes/cc-fonts.el (c-complex-decl-matchers): Add in special
15401 detection for a java annotation.
15402
15403 * progmodes/cc-engine.el (c-forward-decl-or-cast-1): Add in special
15404 detection for a java annotation.
15405
15406 * progmodes/cc-langs.el (c-prefix-spec-kwds-re): Remove the special
15407 handling for java.
15408 (c-modifier-kwds): Remove the regexp "@[A-za-z0-9]+".
15409
15410 2011-08-20 Chong Yidong <cyd@stupidchicken.com>
15411
15412 * startup.el (normal-top-level-add-subdirs-to-load-path): Doc fix
15413 (Bug#9274).
15414
15415 2011-08-20 Alan Mackenzie <acm@muc.de>
15416
15417 Fontify CPP expressions correctly when starting in the middle of
15418 such a construct. Mainly for when jit-lock etc. starts a chunk
15419 here.
15420
15421 * progmodes/cc-fonts.el (c-font-lock-context): New buffer local
15422 variable.
15423 (c-make-font-lock-search-form): New function, extracted from
15424 c-make-font-lock-search-function.
15425 (c-make-font-lock-search-function): Use the above function.
15426 (c-make-font-lock-context-search-function): New function.
15427 (c-cpp-matchers): Enhance the preprocessor expression case with
15428 the above function
15429 (c-font-lock-complex-decl-prepare): Test for being in a CPP form
15430 which takes an expression.
15431
15432 * progmodes/cc-langs.el (c-cpp-expr-intro-re): New lang-variable.
15433
15434 2011-08-20 Martin Rudalics <rudalics@gmx.at>
15435
15436 * window.el (display-buffer-reuse-window)
15437 (display-buffer-pop-up-window): Don't reuse or split a side
15438 window.
15439
15440 2011-08-19 Glenn Morris <rgm@gnu.org>
15441
15442 * files.el (hack-local-variables-prop-line, hack-local-variables):
15443 Downcase "Mode:". (Bug#9331)
15444
15445 2011-08-18 Chong Yidong <cyd@stupidchicken.com>
15446
15447 * international/characters.el: Add L and R categories.
15448
15449 * subr.el (bidi-string-mark-left-to-right): Rename from
15450 string-mark-left-to-right. Use category search.
15451
15452 * buff-menu.el (Buffer-menu-buffer+size): Callers changed.
15453
15454 2011-08-18 Juri Linkov <juri@jurta.org>
15455
15456 * faces.el (error, warning, success): New faces with definitions
15457 copied from old default values of `font-lock-warning-face',
15458 `compilation-warning', `compilation-info' (bug#6117).
15459
15460 * font-lock.el (font-lock-warning-face): Inherit from `error'.
15461
15462 * progmodes/compile.el (compilation-error): Inherit from `error'.
15463 (compilation-warning): Inherit from `warning'.
15464 (compilation-info): Inherit from `success'.
15465
15466 * dired.el (dired-marked): Inherit from `warning'.
15467 (dired-flagged): Inherit from `error'.
15468
15469 2011-08-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
15470
15471 * mail/smtpmail.el (auth-source): Require to avoid problems with
15472 binding variables (bug#9298). Also clean up some unused
15473 autoloads.
15474
15475 * net/network-stream.el (network-stream-open-starttls):
15476 Support using starttls.el without using gnutls-cli.
15477
15478 2011-08-17 Juri Linkov <juri@jurta.org>
15479
15480 * progmodes/grep.el (rgrep): Handle the case when
15481 `grep-find-command' is a cons cell (bug#9278).
15482
15483 2011-08-17 Martin Rudalics <rudalics@gmx.at>
15484
15485 * window.el (display-buffer-pop-up-frame): Run frame creation
15486 function with BUFFER current (as special-display-popup-frame
15487 does). Reported by Drew Adams.
15488
15489 2011-08-17 Daiki Ueno <ueno@unixuser.org>
15490
15491 * epa-mail.el: Simplify GnuPG group expansion using
15492 epg-expand-group.
15493 (epa-mail-group-alist, epa-mail-group-modtime)
15494 (epa-mail-gnupg-conf-file, epa-mail-parse-groups)
15495 (epa-mail-sync-groups, epa-mail-expand-recipient-1)
15496 (epa-mail-expand-recipients-2, epa-mail-expand-recipients):
15497 Remove.
15498
15499 2011-08-16 Feng Li <fengli@gmail.com> (tiny change)
15500
15501 * calc/calc-ext.el (math-defintegral-2): Remove nested backquote.
15502
15503 2011-08-16 Alan Mackenzie <acm@muc.de>
15504
15505 * progmodes/cc-engine.el (c-state-cache-non-literal-place):
15506 Correct, to avoid the inside of macros.
15507
15508 2011-08-16 Richard Stallman <rms@gnu.org>
15509
15510 * epa-mail.el: Handle GnuPG group definitions.
15511 (epa-mail-group-alist, epa-mail-group-modtime)
15512 (epa-mail-gnupg-conf-file): New variables.
15513 (epa-mail-parse-groups, epa-mail-sync-groups)
15514 (epa-mail-expand-recipient-1, epa-mail-expand-recipients-2)
15515 (epa-mail-expand-recipients): New functions.
15516 (epa-mail-encrypt): Call epa-mail-expand-recipients.
15517
15518 * mail/rmail.el (rmail-epa-decrypt): New command.
15519
15520 * epa.el (epa-decrypt-region): New arg MAKE-BUFFER-FUNCTION.
15521 Don't bind buffer-read-only, just inhibit-read-only.
15522 (epa--find-coding-system-for-mime-charset): Fix the non-xemacs case.
15523 (epa-decrypt-armor-in-region): Make error message clearer.
15524
15525 2011-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
15526
15527 * minibuffer.el (completion-pcm--merge-completions): Don't merge "a1b"
15528 and "a2b" to "ab" for `prefix'.
15529
15530 2011-08-14 Chong Yidong <cyd@stupidchicken.com>
15531
15532 * ibuf-ext.el (ibuffer-filter-disable): New arg for deleting
15533 filter groups.
15534 (ibuffer-included-in-filter-p-1): Use it. Suggested by Rafaël
15535 Fourquet (Bug#8804).
15536
15537 2011-08-12 Juanma Barranquero <lekktu@gmail.com>
15538
15539 * startup.el (argi): Declare as global variable (bug#9275).
15540
15541 2011-08-12 Chong Yidong <cyd@stupidchicken.com>
15542
15543 * subr.el (string-mark-left-to-right): Search the entire string
15544 for RTL script, not just the terminating character. Doc fix.
15545
15546 2011-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
15547
15548 * progmodes/js.el (js-syntax-propertize, js-syntax-propertize-regexp):
15549 New function.
15550 (js--regexp-literal, js-syntax-propertize-function): Remove.
15551 (js-mode): Use js-syntax-propertize to handle multilines (bug#9183).
15552 (js-mode-map): Don't rebind electric keys.
15553 (js-insert-and-indent): Remove.
15554 (js-mode): Setup electric-layout and electric-indent instead.
15555
15556 * epa-file.el (epa-file-select-keys): Revert to nil default (bug#9280).
15557
15558 2011-08-12 Daiki Ueno <ueno@unixuser.org>
15559
15560 * epa.el (epa-progress-callback-function): Fix the logic of
15561 displaying progress.
15562 * epa-file.el (epa-file-insert-file-contents): Make progress
15563 display more user-friendly.
15564 (epa-file-write-region): Ditto.
15565
15566 2011-08-10 Chong Yidong <cyd@stupidchicken.com>
15567
15568 * subr.el (string-mark-left-to-right): New function.
15569
15570 * buff-menu.el (Buffer-menu-buffer+size): Remove LRM argument.
15571 Use string-mark-left-to-right.
15572 (list-buffers-noselect): Caller changed.
15573
15574 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
15575 Use string-mark-left-to-right.
15576 (tabulated-list-print): Recenter after moving point.
15577
15578 2011-08-10 Juri Linkov <juri@jurta.org>
15579
15580 * progmodes/grep.el (rgrep): Don't bind `process-connection-type'.
15581 This finishes incomplete reversion of 2011-06-30T01:09:13Z!larsi@gnus.org
15582 intended by 2011-07-06T15:49:19Z!larsi@gnus.org.
15583
15584 2011-08-09 Chong Yidong <cyd@stupidchicken.com>
15585
15586 * hi-lock.el (hi-lock-unface-buffer): Fix interactive spec
15587 (Bug#7554).
15588
15589 2011-08-09 Andreas Schwab <schwab@linux-m68k.org>
15590
15591 * xt-mouse.el (xterm-mouse-event-read): Try to recover the raw
15592 character. (Bug#6594)
15593
15594 2011-08-08 Chong Yidong <cyd@stupidchicken.com>
15595
15596 * image-dired.el: Don't use find-file for temporary work (Bug#7895).
15597 (image-dired--with-db-file): New macro.
15598 (image-dired-write-tags, image-dired-remove-tag)
15599 (image-dired-create-gallery-lists, image-dired-write-comments)
15600 (image-dired-get-comment, image-dired-mark-tagged-files)
15601 (image-dired-list-tags, image-dired-gallery-generate): Use it.
15602 (image-dired-gallery-generate): Use insert-file-contents.
15603
15604 * time.el (display-time-world-list, display-time-world-display):
15605 * time-stamp.el (time-stamp-string):
15606 * vc/add-log.el (add-change-log-entry): Use setenv instead of
15607 set-time-zone-rule (Bug#7337).
15608
15609 2011-08-08 Daiki Ueno <ueno@unixuser.org>
15610
15611 * epg.el (epg--status-KEYEXPIRED, epg--status-KEYREVOKED): Fix typo.
15612 (epg-error-to-string, epg-errors-to-string): New function.
15613 (epg-wait-for-completion): Reverse errors list.
15614 (epg--check-error-for-decrypt, epg-sign-file, epg-sign-string)
15615 (epg-encrypt-file, epg-encrypt-string, epg-export-keys-to-file)
15616 (epg--import-keys-1, epg-receive-keys, epg-delete-keys)
15617 (epg-sign-keys, epg-generate-key-from-file)
15618 (epg-generate-key-from-string): Format errors by using
15619 epg-errors-to-string (bug#9255).
15620 (epg--status-INV_SGNR, epg--status-NO_SGNR): New status handler.
15621
15622 2011-08-07 Juri Linkov <juri@jurta.org>
15623
15624 * faces.el (list-faces-display): Remove extra angle bracket
15625 from `help-mode-map'.
15626
15627 * info.el (Info-history-toc-nodes): Doc fix.
15628
15629 * longlines.el (longlines-mode): Doc fix.
15630
15631 2011-08-05 Stefan Monnier <monnier@iro.umontreal.ca>
15632
15633 * progmodes/js.el (js--regexp-literal): Accept regexps at the beginning
15634 of statements and in a few more cases (bug#9183).
15635
15636 * emacs-lisp/cl-macs.el (cl--make-usage-var, cl--make-usage-args):
15637 New functions.
15638 (cl-transform-lambda): Use them (bug#9239).
15639
15640 2011-08-05 Martin Rudalics <rudalics@gmx.at>
15641
15642 * window.el (display-buffer-same-window)
15643 (display-buffer-same-frame, display-buffer-other-window)
15644 (pop-to-buffer-same-window, pop-to-buffer-same-frame)
15645 (pop-to-buffer-other-window)
15646 (pop-to-buffer-same-frame-other-window)
15647 (pop-to-buffer-other-frame): Make them defuns.
15648 (switch-to-buffer): Don't set LABEL argument of pop-to-buffer.
15649
15650 2011-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
15651
15652 * subr.el (make-composed-keymap): Move from C. Change calling
15653 convention, and improve docstring to bring attention to a subtle point.
15654 * minibuffer.el (completing-read-default): Adjust accordingly.
15655
15656 2011-08-03 Michael Albinus <michael.albinus@gmx.de>
15657
15658 * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell)
15659 (tramp-open-shell): Use `tramp-shell-quote-argument'.
15660
15661 * net/trampver.el: Update release number.
15662
15663 2011-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
15664
15665 * progmodes/sh-script.el (sh-font-lock-paren): Don't mistake "main" for
15666 "in" (bug#9190).
15667
15668 2011-08-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
15669
15670 * mail/sendmail.el (sendmail-query-once): Restore the current
15671 buffer after querying (bug#9074).
15672
15673 * dired.el (dired-flagged): Use different faces for marked and
15674 flagged files (bug#6117).
15675
15676 * emacs-lisp/cl-macs.el (dolist): Mention that there's a nil block
15677 (bug#4433).
15678
15679 * ido.el (ido-mode): Switch off the message if called
15680 non-interactively.
15681
15682 * mail/smtpmail.el (smtpmail-query-smtp-server): Try port 25
15683 before 587, since it appears that that's more likely to work for
15684 more people.
15685
15686 * cus-edit.el (custom-file): When running under emacs -q, always
15687 refuse to save the customizations, even if the .emacs file doesn't
15688 exist.
15689
15690 * info.el: Remove the `Info-beginning-of-buffer' function
15691 (bug#8325).
15692
15693 * net/network-stream.el (network-stream-open-starttls):
15694 Use `starttls-available-p' to see whether starttls.el can be used.
15695
15696 2011-08-01 Martin Rudalics <rudalics@gmx.at>
15697
15698 * window.el (display-buffer-in-window): Don't set dedicated status
15699 of window here (Bug#9215).
15700 (display-buffer-pop-up-window, display-buffer-pop-up-frame)
15701 (display-buffer-pop-up-side-window)
15702 (display-buffer-in-side-window): Set dedicated status of window here.
15703
15704 2011-08-01 Stefan Monnier <monnier@iro.umontreal.ca>
15705
15706 * emacs-lisp/package.el (package-generate-autoloads): Load autoloads
15707 before binding generated-autoload-file.
15708
15709 2011-08-01 Deniz Dogan <deniz@dogan.se>
15710
15711 * net/rcirc.el (rcirc-handler-333): Clarify docstring.
15712
15713 2011-07-30 Michael Albinus <michael.albinus@gmx.de>
15714
15715 Sync with Tramp 2.2.2.
15716
15717 * net/trampver.el: Update release number.
15718
15719 2011-07-30 Juri Linkov <juri@jurta.org>
15720
15721 * dired-aux.el (dired-touch-initial): Remove function.
15722 (dired-do-chxxx): For op-symbol `touch', set `initial' to the
15723 current time, and `default' to the last modification time of the
15724 current marked file (bug#6887).
15725
15726 2011-07-28 Jose E. Marchesi <jemarch@gnu.org>
15727
15728 * simple.el (goto-line): Use string-to-number to provide a
15729 numeric argument to read-number (bug#9163).
15730
15731 2011-07-27 Michael Albinus <michael.albinus@gmx.de>
15732
15733 * net/tramp-sh.el (tramp-maybe-send-script): Don't let-bind the
15734 connection process, it could be nil.
15735
15736 2011-07-27 Leo Liu <sdl.web@gmail.com>
15737
15738 Simplify url handling in rcirc-mode.
15739
15740 * net/rcirc.el (rcirc-browse-url-map, rcirc-browse-url-at-point)
15741 (rcirc-browse-url-at-mouse): Remove.
15742 * net/rcirc.el (rcirc-markup-urls): Use `make-button'.
15743
15744 2011-07-26 Alan Mackenzie <acm@muc.de>
15745
15746 Fontify bitfield declarations properly.
15747
15748 * progmodes/cc-langs.el (c-has-bitfields): New lang variable.
15749 (c-symbol-chars): Now exported as a lang variable.
15750 (c-not-primitive-type-keywords): New lang variable.
15751
15752 * progmodes/cc-fonts.el (c-font-lock-declarations): Jump over the
15753 QT keyword "more" to prevent "more slots: ...." being spuriously
15754 parsed as a bitfield declaration.
15755
15756 * progmodes/cc-engine.el (c-beginning-of-statement-1):
15757 Refactor and enhance to handle bitfield declarations.
15758 (c-punctuation-in): New function.
15759 (c-forward-decl-or-cast-1): Enhance CASE 3 to handle bitfield
15760 declarations properly.
15761
15762 2011-07-26 Ulf Jasper <ulf.jasper@web.de>
15763
15764 * calendar/icalendar.el (icalendar--all-events): Take care of
15765 multiple vcalendars in a single file.
15766 (icalendar--convert-float-to-ical): Checkdoc fixes.
15767
15768 2011-07-25 Deniz Dogan <deniz@dogan.se>
15769
15770 * image.el (insert-image): Clarifying docstring.
15771
15772 2011-07-24 Michael Albinus <michael.albinus@gmx.de>
15773
15774 * net/tramp-sh.el (tramp-barf-unless-okay): Return the value of
15775 `tramp-send-command-and-check' if there is no error.
15776 (tramp-send-command-and-read): Suppress *all* errors if NOERROR.
15777
15778 2011-07-22 Alan Mackenzie <acm@muc.de>
15779
15780 Prevent cc-langs.elc being loaded at run time.
15781
15782 * progmodes/cc-mode.el: Remove two autoload forms which loaded
15783 cc-langs.
15784
15785 * progmodes/cc-langs.el (c-make-init-lang-vars-fun): Don't emit
15786 "(require 'cc-langs)". Quote a form so it will evaluate at
15787 (cc-mode's) compilation time.
15788
15789 2011-07-22 Michael Albinus <michael.albinus@gmx.de>
15790
15791 * net/tramp.el (tramp-file-name-handler): Avoid recursive
15792 loading. (Bug#9114)
15793
15794 2011-07-21 Martin Rudalics <rudalics@gmx.at>
15795
15796 * window.el (display-buffer-pop-up-window)
15797 (display-buffer-pop-up-side-window)
15798 (display-buffer-in-side-window): Call display-buffer-set-height
15799 and display-buffer-set-width after setting the new window's
15800 buffer so `fit-window-to-buffer' and friends work on the right buffer.
15801
15802 2011-07-20 Sam Steingold <sds@gnu.org>
15803
15804 * progmodes/etags.el (etags-file-of-tag, etags-tags-table-files)
15805 (etags-tags-included-tables): Call `convert-standard-filename' on
15806 the file names contained in TAGS so that windows Emacs can handle
15807 TAGS files created by cygwin ctags.
15808
15809 2011-07-20 Lars Magne Ingebrigtsen <larsi@gnus.org>
15810
15811 * proced.el (proced-update): Revert yesterday's bug#1779 patch,
15812 which apparently didn't work.
15813
15814 2011-07-19 Roland Winkler <winkler@gnu.org>
15815
15816 * proced.el (proced-send-signal): For *Marked Processes* buffer
15817 put point at beginning of buffer.
15818
15819 2011-07-19 Stephen Berman <stephen.berman@gmx.net>
15820
15821 * proced.el (proced-format): Make header lines align with the text
15822 (bug#1779).
15823
15824 2011-07-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
15825
15826 * view.el (view-buffer): Allow running in `special' modes if we're
15827 visiting a file (bug#8615).
15828
15829 2011-07-19 Martin Rudalics <rudalics@gmx.at>
15830
15831 * window.el (display-buffer-alist-of-strings-p)
15832 (display-buffer-alist-set-1, display-buffer-alist-set-2):
15833 New functions.
15834 (display-buffer-alist-set): Rewrite to handle Emacs 23 options
15835 more accurately.
15836
15837 2011-07-18 Alan Mackenzie <acm@muc.de>
15838
15839 Fontify declarators properly when, e.g., a jit-lock chunk begins
15840 inside a declaration.
15841
15842 * progmodes/cc-langs.el (c-symbol-chars): Correct a typo.
15843
15844 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
15845 New function.
15846 (c-complex-decl-matchers): Insert reference to
15847 c-font-lock-enclosing-decls.
15848
15849 * progmodes/cc-engine.el (c-backward-single-comment):
15850 (c-backward-comments): Bind open-paren-in-column-0-is-defun-start
15851 to nil around calls to (forward-comment -1).
15852
15853 2011-07-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
15854
15855 * image.el (put-image): Doc typo fix.
15856
15857 * progmodes/etags.el (tags-search): Doc typo fix.
15858
15859 * mail/smtpmail.el (smtpmail-via-smtp): Query the user for
15860 password if we get errors 550 to 554.
15861
15862 2011-07-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
15863
15864 * net/gnutls.el (gnutls-log-level): Remove.
15865
15866 * textmodes/fill.el (adaptive-fill-regexp): Include EN DASH as an
15867 indentation character (bug#6380).
15868
15869 * files.el (buffer-offer-save): Made permanently local (bug#6241).
15870
15871 * doc-view.el (doc-view-make-safe-dir): Rewrite the error message
15872 to clarify what the problem is (bug#4291).
15873
15874 * simple.el (current-kill): Clarify what
15875 `interprogram-paste-function' does (bug#7500).
15876 (auto-fill-mode): Document `auto-fill-function' in relation to
15877 `auto-fill-mode' (bug#2470).
15878
15879 2011-07-16 Lawrence Mitchell <wence@gmx.li>
15880
15881 * emacs-lisp/cl-macs.el (defstruct): Ignore argument to setf
15882 method if slot is read-only (bug#9035).
15883
15884 2011-07-16 Martin Rudalics <rudalics@gmx.at>
15885
15886 * frame.el (select-frame-set-input-focus): New argument NORECORD.
15887 * window.el (pop-to-buffer): Select window used even if it was
15888 selected before, see discussion of (Bug#8615), (Bug#6954).
15889 Pass argument NORECORD on to select-frame-set-input-focus.
15890
15891 2011-07-15 Glenn Morris <rgm@gnu.org>
15892
15893 * subr.el (read-char-choice): Allow quitting. (Bug#9001)
15894 Respect help-form.
15895
15896 2011-07-09 Lawrence Mitchell <wence@gmx.li>
15897
15898 * net/gnutls.el (gnutls-min-prime-bits): New variable.
15899 (gnutls-negotiate): Use it.
15900
15901 2011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
15902
15903 * net/gnutls.el (gnutls-negotiate):
15904 Upcase `gnutls-algorithm-priority'.
15905
15906 2011-07-15 Glenn Morris <rgm@gnu.org>
15907
15908 * jka-compr.el (jka-compr-verbose): Move from here...
15909 * jka-cmpr-hook.el (jka-compr-verbose): ... to here. (Bug#9090)
15910 Add missing :version tag.
15911 * info.el: No need to require jka-compr when compiling.
15912
15913 2011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
15914
15915 * net/gnutls.el (gnutls-algorithm-priority): New variable.
15916 (gnutls-negotiate): Use it.
15917
15918 * emacs-lisp/cl-macs.el (declare): Link to the "Declarations" node.
15919
15920 * info.el (Info-beginning-of-buffer): New command.
15921 (Info-mode-map): Use it instead of `beginning-of-buffer' to allow
15922 announcing `b' as the key (bug#8325).
15923 (Info-mode-menu): Use `Info-beginning-of-buffer' for consistency.
15924
15925 * emacs-lisp/cl-macs.el (declare): Doc string fix-up.
15926
15927 * international/mule-cmds.el
15928 (describe-specified-language-support): Make the error message
15929 clearer (bug#8905).
15930
15931 * emacs-lisp/cl-macs.el (declare): Add a doc string (bug#8690).
15932
15933 * isearch.el (isearch-barrier): Add a doc string, since it's
15934 mentioned in a function doc string (bug#8678).
15935
15936 2011-07-15 Martin Rudalics <rudalics@gmx.at>
15937
15938 * window.el (switch-to-buffer): Call pop-to-buffer with normalized
15939 buffer argument (Bug#9083) and self-identifying label argument.
15940
15941 2011-07-15 Glenn Morris <rgm@gnu.org>
15942
15943 * emacs-lisp/debug.el (debug): Doc fix. (Bug#8273)
15944
15945 2011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
15946
15947 * man.el (Man-fontify-manpage): Fix message when formatting the
15948 man page (bug#7929).
15949
15950 2011-07-14 Eli Zaretskii <eliz@gnu.org>
15951
15952 * buff-menu.el (Buffer-menu-buffer+size): Accept an additional
15953 argument LRM; if non-nil, append an invisible LRM character to the
15954 buffer name.
15955 (list-buffers-noselect): Call Buffer-menu-buffer+size with the
15956 last argument non-nil, when formatting buffer names.
15957 (Buffer-menu-mode, list-buffers-noselect): Force left-to-right
15958 paragraph direction.
15959
15960 2011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
15961
15962 * man.el (Man-bgproc-sentinel): Skip any arguments and only output
15963 the man page name (bug#7929).
15964
15965 * image.el (put-image): Mention the `put-image' overlay property
15966 (bug#7834).
15967
15968 * scroll-bar.el (set-scroll-bar-mode): Mention that
15969 `scroll-bar-mode' lists the values (bug#7772).
15970
15971 * image-mode.el (image-mode-fit-frame): Mention that it's a toggle
15972 command (bug#7729).
15973
15974 * rect.el (apply-on-rectangle): Return the point after the last
15975 operation.
15976 (string-rectangle): Go to the point after the last operation
15977 (bug#7522).
15978
15979 * printing.el (pr-toggle-region): Clarify the documentation
15980 slightly (bug#7493).
15981
15982 * time.el (display-time-update):
15983 Allow `display-time-mail-function' to return nil (bug#7158).
15984 Fix suggested by Detlev Zundel.
15985
15986 * vc/diff.el (diff): Clarify the order the file names are read
15987 (bug#7111).
15988
15989 * mouse.el (mouse-set-region): Link to `mouse-drag-copy-region' in
15990 the doc string (bug#7015).
15991
15992 * font-lock.el (font-lock-maximum-decoration): Mention what
15993 numeric levels mean (bug#6935).
15994
15995 * startup.el (initial-buffer-choice): Don't mention the `none'
15996 selection, which is against policy.
15997
15998 2011-07-14 Martin Rudalics <rudalics@gmx.at>
15999
16000 * window.el (display-buffer-normalize-special):
16001 Replace `dedicated' by `dedicate' to dedicate window (Bug#9072).
16002
16003 2011-07-14 Eli Zaretskii <eliz@gnu.org>
16004
16005 * subr.el (version<, version<=, version=): Mention "-CVS" and
16006 "-12345" alpha version numbers.
16007
16008 2011-07-14 Chong Yidong <cyd@stupidchicken.com>
16009
16010 * bindings.el: Add advertised binding for set-mark-command
16011 (Bug#5772).
16012
16013 2011-07-14 Chong Yidong <cyd@stupidchicken.com>
16014
16015 * bindings.el (mode-line-other-buffer):
16016 * bookmark.el (bookmark-bmenu-2-window):
16017 * bs.el (bs-cycle-next, bs-cycle-previous):
16018 * net/tramp-cmds.el (tramp-append-tramp-buffers): Revert to using
16019 switch-to-buffer.
16020
16021 * net/tramp-compat.el (tramp-compat-pop-to-buffer-same-window):
16022 Delete.
16023
16024 2011-07-14 Juanma Barranquero <lekktu@gmail.com>
16025
16026 * follow.el (follow-debug-message, follow-redisplay):
16027 * jka-cmpr-hook.el (with-auto-compression-mode):
16028 Fix typos in docstrings.
16029
16030 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
16031
16032 * subr.el (with-silent-modifications): Clarify somewhat what the
16033 macro inhibits (bug#6525).
16034
16035 * simple.el (eval-expression): Note what it does if called
16036 interactively (bug#6495).
16037
16038 2011-07-13 Chong Yidong <cyd@stupidchicken.com>
16039
16040 * window.el (switch-to-buffer): New arg FORCE-SAME-WINDOW.
16041 Use pop-to-buffer buffer-or-name if it is nil.
16042
16043 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
16044 Remove switch-to-buffer.
16045
16046 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
16047
16048 * files.el (make-directory): Clarify that an error will be raised
16049 if there's an error (bug#6397).
16050
16051 * startup.el (initial-buffer-choice): Add `none' as a choice
16052 (bug#6234).
16053
16054 * subr.el (add-hook): Clarify section about buffer-local hooks
16055 (bug#6218).
16056
16057 * dired.el (dired-flagged): Clarify doc string (bug#6117).
16058
16059 2011-07-13 Juanma Barranquero <lekktu@gmail.com>
16060
16061 * tabify.el (untabify): Preserve the current column so that point
16062 doesn't move (bug#6032).
16063
16064 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
16065
16066 * progmodes/cperl-mode.el (cperl-syntaxify-by-font-lock):
16067 Rewrite to avoid awkward possessive "s" (bug#5986).
16068
16069 2011-07-13 Glenn Morris <rgm@gnu.org>
16070
16071 * dired.el (dired-use-ls-dired): Doc fix. (Bug#9039).
16072 (dired-insert-directory): Give a message the first time
16073 if ls is found not to support --dired.
16074
16075 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
16076
16077 * simple.el (toggle-truncate-lines): Clarify what is toggled
16078 (bug#5580). Text by Drew Adams.
16079
16080 2011-07-13 Chong Yidong <cyd@stupidchicken.com>
16081
16082 * simple.el (blink-matching-open): Make the error message from the
16083 last change less verbose.
16084
16085 2011-07-13 Dan Nicolaescu <dann@ics.uci.edu>
16086
16087 * font-lock.el (font-lock-comment-face): Use the high contrast
16088 "yellow" color for font-lock-comment-face on low color terminals
16089 using a dark background color (bug#4221).
16090
16091 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
16092
16093 * dired.el (dired-insert-set-properties): Make the doc string
16094 reflect what it does now (bug#5325).
16095
16096 * simple.el (blink-matching-open): Say that we were unable to find
16097 the match within the limit, if we're limited (bug#5122).
16098
16099 * international/mule-cmds.el (prefer-coding-system): Add an
16100 example (bug#4869).
16101
16102 * progmodes/etags.el (tags-search): Document `file-list-form'
16103 (bug#4731).
16104
16105 2011-07-13 Lawrence Mitchell <wence@gmx.li>
16106
16107 * net/browse-url.el (browse-url-default-browser)
16108 (browse-url-browser-function): Make the default browser choice a
16109 bit more logical (bug#4300). Also clean up the doc string.
16110
16111 2011-07-13 Juanma Barranquero <lekktu@gmail.com>
16112
16113 * bindings.el (completion-ignored-extensions): Add OpenMCL/Clozure
16114 binary endings (bug#4440).
16115
16116 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
16117
16118 * info.el (info-insert-file-contents): Inhibit jka-compr messages,
16119 which can be pretty annoying (bug#8971).
16120
16121 * jka-compr.el (jka-compr-verbose): New variable, and use
16122 throughout (bug#8971).
16123
16124 * info.el (Info-find-file): Fall back on the installation
16125 directory if we can't find the info node anywhere else.
16126
16127 2011-07-13 Sergei Organov <osv@javad.com> (tiny change)
16128
16129 * vc/vc.el (vc-revert-file):
16130 Don't set file time-stamp in the past. (Bug#5181)
16131
16132 2011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
16133
16134 * files.el (after-find-file): Give a better error message when
16135 trying to find a symlink that points to a file that doesn't exist
16136 (bug#4398).
16137
16138 * progmodes/cc-vars.el: Remove (probably) misleading comment
16139 (bug#4396).
16140
16141 2011-07-12 Johan Bockgård <bojohan@gnu.org>
16142
16143 * mouse-sel.el (mouse-sel-primary-overlay): Use the `region' face.
16144
16145 2011-07-12 Chong Yidong <cyd@stupidchicken.com>
16146
16147 * mouse-sel.el: Hack restoring functionality, while keeping
16148 compatibility with 2010-07-03 changes to mouse selection.
16149 (mouse-sel-primary-overlay): New var.
16150 (mouse-sel-selection-alist): Use it.
16151 (mouse-sel-mode): Doc fix; remove points that are default features
16152 of mouse.el.
16153
16154 2011-07-12 Johan Bockgård <bojohan@gnu.org>
16155
16156 * progmodes/compile.el (compilation-error-regexp-alist-alist):
16157 Fix previous fix (bug#2490).
16158
16159 2011-07-12 Roland Winkler <winkler@gnu.org>
16160
16161 * textmodes/bibtex.el (bibtex-initialize):
16162 Use pop-to-buffer-same-window.
16163 (bibtex-search-entries): Fix interactive call.
16164
16165 2011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
16166
16167 * progmodes/compile.el (compilation-error-regexp-alist-alist):
16168 Fontise bytecomp Error lines more correctly (bug#2490).
16169 Fix suggested by Johan Bockgård.
16170
16171 * subr.el (remove-duplicates): Remove; `delete-dups' is sufficient.
16172
16173 * dired-x.el (dired-guess-default): Use `delete-dups'.
16174
16175 2011-07-12 Chong Yidong <cyd@stupidchicken.com>
16176
16177 * dired.el (dired-mark-prompt):
16178 * dired-aux.el (dired-read-shell-command): Doc fix.
16179
16180 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
16181
16182 * mail/sendmail.el (sendmail-query-once):
16183 Use `customize-save-variable' unconditionally, now that it works under
16184 emacs -Q.
16185
16186 * mail/smtpmail.el (smtpmail-query-smtp-server): Ditto.
16187
16188 * cus-edit.el (custom-file): Take an optional no-error variable.
16189 (customize-save-variable): Set the variable, and give a warning if
16190 running under "emacs -q".
16191
16192 2011-07-11 Juanma Barranquero <lekktu@gmail.com>
16193
16194 * loadhist.el (unload-feature-special-hooks):
16195 Add `auto-coding-functions', `fill-nobreak-predicate' and
16196 `find-directory-functions' (bug#5327).
16197
16198 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
16199
16200 * vc/ediff.el (ediff-patch-file): Clarify doc string (bug#3138).
16201
16202 * cus-edit.el (custom-guess-name-alist): -alist variables should
16203 use the `alist' type (bug#3120). Suggested by Drew Adams.
16204
16205 * printing.el: Add documentation to all the `pr-toggle-' commands.
16206
16207 2011-07-11 Leo Liu <sdl.web@gmail.com>
16208
16209 * files.el (toggle-read-only): Only do the `C-x C-q' warning on VC
16210 backends where it makes sense (bug#2623).
16211
16212 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
16213
16214 * dired-x.el (dired-guess-default): Remove duplicate shell command
16215 entries (bug#2028).
16216 (dired-guess-default): Fix grammar in doc string (bug#2028).
16217 (dired-guess-shell-alist-user): Clarify the example a bit (bug#2030).
16218
16219 * subr.el (remove-duplicates): New conveniency function.
16220
16221 2011-07-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
16222
16223 * tool-bar.el (tool-bar-mode): Clarify positive/negative arguments
16224 (bug#1526).
16225
16226 2011-07-10 Martin Rudalics <rudalics@gmx.at>
16227
16228 * window.el (display-buffer-normalize-default): Don't invert
16229 meaning of even-window-heights. Reported by Eli Zaretskii
16230 <eliz@gnu.org>.
16231
16232 2011-07-10 Bob Rogers <rogers@rgrjr.dyndns.org>
16233
16234 * vc/vc.el (vc-diff-internal): Fix race condition (Bug#1256).
16235
16236 2011-07-10 Chong Yidong <cyd@stupidchicken.com>
16237
16238 * window.el (display-buffer): Fix arguments to
16239 display-buffer-reuse-window in last change.
16240
16241 * faces.el (link): Use a less saturated blue on light backgrounds.
16242
16243 * startup.el (fancy-startup-text, fancy-about-text)
16244 (fancy-startup-tail): Use font-lock faces, for background safety.
16245
16246 2011-07-09 Bob Nnamtrop <bobnnamtrop@gmail.com> (tiny change)
16247
16248 * emulation/viper-cmd.el (viper-change-state-to-vi):
16249 Limit triggering of abbrev expansion (Bug#9038).
16250
16251 2011-07-09 Martin Rudalics <rudalics@gmx.at>
16252
16253 * window.el (display-buffer-default-specifiers): Remove.
16254 (display-buffer-macro-specifiers): Remove default specifiers.
16255 (display-buffer-alist): Default to nil.
16256 (display-buffer-reuse-window): New optional argument other-window.
16257 (display-buffer-pop-up-window): Allow splitting internal
16258 windows. Check whether a live window was created.
16259 (display-buffer-other-window-means-other-frame)
16260 (display-buffer-normalize-arguments): Rename to
16261 display-buffer-normalize-argument and rewrite. Set the
16262 other-window specifier.
16263 (display-buffer-normalize-special): New function.
16264 (display-buffer-normalize-options): Rename to
16265 display-buffer-normalize-default and rewrite.
16266 (display-buffer-normalize-options-inhibit): Remove.
16267 (display-buffer-normalize-specifiers): Rewrite.
16268 (display-buffer): Process other-window specifier and call
16269 display-buffer-reuse-window with it. Emulate Emacs 23 behavior
16270 more faithfully.
16271 (pop-up-windows, even-window-heights): Restore Emacs 23 default values.
16272 (display-buffer-alist-set): Don't handle 'unset default values.
16273 (display-buffer-in-window, display-buffer-alist-set):
16274 Replace symbol "dedicated" by "dedicate". Reported by Tassilo Horn
16275 <tassilo@member.fsf.org>.
16276
16277 2011-07-09 Leo Liu <sdl.web@gmail.com>
16278
16279 * register.el (insert-register): Restore accidental change on
16280 2011-06-26. (Bug#9028)
16281
16282 2011-07-09 Glenn Morris <rgm@gnu.org>
16283
16284 * subr.el (remq): Handle the empty list. (Bug#9024)
16285
16286 2011-07-08 Andreas Schwab <schwab@linux-m68k.org>
16287
16288 * mail/sendmail.el (send-mail-function): No longer delay custom
16289 initialization.
16290 * custom.el (custom-initialize-delay): Doc fix.
16291
16292 2011-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
16293
16294 * abbrev.el (expand-abbrev): Try to preserve point (bug#5805).
16295
16296 2011-07-08 Michael Albinus <michael.albinus@gmx.de>
16297
16298 * net/tramp-sh.el (tramp-sh-handle-start-file-process): Use a
16299 human-friendly prompt.
16300
16301 2011-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
16302
16303 * vc/vc-bzr.el (vc-bzr-revision-keywords): Remove svn, it's only
16304 provided by a particular plugin.
16305
16306 2011-07-08 Lars Magne Ingebrigtsen <larsi@gnus.org>
16307
16308 * mail/sendmail.el (sendmail-query-once): If we aren't allowed to
16309 save customizations (with "emacs -Q"), just set the variable
16310 instead of erroring out.
16311
16312 * mail/smtpmail.el (smtpmail-query-smtp-server): Ditto.
16313
16314 2011-07-08 Juri Linkov <juri@jurta.org>
16315
16316 * arc-mode.el (archive-zip-expunge, archive-zip-update)
16317 (archive-zip-update-case): Use 7z if found by `executable-find'.
16318 The order of searching the available programs is the same as in
16319 `archive-zip-extract' (bug#8968).
16320
16321 2011-07-07 Chong Yidong <cyd@stupidchicken.com>
16322
16323 * menu-bar.el (menu-bar-line-wrapping-menu): Revert last change.
16324 (menu-bar-options-menu): Tweak descriptions.
16325
16326 2011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
16327
16328 * menu-bar.el (menu-bar-line-wrapping-menu): Make all the Options
16329 menu items into verb phrases (bug#1421). Also refill to fit under
16330 80 columns.
16331
16332 2011-07-07 Chong Yidong <cyd@stupidchicken.com>
16333
16334 * info.el (info, Info-read-node-name-2, Info-read-node-name-1)
16335 (Info-read-node-name): Doc fix (Bug#1084).
16336
16337 * thingatpt.el (forward-thing, bounds-of-thing-at-point)
16338 (thing-at-point, beginning-of-thing, end-of-thing, in-string-p)
16339 (end-of-sexp, beginning-of-sexp)
16340 (thing-at-point-bounds-of-list-at-point, forward-whitespace)
16341 (forward-symbol, forward-same-syntax, word-at-point)
16342 (sentence-at-point): Doc fix (Bug#1144).
16343
16344 2011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
16345
16346 * info.el (Info-mode-map): Remove S-TAB binding, since [backtab]
16347 should cover it (bug#1281).
16348
16349 * cus-edit.el (custom-show): Mark as obsolete.
16350
16351 * net/network-stream.el (network-stream-open-starttls): If GnuTLS
16352 negotiation fails, then possibly try again with a non-encrypted
16353 connection (bug#9017).
16354
16355 * mail/smtpmail.el (smtpmail-stream-type): Note that `plain' can
16356 be used.
16357
16358 2011-07-07 Richard Stallman <rms@gnu.org>
16359
16360 * mail/rmail.el (rmail-next-error-move): Use `compilation-message'
16361 property, and handle its changed format.
16362 Look for the correct line number.
16363 Use file's line contents (but not past first =) to find
16364 correct line in message.
16365
16366 2011-07-07 Kenichi Handa <handa@m17n.org>
16367
16368 * international/characters.el (build-unicode-category-table):
16369 Delete it.
16370 (unicode-category-table): Set it by unicode-property-table-internal.
16371
16372 * international/mule-cmds.el (char-code-property-alist): Move to
16373 to src/chartab.c.
16374 (get-char-code-property): Call unicode-property-table-internal to
16375 load a file. Call get-unicode-property-internal where necessary.
16376 (put-char-code-property): Call unicode-property-table-internal to
16377 load a file. Call put-unicode-property-internal where necessary.
16378 put-unicode-property-internal where necessary.
16379 (char-code-property-description):
16380 Call unicode-property-table-internal to load a file.
16381
16382 * international/charprop.el:
16383 * international/uni-bidi.el:
16384 * international/uni-category.el:
16385 * international/uni-combining.el:
16386 * international/uni-comment.el:
16387 * international/uni-decimal.el:
16388 * international/uni-decomposition.el:
16389 * international/uni-digit.el:
16390 * international/uni-lowercase.el:
16391 * international/uni-mirrored.el:
16392 * international/uni-name.el:
16393 * international/uni-numeric.el:
16394 * international/uni-old-name.el:
16395 * international/uni-titlecase.el:
16396 * international/uni-uppercase.el: Regenerate.
16397
16398 * loadup.el: Load international/charprop.el before
16399 international/characters.
16400
16401 2011-07-07 Chong Yidong <cyd@stupidchicken.com>
16402
16403 * window.el (next-buffer, previous-buffer): Signal an error if
16404 called from a minibuffer window.
16405
16406 * bindings.el: Revert 2011-07-04 change.
16407
16408 2011-07-06 Richard Stallman <rms@gnu.org>
16409
16410 * mail/rmailmm.el (rmail-mime-process): Use markers for buf positions.
16411 (rmail-mime-insert-bulk, rmail-mime-insert-text):
16412 Treat markers like ints.
16413 (rmail-mime-entity): Doc fix.
16414
16415 2011-07-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
16416
16417 * mail/smtpmail.el (smtpmail-default-smtp-server): Made into a
16418 defcustom again for backwards compatibility.
16419
16420 * simple.el (shell-command-on-region): Fill.
16421
16422 * dired-aux.el (dired-kill-line): Add a doc string.
16423
16424 * dabbrev.el (dabbrev-abbrev-char-regexp): Note that nil defaults
16425 to "\\sw\\|\\s_" (bug#358).
16426
16427 * dired.el (dired-mode): Clarify "unmark or unflag" (bug#8770).
16428 (dired-unmark-backward): Ditto.
16429 (dired-flag-backup-files): Ditto.
16430
16431 * dired-x.el (dired-mark-sexp): Ditto.
16432
16433 2011-07-06 Richard Stallman <rms@gnu.org>
16434
16435 * mail/rmailmm.el: Give entity a new slot, TRUNCATED.
16436 (rmail-mime-entity): New arg TRUNCATED.
16437 (rmail-mime-entity-truncated, rmail-mime-entity-set-truncated):
16438 New functions.
16439 (rmail-mime-save): Warn if entity is truncated.
16440 (rmail-mime-toggle-hidden): Likewise, for showing.
16441 (rmail-mime-process-multipart): Record when an entity is truncated.
16442
16443 * mail/rmailmm.el (rmail-search-mime-message): Don't get confused
16444 if ENTITY is a string.
16445
16446 2011-07-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
16447
16448 * emacs-lisp/lisp-mode.el (eval-defun-1): Update the documentation
16449 of faces when `M-C-x'-ing their definitions (bug#8378).
16450 Also clean up the code slightly.
16451
16452 * progmodes/grep.el (rgrep): Don't bind `process-connection-type',
16453 because that makes the colors go away.
16454
16455 * mail/sendmail.el (send-mail-function): Change the default to
16456 `sendmail-query-once'.
16457 (sendmail-query-once): Add an autoload cookie.
16458
16459 * net/network-stream.el (network-stream-open-starttls): Try using
16460 a plain connection even if the server offered STARTTLS, and we
16461 kinda wanted to use it, if Emacs doesn't have any STARTTLS
16462 capability. This should make smtpmail.el work in slightly more
16463 configurations.
16464
16465 2011-07-06 Michael Albinus <michael.albinus@gmx.de>
16466
16467 * net/tramp-compat.el (tramp-compat-pop-to-buffer-same-window):
16468 New defun.
16469 * net/tramp-cmds.el (tramp-append-tramp-buffers): Use it.
16470
16471 2011-07-06 Michael R. Mauger <mmaug@yahoo.com>
16472
16473 * progmodes/sql.el: Version 3.0
16474 (sql-product-alist): Add product :completion-object,
16475 :completion-column, and :statement attributes.
16476 (sql-mode-menu, sql-interactive-mode-map): Fix List entries.
16477 (sql-mode-syntax-table): Mark all punctuation.
16478 (sql-font-lock-keywords-builder): Temporarily remove fallback on
16479 ansi keywords.
16480 (sql-regexp-abbrev, sql-regexp-abbrev-list): New functions.
16481 (sql-mode-oracle-font-lock-keywords): Improve.
16482 (sql-oracle-show-reserved-words): New function for development.
16483 (sql-product-font-lock): Simplify for source code buffers.
16484 (sql-product-syntax-table, sql-product-font-lock-syntax-alist):
16485 New functions.
16486 (sql-highlight-product): Set product specific syntax table.
16487 (sql-mode-map): Add statement movement functions.
16488 (sql-ansi-statement-starters, sql-oracle-statement-starters):
16489 New variable.
16490 (sql-statement-regexp, sql-beginning-of-statement)
16491 (sql-end-of-statement, sql-signum): New functions.
16492 (sql-buffer-live-p, sql=find-sqli-buffer): Add CONNECTION parameter.
16493 (sql-show-sqli-buffer): Bug fix.
16494 (sql-interactive-mode): Store connection data as buffer local.
16495 (sql-connect): Add NEW-NAME parameter. Redesign interaction
16496 with sql-interactive-mode.
16497 (sql-save-connection): Save buffer local settings.
16498 (sql-connection-menu-filter): Change menu entry name.
16499 (sql-product-interactive): Bug fix.
16500 (sql-preoutput-hold): New variable.
16501 (sql-interactive-remove-continuation-prompt): Bug fixes.
16502 (sql-debug-redirect): New variable.
16503 (sql-str-literal): New function.
16504 (sql-redirect, sql-redirect-one, sql-redirect-value, sql-execute):
16505 Redesign.
16506 (sql-oracle-save-settings, sql-oracle-restore-settings)
16507 (sql-oracle-list-all, sql-oracle-list-table): New functions.
16508 (sql-completion-object, sql-completion-column)
16509 (sql-completion-sqlbuf): New variables.
16510 (sql-build-completions-1, sql-build-completions)
16511 (sql-try-completion): New functions.
16512 (sql-read-table-name): Use them.
16513 (sql-contains-names): New buffer local variable.
16514 (sql-list-all, sql-list-table): Use it.
16515 (sql-oracle-completion-types): New variable.
16516 (sql-oracle-completion-object, sql-sqlite-completion-object)
16517 (sql-postgres-completion-object): New functions.
16518
16519 2011-07-06 Glenn Morris <rgm@gnu.org>
16520
16521 * window.el (pop-to-buffer): Doc fix.
16522
16523 2011-07-06 Markus Heiser <markus.heiser@darmarit.de> (tiny change)
16524
16525 * progmodes/gud.el (gud-pdb-marker-regexp): Accept \r char (Bug#5653).
16526
16527 2011-07-06 Chong Yidong <cyd@stupidchicken.com>
16528
16529 * window.el (special-display-popup-frame): Doc fix (Bug#8853).
16530
16531 * info.el (Info-directory-toc-nodes): Minor doc fix (Bug#8833).
16532
16533 2011-07-05 Chong Yidong <cyd@stupidchicken.com>
16534
16535 * button.el (button): Inherit from link face. Suggested by Dan
16536 Nicolaescu.
16537
16538 2011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
16539
16540 * progmodes/gdb-mi.el: Fit in 80 columns.
16541 (gdb-setup-windows, gdb-restore-windows): Avoid other-window and
16542 switch-to-buffer.
16543
16544 * progmodes/which-func.el (which-func-ff-hook): Don't output a message
16545 if imenu is simply not configured (bug#8941).
16546
16547 2011-07-05 Ken Manheimer <ken.manheimer@gmail.com>
16548
16549 * allout.el (allout-post-undo-hook): New allout outline-change
16550 event hook to signal undo activity.
16551 (allout-post-command-business): Run allout-post-undo-hook if an
16552 undo just occurred.
16553 (allout-after-copy-or-kill-hook, allout-mode): Minor docstring changes.
16554 * allout-widgets.el (allout-widgets-after-undo-function):
16555 Ensure the integrity of the current item's decoration after it has been
16556 in the vicinity of an undo.
16557 (allout-widgets-mode): Include allout-widgets-after-undo-function
16558 on the new allout-post-undo-hook.
16559
16560 2011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
16561
16562 * emacs-lisp/lisp-mode.el (lisp-interaction-mode-abbrev-table):
16563 Let define-derived-mode define it.
16564 * emacs-lisp/derived.el (define-derived-mode): Try to avoid creating
16565 cycles of abbrev-table inheritance (bug#8998).
16566
16567 2011-07-05 Roland Winkler <winkler@gnu.org>
16568
16569 * textmodes/bibtex.el: Add support for biblatex.
16570 (bibtex-BibTeX-entry-alist, bibtex-biblatex-entry-alist)
16571 (bibtex-BibTeX-field-alist, bibtex-biblatex-field-alist)
16572 (bibtex-dialect-list, bibtex-dialect, bibtex-no-opt-remove-re)
16573 (bibtex-entry-alist, bibtex-field-alist): New variables.
16574 (bibtex-entry-field-alist): Obsolete alias for
16575 bibtex-BibTeX-entry-alist.
16576 (bibtex-entry-alist, bibtex-field-alist): New widgets.
16577 (bibtex-set-dialect): New command.
16578 (bibtex-entry-type, bibtex-entry-head)
16579 (bibtex-entry-maybe-empty-head, bibtex-any-valid-entry-type):
16580 Bind via bibtex-set-dialect.
16581 (bibtex-Article, bibtex-Book, bibtex-Booklet, bibtex-InBook)
16582 (bibtex-InCollection, bibtex-InProceedings, bibtex-Manual)
16583 (bibtex-MastersThesis, bibtex-Misc, bibtex-PhdThesis)
16584 (bibtex-Proceedings, bibtex-TechReport, bibtex-Unpublished):
16585 Define via bibtex-set-dialect.
16586 (bibtex-name-in-field, bibtex-remove-OPT-or-ALT):
16587 Obey bibtex-no-opt-remove-re.
16588 (bibtex-vec-push, bibtex-vec-incr): New functions.
16589 (bibtex-format-entry, bibtex-field-list)
16590 (bibtex-print-help-message, bibtex-validate)
16591 (bibtex-search-entries): Use new format of bibtex-entry-alist.
16592
16593 2011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
16594
16595 * progmodes/compile.el (compilation-goto-locus):
16596 * net/tramp-cmds.el (tramp-append-tramp-buffers):
16597 * bs.el (bs-cycle-next, bs-cycle-previous):
16598 * bookmark.el (bookmark-bmenu-list, bookmark-bmenu-2-window):
16599 * bindings.el (mode-line-other-buffer):
16600 * autoinsert.el (auto-insert):
16601 * arc-mode.el (archive-extract):
16602 * abbrev.el (edit-abbrevs): Fix some uses of switch-to-buffer.
16603
16604 2011-07-05 Juanma Barranquero <lekktu@gmail.com>
16605
16606 * emacs-lock.el (emacs-lock-mode): Fix typo in variable name.
16607 Fix check of `emacs-lock-unlockable-modes'.
16608 Coerce true values of `emacs-lock--try-unlocking' to t.
16609
16610 2011-07-05 Juanma Barranquero <lekktu@gmail.com>
16611
16612 * obsolete/old-emacs-lock.el: Rename from emacs-lock.el.
16613 * emacs-lock.el: New file.
16614
16615 2011-07-05 Julien Danjou <julien@danjou.info>
16616
16617 * textmodes/rst.el (rst-define-level-faces): Use `facep' rather
16618 than `boundp' to check if face is set.
16619
16620 2011-07-05 Juanma Barranquero <lekktu@gmail.com>
16621
16622 * register.el (registerv-make):
16623 * window.el (window-min-height): Fix typos in docstrings.
16624
16625 2011-07-05 Jan Djärv <jan.h.d@swipnet.se>
16626
16627 * dynamic-setting.el (dynamic-setting-handle-config-changed-event):
16628 Update doc string.
16629
16630 2011-07-04 Juanma Barranquero <lekktu@gmail.com>
16631
16632 * server.el (server-execute): Catch quit and call
16633 `server-return-error' to pass the error back to emacsclient and
16634 close the connection (bug#8942).
16635
16636 2011-07-04 Ken Manheimer <ken.manheimer@gmail.com>
16637
16638 * allout.el (allout-encrypt-unencrypted-on-saves): Do not provide
16639 insecure exception for current topic. Also note that auto-saves
16640 are handled differently.
16641
16642 (allout-auto-save-temporarily-disabled, allout-just-did-undo):
16643 State variables for tracking auto-save inhibition situation.
16644
16645 (allout-write-contents-hook-handler): Rename from
16646 'allout-write-file-hook-handler', and describe how it depends on
16647 write-contents-functions sensitivity to non-nil value to prevent
16648 file write.
16649
16650 (allout-auto-save-hook-handler): Remove. auto-save does not check
16651 this in individual buffers, only in the starting buffer, so this
16652 is not the right way for us to inhibit auto-save in a buffer
16653 according to its condition.
16654
16655 (allout-mode): Use new allout-write-contents-hook-handler, and
16656 only with write-contents-functions. Remove auto-save provisions -
16657 they're implemented elsewhere.
16658
16659 (allout-before-change-handler): If undo is in progress, note that
16660 for attention of allout-post-command-business.
16661
16662 (allout-post-command-business): If the command we're following was
16663 an undo, check for change in the status of encrypted items and
16664 adjust auto-save inhibitions accordingly.
16665
16666 (allout-toggle-subtree-encryption): Adjust auto-save inhibition
16667 according to whether there are or aren't any plain-text topics
16668 pending encryption.
16669
16670 (allout-inhibit-auto-save-info-for-decryption):
16671 Adjust buffer-saved-size and some allout state to inhibit auto-saves
16672 if there are plain-text topics pending encryption.
16673
16674 (allout-maybe-resume-auto-save-info-after-encryption): Adjust
16675 buffer-saved-size and some allout state to not inhibit auto-saves
16676 if there are no longer any plain-text topics pending encryption.
16677
16678 (allout-next-topic-pending-encryption, allout-encrypt-decrypted):
16679 No longer provide for exemption of the current topic.
16680
16681 2011-07-04 Juri Linkov <juri@jurta.org>
16682
16683 Add 7z operations to delete and save changed members (bug#8968).
16684 * arc-mode.el (archive-7z-expunge, archive-7z-update):
16685 New defcustoms.
16686 (archive-7z-write-file-member): New function.
16687 (archive-7z-summarize): Fix the number of dashes in the
16688 listing output.
16689
16690 2011-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
16691
16692 * pcmpl-linux.el (pcomplete-pare-list): Re-add, from pcomplete.el
16693 (bug#8958).
16694
16695 2011-07-04 Chong Yidong <cyd@stupidchicken.com>
16696
16697 * bindings.el: Ignore next-buffer and previous-buffer in
16698 minibuffer-local-map.
16699
16700 * font-lock.el (font-lock-builtin-face): Change light background
16701 color to dark slate blue (Bug#6693).
16702
16703 2011-07-04 Wang Diancheng <dcwang@kingbase.com.cn> (tiny change)
16704
16705 * progmodes/gdb-mi.el (gdb): Use completion-at-point.
16706
16707 2011-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
16708
16709 * files.el (find-file): Use pop-to-buffer-same-window (bug#8911).
16710 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
16711 Add switch-to-buffer.
16712
16713 2011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
16714
16715 * isearch.el (isearch-search-fun-function): Clarify further the
16716 meaning of the function returned.
16717
16718 2011-07-04 Michael Albinus <michael.albinus@gmx.de>
16719
16720 * net/tramp-cmds.el (tramp-cleanup-this-connection): New command.
16721
16722 * net/tramp-sh.el (tramp-color-escape-sequence-regexp): New defconst.
16723 (tramp-sh-handle-insert-directory, tramp-convert-file-attributes):
16724 Use it.
16725 (tramp-remote-path): Add "/bin" and "/usr/bin". On busyboxes,
16726 `tramp-default-remote-path' does not exist.
16727 (tramp-send-command-and-read): New optional argument NOERROR.
16728 (tramp-open-connection-setup-interactive-shell)
16729 (tramp-get-remote-path, tramp-get-remote-stat): Use it.
16730 (tramp-get-remote-readlink): Do not mask with `ignore-errors'.
16731 (tramp-process-sentinel): Flush also process' connection property.
16732 (tramp-sh-handle-start-file-process): Do not set process
16733 sentinel. It is done now ...
16734 (tramp-maybe-open-connection): ... here. (Bug#8929)
16735
16736 2011-07-04 MON KEY <monkey@sandpframing.com>
16737
16738 * play/animate.el (animate-string): Doc fixes and allow changing
16739 the buffer name (bug#5417).
16740
16741 2011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
16742
16743 * play/animate.el (animation-buffer-name): Rename from *animate*.
16744
16745 2011-07-04 Paul Eggert <eggert@cs.ucla.edu>
16746
16747 * emacs-lisp/timer.el: Use time-date fns rather than rolling our own.
16748 This is simpler and helps future-proof the code.
16749 (timer-until): Use time-subtract and float-time.
16750 (timer--time-less-p): Use time-less-p.
16751
16752 2011-07-04 Juanma Barranquero <lekktu@gmail.com>
16753
16754 * type-break.el (timep): Use the value of `float-time' to avoid a
16755 byte-compiler warning.
16756
16757 * server.el (server-eval-and-print): Return any result, even nil.
16758
16759 2011-07-03 Paul Eggert <eggert@cs.ucla.edu>
16760
16761 * type-break.el: Accept time formats that the builtins accept.
16762 (timep, type-break-time-difference): Accept any format that
16763 float-time accepts, rather than insisting on (HIGH LOW USECS) format.
16764 This is simpler and helps future-proof the code.
16765 (type-break-time-difference): Round rather than ignoring
16766 subseconds components.
16767
16768 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
16769
16770 * info.el (Info-apropos-matches): Make non-interactive, since it
16771 doesn't seem to do anything useful as a command (bug#8829).
16772
16773 2011-07-03 Chong Yidong <cyd@stupidchicken.com>
16774
16775 * frame.el (frame-background-mode, frame-set-background-mode):
16776 Move from faces.el.
16777 (frame-default-terminal-background): New function.
16778
16779 * custom.el (custom-push-theme): Don't record faces in `changed'
16780 theme; this doesn't work correctly for per-frame face settings.
16781 (disable-theme): Use face-set-after-frame-default to reset faces.
16782 (custom--frame-color-default): New function.
16783
16784 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
16785
16786 * dired.el (dired-flagging-regexp): Remove unused variable
16787 (bug#8769).
16788
16789 2011-03-29 Kevin Ryde <user42@zip.com.au>
16790
16791 * progmodes/compile.el (compilation-error-regexp-alist-alist):
16792 `perl-Test2' extend to match possible "fail #N" rep count
16793 (bug#8377).
16794
16795 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
16796
16797 * mail/feedmail.el (feedmail-buffer-to-smtpmail):
16798 `smtpmail-via-smtp' now returns the error instead of nil.
16799
16800 * isearch.el (isearch-search-fun-function): Clarify the doc string
16801 (bug#8101).
16802
16803 2011-07-03 Richard Kim <emacs18@gmail.com> (tiny change)
16804
16805 * textmodes/texnfo-upd.el (texinfo-insert-menu): Don't insert
16806 unnecessary spaces (bug#8987).
16807
16808 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
16809
16810 * net/network-stream.el (open-network-stream): Use the
16811 :end-of-capability command thoughout.
16812
16813 2011-07-03 Wolfgang Jenkner <wjenkner@inode.at> (tiny change)
16814
16815 * net/network-stream.el (open-network-stream): Add the
16816 :end-of-capability command parameter, used by pop3.el.
16817
16818 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
16819
16820 * dired.el (dired-map-over-marks): Refill the doc string (bug#6814).
16821
16822 * fringe.el (fringe-query-style): Remove redundant text " (type ?
16823 for list)" (bug#6475).
16824
16825 * files.el (file-expand-wildcards): Ignore non-readable
16826 sub-directories while trying to find matches instead of signaling
16827 an error (bug#6297).
16828
16829 * man.el (Man-reference-regexp): Allow matching possible
16830 word-wrapped references (bug#6289).
16831
16832 * vc/vc.el (vc-modify-change-comment): Change *VC-log* to *vc-log*
16833 for consistency with the other vc buffers (bug#6197).
16834 (vc-checkin): Ditto.
16835
16836 * vc/vc-arch.el: Fix comments to match the *VC-log* name change.
16837
16838 * longlines.el (longlines-mode): Document what ARG does (bug#6150).
16839
16840 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
16841
16842 * custom.el (defcustom): Clarify that :set is only used in the
16843 Customize user interface (bug#6089).
16844
16845 * progmodes/flymake.el (flymake-mode): If the buffer isn't
16846 associated with a file, refuse to run instead of erroring out
16847 (bug#6084).
16848
16849 * textmodes/fill.el (fill-region): Remove the "Ordinarily" from
16850 the doc string, since it appears that using `fill-column' always
16851 controls the width (bug#7845).
16852
16853 * simple.el (shell-command-on-region): Say where the error output
16854 went if `shell-command-default-error-buffer' is set (bug#6857).
16855
16856 2011-07-02 Ken Manheimer <ken.manheimer@gmail.com>
16857
16858 * allout.el (allout-yank-processing): Adjust cursor position for
16859 backwards-deleted space.
16860
16861 (allout-rebullet-heading): Register changes with
16862 allout-exposure-changed-hook, so the modified topic is properly
16863 decorated.
16864
16865 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
16866
16867 * minibuffer.el (completion-in-region): Document PREDICATE
16868 (bug#7136).
16869
16870 * info-look.el (info-lookup-add-help): Clarify that ARGS is a list
16871 of keyword/argument pairs (bug#6904).
16872
16873 * replace.el (multi-occur):
16874 Mention `multi-occur-in-matching-buffers' in the doc string (bug#7566).
16875
16876 2011-07-02 Drew Adams <drew.adams@oracle.com>
16877
16878 * dired.el (dired-mark-if): Make the message about whether it's
16879 marking or unmarking clearer (bug#8523).
16880
16881 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
16882
16883 * disp-table.el (display-table-print-array): New function.
16884 (describe-display-table): Use it to print the vectors more pretty
16885 (Bug#8859).
16886
16887 2011-07-02 Martin Rudalics <rudalics@gmx.at>
16888
16889 * window.el (window-state-get-1): Don't assign clone numbers.
16890 Add clone-of item to list of window parameters.
16891 (window-state-put-2): Don't process clone numbers.
16892 (display-buffer-alist): Fix doc-string.
16893
16894 2011-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
16895
16896 * subr.el (remq): Don't allocate if it's not needed.
16897 (keymap--menu-item-binding, keymap--menu-item-with-binding)
16898 (keymap--merge-bindings): New functions.
16899 (keymap-canonicalize): Use them to refine the canonicalization.
16900 * minibuffer.el (minibuffer-local-completion-map)
16901 (minibuffer-local-must-match-map): Move initialization from C.
16902 (minibuffer-local-filename-completion-map): Move initialization from C;
16903 don't inherit from anything here.
16904 (minibuffer-local-filename-must-match-map): Make obsolete.
16905 (completing-read-default): Use make-composed-keymap to combine
16906 minibuffer-local-filename-completion-map with either
16907 minibuffer-local-must-match-map or
16908 minibuffer-local-filename-completion-map.
16909
16910 2011-07-01 Glenn Morris <rgm@gnu.org>
16911
16912 * type-break.el (type-break-time-sum): Use dolist.
16913
16914 * textmodes/flyspell.el (flyspell-word-search-backward):
16915 Replace CL function.
16916
16917 2011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
16918
16919 * mouse.el (mouse--strip-first-event): New function.
16920 (function-key-map): Use it to map fringe clicks to normal clicks
16921 by default.
16922
16923 * vc/vc-bzr.el (vc-bzr-revision-keywords): Update.
16924 (vc-bzr-revision-completion-table): Add support for annotate and date.
16925
16926 * emacs-lisp/derived.el (define-derived-mode): Make abbrev-table
16927 inherit from parent.
16928
16929 2011-07-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
16930
16931 * dired-aux.el (dired-diff): Doc fixup (bug#8816).
16932 (dired-show-file-type): Doc fixup (bug#8818).
16933
16934 * dired.el (dired-mode): Fix up the doc string as suggested by
16935 Drew Adams (bug#8817).
16936
16937 * progmodes/flymake.el (flymake-find-file-hook): Add an `autoload'
16938 cookie, since the manual says that it should be possible to add
16939 this function to `find-file-hook' (bug#8709).
16940
16941 2011-07-01 Teodor Zlatanov <tzz@lifelogs.com>
16942
16943 * progmodes/cfengine.el: Moved all cfengine3.el functionality
16944 here. Noted Ted Zlatanov as the maintainer.
16945 (cfengine-common-settings, cfengine-common-syntax): New functions
16946 to set up common things between `cfengine-mode' and
16947 `cfengine3-mode'.
16948 (cfengine3-mode): New mode.
16949 (cfengine3-defuns cfengine3-defuns-regex
16950 (cfengine3-class-selector-regex cfengine3-category-regex)
16951 (cfengine3-vartypes cfengine3-font-lock-keywords)
16952 (cfengine3-beginning-of-defun, cfengine3-end-of-defun)
16953 (cfengine3-indent-line): Add from cfengine3.el.
16954
16955 2011-07-01 Michael Albinus <michael.albinus@gmx.de>
16956
16957 * net/tramp.el (tramp-encoding-command-interactive): New defcustom.
16958
16959 * net/tramp-sh.el (tramp-maybe-open-connection): Use it.
16960
16961 2011-07-01 Martin Rudalics <rudalics@gmx.at>
16962
16963 * window.el (same-window-buffer-names, same-window-regexps)
16964 (same-window-p, special-display-frame-alist)
16965 (special-display-popup-frame, special-display-function)
16966 (special-display-buffer-names, special-display-regexps)
16967 (special-display-p, pop-up-frame-alist, pop-up-frame-function)
16968 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
16969 (split-window-preferred-function, split-height-threshold)
16970 (split-width-threshold, even-window-heights)
16971 (display-buffer-mark-dedicated, window-splittable-p)
16972 (split-window-sensibly, window-safely-shrinkable-p):
16973 Un-obsolete.
16974 (display-buffer): Don't spread args with function specifier
16975 because special-display-popup-frame won't like it.
16976
16977 2011-07-01 Paul Eggert <eggert@cs.ucla.edu>
16978
16979 Time-stamp simplifications and fixes.
16980 These improve accuracy slightly, and future-proof the code
16981 against some potential changes to current-time format.
16982
16983 * woman.el (woman-decode-buffer, WoMan-log-end): Log fractional secs
16984 by using time-since and float-time.
16985
16986 * vc/ediff-util.el (ediff-calc-command-time): Use time-since
16987 and float-time. Say "NNN.NNN seconds" rather than "NNN seconds
16988 + NNN microseconds".
16989
16990 * type-break.el (type-break-time-sum): Rewrite using time-add.
16991
16992 * play/hanoi.el (hanoi-current-time-float): Remove.
16993 All uses replaced by float-time.
16994
16995 * nxml/rng-maint.el (rng-time-function): Rewrite using time-subtract.
16996 This yields a more-accurate answer.
16997 (rng-time-to-float): Remove; no longer needed.
16998
16999 * emacs-lisp/timer.el (timer-relative-time): Use time-add.
17000
17001 * calendar/timeclock.el (timeclock-seconds-to-time):
17002 Defalias to seconds-to-time, since they're the same thing.
17003
17004 * emacs-lisp/elp.el (elp-elapsed-time):
17005 * emacs-lisp/benchmark.el (benchmark-elapse):
17006 * allout-widgets.el (allout-elapsed-time-seconds): Use float-time.
17007
17008 2011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
17009
17010 * window.el (bury-buffer): Don't iconify the only frame.
17011 (switch-to-buffer): Revert to Emacs<23 behavior, i.e. do not fallback
17012 to pop-to-buffer. Use pop-to-buffer-same-frame if you don't like that.
17013
17014 2011-07-01 Chong Yidong <cyd@stupidchicken.com>
17015
17016 * eshell/em-smart.el (eshell-smart-display-navigate-list):
17017 Add mouse-yank-primary.
17018
17019 2011-07-01 Teodor Zlatanov <tzz@lifelogs.com>
17020
17021 * progmodes/cfengine3.el: New file to support CFEngine 3.x.
17022
17023 2011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
17024
17025 * emacs-lisp/find-func.el (find-library--load-name): New fun.
17026 (find-library-name): Use it to find relative load names when provided
17027 absolute file name (bug#8803).
17028
17029 2011-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
17030
17031 * textmodes/flyspell.el (flyspell-word): Consider words that
17032 differ only in case as potential doublons (bug#5687).
17033
17034 * net/soap-client.el (soap-invoke, soap-wsdl-resolve-references):
17035 Remove two rather uninteresting debugging-like messages to make
17036 debbugs.el more silent.
17037
17038 * comint.el (comint-password-prompt-regexp): Accept "Response" as
17039 a password-like phrase.
17040
17041 2011-06-30 Masatake YAMATO <yamato@redhat.com>
17042
17043 * progmodes/cc-guess.el: New file.
17044
17045 * progmodes/cc-langs.el (c-mode-menu): Add "Style..." submenu.
17046
17047 * progmodes/cc-styles.el (cc-choose-style-for-mode): New function
17048 derived from `c-basic-common-init'.
17049
17050 * progmodes/cc-mode.el (top-level): Require cc-guess.
17051 (c-basic-common-init): Use `cc-choose-style-for-mode'.
17052
17053 2011-06-30 Lawrence Mitchell <wence@gmx.li>
17054
17055 * progmodes/js.el (js-mode): Don't stomp on global settings (bug#8933).
17056
17057 2011-06-30 Alan Mackenzie <acm@muc.de>
17058
17059 * progmodes/cc-engine.el (c-guess-continued-construct):
17060 Correct the handling of template-args-cont, particularly for when font
17061 lock is disabled. Name this case as "CASE G".
17062
17063 2011-06-30 Ken Manheimer <ken.manheimer@gmail.com>
17064
17065 * allout.el (allout-yank-processing): Fix injection of extra space
17066 between bullet and non-whitespace character in first topic when
17067 pasting, ensuring that the actual spacing in the pasted topic
17068 following the bullet char is preserved. This extra space was
17069 causing pasted encrypted topics to get a decrypted status even
17070 when the content was actually still encrypted. Now the decryption
17071 status from before the paste is preserved.
17072
17073 (allout-flag-region): Set all allout overlays so they evaporate
17074 when reduced to zero length (evanescent), to prevent overlay
17075 leakage.
17076
17077 2011-06-30 Glenn Morris <rgm@gnu.org>
17078
17079 * w32-fns.el (w32-charset-info-alist): Declare.
17080
17081 * find-dired.el (find-grep-options): Simplify.
17082
17083 * term/ns-win.el (ns-set-resource): Declare.
17084
17085 * ses.el (row, col): Declare dynamic variables honestly.
17086
17087 * textmodes/reftex-parse.el (index-tags): Declare.
17088
17089 2011-06-30 Chong Yidong <cyd@stupidchicken.com>
17090
17091 * cus-edit.el (customize-push-and-save): New function.
17092
17093 * files.el (hack-local-variables-confirm): Use it.
17094
17095 * custom.el (load-theme): New arg NO-CONFIRM.
17096 Use customize-push-and-save (Bug#8720).
17097 (custom-enabled-themes): Doc fix.
17098
17099 * cus-theme.el (customize-create-theme)
17100 (custom-theme-merge-theme): Callers to load-theme changed.
17101
17102 2011-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
17103
17104 * thingatpt.el (thing-at-point-short-url-regexp): Require that
17105 short URLs have at least one dot in them (bug #7614).
17106
17107 * progmodes/grep.el (rgrep): Bind `process-connection-type' to
17108 nil, because using a pty is apparently too slow (bug #895).
17109
17110 2011-06-29 Lars Magne Ingebrigtsen <larsi@gnus.org>
17111
17112 * mail/sendmail.el (sendmail-query-once): New function.
17113 (sendmail-query-once-function): New variable.
17114
17115 2011-06-29 Glenn Morris <rgm@gnu.org>
17116
17117 * files.el (auto-mode-alist): Add .f03, .f08 for f90-mode.
17118
17119 * ses.el (top-level): Require cl when compiling.
17120 (ses-set-localvars): Fix error statement.
17121 Call it at compile time to silence a storm of warnings.
17122
17123 2011-06-29 Martin Rudalics <rudalics@gmx.at>
17124
17125 * window.el (normalize-live-buffer): Rename to
17126 window-normalize-buffer.
17127 (normalize-live-frame): Rename to window-normalize-frame.
17128 (normalize-any-window): Rename to window-normalize-any-window.
17129 (normalize-live-window): Rename to window-normalize-live-window.
17130 (make-window-atom): Rename to window-make-atom.
17131 (window-resize-reset): Rename to window--resize-reset.
17132 (window-resize-reset-1): Rename to window--resize-reset-1.
17133 (resize-mini-window): Rename to window--resize-mini-window.
17134 (resize-subwindows-skip-p): Rename to
17135 window--resize-subwindows-skip-p.
17136 (resize-subwindows-normal): Rename to
17137 window--resize-subwindows-normal.
17138 (resize-subwindows): Rename to window--resize-subwindows.
17139 (resize-other-windows): Rename to window--resize-siblings.
17140 (resize-this-window): Rename to window--resize-this-window.
17141 (resize-root-window): Rename to window--resize-root-window.
17142 (resize-root-window-vertically): Rename to
17143 window--resize-root-window-vertically.
17144 (normalize-buffer-to-display): Rename to
17145 window-normalize-buffer-to-display.
17146 (normalize-buffer-to-switch-to): Rename to
17147 window-normalize-buffer-to-switch-to.
17148 Correspondingly update all callers of the functions listed
17149 above.
17150 (display-buffer-alist, display-buffer-normalize-arguments)
17151 (display-buffer-normalize-options, display-buffer)
17152 (display-buffer-alist-set): Use "function" instead of
17153 "fun-with-args".
17154
17155 2011-06-28 Chong Yidong <cyd@stupidchicken.com>
17156
17157 * mail/emacsbug.el (report-emacs-bug): Handle non-gnu bug
17158 addresses more clearly. Add hyperlinks for bug-gnu-emacs and
17159 debbugs.gnu.org. Mention acknowledgment email.
17160
17161 2011-06-28 Lars Magne Ingebrigtsen <larsi@gnus.org>
17162
17163 * mail/smtpmail.el (smtpmail-send-it): Leave off changing the
17164 buffer multibyteness, since it shouldn't matter.
17165
17166 2011-06-28 Martin Rudalics <rudalics@gmx.at>
17167
17168 * window.el (display-buffer-in-side-window): Handle dedicated
17169 windows as in display-buffer-reuse-window.
17170 (display-buffer-normalize-alist): Use value of override
17171 specifier.
17172 (display-buffer-normalize-specifiers): Use value of
17173 other-window-means-other-frame specifier.
17174 (display-buffer-alist): Rewrite some texts in widgets.
17175 (display-buffer): Spread arguments when calling function
17176 specified by fun-with-args.
17177
17178 2011-06-28 Deniz Dogan <deniz@dogan.se>
17179
17180 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
17181 Unnest `let'.
17182
17183 * textmodes/css-mode.el (css-font-lock-keywords): Fix grouped
17184 selectors (Bug#5732).
17185 (css-proprietary-nmstart-re): Use `regexp-opt'.
17186
17187 2011-06-27 Jari Aalto <jari.aalto@cante.net>
17188
17189 * eshell/em-ls.el: Display `ls -l' dates in ISO format (Bug#8440).
17190 (eshell-ls-date-format): New defcustom.
17191 (eshell-ls-file): Use it.
17192
17193 2011-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
17194
17195 * help-fns.el (describe-variable): Fix message for terminal-local vars.
17196
17197 2011-06-27 Katsumi Yamaoka <yamaoka@jpl.org>
17198
17199 * net/ange-ftp.el: Allow loading .gz files (Bug#6923).
17200 (ange-ftp-make-tmp-name): New arg.
17201 (ange-ftp-file-local-copy): Use it.
17202
17203 2011-06-27 Jambunathan K <kjambunathan@gmail.com>
17204
17205 * tar-mode.el (tar-untar-buffer): Set coding-system-for-write to
17206 no-conversion (Bug#8870).
17207
17208 2011-06-27 Martin Rudalics <rudalics@gmx.at>
17209
17210 * window.el (window-right, window-left, window-child)
17211 (window-child-count, window-last-child)
17212 (window-iso-combination-p, walk-window-tree-1)
17213 (window-atom-check-1, window-tree-1, delete-window)
17214 (window-state-get-1, display-buffer-even-window-sizes): Adapt to
17215 new naming conventions - window-vchild, window-hchild,
17216 window-next and window-prev are now called window-top-child,
17217 window-left-child, window-next-sibling and window-prev-sibling
17218 respectively.
17219 (resize-window-reset): Rename to window-resize-reset.
17220 (resize-window-reset-1): Rename to window-resize-reset-1.
17221 (resize-window): Rename to window-resize.
17222 (window-min-height, window-min-width)
17223 (resize-mini-window, resize-this-window, resize-root-window)
17224 (resize-root-window-vertically, adjust-window-trailing-edge)
17225 (enlarge-window, shrink-window, maximize-window)
17226 (minimize-window, delete-window, quit-restore-window)
17227 (split-window, balance-windows, balance-windows-area-adjust)
17228 (balance-windows-area, window-state-put-2)
17229 (display-buffer-even-window-sizes, display-buffer-set-height)
17230 (display-buffer-set-width, set-window-text-height)
17231 (fit-window-to-buffer): Rename all "resize-window" prefixed
17232 calls to use the "window-resize" prefix convention.
17233 (display-buffer-alist): Fix symbol for label specifier.
17234 (display-buffer-reuse-window): Set reuse-dedicated to cdr of
17235 corresponding specifier.
17236 Reported by Juanma Barranquero <lekktu@gmail.com>.
17237
17238 2011-06-27 Vincent Belaïche <vincentb1@users.sourceforge.net>
17239
17240 * ses.el (ses-destroy-cell-variable-range): Fix heading comment
17241 convention.
17242 (ses-call-printer): Does not pass an empty string to formatter when the
17243 cell is empty to keep from barking printer Calc math-format-value.
17244
17245 2011-06-27 Richard Stallman <rms@gnu.org>
17246
17247 * battery.el (battery-mode-line-limit): New variable.
17248 (battery-update): Handle it.
17249
17250 * mail/rmailmm.el (rmail-mime-process-multipart):
17251 Handle truncated messages.
17252
17253 2011-06-27 Glenn Morris <rgm@gnu.org>
17254
17255 * progmodes/flymake.el (flymake-err-line-patterns):
17256 Allow for column numbers in the ant/javac pattern. (Bug#8866)
17257
17258 2011-06-27 Vincent Belaïche <vincentb1@users.sourceforge.net>
17259
17260 * ses.el (ses-relocate-range): Keep rest of arguments for ses-range.
17261 (ses--clean-!, ses--clean-_): New functions.
17262 (ses-range): Add configurability of readout order, and conversion
17263 to Calc vector.
17264
17265 * ses.el (ses-repair-cell-reference-all): New function.
17266 (ses-cell-symbol): Set macro as safe, so that it can be used in
17267 formulas.
17268
17269 * ses.el: Update cycle detection algorithm.
17270 (ses-localvars): Add ses--Dijkstra-attempt-nb and
17271 ses--Dijkstra-weight-bound, and initial values thereof when applicable.
17272 (ses-set-localvars): New function.
17273 (ses-make-cell): Add property-list as a cell element.
17274 (ses-cell-property-get-fun, ses-cell-property-get)
17275 (ses-cell-property-delq-fun, ses-cell-property-set-fun)
17276 (ses-cell-property-pop-fun, ses-cell-property-get-handle-fun):
17277 New functions.
17278 (ses-cell-property-set, ses-cell-property-pop)
17279 (ses-cell-property-get-handle): New macro.
17280 (ses-cell-property-handle-car, ses-cell-property-handle-setcar):
17281 New aliases, used for code readability.
17282 (ses-calculate-cell, ses-update-cells): Use Dijkstra algorithm for
17283 cycle detection.
17284 (ses-self-reference-early-detection): New defcustom.
17285 (ses-formula-references): Robustify against self-referring cells.
17286 (ses-mode): Use ses-set-localvars.
17287 (ses-command-hook): Add call to ses-initialize-Dijkstra-attempt
17288 before lauching the update processing.
17289 (ses-initialize-Dijkstra-attempt): New function.
17290 (ses-recalculate-cell): Update for cycle detection based on
17291 Dijkstra algorithm.
17292
17293 * ses.el: Fix commenting and indenting convention.
17294
17295 2011-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
17296
17297 * bs.el (bs-cycle-next): Complete last change.
17298
17299 2011-06-27 Drew Adams <drew.adams@oracle.com>
17300
17301 * faces.el (list-faces-display): Add help-mode-map to output (bug#8939).
17302
17303 2011-06-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
17304
17305 * net/network-stream.el (network-stream-open-starttls):
17306 Don't re-get capabilities unless we've reestablished connection.
17307 (network-stream-open-starttls): Fix stupid typo with gnutls-clii.
17308
17309 * mail/smtpmail.el (smtpmail-via-smtp): Bind coding-system-for-*
17310 to binary to possibly avoid line encoding issues on Windows (among
17311 other things).
17312
17313 2011-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
17314
17315 * net/network-stream.el (open-network-stream): Return an :error
17316 saying what the problem was, if possible.
17317
17318 * mail/smtpmail.el (smtpmail-via-smtp): Report the error from the
17319 server.
17320
17321 * net/network-stream.el (network-stream-open-starttls): If we
17322 wanted to use STARTTLS, and the server offered it, but we weren't
17323 able to because we had no STARTTLS support, then close the connection.
17324 (open-network-stream): Return an :error element, if present.
17325
17326 2011-06-26 Chong Yidong <cyd@stupidchicken.com>
17327
17328 * hl-line.el (hl-line-sticky-flag): Doc fix.
17329 (global-hl-line-sticky-flag): New option (Bug#8323).
17330 (global-hl-line-highlight): Obey it.
17331
17332 * vc/vc.el (vc-revert-show-diff): Default to t.
17333
17334 2011-06-26 Ken Manheimer <ken.manheimer@gmail.com>
17335
17336 * allout-widgets.el (allout-widgets-post-command-business):
17337 Stop decorating intermediate isearch matches. They're not being
17338 undecorated when an isearch is continued past, and isearch
17339 automatically collapses them. This leads to "widget leaks", where
17340 decorated items accumulate in collapsed areas. Lines with lots of
17341 hidden widgets can slow down cursor travel, substantially.
17342 Too much complicated machinery would be needed to ensure undecoration,
17343 so we're doing without this nicety.
17344
17345 (allout-widgets-tally-string): Don't try to do a hash-table-count
17346 of allout-widgets-tally when it's nil. This eliminates spurious "Error
17347 during redisplay: (wrong-type-argument hash-table-p nil)" warnings in
17348 *Messages* when allout-widgets-maintain-tally is t.
17349
17350 2011-06-26 Martin Rudalics <rudalics@gmx.at>
17351
17352 * window.el (display-buffer-normalize-argument): Rename to
17353 display-buffer-normalize-arguments. Handle special meaning of
17354 LABEL argument. Respect special-display-function when popping up
17355 a new frame. Fix code searching for a window showing the buffer
17356 on another frame.
17357 (display-buffer-normalize-specifiers):
17358 Call display-buffer-normalize-arguments.
17359 (display-buffer-in-window): Don't undedicate the window if its
17360 buffer remains the same.
17361 Reported by Drew Adams <drew.adams@oracle.com>.
17362 (display-buffer-alist): Add choice for same-window macro
17363 specfier.
17364 (display-buffer): Mention special meaning of LABEL argument in
17365 doc-string. Fix quoting. Don't pop up a new frame even as
17366 fallback.
17367
17368 2011-06-26 Juanma Barranquero <lekktu@gmail.com>
17369
17370 * bs.el (bs-cycle-next): Pass current buffer to `bury-buffer' to
17371 avoid deleting the current window in some cases (bug#8911).
17372
17373 2011-06-26 Andreas Schwab <schwab@linux-m68k.org>
17374
17375 * emacs-lisp/smie.el (smie-bnf->prec2): Fix last change.
17376 (Bug#8934)
17377
17378 2011-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
17379
17380 * net/network-stream.el (network-stream-open-starttls):
17381 Use built-in TLS support if `gnutls-available-p' is true.
17382 (network-stream-open-tls): Ditto.
17383
17384 2011-06-26 Leo Liu <sdl.web@gmail.com>
17385
17386 * register.el (registerv): New struct.
17387 (registerv-make): New function.
17388 (jump-to-register, describe-register-1, insert-register):
17389 Support the jump-func, print-func and insert-func slot of a registerv
17390 struct. (Bug#8415)
17391
17392 2011-06-26 Chong Yidong <cyd@stupidchicken.com>
17393
17394 * vc/vc.el (vc-revert-show-diff): New defcustom.
17395 (vc-diff-internal): New arg specifying diff buffer.
17396 (vc-revert): Obey vc-revert-show-diff. If we show a diff, don't
17397 reuse an existing *vc-diff* buffer (Bug#8927).
17398
17399 * progmodes/cperl-mode.el (cperl-mode): Derive from prog-mode.
17400
17401 2011-06-26 Glenn Morris <rgm@gnu.org>
17402
17403 * progmodes/f90.el (f90-critical-indent): New option.
17404 (f90-font-lock-keywords-2, f90-blocks-re, f90-end-block-re)
17405 (f90-start-block-re, f90-mode-abbrev-table): Add block, critical.
17406 (f90-mode): Doc fix.
17407 (f90-looking-at-critical, f90-looking-at-end-critical): New funcs.
17408 (f90-no-block-limit, f90-calculate-indent, f90-end-of-block)
17409 (f90-beginning-of-block, f90-next-block, f90-indent-region)
17410 (f90-match-end): Handle block, critical.
17411
17412 2011-06-25 Glenn Morris <rgm@gnu.org>
17413
17414 * calendar/diary-lib.el (diary-included-files): Doc fix.
17415 (diary-include-files): New function, extracted from
17416 diary-include-other-diary-files and diary-mark-included-diary-files.
17417 (diary-include-other-diary-files, diary-mark-included-diary-files):
17418 Just call diary-include-files.
17419 (diary-mark-entries): Reset diary-included-files on first call.
17420
17421 * calendar/diary-lib.el (diary-mark-entries)
17422 (diary-mark-included-diary-files):
17423 Visit included diary-files in temp buffers.
17424
17425 * progmodes/f90.el (f90-keywords-re, f90-font-lock-keywords-1)
17426 (f90-blocks-re, f90-program-block-re, f90-end-block-re)
17427 (f90-start-block-re, f90-imenu-generic-expression)
17428 (f90-looking-at-program-block-start, f90-no-block-limit):
17429 Add support for submodules.
17430
17431 * progmodes/f90.el (f90-keywords-re, f90-keywords-level-3-re)
17432 (f90-procedures-re, f90-constants-re): Add some F2008 stuff.
17433
17434 2011-06-25 Eli Zaretskii <eliz@gnu.org>
17435
17436 * net/ange-ftp.el (ange-ftp-insert-file-contents): Let-bind
17437 buffer-file-type before setting its value, to avoid disastrous
17438 global effects on decoding files for DOS/Windows systems. (Bug#8780)
17439
17440 2011-06-25 Juanma Barranquero <lekktu@gmail.com>
17441
17442 * allout.el (allout-unload-function): Pass -1 to `allout-mode'.
17443
17444 * ses.el (ses-unload-function):
17445 * emacs-lisp/re-builder.el (re-builder-unload-function): Simplify.
17446
17447 * proced.el (proced-unload-function):
17448 * progmodes/cperl-mode.el (cperl-mode-unload-function): Remove.
17449
17450 2011-06-25 Andreas Rottmann <a.rottmann@gmx.at>
17451
17452 * server.el (server-create-window-system-frame): Add parameters arg.
17453 (server-process-filter): Doc fix. Handle frame-parameters.
17454
17455 2011-06-25 Juanma Barranquero <lekktu@gmail.com>
17456
17457 Fix bug#8730, bug#8781.
17458
17459 * loadhist.el (unload--set-major-mode): New function.
17460 (unload-feature): Use it.
17461
17462 * progmodes/python.el (python-after-info-look): Add autoload cookie.
17463 (python-unload-function): New function.
17464
17465 2011-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
17466
17467 * mail/rmail.el (rmail-show-message-1): Use restore-buffer-modified-p.
17468
17469 2011-06-25 Giuseppe Scrivano <gscrivano@gnu.org>
17470
17471 * net/browse-url.el (browse-url-firefox-program): Add icecat to
17472 the candidates list.
17473
17474 2011-06-24 Juanma Barranquero <lekktu@gmail.com>
17475
17476 * progmodes/verilog-mode.el (verilog-mode): Fix test for bound variable.
17477
17478 2011-06-23 Richard Stallman <rms@gnu.org>
17479
17480 * mail/rmail.el: Going to grep hit in Rmail buffer finds the message.
17481 (rmail-variables): Set next-error-move-function.
17482 (rmail-what-message): Take argument POS.
17483 (rmail-next-error-move): New function.
17484
17485 2011-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
17486
17487 * emacs-lisp/smie.el (smie-bnf->prec2): Give more understandable error
17488 messages for adjacent non-terminals.
17489
17490 2011-06-23 Richard Stallman <rms@gnu.org>
17491
17492 * mail/rmail.el (rmail-retry-ignored-headers): Add message-id.
17493 (rmail-show-message-1): Preserve buffer modified flag.
17494 (rmail-start-mail): Don't specify use of rmail-mail-return;
17495 that's done by mail-bury now.
17496 (rmail-mail-return): Handle arg NEWBUF.
17497
17498 2011-06-23 Michael Albinus <michael.albinus@gmx.de>
17499
17500 * net/tramp-sh.el (tramp-method-out-of-band-p): Check, whether
17501 SIZE is a number.
17502
17503 2011-06-23 Martin Rudalics <rudalics@gmx.at>
17504
17505 * window.el (get-lru-window, get-mru-window)
17506 (get-largest-window): Never return a minibuffer window.
17507 (display-buffer-pop-up-window): Fix a bug that could lead to
17508 reusing the minibuffer window.
17509 (display-buffer): Pass original specifier argument to
17510 display-buffer-function instead of the normalized one.
17511 Reported by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
17512
17513 2011-06-22 Leo Liu <sdl.web@gmail.com>
17514
17515 * minibuffer.el (completing-read-function)
17516 (completing-read-default): Move from minibuf.c.
17517
17518 2011-06-22 Richard Stallman <rms@gnu.org>
17519
17520 * mail/sendmail.el (mail-bury): If Rmail is in use, return nicely
17521 to Rmail even if not started by a special Rmail command.
17522
17523 * mail/rmailmm.el (rmail-insert-mime-forwarded-message):
17524 Copy the buffer currently showing just one message.
17525
17526 2011-06-22 Roland Winkler <winkler@gnu.org>
17527
17528 * textmodes/bibtex.el (bibtex-entry-update): Use mapc.
17529 (bibtex-clean-entry): First delete the old key so that a
17530 customized algorithm for generating the new key does not get
17531 confused by the old key.
17532 (bibtex-url): Obey regexp of first step.
17533 (bibtex-search-entries): Do not use add-to-list with local
17534 list-var.
17535
17536 2011-06-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
17537
17538 * mail/smtpmail.el (smtpmail-try-auth-methods): If the user has
17539 stored a user name, then query for the password first, instead of
17540 waiting for SMTP to give an error message and the trying again.
17541
17542 2011-06-22 Lawrence Mitchell <wence@gmx.li>
17543
17544 * net/browse-url.el (browse-url-xdg-open): Use 0, rather than nil
17545 BUFFER in call-process.
17546
17547 2011-06-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
17548
17549 * mail/smtpmail.el (smtpmail-via-smtp): Make sure we don't send
17550 QUIT twice.
17551 (smtpmail-try-auth-methods): Require user name and password from
17552 auth-source.
17553
17554 2011-06-22 Martin Rudalics <rudalics@gmx.at>
17555
17556 * window.el (display-buffer-default-specifiers)
17557 (display-buffer-alist): Remove entries for pop-up-frame-alist.
17558 Suggested by Katsumi Yamaoka <yamaoka@jpl.org>.
17559 (split-window): Normalize SIDE argument (Bug#8916).
17560
17561 * frame.el (pop-up-frame-alist, pop-up-frame-function)
17562 (special-display-frame-alist, special-display-popup-frame):
17563 Remove duplicate declarations. These are now in window.el.
17564
17565 2011-06-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
17566
17567 * mail/smtpmail.el (smtpmail-via-smtp):
17568 Set :use-starttls-if-possible so that we always use STARTTLS if the
17569 server supports it. SMTP servers that support STARTTLS commonly
17570 require it.
17571
17572 * net/network-stream.el (network-stream-open-starttls): Support
17573 upgrading to STARTTLS always, even if we don't have built-in support.
17574 (open-network-stream): Add the :always-query-capabilities keyword.
17575
17576 * mail/smtpmail.el: Rewritten to do opportunistic STARTTLS
17577 upgrades with `open-network-stream', and rely solely on
17578 auth-source for all credentials. Big changes throughout the file,
17579 but in particular:
17580 (smtpmail-auth-credentials): Remove.
17581 (smtpmail-starttls-credentials): Remove.
17582 (smtpmail-via-smtp): Check for servers saying they want AUTH after
17583 MAIL FROM, too.
17584
17585 * net/network-stream.el (network-stream-open-starttls):
17586 Provide support for client certificates both for external and built-in
17587 STARTTLS.
17588 (auth-source): Require.
17589 (open-network-stream): Document the :client-certificate keyword.
17590 (network-stream-certificate): Change cert-cert to cert and
17591 cert-key to key.
17592
17593 2011-06-21 Michael Albinus <michael.albinus@gmx.de>
17594
17595 * net/tramp-cache.el (top): Don't load the persistency file when
17596 "emacs -Q" has been called.
17597
17598 2011-06-21 Tim Harper <timcharper@gmail.com>
17599
17600 * term/ns-win.el (ns-initialize-window-system):
17601 Set application-specific `ApplePressAndHoldEnabled' system
17602 resource to NO as it is not yet supported by the NS port.
17603
17604 2011-06-21 Juanma Barranquero <lekktu@gmail.com>
17605
17606 * misc.el (list-dynamic-libraries--refresh): Compute header here...
17607 (list-dynamic-libraries): ...not here.
17608
17609 2011-06-21 Leo Liu <sdl.web@gmail.com>
17610
17611 * subr.el (sha1): Implement sha1 using secure-hash.
17612
17613 2011-06-21 Martin Rudalics <rudalics@gmx.at>
17614
17615 * window.el (display-buffer-alist): In default value do not
17616 enforce searching a window on any but the selected frame.
17617 Reported by Katsumi Yamaoka <yamaoka@jpl.org>.
17618 (display-buffer-select-window): Remove function.
17619 (display-buffer-in-window): When a window on another frame gets
17620 reused, do not select it any more but just raise its frame if
17621 necessary (Bug#8851) and (Bug#8856).
17622 (display-buffer-normalize-options): Handle pop-up-frames related
17623 options more faithfully.
17624 (pop-to-buffer): Don't rely on `display-buffer' selecting the
17625 window if it is on another frame.
17626 (display-buffer-alist, display-buffer-default-specifiers):
17627 Don't make new frame unsplittable by default.
17628 (display-buffer-normalize-argument): Fix doc-string typo and use
17629 'same-frame-other-window instead of 'other-window when associating
17630 with display-buffer-macro-specifiers.
17631
17632 2011-06-21 Vincent Belaïche <vincent.b.1@hotmail.fr>
17633
17634 * play/5x5.el (5x5-solve-rotate-left, 5x5-solve-rotate-right):
17635 New functions.
17636 (5x5-mode-map, 5x5-mode-menu): Bind them.
17637 (5x5-draw-grid): Tweak the solver's rendering.
17638
17639 2011-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
17640
17641 * progmodes/compile.el (compilation-error-regexp-alist-alist): Rename
17642 `caml' to `python-tracebacks-and-caml'; allow leading tabs (bug#8585).
17643
17644 2011-06-21 Drew Adams <drew.adams@oracle.com>
17645
17646 * menu-bar.el: Use function variable instead of switch-to-buffer.
17647 (menu-bar-select-buffer-function): New variable.
17648 (menu-bar-update-buffers): Use it (bug#8876).
17649
17650 2011-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
17651
17652 * emacs-lisp/bytecomp.el (add-to-list): Add handler to check the
17653 variable's status.
17654
17655 2011-06-20 Jan Djärv <jan.h.d@swipnet.se>
17656
17657 * x-dnd.el (x-dnd-version-from-flags)
17658 (x-dnd-more-than-3-from-flags): New functions that handle long-as-cons
17659 and long as number (Bug#8899).
17660 (x-dnd-handle-xdnd): Call functions above (Bug#8899).
17661
17662 2011-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
17663
17664 * minibuffer.el (completion-metadata): Add `metadata' to the alist.
17665 (completion-try-completion, completion-all-completions): Compute the
17666 metadata argument if it's missing; make it optional (bug#8795).
17667
17668 * wid-edit.el: Use lex-bind and move towards completion-at-point.
17669 (widget-complete): Use new :completion-function property.
17670 (widget-completions-at-point): New function.
17671 (default): Use :completion-function instead of :complete.
17672 (widget-default-completions): Rename from widget-default-complete;
17673 Rewrite.
17674 (widget-string-complete, widget-file-complete, widget-color-complete):
17675 Remove functions.
17676 (file, symbol, function, variable, coding-system, color):
17677 * international/mule-cmds.el (default-input-method, charset)
17678 (language-info-custom-alist):
17679 * cus-edit.el (face): Use new property :completions.
17680
17681 * progmodes/pascal.el (pascal-completions-at-point): New function.
17682 (pascal-mode): Use it.
17683 (pascal-mode-map): Use completion-at-point.
17684 (pascal-toggle-completions): Make obsolete.
17685 (pascal-complete-word, pascal-show-completions):
17686 * progmodes/octave-mod.el (octave-complete-symbol):
17687 Redefine as obsolete alias.
17688 * progmodes/octave-inf.el (inferior-octave-completion-at-point):
17689 Signal absence of completion info for old Octave,
17690 (inferior-octave-complete): Redefine as obsolete alias.
17691 * progmodes/meta-mode.el: Use lexical-binding and completion-at-point.
17692 (meta-completions-at-point): Rename from meta-complete-symbol and
17693 adapt it for use on completion-at-point-functions.
17694 (meta-common-mode): Use it.
17695 (meta-looking-at-backward, meta-match-buffer): Remove.
17696 (meta-complete-symbol): Redefine as obsolete alias.
17697 (meta-common-mode-map): Use completion-at-point.
17698 * progmodes/make-mode.el: Use lexical-binding and completion-at-point.
17699 (makefile-mode-map): Use completion-at-point.
17700 (makefile-completions-at-point): Rename from makefile-complete and
17701 adapt it for use on completion-at-point-functions.
17702 (makefile-mode): Use it.
17703 (makefile-complete): Redefine as obsolete alias.
17704
17705 2011-06-20 Deniz Dogan <deniz@dogan.se>
17706
17707 * net/rcirc.el: Delete trailing whitespaces once and for all.
17708
17709 2011-06-20 Daniel Colascione <dan.colascione@gmail.com>
17710
17711 * emacs-lisp/syntax.el (syntax-ppss): Further improve docstring.
17712
17713 2011-06-19 Chong Yidong <cyd@stupidchicken.com>
17714
17715 * files.el (auto-mode-alist): Entry for m2-mode (Bug#8852).
17716
17717 * info.el (Info-apropos-toc-nodes): Minor doc fix (Bug#8833).
17718
17719 2011-06-19 Martin Rudalics <rudalics@gmx.at>
17720
17721 * window.el (display-buffer-other-window-means-other-frame):
17722 Call display-buffer-normalize-alist.
17723 (display-buffer-normalize-specifiers-1): Rename to
17724 display-buffer-normalize-argument. New argument other-frame.
17725 Rewrite.
17726 (display-buffer-normalize-specifiers-2): Rename to
17727 display-buffer-normalize-options.
17728 (display-buffer-normalize-alist-1): New function.
17729 (display-buffer-normalize-specifiers-3): Rename to
17730 display-buffer-normalize-alist.
17731 Call display-buffer-normalize-alist-1.
17732 (display-buffer-normalize-options-inhibit): New variable.
17733 (display-buffer-normalize-specifiers): Rewrite calling
17734 display-buffer-normalize-alist,
17735 display-buffer-normalize-argument, and
17736 display-buffer-normalize-options. Don't call the latter if
17737 display-buffer-normalize-options-inhibit is non-nil.
17738 (frame-auto-delete): New option.
17739 (window-deletable-p): Use frame-auto-delete.
17740 (window-list-no-nils, window-state-ignored-parameters)
17741 (window-state-get-1, window-state-get, window-state-put-list)
17742 (window-state-put-1, window-state-put-2, window-state-put):
17743 New functions.
17744 (display-buffer-normalize-options): Move special-display-p group
17745 after pop-up-frame group (Bug#8851) and (Bug#8856).
17746
17747 2011-06-18 Chong Yidong <cyd@stupidchicken.com>
17748
17749 * emacs-lisp/rx.el (rx-constituents): Add support for numbered
17750 groups (Bug#8776).
17751 (rx-submatch-n): New function.
17752 (rx): Document it.
17753
17754 * dired-x.el (dired-mark-unmarked-files): Fix interactive spec
17755 (Bug#8768).
17756
17757 * replace.el (occur-mode-map): Set occur-edit-mode binding to "e".
17758
17759 * textmodes/fill.el (default-justification): Add :safe (Bug#8879).
17760
17761 * cus-face.el (custom-declare-face): Call custom-theme-recalc face
17762 anytime existing face settings are present (Bug#8889).
17763
17764 * progmodes/delphi.el (delphi-mode-syntax-table): Use defvar.
17765 (delphi-mode): Use define-derived-mode to inherit from prog-mode.
17766 Remove unused argument.
17767
17768 2011-06-18 Martin Rudalics <rudalics@gmx.at>
17769
17770 * window.el (display-buffer-default-specifiers):
17771 Remove pop-up-frame. Add pop-up-window-min-height,
17772 pop-up-window-min-width, and another reuse-window specifier
17773 (Bug#8882). Reported by Dan Nicolaescu <dann@gnu.org>.
17774 (display-buffer-normalize-specifiers-2):
17775 Handle split-height-threshold and split-width-threshold also when
17776 pop-up-windows is unset. Add a reuse-window specifier for the
17777 case popping up a new window fails.
17778 (special-display-popup-frame): Remove double quoting.
17779 (display-buffer-normalize-specifiers-1): Fix thinko.
17780
17781 2011-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
17782
17783 * shell.el (shell-completion-vars): Set pcomplete-termination-string
17784 according to comint-completion-addsuffix.
17785
17786 * pcomplete.el: Convert to lexical binding and fix bug#8819.
17787 (pcomplete-suffix-list): Mark as obsolete.
17788 (pcomplete-completions-at-point): Capture pcomplete-norm-func and
17789 pcomplete-seen in the closure.
17790 (pcomplete-comint-setup): Setup completion-at-point as well.
17791 (pcomplete--entries): New function.
17792 (pcomplete--env-regexp): New var.
17793 (pcomplete-entries): Rewrite to work with partial-completion and
17794 without relying on pcomplete-suffix-list.
17795 (pcomplete-pare-list): Remove, unused.
17796
17797 2011-06-17 Martin Rudalics <rudalics@gmx.at>
17798
17799 * window.el (display-buffer-alist): Set pop-up-window-min-height
17800 and pop-up-window-min-width in default value. Reported by
17801 Thierry Volpiatto <thierry.volpiatto@gmail.com>. New specifier
17802 other-window-means-other-frame.
17803 (display-buffer-macro-specifiers): Comment out entry for
17804 other-window specifier.
17805 (display-buffer-other-window-means-other-frame): New function.
17806 (display-buffer-normalize-specifiers-1): New arguments
17807 buffer-name and label. Treat other-window case specially.
17808 (display-buffer-normalize-specifiers-2): Treat other-window case
17809 specially.
17810 (display-buffer-normalize-specifiers-3): New function.
17811 (display-buffer-normalize-specifiers):
17812 Call display-buffer-normalize-specifiers-3.
17813
17814 2011-06-17 Martin Rudalics <rudalics@gmx.at>
17815
17816 * window.el (same-window-p): Fix two typos introduced when
17817 adding with-no-warnings.
17818 (display-buffer-normalize-specifiers-1): Don't check
17819 pop-up-frames for 'unset initialization.
17820 (display-buffer-normalize-specifiers-2): Major rewrite using
17821 special-display-p and same-window-p (Bug#8851) and (Bug#8856).
17822 (pop-up-frames, display-buffer-reuse-frames)
17823 (display-buffer-mark-dedicated): Don't initialize to 'unset.
17824 Suggested by David Engster <deng@randomsample.de>.
17825 (even-window-heights): Initialize to 'unset.
17826 (display-buffer-alist-set): Handle new 'unset initializations.
17827 (display-buffer-macro-specifiers): Don't pop up a new frame in the
17828 other window case.
17829
17830 2011-06-16 Martin Rudalics <rudalics@gmx.at>
17831
17832 * window.el (display-buffer-normalize-specifiers-1):
17833 Respect current value of pop-up-frames for most reasonable values of
17834 second argument of display-buffer (Bug#8865).
17835 (switch-to-buffer-same-frame, switch-to-buffer-other-window)
17836 (switch-to-buffer-other-window-same-frame)
17837 (switch-to-buffer-other-frame): Fix doc-strings. Reported by Drew
17838 Adams (Bug#8875).
17839 (display-buffer): Don't check noninteractive when calling
17840 display-buffer-pop-up-frame.
17841 (display-buffer-pop-up-frame): Never pop up a frame in
17842 noninteractive mode (Bug#8857).
17843 (enlarge-window, shrink-window): Don't report an error when the
17844 window can't be resized as requested (Bug#8862).
17845
17846 2011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
17847
17848 * pcmpl-rpm.el (pcomplete/rpm): Minor simplification.
17849
17850 * emacs-lisp/debug.el (debug): Don't leave the buffer in Debugger.
17851
17852 * abbrev.el (define-abbrev-table): Don't add a table multiple times.
17853
17854 2011-06-15 Alan Mackenzie <acm@muc.de>
17855
17856 * progmodes/cc-fonts.el (c-font-lock-declarations): 1: Whilst checking
17857 for declarators, disable knr checking to speed up for normal files.
17858 2: Refactor, replacing a sequence of nested if forms by a cond form.
17859
17860 2011-06-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
17861
17862 * net/network-stream.el (open-network-stream): Add the keyword
17863 :always-query-capabilities for the case where you want to force a
17864 `plain' network connection, but the protocol still requires the
17865 capabilitiy command (i.e., SMTP and EHLO).
17866
17867 * subr.el (process-live-p): Rename from `process-alive-p' for
17868 consistency with other `-live-p' functions.
17869
17870 2011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
17871
17872 * window.el (same-window-buffer-names, same-window-regexps)
17873 (special-display-frame-alist, special-display-popup-frame)
17874 (special-display-function, special-display-buffer-names)
17875 (special-display-regexps, pop-up-frame-alist)
17876 (pop-up-frame-function, pop-up-frames, display-buffer-reuse-frames)
17877 (pop-up-windows, split-window-preferred-function)
17878 (split-height-threshold, split-width-threshold, even-window-heights)
17879 (display-buffer-mark-dedicated): Don't encourage the use of
17880 display-buffer-alist from Elisp code.
17881
17882 2011-06-15 Dan Nicolaescu <dann@ics.uci.edu>
17883
17884 * progmodes/python.el (python-mode): Derive from prog-mode.
17885 * progmodes/ps-mode.el (ps-mode):
17886 * progmodes/mixal-mode.el (mixal-mode):
17887 * progmodes/cfengine.el (cfengine-mode):
17888 * progmodes/ld-script.el (ld-script-mode): Likewise.
17889
17890 2011-06-15 Martin Rudalics <rudalics@gmx.at>
17891
17892 * window.el (display-buffer-alist): Trim default value to avoid
17893 popping up a new frame (Bug#8857) or reusing an arbitrary window
17894 on another frame.
17895 (display-buffer): Do not fall back on popping up a new frame in
17896 batch mode (Bug#8857).
17897
17898 2011-06-14 Chong Yidong <cyd@stupidchicken.com>
17899
17900 * cus-theme.el (describe-theme-1): Use custom-theme-p.
17901 (custom-theme-summary): New function.
17902 (customize-themes): Use it.
17903
17904 2011-06-13 Glenn Morris <rgm@gnu.org>
17905
17906 * cus-dep.el (custom-make-dependencies): Use up command-line-args-left.
17907
17908 2011-06-13 Martin Rudalics <rudalics@gmx.at>
17909
17910 * help.el (help-window): Remove variable.
17911 (help-window-point-marker, temp-buffer-max-height)
17912 (temp-buffer-resize-mode, help-window-select): Rewrite doc-strings.
17913 (help-print-return-message): Don't set help-window.
17914 (resize-temp-buffer-window): Rewrite cod eand doc-string.
17915 (help-window-setup-finish): Remove.
17916 (help-window-display-message, help-window-setup)
17917 (with-help-window): Major rewrite based on new
17918 display-buffer-window variable.
17919
17920 * help-mode.el (help-mode-finish): Remove help-window related
17921 code.
17922
17923 * view.el (view-exits-all-viewing-windows): Remove reference to
17924 view-return-to-alist in doc-string.
17925 (view-return-to-alist): Make obsolete.
17926 (view-buffer): Call pop-to-buffer-same-window and remove
17927 undo-window code.
17928 (view-buffer-other-window): Call pop-to-buffer-other-window and
17929 simplify code. Ignore second argument.
17930 (view-buffer-other-frame): Call pop-to-buffer-other-frame and
17931 simplify code. Ignore second argument.
17932 (view-return-to-alist-update): Make obsolete.
17933 (view-mode-enter): Rename second argument to QUIT-RESTORE.
17934 Rewrite using quit-restore window parameters.
17935 (view-mode-exit): Rename second argument to EXIT-ONLY.
17936 Rewrite using quit-restore-window.
17937 (View-exit, View-exit-and-edit, View-leave, View-quit)
17938 (View-quit-all, View-kill-and-leave): Call view-mode-exit with
17939 appropriate arguments.
17940 (view-end-message): Use quit-restore window parameter.
17941
17942 * window.el (display-buffer-function): Rewrite doc-string.
17943 (display-buffer-window, display-buffer-alist): New variables.
17944 (display-buffer-split-specifiers)
17945 (display-buffer-side-specifiers)
17946 (display-buffer-macro-specifiers): New constants.
17947 (display-buffer-even-window-sizes, display-buffer-set-height)
17948 (display-buffer-set-width, display-buffer-select-window)
17949 (display-buffer-in-window, display-buffer-reuse-window)
17950 (display-buffer-split-window-1, display-buffer-split-window)
17951 (display-buffer-split-atom-window, display-buffer-pop-up-window)
17952 (display-buffer-pop-up-frame, display-buffer-pop-up-side-window)
17953 (display-buffer-in-side-window, normalize-buffer-to-display)
17954 (display-buffer-normalize-specifiers-1)
17955 (display-buffer-normalize-specifiers-2)
17956 (display-buffer-normalize-specifiers, display-buffer-frame):
17957 New functions.
17958 (display-buffer): Major rewrite.
17959 (display-buffer-other-window, display-buffer-other-frame)
17960 (pop-to-buffer, switch-to-buffer-other-window)
17961 (switch-to-buffer-other-frame): Rewrite.
17962 (display-buffer-same-window, display-buffer-same-frame)
17963 (display-buffer-same-frame-other-window)
17964 (pop-to-buffer-same-window, pop-to-buffer-same-frame)
17965 (pop-to-buffer-other-window)
17966 (pop-to-buffer-same-frame-other-window)
17967 (pop-to-buffer-other-frame, switch-to-buffer-same-frame)
17968 (switch-to-buffer-other-window-same-frame): New functions.
17969 (same-window-p, special-display-p): Rewrite disabling warnings.
17970 Make obsolete.
17971 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
17972 (display-buffer-mark-dedicated): Initialize to symbol 'unset.
17973 Make obsolete
17974 (same-window-buffer-names, same-window-regexps)
17975 (special-display-frame-alist, special-display-popup-frame)
17976 (special-display-function, special-display-buffer-names)
17977 (special-display-regexps, pop-up-frame-alist)
17978 (pop-up-frame-function, split-window-preferred-function)
17979 (split-height-threshold, split-width-threshold)
17980 (even-window-heights): Make obsolete.
17981
17982 2011-06-12 Glenn Morris <rgm@gnu.org>
17983
17984 * term/xterm.el (terminal-init-xterm): `version' may be nil. (Bug#8838)
17985 Misc simplifications.
17986
17987 2011-06-12 Martin Rudalics <rudalics@gmx.at>
17988
17989 * window.el (window-safely-shrinkable-p): Restore function which
17990 was inadvertently removed in change from 2011-06-11. Declare as
17991 obsolete.
17992
17993 * calendar/calendar.el (calendar-generate-window):
17994 Use window-iso-combined-p instead of combination of one-window-p and
17995 window-safely-shrinkable-p.
17996
17997 2011-06-12 Glenn Morris <rgm@gnu.org>
17998
17999 * progmodes/fortran.el (fortran-mode-syntax-table):
18000 * progmodes/f90.el (f90-mode-syntax-table):
18001 Set % to punctuation. (Bug#8820)
18002 (f90-find-tag-default): Remove, no longer needed.
18003
18004 2011-06-12 Daniel Colascione <dan.colascione@gmail.com>
18005
18006 * emacs-lisp/syntax.el (syntax-ppss): Clarify which items are invalid.
18007
18008 2011-06-11 Chong Yidong <cyd@stupidchicken.com>
18009
18010 * image.el (image-animated-p): Return animation delay in seconds.
18011 Avoid bit manipulation in Lisp; use `delay' entry in the metadata.
18012 (image-animate-timeout): Remove DELAY argument. Don't assume
18013 every subimage has the same delay; get it from image-animated-p.
18014 (image-animate): Caller changed.
18015
18016 2011-06-11 Michael Albinus <michael.albinus@gmx.de>
18017
18018 * net/tramp.el (tramp-debug-message): Add `tramp-with-progress-reporter'
18019 to ignored backtrace functions.
18020
18021 2011-06-11 Glenn Morris <rgm@gnu.org>
18022
18023 * calendar/appt.el (appt-disp-window-function): Doc fix.
18024 (appt-check): Handle overlapping appointments. (Bug#8337)
18025
18026 2011-06-11 Martin Rudalics <rudalics@gmx.at>
18027
18028 * window.el (window-tree-1, window-tree): New functions, moving
18029 the latter to window.el.
18030 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
18031 (bw-find-tree-sub-1, bw-l, bw-t, bw-r, bw-b, bw-dir, bw-eqdir)
18032 (bw-refresh-edges): Remove.
18033 (balance-windows-1, balance-windows-2): New functions.
18034 (balance-windows): Rewrite in terms of window tree functions,
18035 balance-windows-1 and balance-windows-2.
18036 (bw-adjust-window): Remove.
18037 (balance-windows-area-adjust): New function with functionality of
18038 bw-adjust-window but using resize-window.
18039 (set-window-text-height): Rewrite doc-string.
18040 Use normalize-live-window and resize-window.
18041 (enlarge-window-horizontally, shrink-window-horizontally):
18042 Rename argument to DELTA.
18043 (window-buffer-height): New function.
18044 (fit-window-to-buffer, shrink-window-if-larger-than-buffer):
18045 Rewrite using new window resize routines.
18046 (kill-buffer-and-window, mouse-autoselect-window-select):
18047 Use ignore-errors instead of condition-case.
18048 (quit-window): Call delete-frame instead of delete-windows-on
18049 for the only buffer on frame.
18050
18051 2011-06-10 Martin Rudalics <rudalics@gmx.at>
18052
18053 * loadup.el (top-level): Load window before files for the sake
18054 of replace-buffer-in-windows.
18055
18056 * files.el (read-buffer-to-switch)
18057 (switch-to-buffer-other-window)
18058 (switch-to-buffer-other-frame, display-buffer-other-frame):
18059 Move to window.el.
18060
18061 * simple.el (get-next-valid-buffer, last-buffer, next-buffer)
18062 (previous-buffer): Move to window.el.
18063
18064 * bindings.el (unbury-buffer): Move to window.el.
18065
18066 * window.el (delete-other-windows-vertically): Move after
18067 definition of delete-other-windows.
18068 (other-window, delete-windows-on, replace-buffer-in-windows):
18069 Move here from window.c.
18070 (record-window-buffer, unrecord-window-buffer)
18071 (set-window-buffer-start-and-point, switch-to-prev-buffer)
18072 (switch-to-next-buffer): New functions.
18073 (get-next-valid-buffer, last-buffer, next-buffer): Move here
18074 from simple.el. Call switch-to-next-buffer.
18075 (previous-buffer): Move here from simple.el.
18076 Call switch-to-prev-buffer.
18077 (bury-buffer): Move here from buffer.c. Switch to previous
18078 buffer when window cannot be deleted.
18079 (unbury-buffer): Move here from bindings.el.
18080 (ctl-x-map): Move binding for other-window from window.c to
18081 here.
18082 (read-buffer-to-switch, switch-to-buffer-other-window)
18083 (switch-to-buffer-other-frame): Move here from files.el.
18084 (normalize-buffer-to-switch-to): New functions.
18085 (switch-to-buffer): Move here from buffer.c.
18086 Use read-buffer-to-switch and normalize-buffer-to-switch-to.
18087
18088 2011-06-10 Martin Rudalics <rudalics@gmx.at>
18089
18090 * window.el (window-min-height, window-min-width): Move here
18091 from window.c. Add defcustoms and rewrite doc-strings.
18092 (resize-mini-window, resize-window): New functions.
18093 (adjust-window-trailing-edge, enlarge-window, shrink-window):
18094 Move here from window.c.
18095 (maximize-window, minimize-window): New functions.
18096 (delete-window, delete-other-windows, split-window): Move here
18097 from window.c.
18098 (window-split-min-size): New function.
18099 (split-window-keep-point): Mention split-window-above-each-other
18100 instead of split-window-vertically.
18101 (split-window-above-each-other, split-window-vertically):
18102 Rename split-window-vertically to split-window-above-each-other
18103 and provide defalias for old definition.
18104 (split-window-side-by-side, split-window-horizontally):
18105 Rename split-window-horizontally to split-window-side-by-side
18106 and provide defalias for the old definition.
18107 (ctl-x-map): Move bindings for delete-window,
18108 delete-other-windows and enlarge-window here from window.c.
18109 Replace bindings for split-window-vertically and
18110 split-window-horizontally by bindings for
18111 split-window-above-each-other and split-window-side-by-side.
18112
18113 * cus-start.el (all): Remove entries for window-min-height and
18114 window-min-width. Add entries for window-splits and
18115 window-nest.
18116
18117 2011-06-09 Glenn Morris <rgm@gnu.org>
18118
18119 * calendar/appt.el (appt-mode-line): New function.
18120 (appt-check, appt-disp-window): Use it.
18121
18122 * files.el (hack-one-local-variable-eval-safep):
18123 Allow minor-modes with explicit +/-1 arguments.
18124
18125 2011-06-09 Teodor Zlatanov <tzz@lifelogs.com>
18126
18127 * term/xterm.el (xterm): Add defgroup.
18128 (xterm-extra-capabilities): Add defcustom to supply known xterm
18129 capabilities, skip querying them, or query them (default).
18130 (terminal-init-xterm): Use it.
18131 (terminal-init-xterm-modify-other-keys): New function to set up
18132 modifyOtherKeys support to simplify `terminal-init-xterm'.
18133
18134 2011-06-09 Martin Rudalics <rudalics@gmx.at>
18135
18136 * window.el (resize-window-reset, resize-window-reset-1)
18137 (resize-subwindows-skip-p, resize-subwindows-normal)
18138 (resize-subwindows, resize-other-windows, resize-this-window)
18139 (resize-root-window, resize-root-window-vertically)
18140 (window-deletable-p, window-or-subwindow-p)
18141 (frame-root-window-p): New functions.
18142
18143 2011-06-09 Glenn Morris <rgm@gnu.org>
18144
18145 * net/ange-ftp.el (ange-ftp-switches-ok): New function.
18146 (ange-ftp-get-files): Use it.
18147
18148 2011-06-09 Alexander Klimov <alserkli@inbox.ru> (tiny change)
18149
18150 * mail/sendmail.el (mail-recover-1, mail-recover):
18151 * files.el (recover-file, recover-session):
18152 Handle dired-listing-switches not being just a single short option.
18153
18154 2011-06-09 Glenn Morris <rgm@gnu.org>
18155
18156 * calendar/appt.el (appt-display-message, appt-disp-window):
18157 Handle lists of appointments.
18158
18159 2011-06-08 Martin Rudalics <rudalics@gmx.at>
18160
18161 * window.el (one-window-p): Move down in code.
18162 Rewrite doc-string.
18163 (window-current-scroll-bars): Rewrite doc-string.
18164 Normalize live window argument.
18165 (walk-windows, get-window-with-predicate, count-windows):
18166 Rewrite doc-string. Use window-list-1.
18167 (window-in-direction-2, window-in-direction, get-mru-window):
18168 New functions.
18169
18170 2011-06-08 Reuben Thomas <rrt@sc3d.org>
18171
18172 * progmodes/flymake.el (flymake-compilation-prevents-syntax-check):
18173 Doc fix (Bug#8713).
18174
18175 2011-06-08 Chong Yidong <cyd@stupidchicken.com>
18176
18177 * repeat.el (repeat-on-final-keystroke): Fix type (Bug#8696).
18178
18179 2011-06-08 Juanma Barranquero <lekktu@gmail.com>
18180
18181 * loadhist.el (unload-feature-special-hooks):
18182 Add `comint-output-filter-functions'.
18183
18184 2011-06-08 Ivan Kanis <gnu@kanis.fr>
18185
18186 * calendar/appt.el (appt-check): Move some initializations into the let.
18187
18188 2011-06-08 Martin Rudalics <rudalics@gmx.at>
18189
18190 * window.el (window-height): Defalias to window-total-height.
18191 (window-width): Defalias to window-body-width.
18192
18193 2011-06-07 Chong Yidong <cyd@stupidchicken.com>
18194
18195 * image-mode.el (image-toggle-animation): New command.
18196 (image-mode-map): Bind it to RET.
18197 (image-mode): Update message.
18198 (image-toggle-display-image): Avoid a spurious cache flush.
18199 (image-transform-rotation): Doc fix.
18200 (image-transform-properties): Return quickly in the normal case.
18201 (image-animate-loop): Rename from image-animate-max-time.
18202
18203 * image.el (image-animate-max-time): Move to image-mode.el.
18204 (create-animated-image): Remove unnecessary function.
18205 (image-animate): Rename from image-animate-start. New arg.
18206 (image-animate-stop): Remove; just use image-animate-timer.
18207 (image-animate-timer): Use car-safe.
18208 (image-animate-timeout): Rename argument.
18209
18210 2011-06-07 Martin Rudalics <rudalics@gmx.at>
18211
18212 * window.el (get-lru-window, get-largest-window): Move here from
18213 window.c. Rename first argument to ALL-FRAMES.
18214 Rephrase doc-strings.
18215 (get-buffer-window-list): Rewrite using window-list-1.
18216 Rephrase doc-string.
18217 (window-safe-min-height, window-safe-min-width): New constants.
18218 (window-size-ignore, window-min-size, window-min-size-1)
18219 (window-sizable, window-sizable-p, window-size-fixed-1)
18220 (window-size-fixed-p, window-min-delta-1, window-min-delta)
18221 (window-max-delta-1, window-max-delta, window-resizable)
18222 (window-resizable-p, window-total-height, window-total-width)
18223 (window-body-width): New functions.
18224 (window-full-height-p, window-full-width-p): Rewrite using
18225 window-total-size.
18226 (window-body-height): Rewrite using window-body-size.
18227
18228 2011-06-06 Martin Rudalics <rudalics@gmx.at>
18229
18230 * window.el (window-right, window-left, window-child)
18231 (window-child-count, window-last-child, window-any-p)
18232 (normalize-live-buffer, normalize-live-frame)
18233 (normalize-any-window, normalize-live-window)
18234 (window-iso-combination-p, window-iso-combined-p)
18235 (window-iso-combinations)
18236 (walk-window-tree-1, walk-window-tree, walk-window-subtree)
18237 (windows-with-parameter, window-with-parameter)
18238 (window-atom-root, make-window-atom, window-atom-check-1)
18239 (window-atom-check, window-side-check, window-check):
18240 New functions.
18241 (ignore-window-parameters, window-sides, window-sides-vertical)
18242 (window-sides-slots): New variables.
18243 (window-size-fixed): Move down in code. Minor doc-string fix.
18244
18245 2011-06-05 Andreas Schwab <schwab@linux-m68k.org>
18246
18247 * comint.el (comint-dynamic-complete-as-filename)
18248 (comint-dynamic-complete-filename): Correctly call
18249 completion-in-region.
18250
18251 2011-06-05 Deniz Dogan <deniz@dogan.se>
18252
18253 * net/rcirc.el (rcirc-prompt-for-encryption): Fix bug introduced
18254 in last change.
18255
18256 2011-06-05 Deniz Dogan <deniz@dogan.se>
18257
18258 * net/rcirc.el (rcirc-prompt-for-encryption): New function.
18259 (rcirc): Use it to prompt for encryption.
18260
18261 2011-06-05 Roland Winkler <winkler@gnu.org>
18262
18263 * textmodes/bibtex.el (bibtex-search-buffer): New variable.
18264 (bibtex-search-entries): New command bound to C-c C-a.
18265 (bibtex-display-entries): New function.
18266
18267 2011-06-05 Roland Winkler <winkler@gnu.org>
18268
18269 * textmodes/bibtex.el (bibtex-generate-url-list): Fix docstring.
18270 (bibtex-insert-kill): After yanking insert newline if necessary.
18271 (bibtex-initialize): Call bibtex-string-files-init only once.
18272 (bibtex-mode): Do not call easy-menu-add.
18273 (bibtex-validate-globally): Use save-excursion in bibtex buffers.
18274 (bibtex-yank): Set arg properly if nil.
18275
18276 2011-06-05 Roland Winkler <winkler@gnu.org>
18277
18278 * textmodes/bibtex.el (bibtex-search-entry-globally):
18279 New variable.
18280 (bibtex-search-entry): Use it.
18281
18282 2011-06-05 Roland Winkler <winkler@gnu.org>
18283
18284 * textmodes/bibtex.el (bibtex-entry-format): New option
18285 sort-fields.
18286 (bibtex-format-entry, bibtex-reformat): Honor this option.
18287 (bibtex-parse-entry): Return fields in proper order.
18288
18289 2011-06-05 Juanma Barranquero <lekktu@gmail.com>
18290
18291 * doc-view.el (doc-view-remove-if): Move computation of result out
18292 of `dolist' to silence misleading lexical-binding warning.
18293
18294 2011-06-04 Chong Yidong <cyd@stupidchicken.com>
18295
18296 * emacs-lisp/timer.el (timer-activate): Remove unused arg.
18297 (timer-activate, timer-activate-when-idle): Doc fix (Bug#8793).
18298
18299 2011-06-04 Michael Albinus <michael.albinus@gmx.de>
18300
18301 * net/tramp-sh.el (tramp-find-shell): Apply workaround also for
18302 "SunOS 5.10".
18303
18304 2011-06-04 Michael Albinus <michael.albinus@gmx.de>
18305
18306 * net/tramp.el (tramp-set-completion-function, tramp-parse-rhosts)
18307 (tramp-parse-shosts, tramp-parse-sconfig, tramp-parse-shostkeys)
18308 (tramp-parse-hosts, tramp-parse-passwd, tramp-parse-netrc)
18309 (tramp-parse-putty):
18310 * net/tramp-sh.el (tramp-completion-function-alist-rsh)
18311 (tramp-completion-function-alist-ssh)
18312 (tramp-completion-function-alist-telnet)
18313 (tramp-completion-function-alist-su)
18314 (tramp-completion-function-alist-putty): Set `tramp-autoload'
18315 cookie.
18316
18317 * net/tramp-ftp.el:
18318 * net/tramp-sh.el:
18319 * net/tramp-smb.el: Set `tramp-autoload' cookie, and eval after
18320 load "tramp.el" `tramp-set-completion-function'.
18321
18322 2011-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
18323
18324 * shell.el: Require and use pcomplete.
18325 (shell-dynamic-complete-functions): Add pcomplete-completions-at-point.
18326 (shell-completion-vars): Set pcomplete-default-completion-function.
18327
18328 2011-06-04 Deniz Dogan <deniz@dogan.se>
18329
18330 * iswitchb.el (iswitchb-window-buffer-p): Use `member' instead of
18331 `memq' (Bug#8799).
18332
18333 2011-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
18334
18335 * subr.el (make-progress-reporter): Add "..." by default (bug#8785).
18336
18337 2011-06-02 Juanma Barranquero <lekktu@gmail.com>
18338
18339 * bs.el (bs--mark-unmark, bs--nth-wrapper):
18340 * mpc.el (mpc-select-extend, mpc-songpointer-context):
18341 * vc/log-view.el (log-view-beginning-of-defun):
18342 * vc/smerge-mode.el (smerge-apply-resolution-patch)
18343 (smerge-refine-forward, smerge-refine-chopup-region):
18344 Silence warning for unused `dotimes' counter variables.
18345
18346 2011-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
18347
18348 * net/tramp.el (tramp-with-progress-reporter): Rename from
18349 with-progress-reporter. Use `declare'.
18350 * net/tramp-smb.el:
18351 * net/tramp-sh.el:
18352 * net/tramp-gvfs.el: Update all uses.
18353
18354 2011-06-02 Jay Belanger <jay.p.belanger@gmail.com>
18355
18356 * calc/calc.el (calc-kill-stack-buffer): Make sure that the trail
18357 buffer isn't killed before making it current.
18358
18359 2011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
18360
18361 Silence various byte-compiler warnings.
18362 * emacs-lisp/byte-run.el (make-obsolete-variable): New argument
18363 `access-type' and new obsolescence format.
18364 * emacs-lisp/bytecomp.el (byte-compile-warn-obsolete): Adjust to
18365 new format.
18366 (byte-compile-check-variable): New `access-type' argument.
18367 Only warn if the access-type is obsolete.
18368 (byte-compile-dynamic-variable-bind, byte-compile-variable-ref)
18369 (byte-compile-variable-set): Adjust callers.
18370 * help-fns.el (describe-variable): Adjust to new obsolescence format.
18371 * mail/sendmail.el (mail-mailer-swallows-blank-line): Only mark
18372 setting it as obsolete.
18373 * simple.el (minibuffer-completing-symbol):
18374 * font-lock.el (font-lock-beginning-of-syntax-function): Only mark read
18375 access as obsolete.
18376 * minibuffer.el (minibuffer-completing-file-name): Don't make it
18377 obsolete yet.
18378 * international/quail.el (quail-mouse-choose-completion): Remove unused
18379 code referring to obsolete var.
18380 (quail-choose-completion-string): Remove.
18381 * server.el (server-clients-with, server-kill-buffer-query-function)
18382 (server-kill-emacs-query-function): Silence "unused `proc'" warnings.
18383 * proced.el (proced-send-signal):
18384 * emacs-lisp/lisp.el (lisp-complete-symbol):
18385 Replace completion-annotate-function with completion-extra-properties.
18386
18387 2011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
18388
18389 * simple.el (goto-line): Use read-number.
18390 (overriding-map-is-bound): Remove.
18391 (saved-overriding-map): Change default.
18392 (save&set-overriding-map): Rename from ensure-overriding-map-is-bound;
18393 Take the map as argument.
18394 (universal-argument, negative-argument, digit-argument): Use it.
18395 (restore-overriding-map): Adjust.
18396 (do-auto-fill): Use fill-forward-paragraph.
18397 (keyboard-quit): Don't signal an error when debug-on-quit is non-nil.
18398
18399 * minibuffer.el (minibuffer-inactive-mode-map): New var.
18400 (minibuffer-inactive-mode): New major mode.
18401 * mouse.el (mouse-drag-region): Remove the "mouse-1 pops up
18402 the *Messages* buffer" hack.
18403 (mouse-popup-menubar): Don't burp if the event is a normal key.
18404
18405 Miscellaneous tweaks.
18406 * emacs-lisp/cl-macs.el (dolist, dotimes): Use the same strategy for
18407 lexical scoping as in subr.el's dolist and dotimes.
18408 * emacs-lisp/bytecomp.el (byte-compile-unfold-bcf):
18409 Silence compiler warning.
18410 * thingatpt.el (forward-whitespace): Trivial coding style fix.
18411 * subr.el (with-output-to-temp-buffer): Provide an edebug spec.
18412 * international/ccl.el (ccl-compile): Trivial simplification.
18413 * help-fns.el (help-do-arg-highlight): Silence compiler warning.
18414 * emacs-lisp/testcover.el (testcover-end): Remove spurious
18415 `printflag' argument.
18416 * emacs-lisp/byte-run.el (make-obsolete, make-obsolete-variable):
18417 Purecopy the whole obsolescence data.
18418
18419 2011-06-01 Leo Liu <sdl.web@gmail.com>
18420
18421 * net/rcirc.el (rcirc-decode-coding-system): Revert last change;
18422 improve doc-string as suggested by Marco Pessotto
18423 <melmothx@gmail.com>.
18424 (rcirc-print): Fix last change.
18425
18426 2011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
18427
18428 * minibuffer.el (complete-with-action): Return nil for the metadata and
18429 boundaries of non-functional tables.
18430 (completion-table-dynamic): Return nil for the metadata.
18431 (completion-table-with-terminator): Add default case, using
18432 complete-with-action.
18433 (completion--metadata): New function.
18434 (completion-all-sorted-completions, minibuffer-completion-help): Use it
18435 to try and avoid pathological performance problems.
18436 (completion--embedded-envvar-table): Return `category' metadata.
18437
18438 2011-05-31 Lars Magne Ingebrigtsen <larsi@gnus.org>
18439
18440 * subr.el (process-alive-p): New tiny convenience function.
18441
18442 2011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
18443
18444 * emacs-lisp/debug.el (debug): Save&restore not just the buffer's
18445 content but also its previous major mode.
18446
18447 2011-05-31 Helmut Eller <eller.helmut@gmail.com>
18448
18449 * emacs-lisp/debug.el (debug): Restore the previous content of the
18450 *Backtrace* buffer when we exit with C-M-c.
18451
18452 2011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
18453
18454 * minibuffer.el: Add metadata method to completion tables.
18455 (completion-category-overrides): New defcustom.
18456 (completion-metadata, completion--field-metadata)
18457 (completion-metadata-get, completion--styles)
18458 (completion--cycle-threshold): New functions.
18459 (completion-try-completion, completion-all-completions):
18460 Add `metadata' argument to choose completion-styles.
18461 (completion--do-completion): Use metadata to choose cycling.
18462 (completion-all-sorted-completions): Use metadata for sorting.
18463 Remove :completion-cycle-penalty which is not needed any more.
18464 (completion--try-word-completion): Add `metadata' argument.
18465 (minibuffer-completion-help): Check metadata for annotation function
18466 and sorting.
18467 (completion-file-name-table): Return `category' metadata.
18468 (minibuffer-completing-file-name): Make obsolete.
18469 * simple.el (minibuffer-completing-symbol): Make obsolete.
18470 * icomplete.el (icomplete-completions): Pass new `metadata' param to
18471 completion-try-completion.
18472
18473 2011-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
18474
18475 * mail/smtpmail.el (smtpmail-send-data): Add progress reporter.
18476
18477 2011-05-30 Leo Liu <sdl.web@gmail.com>
18478
18479 * net/rcirc.el (rcirc-debug-buffer): Use visible buffer name.
18480 (rcirc-print): Decode all incoming messages (bug#8744).
18481 (rcirc-decode-coding-system): Allow value nil for automatic coding
18482 system detection.
18483
18484 2011-06-01 Glenn Morris <rgm@gnu.org>
18485
18486 * mail/emacsbug.el (report-emacs-bug-hook): Mailclient ignores From.
18487
18488 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
18489
18490 * image.el (image-animate-max-time): Allow nil and t values.
18491 Default to nil.
18492 (create-animated-image): Doc fix.
18493 (image-animate-start): Remove second arg; just use
18494 image-animate-max-time.
18495 (image-animate-timeout): Doc fix. Args changed.
18496
18497 * image-mode.el (image-toggle-display-image): Ensure that the
18498 image spec passed to the animate timer is the same object as in
18499 the buffer's display property (Bug#6981).
18500 (image-transform-properties): Doc fix.
18501
18502 * image.el (image-animate-max-time): Default to nil.
18503
18504 2011-05-29 Martin Rudalics <rudalics@gmx.at>
18505
18506 * menu-bar.el (kill-this-buffer-enabled-p): Avoid looping over
18507 entire buffer list (Bug#8184).
18508
18509 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
18510
18511 * image.el (imagemagick-types-inhibit)
18512 (imagemagick-register-types): Doc fix.
18513
18514 2011-05-29 Deniz Dogan <deniz@dogan.se>
18515
18516 * net/rcirc.el (rcirc): Use the user's stored encryption method by
18517 default.
18518
18519 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
18520
18521 * select.el: Don't perform clipboard-manager saving in hooks;
18522 leave the hooks empty.
18523
18524 2011-05-28 Leo Liu <sdl.web@gmail.com>
18525
18526 * replace.el (occur-menu-map, occur-edit-mode-map): New vars.
18527 (occur-mode-map): Bind occur-edit-mode. Use occur-menu-map.
18528 (occur-edit-mode): New major mode (Bug#8463).
18529 (occur-after-change-function): New function.
18530 (occur-engine): Give Occur tags a read-only property.
18531
18532 2011-05-28 Kevin Ryde <user42@zip.com.au>
18533
18534 * subr.el (def-edebug-spec): Doc fix (Bug#8430).
18535
18536 2011-05-28 Chong Yidong <cyd@stupidchicken.com>
18537
18538 * bindings.el (help-echo): Make the initial non-indicator dash
18539 empty on graphical terminals (Bug#7295).
18540
18541 * files.el (auto-mode-alist): Move config rule after the
18542 in-stripping one (Bug#8547).
18543
18544 * newcomment.el (comment-end-skip): Doc fix (Bug#8659).
18545
18546 * startup.el (normal-splash-screen): Remove gratuitous mode-line
18547 setting (Bug#8740).
18548
18549 2011-05-28 Alp Aker <aker@pitt.edu> (tiny change)
18550
18551 * buff-menu.el (Buffer-menu-revert-function, Buffer-menu-sort)
18552 (Buffer-menu-buffer+size): Use Buffer-menu-buffer-column
18553 (Bug#8539).
18554
18555 2011-05-28 Chong Yidong <cyd@stupidchicken.com>
18556
18557 * emacs-lisp/re-builder.el (re-builder): Improve doc (Bug#8286).
18558
18559 2011-05-28 Dima Kogan <dkogan@cds.caltech.edu> (tiny change)
18560
18561 * progmodes/hideshow.el (hs-looking-at-block-start-p): New fun.
18562 (hs-hide-block-at-point, hs-find-block-beginning)
18563 (hs-already-hidden-p, hs-hide-block, hs-show-block): Use it
18564 (Bug#8279).
18565
18566 2011-05-28 Glenn Morris <rgm@gnu.org>
18567
18568 * startup.el (fancy-about-screen): Use standard mode line. (Bug#8740)
18569
18570 2011-05-28 Chong Yidong <cyd@stupidchicken.com>
18571
18572 * help-fns.el (describe-function-1): If the function is a derived
18573 major mode, print the parent mode.
18574
18575 * progmodes/cc-mode.el (c-mode, c++-mode, objc-mode, java-mode)
18576 (idl-mode, pike-mode, awk-mode): Inherit from prog-mode.
18577
18578 2011-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
18579
18580 * minibuffer.el (completion--capf-wrapper): Check applicability before
18581 returning non-nil for non-exclusive completion data.
18582 * progmodes/etags.el (tags-completion-at-point-function):
18583 * info-look.el (info-lookup-completions-at-point): Mark as
18584 non-exclusive.
18585 (info-complete): Adjust accordingly.
18586
18587 * info-look.el: Convert to lexical-binding and completion-at-point.
18588 (info-lookup-completions-at-point): New function.
18589 (info-complete): Use it and completion-in-region.
18590
18591 2011-05-28 Drew Adams <drew.adams@oracle.com>
18592
18593 * isearch.el: Let M-e start with point at the first mismatched char.
18594 (isearch-fail-pos): New function.
18595 (isearch-edit-string): Use it.
18596
18597 2011-05-28 Dmitry Kurochkin <dmitry.kurochkin@gmail.com> (tiny change)
18598
18599 * isearch.el (isearch-range-invisible): Use invisible-p (bug#8721).
18600
18601 2011-05-27 Toby Cubitt <toby-predictive@dr-qubit.org>
18602
18603 * emacs-lisp/avl-tree.el: New avl-tree-stack datatype. Add new
18604 traversal functions for avl-trees.
18605 (avl-tree--stack): New struct.
18606 (avl-tree-stack-p, avl-tree--stack-repopulate): New funs.
18607 (avl-tree-enter): Add optional `updatefun' arg.
18608 (avl-tree--do-enter): Add optional `updatefun' arg.
18609 Change return value.
18610 (avl-tree-delete): Add optional `test' and `nilflag' args.
18611 (avl-tree--do-delete): Add `test' and `nilflag' args.
18612 Change return value.
18613 (avl-tree-member): Add optional `nilflag'
18614 (avl-tree-member-p): New function.
18615 (avl-tree-mapc, avl-tree-mapf, avl-tree-mapcar): New functions.
18616 (avl-tree-stack, avl-tree-stack-pop, avl-tree-stack-first)
18617 (avl-tree-stack-empty-p): New functions.
18618
18619 * emacs-lisp/avl-tree.el (avl-tree--del-balance): Rename from
18620 avl-tree--del-balance1 and make it work both ways.
18621 (avl-tree--del-balance2): Remove.
18622 (avl-tree--enter-balance): Rename from avl-tree--enter-balance1 and
18623 make it work both ways.
18624 (avl-tree--enter-balance2): Remove.
18625 (avl-tree--switch-dir, avl-tree--dir-to-sign, avl-tree--sign-to-dir):
18626 New macros.
18627 (avl-tree--mapc, avl-tree-map): Add direction argument.
18628
18629 2011-05-27 David Michael <fedora.dm0@gmail.com> (tiny change)
18630
18631 * files.el (interpreter-mode-alist): Add rbash (bug#8745).
18632
18633 2011-05-27 Chong Yidong <cyd@stupidchicken.com>
18634
18635 * select.el: Support clipboard managers with built-in function
18636 x-clipboard-manager-save, via delete-frame-functions and
18637 kill-emacs-hook.
18638 (xselect-convert-to-targets): Add MULTIPLE target to list.
18639 (xselect-convert-to-save-targets): New function.
18640
18641 2011-05-27 Kenichi Handa <handa@m17n.org>
18642
18643 * mail/sendmail.el (mail-encode-header): Avoid double encoding by
18644 let-binding rfc2047-encode-encoded-words to nil.
18645
18646 2011-05-27 Glenn Morris <rgm@gnu.org>
18647
18648 * mail/emacsbug.el: Don't require url-util.
18649
18650 * shell.el (shell-directory-tracker): Case matters. (Bug#8735)
18651
18652 * files.el (set-auto-mode):
18653 Also respect mode: entries at the end of the file. (Bug#8586)
18654
18655 2011-05-26 Glenn Morris <rgm@gnu.org>
18656
18657 * files.el (hack-local-variables-prop-line, hack-local-variables):
18658 Downcase mode names, as seems to be traditional.
18659 (hack-local-variables, hack-local-variables-apply): Doc fixes.
18660
18661 * mail/emacsbug.el (report-emacs-bug): Mention checking From address.
18662 (report-emacs-bug-hook): Try to validate the From address. (Bug#8038)
18663
18664 2011-05-25 Julien Danjou <julien@danjou.info>
18665
18666 * textmodes/rst.el (rst-define-level-faces): Do not define face
18667 symbol if it is already defined.
18668
18669 2011-05-24 Vincent Belaïche <vincentb1@users.sourceforge.net>
18670
18671 * play/5x5.el (5x5-new-game, 5x5-randomize):
18672 Reset 5x5-solver-output to nil when a new grid is cast.
18673 (5x5-log-init, 5x5-log): Use defsubst instead of defmacro to shunt
18674 these debugging traces, as defmacro breaks the compiled code.
18675
18676 2011-05-24 Dmitry Kurochkin <dmitry.kurochkin@gmail.com> (tiny change)
18677
18678 * isearch.el (isearch-range-invisible): Use invisible-p (bug#8721).
18679
18680 2011-05-24 Leo Liu <sdl.web@gmail.com>
18681
18682 * vc/vc-bzr.el (vc-bzr-sha1-program): Rename from sha1-program.
18683 (vc-bzr-sha1): Adapt.
18684
18685 * sha1.el: Remove. Function `sha1' is now builtin.
18686
18687 * bindings.el: Provide sha1 feature.
18688
18689 2011-05-24 Kenichi Handa <handa@m17n.org>
18690
18691 * mail/sendmail.el: Require `rfc2047'.
18692 (mail-insert-from-field): Do not perform RFC2047 encoding.
18693 (mail-encode-header): New function.
18694 (sendmail-send-it): Set buffer-file-coding-system of the work
18695 buffer to the return value of select-message-coding-system.
18696 Call mail-encode-header.
18697
18698 * mail/smtpmail.el (smtpmail-send-it): Call mail-encode-header.
18699
18700 2011-05-24 Sean Neakums <sneakums@zork.net> (tiny change)
18701
18702 * mail/supercite.el (sc-default-cite-frame):
18703 Handle sc-nested-citation-p when sc-cite-blank-lines-p is non-nil.
18704
18705 2011-05-24 Glenn Morris <rgm@gnu.org>
18706
18707 * progmodes/python.el (brm-menu): Declare.
18708
18709 * emulation/viper.el (viper-set-hooks): Declare.
18710
18711 * play/5x5.el (5x5-log-init, 5x5-log): Evaluate when compiling.
18712 (5x5-log-init, 5x5-log, 5x5-solver): Doc fixes.
18713 (math-map-vec, math-sub, math-mul, math-make-intv, math-reduce-vec)
18714 (math-format-number, math-pow, calcFunc-arrange, calcFunc-cvec)
18715 (calcFunc-diag, calcFunc-trn, calcFunc-inv, calcFunc-mrow)
18716 (calcFunc-mcol, calcFunc-vconcat, calcFunc-index): Declare.
18717
18718 2011-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
18719
18720 Add an :exit-function for completion-at-point.
18721
18722 * minibuffer.el (completion--done): New fun.
18723 (completion--do-completion): Use it. New arg `expect-exact'.
18724 (minibuffer-complete, minibuffer-complete-word): Don't output message,
18725 since completion--do-completion does it for us now.
18726 (minibuffer-force-complete): Use completion--done and
18727 completion--replace. Handle sole-completion case with more care.
18728 (minibuffer-complete-and-exit): Use new `expect-exact' arg.
18729 (completion-extra-properties): New var.
18730 (completion-annotate-function): Make obsolete.
18731 (minibuffer-completion-help): Adjust accordingly.
18732 Use completion-list-insert-choice-function.
18733 (completion-at-point, completion-help-at-point):
18734 Bind completion-extra-properties.
18735 (completion-pcm-word-delimiters): Add | (for uniquify, for example).
18736 * simple.el (completion-list-insert-choice-function): New var.
18737 (completion-setup-function): Preserve it.
18738 (choose-completion): Pay attention to it, shuffle the code a bit.
18739 (choose-completion-string): New arg `insert-function'.
18740
18741 * textmodes/bibtex.el: Convert to lexical binding.
18742 (bibtex-mode-map): Use completion-at-point.
18743 (bibtex-mode): Use define-derived-mode&completion-at-point-functions.
18744 (bibtex-completion-at-point-function): New fun, from bibtex-complete.
18745 (bibtex-complete): Define as obsolete alias.
18746 (bibtex-complete-internal): Remove.
18747 (bibtex-format-entry): Remove unused sub-group in regexp.
18748 * shell.el (shell--command-completion-data)
18749 (shell-environment-variable-completion):
18750 * pcomplete.el (pcomplete-completions-at-point):
18751 * comint.el (comint--complete-file-name-data): Use :exit-function
18752 instead of completion-table-with-terminator so it also works for
18753 choose-completion.
18754
18755 2011-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
18756
18757 * <lots-of-files>.el: Don't quote lambda expressions with `quote'.
18758
18759 * vc/smerge-mode.el (smerge-refine-subst): Don't deactivate the mark
18760 (bug#8710).
18761
18762 * emacs-lisp/lisp.el (up-list): Fix forward movement (bug#8708).
18763
18764 2011-05-23 Ken Manheimer <ken.manheimer@gmail.com>
18765
18766 * allout.el (allout-inhibit-auto-fill-on-headline): Create new
18767 customization variable and implement: If non-nil, auto-fill will
18768 be inhibited while on topic's header line.
18769
18770 2011-05-23 Vincent Belaïche <vincentb1@users.sourceforge.net>
18771
18772 * play/5x5.el: I/ Add an arithmetic solver to suggest positions to
18773 click on. II/ Make 5x5 multisession. III/ Ensure that random grids
18774 always have a solution in grid size = 5 cases.
18775 (5x5-mode-map): Add keybinding to function `5x5-solve-suggest'.
18776 (5x5-solver-output, 5x5-log-buffer): New vars.
18777 (5x5-grid, 5x5-x-pos, 5x5-y-pos, 5x5-moves, 5x5-cracking):
18778 Make these variables buffer local to achieve 5x5 multi-session-ness.
18779 (5x5): Set 5x5-grid-size only if SIZE is non-negative.
18780 (5x5-grid-to-vec, 5x5-vec-to-grid, 5x5-log-init, 5x5-log, 5x5-solver)
18781 (5x5-solve-suggest): New funs.
18782 (5x5-randomize): Use 5x5-make-move instead of 5x5-flip-cell to
18783 randomize a grid so that we ensure that there is always a solution.
18784 (5x5-make-random-grid): Allow other movement than flipping.
18785
18786 2011-05-23 Kevin Ryde <user42@zip.com.au>
18787
18788 * emacs-lisp/advice.el (ad-read-advised-function):
18789 Use `function-called-at-point' as the default, if it has
18790 advice and passes PREDICATE.
18791
18792 2011-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
18793
18794 * emacs-lisp/bytecomp.el (byte-compile-function-form): Only call
18795 byte-compile-lambda if it's actually a lambda.
18796
18797 * emacs-lisp/eieio.el (eieio-defgeneric-form-primary-only-one):
18798 Fix function quoting. Use backquote better.
18799
18800 2011-05-22 Yuanle Song <sylecn@gmail.com>
18801
18802 * nxml/rng-xsd.el (rng-xsd-check-pattern): Use case-sensitive
18803 matching (Bug#8516).
18804
18805 2011-05-22 Jari Aalto <jari.aalto@cante.net>
18806
18807 * vc/vc-dir.el (vc-default-dir-printer): Give edited tag a
18808 different face (Bug#8178).
18809
18810 2011-05-22 Chong Yidong <cyd@stupidchicken.com>
18811
18812 * vc/diff-mode.el (diff-changed): Don't use terminal specs for
18813 defface (Bug#8144).
18814
18815 2011-05-22 Stefan Monnier <monnier@iro.umontreal.ca>
18816
18817 * emacs-lisp/macroexp.el (macroexpand-all-1): Convert ' to #' for
18818 funcall as well (bug#8712). Warn when performing those conversions.
18819 * emacs-lisp/bytecomp.el (byte-compile-form): Fix error report.
18820
18821 * progmodes/grep.el (grep-mode): Fix it for good (bug#8684)!
18822
18823 2011-05-22 Glenn Morris <rgm@gnu.org>
18824
18825 * files.el (hack-local-variables-prop-line): Small simplifications.
18826 (hack-local-variables, hack-local-variables-prop-line):
18827 If MODE-ONLY, return the mode, rather than just `t'.
18828
18829 2011-05-21 Stefan Monnier <monnier@iro.umontreal.ca>
18830
18831 * progmodes/grep.el (grep-mode): Fix last change (bug#8684).
18832
18833 2011-05-21 Glenn Morris <rgm@gnu.org>
18834
18835 * files.el (hack-local-variables-prop-line, hack-local-variables):
18836 If only interested in the mode, don't bother doing the other stuff.
18837
18838 * image-mode.el (image-after-revert-hook):
18839 Redraw all frames on which the image is visible. (Bug#8567)
18840
18841 * dired-aux.el (dired-touch-initial): Just use current-time. (Bug#6887)
18842
18843 * wid-edit.el (widget-checklist-match-inline):
18844 Fix 2011-04-19 change. (Bug#8649)
18845
18846 2011-05-20 Stefan Monnier <monnier@iro.umontreal.ca>
18847
18848 * emacs-lisp/checkdoc.el (checkdoc-sentencespace-region-engine):
18849 Also allow singlespace after single-letter capitals followed by a dot.
18850
18851 * nxml/nxml-mode.el (nxml-electric-slash): Reindent when completion is
18852 enabled. Suggested by James Ahlborn <jahlborn@gmail.com> (bug#8704).
18853
18854 2011-05-20 Nix <nix@esperi.org.uk>
18855
18856 * files.el (basic-save-buffer-2):
18857 Fix handling of break-hardlink-on-save with non-existent files.
18858
18859 2011-05-19 Deniz Dogan <deniz@dogan.se>
18860
18861 * net/rcirc.el (rcirc-mode): Initialize rcirc-urls to nil.
18862 (rcirc-markup-urls): Check if rcirc-url-regexp is nil.
18863
18864 2011-05-19 Glenn Morris <rgm@gnu.org>
18865
18866 * progmodes/f90.el (f90-type-def-re):
18867 Handle "type, bind(c)". (Bug#8691)
18868
18869 * emacs-lisp/autoload.el (batch-update-autoloads):
18870 Set autoload-excludes by parsing loadup.el rather than Makefiles.
18871
18872 2011-05-18 Michael Albinus <michael.albinus@gmx.de>
18873
18874 * net/tramp.el (tramp-process-actions): Set "first-password-request"
18875 property for the correct connection in case of multihops.
18876
18877 2011-05-18 Glenn Morris <rgm@gnu.org>
18878
18879 * emacs-lisp/authors.el (authors-fixed-entries): Remove fakemail.c.
18880 * mail/sendmail.el (sendmail-program): Fall back to just "sendmail".
18881
18882 Rationalize calendar handling of day and month abbrev-arrays.
18883 * calendar/calendar.el (calendar-customized-p): New function.
18884 (calendar-abbrev-construct, calendar-make-alist): Change what it does.
18885 (calendar-day-name-array, calendar-month-name-array): Doc fix.
18886 Add :set function.
18887 (calendar-abbrev-length, calendar-day-abbrev-array)
18888 (calendar-month-abbrev-array): Make defcustoms, with appropriate :set.
18889 (calendar-day-abbrev-array, calendar-month-abbrev-array):
18890 Elements may no longer be nil.
18891 (calendar-day-name, calendar-month-name):
18892 Update for changed nature of abbrev arrays.
18893 * calendar/diary-lib.el (diary-name-pattern):
18894 Update for changed nature of abbrev arrays.
18895 (diary-mark-entries-1): Update calendar-make-alist calls.
18896 (diary-font-lock-date-forms): Doc fix for changed abbrev arrays.
18897 * calendar/cal-html.el (cal-html-day-abbrev-array):
18898 Simply inherit from calendar-day-abbrev-array.
18899
18900 2011-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
18901
18902 * progmodes/grep.el (grep-mode): Disable default
18903 compilation-directory-matcher setting (bug#8684).
18904
18905 2011-05-17 Michael Albinus <michael.albinus@gmx.de>
18906
18907 * net/tramp.el (tramp-handle-insert-file-contents): Use "dd"
18908 instead of "head" and "tail". There were problems with SunOS 5.9,
18909 and it performs better.
18910
18911 2011-05-17 Glenn Morris <rgm@gnu.org>
18912
18913 * mail/mail-utils.el (mail-dont-reply-to): Silence compiler.
18914
18915 * progmodes/idlw-shell.el (idlwave-shell-complete-filename):
18916 Replace obsolete function.
18917
18918 * shell.el (pcomplete-parse-arguments-function): Declare.
18919
18920 * calendar/appt.el (appt-message-warning-time, appt-display-mode-line)
18921 (appt-display-diary, appt-display-interval, appt-prev-comp-time)
18922 (appt-check): Doc fixes.
18923 (appt-disp-window-function, appt-delete-window-function):
18924 Remove needless special case in custom :type.
18925 (appt-display-count): Default to 0, not nil.
18926 (appt-check): Reset appt-display-count to 0, not nil.
18927
18928 2011-05-17 Juanma Barranquero <lekktu@gmail.com>
18929
18930 * progmodes/python.el (python-font-lock-keywords):
18931 Add the Python 3.X keyword "nonlocal" (bug#8639).
18932
18933 2011-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
18934
18935 * emacs-lisp/eieio.el (defmethod): Fix quoting of code (bug#8677).
18936
18937 2011-05-16 Kevin Ryde <user42@zip.com.au>
18938
18939 * info-look.el (makefile-automake-mode): New setups, looking in
18940 automake manual, then makefile-mode.
18941 (makefile-mode): Remove automake manual, have it just in
18942 makefile-automake-mode since there's various things different or
18943 not relevant to plain make.
18944 (makefile-mode): Remove "other-modes" non-existent automake-mode,
18945 believe a hypothetical automake-mode would go to makefile-mode,
18946 not the other way around.
18947
18948 2011-05-15 Chong Yidong <cyd@stupidchicken.com>
18949
18950 * vc/diff-mode.el (diff-fixup-modifs): Locate correct position for
18951 hunk-end tags (Bug#8672).
18952
18953 * vc/vc-annotate.el (vc-annotate-mode-map): Bind = to
18954 vc-annotate-show-diff-revision-at-line (Bug#8671).
18955
18956 2011-05-14 Glenn Morris <rgm@gnu.org>
18957
18958 * vc/add-log.el (add-change-log-entry): Don't start adding a new entry
18959 in the middle of an existing one with multiple authors. (Bug#8645)
18960 (change-log-font-lock-keywords): Also handle multiple author lines
18961 with leading tabs. (Bug#8644)
18962
18963 * calendar/appt.el (appt-check): Rename some local variables.
18964 Some simplification/reordering.
18965
18966 * mail/feedmail.el (feedmail-confirm-outgoing-timeout)
18967 (feedmail-sendmail-f-doesnt-sell-me-out)
18968 (feedmail-queue-slug-suspect-regexp, feedmail-debug)
18969 (feedmail-debug-sit-for, feedmail-queue-express-hook)
18970 (feedmail-queue-runner-message-sender): Set :version.
18971 (bbdb-search, bbdb-records, smtp-via-smtp, smtp-server)
18972 (bbdb-dwim-net-address, vm-mail): Declare.
18973 (feedmail-binmail-gnulinuxish-template):
18974 Rename from feedmail-binmail-linuxish-template.
18975 (feedmail-buffer-to-smtp, feedmail-vm-mail-mode):
18976 Use insert-buffer-substring.
18977
18978 2011-05-14 Bill Carpenter <bill@carpenter.org>
18979
18980 * mail/feedmail.el (feedmail-patch-level): Increase.
18981 (feedmail-debug): New custom group.
18982 (feedmail-confirm-outgoing-timeout)
18983 (feedmail-sendmail-f-doesnt-sell-me-out)
18984 (feedmail-queue-slug-suspect-regexp, feedmail-debug)
18985 (feedmail-debug-sit-for, feedmail-queue-express-hook): New options.
18986 (feedmail-sender-line, feedmail-from-line)
18987 (feedmail-fiddle-headers-upwardly, feedmail-enable-spray)
18988 (feedmail-spray-this-address)
18989 (feedmail-spray-address-fiddle-plex-list)
18990 (feedmail-queue-use-send-time-for-date)
18991 (feedmail-queue-use-send-time-for-message-id)
18992 (feedmail-last-chance-hook, feedmail-queue-runner-mode-setter)
18993 (feedmail-buffer-eating-function):
18994 Doc fixes.
18995 (feedmail-spray-via-bbdb, feedmail-buffer-to-smtp)
18996 (feedmail-vm-mail-mode, feedmail-message-action-scroll-up)
18997 (feedmail-message-action-scroll-down): New functions.
18998 (feedmail-queue-directory, feedmail-queue-draft-directory):
18999 Use expand-file-name.
19000 (feedmail-prompt-before-queue-standard-alist): Add scroll entries.
19001 Remove C-v help entry.
19002 (feedmail-queue-buffer-file-name): New variable.
19003 (feedmail-mail-send-hook-splitter, feedmail-buffer-to-binmail)
19004 (feedmail-buffer-to-smtpmail, feedmail-queue-express-to-draft)
19005 (feedmail-message-action-send-strong, feedmail-message-action-edit)
19006 (feedmail-message-action-draft, feedmail-message-action-draft-strong)
19007 (feedmail-message-action-queue, feedmail-message-action-queue-strong)
19008 (feedmail-message-action-toggle-spray)
19009 (feedmail-run-the-queue-no-prompts)
19010 (feedmail-run-the-queue-global-prompt, feedmail-queue-reminder)
19011 (feedmail-look-at-queue-directory, feedmail-queue-subject-slug-maker)
19012 (feedmail-create-queue-filename, feedmail-rfc822-time-zone):
19013 (feedmail-fiddle-header, feedmail-give-it-to-buffer-eater)
19014 (feedmail-envelope-deducer, feedmail-fiddle-from)
19015 (feedmail-fiddle-sender, feedmail-default-date-generator)
19016 (feedmail-fiddle-date, feedmail-fiddle-message-id)
19017 (feedmail-fiddle-spray-address)
19018 (feedmail-fiddle-list-of-spray-fiddle-plexes)
19019 (feedmail-fiddle-list-of-fiddle-plexes)
19020 (feedmail-fill-to-cc-function, feedmail-fill-this-one)
19021 (feedmail-one-last-look, feedmail-fqm-p): Add debug calls.
19022 (feedmail-queue-runner-message-sender, feedmail-binmail-template):
19023 Change default. Doc fix.
19024 (feedmail-queue-runner-cleaner-upper): Use feedmail-say-chatter.
19025 (feedmail-binmail-linuxish-template): New constant.
19026 (feedmail-buffer-to-sendmail): Doc fix. Add debug call.
19027 Respect feedmail-sendmail-f-doesnt-sell-me-out.
19028 (feedmail-send-it): Add debug call.
19029 Use feedmail-queue-buffer-file-name, and
19030 feedmail-send-it-immediately-wrapper.
19031 (feedmail-message-action-send): Add debug call.
19032 Use feedmail-send-it-immediately-wrapper.
19033 (feedmail-queue-express-to-queue): Add debug call.
19034 Run feedmail-queue-express-hook.
19035 (feedmail-message-action-help): Add debug call. Use feedmail-p-h-b-n.
19036 (feedmail-message-action-help-blat):
19037 Rename from feedmail-queue-send-edit-prompt-help-first.
19038 (feedmail-run-the-queue): Add debug call. Set buffer-file-type.
19039 Check line-endings. Handle errors better.
19040 (feedmail-queue-reminder-brief, feedmail-queue-reminder-medium):
19041 Doc fix. Add debug call.
19042 (feedmail-queue-send-edit-prompt): Doc fix. Add debug call.
19043 Use feedmail-queue-send-edit-prompt-inner.
19044 (feedmail-queue-runner-prompt, feedmail-scroll-buffer): New functions.
19045 (feedmail-queue-send-edit-prompt-inner): New function, extracted
19046 from feedmail-queue-send-edit-prompt.
19047 (feedmail-queue-send-edit-prompt-help)
19048 (feedmail-queue-send-edit-prompt-help-later): Remove functions.
19049 (feedmail-tidy-up-slug): Add debug call.
19050 Respect feedmail-queue-slug-suspect-regexp.
19051 (feedmail-queue-subject-slug-maker): Use buffer-substring-no-properties.
19052 (feedmail-dump-message-to-queue): Add debug call.
19053 Expand queue-directory.
19054 (feedmail-dump-message-to-queue): Change message slightly.
19055 Use feedmail-say-chatter.
19056 (feedmail-rfc822-date): Add debug call. Bind system-time-locale.
19057 (feedmail-send-it-immediately-wrapper): New function.
19058 (feedmail-send-it-immediately): Add debug calls. Use let not let*.
19059 Insert empty string rather than newline. Handle full-frame case.
19060 Use catch/throw. Use feedmail-say-chatter.
19061 (feedmail-fiddle-from): Try mail-host-address.
19062 (feedmail-default-message-id-generator): Doc fix.
19063 Bind system-time-locale. Handle missing end.
19064 (feedmail-fiddle-x-mailer): Add debug call.
19065 Handle feedmail-x-mailer-line being nil.
19066 (feedmail-accume-n-nuke-header, feedmail-deduce-address-list):
19067 Add debug call. Use buffer-substring-no-properties.
19068 (feedmail-say-debug, feedmail-say-chatter): New functions.
19069 (feedmail-find-eoh): Give an explicit error.
19070
19071 2011-05-13 Ulf Jasper <ulf.jasper@web.de>
19072
19073 * net/newst-treeview.el (newsticker-treeview-face): Change default
19074 family from helvetica to sans.
19075 (newsticker-treeview-tool-bar-map): Move tool-bar icons to
19076 etc/images/newsticker.
19077
19078 * net/newst-reader.el (newsticker-feed-face): Change default
19079 family from helvetica to sans.
19080
19081 * net/newst-plainview.el (newsticker-new-item-face)
19082 (newsticker-old-item-face, newsticker-immortal-item-face)
19083 (newsticker-obsolete-item-face, newsticker-date-face)
19084 (newsticker-statistics-face): Change default family from
19085 helvetica to sans.
19086 (newsticker--plainview-tool-bar-map): Move tool-bar icons to
19087 etc/images/newsticker.
19088
19089 * net/newst-backend.el (newsticker--do-run-auto-mark-filter)
19090 (newsticker--process-auto-mark-filter-match): Tell user about
19091 auto-marking.
19092
19093 2011-05-13 Didier Verna <didier@xemacs.org>
19094
19095 Common Lisp indentation improvements on defmethod and lambda-lists.
19096 * emacs-lisp/cl-indent.el: Advertise the changes and remove obsolete
19097 TODO entries.
19098 (lisp-lambda-list-keyword-parameter-indentation)
19099 (lisp-lambda-list-keyword-parameter-alignment)
19100 (lisp-lambda-list-keyword-alignment): New customizable user options.
19101 (lisp-indent-defun-method): Improve docstring.
19102 (extended-loop-p): Fix comment.
19103 (lisp-indent-lambda-list-keywords-regexp): New variable.
19104 (lisp-indent-lambda-list): New function.
19105 (lisp-indent-259): Use it.
19106 (lisp-indent-defmethod): Support for more than one
19107 method qualifier and properly indent methods lambda-lists.
19108 (defgeneric): Provide a missing common-lisp-indent-function property.
19109
19110 2011-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
19111
19112 * thingatpt.el (bounds-of-thing-at-point): Return nil rather than
19113 bounds for the empty string (bug#8667).
19114
19115 2011-05-13 Glenn Morris <rgm@gnu.org>
19116
19117 * mail/feedmail.el (feedmail-buffer-to-sendmail): Require sendmail.
19118
19119 * mail/sendmail.el (sendmail-program): Try executable-find first.
19120 (sendmail-send-it): `sendmail-program' cannot be unbound.
19121
19122 * calendar/appt.el (appt-make-list): Simplify.
19123 (appt-time-msg-list): Doc fix.
19124 (appt-check): Change mode-line message at the time of the appointment.
19125
19126 2011-05-12 Andreas Schwab <schwab@linux-m68k.org>
19127
19128 * progmodes/ld-script.el (ld-script-keywords)
19129 (ld-script-builtins): Update keywords list.
19130
19131 2011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
19132
19133 * progmodes/grep.el (grep-filter): Don't trip on partial lines.
19134
19135 * shell.el (shell-completion-vars): New function.
19136 (shell-mode):
19137 * simple.el (read-shell-command): Use it.
19138 (blink-matching-open): No need for " [...]" in minibuffer-message.
19139
19140 2011-05-12 Glenn Morris <rgm@gnu.org>
19141
19142 * calendar/appt.el (appt-now-displayed): Remove pointless variable.
19143 (appt-check): Simplify.
19144
19145 2011-05-12 Eli Zaretskii <eliz@gnu.org>
19146
19147 * vc/smerge-mode.el (smerge-resolve): Use null-device rather than a
19148 literal "/dev/null".
19149
19150 2011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
19151
19152 * emacs-lisp/lisp.el (lisp-complete-symbol, lisp-completion-at-point):
19153 Fix typo.
19154
19155 2011-05-12 Ralph Schleicher <rs@ralph-schleicher.de>
19156
19157 * progmodes/which-func.el (which-function):
19158 Use add-log-current-defun instead of add-log-current-defun-function,
19159 which might not be defined (Bug#8260).
19160
19161 2011-05-12 Glenn Morris <rgm@gnu.org>
19162
19163 * emacs-lisp/bytecomp.el (byte-compile-file-form-defmumble):
19164 Let byte-compile-initial-macro-environment always take precedence.
19165
19166 2011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
19167
19168 * net/rcirc.el: Add support for SSL/TLS connections.
19169 (rcirc-server-alist): New field `encryption'.
19170 (rcirc): Check `encryption' settings.
19171 (rcirc-connect): New arg `encryption'. Use open-network-stream.
19172 Merge make-local-variable into `set'.
19173 (rcirc--connection-open-p): New function.
19174 (rcirc-send-string, rcirc-clean-up-buffer): Use it to handle case where
19175 the process is not a network process (e.g. running gnutls-cli).
19176 (set-rcirc-decode-coding-system, set-rcirc-encode-coding-system):
19177 Make rcirc-(en|de)code-coding-system local here.
19178 (rcirc-mode): Merge make-local-variable into `set'.
19179 (rcirc-parent-buffer): Make permanent buffer-local.
19180 (rcirc-multiline-minor-mode): Don't do it here.
19181 (rcirc-switch-to-server-buffer): Don't switch to a random buffer if
19182 there's no server buffer.
19183
19184 2011-05-11 Glenn Morris <rgm@gnu.org>
19185
19186 * newcomment.el (comment-kill): Prefix "unused" local.
19187
19188 * term/w32console.el (get-screen-color): Declare.
19189
19190 * emacs-lisp/bytecomp.el (byte-compile-arglist-warn):
19191 Handle symbol elements of byte-compile-initial-macro-environment.
19192
19193 2011-05-10 Leo Liu <sdl.web@gmail.com>
19194
19195 * bookmark.el (bookmark-bmenu-mode-map):
19196 Bind bookmark-bmenu-search to `/'.
19197
19198 * mail/footnote.el: Convert to utf-8 encoding.
19199 (footnote-unicode-string, footnote-unicode-regexp): New variable.
19200 (Footnote-unicode): New function.
19201 (footnote-style-alist): Add unicode style to the list.
19202 (footnote-style): Doc fix.
19203
19204 2011-05-10 Jim Meyering <meyering@redhat.com>
19205
19206 Fix doubled-word typos.
19207 * international/quail.el (quail-insert-kbd-layout): and and -> and
19208 * kermit.el: and and -> and
19209 * net/ldap.el (ldap-search-internal): to to -> to
19210 * progmodes/vhdl-mode.el (vhdl-offsets-alist): Likewise.
19211 * progmodes/js.el (js-mode): and and -> and
19212 * textmodes/artist.el (artist-move-to-xy): at at -> at
19213 (artist-draw-region-trim-line-endings): if if -> if
19214 And Safetyc -> Safety.
19215 * textmodes/reftex-dcr.el (reftex-view-crossref): at at -> at a
19216
19217 2011-05-10 Glenn Morris <rgm@gnu.org>
19218 Stefan Monnier <monnier@iro.umontreal.ca>
19219
19220 * files.el (hack-one-local-variable-eval-safep):
19221 Consider "eval: (foo-mode)" to be safe. (Bug#8613)
19222
19223 2011-05-10 Glenn Morris <rgm@gnu.org>
19224
19225 * calendar/diary-lib.el (diary-list-entries-hook)
19226 (diary-mark-entries-hook, diary-nongregorian-listing-hook)
19227 (diary-nongregorian-marking-hook, diary-list-entries)
19228 (diary-include-other-diary-files, diary-mark-entries)
19229 (diary-mark-included-diary-files): Doc fixes.
19230
19231 2011-05-09 Juanma Barranquero <lekktu@gmail.com>
19232
19233 * misc.el: Require tabulated-list.el during compilation.
19234
19235 2011-05-09 Chong Yidong <cyd@stupidchicken.com>
19236
19237 * progmodes/compile.el (compilation-start):
19238 Run compilation-filter-hook for the async case too.
19239 (compilation-filter-hook): Doc fix.
19240
19241 2011-05-09 Deniz Dogan <deniz@dogan.se>
19242
19243 * wdired.el: Remove outdated installation comment. Fix usage
19244 comment.
19245
19246 2011-05-09 Juanma Barranquero <lekktu@gmail.com>
19247
19248 * misc.el: Implement new command `list-dynamic-libraries'.
19249 (list-dynamic-libraries--loaded-only-p): New variable.
19250 (list-dynamic-libraries--refresh): New function.
19251 (list-dynamic-libraries): New command.
19252
19253 2011-05-09 Chong Yidong <cyd@stupidchicken.com>
19254
19255 * progmodes/compile.el (compilation-error-regexp-alist-alist):
19256 Fix the ant regexp to handle end-line and end-column info from jikes.
19257 Re-introduce maven regexp. Give the ruby-Test::Unit regexp a
19258 higher priority to avoid clobbering by gnu.
19259
19260 2011-05-08 Chong Yidong <cyd@stupidchicken.com>
19261
19262 * cus-face.el (custom-declare-face): Call custom-theme-recalc-face
19263 if the face has existing theme settings (Bug#8454).
19264
19265 2011-05-08 Ralph Schleicher <rs@ralph-schleicher.de>
19266
19267 * progmodes/perl-mode.el (perl-imenu-generic-expression):
19268 Only match variables declared via `my' or `our' (Bug#8261).
19269
19270 * net/browse-url.el (browse-url-of-dired-file): Allow browsing of
19271 special file names `.' and `..' (Bug#8259).
19272
19273 2011-05-08 Chong Yidong <cyd@stupidchicken.com>
19274
19275 * progmodes/grep.el (grep-mode-font-lock-keywords):
19276 Remove buffer-changing entries.
19277 (grep-filter): New function.
19278 (grep-mode): Add it to compilation-filter-hook.
19279
19280 * progmodes/compile.el (compilation-filter-hook)
19281 (compilation-filter-start): New defvars.
19282 (compilation-filter): Call compilation-filter-hook prior to
19283 updating the process mark.
19284
19285 2011-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
19286
19287 * emacs-lisp/eieio.el (defmethod): Fix typo in last change.
19288
19289 2011-05-07 Eli Zaretskii <eliz@gnu.org>
19290
19291 * mail/sendmail.el (send-mail-function): On MS-Windows, default to
19292 mailclient-send-it even if window-system is nil. (Bug#8595)
19293
19294 * term/w32console.el (terminal-init-w32console):
19295 Call get-screen-color and use its output to set the frame
19296 background-mode. (Bug#8597)
19297
19298 2011-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
19299
19300 Make bytecomp.el understand that defmethod defines funs (bug#8631).
19301 * emacs-lisp/eieio.el (eieio--defalias, eieio--defgeneric-init-form):
19302 New functions.
19303 (defgeneric, eieio--defmethod): Use them.
19304 (eieio-defgeneric): Remove.
19305 (defmethod): Call defgeneric in a way visible to the byte-compiler.
19306
19307 2011-05-07 Glenn Morris <rgm@gnu.org>
19308
19309 * calendar/timeclock.el (timeclock-log-data): Remove unused local.
19310 Use let rather than let*.
19311 (timeclock-find-discrep): Remove unused local.
19312
19313 * calendar/diary-lib.el (diary-comment-start): Doc fix.
19314
19315 * calendar/appt.el (appt-time-msg-list): Doc fix.
19316
19317 2011-05-06 Noah Friedman <friedman@splode.com>
19318
19319 * apropos.el (apropos-print-doc): Only use
19320 emacs-lisp-docstring-fill-column when it is bound to an integer,
19321 per that variable's documentation.
19322
19323 2011-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
19324
19325 * lpr.el (print-region-1): Echo lpr-program's output, so error messages
19326 and warnings are not silently discarded (e.g. use -d instead of -P).
19327
19328 2011-05-06 Glenn Morris <rgm@gnu.org>
19329
19330 * calendar/appt.el (appt-message-warning-time): Doc fix.
19331 (appt-warning-time-regexp): New option.
19332 (appt-make-list): Respect appt-message-warning-time.
19333
19334 * calendar/diary-lib.el (diary-comment-start, diary-comment-end):
19335 New options.
19336 (diary-add-to-list): Strip comments from the displayed string.
19337 (diary-mode): Set comment-start and comment-end.
19338
19339 * vc/diff-mode.el (smerge-refine-subst): Declare.
19340 (diff-refine-hunk): Don't require smerge-mode when compiling.
19341
19342 2011-05-06 Juanma Barranquero <lekktu@gmail.com>
19343
19344 * simple.el (list-processes): Return nil as the docstring says.
19345
19346 2011-05-05 Michael Albinus <michael.albinus@gmx.de>
19347
19348 * net/ange-ftp.el (ange-ftp-binary-file-name-regexp): Set default
19349 to "".
19350 (ange-ftp-write-region, ange-ftp-insert-file-contents)
19351 (ange-ftp-copy-file-internal): Use only `ange-ftp-binary-file' for
19352 determining of binary transfer. (Bug#7383)
19353
19354 2011-05-05 Michael Albinus <michael.albinus@gmx.de>
19355
19356 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
19357 Fix port computation bug. (Bug#8618)
19358
19359 2011-05-05 Glenn Morris <rgm@gnu.org>
19360
19361 * allout-widgets.el (allout-widgets-mode-inhibit): Declare before use.
19362
19363 * simple.el (shell-dynamic-complete-functions)
19364 (comint-dynamic-complete-functions): Declare.
19365
19366 * net/network-stream.el (gnutls-negotiate):
19367 * simple.el (tabulated-list-print): Fix declarations.
19368
19369 * progmodes/gud.el (syntax-symbol, syntax-point):
19370 Remove unnecessary and incorrect declarations.
19371
19372 * emacs-lisp/check-declare.el (check-declare-scan):
19373 Handle byte-compile-initial-macro-environment in bytecomp.el.
19374
19375 2011-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
19376
19377 Fix earlier half-done eieio-defmethod change (bug#8338).
19378 * emacs-lisp/eieio.el (eieio--defmethod): Rename from eieio-defmethod.
19379 Streamline and change calling convention.
19380 (defmethod): Adjust accordingly and simplify.
19381 (eieio-defclass): Fix broken calls to eieio-defmethod and redirect to
19382 new eieio--defmethod.
19383 (slot-boundp): Minor CSE simplification.
19384
19385 2011-05-05 Milan Zamazal <pdm@zamazal.org>
19386
19387 * progmodes/glasses.el (glasses-separate-capital-groups): New option.
19388 (glasses-make-readable): Use glasses-separate-capital-groups.
19389
19390 2011-05-05 Juanma Barranquero <lekktu@gmail.com>
19391
19392 * emacs-lisp/warnings.el (warning-level-aliases): Reflow docstring.
19393 (warning-series): Doc fix.
19394 (display-warning): Don't try to create the buffer if we just found it.
19395
19396 2011-05-04 Chong Yidong <cyd@stupidchicken.com>
19397
19398 * emacs-lisp/autoload.el (generated-autoload-file): Set to nil.
19399 (autoload-find-generated-file): New function.
19400 (generate-file-autoloads): Bind generated-autoload-file to
19401 buffer-file-name.
19402 (update-file-autoloads, update-directory-autoloads):
19403 Use autoload-find-generated-file. If called interactively, prompt for
19404 output file (Bug#7989).
19405 (batch-update-autoloads): Doc fix.
19406
19407 2011-05-04 Juanma Barranquero <lekktu@gmail.com>
19408
19409 * term/w32-win.el (dynamic-library-alist): Add `gnutls'.
19410
19411 2011-05-04 Glenn Morris <rgm@gnu.org>
19412
19413 * calendar/diary-lib.el (diary-fancy-date-pattern): Turn it into a
19414 function, so it follows changes in calendar-date-style.
19415 (diary-fancy-date-matcher): New function.
19416 (diary-fancy-font-lock-keywords): Use diary-fancy-date-matcher.
19417 (diary-fancy-font-lock-fontify-region-function):
19418 Use diary-fancy-date-pattern as a function.
19419
19420 * calendar/diary-lib.el (diary-fancy-date-pattern): Do not use
19421 non-numbers for `year' etc pseudo-variables. (Bug#8583)
19422
19423 2011-05-04 Teodor Zlatanov <tzz@lifelogs.com>
19424
19425 * net/gnutls.el (gnutls-negotiate): Use CL-style keyword arguments
19426 instead of positional arguments. Allow :keylist and :crlfiles
19427 arguments.
19428 (open-gnutls-stream): Call it.
19429
19430 * net/network-stream.el (network-stream-open-starttls): Adjust to
19431 call `gnutls-negotiate' with :process and :hostname arguments.
19432
19433 2011-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
19434
19435 * minibuffer.el (completion--message): New function.
19436 (completion--do-completion, minibuffer-complete)
19437 (minibuffer-force-complete, minibuffer-complete-word): Use it.
19438 (completion--do-completion): Don't ignore completion-auto-help when in
19439 icomplete-mode.
19440
19441 * whitespace.el (whitespace-trailing-regexp): Don't rely on the
19442 internal encoding (e.g. tibetan zero is not whitespace).
19443 (global-whitespace-mode): Prefer save-current-buffer.
19444 (whitespace-trailing-regexp): Remove useless save-match-data.
19445 (whitespace-empty-at-bob-regexp): Minor simplification.
19446
19447 2011-05-03 Chong Yidong <cyd@stupidchicken.com>
19448
19449 * emacs-lisp/autoload.el (generated-autoload-file): Doc fix (Bug#7989).
19450
19451 2011-05-03 Agustín Martín Domingo <agustin.martin@hispalinux.es>
19452
19453 * textmodes/ispell.el (ispell-add-per-file-word-list):
19454 Use `concat' to create string for insertion.
19455
19456 2011-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
19457
19458 * textmodes/bibtex.el (bibtex-fill-field-bounds, bibtex-fill-entry):
19459 Avoid open-line which runs post-self-insert-hook.
19460 (bibtex-fill-entry): Remove unused `end' var.
19461
19462 2011-05-03 Dirk Ullrich <dirk.ullrich@googlemail.com> (tiny change)
19463
19464 * textmodes/ispell.el (ispell-add-per-file-word-list):
19465 Protect against `nil' value of `comment-start' (Bug#8579).
19466
19467 2011-05-03 Leo Liu <sdl.web@gmail.com>
19468
19469 * isearch.el (isearch-yank-pop): New command.
19470 (isearch-mode-map): Bind it to `M-y'.
19471 (isearch-forward): Mention it.
19472
19473 2011-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
19474
19475 * simple.el (minibuffer-complete-shell-command): Remove.
19476 (minibuffer-local-shell-command-map): Use completion-at-point.
19477 (read-shell-command): Setup completion vars here instead.
19478 (read-expression-map): Bind TAB to symbol completion.
19479
19480 * textmodes/ispell.el (lookup-words): Use with-temp-buffer; signal
19481 error directly rather via storing it into `results'.
19482
19483 2011-05-02 Leo Liu <sdl.web@gmail.com>
19484
19485 * vc/diff.el: Fix description.
19486
19487 2011-05-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
19488
19489 * server.el (server-eval-at): New function.
19490
19491 2011-05-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
19492
19493 * net/network-stream.el (open-network-stream): Take a :nowait
19494 parameter and pass it on to `make-network-process'.
19495 (network-stream-open-plain): Ditto.
19496
19497 2011-04-30 Andreas Schwab <schwab@linux-m68k.org>
19498
19499 * faces.el (face-spec-set-match-display): Don't match toolkit
19500 options on terminal frames.
19501
19502 2011-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
19503
19504 * progmodes/pascal.el: Use lexical binding.
19505 (pascal-mode-map): Remove author preferences.
19506
19507 * pcomplete.el (pcomplete-std-complete): Don't abuse
19508 completion-at-point.
19509
19510 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
19511
19512 * calc/calccomp.el (math-comp-to-string-flat-term): Simplify by
19513 removing code that has been dead since 1991 or so.
19514
19515 * startup.el (command-line): When warning about "_emacs", use a
19516 delayed warning to allow the user to filter it out.
19517
19518 2011-04-28 Deniz Dogan <deniz@dogan.se>
19519
19520 * net/rcirc.el (rcirc-handler-353): Fix bug for channels which the
19521 user has not joined.
19522
19523 2011-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
19524
19525 * pcomplete.el (pcomplete-completions-at-point): Return nil if there
19526 aren't any completions at point.
19527
19528 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
19529
19530 * subr.el (display-delayed-warnings): New function.
19531 (delayed-warnings-hook): New variable.
19532
19533 2011-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
19534
19535 * minibuffer.el (completion-at-point, completion-help-at-point):
19536 Don't presume that a given completion-at-point-function will always
19537 use the same calling convention.
19538
19539 * pcomplete.el (pcomplete-completions-at-point):
19540 Obey pcomplete-ignore-case. Don't call pcomplete-norm-func unless
19541 pcomplete-seen is non-nil.
19542 (pcomplete-comint-setup): Also recognize the new comint/shell
19543 completion functions.
19544 (pcomplete-do-complete): Don't call pcomplete-norm-func unless
19545 pcomplete-seen is non-nil.
19546
19547 2011-04-27 Niels Giesen <niels.giesen@gmail.com>
19548
19549 * calendar/icalendar.el (diary-lib): Add require statement.
19550 (icalendar--create-uid): Read out a uid from a text-property on
19551 the first character in the entry. This allows for code to add its
19552 own uid to the entry.
19553 (icalendar--convert-float-to-ical): Add export of
19554 `diary-float'-entries save for those with the optional DAY
19555 argument.
19556
19557 2011-04-27 Daniel Colascione <dan.colascione@gmail.com>
19558
19559 * subr.el (shell-quote-argument): Use alternate escaping strategy
19560 when we spot a variable reference in a string.
19561
19562 2011-04-26 Daniel Colascione <dan.colascione@gmail.com>
19563
19564 * cus-start.el (all): Define customization for debug-on-event.
19565
19566 2011-04-26 Daniel Colascione <dan.colascione@gmail.com>
19567
19568 * subr.el (shell-quote-argument): Escape correctly under Windows.
19569
19570 2011-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
19571
19572 * emulation/cua-base.el (cua-selection-mode): Make it toggle again.
19573
19574 2011-04-25 Michael Albinus <michael.albinus@gmx.de>
19575
19576 * net/tramp.el (tramp-process-actions): Add POS argument.
19577 Delete region between POS and (pos).
19578
19579 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
19580 Use `nil' position in `tramp-process-actions' call.
19581 (tramp-maybe-open-connection): Call `tramp-process-actions' with pos.
19582
19583 * net/tramp-smb.el (tramp-smb-maybe-open-connection): Use `nil'
19584 position in `tramp-process-actions' call.
19585
19586 * net/trampver.el: Update release number.
19587
19588 2011-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
19589
19590 * custom.el (defcustom): Obey lexical-binding.
19591
19592 Fix octave-inf completion problems reported by Alexander Klimov.
19593 * progmodes/octave-inf.el (inferior-octave-mode-syntax-table):
19594 Inherit from octave-mode-syntax-table.
19595 (inferior-octave-mode): Set info-lookup-mode.
19596 (inferior-octave-completion-at-point): New function.
19597 (inferior-octave-complete): Use it and completion-in-region.
19598 (inferior-octave-dynamic-complete-functions): Use it as well, and use
19599 comint-filename-completion.
19600 * progmodes/octave-mod.el (octave-mode-syntax-table): Use _ syntax for
19601 symbol elements which shouldn't be word elements.
19602 (octave-font-lock-keywords, octave-beginning-of-defun)
19603 (octave-function-header-regexp): Adjust regexps accordingly.
19604 (octave-mode-map): Also use info-lookup-symbol for C-c C-h.
19605
19606 2011-04-25 Juanma Barranquero <lekktu@gmail.com>
19607
19608 * net/gnutls.el (gnutls-errorp): Declare before first use.
19609
19610 2011-04-24 Teodor Zlatanov <tzz@lifelogs.com>
19611
19612 * net/gnutls.el (gnutls-negotiate): Add hostname, verify-flags,
19613 verify-error, and verify-hostname-error parameters. Check whether
19614 default trustfile exists before going to use it. Add missing
19615 argument to gnutls-message-maybe call. Return value.
19616 Reported by Claudio Bley <claudio.bley@gmail.com>.
19617 (open-gnutls-stream): Add usage example.
19618
19619 * net/network-stream.el (network-stream-open-starttls): Give host
19620 parameter to `gnutls-negotiate'.
19621 (gnutls-negotiate): Adjust `gnutls-negotiate' declaration.
19622 * subr.el (shell-quote-argument): Escape correctly under Windows.
19623
19624 2011-04-24 Daniel Colascione <dan.colascione@gmail.com>
19625
19626 * progmodes/cc-engine.el (c-forward-decl-or-cast-1):
19627 Use correct match group (bug#8438).
19628
19629 2011-04-24 Chong Yidong <cyd@stupidchicken.com>
19630
19631 * emacs-lisp/package.el (package-built-in-p): Fix typo.
19632 (package-menu--generate): New arg specifying packages to show.
19633 (package-menu-refresh, package-menu-execute, list-packages):
19634 Callers changed.
19635 (package-show-package-list): New function, replacing deleted
19636 package--list-packages (renamed because it is non-internal).
19637
19638 * finder.el (finder-list-matches): Use package-show-package-list
19639 instead of deleted package--list-packages.
19640
19641 * vc/vc-annotate.el (vc-annotate-goto-line): New command.
19642 Based on a previous implementation by Juanma Barranquero (Bug#8366).
19643 (vc-annotate-mode-map): Bind it to RET.
19644
19645 2011-04-24 Uday S Reddy <u.s.reddy@cs.bham.ac.uk> (tiny change)
19646
19647 * progmodes/etags.el (next-file): Don't use set-buffer to change
19648 buffers (Bug#8478).
19649
19650 2011-04-24 Chong Yidong <cyd@stupidchicken.com>
19651
19652 * files.el (auto-mode-alist): Use js-mode for .json (Bug#8529).
19653
19654 * apropos.el (apropos-label-face): Avoid variable-pitch face.
19655 (apropos-accumulator): Doc fix.
19656 (apropos-function, apropos-macro, apropos-command)
19657 (apropos-variable, apropos-face, apropos-group, apropos-widget)
19658 (apropos-plist): Add face property.
19659 (apropos-symbols-internal): Fix indentation.
19660 (apropos-print): Simplify help, and recognize apropos-multi-type.
19661 (apropos-print-doc): Use button-type-get to extract the button's
19662 face property. Fill docstring (Bug#8352).
19663
19664 2011-04-23 Juanma Barranquero <lekktu@gmail.com>
19665
19666 * buff-menu.el (Buffer-menu--buffers): Fix typo in docstring (bug#8535).
19667
19668 * play/mpuz.el (mpuz-silent): Doc fix.
19669 (mpuz-mode-map): Use mapc.
19670 (mpuz-put-number-on-board): Rename parameter L to COLUMNS.
19671 (mpuz-letter-to-digit, mpuz-check-all-solved, mpuz-create-buffer):
19672 Fix typos in docstrings.
19673
19674 * play/doctor.el (doc$, doctor-$, doctor-read-print, doctor-read-token)
19675 (doctor-nounp, doctor-pronounp): Fix typos in docstrings.
19676
19677 * mouse-drag.el (mouse-drag-throw): Fix typo in docstring.
19678
19679 2011-04-23 Chong Yidong <cyd@stupidchicken.com>
19680
19681 * minibuffer.el (completion--do-completion): Avoid the "Next char
19682 not unique" prompt if icomplete-mode is enabled (Bug#5849).
19683
19684 * mouse.el (mouse-drag-mode-line-1): Make sure that if we push
19685 mouse-2 into unread-command-events, it is interpreted correctly.
19686
19687 * image-mode.el (image-type, image-mode-map, image-minor-mode-map)
19688 (image-toggle-display): Doc fix.
19689
19690 2011-04-23 Stephen Berman <stephen.berman@gmx.net>
19691
19692 * textmodes/page.el (what-page): Use line-number-at-pos to
19693 calculate line number (Bug#6825).
19694
19695 2011-04-22 Juanma Barranquero <lekktu@gmail.com>
19696
19697 * eshell/esh-mode.el (find-tag-interactive): Declare function.
19698 (eshell-find-tag): Remove `with-no-warnings', unneeded now.
19699 Pass argument NO-DEFAULT to `find-tag-interactive'.
19700
19701 2011-04-22 Juanma Barranquero <lekktu@gmail.com>
19702
19703 Lexical-binding cleanup.
19704
19705 * progmodes/ada-mode.el (ada-after-change-function, ada-loose-case-word)
19706 (ada-no-auto-case, ada-capitalize-word, ada-untab, ada-narrow-to-defun):
19707 * progmodes/ada-prj.el (ada-prj-initialize-values)
19708 (ada-prj-display-page, ada-prj-field-modified, ada-prj-display-help)
19709 (ada-prj-show-value):
19710 * progmodes/ada-xref.el (ada-find-any-references, ada-gdb-application):
19711 * progmodes/antlr-mode.el (antlr-with-displaying-help-buffer)
19712 (antlr-invalidate-context-cache, antlr-options-menu-filter)
19713 (antlr-language-option-extra, antlr-c++-mode-extra, antlr-run-tool):
19714 * progmodes/bug-reference.el (bug-reference-push-button):
19715 * progmodes/fortran.el (fortran-line-length):
19716 * progmodes/glasses.el (glasses-change):
19717 * progmodes/octave-mod.el (octave-fill-paragraph):
19718 * progmodes/python.el (python-mode, python-pdbtrack-track-stack-file)
19719 (python-pdbtrack-grub-for-buffer, python-sentinel):
19720 * progmodes/sql.el (sql-save-connection):
19721 * progmodes/tcl.el (tcl-indent-command, tcl-popup-menu):
19722 * progmodes/xscheme.el (xscheme-enter-debugger-mode):
19723 Mark unused parameters.
19724
19725 * progmodes/compile.el (compilation--flush-directory-cache)
19726 (compilation--flush-parse, compile-internal): Mark unused parameters.
19727 (compilation-buffer-name): Rename parameter MODE-NAME to NAME-OF-MODE.
19728 (compilation-next-error-function): Remove unused variable `timestamp'.
19729
19730 * progmodes/cpp.el (cpp-parse-close): Remove unused variable `begin'.
19731 (cpp-signal-read-only, cpp-grow-overlay): Mark unused parameters.
19732
19733 * progmodes/dcl-mode.el (dcl-end-of-command):
19734 Remove unused variable `start'.
19735 (dcl-calc-command-indent-multiple, dcl-calc-cont-indent-relative)
19736 (dcl-option-value-basic, dcl-option-value-offset)
19737 (dcl-option-value-margin-offset, dcl-option-value-comment-line):
19738 Mark unused parameters.
19739 (dcl-save-local-variable): Remove unused variable `val'.
19740 (mode): Declare.
19741
19742 * progmodes/delphi.el (delphi-save-state, delphi-after-change):
19743 Mark unused parameters.
19744 (delphi-ignore-changes): Move before first use.
19745 (delphi-charset-token-at): Remove unused variable `start'.
19746 (delphi-else-start): Remove unused variable `if-count'.
19747 (delphi-comment-block-start, delphi-comment-block-end):
19748 Remove unused variable `kind'.
19749 (delphi-indent-line): Remove unused variable `new-point'.
19750
19751 * progmodes/ebrowse.el (ebrowse-files-list)
19752 (ebrowse-list-of-matching-members, ebrowse-tags-list-members-in-file):
19753 Mark unused parameters. Don't quote `lambda'.
19754 (ebrowse-sort-tree-list, ebrowse-same-tree-member-buffer-list):
19755 Don't quote `lambda'.
19756 (ebrowse-revert-tree-buffer-from-file, ebrowse-tags-choose-class)
19757 (ebrowse-goto-visible-member/all-member-lists): Mark unused parameters.
19758 (ebrowse-create-tree-buffer): Rename parameter OBARRAY to CLASSES.
19759 (ebrowse-toggle-mark-at-point): Remove unused variable `pnt'.
19760 Use `ignore-errors'.
19761 (ebrowse-frozen-tree-buffer-name, ebrowse-find-source-file)
19762 (ebrowse-view/find-file-and-search-pattern)
19763 (ebrowse-view/find-member-declaration/definition):
19764 Rename parameter TAGS-FILE-NAME to TAGS-FILE.
19765 (ebrowse-find-class-declaration, ebrowse-view-class-declaration):
19766 Rename parameter PREFIX-ARG to PREFIX.
19767 (ebrowse-tags-read-name): Remove unused variables `start' and
19768 `member-info'.
19769 (ebrowse-display-member-buffer): Rename variable `tags-file-name'
19770 to `tags-file'.
19771
19772 * progmodes/etags.el (local-find-tag-hook): Declare.
19773 (tag-partial-file-name-match-p, tag-any-match-p, list-tags):
19774 Mark unused parameters.
19775
19776 * progmodes/executable.el (compilation-error-regexp-alist): Declare.
19777 (executable-interpret): Mark unused parameter.
19778
19779 * progmodes/flymake.el (flymake-process-sentinel)
19780 (flymake-after-change-function)
19781 (flymake-create-temp-with-folder-structure)
19782 (flymake-get-include-dirs-dot): Mark unused parameters.
19783 (flymake-safe-delete-directory): Remove unused variable `err'.
19784
19785 * progmodes/gdb-mi.el (speedbar-change-initial-expansion-list)
19786 (speedbar-timer-fn, speedbar-line-text)
19787 (speedbar-change-expand-button-char, speedbar-delete-subblock)
19788 (speedbar-center-buffer-smartly): Declare functions.
19789 (gdb-find-watch-expression): Remove unused variable `array'.
19790 (gdb-edit-value, gdb-gdb, gdb-ignored-notification, gdb-thread-created)
19791 (gdb-starting): Mark unused parameters.
19792 (gud-gdbmi-marker-filter): Remove unused variable `output-record'.
19793 (gdb-table-string): Remove unused variable `res'.
19794 (gdb-place-breakpoints): Remove unused variables `flag' and `bptno'.
19795 (gdb-disassembly-handler-custom): Remove unused variable `pos'.
19796 (gdb-display-buffer): Remove unused variable `cur-size'.
19797
19798 * progmodes/gud.el (gud-def): Use `defalias' instead of `defun' to
19799 allow lexical-binding compilation.
19800 (gud-expansion-speedbar-buttons, gud-gdb-goto-stackframe)
19801 (gud-dbx-massage-args, gud-xdb-massage-args, gud-perldb-massage-args)
19802 (gud-jdb-massage-args, gud-jdb-find-source, gud-find-class):
19803 Mark unused parameters.
19804 (gud-gdb-marker-filter): Remove unused variable `match'.
19805 (gud-find-class): Bind `syntax-symbol' and `syntax-point' to suitable
19806 lambda expressions and funcall them, instead of using `fset'.
19807
19808 * progmodes/hideif.el (hif-parse-if-exp): Rename parameter
19809 HIF-TOKEN-LIST to TOKEN-LIST and let-bind `hif-token-list'.
19810
19811 * progmodes/hideshow.el (hs-hide-block-at-point): Remove unused
19812 variable `header-beg'; use `let'.
19813
19814 * progmodes/icon.el (indent-icon-exp): Remove unused variables
19815 `restart', `last-sexp' and `at-do'.
19816
19817 * progmodes/js.el (js--debug): Mark unused parameter.
19818 (js--parse-state-at-point): Remove unused variable `bound'; use `let'.
19819 (js--splice-into-items): Remove unused variable `item'.
19820 (js--read-symbol, js--read-tab): Pass 1/-1 to `ido-mode', not t/nil.
19821
19822 * progmodes/make-mode.el (makefile-make-font-lock-keywords):
19823 Rename parameter FONT-LOCK-KEYWORDS to FL-KEYWORDS.
19824 (makefile-complete): Remove unused variable `try'.
19825 (makefile-fill-paragraph, makefile-match-function-end):
19826 Mark unused parameters.
19827
19828 * progmodes/octave-inf.el (inferior-octave-complete):
19829 Remove unused variable `proc'.
19830 (inferior-octave-output-digest): Mark unused parameter.
19831
19832 * progmodes/perl-mode.el (perl-calculate-indent):
19833 Remove unused variable `err'.
19834
19835 * progmodes/prolog.el (prolog-mode-keybindings-inferior)
19836 (prolog-indent-line): Mark unused parameters.
19837 (prolog-indent-line): Remove unused variable `beg'.
19838
19839 * progmodes/ps-mode.el (reporter-prompt-for-summary-p)
19840 (reporter-dont-compact-list): Declare.
19841
19842 * progmodes/sh-script.el (sh-font-lock-quoted-subshell):
19843 Remove unused variable `char'.
19844 (sh-debug): Mark unused parameter.
19845 (sh-get-indent-info): Remove unused variable `start'.
19846 (sh-calculate-indent): Remove unused variable `var'.
19847
19848 * progmodes/simula.el (simula-popup-menu): Mark unused parameter.
19849 (simula-electric-keyword): Remove unused variable `null'.
19850 (simula-search-backward, simula-search-forward): Remove unused
19851 variables `begin' and `end'.
19852
19853 * progmodes/vera-mode.el (vera-guess-basic-syntax):
19854 Remove unused variable `pos'.
19855 (vera-electric-tab, vera-comment-uncomment-region):
19856 Mark unused parameters.
19857 (vera-electric-tab): Rename parameter PREFIX-ARG to PREFIX.
19858
19859 2011-04-22 Chong Yidong <cyd@stupidchicken.com>
19860
19861 * emacs-lisp/package.el (package--builtins, package-alist)
19862 (package-load-descriptor, package-built-in-p, package-activate)
19863 (define-package, package-installed-p)
19864 (package-compute-transaction, package-buffer-info)
19865 (package--push): Doc fix. Distinguish more clearly between
19866 version strings and version lists.
19867
19868 2011-04-21 Juanma Barranquero <lekktu@gmail.com>
19869
19870 Lexical-binding cleanup.
19871
19872 * play/5x5.el (5x5-make-random-solution, 5x5-make-mutate-current)
19873 (5x5-make-mutate-best):
19874 * play/fortune.el (fortune-in-buffer):
19875 * play/gomoku.el (gomoku-init-display):
19876 * play/solitaire.el (solitaire, solitaire-do-check):
19877 * play/tetris.el (tetris-default-update-speed-function):
19878 Mark unused parameters.
19879
19880 * play/bubbles.el (bubbles-mode): Set `show-trailing-whitespace'.
19881 (bubbles--shift): Remove unused variable `char-org'.
19882 (bubbles--set-faces): Remove unused variable `fg-col'. Simplify.
19883 (bubbles--show-images): Remove unused variable `char'.
19884
19885 * play/decipher.el (decipher-keypress, decipher-alphabet-keypress)
19886 (decipher-get-undo, decipher-set-map, decipher-complete-alphabet)
19887 (decipher-resync, decipher-loop-with-breaks, decipher--analyze)
19888 (decipher-analyze-buffer): Use ?\s.
19889 (decipher-make-checkpoint): Remove unused variable `mapping'.
19890
19891 * play/doctor.el (doctor-doc): Rename parameter DOCTOR-SENT to SENT.
19892
19893 * play/gamegrid.el (gamegrid-add-score-with-update-game-score):
19894 Remove unused variable `result'; use `let'.
19895
19896 * play/gametree.el (gametree-current-layout, gametree-apply-layout):
19897 Rename parameter TOP-LEVEL to FROM-TOP-LEVEL; use `ignore-errors'.
19898 (gametree-children-shown-p, gametree-compute-reduced-score):
19899 Use `ignore-errors'.
19900
19901 * play/handwrite.el (ps-lpr-switches): Declare.
19902 (handwrite): Remove unused variables `pmin' and `lastp'.
19903
19904 * play/hanoi.el (hanoi-move-ring): Remove unused variable `total-steps'.
19905
19906 * play/landmark.el (landmark-init-display)
19907 (landmark-update-naught-weights): Mark unused parameters.
19908 (landmark-y): Remove unused variable `noise'. Simplify.
19909 (landmark-human-plays): Remove unused variable `score'.
19910
19911 * play/mpuz.el (mpuz-try-letter): Remove unused variable `message'.
19912 (mpuz-try-proposal): Remove unused variable `game'.
19913
19914 * play/zone.el (life-patterns): Declare.
19915
19916 2011-04-20 Juanma Barranquero <lekktu@gmail.com>
19917
19918 * vc/vc.el (ediff-vc-internal): Declare function.
19919
19920 2011-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
19921
19922 * shell.el: Use lexical-binding and std completion UI.
19923 (shell-filter-ctrl-a-ctrl-b): Work as a preoutput filter.
19924 (shell-mode): Put shell-filter-ctrl-a-ctrl-b on
19925 comint-preoutput-filter-functions rather than on
19926 comint-output-filter-functions.
19927 (shell-command-completion, shell--command-completion-data)
19928 (shell-filename-completion, shell-environment-variable-completion)
19929 (shell-c-a-p-replace-by-expanded-directory): New functions.
19930 (shell-dynamic-complete-functions, shell-dynamic-complete-command)
19931 (shell-dynamic-complete-filename, shell-replace-by-expanded-directory)
19932 (shell-dynamic-complete-environment-variable): Use them.
19933 (shell-dynamic-complete-as-environment-variable)
19934 (shell-dynamic-complete-as-command): Remove.
19935 (shell-match-partial-variable): Match past point.
19936 * comint.el: Clean up use of completion-at-point-functions.
19937 (comint-completion-at-point): New function.
19938 (comint-mode): Use it completion-at-point-functions.
19939 (comint-dynamic-complete): Make it obsolete.
19940 (comint-replace-by-expanded-history-before-point): Add dry-run arg.
19941 (comint-c-a-p-replace-by-expanded-history): New function.
19942 (comint-dynamic-complete-functions)
19943 (comint-replace-by-expanded-history): Use it.
19944 * minibuffer.el (completion-table-with-terminator): Allow dynamic
19945 termination strings. Try harder to avoid second try-completion.
19946 (completion-in-region-mode-map): Disable bindings that don't work yet.
19947
19948 * comint.el: Use lexical-binding. Require CL.
19949 (comint-dynamic-complete-functions): Use comint-filename-completion.
19950 (comint-completion-addsuffix): Tweak custom type.
19951 (comint-filename-completion, comint--common-suffix)
19952 (comint--common-quoted-suffix, comint--table-subvert)
19953 (comint--complete-file-name-data): New functions.
19954 (comint-dynamic-complete-as-filename, comint-dynamic-complete-filename)
19955 (comint-dynamic-list-filename-completions): Use them.
19956 (comint-dynamic-simple-complete): Make obsolete.
19957
19958 * minibuffer.el (completion-in-region-mode):
19959 Keep completion-in-region-mode--predicate global.
19960 (completion-in-region--postch):
19961 Assume completion-in-region-mode--predicate is not null.
19962
19963 * progmodes/flymake.el (flymake-start-syntax-check-process):
19964 Obey `dir'. Simplify.
19965
19966 * vc/vc.el (vc-version-ediff): Call ediff-vc-internal directly, since
19967 we're in VC after all.
19968
19969 2011-04-20 Christoph Scholtes <cschol2112@googlemail.com>
19970
19971 * vc/vc.el (vc-diff-build-argument-list-internal)
19972 (vc-version-ediff, vc-ediff): New commands.
19973 (vc-version-diff): Use vc-diff-build-argument-list-internal.
19974
19975 2011-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
19976
19977 * emacs-lisp/byte-opt.el (byte-decompile-bytecode-1): Remove dead code,
19978 add sanity check.
19979
19980 * obsolete/erc-hecomplete.el: Make obsolete.
19981 * obsolete/: Standardize obsolescence info in the header.
19982
19983 2011-04-20 Glenn Morris <rgm@gnu.org>
19984
19985 * calendar/solar.el (solar-horizontal-coordinates):
19986 Use the longitude argument rather than `calendar-longitude'.
19987 (solar-date-next-longitude): Remove unused locals.
19988
19989 2011-04-20 Vinicius Jose Latorre <viniciusjl@ig.com.br>
19990
19991 * whitespace.el: New version 13.2.1.
19992
19993 2011-04-20 felix <EmacsWiki> (tiny change)
19994
19995 * whitespace.el (global-whitespace-mode): Keep highlight when
19996 switching between major modes on a file.
19997
19998 2011-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
19999
20000 * progmodes/octave-mod.el (octave-in-comment-p, octave-in-string-p)
20001 (octave-not-in-string-or-comment-p): Use syntax-ppss so it works with
20002 multi-line comments as well.
20003
20004 2011-04-19 Juanma Barranquero <lekktu@gmail.com>
20005
20006 Lexical-binding cleanup.
20007
20008 * arc-mode.el (archive-mode-revert):
20009 * cmuscheme.el (scheme-interactively-start-process):
20010 * custom.el (custom-initialize-delay):
20011 * dnd.el (dnd-open-local-file, dnd-open-remote-url):
20012 * dos-w32.el (direct-print-region-helper, direct-print-region-function):
20013 * emacs-lock.el (emacs-lock-clear-sentinel):
20014 * ezimage.el (defezimage):
20015 * follow.el (follow-avoid-tail-recenter):
20016 * fringe.el (set-fringe-mode-1):
20017 * generic-x.el (bat-generic-mode-compile):
20018 * help-mode.el (help-info-variable, help-do-xref)
20019 (help-mode-revert-buffer):
20020 * help.el (view-emacs-todo):
20021 * iswitchb.el (iswitchb-completion-help):
20022 * jka-compr.el (jka-compr-make-temp-name, jka-compr-load):
20023 * kmacro.el (kmacro-cycle-ring-next, kmacro-cycle-ring-previous)
20024 (kmacro-delete-ring-head, kmacro-bind-to-key, kmacro-view-macro):
20025 * locate.el (locate-update):
20026 * longlines.el (longlines-encode-region)
20027 (longlines-after-change-function):
20028 * outline.el (outline-isearch-open-invisible):
20029 * ps-def.el (declare-function, charset-dimension, char-width)
20030 (encode-char):
20031 * ps-mule.el (ps-mule-plot-string):
20032 * recentf.el (recentf-make-menu-items, recentf-cancel-dialog)
20033 (recentf-edit-list-select, recentf-edit-list-validate)
20034 (recentf-open-files-action):
20035 * rect.el (delete-whitespace-rectangle-line)
20036 (rectangle-number-line-callback):
20037 * register.el (window-configuration-to-register)
20038 (frame-configuration-to-register):
20039 * scroll-bar.el (scroll-bar-mode, toggle-horizontal-scroll-bar):
20040 * select.el (xselect-convert-to-string, xselect-convert-to-length)
20041 (xselect-convert-to-targets, xselect-convert-to-delete)
20042 (xselect-convert-to-filename, xselect-convert-to-charpos)
20043 (xselect-convert-to-lineno, xselect-convert-to-colno)
20044 (xselect-convert-to-os, xselect-convert-to-host)
20045 (xselect-convert-to-user, xselect-convert-to-class)
20046 (xselect-convert-to-name, xselect-convert-to-integer)
20047 (xselect-convert-to-atom, xselect-convert-to-identity):
20048 * subr.el (declare, ignore, process-kill-without-query)
20049 (text-clone-maintain):
20050 * terminal.el (te-get-char, te-tic-sentinel):
20051 * tool-bar.el (tool-bar-make-keymap):
20052 * tooltip.el (tooltip-timeout, tooltip-hide, tooltip-help-tips):
20053 * type-break.el (type-break-mode, type-break-noninteractive-query):
20054 * view.el (View-back-to-mark):
20055 * wid-browse.el (widget-browse-action, widget-browse-widget)
20056 (widget-browse-widgets, widget-browse-sexp):
20057 * widget.el (define-widget-keywords):
20058 * xt-mouse.el (xterm-mouse-translate, turn-off-xterm-mouse-tracking):
20059 Mark unused parameters.
20060
20061 * align.el (align-adjust-col-for-rule): Mark unused parameter.
20062 (align-areas): Remove unused variable `look'.
20063 (align-region): Remove unused variables `real-end' and `pos-list'.
20064
20065 * apropos.el (apropos-score-doc): Remove unused variable `i'.
20066
20067 * bindings.el (mode-line-modified, mode-line-remote):
20068 Mark unused parameters.
20069 (mode-line-mule-info): Mark unused parameter; don't quote `lambda'.
20070
20071 * buff-menu.el (Buffer-menu-revert-function): Mark unused parameters.
20072 (Buffer-menu-mode): Mark unused parameter; don't quote `lambda'.
20073
20074 * comint.el (comint-history-isearch-pop-state)
20075 (comint-postoutput-scroll-to-bottom, comint-truncate-buffer)
20076 (comint-strip-ctrl-m, comint-read-noecho): Mark unused parameters.
20077 (comint-substitute-in-file-name): Doc fix.
20078
20079 * completion.el (cmpl-statistics-block): Mark unused parameter.
20080 (add-completions-from-tags-table, add-completions-from-lisp-buffer)
20081 (save-completions-to-file, load-completions-from-file):
20082 Remove unused local variable `e'.
20083
20084 * composite.el (compose-chars): Remove unused variable `len'.
20085 (lgstring-insert-glyph): Remove unused variable `g'.
20086 (compose-glyph-string): Remove unused variables `ascent',
20087 `descent', `lbearing' and `rbearing'.
20088 (compose-glyph-string-relative): Remove unused variables
20089 `lbearing', `rbearing' and `wadjust'.
20090 (compose-gstring-for-graphic): Remove unused variables `header',
20091 `wadjust', `xoff' and `yoff'. Use `let', not `let*'.
20092 (compose-gstring-for-terminal): Remove unused variables `header'
20093 and `nchars'. Use `let', not `let*'.
20094
20095 * cus-edit.el (Custom-set, Custom-save, custom-reset)
20096 (Custom-reset-current, Custom-reset-saved, Custom-reset-standard)
20097 (Custom-buffer-done, custom-buffer-create-internal)
20098 (custom-browse-visibility-action, custom-browse-group-tag-action)
20099 (custom-browse-variable-tag-action, custom-browse-face-tag-action)
20100 (widget-magic-mouse-down-action, custom-toggle-parent)
20101 (custom-add-parent-links, custom-toggle-hide-variable)
20102 (custom-face-edit-value-visibility-action, custom-face-edit-fix-value)
20103 (custom-toggle-hide-face, face, hook, custom-group-link-action)
20104 (custom-face-menu-create, custom-variable-menu-create, get)
20105 (custom-group-menu-create, Custom-no-edit): Mark unused parameters.
20106 (custom-reset-standard-save-and-update): Remove unused variable `value'.
20107 (customize-apropos): Remove unused variable `tests'.
20108 (custom-group-value-create): Remove unused variable `hidden-p'.
20109 (sort-fold-case): Declare.
20110
20111 * cus-theme.el (custom-reset-standard-faces-list)
20112 (custom-reset-standard-variables-list): Declare.
20113 (customize-create-theme, custom-theme-revert, custom-theme-write)
20114 (custom-theme-choose-mode, customize-themes, custom-theme-save):
20115 Mark unused parameters.
20116
20117 * dabbrev.el (dabbrev-completion): Remove unused variable `init'.
20118
20119 * delim-col.el (delimit-columns-max): Move defvar before first use.
20120
20121 * descr-text.el (describe-char-categories): Don't quote `lambda'.
20122 (describe-char): Don't quote `lambda'. Mark unused parameter.
20123
20124 * desktop.el (desktop-save-buffer-p): Mark unused parameter.
20125 (auto-insert): Declare.
20126 (desktop-restore-file-buffer): Rename desktop-* parameters;
20127 mark unused ones.
20128 (desktop-create-buffer): Rename desktop-* parameters and bind them.
20129 (desktop-buffer): Rename desktop-* parameters.
20130
20131 * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape): Declare.
20132 (dframe-reposition-frame-xemacs, dframe-help-echo)
20133 (dframe-hack-buffer-menu, dframe-set-timer, dframe-set-timer-internal):
20134 Mark unused parameters.
20135
20136 * dired-aux.el (backup-extract-version-start, overwrite-query)
20137 (overwrite-backup-query, rename-regexp-query)
20138 (rename-non-directory-query): Declare.
20139 (dired-shell-stuff-it, dired-do-create-files): Mark unused parameters.
20140 (dired-add-entry): Remove unused variable `orig-file-name'.
20141 (dired-copy-file-recursive): Remove unused variable `dirfailed'.
20142 Use parameter PRESERVE-TIME instead of accessing dynamic variable
20143 `dired-copy-preserve-time' directly.
20144 (dired-do-create-files-regexp): Remove unused variable `fn-count'.
20145 (dired-insert-subdir-newpos): Rename unused variable `pos'.
20146
20147 * dired-x.el (dired-omit-size-limit): Move defcustom before first use.
20148 (dired-virtual-revert, dired-make-relative-symlink):
20149 Mark unused parameters.
20150 (manual-program): Declare.
20151 (dired-x-hands-off-my-keys): Rename parameters of lambda expression.
20152 (inode, s, mode, nlink, uid, gid, size, time, name, sym): Declare them,
20153 wrapped in `with-no-warnings' to avoid replacing one warning by another.
20154
20155 * dirtrack.el (dirtrack): Remove unused variable `multi-line'.
20156
20157 * dos-fns.el (dos-8+3-filename): Remove unused variable `i'.
20158
20159 * echistory.el (electric-history-in-progress, Helper-return-blurb):
20160 Declare.
20161
20162 * edmacro.el (edmacro-finish-edit): Remove unused variable `kmacro'.
20163
20164 * electric.el (Electric-command-loop): Rename parameter
20165 INHIBIT-QUIT to INHIBIT-QUITTING and bind `inhibit-quit'.
20166
20167 * expand.el (expand-in-literal): Remove unused variable `here'.
20168
20169 * facemenu.el (facemenu-add-new-color):
20170 Remove unused variable `docstring'.
20171
20172 * faces.el (face-id, make-face-bold, make-face-unbold, make-face-italic)
20173 (make-face-unitalic, make-face-bold-italic): Mark unused parameters.
20174 (face-attr-construct): Mark unused parameter. Doc fix.
20175 (read-color): Remove unused variable `hex-string'.
20176
20177 * files.el (parse-colon-path): Rename argument CD-PATH to SEARCH-PATH.
20178 (locate-dominating-file): Remove unused vars `prev-file' and `user'.
20179 (remote-file-name-inhibit-cache, revert-buffer): Clean up docstrings.
20180 (display-buffer-other-frame): Remove unused variable `old-window'.
20181 (kill-buffer-hook): Declare.
20182 (insert-file-contents-literally, set-auto-mode, risky-local-variable-p):
20183 Mark unused parameters.
20184 (after-find-file): Pass 1 to `auto-save-mode', not t.
20185
20186 * files-x.el (auto-insert): Declare.
20187 (modify-file-local-variable-prop-line): Remove unused variable `val'.
20188
20189 * find-lisp.el (find-lisp-find-dired-internal): Remove unused
20190 variable `buf'. Mark unused parameter.
20191 (find-lisp-insert-directory): Mark unused parameter.
20192
20193 * format.el (format-decode-run-method): Mark unused parameter; doc fix.
20194 (format-encode-region): Remove unused variables `cur-buf' and `result'.
20195 (format-common-tail): Remove, unused.
20196 (format-deannotate-region): Remove unused variable `loc'.
20197 (format-annotate-region): Remove unused variable `p'.
20198 (format-annotate-single-property-change): Remove unused variables
20199 `default' and `tail'.
20200
20201 * forms.el (read-file-filter): Declare.
20202 (forms--iif-hook, forms--revert-buffer): Mark unused parameters.
20203
20204 * frame.el (frame-creation-function-alist): Mark unused parameter.
20205 (frame-geom-spec-cons): Pass FRAME to `frame-geom-value-cons'.
20206
20207 * hilit-chg.el (hilit-chg-cust-fix-changes-face-list, hilit-chg-clear):
20208 Remove unused parameters.
20209 (hilit-chg-set-face-on-change): Remove unused variable `beg-decr'.
20210 (highlight-compare-with-file): Remove unused variable `buf-b-read-only'.
20211
20212 * htmlfontify.el (hfy-default-footer, hfy-decor, hfy-invisible)
20213 (hfy-parse-tags-buffer, hfy-prepare-index-i, hfy-prepare-index)
20214 (hfy-prepare-tag-map): Mark unused parameters.
20215 (htmlfontify-buffer): Use `called-interactively-p'.
20216
20217 * ibuf-ext.el (ibuffer-do-kill-lines, ibuffer-jump-to-buffer)
20218 (ibuffer-copy-filename-as-kill, ibuffer-mark-on-buffer)
20219 (ibuffer-do-occur): Mark unused parameters.
20220 (ibuffer-forward-next-marked): Remove unused variable `curmark'.
20221 (ibuffer-diff-buffer-with-file-1): Remove unused variable `proc'.
20222
20223 * ibuffer.el: Don't quote `lambda'.
20224 (ibuffer-count-marked-lines, ibuffer-count-deletion-lines)
20225 (ibuffer-unmark-all, ibuffer-toggle-marks, ibuffer-redisplay-engine):
20226 Mark unused parameters.
20227
20228 * ido.el (ido-mode, ido-wide-find-dir-or-delete-dir)
20229 (ido-completing-read): Mark unused parameters.
20230 (ido-copy-current-word): Mark unused parameters;
20231 remove unused variable `name'.
20232 (ido-sort-merged-list): Remove unused parameter `dirs'.
20233
20234 * ielm.el (ielm-input-sender): Mark unused parameter.
20235 (ielm-string, ielm-form, ielm-pos, ielm-result, ielm-error-type)
20236 (ielm-output, ielm-wbuf, ielm-pmark): Declare.
20237 (ielm-eval-input): Rename argument IELM-STRING to INPUT-STRING to keep
20238 `ielm-string' as a dynamic variable accessible from the IELM prompt.
20239 Bind `ielm-string' to INPUT-STRING. Remove unused variable `err'.
20240
20241 * image-dired.el (image-dired-display-thumbs): Remove unused
20242 variables `curr-file' and `count'.
20243 (image-dired-remove-tag): Remove unused variable `start'.
20244 (image-dired-tag-files, image-dired-create-thumbs): Remove unused
20245 variable `curr-file'
20246 (image-dired-rotate-original): Remove unused variable `temp-file'.
20247 (image-dired-mouse-select-thumbnail, image-dired-mouse-toggle-mark):
20248 Remove unused variable `file'.
20249 (image-dired-gallery-generate): Remove unused variable `curr'.
20250 (image-dired-dired-edit-comment-and-tags): Mark unused parameters.
20251
20252 * indent.el (tab-to-tab-stop): Remove unused variable `opoint'.
20253
20254 * info-xref.el (info-xref-goto-node-p): Remove unused variable `err'.
20255
20256 * informat.el (texinfo-command-start, texinfo-command-end): Declare.
20257
20258 * isearch.el (minibuffer-history-symbol): Declare.
20259 (isearch-edit-string): Remove unused variable `err'.
20260 (isearch-message-prefix, isearch-message-suffix):
20261 Mark unused parameters.
20262
20263 * ls-lisp.el (ls-lisp-insert-directory): Remove unused variable `fil'.
20264
20265 * macros.el (insert-kbd-macro): Remove unused variable `mods'.
20266
20267 * makesum.el (double-column): Remove unused variable `cnt'.
20268
20269 * misearch.el (multi-isearch-pop-state): Mark unused parameter.
20270 (ido-ignore-item-temp-list): Declare.
20271
20272 * mouse-drag.el (mouse-drag-throw): Remove unused variables
20273 `mouse-delta', `window-last-row', `mouse-col-delta', `window-last-col',
20274 `adjusted-mouse-col-delta' and `adjusted-mouse-delta'.
20275 (mouse-drag-drag): Remove unused variables `mouse-delta' and
20276 `mouse-col-delta'.
20277
20278 * mouse-sel.el (mouse-extend-internal):
20279 Remove unused variable `orig-window-frame'.
20280
20281 * pcomplete.el (pcomplete-args, pcomplete-begins, pcomplete-last)
20282 (pcomplete-index, pcomplete-stub, pcomplete-seen, pcomplete-norm-func):
20283 Move declarations before first use.
20284 (pcomplete-opt): Mark unused parameters; doc fix.
20285
20286 * proced.el (proced-revert): Mark unused parameter.
20287 (proced-send-signal): Remove unused variable `err'.
20288
20289 * ps-print.el (ps-print-preprint-region, ps-print-preprint):
20290 Rename parameter PREFIX-ARG to ARG.
20291 (ps-basic-plot-string, ps-basic-plot-whitespace):
20292 Mark unused parameters.
20293
20294 * replace.el (replace-count): Define.
20295 (occur-revert-function): Mark unused parameters.
20296 (ido-ignore-item-temp-list, isearch-error, isearch-forward)
20297 (isearch-case-fold-search, isearch-string): Declare.
20298 (occur-engine): Rename parameter CASE-FOLD-SEARCH to CASE-FOLD and
20299 bind `case-fold-search'. Remove unused variables `beg' and `end',
20300 and simplify.
20301 (replace-eval-replacement): Rename parameter REPLACE-COUNT to
20302 COUNT and bind `replace-count'.
20303 (replace-loop-through-replacements): Rename parameter REPLACE-COUNT
20304 to COUNT.
20305
20306 * savehist.el (print-readably, print-string-length): Declare.
20307
20308 * shadowfile.el (shadow-expand-cluster-in-file-name):
20309 Remove unused variable `cluster'.
20310 (shadow-copy-file): Remove unused variable `i'.
20311 (shadow-noquery, shadow-clusters, shadow-site-cluster)
20312 (shadow-parse-fullname, shadow-parse-name, shadow-define-cluster)
20313 (shadow-define-literal-group, shadow-define-regexp-group)
20314 (shadow-make-group, shadow-shadows-of): Clean up docstrings.
20315
20316 * shell.el (shell-filter-ctrl-a-ctrl-b): Mark unused parameter.
20317 (shell): Use `called-interactively-p'.
20318 (shell-directory-tracker): Remove unused variable `chdir-failure'.
20319
20320 * simple.el (compilation-context-lines, comint-file-name-quote-list)
20321 (comint-file-name-chars, comint-delimiter-argument-list): Declare.
20322 (delete-backward-char): Remove unused variable `ocol'.
20323 (minibuffer-avoid-prompt, minibuffer-history-isearch-pop-state)
20324 (line-move-1, event-apply-alt-modifier, event-apply-super-modifier)
20325 (event-apply-hyper-modifier, event-apply-shift-modifier)
20326 (event-apply-control-modifier, event-apply-meta-modifier):
20327 Mark unused parameters.
20328 (undo-make-selective-list): Remove duplicate variable `undo-elt'.
20329 (normal-erase-is-backspace-mode): Remove unused variable `old-state'.
20330
20331 * speedbar.el (speedbar-ignored-directory-expressions)
20332 (speedbar-supported-extension-expressions, speedbar-directory-buttons)
20333 (speedbar-find-file, speedbar-dir-follow)
20334 (speedbar-directory-buttons-follow, speedbar-tag-find)
20335 (speedbar-buffer-buttons, speedbar-buffer-buttons-temp)
20336 (speedbar-buffers-line-directory, speedbar-buffer-click):
20337 Mark unused parameters.
20338 (speedbar-tag-file): Remove unused variable `mode'.
20339 (speedbar-buffers-tail-notes): Remove unused variable `mod'; simplify.
20340
20341 * strokes.el (strokes-decode-buffer): Remove unused variable `ext'.
20342
20343 * talk.el (talk): Remove unused variable `display'.
20344
20345 * tar-mode.el (tar-subfile-save-buffer): Remove unused variable `name'.
20346 (tar-write-region-annotate): Mark unused parameter.
20347
20348 * time.el (now, time, load, mail, 24-hours, hour, 12-hours, am-pm)
20349 (minutes, seconds, time-zone, day, year, monthname, month, dayname):
20350 Declare them, wrapped in `with-no-warnings' to avoid replacing one
20351 warning by another.
20352
20353 * time-stamp.el (time-stamp-string-preprocess):
20354 Remove unused variable `require-padding'.
20355
20356 * tree-widget.el (widget-glyph-enable): Declare.
20357 (tree-widget-action): Mark unused parameter.
20358
20359 * w32-fns.el (x-get-selection): Mark unused parameter.
20360 (autoload-make-program, generated-autoload-file): Declare.
20361
20362 * wdired.el (wdired-revert): Mark unused parameters.
20363 (wdired-xcase-word): Remove unused variable `err'.
20364
20365 * whitespace.el (whitespace-buffer-changed): Mark unused parameters.
20366 (whitespace-help-scroll): Remove unused variable `data-help'.
20367
20368 * wid-edit.el (widget-mouse-help, widget-overlay-inactive)
20369 (widget-image-insert, widget-after-change, default)
20370 (widget-default-format-handler, widget-default-notify)
20371 (widget-default-prompt-value, widget-info-link-action)
20372 (widget-url-link-action, widget-function-link-action)
20373 (widget-variable-link-action, widget-file-link-action)
20374 (widget-emacs-library-link-action, widget-emacs-commentary-link-action)
20375 (widget-field-prompt-internal, widget-field-action, widget-field-match)
20376 (widget-choice-mouse-down-action, toggle, widget-radio-button-notify)
20377 (widget-insert-button-action, widget-delete-button-action, visibility)
20378 (widget-documentation-link-action, widget-documentation-string-action)
20379 (widget-const-prompt-value, widget-regexp-match, symbol)
20380 (widget-coding-system-prompt-value)
20381 (widget-key-sequence-value-to-external, sexp)
20382 (widget-sexp-value-to-internal, character, vector, cons)
20383 (widget-choice-prompt-value, widget-boolean-prompt-value)
20384 (widget-color--choose-action): Mark unused parameters.
20385 (widget-item-match-inline, widget-choice-match-inline)
20386 (widget-checklist-match, widget-checklist-match-inline)
20387 (widget-group-match): Rename parameter VALUES to VALS.
20388 (widget-field-value-set): Remove unused variable `size'.
20389 (widget-color-action): Remove unused variables `value' and `start'.
20390
20391 * windmove.el (windmove-wrap-loc-for-movement): Remove unused
20392 variable `dir'. Doc fix.
20393 (windmove-find-other-window): Don't pass it.
20394
20395 * window.el (count-windows): Mark unused parameter.
20396 (bw-adjust-window): Remove unused variable `err'.
20397
20398 * woman.el (woman-file-name): Remove unused variable `default'.
20399 (woman-expand-directory-path): Rename parameters WOMAN-MANPATH and
20400 WOMAN-PATH to PATH-DIRS and PATH-REGEXPS, respectively.
20401 (global-font-lock-mode): Declare.
20402 (woman-decode-region): Mark unused parameter.
20403 (woman-get-tab-stop): Rename parameter TAB-STOP-LIST to TAB-STOPS.
20404
20405 * x-dnd.el (x-dnd-default-test-function, x-dnd-handle-old-kde)
20406 (x-dnd-handle-xdnd, x-dnd-handle-motif): Mark unused parameters.
20407 (x-dnd-handle-moz-url): Remove unused variable `title'.
20408 (x-dnd-handle-xdnd): Remove unused variables `x', `y' and `ret-action'.
20409
20410 * xml.el (xml-parse-tag, xml-parse-attlist):
20411 Remove unused variable `pos'.
20412
20413 2011-04-19 Glenn Morris <rgm@gnu.org>
20414
20415 * calendar/cal-tex.el (cal-tex-list-holidays, cal-tex-cursor-month)
20416 (cal-tex-cursor-week, cal-tex-cursor-week2, cal-tex-cursor-week-iso)
20417 (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
20418 (cal-tex-cursor-filofax-daily, cal-tex-mini-calendar)
20419 * calendar/cal-html.el (cal-html-insert-minical):
20420 * calendar/diary-lib.el (diary-list-entries-1, diary-list-entries)
20421 (calendar-mark-date-pattern):
20422 Prefix "unused" locals.
20423
20424 * calendar/cal-dst.el (dst-adjust-time): Remove never-implemented
20425 optional argument `style'.
20426
20427 * calendar/appt.el (appt-make-list):
20428 * calendar/cal-china.el (calendar-chinese-date-string):
20429 * calendar/cal-hebrew.el (calendar-hebrew-list-yahrzeits)
20430 (diary-hebrew-yahrzeit):
20431 * calendar/cal-tex.el (cal-tex-last-blank-p, cal-tex-cursor-week2):
20432 * calendar/calendar.el (calendar-generate-window):
20433 * calendar/time-date.el (time-to-days):
20434 Remove unused local variables.
20435
20436 2011-04-18 Chong Yidong <cyd@stupidchicken.com>
20437
20438 * emacs-lisp/tabulated-list.el (tabulated-list-mode): Use a custom
20439 glyphless-char-display table.
20440 (tabulated-list-glyphless-char-display): New var.
20441
20442 2011-04-18 Sam Steingold <sds@gnu.org>
20443
20444 * vc/add-log.el (change-log-font-lock-keywords): Add "Thanks to"
20445 to acknowledgments.
20446
20447 2011-04-17 Glenn Morris <rgm@gnu.org>
20448
20449 * calendar/diary-lib.el (diary-sexp-entry):
20450 * calendar/holidays.el (holiday-sexp):
20451 Set debug-on-error rather than the removed stack-trace-on-error.
20452
20453 2011-04-16 Glenn Morris <rgm@gnu.org>
20454
20455 * progmodes/f90.el: Use lexical-binding.
20456 (f90-get-correct-indent): Remove unnecessary local variable `cont'.
20457
20458 2011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
20459
20460 * mail/sendmail.el (mail-mode-map): Use completion-at-point.
20461 (mail-mode): Setup mailalias completion here instead.
20462 * mail/mailalias.el: Use lexical-binding.
20463 (pattern, mailalias-done): Declare dynamic.
20464 (mail-completion-at-point-function): New function, from mail-complete.
20465 (mail-complete): Use it.
20466 (mail-completion-expand): New function.
20467 (mail-get-names): Use it.
20468 (mail-directory, mail-directory-process, mail-directory-stream):
20469 Don't use `pattern' for lexically bound arg.
20470
20471 * emacs-lisp/lisp-mode.el (eval-defun-2): Use eval-sexp-add-defvars.
20472
20473 * htmlfontify.el (hfy-etags-cmd): Remove inoperant eval-and-compile.
20474 (hfy-e2x-etags-cmd, hfy-etags-cmd-alist-default)
20475 (hfy-etags-cmd-alist): Don't eval-and-compile any more.
20476
20477 * emacs-lisp/bytecomp.el (byte-temp-output-buffer-show)
20478 (byte-save-window-excursion, byte-temp-output-buffer-setup)
20479 (byte-interactive-p): Define them again, for use when inlining
20480 old code.
20481
20482 2011-04-15 Juanma Barranquero <lekktu@gmail.com>
20483
20484 * loadup.el: Use `string-to-number', not `string-to-int'.
20485
20486 2011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
20487
20488 * progmodes/gud.el (gud-gdb): Use completion-at-point instead of
20489 gud-gdb-complete-command.
20490 (gud-gdb-completions): New function, from gud-gdb-complete-command.
20491 (gud-gdb-completion-at-point): New function.
20492 (gud-gdb-completions): Remove.
20493
20494 2011-04-14 Michael Albinus <michael.albinus@gmx.de>
20495
20496 * net/tramp-sh.el (tramp-sh-handle-file-attributes): Handle the case
20497 when the scripts fail. Use `tramp-do-file-attributes-with-ls' then.
20498 (tramp-do-copy-or-rename-file-out-of-band): Do not check any longer
20499 whether `executable-find' is bound.
20500
20501 * net/tramp-smb.el (tramp-smb-handle-copy-file): Fix docstring.
20502
20503 2011-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
20504
20505 * minibuffer.el (completion-in-region-mode-predicate)
20506 (completion-in-region-mode--predicate): New vars.
20507 (completion-in-region, completion-in-region--postch)
20508 (completion-in-region-mode): Use them.
20509 (completion--capf-wrapper): Also return the hook function.
20510 (completion-at-point, completion-help-at-point):
20511 Adjust and provide a predicate.
20512
20513 Preserve arg names for advice of subr and lexical functions (bug#8457).
20514 * help-fns.el (help-function-arglist): Consolidate the subr and
20515 new-byte-code cases. Add argument `preserve-names' to extract names
20516 from the docstring when needed.
20517 * emacs-lisp/advice.el (ad-define-subr-args, ad-undefine-subr-args)
20518 (ad-subr-args-defined-p, ad-get-subr-args, ad-subr-arglist): Remove.
20519 (ad-arglist): Use help-function-arglist's new arg.
20520 (ad-definition-type): Use cond.
20521
20522 2011-04-13 Juanma Barranquero <lekktu@gmail.com>
20523
20524 * autorevert.el (auto-revert-handler):
20525 Bind `remote-file-name-inhibit-cache', not `tramp-cache-inhibit-cache',
20526 which was removed in 2010-10-02T13:21:43Z!michael.albinus@gmx.de.
20527 Don't quote lambda.
20528
20529 * image-mode.el (image-transform-set-scale):
20530 Fix change in 2011-04-09T20:28:01Z!cyd@stupidchicken.com.
20531
20532 2011-04-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
20533
20534 * net/network-stream.el (network-stream-open-starttls): Only do
20535 opportunistic STARTTLS upgrades if we have built-in GnuTLS support.
20536 Upgrades via gnutls-cli are too slow to be done opportunistically.
20537
20538 2011-04-12 Juanma Barranquero <lekktu@gmail.com>
20539
20540 * dframe.el (dframe-current-frame): Remove spurious quote.
20541
20542 2011-04-12 Glenn Morris <rgm@gnu.org>
20543
20544 * calendar/cal-tex.el (cal-tex-end-document):
20545 Try to automatically use latin1 input if needed.
20546
20547 * calendar/cal-hebrew.el (diary-hebrew-rosh-hodesh):
20548 Don't try to cons a mark onto an empty element.
20549
20550 2011-04-11 Leo Liu <sdl.web@gmail.com>
20551
20552 * ido.el (ido-buffer-internal): Allow method 'kill for virtual
20553 buffers.
20554 (ido-kill-buffer-at-head): Support killing virtual buffers.
20555
20556 2011-04-10 Chong Yidong <cyd@stupidchicken.com>
20557
20558 * minibuffer.el (completion-show-inline-help): New var.
20559 (completion--do-completion, minibuffer-complete)
20560 (minibuffer-force-complete, minibuffer-complete-word):
20561 Inhibit minibuffer messages if completion-show-inline-help is nil.
20562
20563 * icomplete.el (icomplete-mode): Bind completion-show-inline-help
20564 to avoid interference from inline help (Bug#5849).
20565
20566 2011-04-10 Leo Liu <sdl.web@gmail.com>
20567
20568 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
20569 Fix typo.
20570
20571 2011-04-09 Chong Yidong <cyd@stupidchicken.com>
20572
20573 * image-mode.el (image-toggle-display-image): Signal an error if
20574 not in Image mode.
20575 (image-transform-mode, image-transform-resize)
20576 (image-transform-set-rotation): Doc fix.
20577 (image-transform-set-resize): Delete.
20578 (image-transform-set-scale, image-transform-fit-to-height)
20579 (image-transform-fit-to-width): Handle image-toggle-display-image
20580 and image-transform-resize directly.
20581
20582 2011-04-08 Sho Nakatani <lay.sakura@gmail.com>
20583
20584 * doc-view.el (doc-view-fit-width-to-window)
20585 (doc-view-fit-height-to-window, doc-view-fit-page-to-window):
20586 New functions for fitting the shown image to the Emacs window size.
20587 (doc-view-mode-map): Add bindings for the new functions.
20588
20589 2011-04-08 Juanma Barranquero <lekktu@gmail.com>
20590
20591 * vc/vc-annotate.el (vc-annotate-show-log-revision-at-line):
20592 Fix typo in docstring.
20593
20594 2011-04-08 Eli Zaretskii <eliz@gnu.org>
20595
20596 * files.el (file-size-human-readable): Produce one digit after
20597 decimal, like "ls -lh" does.
20598
20599 * ls-lisp.el (ls-lisp-format-file-size): Allow for 7 characters in
20600 the file size representation.
20601
20602 * simple.el (list-processes): If async subprocesses are not
20603 available, error out with a clear error message.
20604
20605 2011-04-08 Chong Yidong <cyd@stupidchicken.com>
20606
20607 * help.el (help-form-show): New function, to be called from C.
20608 Put help-form output in a buffer named differently than *Help*.
20609
20610 2011-04-08 Eli Zaretskii <eliz@gnu.org>
20611
20612 * files.el (file-size-human-readable): New function.
20613
20614 * ls-lisp.el (ls-lisp-format-file-size): Use it, instead of
20615 computing the representation inline. Don't require `cl'.
20616
20617 2011-04-08 Glenn Morris <rgm@gnu.org>
20618
20619 * man.el (Man-page-header-regexp): Solaris < 2.6 no longer supported.
20620
20621 * net/browse-url.el (browse-url-firefox):
20622 Test system-type, not system-configuration.
20623
20624 * vc/log-edit.el (log-edit-empty-buffer-p): New function.
20625 (log-edit-insert-cvs-template, log-edit-insert-cvs-rcstemplate):
20626 Use log-edit-empty-buffer-p. (Bug#7598)
20627
20628 * net/rlogin.el (rlogin-process-connection-type): Simplify.
20629 (rlogin-mode-map): Initialize in the defvar.
20630 (rlogin): Use ignore-errors.
20631
20632 * replace.el (occur-mode-map): Some fixes for menu items.
20633
20634 2011-04-07 Aaron S. Hawley <aaron.s.hawley@gmail.com>
20635
20636 * play/morse.el (denato-region): Handle varying case. (Bug#8386)
20637
20638 2011-04-06 Chong Yidong <cyd@stupidchicken.com>
20639
20640 * emacs-lisp/cconv.el (cconv--analyse-use): Ignore "ignored" when
20641 issuing unused warnings.
20642
20643 * emacs-lisp/tabulated-list.el (tabulated-list-print): Use lambda
20644 macro directly.
20645
20646 * simple.el: Lisp reimplement of list-processes. Based on an
20647 earlier reimplementation by Leo Liu, but using tabulated-list.el.
20648 (process-menu-mode): New major mode.
20649 (list-processes--refresh, list-processes):
20650 (process-menu-visit-buffer): New functions.
20651
20652 * files.el (save-buffers-kill-emacs): Don't assume any return
20653 value of list-processes, which is undocumented anyway.
20654
20655 2011-04-06 Chong Yidong <cyd@stupidchicken.com>
20656
20657 * emacs-lisp/tabulated-list.el: New file.
20658
20659 * emacs-lisp/package.el: Use Tabulated List mode.
20660 (package-menu-mode-map): Inherit from tabulated-list-mode-map.
20661 (package-menu-mode): Derive from tabulated-list-mode. Set up the
20662 table format using Tabulated List mode variables.
20663 (package--push): New macro, replacing package-list-maybe-add.
20664 (package-menu--generate): Use package--push. Renamed from
20665 package--generate-package-list.
20666 (package-menu-refresh, list-packages): Use it.
20667 (package-menu--print-info): Rename from package-print-package.
20668 Return insertion data instead of inserting it directly.
20669 (package-menu-describe-package, package-menu-execute):
20670 Use tabulated-list-get-id.
20671 (package-menu-mark-delete, package-menu-mark-install)
20672 (package-menu-mark-unmark, package-menu-backup-unmark)
20673 (package-menu-mark-obsolete-for-deletion):
20674 Use tabulated-list-put-tag.
20675 (package--list-packages, package-menu-revert)
20676 (package-menu-get-package, package-menu-get-version)
20677 (package-menu-sort-by-column): Functions deleted.
20678 (package-menu-package-list, package-menu-sort-key): Vars deleted.
20679 (package-menu--status-predicate, package-menu--version-predicate)
20680 (package-menu--name-predicate)
20681 (package-menu--description-predicate): Handle arguments in the
20682 Tabulated List format.
20683 (package-list-packages-no-fetch): Call list-packages.
20684
20685 2011-04-06 Juanma Barranquero <lekktu@gmail.com>
20686
20687 * files.el (after-find-file-from-revert-buffer): Remove variable.
20688 (after-find-file): Don't bind it.
20689 (revert-buffer-in-progress-p): New variable.
20690 (revert-buffer): Bind it.
20691 Pass nil for `after-find-file-from-revert-buffer'.
20692
20693 * saveplace.el (save-place-find-file-hook): Use new variable
20694 `rever-buffer-in-progress-p', not `after-find-file-from-revert-buffer'.
20695
20696 2011-04-06 Glenn Morris <rgm@gnu.org>
20697
20698 * Makefile.in (AUTOGEN_VCS): New variable.
20699 (autoloads): Use $AUTOGEN_VCS.
20700
20701 * calendar/cal-move.el (calendar-scroll-toolkit-scroll): New function.
20702 * calendar/calendar.el (calendar-mode-map):
20703 Check for toolkit scroll bars. (Bug#8305)
20704
20705 2011-04-05 Chong Yidong <cyd@stupidchicken.com>
20706
20707 * minibuffer.el (completion-in-region--postch)
20708 (completion-in-region-mode): Remove unnecessary messages.
20709
20710 2011-04-05 Juanma Barranquero <lekktu@gmail.com>
20711
20712 * font-lock.el (font-lock-refresh-defaults):
20713 Don't bind `hi-lock--inhibit-font-lock-hook', removed in
20714 2010-10-09T04:09:19Z!cyd@stupidchicken.com and 2010-10-11T23:57:49Z!lekktu@gmail.com (2010-10-12).
20715
20716 * info.el (Info-directory-list, Info-read-node-name-2)
20717 (Info-split-parameter-string): Doc fixes.
20718 (Info-virtual-nodes): Reflow docstring.
20719 (Info-find-file, Info-directory-toc-nodes, Info-history-toc-nodes)
20720 (Info-apropos-toc-nodes, info-finder, Info-get-token)
20721 (Info-find-emacs-command-nodes, Info-speedbar-key-map):
20722 Fix typos in docstrings.
20723 (Info-revert-buffer-function, Info-search, Info-isearch-pop-state)
20724 (Info-speedbar-hierarchy-buttons, Info-speedbar-goto-node)
20725 (Info-speedbar-buttons, Info-desktop-buffer-misc-data)
20726 (Info-restore-desktop-buffer): Mark unused parameters.
20727 (Info-directory-find-file, Info-directory-find-node)
20728 (Info-history-find-file, Info-history-find-node, Info-toc-find-node)
20729 (Info-virtual-index-find-node, Info-apropos-find-file)
20730 (Info-apropos-find-node, Info-finder-find-file, Info-finder-find-node):
20731 Mark unused parameters; fix typos in docstrings.
20732 (Info-virtual-index): Remove unused local variable `nodename'.
20733
20734 2011-04-05 Deniz Dogan <deniz@dogan.se>
20735
20736 * net/rcirc.el: Update my e-mail address.
20737 (rcirc-mode-map): Remove M-o binding.
20738
20739 2011-04-05 Chong Yidong <cyd@stupidchicken.com>
20740
20741 * startup.el (command-line): Save the cursor's theme-face
20742 directly, instead of using face-override-spec.
20743
20744 * custom.el (load-theme): Minor optimization in assigning faces.
20745
20746 2011-04-04 Juanma Barranquero <lekktu@gmail.com>
20747
20748 * help-fns.el (describe-variable): Complete all variables having
20749 documentation, including keywords.
20750 http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00112.html
20751
20752 2011-04-04 Juanma Barranquero <lekktu@gmail.com>
20753
20754 Convert to lexical-binding.
20755
20756 * bs.el (bs-refresh, bs-sort-buffer-interns-are-last)
20757 (bs--get-marked-string, bs--get-modified-string)
20758 (bs--get-readonly-string, bs--get-size-string, bs--get-name)
20759 (bs--get-mode-name, bs--get-file-name): Mark unused arguments.
20760 (bs--configuration-name-for-prefix-arg): Rename argument PREFIX-ARG.
20761
20762 * ehelp.el (electric-help-execute-extended)
20763 (electric-help-ctrl-x-prefix):
20764 * hexl.el (hexl-revert-buffer-function):
20765 * linum.el (linum-after-change, linum-after-scroll):
20766 * emacs-lisp/re-builder.el (reb-auto-update): Mark unused arguments.
20767
20768 * help-fns.el (help-describe-category-set): Remove unused ERR variable.
20769
20770 2011-04-04 Daiki Ueno <ueno@unixuser.org>
20771
20772 * epa-dired.el:
20773 * epa-mail.el:
20774 * epa-hook.el:
20775 * epa-file.el:
20776 * epa.el:
20777 * epg.el: Use lexical binding.
20778
20779 2011-04-03 Chong Yidong <cyd@stupidchicken.com>
20780
20781 * dired-aux.el (dired-create-files): Add docstring (Bug#7970).
20782
20783 * textmodes/flyspell.el (flyspell-word): Recognize default
20784 dictionary case for flyspell-mark-duplications-exceptions.
20785 Use regexp matching for languages.
20786 (flyspell-mark-duplications-exceptions): Add "that" and "had" for
20787 default dictionary (Bug#7926).
20788
20789 2011-04-02 Chong Yidong <cyd@stupidchicken.com>
20790
20791 * emacs-lisp/package.el (package--with-work-buffer):
20792 Recognize https URLs.
20793
20794 * net/network-stream.el: Move from gnus/proto-stream.el.
20795 Change prefix to network-stream throughout.
20796 (open-protocol-stream): Merge into open-network-stream, leaving
20797 open-protocol-stream as an alias. Handle nil BUFFER args.
20798
20799 * subr.el (open-network-stream): Move to net/network-stream.el.
20800
20801 2011-04-02 Glenn Morris <rgm@gnu.org>
20802
20803 * find-dired.el (find-exec-terminator): New option.
20804 (find-ls-option): Test for -ls support.
20805 (find-ls-subdir-switches): Test for -b in find-ls-option.
20806 (find-dired, find-grep-dired): Doc fixes.
20807 (find-dired): Use find-exec-terminator.
20808
20809 * find-dired.el (find-ls-option, find-ls-subdir-switches)
20810 (find-grep-options): Do not autoload these defcustoms, remove purecopy.
20811 (find-name-arg): Remove purecopy.
20812
20813 * progmodes/grep.el (grep-find-use-xargs): Doc fix.
20814 (grep-compute-defaults): Check for `-exec COMMAND +' support.
20815 Set grep-find-use-xargs, grep-find-command, and grep-find-template
20816 accordingly. Don't add the null-device if not needed.
20817
20818 * files.el (save-some-buffers): Doc fix.
20819
20820 2011-04-02 Eli Zaretskii <eliz@gnu.org>
20821
20822 * makefile.w32-in (EMACS): Default to ../src/$(BLD)/emacs.exe.
20823
20824 2011-04-01 Juanma Barranquero <lekktu@gmail.com>
20825
20826 * progmodes/idlwave.el (idlwave-one-key-select, idlwave-list-abbrevs):
20827 Use `dolist' rather than `mapcar'.
20828
20829 2011-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
20830
20831 Add lexical binding.
20832
20833 * subr.el (apply-partially): Use new closures rather than CL.
20834 (--dolist-tail--, --dotimes-limit--): Don't declare dynamic.
20835 (dolist, dotimes): Use slightly different expansion for lexical code.
20836 (functionp): Move to C.
20837 (letrec): New macro.
20838 (with-wrapper-hook): Use it and apply-partially instead of CL.
20839 (eval-after-load): Preserve lexical-binding.
20840 (save-window-excursion, with-output-to-temp-buffer): Turn them
20841 into macros.
20842
20843 * simple.el (with-wrapper-hook, apply-partially): Move to subr.el.
20844
20845 * help-fns.el (help-split-fundoc): Return nil if there's nothing else
20846 than the arglist.
20847 (help-add-fundoc-usage): Don't add `Not documented'.
20848 (help-function-arglist): Handle closures, subroutines, and new
20849 byte-code-functions.
20850 (help-make-usage): Remove leading underscores.
20851 (describe-function-1): Handle closures.
20852 (describe-variable): Use special-variable-p for completion.
20853
20854 * files.el (lexical-binding): Declare safe.
20855
20856 * emacs-lisp/pcase.el: Don't use destructuring-bind.
20857 (pcase--memoize): Rename from pcase-memoize. Change weakness.
20858 (pcase): Add `let' pattern.
20859 Change memoization so it actually works.
20860 (pcase-mutually-exclusive-predicates): Add byte-code-function-p.
20861 (pcase--u1) <guard, pred>: Fix possible shadowing problem.
20862 <let>: New case.
20863
20864 * emacs-lisp/macroexp.el: Use lexical binding.
20865 (macroexpand-all-1): Check obsolete macros. Expand compiler-macros.
20866 Don't convert ' to #' without checking that it's indeed quoting
20867 a lambda.
20868
20869 * emacs-lisp/lisp-mode.el (eval-last-sexp-1):
20870 Use eval-sexp-add-defvars.
20871 (eval-sexp-add-defvars): New fun.
20872
20873 * emacs-lisp/float-sup.el (pi): Don't declare as dynamically bound.
20874
20875 * emacs-lisp/eieio.el (byte-compile-file-form-defmethod):
20876 Don't autoload.
20877 (eieio-defgeneric-form-primary-only-one): Use `byte-compile' rather
20878 than the internal `byte-compile-lambda'.
20879 (defmethod): Don't hide code under quotes.
20880 (eieio-defmethod): New `code' argument.
20881
20882 * emacs-lisp/eieio-comp.el: Remove.
20883
20884 * emacs-lisp/edebug.el (edebug-eval-defun)
20885 (edebug-eval-top-level-form): Use eval-sexp-add-defvars.
20886 (edebug-toggle): Avoid `eval'.
20887
20888 * emacs-lisp/disass.el (disassemble-internal): Handle new
20889 `closure' objects.
20890 (disassemble-1): Handle new byte codes.
20891
20892 * emacs-lisp/cl.el (pushnew): Silence warning.
20893
20894 * emacs-lisp/cl-macs.el (cl-byte-compile-block)
20895 (cl-byte-compile-throw): Remove.
20896 (cl-block-wrapper, cl-block-throw): Use compiler-macros instead.
20897
20898 * emacs-lisp/cl-extra.el (cl-macroexpand-all): Properly quote CL
20899 closures.
20900
20901 * emacs-lisp/cconv.el: New file.
20902
20903 * emacs-lisp/bytecomp.el: Use lexical binding instead of
20904 a "bytecomp-" prefix. Macroexpand everything as a separate phase.
20905 (byte-compile-initial-macro-environment):
20906 Handle declare-function here.
20907 (byte-compile--lexical-environment): New var.
20908 (byte-stack-ref, byte-stack-set, byte-discardN)
20909 (byte-discardN-preserve-tos): New lap codes.
20910 (byte-interactive-p): Don't use any more.
20911 (byte-compile-push-bytecodes, byte-compile-push-bytecode-const2):
20912 New macros.
20913 (byte-compile-lapcode): Use them and handle new lap codes.
20914 (byte-compile-obsolete): Remove.
20915 (byte-compile-arglist-signature): Handle new byte-code arg"lists".
20916 (byte-compile-arglist-warn): Check late def of inlinable funs.
20917 (byte-compile-cl-warn): Don't silence warnings for compiler-macros
20918 since they should have been expanded by now.
20919 (byte-compile--outbuffer): Rename from bytecomp-outbuffer.
20920 (byte-compile-from-buffer): Remove unused second arg.
20921 (byte-compile-preprocess): New function.
20922 (byte-compile-toplevel-file-form): New function to distinguish
20923 file-form calls from outside from file-form calls from hunk-handlers.
20924 (byte-compile-file-form): Simplify.
20925 (byte-compile-file-form-defsubst): Remove.
20926 (byte-compile-file-form-defmumble): Simplify now that
20927 byte-compile-lambda always returns a byte-code-function.
20928 (byte-compile): Preprocess.
20929 (byte-compile-byte-code-maker, byte-compile-byte-code-unmake):
20930 Remove, not used any more.
20931 (byte-compile-arglist-vars, byte-compile-make-lambda-lexenv)
20932 (byte-compile-make-args-desc): New funs.
20933 (byte-compile-lambda): Handle lexical functions. Always return
20934 a byte-code-function.
20935 (byte-compile-reserved-constants): New var, to make up room for
20936 closed-over variables.
20937 (byte-compile-constants-vector): Obey it.
20938 (byte-compile-top-level): New args `lexenv' and `reserved-csts'.
20939 (byte-compile-macroexpand-declare-function): New function.
20940 (byte-compile-form): Call byte-compile-unfold-bcf to inline immediate
20941 byte-code-functions.
20942 (byte-compile-form): Check obsolescence here.
20943 (byte-compile-inline-lapcode, byte-compile-unfold-bcf): New functions.
20944 (byte-compile-variable-ref): Remove.
20945 (byte-compile-dynamic-variable-op): New fun.
20946 (byte-compile-dynamic-variable-bind, byte-compile-variable-ref)
20947 (byte-compile-variable-set): New funs.
20948 (byte-compile-discard): Add 2 args.
20949 (byte-compile-stack-ref, byte-compile-stack-set)
20950 (byte-compile-make-closure, byte-compile-get-closed-var): New funs.
20951 (byte-compile-funarg, byte-compile-funarg-2): Remove, handled in
20952 macroexpand-all instead.
20953 (byte-compile-quote-form): Remove.
20954 (byte-compile-push-binding-init, byte-compile-not-lexical-var-p)
20955 (byte-compile-bind, byte-compile-unbind): New funs.
20956 (byte-compile-let): Handle let* and lexical binding.
20957 (byte-compile-let*): Remove.
20958 (byte-compile-catch, byte-compile-unwind-protect)
20959 (byte-compile-track-mouse, byte-compile-condition-case):
20960 Handle a new :fun-body form, used for lexical scoping.
20961 (byte-compile-save-window-excursion)
20962 (byte-compile-with-output-to-temp-buffer): Remove.
20963 (byte-compile-defun): Simplify.
20964 (byte-compile-stack-adjustment): New fun.
20965 (byte-compile-out): Use it.
20966 (byte-compile-refresh-preloaded): Don't reload byte-compiler files.
20967
20968 * emacs-lisp/byte-run.el (make-obsolete): Don't set the `byte-compile'
20969 handler any more.
20970
20971 * emacs-lisp/byte-opt.el: Use lexical binding.
20972 (byte-inline-lapcode): Remove (to bytecomp).
20973 (byte-compile-inline-expand): Pay attention to inlining to/from
20974 lexically bound code.
20975 (byte-compile-unfold-lambda): Don't handle byte-code-functions
20976 any more.
20977 (byte-optimize-form-code-walker): Don't handle save-window-excursion
20978 any more and don't call compiler-macros.
20979 (byte-compile-splice-in-already-compiled-code): Remove.
20980 (byte-code): Don't inline any more.
20981 (disassemble-offset): Receive `bytes' as argument rather than via
20982 dynamic scoping.
20983 (byte-compile-tag-number): Declare before first use.
20984 (byte-decompile-bytecode-1): Handle new byte-codes, don't change
20985 `return' even if make-spliceable.
20986 (byte-compile-side-effect-and-error-free-ops): Add stack-ref, remove
20987 obsolete interactive-p.
20988 (byte-optimize-lapcode): Optimize new lap-codes.
20989 Don't trip up on new form of `byte-constant' lap code.
20990
20991 * emacs-lisp/autoload.el (make-autoload): Don't burp on trivial macros.
20992
20993 * emacs-lisp/advice.el (ad-arglist): Use help-function-arglist.
20994
20995 * custom.el (custom-initialize-default, custom-declare-variable):
20996 Use `defvar'.
20997
20998 * Makefile.in (BIG_STACK_DEPTH, BIG_STACK_OPTS, BYTE_COMPILE_FLAGS):
20999 New variables.
21000 (compile-onefile, .el.elc, compile-calc, recompile): Use them.
21001 (COMPILE_FIRST): Add macroexp and cconv.
21002 * makefile.w32-in: Mirror changes in Makefile.in.
21003
21004 * vc/cvs-status.el:
21005 * vc/diff-mode.el:
21006 * vc/log-edit.el:
21007 * vc/log-view.el:
21008 * vc/smerge-mode.el:
21009 * textmodes/bibtex-style.el:
21010 * textmodes/css-mode.el:
21011 * startup.el:
21012 * uniquify.el:
21013 * minibuffer.el:
21014 * newcomment.el:
21015 * reveal.el:
21016 * server.el:
21017 * mpc.el:
21018 * emacs-lisp/smie.el:
21019 * doc-view.el:
21020 * dired.el:
21021 * abbrev.el: Use lexical binding.
21022
21023 2011-04-01 Eli Zaretskii <eliz@gnu.org>
21024
21025 * info.el (info-display-manual): New function.
21026
21027 2011-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
21028
21029 * loadup.el: Load minibuffer after loaddefs, to use define-minor-mode.
21030
21031 2011-03-31 Tassilo Horn <tassilo@member.fsf.org>
21032
21033 * net/rcirc.el (rcirc-handler-001): Only authenticate, if there's
21034 an entry for that server in rcirc-authinfo. (Bug#8385)
21035
21036 2011-03-31 Glenn Morris <rgm@gnu.org>
21037
21038 * progmodes/f90.el (f90-find-tag-default): Handle multiple `%'.
21039
21040 * generic-x.el (etc-fstab-generic-mode): Add ext4, sysfs keywords.
21041
21042 2011-03-30 Christoph Scholtes <cschol2112@googlemail.com>
21043
21044 * progmodes/python.el (python-default-interpreter)
21045 (python-python-command-args, python-jython-command-args)
21046 (python-which-shell, python-which-args, python-which-bufname)
21047 (python-file-queue, python-comint-output-filter-function)
21048 (python-toggle-shells, python-shell): Remove obsolete defcustoms,
21049 variables and functions.
21050
21051 2011-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
21052
21053 * minibuffer.el (completion-table-dynamic): Optimize `boundaries'.
21054 (completion-in-region-mode): New minor mode.
21055 (completion-in-region): Use it.
21056 (completion-in-region--data, completion-in-region-mode-map): New vars.
21057 (completion-in-region--postch): New function.
21058 (completion--capf-misbehave-funs, completion--capf-safe-funs):
21059 New vars.
21060 (completion--capf-wrapper): New function.
21061 (completion-at-point): Use it to track well-behavedness of
21062 hook functions.
21063 (completion-help-at-point): New command.
21064
21065 2011-03-30 Jason Merrill <jason@redhat.com> (tiny change)
21066
21067 * vc/add-log.el (add-change-log-entry): Don't use whitespace
21068 syntax class to search for whitespace on a single line
21069 (Message-ID: <4D938140.4030905@redhat.com>).
21070
21071 2011-03-30 Leo Liu <sdl.web@gmail.com>
21072
21073 * abbrev.el (abbrev-edit-save-to-file, abbrev-edit-save-buffer):
21074 New commands.
21075 (edit-abbrevs-map): Bind them here.
21076 (write-abbrev-file): New optinal arg VERBOSE. (Bug#5937)
21077
21078 2011-03-29 Ken Manheimer <ken.manheimer@gmail.com>
21079
21080 * allout.el (allout-hide-by-annotation, allout-flag-region):
21081 Reduce possibility of overlay leakage by making them volatile.
21082
21083 * allout-widgets.el (allout-widgets-tally): Define as nil so the
21084 hash is not shared between buffers. Mode initialization is
21085 responsible for giving it a useful starting value.
21086 (allout-item-span): Reduce possibility of overlay leakage by
21087 making them volatile.
21088 (allout-widgets-count-buttons-in-region): Add diagnostic function
21089 for tracking down button overlay leaks.
21090
21091 2011-03-29 Leo Liu <sdl.web@gmail.com>
21092
21093 * ido.el (ido-read-internal): Use the default history var
21094 minibuffer-history if no HISTORY is specified.
21095
21096 2011-03-28 Brian T. Sniffen <bsniffen@akamai.com> (tiny change)
21097
21098 * net/imap.el (imap-shell-open, imap-process-connection-type):
21099 Use imap-process-connection-type for 'shell' streams as well as
21100 Kerberos, SSL, other subprocesses.
21101
21102 2011-03-28 Leo Liu <sdl.web@gmail.com>
21103
21104 * abbrev.el (abbrev-table-empty-p): New function.
21105 (prepare-abbrev-list-buffer): Place empty abbrev tables after
21106 nonempty ones. (Bug#5937)
21107
21108 2011-03-27 Jan Djärv <jan.h.d@swipnet.se>
21109
21110 * cus-start.el (all): Add boolean ns-auto-hide-menu-bar.
21111
21112 2011-03-27 Leo Liu <sdl.web@gmail.com>
21113
21114 * ansi-color.el (ansi-color-names-vector): Allow cons cell value
21115 for foreground and background colors.
21116 (ansi-color-make-color-map): Adapt.
21117
21118 2011-03-25 Leo Liu <sdl.web@gmail.com>
21119
21120 * midnight.el (midnight-time-float): Remove. Note it calculates
21121 the microsecond component incorrectly and seconds-to-time does the
21122 same job.
21123 Remove redundant (require 'timer).
21124
21125 * ido.el (ido-read-internal): Simplify with read-from-minibuffer.
21126 (ido-completions): Remove unused arguments. (Bug#8329)
21127
21128 2011-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
21129
21130 * minibuffer.el (completion--flush-all-sorted-completions):
21131 Remove itself from hook.
21132 (completion-at-point): Let the functions perform the completion
21133 immediately and return nil or t.
21134 * comint.el (comint-dynamic-complete-functions): Now identical to
21135 completion-at-point-functions.
21136 (comint-dynamic-list-input-ring): Remove unused var `index'.
21137 (comint--match-partial-filename, comint--unquote&expand-filename):
21138 New funs, split from comint-match-partial-filename.
21139 (comint-dynamic-complete): Use completion-at-point.
21140 (comint-dynamic-complete-filename): Use comint--match-partial-filename.
21141
21142 2011-03-24 Drew Adams <drew.adams@oracle.com>
21143
21144 * thingatpt.el: Support `defun'.
21145
21146 2011-03-23 Leo Liu <sdl.web@gmail.com>
21147
21148 * abbrevlist.el: Move to obsolete/abbrevlist.el.
21149
21150 * help-mode.el (help-mode-finish): Tweak regexp.
21151
21152 2011-03-23 Glenn Morris <rgm@gnu.org>
21153
21154 * eshell/esh-opt.el (eshell-eval-using-options):
21155 Do not bind unused local variable `eshell-option-stub'.
21156
21157 * progmodes/gdb-mi.el (gdb): Fix typo in previous change.
21158
21159 2011-03-22 Juanma Barranquero <lekktu@gmail.com>
21160
21161 * emacs-lisp/derived.el (define-derived-mode): Wrap declaration of
21162 keymap variable in `with-no-warnings' to avoid a warning when the
21163 keymap has been already `defconst'ed.
21164
21165 2011-03-22 Leo Liu <sdl.web@gmail.com>
21166
21167 * abbrev.el (write-abbrev-file): Use utf-8 for writing if it can
21168 encode all chars in abbrevs; otherwise use emacs-mule or
21169 utf-8-emacs. (Bug#8308)
21170
21171 2011-03-22 Juanma Barranquero <lekktu@gmail.com>
21172
21173 * simple.el (backward-delete-char-untabify):
21174 Avoid warning about using `delete-backward-char'.
21175
21176 * image.el (image-type-file-name-regexps): Make it variable.
21177 `imagemagick-register-types' modifies it, and the user may want
21178 to add new extensions for known image types.
21179 (imagemagick-register-types): Throw error if not using ImageMagick.
21180
21181 2011-03-22 Leo Liu <sdl.web@gmail.com>
21182
21183 * net/rcirc.el (rcirc-completion-at-point): Return nil if point is
21184 located before rcirc-prompt-end-marker.
21185 (rcirc-complete): Error if point is not after rcirc prompt.
21186 Handle the case when table is nil.
21187 (rcirc-user-authenticated): Define to fix compiler warning.
21188
21189 2011-03-22 Chong Yidong <cyd@stupidchicken.com>
21190
21191 * custom.el (custom--inhibit-theme-enable): Make it affect only
21192 custom-theme-set-variables and custom-theme-set-faces.
21193 (provide-theme): Ignore custom--inhibit-theme-enable.
21194 (load-theme): Enable the theme explicitly if NO-ENABLE is non-nil.
21195 (custom-enabling-themes): Delete variable.
21196 (enable-theme): Accept only loaded themes as arguments.
21197 Ignore the special custom-enabled-themes variable.
21198 (custom-enabled-themes): Forbid themes from setting this.
21199 Eliminate use of custom-enabling-themes.
21200 (custom-push-theme): Quote "changed" custom var entry.
21201
21202 2011-03-21 Leo Liu <sdl.web@gmail.com>
21203
21204 * ido.el (ido-read-internal): Add ido-selected to history instead
21205 of user input.
21206
21207 2011-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
21208
21209 * subr.el (deferred-action-list, deferred-action-function):
21210 Mark obsolete.
21211
21212 2011-03-21 Leo Liu <sdl.web@gmail.com>
21213
21214 * vc/log-view.el: Remove (require 'wid-edit), not needed after the
21215 change on 2011-02-13 (bug#8309).
21216
21217 * minibuffer.el (read-file-name-function): Change default value.
21218 (read-file-name--defaults): Rename from read-file-name-defaults.
21219 (read-file-name-default): Rename from read-file-name.
21220 (read-file-name): Call read-file-name-function.
21221
21222 2011-03-21 Glenn Morris <rgm@gnu.org>
21223
21224 * eshell/esh-opt.el (eshell-eval-using-options, eshell-process-args):
21225 Doc fixes.
21226
21227 2011-03-21 Chong Yidong <cyd@stupidchicken.com>
21228
21229 * cus-theme.el: Add missing provide statement.
21230 (customize-create-theme): Extract theme value correctly.
21231 (custom-theme-visit-theme): Autoload.
21232 (customize-create-theme): Prompt before inserting default faces.
21233
21234 2011-03-20 Jay Belanger <jay.p.belanger@gmail.com>
21235
21236 * calc/calc-menu.el (calc-units-menu): Add entries for logarithmic
21237 units and musical notes.
21238
21239 2011-03-20 Leo Liu <sdl.web@gmail.com>
21240
21241 * ido.el (ido-read-internal): Use completing-read-default.
21242 (ido-completing-read): Fix compatibility with completing-read.
21243
21244 2011-03-20 Christian Ohler <ohler@gnu.org>
21245
21246 * emacs-lisp/ert.el (ert-run-tests-batch): Remove unused variable.
21247 (ert-delete-all-tests): Use `called-interactively-p' rather than
21248 `interactive-p'.
21249 (ert--make-xrefs-region): Respect END.
21250
21251 2011-03-19 Chong Yidong <cyd@stupidchicken.com>
21252
21253 * dired-aux.el (dired-create-directory): Signal an error if the
21254 directory already exists (Bug#8246).
21255
21256 * facemenu.el (list-colors-display): Call list-faces-display
21257 inside with-help-window.
21258 (list-colors-print): Use display property to align the final
21259 column, instead of checking window-width.
21260
21261 2011-03-19 Eli Zaretskii <eliz@gnu.org>
21262
21263 * vc/emerge.el (emerge-metachars): Separate value for ms-dos and
21264 windows-nt systems.
21265 (emerge-protect-metachars): Quote correctly for ms-dos and
21266 windows-nt systems.
21267
21268 2011-03-19 Ralph Schleicher <rs@ralph-schleicher.de>
21269
21270 * info.el (info-initialize): Replace all uses of `:' with
21271 path-separator for compatibility with non-Unix systems.
21272 Cache quoting of path-separator. (Bug#8258)
21273
21274 2011-03-19 Juanma Barranquero <lekktu@gmail.com>
21275
21276 * avoid.el (mouse-avoidance-mode, mouse-avoidance-nudge-dist)
21277 (mouse-avoidance-threshold, mouse-avoidance-banish-destination)
21278 (mouse-avoidance-mode): Fix typos in docstrings.
21279
21280 2011-03-19 Chong Yidong <cyd@stupidchicken.com>
21281
21282 * startup.el (package-subdirectory-regexp): Move from package.el.
21283 Omit \\` and \\', and let callers add them.
21284
21285 * emacs-lisp/package.el (package-strip-version)
21286 (package-load-all-descriptors): Add \\` and \\' to
21287 package-subdirectory-regexp before using it.
21288 (package-untar-buffer): New arg DIR; ensure that file untars only
21289 into this expected directory. Remove superfluous delete-region.
21290 (package-unpack): Caller changed.
21291 (package-tar-file-info): Use package-subdirectory-regexp.
21292
21293 2011-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
21294
21295 * vc/diff-mode.el (diff-mode-map): Shadow problematic bindings from
21296 diff-mode-shared-map (bug#8284).
21297 (diff-mode-shared-map): Re-introduce some bindings that were problematic.
21298
21299 2011-03-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
21300
21301 * calendar/time-date.el (format-seconds): Use assoc instead of
21302 assoc-string, since assoc-string doesn't exist in XEmacs.
21303
21304 2011-03-17 Juanma Barranquero <lekktu@gmail.com>
21305
21306 * custom.el (custom-known-themes): Reflow docstring.
21307 (custom-theme-load-path): Fix typo in docstring.
21308 (load-theme): Fix typo in error message.
21309 (custom-available-themes, custom-variable-theme-value):
21310 Use `let', not `let*'.
21311
21312 2011-03-17 Jay Belanger <jay.p.belanger@gmail.com>
21313
21314 * calc/README: Mention inclusion of musical notes.
21315
21316 * calc/calc-units.el (calc-lu-quant): Rename from
21317 `calc-logunits-quantity'.
21318 (calcFunc-lupquant): Rename from `calcFunc-powerquant'.
21319 (calcFunc-lufquant): Rename from `calcFunc-fieldquant'.
21320 (calc-db): Rename from `calc-dblevel'.
21321 (calcFunc-dbpower): Rename from `calcFunc-dbpowerlevel'.
21322 (calcFunc-dbfield): Rename from `calcFunc-dbfieldlevel'.
21323 (calc-np): Rename from `calc-nplevel'.
21324 (calcFunc-nppower): Rename from `calcFunc-nppowerlevel'.
21325 (calcFunc-npfield): Rename from `calcFunc-npfieldlevel'.
21326 (calc-lu-plus): Rename from `calc-logunits-add'.
21327 (calcFunc-lupadd): Rename from `calcFunc-lupoweradd'.
21328 (calcFunc-lufadd): Rename from `calcFunc-lufieldadd'.
21329 (calc-lu-minus): Rename from `calc-logunits-sub'.
21330 (calcFunc-lupsub): Rename from `calcFunc-lupowersub'.
21331 (calcFunc-lufsub): Rename from `calcFunc-lufieldsub'.
21332 (calc-lu-times): Rename from `calc-logunits-mul'.
21333 (calcFunc-lupmul): Rename from `calcFunc-lupowermul'.
21334 (calcFunc-lufmul): Rename from `calcFunc-lufieldmul'.
21335 (calc-lu-divide): Rename from `calc-logunits-div'.
21336 (calcFunc-lupdiv): Rename from `calcFunc-lupowerdiv'.
21337 (calcFunc-lufdiv): Rename from `calcFunc-lufielddiv'.
21338
21339 * calc/calc-ext.el (calc-init-extensions): Update the names of the
21340 functions being autoloaded.
21341
21342 * calc/calc.el (calc-lu-power-reference): Rename from
21343 `calc-logunits-power-reference'.
21344 (calc-lu-field-reference): Rename from
21345 `calc-logunits-field-reference'.
21346
21347 * calc/calc-help.el (calc-l-prefix-help):
21348 Mention musical note functions.
21349
21350 2011-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
21351
21352 * minibuffer.el (completion-all-sorted-completions):
21353 Use :completion-cycle-penalty text property if present.
21354
21355 2011-03-16 Ken Manheimer <ken.manheimer@gmail.com>
21356
21357 * allout.el (allout-yank-processing): Adjust for new rebulleting
21358 regime so bullet being yanked is used without prompting the user
21359 for a choice.
21360
21361 2011-03-16 Juanma Barranquero <lekktu@gmail.com>
21362
21363 * startup.el (command-line): Warn the user that _emacs is deprecated.
21364
21365 2011-03-16 Juanma Barranquero <lekktu@gmail.com>
21366
21367 * progmodes/delphi.el (delphi-search-path, delphi-indent-level)
21368 (delphi-verbose, delphi-comment-face, delphi-string-face)
21369 (delphi-keyword-face, delphi-ignore-changes, delphi-indent-line)
21370 (delphi-mode-abbrev-table, delphi-debug-buffer, delphi-tab)
21371 (delphi-find-unit, delphi-find-current-xdef, delphi-fill-comment)
21372 (delphi-new-comment-line, delphi-font-lock-defaults)
21373 (delphi-debug-mode-map, delphi-mode-syntax-table, delphi-mode):
21374 Fix typos in docstrings.
21375
21376 2011-03-15 Ken Manheimer <ken.manheimer@gmail.com>
21377
21378 * allout.el (allout-make-topic-prefix, allout-rebullet-heading):
21379 Invert the roles of character and string values for INSTEAD, so a
21380 string is used for the more common case of a defaulting prompt.
21381
21382 2011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
21383
21384 * progmodes/ruby-mode.el (ruby-backward-sexp):
21385 * progmodes/ebrowse.el (ebrowse-draw-file-member-info):
21386 * play/gamegrid.el (gamegrid-make-face):
21387 * play/bubbles.el (bubbles--grid-width, bubbles--grid-height)
21388 (bubbles--colors, bubbles--shift-mode, bubbles--initialize-images):
21389 * notifications.el (notifications-notify):
21390 * net/xesam.el (xesam-search-engines):
21391 * net/quickurl.el (quickurl-list-insert):
21392 * vc/vc-hg.el (vc-hg-dir-printer): Fix use of case.
21393
21394 2011-03-15 Chong Yidong <cyd@stupidchicken.com>
21395
21396 * startup.el (command-line): Update package subdirectory regexp.
21397
21398 2011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
21399
21400 * allout.el (allout-abbreviate-flattened-numbering)
21401 (allout-mode-deactivate-hook): Fix up obsolescence "date".
21402
21403 * subr.el (read-char-choice): Only show the cursor after the prompt,
21404 not after the answer.
21405
21406 2011-03-15 Kevin Ryde <user42@zip.com.au>
21407
21408 * help-fns.el (variable-at-point): Skip leading quotes, if any
21409 (bug#8253).
21410
21411 2011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
21412
21413 * emacs-lisp/bytecomp.el (byte-compile-save-excursion): Change the
21414 warning message.
21415
21416 2011-03-14 Michael Albinus <michael.albinus@gmx.de>
21417
21418 * shell.el (shell): When called interactively, offer to change the
21419 shell file name on remote hosts.
21420
21421 2011-03-13 Teodor Zlatanov <tzz@lifelogs.com>
21422
21423 * net/ldap.el (ldap-search-internal): Add `auth-source-search'
21424 integration for LDAP parameters. The host, base, user or binddn,
21425 and secret tokens can be specified in a netrc file, for instance.
21426 This is optional because an `auth-source' parameter must be
21427 specified in the search attributes.
21428
21429 2011-03-13 Juanma Barranquero <lekktu@gmail.com>
21430
21431 * help.el (describe-mode): Link to the mode's definition (bug#8185).
21432
21433 2011-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
21434
21435 * ebuff-menu.el (electric-buffer-menu-mode-map): Move initialization
21436 into declaration. Remove redundant and harmful binding.
21437
21438 2011-03-12 Eli Zaretskii <eliz@gnu.org>
21439
21440 * files.el (file-ownership-preserved-p): Pass `integer' as an
21441 explicit 2nd argument to `file-attributes'. If the file's owner
21442 is the Administrators group on Windows, and the current user is
21443 Administrator, consider that a match.
21444
21445 * server.el (server-ensure-safe-dir): Consider server directory
21446 safe on MS-Windows if its owner is the Administrators group while
21447 the current Emacs user is Administrator. Use `=' to compare
21448 numerical UIDs, since they could be integers or floats.
21449
21450 2011-03-12 Juanma Barranquero <lekktu@gmail.com>
21451
21452 * vc/vc-bzr.el (vc-bzr-state): Handle bzr 2.3.0 (follow-up to bug#8170).
21453
21454 2011-03-12 Michael Albinus <michael.albinus@gmx.de>
21455
21456 Sync with Tramp 2.2.1.
21457
21458 * net/tramp-sh.el (tramp-methods): Exchange "%k" marker with options.
21459
21460 * net/trampver.el: Update release number.
21461
21462 2011-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
21463
21464 * progmodes/compile.el (compilation--previous-directory): Fix up
21465 various nil/dead-marker mismatches (bug#8014).
21466 (compilation-directory-properties, compilation-error-properties):
21467 Don't call it at a position past the one we're about to change.
21468
21469 * emacs-lisp/bytecomp.el (byte-compile-make-obsolete-variable):
21470 Disable obsolescence warnings in the file that declares it.
21471
21472 2011-03-11 Ken Manheimer <ken.manheimer@gmail.com>
21473
21474 * allout-widgets.el (allout-widgets-tally):
21475 Initialize allout-widgets-tally as a hash table rather than nil to
21476 prevent mode-line redisplay warnings. Also, clarify the module
21477 description and fix a comment typo.
21478
21479 2011-03-11 Juanma Barranquero <lekktu@gmail.com>
21480
21481 * help-fns.el (describe-variable): Don't complete keywords.
21482 Suggested by Teodor Zlatanov <tzz@lifelogs.com>.
21483
21484 2011-03-10 Chong Yidong <cyd@stupidchicken.com>
21485
21486 * emacs-lisp/package.el (package-version-join): Impose a standard
21487 string representation for pre/alpha/beta version lists.
21488 (package-unpack-single): Standardize the directory name by passing
21489 it through package-version-join.
21490 (package-strip-rcs-id): Accept any version string that does not
21491 signal an error in version-to-list.
21492
21493 2011-03-10 Michael Albinus <michael.albinus@gmx.de>
21494
21495 * simple.el (delete-trailing-whitespace): Return nil for the
21496 benefit of `write-file-functions'.
21497
21498 2011-03-10 Glenn Morris <rgm@gnu.org>
21499
21500 * vc/vc-hg.el (vc-hg-pull, vc-hg-merge-branch): Use vc-hg-program.
21501
21502 * vc/vc-git.el (vc-git-program): New option.
21503 (vc-git-branches, vc-git-pull, vc-git-merge-branch, vc-git-command)
21504 (vc-git--call): Use it.
21505
21506 * eshell/esh-util.el (eshell-condition-case): Doc fix.
21507
21508 * cus-edit.el (Custom-newline): If no button at point, look
21509 for a subgroup button at start-of-line. (Bug#2298)
21510
21511 * mail/rmail.el (rmail-msgend, rmail-msgbeg): Doc fixes.
21512
21513 2011-03-10 Julien Danjou <julien@danjou.info>
21514
21515 * avoid.el (mouse-avoidance-ignore-p): Do not move the cursor if
21516 `cursor-type' is nil.
21517
21518 2011-03-09 Jay Belanger <jay.p.belanger@gmail.com>
21519
21520 * calc/calc.el (calc-mode-map): Don't bind "C-_" to `calc-missing-key'.
21521
21522 2011-03-09 Ken Manheimer <ken.manheimer@gmail.com>
21523
21524 * allout.el: Change so yank of distinctive-bullet items
21525 preserves the existing header prefix, rebulleting it if necessary,
21526 rather than replacing it. This is necessary for proper operation
21527 of cooperative addons like allout-widgets.
21528 (allout-make-topic-prefix, allout-rebullet-heading):
21529 Change SOLICIT arg to INSTEAD, and interpret additionally a string
21530 value as alternate bullet to be used, instead of prompting the user
21531 for a bullet character.
21532
21533 2011-03-09 Michael Albinus <michael.albinus@gmx.de>
21534
21535 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
21536 Do not use `tramp-file-name-port', because this returns also
21537 `tramp-default-port'.
21538
21539 2011-03-09 Deniz Dogan <deniz.a.m.dogan@gmail.com>
21540
21541 * net/rcirc.el (rcirc-handler-001): Remove useless
21542 with-rcirc-process-buffer.
21543 (rcirc-check-auth-status): Swap arguments to string-match.
21544
21545 2011-03-09 Glenn Morris <rgm@gnu.org>
21546
21547 * shell.el (shell-mode):
21548 Set comint-input-ring-size from HISTSIZE. (Bug#7889)
21549
21550 * progmodes/gdb-mi.el (gdb): Improve 2010-12-08 change.
21551 Check for GDBHISTFILE, HISTSIZE, etc. (Bug#7889)
21552
21553 2011-03-08 Chong Yidong <cyd@stupidchicken.com>
21554
21555 * emacs-lisp/package.el (package-refresh-contents)
21556 (package-menu-execute): Use condition-case-no-debug.
21557
21558 2011-03-08 Michael Albinus <michael.albinus@gmx.de>
21559
21560 * simple.el (shell-command-to-string): Use `process-file'.
21561
21562 * emacs-lisp/package.el (package-tar-file-info): Handle also
21563 remote files.
21564
21565 * emacs-lisp/package-x.el (package-upload-buffer-internal):
21566 Use `equal' for upload base check.
21567
21568 2011-03-08 Arni Magnusson <arnima@hafro.is> (tiny change)
21569
21570 * textmodes/texinfo.el (texinfo-environments):
21571 Add deftypecv, deftypeivar, deftypemethod, deftypeop, html. (Bug#2783)
21572
21573 2011-03-08 Glenn Morris <rgm@gnu.org>
21574
21575 * cus-start.el (cursor-in-non-selected-windows):
21576 Fix :set quoting oddness. (Bug#8192)
21577
21578 * font-lock.el (lisp-font-lock-keywords-1): Don't highlight `)'
21579 in some setf expressions. (Bug#2159)
21580
21581 2011-03-08 Chong Yidong <cyd@stupidchicken.com>
21582
21583 * custom.el (custom-available-themes): Return themes in
21584 alphabetical order.
21585
21586 See ChangeLog.15 for earlier changes.
21587
21588 ;; Local Variables:
21589 ;; coding: utf-8
21590 ;; End:
21591
21592 Copyright (C) 2011-2013 Free Software Foundation, Inc.
21593
21594 This file is part of GNU Emacs.
21595
21596 GNU Emacs is free software: you can redistribute it and/or modify
21597 it under the terms of the GNU General Public License as published by
21598 the Free Software Foundation, either version 3 of the License, or
21599 (at your option) any later version.
21600
21601 GNU Emacs is distributed in the hope that it will be useful,
21602 but WITHOUT ANY WARRANTY; without even the implied warranty of
21603 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21604 GNU General Public License for more details.
21605
21606 You should have received a copy of the GNU General Public License
21607 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.